From 0eda97faad89231c870da6a1a4932bd6f84d9083 Mon Sep 17 00:00:00 2001 From: Rayan Das Date: Sun, 21 May 2023 21:43:01 +0530 Subject: [PATCH 1/7] update dependencies, and skip revive rules --- .golangci.json | 20 + Dockerfile.dapper | 2 +- go.mod | 204 +++---- go.sum | 1470 +++++++-------------------------------------- 4 files changed, 351 insertions(+), 1345 deletions(-) diff --git a/.golangci.json b/.golangci.json index b53580d82..f797e5ace 100644 --- a/.golangci.json +++ b/.golangci.json @@ -41,6 +41,26 @@ { "linters": "revive", "text": "should be of the form" + }, + { + "linters": "revive", + "text": "unused-parameter" + }, + { + "linters": "revive", + "text": "redefines-builtin-id" + }, + { + "linters": "revive", + "text": "superfluous-else" + }, + { + "linters": "revive", + "text": "empty-block" + }, + { + "linters": "revive", + "text": "if-return: redundant if" } ] } diff --git a/Dockerfile.dapper b/Dockerfile.dapper index 1756835e7..eb52dcad7 100644 --- a/Dockerfile.dapper +++ b/Dockerfile.dapper @@ -13,7 +13,7 @@ ENV GOLANG_ARCH_amd64=amd64 GOLANG_ARCH_arm=armv6l GOLANG_ARCH_arm64=arm64 GOLAN RUN wget -O - https://storage.googleapis.com/golang/go1.19.3.linux-${!GOLANG_ARCH}.tar.gz | tar -xzf - -C /usr/local -RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.46.2 +RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.2 ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.10.3 \ DOCKER_URL_arm=https://github.com/rancher/docker/releases/download/v1.10.3-ros1/docker-1.10.3_arm \ diff --git a/go.mod b/go.mod index 3e415848b..07ae95a47 100644 --- a/go.mod +++ b/go.mod @@ -1,154 +1,150 @@ module github.com/rancher/rke -go 1.19 +go 1.20 replace ( github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20190514055449-b30ab9de040e - k8s.io/client-go => k8s.io/client-go v0.25.12 + k8s.io/client-go => k8s.io/client-go v0.27.4 sigs.k8s.io/json => sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 ) require ( - github.com/Masterminds/sprig/v3 v3.2.2 - github.com/apparentlymart/go-cidr v1.0.1 - github.com/aws/aws-sdk-go v1.38.65 + github.com/Masterminds/sprig/v3 v3.2.3 + github.com/apparentlymart/go-cidr v1.1.0 + github.com/aws/aws-sdk-go v1.44.272 github.com/blang/semver v3.5.1+incompatible - github.com/coreos/go-semver v0.3.0 + github.com/coreos/go-semver v0.3.1 github.com/docker/distribution v2.8.2+incompatible - github.com/docker/docker v20.10.24+incompatible + github.com/docker/docker v24.0.2+incompatible github.com/docker/go-connections v0.4.0 github.com/ghodss/yaml v1.0.0 github.com/go-bindata/go-bindata v3.1.2+incompatible - github.com/go-ini/ini v1.37.0 - github.com/mattn/go-colorable v0.1.8 - github.com/mcuadros/go-version v0.0.0-20180611085657-6d5863ca60fa + github.com/go-ini/ini v1.67.0 + github.com/mattn/go-colorable v0.1.13 + github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2 github.com/pkg/errors v0.9.1 - github.com/rancher/norman v0.0.0-20221205184727-32ef2e185b99 - github.com/sirupsen/logrus v1.8.1 - github.com/stretchr/testify v1.8.0 - github.com/urfave/cli v1.22.2 - go.etcd.io/etcd/client/v2 v2.305.4 - go.etcd.io/etcd/client/v3 v3.5.4 - golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 - golang.org/x/sync v0.1.0 - google.golang.org/grpc v1.53.0 + github.com/rancher/norman v0.0.0-20230428185400-96b95e3475e0 + github.com/sirupsen/logrus v1.9.2 + github.com/stretchr/testify v1.8.2 + github.com/urfave/cli v1.22.13 + go.etcd.io/etcd/client/v2 v2.305.9 + go.etcd.io/etcd/client/v3 v3.5.9 + golang.org/x/crypto v0.11.0 + golang.org/x/sync v0.2.0 + google.golang.org/grpc v1.55.0 gopkg.in/yaml.v2 v2.4.0 - k8s.io/api v0.25.12 - k8s.io/apimachinery v0.25.12 - k8s.io/apiserver v0.25.12 - k8s.io/client-go v0.25.12 - k8s.io/gengo v0.0.0-20211129171323-c02415ce4185 - k8s.io/kubectl v0.25.12 - k8s.io/kubernetes v1.25.12 - k8s.io/pod-security-admission v0.25.12 + k8s.io/api v0.27.4 + k8s.io/apimachinery v0.27.4 + k8s.io/apiserver v0.27.4 + k8s.io/client-go v1.5.2 + k8s.io/gengo v0.0.0-20230306165830-ab3349d207d4 + k8s.io/kubectl v0.27.4 + k8s.io/kubernetes v1.15.0-alpha.0 + k8s.io/pod-security-admission v0.27.4 sigs.k8s.io/yaml v1.3.0 ) require ( - github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect + github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect github.com/MakeNowJust/heredoc v1.0.0 // indirect github.com/Masterminds/goutils v1.1.1 // indirect - github.com/Masterminds/semver/v3 v3.1.1 // indirect - github.com/Microsoft/go-winio v0.5.2 // indirect - github.com/Microsoft/hcsshim v0.9.3 // indirect - github.com/PuerkitoBio/purell v1.1.1 // indirect - github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect + github.com/Masterminds/semver/v3 v3.2.1 // indirect + github.com/Microsoft/go-winio v0.6.1 // indirect github.com/beorn7/perks v1.0.1 // indirect + github.com/blang/semver/v4 v4.0.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/chai2010/gettext-go v1.0.2 // indirect - github.com/containerd/cgroups v1.0.4 // indirect - github.com/containerd/containerd v1.5.18 // indirect - github.com/coreos/go-systemd/v22 v22.3.2 // indirect - github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect + github.com/containerd/containerd v1.7.1 // indirect + github.com/coreos/go-systemd/v22 v22.5.0 // indirect + github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/docker/go-units v0.4.0 // indirect - github.com/emicklei/go-restful/v3 v3.8.0 // indirect - github.com/evanphx/json-patch v4.12.0+incompatible // indirect - github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect - github.com/go-errors/errors v1.0.1 // indirect - github.com/go-logr/logr v1.2.3 // indirect - github.com/go-openapi/jsonpointer v0.19.5 // indirect - github.com/go-openapi/jsonreference v0.19.5 // indirect - github.com/go-openapi/swag v0.19.14 // indirect + github.com/docker/go-units v0.5.0 // indirect + github.com/emicklei/go-restful/v3 v3.10.2 // indirect + github.com/evanphx/json-patch v5.6.0+incompatible // indirect + github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect + github.com/go-errors/errors v1.4.2 // indirect + github.com/go-logr/logr v1.2.4 // indirect + github.com/go-openapi/jsonpointer v0.19.6 // indirect + github.com/go-openapi/jsonreference v0.20.2 // indirect + github.com/go-openapi/swag v0.22.3 // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/golang/protobuf v1.5.2 // indirect - github.com/google/btree v1.0.1 // indirect - github.com/google/gnostic v0.5.7-v3refs // indirect + github.com/golang/protobuf v1.5.3 // indirect + github.com/google/btree v1.1.2 // indirect + github.com/google/gnostic v0.6.9 // indirect github.com/google/go-cmp v0.5.9 // indirect - github.com/google/gofuzz v1.1.0 // indirect + github.com/google/gofuzz v1.2.0 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/google/uuid v1.3.0 // indirect - github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de // indirect - github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect - github.com/huandu/xstrings v1.3.1 // indirect - github.com/imdario/mergo v0.3.12 // indirect - github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect + github.com/huandu/xstrings v1.4.0 // indirect + github.com/imdario/mergo v0.3.16 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/compress v1.16.5 // indirect github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect - github.com/mailru/easyjson v0.7.6 // indirect - github.com/mattn/go-isatty v0.0.12 // indirect + github.com/mailru/easyjson v0.7.7 // indirect + github.com/mattn/go-isatty v0.0.19 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect - github.com/mitchellh/copystructure v1.0.0 // indirect - github.com/mitchellh/go-wordwrap v1.0.0 // indirect - github.com/mitchellh/reflectwalk v1.0.0 // indirect + github.com/mitchellh/copystructure v1.2.0 // indirect + github.com/mitchellh/go-wordwrap v1.0.1 // indirect + github.com/mitchellh/reflectwalk v1.0.2 // indirect + github.com/moby/patternmatcher v0.5.0 // indirect github.com/moby/spdystream v0.2.0 // indirect - github.com/moby/sys/mount v0.2.0 // indirect - github.com/moby/sys/mountinfo v0.6.2 // indirect - github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect + github.com/moby/sys/sequential v0.5.0 // indirect + github.com/moby/term v0.5.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect + github.com/morikuni/aec v1.0.0 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect - github.com/opencontainers/image-spec v1.0.2 // indirect - github.com/opencontainers/runc v1.1.6 // indirect + github.com/opencontainers/image-spec v1.1.0-rc3 // indirect + github.com/opencontainers/runc v1.1.7 // indirect github.com/peterbourgon/diskv v2.0.1+incompatible // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_golang v1.12.1 // indirect - github.com/prometheus/client_model v0.2.0 // indirect - github.com/prometheus/common v0.32.1 // indirect - github.com/prometheus/procfs v0.7.3 // indirect - github.com/rancher/lasso v0.0.0-20221202205459-e7138f16489c // indirect - github.com/rancher/wrangler v1.0.1-0.20221202234327-1cafffeaa9a1 // indirect - github.com/russross/blackfriday v1.5.2 // indirect + github.com/prometheus/client_golang v1.15.1 // indirect + github.com/prometheus/client_model v0.4.0 // indirect + github.com/prometheus/common v0.44.0 // indirect + github.com/prometheus/procfs v0.10.1 // indirect + github.com/rancher/lasso v0.0.0-20230629200414-8a54b32e6792 // indirect + github.com/rancher/wrangler v1.1.1 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/shopspring/decimal v1.2.0 // indirect - github.com/smartystreets/assertions v1.0.1 // indirect - github.com/spf13/cast v1.3.1 // indirect - github.com/spf13/cobra v1.4.0 // indirect + github.com/shopspring/decimal v1.3.1 // indirect + github.com/spf13/cast v1.5.1 // indirect + github.com/spf13/cobra v1.7.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/xlab/treeprint v1.1.0 // indirect - go.etcd.io/etcd/api/v3 v3.5.4 // indirect - go.etcd.io/etcd/client/pkg/v3 v3.5.4 // indirect - go.opencensus.io v0.23.0 // indirect - go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect - go.uber.org/atomic v1.7.0 // indirect - go.uber.org/multierr v1.6.0 // indirect - go.uber.org/zap v1.19.0 // indirect - golang.org/x/mod v0.8.0 // indirect - golang.org/x/net v0.8.0 // indirect - golang.org/x/oauth2 v0.4.0 // indirect - golang.org/x/sys v0.6.0 // indirect - golang.org/x/term v0.6.0 // indirect - golang.org/x/text v0.8.0 // indirect - golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect - golang.org/x/tools v0.6.0 // indirect + github.com/xlab/treeprint v1.2.0 // indirect + go.etcd.io/etcd/api/v3 v3.5.9 // indirect + go.etcd.io/etcd/client/pkg/v3 v3.5.9 // indirect + go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect + go.uber.org/atomic v1.11.0 // indirect + go.uber.org/multierr v1.11.0 // indirect + go.uber.org/zap v1.24.0 // indirect + golang.org/x/mod v0.10.0 // indirect + golang.org/x/net v0.12.0 // indirect + golang.org/x/oauth2 v0.8.0 // indirect + golang.org/x/sys v0.10.0 // indirect + golang.org/x/term v0.10.0 // indirect + golang.org/x/text v0.11.0 // indirect + golang.org/x/time v0.3.0 // indirect + golang.org/x/tools v0.9.1 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect - google.golang.org/protobuf v1.28.1 // indirect + google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect + google.golang.org/protobuf v1.30.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect - gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/cli-runtime v0.25.12 // indirect - k8s.io/component-base v0.25.12 // indirect - k8s.io/klog/v2 v2.70.1 // indirect - k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect - k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect - sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect - sigs.k8s.io/kustomize/api v0.12.1 // indirect - sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect + gotest.tools/v3 v3.4.0 // indirect + k8s.io/cli-runtime v0.27.4 // indirect + k8s.io/component-base v0.27.4 // indirect + k8s.io/klog/v2 v2.100.1 // indirect + k8s.io/kube-openapi v0.0.0-20230530175149-33f04d5d6b58 // indirect + k8s.io/utils v0.0.0-20230505201702-9f6742963106 // indirect + sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect + sigs.k8s.io/kustomize/api v0.13.4 // indirect + sigs.k8s.io/kustomize/kyaml v0.14.2 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect ) diff --git a/go.sum b/go.sum index 770431030..02fff8a49 100644 --- a/go.sum +++ b/go.sum @@ -1,422 +1,116 @@ -bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898/go.mod h1:Xbm+BRKSBEpa4q4hTSxohYNQpsxXPbPry4JJWOB3LB8= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= -github.com/Azure/go-autorest v10.8.1+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest/autorest v0.11.27/go.mod h1:7l8ybrIdUmGqZMTD0sRtAr8NvbHjfofbf8RSP2q7w7U= -github.com/Azure/go-autorest/autorest/adal v0.9.18/go.mod h1:XVVeme+LZwABT8K5Lc3hA4nAe8LDBVle26gTrguhhPQ= -github.com/Azure/go-autorest/autorest/adal v0.9.20/go.mod h1:XVVeme+LZwABT8K5Lc3hA4nAe8LDBVle26gTrguhhPQ= -github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= -github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= -github.com/Azure/go-autorest/autorest/mocks v0.4.2/go.mod h1:Vy7OitM9Kei0i1Oj+LvyAWMXJHeKH1MVlzFugfVrmyU= -github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= +github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 h1:EKPd1INOIyr5hWOWhvpmQpY6tKjeG0hT1s3AMC/9fic= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ= github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE= github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI= github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= -github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc= -github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= -github.com/Masterminds/sprig/v3 v3.2.2 h1:17jRggJu518dr3QaafizSXOjKYp94wKfABxUmyxvxX8= -github.com/Masterminds/sprig/v3 v3.2.2/go.mod h1:UoaO7Yp8KlPnJIYWTFkMaqPUYKTfGFPhxNuwnnxkKlk= -github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= -github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA= -github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= -github.com/Microsoft/go-winio v0.4.16-0.20201130162521-d1ffc52c7331/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= -github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= -github.com/Microsoft/go-winio v0.4.17-0.20210211115548-6eac466e5fa3/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.4.17-0.20210324224401-5516f17a5958/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.4.17/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.5.2 h1:a9IhgEQBCUEk6QCdml9CiJGhAws+YwffDHEMp1VMrpA= -github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= -github.com/Microsoft/hcsshim v0.8.6/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= -github.com/Microsoft/hcsshim v0.8.7-0.20190325164909-8abdbb8205e4/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= -github.com/Microsoft/hcsshim v0.8.7/go.mod h1:OHd7sQqRFrYd3RmSgbgji+ctCwkbq2wbEYNSzOYtcBQ= -github.com/Microsoft/hcsshim v0.8.9/go.mod h1:5692vkUqntj1idxauYlpoINNKeqCiG6Sg38RRsjT5y8= -github.com/Microsoft/hcsshim v0.8.14/go.mod h1:NtVKoYxQuTLx6gEq0L96c9Ju4JbRJ4nY2ow3VK6a9Lg= -github.com/Microsoft/hcsshim v0.8.15/go.mod h1:x38A4YbHbdxJtc0sF6oIz+RG0npwSCAvn69iY6URG00= -github.com/Microsoft/hcsshim v0.8.16/go.mod h1:o5/SZqmR7x9JNKsW3pu+nqHm0MF8vbA+VxGOoXdC600= -github.com/Microsoft/hcsshim v0.8.21/go.mod h1:+w2gRZ5ReXQhFOrvSQeNfhrYB/dg3oDwTOcER2fw4I4= -github.com/Microsoft/hcsshim v0.9.3 h1:k371PzBuRrz2b+ebGuI2nVgVhgsVX60jMfSw80NECxo= -github.com/Microsoft/hcsshim v0.9.3/go.mod h1:7pLA8lDk46WKDWlVsENo92gC0XFa8rbKfyFRBqxEbCc= -github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da/go.mod h1:5hlzMzRKMLyo42nCZ9oml8AdTlq/0cvIaBv6tK1RehU= -github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3/go.mod h1:mw7qgWloBUl75W/gVH3cQszUg1+gUITj7D6NY7ywVnY= -github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= +github.com/Masterminds/semver/v3 v3.2.0/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= +github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= +github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= +github.com/Masterminds/sprig/v3 v3.2.3 h1:eL2fZNezLomi0uOLqjQoN6BfsDD+fyLtgbJMAj9n6YA= +github.com/Masterminds/sprig/v3 v3.2.3/go.mod h1:rXcFaZ2zZbLRJv/xSysmlgIM1u11eBaRMhvYXJNkGuM= +github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= +github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= +github.com/Microsoft/hcsshim v0.10.0-rc.8 h1:YSZVvlIIDD1UxQpJp0h+dnpLUw+TrY0cx8obKsp3bek= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/purell v1.1.1 h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI= -github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M= -github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d/go.mod h1:HI8ITrYtUY+O+ZhtlqUnD8+KwNPOyugEhfP9fdUIaEQ= -github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apparentlymart/go-cidr v1.0.1 h1:NmIwLZ/KdsjIUlhf+/Np40atNXm/+lZ5txfTJ/SpF+U= -github.com/apparentlymart/go-cidr v1.0.1/go.mod h1:EBcsNrHc3zQeuaeCeCtQruQm+n9/YjEn/vI25Lg7Gwc= -github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= +github.com/apparentlymart/go-cidr v1.1.0 h1:2mAhrMoF+nhXqxTzSZMUzDHkLjmIHC+Zzn4tdgBZjnU= +github.com/apparentlymart/go-cidr v1.1.0/go.mod h1:EBcsNrHc3zQeuaeCeCtQruQm+n9/YjEn/vI25Lg7Gwc= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= -github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.15.11/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0= -github.com/aws/aws-sdk-go v1.38.65 h1:umGu5gjIOKxzhi34T0DIA1TWupUDjV2aAW5vK6154Gg= -github.com/aws/aws-sdk-go v1.38.65/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= +github.com/aws/aws-sdk-go v1.44.272 h1:cP7BaZCz1a4P80vOxi8OVma8ZcxZNDYyuyU5/bojU+Y= +github.com/aws/aws-sdk-go v1.44.272/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= -github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= -github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= -github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/blang/semver v3.1.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ= github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= -github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= -github.com/bshuster-repo/logrus-logstash-hook v0.4.1/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk= -github.com/buger/jsonparser v0.0.0-20180808090653-f4dd9f5a6b44/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s= -github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd/go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8= -github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b/go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50= -github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0/go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywRkfhyM/+dE= -github.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= +github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM= +github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ= +github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chai2010/gettext-go v1.0.2 h1:1Lwwip6Q2QGsAdl/ZKPCwTe9fe0CjlUbqj5bFNSjIRk= github.com/chai2010/gettext-go v1.0.2/go.mod h1:y+wnP2cHYaVj19NZhYKAwEMH2CI1gNHeQQ+5AjwawxA= -github.com/checkpoint-restore/go-criu/v4 v4.1.0/go.mod h1:xUQBLp4RLc5zJtWY++yjOoMoB5lihDt7fai+75m+rGw= -github.com/checkpoint-restore/go-criu/v5 v5.0.0/go.mod h1:cfwC0EG7HMUenopBsUf9d89JlCLQIfgVcNsNN0t6T2M= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/cilium/ebpf v0.0.0-20200110133405-4032b1d8aae3/go.mod h1:MA5e5Lr8slmEg9bt0VpxxWqJlO4iwu3FBdHUzV7wQVg= -github.com/cilium/ebpf v0.0.0-20200702112145-1c8d4c9ef775/go.mod h1:7cR51M8ViRLIdUjrmSXlK9pkrsDlLHbO8jiB8X8JnOc= -github.com/cilium/ebpf v0.2.0/go.mod h1:To2CFviqOWL/M0gIMsvSMlqe7em/l1ALkX1PyjrX2Qs= -github.com/cilium/ebpf v0.4.0/go.mod h1:4tRaxcgiL706VnOzHOdBlY8IEAIdxINsQBcU4xJJXRs= -github.com/cilium/ebpf v0.6.2/go.mod h1:4tRaxcgiL706VnOzHOdBlY8IEAIdxINsQBcU4xJJXRs= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= -github.com/containerd/aufs v0.0.0-20200908144142-dab0cbea06f4/go.mod h1:nukgQABAEopAHvB6j7cnP5zJ+/3aVcE7hCYqvIwAHyE= -github.com/containerd/aufs v0.0.0-20201003224125-76a6863f2989/go.mod h1:AkGGQs9NM2vtYHaUen+NljV0/baGCAPELGm2q9ZXpWU= -github.com/containerd/aufs v0.0.0-20210316121734-20793ff83c97/go.mod h1:kL5kd6KM5TzQjR79jljyi4olc1Vrx6XBlcyj3gNv2PU= -github.com/containerd/aufs v1.0.0/go.mod h1:kL5kd6KM5TzQjR79jljyi4olc1Vrx6XBlcyj3gNv2PU= -github.com/containerd/btrfs v0.0.0-20201111183144-404b9149801e/go.mod h1:jg2QkJcsabfHugurUvvPhS3E08Oxiuh5W/g1ybB4e0E= -github.com/containerd/btrfs v0.0.0-20210316141732-918d888fb676/go.mod h1:zMcX3qkXTAi9GI50+0HOeuV8LU2ryCE/V2vG/ZBiTss= -github.com/containerd/btrfs v1.0.0/go.mod h1:zMcX3qkXTAi9GI50+0HOeuV8LU2ryCE/V2vG/ZBiTss= -github.com/containerd/cgroups v0.0.0-20190717030353-c4b9ac5c7601/go.mod h1:X9rLEHIqSf/wfK8NsPqxJmeZgW4pcfzdXITDrUSJ6uI= -github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f/go.mod h1:OApqhQ4XNSNC13gXIwDjhOQxjWa/NxkwZXJ1EvqT0ko= -github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59/go.mod h1:pA0z1pT8KYB3TCXK/ocprsh7MAkoW8bZVzPdih9snmM= -github.com/containerd/cgroups v0.0.0-20200710171044-318312a37340/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= -github.com/containerd/cgroups v0.0.0-20200824123100-0b889c03f102/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= -github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68/go.mod h1:ZJeTFisyysqgcCdecO57Dj79RfL0LNeGiFUqLYQRYLE= -github.com/containerd/cgroups v1.0.1/go.mod h1:0SJrPIenamHDcZhEcJMNBB85rHcUsw4f25ZfBiPYRkU= -github.com/containerd/cgroups v1.0.4 h1:jN/mbWBEaz+T1pi5OFtnkQ+8qnmEbAr1Oo1FRm5B0dA= -github.com/containerd/cgroups v1.0.4/go.mod h1:nLNQtsF7Sl2HxNebu77i1R0oDlhiTG+kO4JTrUzo6IA= -github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= -github.com/containerd/console v0.0.0-20181022165439-0650fd9eeb50/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= -github.com/containerd/console v0.0.0-20191206165004-02ecf6a7291e/go.mod h1:8Pf4gM6VEbTNRIT26AyyU7hxdQU3MvAvxVI0sc00XBE= -github.com/containerd/console v1.0.1/go.mod h1:XUsP6YE/mKtz6bxc+I8UiKKTP04qjQL4qcS3XoQ5xkw= -github.com/containerd/console v1.0.2/go.mod h1:ytZPjGgY2oeTkAONYafi2kSj0aYggsf8acV1PGKCbzQ= -github.com/containerd/containerd v1.2.10/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.2/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.0-beta.2.0.20200729163537-40b22ef07410/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.1/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.5.0-beta.1/go.mod h1:5HfvG1V2FsKesEGQ17k5/T7V960Tmcumvqn8Mc+pCYQ= -github.com/containerd/containerd v1.5.0-beta.3/go.mod h1:/wr9AVtEM7x9c+n0+stptlo/uBBoBORwEx6ardVcmKU= -github.com/containerd/containerd v1.5.0-beta.4/go.mod h1:GmdgZd2zA2GYIBZ0w09ZvgqEq8EfBp/m3lcVZIvPHhI= -github.com/containerd/containerd v1.5.0-rc.0/go.mod h1:V/IXoMqNGgBlabz3tHD2TWDoTJseu1FGOKuoA4nNb2s= -github.com/containerd/containerd v1.5.1/go.mod h1:0DOxVqwDy2iZvrZp2JUx/E+hS0UNTVn7dJnIOwtYR4g= -github.com/containerd/containerd v1.5.7/go.mod h1:gyvv6+ugqY25TiXxcZC3L5yOeYgEw0QMhscqVp1AR9c= -github.com/containerd/containerd v1.5.18 h1:doHr6cNxfOLTotWmZs6aZF6LrfJFcjmYFcWlRmQgYPM= -github.com/containerd/containerd v1.5.18/go.mod h1:7IN9MtIzTZH4WPEmD1gNH8bbTQXVX68yd3ZXxSHYCis= -github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20190815185530-f2a389ac0a02/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20191127005431-f65d91d395eb/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20200710164510-efbc4488d8fe/go.mod h1:cECdGN1O8G9bgKTlLhuPJimka6Xb/Gg7vYzCTNVxhvo= -github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7/go.mod h1:kR3BEg7bDFaEddKm54WSmrol1fKWDU1nKYkgrcgZT7Y= -github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e/go.mod h1:EXlVlkqNba9rJe3j7w3Xa924itAMLgZH4UD/Q4PExuQ= -github.com/containerd/continuity v0.1.0/go.mod h1:ICJu0PwR54nI0yPEnJ6jcS+J7CZAUXrLh8lPo2knzsM= -github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= -github.com/containerd/fifo v0.0.0-20180307165137-3d5202aec260/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= -github.com/containerd/fifo v0.0.0-20190226154929-a9fb20d87448/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= -github.com/containerd/fifo v0.0.0-20200410184934-f15a3290365b/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= -github.com/containerd/fifo v0.0.0-20201026212402-0724c46b320c/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= -github.com/containerd/fifo v0.0.0-20210316144830-115abcc95a1d/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4= -github.com/containerd/fifo v1.0.0/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4= -github.com/containerd/go-cni v1.0.1/go.mod h1:+vUpYxKvAF72G9i1WoDOiPGRtQpqsNW/ZHtSlv++smU= -github.com/containerd/go-cni v1.0.2/go.mod h1:nrNABBHzu0ZwCug9Ije8hL2xBCYh/pjfMb1aZGrrohk= -github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= -github.com/containerd/go-runc v0.0.0-20190911050354-e029b79d8cda/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= -github.com/containerd/go-runc v0.0.0-20200220073739-7016d3ce2328/go.mod h1:PpyHrqVs8FTi9vpyHwPwiNEGaACDxT/N/pLcvMSRA9g= -github.com/containerd/go-runc v0.0.0-20201020171139-16b287bc67d0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= -github.com/containerd/go-runc v1.0.0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= -github.com/containerd/imgcrypt v1.0.1/go.mod h1:mdd8cEPW7TPgNG4FpuP3sGBiQ7Yi/zak9TYCG3juvb0= -github.com/containerd/imgcrypt v1.0.4-0.20210301171431-0ae5c75f59ba/go.mod h1:6TNsg0ctmizkrOgXRNQjAPFWpMYRWuiB6dSF4Pfa5SA= -github.com/containerd/imgcrypt v1.1.1-0.20210312161619-7ed62a527887/go.mod h1:5AZJNI6sLHJljKuI9IHnw1pWqo/F0nGDOuR9zgTs7ow= -github.com/containerd/imgcrypt v1.1.1/go.mod h1:xpLnwiQmEUJPvQoAapeb2SNCxz7Xr6PJrXQb0Dpc4ms= -github.com/containerd/nri v0.0.0-20201007170849-eb1350a75164/go.mod h1:+2wGSDGFYfE5+So4M5syatU0N0f0LbWpuqyMi4/BE8c= -github.com/containerd/nri v0.0.0-20210316161719-dbaa18c31c14/go.mod h1:lmxnXF6oMkbqs39FiCt1s0R2HSMhcLel9vNL3m4AaeY= -github.com/containerd/nri v0.1.0/go.mod h1:lmxnXF6oMkbqs39FiCt1s0R2HSMhcLel9vNL3m4AaeY= -github.com/containerd/stargz-snapshotter/estargz v0.4.1/go.mod h1:x7Q9dg9QYb4+ELgxmo4gBUeJB0tl5dqH1Sdz0nJU1QM= -github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= -github.com/containerd/ttrpc v0.0.0-20190828172938-92c8520ef9f8/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= -github.com/containerd/ttrpc v0.0.0-20191028202541-4f1b8fe65a5c/go.mod h1:LPm1u0xBw8r8NOKoOdNMeVHSawSsltak+Ihv+etqsE8= -github.com/containerd/ttrpc v1.0.1/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= -github.com/containerd/ttrpc v1.0.2/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= -github.com/containerd/ttrpc v1.1.0/go.mod h1:XX4ZTnoOId4HklF4edwc4DcqskFZuvXB1Evzy5KFQpQ= -github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc= -github.com/containerd/typeurl v0.0.0-20190911142611-5eb25027c9fd/go.mod h1:GeKYzf2pQcqv7tJ0AoCuuhtnqhva5LNU3U+OyKxxJpk= -github.com/containerd/typeurl v1.0.1/go.mod h1:TB1hUtrpaiO88KEK56ijojHS1+NeF0izUACaJW2mdXg= -github.com/containerd/typeurl v1.0.2/go.mod h1:9trJWW2sRlGub4wZJRTW83VtbOLS6hwcDZXTn6oPz9s= -github.com/containerd/zfs v0.0.0-20200918131355-0a33824f23a2/go.mod h1:8IgZOBdv8fAgXddBT4dBXJPtxyRsejFIpXoklgxgEjw= -github.com/containerd/zfs v0.0.0-20210301145711-11e8f1707f62/go.mod h1:A9zfAbMlQwE+/is6hi0Xw8ktpL+6glmqZYtevJgaB8Y= -github.com/containerd/zfs v0.0.0-20210315114300-dde8f0fda960/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containerd/zfs v0.0.0-20210324211415-d5c4544f0433/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containerd/zfs v1.0.0/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containernetworking/cni v0.7.1/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v0.8.0/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v0.8.1/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/plugins v0.8.6/go.mod h1:qnw5mN19D8fIwkqW7oHHYDHVlzhJpcY6TQxn/fUyDDM= -github.com/containernetworking/plugins v0.9.1/go.mod h1:xP/idU2ldlzN6m4p5LmGiwRDjeJr6FLK6vuiUwoH7P8= -github.com/containers/ocicrypt v1.0.1/go.mod h1:MeJDzk1RJHv89LjsH0Sp5KTY3ZYkjXO/C+bKAeWFIrc= -github.com/containers/ocicrypt v1.1.0/go.mod h1:b8AOe0YR67uU8OqfVNcznfFpAzu3rdgUV4GP9qXPfu4= -github.com/containers/ocicrypt v1.1.1/go.mod h1:Dm55fwWm1YZAjYRaJ94z2mfZikIyIN4B0oB3dj3jFxY= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-iptables v0.4.5/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU= -github.com/coreos/go-iptables v0.5.0/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU= -github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc= -github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM= -github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20161114122254-48702e0da86b/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= -github.com/coreos/go-systemd/v22 v22.1.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= -github.com/coreos/go-systemd/v22 v22.3.2 h1:D9/bQk5vlXQFZ6Kwuu6zaiXJ9oTPe68++AzAJc1DzSI= -github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= -github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.1 h1:r/myEWzV9lfsM1tFLgDyu0atFtJ1fXn261LKYj/3DxU= -github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/containerd/containerd v1.7.1 h1:k8DbDkSOwt5rgxQ3uCI4WMKIJxIndSCBUaGm5oRn+Go= +github.com/containerd/containerd v1.7.1/go.mod h1:gA+nJUADRBm98QS5j5RPROnt0POQSMK+r7P7EGMC/Qc= +github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4= +github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec= +github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs= +github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= +github.com/cpuguy83/go-md2man/v2 v2.0.2 h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/creack/pty v1.1.11 h1:07n33Z8lZxZ2qwegKbObQohDhXDQxiMMz1NOUGYlesw= -github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/cyphar/filepath-securejoin v0.2.2/go.mod h1:FpkQEhXnPnOthhzymB7CGsFk2G9VLXONKD9G7QGMM+4= -github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c/go.mod h1:Ct2BUK8SB0YC1SMSibvLzxjeJLnrYEVLULFNiHY9YfQ= -github.com/d2g/dhcp4client v1.0.0/go.mod h1:j0hNfjhrt2SxUOw55nL0ATM/z4Yt3t2Kd1mW34z5W5s= -github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5/go.mod h1:Eo87+Kg/IX2hfWJfwxMzLyuSZyxSoAug2nGa1G2QAi8= -github.com/d2g/hardwareaddr v0.0.0-20190221164911-e7d9fbe030e4/go.mod h1:bMl4RjIciD2oAxI7DmWRx6gbeqrkoLqv3MV0vzNad+I= +github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY= +github.com/cyphar/filepath-securejoin v0.2.3 h1:YX6ebbZCZP7VkM3scTTokDgBL2TY741X51MTk3ycuNI= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/denverdino/aliyungo v0.0.0-20190125010748-a747050bb1ba/go.mod h1:dV8lFg6daOBZbT6/BDGIz6Y3WFGn8juu6G+CQ6LHtl0= -github.com/dgrijalva/jwt-go v0.0.0-20170104182250-a601269ab70c/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= -github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= -github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY= -github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8= github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker v20.10.24+incompatible h1:Ugvxm7a8+Gz6vqQYQQ2W7GYq5EUPaAiuPgIfVyI3dYE= -github.com/docker/docker v20.10.24+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= +github.com/docker/docker v24.0.2+incompatible h1:eATx+oLz9WdNVkQrr0qjQ8HvRJ4bOOxfzEo8R+dA3cg= +github.com/docker/docker v24.0.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= -github.com/docker/go-events v0.0.0-20170721190031-9461782956ad/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= -github.com/docker/go-metrics v0.0.0-20180209012529-399ea8c73916/go.mod h1:/u0gXw0Gay3ceNrsHubL3BtdOL2fHf93USgMTe0W5dI= -github.com/docker/go-metrics v0.0.1/go.mod h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw= -github.com/docker/go-units v0.4.0 h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw= -github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1/go.mod h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE= -github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= +github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= +github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153 h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= -github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emicklei/go-restful/v3 v3.8.0 h1:eCZ8ulSerjdAiaNpF7GxXIE7ZCMo1moN1qX+S609eVw= -github.com/emicklei/go-restful/v3 v3.8.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= +github.com/emicklei/go-restful/v3 v3.10.2 h1:hIovbnmBTLjHXkqEBUz3HGpXZdM7ZrE9fJIZIqlJLqE= +github.com/emicklei/go-restful/v3 v3.10.2/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.12.0+incompatible h1:4onqiflcdA9EOZ4RxV643DvftH5pOlLGNtQ5lPWQu84= -github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM= -github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d/go.mod h1:ZZMPRZwes7CROmyNKgQzC3XPs6L/G2EJLHddWejkmf4= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= -github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa/go.mod h1:KnogPXtdwXqoenmZCw6S+25EAm2MkxbG0deNDu4cbSA= -github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY= -github.com/getkin/kin-openapi v0.76.0/go.mod h1:660oXbgy5JFMKreazJaQTw7o+X00qeSyhcnluiMv+Xg= -github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= +github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f h1:Wl78ApPPB2Wvf/TIe2xdyJxTlb6obmF18d8QdkxNDu4= +github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f/go.mod h1:OSYXu++VVOHnXeitef/D8n/6y4QV8uLHSFXX4NeXMGc= +github.com/flowstack/go-jsonschema v0.1.1/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0= +github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-bindata/go-bindata v3.1.2+incompatible h1:5vjJMVhowQdPzjE1LdxyFF7YFTXg5IgGVW4gBr5IbvE= github.com/go-bindata/go-bindata v3.1.2+incompatible/go.mod h1:xK8Dsgwmeed+BBsSy2XTopBn/8uK2HWuGSnA11C3Joo= -github.com/go-errors/errors v1.0.1 h1:LUHzmkK3GUKUrL/1gfBUxAHzcev3apQlezX/+O7ma6w= -github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-ini/ini v1.25.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= -github.com/go-ini/ini v1.37.0 h1:/FpMfveJbc7ExTTDgT5nL9Vw+aZdst/c2dOxC931U+M= -github.com/go-ini/ini v1.37.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= -github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= +github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= +github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= +github.com/go-ini/ini v1.67.0 h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A= +github.com/go-ini/ini v1.67.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0= -github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= -github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= -github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.5 h1:gZr+CIYByUqjcgeLXnQu2gHYQC9o73G2XUeOFYEICuY= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= -github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= -github.com/go-openapi/jsonreference v0.19.5 h1:1WJP/wi4OjB4iV8KVbH73rQaoialJrqv8gitZLxGLtM= -github.com/go-openapi/jsonreference v0.19.5/go.mod h1:RdybgQwPxbL4UEjuAruzK1x3nE69AqPYEJeo/TWfEeg= -github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= -github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= -github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= -github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.14 h1:gm3vOOXfiuw5i9p5N9xJvfjvuofpyvLA9Wr6QfK5Fng= -github.com/go-openapi/swag v0.19.14/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= -github.com/godbus/dbus v0.0.0-20151105175453-c7fdd8b5cd55/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw= -github.com/godbus/dbus v0.0.0-20180201030542-885f9cc04c9c/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw= -github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= -github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ= +github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= +github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= +github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= +github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= +github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 h1:p104kn46Q8WdvHunIJ9dAyjPVtrBPhSr3KT2yUst43I= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/gogo/googleapis v1.2.0/go.mod h1:Njal3psf3qN6dwBtQfUmBZh2ybovJ0tlu3o/AC7HYjU= -github.com/gogo/googleapis v1.4.0/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= -github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= +github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= @@ -426,958 +120,322 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4= -github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= -github.com/google/gnostic v0.5.7-v3refs h1:FhTMOKj2VhjpouxvWJAV1TL304uMlb9zcDqkl6cEI54= -github.com/google/gnostic v0.5.7-v3refs/go.mod h1:73MKFl6jIHelAJNaBGFzt3SPtZULs9dYrGFt8OiIsHQ= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU= +github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4= +github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0= +github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-containerregistry v0.5.1/go.mod h1:Ct15B4yir3PLOP5jsy0GNeYVaIZs/MK/Jz5any1wFW0= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.0 h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g= github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= +github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJYCmNdQXq6neHJOYx3V6jnqNEec= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= -github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de h1:F7WD09S8QB4LrkEpka0dFPLSotH11HRpCsLIbIcJ7sU= -github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/handlers v0.0.0-20150720190736-60c7bfde3e33/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= -github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= -github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM= -github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA= +github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= -github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huandu/xstrings v1.3.1 h1:4jgBlKK6tLKFvO8u5pmYjG91cqytmDCDvGh7ECVFfFs= -github.com/huandu/xstrings v1.3.1/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/imdario/mergo v0.3.6/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.10/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= +github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= +github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU= +github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.12 h1:b6R2BslTbIEToALKP7LxUvijTsNI9TAe80pLWN2g/HU= -github.com/imdario/mergo v0.3.12/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/j-keck/arping v0.0.0-20160618110441-2cf9dc699c56/go.mod h1:ymszkNOg6tORTn+6F6j+Jc8TOr5osrynvN6ivFWZ2GA= -github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.0.0-20160803190731-bd40a432e4c7/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= +github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/joefitzgerald/rainbow-reporter v0.1.0/go.mod h1:481CNgqmVHQZzdIbN52CupLJyoVwB10FQ/IQlF1pdL8= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= -github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= -github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= -github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.11.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.13/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/klauspost/compress v1.16.5 h1:IFV2oUNUzZaz+XyusxpLzpzS8Pt5rh0Z16For/djlyI= +github.com/klauspost/compress v1.16.5/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0= github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de/go.mod h1:zAbeS9B/r2mtpb6U+EI2rYA5OAXxsYw6wTamcNW+zcE= -github.com/linuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3/go.mod h1:3r6x7q95whyfWQpmGZTu3gk3v2YkMi05HEzl7Tf7YEo= -github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= -github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA= -github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/marstr/guid v1.1.0/go.mod h1:74gB1z2wpxxInTG6yaqA7KrtM0NZ+RbrcqDvYHefzho= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8= -github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-shellwords v1.0.3/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o= -github.com/mattn/go-shellwords v1.0.6/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o= -github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= +github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/maxbrunsfeld/counterfeiter/v6 v6.2.2/go.mod h1:eD9eIE7cdwcMi9rYluz88Jz2VyhSmden33/aXg4oVIY= -github.com/mcuadros/go-version v0.0.0-20180611085657-6d5863ca60fa h1:XvNrttGMJfVrUqblGju4IkjYXwx6l5OAAyjaIsydzsk= -github.com/mcuadros/go-version v0.0.0-20180611085657-6d5863ca60fa/go.mod h1:76rfSfYPWj01Z85hUf/ituArm797mNKcvINh1OlsZKo= -github.com/miekg/pkcs11 v1.0.3/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs= -github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible/go.mod h1:8AuVvqP/mXw1px98n46wfvcGfQ4ci2FwoAjKYxuo3Z4= -github.com/mitchellh/copystructure v1.0.0 h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ= +github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2 h1:YocNLcTBdEdvY3iDK6jfWXvEaM5OCKkjxPKoJRdB3Gg= +github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2/go.mod h1:76rfSfYPWj01Z85hUf/ituArm797mNKcvINh1OlsZKo= github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= -github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-wordwrap v1.0.0 h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4= -github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= -github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/osext v0.0.0-20151018003038-5e2d6d41470f/go.mod h1:OkQIRizQZAeMln+1tSwduZz7+Af5oFlKirV/MSYes2A= -github.com/mitchellh/reflectwalk v1.0.0 h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY= +github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= +github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= +github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0= +github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0= github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= -github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc= +github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= +github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= +github.com/moby/patternmatcher v0.5.0 h1:YCZgJOeULcxLw1Q+sVR636pmS7sPEn1Qo2iAN6M7DBo= +github.com/moby/patternmatcher v0.5.0/go.mod h1:hDPoyOpDY7OrrMDLaYoY3hf52gNCR/YOUYxkhApJIxc= github.com/moby/spdystream v0.2.0 h1:cjW1zVyyoiM0T7b6UoySUFqzXMoqRckQtXwGPiBhOM8= github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= -github.com/moby/sys/mount v0.2.0 h1:WhCW5B355jtxndN5ovugJlMFJawbUODuW8fSnEH6SSM= -github.com/moby/sys/mount v0.2.0/go.mod h1:aAivFE2LB3W4bACsUXChRHQ0qKWsetY4Y9V7sxOougM= -github.com/moby/sys/mountinfo v0.4.0/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= -github.com/moby/sys/mountinfo v0.4.1/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= -github.com/moby/sys/mountinfo v0.6.2 h1:BzJjoreD5BMFNmD9Rus6gdd1pLuecOFPt8wC+Vygl78= -github.com/moby/sys/mountinfo v0.6.2/go.mod h1:IJb6JQeOklcdMU9F5xQ8ZALD+CUr5VlGpwtX+VE0rpI= -github.com/moby/sys/symlink v0.1.0/go.mod h1:GGDODQmbFOjFsXvfLVn3+ZRxkch54RkSiGqsZeMYowQ= -github.com/moby/term v0.0.0-20200312100748-672ec06f55cd/go.mod h1:DdlQx2hp0Ss5/fLikoLlEeIYiATotOjgB//nb973jeo= -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 h1:dcztxKSvZ4Id8iPpHERQBbIJfabdt4wUm5qy3wOL2Zc= -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6/go.mod h1:E2VnQOmVuvZB6UYnnDB0qG5Nq/1tD9acaOpo6xmt0Kw= +github.com/moby/sys/sequential v0.5.0 h1:OPvI35Lzn9K04PBbCLW0g4LcFAJgHsvXsRyewg5lXtc= +github.com/moby/sys/sequential v0.5.0/go.mod h1:tH2cOOs5V9MlPiXcQzRC+eEyab644PWKGRYaaV5ZZlo= +github.com/moby/term v0.5.0 h1:xt8Q1nalod/v7BqbG21f8mQPqH+xAaC9C3N3wfWbVP0= +github.com/moby/term v0.5.0/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 h1:n6/2gBQ3RWajuToeY6ZtZTIKv2v7ThUy5KKusIT0yc0= github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00/go.mod h1:Pm3mSP3c5uWn86xMLZ5Sa7JB9GsEZySvHYXCTK4E9q4= github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A= github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= -github.com/mrunalp/fileutils v0.5.0/go.mod h1:M1WthSahJixYnrXQl/DFQuteStB1weuxD2QJNHXfbSQ= -github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/ncw/swift v1.0.47/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= -github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onsi/ginkgo v0.0.0-20151202141238-7f8ab55aaf3b/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.12.0/go.mod h1:oUhWkIvk5aDxtKvDDuw8gItl8pKl42LzjC9KZE0HfGg= -github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc= -github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= -github.com/onsi/ginkgo/v2 v2.1.3/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c= -github.com/onsi/ginkgo/v2 v2.1.4/go.mod h1:um6tUpWM/cxCK3/FK8BXqEiUMUwRgSM4JXG47RKZmLU= -github.com/onsi/ginkgo/v2 v2.1.6 h1:Fx2POJZfKRQcM1pH49qSZiYeu319wji004qX+GDovrU= -github.com/onsi/ginkgo/v2 v2.1.6/go.mod h1:MEH45j8TBi6u9BMogfbp0stKC5cdGjumZj5Y7AG4VIk= -github.com/onsi/gomega v0.0.0-20151007035656-2152b45fa28a/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= -github.com/onsi/gomega v1.9.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= -github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.10.3/go.mod h1:V9xEwhxec5O8UDM77eCW8vLymOMltsqPVYWrpDsH8xc= -github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY= -github.com/onsi/gomega v1.19.0/go.mod h1:LY+I3pBVzYsTBU1AnDwOSxaYi9WoWiqgwooUqq9yPro= -github.com/onsi/gomega v1.20.1 h1:PA/3qinGoukvymdIDV8pii6tiZgC8kbmJO6Z5+b002Q= -github.com/onsi/gomega v1.20.1/go.mod h1:DtrZpjmvpn2mPm4YWQa0/ALMDj9v4YxLgojwPeREyVo= -github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0-rc1.0.20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/onsi/ginkgo/v2 v2.9.1 h1:zie5Ly042PD3bsCvsSOPvRnFwyo3rKe64TJlD6nu0mk= +github.com/onsi/gomega v1.27.4 h1:Z2AnStgsdSayCMDiCU42qIz+HLqEPcgiOCXjAU/w+8E= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= -github.com/opencontainers/image-spec v1.0.0/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.2 h1:9yCKha/T5XdGtO0q9Q9a6T5NUCsTn/DrBg0D7ufOcFM= -github.com/opencontainers/image-spec v1.0.2/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/runc v0.0.0-20190115041553-12f6a991201f/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc8.0.20190926000215-3e425f80a8c9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc93/go.mod h1:3NOsor4w32B2tC0Zbl8Knk4Wg84SM2ImC1fxBuqJ/H0= -github.com/opencontainers/runc v1.0.2/go.mod h1:aTaHFFwQXuA71CiyxOdFFIorAoemI04suvGRQFzWTD0= -github.com/opencontainers/runc v1.1.6 h1:XbhB8IfG/EsnhNvZtNdLB0GBw92GYEFvKlhaJk9jUgA= -github.com/opencontainers/runc v1.1.6/go.mod h1:CbUumNnWCuTGFukNXahoo/RFBZvDAgRh/smNYNOhA50= -github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.1/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.2-0.20190207185410-29686dbc5559/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.2/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs= -github.com/opencontainers/selinux v1.6.0/go.mod h1:VVGKuOLlE7v4PJyT6h7mNWvq1rzqiriPsEqVhc+svHE= -github.com/opencontainers/selinux v1.8.0/go.mod h1:RScLhm78qiWa2gbVCcGkC7tCGdgk3ogry1nUQF8Evvo= -github.com/opencontainers/selinux v1.8.2/go.mod h1:MUIHuUEvKB1wtJjQdOyYRgOnLD2xAPP8dBsCoU0KuF8= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= +github.com/opencontainers/image-spec v1.1.0-rc3 h1:fzg1mXZFj8YdPeNkRXMg+zb88BFV0Ys52cJydRwBkb8= +github.com/opencontainers/image-spec v1.1.0-rc3/go.mod h1:X4pATf0uXsnn3g5aiGIsVnJBR4mxhKzfwmvK/B2NTm8= +github.com/opencontainers/runc v1.1.7 h1:y2EZDS8sNng4Ksf0GUYNhKbTShZJPJg1FiXJNH/uoCk= +github.com/opencontainers/runc v1.1.7/go.mod h1:CbUumNnWCuTGFukNXahoo/RFBZvDAgRh/smNYNOhA50= github.com/peterbourgon/diskv v2.0.1+incompatible h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= -github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1-0.20171018195549-f15c970de5b7/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 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/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= -github.com/prometheus/client_golang v0.0.0-20180209125602-c332b6f63c06/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.11.1/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.1 h1:ZiaPsmm9uiBeaSMRznKsCDNtPCS0T3JVDGF+06gjBzk= -github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_model v0.0.0-20171117100541-99fa1f4be8e5/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_golang v1.15.1 h1:8tXpTmJbyH5lydzFPoxSIJ0J46jdh3tylbvM1xCv0LI= +github.com/prometheus/client_golang v1.15.1/go.mod h1:e9yaBhRPU2pPNsZwE+JdQl0KEt1N9XgF6zxWmaC0xOk= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20180110214958-89604d197083/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.0-20190522114515-bc1a522cf7b1/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/rancher/lasso v0.0.0-20221202205459-e7138f16489c h1:RKGa+6plIHqyfBcC+lnCs3oe7A8wSFkUPBtqWBAi/1E= -github.com/rancher/lasso v0.0.0-20221202205459-e7138f16489c/go.mod h1:Qewwr/xGzhtG7WCxhubrKZrdAobv5yqAIuHbDoxThZQ= -github.com/rancher/norman v0.0.0-20221205184727-32ef2e185b99 h1:+Oob+DG+SZoX8hnKBWpZfVwxx6K84hMou9nbBOTux7w= -github.com/rancher/norman v0.0.0-20221205184727-32ef2e185b99/go.mod h1:zpv7z4ySYL5LlEBKEPf/xf3cjx837/J2i/wHpT43viE= -github.com/rancher/wrangler v1.0.1-0.20221202234327-1cafffeaa9a1 h1:Rnrc4yx1Pkqoto7/n6GT68tk5up/SLuan1uSYXACpoM= -github.com/rancher/wrangler v1.0.1-0.20221202234327-1cafffeaa9a1/go.mod h1:+GbeNyk8mbdOdMSdLIqvz+0JQ/2PhIb4ufMOcmHLIJQ= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= +github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= +github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY= +github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= +github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= +github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= +github.com/rancher/lasso v0.0.0-20230629200414-8a54b32e6792 h1:IaPhDqppVYX2v/nCR8j2i0nqOLD5yggzzy39QUlcqDw= +github.com/rancher/lasso v0.0.0-20230629200414-8a54b32e6792/go.mod h1:dNcwXjcqgdOuKFIVETNAPURRh3e5PAi/nWUjj+MLVZA= +github.com/rancher/norman v0.0.0-20230428185400-96b95e3475e0 h1:HxOe+/OA1HEEeef0NMxnVkiW7iph6CRnUBx0z3ydG5k= +github.com/rancher/norman v0.0.0-20230428185400-96b95e3475e0/go.mod h1:7MyWxfCmPl6N/UFLu4neLH6nwTFgQQF5rxtUGyZvPFE= +github.com/rancher/wrangler v1.1.1 h1:wmqUwqc2M7ADfXnBCJTFkTB5ZREWpD78rnZMzmxwMvM= +github.com/rancher/wrangler v1.1.1/go.mod h1:ioVbKupzcBOdzsl55MvEDN0R1wdGggj8iNCYGFI5JvM= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/russross/blackfriday v1.5.2 h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo= -github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= -github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/safchain/ethtool v0.0.0-20190326074333-42ed695e3de8/go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4= -github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/sclevine/spec v1.2.0/go.mod h1:W4J29eT/Kzv7/b9IWLB055Z+qvVC9vt0Arko24q7p+U= -github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo= github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0= -github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= -github.com/sirupsen/logrus v1.0.6/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/assertions v1.0.1 h1:voD4ITNjPL5jjBfgR/r8fPIIBrliWrWHeiJApdr3r4w= -github.com/smartystreets/assertions v1.0.1/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM= -github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a h1:pa8hGb/2YqsZKovtsgrwcDH1RZhVbTKCjLp47XpqCDs= -github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= +github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= +github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= +github.com/sirupsen/logrus v1.9.2 h1:oxx1eChJGI6Uks2ZC4W1zpLlVgqB8ner4EuQwV4Ik1Y= +github.com/sirupsen/logrus v1.9.2/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= -github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q= -github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= -github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA= +github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48= +github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= +github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980/go.mod h1:AO3tvPzVZ/ayst6UlUKUv6rcPQInYe3IknH3jYhAKu8= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= -github.com/stretchr/objx v0.0.0-20180129172003-8a3f7159479f/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= -github.com/stretchr/objx v0.4.0 h1:M2gUjqZET1qApGOWNSnZ49BAIMX4F/1plDv3+l31EJ4= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/testify v0.0.0-20180303142811-b89eecf5ca5d/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/tchap/go-patricia v2.2.6+incompatible/go.mod h1:bmLyhP68RS6kStMGxByiQ23RP/odRBOTVjwp2cDyi6I= -github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= -github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/urfave/cli v1.22.2 h1:gsqYFH8bb9ekPA12kRo0hfjngWQjkJPlN9R0N78BoUo= -github.com/urfave/cli v1.22.2/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/vishvananda/netlink v0.0.0-20181108222139-023a6dafdcdf/go.mod h1:+SR5DhBJrl6ZM7CoCKvpw5BKroDKQ+PJqOg65H/2ktk= -github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE= -github.com/vishvananda/netlink v1.1.1-0.20201029203352-d40f9887b852/go.mod h1:twkDnbuQxJYemMlGd4JFIcuhgX83tXhKS2B/PRMpOho= -github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc/go.mod h1:ZjcWmFBXmLKZu9Nxj3WKYEafiSqer2rnvPr0en9UNpI= -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU= -github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= -github.com/willf/bitset v1.1.11-0.20200630133818-d5bec3311243/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= -github.com/willf/bitset v1.1.11/go.mod h1:83CECat5yLh5zVOf4P1ErAgKA5UDvKtgyUABdr3+MjI= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/urfave/cli v1.22.13 h1:wsLILXG8qCJNse/qAgLNf23737Cx05GflHg/PJGe1Ok= +github.com/urfave/cli v1.22.13/go.mod h1:VufqObjsMTF2BBwKawpx9R8eAneNEWhoO0yx8Vd+FkE= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xlab/treeprint v1.1.0 h1:G/1DjNkPpfZCFt9CSh6b5/nY4VimlbHF3Rh4obvtzDk= -github.com/xlab/treeprint v1.1.0/go.mod h1:gj5Gd3gPdKtR1ikdDK6fnFLdmIS0X30kTTuNd/WEJu0= -github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= +github.com/xlab/treeprint v1.2.0 h1:HzHnuAF1plUN2zGlAFHbSQP2qJ0ZAD3XF5XD7OesXRQ= +github.com/xlab/treeprint v1.2.0/go.mod h1:gj5Gd3gPdKtR1ikdDK6fnFLdmIS0X30kTTuNd/WEJu0= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43/go.mod h1:aX5oPXxHm3bOH+xeAttToC8pqch2ScQN/JoXYupl6xs= -github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50/go.mod h1:NUSPSUX/bi6SeDMUh6brw0nXpxHnc96TguQh0+r/ssA= -github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f/go.mod h1:GlGEuHIJweS1mbCqG+7vt2nvWLzLLnRHbXz5JKd/Qbg= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= -go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= -go.etcd.io/etcd v0.5.0-alpha.5.0.20200910180754-dd1b699fc489/go.mod h1:yVHk9ub3CSBatqGNg7GRmsnfLWtoW60w4eDYfh7vHDg= -go.etcd.io/etcd/api/v3 v3.5.4 h1:OHVyt3TopwtUQ2GKdd5wu3PmmipR4FTwCqoEjSyRdIc= -go.etcd.io/etcd/api/v3 v3.5.4/go.mod h1:5GB2vv4A4AOn3yk7MftYGHkUfGtDHnEraIjym4dYz5A= -go.etcd.io/etcd/client/pkg/v3 v3.5.4 h1:lrneYvz923dvC14R54XcA7FXoZ3mlGZAgmwhfm7HqOg= -go.etcd.io/etcd/client/pkg/v3 v3.5.4/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= -go.etcd.io/etcd/client/v2 v2.305.4 h1:Dcx3/MYyfKcPNLpR4VVQUP5KgYrBeJtktBwEKkw08Ao= -go.etcd.io/etcd/client/v2 v2.305.4/go.mod h1:Ud+VUwIi9/uQHOMA+4ekToJ12lTxlv0zB/+DHwTGEbU= -go.etcd.io/etcd/client/v3 v3.5.4 h1:p83BUL3tAYS0OT/r0qglgc3M1JjhM0diV8DSWAhVXv4= -go.etcd.io/etcd/client/v3 v3.5.4/go.mod h1:ZaRkVgBZC+L+dLCjTcF1hRXpgZXQPOvnA/Ak/gq3kiY= -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.etcd.io/etcd/api/v3 v3.5.9 h1:4wSsluwyTbGGmyjJktOf3wFQoTBIURXHnq9n/G/JQHs= +go.etcd.io/etcd/api/v3 v3.5.9/go.mod h1:uyAal843mC8uUVSLWz6eHa/d971iDGnCRpmKd2Z+X8k= +go.etcd.io/etcd/client/pkg/v3 v3.5.9 h1:oidDC4+YEuSIQbsR94rY9gur91UPL6DnxDCIYd2IGsE= +go.etcd.io/etcd/client/pkg/v3 v3.5.9/go.mod h1:y+CzeSmkMpWN2Jyu1npecjB9BBnABxGM4pN8cGuJeL4= +go.etcd.io/etcd/client/v2 v2.305.9 h1:YZ2OLi0OvR0H75AcgSUajjd5uqKDKocQUqROTG11jIo= +go.etcd.io/etcd/client/v2 v2.305.9/go.mod h1:0NBdNx9wbxtEQLwAQtrDHwx58m02vXpDcgSYI2seohQ= +go.etcd.io/etcd/client/v3 v3.5.9 h1:r5xghnU7CwbUxD/fbUtRyJGaYNfDun8sp/gTr1hew6E= +go.etcd.io/etcd/client/v3 v3.5.9/go.mod h1:i/Eo5LrZ5IKqpbtpPDuaUnDOUv471oDg8cjQaUr2MbA= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 h1:+FNtrFTmVw0YZGpBGX56XDee331t6JAXeK2bcyhLOOc= -go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5/go.mod h1:nmDLcffg48OtT/PSW0Hg7FvpRQsQh5OSqIylirxKC7o= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw= -go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4= -go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= -go.uber.org/zap v1.19.0 h1:mZQZefskPPCMIBCSEH0v2/iUqqLrYtaeqwD6FUGUnFE= -go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= -golang.org/x/crypto v0.0.0-20171113213409-9f005a07e0d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181009213950-7c1a557ab941/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +go.starlark.net v0.0.0-20230525235612-a134d8f9ddca h1:VdD38733bfYv5tUZwEIskMM93VanwNIi5bIKnDrJdEY= +go.starlark.net v0.0.0-20230525235612-a134d8f9ddca/go.mod h1:jxU+3+j+71eXOW14274+SmmuW82qJzl6iZSeqEtTGds= +go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= +go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= +go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= +go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= +go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= +go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= +go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200414173820-0848c9571904/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= +golang.org/x/crypto v0.11.0 h1:6Ewdq3tDic1mg5xRO4milcWCfMVQhI4NkqWWvqejpuA= +golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk= +golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181011144130-49bb7cea24b1/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.12.0 h1:cfawfvKITfUsFCeJIHJrbSxpeu/E81khclypR0GVT50= +golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.4.0 h1:NF0gk8LVPg1Ml7SSbGyySuoxdsXitj7TvgvuRxIMc/M= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= +golang.org/x/oauth2 v0.8.0 h1:6dkIjl3j3LtZ/O3sTgZTMsLKSftL/B8Zgq4huOIIUu8= +golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.2.0 h1:PUR+T4wwASmuSTYdKjYHI5TD22Wy5ogLU5qZCOLxBrI= +golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190522044717-8097e1b27ff5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190602015325-4c4f7f33c9ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190812073006-9eafafc0a87e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191002063906-3421d5a6bb1c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191115151921-52ab43148777/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200120151820-655fe14d7479/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200217220822-9197077df867/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200817155316-9781c653f443/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200922070232-aee5d888a860/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201112073958-5cba982894dd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201117170446-d9b008d0a637/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201202213521-69691e467435/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220422013727-9388b58f7150/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA= +golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0 h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/term v0.0.0-20220526004731-065cf7ba2467/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.10.0 h1:3R7pNqamzBraeqj/Tj8qt1aQ2HpmlC+Cx/qL/7hn4/c= +golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 h1:vVKdlvoWBphwdxWKrFZEuM0kGgGLxUOYcY4U/2Vjg44= -golang.org/x/time v0.0.0-20220210224613-90d013bbcef8/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4= +golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= +golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200505023115-26f46d2f7ef8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200616133436-c1934b75d054/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20200916195026-c9a70fc28ce3/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.9.1 h1:8WMNJAz3zrtPmnYC7ISf5dEn3MT0gY7jBJfw27yrrLo= +golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.0.0-20160322025152-9bf6e6e569ff/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8/go.mod h1:0H1ncTHf11KCFhTc/+EFRbzSCOZx+VUbRMk55Yv5MYk= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190522204451-c2c4e71fbf69/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f h1:BWUVssLB0HVOSY78gIdvk1dTVYtT1y8SBWtPYuTJ/6w= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc h1:8DyZCyvI8mE1IdLy/60bS+52xfymkE72wv1asokgtao= +google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= +google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc h1:kVKPf/IiYSBWEWtkIn6wZXwWGCnLKcC8oWfZvXjsGnM= +google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc h1:XSJ8Vk1SWuNr8S18z1NZSziL0CPIXLCCMDOEFtHBOFc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.53.0 h1:LAv2ds7cmFV/XTS3XG1NneeENYrXGmorPxsBbptIjNc= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= +google.golang.org/grpc v1.55.0 h1:3Oj82/tFSCeUrRTg/5E/7d/W5A1tj6Ky1ABAuZuv5ag= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1386,135 +444,67 @@ google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzi google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= -gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= -gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= -gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= -gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/square/go-jose.v2 v2.2.2/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.5.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= -gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= -gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= -gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= -gotest.tools/v3 v3.0.3 h1:4AuOwCGf4lLR9u3YOe2awrHygurzhO/HeQ6laiA6Sx0= -gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8= +gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o= +gotest.tools/v3 v3.4.0/go.mod h1:CtbdzLSsqVhDgMtKsx03ird5YTGB3ar27v0u/yKBW5g= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -k8s.io/api v0.20.1/go.mod h1:KqwcCVogGxQY3nBlRpwt+wpAMF/KjaCc7RpywacvqUo= -k8s.io/api v0.20.4/go.mod h1:++lNL1AJMkDymriNniQsWRkMDzRaX2Y/POTUi8yvqYQ= -k8s.io/api v0.20.6/go.mod h1:X9e8Qag6JV/bL5G6bU8sdVRltWKmdHsFUGS3eVndqE8= -k8s.io/api v0.25.12 h1:vMyRHX3SASysor6zk81DsYXbkVdvzQEIL4gA+6+j6mQ= -k8s.io/api v0.25.12/go.mod h1:pAGhdr4HvJlOa1g26QpNeiQLNnzc6nwU92MQSqY2pBk= -k8s.io/apimachinery v0.20.1/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= -k8s.io/apimachinery v0.20.4/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= -k8s.io/apimachinery v0.20.6/go.mod h1:ejZXtW1Ra6V1O5H8xPBGz+T3+4gfkTCeExAHKU57MAc= -k8s.io/apimachinery v0.25.12 h1:xLVMeHrUfO4Eq2CK60YS+ElVYv0AUNSGVYdHKZFBHRE= -k8s.io/apimachinery v0.25.12/go.mod h1:IFwbcNi3gKkfDhuy0VYu3+BwbxbiIov3p6FR8ge1Epc= -k8s.io/apiserver v0.20.1/go.mod h1:ro5QHeQkgMS7ZGpvf4tSMx6bBOgPfE+f52KwvXfScaU= -k8s.io/apiserver v0.20.4/go.mod h1:Mc80thBKOyy7tbvFtB4kJv1kbdD0eIH8k8vianJcbFM= -k8s.io/apiserver v0.20.6/go.mod h1:QIJXNt6i6JB+0YQRNcS0hdRHJlMhflFmsBDeSgT1r8Q= -k8s.io/apiserver v0.25.12 h1:Dn32Ow5NKztp8+4qzFrM11q5/HjL39tkvuRqiTyNfU8= -k8s.io/apiserver v0.25.12/go.mod h1:k98t1f3cE6DJf7P8qIEGuzBWIv4h9v9P5N24zHTp7ng= -k8s.io/cli-runtime v0.25.12 h1:X9wS22mcy2gvmsrdhdQGPVBBsU2DZxKq5cB33U+WuTg= -k8s.io/cli-runtime v0.25.12/go.mod h1:4D9Txev1AL8/VprZOQvM6qfwmeQX411e6s144v6tHWM= -k8s.io/client-go v0.25.12 h1:LSwQNUqm368OjEoITifwM8+P/B+7wxvZ+yPKbFanVWI= -k8s.io/client-go v0.25.12/go.mod h1:WD2cp9N7NLyz2jMoq49vC6+8HKkjhqaDkk93l3eJO0M= -k8s.io/code-generator v0.19.7/go.mod h1:lwEq3YnLYb/7uVXLorOJfxg+cUu2oihFhHZ0n9NIla0= -k8s.io/component-base v0.20.1/go.mod h1:guxkoJnNoh8LNrbtiQOlyp2Y2XFCZQmrcg2n/DeYNLk= -k8s.io/component-base v0.20.4/go.mod h1:t4p9EdiagbVCJKrQ1RsA5/V4rFQNDfRlevJajlGwgjI= -k8s.io/component-base v0.20.6/go.mod h1:6f1MPBAeI+mvuts3sIdtpjljHWBQ2cIy38oBIWMYnrM= -k8s.io/component-base v0.25.12 h1:TAmD4poBNt08FQgtKbdiYr7AMbUmYw5b+51CX7UTOBc= -k8s.io/component-base v0.25.12/go.mod h1:tkIm/OiTy1PcV/EtYU8uiHQrCYhdejrOWnzT2AMBM4Y= -k8s.io/cri-api v0.17.3/go.mod h1:X1sbHmuXhwaHs9xxYffLqJogVsnI+f6cPRcgPel7ywM= -k8s.io/cri-api v0.20.1/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI= -k8s.io/cri-api v0.20.4/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI= -k8s.io/cri-api v0.20.6/go.mod h1:ew44AjNXwyn1s0U4xCKGodU7J1HzBeZ1MpGrpa5r8Yc= -k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20200428234225-8167cfdcfc14/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20201113003025-83324d819ded/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/gengo v0.0.0-20210813121822-485abfe95c7c/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/gengo v0.0.0-20211129171323-c02415ce4185 h1:TT1WdmqqXareKxZ/oNXEUSwKlLiHzPMyB0t8BaFeBYI= -k8s.io/gengo v0.0.0-20211129171323-c02415ce4185/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= +k8s.io/api v0.27.4 h1:0pCo/AN9hONazBKlNUdhQymmnfLRbSZjd5H5H3f0bSs= +k8s.io/api v0.27.4/go.mod h1:O3smaaX15NfxjzILfiln1D8Z3+gEYpjEpiNA/1EVK1Y= +k8s.io/apimachinery v0.27.4 h1:CdxflD4AF61yewuid0fLl6bM4a3q04jWel0IlP+aYjs= +k8s.io/apimachinery v0.27.4/go.mod h1:XNfZ6xklnMCOGGFNqXG7bUrQCoR04dh/E7FprV6pb+E= +k8s.io/apiserver v0.27.4 h1:ncZ0MBR9yQ/Gf34rtu1EK+HqT8In1YpfAUINu/Akvho= +k8s.io/apiserver v0.27.4/go.mod h1:GDEFRfFZ4/l+pAvwYRnoSfz0K4j3TWiN4WsG2KnRteE= +k8s.io/cli-runtime v0.27.4 h1:Zb0eci+58eHZNnoHhjRFc7W88s8dlG12VtIl3Nv2Hto= +k8s.io/cli-runtime v0.27.4/go.mod h1:k9Z1xiZq2xNplQmehpDquLgc+rE+pubpO1cK4al4Mlw= +k8s.io/client-go v0.27.4 h1:vj2YTtSJ6J4KxaC88P4pMPEQECWMY8gqPqsTgUKzvjk= +k8s.io/client-go v0.27.4/go.mod h1:ragcly7lUlN0SRPk5/ZkGnDjPknzb37TICq07WhI6Xc= +k8s.io/component-base v0.27.4 h1:Wqc0jMKEDGjKXdae8hBXeskRP//vu1m6ypC+gwErj4c= +k8s.io/component-base v0.27.4/go.mod h1:hoiEETnLc0ioLv6WPeDt8vD34DDeB35MfQnxCARq3kY= +k8s.io/gengo v0.0.0-20230306165830-ab3349d207d4 h1:aClvVG6GbX10ISHcc24J+tqbr0S7fEe1MWkFJ7cWWCI= +k8s.io/gengo v0.0.0-20230306165830-ab3349d207d4/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= k8s.io/klog/v2 v2.2.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.70.1 h1:7aaoSdahviPmR+XkS7FyxlkkXs6tHISSG03RxleQAVQ= -k8s.io/klog/v2 v2.70.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6/go.mod h1:UuqjUnNftUyPE5H64/qeyjQoUZhGpeFDVdxjTeEVN2o= -k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM= -k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 h1:MQ8BAZPZlWk3S9K4a9NCkIFQtZShWqoha7snGixVgEA= -k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1/go.mod h1:C/N6wCaBHeBHkHUesQOQy2/MZqGgMAFPqGsGQLdbZBU= -k8s.io/kubectl v0.25.12 h1:VrLnPh1d7Z2QVwA3SK1spMc5VQnUZz3A/tPakKT0zCI= -k8s.io/kubectl v0.25.12/go.mod h1:TrBS/CbtqBr98hqg2RqGmCy6pXe1k696RAbFjkyqmR8= -k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= -k8s.io/kubernetes v1.25.12 h1:KSvhgELGV/GOYRqxbuhzrxPpU2ON4Xp1/k08E2v/7SY= -k8s.io/kubernetes v1.25.12/go.mod h1:CjSm5tJyKxHyGhK5aAID68YMErzDhAjWLL7Nd7NMonU= -k8s.io/pod-security-admission v0.25.12 h1:xPQjnRo4Tr8rFyf4dSRMfX1KbKOa+2SVvU05n0wb1k0= -k8s.io/pod-security-admission v0.25.12/go.mod h1:Z8g5lOQtc2I0tAPgGExH4YT53rQBl6643kYz51O4YB4= -k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20210802155522-efc7438f0176/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed h1:jAne/RjBTyawwAy0utX5eqigAwz/lQhTmy+Hr/Cpue4= -k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.14/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.15/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= +k8s.io/klog/v2 v2.100.1 h1:7WCHKK6K8fNhTqfBhISHQ97KrnJNFZMcQvKp7gP/tmg= +k8s.io/klog/v2 v2.100.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= +k8s.io/kube-openapi v0.0.0-20230530175149-33f04d5d6b58 h1:KkgpLExe791sF/KynDwSKrgU/4RwTsnR5blwQBVBLyM= +k8s.io/kube-openapi v0.0.0-20230530175149-33f04d5d6b58/go.mod h1:kzo02I3kQ4BTtEfVLaPbjvCkX97YqGve33wzlb3fofQ= +k8s.io/kubectl v0.27.4 h1:RV1TQLIbtL34+vIM+W7HaS3KfAbqvy9lWn6pWB9els4= +k8s.io/kubectl v0.27.4/go.mod h1:qtc1s3BouB9KixJkriZMQqTsXMc+OAni6FeKAhq7q14= +k8s.io/kubernetes v1.15.0-alpha.0 h1:gIwzzIgt0BX8fznDZRxdZv2837cEmVetI54aUfzkPk8= +k8s.io/kubernetes v1.15.0-alpha.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= +k8s.io/pod-security-admission v0.27.4 h1:AA32ID+ECNJoUU8yuzLt4WzKPDZg7zMmP2cZ9rVsFyE= +k8s.io/pod-security-admission v0.27.4/go.mod h1:GOcnrXk8TT5cPhtCxdlkOAvBnX3QmZiMHqPw9PbZhPs= +k8s.io/utils v0.0.0-20230505201702-9f6742963106 h1:EObNQ3TW2D+WptiYXlApGNLVy0zm/JIBVY9i+M4wpAU= +k8s.io/utils v0.0.0-20230505201702-9f6742963106/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 h1:kDi4JBNAsJWfz1aEXhO8Jg87JJaPNLh5tIzYHgStQ9Y= sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2/go.mod h1:B+TnT182UBxE84DiCz4CVE26eOSDAeYCpfDnC2kdKMY= -sigs.k8s.io/kustomize/api v0.12.1 h1:7YM7gW3kYBwtKvoY216ZzY+8hM+lV53LUayghNRJ0vM= -sigs.k8s.io/kustomize/api v0.12.1/go.mod h1:y3JUhimkZkR6sbLNwfJHxvo1TCLwuwm14sCYnkH6S1s= -sigs.k8s.io/kustomize/kyaml v0.13.9 h1:Qz53EAaFFANyNgyOEJbT/yoIHygK40/ZcvU3rgry2Tk= -sigs.k8s.io/kustomize/kyaml v0.13.9/go.mod h1:QsRbD0/KcU+wdk0/L0fIp2KLnohkVzs6fQ85/nOXac4= -sigs.k8s.io/structured-merge-diff/v4 v4.0.1/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.0.3/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= +sigs.k8s.io/kustomize/api v0.13.4 h1:E38Hfx0G9R9v7vRgKshviPotJQETG0S2gD3JdHLCAsI= +sigs.k8s.io/kustomize/api v0.13.4/go.mod h1:Bkaavz5RKK6ZzP0zgPrB7QbpbBJKiHuD3BB0KujY7Ls= +sigs.k8s.io/kustomize/kyaml v0.14.2 h1:9WSwztbzwGszG1bZTziQUmVMrJccnyrLb5ZMKpJGvXw= +sigs.k8s.io/kustomize/kyaml v0.14.2/go.mod h1:AN1/IpawKilWD7V+YvQwRGUvuUOOWpjsHu6uHwonSF4= sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE= sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E= -sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo= sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= From 0d1d839b6809d2ca320d2b870fdca39f4b6c0747 Mon Sep 17 00:00:00 2001 From: Rayan Das Date: Wed, 31 May 2023 13:56:40 +0530 Subject: [PATCH 2/7] replaced ContainerCreateCreatedBody with CreateResponse as per https://github.com/moby/moby/pull/43530/files add check to remove container-runtime flag from v1.27 ref: https://v1-26.docs.kubernetes.io/docs/reference/command-line-tools-reference/kubelet/ --- Dockerfile.dapper | 2 +- cluster/plan.go | 7 +++++-- docker/docker.go | 18 +++++++++--------- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/Dockerfile.dapper b/Dockerfile.dapper index eb52dcad7..8f44661df 100644 --- a/Dockerfile.dapper +++ b/Dockerfile.dapper @@ -11,7 +11,7 @@ RUN apt-get update && \ ENV GOLANG_ARCH_amd64=amd64 GOLANG_ARCH_arm=armv6l GOLANG_ARCH_arm64=arm64 GOLANG_ARCH=GOLANG_ARCH_${ARCH} \ GOPATH=/go PATH=/go/bin:/usr/local/go/bin:${PATH} SHELL=/bin/bash -RUN wget -O - https://storage.googleapis.com/golang/go1.19.3.linux-${!GOLANG_ARCH}.tar.gz | tar -xzf - -C /usr/local +RUN wget -O - https://storage.googleapis.com/golang/go1.20.4.linux-${!GOLANG_ARCH}.tar.gz | tar -xzf - -C /usr/local RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.2 diff --git a/cluster/plan.go b/cluster/plan.go index 21c77ae88..020216597 100644 --- a/cluster/plan.go +++ b/cluster/plan.go @@ -69,6 +69,7 @@ var ( parsedRangeAtLeast123 = semver.MustParseRange(">= 1.23.0-rancher0") parsedRangeAtLeast124 = semver.MustParseRange(">= 1.24.0-rancher0") parsedRangeAtLeast125 = semver.MustParseRange(">= 1.25.0-rancher0") + parsedRangeBelow127 = semver.MustParseRange("< 1.27.0-rancher0") parsedRange123 = semver.MustParseRange(">=1.23.0-rancher0 <=1.23.99-rancher-0") parsedRange124 = semver.MustParseRange(">=1.24.0-rancher0 <=1.24.99-rancher-0") ) @@ -505,12 +506,14 @@ func (c *Cluster) BuildKubeletProcess(host *hosts.Host, serviceOptions v3.Kubern var Binds []string if c.IsCRIDockerdEnabled() { - CommandArgs["container-runtime"] = "remote" - CommandArgs["container-runtime-endpoint"] = "/var/run/dockershim.sock" parsedVersion, err := getClusterVersion(c.Version) if err != nil { logrus.Debugf("Error while parsing cluster version: %s", err) } + if parsedRangeBelow127(parsedVersion) { + CommandArgs["container-runtime"] = "remote" // This flag has been removed from v1.27 https://v1-26.docs.kubernetes.io/docs/reference/command-line-tools-reference/kubelet/ + } + CommandArgs["container-runtime-endpoint"] = "/var/run/dockershim.sock" // cri-dockerd must be enabled if the cluster version is 1.24 and higher if parsedRangeAtLeast124(parsedVersion) { CommandArgs["container-runtime-endpoint"] = "unix:///var/run/cri-dockerd.sock" diff --git a/docker/docker.go b/docker/docker.go index 80ab06a23..bb7e97d9a 100644 --- a/docker/docker.go +++ b/docker/docker.go @@ -381,11 +381,11 @@ func RestartContainer(ctx context.Context, dClient *client.Client, hostname, con return fmt.Errorf("Failed to restart container: docker client is nil for container [%s] on host [%s]", containerName, hostname) } var err error - restartTimeout := RestartTimeout * time.Second + restartTimeout := RestartTimeout // Retry up to RetryCount times to see if image exists for i := 1; i <= RetryCount; i++ { logrus.Infof("Restarting container [%s] on host [%s], try #%d", containerName, hostname, i) - err = dClient.ContainerRestart(ctx, containerName, &restartTimeout) + err = dClient.ContainerRestart(ctx, containerName, container.StopOptions{Timeout: &restartTimeout}) if err != nil { logrus.Warningf("Can't restart Docker container [%s] for host [%s]: %v", containerName, hostname, err) continue @@ -400,11 +400,11 @@ func StopContainer(ctx context.Context, dClient *client.Client, hostname string, } var err error // define the stop timeout - stopTimeoutDuration := StopTimeout * time.Second + stopTimeout := StopTimeout // Retry up to RetryCount times to see if image exists for i := 1; i <= RetryCount; i++ { - logrus.Infof("Stopping container [%s] on host [%s] with stopTimeoutDuration [%s], try #%d", containerName, hostname, stopTimeoutDuration, i) - err = dClient.ContainerStop(ctx, containerName, &stopTimeoutDuration) + logrus.Infof("Stopping container [%s] on host [%s] with stopTimeout [%d], try #%d", containerName, hostname, stopTimeout, i) + err = dClient.ContainerStop(ctx, containerName, container.StopOptions{Timeout: &stopTimeout}) if err != nil { logrus.Warningf("Can't stop Docker container [%s] for host [%s]: %v", containerName, hostname, err) continue @@ -453,11 +453,11 @@ func StartContainer(ctx context.Context, dClient *client.Client, hostname string return err } -func CreateContainer(ctx context.Context, dClient *client.Client, hostname string, containerName string, imageCfg *container.Config, hostCfg *container.HostConfig) (container.ContainerCreateCreatedBody, error) { +func CreateContainer(ctx context.Context, dClient *client.Client, hostname string, containerName string, imageCfg *container.Config, hostCfg *container.HostConfig) (container.CreateResponse, error) { if dClient == nil { - return container.ContainerCreateCreatedBody{}, fmt.Errorf("Failed to create container: docker client is nil for container [%s] on host [%s]", containerName, hostname) + return container.CreateResponse{}, fmt.Errorf("Failed to create container: docker client is nil for container [%s] on host [%s]", containerName, hostname) } - var created container.ContainerCreateCreatedBody + var created container.CreateResponse var err error // Retry up to RetryCount times to see if image exists for i := 1; i <= RetryCount; i++ { @@ -468,7 +468,7 @@ func CreateContainer(ctx context.Context, dClient *client.Client, hostname strin } return created, nil } - return container.ContainerCreateCreatedBody{}, fmt.Errorf("Failed to create Docker container [%s] on host [%s]: %v", containerName, hostname, err) + return container.CreateResponse{}, fmt.Errorf("Failed to create Docker container [%s] on host [%s]: %v", containerName, hostname, err) } func InspectContainer(ctx context.Context, dClient *client.Client, hostname string, containerName string) (types.ContainerJSON, error) { From 49b67c0fe0008823018ba65fe85fdc82619b0a2b Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Fri, 18 Aug 2023 10:46:07 +0200 Subject: [PATCH 3/7] Add warning log about weave deprecation Signed-off-by: Manuel Buil --- cluster/validation.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/cluster/validation.go b/cluster/validation.go index 41e0ac70f..1cafa5173 100644 --- a/cluster/validation.go +++ b/cluster/validation.go @@ -217,6 +217,13 @@ func validateNetworkOptions(c *Cluster) error { if c.Network.Plugin == FlannelNetworkPlugin && c.Network.MTU != 0 { return fmt.Errorf("Network plugin [%s] does not support configuring MTU", FlannelNetworkPlugin) } + + if c.Network.Plugin == WeaveNetworkPlugin { + if err := warnWeaveDeprecation(c.Version); err != nil { + return fmt.Errorf("Error while printing Weave deprecation message: %w", err) + } + } + dualStack := false serviceClusterRanges := strings.Split(c.Services.KubeAPI.ServiceClusterIPRange, ",") if len(serviceClusterRanges) > 1 { @@ -731,3 +738,19 @@ func getClusterVersion(version string) (semver.Version, error) { } return parsedVersion, nil } + +// warnWeaveDeprecation prints a deprecation warning if version is higher than 1.27 +func warnWeaveDeprecation(k8sVersion string) error { + version, err := util.StrToSemVer(k8sVersion) + if err != nil { + return fmt.Errorf("error while parsing cluster version [%s]: %w", k8sVersion, err) + } + version127, err := util.StrToSemVer("v1.27.0") + if err != nil { + return fmt.Errorf("failed to translate v1.27.0 to semver notation: %w", err) + } + if !version.LessThan(*version127) { + logrus.Warn("Weave CNI plugin is deprecated starting with Kubernetes v1.27 and will be removed in Kubernetes v1.30") + } + return nil +} From 1ce3e2aa50d87429e270c86964c0ef241bcfc21a Mon Sep 17 00:00:00 2001 From: Kinara Shah Date: Mon, 16 Oct 2023 12:42:42 -0700 Subject: [PATCH 4/7] add logic for external aws cloud provider --- cluster/addons.go | 4 +-- cluster/cluster.go | 20 ++++++----- cluster/defaults.go | 19 +++++++++-- cluster/plan.go | 22 +++++++++--- hosts/hosts.go | 17 +++------- k8s/node.go | 72 ++++++++++++---------------------------- services/controlplane.go | 21 ++++++------ services/node_util.go | 8 ++--- services/workerplane.go | 33 ++++++++++-------- 9 files changed, 107 insertions(+), 109 deletions(-) diff --git a/cluster/addons.go b/cluster/addons.go index c08b55a87..7e3457c0d 100644 --- a/cluster/addons.go +++ b/cluster/addons.go @@ -492,7 +492,7 @@ func (c *Cluster) doAddonDeploy(ctx context.Context, addonYaml, resourceName str if err != nil { return &addonError{fmt.Sprintf("%v", err), isCritical} } - node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride) + node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride, c.CloudProvider.Name) if err != nil { return &addonError{fmt.Sprintf("Failed to get Node [%s]: %v", c.ControlPlaneHosts[0].HostnameOverride, err), isCritical} } @@ -513,7 +513,7 @@ func (c *Cluster) doAddonDelete(ctx context.Context, resourceName string, isCrit if err != nil { return &addonError{fmt.Sprintf("%v", err), isCritical} } - node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride) + node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride, c.CloudProvider.Name) if err != nil { return &addonError{fmt.Sprintf("Failed to get Node [%s]: %v", c.ControlPlaneHosts[0].HostnameOverride, err), isCritical} } diff --git a/cluster/cluster.go b/cluster/cluster.go index 254af7ca6..3b3f0efdb 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -189,7 +189,7 @@ func (c *Cluster) UpgradeControlPlane(ctx context.Context, kubeClient *kubernete continue } // find existing nodes that are in NotReady state - if err := services.CheckNodeReady(kubeClient, host, services.ControlRole); err != nil { + if err := services.CheckNodeReady(kubeClient, host, services.ControlRole, c.CloudProvider.Name); err != nil { logrus.Debugf("Found node %v in NotReady state", host.HostnameOverride) notReadyHosts = append(notReadyHosts, host) notReadyHostNames = append(notReadyHostNames, host.HostnameOverride) @@ -223,7 +223,7 @@ func (c *Cluster) UpgradeControlPlane(ctx context.Context, kubeClient *kubernete } // Calling CheckNodeReady wil give some time for nodes to get in Ready state for _, host := range notReadyHosts { - err = services.CheckNodeReady(kubeClient, host, services.ControlRole) + err = services.CheckNodeReady(kubeClient, host, services.ControlRole, c.CloudProvider.Name) if err != nil { logrus.Errorf("Host %v failed to report Ready status with error: %v", host.HostnameOverride, err) } @@ -236,7 +236,8 @@ func (c *Cluster) UpgradeControlPlane(ctx context.Context, kubeClient *kubernete cpNodePlanMap, c.UpdateWorkersOnly, c.SystemImages.Alpine, - c.Certificates, c.UpgradeStrategy, c.NewHosts, inactiveHosts, c.MaxUnavailableForControlNodes, c.Version) + c.Certificates, c.UpgradeStrategy, c.NewHosts, inactiveHosts, c.MaxUnavailableForControlNodes, + c.Version, c.CloudProvider.Name) if err != nil { return "", fmt.Errorf("[controlPlane] Failed to upgrade Control Plane: %v", err) } @@ -310,7 +311,7 @@ func (c *Cluster) UpgradeWorkerPlane(ctx context.Context, kubeClient *kubernetes continue } // find existing nodes that are in NotReady state - if err := services.CheckNodeReady(kubeClient, host, services.WorkerRole); err != nil { + if err := services.CheckNodeReady(kubeClient, host, services.WorkerRole, c.CloudProvider.Name); err != nil { logrus.Debugf("Found node %v in NotReady state", host.HostnameOverride) notReadyHosts = append(notReadyHosts, host) notReadyHostNames = append(notReadyHostNames, host.HostnameOverride) @@ -332,7 +333,7 @@ func (c *Cluster) UpgradeWorkerPlane(ctx context.Context, kubeClient *kubernetes } // Calling CheckNodeReady wil give some time for nodes to get in Ready state for _, host := range notReadyHosts { - err = services.CheckNodeReady(kubeClient, host, services.WorkerRole) + err = services.CheckNodeReady(kubeClient, host, services.WorkerRole, c.CloudProvider.Name) if err != nil { logrus.Errorf("Host %v failed to report Ready status with error: %v", host.HostnameOverride, err) } @@ -349,7 +350,8 @@ func (c *Cluster) UpgradeWorkerPlane(ctx context.Context, kubeClient *kubernetes c.UpgradeStrategy, c.NewHosts, c.MaxUnavailableForWorkerNodes, - c.Version) + c.Version, + c.CloudProvider.Name) if err != nil { return "", fmt.Errorf("[workerPlane] Failed to upgrade Worker Plane: %v", err) } @@ -994,7 +996,7 @@ func (c *Cluster) SyncLabelsAndTaints(ctx context.Context, currentCluster *Clust var errs []error for host := range hostQueue { logrus.Debugf("worker [%d] starting sync for node [%s]", w, host.HostnameOverride) - if err := setNodeAnnotationsLabelsTaints(k8sClient, host); err != nil { + if err := setNodeAnnotationsLabelsTaints(k8sClient, host, c.CloudProvider.Name); err != nil { errs = append(errs, err) } } @@ -1012,11 +1014,11 @@ func (c *Cluster) SyncLabelsAndTaints(ctx context.Context, currentCluster *Clust return nil } -func setNodeAnnotationsLabelsTaints(k8sClient *kubernetes.Clientset, host *hosts.Host) error { +func setNodeAnnotationsLabelsTaints(k8sClient *kubernetes.Clientset, host *hosts.Host, cloudProviderName string) error { node := &v1.Node{} var err error for retries := 0; retries <= 5; retries++ { - node, err = k8s.GetNode(k8sClient, host.HostnameOverride) + node, err = k8s.GetNode(k8sClient, host.HostnameOverride, cloudProviderName) if err != nil { logrus.Debugf("[hosts] Can't find node by name [%s], error: %v", host.HostnameOverride, err) time.Sleep(2 * time.Second) diff --git a/cluster/defaults.go b/cluster/defaults.go index e14324e43..740ca9524 100644 --- a/cluster/defaults.go +++ b/cluster/defaults.go @@ -9,6 +9,7 @@ import ( "github.com/blang/semver" "github.com/rancher/rke/cloudprovider" + "github.com/rancher/rke/cloudprovider/aws" "github.com/rancher/rke/docker" "github.com/rancher/rke/k8s" "github.com/rancher/rke/log" @@ -1061,11 +1062,25 @@ func (c *Cluster) setCloudProvider() error { if p != nil { c.CloudConfigFile, err = p.GenerateCloudConfigFile() if err != nil { - return fmt.Errorf("Failed to parse cloud config file: %v", err) + return fmt.Errorf("failed to parse cloud config file: %v", err) } c.CloudProvider.Name = p.GetName() if c.CloudProvider.Name == "" { - return fmt.Errorf("Name of the cloud provider is not defined for custom provider") + return fmt.Errorf("name of the cloud provider is not defined for custom provider") + } + if c.CloudProvider.Name == aws.AWSCloudProviderName { + clusterVersion, err := getClusterVersion(c.Version) + if err != nil { + return fmt.Errorf("failed to get cluster version for checking cloud provider: %v", err) + } + // cloud provider must be external or external-aws for >=1.27 + defaultExternalAwsRange, err := semver.ParseRange(">=1.27.0-rancher0") + if err != nil { + return fmt.Errorf("failed to parse semver range for checking cloud provider %v", err) + } + if defaultExternalAwsRange(clusterVersion) { + return fmt.Errorf(fmt.Sprintf("Cloud provider %s is invalid for [%s]", aws.AWSCloudProviderName, c.Version)) + } } } return nil diff --git a/cluster/plan.go b/cluster/plan.go index 020216597..2c1d7113d 100644 --- a/cluster/plan.go +++ b/cluster/plan.go @@ -13,6 +13,7 @@ import ( "github.com/blang/semver" "github.com/docker/docker/api/types" + "github.com/rancher/rke/cloudprovider/aws" "github.com/rancher/rke/docker" "github.com/rancher/rke/hosts" "github.com/rancher/rke/k8s" @@ -180,7 +181,7 @@ func (c *Cluster) BuildKubeAPIProcess(host *hosts.Host, serviceOptions v3.Kubern CommandArgs := map[string]string{ "admission-control-config-file": DefaultKubeAPIArgAdmissionControlConfigFileValue, "client-ca-file": pki.GetCertPath(pki.CACertName), - "cloud-provider": c.CloudProvider.Name, + "cloud-provider": getCloudProviderName(c.CloudProvider.Name), "etcd-cafile": etcdCAClientCert, "etcd-certfile": etcdClientCert, "etcd-keyfile": etcdClientKey, @@ -345,7 +346,7 @@ func (c *Cluster) BuildKubeAPIProcess(host *hosts.Host, serviceOptions v3.Kubern func (c *Cluster) BuildKubeControllerProcess(host *hosts.Host, serviceOptions v3.KubernetesServicesOptions) v3.Process { Command := c.getRKEToolsEntryPoint(host.OS(), "kube-controller-manager") CommandArgs := map[string]string{ - "cloud-provider": c.CloudProvider.Name, + "cloud-provider": getCloudProviderName(c.CloudProvider.Name), "cluster-cidr": c.ClusterCIDR, "kubeconfig": pki.GetConfigPath(pki.KubeControllerCertName), "root-ca-file": pki.GetCertPath(pki.CACertName), @@ -464,7 +465,7 @@ func (c *Cluster) BuildKubeletProcess(host *hosts.Host, serviceOptions v3.Kubern Command := c.getRKEToolsEntryPoint(host.OS(), "kubelet") CommandArgs := map[string]string{ "client-ca-file": pki.GetCertPath(pki.CACertName), - "cloud-provider": c.CloudProvider.Name, + "cloud-provider": getCloudProviderName(c.CloudProvider.Name), "cluster-dns": c.ClusterDNSServer, "cluster-domain": c.ClusterDomain, "fail-swap-on": strconv.FormatBool(kubelet.FailSwapOn), @@ -496,6 +497,11 @@ func (c *Cluster) BuildKubeletProcess(host *hosts.Host, serviceOptions v3.Kubern if host.IsWindows() { // compatible with Windows CommandArgs["cloud-config"] = path.Join(host.PrefixPath, cloudConfigFileName) } + + if c.CloudProvider.Name == k8s.ExternalAWSCloudProviderName && c.CloudProvider.UseInstanceMetadataHostname != nil && *c.CloudProvider.UseInstanceMetadataHostname { + // rke-tools will inject hostname-override from ec2 instance metadata to match with the spec.nodeName set by cloud provider https://github.com/rancher/rke-tools/blob/3eab4f07aa97a8aeeaaef55b1b7bbc82e2a3374a/entrypoint.sh#L17 + delete(CommandArgs, "hostname-override") + } } if c.IsKubeletGenerateServingCertificateEnabled() { @@ -695,7 +701,8 @@ func (c *Cluster) BuildKubeProxyProcess(host *hosts.Host, serviceOptions v3.Kube } else { CommandArgs["bind-address"] = host.Address } - if c.CloudProvider.Name == k8s.AWSCloudProvider && c.CloudProvider.UseInstanceMetadataHostname != nil && *c.CloudProvider.UseInstanceMetadataHostname { + if (c.CloudProvider.Name == k8s.ExternalAWSCloudProviderName || c.CloudProvider.Name == aws.AWSCloudProviderName) && + c.CloudProvider.UseInstanceMetadataHostname != nil && *c.CloudProvider.UseInstanceMetadataHostname { // rke-tools will inject hostname-override from ec2 instance metadata to match with the spec.nodeName set by cloud provider https://github.com/rancher/rke-tools/blob/3eab4f07aa97a8aeeaaef55b1b7bbc82e2a3374a/entrypoint.sh#L17 delete(CommandArgs, "hostname-override") } @@ -1289,3 +1296,10 @@ func (c *Cluster) IsCRIDockerdEnabled() bool { } return false } + +func getCloudProviderName(name string) string { + if name == k8s.ExternalAWSCloudProviderName { + return "external" + } + return name +} diff --git a/hosts/hosts.go b/hosts/hosts.go index 86dc1361e..721aae8c6 100644 --- a/hosts/hosts.go +++ b/hosts/hosts.go @@ -191,13 +191,13 @@ func (h *Host) ProcessFilter(processes map[string]v3.Process) map[string]v3.Proc return processes } -func DeleteNode(ctx context.Context, toDeleteHost *Host, kubeClient *kubernetes.Clientset, hasAnotherRole bool, cloudProvider string) error { +func DeleteNode(ctx context.Context, toDeleteHost *Host, kubeClient *kubernetes.Clientset, hasAnotherRole bool, cloudProviderName string) error { if hasAnotherRole { log.Infof(ctx, "[hosts] host [%s] has another role, skipping delete from kubernetes cluster", toDeleteHost.Address) return nil } log.Infof(ctx, "[hosts] Cordoning host [%s]", toDeleteHost.Address) - if _, err := k8s.GetNode(kubeClient, toDeleteHost.HostnameOverride); err != nil { + if _, err := k8s.GetNode(kubeClient, toDeleteHost.HostnameOverride, cloudProviderName); err != nil { if apierrors.IsNotFound(err) { log.Warnf(ctx, "[hosts] Can't find node by name [%s]", toDeleteHost.Address) return nil @@ -205,26 +205,17 @@ func DeleteNode(ctx context.Context, toDeleteHost *Host, kubeClient *kubernetes. return err } - if err := k8s.CordonUncordon(kubeClient, toDeleteHost.HostnameOverride, true); err != nil { + if err := k8s.CordonUncordon(kubeClient, toDeleteHost.HostnameOverride, cloudProviderName, true); err != nil { return err } log.Infof(ctx, "[hosts] Deleting host [%s] from the cluster", toDeleteHost.Address) - if err := k8s.DeleteNode(kubeClient, toDeleteHost.HostnameOverride, cloudProvider); err != nil { + if err := k8s.DeleteNode(kubeClient, toDeleteHost.HostnameOverride, cloudProviderName); err != nil { return err } log.Infof(ctx, "[hosts] Successfully deleted host [%s] from the cluster", toDeleteHost.Address) return nil } -func RemoveTaintFromHost(ctx context.Context, host *Host, taintKey string, kubeClient *kubernetes.Clientset) error { - log.Infof(ctx, "[hosts] removing taint [%s] from host [%s]", taintKey, host.Address) - if err := k8s.RemoveTaintFromNodeByKey(kubeClient, host.HostnameOverride, taintKey); err != nil { - return err - } - log.Infof(ctx, "[hosts] Successfully deleted taint [%s] from host [%s]", taintKey, host.Address) - return nil -} - func GetToDeleteHosts(currentHosts, configHosts, inactiveHosts []*Host, includeInactive bool) []*Host { toDeleteHosts := []*Host{} for _, currentHost := range currentHosts { diff --git a/k8s/node.go b/k8s/node.go index 53eb31840..c48fc24c3 100644 --- a/k8s/node.go +++ b/k8s/node.go @@ -15,18 +15,19 @@ import ( ) const ( - HostnameLabel = "kubernetes.io/hostname" - InternalAddressAnnotation = "rke.cattle.io/internal-ip" - ExternalAddressAnnotation = "rke.cattle.io/external-ip" - AWSCloudProvider = "aws" - MaxRetries = 5 - RetryInterval = 5 + HostnameLabel = "kubernetes.io/hostname" + InternalAddressAnnotation = "rke.cattle.io/internal-ip" + ExternalAddressAnnotation = "rke.cattle.io/external-ip" + AWSCloudProvider = "aws" + ExternalAWSCloudProviderName = "external-aws" + MaxRetries = 5 + RetryInterval = 5 ) -func DeleteNode(k8sClient *kubernetes.Clientset, nodeName, cloudProvider string) error { +func DeleteNode(k8sClient *kubernetes.Clientset, nodeName, cloudProviderName string) error { // If cloud provider is configured, the node name can be set by the cloud provider, which can be different from the original node name - if cloudProvider != "" { - node, err := GetNode(k8sClient, nodeName) + if cloudProviderName != "" { + node, err := GetNode(k8sClient, nodeName, cloudProviderName) if err != nil { return err } @@ -39,7 +40,7 @@ func GetNodeList(k8sClient *kubernetes.Clientset) (*v1.NodeList, error) { return k8sClient.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{}) } -func GetNode(k8sClient *kubernetes.Clientset, nodeName string) (*v1.Node, error) { +func GetNode(k8sClient *kubernetes.Clientset, nodeName, cloudProviderName string) (*v1.Node, error) { var listErr error for retries := 0; retries < MaxRetries; retries++ { logrus.Debugf("Checking node list for node [%v], try #%v", nodeName, retries+1) @@ -55,6 +56,14 @@ func GetNode(k8sClient *kubernetes.Clientset, nodeName string) (*v1.Node, error) if strings.ToLower(node.Labels[HostnameLabel]) == strings.ToLower(nodeName) { return &node, nil } + if cloudProviderName == ExternalAWSCloudProviderName { + logrus.Debugf("Checking hostname address for node [%v], cloud provider: %v", nodeName, cloudProviderName) + for _, addr := range node.Status.Addresses { + if addr.Type == v1.NodeHostName && strings.ToLower(node.Labels[HostnameLabel]) == addr.Address { + return &node, nil + } + } + } } time.Sleep(time.Second * RetryInterval) } @@ -64,10 +73,10 @@ func GetNode(k8sClient *kubernetes.Clientset, nodeName string) (*v1.Node, error) return nil, apierrors.NewNotFound(schema.GroupResource{}, nodeName) } -func CordonUncordon(k8sClient *kubernetes.Clientset, nodeName string, cordoned bool) error { +func CordonUncordon(k8sClient *kubernetes.Clientset, nodeName string, cloudProviderName string, cordoned bool) error { updated := false for retries := 0; retries < MaxRetries; retries++ { - node, err := GetNode(k8sClient, nodeName) + node, err := GetNode(k8sClient, nodeName, cloudProviderName) if err != nil { logrus.Debugf("Error getting node %s: %v", nodeName, err) // no need to retry here since GetNode already retries @@ -102,45 +111,6 @@ func IsNodeReady(node v1.Node) bool { return false } -func RemoveTaintFromNodeByKey(k8sClient *kubernetes.Clientset, nodeName, taintKey string) error { - updated := false - var err error - var node *v1.Node - for retries := 0; retries <= 5; retries++ { - node, err = GetNode(k8sClient, nodeName) - if err != nil { - if apierrors.IsNotFound(err) { - logrus.Debugf("[hosts] Can't find node by name [%s]", nodeName) - return nil - } - return err - } - foundTaint := false - for i, taint := range node.Spec.Taints { - if taint.Key == taintKey { - foundTaint = true - node.Spec.Taints = append(node.Spec.Taints[:i], node.Spec.Taints[i+1:]...) - break - } - } - if !foundTaint { - return nil - } - _, err = k8sClient.CoreV1().Nodes().Update(context.TODO(), node, metav1.UpdateOptions{}) - if err != nil { - logrus.Debugf("Error updating node [%s] with new set of taints: %v", node.Name, err) - time.Sleep(time.Second * 5) - continue - } - updated = true - break - } - if !updated { - return fmt.Errorf("Timeout waiting for node [%s] to be updated with new set of taints: %v", node.Name, err) - } - return nil -} - func SyncNodeLabels(node *v1.Node, toAddLabels, toDelLabels map[string]string) { oldLabels := map[string]string{} if node.Labels == nil { diff --git a/services/controlplane.go b/services/controlplane.go index 61b912a65..2bcca06d5 100644 --- a/services/controlplane.go +++ b/services/controlplane.go @@ -52,7 +52,7 @@ func RunControlPlane(ctx context.Context, controlHosts []*hosts.Host, localConnD func UpgradeControlPlaneNodes(ctx context.Context, kubeClient *kubernetes.Clientset, controlHosts []*hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, cpNodePlanMap map[string]v3.RKEConfigNodePlan, updateWorkersOnly bool, alpineImage string, certMap map[string]pki.CertificatePKI, - upgradeStrategy *v3.NodeUpgradeStrategy, newHosts, inactiveHosts map[string]bool, maxUnavailable int, k8sVersion string) (string, error) { + upgradeStrategy *v3.NodeUpgradeStrategy, newHosts, inactiveHosts map[string]bool, maxUnavailable int, k8sVersion, cloudProviderName string) (string, error) { if updateWorkersOnly { return "", nil } @@ -83,7 +83,7 @@ func UpgradeControlPlaneNodes(ctx context.Context, kubeClient *kubernetes.Client inactiveHostErr = fmt.Errorf("provisioning incomplete, host(s) [%s] skipped because they could not be contacted", strings.Join(inactiveHostNames, ",")) } hostsFailedToUpgrade, err := processControlPlaneForUpgrade(ctx, kubeClient, controlHosts, localConnDialerFactory, prsMap, cpNodePlanMap, updateWorkersOnly, alpineImage, certMap, - upgradeStrategy, newHosts, inactiveHosts, maxUnavailable, drainHelper, k8sVersion) + upgradeStrategy, newHosts, inactiveHosts, maxUnavailable, drainHelper, k8sVersion, cloudProviderName) if err != nil || inactiveHostErr != nil { if len(hostsFailedToUpgrade) > 0 { logrus.Errorf("Failed to upgrade hosts: %v with error %v", strings.Join(hostsFailedToUpgrade, ","), err) @@ -103,7 +103,7 @@ func UpgradeControlPlaneNodes(ctx context.Context, kubeClient *kubernetes.Client func processControlPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.Clientset, controlHosts []*hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, cpNodePlanMap map[string]v3.RKEConfigNodePlan, updateWorkersOnly bool, alpineImage string, certMap map[string]pki.CertificatePKI, - upgradeStrategy *v3.NodeUpgradeStrategy, newHosts, inactiveHosts map[string]bool, maxUnavailable int, drainHelper drain.Helper, k8sVersion string) ([]string, error) { + upgradeStrategy *v3.NodeUpgradeStrategy, newHosts, inactiveHosts map[string]bool, maxUnavailable int, drainHelper drain.Helper, k8sVersion, cloudProviderName string) ([]string, error) { var errgrp errgroup.Group var failedHosts []string var hostsFailedToUpgrade = make(chan string, maxUnavailable) @@ -130,7 +130,7 @@ func processControlPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.C } continue } - if err := CheckNodeReady(kubeClient, runHost, ControlRole); err != nil { + if err := CheckNodeReady(kubeClient, runHost, ControlRole, cloudProviderName); err != nil { errList = append(errList, err) hostsFailedToUpgrade <- runHost.HostnameOverride hostsFailed.Store(runHost.HostnameOverride, true) @@ -165,7 +165,7 @@ func processControlPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.C } if !controlPlaneUpgradable && !workerPlaneUpgradable { log.Infof(ctx, "Upgrade not required for controlplane and worker components of host %v", runHost.HostnameOverride) - if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, false); err != nil { + if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, cloudProviderName, false); err != nil { // This node didn't undergo an upgrade, so RKE will only log any error after uncordoning it and won't count this in maxUnavailable logrus.Errorf("[controlplane] Failed to uncordon node %v, error: %v", runHost.HostnameOverride, err) } @@ -173,7 +173,8 @@ func processControlPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.C } shouldDrain := upgradeStrategy.Drain != nil && *upgradeStrategy.Drain - if err := upgradeControlHost(ctx, kubeClient, runHost, shouldDrain, drainHelper, localConnDialerFactory, prsMap, cpNodePlanMap, updateWorkersOnly, alpineImage, certMap, controlPlaneUpgradable, workerPlaneUpgradable, k8sVersion); err != nil { + if err := upgradeControlHost(ctx, kubeClient, runHost, shouldDrain, drainHelper, localConnDialerFactory, prsMap, cpNodePlanMap, updateWorkersOnly, + alpineImage, certMap, controlPlaneUpgradable, workerPlaneUpgradable, k8sVersion, cloudProviderName); err != nil { errList = append(errList, err) hostsFailedToUpgrade <- runHost.HostnameOverride hostsFailed.Store(runHost.HostnameOverride, true) @@ -216,8 +217,8 @@ func checkHostUpgradable(ctx context.Context, runHost *hosts.Host, cpNodePlanMap func upgradeControlHost(ctx context.Context, kubeClient *kubernetes.Clientset, host *hosts.Host, drain bool, drainHelper drain.Helper, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, cpNodePlanMap map[string]v3.RKEConfigNodePlan, updateWorkersOnly bool, - alpineImage string, certMap map[string]pki.CertificatePKI, controlPlaneUpgradable, workerPlaneUpgradable bool, k8sVersion string) error { - if err := cordonAndDrainNode(kubeClient, host, drain, drainHelper, ControlRole); err != nil { + alpineImage string, certMap map[string]pki.CertificatePKI, controlPlaneUpgradable, workerPlaneUpgradable bool, k8sVersion, cloudProviderName string) error { + if err := cordonAndDrainNode(kubeClient, host, drain, drainHelper, ControlRole, cloudProviderName); err != nil { return err } if controlPlaneUpgradable { @@ -233,10 +234,10 @@ func upgradeControlHost(ctx context.Context, kubeClient *kubernetes.Clientset, h } } - if err := CheckNodeReady(kubeClient, host, ControlRole); err != nil { + if err := CheckNodeReady(kubeClient, host, ControlRole, cloudProviderName); err != nil { return err } - return k8s.CordonUncordon(kubeClient, host.HostnameOverride, false) + return k8s.CordonUncordon(kubeClient, host.HostnameOverride, cloudProviderName, false) } func RemoveControlPlane(ctx context.Context, controlHosts []*hosts.Host, force bool) error { diff --git a/services/node_util.go b/services/node_util.go index 42b590c06..df26f45ae 100644 --- a/services/node_util.go +++ b/services/node_util.go @@ -17,10 +17,10 @@ import ( "k8s.io/kubectl/pkg/drain" ) -func CheckNodeReady(kubeClient *kubernetes.Clientset, runHost *hosts.Host, component string) error { +func CheckNodeReady(kubeClient *kubernetes.Clientset, runHost *hosts.Host, component, cloudProviderName string) error { for retries := 0; retries < k8s.MaxRetries; retries++ { logrus.Infof("[%s] Now checking status of node %v, try #%v", component, runHost.HostnameOverride, retries+1) - k8sNode, err := k8s.GetNode(kubeClient, runHost.HostnameOverride) + k8sNode, err := k8s.GetNode(kubeClient, runHost.HostnameOverride, cloudProviderName) if err != nil { return fmt.Errorf("[%s] Error getting node %v: %v", component, runHost.HostnameOverride, err) } @@ -33,9 +33,9 @@ func CheckNodeReady(kubeClient *kubernetes.Clientset, runHost *hosts.Host, compo return fmt.Errorf("host %v not ready", runHost.HostnameOverride) } -func cordonAndDrainNode(kubeClient *kubernetes.Clientset, host *hosts.Host, drainNode bool, drainHelper drain.Helper, component string) error { +func cordonAndDrainNode(kubeClient *kubernetes.Clientset, host *hosts.Host, drainNode bool, drainHelper drain.Helper, component, cloudProviderName string) error { logrus.Debugf("[%s] Cordoning node %v", component, host.HostnameOverride) - if err := k8s.CordonUncordon(kubeClient, host.HostnameOverride, true); err != nil { + if err := k8s.CordonUncordon(kubeClient, host.HostnameOverride, cloudProviderName, true); err != nil { return err } if !drainNode { diff --git a/services/workerplane.go b/services/workerplane.go index a75d250df..a9e8e6b73 100644 --- a/services/workerplane.go +++ b/services/workerplane.go @@ -52,14 +52,17 @@ func RunWorkerPlane(ctx context.Context, allHosts []*hosts.Host, localConnDialer return nil } -func UpgradeWorkerPlaneForWorkerAndEtcdNodes(ctx context.Context, kubeClient *kubernetes.Clientset, mixedRolesHosts []*hosts.Host, workerOnlyHosts []*hosts.Host, inactiveHosts map[string]bool, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, workerNodePlanMap map[string]v3.RKEConfigNodePlan, certMap map[string]pki.CertificatePKI, updateWorkersOnly bool, alpineImage string, upgradeStrategy *v3.NodeUpgradeStrategy, newHosts map[string]bool, maxUnavailable int, k8sVersion string) (string, error) { +func UpgradeWorkerPlaneForWorkerAndEtcdNodes(ctx context.Context, kubeClient *kubernetes.Clientset, mixedRolesHosts []*hosts.Host, workerOnlyHosts []*hosts.Host, inactiveHosts map[string]bool, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, workerNodePlanMap map[string]v3.RKEConfigNodePlan, certMap map[string]pki.CertificatePKI, + updateWorkersOnly bool, alpineImage string, upgradeStrategy *v3.NodeUpgradeStrategy, + newHosts map[string]bool, maxUnavailable int, k8sVersion, cloudProviderName string) (string, error) { log.Infof(ctx, "[%s] Upgrading Worker Plane..", WorkerRole) var errMsgMaxUnavailableNotFailed string - updateNewHostsList(kubeClient, append(mixedRolesHosts, workerOnlyHosts...), newHosts) + updateNewHostsList(kubeClient, append(mixedRolesHosts, workerOnlyHosts...), newHosts, cloudProviderName) if len(mixedRolesHosts) > 0 { log.Infof(ctx, "First checking and processing worker components for upgrades on nodes with etcd role one at a time") } - multipleRolesHostsFailedToUpgrade, err := processWorkerPlaneForUpgrade(ctx, kubeClient, mixedRolesHosts, localConnDialerFactory, prsMap, workerNodePlanMap, certMap, updateWorkersOnly, alpineImage, 1, upgradeStrategy, newHosts, inactiveHosts, k8sVersion) + multipleRolesHostsFailedToUpgrade, err := processWorkerPlaneForUpgrade(ctx, kubeClient, mixedRolesHosts, localConnDialerFactory, prsMap, workerNodePlanMap, certMap, updateWorkersOnly, alpineImage, + 1, upgradeStrategy, newHosts, inactiveHosts, k8sVersion, cloudProviderName) if err != nil { logrus.Errorf("Failed to upgrade hosts: %v with error %v", strings.Join(multipleRolesHostsFailedToUpgrade, ","), err) return errMsgMaxUnavailableNotFailed, err @@ -68,7 +71,8 @@ func UpgradeWorkerPlaneForWorkerAndEtcdNodes(ctx context.Context, kubeClient *ku if len(workerOnlyHosts) > 0 { log.Infof(ctx, "Now checking and upgrading worker components on nodes with only worker role %v at a time", maxUnavailable) } - workerOnlyHostsFailedToUpgrade, err := processWorkerPlaneForUpgrade(ctx, kubeClient, workerOnlyHosts, localConnDialerFactory, prsMap, workerNodePlanMap, certMap, updateWorkersOnly, alpineImage, maxUnavailable, upgradeStrategy, newHosts, inactiveHosts, k8sVersion) + workerOnlyHostsFailedToUpgrade, err := processWorkerPlaneForUpgrade(ctx, kubeClient, workerOnlyHosts, localConnDialerFactory, prsMap, workerNodePlanMap, certMap, updateWorkersOnly, alpineImage, + maxUnavailable, upgradeStrategy, newHosts, inactiveHosts, k8sVersion, cloudProviderName) if err != nil { logrus.Errorf("Failed to upgrade hosts: %v with error %v", strings.Join(workerOnlyHostsFailedToUpgrade, ","), err) if len(workerOnlyHostsFailedToUpgrade) >= maxUnavailable { @@ -81,9 +85,9 @@ func UpgradeWorkerPlaneForWorkerAndEtcdNodes(ctx context.Context, kubeClient *ku return errMsgMaxUnavailableNotFailed, nil } -func updateNewHostsList(kubeClient *kubernetes.Clientset, allHosts []*hosts.Host, newHosts map[string]bool) { +func updateNewHostsList(kubeClient *kubernetes.Clientset, allHosts []*hosts.Host, newHosts map[string]bool, cloudProviderName string) { for _, h := range allHosts { - _, err := k8s.GetNode(kubeClient, h.HostnameOverride) + _, err := k8s.GetNode(kubeClient, h.HostnameOverride, cloudProviderName) if err != nil && apierrors.IsNotFound(err) { // this host could have been added to cluster state upon successful controlplane upgrade but isn't a node yet. newHosts[h.HostnameOverride] = true @@ -93,7 +97,7 @@ func updateNewHostsList(kubeClient *kubernetes.Clientset, allHosts []*hosts.Host func processWorkerPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.Clientset, allHosts []*hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, workerNodePlanMap map[string]v3.RKEConfigNodePlan, certMap map[string]pki.CertificatePKI, updateWorkersOnly bool, alpineImage string, - maxUnavailable int, upgradeStrategy *v3.NodeUpgradeStrategy, newHosts, inactiveHosts map[string]bool, k8sVersion string) ([]string, error) { + maxUnavailable int, upgradeStrategy *v3.NodeUpgradeStrategy, newHosts, inactiveHosts map[string]bool, k8sVersion, cloudProviderName string) ([]string, error) { var errgrp errgroup.Group var drainHelper drain.Helper var failedHosts []string @@ -128,7 +132,7 @@ func processWorkerPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.Cl } continue } - if err := CheckNodeReady(kubeClient, runHost, WorkerRole); err != nil { + if err := CheckNodeReady(kubeClient, runHost, WorkerRole, cloudProviderName); err != nil { errList = append(errList, err) hostsFailed.Store(runHost.HostnameOverride, true) hostsFailedToUpgrade <- runHost.HostnameOverride @@ -163,13 +167,14 @@ func processWorkerPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.Cl } if !upgradable { logrus.Infof("[workerplane] Upgrade not required for worker components of host %v", runHost.HostnameOverride) - if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, false); err != nil { + if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, cloudProviderName, false); err != nil { // This node didn't undergo an upgrade, so RKE will only log any error after uncordoning it and won't count this in maxUnavailable logrus.Errorf("[workerplane] Failed to uncordon node %v, error: %v", runHost.HostnameOverride, err) } continue } - if err := upgradeWorkerHost(ctx, kubeClient, runHost, upgradeStrategy.Drain != nil && *upgradeStrategy.Drain, drainHelper, localConnDialerFactory, prsMap, workerNodePlanMap, certMap, updateWorkersOnly, alpineImage, k8sVersion); err != nil { + if err := upgradeWorkerHost(ctx, kubeClient, runHost, upgradeStrategy.Drain != nil && *upgradeStrategy.Drain, drainHelper, localConnDialerFactory, prsMap, workerNodePlanMap, certMap, + updateWorkersOnly, alpineImage, k8sVersion, cloudProviderName); err != nil { errList = append(errList, err) hostsFailed.Store(runHost.HostnameOverride, true) hostsFailedToUpgrade <- runHost.HostnameOverride @@ -192,9 +197,9 @@ func processWorkerPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.Cl func upgradeWorkerHost(ctx context.Context, kubeClient *kubernetes.Clientset, runHost *hosts.Host, drainFlag bool, drainHelper drain.Helper, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, workerNodePlanMap map[string]v3.RKEConfigNodePlan, certMap map[string]pki.CertificatePKI, updateWorkersOnly bool, - alpineImage, k8sVersion string) error { + alpineImage, k8sVersion, cloudProviderName string) error { // cordon and drain - if err := cordonAndDrainNode(kubeClient, runHost, drainFlag, drainHelper, WorkerRole); err != nil { + if err := cordonAndDrainNode(kubeClient, runHost, drainFlag, drainHelper, WorkerRole, cloudProviderName); err != nil { return err } logrus.Debugf("[workerplane] upgrading host %v", runHost.HostnameOverride) @@ -202,11 +207,11 @@ func upgradeWorkerHost(ctx context.Context, kubeClient *kubernetes.Clientset, ru return err } // consider upgrade done when kubeclient lists node as ready - if err := CheckNodeReady(kubeClient, runHost, WorkerRole); err != nil { + if err := CheckNodeReady(kubeClient, runHost, WorkerRole, cloudProviderName); err != nil { return err } // uncordon node - return k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, false) + return k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, cloudProviderName, false) } func doDeployWorkerPlaneHost(ctx context.Context, host *hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, processMap map[string]v3.Process, certMap map[string]pki.CertificatePKI, updateWorkersOnly bool, alpineImage, k8sVersion string) error { From bd6cf028b07257bd655966b1c7b0449dc9bd606d Mon Sep 17 00:00:00 2001 From: Kinara Shah Date: Tue, 28 Nov 2023 08:37:46 -0800 Subject: [PATCH 5/7] fix node lookup for external aws --- cluster/addons.go | 4 ++-- cluster/cluster.go | 3 +-- cluster/remove.go | 9 ++++++++- hosts/hosts.go | 6 +++--- k8s/node.go | 19 ++++++++++++------- services/controlplane.go | 4 ++-- services/node_util.go | 4 ++-- services/workerplane.go | 6 +++--- 8 files changed, 33 insertions(+), 22 deletions(-) diff --git a/cluster/addons.go b/cluster/addons.go index 7e3457c0d..c6bcf5ce8 100644 --- a/cluster/addons.go +++ b/cluster/addons.go @@ -492,7 +492,7 @@ func (c *Cluster) doAddonDeploy(ctx context.Context, addonYaml, resourceName str if err != nil { return &addonError{fmt.Sprintf("%v", err), isCritical} } - node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride, c.CloudProvider.Name) + node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride, c.ControlPlaneHosts[0].InternalAddress, c.CloudProvider.Name) if err != nil { return &addonError{fmt.Sprintf("Failed to get Node [%s]: %v", c.ControlPlaneHosts[0].HostnameOverride, err), isCritical} } @@ -513,7 +513,7 @@ func (c *Cluster) doAddonDelete(ctx context.Context, resourceName string, isCrit if err != nil { return &addonError{fmt.Sprintf("%v", err), isCritical} } - node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride, c.CloudProvider.Name) + node, err := k8s.GetNode(k8sClient, c.ControlPlaneHosts[0].HostnameOverride, c.ControlPlaneHosts[0].InternalAddress, c.CloudProvider.Name) if err != nil { return &addonError{fmt.Sprintf("Failed to get Node [%s]: %v", c.ControlPlaneHosts[0].HostnameOverride, err), isCritical} } diff --git a/cluster/cluster.go b/cluster/cluster.go index 3b3f0efdb..a0a683a90 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -1018,13 +1018,12 @@ func setNodeAnnotationsLabelsTaints(k8sClient *kubernetes.Clientset, host *hosts node := &v1.Node{} var err error for retries := 0; retries <= 5; retries++ { - node, err = k8s.GetNode(k8sClient, host.HostnameOverride, cloudProviderName) + node, err = k8s.GetNode(k8sClient, host.HostnameOverride, host.InternalAddress, cloudProviderName) if err != nil { logrus.Debugf("[hosts] Can't find node by name [%s], error: %v", host.HostnameOverride, err) time.Sleep(2 * time.Second) continue } - oldNode := node.DeepCopy() k8s.SetNodeAddressesAnnotations(node, host.InternalAddress, host.Address) k8s.SyncNodeLabels(node, host.ToAddLabels, host.ToDelLabels) diff --git a/cluster/remove.go b/cluster/remove.go index b80538395..a2e1dcaa1 100644 --- a/cluster/remove.go +++ b/cluster/remove.go @@ -11,6 +11,7 @@ import ( v3 "github.com/rancher/rke/types" "github.com/rancher/rke/util" "golang.org/x/sync/errgroup" + v1 "k8s.io/api/core/v1" ) func (c *Cluster) ClusterRemove(ctx context.Context) error { @@ -92,7 +93,13 @@ func (c *Cluster) RemoveOldNodes(ctx context.Context) error { host := &hosts.Host{} host.HostnameOverride = node.Name if !hosts.IsNodeInList(host, uniqueHosts) { - if err := k8s.DeleteNode(kubeClient, node.Name, c.CloudProvider.Name); err != nil { + nodeAddress := "" + for _, addr := range node.Status.Addresses { + if addr.Type == v1.NodeInternalIP { + nodeAddress = addr.Address + } + } + if err := k8s.DeleteNode(kubeClient, node.Name, nodeAddress, c.CloudProvider.Name); err != nil { log.Warnf(ctx, "Failed to delete old node [%s] from kubernetes") } } diff --git a/hosts/hosts.go b/hosts/hosts.go index 721aae8c6..682a34d69 100644 --- a/hosts/hosts.go +++ b/hosts/hosts.go @@ -197,7 +197,7 @@ func DeleteNode(ctx context.Context, toDeleteHost *Host, kubeClient *kubernetes. return nil } log.Infof(ctx, "[hosts] Cordoning host [%s]", toDeleteHost.Address) - if _, err := k8s.GetNode(kubeClient, toDeleteHost.HostnameOverride, cloudProviderName); err != nil { + if _, err := k8s.GetNode(kubeClient, toDeleteHost.HostnameOverride, toDeleteHost.InternalAddress, cloudProviderName); err != nil { if apierrors.IsNotFound(err) { log.Warnf(ctx, "[hosts] Can't find node by name [%s]", toDeleteHost.Address) return nil @@ -205,11 +205,11 @@ func DeleteNode(ctx context.Context, toDeleteHost *Host, kubeClient *kubernetes. return err } - if err := k8s.CordonUncordon(kubeClient, toDeleteHost.HostnameOverride, cloudProviderName, true); err != nil { + if err := k8s.CordonUncordon(kubeClient, toDeleteHost.HostnameOverride, toDeleteHost.InternalAddress, cloudProviderName, true); err != nil { return err } log.Infof(ctx, "[hosts] Deleting host [%s] from the cluster", toDeleteHost.Address) - if err := k8s.DeleteNode(kubeClient, toDeleteHost.HostnameOverride, cloudProviderName); err != nil { + if err := k8s.DeleteNode(kubeClient, toDeleteHost.HostnameOverride, toDeleteHost.InternalAddress, cloudProviderName); err != nil { return err } log.Infof(ctx, "[hosts] Successfully deleted host [%s] from the cluster", toDeleteHost.Address) diff --git a/k8s/node.go b/k8s/node.go index c48fc24c3..8f3dabb85 100644 --- a/k8s/node.go +++ b/k8s/node.go @@ -24,10 +24,10 @@ const ( RetryInterval = 5 ) -func DeleteNode(k8sClient *kubernetes.Clientset, nodeName, cloudProviderName string) error { +func DeleteNode(k8sClient *kubernetes.Clientset, nodeName string, nodeAddress string, cloudProviderName string) error { // If cloud provider is configured, the node name can be set by the cloud provider, which can be different from the original node name if cloudProviderName != "" { - node, err := GetNode(k8sClient, nodeName, cloudProviderName) + node, err := GetNode(k8sClient, nodeName, nodeAddress, cloudProviderName) if err != nil { return err } @@ -40,7 +40,7 @@ func GetNodeList(k8sClient *kubernetes.Clientset) (*v1.NodeList, error) { return k8sClient.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{}) } -func GetNode(k8sClient *kubernetes.Clientset, nodeName, cloudProviderName string) (*v1.Node, error) { +func GetNode(k8sClient *kubernetes.Clientset, nodeName, nodeAddress, cloudProviderName string) (*v1.Node, error) { var listErr error for retries := 0; retries < MaxRetries; retries++ { logrus.Debugf("Checking node list for node [%v], try #%v", nodeName, retries+1) @@ -57,9 +57,13 @@ func GetNode(k8sClient *kubernetes.Clientset, nodeName, cloudProviderName string return &node, nil } if cloudProviderName == ExternalAWSCloudProviderName { - logrus.Debugf("Checking hostname address for node [%v], cloud provider: %v", nodeName, cloudProviderName) + if nodeAddress == "" { + return nil, fmt.Errorf("failed to find node [%v] with empty nodeAddress, cloud provider: %v", nodeName, cloudProviderName) + } + logrus.Debugf("Checking internal address for node [%v], cloud provider: %v", nodeName, cloudProviderName) for _, addr := range node.Status.Addresses { - if addr.Type == v1.NodeHostName && strings.ToLower(node.Labels[HostnameLabel]) == addr.Address { + if addr.Type == v1.NodeInternalIP && nodeAddress == addr.Address { + logrus.Debugf("Found node [%s]: %v", nodeName, nodeAddress) return &node, nil } } @@ -73,10 +77,10 @@ func GetNode(k8sClient *kubernetes.Clientset, nodeName, cloudProviderName string return nil, apierrors.NewNotFound(schema.GroupResource{}, nodeName) } -func CordonUncordon(k8sClient *kubernetes.Clientset, nodeName string, cloudProviderName string, cordoned bool) error { +func CordonUncordon(k8sClient *kubernetes.Clientset, nodeName string, nodeAddress string, cloudProviderName string, cordoned bool) error { updated := false for retries := 0; retries < MaxRetries; retries++ { - node, err := GetNode(k8sClient, nodeName, cloudProviderName) + node, err := GetNode(k8sClient, nodeName, nodeAddress, cloudProviderName) if err != nil { logrus.Debugf("Error getting node %s: %v", nodeName, err) // no need to retry here since GetNode already retries @@ -127,6 +131,7 @@ func SyncNodeLabels(node *v1.Node, toAddLabels, toDelLabels map[string]string) { delete(node.Labels, key) } } + // ADD Labels for key, value := range toAddLabels { node.Labels[key] = value diff --git a/services/controlplane.go b/services/controlplane.go index 2bcca06d5..711cfbbf1 100644 --- a/services/controlplane.go +++ b/services/controlplane.go @@ -165,7 +165,7 @@ func processControlPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.C } if !controlPlaneUpgradable && !workerPlaneUpgradable { log.Infof(ctx, "Upgrade not required for controlplane and worker components of host %v", runHost.HostnameOverride) - if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, cloudProviderName, false); err != nil { + if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, runHost.InternalAddress, cloudProviderName, false); err != nil { // This node didn't undergo an upgrade, so RKE will only log any error after uncordoning it and won't count this in maxUnavailable logrus.Errorf("[controlplane] Failed to uncordon node %v, error: %v", runHost.HostnameOverride, err) } @@ -237,7 +237,7 @@ func upgradeControlHost(ctx context.Context, kubeClient *kubernetes.Clientset, h if err := CheckNodeReady(kubeClient, host, ControlRole, cloudProviderName); err != nil { return err } - return k8s.CordonUncordon(kubeClient, host.HostnameOverride, cloudProviderName, false) + return k8s.CordonUncordon(kubeClient, host.HostnameOverride, host.InternalAddress, cloudProviderName, false) } func RemoveControlPlane(ctx context.Context, controlHosts []*hosts.Host, force bool) error { diff --git a/services/node_util.go b/services/node_util.go index df26f45ae..eb1ef6b13 100644 --- a/services/node_util.go +++ b/services/node_util.go @@ -20,7 +20,7 @@ import ( func CheckNodeReady(kubeClient *kubernetes.Clientset, runHost *hosts.Host, component, cloudProviderName string) error { for retries := 0; retries < k8s.MaxRetries; retries++ { logrus.Infof("[%s] Now checking status of node %v, try #%v", component, runHost.HostnameOverride, retries+1) - k8sNode, err := k8s.GetNode(kubeClient, runHost.HostnameOverride, cloudProviderName) + k8sNode, err := k8s.GetNode(kubeClient, runHost.HostnameOverride, runHost.InternalAddress, cloudProviderName) if err != nil { return fmt.Errorf("[%s] Error getting node %v: %v", component, runHost.HostnameOverride, err) } @@ -35,7 +35,7 @@ func CheckNodeReady(kubeClient *kubernetes.Clientset, runHost *hosts.Host, compo func cordonAndDrainNode(kubeClient *kubernetes.Clientset, host *hosts.Host, drainNode bool, drainHelper drain.Helper, component, cloudProviderName string) error { logrus.Debugf("[%s] Cordoning node %v", component, host.HostnameOverride) - if err := k8s.CordonUncordon(kubeClient, host.HostnameOverride, cloudProviderName, true); err != nil { + if err := k8s.CordonUncordon(kubeClient, host.HostnameOverride, host.InternalAddress, cloudProviderName, true); err != nil { return err } if !drainNode { diff --git a/services/workerplane.go b/services/workerplane.go index a9e8e6b73..b4130e736 100644 --- a/services/workerplane.go +++ b/services/workerplane.go @@ -87,7 +87,7 @@ func UpgradeWorkerPlaneForWorkerAndEtcdNodes(ctx context.Context, kubeClient *ku func updateNewHostsList(kubeClient *kubernetes.Clientset, allHosts []*hosts.Host, newHosts map[string]bool, cloudProviderName string) { for _, h := range allHosts { - _, err := k8s.GetNode(kubeClient, h.HostnameOverride, cloudProviderName) + _, err := k8s.GetNode(kubeClient, h.HostnameOverride, h.InternalAddress, cloudProviderName) if err != nil && apierrors.IsNotFound(err) { // this host could have been added to cluster state upon successful controlplane upgrade but isn't a node yet. newHosts[h.HostnameOverride] = true @@ -167,7 +167,7 @@ func processWorkerPlaneForUpgrade(ctx context.Context, kubeClient *kubernetes.Cl } if !upgradable { logrus.Infof("[workerplane] Upgrade not required for worker components of host %v", runHost.HostnameOverride) - if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, cloudProviderName, false); err != nil { + if err := k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, runHost.InternalAddress, cloudProviderName, false); err != nil { // This node didn't undergo an upgrade, so RKE will only log any error after uncordoning it and won't count this in maxUnavailable logrus.Errorf("[workerplane] Failed to uncordon node %v, error: %v", runHost.HostnameOverride, err) } @@ -211,7 +211,7 @@ func upgradeWorkerHost(ctx context.Context, kubeClient *kubernetes.Clientset, ru return err } // uncordon node - return k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, cloudProviderName, false) + return k8s.CordonUncordon(kubeClient, runHost.HostnameOverride, runHost.InternalAddress, cloudProviderName, false) } func doDeployWorkerPlaneHost(ctx context.Context, host *hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, processMap map[string]v3.Process, certMap map[string]pki.CertificatePKI, updateWorkersOnly bool, alpineImage, k8sVersion string) error { From e6831a23871316b13a0e306cbcf302e603032512 Mon Sep 17 00:00:00 2001 From: Jiaqi Luo <6218999+jiaqiluo@users.noreply.github.com> Date: Tue, 23 Jan 2024 14:27:54 -0700 Subject: [PATCH 6/7] switch KDM branch to dev-v2.7 --- codegen/codegen.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/codegen.go b/codegen/codegen.go index 09c626e1c..07db3e31f 100644 --- a/codegen/codegen.go +++ b/codegen/codegen.go @@ -10,7 +10,7 @@ import ( ) const ( - defaultURL = "https://releases.rancher.com/kontainer-driver-metadata/release-v2.7/data.json" + defaultURL = "https://releases.rancher.com/kontainer-driver-metadata/dev-v2.7/data.json" dataFile = "data/data.json" ) From 049b5837b13811e793b0a377547b6bebe358ce5c Mon Sep 17 00:00:00 2001 From: Jiaqi Luo <6218999+jiaqiluo@users.noreply.github.com> Date: Tue, 23 Jan 2024 14:49:26 -0700 Subject: [PATCH 7/7] go generate --- data/bindata.go | 4 +- data/data.json | 4678 +++++++++++++++++++++++++++++++---------------- 2 files changed, 3141 insertions(+), 1541 deletions(-) diff --git a/data/bindata.go b/data/bindata.go index 322a9207e..7a407123f 100644 --- a/data/bindata.go +++ b/data/bindata.go @@ -77,7 +77,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _dataDataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x5b\x73\xa4\xb8\x9a\xf6\x0f\x9f\xcf\xa7\x20\xfc\x1c\xac\xf7\x9d\x28\xd2\xb9\xf7\x26\xe2\x39\x70\xdb\xee\x6a\x47\x57\xb9\xfc\xd8\xae\x5e\x33\x31\x5e\xe1\xc0\xa0\x4c\xb3\x8a\x04\x1a\xc8\xac\x72\xd7\xf4\x77\xff\x87\xc4\x1e\x04\x29\x41\x66\x3a\x37\x97\x27\x62\x56\x57\x22\x09\x21\xc4\x7d\xfd\x74\x4b\xba\xf5\xf3\x3f\x94\xa3\xdf\x4f\xfd\x3f\x88\xe7\x9b\x8e\xfd\x40\xbc\x85\xa9\x93\x2f\x6e\x60\x3a\xb6\x7f\x74\xae\xfc\xfc\x0f\x45\x39\x5a\xf4\x3a\xbd\x6e\xf4\x0f\xe5\x88\x04\xba\x71\x74\xae\xd8\x73\xcb\xfa\xc0\x7e\xf8\x36\x7f\x21\x9a\x6b\xc6\x09\x94\x23\xcd\xb2\x9c\xef\xaa\xeb\x99\x0b\xd3\x22\x53\x42\x53\x1f\x05\xde\x9c\x1c\x7d\x88\xae\xdb\x8e\xfd\x36\x73\xe6\xbe\xaa\xcd\x83\x57\x7a\x75\xa2\x59\x7e\x72\xf9\xc5\xb4\x0d\x55\x33\x0c\x8f\xf8\xb4\x0a\x47\xdd\x0e\xfb\xbf\xf8\x32\xb1\xb5\x17\x8b\xa8\x9a\x31\x33\x7d\x5a\x67\xd5\xb5\xe6\x53\x93\xd5\xf6\xe8\x56\x9b\x11\xdf\xd5\x74\xf2\xc9\x9c\x10\xfd\x4d\xb7\xc8\x87\x4f\xe6\xcc\x0c\xee\x35\x7b\x4a\xbc\x0f\xd1\xe3\x5d\xe8\xba\x33\xb7\x83\x0f\x57\x64\xa2\xcd\xad\xe0\x21\x70\x3c\x6d\x4a\x2e\x2d\xcd\xf7\xe3\xdf\x1e\x1d\x8b\x78\x5a\xc0\x9a\x44\x77\x6c\xc3\xff\xf0\x79\x1e\x68\x81\x69\x4f\x2f\xe2\xfb\xfe\x93\xbc\xbc\x3a\xce\xb7\x0f\x7f\x68\x96\x69\xf0\x2f\xdd\x13\xdf\x99\x7b\x3a\xf9\x7f\x73\x27\xd0\x3e\xdc\x3a\x06\xb9\x27\x7e\xe0\x99\x3a\x2d\x38\x7e\x1e\xd3\xf6\x89\x3e\xf7\x88\xea\x3a\x5e\xc0\x9e\x37\xbe\x42\x1b\xd6\x22\x81\xea\x7a\x64\x42\x3c\x8f\x24\xad\xa2\x06\x6f\x2e\x61\x0f\x7c\x63\x07\xc4\xb3\x35\xeb\xe6\xee\xc3\xf5\x8f\xe4\x3f\x7f\x73\xfc\xc0\xd6\x66\x49\x8b\xba\x9e\x33\x31\x2d\xd3\x9e\x96\xda\xda\x23\x7f\xce\x89\x1f\xbc\x12\xcd\x20\x9e\x4a\x7e\x04\x9e\xa6\x86\xff\xf0\xd9\x6d\xcd\x1f\x34\xcb\x7f\xa9\xf7\x64\xe6\x04\x44\xbd\x66\x09\xf8\x99\xa7\x9e\x33\x77\xe3\xcc\xb9\x5c\x1f\xe9\x15\x7e\xa6\xb9\x4f\xeb\x3c\x23\xdc\x7c\x5f\x7d\xe2\x25\xd9\xe6\x76\x60\xce\x88\xaa\x3b\xf6\xc4\x64\xcf\x41\xfb\x8e\xe3\x99\x7f\xb1\xb7\xd4\xf9\x76\xea\x77\x4c\xe7\x78\xd1\x7b\x21\x81\xd6\xfb\xbf\xd9\xee\x56\x68\xde\xf1\x70\x38\x48\x2f\xb1\x0e\xa1\x6a\x61\x8f\x50\x2d\xc7\xf9\x36\x77\x8b\xfd\xd5\x0f\x3b\x88\xfa\xa2\xe9\xdf\x88\xcd\xba\x33\xfd\x08\x92\x52\x02\xcb\x57\x75\xd3\x7d\x25\x9e\xea\xcf\xcd\x20\x7c\x33\x8f\x9f\x1e\x9e\xaf\x2f\xaf\x7e\xbb\xa6\xff\xff\xe1\xe2\xf9\x9f\x37\x8f\xbf\x3d\x5f\x5c\x3f\x3c\xf7\xfa\xa7\xcf\x1f\x2f\x3f\x3f\x3f\xfc\x76\xd1\x1f\x8d\x3f\x54\xa6\xeb\x8f\xc6\x71\xba\xc1\xe9\x90\x9f\xee\xf2\xb7\x8b\xcb\xdf\x2e\xfa\xdd\xe7\xbb\x2f\x9f\xfe\xbb\x37\xe8\x8e\x32\xc9\xee\x85\x6e\x7a\x2f\x74\xcb\xfb\xca\x1b\x1e\xd1\x26\xf8\x3b\x35\x04\x16\x09\x32\x86\xa0\xf2\x23\x6e\x69\x22\xe8\x8f\xc4\x0e\x4c\x9d\xbd\x7c\x35\x70\xbe\x11\x5b\xfd\x1e\x7e\x75\xa5\xa2\xb2\xfd\x44\x9d\x39\x06\xa1\x29\xa2\x4f\x34\x4e\xa4\xb3\xde\xeb\xab\x2e\xf1\xd4\x3f\x9d\xf0\x05\x66\xca\xd0\x6d\x53\x7d\x31\x6d\xd5\x30\x3d\x7a\xe9\xd8\x71\x83\x63\xdd\x36\x8f\x5f\x4c\x3b\x9b\x84\x76\xce\x24\x0d\x09\x74\x96\xc6\x26\x41\xc7\x48\x8d\xd7\xc4\xf1\x74\xa2\xda\x8e\x41\x54\xda\x08\xba\x16\x50\x73\x46\x73\x24\x69\x16\xc4\x0e\xd4\x3f\x5d\x3f\x67\x0c\x66\xda\x37\xa2\x9a\x2e\x4b\xed\xab\xf3\xc0\xb4\x54\xfd\x55\x8b\xec\x5e\xf6\x79\x6d\x12\x7c\x77\xbc\x6f\x91\x59\xa4\x57\x75\xdb\x4c\xbf\x3e\xcd\x50\x1d\xdb\x7a\x2b\x5b\x1b\x8f\xf8\x8e\xb5\x60\xcf\x90\xd4\x3f\xfc\xad\xc3\x7e\x4b\x3e\x06\x8f\x68\x33\xd3\x9e\xd2\x94\x36\x61\xa6\x4c\x35\x0d\x8b\xa8\xf4\xfb\x74\xe6\xac\xd0\x41\x77\x86\x8f\xa3\x3b\x8a\xdb\x60\x41\x9f\xb9\x9f\xfc\xcb\xb1\xe6\x33\x12\xbd\x9f\xa4\xbb\x2c\x34\xef\xd8\x32\x5f\x8e\xa3\x8f\xe8\x38\x4c\x15\x6b\x5b\xe1\x2b\x73\x3d\xe7\xc7\x5b\xfa\x9d\xbd\x12\xcd\x0a\x5e\xff\x52\x8b\xca\xd9\xeb\x9f\xb0\xcf\xae\x57\xa8\x48\xa1\xb4\x4b\xc7\x0e\x3c\xc7\xb2\x88\x27\xfa\xe9\xea\x5a\x10\xf5\x61\xdd\x34\xbc\x52\x17\x0c\xbf\xee\xb9\x1d\x68\xd3\x29\x31\x54\xdd\x72\xe6\xa5\x2f\x3c\x34\xe4\xd4\x30\xb3\xcb\xaa\xe7\xcc\xa3\xce\x91\xfb\xd2\x23\xb5\x7f\x75\xfc\xc0\xd5\x82\x57\xd5\xf5\x9c\x85\x49\x35\x96\x55\x36\x9f\xd6\x8a\x54\xcc\x22\x7a\x50\xfa\x2a\x68\x65\x67\x8e\x6d\x06\x0e\x95\x2a\x4d\x27\xf4\x5b\x37\x1d\x56\xaf\x61\xd7\x4f\xa4\xd2\x31\x54\xb2\x08\x15\x3a\xdb\xa3\x47\xb3\x4c\x9a\x4a\x39\x0d\x88\x37\x33\x6d\x2d\x20\x86\x4a\x0b\x9a\xea\x6a\xf0\xea\x11\xff\xd5\xb1\xd8\x7d\x7a\xdd\x6e\xb7\xfa\x55\xf8\xfa\x2b\x31\xe6\x82\x6f\xa1\xee\x59\xab\xeb\x97\xbd\xe9\x7f\x44\x37\x66\x78\xd7\x03\xde\x01\xef\x80\x77\xc0\x3b\xe0\x1d\xf0\x0e\x78\x07\xbc\x03\xde\xed\x13\xde\xf5\x81\x77\xc0\x3b\xe0\x1d\xf0\x0e\x78\x07\xbc\x03\xde\x01\xef\x80\x77\xfb\x84\x77\x03\xe0\x1d\xf0\x0e\x78\x07\xbc\x03\xde\x01\xef\x80\x77\xc0\x3b\xe0\xdd\x3e\xe1\xdd\x10\x78\xb7\x62\xbc\xfb\x70\xe7\x99\x8e\x67\x06\x6f\xe0\x3c\x70\xde\x1e\x48\x19\x38\x0f\x9c\x07\xce\x03\xe7\x81\xf3\x76\x9a\xf3\x3a\xbd\xae\xea\x69\xb6\xfe\x4a\xbc\x9e\x5a\x5a\x92\x17\x55\x47\xb7\x4c\x6a\x9a\x74\xe2\x05\x89\x5d\xce\xdd\x98\x10\x4f\xad\x4c\x54\xe8\x75\x60\x47\xb0\x23\xd8\xf1\xa0\xe5\x11\xec\x08\x76\x04\x3b\x82\x1d\xc1\x8e\xbb\xcd\x8e\x67\x40\x47\xa0\x23\xd0\x11\xe8\x08\x74\x04\x3a\x02\x1d\xdf\xfd\xe3\x00\x3a\x02\x1d\x77\x02\x1d\x47\x98\x5e\x5e\x17\xe7\x7d\x78\xd4\x4c\x3b\xa0\x57\xfd\x5f\xde\x2e\x1d\xdb\x30\xc3\xcb\xc4\xf3\x4d\x3f\x20\x76\xf0\x07\xfb\xd2\x2f\x2d\xcd\x9c\xdd\x13\xdf\xfc\x8b\x80\x0c\x41\x86\x7b\x20\x7e\x0d\xc9\x10\xe4\x07\xf2\xdb\xfd\xce\x0f\xf2\x03\xf9\xed\x06\xf9\x61\xc2\x19\x34\x09\x9a\x04\x4d\x6e\xb9\xa0\x82\x26\x41\x93\x07\xdb\xf9\x41\x93\xa0\xc9\x5d\xa1\xc9\x1e\x68\x12\x34\x09\x9a\x04\x4d\x6e\xb3\xa0\x82\x26\x41\x93\x07\xdb\xf9\x41\x93\xa0\xc9\x1d\xa4\xc9\x52\x00\x43\xd0\x24\x68\x12\x34\x09\x9a\x7c\x77\x41\x05\x4d\x82\x26\x0f\xb6\xf3\x83\x26\x41\x93\xbb\x42\x93\x7d\xf8\x26\x41\x93\xa0\x49\xd0\xe4\x36\x0b\x2a\x68\x12\x34\x79\xb0\x9d\x1f\x34\x09\x9a\xdc\x39\x9a\xec\xc3\x37\x09\x9a\x04\x4d\x82\x26\xb7\x50\x50\x41\x93\xa0\xc9\x83\xed\xfc\xa0\x49\xd0\xe4\x0e\xd2\x64\xe9\x2c\x17\xd0\x24\x68\x12\x34\x09\x9a\x7c\x77\x41\x05\x4d\x82\x26\x0f\xb6\xf3\x83\x26\x41\x93\x3b\x48\x93\xa5\xd8\x3e\xa0\x49\xd0\x24\x68\x12\x34\xf9\xee\x82\x0a\x9a\x04\x4d\x1e\x6c\xe7\x07\x4d\x82\x26\x77\x90\x26\x4f\x41\x93\xa0\x49\xd0\x24\x68\x72\xeb\x04\x15\x34\x09\x9a\x3c\xd8\xce\x0f\x9a\x04\x4d\xee\x08\x4d\x8e\xb1\xa5\x1b\x30\x09\x98\x04\x4c\x6e\xb3\x9e\x02\x26\x01\x93\x07\xdb\xf9\x01\x93\x80\xc9\x1d\x81\xc9\x13\xec\xe8\x06\x4c\x02\x26\x01\x93\xdb\xac\xa7\x80\x49\xc0\xe4\xc1\x76\x7e\xc0\x24\x60\x72\x47\x60\x12\xc7\x67\x03\x26\x01\x93\x80\xc9\xad\xd6\x53\xc0\x24\x60\xf2\x60\x3b\x3f\x60\x12\x30\xb9\x13\x30\x39\xc6\x81\xda\x20\x3f\x90\x1f\xc8\x0f\xe4\x07\xf2\x03\xf9\x81\xfc\x40\x7e\x87\x42\x7e\x99\x03\xb5\x11\x18\x12\x34\x09\x9a\x04\x4d\x6e\xa3\xa0\x82\x26\x41\x93\x07\xdb\xf9\x41\x93\xa0\xc9\x5d\xa1\xc9\x01\x66\xa5\x41\x93\xa0\x49\xd0\xe4\x36\x0b\x2a\x68\x12\x34\x79\xb0\x9d\x1f\x34\x09\x9a\xdc\x41\x9a\x84\x6f\x12\x34\x09\x9a\x04\x4d\x6e\x9f\xa0\x82\x26\x41\x93\x07\xdb\xf9\x41\x93\xa0\xc9\x5d\xa1\xc9\x21\x7c\x93\xa0\x49\xd0\x24\x68\x72\x9b\x05\x15\x34\x09\x9a\x3c\xd8\xce\x0f\x9a\x04\x4d\xee\x0a\x4d\x8e\x40\x93\xa0\x49\xd0\x24\x68\x72\x9b\x05\x15\x34\x09\x9a\x3c\xd8\xce\x0f\x9a\x04\x4d\xee\x20\x4d\x62\xa6\x1b\x34\x09\x9a\x04\x4d\x6e\x9f\xa0\x82\x26\x41\x93\x07\xdb\xf9\x41\x93\xa0\xc9\x1d\xa4\xc9\x21\x68\x12\x34\x09\x9a\x04\x4d\x6e\x9d\xa0\x82\x26\x41\x93\x07\xdb\xf9\x41\x93\xa0\xc9\x1d\xa1\x49\x6c\xe9\x06\x4c\x02\x26\x01\x93\x5b\xad\xa7\x80\x49\xc0\xe4\xc1\x76\x7e\xc0\x24\x60\x72\x47\x60\x12\x7b\x70\x00\x93\x80\x49\xc0\xe4\x56\xeb\x29\x60\x12\x30\x79\xb0\x9d\x1f\x30\x09\x98\xdc\x11\x98\x1c\x03\x26\x01\x93\x80\x49\xc0\xe4\x36\xeb\x29\x60\x12\x30\x79\xb0\x9d\x1f\x30\x09\x98\xdc\x3d\x98\xc4\x0e\x1c\xc0\x24\x60\x12\x30\xb9\x7d\x7a\x0a\x98\x04\x4c\x1e\x6c\xe7\x07\x4c\x02\x26\x77\x04\x26\x4f\xe0\x99\x04\x4c\x02\x26\x01\x93\xdb\xac\xa7\x80\x49\xc0\xe4\xc1\x76\x7e\xc0\x24\x60\x72\x47\x60\xf2\x14\x30\x09\x98\x04\x4c\x02\x26\xb7\x59\x4f\x01\x93\x80\xc9\x83\xed\xfc\x80\x49\xc0\xe4\xee\xc1\x24\xa6\xb9\x01\x93\x80\x49\xc0\xe4\xf6\xe9\x29\x60\x12\x30\x79\xb0\x9d\x1f\x30\x09\x98\xdc\x09\x98\x3c\x69\xc8\x8f\xd1\xeb\x59\xf4\x01\x96\x00\x4b\x80\x25\xc0\x12\x60\x09\xb0\x04\x58\x02\x2c\x01\x96\x00\x4b\x0a\x96\xa7\x00\x4b\x80\x25\xc0\x12\x60\xb9\x3b\xda\x0a\xb0\x04\x58\x1e\x6c\xe7\x07\x58\x02\x2c\x77\x02\x2c\xcf\x00\x96\x00\x4b\x80\x25\xc0\x72\x77\xb4\x15\x60\x09\xb0\x3c\xd8\xce\x0f\xb0\x04\x58\xee\x02\x58\xf6\xbb\x7b\x03\x96\x9a\x6b\xaa\xda\xdc\x30\x89\xad\x87\xdd\x69\x6e\x7f\xb3\x9d\xef\x36\xc0\x53\x16\x3c\x27\x44\x0b\xe8\xf7\x39\xd5\xa2\x0f\x33\xff\x80\x37\xbe\x3f\x27\xde\x95\xe9\xeb\xce\x82\x78\x6f\xff\x37\xf7\x16\x00\xad\xdb\x03\xad\x26\x7b\x51\x34\x95\xf7\x8d\x48\x92\x6d\x21\x95\x6f\x4e\x6d\x2a\xfd\xdf\xc8\x9b\x3a\x31\x43\x6c\x61\xa0\x40\xdf\xaa\x67\x93\x80\xf8\xc7\xbe\x6f\xb1\x7f\xaa\xc5\xcc\x21\xa5\x7d\x23\x6f\x1d\x97\xcc\xc0\xce\x60\x67\xb0\x33\xd8\x19\xec\x0c\x76\xde\x71\x76\x6e\xba\xa7\x1d\xec\xbc\xbf\xec\x0c\xfe\x05\xff\x82\x7f\xc1\xbf\xe0\x5f\xf0\x2f\xf8\x17\xfc\xbb\xcf\xfc\xbb\x73\xdb\xf0\x81\xb9\xc0\x5c\x60\x2e\x30\x77\x5b\x94\x1e\x98\x0b\xcc\x3d\xd8\xce\x0f\xcc\x05\xe6\xee\x06\xe6\x66\x83\xe2\x37\x65\x5e\xf2\x83\x36\xe9\x8c\xd8\x81\x66\xa9\xa6\x6d\x06\xa6\x66\xa9\xba\xe3\x79\x73\x37\x50\xf5\x57\xa2\x97\x6c\x33\x28\x19\x94\x0c\x4a\x06\x25\x1f\x3c\x28\x80\x92\x41\xc9\x07\xdb\xf9\x41\xc9\xa0\xe4\x9d\xa0\xe4\x01\x9c\xc1\xc0\x5c\x60\x2e\x30\x17\x98\x0b\xcc\x05\xe6\x02\x73\x81\xb9\xc0\xdc\x3d\xc4\xdc\xce\x10\xce\x60\x50\x32\x28\x19\x94\x0c\x4a\x06\x25\x83\x92\x41\xc9\xa0\x64\x50\x32\x28\x39\x47\xc9\x43\x38\x83\x0f\x15\x73\x01\xb3\x80\x59\xc0\xec\x01\xc1\xec\x06\x18\x14\x98\x09\xcc\x14\xc3\x4c\xc0\xe4\xc6\x60\x72\xc5\xc8\x38\x02\x32\x02\x19\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\xb8\x63\xdd\x12\xc8\x08\x64\xdc\x38\x32\x8e\x81\x8c\x40\x46\x20\x23\x90\x11\xc8\x08\x64\x04\x32\xee\x58\xb7\x04\x32\x02\x19\x37\x8d\x8c\xa5\x63\xb4\xec\xb9\x65\x55\xb1\x5e\x82\x59\x7a\xd8\x07\x8e\x4a\x91\xf0\x3f\x2c\xa1\xae\x22\xc8\x7c\xd2\x5e\x88\xc5\x85\xaf\x3c\x2f\x55\xa2\x58\x01\xa4\xf2\xbd\x0d\x47\x72\xd5\x63\x67\xfc\x3c\x58\x88\xb9\x3d\x54\x89\x73\xb5\x36\x85\x73\x2d\x47\xae\x58\x21\x89\x15\x92\x3b\xf0\x71\xec\x30\x54\x62\x85\xe4\x16\xe0\xe6\xba\x57\x48\xfe\x07\xbb\xf7\xd1\xef\xa7\xfe\x1f\x94\x0d\x1d\xfb\xfe\xf7\xeb\x87\x37\x3f\x20\xb3\x9b\x99\x36\x65\xaf\xe3\x67\x7c\xe6\x6b\xb7\xd3\x4d\xb7\x1a\x95\xce\x1a\x38\x8a\x2e\x1d\xeb\x8e\x47\x1c\x5f\xa5\x3f\x9f\x2f\x06\x9d\x5e\xa7\x17\x75\xfc\x23\xcd\x72\x4d\x9b\x64\xd3\x7a\xdf\x88\x1a\x38\x8e\xe5\x9f\x2f\xba\x9d\x5e\x67\x18\x25\xb4\xa7\xa6\xfd\xe3\x2e\xea\xe2\xcb\x12\xeb\xc4\x0b\xae\x9c\xef\xb6\xe5\xd0\x06\x11\xc8\x90\x7a\x75\x22\x1c\xf4\x1f\x4c\x83\xe8\x9a\x68\x5e\x23\x34\xb9\x71\xca\x6f\xa7\xbe\x6a\xd8\xbe\xca\xbc\x43\xf4\x3f\xb4\x99\x31\x1e\x9e\xf7\x3a\xbd\x61\xe7\x34\xca\x66\xd8\xfe\x4c\xf3\xff\xe4\x65\x8b\x2e\xa9\xb6\x66\xdb\x6f\xbc\xbc\xd1\x2d\x39\x75\x8c\x8b\xf0\xc3\x4b\x35\x99\x2f\xe6\x81\xe3\xeb\x9a\x95\x6f\x1f\xdd\x9a\xfb\x01\xf1\xe8\x27\x45\xc5\xc0\x74\x6c\xcd\xa2\x72\x1b\x25\x4d\xca\x4b\x7a\x5d\xa6\xe9\xb2\xe5\xbc\xbe\xb9\xc4\xa3\x97\xce\x8b\xdd\x24\xca\x36\xb1\x34\xdb\x26\x16\xa7\x97\x44\x57\x68\x23\x9f\x75\x0a\xc9\x2f\x6d\xb3\x3a\x87\xaa\xdb\x26\xcd\xd5\x4f\xea\xa6\x6b\x96\xa9\x3b\xb7\x91\xbc\x27\xb9\xd8\xaf\xcc\x54\x45\xbd\x31\x97\xbc\x78\x8f\x30\x35\x2b\x9b\x93\x38\xb0\x78\x89\x03\xeb\x7c\xd1\xcf\x34\x92\xae\xd9\x9a\x25\x51\x0f\x5b\x2b\x3d\x6a\x65\x35\x6c\xcd\xfa\x55\xae\x31\xbf\x13\x6d\x41\xe2\xda\xb0\x7f\x50\x38\xf0\x8f\xd9\x7f\xb2\x4e\x7b\xde\xef\xf4\x3a\xfd\x6c\xf2\xa8\x3a\xa5\xd4\xb6\xab\xe7\x12\xbb\x8e\x71\x63\x4f\x3c\x8d\xea\x87\x66\xda\xf9\xde\xe5\x6a\x73\x9f\x44\x7d\x68\x90\x54\xc7\xb4\xa7\xb1\x41\x8b\x13\xb2\xaf\x5d\x8d\x2e\xc4\x83\x5b\x8b\x78\xe7\x5d\xda\x99\xfa\x71\x67\x1a\xe4\x4b\xf8\x25\x65\xf1\x65\x05\xa9\x46\x38\xa6\x8b\xf0\xfd\x9c\x7e\xce\xb9\xd3\xac\xbb\x9d\x5e\x7c\x97\xfe\x7a\x2c\xdb\xa9\x8c\x65\x3b\x95\xb5\x6c\xa7\x2d\x2c\xdb\x29\x2c\x9b\xb8\x65\x4b\xbb\x09\x2c\x1b\x2c\xdb\x6e\x58\xb6\xde\x9a\xa1\xad\x37\x90\xb1\x6d\x49\x6a\x61\xe3\x96\xe4\x68\x62\xdd\x72\x99\x61\xde\x96\x99\xb7\x1e\xc8\x0d\xf6\x6d\x35\xf6\x6d\x9c\xda\xb7\xde\x4a\xed\x5b\x58\xd6\x8c\x04\x9e\xa9\x33\x4b\x90\xaf\x7c\x74\x81\xcd\xd3\x27\x9f\x02\xeb\x6e\xbd\x92\x69\xec\xc3\x34\xc2\x34\x0a\x9a\xc6\x52\x6f\x86\x69\x84\x69\xdc\x5b\xd3\x38\x58\xf3\x78\xb8\xd7\x95\xb2\x8c\x5d\x69\xcb\x58\xfe\xba\x25\x2c\x63\x17\x96\x51\xdc\x32\x0e\x30\x26\x86\x61\xdc\xad\x31\xf1\x68\xdd\xdc\x07\xeb\xb6\x2f\xd6\x6d\x04\xec\x83\x75\xdb\x59\xeb\x56\x0a\x08\x89\x51\x2d\xac\x1b\xac\x1b\xac\xdb\x01\x0e\x6a\x7b\x9d\x26\x33\x21\xfd\x4e\xef\xf4\xa0\x0d\x63\x82\x8b\x4d\x2c\x63\x91\x35\xe5\x4c\x63\x31\xf7\x26\x6d\x63\xb6\xb7\xc0\x36\xc2\x36\xee\xbb\x6d\x6c\x32\x15\x02\xdb\x78\xa8\xb6\x11\x93\x21\xb0\x8d\x07\x69\x1b\x85\x07\xd4\x52\xb6\x71\x2c\x65\x1b\xc7\xd2\xb6\x71\xdc\xc6\x36\x8e\x61\x1b\x37\x60\x1b\x7b\xe9\x6d\x64\x8c\xe3\x40\xd6\x38\x0e\x64\x8c\xe3\x60\x7d\xc6\x71\x20\x61\x1c\x07\xd2\xc6\x31\xd3\x9a\xb0\x8e\x6b\xb6\x8e\x83\x75\x93\x23\xac\xe3\x1e\x59\xc7\x01\xac\x23\xac\xe3\x01\x59\xc7\x26\x53\xcd\xb0\x8e\x87\x6a\x1d\x9b\xcd\xc7\xc0\x3a\xc2\x3a\xee\xa6\x75\x1c\xaf\xdb\x3a\x8e\xa4\xac\xe3\x48\xda\x3a\x8e\xda\x58\xc7\x11\xac\xa3\x94\x75\x1c\xc3\x3a\xc2\x3a\x1e\x90\x75\x3c\x85\x75\x84\x75\x14\xb6\x8e\xa7\xb0\x8e\xb0\x8e\x07\x64\x1d\xcf\x60\x1d\x61\x1d\x85\xad\xe3\x19\xac\x23\xac\xe3\x61\x5a\xc7\xb5\xcc\x59\xf7\xa5\x22\xda\xf4\xa5\x43\xda\xf4\xdb\xc4\xb4\xe9\x37\x0c\x6a\x03\xeb\x08\xeb\x08\xeb\x78\x58\xd6\x71\xb0\x9e\x59\x19\xb5\x2f\x37\x2f\x93\xa4\x97\x98\x99\x49\xf2\x34\x9b\x9b\xc9\x65\x87\x95\x84\x95\x84\x95\x84\x95\x4c\xad\x64\xbf\x51\xb8\xd7\x7e\xa7\x3f\x14\xb7\x92\x72\x36\x52\xde\x42\xb6\xb2\x8f\x0d\xad\xe3\xa0\x8d\x75\x1c\xb4\xb2\x8e\x83\xf5\x58\x47\xfa\x8a\xa3\x16\x88\xfe\xf3\x38\xfa\xdf\xf3\x1e\x7d\xe1\xf9\x64\x9b\xb4\xc9\xfd\x86\xb1\x66\x61\x93\x61\x93\x77\xc0\x26\x0f\xca\x36\xb9\xd9\x1e\x46\xd8\x64\xd8\xe4\xcd\xd9\xe4\x66\x3b\x27\x61\x93\x61\x93\x77\xd4\x26\x37\x05\xe5\xe2\x83\x2d\x3f\x20\x41\x2a\xb0\xd0\x50\x3a\xb0\xd0\xb0\x4d\x60\xa1\xa1\x44\x60\xa1\x86\x76\xb9\xa9\x45\x5e\xa1\x2d\xae\xb2\xc2\xd9\xd7\x4c\xef\xbc\x6a\x6b\xdc\xc4\x0e\x37\x87\xe3\x8a\x8c\x05\x33\x55\x36\xc5\xc5\x7c\xb0\xc9\x2d\x6c\xf2\x28\x9f\xbc\xde\x26\xa7\x89\x97\xdb\xe4\xc6\xd6\xb8\xdf\x4b\x5f\xf1\x4a\x63\x18\x15\xfb\x8d\xa0\x59\x16\x30\xc8\x12\xb3\x5f\x4d\x0c\xb2\x94\x9b\x77\x28\xed\xe4\x1d\xb6\x71\xf1\x0e\x25\x1c\xbc\x30\xc8\x30\xc8\x30\xc8\x30\xc8\xeb\x31\xc8\xcd\xf6\x88\x4a\x78\x2d\xa4\x56\x23\xf4\xa4\x57\x23\xf4\xda\xac\x46\xe8\x35\x5d\x8d\x00\xaf\xc5\x26\xbd\x16\xd8\x99\xba\x7b\x06\x19\x5e\x8b\xe6\x5e\x8b\xe1\x9a\x6d\x72\xff\x44\xc6\x26\x27\xa9\xc5\x57\x88\x9d\xb4\xb0\xc9\xb9\xcc\xb0\xc9\xdb\x6a\x93\x4b\x18\x02\x9b\x0c\x9b\xbc\xc7\x36\xb9\x59\xb4\x00\xcc\xee\xed\x9b\x4d\x16\xb3\x8e\x88\x16\xb0\x7b\xd6\x71\x6d\x2e\x84\x96\xd6\x31\xeb\x48\xd8\x01\xeb\x28\xe5\xd5\x05\xb1\xee\x97\x75\xdc\x66\x62\x85\x4d\x86\x4d\x3e\x24\x9b\xdc\x2c\x82\x0b\x88\x75\xdf\x6c\xb2\x98\x75\x44\x04\x17\x58\xc7\x03\xb5\x8e\xeb\x5d\x87\xb0\x37\xe8\xba\x7f\xeb\x10\xd6\x85\xa8\x1b\x35\xbf\x58\x7e\xb0\xcf\x96\x78\xdf\x97\x1f\x9c\x00\x52\x01\xa9\xc2\x56\xf2\x04\x90\x0a\xd3\x78\x40\x90\x7a\x02\x48\x05\xa4\x6e\x0f\xa4\x36\x37\xbf\x80\xd4\x7d\xb6\xc4\x07\x04\xa9\x12\x31\x69\x9a\x98\xe1\x7d\x09\xdd\xb5\x7f\x66\x38\xfb\x9a\xb7\x64\xcf\x02\xcc\x31\xcc\xf1\x81\x9b\xe3\xe1\x7a\x7c\x06\xfb\x1c\x22\x0c\xbe\x03\xf8\x0e\x0e\xde\x44\x1e\x80\xef\xa0\x59\x10\xee\x06\xd0\x3a\x18\xca\x18\xcb\x24\xb5\xb0\xa9\x4c\x72\x34\x31\x94\xb9\xcc\x80\xd6\xf7\x87\xd6\xe6\x91\x1a\x01\xad\xfb\x6c\x91\xf7\x1b\x5a\x07\x88\x0e\x26\x0f\xab\x69\xf7\x91\x67\xd5\x51\xa7\x45\x34\xdb\x52\xe6\x4d\x92\xea\x60\xab\x83\x74\x0d\x0b\xc9\x6b\x0d\x52\x29\xf1\xea\xec\xe2\x30\x9f\x5a\xb8\x1a\x3b\x67\x17\xf7\x9e\x54\x73\xa6\x11\x9b\x07\x0e\xd5\x34\x2e\x99\xf1\x1a\xaf\x80\x56\x61\x90\x61\x90\x61\x90\x45\x0c\xf2\xfa\xc3\x8b\xef\xad\x87\x75\xff\x2c\xb3\xa0\x8d\xdc\xe6\x70\xdf\x30\x92\x30\x92\xeb\x34\x92\x88\x64\x28\xec\x60\x95\xb7\x8f\x0d\x2d\xe3\xea\x6c\x62\x13\xef\xea\x2a\x78\x75\xb3\x56\x78\xa3\xee\x55\x18\x64\xb8\x57\x57\xeb\x5e\x6d\xea\x5f\x95\xb6\xc6\xa3\xae\x8c\x35\x4e\x52\x0b\x5b\xe3\x51\xf9\x8b\x17\xb7\xc6\xa3\x2e\xac\xf1\x16\x59\xe3\xe6\x8e\x03\x58\x63\x58\xe3\x92\x35\x0e\x2f\x74\x3b\xfd\x51\xd9\x25\xb5\x8d\x36\xb9\x0f\x9b\x0c\x9b\xbc\x6d\x36\xb9\x14\x69\x6e\x1f\x6d\x72\xf2\x91\xfb\x9c\x4c\xac\xb3\xa5\x76\xc0\x87\x55\x87\x55\x6f\x62\xd5\xfb\xb0\xea\xb0\xea\xdb\x66\xd5\xfb\xb0\xea\xb0\xea\xb0\xea\xb2\x56\x7d\xdd\x21\xc7\xb1\x3c\x6d\x6f\x66\xfa\xb6\x39\xf2\x37\x3c\x19\x98\xe8\x5b\xf5\x44\xdf\x10\x41\x18\x1a\x04\x61\xd8\x23\xde\x5d\xd7\x7a\xb4\x8d\xda\xde\x1d\xc2\x5c\x98\x61\x4c\xef\x15\x6c\x30\x4e\x5f\x00\x9e\x0a\x9a\xc8\x6d\x0e\xf3\x0d\xbb\x08\x3c\x5d\x35\x9e\x36\x3d\x7a\x01\x78\x0a\x3c\x5d\x35\x9e\x36\xb7\xbd\xc0\xd3\x7d\x36\xc3\x07\x84\xa7\x08\x10\x76\x88\x36\x38\xfb\x8e\xb7\x64\x4a\x0c\xb6\x18\xb6\xf8\x10\x6d\x71\xd3\x88\xe2\x87\x1d\xf7\x06\xb6\x78\x9d\xb6\x78\x47\x22\x35\xc2\x16\xc3\x16\xaf\xd4\x16\x37\x8d\x41\x06\xb7\xed\xc1\xb9\x6d\x9b\xc7\x05\x83\xdb\x76\xef\xec\xe2\x01\xb8\x6d\xcf\x36\xb6\x7b\x58\x6a\x15\xed\x50\x7a\x15\xed\xb0\xcd\x2a\xda\x21\x56\xd1\x6e\x11\xa6\xee\x48\x6c\x46\x98\x63\x60\xea\x0a\x31\x75\xd8\x28\x36\x23\x6f\xaf\x3d\xdc\xb7\xdb\x6f\x8b\x07\x62\x53\x68\x69\x8f\x6f\x69\x83\x07\x52\x36\x78\xd8\x22\xd6\x18\x6c\x30\x6c\xf0\x06\x6d\x70\x69\x7e\x61\x65\x36\x58\x98\x87\x61\x83\xf7\xc8\x06\x57\xf3\x30\x6c\x31\x6c\x31\x6c\xf1\x26\x6d\x71\x26\xb4\x59\x77\xad\xc6\x18\x5b\x7c\x61\x8c\x45\x8d\xf1\xfb\x85\x36\x1b\x6d\xce\x1a\x63\x8b\xef\xee\xd8\xf3\x75\x6f\xf1\x5d\xa3\x55\x5f\xaf\x9b\x63\x24\x15\xb0\x72\x24\x1d\xb0\x72\xd4\x26\x60\xe5\xe8\x20\x02\x56\xc2\xaa\xc3\xaa\xc3\xaa\x1f\x80\x55\x1f\x6c\xca\xa8\x63\xb9\x1b\x8c\xba\xa0\x51\x1f\xc0\x6f\x02\x8b\x7c\x80\x7e\x93\x26\xbb\x94\x1b\xd9\x62\xac\xe9\x80\x2d\x16\xb4\xc5\xd8\x06\x02\x5b\x7c\x88\xb6\x78\xbc\x31\x5b\x8c\xd3\x39\x60\x8b\xc5\x6c\xf1\x18\xb6\x18\xb6\xf8\x00\x6d\x71\x93\x2d\x79\x98\x4e\x84\x2d\x5e\xa7\x2d\x7e\xbf\x2d\x79\x1b\xf4\x3b\xc3\x16\xc3\x6b\xcc\xb5\xc8\xa7\xb0\xc8\xb0\xc8\x5b\x66\x91\x4f\x0f\xc1\x22\x63\x26\x10\x36\x7d\xdd\x36\x5d\xe2\x5c\x8e\x66\x36\xbd\x27\x65\xd3\x7b\xd2\x36\xbd\xd7\xc6\xa6\xf7\x60\xd3\xb7\xd0\xa6\x6f\xfc\x58\x0e\xd8\x74\xd8\xf4\xdd\xb7\xe9\x4d\x02\x68\xc0\xa6\xc3\xa6\xaf\xd3\xa6\xbf\xdf\x2e\x71\xd8\x74\xd8\xf4\xbd\xb2\xe9\xeb\xdd\xe9\x88\x65\xd8\xb0\xe9\xb0\xe9\xb0\xe9\xb0\xe9\x6b\xb6\xe9\xa3\xce\xc6\xb6\xd6\x60\x15\x36\x6c\xba\x90\x4d\x1f\x55\x9a\xe6\x25\x86\x83\x13\x3b\x6d\xad\xab\x4d\x4e\x92\xb0\x6a\x02\x36\xbd\x94\x58\xda\xa6\x97\x4a\x58\x9d\x4d\xcf\x16\xbd\xcc\xa6\x17\xd2\x8a\xd9\xf4\x9e\xac\x4d\xef\xcb\xd8\xf4\xfe\xba\x6d\xfa\xb6\xae\x57\x19\x14\xad\x39\x76\x4a\x02\xd1\xb7\xce\x9c\x37\xdd\x29\xb9\x02\x7b\x2e\xc5\xe8\xb0\xe7\x87\x62\xcf\xb7\x9b\xd1\x63\x7d\xf9\x6e\xda\x86\xf3\xdd\xbf\xab\x6b\x05\xda\xc0\x16\x09\xd4\xb0\x35\x42\x96\x2d\x89\x42\x0f\x41\x51\xb0\x66\x66\xdb\x44\xa1\x61\x88\x2a\x88\x02\x44\xe1\x30\x45\xa1\xc6\xaa\x03\xf5\x61\xd5\x61\xd5\x25\xac\x7a\xaf\x78\x8e\x42\xad\x35\x2c\xa7\x96\xb6\xeb\xe5\x22\x44\x0d\x3b\xfd\xfd\x57\x8b\xfc\xf8\xc3\xe1\x65\x70\x1d\xa3\x6f\x68\x64\xe6\xd8\xea\xc4\x22\x3f\x16\x8e\x55\xba\xdb\x72\x65\x28\x26\x17\x6f\x8c\x06\xda\x10\x65\x6a\xfc\x40\xd0\x96\x9d\x1a\x70\xac\x79\xa2\x58\xea\x18\x9d\x91\xf4\x31\x3a\xa3\x36\xc7\xe8\x8c\x24\x8e\xd1\x81\x34\x41\x9a\x20\x4d\x90\x26\x48\xd3\xe6\xa4\x49\xf8\xc0\x63\x48\x13\xa4\xa9\xd9\x7d\xa9\x19\xb3\x1c\x5d\xb3\x78\x8f\x4c\x2f\xaa\xba\xa6\xbf\x92\xf0\xa9\x4f\xa0\x67\xd0\x33\xe8\x19\xf4\x4c\x46\xcf\xfa\x1b\xf3\x02\x42\xcf\xa0\x67\x82\xd2\xd4\x7f\x37\x69\x1a\xcb\x48\xd3\x69\xe7\x4c\x5c\x99\x4a\x89\xa5\x85\xa9\x54\x42\xb5\x2e\xe5\x13\x2f\x97\x95\x42\x6a\xe1\x07\x59\xd7\xdc\xce\x38\x99\x3f\x12\x10\x85\x34\xf1\xda\x45\x61\xd0\x5f\xcf\xf9\xaa\xab\x9e\xdb\xe9\xa7\x3b\xa2\xe1\x40\x83\x55\xdf\xe1\x51\x4a\xbf\xd9\x3e\xea\x4d\x4b\x41\x6f\x20\x33\xcf\x5f\x4e\xdd\x64\x94\x22\x3c\xd3\xcf\x49\xdd\x80\xea\x87\x72\xc3\x14\xf1\xc5\x02\xc5\xc4\x9b\x1a\xa6\x0c\xa1\x48\xbb\x37\x4c\xe9\xaf\xdb\xed\x26\x75\x48\xe2\x48\xfa\x90\xc4\x51\x9b\x43\x12\x47\x38\x24\xf1\x50\x05\xad\x9f\x54\x0e\x3a\xb6\x57\x3a\xd6\x87\x8e\xed\xad\x8e\x0d\xeb\x74\x6c\xb8\x5e\x1d\x3b\x93\xd2\xb1\x33\x69\x1d\x3b\x6b\xa3\x63\x67\xd0\x31\xe8\x18\x74\x0c\x3a\x06\x1d\xdb\x79\x1d\x1b\xad\x55\xc7\xc6\x52\xdb\xfe\xc7\xd2\xdb\xfe\xc7\x6d\xb6\xfd\x8f\xb1\xed\x1f\x3a\x06\x1d\x83\x8e\x41\xc7\x76\x5f\xc7\xc6\xeb\xd5\xb1\x91\x94\x8e\x8d\xa4\x75\x6c\xd4\x46\xc7\x46\xd0\x31\xe8\x18\x74\x0c\x3a\xb6\x7f\x3a\xc6\x09\x07\xb5\xdf\x3a\x76\xb2\x5e\x1d\x93\x5a\xf0\x31\x96\x5e\xf0\x31\x6e\xb3\xe0\x63\x8c\x05\x1f\xd0\x31\xe8\x18\x74\x6c\xbf\x75\xac\x7f\x10\x3a\x76\xba\x5e\x1d\x93\x9a\x1f\x1b\x4b\xcf\x8f\x8d\xdb\xcc\x8f\x8d\x31\x3f\x06\x1d\x83\x8e\x41\xc7\xa0\x63\xbb\xa9\x63\x1b\xdb\x55\x35\x94\x8a\x98\x37\x94\x8e\x98\x37\x6c\x13\x31\x6f\x88\x88\x79\x5b\xb4\xab\xea\xfd\x36\x55\x21\x2a\x36\x02\xe6\xed\x72\x54\xec\xc1\xc6\xac\xb9\x54\xa4\xbc\xa1\x74\xa4\xbc\x61\x9b\x48\x79\x43\x44\xca\xdb\x22\x6b\x3e\x80\x35\x87\x35\x87\x35\x6f\x60\xcd\x87\x1b\x8b\x78\x80\x68\xd6\xb0\xe6\x62\xd6\x7c\xb8\x1b\xb1\x78\x60\xcd\x0f\xc5\x9a\x6f\x7b\x14\x9c\x6a\x9b\xbe\xe6\x78\x07\xb0\xe9\xb0\xe9\xb0\xe9\xb0\xe9\xb0\xe9\xdb\xe5\x82\x2f\x49\xc2\x08\x98\x0f\x49\xd8\x32\x49\x28\x7d\x21\x90\x04\x48\x02\x24\x41\x18\xf3\x47\xc0\x7c\xd8\x74\xd8\x74\xd8\x74\xd8\xf4\xdd\xb5\xe9\x6b\xc2\xfc\xb5\x47\xba\xec\x49\x49\x42\x4f\x5a\x12\x7a\x6d\x24\xa1\x07\x49\xd8\x42\x49\xd8\x78\xcc\x4a\x48\x02\x24\xe1\xe0\x25\x61\xbc\xb1\x51\x02\x24\x01\x92\x20\x26\x09\x63\x8c\x12\x20\x09\x90\x84\xf7\x92\x84\x13\x9c\x75\x8c\xb3\x8e\xb7\x4c\x12\x4e\x20\x09\x90\x04\x48\xc2\x7b\x49\xc2\x19\x24\x01\x92\xb0\x65\x92\x70\x06\x49\x80\x24\x40\x12\xde\x47\x12\xc6\x99\x47\x94\x92\x84\xd2\x43\x60\x7a\x79\xfb\x25\xe1\xa4\x68\xe3\xeb\x25\x61\x9c\x7c\x6b\x2d\x25\x21\xbd\xaf\x88\x24\x8c\xcb\x9f\xdd\x76\x4a\xc2\x69\xa7\x27\x2e\x09\xa5\xc4\x0d\x8e\x42\xcc\x97\x20\x1b\x4d\x21\x9b\x5f\xe4\x74\xc4\x9e\xb0\x4a\x14\xd2\x6e\xe4\x2c\xab\xf4\x9e\x10\x99\x95\x8b\xcc\x70\xd5\x22\x93\x86\xbf\x58\xb7\xca\xe0\x6c\x46\xa8\xcc\xda\x42\x1c\xe5\x7a\xf2\xa6\xb5\x09\xb1\x8e\xb6\x3a\xd6\x11\xce\x66\xdc\xe2\x18\xea\xeb\x14\x34\x99\xf9\xf6\x06\x82\x86\xb3\x19\x21\x68\x5b\x28\x68\x88\xd9\xb7\xa7\x3a\x86\x98\x7d\xfb\xab\x63\xc3\x92\x8e\x35\x0c\xf3\xd4\x40\xc7\x70\x36\x23\x74\x6c\x9d\x3a\xd6\x30\x38\x14\x74\x0c\x3a\x06\x1d\xdb\x27\x1d\x5b\xef\x78\x0c\x67\x33\x42\xc7\xa0\x63\xd0\x31\xe8\x18\x74\x6c\x0d\x3a\xd6\x30\x50\x23\x74\x0c\x3a\xb6\x65\x3a\xd6\x30\x14\x18\x74\x0c\x3a\x06\x1d\xdb\x79\x1d\x6b\x18\x89\x0c\x3a\x06\x1d\xdb\x32\x1d\x6b\x18\xeb\x06\x3a\x06\x1d\x83\x8e\xed\x93\x8e\xad\xd9\xaf\x88\xb3\xf2\xa1\x63\xd0\x31\xe8\x18\x74\x0c\x67\xe5\xaf\x55\xc7\x06\xeb\xd5\x31\x9c\x95\x0f\x1d\x83\x8e\x41\xc7\xa0\x63\x38\x63\x78\xad\x3a\x36\x5c\xaf\x8e\xe1\xac\x7c\xe8\x18\x74\x0c\x3a\x06\x1d\x83\x8e\xad\x5c\xc7\x1a\x9e\x95\x8f\xa8\x1b\x90\xb1\x06\xf7\x15\x53\xa4\xf7\x3b\x2b\x1f\x51\x37\x10\x75\x03\x51\x37\x56\xbe\x49\xb9\xbf\xb1\xa0\x1b\x88\x09\x0e\x91\x91\x14\x99\xed\x3e\x26\x02\x22\x03\x91\x81\xc8\x88\x88\xcc\xe6\x36\x10\x43\x64\x20\x32\x62\x22\xd3\x70\x0b\x15\x44\x06\x22\x03\x91\xd9\x46\x91\xd9\xd8\xae\x28\xc4\x2d\x87\xc8\x08\x8a\x4c\xc3\xfd\x4d\x9b\x16\x99\x5e\x37\x6d\x20\x81\x89\x9c\x52\x6a\xf9\x89\x9c\x62\x11\xd2\x33\x19\xd9\x02\x04\xa6\x66\x0a\xc9\xc5\x9f\x6f\x63\xa1\xfd\xba\x79\xf1\x80\xd6\x6c\xb3\xd6\x8c\xa1\x35\xd0\x9a\x2d\xd3\x9a\x1d\x39\x49\x0f\x5a\x03\xad\x81\xd6\x34\xd3\x9a\x35\x47\x91\x85\xd6\x40\x6b\xa0\x35\x2b\xd5\x1a\xe1\x23\x99\x20\x4c\x10\xa6\x1d\x13\xa6\x86\x67\xc7\x42\x98\x20\x4c\x6b\x13\xa6\x1d\x39\x3b\x16\xc2\x04\x61\x82\x30\xad\x4b\x98\x4e\x21\x4c\x10\xa6\x2d\x13\xa6\xd3\x1d\x11\xa6\x41\xc1\xf4\x2f\xdb\xc4\xd2\x6d\x2b\x4c\xa5\x22\xd6\x2a\x4c\x03\xa9\x53\x70\x8b\xc9\xc5\x1b\x63\x83\x27\x42\xe1\x1c\xdd\x5d\x14\xa6\x35\xbb\xf2\x70\xc2\x21\x84\x09\xc2\x04\x61\x82\x30\x41\x98\x04\x84\xe9\x6c\x63\x23\x26\x08\x13\x84\x69\x8d\x11\x13\xce\xa0\x66\x50\x33\xa8\xd9\x21\xab\xd9\x49\xe6\x5b\x16\x57\xb3\x61\x79\x43\x08\x76\x1b\xed\xa1\x98\x8d\xde\x63\x94\x75\x52\x29\x2f\x5b\xa6\x4b\xd8\x6d\x84\xdd\x46\xfb\xa9\x31\xe3\xf5\x69\x8c\xb0\x2b\xaf\x91\xc6\x60\x8a\x09\x1a\xb3\x57\x1a\xf3\xfe\x6b\x1f\xb0\x9c\x01\xcb\x19\x76\x48\x6a\x7a\xbd\x0d\x8d\x67\x70\x4c\x12\xb4\x66\x7d\xce\xb9\x5c\x47\x96\x52\x28\x84\x33\x45\x38\xd3\xbd\x0e\x67\xba\x95\xc7\x24\xb5\x94\xb1\x61\x49\xc6\x9a\xc4\x33\x6d\x24\x63\x38\x25\x09\x32\xb6\x4e\x19\x6b\x18\x04\x15\x32\x06\x19\xdb\x6b\x19\xdb\xca\x53\x92\x56\x2e\x63\x4d\x82\xd9\x41\xc6\x20\x63\x5b\x27\x63\x0d\x23\xe0\x41\xc6\x20\x63\x90\xb1\x7d\x92\xb1\xb5\x4e\x60\xe1\xac\x3f\xc8\x18\x64\x0c\x32\x06\x19\xc3\x19\x49\x6b\x90\xb1\x26\x51\x5f\x21\x63\x90\xb1\xad\x93\xb1\x86\xa1\x62\x21\x63\x90\x31\xc8\xd8\xce\xcb\x58\x93\x80\xb2\x8d\x64\xec\x54\x4a\xc6\x4e\xa5\x65\xec\xb4\x8d\x8c\x9d\x42\xc6\x76\x5d\xc6\x1a\x46\x06\x84\x8c\x41\xc6\x20\x63\x3b\x27\x63\x91\xea\xe8\xe6\xa5\x6d\x5e\x11\xd7\x72\xde\x72\x79\x6d\xc7\xf4\x9c\x63\xdd\x36\x0d\x76\xed\x7c\xd4\xe9\x75\x7a\x9d\x6e\xa7\xa7\x91\xfe\xe0\x54\x4b\xb3\xff\xe6\xf8\x01\x27\xa7\xa6\x9b\xec\xe9\xd9\xcf\xbe\xfa\xea\xf8\x41\x75\x19\x5f\x5c\xda\x6f\x38\xa5\x38\xec\x42\x75\xc6\xcf\xba\xc6\xbd\xfb\xb2\x7c\x5f\x16\x3e\x37\x17\xb1\x17\xfe\x77\x33\xd0\x5f\xab\xb3\xa6\x86\x64\xf9\x53\x67\x7a\x53\x65\x79\x1f\x5f\xdc\xf0\x8d\x73\x8a\x9b\xbe\xb8\xf1\x4b\x5f\xd2\x76\x95\x45\x84\x2d\x51\x55\x4a\x0d\xcb\xac\xd7\xb3\x0c\x96\x01\xcb\x80\x65\xc0\x32\x60\x19\xb0\xcc\x5a\x87\xe4\x03\xc8\x18\x64\x0c\x32\x06\x19\x83\x8c\x41\xc6\xb6\x5c\xc6\x30\x24\xc7\x90\xbc\xc4\x32\x4d\x8e\x6a\x68\xc4\x32\x67\x52\x2c\x73\x26\xcd\x32\x67\x6d\x58\xe6\x0c\x2c\xb3\xeb\x2c\xd3\xf0\x7c\x07\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\xec\x15\xcb\xac\x77\x7a\x01\x2c\x03\x96\x01\xcb\x80\x65\xc0\x32\x60\x99\xd5\x4f\x2f\x9c\x6c\x6a\x7a\x01\x32\x06\x19\x83\x8c\x41\xc6\x20\x63\x90\x31\x0c\xc9\x31\x24\x5f\xe7\x90\xbc\xbf\xde\xe9\x85\x13\xa9\x60\xc8\x27\xd2\xc1\x90\x4f\xda\x04\x43\x3e\x41\x30\xe4\xfd\x61\x99\x3e\x58\x06\x2c\x03\x96\xd9\x67\x96\x19\x83\x65\xc0\x32\xb5\x2c\xb3\xd6\xe9\x05\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\x80\x65\x56\xc0\x32\x35\x32\x56\x3d\xbd\x30\x33\x3d\x8f\x9a\x32\x75\x15\x7a\x36\x94\xd2\xb3\xa1\xb4\x9e\x0d\xdb\xe8\xd9\xb0\x5a\xcf\x92\x46\x90\x16\xb6\x52\xce\x46\x0a\x57\x2a\x45\x5e\xea\xd2\xf7\xd8\x4e\xf3\x72\xfd\xa1\x91\xf8\x35\xaa\x09\x57\x05\x4b\xcd\xb2\x01\x39\x2c\x7e\x0f\x9b\xd0\xc5\xf4\x9e\x72\x02\x59\xcc\x27\xa9\x94\xc5\xec\x4d\x24\xb3\x54\x05\x71\xed\x2c\x66\x6d\x26\xa2\x42\x6d\x57\x56\x53\x91\xa6\xe3\xcb\xaa\x58\x07\xa9\xd2\x57\xe9\x87\x7e\x37\xa1\x4d\x6a\xba\x79\xc5\x4d\x6e\xbd\x16\xe9\x8d\x0b\x87\x3f\x01\xfe\x84\x8d\xfb\x13\x86\x00\x31\x80\x18\x40\xac\x25\x88\x8d\x3a\x4d\x8f\xa9\x04\x88\x1d\x04\x88\x8d\x8a\x67\x37\x03\xc4\x00\x62\x00\xb1\x03\x07\xb1\x4d\x9d\x3e\x87\x03\xbb\x31\xaf\x23\x88\x42\x0d\xcf\x91\xc3\x81\xdd\x4b\xe7\x2a\x70\x60\x37\x0e\xec\x7e\xbf\x03\xbb\xfb\x1b\xda\xa1\x08\xa9\x81\xd4\x40\x6a\x56\x2b\x35\x35\xab\x02\xfa\x9d\x6e\xc6\x8a\x43\x97\xa0\x4b\x3b\xa6\x4b\x9b\x3a\xb9\x14\xba\x04\x5d\x12\xd4\xa5\x86\x87\xb7\x41\x97\xa0\x4b\xd0\xa5\x7d\xd1\xa5\x4d\x9d\xe1\x06\x5d\x82\x2e\x09\xea\x52\xc3\xd3\xd8\x36\xae\x4b\x83\x82\xe5\x5f\xb6\x6e\xb8\xdb\x56\x97\x4a\x45\xac\x55\x97\x06\x79\x19\x90\x69\x0d\x81\x45\xd4\xdd\xcd\xeb\x52\x7a\x53\xe8\xd2\x2e\xe9\xd2\x7a\xfd\x78\x52\x67\x8b\x8e\xa4\xcf\x16\x1d\xb5\x39\x5b\x74\x84\xb3\x45\xa1\x4b\xd0\x25\xe8\x12\x74\x69\x5b\x74\x69\xb4\xa9\xf1\x12\x74\x09\xba\xb4\xc6\x2d\xaa\xa5\xaf\x0a\x62\x06\x31\x83\x98\x1d\x96\x98\x8d\x37\x14\x3b\x0a\x62\x06\x31\x5b\xa7\x98\x8d\x9b\x85\x5b\x58\x81\x98\x21\xee\xc2\x56\xc7\x5d\x68\xaf\x66\xef\xbe\x0b\x61\x25\x9b\x0f\xfa\xe5\x9e\xbe\xd7\x6a\xb6\x5e\x97\xa1\xd4\xa1\x91\x23\xe9\x43\x23\x47\x6d\x0e\x8d\x1c\xe1\xd0\xc8\x03\x55\x33\x04\x0f\xda\x53\x11\x43\xf0\xa0\xfd\x15\xb1\xd2\xd9\x04\x67\x9b\xf2\x2f\x4a\x1d\x4d\x30\x92\x3e\x9a\x60\xd4\xe6\x68\x82\x11\x8e\x26\xd8\x75\x11\x3b\xc3\xc9\x04\x10\x31\x88\xd8\xc1\x8b\xd8\x7a\x8f\x89\x93\x0a\xb7\x32\x96\x0e\xb7\x32\x6e\x13\x6e\x65\x5c\x13\x6e\x05\x22\x06\x11\x83\x88\x41\xc4\x20\x62\xdb\x2a\x62\xa7\x9d\x5e\x77\x53\x07\xb7\x8f\xa4\x54\x6c\x24\xad\x62\xa3\x36\x2a\x36\x92\x55\xb1\x7e\x23\x15\xeb\x37\x53\xb1\xfe\x3b\xa9\xd8\xd9\xce\xa8\x58\xae\x23\x43\xc6\x20\x63\x90\x31\x4e\x48\xae\xc3\x90\xb1\xf5\x0e\xc6\xa4\x16\x79\x8c\xa5\x17\x79\x8c\xdb\x2c\xf2\x18\x4b\x2f\xf2\x80\x8c\x41\xc6\x20\x63\x90\xb1\x9d\x92\xb1\xbd\x39\x54\xa3\x2c\x63\x9b\x8a\x21\x08\x19\x83\x8c\xad\x55\xc6\x1a\x86\x83\x82\x8c\x41\xc6\x20\x63\x3b\x2f\x63\x9b\x8a\xb7\x31\x96\x5a\xa4\x38\x96\x5e\xa4\x38\x6e\xb3\x48\x71\x2c\xbd\x48\x11\x32\xb6\x6d\x32\xd6\x70\x37\x34\x64\x0c\x32\x06\x19\xdb\x39\x19\x8b\x54\x07\x51\xfd\x8f\x10\xd5\x9f\xc7\x32\xeb\xf5\x2c\x83\x65\xc0\x32\x60\x19\xb0\x0c\x58\x06\x2c\xb3\xd6\x21\x79\xf5\x71\xcd\x90\x31\xc8\x18\x64\x0c\x32\x06\x19\x83\x8c\x6d\x87\x8c\x61\x48\x8e\x21\x79\x89\x65\x36\x15\x9e\x6e\x2c\xb5\x7d\x74\x2c\xbd\x7d\x74\xdc\x66\xfb\xe8\x58\x7a\xfb\x28\x58\x66\xdb\x58\xa6\x61\x7c\x3a\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\xec\x15\xcb\xac\x77\x7a\x01\x2c\x03\x96\x01\xcb\x80\x65\xc0\x32\x60\x99\xd5\x4f\x2f\x8c\x36\x35\xbd\x00\x19\x83\x8c\x41\xc6\x20\x63\x90\x31\xc8\x18\x86\xe4\x18\x92\xaf\x61\x48\x3e\xde\xd0\xf4\xc2\x89\xd4\x69\xa1\x27\xd2\xa7\x85\x9e\xb4\x39\x2d\xf4\x44\xfa\xb4\x50\xb0\xcc\xb6\xb1\xcc\x18\x2c\x03\x96\x01\xcb\x1c\x04\xcb\x8c\xc1\x32\x60\x99\x5a\x96\x59\xeb\xf4\x02\x58\x06\x2c\x03\x96\x01\xcb\x80\x65\xc0\x32\x2b\x60\x99\x1a\x19\x5b\xeb\xf4\x02\x64\x0c\x32\x06\x19\x83\x8c\x41\xc6\x20\x63\x18\x92\x63\x48\xbe\x8e\x21\xf9\x09\xa6\x17\xc0\x32\xfb\xc0\x32\x27\x60\x19\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\x60\x7a\x01\x2c\x03\x96\x01\xcb\x80\x65\xc0\x32\x5b\xcf\x32\x35\x32\x56\x3d\xbd\x30\x33\x3d\x8f\x9a\x32\x75\x15\x7a\x36\x94\xd2\xb3\xa1\xb4\x9e\x0d\xdb\xe8\xd9\xb0\x5a\xcf\x92\x46\x90\x16\xb6\x52\xce\x46\x0a\x57\x2a\x45\x5e\xea\xd2\xf7\xd8\x4e\xf3\x72\xfd\xa1\x91\xf8\x35\xaa\x09\x57\x05\x4b\xcd\xb2\x01\x39\x2c\x7e\x0f\x9b\xd0\xc5\xf4\x9e\x72\x02\x59\xcc\x27\xa9\x94\xc5\xec\x4d\x24\xb3\x54\x05\x71\xed\x2c\x66\x6d\x26\xa2\x42\x6d\x57\x56\x53\x91\xa6\xe3\xcb\xaa\x58\x07\xa9\xd2\x57\xe9\x87\x7e\x37\xa1\x4d\x6a\xba\x79\xc5\x4d\x6e\xbd\x16\xe9\x8d\x0b\x87\x3f\x01\xfe\x84\xcd\xf8\x13\x4e\x1b\xcd\x8d\x94\x37\xed\xed\x2f\x80\xc1\xa1\xb0\x1b\x0e\x85\x53\x38\x14\xe0\x50\x80\x43\xe1\x40\x1d\x0a\xa7\x22\x7e\xf1\x6a\x87\xc2\x21\x09\x1a\x3c\x0a\x07\xe1\x51\x10\xd1\x43\x78\x14\xe0\x51\x80\x47\x01\x1e\x05\x78\x14\xe0\x51\x58\x91\x47\xa1\xdf\xdd\x98\x47\x61\x24\x05\x60\x23\x69\x00\x1b\xb5\x01\xb0\x11\x3c\x0a\x3b\xee\x51\xc8\xf4\x64\x78\x14\xe0\x51\x80\x47\xe1\xa0\x3c\x0a\x59\x1d\xdb\x94\x47\x61\x57\x05\x0d\x1e\x85\x43\xf0\x28\x08\xe9\x21\x3c\x0a\xf0\x28\xc0\xa3\x00\x8f\x02\x3c\x0a\xf0\x28\xac\xc1\xa3\xd0\x64\xb1\x28\x48\x0c\x24\x06\x12\xcb\x09\xed\xa8\xd3\x03\x89\x81\xc4\x44\x3a\x08\x48\x0c\x24\x06\x12\x03\x89\x51\xdd\x49\xb6\xdd\xf4\xd7\x1b\x48\x63\x34\x96\xc1\xaf\x24\xb5\x30\x7e\x25\x39\x9a\xe0\x57\x2e\x33\x66\x76\x76\x71\x66\x67\x50\xb4\xe0\x62\x13\x3b\xbd\x4e\x15\x77\x61\x86\x67\x3f\x66\x78\x7a\x98\xe1\x61\x90\xd3\x2f\xf7\xf4\x9d\x9f\xe1\x19\xd4\xa8\xd9\x5a\x43\x29\x8c\x4e\xa5\xd4\xec\x54\x5a\xcd\x4e\xdb\xa8\xd9\x29\xd4\xec\x30\xd5\x0c\xcb\x14\xf6\x54\xc4\xb0\x4c\x61\x7f\x45\xac\x74\x0e\xe4\xa6\x8e\x4e\x1a\x49\x1d\x03\x39\x92\x3e\x06\x72\xd4\xe6\x18\xc8\x11\x8e\x81\xdc\x75\x11\x43\x98\x66\x88\x18\x44\x0c\x22\xb6\xde\x23\xf9\xa5\xb6\xec\x8d\xa5\xb7\xec\x8d\xdb\x6c\xd9\x1b\x63\x0f\x3a\x44\x0c\x22\x06\x11\x83\x88\xed\xa4\x88\x35\x8b\xa4\x02\x11\x83\x88\x6d\x97\x88\x21\x8e\x0a\x44\x0c\x22\x76\xa0\x22\x76\xb6\x29\x11\x93\x5a\x60\x3b\x96\x5e\x60\x3b\x6e\xb3\xc0\x76\x8c\xbd\xbb\xbb\x2e\x62\x67\x10\x31\x88\x18\x44\xac\x6e\xf5\xea\xbe\x8a\xd8\x59\xa7\x27\x14\x82\x02\xc1\xc0\x5e\x97\x6f\x18\xe9\x75\xab\x95\x4d\x64\xc7\x48\x92\xbf\xe9\x96\x91\x62\x01\xad\x77\x6a\x9c\x36\xdc\x33\x72\x92\x5a\x90\x15\xed\x19\x39\x6d\xb9\x67\xa4\x37\x90\x90\xc4\xdc\x57\x21\xa5\x89\x83\x75\xaf\x7a\xac\xdc\xf8\x30\xee\x8c\xea\x54\xb2\x6a\xe7\x43\x29\x5b\x8b\x4d\x23\xa5\xb2\xc4\x36\x8d\x14\xb3\x35\xdf\x3f\x91\x2d\x49\x66\xd3\x48\x21\x5f\x83\xa6\xa3\xb9\x56\xd4\x72\xc2\x32\xcd\xe9\x6b\x2d\xf7\x9f\xa4\xd5\x10\x12\xee\xf4\x2b\x17\x10\xee\x34\xb1\xdc\xfe\x93\xfe\x8a\x14\x1c\xfb\x4f\xb0\xff\xe4\x80\xf6\x9f\x9c\x75\x7a\xfd\xcd\x83\xdd\x9e\xee\x04\x06\xd8\xed\x0f\xd8\xf5\x01\x76\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\xdb\x4d\xb0\x1b\x6c\x1e\xec\x4e\xa4\xc0\xee\x44\x1a\xec\xca\x13\x16\x12\x60\x77\x02\xb0\x03\xd8\xf5\x4a\xf3\xaa\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xd8\xed\x06\xd8\x0d\x37\x0f\x76\x52\xdb\xed\x4f\xa4\xb7\xdb\x9f\xb4\xd9\x6e\x7f\x52\xb3\xdd\x1e\x60\x77\x30\x60\x37\x6c\x19\xbf\x6f\xb0\xe9\x48\xca\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xd8\x95\xc0\x6e\x53\xc7\x63\x00\xec\x00\x76\x00\x3b\x80\x1d\xc0\x0e\x60\xb7\x4e\xb0\x1b\x9e\x76\x7a\xe2\xab\xe4\x57\x01\x76\x51\xa6\x7f\x92\x97\x57\xc7\xf9\xc6\x2d\xfd\xdf\x24\x08\x88\xfe\x1a\x76\x84\xef\x61\x42\x95\x6a\xdb\x94\xd8\xd4\xfa\xa4\x11\xbb\x41\x89\xa0\xc4\x6d\xa1\xc4\x11\xdc\x7f\xa0\x44\x50\x62\x81\x12\x4b\xbd\x1a\x94\x08\x4a\x04\x25\xee\x16\x25\xc2\xfd\x07\xb0\x03\xd8\xc1\xfd\x07\xb0\x03\xd8\x01\xec\x00\x76\x00\xbb\x3d\x01\x3b\xb8\xff\x40\x89\xa0\xc4\x95\x50\xa2\xd0\xe9\x04\xa0\x44\x50\xe2\x41\x51\xa2\x48\x98\x68\x50\x22\x28\x11\x94\xb8\xcd\x94\x78\x56\x0e\x7b\xf9\xee\x94\x18\x97\x1b\xde\xa5\x8a\x15\x7b\x60\x45\xb0\xe2\x36\xb3\x22\x3c\x8a\x60\x45\xb0\xe2\x4a\x58\x31\xf5\x0b\x80\x15\xc1\x8a\xed\x59\x51\xac\xaf\x81\x15\xc1\x8a\x60\x45\xb0\xe2\x06\x58\x71\x00\x56\x04\x2b\x82\x15\xc1\x8a\x60\x45\xb0\xe2\xce\xb3\x22\x93\x3d\xa0\x22\x50\x11\xa8\xb8\x7a\x54\x1c\x02\x15\x81\x8a\x40\x45\xa0\x22\x50\x11\xa8\x08\x54\x04\x2a\x02\x15\x81\x8a\x7c\x54\x1c\x01\x15\x81\x8a\x40\x45\xa0\x22\x50\x11\xa8\xb8\x07\xa8\x28\x75\x78\x39\x50\x11\xa8\x08\x54\x14\x45\xc5\x31\x50\x11\xa8\x08\x54\x04\x2a\x02\x15\x81\x8a\x7b\x81\x8a\xdb\xb7\xfb\x19\xa8\x08\x54\xdc\x79\x54\xec\x63\x0f\x34\x50\x11\xa8\x58\xfc\x2a\x80\x8a\x40\x45\xa0\x22\x50\x11\xa8\x08\x54\x3c\x6c\x54\xec\x8b\x44\xcb\x29\x03\x62\x69\x6b\xd9\x52\x40\x1c\x8f\x64\x00\x31\x49\x2d\x0c\x88\x49\x8e\x26\x80\x98\xcb\x5c\x40\x22\x79\x2e\x6c\x87\x83\x2d\x28\xb0\x25\xfc\x35\x66\xbe\xd6\xa8\xb7\x22\xc2\xeb\x6f\xe9\xd9\xc5\x65\x36\xe9\xd5\x71\x5d\x89\x49\x7a\x22\x38\x57\xcf\x22\xbd\x3a\x8a\x2b\xc1\x5b\x6f\x19\xbc\x2d\x63\x8e\x5e\x1d\xb3\xd5\x35\x47\x19\xd5\x6a\x5a\xa3\x9a\xd0\x44\x1b\x63\x1d\xc1\x69\x44\xdb\xe6\xdd\x78\x6c\xd5\x91\xa8\x97\x73\xd8\x5a\x02\x50\xaf\x1e\x91\x86\x45\x75\x1c\x40\x1d\xa1\x8e\xfb\xa2\x8e\xdb\x7a\xb2\x3f\xd4\x11\xea\x08\x75\xdc\x6d\x75\xac\x8e\x9e\xb5\x12\x75\x1c\x4b\xa9\xe3\x58\x5a\x1d\xc7\x6d\xd4\x71\x0c\x75\x84\x3a\x42\x1d\xa1\x8e\x50\x47\x79\x75\x5c\x7e\x8a\xd1\xae\xaa\xe3\x70\x63\x63\x47\xa8\x23\xd4\x71\xcd\xea\x28\x72\xc6\x34\xd4\x11\xea\x08\x75\x84\x3a\x0a\xa9\xa3\xd0\x29\x1d\x2b\x51\x47\xa9\x85\x69\x63\xe9\x85\x69\xe3\x36\x0b\xd3\xc6\x35\x0b\xd3\xa0\x8e\x3b\xa3\x8e\x22\x7b\x10\xb6\x43\x1d\x6b\xd7\x93\x35\x5b\x46\xd6\x62\xf5\x98\xfc\xa2\xb1\x56\x6b\xc5\xe4\x96\x88\x35\x5a\x19\xd6\x6e\x41\xd8\x7a\xd5\xf1\xdd\xd7\x81\x41\x1d\x2b\xd5\x31\x12\x33\x2c\xcd\x3a\xc2\xd2\xac\x18\x91\x4e\x36\x86\x48\x67\x52\x88\x74\x26\x8d\x48\x67\x6d\x10\xe9\x0c\x88\xb4\x07\x88\x74\x02\x44\x02\x22\x01\x91\x80\x48\x40\x24\x20\xd2\xca\x10\xe9\x74\x53\x88\x74\xd2\x97\x41\xa4\x24\xb5\xf8\xf6\xc6\x7e\x0b\x44\xca\x65\x06\x22\xed\x2a\x22\x9d\x02\x91\x80\x48\x40\x24\x20\x12\x36\xf8\x01\x91\x56\x86\x48\x67\x40\x24\x20\xd2\xbe\x20\xd2\x19\x10\x09\x88\x04\x44\x02\x22\x01\x91\x80\x48\xab\x41\xa4\x7e\xb7\xd3\xeb\x8a\x30\x12\xc2\x65\xbd\x22\x5c\x96\x78\xb8\xac\xd3\x9d\x0e\x97\x95\xff\x2a\xaa\x61\xab\x2e\x84\xd1\x20\x69\x81\x0d\x85\xcb\x3a\x49\x04\x4f\x2a\x5c\x56\x29\x5b\x8b\xa0\x4f\xa5\xb2\xc4\xc2\x65\x15\xb3\x35\x0f\xf7\x94\x2d\x49\x26\x5c\x56\x21\x5f\x83\xa6\x6b\x19\x2e\xab\x50\xd4\xca\xa1\x4d\xba\xfd\x84\xe8\xed\x34\xbf\xe6\xb8\x9e\xde\xd2\xc4\x1b\x3c\x06\x3e\xd3\x44\x83\xa5\x18\xb7\x8a\x78\x59\x4d\x82\x5b\x0d\xd3\x66\x04\xd8\x01\xec\xd6\x01\x76\xd5\x3b\x94\x01\x76\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\xdb\x21\xb0\x3b\xdd\xc2\x40\xa8\xff\x26\x41\x40\xf4\xd7\xca\x10\xa8\xa3\x56\x21\x50\x41\x89\xa0\xc4\x75\x50\x62\x0f\xee\x3f\x50\x22\x28\xb1\x40\x89\x25\x75\x01\x25\x82\x12\x41\x89\x3b\x46\x89\x70\xff\x01\xec\x00\x76\x70\xff\x01\xec\x00\x76\x00\x3b\x80\x1d\xc0\x6e\x4f\xc0\x0e\xee\x3f\x50\x22\x28\x71\x15\x94\x28\x74\x04\x12\x28\x11\x94\x78\x50\x94\x28\x72\x96\x12\x28\x11\x94\x08\x4a\xdc\x66\x4a\xe4\xc4\xb5\x7f\x77\x4a\xdc\xc4\x69\x99\x60\x45\xb0\xe2\x9a\x59\x11\x1e\x45\xb0\x22\x58\x71\x25\xac\xb8\xf1\x83\xd5\xc1\x8a\x7b\xcd\x8a\x62\x7d\x0d\xac\x08\x56\x04\x2b\x82\x15\xd7\xc5\x8a\x42\x87\xc7\x82\x15\xc1\x8a\x07\xc5\x8a\x22\xe7\xec\x81\x15\xc1\x8a\x60\x45\xb0\x22\x58\x11\xac\x78\x18\xac\x28\x74\x58\x24\x58\x11\xac\x78\x50\xac\x28\x72\xea\x24\x58\x11\xac\x08\x56\x04\x2b\x82\x15\xc1\x8a\x07\xc6\x8a\x7d\xb0\x22\x58\x11\xac\x58\xfc\x2a\xc0\x8a\x60\x45\xb0\x22\x58\x71\x97\x58\x71\x94\x46\x01\x07\x2b\x82\x15\x57\xc6\x8a\x23\xf8\x15\xc1\x8a\x60\xc5\x02\x2b\x96\x7a\x35\x58\x11\xac\x08\x56\xdc\x25\x56\x64\xb2\x07\x54\x04\x2a\x02\x15\x57\x8f\x8a\x1b\xda\xda\x72\xda\x95\x41\xc5\x24\xb5\x30\x2a\x9e\x76\x5b\xa0\xe2\x69\x17\xa8\x08\x54\x04\x2a\x02\x15\x81\x8a\xdb\x80\x8a\x63\xa0\xe2\x9a\x51\xb1\xb2\xc9\x01\x8a\x00\x45\x3e\x28\x0e\x00\x8a\x00\x45\x80\x22\x40\x11\xa0\x08\x50\xdc\x03\x50\xec\x03\x14\x01\x8a\x00\xc5\xd5\x83\xe2\x10\xa0\x08\x50\x04\x28\x02\x14\x01\x8a\x00\xc5\xbd\x00\xc5\xed\x8b\xbe\x0d\x50\x04\x28\xee\x38\x28\x6e\x6c\x47\x0b\x40\x11\xa0\xb8\x33\xa0\x88\x1d\x2d\x00\x45\x80\x22\x40\x11\xa0\x08\x50\x04\x28\x46\xa0\xb8\xa9\x35\x8a\x27\x52\xa0\x78\x22\x0d\x8a\x27\x6d\x40\xf1\x04\xa0\x08\x50\x04\x28\x02\x14\x01\x8a\x00\x45\x80\xa2\x18\x28\xf6\x3b\x03\xda\xda\x46\x6f\xd4\x35\x9a\x82\x62\x45\x19\xcb\x41\xb1\x22\xe3\x52\x50\xac\xba\xa1\x00\x28\x56\x64\x6d\x0c\x8a\x15\xe5\x09\x83\x62\x6d\xdb\x09\x83\x62\xbe\x94\x02\x28\x0a\x85\x53\x2c\xe3\x61\x29\xde\xdc\xf2\xdd\xce\x7d\x19\x3c\x4c\x52\x8b\xef\x76\xee\xb7\xc0\xc3\x5c\xe6\x02\x10\xc9\x53\x61\x3b\x18\x6c\xc1\x80\x2d\xd1\xaf\x31\xf1\xb5\x06\xbd\x15\xf1\x9d\x48\x14\x44\xb1\xd3\xd1\x56\x8b\x77\x92\x54\xd7\x0c\xe6\x5a\x30\x9c\x3c\xba\xb5\x22\x36\x39\x50\x6b\xc4\x67\xed\xb0\xac\xdd\x09\x7a\x5b\x4f\x63\x2b\x89\x3f\xc3\x69\x90\x6a\x0a\x6b\x01\x5f\xd5\xa4\x84\x30\x82\xf0\xa5\x6d\xc2\x97\x26\x14\x19\x06\x88\x04\x44\xda\x05\x44\x12\x59\x53\x07\x44\x02\x22\x01\x91\x80\x48\x40\x24\x20\x92\x18\x22\x8d\x37\x1f\x3c\x6f\x28\xc5\x4a\x43\x69\x56\x1a\xb6\x61\xa5\x21\x66\x1b\x31\xdb\x38\xde\x52\xd4\xc2\x64\xe3\x61\x4e\x36\xb6\x43\xb6\x1d\x9e\x6c\x5c\x15\xc4\x0d\x36\x32\xdb\x88\x03\x34\x80\x75\x5b\x82\x75\xa7\x9b\xc7\xba\x91\x14\xd6\x8d\xa4\xb1\x6e\xd4\x06\xeb\x46\xc0\x3a\x60\xdd\x29\xb0\x0e\x58\x07\xac\x03\xd6\x01\xeb\x80\x75\x3b\x89\x75\x67\x9b\xc7\x3a\xa9\xbd\x01\x27\xd2\x7b\x03\x4e\xda\xec\x0d\x38\xc1\xde\x00\x60\x5d\xe6\xa3\x00\xd6\x01\xeb\x80\x75\xc0\x3a\x60\x1d\xb0\x6e\x77\xb0\xae\xd7\xe9\x75\x5b\x72\x5d\x69\xc2\xea\x40\x83\x83\x9c\x74\x86\x6d\xb0\x2e\xcd\xde\x8c\xea\x4a\xf9\x57\x80\x52\x83\x86\x50\x37\x5c\x39\xd4\x0d\x5a\x40\x5d\x0a\x99\x22\x4c\x97\xfb\x22\xaa\xa1\x6e\xab\xf6\x7b\x9e\x35\x83\xba\x52\xb6\x16\x68\x52\x2a\x4b\x0c\xea\x8a\xd9\x9a\x43\xc9\x59\x43\xa8\x3b\x6b\x04\x75\xc5\x5c\x2b\x6a\xb9\x77\xdc\xef\x79\xb6\x85\x50\x87\x33\x29\x76\x61\xbf\x27\x20\x71\xff\x21\xb1\x0f\x48\x04\x24\x02\x12\x33\x90\xd8\x07\x24\x02\x12\x01\x89\xbb\x0d\x89\x38\x8f\x02\x90\x08\x48\x5c\x15\x24\x0e\x00\x89\x80\x44\x40\x62\x06\x12\x07\x80\x44\x40\x22\x20\x71\xd7\x21\x11\x91\xe3\x00\x89\x80\xc4\xd5\x40\xa2\x50\xe8\xb8\xd5\x42\xe2\x5e\x86\x18\x06\x24\xee\x0b\x24\x8a\xc4\x9f\x03\x24\x02\x12\x01\x89\x80\x44\x40\x22\xc2\x0b\xef\x7b\x78\xe1\x9e\x58\x78\xe1\x95\x32\xe2\xc9\xa9\x0c\x23\x26\xa9\xc5\xb7\x9a\x9c\xb6\x60\xc4\x5c\x66\x30\xe2\x01\x32\x62\x5b\x44\x1c\x26\xf7\x03\x22\x02\x11\xd7\x8b\x88\x69\x5f\xdb\x43\x44\x4c\x37\x61\x34\xda\x68\x72\xba\x85\x94\xf8\x6f\x12\x04\x44\x7f\xad\xe4\xc3\xd1\x06\xf9\x10\xbb\x56\xe0\x46\x14\x72\x23\x0a\x45\x57\x06\x21\x82\x10\x0f\x85\x10\x45\x22\x34\x83\x10\x41\x88\x20\x44\x10\x22\x08\x11\x84\xb8\xf7\x84\xd8\x36\xb8\x34\x08\x11\x84\xb8\x57\x84\x28\x12\x58\x1a\x84\x08\x42\x04\x21\x6e\x37\x21\x9e\x75\x4a\xab\x8a\xdf\x9d\x10\xb7\x6f\xa6\x19\x9c\x08\x4e\x94\xe5\xc4\x3e\x38\x11\x9c\x08\x4e\xc4\x72\x44\x70\xe2\x8e\x70\xe2\x5e\x2f\x47\x04\x27\x82\x13\xc1\x89\xdb\xc2\x89\x27\xf0\x27\x82\x13\xc1\x89\x29\x27\x9e\x80\x13\xc1\x89\xe0\x44\x70\x22\x38\x11\x9c\x08\x4e\x8c\x39\xb1\xed\xe9\x77\xe0\x44\x70\xe2\x5e\x71\xa2\xc8\xc9\x77\xe0\x44\x70\x22\x38\x11\x9c\x08\x4e\x04\x27\x1e\x1a\x27\xf6\xc1\x89\xe0\x44\x70\x62\xe6\x83\x00\x27\x82\x13\xc1\x89\xe0\x44\x70\x22\x38\xf1\xe0\x39\xb1\xed\xb1\xcb\xe0\x44\x70\xe2\x5e\x71\xa2\xc8\x91\xcb\xe0\x44\x70\x22\x38\x71\x8b\x39\x11\xe7\xf3\x01\x13\x81\x89\xeb\xc1\xc4\x0d\x6d\x63\xc1\xd9\x2b\xc0\x44\x60\x22\x30\x11\x98\x08\x4c\xac\xc3\x44\x1c\xe2\xbc\x0b\x51\xb5\x81\x88\x7b\x8e\x88\xfd\x4e\xaf\xdb\xc6\x95\x38\x4a\xd4\x1b\x64\x78\xe8\x64\x38\x5e\x39\x19\x8e\x9a\x93\x61\x3f\x35\xb5\x22\x64\x98\xfb\x0e\x76\x03\x0d\x33\x4f\x28\x83\x86\xe5\x6c\xcd\x01\xa7\x5c\x96\x10\x1a\x96\xb2\x35\x46\x9b\x5c\x49\x12\x68\x58\xcc\xd7\xa0\xe9\xda\xa1\x61\xb1\xa8\x3a\x34\x8c\x3a\x8e\x6e\x9b\xb9\xfe\x76\xb2\xa2\x68\x38\x99\xaa\xec\x07\x1e\x1e\xee\xa1\x2b\x3d\xe0\x21\xf0\x70\xc5\x78\xd8\xdb\x14\x1e\xe2\x3c\x3e\xe0\xe1\x16\xe3\x61\x49\x53\x76\x1c\x0f\xcb\x68\x53\x7c\x40\xe0\x61\x05\x1e\x8a\x34\x1d\xf0\x10\x78\x78\xe8\x78\x88\x33\xf9\xf6\xfc\x4c\xbe\x7e\xa7\x37\x00\x1e\x02\x0f\x81\x87\xbd\xd2\xea\xf6\x7d\xc3\xc3\xd2\x03\x02\x0f\x45\xf1\x90\xd3\x74\xc0\x43\xe0\x21\xf0\x10\x78\xb8\xef\x78\xd8\xea\x44\x3e\xe0\x21\xf0\x70\x4f\xf0\xb0\xed\x41\x7c\xc0\x43\xe0\x21\xf0\x10\x78\xf8\x8e\x78\xd8\x07\x1e\x02\x0f\x57\x8c\x87\xad\x8e\xe3\x93\xc1\x43\xa9\xcd\xcb\xa7\xd2\x9b\x97\x4f\xdb\x6c\x5e\x3e\xc5\xe6\xe5\x43\xc7\xc3\x5d\x3b\x5d\x05\x78\x08\x3c\x04\x1e\x02\x0f\xdf\x19\x0f\x87\x2b\xc0\x43\x4e\x19\x62\x78\xc8\xc9\x28\x84\x87\xbc\x1b\x0a\xe2\x21\x27\x6b\x2b\x3c\xe4\x94\x27\x85\x87\x95\x6d\x27\x85\x87\xc3\x4a\x3c\x6c\x75\xba\x0a\xf0\x10\x78\xb8\x27\x78\xb8\x6b\x87\xaa\xf4\xfb\x49\xfb\x88\xe0\x61\xbf\x2c\x6b\xed\xf1\xb0\x54\x05\x31\x3c\x2c\x66\x6b\x8e\x36\xd9\x92\x64\xf0\xb0\x90\xaf\x41\xd3\xb5\xc4\xc3\x42\x05\xde\x13\x0f\xd3\xaa\x00\x0f\x81\x87\xb2\x78\x38\x5a\x01\x1e\x72\xca\x10\xc3\x43\x4e\x46\x21\x3c\xe4\xdd\x50\x10\x0f\x39\x59\x5b\xe1\x21\xa7\x3c\x29\x3c\xac\x6c\x3b\x29\x3c\x1c\x89\xe0\xa1\x7c\x74\x1b\xe0\x21\xf0\x10\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\x43\xe0\xe1\x9e\xe1\xe1\xb0\x9d\xf3\xb0\x2b\x4a\x87\x08\x8c\x0d\x3a\xdc\x62\x3a\x1c\xee\x1a\x1c\x22\xac\xcd\x61\x84\xb5\x59\x63\xc4\xc3\xad\x9c\x56\x1e\xb5\x00\xc3\xc3\x8d\x78\x28\xb3\x29\x05\x61\xb1\x11\xd4\x46\x28\xa8\x4d\xcb\x5d\x29\x40\x43\xa0\xe1\x3e\xa0\xe1\xbe\x6d\x4a\x01\x1a\x02\x0d\x81\x86\x40\x43\xa0\x21\xd0\xb0\x35\x1a\x36\x39\x80\x19\x68\x08\x34\xdc\x33\x34\xdc\x91\x63\x97\x81\x86\x40\x43\xa0\x21\xd0\x10\x68\x08\x34\x5c\x17\x1a\xb6\xdc\xac\x0c\x34\x04\x1a\xee\x03\x1a\xee\xdb\x5e\x65\xa0\x21\xd0\x10\x68\x08\x34\x04\x1a\x02\x0d\x9b\xa2\x61\xcb\x8d\xca\xc2\x68\x88\x33\xf4\x80\x86\x5b\x8c\x86\x3b\xb7\x11\x05\x68\x78\x18\x68\x88\x30\x36\xc0\xc3\xd5\xe3\xe1\x2a\x36\xa2\x00\x0e\x0f\x09\x0e\x9b\x6c\x53\x06\x1c\x02\x0e\x01\x87\x80\x43\xc0\x21\xe0\x10\x70\x08\x38\x04\x1c\xee\x13\x1c\x9e\x6d\x2a\xc4\x21\xe0\x10\x70\xb8\xbd\x70\x78\x06\x38\x04\x1c\x02\x0e\x77\x1f\x0e\xfb\x80\x43\xc0\x21\xe0\x70\x15\x70\x38\xe8\xf4\xba\x38\x3e\xaf\xf9\xf1\x79\x19\xdb\xda\x84\x0e\x0b\x0c\x23\x4d\x87\xe5\xfc\x2b\x64\x32\x39\x3a\x3c\x4b\xd5\x6a\x07\xe9\x30\xf7\x1d\xec\x08\x1e\xf6\x33\x7c\x20\x12\xe1\xb0\xf4\x80\xab\x88\x70\xd8\x6d\x82\x87\xc5\x6c\x6d\xa2\xf3\x75\x1b\xe1\x61\x21\x5f\x83\xa6\x6b\x1d\xe1\xb0\xbb\x2d\x78\x98\x56\x65\x5f\xf0\xf0\x30\x23\x1c\x8e\x37\x8e\x87\x38\x3e\x6f\xcf\x8f\xcf\x1b\x74\x7a\x7d\xe0\x21\xf0\x10\x78\x98\xf9\x0e\x80\x87\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\x3c\x78\x3c\x6c\x19\x01\xfb\xb0\xcf\x47\x01\x1e\xee\x0d\x1e\xee\x5c\x08\x6c\xe0\x21\xf0\x10\x78\x08\x3c\x7c\x5f\x3c\xc4\xe9\xca\x7b\x7c\xba\xf2\xa0\xd3\x6b\x19\x05\x1b\x78\x08\x3c\xdc\x0b\x3c\xdc\xb9\x30\xd8\x38\x3e\x0f\xc7\xe7\xad\x06\x0f\x71\x7c\x1e\xf0\x10\xc7\xe7\xe1\xf8\x3c\x1e\x1e\x8e\xdb\x45\xc2\x06\x1e\x02\x0f\xf7\x02\x0f\xc7\xbb\x16\x0a\x1b\x78\x08\x3c\x04\x1e\x96\xf1\x70\x94\xe2\x61\x1f\x78\x08\x3c\x04\x1e\xae\x08\x0f\x9b\x44\xb5\x01\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x10\x78\x78\x78\x78\x38\x5e\x01\x1e\x72\xca\x10\xc3\x43\x4e\x46\x21\x3c\xe4\xdd\x50\x10\x0f\x39\x59\x5b\xe1\x21\xa7\x3c\x29\x3c\xac\x6c\x3b\x29\x3c\x1c\x8b\xe0\xe1\x00\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x70\x29\x1e\x9e\x50\xed\xec\xe9\xfd\xc1\xf8\xac\x31\x1e\x72\xcb\x10\xc1\x43\x6e\x46\x01\x3c\xe4\xdf\x50\x08\x0f\xb9\x59\x5b\xe0\x21\xb7\x3c\x09\x3c\xac\x69\x3b\x09\x3c\xcc\x96\x52\xc0\xc3\x96\x3b\x53\xfa\xc2\x74\xb8\x37\x51\x0f\xab\x30\x04\x7c\xb8\xd3\x7c\xb8\x6f\x5b\x53\x4a\x6c\x96\x6e\xb4\x58\x21\x1e\xee\xe5\xd6\x14\x91\xa6\xc3\xd6\x94\x6d\xc5\xc3\x1e\xd6\x1e\x22\xee\x21\xe2\x1e\xae\x26\xee\xe1\xb0\xdd\x89\x29\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\xc3\xfd\xc2\xc3\x31\xce\x4c\x01\x1e\x02\x0f\xb3\x1f\x02\xf0\x10\x78\x08\x3c\xdc\x59\x3c\x3c\xd4\x53\x53\x80\x87\xc0\xc3\x95\xe3\xe1\x09\xf0\xb0\xf9\x91\x7a\x80\xc3\x7d\x81\xc3\x9d\x3b\x6f\x19\x70\x08\x38\x04\x1c\x22\xac\x0d\xe0\x10\x70\xb8\x36\x38\x3c\xc5\x91\x29\x38\x32\x05\x70\x78\xba\x67\x70\x88\x90\xd8\x8d\xe1\x10\x21\xb1\x01\x87\x80\x43\x9c\x98\x72\xf0\x27\xa6\x0c\x33\xe7\xcc\x36\x8b\x79\x38\x14\xa6\x43\xec\x5a\xde\x6f\x3a\x1c\xec\x30\x1d\xe6\xbe\x83\x9d\xc1\x43\xec\x5a\xc6\xae\x65\xec\x5a\xc6\xae\xe5\x18\x0f\xfb\xef\x80\x87\x88\x79\xb8\xc7\x31\x0f\xb3\xb2\x38\x04\x1e\x02\x0f\x81\x87\xde\x10\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\xc3\x83\xc7\xc3\x01\xbc\x87\xc0\x43\xe0\x61\xe6\x3b\x00\x1e\x02\x0f\x81\x87\xef\x8a\x87\x27\xc0\xc3\x4d\xe3\xe1\x49\x33\x3c\x44\x48\xec\x3d\x0e\x89\x9d\xc7\xc3\x26\x51\x6d\x80\x87\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\x04\x1e\x1e\x1a\x1e\x22\x24\xf6\x5e\x87\xc4\x1e\x76\x7a\xa3\x76\x3b\x53\x80\x87\xc0\xc3\xbd\xc0\xc3\x92\xd5\x07\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\xf0\x70\xf1\xb0\x65\xd0\x43\xe0\x21\xf0\x70\x2f\xf0\x70\x07\x63\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x10\x78\xb8\x2e\x3c\x6c\x19\xf4\x50\x18\x0f\xcf\xa4\x82\x1e\x9e\x49\x07\x3d\x3c\x6b\x13\xf4\xf0\x0c\x41\x0f\x0f\x1d\x0f\x77\x30\xea\x21\xf0\x10\x78\x08\x3c\x04\x1e\xbe\x0f\x1e\x8e\x3b\xd4\x8a\xb5\xc3\xc3\xca\x32\x96\xe1\x61\x65\xc6\x25\x78\x58\x7d\xc3\xa5\x78\x58\x99\xb5\x21\x1e\x16\xcb\x2b\x80\x59\x7f\x53\x6e\x3b\xc4\x1b\x04\x97\x6d\x2f\x97\xf5\x77\x0f\xcb\x10\x6f\x10\xf1\x06\x11\x6f\x10\xf1\x06\x11\x6f\x50\xca\x6b\x87\x78\x83\xe2\xf1\x06\x87\x80\x43\xc0\x21\xe0\x70\xdf\x4e\x39\x06\x1c\x02\x0e\x01\x87\x80\x43\xc0\x21\xe0\xb0\x39\x1c\x6e\x6c\xc1\x1f\xe0\x10\x70\xb8\xbd\x70\xb8\x83\xeb\xfd\x00\x87\x80\x43\xc0\x21\xe0\x10\x70\x08\x38\x5c\x13\x1c\xb6\x3c\xc6\x0e\xbb\x41\x00\x87\xfb\x00\x87\x38\xc6\x0e\x70\x08\x38\x04\x1c\x02\x0e\xa5\xe0\x70\xb8\x02\x38\xe4\x94\x21\x06\x87\x9c\x8c\x42\x70\xc8\xbb\xa1\x20\x1c\x72\xb2\xb6\x82\x43\x4e\x79\x52\x70\x58\xd9\x76\x52\x70\x38\xac\x82\xc3\x33\xc0\x21\xe0\x10\x70\x78\xb6\x7b\x70\x88\xad\x20\xd8\x0a\xb2\x9f\x5b\x41\x00\x87\xbb\x02\x87\x38\xa5\x64\x8f\x4f\x29\x19\x75\x7a\xbd\x76\x74\x38\x3e\x6c\x3a\xec\x77\x4e\xdb\xd0\x61\x9a\xbd\x19\x1d\x96\xf2\xaf\x80\xc9\xc6\x0d\xe9\x70\xb8\x72\x3a\x1c\xb7\xa0\xc3\x7e\xa7\x57\xde\x3a\x5e\x8d\x87\xb9\x0f\x41\x80\x0f\x2b\x34\xfb\xac\xd3\x6f\xc8\x88\x27\xcd\x18\x71\xd8\xe9\x49\x30\xe2\xb0\xac\x9c\xed\x19\xb1\x54\x05\x31\x46\x2c\x66\x6b\xce\x37\xd9\x92\x64\x18\xb1\x90\xaf\x41\xd3\xb5\x64\xc4\x42\x05\x1a\x30\x62\xda\xdf\x5a\x32\xe2\x30\x0f\x7d\x5b\xc1\x88\xd8\x2e\xbc\xfd\xdb\x85\x11\x4d\xa6\x3d\x23\x6e\x79\x34\x99\x51\xa7\xd7\x72\xd7\x32\x18\x11\x8c\xb8\x1f\x8c\x28\xb5\x6f\x19\x8c\x08\x46\x04\x23\x82\x11\xc1\x88\x60\xc4\xfd\x67\xc4\xc1\x86\x18\x71\x3f\x23\x0e\x82\x11\xf7\x86\x11\x07\x60\x44\x30\x22\x18\x11\x8c\x08\x46\x44\xd8\xc1\xad\x08\x3b\x38\xea\xf4\x5a\x86\x96\x11\xa7\xb3\xb1\x14\x9d\x8d\xa5\xe9\x6c\xdc\x86\xce\xc6\xa0\xb3\x43\xa7\x33\xa9\xe0\x32\xa0\x33\xd0\x19\xe8\x0c\x74\x06\x3a\x03\x9d\xad\x93\xce\x92\xa0\x16\xfd\x46\x74\x76\x76\xe8\x74\xd6\x6f\x89\x67\xfd\xb6\x7c\x56\x2c\x00\x80\x96\x00\x5a\xbf\x3c\xe7\x5e\x0b\x68\xe3\xa2\x45\xdf\x05\x40\x1b\xa7\x7b\x63\x04\x00\x6d\xdc\x29\xf9\x08\xdb\x03\x5a\xa9\x0a\x62\x80\x56\xcc\xd6\x1c\x2e\xb2\x25\xc9\x00\x5a\x21\x5f\x83\xa6\x6b\x09\x68\x85\x0a\xbc\x27\xa0\xa5\x55\xd9\x0f\x40\x3b\x2b\x07\xf3\xdc\x09\x40\xeb\x77\xfb\x83\x5e\xb7\xd7\x53\x4f\x5f\x46\x03\x5d\x7b\x21\x5d\xd0\x1a\x68\xad\x4c\x6b\x7d\xd0\x1a\x68\x0d\xb4\x06\x5a\x03\xad\x81\xd6\x40\x6b\xa0\xb5\xa6\xb4\xd6\x5f\x01\xad\x71\xca\x10\xa3\x35\x4e\x46\x21\x5a\xe3\xdd\x50\x90\xd6\x38\x59\x5b\xd1\x5a\xbf\x8a\xd6\x5a\xba\xd6\xc4\xb7\x2e\xec\x65\xd8\x64\x4c\x7c\x6e\x2d\xa9\x49\x4e\x7c\xee\x24\xa8\x61\xde\x13\xf3\x9e\xfb\x3a\xef\xd9\x26\x02\x0a\xe6\x3d\x11\x01\x05\x11\x50\x56\x14\x01\x25\x51\xc6\x21\x08\x11\x84\x08\x42\xf4\x86\x20\x44\x10\x22\x08\x11\x84\x08\x42\x04\x21\x82\x10\x47\x69\xe4\xd8\x75\xfb\x10\x11\xfe\x04\x84\xb8\xc5\x84\x78\x06\x1f\x22\x08\x11\x84\xb8\x3d\x84\x88\xbd\x13\xdb\x3f\xbf\x1b\xb2\xc5\x78\x05\x84\xc8\x29\x43\x8c\x10\x39\x19\x85\x08\x91\x77\x43\x41\x42\xe4\x64\x6d\x45\x88\x9c\xf2\xa4\x08\xb1\xb2\xed\xa4\x08\x71\x2c\x40\x88\x4d\x96\x04\x82\x10\x41\x88\x20\x44\x10\x22\x08\x11\x84\x08\x42\x3c\x44\x42\x44\x7c\xbc\xbd\x8e\x8f\x37\xce\x1c\x2f\x80\x3d\xbe\xd8\x35\xb2\x67\x94\x28\xb5\x6b\x24\xf7\x2d\x88\x63\x62\x56\xb3\xfb\xbd\xce\xb0\x21\x23\x9e\x36\x63\x44\x6c\x19\x39\xa8\x2d\x23\x15\x9d\x0d\xfb\x45\xb0\x5f\xa4\x4c\x8b\x83\x8d\xd2\x22\x76\xf7\xb6\xa3\xc5\xda\xdd\xbd\x79\x4e\xc3\xee\x5e\x70\x1a\x38\x0d\x9c\x06\x4e\x03\xa7\x81\xd3\xc0\x69\x0d\x38\x0d\xfb\x7a\xd7\xb2\xaf\x77\x9c\xf6\xe8\x75\xaf\xc9\x3b\x93\x9a\x71\x3d\x93\x9e\x71\x3d\x6b\x33\xe3\x7a\xd6\x1c\xd3\xba\x2d\x31\xad\xdb\x16\xd3\xba\xc0\xb4\x2a\x4c\x93\x99\x74\xcd\x7e\x0a\xbb\x42\x69\xa3\xcc\xd1\xf6\xcb\x29\x6d\x94\xde\x6f\x75\x94\x56\xaa\x82\x18\xa5\x15\xb3\x35\x87\x8c\x51\xfe\x78\xff\x46\x6d\xb7\x94\xd2\xb8\x4d\xd7\x92\xd2\x0a\x15\x78\x37\x4a\x4b\xeb\xb1\x1f\x94\x76\x52\x7e\x57\x3b\x43\x69\xdd\x41\xaf\xaf\xbe\x12\x6b\xa6\xea\xaf\x9a\x17\xa8\xc3\xce\xa8\xd3\x57\xfb\xa7\xea\x74\x3c\xd6\x4e\xc6\xdd\x93\xb3\xe1\x0e\xa1\x1b\x26\x64\x0f\x60\x42\x76\xbc\xa9\x33\x6d\x01\x90\x00\xc8\xed\x06\xc8\x71\x83\x33\x31\x00\x90\x00\x48\x00\x24\x00\x12\x00\x09\x80\x3c\x4c\x80\x3c\x01\x40\x02\x20\x01\x90\xf9\x4f\x01\x00\x09\x80\x04\x40\x02\x20\x01\x90\x00\x48\x00\x64\x3d\x40\x9e\x6e\xea\x4c\xde\xae\x0c\x40\x26\xa9\xc5\x57\x1a\x96\x61\x41\x62\xa5\x61\x17\x00\x09\x80\x3c\x05\x40\x02\x20\x01\x90\x00\x48\x00\xe4\x2a\x57\x1f\x62\x97\xc8\x9a\x76\x89\x9c\x6d\x0a\xdd\xf6\x75\x93\x08\xd0\x6d\x5f\xd0\xed\x0c\xe8\x06\x74\x03\xba\x01\xdd\x80\x6e\x40\xb7\x6d\x47\xb7\x53\xc1\x38\x2c\x05\x62\xeb\x76\x7a\x27\xc2\xd3\xb5\x52\xb3\xb5\xd2\x93\xb5\x6d\xe6\x6a\xab\x71\xad\x48\x69\xaa\x36\x33\xc6\xc3\xf3\x5e\xa7\x37\xec\x8c\xaa\x51\x8d\x4b\x68\xbc\xbc\xd5\x98\x56\xa0\xb3\x9a\xcc\x7c\x30\x5a\xc2\x43\x49\x79\xdd\x8e\x04\xd6\x9c\x8a\x6d\x7d\x8d\x7a\x49\x46\x5f\xce\x3a\xbd\x5a\x96\xc9\xe7\x88\x91\xa6\x5f\x90\xf5\xa2\x1a\x17\x44\xb8\x27\x13\xaf\xae\x94\x38\x4f\x1a\x59\xc0\xe8\x67\x1a\x89\x4b\x05\x35\xf5\x58\xc6\x02\xbd\xa5\x61\xda\xea\x1a\x53\x48\x62\x7b\x69\xd8\xae\xe5\x12\x9b\x26\xae\x95\x58\x66\xc4\xa3\x3e\x34\x48\x1a\x47\x46\x5f\xbb\x9d\x5e\xb7\xd3\x8f\x3b\xd3\x60\xa9\xb4\x8a\x2b\xea\x30\x67\xd9\xce\x32\x0a\x2b\x6e\xd8\x7a\x9d\x5e\x5f\xd4\xb0\x0d\x65\x0c\xdb\x50\xd6\xb0\x0d\x5b\x18\xb6\x61\x33\xc3\x76\xd2\xc2\xb0\x9d\xb4\x31\x6c\x27\xef\x66\xd8\xce\xca\x1c\x06\xbb\x06\xbb\xb6\xd5\x76\xed\xa4\x01\xb0\xc9\xd8\xb5\xbd\x03\xb6\x83\xb4\x6b\x27\xe0\x35\xd8\xb5\x5d\xb5\x6b\xd5\x81\xa6\x5a\xd8\xb5\xde\x40\xc6\xb0\x25\xa9\x85\x2d\x5b\x92\xa3\x89\x69\xcb\x65\x86\x6d\x83\x6d\x83\x6d\xdb\x88\x6d\x1b\xa7\xb6\x6d\xb9\x9b\x57\xc6\xb6\x2d\xf3\xaf\xe6\xdc\xaa\xd1\x53\xb0\xee\xd6\x63\x66\xf1\x3f\x98\x65\x3c\xfa\xfd\xd4\xff\x83\x78\xbe\xe9\xd8\xc4\x78\x24\x33\xd7\xd2\xc2\x2f\x83\x1a\xc7\x23\x4d\x37\x13\x3b\xf9\x34\xef\x76\x07\xe4\xff\xf6\x3a\xbd\x93\x4e\x57\xd5\x2c\xf7\x55\x53\xd8\x6f\x7a\xaf\xd3\xef\x76\x7a\xa3\xbc\x71\xa5\x79\xd5\xc5\x28\xd3\xa9\x92\x02\x8a\xa9\xd3\x62\x7a\xa9\x4b\xbc\x9b\x29\xa3\x9f\xf8\x83\xd3\x32\xb2\x49\xb3\x05\xf4\x86\xf9\x41\x79\x5d\x3d\x0a\xa9\xd3\x62\xfa\xe2\xf5\xe8\x73\xeb\xd1\xcf\xb8\xb3\x96\xd7\xa3\x90\x3a\x57\xcc\x98\x5f\x0c\xbf\x2a\xb9\xd4\xb9\x62\x4e\x2a\x8b\x49\x7a\x52\xae\xa0\x13\x6e\x41\x83\xca\x76\x49\x5c\x87\x69\x29\x03\x6e\xcb\x0c\x8a\x8b\x30\xeb\x1a\x66\x50\xf5\x82\x06\x99\x1e\x24\xf2\x44\x85\xf4\xb9\x82\xc6\xfc\x8e\x5b\xf5\x50\xb9\xf4\x55\x05\x0d\x0a\x05\x8d\x97\x14\x34\x48\x0b\x1a\x56\xb5\xf1\x49\x62\x10\xb3\xa5\x9c\x56\x3d\x56\xc5\x77\xc0\xeb\x38\x43\xee\x9b\x1a\x56\xbd\x29\x7e\x11\xbd\x41\x66\xd4\x98\x2d\x25\x7b\xa1\xd8\xc0\xe5\x76\x29\xa4\xcf\x15\x54\xd9\x89\x79\x4d\x33\xac\xea\xc4\x23\x5e\x03\x47\x53\x18\x9c\x52\xf8\x0d\x3c\x2c\x2e\x48\xa9\xef\x7f\xf9\xe4\x55\xad\x53\x2c\xa7\xdc\xfd\x46\xdc\x37\x55\x3a\x2f\x73\x59\x21\xe9\x4d\x0b\x2d\xc3\xff\x18\xaa\x1a\x67\x54\xf5\x31\x8c\xab\x9b\xb8\xcf\x29\xe5\x8c\xdb\x73\x4a\x67\x3c\xd5\x77\x9c\x7c\xf2\xdc\x43\x0d\x64\xfa\xcd\x98\xdb\xc4\xa5\xb5\xe3\xcb\x0a\x29\x46\xb5\xad\x6f\x83\x71\x45\x37\xab\x2f\xa7\x97\x8e\x6f\x42\xde\xe2\x88\x35\xd7\x0a\xf7\x8a\xdf\x40\x84\x6b\x8b\xcc\x30\x21\x2d\x82\xdb\xe9\x7a\xa3\xb2\xc4\x65\x4a\x29\xf5\xba\x62\xfa\x5c\x41\xfd\x9a\x82\x54\xd7\x33\x17\xa6\x45\xa6\xc4\xe0\x95\xd9\x5f\x5a\x66\xd4\x6e\xd9\x32\xd3\x31\x1d\xbf\xac\x6c\x07\xea\x8d\x63\xdc\x91\xa9\xd9\xb8\xc4\x48\xbd\x71\x36\x26\x64\xbe\xa8\x52\x6f\xce\x25\xce\x16\x71\x5a\xf5\xda\x4e\x38\x45\x9c\x72\x5e\xdb\x49\xf5\x9b\x3f\xa9\x7b\xa0\x13\x6e\x27\x38\x49\xab\xb9\xbc\x42\xd9\xc4\x69\x11\x67\x0d\x2b\x74\xc6\xad\x50\x36\xf0\x66\xfe\xbd\x0f\xd8\x4b\xe1\x14\x93\xcd\x90\x25\xda\xa2\x80\xe6\x0a\x2a\x5b\xd5\x7c\x06\x2e\xd3\x96\x0b\xe2\xd9\x8e\x7c\x06\x2e\x94\x96\x0b\x3a\xe3\x62\x65\x55\x41\x25\x25\x4d\x4b\xea\xf7\x38\x55\xaa\x04\xc2\xfc\x85\x42\x7b\xf7\xfb\x9c\x66\x2a\xe4\xe0\xb2\x65\xb9\x52\xfd\x74\x16\xa5\x6c\x3c\x07\x15\xcf\xc9\x81\xc4\x25\xcf\x29\x84\x89\xdc\xda\xd5\xf2\x5d\x41\xf2\x9b\x3e\xe7\xb0\xe2\x39\xcb\x2c\xb2\xe4\x31\x87\x9d\x1e\xbf\xa4\x51\x8b\xba\x55\x02\x4e\x7d\x91\x75\x88\x53\x03\x27\xc5\x92\x86\x4b\xf1\xa4\xc7\xc5\x93\x72\x9d\xc6\xe5\x33\xb8\xb8\x70\x50\xa3\xd3\xc5\x22\x47\x9c\x8f\xb3\x3e\x47\x5d\x25\x4e\xb9\x86\xaf\x38\x34\x4b\xcd\xe8\x69\x96\x12\x6c\xb6\x34\xb5\x29\x24\xd8\x9a\xd5\x9e\x11\xe2\x42\xda\x22\x42\x52\xce\xea\x08\x21\x29\xb2\x0d\x20\xf0\xea\x15\x2d\x6d\x1c\xf4\x06\xa5\xb1\x81\x18\x2a\xc4\x85\xf2\x48\x21\xfd\xc2\xb2\xbd\x9c\xa3\xf4\x71\x21\x27\xc2\x35\x13\x83\x90\xa4\x5c\x41\x06\x29\x54\xb9\xba\x72\x8d\x29\xa4\xba\x46\x7c\x08\x39\xe9\x94\x6d\x8b\x60\x85\xb8\x26\x86\x43\x35\xb2\x8d\x2f\xce\x37\xac\xe4\x15\xe0\x4d\x5a\x4e\x3b\xba\x89\xcb\x69\x0b\x37\x71\x39\xad\xd9\x26\x2a\x68\x05\x68\x13\x97\xd4\x9a\x6c\x32\x05\xad\x08\x6c\xea\x1e\x52\x8e\x6b\xea\x1e\x52\x0a\x6b\x84\x1e\x52\x86\x6a\xea\x9e\x51\x0a\x6a\x04\x6b\x26\xc1\x34\x75\x8d\x26\x85\x34\x71\x41\xad\x89\x26\x2e\x68\x75\x40\x13\x97\x28\xcc\x33\x22\x55\x10\xc5\x99\xc8\x7e\x66\x69\xc6\xf1\xc8\xd5\xed\x03\x87\x67\x38\x92\x7a\x92\x13\xe9\x68\x53\x10\x5f\x51\x97\xcc\x6f\xc4\xc6\x20\x53\x46\x49\x66\x8a\x19\x6a\x0d\x66\x5a\xd0\x69\x7a\xc4\x47\xf9\x55\x55\x99\xce\x5e\xb6\x9b\x16\xab\x76\xca\x9d\x3a\xa9\xcf\x20\xf9\xaa\xc6\x15\x2d\x9b\x79\x53\xe9\xec\x69\xf1\x4d\xf1\xb9\x31\x57\x64\x3c\x5d\xca\x67\xc6\xf2\xab\x66\x0d\xc5\xcd\x5d\x76\x1a\xf6\xca\xb9\x39\x26\x31\x29\xa3\xdb\xe9\x0d\xf9\xd3\x14\xa2\x46\xb1\x50\x54\x13\xb3\x58\x32\x3e\xcb\xaa\x27\x61\x19\x85\xab\x57\x65\xd2\xca\x86\x28\x5b\xe4\x19\xd7\xf5\x59\x93\x23\xb3\x7b\x68\x49\x2f\x2c\x0e\x56\x32\xef\x3d\xd3\x11\xbf\xcd\x5f\x96\x99\x0c\x9a\x39\x5a\x72\xc0\xef\x34\x02\x5f\x41\x26\x7f\xe6\xe6\xc5\xa9\xda\x9f\x65\x9b\x31\xe4\x5a\xf7\x7e\x59\xef\xa3\xb2\xa2\xc9\xdd\x45\xb7\xc3\xb3\xc9\x55\xd0\x56\xb8\x11\xa7\xbc\x5e\xba\x27\x31\x07\x38\x55\x14\x51\xf4\xb0\x73\xaa\xc7\xc3\x9b\xa5\xd9\xc6\x65\x11\xe4\x36\x3f\x87\x67\x4b\x4f\x94\x79\x13\x6c\x9a\xfd\x26\x99\xc7\x2f\x0f\x87\xb3\x1f\x4c\x3a\x37\xd7\x2b\xce\xcd\xb1\x72\xe2\xd9\x7a\xbe\x7d\xe2\xcc\xad\x85\x3f\x17\x8d\x4c\xb1\xac\x53\x4e\x51\xa9\xf8\x57\x77\x7c\x81\x3a\x71\x8c\x6e\xf8\x73\xf1\x7d\x2c\xaf\x53\xe5\xf8\x3a\x23\xf9\x15\x85\x55\x8d\xb2\x07\xdc\x87\x2c\x39\x00\x04\x9e\x33\x5f\x07\xfe\xf8\x53\xaa\x34\xae\xcd\xcb\x0e\x4a\xa5\x1e\xf5\x84\x6f\x43\xb3\x63\x4a\xf1\xda\xe5\x33\x65\x07\x8c\x25\x39\x13\xab\xdd\x59\x85\xa8\x15\x2e\x0c\xca\x25\x76\x3b\xc3\xb3\x32\x76\x14\xf3\x55\x15\x38\xe4\x56\xb1\x46\x8b\x8a\xf9\xab\x0a\x1e\x2d\x29\x98\x37\x04\xcf\xe5\xcf\x5a\x9b\xfa\x6f\xae\x5f\xde\xda\x99\xb5\xca\x7c\x03\x26\xd0\xc3\x39\xef\xa9\x98\xb1\xca\xca\xf7\x45\xdf\x53\x31\x5f\x2d\x04\xcb\xbc\xa7\x6a\x26\xce\x5f\xe0\xf4\xa8\xfa\xf7\x54\xcc\x5f\xbd\x9e\x48\xea\x3d\x55\xad\x30\xaa\xff\x9c\xba\x9d\xe1\x29\xd7\xef\x51\xf1\x96\xca\x8e\x0f\xc9\x4a\xf2\xc9\xb3\x97\x3a\xde\x64\xde\x7d\x3e\x5b\xdd\x18\x43\xea\xcd\xe7\xb3\xe7\x96\x6b\x2d\xed\xf4\x75\x2f\xbe\xda\x0b\x54\x5c\x8d\xc6\x29\x96\x53\x1a\x7f\x55\x5a\xbf\xe4\x89\xa8\xa9\x24\x6f\x59\x16\xdf\x8d\x50\x76\x0b\xd5\xbc\x79\x19\xe7\xd0\x52\x7b\x5f\x57\x5b\x89\xb1\x4c\xb1\xdc\x51\x9d\xa3\x61\x50\xd1\x51\x39\xc3\x2d\xa9\x66\xa8\x19\xdc\x94\x9c\x2b\x52\x15\x1e\x76\xf8\x1f\x2c\x67\x00\x26\x55\x61\x09\x1f\x4e\xb1\x5c\xce\xa9\x92\x8d\x3c\x39\xc5\x72\x39\x91\x08\x6a\x1d\x3b\x32\xf5\xaa\x72\xef\xe4\x08\x9b\xcf\x9a\x29\xae\x67\xa2\xaa\x94\x1d\x08\x69\xf5\xaa\x86\x63\x49\xfe\x4a\xb2\xab\x5a\x29\x21\x5c\x04\x77\x5a\x81\xe3\xec\x59\x52\xce\xb2\x1c\xfd\xcc\x92\x9f\x20\x5a\xad\xfb\x3b\x79\x4b\x07\x31\x99\xc5\x94\xe7\xca\xd1\x93\xad\xb9\x66\xb4\xbc\xf7\x5c\x59\xf4\x9e\xec\x6f\xa6\x6d\x9c\x2b\xb7\xda\x8c\xf8\xae\xa6\x93\x27\x7b\x46\x02\xcd\xd0\x02\xed\xfc\xc9\x56\x14\x5b\x9b\x91\x73\xa5\xb0\xd1\xdf\x7f\xf3\x03\x32\xa3\x97\x2d\xed\x85\x58\x3e\x4b\xa9\x14\x53\xe9\x8e\x3d\x31\xa7\xea\x22\xbe\xd9\xd3\xd1\xcf\x9f\x9d\x47\xe7\x1b\xb1\xff\xfe\xfb\xe9\x28\xcc\x62\x93\xe0\xbb\xe3\x7d\x53\x5d\x6b\x3e\x35\xed\xe2\x8d\x9e\x6c\x55\x55\x9f\xec\x9f\x3f\x55\xc5\x9c\x28\xe4\x4f\xa5\xf3\xd5\x27\x17\x2c\x86\xc3\x9d\x67\x3a\x9e\x19\xbc\x5d\x5a\x9a\xef\x2b\x4f\x47\x81\x37\x27\x4f\x47\x7f\xff\x9d\x7f\x3e\x5f\x7f\x25\xc6\xdc\x32\xed\x69\xe7\xdb\xa9\xdf\x31\x9d\xe3\x45\xef\x85\x04\x5a\xf2\xd8\xb9\x62\xaa\x1e\x5d\xb7\x4d\xd5\x8d\x12\x3e\xd9\x0b\xcd\x9a\x93\x73\xa5\xd7\x8d\xff\x9e\xec\xa9\xe5\xbc\x68\xd6\x55\xb8\x20\xfb\x5c\x99\x68\x96\x4f\x9e\x6c\x83\xf8\xba\x67\xba\x41\xf4\xf0\x8f\xaf\xa6\xaf\xc4\xc5\x28\x3a\xab\xb7\xe9\x2b\x73\x9f\x18\xca\xc4\xf1\x94\x8b\xcb\x1b\xf5\xf2\xf6\x46\xf1\x88\xef\xcc\x3d\x9d\xf8\xb4\x8d\x92\xe7\x27\xb6\xa1\xd0\xa7\x8b\xda\xc2\x26\x71\x5b\x5c\xd8\x6f\xdf\x5f\x89\x47\x2e\xef\xaf\x94\xa7\xa3\xf0\xd6\xa5\x76\xd0\x5c\x93\xfc\x08\x88\x4d\xff\xe5\x57\x34\xc5\xe5\xdc\x0f\x9c\xd9\x7d\x74\xf7\x2b\x32\x31\x6d\x93\xd6\x9d\xdb\x2a\xc4\x9d\xfa\x1d\x4d\x37\x3b\xda\xf7\x27\xdb\x77\x89\xce\xae\x4d\x3d\x67\xee\xb2\x26\x63\xbf\x87\x89\xe3\xde\x11\xde\xe5\xda\x9d\x86\xff\xb4\x4c\x3f\xf8\x3d\xfe\xe9\x93\xe9\x07\xe1\xcf\xae\x35\xf7\x34\x2b\xbc\x01\xfd\xc5\xd7\x1d\x97\x64\xba\xa7\x41\x7f\x5c\x64\xfb\x2f\x6b\xa2\xb5\x3e\x2c\x5b\x74\xaf\xe9\x41\xb3\x27\xbe\x8c\x72\x17\x1f\x3b\xfe\xbd\xfc\xec\xc9\xfd\xb6\xa5\x01\x5c\xc7\x30\x27\xcd\x9e\xfe\xce\x31\x6e\x7e\x2d\x3e\x3a\xfb\xb1\xfc\xdc\xe1\x6d\xb6\xe5\xa1\xa7\x2f\xae\xef\x07\x5a\x40\x9a\x3d\xf8\xc7\x5f\xee\x1e\x1e\x68\xf6\xe2\xc3\x27\x17\xca\x0d\x90\xde\x52\xac\x11\x14\xc5\x9f\xbf\x24\xf6\x22\xba\x3d\x2d\x60\xee\x9f\x2b\x3f\xff\xe6\x98\x8f\xb5\xb6\x98\x6f\x6b\x41\x68\x0a\x4d\x7b\xe2\x84\xcd\x46\x7f\xe3\x37\x5c\x78\x85\xd7\x74\x0f\xb6\x16\x7c\x64\xe5\xdc\xd8\x13\xa7\xd8\x7e\xf9\xab\xe5\x46\x2c\xd4\x22\x6a\x14\xd3\x9e\xce\x2d\xcd\x2b\x5e\xde\x96\xce\x46\x6b\xc5\x24\xbd\x7d\xcb\x7d\xa2\xc5\x54\x35\x5c\x72\x91\xdf\x6e\x69\x15\x78\xcd\x96\x5c\xdd\xa6\x56\x73\x1d\xcb\xd4\x4d\xd2\xae\xcd\xee\x68\x21\x6f\xbc\x06\x0b\xaf\xf0\x5b\x2b\xbe\x35\xaf\xad\xdc\xa4\xc4\xa8\xa1\x2e\xc3\x6d\x89\x02\x1f\xad\xa2\x2c\x34\xcb\x34\x34\x06\x0e\xe1\x65\xc7\x25\xf6\xc5\xdd\xcd\x1f\x83\x07\xfd\x95\xcc\xb4\xe8\x57\x45\x71\x3d\xc7\x25\x5e\x60\x26\xe5\x30\x0c\x4b\x9b\x3c\xfd\x51\x51\x72\x38\xf2\x0f\x5a\x5a\x98\x48\x31\x68\x23\x13\x5f\x09\x5e\x49\xfc\x02\x89\xc1\xd0\x69\xa6\x29\xce\x44\x09\x28\xb8\x78\xc4\xf5\x88\x4f\xec\x40\x0b\xdf\x86\x92\xf9\x73\x26\x8a\x66\x2b\xce\xcb\xbf\x89\x1e\x74\x94\x70\x32\xc3\x57\xfc\x57\x67\x6e\x19\x54\xcc\x16\xc4\x0b\x14\x8f\xe8\xce\xd4\x36\xff\x4a\x8a\xf6\x95\xc0\x61\xf7\x64\xfb\xcb\x82\x7c\x91\xa6\x1d\x10\xcf\xd6\x2c\x85\xd1\xd6\x07\x45\xb3\x0d\x65\xa6\xbd\x29\x1e\xa1\x37\x51\xe6\x76\xa6\x38\x96\xc4\xef\x28\x9f\x1d\x8f\x28\xb4\x7b\x9e\x2b\xaf\x41\xe0\xfa\xe7\xc7\xc7\x53\x33\x88\xfb\x99\xee\xcc\x66\x73\xdb\x0c\xde\x8e\x99\xbc\x9a\x2f\xf3\xc0\xf1\xfc\x63\x83\x2c\x88\x75\xac\xb9\x0c\x3b\x17\xc4\x0e\x58\xdf\x9c\x19\xff\x27\x79\x43\xff\xc8\xd6\x2c\x78\xa3\xef\xd2\x0f\x3c\xd3\x9e\xa6\xbf\xb3\x8e\x54\xdd\xd6\xb4\x37\x51\xd4\xd3\xa2\x8c\x61\x8d\xd3\x26\xa5\x3f\xd1\x86\xb8\xbf\x7e\x78\x4c\xf0\x8f\x35\x7b\xa1\x9d\x59\x0b\xa7\xf9\xfc\xb4\xb1\x69\xdb\x98\xf6\x84\x78\xe1\xdb\x9a\x78\xce\x8c\x15\x49\x6c\xc3\x75\x4c\x3b\x60\xff\xd0\x2d\x93\xd8\x85\x86\xf6\xe7\x2f\x33\x33\xa0\xef\xf7\xcf\x39\xf1\x03\xfa\x52\x3a\xca\xa5\x66\xdb\x4e\xa0\xbc\x10\x65\xee\x1a\x5a\x40\x8c\x8e\x72\x63\x2b\x97\xda\x8c\x58\x97\x9a\x4f\x56\xdd\xd4\xb4\x51\x7d\x95\x36\xa2\x48\x63\xe7\xec\x40\x3e\x69\xd8\x40\xe9\xef\x89\x21\x88\xff\xb8\xdf\x0b\x4b\x49\x2c\xa2\x07\x8e\x57\xf8\xb9\x26\x07\xfd\xcb\x8d\x7e\xf2\x7f\xfc\x0a\x09\x96\x4b\xff\x34\xc3\x30\xc3\xcd\xcb\x77\xcb\x92\x56\xb5\x54\xfc\x67\xc7\x36\xba\xa6\xa6\xfc\xbc\xd5\x4f\x41\x6d\xdc\x8d\x5b\x2a\x30\xcc\xa0\x79\x9e\xf6\x96\xbf\x64\x10\x5f\x22\x7d\xf1\xbe\x05\xea\x89\xfe\x19\xb6\x87\x1a\x89\x41\x78\x89\xbe\x4a\x6f\x41\x8c\x73\x85\x8d\x08\x23\xe3\xea\x78\xda\x94\xc4\x3f\xad\x5f\x97\xe8\x00\xbd\x9d\x90\xdf\x3a\x06\xe1\x69\x78\xfc\x7b\x59\x90\x92\x7b\x16\xd5\x28\xbe\x20\x8a\x94\xdb\xde\xb8\x9e\x11\x3a\x16\x9a\x37\xee\xbd\x71\xc9\x4a\x28\x36\x6e\xfc\x7b\xb9\x71\x93\x7b\x16\x1b\x37\xbe\xb0\x2d\x44\xf4\xa7\xe3\xe7\x80\xe8\x4f\xda\x1f\x78\xad\xf3\x67\xd8\x51\x0a\xef\xbe\xdc\x56\xff\xcf\xf1\xf9\x70\x94\x5c\x28\xb7\x56\xa6\x12\xc5\xf6\x8a\x2f\xbd\x55\x37\xd8\x3a\xd8\x47\x50\xb6\xf9\xc9\xc4\x55\xc4\x75\x8c\x87\x2a\x21\xc9\x23\x41\x98\x8c\xd2\x97\x33\xa1\xc3\xe1\xbc\xf0\xd5\xde\x84\xfe\xcd\xb4\x40\x7f\xfd\xd4\x5c\x7d\xb2\x95\x29\x82\x17\x73\xb7\xca\xe9\x60\xf8\xb6\xed\xe9\xb3\xa7\x05\x75\x22\x43\xa9\x6e\x1a\x32\x70\xe9\x89\x4c\xdb\x9c\xcd\x67\xe7\x4a\xb7\xa6\xf8\x97\xb9\xe7\x07\xab\x2d\x9f\x1c\xd6\xe3\x1a\xbe\xee\xce\x34\xef\x9b\xdc\x03\xd3\x5c\xcf\x34\x9b\x69\x4f\x57\xff\xbc\xb4\x3b\xff\x08\xaf\x8e\xc6\x79\x97\xaf\x4d\x94\xce\x8d\xed\x07\x9a\x65\xdd\xf8\x81\xe9\x6c\xd0\xc3\xa9\xe9\xa6\x49\x6f\x49\x9b\x45\xa3\xfc\xca\xec\x29\xfb\x89\x6f\x51\xa3\x4b\x3c\x23\x7a\xa1\x9b\xac\xfa\x5f\xa2\xb2\x8a\xb6\xb4\x78\xbd\x6c\x52\x4b\xb5\x29\x1a\xd6\x62\x02\x09\x41\x8a\xfc\x43\xc5\x16\x4d\xe7\x06\x42\x55\xfc\xac\xb9\x22\x73\x03\xa9\x1e\xa6\xd8\xf9\x7e\xf3\x07\x49\x5d\x33\x81\x53\xc2\x72\xcf\x95\xff\x55\xc3\x32\x7e\xa6\x5d\xf2\xe9\xc8\x72\xa6\xaa\x45\x07\x2a\x4f\x47\xd1\x1d\xd3\x08\xc8\x9f\x9c\xe9\x27\x7a\x89\xde\xfe\x43\x36\x93\xe6\x9a\x3a\x8b\xf9\xec\xd3\x5c\x3f\x7f\x76\x2e\x5c\x53\xff\x8d\xfe\xfb\xef\xbf\xcb\x09\x3d\x32\xf1\x88\xff\x1a\x98\x33\x92\xdc\x84\x66\xb8\x0f\x7f\x7f\x34\x67\x84\x7f\x87\xb9\x4f\xc7\xc4\x85\x5c\x5f\x7d\xe2\xd1\x37\xcc\xcf\xe2\x7a\xe6\x42\x0b\x88\xfa\x8d\xbc\xa9\xae\x16\xbc\x86\x59\x8f\xe7\xbe\x77\xcc\xbc\x39\xc7\x24\xd0\xc3\x30\xce\xc4\x0b\x8e\xe9\x0d\x3a\xdf\xc8\x5b\xc5\xcd\x55\xd3\xf6\x03\x35\xd0\xa6\xb4\x14\x8a\x7b\xf9\x54\xba\xa9\xba\x1e\x99\x98\x3f\x92\xfa\x3d\xb0\xf7\x7c\x63\xd0\xb1\xde\xc4\x24\x5e\xb9\x8e\xba\xa9\x2e\x66\x33\x95\xda\x8f\x30\xd7\xef\x49\x2c\x26\x96\x34\x63\x07\xfe\x98\xcd\xae\x9c\x99\x66\xda\xca\xd3\x51\xf8\xfd\x97\xcb\x31\x58\x82\xe4\xfe\x49\x96\xe8\xc6\xac\xa7\x5b\x3e\x11\xca\x5c\x51\xf9\xcc\xd7\x92\xaf\x5c\xda\x4f\x6a\x2a\x98\x76\xc3\x6c\x25\xd3\xac\x42\x15\xe5\x14\xb2\xbc\xb2\x85\x17\xc5\x20\x4c\x0d\x88\xad\xd9\x41\x52\xca\x23\xfb\x67\xe9\x2d\x79\xe4\xcf\xb9\xe9\x11\xd5\x26\x81\xeb\x58\x2a\x73\x0e\xd0\x3c\xcc\x14\xe7\x5f\xd2\x25\xed\x92\x79\x2b\x9d\xf9\xb6\x5e\x32\x2f\xfa\xd6\xb1\x49\x75\x1d\xcd\xd0\xe8\xab\xa1\x51\x0d\x3f\xaa\xac\x10\x14\xbe\x2b\x96\x4c\x75\x3d\x67\x62\x5a\xe9\xe7\xc1\x52\xde\x85\x3f\x66\x1a\xa4\x50\xd5\x74\xe6\xb0\xd8\x44\xc6\x8b\xa1\x1a\x51\x87\x98\xdb\xe6\x71\x60\xab\x99\x46\x3a\xfe\xe5\x4a\x2d\x58\x2c\xee\x8b\xa0\x05\xa9\x2f\x06\xa7\xe7\xd3\x91\xd9\x6a\x6e\xc1\x8e\x0f\x89\xee\x51\xf9\xce\xfd\x30\x30\x9c\xea\xbe\xbe\xf9\xb4\xb3\xd7\x74\x1e\xd5\x65\xd7\x4b\x35\x8e\x8b\x20\xb6\xae\xb9\x61\xfe\x85\xa5\xb1\x3a\x47\x61\xe7\xfe\xb0\x34\x9b\xfb\x99\xc7\x59\x67\x8e\x6d\x06\x8e\xa7\x32\x0f\xdf\x42\xb3\xa2\x97\x1b\x65\xff\x1c\x5e\xbd\x89\x2e\x16\xcd\x27\x7d\x2d\x2f\x9e\x1a\x78\x9a\x4e\x59\x44\xb5\x1d\x5b\x65\xe3\xbc\xb0\x90\xbb\x5f\xee\x1f\xa3\x4b\xb7\x8e\xfd\x60\x6b\x01\xa7\x80\x85\x37\x29\xf6\xfb\x3f\xee\x7f\xad\xe8\xfa\x34\x83\x35\x70\xe6\x69\xda\x4f\x83\x2f\x73\x7e\x3a\xf2\x23\x50\x23\x3d\x8a\x75\x80\x25\xbe\xfe\x11\xfa\x32\x6f\xa3\x6b\xac\x4e\x12\x1d\x71\xe1\x4d\xb2\x35\xcd\x18\xfb\x1a\x33\x91\xc9\xf3\x65\x41\x3c\x4b\x7b\xe3\x64\x2d\xf6\x92\x28\xa4\x98\x1a\x7b\x0d\x55\x86\x37\xec\x59\xf2\xd8\xf6\x74\x14\x19\x90\x70\xc9\x00\xd7\x7e\x08\x3d\x61\x58\x58\x2a\x6a\x22\xbd\xfd\x7f\x0b\x89\xa2\x5a\x53\x24\xe0\x35\x48\x93\x5b\x24\x65\xe5\x5b\x28\xdf\x99\x66\xda\x0f\xf6\xe1\xf9\xaa\xbf\xd0\xd5\xa9\xa7\xb9\xaf\xd1\x6b\xff\xac\xfd\xb8\xa5\x17\x1e\x16\xfa\x47\xfa\x73\xa1\x17\x26\x60\xa4\x4a\x34\x38\x1f\xa1\xca\x29\x57\xfe\x7a\x56\xf1\x8a\xe2\xda\x56\xbf\xa1\x25\x77\x29\x14\x90\x7f\x2d\xc5\x57\xa3\x64\x34\x21\xe1\xe1\x1d\x69\xa9\x48\xf0\x1a\x37\x54\x3e\xbf\x78\x3b\xed\x56\x7f\xda\x7c\x2b\xb1\x38\xa8\xbb\xd5\x48\xef\xf1\xd1\xe9\x5a\x10\x58\x68\x28\xe1\x86\x72\x3d\x67\x46\x82\x57\x32\xf7\xd1\x58\x4b\x1b\xcb\x72\xa6\x53\xd3\x9e\xa2\xa5\x92\x96\xe2\x35\xd9\xd3\x51\x8c\xda\xa6\xab\xba\x8e\xc3\x08\xfb\x7f\xf2\x19\xb9\xcd\x47\x6c\x23\x1d\x12\x84\x45\xdc\xdc\x5d\xb3\xbb\x1e\x7d\xe0\x65\xf0\x03\xcd\x0b\xca\x59\x1e\xe8\xcf\xa9\x8b\x26\xa9\x63\xfa\xcf\x7f\xe5\xab\x6b\x6b\x81\x1a\xaf\x79\x53\x99\xd3\x2a\x2d\xd4\xd6\x82\x78\xa1\xdc\x03\xbd\x52\x22\x6f\x3f\xd0\x02\x53\x57\x57\xf1\xcc\xac\xa4\x26\x4f\x9e\xcf\x28\xfb\xfc\x74\x7c\xd8\xa2\xda\x77\x8e\x21\x53\x59\x96\xbc\x49\x15\xfd\xf9\x8b\x4d\x02\x55\x7f\x9d\xdb\xdf\x54\xdf\xfc\x8b\xc4\x83\x2e\xc7\x78\x60\x97\x2e\xe9\x95\x07\xf3\x2f\x52\xc4\x5d\x3a\x38\x5d\xc1\xfb\xa1\x48\xdd\xe0\xed\xe4\xb2\xc9\x3e\x78\xae\xee\x61\x0b\xf8\x9c\xba\x67\x3f\x00\x46\xfc\x61\x8b\xe4\x6f\x94\x2f\x99\xd8\xda\x8b\x45\x9e\x63\xf2\xf7\x2d\x53\x8f\x5b\xf4\x9a\x5d\xba\x8e\xae\x3c\xd0\x2b\xf1\x97\xcf\xfe\xe7\xd5\xf1\x03\x55\x9b\x12\x3b\xa8\xf7\x65\x6a\xae\x9b\xf7\x89\x88\x0d\x7d\xf2\x76\xf2\xda\xbd\x27\x53\xd3\x0f\xbc\x37\x8e\x5b\x8b\xb8\xaa\x17\x5d\x4d\xda\x3b\xcd\x50\x3b\x4a\x2d\x64\xb5\xe7\x96\x55\xe9\x5d\x0b\x0f\xcc\xfb\xec\x18\x84\x53\x87\xf0\xf0\x3b\x75\xe6\x18\xa9\xd9\x48\x33\xd4\xd6\xa1\x90\xb5\x5c\x87\x34\x69\xd9\x2f\xfc\x9b\xe3\x07\x17\xf4\x25\x54\xbb\x85\x75\x93\x79\x27\xd4\x64\xc0\x97\xb3\x6b\x89\x5f\x1e\x6e\xd1\xad\x71\x8b\x0a\xf9\xaf\xb7\xd2\x77\x23\xed\xda\x8a\xad\xda\xc2\xd2\xec\xbc\x13\x2e\xf4\xe1\xe5\x12\xd3\xe1\x8f\xe6\x9a\xd9\xc4\xb4\x4b\x5e\xdc\xdd\x70\x12\xa7\x6a\x91\x4e\xa2\x84\xab\x1f\x2f\x6f\xae\xee\x4b\x15\x09\x6d\x6c\x3e\x3d\x33\xda\x89\x0d\x2d\x18\x4e\x5d\x73\x33\x9f\x06\x33\x98\xba\xe6\x3e\xbe\x71\xe8\x80\xb6\x8a\x69\x4f\x3c\x2d\x5b\x73\x16\xde\x3f\xa9\x77\xf4\x36\x3b\x9f\x1f\xbf\x16\x7a\xef\xe7\xc7\xaf\x4a\xb7\xe8\x97\x0e\x88\x37\xd1\x74\xa2\xce\x82\x79\xec\xed\xa1\x19\xcb\x9f\x40\xe9\x0d\xe9\xb6\xa9\xda\x24\x88\x26\xc8\x04\x05\x70\xaa\x05\xe4\xbb\xf6\x96\x95\xef\x8f\xe1\x4f\x95\xf2\xe7\x39\x73\x66\x27\x4a\x37\xa8\xb9\x51\x9a\xdb\xf0\xa3\xb7\xd0\xed\xb0\xff\x3b\xee\x72\x6f\x93\xa9\xe1\xf7\x8a\xca\xf1\x33\x71\x10\xf8\x5f\x7c\x15\xaf\xed\x41\x82\xfa\x7d\x88\x1e\xcd\x62\xee\x3a\x1f\x26\x5c\x91\x70\x45\x6e\x8f\x93\x0d\xae\x48\xb8\x22\xe1\x8a\x84\x2b\x72\xfb\x1b\x0b\xae\x48\x31\x57\x64\xe8\xe5\x50\x0d\xcf\x71\x69\x9b\x45\xc4\x7c\xe5\x39\xee\x27\x67\x1a\xfa\x39\xfe\xe6\xe5\x68\xe4\x17\x89\x86\xf3\x02\x9e\x91\xb8\x2a\xc5\xb7\x9b\x1f\xe1\x87\x5e\x84\xd2\x18\xbf\x8a\xa5\xc2\xdb\x47\xe5\x66\xf6\xac\x47\xc7\xfd\xb3\xcd\x37\x0f\x0f\x9f\xf8\xab\x63\x18\xf1\xfa\xe1\x6a\x08\xe5\xe9\x28\xf5\x66\x18\xa6\x4f\x9f\xda\x78\x3a\xe2\x8f\x2b\xd2\x06\xc8\xdc\xf2\x7e\x6e\x7f\x7c\x71\x93\x13\xcc\x0a\x7d\x6b\xfa\xe2\xc6\x67\x80\x15\x5a\xe9\x67\x69\x40\x2c\xb3\x4e\x48\x78\xf0\xba\x0b\xae\x8b\xba\x91\x3d\x67\x80\xfb\xf1\xc5\x4d\x1c\xa1\x99\xf5\x03\xa5\xaa\x09\x64\x2d\xad\xbd\xe3\x43\xb8\xd8\x9a\xc3\x4c\xe2\xec\xf2\xc1\xd2\xe2\x41\x7e\x96\x15\x2c\x1f\x0c\x4b\xfb\xa6\x4d\xbe\x69\x95\xd6\xf2\xc5\x73\xbe\x11\x2f\x7e\x90\xdf\x69\xda\x5f\xc2\x9f\x4a\x15\x0b\x33\x84\x3b\xd9\x8a\xd5\xa2\x95\xf0\x8f\xd9\xad\xd4\x30\x05\xb7\x36\xb9\x22\x68\x9e\x25\x65\xe8\x5e\x50\x55\x86\x56\x91\x5f\xd7\x6a\x72\x05\x4e\xfc\x4e\xb9\x5d\x72\x99\x00\x59\xce\xdc\x50\xd9\x86\x9e\xaa\xe6\x8c\x4f\xc0\xcc\xbc\xec\xf2\x7d\x96\x8c\xb9\x69\x1e\xf6\x8f\xf0\x73\xe3\x76\x92\x30\x4f\xf4\xc5\x87\xbe\xa6\x6c\xea\xca\x21\x7a\xc9\x90\xe5\x7f\x28\xed\x92\x11\x5d\x89\xcc\x7c\xad\xf1\x28\x6b\x5b\x17\x22\x73\xa6\x8f\xd8\x36\x63\x2f\xb8\xd7\xec\x29\x29\x4c\x50\x14\x66\xa8\xb2\x29\xa3\x19\x90\x38\x9d\xeb\x78\x81\xaf\xba\xf4\xb5\x67\x3d\xe1\x71\x16\xff\x8e\x78\xb7\x91\x3f\xbc\xb6\x89\x1f\x88\xee\x91\xa0\x72\xa5\x37\xfd\xc6\x59\xa7\xdf\x44\xc3\x26\xf7\x8f\x2d\x4b\xce\x70\xfd\x4e\xde\xc2\xfe\xc3\xae\xea\x5e\x90\xbb\x7a\xc9\x9a\xb1\x14\x40\xa6\x6c\xd6\xa5\x9b\x21\x6b\x1c\x58\x53\x98\x13\x53\x8f\x83\x36\x6c\xac\x49\x42\x13\x93\x1a\xcc\x90\x2f\xa2\xa7\x56\x94\xa2\x05\x13\x4b\x18\x37\x71\x26\x61\xd4\xca\x62\x3b\x05\x22\x07\xf2\x85\xae\x3b\x73\xbb\xba\x13\xe5\x9f\x37\x76\xda\x6f\xa0\xf5\x6a\xfb\xbd\x6c\xd5\xd3\x69\xb8\x77\xa9\xba\xf7\xa2\xe9\x1d\x6d\x1e\xbc\x3a\x9e\xf9\x17\xdb\x30\x97\x6e\x7b\x49\xec\x65\xa8\x04\xf7\x8e\x55\x8c\xeb\xb4\x6e\x7b\xc7\x6f\xb3\xf3\xec\xeb\xf6\xe6\x16\xdb\x27\xa3\x2a\x9a\x6b\x7e\xf4\x9c\xb9\x1b\xef\x39\xa5\x38\x48\xff\x2b\x1f\x25\x41\x65\x5b\x59\xfd\xa7\x64\x5b\x2a\x6b\xee\xe8\xdf\xae\x63\x44\xff\x95\x8c\x1c\xc2\x7f\x46\xd3\x1c\xf1\xc5\x05\x49\xae\x78\xc4\xb5\xe8\x87\x6b\x3a\x76\x5a\x2d\x5f\x70\xef\x51\xa6\x68\x2d\xec\x32\x7e\x41\xd5\x16\xc4\x7b\x89\x2b\x6e\x45\x1b\x7a\x54\xe5\xbb\x16\xe8\xaf\xe1\x7f\x4e\x49\xf4\x9b\x9b\xfe\xa6\x7b\x24\x0a\x19\xa3\x2a\x06\xb1\x08\xfd\x6f\xf1\xf6\x09\x5f\xdc\x4c\x73\x7d\xb9\x0a\x64\xef\x1a\xee\xf8\xcf\xd7\x40\xa8\x45\x78\xd5\xac\xec\xa3\x15\xf5\x0f\xbb\xab\xe7\x58\xf1\xfb\xca\xfc\xf2\x62\xda\x86\x69\x4f\x4b\x8f\xf6\x8f\xff\xfc\x07\xff\xe6\xbc\x2d\x61\x15\xf7\x65\x1b\xc3\xe2\x5f\x8d\x64\x63\x98\xf8\xbd\xa2\xfd\x0a\xe1\x26\xb0\xca\xfb\xb0\xab\x51\x5f\x73\x2d\xcd\x8e\x9f\xb2\xbc\xb5\x4b\xec\x01\x93\x5d\x67\xdc\xbb\x71\xf7\x8c\x95\x7f\xe6\xde\x2e\x8b\x63\x9c\x3b\x47\x5f\x7f\x1a\x57\xad\xe2\x7b\x0d\x93\x65\x37\x03\x8b\x75\x4a\xf1\x28\x67\x55\xed\xa2\x7d\xe7\x57\x29\x8e\x2b\xa6\xe6\xa3\x6c\x89\x55\x4b\xf6\x66\x69\x40\x2b\xb5\x10\xdb\x29\xfb\xef\xe3\x30\xf8\x4b\x93\xf7\xa0\xb9\xae\xcf\xbf\xb5\x41\x5c\xcb\x79\x9b\x95\xac\x9d\x4f\xe2\x1f\x0c\x8d\xcc\x1c\x3b\xfd\x37\xab\xcc\x64\x6e\xc5\xbf\x08\x75\xc1\xa5\x76\x3a\x36\xbf\x15\x0f\x19\x5b\x1b\x5e\xd9\xd1\x4e\x11\xda\xc9\xc2\xb3\xe0\x3b\xba\x33\xe3\xdf\x30\xba\x4b\x94\xa3\x74\x97\x92\xa1\xab\x7a\x91\xe1\x5e\x12\xee\x1d\x32\xf1\x7e\x8e\x27\xa6\xad\x59\xe6\x5f\x24\xfe\xa4\x72\x17\xd3\x07\x55\xf3\x41\x19\x78\xcf\x5d\xb4\xbe\xf5\x76\xba\x4e\x11\x96\x57\xbf\x10\x14\x4b\x2d\xc5\x30\x2a\xd4\x57\xcd\x87\x3d\x58\x9d\x9c\x54\x55\xff\x4f\xa7\xa2\x33\x17\x02\x0a\xac\xae\x26\x19\xf5\x2d\x57\x8a\x7e\x5c\x1d\xc7\x25\xb6\xff\x6a\x4e\x82\x4e\xb8\xb9\xb7\xfa\x3b\x93\x6e\xaa\xf2\x1d\x0d\xd3\xd7\x9d\x05\xf1\xde\x62\xab\xca\x33\x60\x59\xc7\x68\x75\x4f\x2f\xdd\x76\x3f\xf8\x31\xcb\xdc\xef\xc1\x8f\x55\xcc\xd8\x40\xd8\x72\x4e\xf0\x32\x5c\xd6\x59\xc6\x0a\x69\x4b\xd8\x36\x5b\x97\xec\x27\x10\x75\x75\xbe\xc3\x73\xc5\x42\x9b\xd5\xbe\xf0\xbf\x2b\x24\xe0\xe9\xe8\x3f\x0b\xf3\x0a\xef\x41\x1c\xab\x55\xd7\x76\x38\x21\xa6\x42\x35\x86\xbd\x81\xdd\xde\x11\x9b\xbc\xac\x81\x0a\x02\x56\x8e\x69\x58\xf5\x69\x64\x6b\xb2\x2f\x26\xfb\x97\x70\xc4\x24\xe0\xcb\x38\xcf\xbb\x61\xda\x18\x77\x3a\x54\xbb\x27\x13\x96\x39\x6e\xac\x9a\x9a\xd3\x64\x1c\xad\x11\xa8\xa6\x3f\x67\xe1\x6d\x42\x05\xe0\xfb\x70\x56\xe4\x73\xda\xe0\x7b\xc8\xfb\x94\xb6\xf6\x3d\x64\xab\xd9\xfc\x3d\xc8\x3a\xd0\x38\xe1\xb3\x5c\x3f\xd3\xe4\x57\x6c\x44\xf3\x50\xe3\xbd\x2e\xdc\x5c\xec\xb6\xeb\x87\x9d\x24\x9c\x4c\x68\x85\x1e\x02\x4f\x0b\xc8\xf4\x2d\xba\x61\x18\x5c\xe7\xde\xb1\x2c\xd3\x9e\x7e\x4d\xec\x54\x21\x64\x21\x2f\x24\x54\xed\x83\x8b\x51\x58\x1c\x52\x3e\xbe\x4b\x31\xf8\x62\x29\x04\xe2\xd2\x7b\x8a\xdc\x95\xb5\xb3\x6d\x3b\x61\xb4\xd1\x6c\xf1\x51\x44\x77\xe2\x75\x58\x20\xfe\xce\xb7\x64\x61\x3c\x8b\x3c\xe9\x99\x81\xa9\x6b\x96\xea\x3a\xc6\xb9\xf2\x8f\x4c\x50\xad\x74\x75\x0b\x4d\xe7\xeb\x9e\x46\x1b\x35\x9e\x07\xa8\x4a\xe7\x3a\x5e\x40\x53\x9d\x8d\x7b\xfd\x38\x55\x2e\x1c\x18\x7d\xb0\x68\x5f\x7f\x36\x28\x5e\x78\xe1\xee\xe6\xaa\xfc\xe3\xcd\xdd\x65\xfe\x47\x3f\xf7\xb1\xdc\x2e\xfb\x50\xb2\xbe\xb8\x99\x36\x25\x77\x73\xcb\x0a\x27\x2b\x0a\xb3\xe8\x66\xfe\x6a\xb6\x11\xe3\xa8\x7e\x3f\x7f\x16\xcb\xe0\x2e\x5e\x0e\x1c\x8b\x78\xa5\x37\xa1\x2a\xb1\x07\xe9\x5c\xb9\xfe\x61\xfa\x41\xf2\xe6\x4c\xdb\x0c\x2e\x53\x63\x51\xbe\xaf\x6e\x9b\x21\x41\x3d\x65\xa6\x08\x59\x7d\xc3\x29\x1c\x16\xe1\xff\x8a\xa5\x48\xca\xc9\xcf\x27\x26\x0f\x17\xc6\xa0\xcb\x3f\x4a\xf8\x5b\x3e\x83\x4f\xf4\x39\x0b\xf4\xef\xd8\x01\xf9\x11\x9c\x17\x4f\x15\xb8\x4b\x4e\x60\xae\x5a\x35\x91\xfe\xa5\xa7\x35\xc7\x6f\xb2\x62\x51\x8c\xae\xb9\xda\x8b\x69\x99\xdc\xb0\x5a\x9a\x61\x70\x62\x69\xa9\xca\xc3\x7f\x3f\x3c\x5f\x5c\x7d\xbe\xb9\xcd\x5e\x5c\x38\xd6\x7c\x46\x3e\x33\x3f\x73\x21\x57\xa6\x51\xd5\x17\xd3\x2e\x16\x39\xa3\x79\xee\xb4\xe0\xf5\x5c\x39\x9e\xd9\xc1\x71\x92\x2c\xd3\x91\x6e\x9d\xea\xe3\x14\x92\x47\x4e\xaf\x87\x7d\x34\x34\x8f\x6a\x3c\xd9\x1c\x7f\x7a\xbc\xe1\x85\xe0\xc9\x0d\x95\xb7\x2a\x9d\xc1\x50\x6a\x6f\xbd\xae\xbb\xd5\x1a\xa3\x42\xc7\xfb\xcd\xf1\x03\xf4\xb9\xdc\xc5\xdb\xeb\xc7\xea\x8b\x34\xe7\xdd\xe3\xfd\xc5\xe5\x75\xf6\x2a\xb1\x17\x15\xbd\xf4\xf7\xaf\xbf\x5c\xdf\xdf\x5e\x3f\x5e\x3f\x3c\xdf\x7e\xb9\xba\x7e\xbe\xbd\xf8\x7c\x5d\x2c\x97\x85\x47\xfe\xd5\x73\x66\x9c\xba\x4e\x4c\x62\x19\x31\xd7\x70\x2f\x86\x7d\x9d\x5a\xe9\x0e\x1d\x0d\xd0\x1e\xc4\xaf\xca\xe3\xf5\xed\xc5\xed\x23\xf7\xe6\xa5\x75\x4e\x12\xab\xab\xca\x37\x62\x0f\x7a\x7d\xf7\xb1\xe2\x56\x85\xee\x19\x3a\x29\x8e\xf8\x45\x7d\xb9\xfb\xf5\xd3\xf5\x7f\x3d\x7f\xfe\x72\xc5\x6f\xb5\x73\xc5\x09\x17\x5d\x55\xaf\xf4\x13\xac\x55\xb3\x85\x86\x49\xe5\xb9\xbd\x73\x0d\x56\xac\xaa\x0c\x8a\x65\x22\x85\x94\xd3\xc5\xa5\x50\x33\xb1\xd0\x4a\xd1\x0c\xb3\x85\xa4\xeb\xa0\x4a\x09\xb3\xa5\x78\xf3\xda\xe7\x29\x5d\x96\xc8\x9b\xd6\xa0\xb2\x94\x68\x55\x24\x2d\x2c\x66\x55\xf6\x1a\xc4\x8a\x25\x81\x7e\x9c\x5b\x57\xe9\x2c\xfc\xe3\x17\xcd\x27\xac\xe5\x3a\x46\x75\xcd\xd5\x86\x77\xcb\xf7\xa8\xe3\xa2\xd1\xfc\x2d\x24\x2e\xdb\xff\x83\x95\x5b\xf3\xf1\x15\xda\xf8\xd8\xa6\xb9\x8a\xf5\xc8\xd4\xd7\x9b\xdb\x2a\x37\x8d\x47\x34\xe3\x8b\x6d\xbd\xe5\xb9\x2d\xff\x24\x9e\xe3\x6a\xd3\x30\x6c\xad\x42\xab\xf8\xe8\x24\xf6\xa1\xe2\x63\xb0\xcc\x05\xb1\x89\xef\xdf\x79\xce\x4b\x31\x8a\xe8\x6b\x10\xb8\x1f\x49\x39\xf6\xa7\x1b\x3e\x4d\xea\x48\xcb\x5d\x64\xb0\x7a\xda\x3d\xeb\x96\x25\x30\xfb\x0a\xc5\x0c\xf5\xfd\xf5\x2f\x5f\xbe\x3c\x3e\xff\xf3\xe6\xf1\xb7\xe7\x2f\x7f\x3c\x54\x5a\x89\x18\xa0\x5b\xd8\xc7\x87\x87\x4f\x75\x16\x2d\x59\x01\xcb\x6f\xc7\x9c\x7c\x47\x6b\x6d\x0f\x4e\xc0\xb9\x1a\x2d\x60\x6e\x61\xe4\x9a\x1b\xb9\x28\xc7\xaa\xee\x17\xdf\x2a\xff\x21\x85\x1d\x3a\x3c\xe6\xa1\xbe\x93\x15\xaa\x15\x2e\xf0\x5e\xf2\xa1\x14\xca\x5d\xf9\xe7\x92\x6d\x8a\xd5\xf5\x6b\xb6\xd4\xb1\xd4\xa1\x13\xcd\xb8\x73\xa2\xe5\x6e\xd9\x67\xa4\x3f\xe6\x6b\x1b\x10\x6f\x66\xda\xcc\x64\x7f\x26\xbe\x4f\x9f\x2b\x7c\x4f\x06\x59\x1c\x67\x2e\xb2\x7d\x0b\xf5\xf9\xa2\xf6\xf9\xd5\xb4\x88\xe4\xf7\x97\x7b\x59\x2d\xbb\x52\xf9\x8d\xb7\xf9\xce\x39\xd6\x29\x2e\x6c\xa6\x6b\x7e\xa0\x86\xeb\x07\x2a\x3b\xd8\x67\x9a\xa8\xa2\x67\xe9\xce\x6c\xa6\xd9\xc6\xb9\xf2\x3f\x4f\x47\xc7\x2f\xa6\x7d\xec\xbf\x3e\x1d\xfd\x2b\x9b\x42\xf3\xa6\x7e\x78\x39\xad\x16\x4d\x68\x69\x73\x5b\x7f\x55\x59\x0d\xc2\x0a\x74\x4a\x79\x05\xfb\x6d\x53\x53\x5e\xdf\xcb\x05\xcd\xfc\x5e\x9b\x66\x8f\xb0\x05\xce\x71\xf3\x5f\x58\xdf\xb5\xb7\x84\x56\xc2\x27\xaf\xf0\x0a\x15\x99\x9e\x79\xd1\xe8\x9d\x0a\x8d\x1c\xde\xdc\x71\x03\x7e\x29\x45\xa8\xaf\x2f\x86\x04\x7a\xb9\x18\x4e\xeb\xd7\x97\x92\x4b\x5c\xd3\x82\xf5\xa5\xe4\x12\x8b\xd1\xb4\x1e\xaf\x89\x2f\x94\xb8\x24\x3a\x77\xfa\x67\x06\x64\x56\xb6\xc8\xaa\xc2\x16\x03\x97\x62\xcd\x94\xad\x74\x58\xf5\x34\x61\x27\xdf\xfc\x32\x12\x4d\x66\x6e\xf0\x76\x65\x16\x4f\x4f\x98\x11\xc3\x9c\xcf\xce\x95\xcf\x64\xe6\x78\x6f\x95\x45\xbf\x53\x13\x71\xb6\x9d\x55\x35\x12\xfb\x54\xa2\xf6\xc9\xdb\x9f\xac\x56\xd5\x8c\x6c\x84\x74\xa3\xd2\x01\x27\x32\x76\x52\x97\x0e\x89\x96\xf6\xe0\x78\xa4\x55\xb7\xa7\xa3\xcd\xd4\x8d\xe3\x12\x7b\xe1\x7f\x37\xa3\xb9\xd9\x83\x9b\xc1\x29\x3c\xbf\x48\xfd\x56\x35\x91\xc3\xb9\xf5\xe6\xe7\x73\x0e\x60\x06\xa6\xe1\xfc\xcb\xc1\xfa\xf4\xb9\xfd\xb2\x34\xe4\x21\xf6\xe2\x81\xa5\x59\xd5\x88\xa7\x78\x8c\x63\xfc\x67\x99\x33\xb3\x04\x76\xf4\xa3\xa3\xfa\x15\xef\x8e\xfd\xe3\x21\xd4\xb3\x4f\x34\x71\x31\xa6\xcd\x8e\xbb\x1e\xe2\x8b\x0f\xff\xfd\xf0\xfc\xf9\xcb\xd5\xd7\x4f\x25\xe7\x4e\x7c\xf5\xf6\xe6\x92\x7b\xed\xe6\xee\xf2\xf9\xd3\x97\xcb\xdf\x9f\x84\xbc\x55\x5f\xfe\x78\x78\xbe\xff\x7a\x7b\x75\x73\x5f\xe1\x44\xca\xb3\x32\x53\xa9\x8a\x3e\xb3\xd7\x68\x5e\x2e\x25\x47\xbf\x75\xa5\x94\x12\x66\x4b\x99\x39\xd4\x88\x97\x5c\x92\xd9\x92\x2c\xf3\xe5\x98\x93\xac\xce\x0d\x4a\x7e\x14\x4e\xde\x52\x32\x83\x47\x5e\xa7\x29\x8e\x16\xa3\xb2\x55\x67\xe1\xd3\x71\x62\xbb\xf1\x09\xa7\xb5\xf6\x60\x60\xc1\x79\x25\xf5\x25\xe5\xde\xe3\x52\xae\x4b\x16\x4a\x6e\xdf\x66\x40\x45\x10\x5d\x96\x56\x35\xe1\x91\x78\x15\xe8\xb9\x12\x1e\xce\xcd\xa5\x40\x92\x2e\x3b\x6c\x0a\x80\xf9\x76\x12\x7b\x8e\x65\xfc\x27\x7a\x23\x81\x97\xa2\x08\xe3\x64\xb9\xfc\x6d\xa5\x49\x01\x46\xcc\x3e\xcc\x06\x19\x31\x8e\x5f\xf8\x98\x52\xa2\x52\xc5\x8e\x3f\x7f\x2a\x81\xf3\xdf\xda\xcc\xca\x27\xff\x5f\xc5\xb4\x0d\x62\x07\xca\x38\x59\xff\x63\xf9\xa4\xb2\x94\xb4\x82\x55\x2b\x80\xe8\x1f\x99\x4c\x88\x1e\x9c\x2b\xb7\xce\x43\xf4\x56\x12\xee\x50\x0a\x4b\xcf\xdb\xb0\x2a\x8b\x1e\xb9\x45\xa0\x2a\x39\x0f\x96\xe5\xd9\xe9\x8b\xbb\xc4\x6b\xff\xf1\xc5\x95\x75\xd9\x2b\x45\x82\x55\xe4\xe7\xe4\x8b\x67\xa7\xad\x74\x4e\xb7\x3e\xfa\x91\x9a\xdf\x74\x4f\xbc\xa0\x16\x32\x38\x09\x54\x5e\xf4\x82\x66\x4f\x40\xbc\xe0\xb8\x02\x9e\xab\xd1\xf4\xe3\x2f\x77\xcf\x0f\xd7\xf7\x7f\x5c\xdf\x3f\x5f\x7e\xb9\xfd\x75\x39\x9f\x72\x1a\x2c\x8d\xd8\x93\x71\x1e\x55\x78\xe7\x05\x4c\x6c\x71\xb1\x5d\x92\x64\x55\xe3\xa2\xea\xd6\xf8\xe7\xc5\xe3\xe5\x6f\x6c\xd5\xcf\xc3\xdd\x45\x99\xfc\x93\x69\xe5\xaa\x05\x30\x17\x97\x37\xcf\x0f\xb7\x17\x8f\x02\x45\x54\x86\xb0\xaa\x29\xf7\xe3\xa7\x2f\xbf\x5c\x7c\xba\xb9\xfd\xf5\x4b\xf5\xca\xa4\xf3\x28\x66\x7d\xba\xed\xa2\xae\xd0\xfb\x2b\xfa\xd6\x6f\x3e\xd6\x97\xe7\x39\xf3\xc0\xb4\xa7\x61\xc0\xa2\xd8\x89\x58\x51\xea\xc3\x7f\x3f\x3c\x5e\x7f\x5e\x4d\x03\xbc\xcf\xd7\xcf\xbb\xcd\xca\x3e\xcf\x34\xf9\xfa\x56\x58\xf4\xca\xa3\x05\x21\x8b\xb6\xc4\x9a\xf9\x4c\xdd\x0b\x75\x0a\x7f\xbc\x5d\x16\x7a\x64\x89\x45\xa8\x6b\xda\xa5\xb7\x2d\x05\x7e\x91\xef\x21\xeb\x75\xc1\x97\x6a\x50\x1e\x1c\x86\x2f\x36\x4d\x58\xf6\xc2\x8b\x2e\x5b\x49\xee\x5a\x8a\xa3\x56\x75\xd7\x3a\xf3\x5d\xdb\x6f\xca\xc3\x2b\xb6\xe3\x2e\x33\xc0\xba\x73\x8c\x9b\x5f\xb9\x63\x2b\xd3\x26\x81\xca\x62\x41\x17\x06\x53\xd9\xf8\xa1\x76\xd8\xd1\x59\x36\xe2\x4e\x4b\x6f\x82\x15\xe2\xcc\xd9\x4b\x37\x5d\xcd\x30\xbc\x73\x25\x0d\x0c\x9d\x7d\x8e\xa3\x0f\xff\xa1\x28\x4a\x18\x7a\x6d\xd4\xe9\x77\x06\x47\xe7\xca\x91\xd0\x19\xbd\x4d\x8f\xe7\x4d\xab\x99\x3f\xa3\x57\x0f\x3c\x8b\x7f\x44\x6f\x78\xa5\xe2\x84\xde\x74\xc5\x7a\xcd\x31\xbd\xe5\x44\xdc\xb3\x7a\x39\x55\x8b\x06\x1b\xd9\x03\x7b\xcb\xa9\x9e\x96\x9c\xda\x9b\x6c\x73\x8b\x0e\xe5\x67\xa3\x1c\xd1\xa3\xf9\xd9\x4f\xf3\x97\xb2\xcf\x32\xea\x03\xca\xcf\xa8\xa3\xfb\xf9\x83\xd6\xab\x0e\x60\x2f\x9c\x69\xce\x7d\x20\xc5\xf9\x6e\xfb\x4a\xf0\x4a\x14\xcb\x9c\x10\xfd\x4d\xb7\x88\xe2\x4c\xa8\x30\x46\xa7\x93\xfb\x8a\x69\xb3\xeb\x91\xcf\x39\x2d\xbc\xe2\x44\xea\x8a\x13\xde\xab\x0e\x6f\xe7\x9c\xf2\x5e\x9d\xb4\x34\x28\xce\x26\x2f\x9f\xa6\x5e\x3a\x18\xbe\xd0\x22\xdc\xfe\xf2\xe0\x12\x5d\x61\x21\x46\x48\xd8\x30\x06\xf1\x4d\x8f\x18\xac\x34\x65\xe2\x78\xac\x71\xbe\x84\x8d\x53\x70\xc0\x54\x9f\xd1\x3d\xb1\xb4\x05\xe7\xd0\xf9\xea\x47\x55\x12\x9b\x2c\x95\xa9\xb2\x29\x52\x33\x22\xd5\x18\x2c\x5b\xae\x39\xfc\xb9\xae\x13\xdf\x9f\xcc\x2d\x45\x77\x66\xae\x45\xe2\x53\xf2\x6b\x3e\x51\x81\x06\xe2\x56\x30\x7d\xa2\x17\xc7\xb1\x88\x66\x8b\x3c\x6c\x74\x1a\xae\x91\x1b\x08\xd3\x97\x97\xfe\x3b\x9f\xb1\x26\xe8\x54\xf2\x91\x8b\x78\xc7\x36\xe7\xf5\xe2\x78\xf5\x56\x67\xb9\xe9\x80\x3d\xdc\x10\xde\x89\xf6\x8f\x73\x6d\x35\xfd\x9d\x67\xa9\x6f\x1d\x83\x44\xa2\xa7\xe4\xac\x73\x72\xa1\x6c\x91\xd3\x5b\x16\xad\x70\x72\x45\xd6\xf2\xca\xd8\x5c\x51\x73\xba\x93\x16\xaf\x2a\x69\xed\xd7\x18\xbe\x8c\xca\xaf\x51\xf3\x3c\xed\xad\x7c\x91\x8f\x80\xf5\x95\x58\x5a\x95\xf0\x2f\xe9\xfd\x37\x57\x15\x29\xea\x4d\x69\xf8\x47\x09\xaa\x79\x6e\x73\xc2\x3a\x57\x8b\x02\x42\x40\x6b\x5e\xc0\x4c\xd3\x5b\x96\xe0\x3a\x46\xcb\x87\xa0\x25\x54\xbd\x25\x91\xfc\x8b\x80\x14\xc7\x18\xcb\xb2\x37\xb3\xe8\x72\xee\xc5\xac\x35\x8d\xbc\xd4\x69\x2c\x8b\xe3\x45\xef\x85\x04\x5a\x0a\xf5\xd9\x62\x2a\xf1\x37\xe7\x94\x8c\x06\xfd\xbd\x6e\xfc\xf7\x64\x87\xfe\x89\xab\xf0\x5c\x8f\xe8\xb4\xf6\x27\x3b\x27\xca\x4f\x47\x8f\xaf\xa6\x9f\x78\x3d\x15\x9d\xd5\xdb\xf4\x95\xb9\x4f\x8c\x18\x46\xd4\xcb\xdb\x9b\x74\xa6\x3b\x89\x45\x58\xe1\xcb\x5d\x12\x46\x44\x40\x55\x72\x4d\x21\x25\x2d\xc4\x9d\x36\x13\x95\x6b\x77\x5a\x94\x93\x6b\x77\x5a\x16\x92\x38\x7a\x58\x9d\x52\x84\xea\x20\x2a\xa1\xcd\x1f\x36\x89\x5f\xd6\xe8\x89\xe3\x43\x15\x8b\x8f\x1d\xff\x5e\x7e\xf6\x5c\xbc\xb4\x6d\x68\x80\x16\x10\xc1\x05\x88\x0a\x78\x48\xc1\x61\x1b\x1e\x3a\x0d\x1b\xd7\xe8\xc1\x3f\xfe\x72\xf7\x40\xa1\x9b\x14\x1f\x3e\xb9\x50\x6e\x80\x7c\xe4\xba\xe5\x8d\xc0\x1d\x65\x66\xc7\x98\x25\xf3\xb1\x2e\xd4\x2c\x04\xc7\xe9\x24\xb1\x63\xb8\x6d\x16\x5e\xe1\xb5\xda\x83\xad\x05\x1f\x59\x39\x37\xf6\xc4\x29\x36\x5d\xfe\x6a\xb9\xfd\x38\x21\x7a\xb2\x08\x5a\x70\x25\x6f\x01\x87\xe6\x24\x22\xff\x74\x54\x1b\xe8\x28\x2d\xcc\xc3\x14\x82\x0d\xda\xf2\x8f\xa8\x5c\xdc\xdd\xec\x38\xd6\xd6\x10\xe3\x34\x69\x0d\x1e\xa7\x68\x86\xc1\x3a\xa4\x66\xdd\xd5\x43\x67\x35\xcd\x0a\xf0\x2a\x63\xb5\x0b\xc3\xf0\x88\x5f\x9d\x44\x04\x97\x42\xa7\x36\x0b\x28\x5e\x57\x50\x5d\x65\x85\xab\x1c\xfe\x11\xee\xda\x9d\xfc\xdf\x4c\xfb\x61\xce\xe6\xb3\x73\x65\x3c\x1a\x0d\x46\x4b\x53\x9b\x76\x98\xba\xb7\x2c\x65\xd8\x1e\xa6\x1d\x90\x69\x71\xa7\x4c\xf1\x8f\x2d\x11\xda\xfe\x8a\x2e\x1b\xf9\x64\x53\x55\x0c\xab\xc2\x3f\xfa\x09\xdf\x54\x93\xb3\x58\x5f\x0a\x0b\xf9\x6a\xd6\xbd\x61\xd1\x72\xc2\x79\xc5\xdb\xba\xd1\x84\x48\x61\x1c\xb8\xcf\xfe\xa9\x99\x0f\xa9\x2a\x45\xfa\x85\x54\xa5\x08\x9f\xbb\xfe\xea\x57\xd3\xa8\x4b\x90\x3e\x2e\x3f\xd5\xb2\x17\x5d\xfb\x8a\xab\x33\x57\x34\x8f\x9a\xb5\x72\x82\x46\x74\xa9\x0b\x30\x2f\x25\x1c\xdf\x9f\xf3\x12\x0a\x59\x18\x8b\x56\x71\x26\x5c\xe5\xad\xaf\xc8\x12\xdf\xdb\xaa\xf1\x22\x8d\x2e\xd7\x8a\x2e\x3e\xd1\x62\xaa\xe0\x22\xb9\xc8\x67\x8b\x7c\x80\xbb\x22\x5a\x24\x57\xb7\x81\x2c\x76\x12\x05\x4a\x7d\x38\x79\x1f\xd5\xbe\xfc\x6c\xff\x2d\xbc\xdb\x25\x6d\xc1\x5e\x7f\x9c\x83\xa7\xa5\xd5\x52\xbc\x54\x82\x5d\xc7\xa8\xb5\xa7\x42\xde\x99\xa4\xf3\xb4\x2b\xa6\x4e\x24\x96\x17\x90\x58\xcc\x3a\xde\x58\x06\x2d\x82\xc8\x62\x10\xbf\x5e\x19\x45\xee\x15\xfe\x89\x68\x5f\x36\x65\xad\x62\x2b\xf1\xf4\xb9\x48\x49\xcb\xef\xb9\x14\x00\xc4\x0b\x5b\xa2\xb9\x8a\x12\xc6\xfb\xf4\x2b\x35\x53\x49\x56\x17\xd4\x5d\xaf\x53\x5d\x45\x90\x8d\x96\xb4\x73\xed\x93\xa8\xf1\xe7\x50\x7b\x31\x9a\xdf\xa9\x48\x51\x41\x05\x6a\xae\x87\x57\xeb\x7d\xd5\xc3\x55\x3e\x56\xa5\xde\xa7\x36\x67\x0b\x55\x36\x8e\x34\xdb\x4a\x63\x43\xc2\xe2\x09\x6c\x78\x85\xaf\xae\x6e\xee\x1d\xe4\xb5\xd5\x4d\x4a\x8c\x84\xf5\x32\x9d\xc4\x5e\x81\xaa\xae\x74\xae\x9e\xff\x1e\x77\x52\x90\x1b\x4d\x39\x15\xd6\xda\x8b\x95\xb7\xa4\x4c\x85\xb7\xd0\x5d\xbc\x64\xa5\x08\x17\xff\x78\x60\x95\x8c\x26\xbc\xef\x1c\xc3\xff\x47\x85\x7e\x2e\x53\x2e\x61\x2f\x84\x22\x60\xd4\xed\x25\x8a\x5f\x9f\xbf\xae\x0d\x2a\x35\xa7\xd5\x3c\x20\xbf\x26\x95\x32\xbe\xf2\x7b\x49\x8d\x90\x1a\x74\x66\xa1\x97\x9b\xaf\xde\xda\x67\xf4\xdb\x0d\x81\x6e\x1d\x83\xf0\x46\x3f\xf1\xef\xfc\x29\x7d\xee\x98\x27\xbe\x80\xe1\x8e\x50\x97\x94\xf2\x7c\x46\xf3\xc3\x7c\x9f\x63\xdd\xb7\x97\x8a\x65\xf6\xdd\x67\xff\x84\x0d\x56\xcd\x7a\x9d\xba\x07\x6d\xe3\xb7\xb8\x8d\xba\x94\x90\xc7\xe2\x36\xd3\xff\x96\xdd\x7c\x83\x14\x95\x1c\x09\xd0\xf8\x1b\xbd\x37\x2e\x33\x8b\x5c\xd3\x6f\x34\xfe\xbd\xfc\x8d\xe6\x8e\x21\xc8\x7e\xa3\xf1\x05\x7c\xa3\x42\x1d\x54\xea\x1b\x8d\x0f\x24\x20\x46\x78\x98\xab\x9c\x0b\x41\x44\xca\xb9\x4a\x39\xf7\x89\xb7\xc1\x1b\x1e\xf6\xc7\x5c\x38\xe5\x84\x7d\xd2\x36\xa1\x16\x96\xff\x51\xc7\xd7\xb8\xd2\x1b\x96\xc5\x1f\x1c\xe5\x2e\x72\x44\xb8\x7c\xda\x4a\x4e\x8a\x33\x97\xdf\x1a\x7e\xeb\x8d\xe6\x2c\xa3\x6a\x2b\xd1\x86\xb7\xf0\xda\x0b\x7d\xcb\x9e\x36\x99\x98\xba\x32\xb1\x9c\xef\x8a\x16\x28\x37\x77\x4a\x24\x68\x8a\xe3\x31\x3f\xbf\x12\x1e\x01\xbf\xb7\xe6\x41\x73\x5d\xcb\x24\xc6\xa3\xc3\xf9\x1a\x97\x8c\x2a\x92\x61\xc0\x43\xf5\x50\x4a\xa0\x18\x25\xde\xe9\x7c\xfd\xc3\xa5\x2d\x5f\xd8\x54\x5a\xfc\x5b\xe1\xcc\xe3\x37\xf2\xb6\x42\x0f\x5d\xb2\xf7\x75\x75\x45\xb2\x45\x5c\xcb\xbd\x88\x62\xbe\x46\x99\x1b\x0b\xfb\x1b\x05\x3c\x7b\xd1\xf6\x98\xfa\x04\x0e\x77\xfd\x36\xaf\x4a\x2b\x98\xda\xe4\xed\xab\x2f\xff\x49\x0d\x99\x15\xe1\xe6\x5d\xfe\x14\x4b\x17\xaf\x3a\xc6\x92\x2f\x2e\xbf\x0f\xc3\xa2\xc6\xcd\xb4\xa7\xcc\xac\x4d\x3c\x67\x16\x2e\xd1\xd0\x66\x24\xfd\x84\xf1\xe5\xe2\xcb\xe5\xfc\xe1\xcb\x95\x7a\x0a\x11\x1f\x3c\xff\x2a\x99\x56\x8c\xa2\xf3\x93\x8d\x24\xa0\x14\x1a\x26\x56\xd8\x79\x87\x0a\xa1\x5d\x4d\x0b\x88\xa1\xbc\x68\x3e\x31\x14\x27\xdc\x3e\xe5\x78\x06\xf1\x14\xd3\x56\xbe\xbf\x9a\xfa\x2b\xfd\xe9\x4d\xd1\x3c\xa2\xf8\x24\xe8\xc8\xf0\xf8\x72\xcf\x22\xf3\x4f\x56\x36\x6f\x61\xcf\x0f\xf3\x65\x52\x42\x31\x27\x66\x44\xd9\x61\x01\x4a\xe0\x28\x2f\x24\xc6\x91\xf8\x29\xe8\x23\x72\xaa\x9b\x6d\xcf\xda\xf5\xf7\xec\x2c\xc5\x4f\xce\x74\x6a\xda\xd5\x2b\xf1\x73\x55\xbc\xce\x66\x49\x56\x3e\x07\x8e\x62\xda\x06\xdb\x5a\xab\x98\x13\x85\x05\x7e\x53\xfc\x57\x67\x6e\x19\xca\x94\xd8\xf4\x0b\x20\x8a\xe5\x4c\xd9\xf8\x41\x9b\x5b\x01\xcd\xc1\x56\x39\x2f\xa9\x7d\xa5\xdf\x42\xa9\x88\x6b\x5c\x51\xed\xa8\x67\x30\x62\xd5\x6c\x83\xbe\xb6\xc0\xd1\x1d\x2b\xb4\xfe\xc4\x38\x36\x88\x4d\xdb\xf5\xe5\x2d\x6d\x57\xe5\x66\xa2\x04\xaf\xa6\x1f\x1e\x93\xc1\x9e\xd5\xf6\x69\x39\x5e\x18\x77\xf3\x43\x78\x95\xa6\x0d\x3f\x3c\xe2\xd3\xe2\xc2\x6a\x55\x3e\xd7\x32\x93\xc6\x03\xf3\x90\xcb\xef\x68\xe5\x33\x6c\xfe\x4a\x38\xcf\x13\x38\x61\x5d\x68\xd7\xd6\xea\xfb\x87\xb0\x9e\x10\xdb\x60\x31\xa2\xeb\x2d\x6b\xa1\x9b\x18\x51\x75\xd3\xe1\x22\xb1\x0d\xfa\x0e\x92\x7a\x7b\x9a\x3d\x25\x1f\x94\x17\x42\x7b\x52\x9c\xc0\xb4\x75\x6b\x6e\x10\x43\xf9\x6e\x06\xaf\xd1\x56\x47\x96\xb0\xa3\xdc\x04\x8a\xae\xd9\x8a\x63\x5b\x6f\xf4\x53\x88\xbf\x12\x43\xf9\xfe\x4a\xe8\xc3\xda\xf3\x19\xf1\x4c\x5d\x0b\xdf\x00\x7d\x5f\x49\x92\x9a\x36\xa0\x7f\x13\xc7\x9b\x69\x01\x5b\x3f\x36\xe8\xd7\x27\x15\x5e\x68\xe6\x2e\x6f\x31\xcd\x7e\xfb\xc2\x3f\x98\x25\xfd\x53\x65\xd6\xe0\xa9\x12\x42\x98\x7b\x5d\x8f\xf1\x3b\x89\xec\xca\xd4\x5c\x10\x3b\xe9\x54\x1d\x85\xed\x7a\xa0\x8d\xff\x42\x14\x62\x06\xaf\xc4\xcb\xb5\xb7\xe3\x31\x52\x32\x92\x32\x34\xe5\xce\x31\x38\x1f\x90\xed\x04\xb4\xd4\x85\x69\x10\x23\xfa\x7c\x8a\x5f\x4e\xc8\x5c\xac\x53\xdb\xf3\xd9\x0b\xf1\xaa\x3f\xa5\xf0\xef\x87\x9a\x46\x2d\x52\x4d\x3b\x50\x1d\x4f\x0d\x1b\x80\x7f\xfe\x44\xf6\x2f\x7e\xc2\xa5\x5d\x3b\xda\x13\xf2\x78\x79\x27\xdb\xaa\xf1\x87\xf9\xff\x7b\xbc\xbc\xfb\xa0\x7c\xbd\xba\xfb\x40\x9b\xeb\xe1\xf2\xf1\xee\xff\x1f\x6b\x4f\x34\xc8\x9e\xcd\xfd\x20\x6c\x0e\xd6\x72\xb4\xad\x92\x0e\xfc\x21\xdb\x90\x51\x75\x7c\xfa\xb1\x3f\x5e\xde\x2d\x69\x9f\x55\x89\xb7\x00\x80\x04\xbc\x51\x32\xa7\x61\xee\xa9\xc9\x4c\xde\xbd\x41\x25\x23\x6e\x04\xd3\x67\x5d\xdd\x36\xa2\xfd\x34\xd4\xfc\x59\x8e\x66\xf8\xd1\x84\x64\x6c\xa3\xe3\xc6\xe0\x74\x32\x66\x9c\x69\x23\xcf\x4c\xdf\x37\xed\x69\x95\x9d\x36\x88\x1f\x44\x81\xe9\x9b\x9b\x6b\x41\x13\x6a\xba\xbf\x58\x8e\xfe\x4d\xc6\x84\xde\xdc\xb1\x2c\x05\x8b\x7f\x73\x17\x2d\xbe\x24\xfe\x71\x94\x82\x5e\xd0\x82\x5c\x7b\x52\x5c\x38\xa6\x43\x99\x4e\x52\x8c\xce\x22\x80\x31\xc3\x49\x02\x45\xf3\x15\x57\xf3\x82\xd8\x1e\x5f\xc4\x5e\x8e\xb8\x51\x2f\x73\xa9\xa9\x2d\xa6\xd6\x4a\x71\xd8\xa7\x1f\x4f\x0d\x2f\xe9\x78\xc2\xa3\x15\x45\xd1\xcd\x9a\x5d\x74\x15\xed\x73\x79\x73\x75\x4f\x1f\x5a\x8b\xfa\xb6\xe2\x11\x3a\xca\x22\x76\x10\xeb\xc9\xcd\x9d\x12\x3e\xfb\x1f\x9a\x65\x1a\x0a\xf9\xa1\xcd\x5c\x8a\x84\x94\xf3\x9e\x8e\x7a\x67\xfd\x4e\x6f\x7c\xda\xe9\x75\x7a\xc7\xfd\xe1\xd3\x11\xed\x31\x4f\x47\xfd\x6e\xb7\x77\x6e\xbc\x9c\x9d\x9f\x1f\x8f\x87\xc5\x88\x32\xbc\x3f\x99\xa1\x07\xf9\xa1\x13\x77\xf9\x22\xe9\xa2\x96\xb2\x5c\xd1\xa3\x5a\xa6\xce\x3c\xad\xf4\xe9\xa3\x17\x1f\x71\x56\xf4\xbe\x8a\x02\xaa\xd9\xab\x68\x87\xb8\x12\xe1\xb8\x4d\xf9\x6e\x5a\x16\xbd\x99\x47\xfe\x1d\x7e\x93\xe6\x24\x45\x68\x67\x1e\xf8\xa6\x41\xd8\x2b\x60\x2f\x89\xe9\xf7\xf2\x87\x16\x1d\xec\xc9\xb5\xb9\xf0\x80\x4f\x70\xc8\xc7\x8e\xce\x30\x8d\x25\x4a\x2c\x36\xa2\x13\xf7\x11\xc6\x7f\x05\xa8\xa5\x79\x98\x2d\xbb\x73\x8c\xc8\x77\x91\x38\x8b\x53\x73\x10\x1b\xcc\xf8\xbb\xfd\x40\x3f\xff\xd4\xb0\x9a\xb6\xf2\xe8\x1c\xff\x4a\x33\xb3\xaf\xdf\x67\x36\x35\xf9\xee\xef\x52\x77\xca\x87\xf0\x3e\xf4\x25\xc7\x65\xd7\xde\x93\xa4\x57\xe2\x22\x04\x4d\x4b\xf4\xa9\x64\x6f\x4e\xfb\xe5\xf5\x8f\x80\x78\xb6\x66\x5d\xdb\x81\x19\xbc\x3d\xac\xdc\x0e\x49\x78\x6b\xe2\x3f\xf1\x5e\x2b\x51\x8f\xf0\x4f\xc4\x8b\x13\xff\xc9\x7d\x12\x8a\x8c\x57\x27\xfe\xcb\xf5\xbd\x24\x60\x49\x62\x75\xa9\x79\xfa\x46\xde\x7c\xc5\x23\x56\x28\xaa\xaf\xa6\x4b\x11\x45\x63\x2f\xda\x99\x44\xc6\xa3\x13\x99\xa1\x24\xd2\x0b\xeb\x4f\x37\xf6\x07\xe5\xd6\x09\xe8\xff\x84\xa1\x11\x19\x01\x5e\x39\xc4\xbf\x75\x02\xf6\xcb\x92\xb7\xdc\xa6\x29\x04\xbd\x51\xdc\x86\x88\x2c\x22\xb5\xce\x76\x68\x64\xe8\xa3\x46\x92\x14\x3f\xf1\x4d\x28\xb3\x49\xa3\x99\xbe\x72\x63\xd3\x0e\x1d\x3d\x32\xbd\x18\x15\x14\x16\xc1\x58\xf0\x85\x28\xb6\x63\xab\x8c\x67\xb8\x65\x44\x2d\xe5\x78\xb9\x86\xaa\x29\x2e\x2a\x8a\xe1\x7c\x78\x85\x82\x11\x71\x2d\x4d\x27\x86\x62\xcc\x59\xa5\xb5\x38\x10\x2b\x65\x52\xe2\x4d\x49\x78\xbc\xbc\x70\xfb\x8b\x7f\x11\xe1\x9f\xfc\xfb\x92\xb0\xe9\xe1\x9f\xa0\x65\x0f\xff\x96\x3a\xf5\xd2\x84\x22\xce\xbd\x7c\x95\x97\x4b\x42\x36\xb5\xd0\x03\x8a\x39\xfd\xe2\x3f\x69\xe7\x5f\xbe\x46\x72\xa2\x2b\xf2\xb4\xa2\x29\x97\xbb\xf5\xe3\x3f\x9e\x48\x66\x04\x32\xeb\x53\xf1\x53\x85\x2a\x89\x62\x02\xc5\xc7\x75\xf2\x58\x52\xb8\xcd\x8b\x64\x39\x3f\x04\x11\x82\xd8\xa6\x29\x20\x88\x10\xc4\xf4\x0f\x82\x58\x53\xa3\xf7\x12\xc4\x15\x39\xec\x7e\xfd\xf3\xaa\x7a\x72\x4a\xc8\x40\xb3\xd6\xbe\xad\x58\xa6\x9a\xfe\x89\x7c\x04\xa2\x2d\x2a\xd0\x17\x96\x76\x70\x35\x53\xf1\xfa\xf6\xab\x6e\xe3\x25\xbb\x9d\x72\xd3\x6b\xfc\x24\xe1\x0b\xe0\x5d\x6b\xb8\x5f\x49\x89\x57\x32\x08\xce\x95\xc6\xeb\x1e\x30\x59\xba\x85\x93\xa5\x6c\x62\x2b\x7c\x33\x19\x9c\xec\x28\x0f\x61\xe2\x17\xb2\xd2\xe9\x54\x4a\xa9\xad\xfd\xf7\x8e\x67\x4e\x4d\x5b\x0b\x48\x44\xdb\x4d\xfd\xf7\x55\x4e\xfb\x68\x7f\x17\xfc\xf5\xf0\xd7\xc3\x5f\x0f\x7f\xfd\xb6\xfb\xeb\x31\xd4\xe6\xfe\x61\xa8\x9d\xfc\x61\xa8\x8d\xa1\x76\xfa\x87\xa1\x76\x4d\x8d\xe0\x7b\x86\xef\xb9\xfe\x2f\xd7\xfa\xc5\xfc\x21\x91\x59\xa6\xcf\x04\x81\xc5\x21\x48\x1f\x27\xfa\x4a\x67\x54\x4c\x3a\x6c\xe5\x56\xf6\x17\xd6\xa2\x17\xb7\x57\x4b\x57\x12\x2a\x50\x65\xa8\x32\x54\xb9\xf0\x07\x55\xae\xa9\x32\x54\xb9\x59\xca\x95\x38\xc0\xb1\x85\x00\x5b\x08\xb0\x85\x80\x93\x18\x5b\x08\xb0\x85\x20\xf9\xdb\xd8\x16\x82\xc6\x93\x5e\x61\xcc\x84\xc7\x37\x97\x6b\x87\xaa\x0d\x66\xae\xb1\xa3\xf0\x07\xb4\x94\x18\xd7\xf2\xb6\x32\x67\x4b\x59\x75\xc2\x6e\xcd\xfe\xcb\xf4\x95\x17\x12\x68\x2a\x0b\x88\x40\x6d\x67\xaf\x73\x5a\xfd\x8c\x0d\x42\x86\xc4\xa7\x8e\x2c\x9b\xd9\x8b\x4f\x43\x61\xaf\x3e\x99\x19\x0b\xe7\xf0\x22\xe3\x99\x7f\x90\x10\xcf\x17\x84\x76\x86\x70\x94\x97\xbd\x6e\x72\x67\x5b\x6a\x4d\x0a\xbb\xb8\xa4\x96\xac\xcd\x12\x5b\x4e\xeb\x51\x79\x17\x5e\x5b\x55\xc6\x65\xa4\x59\xf2\xbf\xf1\x3b\x95\xf4\x21\x36\x8a\x48\x28\x9d\x4c\x3c\x15\x4d\xa7\x03\x64\x62\xdc\x96\x42\x88\xa4\xa7\xf5\xc6\x81\x41\xe2\x5f\x74\xc7\x0e\x59\xcc\x3f\x57\xfe\xe7\x5f\x4f\x76\x58\x3e\x31\xfe\x88\x63\x7e\xb0\x5f\xd7\x1a\x2b\xc5\xb0\x7d\x5e\xb8\x94\xf0\xe7\xca\x88\x29\x99\xcb\xbc\xa0\x29\x57\xb6\x5f\x1b\x37\xa5\x78\xbd\x1c\x3a\xa5\x5c\xad\xa8\xfd\x93\xe8\x29\x85\x14\xd2\x01\x54\xe8\xc7\x1b\x95\xd9\x28\x88\x8a\x61\xfb\x71\x04\x17\x25\xfb\x94\x0a\xa2\xa2\x64\xff\x10\x15\x25\xf7\x87\xd8\x0a\x55\x7f\x88\xad\x20\xf5\x14\x88\x8a\xb2\xad\x5f\xee\xb6\x7b\x49\x57\x6e\x59\xe0\x0d\xe5\xfe\xc1\xe0\xca\x55\x7c\xa7\x0d\xee\x16\x07\xb3\x59\x62\x2f\x03\xe7\xd7\x3f\x8d\xaa\x35\x98\xa2\xb6\x7d\xd9\x7a\xe0\xe5\xdf\x82\xcc\x6b\xaa\xe9\x46\x02\xc7\x19\xd5\xaf\x02\xae\x7f\xcd\x35\xc5\xab\x51\x4b\xca\xf4\x0d\x0c\x55\x65\x86\xaa\x7f\x3a\x7e\x6e\x8c\xfa\xa7\xe3\xf3\x47\xa7\x7f\x86\x61\xaf\xcb\xe3\xd2\xff\xe7\xf8\xfc\x01\x69\x72\xa1\x3c\x12\xcd\xdc\xb5\x38\x04\x8d\x2f\x55\x8f\x3d\x99\xe6\x7b\x0b\xf2\xd5\xfe\x66\x3b\xdf\xed\x5f\xd9\xa4\x7e\x72\xd6\x2c\x4e\x41\xa8\x4c\xba\xc2\x93\xb4\x6b\x30\x58\xfe\x74\x81\x7a\xf3\xb0\xc4\x5c\x2e\x57\xb8\xe5\x32\x94\xad\x72\x31\x45\xf5\x56\x80\x56\xd5\x0e\xbb\xbf\x3d\x7d\xa6\x14\x54\x5b\xf1\xda\x29\x87\xe4\x74\xbf\x6e\xed\x4d\x5e\xe6\x9e\x5f\x35\x0d\xd2\xea\x2e\x95\x32\x8c\xc6\x51\x14\xc3\xd7\xdd\x99\xe6\xf1\x56\xc0\x2f\x29\x37\x99\xe9\xe0\xd4\xbc\xee\xa9\xd2\xa3\x21\x07\xeb\x0f\x07\x3d\xb1\x9c\xef\xc5\x70\xd0\xf4\xb7\xca\x78\xd0\xe1\xc5\x8a\x80\xd0\xf4\x62\x65\x40\xe8\xf4\x22\x37\x20\x74\xb6\x26\x45\x3d\xc9\x5e\xae\x38\x36\xa7\xa1\xa0\x68\x96\xfb\xaa\xc9\xa8\x4a\x46\x18\xfe\x4f\x51\x2f\xe2\x43\x6e\xfd\xf4\x90\xdb\x05\x1d\xaa\x6a\x6c\x65\xbf\xce\x5e\x4d\xf4\x39\xa5\x53\x09\x07\xa4\x39\xf4\x1d\x3e\x68\x33\xd7\x32\xed\x69\xd8\x13\x56\x6d\x74\x6a\x8f\x5c\x5b\x46\xd2\x34\x73\xcd\xe4\x7c\x6b\x63\x25\x76\xea\x6b\x62\x36\xfa\xdd\x11\x37\x09\x6d\xc5\x47\xfe\xc4\x92\xc8\x53\x2a\x0a\xb1\xe7\xd5\xfb\x9b\x54\x25\xf3\x91\xf3\x13\x98\xee\xc4\xfc\xb1\xa4\xf2\x35\x85\x68\x7a\x60\x2e\xc8\xaf\xf4\x29\xcc\x19\xf9\x32\xdf\x44\x7b\x0f\xc6\xdd\x8a\x24\x49\x8d\xc7\xdc\x04\xa6\x61\x6d\xb8\xaa\xcb\x6b\xda\xe3\x76\x0b\x3f\xfa\xb0\xee\xd7\x28\xb7\x99\x6a\xf6\xba\x4b\xeb\xc9\xb9\x5e\x3b\x4c\xac\x3a\xd8\x2f\x6f\x11\xd6\xaa\x88\xc4\xf3\x5d\xcd\xce\x09\x62\xf8\x13\x5f\x0f\xe3\x6b\x3c\x39\xbc\x66\xd7\xf8\x6a\x98\xbd\x56\x16\xc3\x7c\x25\x8a\x5a\x98\xb9\xba\x3d\x52\x78\x58\x3a\xd6\xf8\x48\x38\xf9\x61\xd5\x7a\x0f\x91\xdb\x9d\xe3\xe0\xc2\xaf\x77\xd5\xb8\xa0\x19\x33\xd3\x7e\x08\xaa\x2d\x66\x7e\xa3\x35\x4d\x6d\x32\x9f\xb7\xb9\x20\xe1\x61\x2f\x15\xce\xee\xc4\x06\xb2\xd3\xe0\xd7\x24\xd4\x35\x65\x87\x97\x1d\xee\x19\xa7\x86\xe9\x91\xba\xed\xe5\xb9\x67\xbe\x8a\x13\x27\x4b\x54\x34\xfd\x1b\x09\xd7\x4b\xcd\x1c\xdb\xac\xde\xe8\x90\x34\xc1\x8b\x13\xbc\xae\xa9\x05\xcc\x8a\x1d\xdc\xcc\x45\x3f\xaf\x69\x1b\x5e\x9d\x32\x61\x50\xd7\x82\xa5\x77\x42\xed\x9d\x56\x42\xb9\xb9\x8b\x1b\xfd\xfa\xfe\xe1\xee\xe2\x36\x6a\xfb\x8a\xf6\x5e\xd6\x98\x14\xc7\x6e\xae\x44\xea\xf0\xd5\x36\xff\x9c\x93\xf0\xac\x9b\x9b\x2b\x99\x3a\xa4\x88\xd2\x1e\x40\x2a\x8a\xc8\x00\x48\x7f\xd0\x04\x30\x38\xab\x0e\x37\x09\x18\x2c\x12\x82\xe1\x39\xae\xe5\x44\x67\xaa\x45\xff\xa8\x58\x4f\x14\x5f\xe4\x22\x06\x2b\xec\xca\x73\xdc\x4f\x4e\xe9\x78\xb5\xdc\x45\x0e\x64\xe4\x2a\x52\x82\x8c\xec\x55\x3e\x65\xd4\x51\x44\xd3\x03\xd7\x0e\x79\x44\x5d\x30\x03\x35\x67\xc3\x73\x5e\x7b\xfd\x03\xd6\x3c\xa4\x12\x9e\xfc\xc6\x0a\x0c\x3f\xde\xa8\xdc\x65\x4e\xe1\xab\x30\x53\x5c\xc5\x30\xfa\x46\xd4\x61\xe2\xee\xa3\xbc\xbc\x29\x9a\xae\xab\x6c\x99\x32\x6d\x48\x8e\xd9\x48\x4c\x46\x82\xa7\xf9\xbf\xda\x78\x1d\xb6\x63\xd4\x2d\x9f\x92\x80\x31\xfa\xd4\x8a\x95\x06\x28\x89\x9f\xc0\xb1\xd9\x4d\xb2\x51\x3b\xe2\x09\xc7\x90\xbd\xf6\x09\xd9\xd6\x6a\xf9\x5c\x6f\x6e\xaf\xca\xf0\xdd\xd1\xb2\x2a\xec\x5e\xf6\x5a\xd9\xec\xe5\x6a\x51\xb4\x7a\xd9\x8b\x30\x7a\xdb\x65\xf4\xca\xaf\xbc\xfe\xf9\x96\x7c\x2b\x6b\xb2\x1c\x13\xd3\x0a\x48\xb4\x22\x29\x8e\xba\x14\x38\x07\x64\x42\x0a\x0d\x15\xbe\xaf\x5f\xc3\x56\x59\x35\x55\xfb\x9e\x5e\x09\xd5\x22\xbe\xde\xc6\x99\x7d\x4f\xff\x7c\x71\xd9\xe2\xce\xcd\x73\xfb\x9e\xde\xc6\x45\xdd\xd6\xc5\x6d\xba\x77\x9e\x53\x79\xba\x45\x21\xfb\x5a\xe5\x44\xd3\xf5\x04\x2b\x4c\xdb\x9d\x07\xa1\xa6\xe8\x81\x57\xb1\x32\x3f\xbc\xc2\x53\x93\x0b\x5d\xbf\x8b\x8b\xba\xa1\x45\x15\x25\xa5\x94\xa0\xac\x2b\xe5\xea\x14\xc5\xa5\x94\xe2\x49\x72\x5d\xbe\xbc\xc8\xac\x74\x05\x44\x7e\x55\x6c\xf1\x61\x72\xbb\x13\xc3\x5f\xc2\xa3\x9a\xe7\x5e\x38\x98\xa5\x2a\x76\x71\x79\xa3\x5c\xde\xde\xbc\xab\x08\xb5\xdf\x0e\x50\x08\xbe\x57\xe8\x1a\x0f\x2e\xd1\x73\x8d\x91\x28\x19\xbd\x40\x5b\xa1\xdc\x76\x92\xda\xa5\xe9\xfa\x73\x52\xc2\x33\x2b\x62\xd5\xa6\x35\x5e\xdf\xf8\x3c\xd3\x6c\x6d\x4a\x8c\xe7\xf0\x65\xae\x4f\x72\xe2\xb0\x82\xcf\x73\xd7\xd0\x82\xda\x25\x73\xb5\x23\x02\x85\xb5\x8f\xb9\x81\xfa\xfa\x6f\xb6\xfe\x6c\x39\x53\xb3\x3a\x4c\xa3\xe8\x1a\x50\xc1\x85\xdb\x3a\xf1\x82\x89\x69\x55\xf9\x2a\xf3\xf7\x5c\xbe\x6c\xf6\x1b\x79\x5b\x51\x69\xba\x65\x12\x3b\x78\xf6\xfd\xba\xcd\x9f\x4b\x5f\x9b\x4d\x82\x0d\xbc\x36\xaa\x4e\xde\x44\xd3\xc9\xf3\x2c\x98\x2f\xad\xee\x92\xad\xc2\xd4\x0c\x9b\xb4\xa8\xd0\x13\xfa\xcc\x0a\x5f\x68\xcb\x9b\x61\x49\xb9\xee\x8b\xf7\x1c\x78\x9a\xfe\xcd\xb4\xa7\xcf\xb6\x63\x3f\xfb\xb6\x56\xb7\x03\x7a\x69\xdb\x2a\xe1\x8a\xaf\xe7\xf0\xa4\xf5\x67\xfd\x75\x6e\x7f\x7b\xf6\xcd\xbf\xea\xde\xbe\x50\x4d\x23\xdf\xc1\xf3\x77\xcd\x0c\x9e\x27\x8e\xf7\x1c\xed\xfc\x6a\x5b\x59\x23\xd2\x0d\xf9\x82\x6b\x2a\xec\x91\xa9\xe9\x07\x5e\xd5\xe6\x87\xd5\xf4\xaf\x99\x36\x25\xcf\xae\x47\x26\xe6\x8f\xa5\x75\xad\xff\xac\xa2\xa2\xe6\x96\xf5\xec\x13\xdd\x23\xcb\x7b\x40\x7d\x79\x91\x5d\x0c\x34\xd3\x26\x9e\xff\x9c\xd8\xf8\x05\x57\x6b\x5b\x96\x4e\xff\xd3\x73\x2c\x8b\xac\xa9\xfc\x57\xc7\x0f\x56\x56\x72\x56\x4f\xd7\xd1\x2c\xb6\xb9\xea\x62\x75\xdb\x34\x88\x6b\x39\x6f\x2b\x2a\xcf\x71\x27\x16\xf9\xf1\xcc\x62\xf0\xae\xac\x48\x62\x2f\xfc\xef\x66\xa0\xbf\xae\xa8\xc4\xe9\x8b\xbb\x82\x92\xac\xda\xc8\xc5\x2b\x31\x02\x99\xce\x6f\x39\xd3\x67\xb6\x13\xbe\xe5\xb3\xd3\xfe\x1e\xbe\x9d\x55\x95\x18\xbe\xf2\xd5\x95\x69\xfa\x81\xe9\x6c\x44\xc1\xfd\x40\xb3\xac\x67\x76\xbf\xb6\x3a\x13\x17\xe6\x7a\xce\x12\x18\x5a\xf6\xf8\xb3\xb9\x15\x6f\x23\xa8\xca\xdc\xf2\xc1\x23\xad\x6d\xf3\xc8\x86\xe7\xb8\xec\x65\x6f\x8a\xe7\x5b\x01\xa1\x63\x10\xd7\x31\xcc\xc9\x4e\xd4\xd6\xf7\x4c\x67\xb1\x13\x35\xfd\x36\x7f\x21\x1b\xa8\xa8\xb3\xf0\x9f\x67\x64\xe6\x78\x6f\xcf\x96\x39\x33\xdb\xd2\xcb\xdc\xa7\x58\x65\x2e\x4c\x8b\x44\x03\xd2\x08\x05\x5a\x9b\x80\x14\xb3\xdc\xaa\x45\xa9\x32\x15\xf5\xc8\x8b\xe3\x04\xcf\x91\xa2\x7e\x37\x83\xd7\x67\x67\xb1\xbc\x96\xf5\x85\xd2\x01\xc0\xb3\xc0\x4e\xdb\x95\x0e\x38\x5d\xc7\x0b\x9e\x59\xc4\x28\xa1\x41\xa2\x48\x48\x33\x89\x48\x8f\x6c\x79\xcb\xd2\x54\x82\xe3\x94\xf8\x8f\x94\x1c\x45\xad\x8b\x64\x31\xca\x9e\x5d\xe2\x3d\x53\x83\xb5\xca\xd2\x19\x46\x68\x7a\xf0\x1c\xba\x09\x57\x33\xec\x8f\x47\x6c\x2e\xf1\x4c\xc7\x30\x75\x36\xb6\x7c\x9e\x5a\xce\x8b\x66\x3d\x9b\xf6\xc4\x79\xf6\xdf\xec\xa2\xcf\x8b\x7f\x33\xee\x87\x55\xe9\x49\x4b\xb7\xd9\x65\x2a\x53\xef\x4b\x63\x59\x72\xde\x34\x7f\xae\xeb\xc4\xf7\x27\x73\x4b\xd1\x9d\x99\x6b\x91\x78\x6d\x52\x85\x13\x37\xfe\xab\x5b\xcd\xc7\xab\x58\xa3\x87\x94\xde\x9f\x58\xf2\x90\x67\x9c\xe1\xcc\x3e\x7f\xd6\xdc\x0a\xef\xb7\xa9\xa6\x16\x50\x0d\x8d\x79\x7c\x39\x5c\x63\x57\x4c\xe3\xbf\xf9\x01\x99\xd1\x34\xb9\xe9\x23\x6e\x49\x6a\x4c\xd9\xca\xd3\xd1\xcf\x9f\x9d\x47\xe7\x1b\xb1\xff\xfe\x3b\xde\x01\x19\x8d\xc4\x55\xd7\x9a\x4f\x4d\xbb\x78\xa3\x27\x3b\xa9\x6b\x8a\xc1\x51\xb9\xe7\xca\xff\xaa\x61\x19\x3f\xd3\x26\x79\x3a\xb2\x9c\x69\x18\x2d\xea\xe9\x28\xba\xe3\x65\x92\xf3\x93\x33\xfd\x44\x2f\xd1\xdb\x7f\xc8\x66\xd2\x5c\x53\x57\x29\x15\xfb\x34\xd7\xcf\x9f\x9d\x0b\xd7\xd4\x7f\xa3\xff\xfe\xfb\xef\x72\x42\x8f\x4c\x3c\xe2\xbf\x06\xe6\x8c\x24\x37\xa1\x19\xee\xc3\xdf\x1f\xcd\x19\xe1\xdf\xc1\x9f\xbf\x24\x5d\x54\x35\x88\xa5\xbd\x65\x6e\xf7\x90\xb9\x78\x45\xaf\x71\x6e\xfd\x9c\xdc\x5a\xff\x46\xbc\x67\xcd\xf8\xf7\xdc\x0f\xf8\x75\xa0\x09\x2e\xd8\x75\x7e\x5d\xe6\x3e\xf1\xe8\x0b\xce\xe5\xfe\xea\x13\xef\x56\xab\xaa\x3e\x55\x4c\x2d\x20\xea\x37\xf2\xa6\xba\x5a\xf0\x1a\x66\x3d\x9e\xfb\xde\xb1\xe5\xe8\x9a\x75\x4c\x02\xfd\x98\xbd\x40\xe2\x05\xc7\xf4\x06\x9d\x6f\xe4\xad\x58\x92\x6e\xaa\xa1\x47\x23\xb9\xf3\x03\xeb\x4d\x37\x06\xb1\x03\x73\x62\x12\xaf\x7c\x77\xdd\x54\x17\xb3\x99\x4a\x3b\x7c\x98\xeb\xf7\x24\xb4\x1c\x4b\xfa\xf3\xa7\xaa\x98\x13\xc5\x26\x4a\xe7\x8f\xd9\xec\xca\x99\x69\xa6\xcd\x36\xd5\xfe\xfd\x37\xaf\x1c\x83\x25\x48\xee\x9f\x64\x89\x6e\x4c\x4b\x23\x96\x4f\x84\x32\x57\x54\x9e\x95\x61\x1b\xb4\x88\x7c\xe5\xd2\xde\x58\x53\xc1\xb4\xb3\x67\x2b\x99\x66\x15\xaa\x28\xa7\x90\xe5\x95\x2d\xbc\x28\xc6\x30\x6a\x40\x6c\xcd\x4e\xfb\xd9\x23\xfb\x67\x26\x6f\xf4\x74\x97\xb4\x0b\x29\x4f\x47\xe1\xea\x9b\xc2\xa3\x59\x2f\x99\xd7\x77\xeb\xd8\xa4\xa6\x99\xa2\xf5\x40\x77\x91\xaa\x3c\xd8\x5a\xf0\x91\x69\xca\x8d\x3d\x71\x1e\xde\xec\xca\x9b\x44\x7a\xa4\xc6\x7a\xa4\x52\x3d\x52\x43\x3d\x52\xa9\x1e\xa9\x54\x8f\xa2\x8f\x6e\xe9\x5d\xd8\x07\xc8\x6d\x9b\x90\xc7\x54\x83\x2c\x4c\x9d\xd0\x2f\x99\x04\x44\xa5\xf6\xc0\x99\x07\x51\xe9\x5f\x58\x92\x2b\x96\xe2\x8a\x25\x78\x0c\xaf\x17\x3e\xeb\x68\xd0\xa8\xb2\x11\x68\x94\xf7\x26\xfc\xed\x86\xfe\x54\x4c\x4e\x7f\x53\xa3\x11\x66\xf2\x46\x58\xca\xbb\xf0\xc7\xea\xf7\xc2\x66\xf3\x38\x3d\xce\x75\x8c\x17\x43\x35\xa2\x3e\x3d\xb7\xcd\xe3\xc0\x56\x33\xef\xf9\xf8\x97\x2b\xb5\x60\xda\xb9\x7d\x89\x16\xa4\xbe\x18\x9c\x8f\x97\xc2\xcc\x6a\x6e\x41\x4b\x8a\xef\x51\xd9\x6d\x23\x57\xba\xea\xbe\xbe\xf9\xf4\x7b\xad\xe9\xff\xaa\xcb\xae\x97\x6a\x1c\x17\x41\x6c\x5d\x73\xc3\xfc\x0b\x4b\x63\x75\x7e\x08\x2f\xfd\x61\x69\x36\xd7\x52\xc5\x59\x23\x47\xbe\x1a\x3b\xf2\xa3\x97\x1b\x65\xff\x1c\x5e\xbd\x89\x2e\x16\x8d\x3d\x7d\x2d\x2f\x9e\x1a\x3b\xee\x55\xdb\xb1\x59\x67\x8e\x0a\xb9\xfb\xe5\xfe\x31\xba\x74\xeb\xd8\xb4\xeb\x72\x0a\x58\x78\x93\xe2\xa7\xfb\xc7\xfd\xaf\xb9\xaf\x37\x9f\xc1\x1a\x44\xfd\x97\xa5\xfd\x34\xf8\x32\xe7\xa7\x23\x3f\x02\x35\x12\xee\x58\x30\x59\xe2\xf8\x24\xf1\x28\xec\x9c\x9f\x7c\x40\x82\x1d\x71\xe1\x4d\xb2\x35\xcd\x28\x51\x8d\xa5\xcb\xe4\xf9\xb2\x20\x9e\xa5\xbd\x71\xb2\x16\x7b\x49\xb4\x52\x50\x25\xb6\xe1\x3a\xa6\x1d\xa8\x6c\x72\x9f\x3d\x4b\x1e\xce\x9e\x8e\x22\x1b\x18\xc6\x66\x12\x35\x81\xe5\x27\x0c\x0b\x4b\x15\x57\xa4\xb7\xff\x6f\x21\x51\x54\x6b\xca\x4e\xbc\x06\x69\x72\x8b\xa4\xac\x7c\x0b\xe5\x3b\xd3\x4c\xfb\xc1\x3e\x3c\x5f\xf5\x17\xba\x3a\xf5\x34\xf7\x35\x7a\xed\x9f\xb5\x1f\xb7\xf4\xc2\xc3\x42\xff\x48\x7f\x2e\xf4\xc2\x84\x20\x55\x89\x06\xe7\xb3\x66\x39\xe5\xca\x5f\xcf\x2a\x5e\x51\x5c\xdb\xea\x37\xb4\xe4\x2e\x85\x02\xf2\xaf\xa5\xf8\x6a\x94\x8c\x26\x24\x61\x84\x76\xa4\xa5\x22\xc1\x6b\xdc\x50\xf9\xfc\xe2\xed\xb4\x5b\xfd\x69\xf3\xad\xf4\x6d\xfe\x42\x76\xac\x91\xde\xe3\xa3\xd3\xb5\x20\xb0\xd0\x50\xc2\x0d\xe5\x7a\xce\x8c\x04\xaf\x64\xee\xa3\xb1\x96\x36\x56\x34\xad\x88\x96\x4a\x5a\x8a\xd7\x64\x4f\x47\x31\x6a\x9b\xae\xea\x3a\x0e\x23\xec\xff\xc9\x67\xe4\x36\x1f\xb1\x8d\x74\x48\x10\x16\x71\x73\x77\xcd\xee\x7a\xf4\x81\x97\x21\xdc\x1d\x59\xca\xf2\x40\x7f\x4e\x7d\x59\x49\x1d\xd3\x7f\xfe\x2b\x5f\x5d\x3a\x1a\x8d\x1d\xb1\x2a\x73\xc4\xa6\x85\xda\x5a\x70\x19\x5d\x7a\xa0\x57\x4a\xe4\xed\x07\x5a\x40\x87\xb4\x2b\x78\x66\x56\x52\x93\x27\xcf\x67\x94\x7d\x7e\x3a\x3e\x6c\x51\xed\x3b\xc7\x90\xa9\x2c\x4b\xde\xa4\x8a\xe1\xc2\x26\x95\x2d\x6c\x52\x7d\xf3\x2f\x12\x0f\xba\x1c\xe3\x81\x5d\xba\xa4\x57\x1e\xcc\xbf\x48\x11\x77\xe9\xe0\x74\x05\xef\xe7\x96\x6d\x28\x90\x7e\x3b\xb9\x6c\xb2\x0f\x9e\xab\x7b\xd8\x02\x3e\xa7\xee\xd9\x0f\x80\x11\x7f\xd8\x22\xf9\x1b\xe5\x4b\x8e\x16\x63\xc6\xe4\xcf\x4e\x6f\x8d\x5a\x34\xdc\x7d\x76\x1d\x5d\x79\xa0\x57\xe2\x2f\x9f\xfd\xcf\xab\xe3\x07\x2a\x5b\x55\x50\xef\xf4\xd5\x5c\x37\xef\x13\x11\x1b\xfa\xe4\xed\xe4\xb5\x7b\x1f\xad\xe9\xe2\x78\xe6\x88\xab\xc6\x2b\xbe\x92\xf6\x4e\x33\xd4\x8e\x52\x0b\x59\xed\xb9\x65\x55\x7a\xbe\x42\xaf\xd1\x67\xc7\x20\x9c\x3a\x44\x5e\xa7\x99\x63\xa4\x66\x23\xcd\x50\x5b\x87\x42\xd6\x72\x1d\xd2\xa4\x65\x07\xfa\x6f\x8e\x1f\x5c\xd0\x97\x50\xed\x3f\xd7\xcd\xd0\xd5\x96\x46\x31\xce\xda\xb5\x64\x49\x3a\x3c\xbb\x5b\xe3\xd9\x15\x72\xc1\x6f\xa5\xef\x46\xda\xb5\x15\x5b\xb5\x85\xa5\xd9\x79\x27\x5c\xe8\xc3\xcb\x25\xa6\xc3\x1f\xcd\x35\xb3\x89\x69\x97\xbc\xb8\xbb\xe1\x24\x4e\xd5\x22\x9d\x6d\x0a\x37\xf8\x5d\xde\x5c\xdd\x97\x2a\x12\xda\xd8\x7c\x7a\x66\xb4\x13\x1b\x5a\x30\x9c\xba\xe6\x66\x3e\x0d\x66\x30\x75\xcd\x7d\x7c\xe3\xd0\x01\x6d\x15\xd3\x9e\x78\x5a\xb6\xe6\x37\xf4\x87\xa4\xde\xd1\xdb\xec\x7c\x7e\xfc\x5a\xe8\xbd\x9f\x1f\xbf\x2a\xdd\x7c\x2b\x27\x6b\x9b\xd5\x59\x30\x8f\xbd\x3d\x34\x63\xf9\x13\xc8\x7f\x0d\x34\xd5\x6f\x44\x33\xee\x1d\x67\x56\xbe\x4d\x7c\x45\x79\x3a\xea\x16\xbb\x51\xee\x96\xea\x2b\xd1\x0c\xcf\x09\x9d\xb7\xe1\xbd\xd3\x52\x2b\xeb\x90\x16\xa6\xdb\xa6\x6a\x93\x20\x9a\xcd\x14\x14\xe1\xa9\x16\x90\xef\xda\x5b\x16\x21\x3e\x86\x3f\x55\x4a\xb0\xe7\xcc\x99\xad\x2a\xdd\xa0\xe6\x46\x69\x6e\x23\x9e\xbe\xeb\x76\xd8\xff\x1d\x77\xb9\xb7\xc9\xd4\xf0\x7b\x45\xe5\xf8\x99\x38\x18\xfe\x2f\x3e\x49\xd4\xf6\x62\x41\x86\x38\x44\xaf\x6a\x31\x77\x9d\x1f\x15\xee\x50\xb8\x43\xb7\xc7\xd1\x07\x77\x28\xdc\xa1\x70\x87\xc2\x1d\xba\xfd\x8d\x05\x77\xa8\x98\x3b\x34\xf4\xb4\xa8\x86\xe7\xb8\xb4\xcd\xe2\x75\x2e\x61\xe0\x84\xd0\xd7\xf2\x37\x2f\x87\xb8\x6f\x86\x77\xbb\x64\x69\x7d\x94\x91\x8e\x68\xee\x1c\xe3\x66\x52\x73\x47\xd5\x59\xf8\xea\xeb\x77\xd5\x99\x4c\x2c\x47\x33\xe2\x51\x99\x67\x3a\x8b\x38\x57\xc6\x0d\x14\x79\x2f\x04\x1c\x41\xf1\x53\x17\x3b\x52\xde\xa1\x11\x3a\x4d\x4a\x2e\x8d\x2a\x6c\x0b\x6f\x5f\x2a\x97\x8e\xe7\x02\xfa\xd4\xca\xb9\xf2\x33\x79\x32\x83\xfd\x3b\x59\x9f\xa4\xa4\x23\x20\xf2\x67\xec\xdf\xb9\x64\x7b\x5c\x1f\x1e\x3e\xf1\xd7\x31\x31\x1e\xf7\xc3\xf5\x22\xca\xd3\x51\xea\xef\x89\x96\x37\x19\x4f\x47\xdc\x91\x17\xbd\xc1\xfd\xdc\xfe\xf8\xe2\x5e\xc6\x7d\xa9\xa2\x9f\x47\xce\x64\x3f\x30\x75\x3f\xa9\x7f\x78\x1f\x56\x79\x67\x32\x49\xab\x5e\x44\xda\xe4\xc5\x08\xdf\x76\xfa\xe2\x32\xd7\x62\x79\xed\xe6\xcf\x92\x5f\x62\xf9\x8a\xb3\x7c\x06\x21\x1f\xc2\x2e\x78\x90\xea\x1c\x2c\x1c\x3f\xc3\xc7\x17\x37\xf1\x47\x67\x96\x71\x94\xaa\x26\x90\xb5\xb4\xd2\x93\x3f\x0e\x11\x5b\x23\x9b\x49\x9c\x5d\x62\x5a\x5a\x60\xca\xcf\xb2\x82\x25\xa6\x61\x69\xdf\xb4\xc9\x37\xad\x52\x30\x5e\x3c\xe7\x1b\xf1\xe2\x07\xf9\x9d\xa6\xfd\x25\xfc\xa9\x54\xb1\x30\x43\xb8\x2b\xbd\x58\x2d\x5a\x09\xff\x98\xdd\x4a\x0d\x53\x70\x6b\x93\x2b\x82\xe6\x59\x52\x86\xee\x05\x55\x65\x68\x15\xf9\x75\xad\x26\x57\xe0\xc4\xef\x94\xdb\x25\x97\x69\xb0\xe5\xcc\x0d\xb6\x78\xb2\xb2\x39\xf5\xd0\x5b\xa0\x66\x5e\x76\xf9\x3e\x4b\xdc\x0e\x34\x0f\xfb\x47\xf8\xb9\x71\x3b\x49\x98\x27\xfa\xe2\x43\x97\x5f\x36\x75\xa5\x97\xa2\x64\xc8\xf2\x3f\x34\x5e\x39\xcf\x5c\xde\xf1\x40\x73\x5b\x17\xce\x73\x66\xf1\x6c\x8d\x05\xee\xb9\xd7\xec\x29\x29\xcc\x13\x15\x26\x0a\xb3\x29\xa3\x89\xa8\x38\x1d\xdb\xaa\xa2\xba\xf4\xb5\x67\x27\x24\xe2\x2c\xfe\x1d\xf1\x6e\xa3\x69\x89\xda\x26\x7e\x60\xdb\xd1\x2b\x77\x26\xd0\x6f\x9c\x75\xfa\x4d\x34\x6c\x72\xff\xd8\xb2\xe4\x0c\xd7\xef\xe4\x2d\xec\x3f\xec\xaa\xee\x05\xb9\xab\x97\xac\x19\xc3\x27\xcd\x28\x63\xd9\xac\x4b\x37\x43\xd6\x38\xb0\xa6\x30\x27\xa6\xae\x05\xc4\xdf\x68\x93\x84\x26\x26\x35\x98\x21\xc4\x44\x4f\xad\x28\x45\x0b\x26\x96\x30\x6e\xe2\x4c\xc2\xa8\x95\x93\x76\x8c\x3e\xd2\xaa\x56\x63\x7e\xfc\x0b\x5d\x77\xe6\x76\x75\x27\xca\x3f\x6f\x3c\x77\xb2\x81\xd6\xab\xed\xf7\xb2\x55\x4f\x67\x43\x37\x56\xf5\x4c\x47\xfe\xea\x93\xc8\x2b\x7c\xef\x58\xa4\xb2\x47\x7b\x2f\x9a\xde\xd1\xe6\xc1\xab\xe3\x99\x7f\xb1\xb0\x1b\x9c\xe0\x5c\x69\x39\x85\xe7\x5e\xb7\x55\xe4\xb7\xec\x79\xb6\x53\xb0\x43\x01\xcf\x9f\x6c\x55\xd1\x5c\xf3\xa3\xe7\xcc\xdd\x38\x78\x56\x7c\x4a\x5b\x3e\x10\x96\x1a\x46\xe4\x7b\x4a\xe2\x6b\xb1\x97\x12\xfd\xdb\x75\x8c\xe8\xbf\x92\x21\x56\xf8\xcf\x68\x4e\x2a\xbe\xb8\x20\xc9\x15\x8f\xb8\x16\xfd\xbc\x4d\xc7\x4e\xab\x95\xcf\xa5\x85\x7d\x86\xfd\xb8\x20\xde\x4b\x5c\x11\x2b\x0a\x25\xa6\x2a\xdf\xb5\x40\x7f\x0d\xff\x73\x4a\xa2\xdf\xdc\xf4\x37\xdd\x23\x5a\x40\xc2\xff\x0e\x83\x24\x85\xff\x1d\xee\x64\x90\x79\xf6\xf0\xa5\xcc\x34\x57\xb2\x32\x4d\x6a\xc0\x0b\xf9\x56\x51\x2b\x16\xfd\x2d\xfe\xd5\x48\xa2\xbf\x95\x2a\xf9\x8f\xff\xfc\x07\xff\x5e\x95\xdd\xb8\xe2\x86\x61\x8f\xf6\x1c\x2b\x7e\xa5\x99\x5f\x5e\x4c\xdb\x30\xed\x29\xff\xe6\x99\x11\x40\x76\xdb\x47\x7e\x64\xc8\xab\x61\xb4\x71\xa4\xc3\x5c\x9a\x95\x15\x63\x57\xa3\x7e\xe4\x5a\x9a\x1d\x57\x8f\xfd\x9e\x9c\x7a\x2b\xdc\x2c\x9a\x6e\x76\x12\x1f\x6a\xf9\x6e\x9a\x6e\x96\x0b\x2e\xff\x5c\xd9\x10\x31\x90\x71\xee\x1c\x7d\xd9\xa6\x3d\xad\x7d\x11\x9c\xf3\xec\xc5\x3a\x65\xe6\x3d\x7c\xf5\xc9\x85\x6e\x5e\xd8\x6f\xdf\x5f\x89\x47\x2e\xef\xaf\x96\xbf\x0c\xda\x2e\xda\x77\x7e\x95\x88\x3b\xf5\x93\x8f\x85\xad\xef\x92\xa8\x96\xec\xcd\x98\x23\x26\xba\xdd\xf4\xc5\xf5\x59\xcc\xd3\xd2\xbf\x8f\xc3\x7d\xaa\x4d\xde\x83\xe6\xba\x3e\xff\xd6\x61\x0c\x99\x59\xc9\x92\xf9\x24\xfe\xc1\xd0\xc8\xcc\xb1\xd3\x7f\xb3\xca\x4c\xe6\x56\xfc\x8b\x50\x17\x5c\x6a\x83\x63\xd3\x5a\xf1\x90\xb1\xb5\xe1\x95\x1d\x6d\xd9\xa1\x9d\x4c\x77\x3c\xe2\xf8\x1d\xdd\x99\xf1\x6f\x18\xdd\x25\xca\x51\xba\x4b\xc9\xd0\x55\xbd\xc8\x70\x53\x0f\xf7\x0e\xb6\x16\xc4\xfd\xf8\x78\x62\xda\x9a\x65\xfe\x95\x2a\x41\xf6\x62\xfa\xa0\x61\x43\xd0\xc1\x5a\xe5\x73\x17\xad\x6f\xbd\x9d\xae\xb5\xc7\x4b\xab\x1f\xee\xbc\x4b\xaa\x93\xaf\x36\xa7\xbe\xaa\xe2\x19\xa1\xa2\x6c\x42\x4e\xa2\x43\x4c\xb9\xb5\x2f\x1c\x48\xba\xba\x9a\x64\x94\xb8\xaa\x52\xf1\x79\x57\x55\x06\xae\x78\xba\x9d\x78\xe5\xea\xfa\x7e\xe6\x0c\x22\xbe\x19\x2b\x9d\x24\xb4\xba\xfb\x56\x59\xb3\xc4\xb5\x2c\x6a\x1e\xa8\x75\xea\x38\x2e\xb1\xfd\x57\x73\x12\x50\x95\xa8\x35\x54\xd2\x7d\xad\x7c\x47\xc3\xf4\x75\x67\x41\xbc\xb7\x58\x96\x78\x4d\x97\x75\xaf\x57\x9b\x8a\xd2\x6d\x6b\x3a\x88\xeb\x58\x8d\x04\xb0\xfa\x66\x6d\x3e\x23\xc3\xf6\xeb\xea\x14\x5e\x5e\x63\xb5\x6a\xc6\x8a\x3b\x39\x1e\xc9\x8e\xf4\xde\x63\x3c\x52\x3d\x06\x91\x86\xa9\xdc\xec\x53\x71\xbe\xa3\xde\x32\x54\xd8\xa1\x64\xac\x94\xad\x4b\xb6\x8b\x44\xe6\x75\x29\xc8\xac\x7c\x34\xf1\x1e\x74\x99\x05\xbe\xf0\xbf\x2b\xb8\xe7\xe9\xe8\x3f\x0b\x33\x8a\xef\x81\xd9\xab\x45\xca\x76\x0c\x2d\x86\x5e\x4f\xd5\x34\xd3\x00\x56\x76\x0a\x44\xe2\xe3\x2b\xf8\xdf\x61\xe9\xd0\x1f\xb5\x7c\x22\xc6\xba\x5e\x50\x81\x1a\x69\x42\x36\x3f\xc4\x25\xdf\xaa\x96\x68\x4a\xbe\x7b\x23\xf9\xab\xc3\xb1\xc8\xb8\x94\xdc\x9d\x92\xea\xfb\x4b\xe8\x29\x11\x70\x86\x9e\xe7\xfd\xb8\x6d\x74\xda\x73\x2c\x72\x4f\x26\x2c\x73\xdc\x1e\x35\x35\xa7\xc9\x38\xd8\x20\x50\x4d\x7f\x1e\x9e\xb3\xc2\xc4\x9c\xef\x04\x5e\x91\xd3\x7a\x83\xef\x21\xef\x94\xde\xda\xf7\x90\xad\x66\xf3\xf7\x20\xeb\x81\xe7\x9c\x5a\xe1\xfa\x99\x26\xbf\x62\x0e\x91\x87\x9a\xe9\xaf\xc2\xcd\xc5\x6e\xbb\x7e\x6e\x4d\x8e\x32\x08\xed\xe9\x43\xe0\x69\x01\x99\xc6\xd1\x0e\xc3\xc0\x64\xf7\x8e\x65\x99\xf6\xf4\x6b\x62\x71\x0b\x47\x9d\xce\xa8\x11\xfa\x94\x3f\x7e\xa6\xf6\xc1\xc5\x80\x3a\x20\x33\xd7\x4a\x4f\xe1\x2c\x9d\xd1\x50\x3a\xf0\x66\xe9\x3d\x45\xee\xca\xda\xd9\xb6\x9d\x80\x75\xd1\x6c\xf1\xbe\xfe\x4a\x8c\xb9\x45\xbc\x0e\x3b\x74\xa3\xf3\x2d\xd9\xe0\x44\x3f\x3f\xdd\x33\x03\x53\xd7\x2c\xd5\x75\x8c\x73\xe5\x1f\x99\x53\x5b\xd3\x15\x82\x34\x9d\xaf\x7b\x1a\x6d\xd4\x78\xda\xa5\x2a\x9d\xeb\x78\x01\x4d\x75\x36\xee\xf5\xe3\x54\xb9\x73\x27\xe8\x83\x45\xf1\x59\xb2\xe7\x7b\x84\x17\xee\x6e\xae\xca\x3f\xde\xdc\x5d\xe6\x7f\xf4\x73\x1f\xcb\xed\xb2\x0f\x25\xeb\xe1\x9e\x69\x53\x72\x37\xb7\xac\x70\xb6\xb3\xb0\x0c\xc7\xcc\x5f\xcd\x36\x62\x7c\x72\xc9\xcf\x9f\xc5\x32\xb8\x1b\x40\x02\xc7\x22\x5e\xe9\x4d\xa8\xc9\x51\x14\xe7\xca\xf5\x0f\xd3\x0f\x92\x37\x47\x81\xfe\x92\x17\x04\x34\xbe\x6f\x12\x22\xfb\x29\xb3\xc6\x80\xd5\x37\x9c\x03\xd6\xcd\x4b\xdb\xbc\x62\x29\x92\x72\xf2\x0b\x12\x92\x87\x8b\x0e\xab\xcf\x3d\x4a\xf8\x5b\x3e\x83\x4f\xf4\xb9\x67\x06\xac\x3c\xf2\x23\x38\x2f\x4e\xc6\xdd\x25\xf1\x4b\x97\xad\xf6\xa2\x7d\x24\x4e\x1b\xbf\xc9\x8a\x85\x85\xba\xe6\x6a\x2f\xa6\x65\xf2\xcf\x0a\x31\xf8\x47\x61\x3e\xfc\xf7\xc3\xf3\xc5\xd5\xe7\x9b\xdb\xec\xc5\x85\x63\xcd\x67\xe4\x33\x9b\xa7\x2a\xe4\xca\x34\xaa\xfa\x52\x3e\x76\x75\x46\xf3\xdc\x69\xc1\xeb\xb9\x72\x3c\xb3\x83\xe3\x24\x59\xa6\x23\xdd\x3a\x77\x9e\xe9\xb0\xe6\xb1\x34\xdf\xe7\x3c\xb8\x9b\xbd\x1e\xf6\xd1\xd0\x3c\xaa\xf1\x6a\x95\xf8\xd3\xab\x5a\x4a\x17\x0e\xd4\x2e\x6d\xb3\xc1\xad\x34\xdd\xa4\xd5\x8e\xaf\x70\xda\x9b\x1b\x73\x56\x15\x31\x46\x85\x8e\xf7\x9b\xe3\x07\xe8\x73\xb9\x8b\xb7\xd7\x8f\xd5\x17\x69\xce\xbb\xc7\xfb\x8b\xcb\xeb\xaa\xac\xf7\x17\xff\xcc\x5e\x22\xf6\xa2\xa2\x03\xff\xfe\xf5\x97\xeb\xfb\xdb\xeb\xc7\xeb\x87\xe7\xdb\x2f\x57\xd7\xcf\xb7\x17\x9f\x4b\x85\x2e\x34\x6b\x4e\x7e\xf5\x1c\xde\xd1\xc3\x13\x93\x58\x46\x8c\x3c\xdc\x8b\xe1\x67\x40\x0d\x78\x87\xc2\x37\xed\x5c\xfc\xaa\x3c\x5e\xdf\x5e\xdc\x3e\x72\x6f\x5e\x5a\x43\x29\xbc\x72\xb3\x76\x19\x0b\xaf\x16\xac\x15\xae\xef\x3e\x56\xd6\xa3\xd0\xb1\x43\x4f\x55\xcd\x42\xe9\xa6\x05\x0b\xad\xd3\xce\xdf\xbd\xdc\x31\xe3\x9b\x7f\xb9\xfb\xf5\xd3\xf5\x7f\x3d\x7f\xfe\x72\xc5\x7f\xbb\xe7\x8a\x13\x2e\x3c\xdd\xa2\xe7\xc8\xee\xba\x64\xc1\xe4\xa3\x68\x87\x4b\x5f\xe1\xe7\xaf\x9f\x1e\xbf\x3e\x54\xd4\xaf\xf4\x1d\x67\x7a\x48\x74\x83\x7f\x6a\x66\xf0\xab\xe3\x45\x88\xb1\xf4\x76\x57\x37\x0f\x17\xbf\x7c\xba\x7e\xfe\xe7\xc5\xcd\xe3\xf3\xaf\x5f\xee\x9f\x6f\xaf\x1f\xff\xf9\xe5\xfe\xf7\xe5\x15\xa8\x69\xe5\xab\xaf\xf7\x17\x8f\x37\x5f\x6e\x45\x4b\x65\xdf\xc7\x55\x74\x4a\x4c\xfe\x01\x2a\x23\xa4\xad\x45\xe1\xaa\xca\xa0\xc8\x2e\x52\x48\x39\x5d\x5c\x0a\x95\x90\x85\x56\x8a\x10\x9d\x2d\x24\x5d\x64\x5b\x4a\x98\x2d\xc5\x9b\xd7\x3e\x4f\xe9\xb2\x44\xde\xb4\x06\x95\xa5\x44\x5b\x01\x68\x61\xf1\x38\x86\xbd\x06\xb1\x62\x49\xa0\x1f\xe7\x36\x13\x38\x0b\xff\xf8\x45\xf3\x09\x6b\xb9\x8e\x51\x5d\x73\xb5\xe1\xdd\xf2\x9f\xea\x71\x51\x50\x7f\x0b\x69\xdc\xf6\xff\x60\xe5\xd6\x7c\x2e\x85\x36\x3e\xb6\x69\xae\x62\x3d\x32\xf5\xf5\xe6\xb6\xca\x4d\xe3\x11\xcd\xf8\x62\x5b\x6f\x79\xa6\xcf\x3f\x89\xe7\xb8\xda\x34\x3c\xbd\x5e\xa1\x55\x7c\x74\x12\x81\x58\x8d\x95\x09\x0f\xb8\x50\x45\xfb\x76\x29\x39\xf7\x83\xb4\xcc\x05\xb1\x89\xef\xdf\x79\xce\x4b\x31\xc2\xf9\x44\x33\xad\xb9\x47\x1e\x5f\x3d\xe2\xbf\x3a\x96\x71\xae\xf4\xba\xf9\x14\xaf\x41\xe0\x7e\xe4\x9c\x8b\xe4\x86\xd5\x48\x9d\xea\xb9\x8b\x6c\xb8\x75\xda\x3d\xeb\x16\xaf\xb0\xb3\x10\xc9\xb9\xf2\xdb\xe3\x63\xe1\x94\x78\x36\x7b\xa0\x59\x2c\xc6\xf3\xc3\xff\xc7\xde\xbb\x35\xb7\x8d\x63\x89\xe3\xef\xfb\x29\x50\xde\xad\xea\xdd\xad\x50\xce\x65\x3a\x35\xed\xaa\xff\x83\x63\x3b\x69\x55\x3b\xb2\xd6\x52\xd2\xbf\xa9\x71\x97\x0a\x22\x21\x09\x63\x0a\x60\x48\x48\x8e\x3b\x93\xef\xfe\x2f\xdc\x48\x90\x04\x40\xe8\x62\xc7\xe9\x88\xfd\xd0\xb1\x00\x1c\x1c\x1c\x1c\x9c\x1b\x80\x03\x14\x53\x92\x14\x27\xe0\xc5\xcb\x06\x04\x99\xc2\xb6\x2c\x7f\xdd\x28\x56\xb9\xcb\xcd\xf1\xd4\x2b\xa8\x6c\xb4\x25\x80\x57\xcf\xdb\x66\xa6\xb9\x14\xc2\x2c\x9e\xeb\x8b\x37\x57\x57\xe3\xc9\xef\xfd\xf1\xaf\x93\xab\x8f\x2e\x35\x51\x39\xa9\x1b\xdf\x4c\xa9\xba\x1a\x8d\x2e\x7d\x2a\xb7\xbc\x0b\x63\xe7\x85\x9a\x89\xac\x6e\xdd\xfc\x70\x46\xb2\xd5\x0e\x0e\x50\x5b\x07\x65\xb1\xbd\xb2\x50\x2d\xf6\xd5\x9f\xee\xaa\xbe\x90\x24\x43\x8f\xc4\x95\x2a\x3f\x93\x35\xd0\x92\xb7\xb0\x3a\x16\x4a\x03\x6e\x9d\x15\x63\xba\x5c\x42\x92\x9c\x80\x7f\xde\x1c\x1d\x4f\x31\x39\x2e\x16\x37\x47\x7f\x98\x35\x60\x3e\x2f\x64\x71\x35\x36\x5e\x31\x85\x2b\x12\x2f\x22\x89\x89\x44\xa4\xd7\x6a\xbc\x87\xd5\x68\x52\x7a\x7f\xcb\x46\x5c\x77\x68\xad\x97\x52\xb5\x8b\x87\x90\xab\xbc\xdf\x92\x84\xfc\x47\xa7\x06\x44\x2c\xc7\x71\x4b\xa1\x34\x00\xfe\xf2\xfa\xd5\x4b\xb3\x0a\x43\xf9\x12\x13\xa1\x99\xdf\xa3\xa2\xe0\x74\x91\x6c\x94\xa0\xf5\xb1\x51\x18\xa5\xf5\x97\xcd\x2d\xed\x14\x7d\xdf\xe2\x14\x6d\x28\x1e\x6a\xbc\xb4\x23\xa7\xb7\x19\x72\x17\x31\x64\x11\x9e\x25\xbd\x63\x58\xb0\x48\x9e\x40\x74\xf2\xff\x7b\x5e\xe9\xa1\x18\x5f\x60\x20\x11\xd8\x9a\xef\xb7\xd5\x34\xfe\x55\x12\xa8\x85\xfe\xd2\x9a\x23\x47\xe2\x92\x94\x26\xff\x69\x7a\x07\xef\xcb\xd5\x29\x47\xee\x08\x0c\x37\x5d\x37\x11\x48\xe7\x3d\x35\x88\x2c\x3b\xa7\x19\xb3\x43\x69\xda\xc1\x7e\x30\x88\xc5\x6d\x30\x16\xea\xfb\xa1\xd4\x2a\x7b\x28\xe8\x87\x52\xab\x1c\xe6\x34\xc5\xfa\x5e\x5d\x03\x62\xc7\x8b\x34\xd5\x87\x19\x5a\xb6\x25\x7a\x04\xc4\x85\xa2\x56\xda\xc0\xb6\x94\x97\xa8\x57\x15\x7b\x75\xf2\x6f\x62\x41\xa0\x65\xc6\xee\xcf\x71\xf3\x25\xad\x25\x4a\xf0\x6a\x79\x02\xde\x8b\x67\xcb\x9c\xa0\xbf\x11\x89\x2c\x57\xea\x5d\x44\x12\x4b\xa5\x57\xf9\x5d\x95\xfc\x31\x75\x9d\xc7\x81\x0d\xd2\x1b\xce\x18\x7c\x88\x8b\x1c\x75\x7a\xbe\x9d\x1c\xac\x1d\xea\x10\xef\xb6\xc4\x01\x58\x35\x8d\xdb\xb7\xed\x5c\x8d\x02\x13\x09\xe0\xd8\x7f\x47\x75\x97\x9d\x64\xe3\x35\xd5\x9b\x1f\x71\x43\xb9\x31\xfe\x10\xfc\xf6\xb5\xaf\x6c\xe9\xfa\xf1\xb7\x97\x7f\x80\x0d\xe1\x2d\xb7\x83\x7f\xd8\x2d\x46\x2b\x5f\xb6\xbc\x43\x44\xd6\x23\x51\x67\x5f\xb1\x94\xfa\x09\xb3\xea\x13\x8f\x7c\xb6\x95\x97\x7c\x02\x54\x67\xfb\xf8\x38\x92\xba\xf5\x92\x57\x6e\xa6\x29\xfc\xce\xa3\x34\xba\x70\xf4\x8f\xd1\xe4\xfd\xd5\xf9\x87\x4b\xeb\x6e\x25\x2f\x1d\xf4\xed\x3b\x99\xfd\xe1\xd9\xe4\xf2\xea\xac\xb6\xe7\xe1\x0e\xec\x5d\x7d\x1c\x4d\xae\x3f\x0c\xce\xfb\xd7\x4d\x58\x2a\xde\x56\xb7\xdb\x85\x9e\x72\xf0\xcc\x5f\xda\x4d\x68\x43\xa9\x59\xe2\x3e\x28\xad\x8a\x26\x94\x25\xe5\x42\xbc\x15\x0e\x30\x21\xa5\x78\x7a\x6c\xa9\xe6\x8b\x7a\xa3\xcf\xa8\xfd\xfa\xa6\x76\x64\x6d\x4c\xd3\xf4\x5c\x15\xec\x88\xae\x0b\xee\xb3\xee\xe6\x2b\x59\xa8\xf5\x17\x70\x72\x2c\x53\xe2\x87\x54\x9b\xc7\x4e\xbb\xae\x3c\x01\xff\xf4\x92\x1b\x80\x40\xd3\xa5\x13\xd5\xd2\x1e\xd1\xc7\xfb\xd5\x6e\x46\x61\xb5\x02\x51\x75\x9e\x7b\x5b\x03\xb0\x4e\xa7\xb0\x71\x74\xd9\x7f\xa1\x1d\x05\x4c\x0a\x08\x36\x27\xdb\xf0\x9f\xaa\x35\x19\x60\x23\x9a\x83\x79\x44\x1b\x51\xe7\xad\x1e\x57\x56\x22\x70\xd9\x8e\x5f\xbe\x00\x46\xff\x01\x97\x69\xbd\xfa\xbf\x01\x26\x09\x22\x0c\xbc\x2e\x8f\x23\xa6\x05\x72\x42\xd1\xe8\xa1\xd9\x0c\xc5\xec\x04\x0c\xe8\xc5\x67\x14\xaf\x98\xe1\xff\xbb\x4e\x2a\x9a\xa0\x2c\x9b\x83\x26\xcc\x91\x9a\xcb\xaa\xa9\xf0\xfc\x09\x4d\x50\x63\x5e\x09\x65\x51\x8e\x60\x72\xdf\xdd\x7f\x60\x07\x51\x4e\xd3\x66\x2f\x4b\xc8\x6d\x62\x5f\x17\xca\xaa\x02\x0d\xe7\x7b\x17\x4b\x5c\x20\xf3\x84\xcc\xf0\x0d\x37\x44\x4d\x6b\x7d\x3e\xcd\x3a\xb6\x6f\xde\x4d\x33\xef\xde\x8d\xc5\x3c\x07\x4d\xfb\x1c\x6c\x7e\xc8\xa5\xf9\x32\xf3\x5e\x0f\x49\x84\x1d\x3c\x53\x49\x85\x50\xce\xbc\x26\x94\xa5\x42\x64\xcb\x35\xb5\xdd\x08\x50\xce\x8e\x1d\xae\x81\xdb\xf0\x7e\xf7\x66\x38\x19\x5d\x5c\x7f\xbc\xb8\x9e\x9c\x5d\x0d\xde\x76\x5b\xdf\x16\x82\x55\xf9\x15\x7b\xce\xe3\x11\x0e\xbf\xcf\xa6\x40\x9a\x27\x9b\xcb\x2a\xfb\xf2\xfa\xdc\xd4\xf8\xfd\x74\x7c\xf6\xab\x38\x47\x39\x1a\x5a\x4e\x68\x96\xe7\x0b\x9a\x29\xe9\x75\xfb\xd3\xb3\xfe\x64\x34\x38\x1d\x07\x80\x70\xe6\x5c\xf5\xc0\x7d\x77\x79\xf5\xe6\xf4\xb2\x3f\x78\x7b\xe5\x3e\xeb\x79\xa2\x1e\x7a\xaa\x6e\x0b\xfa\x80\x5e\x9f\xf3\x59\xef\xbf\xf3\xc3\xcb\xe9\x8a\x61\x32\x97\xe9\x25\x75\xb8\xd6\x01\x75\xf4\x8f\xd1\xf8\xe2\xfd\x7e\x08\xf0\x6d\x56\xbf\xad\x9b\xbd\x2d\xcf\xaa\xfa\xb7\x3c\x2e\xf4\xa2\x59\xf2\x74\x8f\x0b\x55\xfe\x5c\x90\x54\xee\x90\xc8\x85\xb0\xbf\x1a\x54\x93\x3f\x0e\xba\x92\xdd\x75\x48\x35\x1f\x7b\x74\x76\xdb\x4a\x35\x58\x87\x1f\xc2\xe5\x0f\xbb\x61\xd3\xc2\xa0\xed\xbe\x4b\xd6\xab\x2a\xb6\xf7\x6c\x42\xcf\x60\x95\xbd\xb6\x32\xf7\xba\x7a\xf5\xa9\x20\x2f\xdf\xb4\x1d\x60\x71\x01\xd5\x70\x81\x87\x34\xe9\xbf\xb5\x7a\xbf\x98\x20\x16\x89\x07\x58\x1a\xee\xae\x99\xb4\x9f\xc8\xa5\x28\x9a\xa1\x6c\xde\x9a\x09\x01\x84\xae\xc4\xa4\xe3\x0c\x26\x49\x7e\x02\xaa\xd7\x58\xcc\x71\x1c\x3d\xfb\x0f\x00\x80\x4c\xf6\xfb\x73\xef\x65\xef\x55\xef\x6f\x47\x27\xe0\xa8\xe9\xbf\xb7\xd3\x0a\x98\x97\x2c\x45\x2e\x81\x6b\x15\xf6\x3c\x2f\x73\x09\xb8\xbc\xfb\x0a\xd1\x32\xa7\x56\x8f\x53\x28\x66\x79\x6a\x38\xce\x73\x79\x59\xb2\x2a\x51\xe4\x50\xdc\x24\xfb\x56\xba\x5c\x82\xbb\x32\x72\x71\x01\x71\x35\xf8\x37\x77\xa5\x4b\xac\x2f\xa0\x64\xe9\x2a\x87\xa9\x0b\x35\xe5\x10\x62\x32\x5f\xa5\x30\x77\xd4\x12\x8e\x7b\x4c\xb9\x2f\x5f\x3e\x0c\x26\x0e\x53\xa9\x40\x43\x79\xdb\x58\xd0\x60\xfd\x42\x78\xa2\x4a\x5c\x09\x16\x4b\x4c\xcf\xb2\x60\x34\x17\xc6\x8a\xf1\xd3\x6a\xda\x8e\x2b\x2b\x2e\x00\x5f\x14\xab\x0b\x81\x5b\x79\xef\x34\x43\xe4\x74\xd8\xff\xf8\x6a\x54\xff\x1d\x80\x04\x15\x71\x8e\x33\xa6\x99\xb3\x3d\x20\x40\xef\x48\x01\xd8\x02\x81\x14\xcf\x50\x7c\x1f\xa7\x08\xd0\x19\x57\xef\x80\xca\x9b\xa6\x00\x13\x51\xae\xf6\x05\x2a\xe0\x59\xce\x81\xb4\xc2\xc5\x06\x43\x35\xc4\xb4\x08\x81\x14\x2c\x17\xb7\x73\xab\xdf\xc5\x04\x87\x55\x6d\x05\x2e\xcc\xea\x12\xdf\x9a\xe4\xcc\x5a\x21\xc4\x1a\x45\xac\xfc\x32\xca\x50\x0c\x44\xa2\x0c\x24\x09\x93\xa0\x02\xe7\x28\x11\xd0\xc0\x8c\xe6\x82\x38\x57\x92\x38\x0d\x45\x66\xa7\x08\xff\x66\x29\x5c\xd3\xe6\x36\xbb\x6f\xa8\xa0\x94\xca\x1b\x35\x72\x92\xa2\x12\x24\x1b\x11\x43\x34\xab\x91\x43\xa9\xe3\xd9\x2a\x05\x31\x5d\x66\x29\xe2\xcd\x05\xcf\xb8\x97\x68\x00\x81\xac\x08\x56\x23\x9a\x52\x9a\x22\x48\x42\x06\x9b\xa3\x4f\x2b\x3e\x61\xb5\x68\x0a\x9f\x3c\x23\x0e\x51\x6b\xe8\x49\x74\x5a\x2e\xf2\x90\x08\xe6\xe3\x45\x26\x2d\x91\xd7\xfd\x49\xee\x2a\x53\x42\x4f\x25\x54\xb0\xca\x6a\xfe\xbb\x4d\x52\xeb\x27\x14\xde\x36\xa5\x73\x59\xd0\x96\xc8\xf5\xe4\x0c\xa6\x14\xae\x1e\x68\xd8\x50\xf2\x6e\x22\x73\x43\xc5\xe9\x77\x29\xf1\x5c\x55\xbd\xab\x51\x4e\x86\x73\x35\xc2\x3c\x87\xf7\xed\x42\xbb\x11\xe8\x47\xa2\x13\x15\xf9\x95\xdc\xdf\x3f\x77\xd4\xf0\x8b\x52\xf9\x71\x1b\x6a\xfb\xd6\x78\x26\x98\x6b\x07\x00\xd2\x44\xdb\x1e\xc0\x12\xc6\x3b\x42\xc8\x68\xb2\xe3\x20\x38\x04\xd7\x2c\x85\xb4\x5f\x33\xd4\xf4\x32\xba\x9a\x6f\x27\xd1\x37\x0b\x92\x9a\xd2\x54\xed\x24\x54\x89\xa4\x8e\xd7\x2f\xa6\x88\xc1\xca\xac\x37\xc1\x38\xcd\xdf\x5a\x68\x55\x85\x2e\x5e\x3c\xd7\xdf\x0d\x91\x51\x96\x73\xf9\x9c\xde\x09\x90\x89\xb4\x48\x4d\x29\xdf\x1c\x8d\x17\xb8\x28\x63\xb7\x20\x16\x78\xe3\x02\xac\x0a\x94\x68\x63\x24\x3a\x1b\xf4\xab\xd3\x08\xb5\xfc\xd7\x96\x88\x74\x47\x0e\xaf\x00\xad\x52\x23\xc5\x46\xaa\x05\x65\xf3\xed\x94\xca\x45\x36\x6f\xaa\x93\x8b\x6c\xde\x56\x24\x3a\x5f\xad\x4f\x53\x48\xed\x10\xaa\x42\xb7\x1f\x6c\x99\x31\x77\xab\x11\xeb\xf7\xd4\x9b\xc3\xd6\xbf\xb7\xc7\x5e\xcb\xd0\xfb\x14\x08\xb0\x83\x11\x61\x35\x20\x1c\xc6\x43\x65\x38\x3c\x85\x41\x57\x89\x8a\xb7\x1a\xf8\xbb\x37\xc3\x11\x37\xba\x51\x73\xf0\x65\x41\x9b\x00\xf5\x5c\xc9\xdd\x44\xb0\x7a\x99\xa6\x8f\xd9\x12\x1f\x0f\x65\x6a\x36\x32\xd3\xf5\xca\xc4\x69\x56\x9a\xc9\x12\x1b\xd5\x46\x04\xb2\x77\x02\x4e\x9f\xcc\x68\x93\x74\xf5\xd2\x36\xfd\x2c\xf9\xf1\x4c\x13\xb4\x11\x10\x7f\x02\x76\x68\x4d\x45\xd4\x47\xc7\x75\x03\xf7\xd2\x64\x1b\xa1\x21\x84\xd3\x56\x1f\x22\x38\x1d\xf6\xbf\x73\xb3\xd6\x63\x31\xce\x4b\x6a\xd8\xec\x14\x98\x24\x82\x21\x61\x3a\xf4\x1b\x9d\x6e\x6b\x36\xc0\x5e\x15\xb6\xda\x69\x92\xe4\xa8\x70\x57\x09\x31\x97\x64\xe0\x5d\x3c\x62\xe3\x03\xe4\x43\x36\x18\x65\xf9\x21\xeb\xf9\xaa\xfa\xb7\x84\x9f\xf1\x72\xb5\x3c\x01\xaf\x7f\xfe\xf9\xd5\xcf\x9d\xb5\x31\x91\xb5\x5b\x5b\x07\xcd\x4f\xd2\x03\x13\x86\xe6\xcd\x9b\x55\xcd\x4f\x1c\xe3\x7a\xfa\x88\x76\x79\x3e\x66\x2d\x87\x5b\x25\x3f\xbe\x84\xfb\x6e\xcb\x39\x8c\x97\x24\x90\x0f\xd8\x37\xc3\xa1\x70\xe4\xee\xe8\xc0\xe7\x4d\x84\x00\xb3\x18\xf7\xe6\x17\x19\x0b\xc9\x55\xa3\x5a\x21\xae\x1a\x72\xdc\xfe\xd2\x0f\x38\xf1\x55\xa8\x86\x6b\xaf\xd5\x35\xd1\xde\x29\x76\x37\x76\x90\x27\x32\xa5\x5c\xa0\x10\xed\x0c\x01\xd6\x55\x89\x25\xf6\x47\xa7\x52\x91\xc9\xd7\x0f\x00\x9d\x59\x35\xaf\x1f\x91\x8e\xd8\xdb\xbe\xcd\x8b\x2a\xb5\xea\x4e\xd6\xc5\x25\x07\xe3\x32\x2e\xca\x42\xbb\x6d\x51\xcf\xee\xda\x34\x2d\xca\xd2\xa7\x60\x59\x7c\x97\xa6\x40\x8b\x87\xcb\xf9\x70\xc7\xf2\x4d\xfe\x6d\xcc\x6d\x07\x2d\xc4\xf4\xeb\x16\x36\x5d\xea\x56\xc5\x9d\x2a\x38\xa3\x89\x57\x9e\x06\x45\x67\x4a\xe6\xd9\x0d\x8c\x4f\x49\x74\x03\x28\x25\xa6\xcf\xde\xe8\x32\x5a\x02\x4d\x96\x04\x15\x7e\xcd\x18\xd2\x97\xfc\x42\x74\x9f\x59\xd3\xab\xb1\x81\xde\x40\x0f\x81\xd4\xdd\x67\xa7\x01\x10\x0e\xac\x43\xe7\x02\x20\x93\x48\x17\x4e\x9d\x09\xca\xf3\x05\xbe\x72\x9f\xd6\x05\x81\xb6\x51\x07\x9d\xbd\x23\x89\xf4\x72\xf0\x16\xaa\xfd\x1d\x47\x0d\x87\x55\x10\xd5\x38\xdc\xad\xef\x5d\x83\x73\x0e\xcb\xa9\xef\x2b\x99\xf3\x04\xb5\xac\xce\xdf\xbd\x93\x8e\x95\x16\x96\x4d\xc1\xca\x12\xbb\x76\xcd\x6a\x73\x50\xd7\xad\x59\x09\x51\x29\xd6\xb3\x6a\x13\x7b\x0f\x5a\x75\xaf\x7b\xf5\xf6\x79\xfc\x2e\x15\xf2\x56\x5b\x4e\x8d\xfb\x10\x61\xf0\x3a\x60\x02\xdb\x65\x84\x70\xc8\xa0\x69\x5c\xfc\x34\x12\x48\xaa\x0d\xef\x21\x4d\x8a\x9f\x1c\xfa\xb3\x4b\x73\x05\x47\x21\x40\x80\x50\x27\x1d\x1a\xdf\xdf\xde\x47\x03\xa7\xce\xd9\x69\x1f\xd0\x8e\x89\x53\x8d\xef\xbd\xaf\x8d\x3c\xa4\x2d\x98\x39\x68\x72\xeb\xe8\x3d\xf8\x8e\xfe\x6e\x2e\xd0\x80\x26\xc8\xe6\xfd\xe8\xdf\xed\x5b\xfa\x56\x9f\x47\x17\x1c\xdc\x9d\x20\x96\xdc\x28\xf2\xa9\xf6\x87\xed\x31\x47\xdf\xda\xab\x94\xa5\x39\xf7\xe6\x17\x2c\xb0\x3c\xe7\x75\x7c\x03\xdd\x25\x6e\x31\x50\x2c\x15\x14\xb1\x18\x18\xfc\xd7\xd5\xf9\x23\x5a\x51\xe5\x7b\x3c\x5b\xaf\xd1\xeb\xe4\xcc\x38\xe6\x5a\xad\x51\xfd\x7b\x7b\x8d\xd6\xde\x00\x32\xd7\xa8\x2e\x38\xac\xd1\x20\x06\xdd\x68\x8d\xea\x17\x78\x50\x52\xac\xa6\x04\x59\x32\x05\x6c\xab\x40\xbd\x9a\x72\x55\xa0\xfc\x11\x3b\xfc\xb1\x17\x73\xe3\x55\xa3\x9e\xf1\x0a\x92\x75\x51\xeb\x32\xab\xea\x95\xb0\xec\xce\x51\xad\xd0\xa2\x84\xdb\xaf\x2b\xd5\x54\xb1\x51\x7c\xbf\xe5\x5a\xdf\x6a\xcf\x52\x67\xd8\x56\xd7\xf6\x64\xd9\x94\xcf\x72\x0e\x67\x33\x1c\x83\x59\x4a\xef\x00\x64\xa0\x3f\x04\x4a\xa1\x01\x9a\x8b\x38\x3f\x48\xd1\x1a\xa5\x7f\x5d\xf1\x00\xb3\x2c\xc5\x28\x19\x53\xcb\x6a\xec\xf0\x2a\x4a\x37\x60\xe4\x76\xa5\x02\xc0\x00\x7d\x1b\xfd\xe2\x73\xc6\x29\xdf\xb8\x66\xdd\xfc\xf6\xb8\xf3\x78\x8b\xee\xf7\x18\xa1\x2b\xef\xe8\xee\x0f\xa4\x38\xc4\xd5\x1d\x45\x0c\x8b\x35\x6e\xd2\x71\x70\xbc\x31\x20\xb2\xa7\x2e\xc8\xf8\x2b\x50\xeb\xf9\x6d\x1b\x4a\x7b\xd8\xda\xb4\xe5\x3e\x68\x7f\x1b\xb9\xcc\x20\x98\xbc\xdd\xa3\xe8\x3c\xbc\x4a\x93\x8e\x15\x57\xbf\x87\x91\x72\xe1\x86\xc9\x5c\x88\xb5\x59\x4e\x97\xf2\x88\x06\x5c\xa2\x6a\x09\x1f\x56\xee\x61\xe5\x5a\xbe\xc3\xca\xdd\x68\x14\x21\x31\x78\x7b\x29\x9a\x3b\xbc\xe8\xfa\x66\x23\x62\xdc\x0a\x95\x95\x81\x78\xed\x18\x20\xce\x6a\x90\xa1\x04\x4c\x61\x81\x12\x40\xe5\xf5\x29\x9a\x27\x28\x07\x98\x80\xbb\x05\x8e\x17\xfc\xa7\x7b\x00\x73\x04\x0a\xc4\x7a\x9b\xd8\xe3\xdd\x91\x45\x11\x9f\x74\x92\xb7\x71\xe7\x47\xc4\x32\xb9\x85\x82\x67\x58\x59\xd9\x12\x00\x60\x14\x4c\x91\x36\x47\xf4\x28\xf8\x10\x2d\xe8\x9a\xf4\xf4\x9e\xbf\x17\xef\xae\x5e\xd2\xf9\x1c\x13\xf7\x49\xfc\x1a\x8a\x17\x66\x93\xf2\xe4\x33\xa3\x00\x93\x44\x5c\xae\x05\x78\x06\x44\x72\x3e\x50\x2c\xe8\x2a\x4d\xc0\x1c\x11\xbe\x02\x10\x48\xe9\x5c\xf8\x0f\x70\x95\x32\xde\x42\x9c\x72\xee\xc0\xde\x19\xb7\x00\x8e\x3c\xda\x0e\xb4\x15\x67\x08\x8b\x15\x92\x84\x4f\x1b\xa3\x31\x4d\xa5\xf4\x47\xc9\x71\x82\x08\xa7\xeb\xf4\xbe\xa2\x2b\xe8\xcf\x00\x5b\xe0\x42\x3e\x9f\x24\xc6\x4a\x0a\x0e\x27\x97\x79\x5a\x9f\xc9\x52\x5e\x57\x2e\x3c\x54\x70\x70\x12\x2d\xe7\xb8\xba\x44\x9a\xcd\x30\x97\x76\xf9\x90\x23\x6f\xd8\xe6\x0b\x64\x19\x0f\xa3\x12\x17\xce\xda\xd0\xcf\x1f\xc1\xfa\x04\x91\x44\xa4\x10\xf7\x4b\xd6\x06\x9b\x24\x0a\xdd\xca\x5d\x44\x24\xe1\x73\x50\xe2\x9d\x43\x32\x47\xcf\xc0\x14\x71\x4e\xd2\x15\x30\x89\xd3\x55\x82\x12\x70\x87\xd9\x42\x5d\x75\x14\x15\x7b\xa0\xcf\x40\x0c\x09\xa0\x24\xbd\xe7\x4b\x41\xaf\x92\x04\xdc\x2d\x10\x1f\x2c\x59\x2d\x51\x8e\x63\x28\x67\x80\xcf\x57\x59\xc5\x43\x03\xfe\xcd\x68\xbe\x84\x4c\x9c\x1f\xab\xe7\x48\x6f\x7f\xc1\x07\xcd\xb2\x6e\x8a\x41\x72\x7f\x65\x7f\xb0\xab\xfa\xa2\x4d\xce\xe0\x45\x1b\x28\xc2\xda\x74\x8d\xf5\x9c\x28\xb9\x32\xc7\x6b\x44\x4a\xa6\xea\x01\x71\xeb\x81\x13\x7f\x8a\x00\xc2\x6c\x81\xf2\x1a\xbd\x69\x2e\x2c\xa5\xa4\x84\x01\xc1\x90\x26\x96\x05\x44\x28\xe3\x50\xd7\x38\x41\x89\x5a\x3e\xcd\x95\x23\x6d\x2e\xc1\xd4\x64\xb5\x9c\xa2\xdc\xbd\x94\xe4\xf7\x39\xaa\x72\x03\x45\x98\xb0\x88\xe6\x91\x24\x80\xfd\x59\x1a\xf3\xd3\x23\xec\x64\x6d\x75\x27\x64\x7c\x36\xdc\x94\xaa\x7a\x61\xfe\xf7\xf8\x6c\xf8\x0c\x7c\x38\x1f\x3e\xe3\xe4\x1a\x9d\x8d\x87\xff\xa3\x75\x8f\x72\xb2\x97\xab\x82\x49\x72\x08\xca\x71\x5a\x95\x0c\xfc\xcc\x24\xa4\x42\xa7\xe0\x8b\x7d\x7c\x36\xec\xa0\xcf\xbe\x94\x77\x80\x01\xc2\x6c\x5e\xb2\x85\x30\xd7\x5c\x64\x96\x73\x9f\x70\x95\xa1\x89\x80\x0b\xc1\xea\x24\x51\xf7\x69\xb8\xf8\x4b\x29\x4c\x0a\xb5\x21\xa9\x65\xb4\x26\x86\x85\xc9\x84\x70\xe6\x44\x5e\xe2\xa2\xc0\x64\xee\x92\xd3\x09\x2a\x98\x7a\xc8\x60\x7b\x71\x1d\x28\x42\x71\xf6\x26\xa5\xf1\xed\x26\x22\xb4\x3f\x14\x4d\x1a\x12\xbf\x3f\x54\x87\x2f\x51\x71\xac\x6a\xf0\x02\xc8\x6a\xf4\xe4\xe6\xc2\x31\x77\x65\x7a\x25\x98\x58\x64\x69\x13\x82\x13\x31\x00\x0b\x90\xc1\x9c\x69\x79\x7c\xaa\xa3\x1c\x9a\xa8\x67\xb5\xda\x5c\x16\x73\x69\x05\xa8\x58\xfa\x7a\x6b\xb8\x83\xf1\x82\xbd\x15\x00\x62\xec\xb9\x45\xe7\xa0\xcf\x59\xff\xfc\x9a\x0f\x1a\x2a\xde\x06\x39\xe2\x5e\x16\x22\x4c\xeb\x93\xfe\x10\xc8\xb1\x7f\x84\x29\x4e\x00\xfa\x0c\x97\x19\x37\x09\xb9\x9d\x77\x73\xf4\xe2\x97\x97\xbd\x17\xaf\xff\xde\x7b\xd1\x7b\x71\xfc\xf2\x6f\x37\x47\x9c\x63\x6e\x8e\x5e\x3e\x7f\xfe\xe2\x24\x99\xfe\x72\x72\x72\xfc\xfa\x6f\xcd\xbc\x38\xb6\x6f\x13\xd7\x03\x7d\x8e\x51\xd6\x7d\x48\xba\xa9\x4b\x45\x2b\x35\xd4\x14\xc7\x22\xd2\xca\x47\xaf\x26\x5e\xd9\x59\x6a\xbe\x9a\x0a\x14\x92\x7d\xd0\x41\x23\x21\xfd\x36\x70\x87\xd3\x94\x77\x96\xa3\x7f\xc9\x35\x89\x67\x95\x09\x4d\x57\xac\xc0\x09\x12\x53\x20\x26\x49\xe8\xef\xee\x41\x87\x3a\x7b\x9b\xd1\x3c\xd8\xe1\x0b\x74\xf9\xc4\x53\x2d\x38\xe9\xd0\xc4\x61\x1e\x5d\x78\x8c\x50\x7f\x0d\xa3\x96\xb7\x11\xb2\x6c\x48\x13\x15\xbb\x28\x83\xc5\x95\x38\xd0\x02\x53\xaf\xdb\x67\x7c\xf9\x57\x82\x15\x13\x30\xa6\xc7\x6f\x79\x63\xb1\xfa\x0b\x21\x53\xcb\x75\x3f\xac\xc2\x29\xcf\x64\x3f\x7c\x92\x35\x6c\x6f\x9f\xa8\x2a\xd1\x20\x02\x45\x8b\x5a\x2a\x66\xe7\x9c\x2f\x2f\x3e\x33\x94\x13\x98\x5e\x10\x86\xd9\xfd\x68\xef\x72\x68\x83\x68\x8d\xfe\xc2\xb9\x76\x03\x3c\xe4\x17\x12\xc5\xd1\xdf\x66\x4b\x02\x6c\x12\xd5\xd1\x5f\x8d\xf7\xca\x84\x25\xa5\xd4\xe5\xe2\xe9\x16\xdd\x17\x20\x47\xa9\x54\xaa\x0b\x9c\x71\x13\x05\x8a\x89\xa6\x33\x25\x3c\x7a\x4a\x0c\x95\x99\x5e\x04\x3f\xf5\xc9\x33\x30\xa0\x8c\xff\x4f\xa6\x70\x14\x16\xe0\x39\x45\xc5\x80\x32\xf1\x4b\xc7\x2c\xef\x42\x8a\xc0\x68\x94\x95\x10\x4a\x22\x72\xe9\x4c\xa4\x90\xe1\x43\x55\x2a\x49\x8f\xb8\x2f\xd5\x6c\x49\x34\x5c\x80\x3e\xe1\x0c\xad\x86\xcc\x0b\x15\x20\x09\x42\xd8\x82\x53\x04\x08\x25\x91\xb0\x67\xac\x30\x14\xa5\x68\x5e\x23\x94\x07\x9c\x02\x25\xcc\x79\x59\xc2\x0d\x23\x94\xa5\x30\x46\x09\x48\x56\x02\x69\xa8\x93\xe5\x72\x9b\x14\xe5\x73\x04\x32\x61\x94\x86\x92\x27\x7c\x45\xc8\x6f\xf3\xf9\xda\x40\xa6\xcb\x2f\x50\xb2\xcb\xaf\x33\xa8\x57\x55\x0c\x09\xee\xd5\x51\xee\x56\x09\x66\xed\xa0\x01\x86\x05\xfd\xf4\xb7\x71\xf0\xaf\x8e\xd1\x66\x4a\x37\x64\xb4\xa1\x35\xbb\xc3\xfa\xfa\xb3\x29\x49\x43\x41\x9a\x31\x95\xa2\xd2\x50\x2d\xa5\x58\x1a\xc5\xc7\x3e\xf5\xd8\xd2\x70\x8f\xaf\x24\xdb\xed\x0f\x0a\xf1\xa0\x10\x77\x21\xc5\x41\x21\x1e\x14\x62\xf5\x1d\x14\xa2\x07\xa3\x6f\xa5\x10\xf7\x14\xb0\x7b\xfb\xe9\xdc\xbd\x39\x15\x24\xa0\x05\xb5\x07\x8e\x63\xaa\xd5\x17\xb2\x08\x42\x29\x1a\xc0\x0b\x9d\x0c\x1e\x19\x88\xfb\xe9\xe7\xa6\x71\xc7\x6d\xa7\xda\xf6\x9a\xbd\x8a\x9c\x00\x5b\xd9\x96\xf7\x95\x80\x3e\xc9\x10\xb8\x57\xaa\xcf\x3d\x1c\x36\x4b\x9f\xe0\x66\xa9\xd8\xd8\x92\x33\x63\x98\x93\x3d\x30\x92\x95\xa7\x68\xaf\xdb\xa9\xdc\x4a\xdd\x39\x7e\x4f\x73\x3c\xc7\x04\x32\xa4\xac\xed\x6d\xe3\xf7\xae\xa0\xbd\xba\xdf\x75\x88\xd7\x1f\xe2\xf5\x87\x78\xfd\x21\x5e\xff\xd4\xe3\xf5\x07\x57\xdb\xfa\x1d\x5c\xed\xf2\x3b\xb8\xda\x07\x57\xbb\xfa\x0e\xae\xb6\x07\xa3\x43\xec\xf9\x10\x7b\xf6\x7f\x35\xea\x37\xdb\x4b\x8b\x2c\xc5\x85\x50\x08\x22\x0f\x41\x35\x1c\xb5\x4a\x97\x5c\x99\xf4\xc4\xc9\x2d\xf3\x17\x41\xd1\xd3\xc1\x79\xe7\x49\x42\x70\xd0\xca\x07\xad\x7c\xd0\xca\x8d\xef\xa0\x95\x3d\x28\x1f\xb4\xf2\x76\x35\xf7\x12\x00\x3f\x5c\x21\x38\x5c\x21\x38\x5c\x21\xb0\x54\x3e\x5c\x21\x38\x5c\x21\x28\xbf\x47\xbb\x42\xb0\xf5\xa6\x97\xcc\x99\x30\xbe\xcf\xac\x72\xc8\x2d\x30\x6b\xc4\x56\xe9\x0f\x38\x14\x6d\xae\xd5\x65\x65\x4d\x96\x0a\x74\x24\x5b\x8b\x7f\xe1\x02\x4c\x11\x83\x91\x48\x88\xc0\x65\xe7\x8b\xde\xdf\xdd\x63\xdc\x22\x65\x88\x7e\x75\xa4\x6b\x67\x4f\xbf\x86\x22\xa6\xbe\xdc\x19\x93\x7b\x78\x4a\x78\xd6\x07\x22\xcd\xf3\x35\xe2\xcc\x20\xbd\x3c\xb3\x1c\x5b\x77\x5b\xbc\x22\x45\x14\x76\x60\x29\x68\x56\xca\x72\x8e\x87\xb3\x17\x1b\xad\x9c\x79\x19\x79\x93\xfa\x6f\x76\xa6\xda\xf8\x11\x1b\x10\x92\x4a\xc7\xc8\xa7\x02\x63\xee\x20\xa3\x64\xd0\x4a\x21\x52\xbd\x39\xac\x13\x83\xe8\x5f\x62\x4a\xa4\x2d\x56\x9c\x80\x7f\xfe\xc1\x7f\xe1\xf0\x51\xf2\x51\xe7\xfc\x10\xbf\x3e\x68\xae\x94\x84\x14\xb6\x74\x29\xf2\x67\x67\xc6\x14\xa3\xd8\x96\x34\xe5\x9c\x14\xde\xbc\x29\xcd\xf2\x76\xea\x94\x36\x5a\x8a\xfe\x65\xf6\x94\x46\x8d\x8d\x13\xa8\xf0\xc5\xab\x60\x6e\x95\x44\x25\x21\x85\xce\xe0\x02\xcc\x51\x82\x43\x56\x14\xf3\x3b\x64\x45\xa9\x7d\x87\xdc\x0a\xae\xef\x90\x5b\x61\xa3\x51\x1c\xb2\xa2\x3c\xd5\x95\xfb\xd4\xa3\xa4\x7b\x97\x2c\x87\x68\xa8\xf5\x3b\x08\xdc\xcd\x10\xff\xae\x05\xee\x13\x4e\x66\xd3\x21\x2f\x19\x7d\xfb\x29\x71\x9d\xc1\x0c\x95\xed\x5d\xe7\x81\xbb\xd7\xc2\x26\xd3\xe4\x61\xa3\x80\xe7\x8c\xfc\xa7\x80\xfd\xd3\xec\x01\x1f\x29\x4a\x6e\xc2\x1b\x07\x57\x75\x13\x57\xf5\x13\x2d\x6a\x3e\xea\x27\x5a\xd8\xbd\xd3\x4f\x32\xed\x75\xdb\x2f\xfd\x3f\x5a\xd8\x1d\xd2\xb2\xa0\xed\x89\x1a\xbd\x36\x5d\x50\x5d\xe4\xf6\x3d\x85\xce\xcf\xd7\xe8\x03\xb9\x25\xf4\x8e\xbc\x15\x9b\xfa\xe5\x5b\xb3\x87\x57\x10\x9c\x55\xf7\xf8\x92\xb6\xc7\x0c\xde\xfc\x75\x01\xbf\x78\xe8\x10\x97\xdd\x1a\xae\x5b\x0d\x99\x28\x37\x6b\xb8\xaf\x02\xec\x84\xb6\x64\x7f\x32\x9f\x70\x2b\xc8\x8b\xb8\x77\xcb\xa1\x7c\xdd\xef\xb9\xb7\x93\xe9\x2a\x2f\x5c\xdb\x20\x3b\xf5\xe2\x54\xc3\x07\xe2\x00\x90\x14\x71\xb6\x84\xb9\xed\x04\x7c\x07\xdc\x72\xa7\xc3\x82\xb9\x6f\x54\xd5\xd3\x90\xaf\x1e\x3e\x1d\xf4\x2c\xa5\x77\xcd\x74\xd0\xfc\x37\x67\x3e\x68\x59\xe8\x48\x08\xcd\x0b\x9d\x09\xa1\xab\x42\x6b\x42\x68\x13\x93\xa6\x3e\x31\x8b\x1d\xcf\xe6\x6c\xa9\x50\x60\x9a\x2d\xe0\x26\x5a\xc5\x50\x0c\xff\xd9\xd4\x17\xfa\x91\xdb\xa2\x7a\xe4\x76\xcd\x5d\x55\x28\x4e\xf6\xc7\x62\x6a\xd4\x72\xaa\xb6\x12\x7e\x20\x9d\xc3\xe7\x70\x04\x97\x59\x8a\xc9\x5c\x72\xc2\xbe\x85\x8e\xf7\xc9\xb5\x2e\x4b\x9a\x37\xf6\x6c\xce\xef\x2c\xac\xc2\x5e\x7d\x2d\xc5\xc6\xcb\xe7\x3f\x5b\xab\x70\x2a\x8e\xed\x1b\x4b\x21\xa3\x04\x00\x91\x95\xfb\x7e\x53\x04\x8c\x45\x6e\xaf\x80\xb3\x19\xfe\xdc\x81\xbc\x07\x08\x8c\x19\x5e\xa3\xb7\x7c\x14\x78\x89\xae\x56\x8f\x41\xef\x57\xaf\x9f\x3b\xaa\x94\x18\xbf\xb6\x56\xc0\x49\xfa\xc8\xa8\x76\x63\xfa\xc2\xca\x16\x85\x5a\x58\xd7\x0f\xa8\x6e\x0d\x34\x5f\x3c\xef\xc4\xd3\x52\xee\x75\x13\x5d\x0f\xfb\xd5\x25\xc2\x83\x6a\x44\x94\x17\x19\x24\x35\x85\x28\x7f\xb2\xeb\x43\x5d\x66\x53\x87\x17\xa2\xcc\xae\x0d\xcd\xb2\xb6\x32\xac\x23\xd1\xd4\x85\x46\xe9\xd3\x51\x85\x3f\x96\x1e\xdb\xfa\x49\xb8\xcd\xdd\xaa\x87\x7d\x44\xee\xfb\x79\x0e\x4e\xae\xde\x7d\x9b\x0b\x30\x59\x62\x32\x62\x6e\x89\x59\xbf\x68\xcd\x6b\x63\x11\xf3\xc6\x6b\x24\x1f\x7b\x71\x04\xbb\x4b\x19\x28\x5e\x83\x7f\x20\x45\xed\x81\x2d\x8b\xa9\xf5\x8d\xd3\x04\xe7\xc8\x77\xbd\xbc\x36\xe6\x73\x5d\xb9\x3c\xa2\x02\xe3\x5b\x24\xcf\x4b\x2d\x29\xc1\xee\x8b\x0e\x25\x09\xa6\x94\x2d\x1e\x88\x02\xd8\x71\x83\x5b\x84\xe8\x57\x1e\xda\xd8\x70\x32\xd2\xa0\x3e\x88\x59\x3a\x0c\xa2\x77\x85\x04\xe8\x0f\x35\xd1\x2f\xae\x47\xc3\xd3\x81\xa2\xbd\x83\xde\x5d\xc4\xe4\xe6\x58\xff\x3c\x04\x87\x0f\x04\x7f\x5a\x21\xf9\xd6\x4d\xff\x7c\x13\x1c\x2a\x13\x65\x77\x03\xc4\x01\xc2\x30\x40\x5e\xbe\xda\xc6\xc0\xb0\x9c\x3a\x7c\x4c\x03\x43\x64\x42\x48\x72\x9a\xa5\x54\xbd\xa9\xa6\xfe\x70\x9c\x27\xd2\x85\x56\x13\x43\x00\x3b\xcf\x69\x76\x49\x5b\xcf\xab\xd5\x0a\x2d\x46\x46\x0d\x91\x96\x91\x61\x96\xda\xad\x0c\x9f\x15\xb1\xed\x83\x6b\x3f\xb2\x47\xdd\x10\x03\x9e\xb7\xe1\x2d\xd3\xee\x1f\xa0\x67\x90\x40\xbe\xfc\x26\x00\xca\xc5\xab\xe0\x76\x05\x85\xcf\x65\x23\x8d\xa2\xcc\xbe\xa1\x18\x46\xb3\x0f\x98\xde\x03\x18\xc7\x91\x38\xa6\xcc\x09\x69\x11\x1b\xa5\xc8\x28\xcd\xd3\xfa\xe7\xcd\xd7\x41\x68\xe2\x3b\x3e\xb5\x81\x31\xc6\x47\x0d\xd2\x2a\x41\x89\x1e\x01\x25\xa2\x13\x33\x6b\x87\xde\x70\x94\xb6\xd7\x5f\xc9\x64\x7b\x50\xc9\x97\xe5\x2b\xb2\x2f\xc1\x37\xe4\xb0\x1c\x72\xcf\x2c\x6b\x8b\xbd\x1a\x16\x4d\xa9\x67\x16\x1e\x84\xde\xd3\x12\x7a\xed\x29\xf7\x8f\xaf\x63\xad\x3c\x90\xe4\x98\xe1\x94\x21\x75\x22\x49\x67\x5d\x62\xf4\x07\x12\x21\x0d\x42\xc9\xf9\x7a\x2b\xa9\xb2\x6f\xab\xba\xc8\x63\xa7\x51\x1d\x12\xeb\xdd\xba\x71\x91\xc7\xef\x4f\xcf\x76\xe8\x79\xfb\xd6\x45\x1e\xef\x12\xa2\xde\x35\xc4\x8d\xb3\x61\x4e\x9d\xaf\x5b\x34\x9a\x3f\xa8\x3a\x81\x71\x5c\x9a\x15\x98\x64\x2b\x26\x75\x4a\xcc\x72\xc7\xc9\x7c\x59\x62\xd3\x26\xa7\x71\x3c\xd4\xa0\xfa\x1c\x54\x53\xa5\xb4\x2a\xb4\xf5\x4a\x1b\x9d\xa6\x72\x69\xd5\xb8\xd9\xf0\x5c\xfe\xe6\x4a\x66\xaf\x27\x20\xea\xa7\x62\x9b\x83\xa9\xdd\x4e\x94\xbf\xc8\xa7\x9a\x57\xb9\x74\x66\xb9\x16\x3b\x3d\xeb\x83\xb3\x41\xff\x9b\x2a\xa1\xdd\xaf\x03\x34\x92\xef\x35\x58\x63\x94\xa1\xb8\x46\x8c\x52\x93\xf1\x02\x4e\x85\x36\xed\x36\xd4\x5d\x30\x8e\x27\x25\x84\x89\x00\xb1\x6f\xd1\xaa\xcf\x37\x4e\x96\x90\xc0\x39\x4a\x26\x72\x32\x1f\x4e\xe5\xe8\xb4\x82\x93\x55\x96\x40\xe6\x3d\x32\xe7\xf5\x08\x80\xa0\x0f\x7e\x04\x7c\x8b\x7b\x12\x4f\x52\x3a\xc7\xee\x34\x8d\xa1\x67\x40\x03\x0f\x6e\xc7\x28\x67\x33\x9c\xba\x62\x95\xf5\x3e\xbb\x8f\xcd\xde\xa2\xfb\x3d\x41\x8b\x53\x8c\x08\x9b\x14\x85\xef\xf2\x67\xe7\xb4\x11\xc4\x1e\x61\xda\xb8\x76\xca\x67\x30\x46\x93\x25\x5b\x75\xa2\xdb\x71\x55\x98\x8b\x61\xcc\x41\xc9\x48\xe8\x44\x00\x5f\xc3\x6e\x32\x74\xc0\xcd\xa6\xf9\x84\xe5\x30\xbe\xc5\x64\x3e\x21\x94\x4c\x0a\x02\x7d\x37\xa0\x3b\x69\x0b\xe4\x89\xaf\x89\x7c\x69\x7d\x12\x2f\x56\xe4\x76\x52\xe0\x3f\x7d\xb3\x1f\x84\xa9\x8a\x1d\x4c\xee\x20\x66\x93\x19\xcd\x27\xea\xe6\xd7\xae\xc8\x26\x4a\x6f\x6c\x0e\xd8\x83\x70\x8e\xe6\xb8\x60\xb9\xeb\xf2\xc3\x7e\xf8\x6b\x09\xe7\x68\x92\xe5\x68\x86\x3f\x77\xe2\xea\x5f\x56\x0a\xd4\x2a\x4d\x27\x05\x8a\x73\xd4\xcd\x01\x7e\x78\x4a\x2e\x32\x88\x09\xca\x8b\x49\x29\xe3\xd7\x56\x5d\xbb\x23\x74\xfe\xcf\x9c\xa6\x29\x7a\x20\xf8\x0b\x5a\xb0\xbd\x41\x36\xf5\xe9\x43\x90\x85\xe0\x7d\x83\x8d\x09\x4e\x50\x96\xd2\xfb\x3d\xc1\xa3\xd9\x2c\x45\x9f\x27\x22\x07\xef\xde\x40\x22\xb2\x2e\xee\x30\x8b\x17\x7b\x82\x38\x9f\x66\x7b\x80\x94\x7a\x33\x17\xef\x45\x08\x18\xcc\x9f\xd2\xf9\x44\xdc\x84\xdf\x71\xec\x9c\xdf\xe5\xec\xec\x0b\xa2\x9c\xf2\xfd\xc1\xc4\x05\xc3\xf4\x51\x34\x78\xc1\x60\x9a\x4e\x44\x7f\xbb\xea\x19\x0d\x2c\xcb\x69\x87\x31\xd4\x35\xfc\xe5\x2a\xd5\xd7\x08\x5c\x8d\x77\x1c\xb8\xd2\xb5\xbb\x0c\x39\xc9\x69\x26\x26\xfb\xb1\xec\xf9\x9d\x0c\x42\x9a\xa0\x8c\x26\x78\xf6\x5d\x60\x5b\xe4\x98\xae\xbf\x0b\x4c\x6f\x57\x53\xf4\x08\x88\xd2\x75\x31\x59\xa2\x25\xcd\xef\x27\x29\x5e\xe2\x5d\xad\x97\x55\xc1\xcd\x2a\xbc\xc6\x29\x52\x0e\xa9\x32\x05\x76\x16\x01\x95\x99\x95\xb9\x0e\xa5\x6e\x82\x68\x8e\xa6\x94\xb2\x89\xd2\xa8\x77\x98\x2d\x26\x74\xdd\x8d\xa5\x1f\x28\x77\x00\x26\x01\x37\x6d\xf7\xea\x70\x66\x34\x67\x13\x91\x31\x2a\xc8\x49\x0c\x49\x69\xb6\x41\xa6\x47\x71\xbc\xa5\xb3\x56\xa0\x9f\xa2\x3f\xd4\x0a\x14\xed\x0c\x52\xe4\x28\x9b\x64\x28\x9f\x70\x81\xb5\x4f\xe8\xc2\x8c\x80\x31\x9b\xc8\x30\xe1\x7e\xdc\x7e\xed\xb1\x65\x28\xc7\x34\xc1\xb1\xf0\x2d\x27\xf3\x94\x4e\x61\x3a\xc1\x64\x46\x27\xc5\x3d\x69\xc6\xbc\xec\x9d\x59\x17\x96\x33\x92\x56\x5d\xb3\x33\x90\xf1\xc7\xd2\x44\x93\x5a\x34\xad\x58\xc5\x31\x2a\x8a\xd9\x2a\x05\x31\x5d\x66\x29\xd2\x67\x93\x1c\x41\x5c\xfd\xf9\x4e\xf3\xd9\x10\xdb\x6a\x90\x1b\xdf\x4f\x6c\x45\xc8\x8d\x60\xb8\x90\xcf\xef\x61\xe6\x88\x7e\xe3\xa8\x92\x80\x91\x14\xe6\xba\x58\x9e\xb1\x6b\xd6\x29\xee\x0b\x86\x96\xbc\x4e\x6d\xfb\xc8\x0a\x29\xd2\x56\x36\xb8\x39\xfa\xf2\xa5\x37\xa6\xb7\x88\x7c\xfd\xaa\x6f\x40\x2a\x4f\x3c\xca\xd2\xd5\x1c\x93\x66\x47\x37\xa4\xc4\xb5\x32\x83\x15\xdc\x13\xf0\xef\x48\xc2\xf8\x52\x91\xe4\xe6\x28\xa5\x73\x99\x2d\xea\xe6\x48\xf5\x78\x56\xb6\xbc\xa4\xf3\x4b\x5e\xc4\xbb\x7f\x66\x36\x82\x19\x8e\x23\x6e\x15\x17\xbc\xd5\x97\x2f\xbd\xd3\x0c\xc7\xbf\xf2\xbf\xbf\x7e\x6d\x57\xcc\xd1\x2c\x47\xc5\x82\xe1\x25\x2a\x3b\xe1\x0d\xae\xe5\xef\x63\xbc\x44\xf6\x1e\x8a\xd5\xb4\x64\xd1\x28\x41\x29\xbc\x37\xba\x1b\x19\x85\xe7\xbc\xcc\xd2\xf5\xa4\xec\x3a\xbe\x45\xf9\x04\x26\xff\x5a\x15\xcc\x8e\x03\xaf\x70\x2a\xca\xed\xb8\xac\x0a\x94\xf3\x09\xae\xb5\xfe\x50\xa0\x7c\x00\x5d\xe8\x73\x8d\x09\x19\x8a\x6e\xd1\x7d\x94\x41\xb6\x90\x4d\x8f\x57\x45\x7e\x9c\xd2\x18\xa6\xc7\x88\xc5\xc7\x62\x02\x51\xce\x8e\x79\x07\xbd\x5b\x74\xdf\x84\x14\xe3\x48\x46\x34\xca\x9e\x47\x82\x9b\xfa\x09\x22\x0c\xcf\x30\xca\xdb\xbd\xc7\x38\x5a\x2f\x97\x11\x67\x78\xd9\xea\xb7\x32\xb5\x9c\xa8\xfa\xe5\x4b\x04\xf0\x0c\x10\x04\x7a\x1f\x97\xcb\x73\xba\x84\x98\x88\x4b\xb5\x5f\xbf\xda\xe0\x24\xa2\x42\xd9\x7f\xd9\x44\x75\xcc\xa1\xa1\xb4\x40\x41\x8d\x1d\xc8\x0b\x18\x24\xe1\x20\xea\xc8\x55\xdc\xe8\x41\xb0\x62\x76\x13\xc9\xaa\x69\x10\xa2\x16\x20\xdd\xc8\x36\x26\x4a\xd8\x30\x11\x43\x04\x92\x8a\xcf\xc6\xe2\x4f\xa3\xad\x1a\xdd\x19\x67\x21\x70\x73\x24\x4f\xdf\x34\x86\x96\x4e\x8d\xe9\x1b\x50\x82\x3c\x64\x1a\xd0\xdf\x21\x66\x6f\x69\x3e\x92\x31\xd1\x8b\xec\x1a\xc1\x84\xcb\xed\xc2\x05\x9e\xd0\xe8\x0e\x62\x16\xcd\x68\x1e\xa9\x48\x6a\x84\xb2\x28\xd7\xed\xd4\x42\xf3\x40\x16\xcb\xcd\x8e\xcf\x69\x92\xe8\x47\x92\x47\x22\xe8\x59\x8c\xe9\x75\x22\xc5\x90\x0b\x21\x98\x24\x11\x52\x8d\x22\x19\x2a\x2d\x22\x46\xa3\x5c\xb5\xd3\x2b\xdf\x03\xda\x83\x91\x3a\x31\x35\x54\x7a\x77\x44\x20\x7b\x27\xb4\x6e\x9f\xcc\xe8\xe8\x9e\x38\xa7\x41\x69\xec\x48\x6b\xec\x88\x6b\xec\x48\x6a\xec\x88\x6b\xec\x88\x6b\x6c\x85\x5c\x67\x2f\x4d\x0c\xab\x7e\xa4\xc5\x1a\x25\x48\xcc\x44\x82\x52\xc4\x50\xc4\x25\x26\x5d\x31\x05\xfd\x4a\x54\x39\x17\x35\xce\x45\x85\xb1\x2c\x6f\x08\x3e\xe5\x56\x47\xc2\x47\x57\x6d\xfb\xf2\xb7\x3e\xff\xa9\x59\x9d\xff\x16\x29\x1f\xbc\xe4\x59\x51\x73\x28\x7f\x74\x73\xae\xd8\xef\xb4\xac\xc9\x8c\x26\xd3\x24\x4a\xd4\xaa\x5f\x11\x7c\xcc\x48\x64\xac\x84\xe3\x37\xe7\x51\x43\xf9\x59\x57\x1b\x07\x14\x4d\x13\x8b\x78\xe3\xe6\xde\x7e\xba\xe0\x90\x74\x1f\xce\x85\xad\x97\x48\xb6\xb8\x2f\xb8\x44\xf3\x48\x88\x28\x13\xe5\x2d\x8c\xcb\x55\x46\x62\x98\xc9\xf6\xeb\x14\x0a\x9c\xd5\xe2\xfa\x98\x42\x62\x95\xe5\xba\xa9\xda\xea\x88\xf4\x56\x87\x9a\x5c\xd5\xfc\xbd\x2c\xed\xab\xc2\xa6\x3a\xe4\xd3\x32\xcd\x23\xbd\xb5\x11\x11\x4a\x04\x33\x2b\x20\xc3\x37\xd7\x63\x55\x34\xa0\x84\xb3\xae\x05\xc0\x3a\x9f\x35\x85\xdb\xc7\xeb\xb7\x35\xf9\x56\x6f\x90\xbe\x52\xfc\x2b\xea\x5e\xbe\xba\x5a\xd9\xeb\xa1\xcf\x2c\x52\xa6\x8d\x16\x3d\xa2\xb2\x5e\xeb\x2a\x31\x5f\x25\x74\x02\x19\x71\x9d\xcf\x4c\x4c\x0d\x5d\xed\xd1\x05\x46\x9b\xab\x35\xca\x53\x78\x6f\x69\xda\xe4\x12\x75\x96\x32\x42\x24\xc9\x28\x26\x2c\x12\xc7\x1f\xc4\x58\xea\xe6\xeb\xcd\x91\xd2\x12\x32\x7b\x55\xa8\x92\x68\x8f\x50\x09\xf2\xd2\x26\x09\xe1\xf6\x7f\x37\x2a\x29\xac\xb9\x75\x69\x23\xc8\x36\x5d\x94\xb0\xea\x14\xaa\x33\xd3\x12\x7e\x16\x0b\xaf\x88\x8a\x75\x1c\xcd\x73\x98\x2d\xd4\xb4\xbf\x87\x9f\x07\xbc\x60\xb4\x8e\xdf\xf1\x9f\x1b\x5c\x58\xda\xd8\xd1\x06\x04\xb7\x5b\xe3\xed\x9a\x7b\x9f\x9e\x7d\x4c\x91\xc6\xd6\x3d\x43\x1d\xbd\x34\x00\xd4\xa7\xa5\x39\x35\xc0\xd0\x09\x65\xa2\xa5\xef\x84\x52\x4a\xe1\x6d\x4d\xa8\x7a\xfb\x70\x3a\x7d\x5f\xfc\xf4\xf8\x54\xba\x5d\x4d\xd1\x77\x46\xa4\x6f\xb1\xe8\x62\xc8\x58\x7a\x20\x54\x30\xa1\xb2\x9c\x2e\x11\x5b\xa0\x55\x71\x20\x56\x27\xb1\xd4\xc6\xeb\x81\x52\x25\xa5\x6c\x24\xbb\x39\xd2\xa6\x36\xce\xa2\x8c\x52\x61\x61\xff\xb3\xde\xd0\x4a\x3e\x44\x92\xca\x25\x90\x20\xfa\xc3\x0b\xd1\xeb\xd1\x33\x5b\x03\x79\x7f\xb4\xd5\x64\xc4\x7f\xae\xa2\x7d\x25\x8e\xd5\x9f\x7f\xd4\xa7\x62\xc4\x20\xc3\x71\xdd\x25\xb6\x04\x4a\xa4\x67\x1d\x15\xa2\x76\xd5\xad\xa5\xb1\x37\x1e\x73\x7e\x4f\xe0\x32\xbc\xbb\x44\x56\x2f\xfb\xb3\x36\xf7\x19\xd5\xc2\xd9\xd6\x91\xf8\x48\x44\xe2\x2b\xe4\x09\x64\x67\xaa\x68\xc4\x4b\x5a\x8e\x85\x1c\x6d\xb4\x8f\x29\x15\x90\xb6\x99\xd8\x7a\xc3\xb0\xe9\xad\x80\x71\xf7\x77\x07\xb4\x87\x34\xd9\x04\x59\x51\x7d\x1b\x14\x65\xb8\x26\x12\x27\xdb\xa2\x02\xff\x89\xb4\x4f\x49\x13\x39\xc7\x67\xbc\x64\x84\xff\x44\x4d\x6b\x9e\xfb\xde\x7b\x98\x9f\x81\xb8\x51\xb2\xf1\xec\xd4\x9a\x6d\x3a\xf0\x1a\xee\x2a\x60\x65\xc1\xdd\x5c\xdf\xc2\xa1\xa9\xb8\xde\x05\x59\x9d\xc6\xd5\x8e\x8d\x78\xbe\x57\x51\x54\x5e\x3f\xbc\x50\x25\x23\x5e\xa2\x57\x8c\xf8\xdf\x82\x16\x2c\x12\xc7\x4a\xfc\x51\x7f\x98\x65\xf5\x90\x4f\x98\x67\x57\x97\x3d\x17\xd9\xb5\x3a\xd4\x67\x13\x01\x59\xa4\x8f\xfc\x95\xf4\xae\x1a\x78\x9d\xf0\x46\x53\xb2\x4a\x53\xa7\x44\x92\x41\xb1\xf7\x34\x41\x16\x1c\x54\x50\x6d\x49\x93\x4a\x6c\x54\x0d\xbc\x38\x34\x9a\xb6\x71\xa8\xaa\xb6\x77\x50\x7e\xa5\x05\x3b\xe5\x93\xe0\xde\x40\x89\xb1\x8c\x24\x56\x69\xac\x4d\xb9\x56\xde\x49\x38\x84\xf6\x9f\x4c\x68\x3f\x68\x0f\xe6\x49\x86\xa6\x36\x8e\xdc\x69\xa9\xb6\x4e\x21\xa9\xc7\x18\x65\x88\xb2\x56\x99\x7b\x77\x30\xc3\x66\x65\xce\x92\xa7\xc3\xbe\xa5\x72\xa5\x2d\xaa\xed\x46\x79\xc3\xf3\xac\x7f\x7e\xdd\x42\x44\xca\xd8\x7a\x7d\x21\xb4\x4d\xcb\xc1\x14\x9c\x31\xcc\x8c\xa5\x21\x04\x66\x0c\xb3\xf1\xbd\xc5\x3a\xe0\x54\xc1\x64\x96\x43\x13\xf3\x3e\xff\xa1\xc4\x5b\xcd\x66\xef\xfd\xf8\x43\x83\x7b\xdf\x8f\x3f\x80\xe7\x75\x2a\x97\x87\xdb\xa3\x25\x5b\xe9\x60\x16\x6f\xd8\x5e\x02\xf5\xd5\xc0\x6b\xfd\x8a\x60\x72\x4d\xe9\xb2\xdd\x8d\x2e\x01\x37\x47\xcf\x9b\x6c\x54\xeb\x32\x5a\x20\x98\xe4\x54\xc6\xa6\x65\xdf\x15\x54\x27\x0e\x15\xb0\x98\xe0\x88\x20\x56\xed\xb6\x84\x28\xe1\x39\x64\xe8\x0e\xde\x9b\x26\xc4\x3b\xf9\x93\x53\x05\xe7\x74\x25\x64\x55\xab\x03\x4f\x47\x55\xeb\x44\xef\xdf\x3e\xef\x89\xff\x8e\x9f\x5b\xbb\x31\x30\xbc\x73\x20\x67\x6f\x64\xf1\x32\xfe\xb0\x5b\x12\x5e\x2e\x0e\xb4\x21\x7e\xc4\xa0\x71\xb3\xb5\x2f\x4c\x7c\x88\xf6\x1e\xa2\xbd\x4f\x27\x8e\x79\x88\xf6\x1e\xa2\xbd\x87\x68\xef\x21\xda\xfb\xf4\x89\x75\x88\xf6\x86\x45\x7b\x65\xa4\x25\x4a\x72\x9a\x71\x9a\x29\xcb\x59\x65\x3a\x91\xb1\x96\xaf\xb6\x16\xe1\xb1\x19\x5b\x77\xe5\xdd\x8a\x1b\x7d\xc8\x2a\x41\x43\x9a\xf4\x67\x9e\x1e\x23\xba\x2e\xa2\xc5\x5d\x44\x67\xb3\x94\xc2\x44\x7b\x65\x39\xa6\x6b\xdd\xca\x08\x03\xa9\xe8\x45\x40\x20\x48\x8f\xba\xc9\x48\xf5\x80\x86\x0c\x9a\xb4\x42\x1a\x2e\xb3\x4d\x76\xdf\x82\xcb\xfd\x39\xc6\x47\x0d\x4e\xc0\x97\x72\x64\x89\xf8\xbb\x3c\x7e\x05\x2a\x0f\x08\x7d\xd2\xf1\x9d\x33\x71\xc9\x79\x34\xba\xb4\x1f\xd3\x12\xf6\x78\x21\x8f\xc3\x80\x9b\xa3\x2a\xde\xa3\x4e\x6f\x25\x37\x47\x56\xcf\x8b\x77\x70\xbd\x22\xef\xa6\xd9\x99\xe6\x25\x07\x9f\xab\x60\x72\xc1\x70\x5c\x94\xf8\xcb\x7e\x04\xf2\x74\x36\xab\x50\x6f\x9a\xb4\xe5\xc4\x04\x77\x3b\x9f\x66\x22\xb4\xd8\x3e\xbc\xfb\xa5\x15\x97\xe8\x3e\x72\x58\x6f\x10\x14\x43\xf8\x1e\x22\x48\xbe\x00\x8b\x25\xce\xf0\x6e\x9a\x95\xf1\x68\xe3\x94\x4a\x0b\xb5\x80\xa6\xad\xa3\xbe\x76\x3f\x24\xec\x90\xb4\x51\xd9\x3c\x63\xdc\x3a\x61\x6c\x6f\xb2\x87\x33\xc6\x12\xda\x2d\x9c\xdd\x42\xa7\xc2\x98\xe6\xf4\x16\xe5\x7a\x20\xbf\xf1\xba\x6f\xe4\x4f\x2d\xc4\x64\x03\x99\x96\xa0\x89\x16\x47\xa2\x38\x16\x5d\x45\xb2\x86\x15\x9b\x1a\x08\xde\xa6\x03\x46\x9c\x33\x17\x0c\xe8\x68\x1f\x43\x4f\x2b\x46\xf5\x9c\x5a\x59\xb2\x4b\x07\xa7\x74\x95\x88\xb3\xa1\x4e\x72\xc6\x32\x5a\x10\x19\x93\xdd\xee\xa7\x23\xec\xc0\xdb\x88\x3f\xe4\x72\xb3\x32\x89\x6c\xa3\x56\xbc\x0c\xf9\x99\xb5\x9d\x51\x8a\x96\x20\xab\xff\xb0\xf5\xd5\x09\x11\xf2\xd6\x8e\xe6\x53\xbd\x39\x61\xd9\xc5\x23\x50\x64\x6e\xba\x86\x64\x8e\x1a\xfb\x44\x8d\x8d\x42\xb3\xa6\xda\x88\xd2\xf5\xc4\x5d\xa5\x28\xe3\xd3\x6e\x6e\x48\xe8\x26\xc5\x10\xe5\x03\xb5\x2d\xe1\x25\xf1\x48\xe4\x23\x70\x5e\x4d\xe1\x6b\x5c\x30\xfd\x63\x10\xb6\xec\x5f\x4b\x96\x9a\xe0\xfa\x0d\xdd\x4b\xfe\x11\xa5\x71\xce\x6a\xa5\x67\x82\x8c\x72\xa4\x86\x66\x6c\x8b\xf5\x8d\xc9\x60\x0a\x07\x41\x0a\x3c\xc3\x31\x64\xa8\x78\x54\x92\x48\x11\x53\x09\x4c\x69\xc4\xa8\x51\x03\xd0\x94\x60\x61\x15\x35\x89\x8d\x8a\x8a\xca\x25\x1d\xd5\x22\x75\x51\x4d\xc4\xf1\x4f\xe3\x98\xae\x88\x9b\x89\xea\xe3\xd5\x7b\x27\x8f\x40\x3d\x2f\xdf\x6f\x8a\x7a\xb5\x1b\xfa\x68\xa8\x1b\x8c\xfc\xa1\x40\x2a\x2a\x7c\x4d\x53\xe4\xe4\xe8\x7c\x0a\xe3\x1e\x5c\xb1\x05\xcd\xf1\x9f\x22\xef\x8a\x25\x3b\x5b\x05\xa7\x31\xee\x87\x96\x8a\x76\xca\x9e\x98\x4c\x21\x5e\x85\x3c\xb9\x21\x11\x80\x19\x7e\x97\xd3\x55\xa6\xb3\xa7\xe9\x67\xfa\xea\x99\xd0\x22\x99\x92\xf1\xa6\x4c\xb0\x26\x26\x45\xfd\x9d\xd1\x44\xfd\xab\x74\xb1\xe4\x9f\x6a\x4f\x4a\x17\xae\x51\x59\x92\xa3\x2c\xe5\xcb\x1b\x53\x52\xa1\x55\x6f\x05\x25\xcf\x88\x1f\xd7\x28\x9f\x6a\x44\x52\x95\x4b\x2e\x02\x77\x90\xc5\x0b\xf9\xcf\x39\x52\xbf\x65\xd5\x6f\x71\x8e\x20\x43\xf2\xdf\x32\x4b\x96\xfc\xb7\xbc\xa8\xb1\xc9\xd8\xe5\xa4\x2c\x61\xb6\x21\x32\xdb\x60\x60\xcb\xf9\xe7\xc0\x4a\xa4\xff\xd3\xbf\x26\x65\xfa\xbf\x16\x92\x3f\xfd\xef\x4f\xf6\xbe\x9c\x6c\xec\xe8\x50\x72\x74\x4e\x53\x3d\xa5\xc6\x2f\x53\x4c\x12\x4c\xe6\xf6\xce\x0d\x0f\xc0\xbc\xd5\x52\xf7\x0c\x6d\x18\xaa\x7b\x31\x3d\x11\xd2\x74\x22\x26\x4a\x15\x1f\x65\x29\x24\x1a\x3d\xf1\x7b\xf9\xec\x71\x30\x59\x60\x8c\x7b\x65\x0c\xb5\xdd\x1b\x8c\x71\x1b\x70\xfb\x67\x27\x21\xb4\x41\x66\xe9\x59\xad\x6c\x4c\xe6\xde\x89\x50\xd5\xcc\x17\x4f\xc2\x98\xd2\x98\x87\x0f\x05\x3a\x8d\xf1\x29\xb9\xbf\x5b\xa0\x1c\x9d\x5d\x9f\x77\x4f\x06\xa7\x0b\xbc\xb3\xa3\x84\xb2\x79\x51\x2e\x16\x71\xbe\x6b\x03\xb4\x36\xed\x4c\x04\x62\x54\x77\xf3\x69\x56\x88\xa4\xb7\xad\xbf\x8f\xe5\x45\xe5\x6d\xe6\x01\x66\x59\x61\xef\x5a\x26\x11\x5a\xb6\x24\x59\x81\xf4\x0f\x09\x44\x4b\x4a\xaa\xbf\x05\x32\xb3\x55\xaa\x7f\x09\x62\xc1\x4e\x19\xac\x45\xab\x63\x90\x5a\xda\xd8\x60\xab\x1b\x49\x9c\xc9\x62\x9a\x23\x5a\xf4\x62\xba\xb4\x77\xa8\x7a\x51\x2d\x5a\xbd\xb4\x04\x9d\x6b\x22\xe5\x9d\x25\x6b\x0f\x04\x32\xcd\xc7\xc7\x33\x4c\x60\x8a\xff\xac\x34\x81\x59\x58\x0d\x54\x12\x82\x3b\x6b\xce\x71\x37\xa5\xaf\x5f\x4e\x7b\xe5\x71\x27\xfa\xf2\x62\x61\x89\x4e\x1d\x6d\x0b\xbe\x11\xd0\xf7\x23\x1f\x43\x9d\xa8\x57\x6c\xad\xd8\x37\x5e\xa4\xdd\x1f\x26\x86\x26\x76\x21\xa5\x1f\x3c\x73\x09\xb8\xe6\xf3\x86\xe1\xc8\xf9\x78\xdf\x78\x84\xca\x2e\xc6\x5a\x4f\x49\xed\xaf\x5f\x97\x34\x2b\x43\xcb\xa1\xe2\x81\x4b\xa7\x1e\xcd\x10\x29\x16\x78\xc6\xb8\x96\xf0\x0a\xaa\x8d\x79\xad\xdd\x63\x82\x8b\x98\xae\x51\x7e\xaf\xd5\x92\x8d\x74\x66\x78\xdd\x2d\x2a\x5a\xdd\x7a\x18\x24\xa3\xe9\x56\x0a\xd0\xdd\xd9\x2e\xcb\x28\x21\x85\x0f\x27\x59\xfc\x80\x68\x79\x7c\xc5\xef\xd2\x1f\x31\x3d\xbd\x6f\xe1\x8f\xb8\x7d\x90\x8d\x8d\xa9\xda\xee\x53\x73\xbf\xc3\x2f\x19\x1c\x72\xa8\xf4\x95\x4c\x5c\x4c\x16\x51\xe2\xb5\xd3\x90\xd9\xbb\x37\xf1\x2d\xac\x4b\xd3\xe0\x93\xff\x76\xd8\x3d\x37\x47\xff\xdb\xd8\x51\xfc\x16\x66\xf6\x7e\x4d\xca\xdd\x6c\xe8\x30\xd3\xeb\xc6\x6d\xcd\x6c\x61\xac\x7c\x57\x86\x88\x7e\xbf\xc4\xbe\x0e\x5b\xaf\x3e\x45\xed\x27\x51\x1e\x6a\x82\x1a\x56\x23\xaf\x28\xf6\x87\xac\x96\xaf\x8b\x12\xdb\x5a\xbe\x7f\x19\x95\xbf\x3f\x73\x4c\x09\x97\x56\xb8\x73\x43\xed\xfb\x46\x46\x4a\x02\x82\xa1\x27\xf5\x38\xee\x2e\x7a\x3a\xa7\x29\xba\x46\x33\xd1\x58\xd3\xc3\x83\x39\xaf\x66\x31\x1b\x02\xd0\x2c\x56\xf2\xa1\x1d\xa1\xcc\xed\x41\xe0\x3d\x05\xad\x1f\x71\x1e\xea\x41\xe9\x27\x3b\x0f\x26\x9a\xdb\xcf\xc3\xa6\x11\x78\xcb\xb3\x25\x59\x61\x90\xfc\x5c\x04\x44\x46\x9e\xed\xaf\x46\xe7\x61\xdd\x3e\xbc\xdd\x5a\xbe\x65\x21\xe5\xe9\x88\xe5\x90\xa1\xb9\x4e\x77\x29\x33\xd3\x5d\xd3\x34\xc5\x64\xfe\xa1\x94\xb8\x8d\xb7\x6e\x97\x5c\x08\x5d\xd6\xdf\x1f\xf2\x0e\x3c\xcc\xa0\x66\x68\x99\xa5\xd5\x33\xac\xad\x47\x3a\x5a\x2f\x1e\x75\xf6\x19\xd2\xab\xa0\x33\x21\x94\x09\x16\x35\xc1\x17\xf1\x02\x25\xab\x14\xe5\x3d\xf1\xea\x4a\xef\xb6\xbc\xe0\xc4\x97\x5f\x9c\x63\x86\x63\x98\x46\x19\x4d\x4e\xc0\x4f\xc6\xb3\xbd\xd5\x09\x41\x5e\xaf\x88\x73\xc8\x89\xaa\xb7\x5d\x5c\xf5\x32\x9a\x33\x5e\xeb\x97\xd7\x2f\x5e\xea\x5a\xb5\x87\x47\xf8\xc0\x54\xfa\x19\xf3\x81\x17\x59\x30\xec\x9f\xb7\x7f\xec\x0f\xcf\xea\x3f\x16\xb5\xc5\x32\xe8\x5a\x28\x66\x84\x7b\x09\xe7\x68\xb8\x4a\x53\xb9\xdb\xd9\x38\x86\x83\xeb\xa5\x26\x11\xf5\xd3\x35\x5f\xbe\x34\x61\x58\x2f\x80\x30\x9a\xa2\xbc\x35\x13\x51\xf9\x16\xc9\x09\xb8\xf8\x8c\x0b\x56\xce\x1c\x37\xe8\xcf\x6c\x59\x60\x75\xbf\x65\x8e\xf4\x1b\xe3\x8c\x81\xc0\x57\xee\x01\xc7\xf8\x8c\xe0\x73\x51\xa3\x84\x53\x3f\x90\x50\x0e\x4e\x3e\xd5\x5d\x1f\x8a\xfc\xad\xde\xa0\x40\xf1\x2a\xc7\x4c\xc0\x43\x9f\xd9\x49\x73\x33\x6e\x58\x26\xb0\xed\x3a\xed\xc5\x79\x44\xd7\xd5\x33\xe9\x38\x58\x18\xc3\x0c\x4e\x71\x8a\xed\x8f\xc5\x24\xf6\xb7\x50\x47\xff\x18\x4d\x4e\xcf\xdf\xf7\x07\x66\xe1\x9a\xa6\xab\x25\x7a\x2f\xf6\xa9\x1a\xad\x0c\xa2\x46\xd3\xf6\xbb\xbb\x4b\xde\x66\x08\xd9\xe2\x04\x1c\x2f\x09\x3b\x2e\xab\xd5\x52\xc4\x0d\x73\x4c\x05\x79\x52\x28\xd2\xc2\x35\x07\x9e\x99\xe5\x92\x47\xa5\x78\x8c\xf4\x69\x15\xbd\xf4\x5c\x47\xe9\xa4\xa3\x76\x46\xf0\x16\x5d\xc1\x18\x73\xb4\x75\x89\x85\xde\xd6\xa4\xc3\x51\x88\x30\x6a\x30\xde\xaf\xb4\x60\x07\x9e\xab\x15\x0e\x2e\xc6\xee\x42\xde\x72\x38\xbe\x3e\x3d\xbb\x70\x35\xbd\x3e\xfd\xdd\x2c\x42\x64\xed\x60\xe0\xdf\x3e\xbc\xb9\xb8\x1e\x5c\x8c\x2f\x46\x93\xc1\xd5\xf9\xc5\x64\x70\xfa\xbe\x05\x74\x0d\xd3\x15\x7a\x9b\x53\xdb\xdb\xd3\x33\x8c\xd2\x44\x9b\x3c\xd6\x42\xb9\x0c\xb8\x00\xef\x71\xe3\x9b\x33\x97\x1d\x95\xf1\xc5\xe0\x74\x30\xb6\x76\xde\x3a\x43\x19\x7c\x72\xd3\x7b\x8c\xc5\x86\x85\xa0\xc2\xc5\xf0\x9d\x13\x8f\x06\x63\xcb\x48\x95\xe7\xa0\xf4\xb6\x80\x83\xce\x69\xd7\x7b\x6f\x33\xa6\xee\xfc\x6a\xf8\xf6\xf2\xe2\xff\x4d\xde\x5f\x9d\xdb\x67\xf7\x04\x50\x79\xf0\xf4\x09\x8d\xc3\xbc\x75\x29\x5e\x13\x50\xc9\x1c\x3b\xa7\xf0\xfd\x87\xcb\xf1\x87\x91\x03\xbf\xd6\x3a\x36\x38\x44\x75\xa0\x12\x6c\x2a\x13\xa3\xb3\xbb\xf3\xfe\xe8\xf4\xcd\xe5\xc5\xe4\xf7\xd3\xfe\x78\xf2\xf6\xea\x7a\x32\xb8\x18\xff\x7e\x75\xfd\x5b\x37\x02\x1e\x2a\x9f\x7f\xb8\x3e\x1d\xf7\xaf\x06\xa1\x50\x65\x36\x0f\xf5\x4c\x50\x7d\x00\xce\x04\x70\x0f\xa2\xe1\x5c\x30\xb8\xc9\x1e\x02\xa4\x5d\x4f\x43\xe1\x2a\x64\x0d\x5b\x29\xc2\x4d\x20\xd5\x21\xdb\x56\x45\x13\x4a\xbe\xf2\x8e\xa7\x55\xbc\x41\xdb\x0a\x03\x27\x14\x75\x15\x80\x03\xd3\x7e\x8c\x98\x86\x30\xb0\x88\xc5\xc7\xb5\xcb\x04\x74\x5d\x1c\x4f\x61\x81\x04\xe5\x7a\x89\x1b\xf3\x68\xcb\xde\xea\x4b\xf5\xb8\xa9\x50\x7f\x95\xd6\x38\x29\x3e\x0a\xb8\x9e\xe5\xd2\xa0\xf1\x31\xe1\xad\x9a\x78\x18\xf8\xe6\x2b\x12\x59\xeb\xe4\x08\x26\x57\x24\xbd\xaf\xdb\xf4\xf5\x91\xe4\x34\x83\x73\x28\x53\xa9\x73\x14\xc7\xb4\x54\x10\xfb\x91\x32\xf2\x85\x93\x28\x94\xb7\x5b\xd5\xad\x0b\x32\xc5\x6b\x44\x50\x51\x0c\x73\x3a\x6d\xa6\xb8\x9f\x41\x9c\xae\x72\x34\x5e\xe4\xa8\x58\xd0\x34\x39\x01\x2f\x9e\xd7\x6b\x2c\x18\xcb\xde\x59\x1e\xc6\xca\x24\x1a\x55\x50\xbd\x56\x28\xdc\xad\xbf\x3f\xff\xe5\x79\xb3\x44\x3c\x86\x89\x4e\xc0\xaf\xe3\xf1\xb0\x5e\x26\x76\x0f\x60\x2a\x92\x7c\x8f\x50\x4c\x49\x52\x9c\x80\x17\x2f\x1b\x10\x64\x86\xde\xb2\xfc\x75\xa3\x58\x25\xaf\x37\xc7\x53\xaf\xa0\x92\xed\x96\x00\x5e\x3d\x6f\x9b\x99\xe6\x52\x08\xb3\x78\xae\x2f\xde\x5c\x5d\x8d\x27\xbf\xf7\xc7\xbf\x4e\xae\x3e\xba\xd4\x44\xe5\xa4\x6e\x7c\x33\xa5\xea\x6a\x34\xba\xf4\xa9\xdc\xf2\x2e\x8c\x9d\x17\x6a\x26\xb2\xba\x75\xf3\xc3\x19\xc9\x56\x3b\x38\x40\x6d\x1d\x94\xc5\xf6\xca\x42\xb5\xd8\x57\x7f\xba\xab\xfa\x42\x92\x0c\x3d\x12\x57\xaa\xfc\x4c\xd6\x40\x4b\xde\xc2\xea\x58\x28\x0d\xb8\x75\x56\x8c\xe9\x72\x09\x49\x72\x02\xfe\x79\x73\x74\x3c\xc5\xe4\xb8\x58\xdc\x1c\xfd\x61\xd6\x80\xf9\xbc\x90\xc5\xd5\xd8\x78\xc5\x14\xae\x48\xbc\x88\x24\x26\x12\x91\x5e\xab\xf1\x1e\x56\xa3\x49\xe9\xfd\x2d\x1b\x71\xdd\xa1\xb5\x5e\x4a\xd5\x2e\x5e\xc2\xae\xd2\x9a\x4b\x12\xf2\x1f\x9d\x1a\x10\xb1\x1c\xc7\x2d\x85\xd2\x00\xf8\xcb\xeb\x57\x2f\xcd\x2a\x0c\xe5\x4b\x4c\x84\x66\x7e\x8f\x8a\x82\xd3\x45\xb2\x51\x82\xd6\xc7\x46\xa1\xb8\xfe\xe9\x6f\xa7\xe8\xfb\x16\xa7\x68\x43\xf1\x50\xe3\xa5\x1d\x39\xbd\xcd\x90\xbb\x88\x21\x8b\xf0\x2c\xe9\x1d\xc3\x82\x45\xf2\x04\xa2\x93\xff\xdf\xf3\x4a\x0f\xc5\xf8\x02\x03\x89\xc0\xd6\x7c\xbf\xad\xa6\xf1\xaf\x92\x40\x2d\xf4\x97\xd6\x1c\x39\x12\x97\xa4\x34\xf9\x4f\xd3\x3b\x78\x5f\xae\x4e\x39\x72\x47\x60\xb8\xe9\xba\x89\x40\x3a\xef\xa9\x41\x64\xd9\x39\xcd\x98\x1d\x4a\xd3\x0e\xf6\x83\x41\x2c\x6e\x83\xb1\x50\xdf\x0f\xa5\x56\xd9\x43\x41\x3f\x94\x5a\xe5\x30\xa7\x29\xd6\xf7\xea\x1a\x10\x3b\x9e\x24\xaa\x3e\xcc\xd0\xb2\x2d\xd1\x23\x20\x2e\x14\xb5\xd2\x06\xb6\xa5\xbc\x44\xbd\xaa\xd8\xab\x93\x7f\x13\x0b\x02\x2d\x33\x76\x7f\x8e\x9b\x4f\xa9\x2d\x51\x82\x57\xcb\x13\xf0\x5e\xbc\x5b\xe7\x04\xfd\x8d\x48\x64\xb9\x52\xef\x22\x92\x58\x2a\xbd\xca\xef\xaa\xe4\x8f\xa9\xeb\x3c\x0e\x6c\x90\xde\x70\xc6\xe0\x43\x5c\xe4\xa8\xd3\xf3\xed\xe4\x60\xed\x50\x87\x78\xb7\x25\x0e\xc0\xaa\x69\xdc\xbe\x6d\xe7\x6a\x14\x98\x48\x00\xc7\xfe\x3b\xaa\xbb\xec\x24\x1b\xcf\xe9\xde\xfc\x88\x1b\xca\x8d\xf1\x87\xe0\xb7\xaf\x7d\x65\x4b\xd7\x8f\xbf\xbd\xfc\x03\x6c\x08\x6f\xb9\x1d\xfc\xc3\x6e\x31\x5a\xf9\xb2\xe5\x1d\x22\xb2\x1e\x89\x3a\xfb\x8a\xa5\xd4\x4f\x98\x55\x9f\x78\xe5\xb5\xad\xbc\xe4\x1b\xb0\x3a\xdb\xc7\xc7\x91\xd4\xad\x97\xbc\x72\x33\x4d\xe1\x77\x1e\xa5\xd1\x85\xa3\x7f\x8c\x26\xef\xaf\xce\x3f\x5c\x5a\x77\x2b\x79\xe9\xa0\x6f\xdf\xc9\xec\x0f\xcf\x26\x97\x57\x67\xb5\x3d\x0f\x77\x60\xef\xea\xe3\x68\x72\xfd\x61\x70\xde\xbf\x6e\xc2\x52\xf1\xb6\xba\xdd\x2e\xf4\x94\x83\x67\xfe\xd2\x6e\x42\x1b\x4a\xcd\x12\xf7\x41\x69\x55\x34\xa1\x2c\x29\x17\xe2\xad\x70\x80\x09\x29\xc5\xd3\x63\x4b\x35\x5f\xd4\x1b\x7d\x46\xed\xe7\x57\xb5\x23\x6b\x63\x9a\xa6\xe7\xaa\x60\x47\x74\x5d\x70\x9f\x75\x37\x5f\xc9\x42\xad\xbf\x80\x93\x63\x99\x12\x3f\xa4\xda\x3c\x76\xda\x75\xe5\x09\xf8\xa7\x97\xdc\x00\x04\x9a\x2e\x9d\xa8\x96\xf6\x88\x3e\xde\xaf\x76\x33\x0a\xab\x15\x88\xaa\xf3\xdc\xdb\x1a\x80\x75\x3a\x85\x8d\xa3\xcb\xfe\x0b\xed\x28\x60\x52\x40\xb0\x39\xd9\x86\xff\x54\xad\xc9\x00\x1b\xd1\x1c\xcc\x23\xda\x88\x3a\x6f\xf5\xb8\xb2\x12\x81\xcb\x76\xfc\xf2\x05\x30\xfa\x0f\xb8\x4c\xeb\xd5\xff\x0d\x30\x49\x10\x61\xe0\x75\x79\x1c\x31\x2d\x90\x13\x8a\x46\x0f\xcd\x66\x28\x66\x27\x60\x40\x2f\x3e\xa3\x78\xc5\x0c\xff\xdf\x75\x52\xd1\x04\x65\xd9\x1c\x34\x61\x8e\xd4\x5c\x56\x4d\x85\xe7\x4f\x68\x82\x1a\xf3\x4a\x28\x13\x4f\xa5\xde\x77\xf7\x1f\xd8\x41\x94\xd3\xb4\xd9\xcb\x12\x72\x9b\xd8\xd7\x85\xb2\xaa\xc0\xd7\xe6\x7b\xb0\xdb\x5b\xe2\x02\x99\x27\x64\x86\x6f\xb8\x21\x6a\x5a\xeb\xf3\x69\xd6\xb1\x7d\xf3\x6e\x9a\x79\xf7\x6e\x2c\xe6\x39\x68\xda\xe7\x60\xf3\x43\x2e\xcd\xa7\xb9\xf7\x7a\x48\x22\xec\xe0\x99\x4a\x2a\x84\x72\xe6\x35\xa1\x2c\x15\x22\x5b\xae\xa9\xed\x46\x80\x72\x76\xec\x70\x0d\xdc\x86\xf7\xbb\x37\xc3\xc9\xe8\xe2\xfa\xe3\xc5\xf5\xe4\xec\x6a\xf0\xb6\xdb\xfa\xb6\x10\xac\xca\xaf\xd8\x73\x1e\x8f\x70\xf8\x7d\x36\x05\xd2\x3c\xd9\x5c\x56\xd9\x97\xd7\xe7\xa6\xc6\xef\xa7\xe3\xb3\x5f\xc5\x39\xca\xd1\xd0\x72\x42\xb3\x3c\x5f\xd0\x4c\x49\xaf\xdb\x9f\x9e\xf5\x27\xa3\xc1\xe9\x38\x00\x84\x33\xe7\xaa\x07\xee\xbb\xcb\xab\x37\xa7\x97\xfd\xc1\xdb\x2b\xf7\x59\xcf\x13\xf5\xd0\x53\x75\x5b\xd0\x07\xf4\xfa\x9c\xcf\x7a\xff\x9d\x1f\x5e\x4e\x57\x0c\x93\xb9\x4c\x2f\xa9\xc3\xb5\x0e\xa8\xa3\x7f\x8c\xc6\x17\xef\xf7\x43\x80\x6f\xb3\xfa\x6d\xdd\xec\x6d\x79\x56\xd5\xbf\xe5\x71\xa1\x17\xcd\x92\xa7\x7b\x5c\xa8\xf2\xe7\x82\xa4\x72\x87\x44\x2e\x84\xfd\xd5\xa0\x9a\xfc\x71\xd0\x95\xec\xae\x43\xaa\xf9\xd8\xa3\xb3\xdb\x56\xaa\xc1\x3a\xfc\x10\x2e\x7f\xd8\x0d\x9b\x16\x06\x6d\xf7\x5d\xb2\x5e\x55\xb1\xbd\x67\x13\x7a\x06\xab\xec\xb5\x95\xb9\xd7\xd5\xab\x4f\x05\x79\xf9\xa6\xed\x00\x8b\x0b\xa8\x86\x0b\x3c\xa4\x49\xff\xad\xd5\xfb\xc5\x04\xb1\x48\x3c\xc0\xd2\x70\x77\xcd\xa4\xfd\x44\x2e\x45\xd1\x0c\x65\xf3\xd6\x4c\x08\x20\x74\x25\x26\x1d\x67\x30\x49\xf2\x13\x50\xbd\xc6\x62\x8e\xe3\xe8\xd9\x7f\x00\x00\x64\xb2\xdf\x9f\x7b\x2f\x7b\xaf\x7a\x3f\x1f\x9d\x80\xa3\xa6\xff\xde\x4e\x2b\x60\x5e\xb2\x14\xb9\x04\xae\x55\xd8\xf3\xbc\xcc\x25\xe0\xf2\xee\x2b\x44\xcb\x9c\x5a\x3d\x4e\xa1\x98\xe5\xa9\xe1\x38\xcf\xe5\x65\xc9\xaa\x44\x91\x43\x71\x93\xec\x5b\xe9\x72\x09\xee\xca\xc8\xc5\x05\xc4\xd5\xe0\xdf\xdc\x95\x2e\xb1\xbe\x80\x92\xa5\xab\x1c\xa6\x2e\xd4\x94\x43\x88\xc9\x7c\x95\xc2\xdc\x51\x4b\x38\xee\x31\xe5\xbe\x7c\xf9\x30\x98\x38\x4c\xa5\x02\x0d\xe5\x6d\x63\x41\x83\xf5\x0b\xe1\x89\x2a\x71\x25\x58\x2c\x31\x3d\xcb\x82\xd1\x5c\x18\x2b\xc6\x4f\xab\x69\x3b\xae\xac\xb8\x00\x7c\x51\xac\x2e\x04\x6e\xe5\xbd\xd3\x0c\x91\xd3\x61\xff\xe3\xab\x51\xfd\x77\x00\x12\x54\xc4\x39\xce\x98\x66\xce\xf6\x80\x00\xbd\x23\x05\x60\x0b\x04\x52\x3c\x43\xf1\x7d\x9c\x22\x40\x67\x5c\xbd\x03\x2a\x6f\x9a\x02\x4c\x44\xb9\xda\x17\xa8\x80\x67\x39\x07\xd2\x0a\x17\x1b\x0c\xd5\x10\xd3\x22\x04\x52\xb0\x5c\xdc\xce\xad\x7e\x17\x13\x1c\x56\xb5\x15\xb8\x30\xab\x4b\x7c\x6b\x92\x33\x6b\x85\x10\x6b\x14\xb1\xf2\xcb\x28\x43\x31\x10\x89\x32\x90\x24\x4c\x82\x0a\x9c\xa3\x44\x40\x03\x33\x9a\x0b\xe2\x5c\x49\xe2\x34\x14\x99\x9d\x22\xfc\x9b\xa5\x70\x4d\x9b\xdb\xec\xbe\xa1\x82\x52\x2a\x6f\xd4\xc8\x49\x8a\x4a\x90\x6c\x44\x0c\xd1\xac\x46\x0e\xa5\x8e\x67\xab\x14\xc4\x74\x99\xa5\x88\x37\x17\x3c\xe3\x5e\xa2\x01\x04\xb2\x22\x58\x8d\x68\x4a\x69\x8a\x20\x09\x19\x6c\x8e\x3e\xad\xf8\x84\xd5\xa2\x29\x7c\xf2\x8c\x38\x44\xad\xa1\x27\xd1\x69\xb9\xc8\x43\x22\x98\x8f\x17\x99\xb4\x44\x5e\xf7\x27\xb9\xab\x4c\x09\x3d\x95\x50\xc1\x2a\xab\xf9\xef\x36\x49\xad\x9f\x50\x78\xdb\x94\xce\x65\x41\x5b\x22\xd7\x93\x33\x98\x52\xb8\x7a\xa0\x61\x43\xc9\xbb\x89\xcc\x0d\x15\xa7\xdf\xa5\xc4\x73\x55\xf5\xae\x46\x39\x19\xce\xd5\x08\xf3\x1c\xde\xb7\x0b\xed\x46\xa0\x1f\x89\x4e\x54\xe4\x57\x72\x7f\xff\xdc\x51\xc3\x2f\x4a\xe5\xc7\x6d\xa8\xed\x5b\xe3\x99\x60\xae\x1d\x00\x48\x13\x6d\x7b\x00\x4b\x18\xef\x08\x21\xa3\xc9\x8e\x83\xe0\x10\x5c\xb3\x14\xd2\x7e\xcd\x50\xd3\xcb\xe8\x6a\xbe\x9d\x44\xdf\x2c\x48\x6a\x4a\x53\xb5\x93\x50\x25\x92\x3a\x5e\xbf\x98\x22\x06\x2b\xb3\xde\x04\xe3\x34\x7f\x6b\xa1\x55\x15\xba\x78\xf1\x5c\x7f\x37\x44\x46\x59\xce\xe5\x73\x7a\x27\x40\x26\xd2\x22\x35\xa5\x7c\x73\x34\x5e\xe0\xa2\x8c\xdd\x82\x58\xe0\x8d\x0b\xb0\x2a\x50\xa2\x8d\x91\xe8\x6c\xd0\xaf\x4e\x23\xd4\xf2\x5f\x5b\x22\xd2\x1d\x39\xbc\x02\xb4\x4a\x8d\x14\x1b\xa9\x16\x94\xcd\xb7\x53\x2a\x17\xd9\xbc\xa9\x4e\x2e\xb2\x79\x5b\x91\xe8\x7c\xb5\x3e\x4d\x21\xb5\x43\xa8\x0a\xdd\x7e\xb0\x65\xc6\xdc\xad\x46\xac\xdf\x53\x6f\x0e\x5b\xff\xde\x1e\x7b\x2d\x43\xef\x53\x20\xc0\x0e\x46\x84\xd5\x80\x70\x18\x0f\x95\xe1\xf0\x14\x06\x5d\x25\x2a\xde\x6a\xe0\xef\xde\x0c\x47\xdc\xe8\x46\xcd\xc1\x97\x05\x6d\x02\xd4\x73\x25\x77\x13\xc1\xea\x65\x9a\x3e\x66\x4b\x7c\x3c\x94\xa9\xd9\xc8\x4c\xd7\x2b\x13\xa7\x59\x69\x26\x4b\x6c\x54\x1b\x11\xc8\xde\x09\x38\x7d\x32\xa3\x4d\xd2\xd5\x4b\xdb\xf4\xb3\xe4\xc7\x33\x4d\xd0\x46\x40\xfc\x09\xd8\xa1\x35\x15\x51\x1f\x1d\xd7\x0d\xdc\x4b\x93\x6d\x84\x86\x10\x4e\x5b\x7d\x88\xe0\x74\xd8\xff\xce\xcd\x5a\x8f\xc5\x38\x2f\xa9\x61\xb3\x53\x60\x92\x08\x86\x84\xe9\xd0\x6f\x74\xba\xad\xd9\x00\x7b\x55\xd8\x6a\xa7\x49\x92\xa3\xc2\x5d\x25\xc4\x5c\x92\x81\x77\xf1\x88\x8d\x0f\x90\x0f\xd9\x60\x94\xe5\x87\xac\xe7\xab\xea\xdf\x12\x7e\xc6\xcb\xd5\xf2\x04\xbc\xfe\xf9\xe7\x57\x3f\x77\xd6\xc6\x44\xd6\x6e\x6d\x1d\x34\x3f\x49\x0f\x4c\x18\x9a\x37\x6f\x56\x35\x3f\x71\x8c\xeb\xe9\x23\xda\xe5\xf9\x98\xb5\x1c\x6e\x95\xfc\xf8\x12\xee\xbb\x2d\xe7\x30\x5e\x92\x40\x3e\x60\xdf\x0c\x87\xc2\x91\xbb\xa3\x03\x9f\x37\x11\x02\xcc\x62\xdc\x9b\x5f\x64\x2c\x24\x57\x8d\x6a\x85\xb8\x6a\xc8\x71\xfb\x4b\x3f\xe0\xc4\x57\xa1\x1a\xae\xbd\x56\xd7\x44\x7b\xa7\xd8\xdd\xd8\x41\x9e\xc8\x94\x72\x81\x42\xb4\x33\x04\x58\x57\x25\x96\xd8\x1f\x9d\x4a\x45\x26\x5f\x3f\x00\x74\x66\xd5\xbc\x7e\x44\x3a\x62\x6f\xfb\x36\x2f\xaa\xd4\xaa\x3b\x59\x17\x97\x1c\x8c\xcb\xb8\x28\x0b\xed\xb6\x45\x3d\xbb\x6b\xd3\xb4\x28\x4b\x9f\x82\x65\xf1\x5d\x9a\x02\x2d\x1e\x2e\xe7\xc3\x1d\xcb\x37\xf9\xb7\x31\xb7\x1d\xb4\x10\xd3\xaf\x5b\xd8\x74\xa9\x5b\x15\x77\xaa\xe0\x8c\x26\x5e\x79\x1a\x14\x9d\x29\x99\x67\x37\x30\x3e\x25\xd1\x0d\xa0\x94\x98\x3e\x7b\xa3\xcb\x68\x09\x34\x59\x12\x54\xf8\x35\x63\x48\x5f\xf2\x0b\xd1\x7d\x66\x4d\xaf\xc6\x06\x7a\x03\x3d\x04\x52\x77\x9f\x9d\x06\x40\x38\xb0\x0e\x9d\x0b\x80\x4c\x22\x5d\x38\x75\x26\x28\xcf\x17\xf8\xca\x7d\x5a\x17\x04\xda\x46\x1d\x74\xf6\x8e\x24\xd2\xcb\xc1\x5b\xa8\xf6\x77\x1c\x35\x1c\x56\x41\x54\xe3\x70\xb7\xbe\x77\x0d\xce\x39\x2c\xa7\xbe\xaf\x64\xce\x13\xd4\xb2\x3a\x7f\xf7\x4e\x3a\x56\x5a\x58\x36\x05\x2b\x4b\xec\xda\x35\xab\xcd\x41\x5d\xb7\x66\x25\x44\xa5\x58\xcf\xaa\x4d\xec\x3d\x68\xd5\xbd\xee\xd5\xdb\xe7\xf1\xbb\x54\xc8\x5b\x6d\x39\x35\xee\x43\x84\xc1\xeb\x80\x09\x6c\x97\x11\xc2\x21\x83\xa6\x71\xf1\xd3\x48\x20\xa9\x36\xbc\x87\x34\x29\x7e\x72\xe8\xcf\x2e\xcd\x15\x1c\x85\x00\x01\x42\x9d\x74\x68\x7c\x7f\x7b\x1f\x0d\x9c\x3a\x67\xa7\x7d\x40\x3b\x26\x4e\x35\xbe\xf7\xbe\x36\xf2\x90\xb6\x60\xe6\xa0\xc9\xad\xa3\xf7\xe0\x3b\xfa\xbb\xb9\x40\x03\x9a\x20\x9b\xf7\xa3\x7f\xb7\x6f\xe9\x5b\x7d\x1e\x5d\x70\x70\x77\x82\x58\x72\xa3\xc8\xa7\xda\x1f\xb6\xc7\x1c\x7d\x6b\xaf\x52\x96\xe6\xdc\x9b\x5f\xb0\xc0\xf2\x9c\xd7\xf1\x0d\x74\x97\xb8\xc5\x40\xb1\x54\x50\xc4\x62\x60\xf0\x5f\x57\xe7\x8f\x68\x45\x95\xef\xf1\x6c\xbd\x46\xaf\x93\x33\xe3\x98\x6b\xb5\x46\xf5\xef\xed\x35\x5a\x7b\x03\xc8\x5c\xa3\xba\xe0\xb0\x46\x83\x18\x74\xa3\x35\xaa\x5f\xe0\x41\x49\xb1\x9a\x12\x64\xc9\x14\xb0\xad\x02\xf5\x6a\xca\x55\x81\xf2\x47\xec\xf0\xc7\x5e\xcc\x8d\x57\x8d\x7a\xc6\x2b\x48\xd6\x45\xad\xcb\xac\xaa\x57\xc2\xb2\x3b\x47\xb5\x42\x8b\x12\x6e\xbf\xae\x54\x53\xc5\x46\xf1\xfd\x96\x6b\x7d\xab\x3d\x4b\x9d\x61\x5b\x5d\xdb\x93\x65\x53\x3e\xcb\x39\x9c\xcd\x70\x0c\x66\x29\xbd\x03\x90\x81\xfe\x10\x28\x85\x06\x68\x2e\xe2\xfc\x20\x45\x6b\x94\xfe\x75\xc5\x03\xcc\xb2\x14\xa3\x64\x4c\x2d\xab\xb1\xc3\xab\x28\xdd\x80\x91\xdb\x95\x0a\x00\x03\xf4\x6d\xf4\x8b\xcf\x19\xa7\x7c\xe3\x9a\x75\xf3\xdb\xe3\xce\xe3\x2d\xba\xdf\x63\x84\xae\xbc\xa3\xbb\x3f\x90\xe2\x10\x57\x77\x14\x31\x2c\xd6\xb8\x49\xc7\xc1\xf1\xc6\x80\xc8\x9e\xba\x20\xe3\xaf\x40\xad\xe7\xb7\x6d\x28\xed\x61\x6b\xd3\x96\xfb\xa0\xfd\x6d\xe4\x32\x83\x60\xf2\x76\x8f\xa2\xf3\xf0\x2a\x4d\x3a\x56\x5c\xfd\x1e\x46\xca\x85\x1b\x26\x73\x21\xd6\x66\x39\x5d\xca\x23\x1a\x70\x89\xaa\x25\x7c\x58\xb9\x87\x95\x6b\xf9\x0e\x2b\x77\xa3\x51\x84\xc4\xe0\xed\xa5\x68\xee\xf0\xa2\xeb\x9b\x8d\x88\x71\x2b\x54\x56\x06\xe2\xb5\x63\x80\x38\xab\x41\x86\x12\x30\x85\x05\x4a\x00\x95\xd7\xa7\x68\x9e\xa0\x1c\x60\x02\xee\x16\x38\x5e\xf0\x9f\xee\x01\xcc\x11\x28\x10\xeb\x6d\x62\x8f\x77\x47\x16\x45\x7c\xd2\x49\xde\xc6\x9d\x1f\x11\xcb\xe4\x16\x0a\x9e\x61\x65\x65\x4b\x00\x80\x51\x30\x45\xda\x1c\xd1\xa3\xe0\x43\xb4\xa0\x6b\xd2\xd3\x7b\xfe\x5e\xbc\xbb\x7a\x49\xe7\x73\x4c\xdc\x27\xf1\x6b\x28\x5e\x98\x4d\xca\x93\xcf\x8c\x02\x4c\x12\x71\xb9\x16\xe0\x19\x10\xc9\xf9\x40\xb1\xa0\xab\x34\x01\x73\x44\xf8\x0a\x40\x20\xa5\x73\xe1\x3f\xc0\x55\xca\x78\x0b\x71\xca\xb9\x03\x7b\x67\xdc\x02\x38\xf2\x68\x3b\xd0\x56\x9c\x21\x2c\x56\x48\x12\x3e\x6d\x8c\xc6\x34\x95\xd2\x1f\x25\xc7\x09\x22\x9c\xae\xd3\xfb\x8a\xae\xa0\x3f\x03\x6c\x81\x0b\xf9\x7c\x92\x18\x2b\x29\x38\x9c\x5c\xe6\x69\x7d\x26\x4b\x79\x5d\xb9\xf0\x50\xc1\xc1\x49\xb4\x9c\xe3\xea\x12\x69\x36\xc3\x5c\xda\xe5\x43\x8e\xbc\x61\x9b\x2f\x90\x65\x3c\x8c\x4a\x5c\x38\x6b\x43\x3f\x7f\x04\xeb\x13\x44\x12\x91\x42\xdc\x2f\x59\x1b\x6c\x92\x28\x74\x2b\x77\x11\x91\x84\xcf\x41\x89\x77\x0e\xc9\x1c\x3d\x03\x53\xc4\x39\x49\x57\xc0\x24\x4e\x57\x09\x4a\xc0\x1d\x66\x0b\x75\xd5\x51\x54\xec\x81\x3e\x03\x31\x24\x80\x92\xf4\x9e\x2f\x05\xbd\x4a\x12\x70\xb7\x40\x7c\xb0\x64\xb5\x44\x39\x8e\xa1\x9c\x01\x3e\x5f\x65\x15\x0f\x0d\xf8\x37\xa3\xf9\x12\x32\x71\x7e\xac\x9e\x23\xbd\xfd\x05\x1f\x34\xcb\xba\x29\x06\xc9\xfd\x95\xfd\xc1\xae\xea\x8b\x36\x39\x83\x17\x6d\xa0\x08\x6b\xd3\x35\xd6\x73\xa2\xe4\xca\x1c\xaf\x11\x29\x99\xaa\x07\xc4\xad\x07\x4e\xfc\x29\x02\x08\xb3\x05\xca\x6b\xf4\xa6\xb9\xb0\x94\x92\x12\x06\x04\x43\x9a\x58\x16\x10\xa1\x8c\x43\x5d\xe3\x04\x25\x6a\xf9\x34\x57\x8e\xb4\xb9\x04\x53\x93\xd5\x72\x8a\x72\xf7\x52\x92\xdf\xe7\xa8\xca\x0d\x14\x61\xc2\x22\x9a\x47\x92\x00\xf6\x67\x69\xcc\x4f\x8f\xb0\x93\xb5\xd5\x9d\x90\xf1\xd9\x70\x53\xaa\xea\x85\xf9\xdf\xe3\xb3\xe1\x33\xf0\xe1\x7c\xf8\x8c\x93\x6b\x74\x36\x1e\xfe\x8f\xd6\x3d\xca\xc9\x5e\xae\x0a\x26\xc9\x21\x28\xc7\x69\x55\x32\xf0\x33\x93\x90\x0a\x9d\x82\x2f\xf6\xf1\xd9\xb0\x83\x3e\xfb\x52\xde\x01\x06\x08\xb3\x79\xc9\x16\xc2\x5c\x73\x91\x59\xce\x7d\xc2\x55\x86\x26\x02\x2e\x04\xab\x93\x44\xdd\xa7\xe1\xe2\x2f\xa5\x30\x29\xd4\x86\xa4\x96\xd1\x9a\x18\x16\x26\x13\xc2\x99\x13\x79\x89\x8b\x02\x93\xb9\x4b\x4e\x27\xa8\x60\xea\x21\x83\xed\xc5\x75\xa0\x08\xc5\xd9\x9b\x94\xc6\xb7\x9b\x88\xd0\xfe\x50\x34\x69\x48\xfc\xfe\x50\x1d\xbe\x44\xc5\xb1\xaa\xc1\x0b\x20\xab\xd1\x93\x9b\x0b\xc7\xdc\x95\xe9\x95\x60\x62\x91\xa5\x4d\x08\x4e\xc4\x00\x2c\x40\x06\x73\xa6\xe5\xf1\xa9\x8e\x72\x68\xa2\x9e\xd5\x6a\x73\x59\xcc\xa5\x15\xa0\x62\xe9\xeb\xad\xe1\x0e\xc6\x0b\xf6\x56\x00\x88\xb1\xe7\x16\x9d\x83\x3e\x67\xfd\xf3\x6b\x3e\x68\xa8\x78\x1b\xe4\x88\x7b\x59\x88\x30\xad\x4f\xfa\x43\x20\xc7\xfe\x11\xa6\x38\x01\xe8\x33\x5c\x66\xdc\x24\xe4\x76\xde\xcd\xd1\x8b\x5f\x5e\xf6\x5e\xbc\xfe\x7b\xef\x45\xef\xc5\xf1\xcb\xbf\xdd\x1c\x71\x8e\xb9\x39\x7a\xf9\xfc\xf9\x8b\x93\x64\xfa\xcb\xc9\xc9\xf1\xeb\xbf\x35\xf3\xe2\xd8\xbe\x4d\x5c\x0f\xf4\x39\x46\x59\xf7\x21\xe9\xa6\x2e\x15\xad\xd4\x50\x53\x1c\x8b\x48\x2b\x1f\xbd\x9a\x78\x65\x67\xa9\xf9\x6a\x2a\x50\x48\xf6\x41\x07\x8d\x84\xf4\xdb\xc0\x1d\x4e\x53\xde\x59\x8e\xfe\x25\xd7\x24\x9e\x55\x26\x34\x5d\xb1\x02\x27\x48\x4c\x81\x98\x24\xa1\xbf\xbb\x07\x1d\xea\xec\x6d\x46\xf3\x60\x87\x2f\xd0\xe5\x13\x4f\xb5\xe0\xa4\x43\x13\x87\x79\x74\xe1\x31\x42\xfd\x35\x8c\x5a\xde\x46\xc8\xb2\x21\x4d\x54\xec\xa2\x0c\x16\x57\xe2\x40\x0b\x4c\xbd\x6e\x9f\xf1\xe5\x5f\x09\x56\x4c\xc0\x98\x1e\xbf\xe5\x8d\xc5\xea\x2f\x84\x4c\x2d\xd7\xfd\xb0\x0a\xa7\x3c\x93\xfd\xf0\x49\xd6\xb0\xbd\x7d\xa2\xaa\x44\x83\x08\x14\x2d\x6a\xa9\x98\x9d\x73\xbe\xbc\xf8\xcc\x50\x4e\x60\x7a\x41\x18\x66\xf7\xa3\xbd\xcb\xa1\x0d\xa2\x35\xfa\x0b\xe7\xda\x0d\xf0\x90\x5f\x48\x14\x47\x7f\x9b\x2d\x09\xb0\x49\x54\x47\x7f\x35\xde\x2b\x13\x96\x94\x52\x97\x8b\xa7\x5b\x74\x5f\x80\x1c\xa5\x52\xa9\x2e\x70\xc6\x4d\x14\x28\x26\x9a\xce\x94\xf0\xe8\x29\x31\x54\x66\x7a\x11\xfc\xd4\x27\xcf\xc0\x80\x32\xfe\x3f\x99\xc2\x51\x58\x80\xe7\x14\x15\x03\xca\xc4\x2f\x1d\xb3\xbc\x0b\x29\x02\xa3\x51\x56\x42\x28\x89\xc8\xa5\x33\x91\x42\x86\x0f\x55\xa9\x24\x3d\xe2\xbe\x54\xb3\x25\xd1\x70\x01\xfa\x84\x33\xb4\x1a\x32\x2f\x54\x80\x24\x08\x61\x0b\x4e\x11\x20\x94\x44\xc2\x9e\xb1\xc2\x50\x94\xa2\x79\x8d\x50\x1e\x70\x0a\x94\x30\xe7\x65\x09\x37\x8c\x50\x96\xc2\x18\x25\x20\x59\x09\xa4\xa1\x4e\x96\xcb\x6d\x52\x94\xcf\x11\xc8\x84\x51\x1a\x4a\x9e\xf0\x15\x21\xbf\xcd\xe7\x6b\x03\x99\x2e\xbf\x40\xc9\x2e\xbf\xce\xa0\x5e\x55\x31\x24\xb8\x57\x47\xb9\x5b\x25\x98\xb5\x83\x06\x18\x16\xf4\xd3\xdf\xc6\xc1\xbf\x3a\x46\x9b\x29\xdd\x90\xd1\x86\xd6\xec\x0e\xeb\xeb\xcf\xa6\x24\x0d\x05\x69\xc6\x54\x8a\x4a\x43\xb5\x94\x62\x69\x14\x1f\xfb\xd4\x63\x4b\xc3\x3d\xbe\x92\x6c\xb7\x3f\x28\xc4\x83\x42\xdc\x85\x14\x07\x85\x78\x50\x88\xd5\x77\x50\x88\x1e\x8c\xbe\x95\x42\xdc\x53\xc0\xee\xed\xa7\x73\xf7\xe6\x54\x90\x80\x16\xd4\x1e\x38\x8e\xa9\x56\x5f\xc8\x22\x08\xa5\x68\x00\x2f\x74\x32\x78\x64\x20\xee\xa7\x9f\x9b\xc6\x1d\xb7\x9d\x6a\xdb\x6b\xf6\x2a\x72\x02\x6c\x65\x5b\xde\x57\x02\xfa\x24\x43\xe0\x5e\xa9\x3e\xf7\x70\xd8\x2c\x7d\x82\x9b\xa5\x62\x63\x4b\xce\x8c\x61\x4e\xf6\xc0\x48\x56\x9e\xa2\xbd\x6e\xa7\x72\x2b\x75\xe7\xf8\x3d\xcd\xf1\x1c\x13\xc8\x90\xb2\xb6\xb7\x8d\xdf\xbb\x82\xf6\xea\x7e\xd7\x21\x5e\x7f\x88\xd7\x1f\xe2\xf5\x87\x78\xfd\x53\x8f\xd7\x1f\x5c\x6d\xeb\x77\x70\xb5\xcb\xef\xe0\x6a\x1f\x5c\xed\xea\x3b\xb8\xda\x1e\x8c\x0e\xb1\xe7\x43\xec\xd9\xff\xd5\xa8\xdf\x6c\x2f\x2d\xb2\x14\x17\x42\x21\x88\x3c\x04\xd5\x70\xd4\x2a\x5d\x72\x65\xd2\x13\x27\xb7\xcc\x5f\x04\x45\x4f\x07\xe7\x9d\x27\x09\xc1\x41\x2b\x1f\xb4\xf2\x41\x2b\x37\xbe\x83\x56\xf6\xa0\x7c\xd0\xca\xdb\xd5\xdc\x4b\x00\xfc\x70\x85\xe0\x70\x85\xe0\x70\x85\xc0\x52\xf9\x70\x85\xe0\x70\x85\xa0\xfc\x1e\xed\x0a\xc1\xd6\x9b\x5e\x32\x67\xc2\xf8\x3e\xb3\xca\x21\xb7\xc0\xac\x11\x5b\xa5\x3f\xe0\x50\xb4\xb9\x56\x97\x95\x35\x59\x2a\xd0\x91\x6c\x2d\xfe\x85\x0b\x30\x45\x0c\x46\x22\x21\x02\x97\x9d\x2f\x7a\x7f\x77\x8f\x71\x8b\x94\x21\xfa\xd5\x91\xae\x9d\x3d\xfd\x1a\x8a\x98\xfa\x72\x67\x4c\xee\xe1\x29\xe1\x59\x1f\x88\x34\xcf\xd7\x88\x33\x83\xf4\xf2\xcc\x72\x6c\xdd\x6d\xf1\x8a\x14\x51\xd8\x81\xa5\xa0\x59\x29\xcb\x39\x1e\xce\x5e\x6c\xb4\x72\xe6\x65\xe4\x4d\xea\xbf\xd9\x99\x6a\xe3\x47\x6c\x40\x48\x2a\x1d\x23\x9f\x0a\x8c\xb9\x83\x8c\x92\x41\x2b\x85\x48\xf5\xe6\xb0\x4e\x0c\xa2\x7f\x89\x29\x91\xb6\x58\x71\x02\xfe\xf9\x07\xff\x85\xc3\x47\xc9\x47\x9d\xf3\x43\xfc\xfa\xa0\xb9\x52\x12\x52\xd8\xd2\xa5\xc8\x9f\x9d\x19\x53\x8c\x62\x5b\xd2\x94\x73\x52\x78\xf3\xa6\x34\xcb\xdb\xa9\x53\xda\x68\x29\xfa\x97\xd9\x53\x1a\x35\x36\x4e\xa0\xc2\x17\xaf\x82\xb9\x55\x12\x95\x84\x14\x3a\x83\x0b\x30\x47\x09\x0e\x59\x51\xcc\xef\x90\x15\xa5\xf6\x1d\x72\x2b\xb8\xbe\x43\x6e\x85\x8d\x46\x71\xc8\x8a\xf2\x54\x57\xee\x53\x8f\x92\xee\x5d\xb2\x1c\xa2\xa1\xd6\xef\x20\x70\x37\x43\xfc\xbb\x16\xb8\x4f\x38\x99\x4d\x87\xbc\x64\xf4\xed\xa7\xc4\x75\x06\x33\x54\xb6\x77\x9d\x07\xee\x5e\x0b\x9b\x4c\x93\x87\x8d\x02\x9e\x33\xf2\x9f\x02\xf6\x4f\xb3\x07\x7c\xa4\x28\xb9\x09\x6f\x1c\x5c\xd5\x4d\x5c\xd5\x4f\xb4\xa8\xf9\xa8\x9f\x68\x61\xf7\x4e\x3f\xc9\xb4\xd7\x6d\xbf\xf4\xff\x68\x61\x77\x48\xcb\x82\xb6\x27\x6a\xf4\xda\x74\x41\x75\x91\xdb\xf7\x14\x3a\x3f\x5f\xa3\x0f\xe4\x96\xd0\x3b\xf2\x56\x6c\xea\x97\x6f\xcd\x1e\x5e\x41\x70\x56\xdd\xe3\x4b\xda\x1e\x33\x78\xf3\xd7\x05\xfc\xe2\xa1\x43\x5c\x76\x6b\xb8\x6e\x35\x64\xa2\xdc\xac\xe1\xbe\x0a\xb0\x13\xda\x92\xfd\xc9\x7c\xc2\xad\x20\x2f\xe2\xde\x2d\x87\xf2\x75\xbf\xe7\xde\x4e\xa6\xab\xbc\x70\x6d\x83\xec\xd4\x8b\x53\x0d\x1f\x88\x03\x40\x52\xc4\xd9\x12\xe6\xb6\x13\xf0\x1d\x70\xcb\x9d\x0e\x0b\xe6\xbe\x51\x55\x4f\x43\xbe\x7a\xf8\x74\xd0\xb3\x94\xde\x35\xd3\x41\xf3\xdf\x9c\xf9\xa0\x65\xa1\x23\x21\x34\x2f\x74\x26\x84\xae\x0a\xad\x09\xa1\x4d\x4c\x9a\xfa\xc4\x2c\x76\x3c\x9b\xb3\xa5\x42\x81\x69\xb6\x80\x9b\x68\x15\x43\x31\xfc\x67\x53\x5f\xe8\x47\x6e\x8b\xea\x91\xdb\x35\x77\x55\xa1\x38\xd9\x1f\x8b\xa9\x51\xcb\xa9\xda\x4a\xf8\x81\x74\x0e\x9f\xc3\x11\x5c\x66\x29\x26\x73\xc9\x09\xfb\x16\x3a\xde\x27\xd7\xba\x2c\x69\xde\xd8\xb3\x39\xbf\xb3\xb0\x0a\x7b\xf5\xb5\x14\x1b\x2f\x9f\xff\x6c\xad\xc2\xa9\x38\xb6\x6f\x2c\x85\x8c\x12\x00\x44\x56\xee\xfb\x4d\x11\x30\x16\xb9\xbd\x02\xce\x66\xf8\x73\x07\xf2\x1e\x20\x30\x66\x78\x8d\xde\xf2\x51\xe0\x25\xba\x5a\x3d\x06\xbd\x5f\xbd\x7e\xee\xa8\x52\x62\xfc\xda\x5a\x01\x27\xe9\x23\xa3\xda\x8d\xe9\x0b\x2b\x5b\x14\x6a\x61\x5d\x3f\xa0\xba\x35\xd0\x7c\xf1\xbc\x13\x4f\x4b\xb9\xd7\x4d\x74\x3d\xec\x57\x97\x08\x0f\xaa\x11\x51\x5e\x64\x90\xd4\x14\xa2\xfc\xc9\xae\x0f\x75\x99\x4d\x1d\x5e\x88\x32\xbb\x36\x34\xcb\xda\xca\xb0\x8e\x44\x53\x17\x1a\xa5\x4f\x47\x15\xfe\x58\x7a\x6c\xeb\x27\xe1\x36\x77\xab\x1e\xf6\x11\xb9\xef\xe7\x39\x38\xb9\x7a\xf7\x6d\x2e\xc0\x64\x89\xc9\x88\xb9\x25\x66\xfd\xa2\x35\xaf\x8d\x45\xcc\x1b\xaf\x91\x7c\xec\xc5\x11\xec\x2e\x65\xa0\x78\x0d\xfe\x81\x14\xb5\x07\xb6\x2c\xa6\xd6\x37\x4e\x13\x9c\x23\xdf\xf5\xf2\xda\x98\xcf\x75\xe5\xf2\x88\x0a\x8c\x6f\x91\x3c\x2f\xb5\xa4\x04\xbb\x2f\x3a\x94\x24\x98\x52\xb6\x78\x20\x0a\x60\xc7\x0d\x6e\x11\xa2\x5f\x79\x68\x63\xc3\xc9\x48\x83\xfa\x20\x66\xe9\x30\x88\xde\x15\x12\xa0\x3f\xd4\x44\xbf\xb8\x1e\x0d\x4f\x07\x8a\xf6\x0e\x7a\x77\x11\x93\x9b\x63\xfd\xf3\x10\x1c\x3e\x10\xfc\x69\x85\xe4\x5b\x37\xfd\xf3\x4d\x70\xa8\x4c\x94\xdd\x0d\x10\x07\x08\xc3\x00\x79\xf9\x6a\x1b\x03\xc3\x72\xea\xf0\x31\x0d\x0c\x91\x09\x21\xc9\x69\x96\x52\xf5\xa6\x9a\xfa\xc3\x71\x9e\x48\x17\x5a\x4d\x0c\x01\xec\x3c\xa7\xd9\x25\x6d\x3d\xaf\x56\x2b\xb4\x18\x19\x35\x44\x5a\x46\x86\x59\x6a\xb7\x32\x7c\x56\xc4\xb6\x0f\xae\xfd\xc8\x1e\x75\x43\x0c\x78\xde\x86\xb7\x4c\xbb\x7f\x80\x9e\x41\x02\xf9\xf2\x9b\x00\x28\x17\xaf\x82\xdb\x15\x14\x3e\x97\x8d\x34\x8a\x32\xfb\x86\x62\x18\xcd\x3e\x60\x7a\x0f\x60\x1c\x47\xe2\x98\x32\x27\xa4\x45\x6c\x94\x22\xa3\x34\x4f\xeb\x9f\x37\x5f\x07\xa1\x89\xef\xf8\xd4\x06\xc6\x18\x1f\x35\x48\xab\x04\x25\x7a\x04\x94\x88\x4e\xcc\xac\x1d\x7a\xc3\x51\xda\x5e\x7f\x25\x93\xed\x41\x25\x5f\x96\xaf\xc8\xbe\x04\xdf\x90\xc3\x72\xc8\x3d\xb3\xac\x2d\xf6\x6a\x58\x34\xa5\x9e\x59\x78\x10\x7a\x4f\x4b\xe8\xb5\xa7\xdc\x3f\xbe\x8e\xb5\xf2\x40\x92\x63\x86\x53\x86\xd4\x89\x24\x9d\x75\x89\xd1\x1f\x48\x84\x34\x08\x25\xe7\xeb\xad\xa4\xca\xbe\xad\xea\x22\x8f\x9d\x46\x75\x48\xac\x77\xeb\xc6\x45\x1e\xbf\x3f\x3d\xdb\xa1\xe7\xed\x5b\x17\x79\xbc\x4b\x88\x7a\xd7\x10\x37\xce\x86\x39\x75\xbe\x6e\xd1\x68\xfe\xa0\xea\x04\xc6\x71\x69\x56\x60\x92\xad\x98\xd4\x29\x31\xcb\x1d\x27\xf3\x65\x89\x4d\x9b\x9c\xc6\xf1\x50\x83\xea\x73\x50\x4d\x95\xd2\xaa\xd0\xd6\x2b\x6d\x74\x9a\xca\xa5\x55\xe3\x66\xc3\x73\xf9\x9b\x2b\x99\xbd\x9e\x80\xa8\x9f\x8a\x6d\x0e\xa6\x76\x3b\x51\xfe\x22\x9f\x6a\x5e\xe5\xd2\x99\xe5\x5a\xec\xf4\xac\x0f\xce\x06\xfd\x6f\xaa\x84\x76\xbf\x0e\xd0\x48\xbe\xd7\x60\x8d\x51\x86\xe2\x1a\x31\x4a\x4d\xc6\x0b\x38\x15\xda\xb4\xdb\x50\x77\xc1\x38\x9e\x94\x10\x26\x02\xc4\xbe\x45\xab\x3e\xdf\x38\x59\x42\x02\xe7\x28\x99\xc8\xc9\x7c\x38\x95\xa3\xd3\x0a\x4e\x56\x59\x02\x99\xf7\xc8\x9c\xd7\x23\x00\x82\x3e\xf8\x11\xf0\x2d\xee\x49\x3c\x49\xe9\x1c\xbb\xd3\x34\x86\x9e\x01\x0d\x3c\xb8\x1d\xa3\x9c\xcd\x70\xea\x8a\x55\xd6\xfb\xec\x3e\x36\x7b\x8b\xee\xf7\x04\x2d\x4e\x31\x22\x6c\x52\x14\xbe\xcb\x9f\x9d\xd3\x46\x10\x7b\x84\x69\xe3\xda\x29\x9f\xc1\x18\x4d\x96\x6c\xd5\x89\x6e\xc7\x55\x61\x2e\x86\x31\x07\x25\x23\xa1\x13\x01\x7c\x0d\xbb\xc9\xd0\x01\x37\x9b\xe6\x13\x96\xc3\xf8\x16\x93\xf9\x84\x50\x32\x29\x08\xf4\xdd\x80\xee\xa4\x2d\x90\x27\xbe\x26\xf2\xa5\xf5\x49\xbc\x58\x91\xdb\x49\x81\xff\xf4\xcd\x7e\x10\xa6\x2a\x76\x30\xb9\x83\x98\x4d\x66\x34\x9f\xa8\x9b\x5f\xbb\x22\x9b\x28\xbd\xb1\x39\x60\x0f\xc2\x39\x9a\xe3\x82\xe5\xae\xcb\x0f\xfb\xe1\xaf\x25\x9c\xa3\x49\x96\xa3\x19\xfe\xdc\x89\xab\x7f\x59\x29\x50\xab\x34\x9d\x14\x28\xce\x51\x37\x07\xf8\xe1\x29\xb9\xc8\x20\x26\x28\x2f\x26\xa5\x8c\x5f\x5b\x75\xed\x8e\xd0\xf9\x3f\x73\x9a\xa6\xe8\x81\xe0\x2f\x68\xc1\xf6\x06\xd9\xd4\xa7\x0f\x41\x16\x82\xf7\x0d\x36\x26\x38\x41\x59\x4a\xef\xf7\x04\x8f\x66\xb3\x14\x7d\x9e\x88\x1c\xbc\x7b\x03\x89\xc8\xba\xb8\xc3\x2c\x5e\xec\x09\xe2\x7c\x9a\xed\x01\x52\xea\xcd\x5c\xbc\x17\x21\x60\x30\x7f\x4a\xe7\x13\x71\x13\x7e\xc7\xb1\x73\x7e\x97\xb3\xb3\x2f\x88\x72\xca\xf7\x07\x13\x17\x0c\xd3\x47\xd1\xe0\x05\x83\x69\x3a\x11\xfd\xed\xaa\x67\x34\xb0\x2c\xa7\x1d\xc6\x50\xd7\xf0\x97\xab\x54\x5f\x23\x70\x35\xde\x71\xe0\x4a\xd7\xee\x32\xe4\x24\xa7\x99\x98\xec\xc7\xb2\xe7\x77\x32\x08\x69\x82\x32\x9a\xe0\xd9\x77\x81\x6d\x91\x63\xba\xfe\x2e\x30\xbd\x5d\x4d\xd1\x23\x20\x4a\xd7\xc5\x64\x89\x96\x34\xbf\x9f\xa4\x78\x89\x77\xb5\x5e\x56\x05\x37\xab\xf0\x1a\xa7\x48\x39\xa4\xca\x14\xd8\x59\x04\x54\x66\x56\xe6\x3a\x94\xba\x09\xa2\x39\x9a\x52\xca\x26\x4a\xa3\xde\x61\xb6\x98\xd0\x75\x37\x96\x7e\xa0\xdc\x01\x98\x04\xdc\xb4\xdd\xab\xc3\x99\xd1\x9c\x4d\x44\xc6\xa8\x20\x27\x31\x24\xa5\xd9\x06\x99\x1e\xc5\xf1\x96\xce\x5a\x81\x7e\x8a\xfe\x50\x2b\x50\xb4\x33\x48\x91\xa3\x6c\x92\xa1\x7c\xc2\x05\xd6\x3e\xa1\x0b\x33\x02\xc6\x6c\x22\xc3\x84\xfb\x71\xfb\xb5\xc7\x96\xa1\x1c\xd3\x04\xc7\xc2\xb7\x9c\xcc\x53\x3a\x85\xe9\x04\x93\x19\x9d\x14\xf7\xa4\x19\xf3\xb2\x77\x66\x5d\x58\xce\x48\x5a\x75\xcd\xce\x40\xc6\x1f\x4b\x13\x4d\x6a\xd1\xb4\x62\x15\xc7\xa8\x28\x66\xab\x14\xc4\x74\x99\xa5\x48\x9f\x4d\x72\x04\x71\xf5\xe7\x3b\xcd\x67\x43\x6c\xab\x41\x6e\x7c\x3f\xb1\x15\x21\x37\x82\xe1\x42\x3e\xbf\x87\x99\x23\xfa\x8d\xa3\x4a\x02\x46\x52\x98\xeb\x62\x79\xc6\xae\x59\xa7\xb8\x2f\x18\x5a\xf2\x3a\xb5\xed\x23\x2b\xa4\x48\x5b\xd9\xe0\xe6\xe8\xcb\x97\xde\x98\xde\x22\xf2\xf5\xab\xbe\x01\xa9\x3c\xf1\x28\x4b\x57\x73\x4c\x9a\x1d\xdd\x90\x12\xd7\xca\x0c\x56\x70\x4f\xc0\xbf\x23\x09\xe3\x4b\x45\x92\x9b\xa3\x94\xce\x65\xb6\xa8\x9b\x23\xd5\xe3\x59\xd9\xf2\x92\xce\x2f\x79\x11\xef\xfe\x99\xd9\x08\x66\x38\x8e\xb8\x55\x5c\xf0\x56\x5f\xbe\xf4\x4e\x33\x1c\xff\xca\xff\xfe\xfa\xb5\x5d\x31\x47\xb3\x1c\x15\x0b\x86\x97\xa8\xec\x84\x37\xb8\x96\xbf\x8f\xf1\x12\xd9\x7b\x28\x56\xd3\x92\x45\xa3\x04\xa5\xf0\xde\xe8\x6e\x64\x14\x9e\xf3\x32\x4b\xd7\x93\xb2\xeb\xf8\x16\xe5\x13\x98\xfc\x6b\x55\x30\x3b\x0e\xbc\xc2\xa9\x28\xb7\xe3\xb2\x2a\x50\xce\x27\xb8\xd6\xfa\x43\x81\xf2\x01\x74\xa1\xcf\x35\x26\x64\x28\xba\x45\xf7\x51\x06\xd9\x42\x36\x3d\x5e\x15\xf9\x71\x4a\x63\x98\x1e\x23\x16\x1f\x8b\x09\x44\x39\x3b\xe6\x1d\xf4\x6e\xd1\x7d\x13\x52\x8c\x23\x19\xd1\x28\x7b\x1e\x09\x6e\xea\x27\x88\x30\x3c\xc3\x28\x6f\xf7\x1e\xe3\x68\xbd\x5c\x46\x9c\xe1\x65\xab\xdf\xca\xd4\x72\xa2\xea\x97\x2f\x11\xc0\x33\x40\x10\xe8\x7d\x5c\x2e\xcf\xe9\x12\x62\x22\x2e\xd5\x7e\xfd\x6a\x83\x93\x88\x0a\x65\xff\x65\x13\xd5\x31\x87\x86\xd2\x02\x05\x35\x76\x20\x2f\x60\x90\x84\x83\xa8\x23\x57\x71\xa3\x07\xc1\x8a\xd9\x4d\x24\xab\xa6\x41\x88\x5a\x80\x74\x23\xdb\x98\x28\x61\xc3\x44\x0c\x11\x48\x2a\x3e\x1b\x8b\x3f\x8d\xb6\x6a\x74\x67\x9c\x85\xc0\xcd\x91\x3c\x7d\xd3\x18\x5a\x3a\x35\xa6\x6f\x40\x09\xf2\x90\x69\x40\x7f\x87\x98\xbd\xa5\xf9\x48\xc6\x44\x2f\xb2\x6b\x04\x13\x2e\xb7\x0b\x17\x78\x42\xa3\x3b\x88\x59\x34\xa3\x79\xa4\x22\xa9\x11\xca\xa2\x5c\xb7\x53\x0b\xcd\x03\x59\x2c\x37\x3b\x3e\xaa\xf2\xbb\x1c\x66\x8b\x0b\x92\x64\x14\x13\x76\x9a\x24\x62\x95\x82\x9b\xa3\xe7\x4d\x64\x34\x02\x73\xde\x20\x42\xaa\x45\x04\x93\x44\xaf\x7a\x70\x62\x4a\x2d\xd9\xca\x14\x08\xbe\x1e\x6b\x72\xa1\xd6\xa1\x18\xe5\x3f\x39\xe2\xc2\xd0\x02\xff\x85\x49\x82\x3e\x3f\x03\xff\x85\x19\x5a\x82\x93\xff\xcf\x05\x56\xfd\x5c\x80\xaf\x5f\xd5\xa8\x65\xcb\xaf\x5f\x9f\x7d\xf9\x22\xc8\xf1\x05\x18\x50\x6f\x9f\x81\xff\x5a\x83\x93\xff\x4f\xc1\xe5\x8c\xf0\xe5\x0b\xf8\xaf\x5b\xf1\x2f\xc9\x23\xbc\x82\xfc\x1d\xcf\x00\xfa\xc4\x0b\x6f\x8e\xa4\xb8\x31\x80\x6a\x62\x7f\x55\x3f\xfc\x51\x8d\xcb\x3d\x19\xa7\x49\xa2\x5f\xac\x1e\x89\x08\x74\x31\xa6\xd7\x89\xd4\x09\x2e\xee\xe0\x94\x47\xaa\x51\x24\xe3\xd6\x45\xc4\x68\x94\xab\x76\x5a\x0c\x7b\x40\x7b\xd8\x43\x1d\x5f\x1b\x2a\x23\x68\x44\x20\x7b\x27\x4c\xa0\x3e\x99\xd1\xd1\x3d\x71\xae\x09\x65\x3e\x45\xda\x7c\x8a\xb8\xf9\x14\x49\xf3\x29\xe2\xe6\x53\xc4\xcd\x27\x85\x5c\x67\x2f\x4d\x0c\xab\x7e\xa4\xfb\x10\x25\x48\x70\x65\x82\x52\xc4\x50\xc4\xd5\x17\x5d\x31\x05\xfd\x4a\x54\x39\x17\x35\xce\x45\x85\xb1\x2c\x6f\x68\x21\x15\xe3\x88\x44\xc0\x44\xb5\xed\xcb\xdf\xfa\xfc\xa7\x66\x75\xfe\x5b\xa4\x02\x22\xa5\x00\x11\x35\x87\xf2\x47\xb7\x18\x11\x9b\xcf\x16\x01\x99\xd1\x64\x9a\x44\x89\x12\xc1\x2b\x82\x8f\x19\x89\x0c\xb1\x74\xfc\xe6\x3c\x6a\x58\x22\x56\xd1\xc7\x01\x45\xd3\xc4\xa2\x6b\xb8\xed\xbd\x9f\x2e\x38\x24\xdd\x87\x53\xca\x6a\x71\x91\x2d\xee\x0b\xae\x5e\x3c\xe2\x3a\xca\x44\x79\x0b\xe3\x52\xe4\x91\x18\x66\xb2\xfd\x3a\x85\x02\x67\xb5\xb8\x3f\xa6\x90\x58\x15\xab\x6e\xaa\xf6\x9d\x22\xbd\xef\x54\x97\x44\xef\x65\x69\x5f\x15\x36\x6d\x13\x3e\x2d\xd3\x3c\xd2\xfb\x4c\x11\xa1\x44\x30\xb3\x02\x32\x7c\x73\x3d\x56\x45\x03\x4a\x38\xeb\x5a\x00\xac\xf3\x59\x53\xd3\x7c\xbc\x7e\x5b\x53\x36\xf5\x06\xe9\x2b\xc5\xbf\xa2\xee\xe5\xab\xab\x95\xbd\x1e\xfa\xcc\x22\x65\x67\x6a\x3d\x20\x2a\xeb\xb5\xae\xb2\x24\x56\x1a\x20\x90\x11\xd7\xf9\xcc\xc4\xd4\x30\x9c\x3c\x8a\xd9\x68\x73\xb5\x46\x79\x0a\xef\x2d\x4d\x9b\x5c\xa2\x0e\xb6\x56\xaa\x44\x9c\x45\x11\x63\x69\xaa\x02\xa5\xb2\x65\x2a\xb1\x50\x8d\xdd\x1e\xa1\x04\x56\x19\x88\x21\xdc\xfe\xef\x46\x25\x85\x35\x37\xf5\x6d\x04\xd9\xa6\x8b\x12\x56\x9d\x42\x75\x66\x5a\xc2\xcf\x62\xe1\x15\x51\xb1\x8e\xa5\x12\x56\xd3\xfe\x1e\x7e\x1e\xf0\x82\xd1\x3a\x16\x3a\xb0\xc1\x85\xa5\xc3\x13\x6d\x40\x70\xbb\x6b\xd4\xae\xb9\xf7\xe9\xd9\xc7\x14\x69\x6c\xdd\x33\xd4\xd1\x4b\x03\x40\x7d\x5a\x9a\x53\x03\x0c\x9d\x50\x66\xbd\xfa\x4e\x28\xa5\x14\xde\xd6\x84\xaa\xb7\x0f\xa7\xd3\xf7\xc5\x4f\x8f\x4f\xa5\xdb\xd5\x14\x7d\x67\x44\xfa\x16\x8b\x2e\x86\x8c\xa5\x07\x42\x05\x13\x2a\xcb\xe9\x12\xb1\x05\x5a\x15\x07\x62\x75\x12\x4b\xed\x82\x1f\x28\x55\x52\xca\x46\xb2\x2a\x2e\x80\xb3\x28\xa3\x54\x58\xd8\xff\xac\x37\xb4\x92\x0f\x91\xa4\x72\x09\x24\x88\xfe\xf0\x42\xf4\x7a\xf4\xcc\xd6\x40\x5e\xe6\x6d\x35\x19\xf1\x9f\xab\xd0\x6b\x89\x63\xf5\xe7\x1f\xf5\xa9\x18\x31\xc8\x70\x5c\x77\x89\x2d\x51\x2b\xe9\x59\x47\x85\xa8\x5d\x75\x6b\x69\xec\x0d\x8e\x9d\xdf\x13\xb8\x0c\xef\x2e\x91\xd5\xcb\xfe\xac\xcd\x7d\x46\xb5\x70\xb6\xf5\xb6\x48\x24\xb6\x45\x2a\xe4\x09\x64\x67\xaa\x68\xc4\x4b\x5a\x8e\x85\x1c\x6d\xb4\x8f\x29\x15\x90\xb6\x99\xd8\x7a\xc3\xb0\xe9\xad\x80\x71\xf7\x77\x07\xb4\x87\x34\xd9\x04\x59\x51\x7d\x1b\x14\x65\xb8\x26\x12\xc7\x0c\xa3\x02\xff\x89\xb4\x4f\x49\x13\x39\xc7\x67\xbc\x64\x84\xff\x44\x4d\x6b\x9e\xfb\xde\x7b\x98\x9f\x81\xb8\xde\xb3\xf1\xec\xd4\x9a\x6d\x3a\xf0\x1a\xee\x2a\x60\x65\xc1\xdd\x5c\xdf\xc2\xa1\xa9\xb8\xde\x05\x59\x1d\x8d\xd6\x8e\x8d\x78\x4b\x59\x51\x54\xde\x05\xd5\x71\xc1\x11\x2f\xd1\x2b\x46\xfc\x6f\x41\x0b\x16\x89\x33\x3e\xfe\x2d\x18\x98\x65\xf5\x90\x4f\x98\x67\x57\x97\x3d\x17\xd9\xb5\x3a\x61\x69\x13\x01\x59\xa4\xcf\x5f\x96\xf4\xae\x1a\x78\x9d\xf0\x46\x53\xb2\x4a\x53\xa7\x44\x92\x41\xb1\xf7\x34\x41\x16\x1c\x54\x50\x6d\x49\x93\x4a\x6c\x54\x0d\xbc\x38\x34\x9a\xb6\x71\xa8\xaa\xb6\xb7\xb3\x7e\xa5\x05\x3b\xe5\x93\xe0\xde\xcd\x8a\xb1\x8c\x24\x56\x39\xc5\x4d\xb9\x56\x5e\x10\x39\xec\xb3\x3c\x99\x7d\x96\xa0\x0d\xb1\x27\x19\x9a\xda\x38\x72\xa7\xa5\xda\x3a\x85\xa4\x1e\x63\x94\x21\xca\x5a\x65\xee\xdd\xc1\x0c\x9b\x95\x39\x4b\x9e\x0e\xfb\x96\xca\x95\xb6\xa8\xf6\x7e\xe5\x75\xdb\xb3\xfe\xf9\x75\x0b\x11\x29\x63\xeb\xf5\x85\xd0\x36\x2d\x07\x53\x70\xc6\x30\x33\x96\x86\x10\x98\x31\xcc\xc6\xf7\x16\xeb\x80\x53\x05\x93\x59\x0e\x4d\xcc\xfb\xfc\x87\x12\x6f\x35\x9b\xbd\xf7\xe3\x0f\x0d\xee\x7d\x3f\xfe\x00\x9e\xd7\xa9\x5c\xde\x34\x88\x96\x6c\xa5\x83\x59\xbc\x61\x7b\x09\xd4\x57\x03\xaf\xf5\x2b\x82\xc9\x35\xa5\xcb\x76\x37\xba\xc4\xb6\x89\x55\xeb\x32\x5a\x20\x98\xe4\x54\xc6\xa6\x65\xdf\x15\x54\x27\x0e\x15\xb0\x98\xe0\x88\x20\x56\xed\xb6\x84\x28\xe1\x39\x64\xe8\x0e\xde\x9b\x26\xc4\x3b\xf9\x93\x53\x05\xe7\x74\xc5\x90\x4d\x53\x7a\x3a\xaa\x5a\x27\x7a\x33\xfd\x79\x4f\xfc\x77\xfc\xdc\xda\x8d\x81\xe1\x9d\x03\x39\x7b\x23\x8b\x97\xf1\x87\xdd\x92\xf0\x72\x71\xa0\x0d\xf1\x23\x06\x8d\x9b\xad\x7d\x61\xe2\x43\xb4\xf7\x10\xed\x7d\x3a\x71\xcc\x43\xb4\xf7\x10\xed\x3d\x44\x7b\x0f\xd1\xde\xa7\x4f\xac\x43\xb4\x37\x2c\xda\x2b\x23\x2d\x51\x92\xd3\x8c\xd3\x4c\x59\xce\x2a\xed\x8c\x8c\xb5\x7c\xb5\xb5\x08\x8f\xcd\xd8\xba\x2b\x2f\xba\xdc\xe8\x13\x6f\x09\x1a\xd2\xa4\x3f\xf3\xf4\x18\xd1\x75\x11\x2d\xee\x22\x3a\x9b\xa5\x14\x26\xda\x2b\xcb\x31\x5d\xeb\x56\x46\x18\x48\x45\x2f\x02\x02\x41\x7a\xd4\x4d\x46\xaa\x07\x34\x64\xd0\xa4\x15\xd2\x70\x99\x6d\xb2\xfb\x16\x5c\xee\xcf\x31\x3e\x6a\x70\x02\xbe\x94\x23\x4b\xc4\xdf\xe5\xf1\x2b\x50\x79\x40\xe8\x93\x8e\xef\x9c\x89\x1b\xe7\xa3\xd1\xa5\xfd\x98\x96\xb0\xc7\x0b\x79\x1c\x06\xdc\x1c\x55\xf1\x1e\x75\x7a\x2b\xb9\x39\xb2\x7a\x5e\xbc\x83\xeb\x15\x79\x37\xcd\xce\x34\x2f\x39\xf8\x5c\x05\x93\x0b\x86\xe3\xa2\xc4\x5f\xf6\x23\x90\xa7\xb3\x59\x85\x7a\xd3\xa4\x2d\x27\x26\xb8\xdb\xf9\x34\x13\xa1\xc5\xf6\x49\xea\x2f\xad\xb8\x44\xf7\xf9\xcf\x7a\x83\xa0\x18\xc2\xf7\x10\x41\xf2\x05\x58\x2c\x71\x86\x77\xd3\xac\x8c\x47\x1b\xa7\x54\x5a\xa8\x05\x34\x6d\x9d\xbb\xb6\xfb\x21\x61\x27\xd6\x8d\xca\xe6\x81\xef\xd6\x71\x6f\x7b\x93\x3d\x1c\xf8\x96\xd0\x6e\xe1\xec\x16\x3a\x15\xc6\x34\xa7\xb7\x28\xd7\x03\xf9\x8d\xd7\x7d\x23\x7f\x6a\x21\x26\x1b\xc8\x1c\x11\x4d\xb4\x38\x12\xc5\xb1\xe8\x2a\x92\x35\xac\xd8\xd4\x40\xf0\x36\x1d\x30\xe2\x9c\xb9\x60\x40\x47\xfb\x18\x7a\x5a\x31\xaa\xe7\xd4\xca\x92\x5d\x3a\x38\xa5\xab\x44\x9c\x0d\x75\x92\x33\x96\xd1\x82\xc8\x98\xec\x76\x3f\x1d\x61\x07\xde\x46\xfc\x21\x97\x9b\x95\x49\x64\x1b\xb5\xe2\x65\xc8\xcf\xac\xed\x8c\x52\xb4\x04\x59\xfd\x87\xad\xef\xb1\x88\x90\xb7\x76\x34\x9f\xea\x35\x16\xcb\x2e\x1e\x81\x22\x8d\xd6\x35\x24\x73\xd4\xd8\x27\x6a\x6c\x14\x9a\x35\xd5\x46\x94\xae\x27\x2e\x8e\x45\x19\x9f\x76\x73\x43\x42\x37\x29\x86\x28\x1f\xa8\x6d\x09\x2f\x89\x47\x22\x39\x84\xf3\x9e\x10\x5f\xe3\x82\xe9\x1f\x83\xb0\x65\xff\x5a\xb2\xd4\x04\xd7\x6f\xe8\x5e\xf2\x8f\x28\x8d\x73\x56\x2b\x3d\x13\x64\x94\x23\x35\x34\x63\x5b\xac\x6f\x4c\x06\x53\x38\x08\x52\xe0\x19\x8e\x21\x43\xc5\xa3\x92\x44\x8a\x98\x4a\x60\x4a\x23\x46\x8d\x1a\x80\xa6\x04\x0b\xab\xa8\x49\x6c\x54\x54\x54\x2e\xe9\xa8\x16\xa9\x8b\x6a\x22\x8e\x7f\x1a\xc7\x74\x45\xdc\x4c\x54\x1f\xaf\xde\x3b\x79\x04\xea\x79\xf9\x7e\x53\xd4\xab\xdd\xd0\x47\x43\xdd\x60\xe4\x0f\x05\x52\x51\xe1\x6b\x9a\x22\x27\x47\xe7\x53\x18\xf7\xe0\x8a\x2d\x68\x8e\xff\x14\x49\x70\x2c\xa9\xf2\x2a\x38\x8d\x71\x3f\xb4\x54\xb4\x53\xf6\xc4\x64\x0a\xf1\x44\xe7\xc9\x0d\x89\x00\xcc\xf0\xbb\x9c\xae\x32\x9d\xca\x4e\xbf\x99\x58\x4f\x4b\x17\xc9\xfc\x98\x37\x65\xb6\x3b\x31\x29\xea\xef\x8c\x26\xea\x5f\xa5\x8b\x25\xff\x2c\xef\xcf\xc8\xc2\x35\x2a\x4b\x72\x94\xa5\x7c\x79\x63\x4a\x2a\xb4\xea\xad\xa0\xe4\x19\xf1\xe3\x1a\xe5\x53\x8d\x48\xaa\x12\xfb\x45\xe0\x0e\xb2\x78\x21\xff\x39\x47\xea\xb7\xac\xfa\x2d\xce\x11\x64\x48\xfe\x5b\xa6\x2c\x93\xff\x96\x17\x35\x36\x19\xbb\x9c\x94\x25\xcc\x36\x44\x66\x1b\x0c\x6c\x09\x18\x1d\x58\x89\x5c\x8c\xfa\xd7\xa4\xcc\xc5\xd8\x42\xf2\xa7\xff\xfd\xc9\xde\x97\x93\x8d\x1d\x1d\x4a\x8e\xce\x69\xaa\xa7\xd4\xf8\x65\x8a\x49\x82\xc9\xdc\xde\xb9\xe1\x01\x98\xb7\x5a\xea\x9e\xa1\x0d\x43\x75\x2f\xa6\x27\x42\x9a\x4e\xc4\x44\xa9\xe2\xa3\x2c\x85\x44\xa3\x27\x7e\x2f\xdf\xa0\x0e\x26\x0b\x8c\x71\xaf\x8c\xa1\xb6\x7b\x83\x31\x6e\x03\x6e\xff\xec\x24\x84\x36\xc8\x2c\x3d\xab\x95\x8d\xc9\xdc\x3b\x11\xaa\x9a\xf9\xfc\x4c\x18\x53\x1a\xf3\xf0\xa1\x40\xa7\x31\x3e\x25\xf7\x77\x0b\x94\xa3\xb3\xeb\xf3\xee\xc9\xe0\x74\x81\x77\x76\x94\x50\x36\x2f\xca\xc5\x22\xce\x77\x6d\x80\xd6\xa6\x9d\x89\x40\x8c\xea\x6e\x3e\xcd\x0a\x91\x81\xb8\xf5\xf7\xb1\xbc\x35\xbe\xcd\x3c\xc0\x2c\x2b\xec\x5d\xcb\x8c\x4e\xcb\x96\x24\x2b\x90\xfe\x21\x81\x68\x49\x49\xf5\xb7\x40\x66\xb6\x4a\xf5\x2f\x41\x2c\xd8\x29\x83\xb5\x68\x75\x0c\x52\x4b\x1b\x1b\x6c\x75\x23\x89\x33\x59\x4c\x73\x44\x8b\x5e\x4c\x97\xf6\x0e\x55\x2f\xaa\x45\xab\x97\x96\xa0\x73\x4d\xa4\xbc\xb3\x64\xed\x81\x40\xa6\xf9\xf8\x78\x86\x09\x4c\xf1\x9f\x95\x26\x30\x0b\xab\x81\x4a\x42\x70\x67\xcd\x39\xee\xa6\xf4\xf5\xcb\x69\xaf\x3c\xee\x44\x5f\x5e\x2c\x2c\xd1\xa9\xa3\x6d\xc1\x37\x02\xfa\x7e\xe4\x63\xa8\x13\xf5\xa4\xb0\x15\xfb\xc6\xf3\xc0\xfb\xc3\xc4\xd0\xc4\x2e\xa4\xf4\xeb\x73\x2e\x01\xd7\x7c\x6b\x32\x1c\x39\x1f\xef\x1b\x2f\x82\xd9\xc5\x58\xeb\x5d\xaf\xfd\xf5\xeb\x92\x66\x65\x68\x39\x54\x3c\x70\xe9\xd4\xa3\x19\x22\xc5\x02\xcf\x18\xd7\x12\x5e\x41\xb5\x31\xaf\xb5\x7b\x4c\x70\x11\xd3\x35\xca\xef\xb5\x5a\xb2\x91\xce\x0c\xaf\xbb\x45\x45\xab\x5b\x0f\x83\x64\x34\xdd\x4a\x01\xba\x3b\xdb\x65\x19\x25\xa4\xf0\xe1\x24\x8b\x1f\x10\x2d\x8f\xaf\xf8\x5d\xfa\x23\xa6\xa7\xf7\x2d\xfc\x11\xb7\x0f\xb2\xb1\x31\x55\xdb\x7d\x6a\xee\x77\xf8\x25\x83\x43\x0e\x95\xbe\x92\x89\x8b\xc9\x22\x4a\xbc\x76\x1a\x32\x7b\xf7\x26\xbe\x85\x75\x69\x1a\x7c\xf2\xdf\x0e\xbb\xe7\xe6\xe8\x7f\x1b\x3b\x8a\xdf\xc2\xcc\xde\xaf\x49\xb9\x9b\x0d\x1d\x66\x7a\xdd\xb8\xad\x99\x2d\x8c\x95\xef\xca\x10\xd1\x8f\xc9\xd8\xd7\x61\xeb\x09\xae\xa8\xfd\x3e\xcd\x43\x4d\x50\xc3\x6a\xe4\x15\xc5\xfe\x90\xd5\xf2\x75\x51\x62\x5b\xcb\xf7\x2f\xa3\xf2\xf7\x67\x8e\x29\xe1\xd2\x0a\x77\x6e\xa8\x7d\xdf\xc8\x48\x49\x40\x30\xf4\xa4\x1e\xc7\xdd\x45\x4f\xe7\x34\x45\xd7\x68\x26\x1a\x6b\x7a\x78\x30\xe7\xd5\x2c\x66\x43\x00\x9a\xc5\x4a\xbe\x7a\x24\x94\xb9\x3d\x08\xbc\xa7\xa0\xf5\x23\xce\x43\x3d\x28\xfd\x64\xe7\xc1\x44\x73\xfb\x79\xd8\x34\x02\x6f\x79\x43\x26\x2b\x0c\x92\x9f\x8b\x80\xc8\xc8\xb3\xfd\xd5\xe8\x3c\xac\xdb\x87\xb7\x5b\xcb\x87\x45\xa4\x3c\x1d\xb1\x1c\x32\x34\xd7\xb9\x47\x65\x9a\xc0\x6b\x9a\xa6\x98\xcc\x3f\x94\x12\xb7\xf1\xf0\xf0\x92\x0b\xa1\xcb\xfa\x63\x50\xde\x81\x87\x19\xd4\x0c\x2d\xb3\xb4\x7a\x13\xb7\xf5\x62\x4a\xeb\xf9\xa9\xce\x3e\x43\x7a\x15\x74\x26\x84\x32\xc1\xa2\x26\xf8\x22\x5e\xa0\x64\x95\xa2\xbc\x27\x9e\xc0\xe9\xdd\x96\x17\x9c\xf8\xf2\x8b\x73\xcc\x70\x0c\xd3\x28\xa3\xc9\x09\xf8\xc9\x78\x43\xb9\x3a\x21\xc8\xeb\x15\x71\x0e\x39\x51\xf5\xb6\x8b\xab\x5e\x46\x73\xc6\x6b\xfd\xf2\xfa\xc5\x4b\x5d\xab\xf6\x0a\x0c\x1f\x98\x4a\x3f\x63\xbe\xb6\x23\x0b\x86\xfd\xf3\xf6\x8f\xfd\xe1\x59\xfd\xc7\xa2\xb6\x58\x06\x5d\x0b\xc5\x8c\x70\x2f\xe1\x1c\x0d\x57\x69\x2a\x77\x3b\x1b\xc7\x70\x70\xbd\xd4\x24\xa2\x7e\x47\xe8\xcb\x97\x26\x0c\xeb\x05\x10\x46\x53\x94\xb7\x66\x22\x2a\x1f\x86\x39\x01\x17\x9f\x71\xc1\xca\x99\xe3\x06\xfd\x99\x2d\x25\xaf\xee\xb7\x4c\x58\x7f\x63\x9c\x31\x10\xf8\xca\x3d\xe0\x18\x9f\x11\x7c\x2e\x6a\x94\x70\xea\x07\x12\xca\xc1\xc9\x77\xd3\xeb\x43\x91\xbf\xd5\x1b\x14\x28\x5e\xe5\x98\x09\x78\xe8\x33\x3b\x69\x6e\xc6\x0d\xcb\x6c\xc2\x5d\xa7\xbd\x38\x8f\xe8\xba\x7a\x26\x1d\x07\x0b\x63\x98\xc1\x29\x4e\xb1\xfd\xe5\x9e\xc4\xfe\x30\xed\xe8\x1f\xa3\xc9\xe9\xf9\xfb\xfe\xc0\x2c\x5c\xd3\x74\xb5\x44\xef\xc5\x3e\x55\xa3\x95\x41\xd4\x68\xda\x7e\x04\x79\xc9\xdb\x0c\x21\x5b\x9c\x80\xe3\x25\x61\xc7\x65\xb5\x5a\xbe\xbe\x61\x8e\xa9\x20\x4f\x0a\x45\x8e\xbe\xe6\xc0\x33\xb3\x5c\xf2\xa8\x14\x8f\x91\x3e\xad\xa2\x97\x9e\xeb\x28\x9d\x74\xd4\xce\x08\xde\xa2\x2b\x18\x63\x8e\xb6\x2e\xb1\xd0\xdb\x9a\x01\x3a\x0a\x11\x46\x0d\xc6\xfb\x95\x16\xec\xc0\x73\xb5\xc2\xc1\xc5\xd8\x5d\xc8\x5b\x0e\xc7\xd7\xa7\x67\x17\xae\xa6\xd7\xa7\xbf\x9b\x45\x88\xac\x1d\x0c\xfc\xdb\x87\x37\x17\xd7\x83\x8b\xf1\xc5\x68\x32\xb8\x3a\xbf\x98\x0c\x4e\xdf\xb7\x80\xae\x61\xba\x42\x6f\x73\x6a\x7b\x08\x7c\x86\x51\x9a\x68\x93\xc7\x5a\x28\x97\x01\x17\xe0\x3d\x6e\x7c\x73\xe6\xb2\xa3\x32\xbe\x18\x9c\x0e\xc6\xd6\xce\x5b\x67\x28\x83\x4f\x6e\x7a\x8f\xb1\xd8\xb0\x10\x54\xb8\x18\xbe\x73\xe2\xd1\x60\x6c\x19\xa9\xf2\x1c\x94\xde\x16\x70\xd0\x39\xed\x7a\xef\x6d\xc6\xd4\x9d\x5f\x0d\xdf\x5e\x5e\xfc\xbf\xc9\xfb\xab\x73\xfb\xec\x9e\x00\x2a\x0f\x9e\x3e\xa1\x71\x98\xb7\x2e\xc5\xd3\x0e\x2a\x99\x63\xe7\x14\xbe\xff\x70\x39\xfe\x30\x72\xe0\xd7\x5a\xc7\x06\x87\xa8\x0e\x54\xb6\x53\x65\x62\x74\x76\x77\xde\x1f\x9d\xbe\xb9\xbc\x98\xfc\x7e\xda\x1f\x4f\xde\x5e\x5d\x4f\x06\x17\xe3\xdf\xaf\xae\x7f\xeb\x46\xc0\x43\xe5\xf3\x0f\xd7\xa7\xe3\xfe\xd5\x20\x14\xaa\xcc\xe6\xa1\xde\x6c\xaa\x0f\xc0\x99\x00\xee\x41\x34\x9c\x0b\x06\x37\xd9\x43\x80\xb4\xeb\x69\x28\x5c\x85\xac\x61\x2b\x5f\xbb\x09\xa4\x3a\x64\xdb\xaa\x68\x42\xc9\x57\xde\xf1\xb4\x8a\x37\x68\x5b\x61\xe0\x84\xa2\xae\x02\x70\x60\xda\x8f\x11\xd3\x10\x06\x16\xb1\xf8\xb8\x76\x99\x80\xae\x8b\xe3\x29\x2c\x90\xa0\x5c\x2f\x71\x63\x1e\x6d\xd9\x5b\x7d\xa9\x1e\x37\x15\xea\xaf\xd2\x1a\x27\xc5\x47\x01\xd7\xb3\x5c\x1a\x34\x3e\x26\xbc\x55\x13\x0f\x03\xdf\x7c\x45\x22\x6b\x9d\x1c\xc1\xe4\x8a\xa4\xf7\x75\x9b\xbe\x3e\x92\x9c\x66\x70\x0e\x65\x5e\x7b\x8e\xe2\x98\x96\x0a\x62\x3f\x52\x46\x3e\x37\x13\x85\xf2\x76\xab\xba\x75\x41\xa6\x78\x8d\x08\x2a\x8a\x61\x4e\xa7\xcd\xf7\x06\x66\x10\xa7\xab\x1c\x8d\x17\x39\x2a\x16\x34\x4d\x4e\xc0\x8b\xe7\xf5\x1a\x0b\xc6\xb2\x77\x96\x57\xca\x32\x89\x46\x15\x54\xaf\x15\x0a\x77\xeb\xef\xcf\x7f\x79\xde\x2c\x11\x2f\x93\xa2\x13\xf0\xeb\x78\x3c\xac\x97\x89\xdd\x03\x98\x8a\xcc\xca\x23\x14\x53\x92\x14\x27\xe0\xc5\xcb\x06\x04\x99\xa1\xb7\x2c\x7f\xdd\x28\x56\x2f\x09\x98\xe3\xa9\x57\x50\xc9\x76\x4b\x00\xaf\x9e\xb7\xcd\x4c\x73\x29\x84\x59\x3c\xd7\x17\x6f\xae\xae\xc6\x93\xdf\xfb\xe3\x5f\x27\x57\x1f\x5d\x6a\xa2\x72\x52\x37\xbe\x99\x52\x75\x35\x1a\x5d\xfa\x54\x6e\x79\x17\xc6\xce\x0b\x35\x13\x59\xdd\xba\xf9\xe1\x8c\x64\xab\x1d\x1c\xa0\xb6\x0e\xca\x62\x7b\x65\xa1\x5a\xec\xab\x3f\xdd\x55\x7d\x21\x49\x86\x1e\x89\x2b\x55\x7e\x26\x6b\xa0\x25\x6f\x61\x75\x2c\x94\x06\xdc\x3a\x2b\xc6\x74\xb9\x84\x24\x39\x01\xff\xbc\x39\x3a\x9e\x62\x72\x5c\x2c\x6e\x8e\xfe\x30\x6b\xc0\x7c\x5e\xc8\xe2\x6a\x6c\xbc\x62\x0a\x57\x24\x5e\x44\x12\x13\x89\x48\xaf\xd5\x78\x0f\xab\xd1\xa4\xf4\xfe\x96\x8d\xb8\xee\xd0\x5a\x2f\xa5\x6a\x17\xcf\x92\x57\x69\xcd\x25\x09\xf9\x8f\x4e\x0d\x88\x58\x8e\xe3\x96\x42\x69\x00\xfc\xe5\xf5\xab\x97\x66\x15\x86\xf2\x25\x26\x42\x33\xbf\x47\x45\xc1\xe9\x22\xd9\x28\x41\xeb\x63\xa3\x50\x5c\xff\xf4\xb7\x53\xf4\x7d\x8b\x53\xb4\xa1\x78\xa8\xf1\xd2\x8e\x9c\xde\x66\xc8\x5d\xc4\x90\x45\x78\x96\xf4\x8e\x61\xc1\x22\x79\x02\xd1\xc9\xff\xef\x79\xa5\x87\x62\x7c\x81\x81\x44\x60\x6b\xbe\xdf\x56\xd3\xf8\x57\x49\xa0\x16\xfa\x4b\x6b\x8e\x1c\x89\x4b\x52\x9a\xfc\xa7\xe9\x1d\xbc\x2f\x57\xa7\x1c\xb9\x23\x30\xdc\x74\xdd\x44\x20\x9d\xf7\xd4\x20\xb2\xec\x9c\x66\xcc\x0e\xa5\x69\x07\xfb\xc1\x20\x16\xb7\xc1\x58\xa8\xef\x87\x52\xab\xec\xa1\xa0\x1f\x4a\xad\x72\x98\xd3\x14\xeb\x7b\x75\x0d\x88\x1d\xef\x43\x55\x1f\x66\x68\xd9\x96\xe8\x11\x10\x17\x8a\x5a\x69\x03\xdb\x52\x5e\xa2\x5e\x55\xec\xd5\xc9\xbf\x89\x05\x81\x96\x19\xbb\x3f\xc7\xcd\x77\xed\x96\x28\xc1\xab\xe5\x09\x78\x2f\x1e\x11\x74\x82\xfe\x46\x24\xb2\x5c\xa9\x77\x11\x49\x2c\x95\x5e\xe5\x77\x55\xf2\xc7\xd4\x75\x1e\x07\x36\x48\x6f\x38\x63\xf0\x21\x2e\x72\xd4\xe9\xf9\x76\x72\xb0\x76\xa8\x43\xbc\xdb\x12\x07\x60\xd5\x34\x6e\xdf\xb6\x73\x35\x0a\x4c\x24\x80\x63\xff\x1d\xd5\x5d\x76\x92\x8d\xb7\x8d\x6f\x7e\xc4\x0d\xe5\xc6\xf8\x43\xf0\xdb\xd7\xbe\xb2\xa5\xeb\xc7\xdf\x5e\xfe\x01\x36\x84\xb7\xdc\x0e\xfe\x61\xb7\x18\xad\x7c\xd9\xf2\x0e\x11\x59\x8f\x44\x9d\x7d\xc5\x52\xea\x27\xcc\xaa\x4f\x3c\xb9\xdb\x56\x5e\xf2\x41\x5e\x9d\xed\xe3\xe3\x48\xea\xd6\x4b\x5e\xb9\x99\xa6\xf0\x3b\x8f\xd2\xe8\xc2\xd1\x3f\x46\x93\xf7\x57\xe7\x1f\x2e\xad\xbb\x95\xbc\x74\xd0\xb7\xef\x64\xf6\x87\x67\x93\xcb\xab\xb3\xda\x9e\x87\x3b\xb0\x77\xf5\x71\x34\xb9\xfe\x30\x38\xef\x5f\x37\x61\xa9\x78\x5b\xdd\x6e\x17\x7a\xca\xc1\x33\x7f\x69\x37\xa1\x0d\xa5\x66\x89\xfb\xa0\xb4\x2a\x9a\x50\x96\x94\x0b\xf1\x56\x38\xc0\x84\x94\xe2\xe9\xb1\xa5\x9a\x2f\xea\x8d\x3e\xa3\xf6\x5b\xb8\xda\x91\xb5\x31\x4d\xd3\x73\x55\xb0\x23\xba\x2e\xb8\xcf\xba\x9b\xaf\x64\xa1\xd6\x5f\xc0\xc9\xb1\x4c\x89\x1f\x52\x6d\x1e\x3b\xed\xba\xf2\x04\xfc\xd3\x4b\x6e\x00\x02\x4d\x97\x4e\x54\x4b\x7b\x44\x1f\xef\x57\xbb\x19\x85\xd5\x0a\x44\xd5\x79\xee\x6d\x0d\xc0\x3a\x9d\xc2\xc6\xd1\x65\xff\x85\x76\x14\x30\x29\x20\xd8\x9c\x6c\xc3\x7f\xaa\xd6\x64\x80\x8d\x68\x0e\xe6\x11\x6d\x44\x9d\xb7\x7a\x5c\x59\x89\xc0\x65\x3b\x7e\xf9\x02\x18\xfd\x07\x5c\xa6\xf5\xea\xff\x06\x98\x24\x88\x30\xf0\xba\x3c\x8e\x98\x16\xc8\x09\x45\xa3\x87\x66\x33\x14\xb3\x13\x30\xa0\x17\x9f\x51\xbc\x62\x86\xff\xef\x3a\xa9\x68\x82\xb2\x6c\x0e\x9a\x30\x47\x6a\x2e\xab\xa6\xc2\xf3\x27\x34\x41\x8d\x79\x25\x94\x89\x77\x6b\xef\xbb\xfb\x0f\xec\x20\xca\x69\xda\xec\x65\x09\xb9\x4d\xec\xeb\x42\x59\x55\xe0\x6b\xf3\x71\xde\xed\x2d\x71\x81\xcc\x13\x32\xc3\x37\xdc\x10\x35\xad\xf5\xf9\x34\xeb\xd8\xbe\x79\x37\xcd\xbc\x7b\x37\x16\xf3\x1c\x34\xed\x73\xb0\xf9\x21\x97\xe6\x3b\xe9\x7b\x3d\x24\x11\x76\xf0\x4c\x25\x15\x42\x39\xf3\x9a\x50\x96\x0a\x91\x2d\xd7\xd4\x76\x23\x40\x39\x3b\x76\xb8\x06\x6e\xc3\xfb\xdd\x9b\xe1\x64\x74\x71\xfd\xf1\xe2\x7a\x72\x76\x35\x78\xdb\x6d\x7d\x5b\x08\x56\xe5\x57\xec\x39\x8f\x47\x38\xfc\x3e\x9b\x02\x69\x9e\x6c\x2e\xab\xec\xcb\xeb\x73\x53\xe3\xf7\xd3\xf1\xd9\xaf\xe2\x1c\xe5\x68\x68\x39\xa1\x59\x9e\x2f\x68\xa6\xa4\xd7\xed\x4f\xcf\xfa\x93\xd1\xe0\x74\x1c\x00\xc2\x99\x73\xd5\x03\xf7\xdd\xe5\xd5\x9b\xd3\xcb\xfe\xe0\xed\x95\xfb\xac\xe7\x89\x7a\xe8\xa9\xba\x2d\xe8\x03\x7a\x7d\xce\x67\xbd\xff\xce\x0f\x2f\xa7\x2b\x86\xc9\x5c\xa6\x97\xd4\xe1\x5a\x07\xd4\xd1\x3f\x46\xe3\x8b\xf7\xfb\x21\xc0\xb7\x59\xfd\xb6\x6e\xf6\xb6\x3c\xab\xea\xdf\xf2\xb8\xd0\x8b\x66\xc9\xd3\x3d\x2e\x54\xf9\x73\x41\x52\xb9\x43\x22\x17\xc2\xfe\x6a\x50\x4d\xfe\x38\xe8\x4a\x76\xd7\x21\xd5\x7c\xec\xd1\xd9\x6d\x2b\xd5\x60\x1d\x7e\x08\x97\x3f\xec\x86\x4d\x0b\x83\xb6\xfb\x2e\x59\xaf\xaa\xd8\xde\xb3\x09\x3d\x83\x55\xf6\xda\xca\xdc\xeb\xea\xd5\xa7\x82\xbc\x7c\xd3\x76\x80\xc5\x05\x54\xc3\x05\x1e\xd2\xa4\xff\xd6\xea\xfd\x62\x82\x58\x24\x1e\x60\x69\xb8\xbb\x66\xd2\x7e\x22\x97\xa2\x68\x86\xb2\x79\x6b\x26\x04\x10\xba\x12\x93\x8e\x33\x98\x24\xf9\x09\xa8\x5e\x63\x31\xc7\x71\xf4\xec\x3f\x00\x00\x32\xd9\xef\xcf\xbd\x97\xbd\x57\xbd\xd7\x47\x27\xe0\xa8\xe9\xbf\xb7\xd3\x0a\x98\x97\x2c\x45\x2e\x81\x6b\x15\xf6\x3c\x2f\x73\x09\xb8\xbc\xfb\x0a\xd1\x32\xa7\x56\x8f\x53\x28\x66\x79\x6a\x38\xce\x73\x79\x59\xb2\x2a\x51\xe4\x50\xdc\x24\xfb\x56\xba\x5c\x82\xbb\x32\x72\x71\x01\x71\x35\xf8\x37\x77\xa5\x4b\xac\x2f\xa0\x64\xe9\x2a\x87\xa9\x0b\x35\xe5\x10\x62\x32\x5f\xa5\x30\x77\xd4\x12\x8e\x7b\x4c\xb9\x2f\x5f\x3e\x0c\x26\x0e\x53\xa9\x40\x43\x79\xdb\x58\xd0\x60\xfd\x42\x78\xa2\x4a\x5c\x09\x16\x4b\x4c\xcf\xb2\x60\x34\x17\xc6\x8a\xf1\xd3\x6a\xda\x8e\x2b\x2b\x2e\x00\x5f\x14\xab\x0b\x81\x5b\x79\xef\x34\x43\xe4\x74\xd8\xff\xf8\x6a\x54\xff\x1d\x80\x04\x15\x71\x8e\x33\xa6\x99\xb3\x3d\x20\x40\xef\x48\x01\xd8\x02\x81\x14\xcf\x50\x7c\x1f\xa7\x08\xd0\x19\x57\xef\x80\xca\x9b\xa6\x00\x13\x51\xae\xf6\x05\x2a\xe0\x59\xce\x81\xb4\xc2\xc5\x06\x43\x35\xc4\xb4\x08\x81\x14\x2c\x17\xb7\x73\xab\xdf\xc5\x04\x87\x55\x6d\x05\x2e\xcc\xea\x12\xdf\x9a\xe4\xcc\x5a\x21\xc4\x1a\x45\xac\xfc\x32\xca\x50\x0c\x44\xa2\x0c\x24\x09\x93\xa0\x02\xe7\x28\x11\xd0\xc0\x8c\xe6\x82\x38\x57\x92\x38\x0d\x45\x66\xa7\x08\xff\x66\x29\x5c\xd3\xe6\x36\xbb\x6f\xa8\xa0\x94\xca\x1b\x35\x72\x92\xa2\x12\x24\x1b\x11\x43\x34\xab\x91\x43\xa9\xe3\xd9\x2a\x05\x31\x5d\x66\x29\xe2\xcd\x05\xcf\xb8\x97\x68\x00\x81\xac\x08\x56\x23\x9a\x52\x9a\x22\x48\x42\x06\x9b\xa3\x4f\x2b\x3e\x61\xb5\x68\x0a\x9f\x3c\x23\x0e\x51\x6b\xe8\x49\x74\x5a\x2e\xf2\x90\x08\xe6\xe3\x45\x26\x2d\x91\xd7\xfd\x49\xee\x2a\x53\x42\x4f\x25\x54\xb0\xca\x6a\xfe\xbb\x4d\x52\xeb\x27\x14\xde\x36\xa5\x73\x59\xd0\x96\xc8\xf5\xe4\x0c\xa6\x14\xae\x1e\x68\xd8\x50\xf2\x6e\x22\x73\x43\xc5\xe9\x77\x29\xf1\x5c\x55\xbd\xab\x51\x4e\x86\x73\x35\xc2\x3c\x87\xf7\xed\x42\xbb\x11\xe8\x47\xa2\x13\x15\xf9\x95\xdc\xdf\x3f\x77\xd4\xf0\x8b\x52\xf9\x71\x1b\x6a\xfb\xd6\x78\x26\x98\x6b\x07\x00\xd2\x44\xdb\x1e\xc0\x12\xc6\x3b\x42\xc8\x68\xb2\xe3\x20\x38\x04\xd7\x2c\x85\xb4\x5f\x33\xd4\xf4\x32\xba\x9a\x6f\x27\xd1\x37\x0b\x92\x9a\xd2\x54\xed\x24\x54\x89\xa4\x8e\xd7\x2f\xa6\x88\xc1\xca\xac\x37\xc1\x38\xcd\xdf\x5a\x68\x55\x85\x2e\x5e\x3c\xd7\xdf\x0d\x91\x51\x96\x73\xf9\x9c\xde\x09\x90\x89\xb4\x48\x4d\x29\xdf\x1c\x8d\x17\xb8\x28\x63\xb7\x20\x16\x78\xe3\x02\xac\x0a\x94\x68\x63\x24\x3a\x1b\xf4\xab\xd3\x08\xb5\xfc\xd7\x96\x88\x74\x47\x0e\xaf\x00\xad\x52\x23\xc5\x46\xaa\x05\x65\xf3\xed\x94\xca\x45\x36\x6f\xaa\x93\x8b\x6c\xde\x56\x24\x3a\x5f\xad\x4f\x53\x48\xed\x10\xaa\x42\xb7\x1f\x6c\x99\x31\x77\xab\x11\xeb\xf7\xd4\x9b\xc3\xd6\xbf\xb7\xc7\x5e\xcb\xd0\xfb\x14\x08\xb0\x83\x11\x61\x35\x20\x1c\xc6\x43\x65\x38\x3c\x85\x41\x57\x89\x8a\xb7\x1a\xf8\xbb\x37\xc3\x11\x37\xba\x51\x73\xf0\x65\x41\x9b\x00\xf5\x5c\xc9\xdd\x44\xb0\x7a\x99\xa6\x8f\xd9\x12\x1f\x0f\x65\x6a\x36\x32\xd3\xf5\xca\xc4\x69\x56\x9a\xc9\x12\x1b\xd5\x46\x04\xb2\x77\x02\x4e\x9f\xcc\x68\x93\x74\xf5\xd2\x36\xfd\x2c\xf9\xf1\x4c\x13\xb4\x11\x10\x7f\x02\x76\x68\x4d\x45\xd4\x47\xc7\x75\x03\xf7\xd2\x64\x1b\xa1\x21\x84\xd3\x56\x1f\x22\x38\x1d\xf6\xbf\x73\xb3\xd6\x63\x31\xce\x4b\x6a\xd8\xec\x14\x98\x24\x82\x21\x61\x3a\xf4\x1b\x9d\x6e\x6b\x36\xc0\x5e\x15\xb6\xda\x69\x92\xe4\xa8\x70\x57\x09\x31\x97\x64\xe0\x5d\x3c\x62\xe3\x03\xe4\x43\x36\x18\x65\xf9\x21\xeb\xf9\xaa\xfa\xb7\x84\x9f\xf1\x72\xb5\x3c\x01\xaf\x7f\xfe\xf9\xd5\xcf\x9d\xb5\x31\x91\xb5\x5b\x5b\x07\xcd\x4f\xd2\x03\x13\x86\xe6\xcd\x9b\x55\xcd\x4f\x1c\xe3\x7a\xfa\x88\x76\x79\x3e\x66\x2d\x87\x5b\x25\x3f\xbe\x84\xfb\x6e\xcb\x39\x8c\x97\x24\x90\x0f\xd8\x37\xc3\xa1\x70\xe4\xee\xe8\xc0\xe7\x4d\x84\x00\xb3\x18\xf7\xe6\x17\x19\x0b\xc9\x55\xa3\x5a\x21\xae\x1a\x72\xdc\xfe\xd2\x0f\x38\xf1\x55\xa8\x86\x6b\xaf\xd5\x35\xd1\xde\x29\x76\x37\x76\x90\x27\x32\xa5\x5c\xa0\x10\xed\x0c\x01\xd6\x55\x89\x25\xf6\x47\xa7\x52\x91\xc9\xd7\x0f\x00\x9d\x59\x35\xaf\x1f\x91\x8e\xd8\xdb\xbe\xcd\x8b\x2a\xb5\xea\x4e\xd6\xc5\x25\x07\xe3\x32\x2e\xca\x42\xbb\x6d\x51\xcf\xee\xda\x34\x2d\xca\xd2\xa7\x60\x59\x7c\x97\xa6\x40\x8b\x87\xcb\xf9\x70\xc7\xf2\x4d\xfe\x6d\xcc\x6d\x07\x2d\xc4\xf4\xeb\x16\x36\x5d\xea\x56\xc5\x9d\x2a\x38\xa3\x89\x57\x9e\x06\x45\x67\x4a\xe6\xd9\x0d\x8c\x4f\x49\x74\x03\x28\x25\xa6\xcf\xde\xe8\x32\x5a\x02\x4d\x96\x04\x15\x7e\xcd\x18\xd2\x97\xfc\x42\x74\x9f\x59\xd3\xab\xb1\x81\xde\x40\x0f\x81\xd4\xdd\x67\xa7\x01\x10\x0e\xac\x43\xe7\x02\x20\x93\x48\x17\x4e\x9d\x09\xca\xf3\x05\xbe\x72\x9f\xd6\x05\x81\xb6\x51\x07\x9d\xbd\x23\x89\xf4\x72\xf0\x16\xaa\xfd\x1d\x47\x0d\x87\x55\x10\xd5\x38\xdc\xad\xef\x5d\x83\x73\x0e\xcb\xa9\xef\x2b\x99\xf3\x04\xb5\xac\xce\xdf\xbd\x93\x8e\x95\x16\x96\x4d\xc1\xca\x12\xbb\x76\xcd\x6a\x73\x50\xd7\xad\x59\x09\x51\x29\xd6\xb3\x6a\x13\x7b\x0f\x5a\x75\xaf\x7b\xf5\xf6\x79\xfc\x2e\x15\xf2\x56\x5b\x4e\x8d\xfb\x10\x61\xf0\x3a\x60\x02\xdb\x65\x84\x70\xc8\xa0\x69\x5c\xfc\x34\x12\x48\xaa\x0d\xef\x21\x4d\x8a\x9f\x1c\xfa\xb3\x4b\x73\x05\x47\x21\x40\x80\x50\x27\x1d\x1a\xdf\xdf\xde\x47\x03\xa7\xce\xd9\x69\x1f\xd0\x8e\x89\x53\x8d\xef\xbd\xaf\x8d\x3c\xa4\x2d\x98\x39\x68\x72\xeb\xe8\x3d\xf8\x8e\xfe\x6e\x2e\xd0\x80\x26\xc8\xe6\xfd\xe8\xdf\xed\x5b\xfa\x56\x9f\x47\x17\x1c\xdc\x9d\x20\x96\xdc\x28\xf2\xa9\xf6\x87\xed\x31\x47\xdf\xda\xab\x94\xa5\x39\xf7\xe6\x17\x2c\xb0\x3c\xe7\x75\x7c\x03\xdd\x25\x6e\x31\x50\x2c\x15\x14\xb1\x18\x18\xfc\xd7\xd5\xf9\x23\x5a\x51\xe5\x7b\x3c\x5b\xaf\xd1\xeb\xe4\xcc\x38\xe6\x5a\xad\x51\xfd\x7b\x7b\x8d\xd6\xde\x00\x32\xd7\xa8\x2e\x38\xac\xd1\x20\x06\xdd\x68\x8d\xea\x17\x78\x50\x52\xac\xa6\x04\x59\x32\x05\x6c\xab\x40\xbd\x9a\x72\x55\xa0\xfc\x11\x3b\xfc\xb1\x17\x73\xe3\x55\xa3\x9e\xf1\x0a\x92\x75\x51\xeb\x32\xab\xea\x95\xb0\xec\xce\x51\xad\xd0\xa2\x84\xdb\xaf\x2b\xd5\x54\xb1\x51\x7c\xbf\xe5\x5a\xdf\x6a\xcf\x52\x67\xd8\x56\xd7\xf6\x64\xd9\x94\xcf\x72\x0e\x67\x33\x1c\x83\x59\x4a\xef\x00\x64\xa0\x3f\x04\x4a\xa1\x01\x9a\x8b\x38\x3f\x48\xd1\x1a\xa5\x7f\x5d\xf1\x00\xb3\x2c\xc5\x28\x19\x53\xcb\x6a\xec\xf0\x2a\x4a\x37\x60\xe4\x76\xa5\x02\xc0\x00\x7d\x1b\xfd\xe2\x73\xc6\x29\xdf\xb8\x66\xdd\xfc\xf6\xb8\xf3\x78\x8b\xee\xf7\x18\xa1\x2b\xef\xe8\xee\x0f\xa4\x38\xc4\xd5\x1d\x45\x0c\x8b\x35\x6e\xd2\x71\x70\xbc\x31\x20\xb2\xa7\x2e\xc8\xf8\x2b\x50\xeb\xf9\x6d\x1b\x4a\x7b\xd8\xda\xb4\xe5\x3e\x68\x7f\x1b\xb9\xcc\x20\x98\xbc\xdd\xa3\xe8\x3c\xbc\x4a\x93\x8e\x15\x57\xbf\x87\x91\x72\xe1\x86\xc9\x5c\x88\xb5\x59\x4e\x97\xf2\x88\x06\x5c\xa2\x6a\x09\x1f\x56\xee\x61\xe5\x5a\xbe\xc3\xca\xdd\x68\x14\x21\x31\x78\x7b\x29\x9a\x3b\xbc\xe8\xfa\x66\x23\x62\xdc\x0a\x95\x95\x81\x78\xed\x18\x20\xce\x6a\x90\xa1\x04\x4c\x61\x81\x12\x40\xe5\xf5\x29\x9a\x27\x28\x07\x98\x80\xbb\x05\x8e\x17\xfc\xa7\x7b\x00\x73\x04\x0a\xc4\x7a\x9b\xd8\xe3\xdd\x91\x45\x11\x9f\x74\x92\xb7\x71\xe7\x47\xc4\x32\xb9\x85\x82\x67\x58\x59\xd9\x12\x00\x60\x14\x4c\x91\x36\x47\xf4\x28\xf8\x10\x2d\xe8\x9a\xf4\xf4\x9e\xbf\x17\xef\xae\x5e\xd2\xf9\x1c\x13\xf7\x49\xfc\x1a\x8a\x17\x66\x93\xf2\xe4\x33\xa3\x00\x93\x44\x5c\xae\x05\x78\x06\x44\x72\x3e\x50\x2c\xe8\x2a\x4d\xc0\x1c\x11\xbe\x02\x10\x48\xe9\x5c\xf8\x0f\x70\x95\x32\xde\x42\x9c\x72\xee\xc0\xde\x19\xb7\x00\x8e\x3c\xda\x0e\xb4\x15\x67\x08\x8b\x15\x92\x84\x4f\x1b\xa3\x31\x4d\xa5\xf4\x47\xc9\x71\x82\x08\xa7\xeb\xf4\xbe\xa2\x2b\xe8\xcf\x00\x5b\xe0\x42\x3e\x9f\x24\xc6\x4a\x0a\x0e\x27\x97\x79\x5a\x9f\xc9\x52\x5e\x57\x2e\x3c\x54\x70\x70\x12\x2d\xe7\xb8\xba\x44\x9a\xcd\x30\x97\x76\xf9\x90\x23\x6f\xd8\xe6\x0b\x64\x19\x0f\xa3\x12\x17\xce\xda\xd0\xcf\x1f\xc1\xfa\x04\x91\x44\xa4\x10\xf7\x4b\xd6\x06\x9b\x24\x0a\xdd\xca\x5d\x44\x24\xe1\x73\x50\xe2\x9d\x43\x32\x47\xcf\xc0\x14\x71\x4e\xd2\x15\x30\x89\xd3\x55\x82\x12\x70\x87\xd9\x42\x5d\x75\x14\x15\x7b\xa0\xcf\x40\x0c\x09\xa0\x24\xbd\xe7\x4b\x41\xaf\x92\x04\xdc\x2d\x10\x1f\x2c\x59\x2d\x51\x8e\x63\x28\x67\x80\xcf\x57\x59\xc5\x43\x03\xfe\xcd\x68\xbe\x84\x4c\x9c\x1f\xab\xe7\x48\x6f\x7f\xc1\x07\xcd\xb2\x6e\x8a\x41\x72\x7f\x65\x7f\xb0\xab\xfa\xa2\x4d\xce\xe0\x45\x1b\x28\xc2\xda\x74\x8d\xf5\x9c\x28\xb9\x32\xc7\x6b\x44\x4a\xa6\xea\x01\x71\xeb\x81\x13\x7f\x8a\x00\xc2\x6c\x81\xf2\x1a\xbd\x69\x2e\x2c\xa5\xa4\x84\x01\xc1\x90\x26\x96\x05\x44\x28\xe3\x50\xd7\x38\x41\x89\x5a\x3e\xcd\x95\x23\x6d\x2e\xc1\xd4\x64\xb5\x9c\xa2\xdc\xbd\x94\xe4\xf7\x39\xaa\x72\x03\x45\x98\xb0\x88\xe6\x91\x24\x80\xfd\x59\x1a\xf3\xd3\x23\xec\x64\x6d\x75\x27\x64\x7c\x36\xdc\x94\xaa\x7a\x61\xfe\xf7\xf8\x6c\xf8\x0c\x7c\x38\x1f\x3e\xe3\xe4\x1a\x9d\x8d\x87\xff\xa3\x75\x8f\x72\xb2\x97\xab\x82\x49\x72\x08\xca\x71\x5a\x95\x0c\xfc\xcc\x24\xa4\x42\xa7\xe0\x8b\x7d\x7c\x36\xec\xa0\xcf\xbe\x94\x77\x80\x01\xc2\x6c\x5e\xb2\x85\x30\xd7\x5c\x64\x96\x73\x9f\x70\x95\xa1\x89\x80\x0b\xc1\xea\x24\x51\xf7\x69\xb8\xf8\x4b\x29\x4c\x0a\xb5\x21\xa9\x65\xb4\x26\x86\x85\xc9\x84\x70\xe6\x44\x5e\xe2\xa2\xc0\x64\xee\x92\xd3\x09\x2a\x98\x7a\xc8\x60\x7b\x71\x1d\x28\x42\x71\xf6\x26\xa5\xf1\xed\x26\x22\xb4\x3f\x14\x4d\x1a\x12\xbf\x3f\x54\x87\x2f\x51\x71\xac\x6a\xf0\x02\xc8\x6a\xf4\xe4\xe6\xc2\x31\x77\x65\x7a\x25\x98\x58\x64\x69\x13\x82\x13\x31\x00\x0b\x90\xc1\x9c\x69\x79\x7c\xaa\xa3\x1c\x9a\xa8\x67\xb5\xda\x5c\x16\x73\x69\x05\xa8\x58\xfa\x7a\x6b\xb8\x83\xf1\x82\xbd\x15\x00\x62\xec\xb9\x45\xe7\xa0\xcf\x59\xff\xfc\x9a\x0f\x1a\x2a\xde\x06\x39\xe2\x5e\x16\x22\x4c\xeb\x93\xfe\x10\xc8\xb1\x7f\x84\x29\x4e\x00\xfa\x0c\x97\x19\x37\x09\xb9\x9d\x77\x73\xf4\xe2\x97\x97\xbd\x17\xaf\xff\xde\x7b\xd1\x7b\x71\xfc\xf2\x6f\x37\x47\x9c\x63\x6e\x8e\x5e\x3e\x7f\xfe\xe2\x24\x99\xfe\x72\x72\x72\xfc\xfa\x6f\xcd\xbc\x38\xb6\x6f\x13\xd7\x03\x7d\x8e\x51\xd6\x7d\x48\xba\xa9\x4b\x45\x2b\x35\xd4\x14\xc7\x22\xd2\xca\x47\xaf\x26\x5e\xd9\x59\x6a\xbe\x9a\x0a\x14\x92\x7d\xd0\x41\x23\x21\xfd\x36\x70\x87\xd3\x94\x77\x96\xa3\x7f\xc9\x35\x89\x67\x95\x09\x4d\x57\xac\xc0\x09\x12\x53\x20\x26\x49\xe8\xef\xee\x41\x87\x3a\x7b\x9b\xd1\x3c\xd8\xe1\x0b\x74\xf9\xc4\x53\x2d\x38\xe9\xd0\xc4\x61\x1e\x5d\x78\x8c\x50\x7f\x0d\xa3\x96\xb7\x11\xb2\x6c\x48\x13\x15\xbb\x28\x83\xc5\x95\x38\xd0\x02\x53\xaf\xdb\x67\x7c\xf9\x57\x82\x15\x13\x30\xa6\xc7\x6f\x79\x63\xb1\xfa\x0b\x21\x53\xcb\x75\x3f\xac\xc2\x29\xcf\x64\x3f\x7c\x92\x35\x6c\x6f\x9f\xa8\x2a\xd1\x20\x02\x45\x8b\x5a\x2a\x66\xe7\x9c\x2f\x2f\x3e\x33\x94\x13\x98\x5e\x10\x86\xd9\xfd\x68\xef\x72\x68\x83\x68\x8d\xfe\xc2\xb9\x76\x03\x3c\xe4\x17\x12\xc5\xd1\xdf\x66\x4b\x02\x6c\x12\xd5\xd1\x5f\x8d\xf7\xca\x84\x25\xa5\xd4\xe5\xe2\xe9\x16\xdd\x17\x20\x47\xa9\x54\xaa\x0b\x9c\x71\x13\x05\x8a\x89\xa6\x33\x25\x3c\x7a\x4a\x0c\x95\x99\x5e\x04\x3f\xf5\xc9\x33\x30\xa0\x8c\xff\x4f\xa6\x70\x14\x16\xe0\x39\x45\xc5\x80\x32\xf1\x4b\xc7\x2c\xef\x42\x8a\xc0\x68\x94\x95\x10\x4a\x22\x72\xe9\x4c\xa4\x90\xe1\x43\x55\x2a\x49\x8f\xb8\x2f\xd5\x6c\x49\x34\x5c\x80\x3e\xe1\x0c\xad\x86\xcc\x0b\x15\x20\x09\x42\xd8\x82\x53\x04\x08\x25\x91\xb0\x67\xac\x30\x14\xa5\x68\x5e\x23\x94\x07\x9c\x02\x25\xcc\x79\x59\xc2\x0d\x23\x94\xa5\x30\x46\x09\x48\x56\x02\x69\xa8\x93\xe5\x72\x9b\x14\xe5\x73\x04\x32\x61\x94\x86\x92\x27\x7c\x45\xc8\x6f\xf3\xf9\xda\x40\xa6\xcb\x2f\x50\xb2\xcb\xaf\x33\xa8\x57\x55\x0c\x09\xee\xd5\x51\xee\x56\x09\x66\xed\xa0\x01\x86\x05\xfd\xf4\xb7\x71\xf0\xaf\x8e\xd1\x66\x4a\x37\x64\xb4\xa1\x35\xbb\xc3\xfa\xfa\xb3\x29\x49\x43\x41\x9a\x31\x95\xa2\xd2\x50\x2d\xa5\x58\x1a\xc5\xc7\x3e\xf5\xd8\xd2\x70\x8f\xaf\x24\xdb\xed\x0f\x0a\xf1\xa0\x10\x77\x21\xc5\x41\x21\x1e\x14\x62\xf5\x1d\x14\xa2\x07\xa3\x6f\xa5\x10\xf7\x14\xb0\x7b\xfb\xe9\xdc\xbd\x39\x15\x24\xa0\x05\xb5\x07\x8e\x63\xaa\xd5\x17\xb2\x08\x42\x29\x1a\xc0\x0b\x9d\x0c\x1e\x19\x88\xfb\xe9\xe7\xa6\x71\xc7\x6d\xa7\xda\xf6\x9a\xbd\x8a\x9c\x00\x5b\xd9\x96\xf7\x95\x80\x3e\xc9\x10\xb8\x57\xaa\xcf\x3d\x1c\x36\x4b\x9f\xe0\x66\xa9\xd8\xd8\x92\x33\x63\x98\x93\x3d\x30\x92\x95\xa7\x68\xaf\xdb\xa9\xdc\x4a\xdd\x39\x7e\x4f\x73\x3c\xc7\x04\x32\xa4\xac\xed\x6d\xe3\xf7\xae\xa0\xbd\xba\xdf\x75\x88\xd7\x1f\xe2\xf5\x87\x78\xfd\x21\x5e\xff\xd4\xe3\xf5\x07\x57\xdb\xfa\x1d\x5c\xed\xf2\x3b\xb8\xda\x07\x57\xbb\xfa\x0e\xae\xb6\x07\xa3\x43\xec\xf9\x10\x7b\xf6\x7f\x35\xea\x37\xdb\x4b\x8b\x2c\xc5\x85\x50\x08\x22\x0f\x41\x35\x1c\xb5\x4a\x97\x5c\x99\xf4\xc4\xc9\x2d\xf3\x17\x41\xd1\xd3\xc1\x79\xe7\x49\x42\x70\xd0\xca\x07\xad\x7c\xd0\xca\x8d\xef\xa0\x95\x3d\x28\x1f\xb4\xf2\x76\x35\xf7\x12\x00\x3f\x5c\x21\x38\x5c\x21\x38\x5c\x21\xb0\x54\x3e\x5c\x21\x38\x5c\x21\x28\xbf\x47\xbb\x42\xb0\xf5\xa6\x97\xcc\x99\x30\xbe\xcf\xac\x72\xc8\x2d\x30\x6b\xc4\x56\xe9\x0f\x38\x14\x6d\xae\xd5\x65\x65\x4d\x96\x0a\x74\x24\x5b\x8b\x7f\xe1\x02\x4c\x11\x83\x91\x48\x88\xc0\x65\xe7\x8b\xde\xdf\xdd\x63\xdc\x22\x65\x88\x7e\x75\xa4\x6b\x67\x4f\xbf\x86\x22\xa6\xbe\xdc\x19\x93\x7b\x78\x4a\x78\xd6\x07\x22\xcd\xf3\x35\xe2\xcc\x20\xbd\x3c\xb3\x1c\x5b\x77\x5b\xbc\x22\x45\x14\x76\x60\x29\x68\x56\xca\x72\x8e\x87\xb3\x17\x1b\xad\x9c\x79\x19\x79\x93\xfa\x6f\x76\xa6\xda\xf8\x11\x1b\x10\x92\x4a\xc7\xc8\xa7\x02\x63\xee\x20\xa3\x64\xd0\x4a\x21\x52\xbd\x39\xac\x13\x83\xe8\x5f\x62\x4a\xa4\x2d\x56\x9c\x80\x7f\xfe\xc1\x7f\xe1\xf0\x51\xf2\x51\xe7\xfc\x10\xbf\x3e\x68\xae\x94\x84\x14\xb6\x74\x29\xf2\x67\x67\xc6\x14\xa3\xd8\x96\x34\xe5\x9c\x14\xde\xbc\x29\xcd\xf2\x76\xea\x94\x36\x5a\x8a\xfe\x65\xf6\x94\x46\x8d\x8d\x13\xa8\xf0\xc5\xab\x60\x6e\x95\x44\x25\x21\x85\xce\xe0\x02\xcc\x51\x82\x43\x56\x14\xf3\x3b\x64\x45\xa9\x7d\x87\xdc\x0a\xae\xef\x90\x5b\x61\xa3\x51\x1c\xb2\xa2\x3c\xd5\x95\xfb\xd4\xa3\xa4\x7b\x97\x2c\x87\x68\xa8\xf5\x3b\x08\xdc\xcd\x10\xff\xae\x05\xee\x13\x4e\x66\xd3\x21\x2f\x19\x7d\xfb\x29\x71\x9d\xc1\x0c\x95\xed\x5d\xe7\x81\xbb\xd7\xc2\x26\xd3\xe4\x61\xa3\x80\xe7\x8c\xfc\xa7\x80\xfd\xd3\xec\x01\x1f\x29\x4a\x6e\xc2\x1b\x07\x57\x75\x13\x57\xf5\x13\x2d\x6a\x3e\xea\x27\x5a\xd8\xbd\xd3\x4f\x32\xed\x75\xdb\x2f\xfd\x3f\x5a\xd8\x1d\xd2\xb2\xa0\xed\x89\x1a\xbd\x36\x5d\x50\x5d\xe4\xf6\x3d\x85\xce\xcf\xd7\xe8\x03\xb9\x25\xf4\x8e\xbc\x15\x9b\xfa\xe5\x5b\xb3\x87\x57\x10\x9c\x55\xf7\xf8\x92\xb6\xc7\x0c\xde\xfc\x75\x01\xbf\x78\xe8\x10\x97\xdd\x1a\xae\x5b\x0d\x99\x28\x37\x6b\xb8\xaf\x02\xec\x84\xb6\x64\x7f\x32\x9f\x70\x2b\xc8\x8b\xb8\x77\xcb\xa1\x7c\xdd\xef\xb9\xb7\x93\xe9\x2a\x2f\x5c\xdb\x20\x3b\xf5\xe2\x54\xc3\x07\xe2\x00\x90\x14\x71\xb6\x84\xb9\xed\x04\x7c\x07\xdc\x72\xa7\xc3\x82\xb9\x6f\x54\xd5\xd3\x90\xaf\x1e\x3e\x1d\xf4\x2c\xa5\x77\xcd\x74\xd0\xfc\x37\x67\x3e\x68\x59\xe8\x48\x08\xcd\x0b\x9d\x09\xa1\xab\x42\x6b\x42\x68\x13\x93\xa6\x3e\x31\x8b\x1d\xcf\xe6\x6c\xa9\x50\x60\x9a\x2d\xe0\x26\x5a\xc5\x50\x0c\xff\xd9\xd4\x17\xfa\x91\xdb\xa2\x7a\xe4\x76\xcd\x5d\x55\x28\x4e\xf6\xc7\x62\x6a\xd4\x72\xaa\xb6\x12\x7e\x20\x9d\xc3\xe7\x70\x04\x97\x59\x8a\xc9\x5c\x72\xc2\xbe\x85\x8e\xf7\xc9\xb5\x2e\x4b\x9a\x37\xf6\x6c\xce\xef\x2c\xac\xc2\x5e\x7d\x2d\xc5\xc6\xcb\xe7\x3f\x5b\xab\x70\x2a\x8e\xed\x1b\x4b\x21\xa3\x04\x00\x91\x95\xfb\x7e\x53\x04\x8c\x45\x6e\xaf\x80\xb3\x19\xfe\xdc\x81\xbc\x07\x08\x8c\x19\x5e\xa3\xb7\x7c\x14\x78\x89\xae\x56\x8f\x41\xef\x57\xaf\x9f\x3b\xaa\x94\x18\xbf\xb6\x56\xc0\x49\xfa\xc8\xa8\x76\x63\xfa\xc2\xca\x16\x85\x5a\x58\xd7\x0f\xa8\x6e\x0d\x34\x5f\x3c\xef\xc4\xd3\x52\xee\x75\x13\x5d\x0f\xfb\xd5\x25\xc2\x83\x6a\x44\x94\x17\x19\x24\x35\x85\x28\x7f\xb2\xeb\x43\x5d\x66\x53\x87\x17\xa2\xcc\xae\x0d\xcd\xb2\xb6\x32\xac\x23\xd1\xd4\x85\x46\xe9\xd3\x51\x85\x3f\x96\x1e\xdb\xfa\x49\xb8\xcd\xdd\xaa\x87\x7d\x44\xee\xfb\x79\x0e\x4e\xae\xde\x7d\x9b\x0b\x30\x59\x62\x32\x62\x6e\x89\x59\xbf\x68\xcd\x6b\x63\x11\xf3\xc6\x6b\x24\x1f\x7b\x71\x04\xbb\x4b\x19\x28\x5e\x83\x7f\x20\x45\xed\x81\x2d\x8b\xa9\xf5\x8d\xd3\x04\xe7\xc8\x77\xbd\xbc\x36\xe6\x73\x5d\xb9\x3c\xa2\x02\xe3\x5b\x24\xcf\x4b\x2d\x29\xc1\xee\x8b\x0e\x25\x09\xa6\x94\x2d\x1e\x88\x02\xd8\x71\x83\x5b\x84\xe8\x57\x1e\xda\xd8\x70\x32\xd2\xa0\x3e\x88\x59\x3a\x0c\xa2\x77\x85\x04\xe8\x0f\x35\xd1\x2f\xae\x47\xc3\xd3\x81\xa2\xbd\x83\xde\x5d\xc4\xe4\xe6\x58\xff\x3c\x04\x87\x0f\x04\x7f\x5a\x21\xf9\xd6\x4d\xff\x7c\x13\x1c\x2a\x13\x65\x77\x03\xc4\x01\xc2\x30\x40\x5e\xbe\xda\xc6\xc0\xb0\x9c\x3a\x7c\x4c\x03\x43\x64\x42\x48\x72\x9a\xa5\x54\xbd\xa9\xa6\xfe\x70\x9c\x27\xd2\x85\x56\x13\x43\x00\x3b\xcf\x69\x76\x49\x5b\xcf\xab\xd5\x0a\x2d\x46\x46\x0d\x91\x96\x91\x61\x96\xda\xad\x0c\x9f\x15\xb1\xed\x83\x6b\x3f\xb2\x47\xdd\x10\x03\x9e\xb7\xe1\x2d\xd3\xee\x1f\xa0\x67\x90\x40\xbe\xfc\x26\x00\xca\xc5\xab\xe0\x76\x05\x85\xcf\x65\x23\x8d\xa2\xcc\xbe\xa1\x18\x46\xb3\x0f\x98\xde\x03\x18\xc7\x91\x38\xa6\xcc\x09\x69\x11\x1b\xa5\xc8\x28\xcd\xd3\xfa\xe7\xcd\xd7\x41\x68\xe2\x3b\x3e\xb5\x81\x31\xc6\x47\x0d\xd2\x2a\x41\x89\x1e\x01\x25\xa2\x13\x33\x6b\x87\xde\x70\x94\xb6\xd7\x5f\xc9\x64\x7b\x50\xc9\x97\xe5\x2b\xb2\x2f\xc1\x37\xe4\xb0\x1c\x72\xcf\x2c\x6b\x8b\xbd\x1a\x16\x4d\xa9\x67\x16\x1e\x84\xde\xd3\x12\x7a\xed\x29\xf7\x8f\xaf\x63\xad\x3c\x90\xe4\x98\xe1\x94\x21\x75\x22\x49\x67\x5d\x62\xf4\x07\x12\x21\x0d\x42\xc9\xf9\x7a\x2b\xa9\xb2\x6f\xab\xba\xc8\x63\xa7\x51\x1d\x12\xeb\xdd\xba\x71\x91\xc7\xef\x4f\xcf\x76\xe8\x79\xfb\xd6\x45\x1e\xef\x12\xa2\xde\x35\xc4\x8d\xb3\x61\x4e\x9d\xaf\x5b\x34\x9a\x3f\xa8\x3a\x81\x71\x5c\x9a\x15\x98\x64\x2b\x26\x75\x4a\xcc\x72\xc7\xc9\x7c\x59\x62\xd3\x26\xa7\x71\x3c\xd4\xa0\xfa\x1c\x54\x53\xa5\xb4\x2a\xb4\xf5\x4a\x1b\x9d\xa6\x72\x69\xd5\xb8\xd9\xf0\x5c\xfe\xe6\x4a\x66\xaf\x27\x20\xea\xa7\x62\x9b\x83\xa9\xdd\x4e\x94\xbf\xc8\xa7\x9a\x57\xb9\x74\x66\xb9\x16\x3b\x3d\xeb\x83\xb3\x41\xff\x9b\x2a\xa1\xdd\xaf\x03\x34\x92\xef\x35\x58\x63\x94\xa1\xb8\x46\x8c\x52\x93\xf1\x02\x4e\x85\x36\xed\x36\xd4\x5d\x30\x8e\x27\x25\x84\x89\x00\xb1\x6f\xd1\xaa\xcf\x37\x4e\x96\x90\xc0\x39\x4a\x26\x72\x32\x1f\x4e\xe5\xe8\xb4\x82\x93\x55\x96\x40\xe6\x3d\x32\xe7\xf5\x08\x80\xa0\x0f\x7e\x04\x7c\x8b\x7b\x12\x4f\x52\x3a\xc7\xee\x34\x8d\xa1\x67\x40\x03\x0f\x6e\xc7\x28\x67\x33\x9c\xba\x62\x95\xf5\x3e\xbb\x8f\xcd\xde\xa2\xfb\x3d\x41\x8b\x53\x8c\x08\x9b\x14\x85\xef\xf2\x67\xe7\xb4\x11\xc4\x1e\x61\xda\xb8\x76\xca\x67\x30\x46\x93\x25\x5b\x75\xa2\xdb\x71\x55\x98\x8b\x61\xcc\x41\xc9\x48\xe8\x44\x00\x5f\xc3\x6e\x32\x74\xc0\xcd\xa6\xf9\x84\xe5\x30\xbe\xc5\x64\x3e\x21\x94\x4c\x0a\x02\x7d\x37\xa0\x3b\x69\x0b\xe4\x89\xaf\x89\x7c\x69\x7d\x12\x2f\x56\xe4\x76\x52\xe0\x3f\x7d\xb3\x1f\x84\xa9\x8a\x1d\x4c\xee\x20\x66\x93\x19\xcd\x27\xea\xe6\xd7\xae\xc8\x26\x4a\x6f\x6c\x0e\xd8\x83\x70\x8e\xe6\xb8\x60\xb9\xeb\xf2\xc3\x7e\xf8\x6b\x09\xe7\x68\x92\xe5\x68\x86\x3f\x77\xe2\xea\x5f\x56\x0a\xd4\x2a\x4d\x27\x05\x8a\x73\xd4\xcd\x01\x7e\x78\x4a\x2e\x32\x88\x09\xca\x8b\x49\x29\xe3\xd7\x56\x5d\xbb\x23\x74\xfe\xcf\x9c\xa6\x29\x7a\x20\xf8\x0b\x5a\xb0\xbd\x41\x36\xf5\xe9\x43\x90\x85\xe0\x7d\x83\x8d\x09\x4e\x50\x96\xd2\xfb\x3d\xc1\xa3\xd9\x2c\x45\x9f\x27\x22\x07\xef\xde\x40\x22\xb2\x2e\xee\x30\x8b\x17\x7b\x82\x38\x9f\x66\x7b\x80\x94\x7a\x33\x17\xef\x45\x08\x18\xcc\x9f\xd2\xf9\x44\xdc\x84\xdf\x71\xec\x9c\xdf\xe5\xec\xec\x0b\xa2\x9c\xf2\xfd\xc1\xc4\x05\xc3\xf4\x51\x34\x78\xc1\x60\x9a\x4e\x44\x7f\xbb\xea\x19\x0d\x2c\xcb\x69\x87\x31\xd4\x35\xfc\xe5\x2a\xd5\xd7\x08\x5c\x8d\x77\x1c\xb8\xd2\xb5\xbb\x0c\x39\xc9\x69\x26\x26\xfb\xb1\xec\xf9\x9d\x0c\x42\x9a\xa0\x8c\x26\x78\xf6\x5d\x60\x5b\xe4\x98\xae\xbf\x0b\x4c\x6f\x57\x53\xf4\x08\x88\xd2\x75\x31\x59\xa2\x25\xcd\xef\x27\x29\x5e\xe2\x5d\xad\x97\x55\xc1\xcd\x2a\xbc\xc6\x29\x52\x0e\xa9\x32\x05\x76\x16\x01\x95\x99\x95\xb9\x0e\xa5\x6e\x82\x68\x8e\xa6\x94\xb2\x89\xd2\xa8\x77\x98\x2d\x26\x74\xdd\x8d\xa5\x1f\x28\x77\x00\x26\x01\x37\x6d\xf7\xea\x70\x66\x34\x67\x13\x91\x31\x2a\xc8\x49\x0c\x49\x69\xb6\x41\xa6\x47\x71\xbc\xa5\xb3\x56\xa0\x9f\xa2\x3f\xd4\x0a\x14\xed\x0c\x52\xe4\x28\x9b\x64\x28\x9f\x70\x81\xb5\x4f\xe8\xc2\x8c\x80\x31\x9b\xc8\x30\xe1\x7e\xdc\x7e\xed\xb1\x65\x28\xc7\x34\xc1\xb1\xf0\x2d\x27\xf3\x94\x4e\x61\x3a\xc1\x64\x46\x27\xc5\x3d\x69\xc6\xbc\xec\x9d\x59\x17\x96\x33\x92\x56\x5d\xb3\x33\x90\xf1\xc7\xd2\x44\x93\x5a\x34\xad\x58\xc5\x31\x2a\x8a\xd9\x2a\x05\x31\x5d\x66\x29\xd2\x67\x93\x1c\x41\x5c\xfd\xf9\x4e\xf3\xd9\x10\xdb\x6a\x90\x1b\xdf\x4f\x6c\x45\xc8\x8d\x60\xb8\x90\xcf\xef\x61\xe6\x88\x7e\xe3\xa8\x92\x80\x91\x14\xe6\xba\x58\x9e\xb1\x6b\xd6\x29\xee\x0b\x86\x96\xbc\x4e\x6d\xfb\xc8\x0a\x29\xd2\x56\x36\xb8\x39\xfa\xf2\xa5\x37\xa6\xb7\x88\x7c\xfd\xaa\x6f\x40\x2a\x4f\x3c\xca\xd2\xd5\x1c\x93\x66\x47\x37\xa4\xc4\xb5\x32\x83\x15\xdc\x13\xf0\xef\x48\xc2\xf8\x52\x91\xe4\xe6\x28\xa5\x73\x99\x2d\xea\xe6\x48\xf5\x78\x56\xb6\xbc\xa4\xf3\x4b\x5e\xc4\xbb\x7f\x66\x36\x82\x19\x8e\x23\x6e\x15\x17\xbc\xd5\x97\x2f\xbd\xd3\x0c\xc7\xbf\xf2\xbf\xbf\x7e\x6d\x57\xcc\xd1\x2c\x47\xc5\x82\xe1\x25\x2a\x3b\xe1\x0d\xae\xe5\xef\x63\xbc\x44\xf6\x1e\x8a\xd5\xb4\x64\xd1\x28\x41\x29\xbc\x37\xba\x1b\x19\x85\xe7\xbc\xcc\xd2\xf5\xa4\xec\x3a\xbe\x45\xf9\x04\x26\xff\x5a\x15\xcc\x8e\x03\xaf\x70\x2a\xca\xed\xb8\xac\x0a\x94\xf3\x09\xae\xb5\xfe\x50\xa0\x7c\x00\x5d\xe8\x73\x8d\x09\x19\x8a\x6e\xd1\x7d\x94\x41\xb6\x90\x4d\x8f\x57\x45\x7e\x9c\xd2\x18\xa6\xc7\x88\xc5\xc7\x62\x02\x51\xce\x8e\x79\x07\xbd\x5b\x74\xdf\x84\x14\xe3\x48\x46\x34\xca\x9e\x47\x82\x9b\xfa\x09\x22\x0c\xcf\x30\xca\xdb\xbd\xc7\x38\x5a\x2f\x97\x11\x67\x78\xd9\xea\xb7\x32\xb5\x9c\xa8\xfa\xe5\x4b\x04\xf0\x0c\x10\x04\x7a\x1f\x97\xcb\x73\xba\x84\x98\x88\x4b\xb5\x5f\xbf\xda\xe0\x24\xa2\x42\xd9\x7f\xd9\x44\x75\xcc\xa1\xa1\xb4\x40\x41\x8d\x1d\xc8\x0b\x18\x24\xe1\x20\xea\xc8\x55\xdc\xe8\x41\xb0\x62\x76\x13\xc9\xaa\x69\x10\xa2\x16\x20\xdd\xc8\x36\x26\x4a\xd8\x30\x11\x43\x04\x92\x8a\xcf\xc6\xe2\x4f\xa3\xad\x1a\xdd\x19\x67\x21\x70\x73\x24\x4f\xdf\x34\x86\x96\x4e\x8d\xe9\x1b\x50\x82\x3c\x64\xfa\x35\xcb\xae\x32\x86\x97\xf8\x4f\xb9\xdf\xe3\x00\xb9\xc8\xb2\x88\x1a\xf5\xd4\x62\x6a\xb4\x16\xcb\xc8\xde\xcf\x80\xfe\xfe\xff\xb3\xf7\x76\xcd\x6d\xdb\x5a\xa3\xf0\xfd\xf9\x15\x18\x9f\xce\xf4\x3c\xcf\x84\x72\xd2\x3c\xcd\xbb\xeb\x99\x7d\xe1\x58\x4e\xa2\xa9\x2d\xeb\x48\x72\x7a\x3a\xdb\x1d\x0d\x44\x42\x12\xb6\x29\x80\x25\x29\xd9\xae\x77\xfe\xfb\x3b\xf8\x22\x01\x12\x00\xa9\x0f\x3b\x4e\x23\xf5\xa2\x31\x01\x2c\x2c\x2c\x2c\xac\x2f\x00\x0b\x10\xe7\x1f\x68\x3a\x12\xb1\xd7\xf3\x64\x88\x60\xc4\xf4\x43\xe6\xea\x93\xd0\xe0\x0e\xe2\x3c\x98\xd1\x34\x90\x11\xdb\x00\x25\x41\xaa\xda\x49\x1c\x3c\x90\x3d\xf8\xc8\xca\x1f\x53\x98\x2c\xce\x49\x94\x50\x4c\xf2\xd3\x28\xe2\xd2\x00\xdc\x1c\xbd\xae\x22\xa3\x10\x98\xb3\x06\x01\x92\x2d\x02\x18\x45\x4a\xba\x80\x13\x5d\x3a\x8a\x56\xba\xe0\xf1\xf5\x68\xc8\x1f\xa3\x43\x3e\xca\x7f\x31\xc4\xb9\x41\x07\x7e\xc0\x24\x42\xf7\xaf\xc0\x0f\x38\x47\x4b\x70\xf2\x4f\x17\x58\xf9\x39\x03\x5f\xbe\xc8\x51\x8b\x96\x5f\xbe\xbc\x7a\x7c\xe4\xe4\x78\x04\x1a\xd4\xdb\x57\xe0\x87\x35\x38\xf9\xa7\x84\xcb\x18\xee\xf1\x11\xfc\x70\xcb\xff\x25\x78\x91\x55\x10\xdf\xf1\x0c\xa0\x3f\x59\xe1\xcd\x91\x10\x6b\x1a\x50\x45\xec\x2f\xf2\xc3\x1f\xe5\xb8\xdc\x93\x71\x1a\x45\xea\x65\xec\x11\x8f\x74\x67\x63\x3a\x8c\x84\xee\x71\x71\x07\xa3\x3c\x92\x8d\x02\x11\x1f\xcf\x82\x9c\x06\xa9\x6c\xa7\xc4\xbd\x07\xb4\x87\x3d\xe4\x31\xb9\x81\x34\xb6\x46\x04\xe6\x1f\xb9\xa9\xd5\x23\x33\x3a\x7a\x20\xce\xb5\x27\xcd\xb4\x40\x99\x69\x01\x33\xd3\x02\x61\xa6\x05\xcc\x4c\x0b\x98\x99\x26\x91\x6b\xec\xa5\x8a\x61\xd9\x8f\x70\x53\x82\x08\x71\xae\x8c\x50\x8c\x72\x14\x30\x35\x49\x57\xb9\x84\x7e\xc5\xab\x74\x79\x8d\x2e\xaf\x30\x16\xe5\x15\x6d\x97\xc5\x08\x25\xbc\xad\x17\xd9\x11\xab\xc6\x20\x38\xd0\x2c\x01\xca\xe0\x4c\xc0\x23\x3d\xb2\x75\x4f\x7c\xeb\xb1\x4f\xd5\xea\xec\x5b\x20\x23\x39\x85\xe4\xe3\x35\x07\xe2\xa3\x5b\xfe\xf1\x5d\x73\x8b\x64\x4f\x68\x34\x8d\x82\x48\xea\x8e\x15\xc1\xc7\x39\x09\x34\x79\x7a\xfc\xbe\x1b\x54\x4c\x28\xab\xcc\x66\x80\x82\x69\x64\x51\x92\xcc\x69\xd8\x4f\x17\x0c\x92\xea\xc3\xa9\x1e\x94\xfc\x49\x16\x0f\x19\xd3\x8b\x1e\x3d\x13\x24\xbc\xbc\x86\x71\x21\x43\x49\x08\x13\xd1\x7e\x1d\x43\x8e\xb3\x94\x16\x9f\x63\x48\xac\x16\x81\x6a\x2a\x37\xcc\x02\xb5\x61\x66\x8a\xb6\x4b\x51\xda\x93\x85\x55\xa3\x8a\x4d\xcb\x34\x0d\xd4\x06\x59\x40\x28\xe1\x0c\x27\x81\x0c\xde\x0f\xc7\xb2\xa8\x4f\x09\x63\x32\x0b\x80\x75\x3a\xab\xaa\xc8\xcf\xc3\x0f\x86\x96\x34\x1b\xc4\x6f\xe5\x82\xe0\x75\x2f\xde\x5e\xad\xec\xf5\xd0\x7d\x1e\x48\x03\x59\x29\x16\x5e\x59\x09\x0f\x99\xde\xb1\x54\x29\x2d\x19\x71\x9d\xce\x74\x4c\x35\x8b\xcf\x63\x51\x68\x6d\xae\xd6\x28\x8d\xe1\x83\xa5\x69\x95\x4b\xe4\x89\xdc\x52\x37\xf1\x43\x34\x7c\x2c\x55\xdd\x22\x6d\x0d\x91\x03\xad\xad\xa9\x51\x1f\xa1\x00\x56\x5a\xb6\x6d\xb8\xfd\x3f\x95\x4a\x12\x6b\xe6\xa3\xd8\x08\xb2\x4d\x17\x05\x2c\x93\x42\x26\x33\x2d\xe1\x3d\x5f\x78\x59\x90\xad\x43\xa1\xd5\xe5\xb4\x5f\xc2\xfb\x3e\x2b\x18\xad\x43\xae\x54\x2b\x5c\x58\x78\x6a\xc1\x06\x04\xb7\xfb\x74\xf5\x9a\x7b\x9f\x9e\x7d\x4c\x91\xc2\xd6\x3d\x43\x0d\xbd\x54\x00\x98\xd3\x52\x9d\x1a\xa0\xe9\x84\x22\x5d\xd7\x37\x42\x29\xa9\xf0\xb6\x26\x94\xd9\xbe\x3d\x9d\xbe\x2d\x7e\x7a\x7e\x2a\xdd\xae\xa6\xe8\x1b\x23\xd2\xd7\x58\x74\x21\xcc\xf3\xf8\x40\xa8\xd6\x84\x4a\x52\xba\x44\xf9\x02\xad\xb2\x03\xb1\x1a\x89\x25\xb7\xef\x0f\x94\x2a\x28\x65\x23\x59\x19\x68\xc0\x49\x90\x50\xca\x2d\xec\x7f\x99\x0d\xad\xe4\x43\x24\x2a\x5d\x02\x01\xa2\x37\x38\xe7\xbd\x1e\xbd\xb2\x35\x10\xb7\x90\x6b\x4d\x46\xec\x73\x19\x33\x2e\x70\x2c\xff\xfc\xc3\x9c\x8a\x51\x0e\x73\x1c\x9a\x3e\xb6\x25\xdc\x26\x5c\xf5\x20\xe3\xb5\xcb\x6e\x2d\x8d\xbd\x51\xbd\xee\x03\x81\xcb\xf6\xdd\x45\xa2\x7a\xd1\x9f\xb5\xb9\xcf\xa8\xe6\x0e\xb1\xda\xcf\x09\xf8\x7e\x4e\x89\x3c\x81\xf9\x99\x2c\x1a\xb1\x92\x9a\x63\x21\x46\x1b\xec\x63\x4a\x39\xa4\x6d\x26\xd6\x6c\xd8\x6e\x7a\x4b\x60\xcc\xfd\xdd\x01\xed\x01\x8d\x36\x41\x96\x57\xdf\x06\x45\x11\xff\x09\xf8\xf9\xc8\x20\xc3\x7f\x21\xe5\x53\xd2\x48\xcc\xf1\x19\x2b\x19\xe1\xbf\x50\xd5\x9a\x67\xbe\xf7\x1e\xe6\xa7\xcf\xef\x25\x6d\x3c\x3b\x46\xb3\x4d\x07\x6e\xe0\x2e\x23\x60\x16\xdc\xf5\xf5\xcd\x1d\x9a\x92\xeb\x5d\x90\xe5\x99\x6e\xe5\xd8\xf0\x47\xa0\x25\x45\xc5\x25\x56\x15\x68\x1c\xb1\x12\xb5\x62\xf8\xff\x16\x34\xcb\x03\x7e\x38\xc9\xbf\x77\x04\x93\xc4\x0c\xf9\xb4\xf3\xec\x4c\xd9\x73\x9e\x0c\xe5\xd1\x50\x9b\x08\x48\x02\x75\x70\xb4\xa0\x77\xd9\xc0\xeb\x84\x57\x9a\x92\x55\x1c\x3b\x25\x92\x88\xb2\x5d\xd2\x08\x59\x70\x90\x51\xba\x25\x8d\x4a\xb1\x51\x36\xf0\xe2\x50\x69\x5a\xc7\xa1\xac\x5a\xdf\x87\xfb\x44\xb3\xfc\x94\x4d\x82\x7b\x1b\x2e\xc4\x22\xda\x57\x26\x43\xd7\xe5\x5a\x71\xb3\xe5\xb0\x41\xf4\x62\x36\x88\x5a\xed\xe4\xbd\xc8\xd0\xd4\xc6\x91\x3b\x25\xd5\xd6\x31\x24\x66\x8c\x51\x84\x28\x8d\xca\xcc\xbb\x83\x09\xd6\x2b\x33\x96\x3c\x1d\xf4\x2c\x95\x4b\x6d\x51\x6e\x5a\x8b\x7b\xc2\x67\xbd\xee\xb0\x86\x88\x90\xb1\x66\x7d\x2e\xb4\x75\xcb\x41\x17\x9c\x21\x4c\xb4\xa5\xc1\x05\x66\x08\x93\xf1\x83\xc5\x3a\x60\x54\xc1\x64\x96\x42\x1d\xf3\x1e\xfb\x50\xe0\x2d\x67\xb3\x73\x39\xbe\xae\x70\xef\xe5\xf8\x1a\xbc\x36\xa9\x5c\x5c\x91\x08\x96\xf9\x4a\x05\xb3\x58\xc3\xfa\x12\x30\x57\x03\xab\xf5\x09\xc1\x68\x48\xe9\xb2\xde\x8d\x2a\xb1\xed\x8a\x19\x5d\x06\x0b\x04\xa3\x94\x8a\xd8\xb4\xe8\xbb\x84\xea\xc4\xa1\x04\x16\x12\x1c\x10\x94\x97\xdb\x37\x6d\x94\xf0\x1c\xe6\xe8\x0e\x3e\xe8\x26\xc4\x47\xf1\xc9\xa9\x82\x53\xba\xca\x91\x4d\x53\x7a\x3a\x2a\x5b\x47\xea\x14\xc0\xeb\x0e\xff\xef\xf8\xb5\xb5\x1b\x0d\xc3\x3b\x07\x72\xf6\x46\x16\x2f\xe3\x0f\xbb\x25\xe1\xe5\xe2\x96\x36\xc4\xf7\x18\x34\xae\xb6\xf6\x85\x89\x0f\xd1\xde\x43\xb4\xf7\xe5\xc4\x31\x0f\xd1\xde\x43\xb4\xf7\x10\xed\x3d\x44\x7b\x5f\x3e\xb1\x0e\xd1\xde\x76\xd1\x5e\x11\x69\x09\xa2\x94\x26\x8c\x66\xd2\x72\x96\xf9\x72\x44\xac\xe5\x8b\xad\x45\xfb\xd8\x8c\xad\xbb\xe2\x86\xce\x8d\x3a\x42\x17\xa1\x01\x8d\x7a\x33\x4f\x8f\x01\x5d\x67\xc1\xe2\x2e\xa0\xb3\x59\x4c\x61\xa4\xbc\xb2\x14\xd3\xb5\x6a\xa5\x85\x81\x64\xf4\xa2\x45\x20\x48\x8d\xba\xca\x48\x66\x40\x43\x04\x4d\x6a\x21\x0d\x97\xd9\x26\xba\xaf\xc1\x65\xfe\x5c\xce\x46\x0d\x4e\xc0\x63\x31\xb2\x88\xff\x5d\x9c\xe7\xaa\x30\xf5\xcd\x11\xcc\x1e\x48\xf8\xef\x4c\x1e\x7a\xac\x34\x33\x71\x93\xff\x54\x0d\x04\x61\xa2\x2f\x5f\x40\xe9\x55\xa1\x3f\x55\xcc\xe8\x8c\x5f\xbf\x1f\x8d\x2e\xec\x67\xc9\xb8\x8d\x9f\xc5\xaa\xd3\x32\x86\x24\x8f\x98\x45\x37\x47\x56\x6f\x8e\x75\x30\x5c\x91\x8f\xd3\xe4\x4c\xf1\xa7\x63\xed\xc8\x00\x75\x96\xe3\x30\x2b\x68\x22\xfa\xe1\x04\xa1\x33\x46\x2a\xbb\xbb\x56\xa1\xf7\xba\x2e\x14\x37\x23\xdc\x3a\xb3\x53\xad\xe8\xaf\x60\xae\xd6\xc3\x9c\x4f\x13\x1e\x1e\xad\x1f\x63\x7f\xac\xc5\x56\x9a\x0f\xdf\x9a\x0d\x5a\xc5\x41\xbe\x85\x28\x98\x2f\x48\x64\x89\x95\x7c\x9c\x26\x45\x4c\x5d\x3b\x69\x53\x43\xad\x45\xd3\xda\xa1\x77\xbb\x2f\xd5\xee\xba\x80\x56\x59\x3f\x6d\x5f\x3b\x6b\x6f\x6f\xb2\x87\xd3\xf6\x02\xda\x2d\x9c\xdd\x42\xa7\xd2\x9b\xa6\xf4\x16\xa5\x6a\x20\xbf\xb2\xba\xef\xc5\xa7\x1a\x62\xa2\x81\x48\xd0\x51\x45\x8b\x21\x91\x1d\xf3\xae\x02\x51\xc3\x8a\x8d\x01\x82\xb5\x69\x80\x11\xa6\xb9\x0b\x06\x74\xb4\x0f\xa1\xa7\x55\x4e\xd5\x9c\x5a\x59\xb2\xc9\x8e\x88\xe9\x2a\xe2\x67\x50\x9d\xe4\x0c\x45\xc4\x23\xd0\x26\xbb\xde\x4f\x43\xe8\x84\xb5\xe1\x7f\x88\xe5\x66\x65\x12\xd1\x46\xae\x78\x11\xb6\xd4\x6b\x3b\x23\x2d\x35\xc1\x69\x7e\xd8\xfa\x12\x11\x0f\xdb\x2b\x67\xf9\xa5\xde\x21\xb2\xec\x44\x12\xc8\x73\x98\x0d\x21\x99\xa3\xca\x5e\x57\x65\xb3\x53\xaf\x29\x37\xd3\x54\x3d\x7e\x6b\x2f\x48\xd8\xb4\xeb\x9b\x2a\xaa\x49\x36\x40\x69\x5f\x6e\xad\x78\x49\x3c\xe2\x99\x39\x9c\x97\xb4\xd8\x1a\xe7\x4c\xff\x1c\x84\x2d\xfa\x57\x92\xc5\x10\x5c\xbf\xa2\x07\xc1\x3f\xbc\x34\x4c\x73\xa3\xf4\x8c\x93\x51\x8c\x54\xd3\x8c\x75\xb1\xbe\x31\x19\x74\xe1\xc0\x49\x81\x67\x38\x84\x39\xca\x9e\x95\x24\x42\xc4\x94\x02\x53\x18\x4d\x72\xd4\x00\x54\x25\x58\xbb\x8a\x8a\xc4\x5a\x45\x49\xe5\x82\x8e\x72\x91\xba\xa8\xc6\xf7\x22\x4e\xc3\x90\xae\x88\x9b\x89\xcc\xf1\xaa\xfd\x9f\x67\xa0\x9e\x97\xef\x37\x45\xbd\xdc\xd1\x7d\x36\xd4\x35\x46\xbe\xce\x90\x8c\x6c\x0f\x69\x8c\x9c\x1c\x9d\x4e\x61\xd8\x81\xab\x7c\x41\x53\x79\x17\xc9\x92\xa7\xb0\x84\x53\x19\xf7\x53\x4b\xc5\x16\x4c\xc1\xdf\x47\x3d\xb9\x21\x01\x80\x09\xfe\x98\xd2\x55\xa2\xf2\x08\xaa\x07\x2b\xcd\x9c\x80\x81\x48\x4e\x7a\x53\xa4\x1a\xe4\x93\x22\xff\x4e\x68\x24\xff\x55\xb8\x89\xe2\xcf\xe2\x52\x91\x28\x5c\xa3\xa2\x24\x45\x49\xcc\x96\x37\xa6\xa4\x44\xcb\x6c\x05\x05\xcf\xf0\x8f\x6b\x94\x4e\x15\x22\xb1\xcc\xaa\x18\x80\x3b\x98\x87\x0b\xf1\xcf\x39\x92\xdf\x92\xf2\x5b\x98\x22\x98\x23\xf1\x6f\x91\x2f\x4e\xfc\x5b\xdc\x5e\xd9\x64\xec\x62\x52\x96\x30\xd9\x10\x99\x6d\x30\xb0\x65\xbf\x74\x60\xc5\x13\x61\xaa\xaf\x51\x91\x08\xb3\x86\xe4\x8f\xff\xfd\xa3\xbd\x2f\x27\x1b\x3b\x3a\x14\x1c\x9d\xd2\x58\x4d\xa9\xf6\x65\x8a\x49\x84\xc9\xdc\xde\xb9\xe6\x01\xe8\x37\x73\x4c\x4f\xd4\x86\xa1\xbc\xdb\xd3\xe1\x61\x59\x27\x62\xbc\x54\xf2\x51\x12\x43\xa2\xd0\xe3\xdf\x8b\x07\xc0\x5b\x93\x05\x86\xb8\x53\xc4\x81\xeb\xbd\xc1\x10\xd7\x01\xd7\x3f\x3b\x09\xa1\x0c\x32\x4b\xcf\x72\x65\x63\x32\xf7\x4e\x84\xac\xa6\xbf\xfd\xd3\x8e\x29\xb5\x79\xb8\xce\xd0\x69\x88\x4f\xc9\xc3\xdd\x02\xa5\xe8\x6c\xd8\x6d\x9e\x0c\x46\x17\x78\x67\x47\x09\x25\xf3\xac\x58\x2c\xfc\x8c\xda\x06\x68\x6d\xda\x19\x0f\x26\xc9\xee\xe6\xd3\x24\xe3\xe9\x9f\x6b\x7f\x1f\x8b\x2b\xfb\xdb\xcc\x03\x4c\x92\xcc\xde\xb5\x48\xa7\xb5\xac\x49\xb2\x0c\xa9\x0f\x11\x44\x4b\x4a\xca\xbf\x39\x32\xb3\x55\xac\xbe\xb4\x62\xc1\x46\x19\xac\x44\xab\x63\x90\x4a\xda\xd8\x60\xcb\x5b\x55\x8c\xc9\x42\x9a\x22\x9a\x75\x42\xba\xb4\x77\x28\x7b\x91\x2d\x6a\xbd\xd4\x04\x9d\x6b\x22\xc5\xbd\x2b\x6b\x0f\x04\xe6\x8a\x8f\x8f\x67\x98\xc0\x18\xff\x55\x6a\x02\xbd\xb0\x1c\xa8\x20\x04\x73\xd6\x9c\xe3\xae\x4a\x5f\xbf\x9c\xf6\xca\xe3\x46\xf4\xc5\x05\xc6\x02\x1d\x13\x6d\x0b\xbe\x01\x50\x97\x46\x9f\x43\x9d\xc8\xf7\x9c\xad\xd8\x57\xde\x66\xde\x1f\x26\x9a\x26\x76\x21\xa5\x9e\xfe\x73\x09\xb8\xea\x43\x9f\xed\x91\xf3\xf1\xbe\xf6\x1c\x9b\x5d\x8c\xd5\x1e\x55\xdb\x5f\xbf\x2e\x69\x56\x84\xc7\xdb\x8a\x07\x26\x9d\x3a\x34\x41\x24\x5b\xe0\x59\xce\xb4\x84\x57\x50\x6d\xcc\x6b\xf5\x1e\x23\x9c\x85\x74\x8d\xd2\x07\xa5\x96\x6c\xa4\xd3\xb7\x08\xdc\xa2\xa2\xd6\xad\x87\x41\x12\x1a\x6f\xa5\x00\xdd\x9d\xed\xb2\x8c\x22\x92\xf9\x70\x12\xc5\x4f\x88\x96\xc7\x57\xfc\x26\xfd\x11\xdd\xd3\xfb\x1a\xfe\x88\xdb\x07\xd9\xd8\x98\x32\x76\xd0\xaa\xfb\x2b\x7e\xc9\xe0\x90\x43\x85\xaf\xa4\xe3\xa2\xb3\x88\x14\xaf\x8d\x86\xcc\xde\xbd\x89\xaf\x61\x5d\xea\x06\x9f\xf8\xb7\xc3\xee\xb9\x39\xfa\xef\xca\xae\xe8\xd7\x30\xb3\xf7\x6b\x52\xee\x66\x43\xb7\x33\xbd\x6e\xdc\xd6\xcc\x16\xc6\xca\x37\x65\x88\xa8\x97\x7c\xec\xeb\xb0\xf6\xfe\x59\x50\x7f\x1c\xe8\xa9\x26\xa8\x62\x35\xb2\x8a\x7c\x7f\xc8\x6a\xf9\xba\x28\xb1\xad\xe5\xfb\xb7\x51\xf9\xfb\x33\xc7\xa4\x70\xa9\x85\x3b\x37\xd4\xbe\xef\x45\xa4\x64\xf3\x38\xee\x2e\x7a\x3a\xa5\x31\x1a\xa2\x19\x6f\xac\xe8\xe1\xc1\x9c\x55\xb3\x98\x0d\x2d\xd0\xcc\x56\xe2\xc9\x29\xae\xcc\xed\x41\xe0\x3d\x05\xad\x9f\x71\x1e\xcc\xa0\xf4\x8b\x9d\x07\x1d\xcd\xed\xe7\x61\xd3\x08\xbc\xe5\x01\x9f\x24\xd3\x48\xde\xe5\x01\x91\x91\x67\xfb\xab\xd2\x79\xbb\x6e\x9f\xde\x6e\x2d\x5e\x75\x11\xf2\x74\x94\xa7\x30\x47\x73\x95\xf8\x55\xe4\x68\x1c\xd2\x38\xc6\x64\x7e\x5d\x48\xdc\xca\xab\xcf\x4b\x26\x84\x2e\xcc\x97\xb8\xbc\x03\x6f\x67\x50\xe7\x68\x99\xc4\xe5\x83\xc4\xb5\xe7\x6a\x6a\x6f\x7f\x35\xf6\xd9\xa6\x57\x4e\x67\x42\x68\xce\x59\x54\x07\x9f\x85\x0b\x14\xad\x62\x94\x76\xf8\xfb\x43\x9d\xdb\xe2\x92\x16\x5b\x7e\x61\x8a\x73\x1c\xc2\x38\x48\x68\x74\x02\x7e\xd4\x1e\xb0\x2e\x4f\x39\xb2\x7a\x59\x98\x42\x46\x54\xb5\xed\xe2\xaa\x97\xd0\x34\x67\xb5\x7e\x79\xf7\xe6\x27\x55\xcb\x78\x82\x87\x0d\x4c\xa6\xd0\xd1\x9f\x3a\x12\x05\x83\x5e\xb7\xfe\xb1\x37\x38\x33\x3f\x66\xc6\x62\xe9\x37\x2d\x14\x3d\xc2\xbd\x84\x73\x34\x58\xc5\xb1\xd8\xed\xac\x1c\xc3\xc1\x66\xa9\x4e\x44\xf5\x88\xd3\xe3\x63\x15\x86\xf5\x12\x4b\x4e\x63\x94\xd6\x66\x22\x28\x5e\xe5\x39\x01\xe7\xf7\x38\xcb\x8b\x99\x63\x06\xfd\x99\x2d\x1f\xb2\xea\xb7\x78\x2d\xe0\x46\x3b\x63\xc0\xf1\x15\x7b\xc0\x21\x3e\x23\xb8\xcb\x6b\x14\x70\xcc\x03\x09\xc5\xe0\xc4\xa3\xf5\xe6\x50\xc4\x37\xb3\x41\x86\xc2\x55\x8a\x73\x0e\x0f\xdd\xe7\x27\xd5\xcd\xb8\x41\x91\xca\xb9\xe9\x74\x19\xe3\x11\x55\x57\xcd\xa4\xe3\x70\x64\x08\x13\x38\xc5\x31\xb6\x3f\x9b\x14\xd9\x5f\x05\x1e\xfd\x3e\x9a\x9c\x76\x2f\x7b\x7d\xbd\x70\x4d\xe3\xd5\x12\x5d\xf2\x7d\xaa\x4a\x2b\x8d\xa8\xc1\xb4\xfe\x02\xf5\x92\xb5\x19\xc0\x7c\x71\x02\x8e\x97\x24\x3f\x2e\xaa\x19\x49\x0c\x07\x29\xa6\x9c\x3c\x31\xe4\x89\x0b\xab\x03\x4f\xf4\x72\xc1\xa3\x42\x3c\x06\xea\xb4\x8a\x5a\x7a\xae\xa3\x7b\xc2\x51\x3b\x23\x78\x8b\xae\x60\x88\x19\xda\xaa\xc4\x42\x6f\x6b\xfa\xed\xa0\x8d\x30\xaa\x30\xde\x27\x9a\xe5\x07\x9e\x33\x0a\xfb\xe7\x63\x77\x21\x6b\x39\x18\x0f\x4f\xcf\xce\x5d\x4d\x87\xa7\xbf\xe9\x45\x88\xac\x1d\x0c\xfc\xeb\xf5\xfb\xf3\x61\xff\x7c\x7c\x3e\x9a\xf4\xaf\xba\xe7\x93\xfe\xe9\x65\x0d\xe8\x1a\xc6\x2b\xf4\x21\xa5\xb6\x57\xd8\x67\x18\xc5\x91\x32\x79\xac\x85\x62\x19\x30\x01\xde\x61\xc6\x37\x63\x2e\x3b\x2a\xe3\xf3\xfe\x69\x7f\x6c\xed\xbc\x76\x86\xb2\xf5\xc9\x4d\xef\x31\x16\x1b\x16\x9c\x0a\xe7\x83\x8f\x4e\x3c\x2a\x8c\x2d\x22\x55\x9e\xc3\xde\xdb\x02\x6e\x75\xd6\xdc\xec\xbd\xce\x98\xaa\xf3\xab\xc1\x87\x8b\xf3\xff\x37\xb9\xbc\xea\xda\x67\xf7\x04\x50\x71\xf0\xf4\x05\x8d\x43\xbf\x39\xca\xdf\xd5\x90\x19\x2e\x1b\xa7\xf0\xf2\xfa\x62\x7c\x3d\x72\xe0\x57\x5b\xc7\x1a\x87\xc8\x0e\x64\x0a\x58\x69\x62\x34\x76\xd7\xed\x8d\x4e\xdf\x5f\x9c\x4f\x7e\x3b\xed\x8d\x27\x1f\xae\x86\x93\xfe\xf9\xf8\xb7\xab\xe1\xaf\xcd\x08\x78\xa8\xdc\xbd\x1e\x9e\x8e\x7b\x57\xfd\xb6\x50\x45\x46\x12\xf9\x60\x96\x39\x00\x67\x12\xbb\x27\xd1\x70\x2e\x18\xcc\x64\x6f\x03\xa4\x5e\x4f\x41\x61\x2a\x64\x0d\x6b\xc9\xf2\x75\x20\xe5\x21\xdb\x5a\x45\x1d\x4a\xba\xf2\x8e\xa7\x56\xbc\x41\xdb\x12\x03\x27\x14\x79\x9d\x81\x01\x53\x7e\x0c\x9f\x86\x76\x60\x51\x1e\x1e\x1b\x17\x22\xe8\x3a\x3b\x9e\xc2\x0c\x71\xca\x75\x22\x37\xe6\xc1\x96\xbd\x99\x4b\xf5\xb8\xaa\x50\x3f\x09\x6b\x9c\x64\x9f\x39\x5c\xcf\x72\xa9\xd0\xf8\x98\xb0\x56\x55\x3c\x34\x7c\xd3\x15\x09\xac\x75\x52\x04\xa3\x2b\x12\x3f\x98\x36\xbd\x39\x92\x94\x26\x70\x0e\xc5\xa3\x02\x0c\xc5\x31\x2d\x14\xc4\x7e\xa4\x8c\x78\xeb\x27\x68\xcb\xdb\xb5\xea\xd6\x05\x19\xe3\x35\x22\x28\xcb\x06\x29\x9d\x56\x1f\x7b\x98\x41\x1c\xaf\x52\x34\x5e\xa4\x28\x5b\xd0\x38\x3a\x01\x6f\x5e\x9b\x35\x16\x79\x9e\x7c\xb4\x3c\x11\x97\x08\x34\xca\xa0\xba\x51\xc8\xdd\xad\x7f\xbc\xfe\xe5\x75\xb5\x84\x3f\x0b\x8b\x4e\xc0\xa7\xf1\x78\x60\x96\xf1\xdd\x03\x18\xf3\x74\xd3\x23\x14\x52\x12\x65\x27\xe0\xcd\x4f\x15\x08\x22\x6d\x71\x51\xfe\xae\x52\x2c\x9f\x71\xd0\xc7\x63\x56\x90\x19\x88\x0b\x00\x6f\x5f\xd7\xcd\x4c\x7d\x29\xb4\xb3\x78\x86\xe7\xef\xaf\xae\xc6\x93\xdf\x7a\xe3\x4f\x93\xab\xcf\x2e\x35\x51\x3a\xa9\x1b\xdf\x84\x29\xbb\x1a\x8d\x2e\x7c\x2a\xb7\xb8\x7b\x63\xe7\x05\xc3\x44\x96\xb7\x7c\xbe\x3b\x23\xd9\x6a\x07\xb7\x50\x5b\x07\x65\xb1\xbd\xb2\x90\x2d\xf6\xd5\x9f\xea\xca\x5c\x48\x82\xa1\x47\xfc\x4a\x95\x9f\xc9\x2a\x68\x89\x5b\x58\x0d\x0b\xa5\x02\xd7\x64\xc5\x90\x2e\x97\x90\x44\x27\xe0\x5f\x37\x47\xc7\x53\x4c\x8e\xb3\xc5\xcd\xd1\x1f\x7a\x0d\x98\xce\x33\x51\x5c\x8e\x8d\x55\x8c\xe1\x8a\x84\x8b\x40\x60\x22\x10\xe9\xd4\x1a\xef\x61\x35\xea\x94\xde\xdf\xb2\xe1\xd7\x1d\x6a\xeb\xa5\x50\xed\xfc\x4d\xf8\xf2\x2a\x9d\x20\x21\xfb\xe8\xd4\x80\x28\x4f\x71\x58\x53\x28\x15\x80\xbf\xbc\x7b\xfb\x93\x5e\x25\x47\xe9\x12\x13\xae\x99\x2f\x51\x96\x31\xba\x08\x36\x8a\xd0\xfa\x58\x2b\xe4\x57\x58\xfd\xed\x24\x7d\x3f\xe0\x18\x6d\x28\x1e\x0c\x5e\xda\x91\xd3\xeb\x0c\xb9\x8b\x18\xb2\x08\xcf\x82\xde\x21\xcc\xf2\x40\x9c\x40\x74\xf2\xff\x25\xab\xf4\x54\x8c\xcf\x31\x10\x08\x6c\xcd\xf7\xdb\x6a\x1a\xff\x2a\x69\xa9\x85\xfe\xd6\x9a\x23\x45\xfc\x92\x94\x22\xff\x69\x7c\x07\x1f\x8a\xd5\x29\x46\xee\x08\x0c\x57\x5d\x37\x1e\x48\x67\x3d\x55\x88\x2c\x3a\xa7\x49\x6e\x87\x52\xb5\x83\xfd\x60\x50\x1e\xd6\xc1\x58\xa8\xef\x87\x62\x54\xf6\x50\xd0\x0f\xc5\xa8\xdc\xce\x69\x0a\xd5\xbd\xba\x0a\xc4\x86\xc7\xb9\xca\x1f\xce\xd1\xb2\x2e\xd1\x03\xc0\x2f\x14\xd5\x52\x1f\xd6\xa5\xbc\x40\xbd\xac\xd8\x31\xc9\xbf\x89\x05\x81\x96\x49\xfe\xd0\xc5\xd5\x47\x05\x97\x28\xc2\xab\xe5\x09\xb8\xe4\x2f\x38\x3a\x41\x7f\x25\x12\x59\xd2\x02\xb8\x88\xc4\x97\x4a\xa7\xf4\xbb\x4a\xf9\xa3\xeb\x3a\x8f\x03\xdb\x4a\x6f\x38\x63\xf0\x6d\x5c\xe4\xa0\xd1\xf3\x6d\xe4\x60\xe5\x50\xb7\xf1\x6e\x0b\x1c\x80\x55\xd3\xb8\x7d\xdb\xc6\xd5\xc8\x31\x11\x00\x8e\xfd\x77\x54\x77\xd9\x49\xd6\x1e\x96\xbe\xf9\x1e\x37\x94\x2b\xe3\x6f\x83\xdf\xbe\xf6\x95\x2d\x5d\x3f\xff\xf6\xf2\x77\xb0\x21\xbc\xe5\x76\xf0\x77\xbb\xc5\x68\xe5\xcb\x9a\x77\x88\xc8\x7a\xc4\xeb\xec\x2b\x96\x62\x9e\x30\x2b\x7f\xfc\xbd\xe3\xba\xf2\x12\xaf\x21\xab\x6c\x1f\x9f\x47\x42\xb7\x5e\xb0\xca\xd5\x54\x8b\xdf\x78\x94\x46\x15\x8e\x7e\x1f\x4d\x2e\xaf\xba\xd7\x17\xd6\xdd\x4a\x56\xda\xef\xd9\x77\x32\x7b\x83\xb3\xc9\xc5\xd5\x99\xb1\xe7\xe1\x0e\xec\x5d\x7d\x1e\x4d\x86\xd7\xfd\x6e\x6f\x58\x85\x25\xe3\x6d\xa6\xdd\xce\xf5\x94\x83\x67\xfe\xd6\x6e\x42\x1d\x8a\x61\x89\xfb\xa0\xd4\x2a\xea\x50\x96\x94\x09\xf1\x5a\x38\x40\x87\x14\xe3\xe9\xb1\xa5\x9a\x2f\xea\x8d\xee\x51\xfd\x21\x62\xe5\xc8\xda\x98\xa6\xea\xb9\x4a\xd8\x01\x5d\x67\xcc\x67\xdd\xcd\x57\xb2\x50\xeb\x6f\xe0\xe4\x58\xa6\xc4\x0f\xc9\x98\xc7\x46\xbb\xae\x38\x01\xff\xf2\x92\x1b\x80\x96\xa6\x4b\xf3\xc1\x58\x65\x8f\xa8\xe3\xfd\x72\x37\x23\xb3\x5a\x81\xa8\x3c\xcf\xbd\xad\x01\x68\xd2\xa9\xdd\x38\x9a\xec\xbf\xb6\x1d\xb5\x98\x14\xd0\xda\x9c\xac\xc3\x7f\xa9\xd6\x64\x0b\x1b\x51\x1f\xcc\x33\xda\x88\x2a\xf7\xf6\xb8\xb4\x12\x81\xcb\x76\x7c\x7c\x04\x39\xfd\x1d\x2e\x63\xb3\xfa\x7f\x00\x26\x11\x22\x39\x78\x57\x1c\x47\x8c\x33\xe4\x84\xa2\xd0\x43\xb3\x19\x0a\xf3\x13\xd0\xa7\xe7\xf7\x28\x5c\xe5\x9a\xff\xef\x3a\xa9\xa8\x83\xb2\x6c\x0e\xea\x30\x47\x72\x2e\xcb\xa6\xdc\xf3\x27\x34\x42\x95\x79\x25\x34\xe7\x8f\xf9\x3e\x34\xf7\xdf\xb2\x83\x20\xa5\x71\xb5\x97\x25\x64\x36\xb1\xaf\x0b\x69\x55\x81\x2f\xd5\x17\x8b\xb7\xb7\xc4\x39\x32\x2f\xc8\x0c\xdf\x70\x43\x54\xb7\xd6\xe7\xd3\xa4\x61\xfb\xe6\xe3\x34\xf1\xee\xdd\x58\xcc\x73\x50\xb5\xcf\xc1\xe6\x87\x5c\xaa\x8f\xd4\xef\xf5\x90\x44\xbb\x83\x67\x32\xa9\x10\x4a\x73\xaf\x09\x65\xa9\x10\xd8\x72\x4d\x6d\x37\x02\x94\xe6\xc7\x0e\xd7\xc0\x6d\x78\x7f\x7c\x3f\x98\x8c\xce\x87\x9f\xcf\x87\x93\xb3\xab\xfe\x87\x66\xeb\xdb\x42\xb0\x32\xbf\x62\xc7\x79\x3c\xc2\xe1\xf7\xd9\x14\x48\xf5\x64\x73\x51\x65\x5f\x5e\x9f\x9b\x1a\xbf\x9d\x8e\xcf\x3e\xf1\x73\x94\xa3\x81\xe5\x84\x66\x71\xbe\xa0\x9a\x56\x5f\xb5\x3f\x3d\xeb\x4d\x46\xfd\xd3\x71\x0b\x10\xce\xbc\xb1\x1e\xb8\x1f\x2f\xae\xde\x9f\x5e\xf4\xfa\x1f\xae\xdc\x67\x3d\x4f\xe4\x63\x55\xe5\x6d\x41\x1f\xd0\x61\x97\xcd\x7a\xef\xa3\x1f\x5e\x4a\x57\x39\x26\x73\x91\x5e\x52\x85\x6b\x1d\x50\x47\xbf\x8f\xc6\xe7\x97\xfb\x21\xc0\xd7\x59\xfd\xb6\x6e\xf6\xb6\x3c\xcb\xea\x5f\xf3\xb8\xd0\x9b\x6a\xc9\xcb\x3d\x2e\x54\xfa\x73\xad\xa4\x72\x83\x44\xce\xb8\xfd\x55\xa1\x9a\xf8\xd8\x6f\x4a\x76\xd7\x20\xd5\x7c\xec\xd1\xd8\x6d\x2d\xd5\xa0\x09\xbf\x0d\x97\x3f\xed\x86\x4d\x0d\x83\xba\xfb\x2e\x58\xaf\xac\x58\xdf\xb3\x69\x7b\x06\xab\xe8\xb5\x96\xb9\xd7\xd5\xab\x4f\x05\x79\xf9\xa6\xee\x00\xf3\x0b\xa8\x9a\x0b\x3c\xa0\x51\xef\x83\xd5\xfb\xc5\x04\xe5\x01\x7f\x44\xa6\xe2\xee\xea\x0f\x0f\x10\xb1\x14\x79\x33\x94\xcc\x6b\x33\xc1\x81\xd0\x15\x9f\x74\x9c\xc0\x28\x4a\x4f\x40\xf9\xa2\x8c\x3e\x8e\xa3\x57\xff\x0b\x00\x20\x92\xfd\xfe\xdc\xf9\xa9\xf3\xff\x75\xde\x1c\x9d\x80\xa3\xaa\xff\x5e\x4f\x2b\xa0\x5f\xb2\xe4\xb9\x04\x86\x32\xec\xd9\x2d\x72\x09\xb8\xbc\xfb\x12\xd1\x22\xa7\x56\x87\x51\x28\xcc\xd3\x58\x73\x9c\xe7\xe2\xb2\x64\x59\x22\xc9\x21\xb9\x49\xf4\x2d\x75\xb9\x00\x77\xa5\xe5\xe2\x02\xfc\x6a\xf0\xaf\xee\x4a\x17\x58\x5d\x40\x49\xe2\x55\x0a\x63\x17\x6a\xd2\x21\xc4\x64\xbe\x8a\x61\xea\xa8\xc5\x1d\xf7\x90\x32\x5f\xbe\x78\xdc\x8c\x1f\xa6\x92\x81\x86\xe2\xb6\x31\xa7\xc1\xfa\x0d\xf7\x44\xa5\xb8\xe2\x2c\x16\xe9\x9e\x65\x96\xd3\x94\x1b\x2b\xda\xa7\xd5\xb4\x1e\x57\x96\x5c\x00\x1e\x25\xab\x73\x81\x5b\x7a\xef\x34\x41\xe4\x74\xd0\xfb\xfc\x76\x64\x7e\x07\x20\x42\x59\x98\xe2\x24\x57\xcc\x59\x1f\x10\xa0\x77\x24\x03\xf9\x02\x81\x18\xcf\x50\xf8\x10\xc6\x08\xd0\x19\x53\xef\x80\x8a\x9b\xa6\x00\x13\x5e\x2e\xf7\x05\x4a\xe0\x49\xca\x80\xd4\xc2\xc5\x1a\x43\x55\xc4\x34\x0f\x81\x64\x79\xca\x6f\xe7\x96\xdf\xf9\x04\xb7\xab\x5a\x0b\x5c\xe8\xd5\x05\xbe\x86\xe4\x4c\x6a\x21\x44\x83\x22\x56\x7e\x19\x25\x28\x04\x3c\x51\x06\x12\x84\x89\x50\x86\x53\x14\x71\x68\x60\x46\x53\x4e\x9c\x2b\x41\x9c\x8a\x22\xb3\x53\x84\xfd\x66\x31\x5c\xd3\xea\x36\xbb\x6f\xa8\xa0\x90\xca\x1b\x35\x72\x92\xa2\x14\x24\x1b\x11\x83\x37\x33\xc8\x21\xd5\xf1\x6c\x15\x83\x90\x2e\x93\x18\xb1\xe6\x9c\x67\xdc\x4b\xb4\x05\x81\xac\x08\x96\x23\x9a\x52\x1a\x23\x48\xda\x0c\x36\x45\x7f\xae\xd8\x84\x19\xd1\x14\x36\x79\x5a\x1c\xc2\x68\xe8\x49\x74\x5a\x2c\xf2\x36\x11\xcc\xe7\x8b\x4c\x5a\x22\xaf\xfb\x93\xdc\x65\xa6\x84\x8e\x4c\xa8\x60\x95\xd5\xec\xbb\x4d\x52\xab\x67\x20\x3e\x54\xa5\x73\x51\x50\x97\xc8\x66\x72\x06\x5d\x0a\x97\x8f\x4c\x6c\x28\x79\x37\x91\xb9\x6d\xc5\xe9\x37\x29\xf1\x5c\x55\xbd\xab\x51\x4c\x86\x73\x35\xc2\x34\x85\x0f\xf5\x42\xbb\x11\xe8\x47\xa2\x11\x15\xf1\x2b\xb8\xbf\xd7\x75\xd4\xf0\x8b\x52\xf1\x63\x36\xd4\xf6\xad\xf1\x8c\x33\xd7\x0e\x00\x84\x89\xb6\x3d\x80\x25\x0c\x77\x84\x90\xd0\x68\xc7\x41\x30\x08\xae\x59\x6a\xd3\x7e\x9d\xa3\xaa\x97\xd1\xd4\x7c\x3b\x89\xbe\x59\x90\x54\x97\xa6\x72\x27\xa1\x4c\x24\x75\xbc\x7e\x33\x45\x39\x2c\xcd\x7a\x1d\x8c\xd3\xfc\x35\x42\xab\x32\x74\xf1\xe6\xb5\xfa\xdd\x10\x11\x65\xe9\x8a\x27\x01\x4f\x80\x48\xa4\x45\x0c\xa5\x7c\x73\x34\x5e\xe0\xac\x88\xdd\x82\x90\xe3\x8d\x33\xb0\xca\x50\xa4\x8c\x91\xe0\xac\xdf\x2b\x4f\x23\x18\xf9\xaf\x2d\x11\xe9\x86\x1c\x5e\x2d\xb4\x8a\x41\x8a\x8d\x54\x0b\x4a\xe6\xdb\x29\x95\xf3\x64\x5e\x55\x27\xe7\xc9\xbc\xae\x48\x54\xbe\x5a\x9f\xa6\x10\xda\xa1\xad\x0a\xdd\x7e\xb0\x45\xc6\xdc\xad\x46\xac\xde\x84\xaf\x0e\x5b\x7d\xaf\x8f\xdd\xc8\xd0\xfb\x12\x08\xb0\x83\x11\x61\x35\x20\x1c\xc6\x43\x69\x38\xbc\x84\x41\x97\x89\x8a\xb7\x1a\xf8\xc7\xf7\x83\x11\x33\xba\x51\x75\xf0\x45\x41\x9d\x00\x66\xae\xe4\x66\x22\x58\xbd\x4c\xdd\xc7\xac\x89\x8f\xa7\x32\x35\x2b\x99\xe9\x3a\x45\xe2\x34\x2b\xcd\x44\x89\x8d\x6a\x23\x02\xf3\x8f\x1c\x4e\x8f\xcc\x68\x95\x74\x66\x69\x9d\x7e\x96\xfc\x78\xba\x09\x5a\x09\x88\xbf\x00\x3b\xd4\x50\x11\xe6\xe8\x98\x6e\x60\x5e\x9a\x68\xc3\x35\x04\x77\xda\xcc\x21\x82\xd3\x41\xef\x1b\x37\x6b\x3d\x16\xe3\xbc\xa0\x86\xcd\x4e\x81\x51\xc4\x19\x12\xc6\x03\xbf\xd1\xe9\xb6\x66\x5b\xd8\xab\xdc\x56\x3b\x8d\xa2\x14\x65\xee\x2a\x6d\xcc\x25\x11\x78\xe7\x8f\xd8\xf8\x00\xf9\x90\x6d\x8d\xb2\xf8\x21\xeb\xf9\x2a\xf3\xb7\x84\xf7\x78\xb9\x5a\x9e\x80\x77\x3f\xff\xfc\xf6\xe7\xc6\xda\x98\x88\xda\xb5\xad\x83\xea\x4f\xd0\x03\x93\x1c\xcd\xab\x37\xab\xaa\x3f\x7e\x8c\xeb\xe5\x23\xda\xe4\xf9\xe8\xb5\x1c\x6e\x95\xf8\xb1\x25\xdc\x73\x5b\xce\xed\x78\x49\x00\xb9\xc6\xbe\x19\x6e\x0b\x47\xec\x8e\xf6\x7d\xde\x44\x1b\x60\x16\xe3\x5e\xff\x05\xda\x42\x72\xd5\x28\x57\x88\xab\x86\x18\xb7\xbf\xf4\x1a\x47\xbe\x0a\xe5\x70\xed\xb5\x9a\x26\xda\x3b\xc5\xee\xc6\x0e\xf2\x04\xba\x94\x6b\x29\x44\x1b\x43\x80\xa6\x2a\xb1\xc4\xfe\xe8\x54\x28\x32\xf1\xfa\x01\xa0\x33\xab\xe6\xf5\x23\xd2\x10\x7b\xdb\xb7\x79\x51\xa6\x56\xdd\xc9\xba\xb8\x60\x60\x5c\xc6\x45\x51\x68\xb7\x2d\xcc\xec\xae\x55\xd3\xa2\x28\x7d\x09\x96\xc5\x37\x69\x0a\xd4\x78\xb8\x98\x0f\x77\x2c\x5f\xe7\xdf\xca\xdc\x36\xd0\x82\x4f\xbf\x6a\x61\xd3\xa5\x6e\x55\xdc\xa8\x82\x13\x1a\x79\xe5\x69\xab\xe8\x4c\xc1\x3c\xbb\x81\xf1\x29\x89\x66\x00\x85\xc4\xf4\xd9\x1b\x4d\x46\x4b\x4b\x93\x25\x42\x99\x5f\x33\xb6\xe9\x4b\xfc\xda\xe8\x3e\xbd\xa6\x57\x63\x03\xb5\x81\xde\x06\x52\x73\x9f\x8d\x06\x40\x7b\x60\x0d\x3a\x17\x00\x91\x44\x3a\x73\xea\x4c\x50\x9c\x2f\xf0\x95\xfb\xb4\x2e\x68\x69\x1b\x35\xd0\xd9\x3b\x92\x40\x2d\x07\x6f\xa1\xdc\xdf\x71\xd4\x70\x58\x05\x81\xc1\xe1\x6e\x7d\xef\x1a\x9c\x73\x58\x4e\x7d\x5f\xca\x9c\x17\xa8\x65\x55\xfe\xee\x9d\x74\xac\xb0\xb0\x6c\x0a\x56\x94\xd8\xb5\x6b\x62\xcc\x81\xa9\x5b\x93\x02\xa2\x54\xac\x67\xe5\x26\xf6\x1e\xb4\xea\x5e\xf7\xea\xed\xf3\xf8\x4d\x2a\xe4\xad\xb6\x9c\x2a\xf7\x21\xda\xc1\x6b\x80\x09\x6c\x97\x11\xda\x43\x06\x55\xe3\xe2\xc7\x11\x47\x52\x6e\x78\x0f\x68\x94\xfd\xe8\xd0\x9f\x4d\x9a\xab\x75\x14\x02\xb4\x10\xea\xa4\x41\xe3\xfb\xdb\xfb\x68\xe0\xd4\x39\x3b\xed\x03\xda\x31\x71\xaa\xf1\xbd\xf7\xb5\x91\x87\xb4\x05\x33\xb7\x9a\x5c\x13\xbd\x27\xdf\xd1\xdf\xcd\x05\xea\xd3\x08\xd9\xbc\x1f\xf5\xdd\xbe\xa5\x6f\xf5\x79\x54\xc1\xc1\xdd\x69\xc5\x92\x1b\x45\x3e\xe5\xfe\xb0\x3d\xe6\xe8\x5b\x7b\xa5\xb2\xd4\xe7\x5e\xff\xb5\x16\x58\x9e\xf3\x3a\xbe\x81\xee\x12\xb7\xe8\x4b\x96\x6a\x15\xb1\xe8\x6b\xfc\xd7\xd4\xf9\x33\x5a\x51\xc5\x7b\x3c\x5b\xaf\xd1\x61\x74\xa6\x1d\x73\x2d\xd7\xa8\xfa\x5e\x5f\xa3\xc6\x1b\x40\xfa\x1a\x55\x05\x87\x35\xda\x8a\x41\x37\x5a\xa3\xea\x05\x1e\x14\x65\xab\x29\x41\x96\x4c\x01\xdb\x2a\x50\xaf\xa6\x5c\x65\x28\x7d\xc6\x0e\xbf\xef\xc5\x5c\x79\xd5\xa8\xa3\xbd\x82\x64\x5d\xd4\xaa\xcc\xaa\x7a\x05\x2c\xbb\x73\x64\x14\x5a\x94\x70\xfd\x75\x25\x43\x15\x6b\xc5\x0f\x5b\xae\xf5\xad\xf6\x2c\x55\x86\x6d\x79\x6d\x4f\x94\x4d\xd9\x2c\xa7\x70\x36\xc3\x21\x98\xc5\xf4\x0e\xc0\x1c\xf4\x06\x40\x2a\x34\x40\x53\x1e\xe7\x07\x31\x5a\xa3\xf8\xef\x2b\x1e\x60\x92\xc4\x18\x45\x63\x6a\x59\x8d\x0d\x5e\x45\xe1\x06\x8c\xdc\xae\x54\x0b\x30\x40\xdd\x46\x3f\xbf\x4f\x18\xe5\x2b\xd7\xac\xab\xbf\x3d\xee\x3c\xde\xa2\x87\x3d\x46\xe8\x8a\x3b\xba\xfb\x03\xc9\x0f\x71\x35\x47\x11\xdb\xc5\x1a\x37\xe9\xb8\x75\xbc\xb1\x45\x64\x4f\x5e\x90\xf1\x57\xa0\xd6\xf3\xdb\x36\x94\xf6\xb0\xb5\x69\xcb\x7d\x50\xff\x6d\xe4\x32\x83\xd6\xe4\x6d\x1e\x45\xe3\xe1\x55\x1a\x35\xac\x38\xf3\x1e\x46\xcc\x84\x1b\x26\x73\x2e\xd6\x66\x29\x5d\x8a\x23\x1a\x70\x89\xca\x25\x7c\x58\xb9\x87\x95\x6b\xf9\x1d\x56\xee\x46\xa3\x68\x13\x83\xb7\x97\xa2\xb9\xc3\x8b\x36\x37\x1b\x51\xce\xac\x50\x51\x19\xf0\xd7\x8e\x01\x62\xac\x06\x73\x14\x81\x29\xcc\x50\x04\xa8\xb8\x3e\x45\xd3\x08\xa5\x00\x13\x70\xb7\xc0\xe1\x82\x7d\x7a\x00\x30\x45\x20\x43\x79\x67\x13\x7b\xbc\x39\xb2\xc8\xe3\x93\x4e\xf2\x56\xee\xfc\xf0\x58\x26\xb3\x50\xf0\x0c\x4b\x2b\x5b\x00\x00\x39\x05\x53\xa4\xcc\x11\x35\x0a\x36\x44\x0b\xba\x3a\x3d\xbd\xe7\xef\xf9\xbb\xab\x17\x74\x3e\xc7\xc4\x7d\x12\xdf\x40\xf1\x5c\x6f\x52\x9c\x7c\xce\x29\xc0\x24\xe2\x97\x6b\x01\x9e\x01\x9e\x9c\x0f\x64\x0b\xba\x8a\x23\x30\x47\x84\xad\x00\x04\x62\x3a\xe7\xfe\x03\x5c\xc5\x39\x6b\xc1\x4f\x39\x37\x60\xef\x8c\x5b\x00\x47\x1e\x6d\x07\xda\x92\x33\xb8\xc5\x0a\x49\xc4\xa6\x2d\xa7\x21\x8d\x85\xf4\x47\xd1\x71\x84\x08\xa3\xeb\xf4\xa1\xa4\x2b\xe8\xcd\x40\xbe\xc0\x99\x78\x3e\x89\x8f\x95\x64\x0c\x4e\x2a\xf2\xb4\xbe\x12\xa5\xac\xae\x58\x78\x28\x63\xe0\x04\x5a\xce\x71\x35\x89\x34\x9b\x61\x2e\xec\xf2\x01\x43\x5e\xb3\xcd\x17\xc8\x32\x9e\x9c\x0a\x5c\x18\x6b\x43\x3f\x7f\xb4\xd6\x27\x88\x44\x3c\x85\xb8\x5f\xb2\x56\xd8\x24\x92\xe8\x96\xee\x22\x22\x11\x9b\x83\x02\xef\x14\x92\x39\x7a\x05\xa6\x88\x71\x92\xaa\x80\x49\x18\xaf\x22\x14\x81\x3b\x9c\x2f\xe4\x55\x47\x5e\xb1\x03\x7a\x39\x08\x21\x01\x94\xc4\x0f\x6c\x29\xa8\x55\x12\x81\xbb\x05\x62\x83\x25\xab\x25\x4a\x71\x08\xc5\x0c\xb0\xf9\x2a\xaa\x78\x68\xc0\x7e\x33\x9a\x2e\x61\xce\xcf\x8f\x99\x39\xd2\xeb\xbf\xd6\x07\xcd\x92\x66\x8a\x41\xf2\x70\x65\x7f\xb0\xab\xfc\x05\x9b\x9c\xc1\x0b\x36\x50\x84\xc6\x74\x8d\xd5\x9c\x48\xb9\x32\xc7\x6b\x44\x0a\xa6\xea\x00\x7e\xeb\x81\x11\x7f\x8a\x00\xc2\xf9\x02\xa5\x06\xbd\x69\xca\x2d\xa5\xa8\x80\x01\xc1\x80\x46\x96\x05\x44\x68\xce\xa0\xae\x71\x84\x22\xb9\x7c\xaa\x2b\x47\xd8\x5c\x9c\xa9\xc9\x6a\x39\x45\xa9\x7b\x29\x89\xdf\x7d\x50\xe6\x06\x0a\x30\xc9\x03\x9a\x06\x82\x00\xf6\x67\x69\xf4\x9f\x1a\x61\x23\x6b\xcb\x3b\x21\xe3\xb3\xc1\xa6\x54\x55\x0b\xf3\xff\x8c\xcf\x06\xaf\xc0\x75\x77\xf0\x8a\x91\x6b\x74\x36\x1e\xfc\x97\xd2\x3d\xd2\xc9\x5e\xae\xb2\x5c\x90\x83\x53\x8e\xd1\xaa\x60\xe0\x57\x3a\x21\x25\x3a\x19\x5b\xec\xe3\xb3\x41\x03\x7d\xf6\xa5\xbc\x5b\x18\x20\xb9\xcd\x4b\xb6\x10\x66\xc8\x44\x66\x31\xf7\x11\x53\x19\x8a\x08\x38\xe3\xac\x4e\x22\x79\x9f\x86\x89\xbf\x98\xc2\x28\x93\x1b\x92\x4a\x46\x2b\x62\x58\x98\x8c\x0b\x67\x46\xe4\x25\xce\x32\x4c\xe6\x2e\x39\x1d\xa1\x2c\x97\x0f\x19\x6c\x2f\xae\x5b\x8a\x50\x9c\xbc\x8f\x69\x78\xbb\x89\x08\xed\x0d\x78\x93\x8a\xc4\xef\x0d\xe4\xe1\x4b\x94\x1d\xcb\x1a\xac\x00\xe6\x06\x3d\x99\xb9\x70\xcc\x5c\x99\x4e\x01\x26\xe4\x59\xda\xb8\xe0\x44\x39\x80\x19\x48\x60\x9a\x2b\x79\x7c\xaa\xa2\x1c\x8a\xa8\x67\x46\x6d\x26\x8b\x99\xb4\x02\x94\x2f\x7d\xb5\x35\xdc\xc0\x78\xad\xbd\x15\x00\x42\xec\xb9\x45\xe7\xa0\xcf\x59\xaf\x3b\x64\x83\x86\x92\xb7\x41\x8a\x98\x97\x85\x48\xae\xf4\x49\x6f\x00\xc4\xd8\x3f\xc3\x18\x47\x00\xdd\xc3\x65\xc2\x4c\x42\x66\xe7\xdd\x1c\xbd\xf9\xe5\xa7\xce\x9b\x77\xff\xe8\xbc\xe9\xbc\x39\xfe\xe9\x7f\x6e\x8e\x18\xc7\xdc\x1c\xfd\xf4\xfa\xf5\x9b\x93\x68\xfa\xcb\xc9\xc9\xf1\xbb\xff\xa9\xe6\xc5\xb1\xfd\x36\x71\x3d\xd0\x7d\x88\x92\xe6\x43\xd2\x55\x5d\xca\x5b\xc9\xa1\xc6\x38\xe4\x91\x56\x36\x7a\x39\xf1\xd2\xce\x92\xf3\x55\x55\xa0\x90\xec\x83\x0e\x0a\x09\xe1\xb7\x81\x3b\x1c\xc7\xac\xb3\x14\xfd\x5b\xac\x49\x3c\x2b\x4d\x68\xba\xca\x33\x1c\x21\x3e\x05\x7c\x92\xb8\xfe\x6e\x1e\x74\x5b\x67\x6f\x33\x9a\xb7\x76\xf8\x5a\xba\x7c\xfc\xa9\x16\x1c\x35\x68\xe2\x76\x1e\x5d\xfb\x18\xa1\xfa\x55\x8c\x5a\xd6\x86\xcb\xb2\x01\x8d\x64\xec\xa2\x08\x16\x97\xe2\x40\x09\x4c\xb5\x6e\x5f\xb1\xe5\x5f\x0a\x56\x4c\xc0\x98\x1e\x7f\x60\x8d\xf9\xea\xcf\xb8\x4c\x2d\xd6\xfd\xa0\x0c\xa7\xbc\x12\xfd\xb0\x49\x56\xb0\xbd\x7d\xa2\xb2\x44\x81\x68\x29\x5a\xe4\x52\xd1\x3b\x67\x7c\x79\x7e\x9f\xa3\x94\xc0\xf8\x9c\xe4\x38\x7f\x18\xed\x5d\x0e\x6d\x10\xad\x51\xbf\xf6\x5c\xbb\x01\x1e\xe2\xd7\x26\x8a\xa3\x7e\x9b\x2d\x09\xb0\x49\x54\x47\xfd\x0c\xde\x2b\x12\x96\x14\x52\x97\x89\xa7\x5b\xf4\x90\x81\x14\xc5\x42\xa9\x2e\x70\xc2\x4c\x14\xc8\x27\x9a\xce\xa4\xf0\xe8\x48\x31\x54\x64\x7a\xe1\xfc\xd4\x23\xaf\x40\x9f\xe6\xec\x7f\x22\x85\x23\xb7\x00\xbb\x14\x65\x7d\x9a\xf3\x2f\x0d\xb3\xbc\x0b\x29\x5a\x46\xa3\xac\x84\x90\x12\x91\x49\x67\x22\x84\x0c\x1b\xaa\x54\x49\x6a\xc4\x3d\xa1\x66\x0b\xa2\xe1\x0c\xf4\x08\x63\x68\x39\x64\x56\x28\x01\x09\x10\xdc\x16\x9c\x22\x40\x28\x09\xb8\x3d\x63\x85\x21\x29\x45\x53\x83\x50\x1e\x70\x12\x14\x37\xe7\x45\x09\x33\x8c\x50\x12\xc3\x10\x45\x20\x5a\x71\xa4\xa1\x4a\x96\xcb\x6c\x52\x94\xce\x11\x48\xb8\x51\xda\x96\x3c\xed\x57\x84\xf8\x6d\x3e\x5f\x1b\xc8\x74\xf1\x6b\x29\xd9\xc5\xaf\x31\xa8\x57\x56\x6c\x13\xdc\x33\x51\x6e\x56\x09\x7a\xed\x56\x03\x6c\x17\xf4\x53\xbf\x8d\x83\x7f\x26\x46\x9b\x29\xdd\x36\xa3\x6d\x5b\xb3\x39\xac\xaf\x7e\x36\x25\xa9\x29\x48\x3d\xa6\x92\x95\x1a\xaa\xa6\x14\x0b\xa3\xf8\xd8\xa7\x1e\x6b\x1a\xee\xf9\x95\x64\xbd\xfd\x41\x21\x1e\x14\xe2\x2e\xa4\x38\x28\xc4\x83\x42\x2c\x7f\x07\x85\xe8\xc1\xe8\x6b\x29\xc4\x3d\x05\xec\x3e\xfc\xd9\x75\x6f\x4e\xb5\x12\xd0\x9c\xda\x7d\xc7\x31\xd5\xf2\xd7\x66\x11\xb4\xa5\x68\x0b\x5e\x68\x64\xf0\x40\x43\xdc\x4f\x3f\x37\x8d\x1b\x6e\x3b\x19\xdb\x6b\xf6\x2a\x62\x02\x6c\x65\x5b\xde\x57\x02\xea\x24\x43\xcb\xbd\x52\x75\xee\xe1\xb0\x59\xfa\x02\x37\x4b\xf9\xc6\x96\x98\x19\xcd\x9c\xec\x80\x91\xa8\x3c\x45\x7b\xdd\x4e\x65\x56\xea\xce\xf1\x7b\x9a\xe2\x39\x26\x30\x47\xd2\xda\xde\x36\x7e\xef\x0a\xda\xcb\xfb\x5d\x87\x78\xfd\x21\x5e\x7f\x88\xd7\x1f\xe2\xf5\x2f\x3d\x5e\x7f\x70\xb5\xad\xbf\x83\xab\x5d\xfc\x0e\xae\xf6\xc1\xd5\x2e\x7f\x07\x57\xdb\x83\xd1\x21\xf6\x7c\x88\x3d\xfb\x7f\x06\xf5\xab\xed\x85\x45\x16\xe3\x8c\x2b\x04\x9e\x87\xa0\x1c\x8e\x5c\xa5\x4b\xa6\x4c\x3a\xfc\xe4\x96\xfe\x85\x53\xf4\xb4\xdf\x6d\x3c\x49\x08\x0e\x5a\xf9\xa0\x95\x0f\x5a\xb9\xf2\x3b\x68\x65\x0f\xca\x07\xad\xbc\x5d\xcd\xbd\x04\xc0\x0f\x57\x08\x0e\x57\x08\x0e\x57\x08\x2c\x95\x0f\x57\x08\x0e\x57\x08\x8a\xdf\xb3\x5d\x21\xd8\x7a\xd3\x4b\xe4\x4c\x18\x3f\x24\x56\x39\xe4\x16\x98\x06\xb1\x65\xfa\x03\x06\x45\x99\x6b\xa6\xac\x34\x64\x29\x47\x47\xb0\x35\xff\x17\xce\xc0\x14\xe5\x30\xe0\x09\x11\x98\xec\x7c\xd3\xf9\x87\x7b\x8c\x5b\xa4\x0c\x51\xaf\x8e\x34\xed\xec\xa9\xd7\x50\xf8\xd4\x17\x3b\x63\x62\x0f\x4f\x0a\x4f\x73\x20\xc2\x3c\x5f\x23\xc6\x0c\xc2\xcb\xd3\xcb\xb1\x75\xb7\xc5\x2b\x52\x78\x61\x03\x96\x9c\x66\x85\x2c\x67\x78\x38\x7b\xb1\xd1\xca\x99\x97\x91\x35\x31\xbf\xd9\x99\x6a\xe3\x47\x6c\x40\x9b\x54\x3a\x5a\x3e\x15\x18\x32\x07\x19\x45\xfd\x5a\x0a\x91\xf2\xcd\x61\x95\x18\x44\x7d\x09\x29\x11\xb6\x58\x76\x02\xfe\xf5\x07\xfb\xc2\xe0\xa3\xe8\xb3\xca\xf9\xc1\xbf\x3e\x69\xae\x94\x88\x64\xb6\x74\x29\xe2\xb3\x33\x63\x8a\x56\x6c\x4b\x9a\xd2\x25\x99\x37\x6f\x4a\xb5\xbc\x9e\x3a\xa5\x8e\x96\xa4\x7f\x91\x3d\xa5\x52\x63\xe3\x04\x2a\x6c\xf1\x4a\x98\x5b\x25\x51\x89\x48\xa6\x32\xb8\x00\x7d\x94\xe0\x90\x15\x45\xff\x1d\xb2\xa2\x18\xbf\x43\x6e\x05\xd7\xef\x90\x5b\x61\xa3\x51\x1c\xb2\xa2\xbc\xd4\x95\xfb\xd2\xa3\xa4\x7b\x97\x2c\x87\x68\xa8\xf5\x77\x10\xb8\x9b\x21\xfe\x4d\x0b\xdc\x17\x9c\xcc\xa6\x41\x5e\xe6\xf4\xc3\x9f\x91\xeb\x0c\x66\x5b\xd9\xde\x74\x1e\xb8\x79\x2d\x6c\x32\x4d\x1e\x36\x6a\xf1\x9c\x91\xff\x14\xb0\x7f\x9a\x3d\xe0\x03\x49\xc9\x4d\x78\xe3\xe0\xaa\x6e\xe2\xaa\xfe\x49\x33\xc3\x47\xfd\x93\x66\x76\xef\xf4\x4f\x91\xf6\xba\xee\x97\xfe\x5f\x9a\xd9\x1d\xd2\xa2\xa0\xee\x89\x6a\xbd\x56\x5d\x50\x55\xe4\xf6\x3d\xb9\xce\x4f\xd7\xe8\x9a\xdc\x12\x7a\x47\x3e\xf0\x4d\xfd\xe2\xad\xd9\xc3\x2b\x08\xce\xaa\x7b\x7c\x49\xdb\x63\x06\x6f\xfe\xba\x80\x5f\x3c\x34\x88\xcb\x66\x0d\xd7\xac\x86\x74\x94\xab\x35\xdc\x57\x01\x76\x42\x5b\xb0\x3f\x99\x4f\x98\x15\xe4\x45\xdc\xbb\xe5\x50\xbc\xee\xf7\xda\xdb\xc9\x74\x95\x66\xae\x6d\x90\x9d\x7a\x71\xaa\xe1\x03\x71\x00\x88\xb2\x30\x59\xc2\xd4\x76\x02\xbe\x01\x6e\xb1\xd3\x61\xc1\xdc\x37\xaa\xf2\x69\xc8\xb7\x4f\x9f\x0e\x7a\x16\xd3\xbb\x6a\x3a\x68\xf6\xcd\x99\x0f\x5a\x14\x3a\x12\x42\xb3\x42\x67\x42\xe8\xb2\xd0\x9a\x10\x5a\xc7\xa4\xaa\x4f\xf4\x62\xc7\xb3\x39\x5b\x2a\x14\x18\x27\x0b\xb8\x89\x56\xd1\x14\xc3\xff\xae\xea\x0b\xf5\xc8\x6d\x56\x3e\x72\xbb\x66\xae\x2a\xe4\x27\xfb\x43\x3e\x35\x72\x39\x95\x5b\x09\xdf\x91\xce\x61\x73\x38\x82\xcb\x24\xc6\x64\x2e\x38\x61\xdf\x42\xc7\xfb\xe4\x5a\x93\x25\xcd\x1a\x7b\x36\xe7\x77\x16\x56\xed\x5e\x7d\x2d\xc4\xc6\x4f\xaf\x7f\xb6\x56\x61\x54\x1c\xdb\x37\x96\xda\x8c\x12\x00\x44\x56\xee\xfb\x4d\x01\xd0\x16\xb9\xbd\x02\x4e\x66\xf8\xbe\x01\x79\x0f\x10\x18\xe6\x78\x8d\x3e\xb0\x51\xe0\x25\xba\x5a\x3d\x07\xbd\xdf\xbe\x7b\xed\xa8\x52\x60\xfc\xce\x5a\x01\x47\xf1\x33\xa3\xda\x8c\xe9\x1b\x2b\x5b\x64\x72\x61\x0d\x9f\x50\xdd\x6a\x68\xbe\x79\xdd\x88\xa7\xa5\xdc\xeb\x26\xba\x1e\xf6\x33\x25\xc2\x93\x6a\x44\x94\x66\x09\x24\x86\x42\x14\x9f\xec\xfa\x50\x95\xd9\xd4\xe1\x39\x2f\xb3\x6b\x43\xbd\xac\xae\x0c\x4d\x24\xaa\xba\x50\x2b\x7d\x39\xaa\xf0\xfb\xd2\x63\x5b\x3f\x09\xb7\xb9\x5b\xf5\xb4\x8f\xc8\x7d\x3b\xcf\xc1\x89\xd5\xbb\x6f\x73\x01\x46\x4b\x4c\x46\xb9\x5b\x62\x9a\x17\xad\x59\x6d\xcc\x63\xde\x78\x8d\xc4\x63\x2f\x8e\x60\x77\x21\x03\xf9\x6b\xf0\x4f\xa4\xa8\x3d\xb0\x45\x31\xb5\xbe\x71\x1a\xe1\x14\xf9\xae\x97\x1b\x63\xee\xaa\xca\xc5\x11\x15\x18\xde\x22\x71\x5e\x6a\x49\x09\x76\x5f\x74\x28\x48\x30\xa5\xf9\xe2\x89\x28\x80\x1d\x37\xb8\x79\x88\x7e\xe5\xa1\x8d\x0d\x27\x2d\x0d\xea\x93\x98\xa5\x83\x56\xf4\x2e\x91\x00\xbd\x81\x22\xfa\xf9\x70\x34\x38\xed\x4b\xda\x3b\xe8\xdd\x44\x4c\x66\x8e\xf5\xba\x6d\x70\xb8\x26\xf8\xcf\x15\x12\x6f\xdd\xf4\xba\x9b\xe0\x50\x9a\x28\xbb\x1b\x20\x0e\x10\x9a\x01\xf2\xd3\xdb\x6d\x0c\x0c\xcb\xa9\xc3\xe7\x34\x30\x78\x26\x84\x28\xa5\x49\x4c\xe5\x9b\x6a\xf2\x0f\xc7\x79\x22\x55\x68\x35\x31\x38\xb0\x6e\x4a\x93\x0b\x5a\x7b\x5e\xcd\x28\xb4\x18\x19\x06\x22\x35\x23\x43\x2f\xb5\x5b\x19\x3e\x2b\x62\xdb\x07\xd7\xbe\x67\x8f\xba\x22\x06\x3c\x6f\xc3\x5b\xa6\xdd\x3f\x40\xcf\x20\x81\x78\xf9\x8d\x03\x14\x8b\x57\xc2\x6d\x0a\x0a\x77\x45\x23\x85\xa2\xc8\xbe\x21\x19\x46\xb1\x0f\x98\x3e\x00\x18\x86\x01\x3f\xa6\xcc\x08\x69\x11\x1b\x85\xc8\x28\xcc\x53\xf3\xe7\xcd\xd7\x41\x68\xe4\x3b\x3e\xb5\x81\x31\xc6\x46\x0d\xe2\x32\x41\x89\x1a\x01\x25\xbc\x13\x3d\x6b\x87\xda\x70\x14\xb6\xd7\xdf\xc9\x64\x7b\x52\xc9\x97\xa4\x2b\xb2\x2f\xc1\x37\x60\xb0\x1c\x72\x4f\x2f\xab\x8b\x3d\x03\x8b\xaa\xd4\xd3\x0b\x0f\x42\xef\x65\x09\xbd\xfa\x94\xfb\xc7\xd7\xb0\x56\x9e\x48\x72\xcc\x70\x9c\x23\x79\x22\x49\x65\x5d\xca\xe9\x77\x24\x42\x2a\x84\x12\xf3\xf5\x41\x50\x65\xdf\x56\x75\x96\x86\x4e\xa3\xba\x4d\xac\x77\xeb\xc6\x59\x1a\x5e\x9e\x9e\xed\xd0\xf3\xf6\xad\xb3\x34\xdc\x25\x44\xbd\x6b\x88\x1b\x27\x83\x94\x3a\x5f\xb7\xa8\x34\x7f\x52\x75\x02\xc3\xb0\x30\x2b\x30\x49\x56\xb9\xd0\x29\x61\x9e\x3a\x4e\xe6\x8b\x12\x9b\x36\x39\x0d\xc3\x81\x02\xd5\x63\xa0\xaa\x2a\xa5\x56\xa1\xae\x57\xea\xe8\x54\x95\x4b\xad\xc6\xcd\x86\xe7\xf2\x37\x57\x32\x7b\x3d\x01\x61\x9e\x8a\xad\x0e\xc6\xb8\x9d\x28\xbe\x88\xa7\x9a\x57\xa9\x70\x66\x99\x16\x3b\x3d\xeb\x81\xb3\x7e\xef\xab\x2a\xa1\xdd\xaf\x03\x54\x92\xef\x55\x58\x63\x94\xa0\xd0\x20\x46\xa1\xc9\x58\x01\xa3\x42\x9d\x76\x1b\xea\x2e\x18\x86\x93\x02\xc2\x84\x83\xd8\xb7\x68\x55\xe7\x1b\x27\x4b\x48\xe0\x1c\x45\x13\x31\x99\x4f\xa7\x72\x54\x5a\xc1\xc9\x2a\x89\x60\xee\x3d\x32\xe7\xf5\x08\x00\xa7\x0f\x7e\x06\x7c\xb3\x07\x12\x4e\x62\x3a\xc7\xee\x34\x8d\x6d\xcf\x80\xb6\x3c\xb8\x1d\xa2\x34\x9f\xe1\xd8\x15\xab\x34\xfb\x6c\x3e\x36\x7b\x8b\x1e\xf6\x04\x2d\x8c\x31\x22\xf9\x24\xcb\x7c\x97\x3f\x1b\xa7\x8d\xa0\xfc\x19\xa6\x8d\x69\xa7\x74\x06\x43\x34\x59\xe6\xab\x46\x74\x1b\xae\x0a\x33\x31\x8c\x19\x28\x11\x09\x9d\x70\xe0\x6b\xd8\x4c\x86\x06\xb8\xc9\x34\x9d\xe4\x29\x0c\x6f\x31\x99\x4f\x08\x25\x93\x8c\x40\xdf\x0d\xe8\x46\xda\x02\x71\xe2\x6b\x22\x5e\x5a\x9f\x84\x8b\x15\xb9\x9d\x64\xf8\x2f\xdf\xec\xb7\xc2\x54\xc6\x0e\x26\x77\x10\xe7\x93\x19\x4d\x27\xf2\xe6\xd7\xae\xc8\x46\x52\x6f\x6c\x0e\xd8\x83\x70\x8a\xe6\x38\xcb\x53\xd7\xe5\x87\xfd\xf0\xd7\x12\xce\xd1\x24\x49\xd1\x0c\xdf\x37\xe2\xea\x5f\x56\x12\xd4\x2a\x8e\x27\x19\x0a\x53\xd4\xcc\x01\x7e\x78\x52\x2e\xe6\x10\x13\x94\x66\x93\x42\xc6\xaf\xad\xba\x76\x47\xe8\xec\x9f\x29\x8d\x63\xf4\x44\xf0\x17\x34\xcb\xf7\x06\x59\xd7\xa7\x4f\x41\x16\x82\xf7\x0d\x36\x24\x38\x42\x49\x4c\x1f\xf6\x04\x8f\x26\xb3\x18\xdd\x4f\x78\x0e\xde\xbd\x81\x44\x64\x9d\xdd\xe1\x3c\x5c\xec\x09\xe2\x7c\x9a\xec\x01\x52\xec\xcd\x5c\xbc\x17\x21\xa0\x31\x7f\x4c\xe7\x13\x7e\x13\x7e\xc7\xb1\x33\x7e\x17\xb3\xb3\x2f\x88\x62\xca\xf7\x07\x13\x67\x39\xa6\xcf\xa2\xc1\xb3\x1c\xc6\xf1\x84\xf7\xb7\xab\x9e\x51\xc0\x92\x94\x36\x18\x43\x4d\xc3\x5f\xae\x62\x75\x8d\xc0\xd5\x78\xc7\x81\x4b\x5d\xbb\xcb\x90\xa3\x94\x26\x7c\xb2\x9f\xcb\x9e\xdf\xc9\x20\xa4\x11\x4a\x68\x84\x67\xdf\x04\xb6\x59\x8a\xe9\xfa\x9b\xc0\xf4\x76\x35\x45\xcf\x80\x28\x5d\x67\x93\x25\x5a\xd2\xf4\x61\x12\xe3\x25\xde\xd5\x7a\x59\x65\xcc\xac\xc2\x6b\x1c\x23\xe9\x90\x4a\x53\x60\x67\x11\x50\x9a\x59\x89\xeb\x50\xea\x26\x88\xa6\x68\x4a\x69\x3e\x91\x1a\xf5\x0e\xe7\x8b\x09\x5d\x37\x63\xe9\x07\xca\x1c\x80\x49\x8b\x9b\xb6\x7b\x75\x38\x13\x9a\xe6\x13\x9e\x31\xaa\x95\x93\xd8\x26\xa5\xd9\x06\x99\x1e\xf9\xf1\x96\xc6\x5a\x2d\xfd\x14\xf5\x43\xb5\x40\xd1\xce\x20\x79\x8e\xb2\x49\x82\xd2\x09\x13\x58\xfb\x84\xce\xcd\x08\x18\xe6\x13\x11\x26\xdc\x8f\xdb\xaf\x3c\xb6\x04\xa5\x98\x46\x38\xe4\xbe\xe5\x64\x1e\xd3\x29\x8c\x27\x98\xcc\xe8\x24\x7b\x20\xd5\x98\x97\xbd\x33\xeb\xc2\x72\x46\xd2\xca\x6b\x76\x1a\x32\xfe\x58\x1a\x6f\x62\x44\xd3\xb2\x55\x18\xa2\x2c\x9b\xad\x62\x10\xd2\x65\x12\x23\x75\x36\xc9\x11\xc4\x55\x3f\xdf\x69\x3e\x1b\x62\x5b\x0d\x72\xe3\xfb\x89\xb5\x08\xb9\x16\x0c\xe7\xf2\xf9\x12\x26\x8e\xe8\x37\x0e\x4a\x09\x18\x08\x61\xae\x8a\xc5\x19\xbb\x6a\x9d\xec\x21\xcb\xd1\x92\xd5\x31\xb6\x8f\xac\x90\x02\x65\x65\x83\x9b\xa3\xc7\xc7\xce\x98\xde\x22\xf2\xe5\x8b\xba\x01\x29\x3d\xf1\x20\x89\x57\x73\x4c\xaa\x1d\xdd\x90\x02\xd7\xd2\x0c\x96\x70\x4f\xc0\x7f\x02\x01\xe3\xb1\x24\xc9\xcd\x51\x4c\xe7\x22\x5b\xd4\xcd\x91\xec\xf1\xac\x68\x79\x41\xe7\x17\xac\x88\x75\xff\x4a\x6f\x04\x13\x1c\x06\xcc\x2a\xce\x58\xab\xc7\xc7\xce\x69\x82\xc3\x4f\xec\xef\x2f\x5f\x5e\xdd\x90\xc7\xc7\x00\xe0\x19\x20\x08\x74\x4e\x43\x7c\xb9\x8a\x73\x9c\xd0\x08\xdc\x1c\x89\x73\x06\x47\xe0\xcb\x17\x03\x5a\x88\x83\xa5\xac\xa4\xe0\x95\xcd\x0a\x88\x88\x44\x95\x76\x0c\x8b\x14\xcd\x52\x94\x2d\x72\xbc\x44\xc5\x08\x18\x36\x43\xf1\x7d\x8c\x97\xc8\x8e\x7e\xb6\x9a\x16\xfc\x1f\x44\x28\x86\x0f\xda\x58\x46\x5a\x61\x97\x95\x71\x2c\x4c\x08\x93\xa2\xeb\xf0\x16\xa5\x13\x18\xfd\x7b\x95\xe5\x76\x1c\x58\x85\x53\x5e\x6e\xc7\x65\x95\xa1\x94\x71\x8f\xd1\xfa\x3a\x43\x69\x1f\xba\xd0\x67\xea\x18\xe6\x28\xb8\x45\x0f\x41\x02\xf3\x85\x68\x7a\xbc\xca\xd2\xe3\x98\x86\x30\x3e\x46\x79\x78\xcc\xb9\x03\xa5\xf9\x31\xeb\xa0\x73\x8b\x1e\xaa\x90\x42\x1c\x88\x70\x49\xd1\xf3\x88\xb3\x6a\x2f\x42\x24\xc7\x33\x8c\xd2\x7a\xef\x21\x0e\xd6\xcb\x65\xc0\x56\x93\x68\xf5\x6b\x91\xb7\x8e\x57\xd5\x66\xff\xf3\x72\xd9\xa5\x4b\x88\x09\xbf\xb1\x5b\x9f\x75\x06\x27\xe2\x15\x8a\xfe\x8b\x26\xb2\x63\x3e\xf3\x71\x86\x5a\x35\x76\x20\xaf\x71\x8f\x89\x5c\xc9\xea\x1e\x04\xcb\x95\xa4\x23\x59\x36\x6d\x85\xa8\x05\x48\x33\xb2\x95\x89\xe2\x06\x52\x90\x23\x02\x49\xc9\x67\x63\xfe\xa7\xd6\x56\x8e\xee\x8c\xb1\x50\xb9\xe4\x4c\x70\xf1\x54\x9b\xbe\x3e\x25\xc8\x43\xa6\x4f\x49\x72\x95\xe4\x78\x89\xff\x12\x9b\x49\x0e\x90\x8b\x24\x09\xa8\x56\x4f\x2e\xa6\x4a\xeb\xea\x62\xd6\xfa\xe9\xd3\xdf\x20\xce\x3f\xd0\x74\x24\x02\xbb\xe7\xc9\x10\xc1\x88\x29\x9f\xcc\xd5\x27\xa1\xc1\x1d\xc4\x79\x30\xa3\x69\x20\xc3\xc1\x01\x4a\x82\x54\xb5\x93\x38\x78\x20\x7b\xf0\x91\x95\x3f\xa6\x30\x59\x9c\x93\x28\xa1\x98\xe4\xa7\x51\xc4\xa5\x01\xb8\x39\x7a\x5d\x45\x46\x21\x30\x67\x0d\x02\x24\x5b\x04\x30\x8a\x94\x74\x01\x27\xba\xe8\x15\xad\x74\xc1\xe3\xeb\xd1\x90\x3f\x46\x87\x7c\x94\xff\x62\x88\x73\x6b\x11\xfc\x80\x49\x84\xee\x5f\x81\x1f\x70\x8e\x96\xe0\xe4\x9f\x2e\xb0\xf2\x73\x06\xbe\x7c\x91\xa3\x16\x2d\xbf\x7c\x79\xf5\xf8\xc8\xc9\xf1\x08\x34\xa8\xb7\xaf\xc0\x0f\x6b\x70\xf2\x4f\x09\x97\x31\xdc\xe3\x23\xf8\xe1\x96\xff\x4b\xf0\x22\xab\x20\xbe\xe3\x19\x40\x7f\xb2\xc2\x9b\x23\x21\xd6\x34\xa0\x8a\xd8\x5f\xe4\x87\x3f\xca\x71\xb9\x27\xe3\x34\x8a\xd4\xb3\xdb\x23\x1e\x46\xcf\xc6\x74\x18\x09\xc5\xe6\xe2\x0e\x46\x79\x24\x1b\x05\x22\xf8\x9e\x05\x39\x0d\x52\xd9\x4e\x89\x7b\x0f\x68\x0f\x7b\xc8\x33\x78\x03\x69\xc9\x8d\x08\xcc\x3f\x72\x3b\xae\x47\x66\x74\xf4\x40\x9c\x6b\x4f\xda\x80\x81\xb2\x01\x03\x66\x03\x06\xc2\x06\x0c\x98\x0d\x18\x30\x1b\x50\x22\xd7\xd8\x8b\x5b\x3b\x0a\x1f\x28\x88\x10\xe7\xca\x08\xc5\x28\x47\x01\x53\x93\x74\x95\x4b\xe8\x57\xbc\x4a\x97\xd7\xe8\xf2\x0a\x63\x51\x5e\xd1\x76\x59\x8c\x50\xc2\xdb\x7a\x91\x1d\xb1\x6a\x0c\x82\x03\xcd\x12\xa0\x8c\xfc\x04\x3c\x8c\x24\x5b\xf7\xc4\xb7\x1e\xfb\x54\xad\xce\xbe\x05\x32\x4c\x54\x48\x3e\x5e\x73\x20\x3e\xba\xe5\x1f\xdf\x92\xb7\x48\xf6\x84\x46\xd3\x28\x88\xa4\xee\x58\x11\x7c\x9c\x93\x40\x93\xa7\xc7\xef\xbb\x41\xc5\x3e\xb3\xca\x6c\x06\x28\x98\x46\x16\x25\xc9\x3c\x92\xfd\x74\xc1\x20\xa9\x3e\x9c\xea\x41\xc9\x9f\x64\xf1\x90\x31\xbd\xe8\xd1\x33\x41\xc2\xcb\x6b\x18\x17\x32\x94\x84\x30\x11\xed\xd7\x31\xe4\x38\x4b\x69\xf1\x39\x86\xc4\x6a\x11\xa8\xa6\x72\x37\x2e\x50\xbb\x71\xa6\x68\xbb\x14\xa5\x3d\x59\x58\x35\xaa\xd8\xb4\x4c\xd3\x40\xed\xbe\x05\x84\x12\xce\x70\x12\xc8\xe0\xfd\x70\x2c\x8b\xfa\x94\x30\x26\xb3\x00\x58\xa7\xb3\xaa\x8a\xfc\x3c\xfc\x60\x68\x49\xb3\x41\xfc\x56\x2e\x08\x5e\xf7\xe2\xed\xd5\xca\x5e\x0f\xdd\xe7\x81\xb4\xbe\x95\x62\xe1\x95\x95\xf0\x90\xb9\x23\x6b\x16\x70\x13\x23\xae\xd3\x99\x8e\xa9\x66\xf1\x79\x2c\x0a\xad\xcd\xd5\x1a\xa5\x31\x7c\xb0\x34\xad\x72\x89\x3c\xee\x5b\xea\x26\x7e\x42\x87\x8f\xa5\xaa\x5b\xa4\xad\x21\x12\xac\xb5\x35\x35\xea\x23\x14\xc0\x4a\xcb\xb6\x0d\xb7\xff\xa7\x52\x49\x62\xcd\x1c\x20\x1b\x41\xb6\xe9\xa2\x80\x65\x52\xc8\x64\xa6\x25\xbc\xe7\x0b\x2f\x0b\xb2\x75\x28\xb4\xba\x9c\xf6\x4b\x78\xdf\x67\x05\xa3\x75\xc8\x95\x6a\x85\x0b\x0b\x37\x30\xd8\x80\xe0\x76\x87\xb1\x5e\x73\xef\xd3\xb3\x8f\x29\x52\xd8\xba\x67\xa8\xa1\x97\x0a\x00\x73\x5a\xaa\x53\x03\x34\x9d\x50\xe4\x02\xfb\x46\x28\x25\x15\xde\xd6\x84\x32\xdb\xb7\xa7\xd3\xb7\xc5\x4f\xcf\x4f\xa5\xdb\xd5\x14\x7d\x63\x44\xfa\x1a\x8b\x2e\x84\x79\x1e\x1f\x08\xd5\x9a\x50\x49\x4a\x97\x28\x5f\xa0\x55\x76\x20\x56\x23\xb1\xe4\xd9\x80\x03\xa5\x0a\x4a\xb9\x49\xa6\xcc\x6d\x9c\x04\x09\xa5\x71\x43\x08\xa0\x08\x66\xf4\x06\x03\x4a\x63\x9f\xc7\x7f\x73\x24\x6e\x36\x17\x2e\x3d\x03\xd1\x19\xb1\x6f\xdc\xb7\x7f\x05\x6e\x8e\x10\x89\x2a\xe5\xe7\x1c\xf9\x23\x50\xf8\xf4\x86\x41\x24\x9c\xf0\x20\xcb\x61\x8e\xc3\x66\x54\x79\x35\xd3\x25\xf7\x60\xfc\xc8\x5b\x7e\xf1\xf6\x1c\x3d\x10\xb8\x6c\xd1\x75\x57\xd4\xdb\x4f\xdf\xdc\x53\x56\xbb\x48\x01\xdf\x45\x2a\x5d\x32\x02\xf3\x33\x59\x34\x62\x25\x35\x8f\x43\x10\x2b\xd8\x78\x9e\x79\xb3\xa7\x9f\x6d\xe0\x99\x6e\xe6\x10\xb7\xc5\x77\x40\xa3\xaf\xc3\x93\x0c\x49\x11\x13\x0a\xf8\x81\xcc\x20\xc3\x7f\x21\xe5\x67\xd2\x48\x4c\xfd\x19\x2b\x19\xe1\xbf\x50\xd5\xc2\x67\xfe\xb8\x6d\x6a\xcc\x65\x6a\x95\x62\x1a\xa2\x9d\x3e\xbf\x08\x25\xe7\x4a\xe2\xfb\xca\xd6\xc8\x18\xbf\xd9\x8c\x93\xa1\xdc\x1f\x2a\x44\x46\xf9\xe7\x1f\x6e\xdc\x65\x54\xcc\x82\xbb\x60\x53\x2d\x72\x28\x28\x62\x76\x54\x59\x6c\xe2\x10\xb9\x72\x76\xf8\xab\xd3\x92\xa2\xe2\xd6\xac\x0a\x3e\x8e\x58\x89\x12\x76\xfc\x7f\x0b\x9a\xe5\x01\x3f\x0d\xe5\xdf\xac\x82\x49\x62\x86\x81\xda\x79\x7b\xa6\x6a\x38\x4f\x86\xf2\x2c\xaa\x25\xe8\xcf\xc3\xc7\xa2\xb4\xa0\x77\xd9\xc0\xeb\x98\x57\x9a\x92\x55\x1c\xbb\xe3\x99\x7b\xdf\x16\xd3\x43\x93\x8b\x30\x19\x22\x82\xee\x2e\xe1\xfd\x10\xe5\xe9\xc3\x19\x5d\x91\x5c\xc4\xac\x2b\x7d\x44\x8b\x90\x61\x4d\xd0\x5d\xc0\xfc\xdd\x94\xd5\x0e\x42\x56\x5d\x05\x20\xad\xb0\x1a\x3a\xd7\x62\xe4\xb6\xfe\xf4\x98\x77\x51\xdd\x03\x52\x84\x29\x2f\x69\x84\x2c\x13\x26\xc3\x9c\x4b\x1a\x95\xe2\xb5\x6c\xe0\x9d\xb0\x4a\xd3\xfa\x84\x95\x55\xeb\xbb\xa4\x9f\x68\x96\x9f\x32\x8e\x75\x6f\x92\x86\x58\x84\x4b\xcb\x54\xf5\xba\xfc\x2f\xee\x1d\x1d\x76\xd8\x5e\xcc\x0e\x5b\xab\xad\xd0\x17\x19\xdb\xdb\x38\xf4\xa9\x54\xc0\x3a\x86\xc4\x0c\xd2\x8a\x18\xaf\x51\x99\xb9\xc7\x30\xc1\x7a\x65\xc6\x92\xa7\x83\x5e\x51\xf9\xb9\x76\x0c\xcb\xf6\xa5\x0a\x67\x2d\x1b\xed\x8c\xdd\xac\x39\xa1\x36\x8b\xde\xbc\x9d\x71\xfd\xbc\x9b\xdd\x4a\x42\x98\x68\xeb\x9f\xab\xd0\x10\x26\xe3\x07\x8b\xa9\xc8\xa6\x1e\x93\x59\x0a\xf5\xe9\xe9\xb1\x0f\xd5\xc9\xe9\x5c\x8e\xaf\x2b\x4b\xf4\x72\x7c\x0d\x5e\x9b\x74\x2d\x6e\xe9\x04\xcb\x7c\xa5\x42\x9e\xac\x61\x7d\x9d\x9b\x4b\x9e\xd5\xfa\x84\x60\x34\xa4\x74\x59\xef\x46\x95\xd8\xf6\x4e\x8d\x2e\x83\x05\x82\x51\x4a\xc5\x0e\x86\xe8\xbb\x84\xea\xc4\xa1\x04\x16\x12\x1c\x10\x94\x97\x9b\x7c\x4d\x9c\x21\x23\xf7\x7e\x13\x74\x0e\x73\x74\x07\x1f\x2a\x46\xe6\x47\xf1\xb5\x30\x43\x4b\x0e\xd1\x2d\x55\xc5\x0b\xa2\x4e\x4a\x57\xb9\xda\xb5\x65\x2a\x51\x1d\x1a\x79\xdd\xe1\xff\x1d\xbf\x16\xd5\xe6\x77\x9e\xbe\xc0\x97\x3f\xec\x9c\xf3\x3d\xc6\xf8\xab\xad\x7d\x51\xfd\x43\x70\xfe\x10\x9c\x7f\x39\x61\xe7\x43\x70\xfe\x10\x9c\x3f\x04\xe7\x0f\xc1\xf9\x97\x4f\xac\x43\x70\xbe\x4d\x70\x5e\x05\xc1\x82\x28\xa5\x09\xa3\x99\x8a\x72\x88\x5c\x3c\x22\x0c\xf6\xc5\xd6\xa2\x7d\xd8\xcc\xd6\x5d\x71\x5b\xeb\x46\x9d\x78\x8c\xd0\x80\x46\xbd\x99\xa7\xc7\x80\xae\xb3\x60\x71\x17\xd0\xd9\x2c\xa6\x50\x45\x98\x46\x29\xa6\x6b\xd5\x4a\x8b\xd0\xc9\x58\x49\x8b\x18\x9d\x1a\x75\x95\x91\xcc\xf0\x89\x08\xd1\xd4\x02\x28\x2e\xb3\x4d\x74\x2f\xe1\x4a\x4e\x42\x7f\xaa\xd0\xd0\x19\xcf\x81\x30\x1a\x5d\xd8\x5d\x4d\xee\xee\x66\xe2\x28\x12\xb8\x39\x2a\x43\x45\xf2\x28\x5e\x74\x73\x64\x0f\x3e\xb1\x1e\x86\x2b\xf2\x71\x9a\x9c\x29\xce\x70\x70\xad\x0c\xd8\x67\x39\x0e\x33\x71\xd0\xb3\xe8\x08\xb0\x9e\xe8\x6c\xc6\x8c\xf6\x86\x10\x17\x27\x87\xc8\x4c\xcd\x63\x6d\x3c\x30\x36\xc6\x4b\xde\xed\x9b\x6a\x34\x8d\xf5\x9a\xb3\xc2\xb2\x47\xb9\x0a\x45\x18\x4f\x0f\xb3\x35\xc1\xff\xf2\xa5\x8a\x9c\xb1\x4a\x68\xce\x58\x4b\x76\x22\xd3\xf3\xc9\x91\x15\xb1\xcb\x57\x66\x1b\x98\x3d\x90\xf0\xdf\x99\x74\xeb\x2b\xcd\x4c\x8c\xe4\x3f\x55\x03\xc1\x7d\x11\x43\xc9\xc9\x0e\xeb\xba\xcc\xde\xac\xcb\x75\xd6\xd0\x5f\xc1\xfb\xad\x79\x61\x3e\x4d\x78\x60\xbd\x7e\xe3\xe2\xb1\x16\x68\x6a\x3e\xca\x6d\x36\x68\x15\x14\xfa\x16\x42\x82\xbe\x88\x99\x19\xd0\xe1\xb0\x3f\x4e\x93\x22\x74\xa3\x9d\xdb\xaa\xa1\xd6\xa2\x69\xed\x0a\x85\xdd\xd5\xf3\xdf\x6c\xb1\x54\xd6\xef\x6e\xd4\x6e\x6e\xd8\x9b\xec\xe1\xee\x86\x80\x76\x0b\x67\xb7\xd0\xa9\x93\xa7\x29\xbd\xe5\xd2\x41\x04\xec\x58\xdd\xf7\xe2\x53\x0d\x31\xd1\x40\xe4\x92\xa9\xa2\xc5\x90\xc8\x8e\x79\x57\x81\xa8\x61\xc5\xc6\x00\xc1\xda\x34\xc0\x08\xd3\xdc\x05\x03\x3a\xda\x87\xd0\xd3\x2a\xa7\x6a\x4e\xad\x2c\xd9\x64\xe6\xc4\x74\x15\xf1\x13\xcd\x4e\x72\x86\x22\x15\x65\xa0\x4d\x76\xbd\x1f\xfb\xf6\x5d\xc1\x99\xac\x0d\xff\x43\x2c\x37\x2b\x93\x88\x36\x72\xc5\x8b\x18\xae\x5e\xdb\xb9\xcf\x57\x8b\x87\x99\x1f\xb6\xbe\xef\xc6\xf7\x30\x94\x2f\xff\x52\xaf\xbb\xd5\x77\x49\x47\x04\xf2\x74\x7b\x43\x48\xe6\xa8\xb2\x4b\x6a\x6e\xc3\x1a\x35\xe5\x36\xac\xaa\xc7\x2f\x98\x06\x09\x9b\x76\x7d\x87\x49\x35\xc9\x06\x28\xed\xcb\x7d\x26\x2f\x89\x47\x3c\x89\x8c\xf3\x3e\x21\x5b\xe3\x9c\xe9\x9f\x83\xb0\x45\xff\x4a\xb2\x18\x82\xeb\x57\xf4\x20\xf8\x87\x97\x86\x69\x6e\x94\x9e\x71\x32\x8a\x91\x6a\x9a\xb1\x2e\xd6\x37\x26\x83\x2e\x1c\x38\x29\xf0\x0c\x87\x30\x47\xd9\xb3\x92\x44\x88\x98\x52\x60\x0a\xd3\x52\x8e\x1a\x80\xaa\x04\x6b\x57\x51\x91\x58\xab\x28\xa9\x5c\xd0\x51\x2e\x52\x17\xd5\xf8\xc6\xcc\x69\x28\x76\x66\xdb\x5d\x4a\x55\x9b\x61\xcf\x40\x3d\x2f\xdf\x6f\x8a\x7a\x79\x16\xe0\xd9\x50\xd7\x18\xf9\x3a\x43\x32\xe5\xf0\x90\xc6\xc8\xc9\xd1\xe9\x14\x86\x1d\xb8\xca\x17\x34\x95\xfb\x54\x96\x94\x9a\x25\x9c\xca\xb8\x9f\x5a\x2a\xb6\x60\x0a\xfe\x94\xef\xc9\x0d\x09\x00\x4c\xf0\xc7\x94\xae\x12\x95\xf2\x52\xbd\xad\x6a\xa6\xaf\x0c\x44\x1e\xdd\x9b\x22\x2b\x26\x9f\x14\xf9\x77\x42\x23\xf9\xaf\xc2\x8b\x15\x7f\x16\x57\xd4\x44\xe1\x1a\x15\x25\x29\x4a\x62\xb6\xbc\x31\x25\x25\x5a\x66\x2b\x28\x78\x86\x7f\x5c\xa3\x74\xaa\x10\x89\x65\x02\xd0\x00\xdc\xc1\x3c\x5c\x88\x7f\xce\x91\xfc\x96\x94\xdf\xc2\x14\xc1\x1c\x89\x7f\x8b\xd4\x86\xe2\xdf\xe2\x2e\xd4\x26\x63\x17\x93\xb2\x84\xc9\x86\xc8\x6c\x83\x81\x2d\x51\xab\x03\x2b\x9e\xb3\x55\x7d\x8d\x8a\x9c\xad\x35\x24\x7f\xfc\xef\x1f\xed\x7d\x39\xd9\xd8\xd1\xa1\xe0\xe8\x94\xc6\x6a\x4a\xb5\x2f\x53\x4c\x22\x4c\xe6\xf6\xce\x35\x0f\x40\xbf\xe7\x65\xfa\xeb\x36\x0c\xe5\x4d\xb1\x0e\x8f\x1a\x3b\x11\xe3\xa5\x92\x8f\x92\x18\x12\x85\x1e\xff\x5e\xbc\x55\xdf\x9a\x2c\x30\xc4\x9d\x22\x4c\x5d\xef\x0d\x86\xb8\x0e\xb8\xfe\xd9\x49\x08\x65\x90\x59\x7a\x96\x2b\x1b\x93\xb9\x77\x22\x64\x35\xfd\x99\xaa\x76\x4c\xa9\xcd\xc3\x75\x86\x4e\x43\x7c\x4a\x1e\xee\x16\x28\x45\x67\xc3\x6e\xf3\x64\x30\xba\xc0\x3b\x3b\x4a\x28\x99\x67\xc5\x62\xe1\x07\x1b\x37\x40\x6b\xd3\xce\x78\xac\x4b\x76\x37\x9f\x26\x19\xcf\x54\x5e\xfb\xfb\x58\x64\x97\xd8\x66\x1e\x60\x92\x64\xf6\xae\x45\xe6\xb7\x65\x4d\x92\x65\x48\x7d\x88\x20\x5a\x52\x52\xfe\xcd\x91\x99\xad\x62\xf5\xa5\x15\x0b\x36\xca\x60\x25\x5a\x1d\x83\x54\xd2\xc6\x06\x5b\xde\xd1\x63\x4c\x16\xd2\x14\xd1\xac\x13\xd2\xa5\xbd\x43\xd9\x8b\x6c\x51\xeb\xa5\x26\xe8\x5c\x13\x29\x6e\xf1\x59\x7b\x20\x30\x57\x7c\x7c\x3c\xc3\x04\xc6\xf8\xaf\x52\x13\xe8\x85\xe5\x40\x05\x21\x98\xb3\xe6\x1c\x77\x55\xfa\xfa\xe5\xb4\x57\x1e\x37\xa2\x2f\xae\xc3\x16\xe8\x98\x68\x5b\xf0\x0d\x80\xba\x82\xfc\x1c\xea\x44\x3e\x3d\x6e\xc5\xbe\xf2\x8c\xf8\xfe\x30\xd1\x34\xb1\x0b\x29\xf5\x4a\xa5\x4b\xc0\x55\xdf\xa4\x6d\x8f\x9c\x8f\xf7\xb5\x97\x03\xed\x62\xac\xf6\xfe\xdf\xfe\xfa\x75\x49\xb3\x22\x7a\xdf\x56\x3c\x30\xe9\xd4\xa1\x09\x22\xd9\x02\xcf\x72\xa6\x25\xbc\x82\x6a\x63\x5e\xab\xf7\x18\xe1\x2c\xa4\x6b\x94\x3e\x28\xb5\x64\x23\x9d\xbe\x83\xe1\x16\x15\xb5\x6e\x3d\x0c\x92\xd0\x78\x2b\x05\xe8\xee\x6c\x97\x65\x14\x91\xcc\x87\x93\x28\x7e\x42\xb4\x3c\xbe\xe2\x37\xe9\x8f\xe8\x9e\xde\xd7\xf0\x47\xdc\x3e\xc8\xc6\xc6\x94\xb1\xc1\x57\xdd\x85\xf2\x4b\x06\x87\x1c\x2a\x7c\x25\x1d\x17\x9d\x45\xa4\x78\x6d\x34\x64\xf6\xee\x4d\x7c\x0d\xeb\x52\x37\xf8\xc4\xbf\x1d\x76\xcf\xcd\xd1\x7f\x57\x36\x6d\xbf\x86\x99\xbd\x5f\x93\x72\x37\x1b\xba\x9d\xe9\x75\xe3\xb6\x66\xb6\x30\x56\xbe\x29\x43\x44\x3d\x3a\x65\x5f\x87\xb5\xa7\xfa\x82\xfa\x3b\x56\x4f\x35\x41\x15\xab\x91\x55\xe4\xfb\x43\x56\xcb\xd7\x45\x89\x6d\x2d\xdf\xbf\x8d\xca\xdf\x9f\x39\x26\x85\x4b\x2d\xdc\xb9\xa1\xf6\x7d\x2f\x22\x25\x9b\xc7\x71\x77\xd1\xd3\x29\x8d\xd1\x10\xcd\x78\x63\x45\x0f\x0f\xe6\xac\x9a\xc5\x6c\x68\x81\x66\xb6\x12\xaf\xa3\x71\x65\x6e\x0f\x02\xef\x29\x68\xfd\x8c\xf3\x60\x06\xa5\x5f\xec\x3c\xe8\x68\x6e\x3f\x0f\x9b\x46\xe0\x2d\x6f\x4d\x25\x99\x46\xf2\x2e\x0f\x88\x8c\x3c\xdb\x5f\x95\xce\xdb\x75\xfb\xf4\x76\x6b\xf1\x00\x91\x90\xa7\xa3\x3c\x85\x39\x9a\xab\x1c\xc5\x22\x9d\xe8\x90\xc6\x31\x26\xf3\xeb\x42\xe2\x56\x1e\x28\x5f\x32\x21\x74\x61\x3e\x1a\xe7\x1d\x78\x3b\x83\x3a\x47\xcb\x24\x2e\xdf\xce\xae\xbd\xac\x54\x7b\xa6\xae\xb1\xcf\x36\xbd\x72\x3a\x13\x42\x73\xce\xa2\x3a\xf8\x2c\x5c\xa0\x68\x15\xa3\xb4\xc3\x9f\xca\xea\xdc\x16\x37\xd6\xd8\xf2\x0b\x53\x9c\xe3\x10\xc6\x41\x42\xa3\x13\xf0\xa3\xf6\xd6\x7a\x79\x08\x93\xd5\xcb\xc2\x14\x32\xa2\xaa\x6d\x17\x57\xbd\x84\xa6\x39\xab\xf5\xcb\xbb\x37\x3f\xa9\x5a\xc6\x6b\x51\x6c\x60\xf2\x5a\x87\xfe\x2a\x97\x28\x18\xf4\xba\xf5\x8f\xbd\xc1\x99\xf9\x31\x33\x16\x4b\xbf\x69\xa1\xe8\x11\xee\x25\x9c\xa3\xc1\x2a\x8e\xc5\x6e\x67\xe5\x18\x0e\x36\x4b\x75\x22\xaa\xf7\xc6\x1e\x1f\xab\x30\xac\x97\x5d\x72\x1a\xa3\xb4\x36\x13\x41\xf1\x80\xd4\x09\x38\xbf\xc7\x59\x5e\xcc\x1c\x33\xe8\xcf\x6c\xa9\xbb\x55\xbf\xc5\xc3\x16\x37\xda\x19\x03\x8e\xaf\xba\x7d\x7a\x46\x70\x97\xd7\x28\xe0\x98\x07\x12\x8a\xc1\x89\x53\x66\xe6\x50\xc4\x37\xb3\x41\x86\xc2\x55\x8a\x73\x0e\x0f\xdd\xe7\x27\xd5\xcd\xb8\x41\x91\x75\xbc\xe9\x08\x1e\xe3\x11\x55\x57\xcd\xa4\xe3\xec\x66\x08\x13\x38\xc5\x31\xb6\xbf\xf0\x15\xd9\x1f\xb0\x1e\xfd\x3e\x9a\x9c\x76\x2f\x7b\x7d\xbd\x70\x4d\xe3\xd5\x12\x5d\xf2\x7d\xaa\x4a\x2b\x8d\xa8\xc1\xb4\xfe\x58\xfa\x92\xb5\x19\xc0\x7c\x71\x02\x8e\x97\x24\x3f\x2e\xaa\x3d\xea\x29\x31\x07\x29\xa6\x9c\x3c\x31\xe4\x69\x30\xab\x03\x4f\xf4\x72\xc1\xa3\x42\x3c\x06\xea\xb4\x8a\x5a\x7a\xae\xf3\x8d\xc2\x51\x3b\x23\x78\x8b\xae\x60\x88\x19\xda\xaa\xc4\x42\x6f\x6b\xa6\xf8\xa0\x8d\x30\xaa\x30\xde\x27\x9a\xe5\x07\x9e\x33\x0a\xfb\xe7\x63\x77\x21\x6b\x39\x18\x0f\x4f\xcf\xce\x5d\x4d\x87\xa7\xbf\xe9\x45\x88\xac\x1d\x0c\xfc\xeb\xf5\xfb\xf3\x61\xff\x7c\x7c\x3e\x9a\xf4\xaf\xba\xe7\x93\xfe\xe9\x65\x0d\xe8\x1a\xc6\x2b\xf4\x21\xa5\x4b\xcb\x30\x66\x18\xc5\x91\x32\x79\xac\x85\x62\x19\x30\x01\xde\x61\xc6\x37\x63\x2e\x3b\x2a\xe3\xf3\xfe\x69\x7f\x6c\xed\xbc\x76\x86\xb2\xf5\xc9\x4d\xef\x31\x16\x1b\x16\x9c\x0a\xe7\x83\x8f\x4e\x3c\x2a\x8c\x2d\x22\x55\x9e\xb3\xe8\xdb\x02\x6e\x75\x14\xde\xec\xbd\xce\x98\xaa\xf3\xab\xc1\x87\x8b\xf3\xff\x37\xb9\xbc\xea\xda\x67\xf7\x04\x50\x71\xf0\xf4\x05\x8d\x43\xbf\x61\xca\x9f\x80\x91\xf9\x52\x1b\xa7\xf0\xf2\xfa\x62\x7c\x3d\x72\xe0\x57\x5b\xc7\x1a\x87\xc8\x0e\x64\x42\x61\x75\x73\xb4\xa9\xbb\x6e\x6f\x74\xfa\xfe\xe2\x7c\xf2\xdb\x69\x6f\x3c\xf9\x70\x35\x9c\xf4\xcf\xc7\xbf\x5d\x0d\x7f\x6d\x46\xc0\x43\xe5\xee\xf5\xf0\x74\xdc\xbb\xea\xb7\x85\xca\xd7\x47\x57\xbe\xed\x66\x0e\xc0\x99\x12\xf1\x49\x34\x9c\x0b\x06\x33\xd9\xdb\x00\xa9\xd7\x53\x50\x98\x0a\x59\xc3\xda\xbb\x0e\x3a\x90\xf2\x90\x6d\xad\xa2\x0e\x25\x5d\x79\xc7\x53\x2b\xde\xa0\x6d\x89\x81\x13\x8a\xbc\x6d\xc1\x80\x29\x3f\x86\x4f\x43\x3b\xb0\x28\x0f\x8f\x8d\xfb\x1a\x74\x9d\x1d\x4f\x61\x86\x38\xe5\x3a\x91\x1b\xf3\x60\xcb\xde\xcc\xa5\x7a\x6c\xac\x18\x33\xd5\x89\x58\x27\xc0\xc5\xd3\xd1\x42\x1c\x99\xf3\x75\xbd\x86\xe9\x71\x8c\xa7\xc7\x65\x5d\xa7\x65\xf3\x49\xb8\x01\x24\xfb\xcc\x07\xe4\x59\xa7\x95\xc9\x3d\x26\xac\x55\x15\x0b\x8d\x50\xe9\x8a\x04\xd6\x3a\x29\x82\xd1\x15\x89\x1f\x4c\x67\xc2\x1c\x47\x4a\x13\x38\x87\xe2\xe1\x0d\x86\xe2\x98\x16\x9a\x69\x3f\xe2\x4d\xbc\x87\x15\xb4\x5d\x54\xb5\xea\x56\x49\x10\xe3\x35\x22\x28\xcb\x06\x29\x9d\x56\x1f\x44\x99\x41\x1c\xaf\x52\x34\x5e\xa4\x28\x5b\xd0\x38\x3a\x01\x6f\x5e\x9b\x35\x16\x79\x9e\x7c\xb4\x3c\xa3\x98\x08\x34\xca\x68\xbe\x51\xc8\xfd\xbc\x7f\xbc\xfe\xe5\x75\xb5\x84\x3f\x9d\x8c\x4e\xc0\xa7\xf1\x78\x60\x96\xf1\x6d\x0b\x18\xf3\xbb\x2d\x23\x14\x52\x12\x65\x27\xe0\xcd\x4f\x15\x08\x22\xfb\x76\x51\xfe\xae\x52\x2c\x9f\x3a\xd1\xc7\x63\x56\x90\x89\xb4\x0b\x00\x6f\x5f\xd7\xed\x5b\x7d\x0d\xb6\x33\xb5\x86\xe7\xef\xaf\xae\xc6\x93\xdf\x7a\xe3\x4f\x93\xab\xcf\x2e\xfd\x54\x7a\xc7\x1b\xdf\x53\x2a\xbb\x1a\x8d\x2e\x7c\xba\xbe\xb8\x1a\x65\xe7\x05\xc3\x36\x97\x97\xb0\xbe\x3b\xeb\xdc\x6a\x80\xb7\xd0\x97\x07\x2d\xb5\xbd\x96\x92\x2d\xf6\xd5\x9f\xea\xca\x5c\x48\x82\xa1\x47\xfc\x2e\x97\x9f\xc9\x2a\x68\x89\xeb\x5f\x0d\x0b\xa5\x02\xd7\x64\xc5\x90\x2e\x97\x90\x44\x27\xe0\x5f\x37\x47\xc7\x53\x4c\x8e\xb3\xc5\xcd\xd1\x1f\x7a\x0d\x98\xce\x33\x51\x5c\x8e\x8d\x55\x8c\xe1\x8a\x84\x8b\x40\x60\x22\x10\xe9\xd4\x1a\xef\x61\x35\xea\x94\xde\xdf\xb2\xe1\xf7\x2c\x6a\xeb\xa5\xb0\x29\x06\x54\x9e\xb5\xd7\x49\xc8\x3e\x3a\x35\x20\xca\x53\x1c\xd6\x14\x4a\x05\xe0\x2f\xef\xde\xfe\xa4\x57\xc9\x51\xba\xc4\x84\x6b\xe6\x4b\x94\x65\x8c\x2e\x82\x8d\x22\xb4\x3e\xd6\x0a\xf9\xd5\x5e\x7f\x3b\x49\xdf\x0f\x38\x46\x1b\x8a\x07\x83\x97\x76\xe4\xf4\x3a\x43\xee\x22\x86\x2c\xc2\xb3\xa0\x77\x08\xb3\x3c\x10\x47\x1f\x9d\xfc\x7f\xc9\x2a\x3d\x15\xe3\x73\x0c\x04\x02\x5b\xf3\xfd\xb6\x9a\xc6\xbf\x4a\x5a\x6a\xa1\xbf\xb5\xe6\x48\x11\xbf\x9d\xa5\xc8\x7f\x1a\xdf\xc1\x87\x62\x75\x8a\x91\x3b\x22\xd2\x55\x9f\x91\x47\xf0\x59\x4f\x15\x22\x8b\xce\x69\x92\xdb\xa1\x54\xed\x60\x3f\x18\x94\x87\x75\x30\x16\xea\xfb\xa1\x18\x95\x3d\x14\xf4\x43\x31\x2a\xb7\xf3\xd6\x42\x75\xa1\xaf\x02\xb1\xe1\x01\xbb\xf2\x87\x73\xb4\xac\x4b\xf4\x00\xf0\x9b\x4c\xb5\x6c\x9d\x75\x29\x2f\x50\x2f\x2b\x76\x4c\xf2\x6f\x62\x41\xa0\x65\x92\x3f\x74\x71\xf5\xe1\xcd\x25\x8a\xf0\x6a\x79\x02\x2e\xf9\x2b\xa7\xed\x3c\x4e\x7b\x9d\xeb\xe9\x8a\xe4\x2b\xbb\x6f\xea\xf3\x4b\x1b\xe7\x5e\x79\xa9\x89\x3d\x96\xb3\x17\xd8\x76\x0f\xd8\x21\xa4\x9b\x8c\xa7\xa7\x65\x1b\x4b\x0a\x09\x17\xe3\x70\xf1\xd1\x29\x7d\xd1\x52\x26\xeb\xfa\xdf\xe3\xd4\xb7\xd2\xa5\x3b\x85\x0d\x82\xc6\x68\x40\xe3\xaa\x56\x41\x86\x36\x1e\xbf\x9f\x3d\x3d\xfe\x7e\x33\x27\x31\x4c\x04\x80\x63\xff\x85\xe1\x5d\xb6\xf5\xb5\x07\xe9\x6f\xbe\xc7\xdd\xfd\xca\xf8\xdb\xe0\xb7\xaf\x4d\x7e\x4b\xd7\xcf\xbf\xd7\xff\x1d\xec\xce\x6f\xb9\x37\xff\xdd\xee\xf7\x5a\xf9\xb2\xe6\x31\x23\xb2\x1e\xf1\x3a\xfb\x8a\x2f\x99\xc7\xfd\xca\x1f\x7f\x27\xbd\xae\xbc\xc4\x2b\xea\x2a\xf5\xca\xe7\x91\xb0\x37\x2e\x58\xe5\x6a\xd6\xf5\x6f\x3c\x72\xa5\x0a\x47\xbf\x8f\x26\x97\x57\xdd\xeb\x0b\xeb\xd6\x31\x2b\xed\xf7\xec\xdb\xca\xbd\xc1\xd9\xe4\xe2\xea\xcc\xd8\x80\x72\x07\x3b\xaf\x3e\x8f\x26\xc3\xeb\x7e\xb7\x37\xac\xc2\x92\x31\x48\xd3\x97\xe1\x7a\xca\xc1\x33\x7f\x6b\xd7\xa9\x0e\xc5\xf0\x4e\x7c\x50\x6a\x15\x75\x28\x4b\xca\x84\x78\x2d\x44\xa2\x43\x62\x46\xa6\xa5\x9a\x6f\x27\x00\xdd\xa3\xfa\x03\xe6\xca\xb9\xb7\x31\x4d\xd5\x9b\x97\xb0\x03\xba\xce\x98\x1f\xbf\x9b\xff\x68\xa1\xd6\xdf\xc0\xf1\xb3\x4c\x89\x1f\x92\x31\x8f\x8d\x76\x5d\x71\x1d\xe1\xe5\x65\x9a\x00\x2d\x4d\x97\xe6\x53\xca\xca\x1e\x51\x77\x2d\xe4\x0e\x4f\x66\xb5\x02\x51\x79\xb8\x7e\x5b\x03\xd0\xa4\x53\xbb\x71\x34\xd9\x7f\x6d\x3b\x6a\x31\x29\xa0\xb5\x39\x59\x87\xff\x52\xad\xc9\x16\x36\xa2\x3e\x98\x67\xb4\x11\x55\xc2\xf4\x71\x69\x25\x02\x97\xed\xf8\xf8\x08\x72\xfa\x3b\x5c\xc6\x66\xf5\xff\x00\x4c\x22\x44\x72\xf0\xae\x70\xfa\xe3\x0c\x39\xa1\x28\xf4\xd0\x6c\x86\xc2\xfc\x04\xf4\xe9\xf9\x3d\x0a\x57\xb9\xe6\xff\xbb\x8e\x8d\xea\xa0\x2c\x1b\xa6\x3a\xcc\x91\x9c\xcb\xb2\x29\xf7\xfc\x09\x8d\x50\x65\x5e\x09\xcd\xf9\x3b\xdd\x0f\xcd\xfd\xb7\xec\x20\x48\x69\x5c\xed\x65\x09\x99\x4d\xec\xeb\x42\x5a\x55\xe0\x4b\xf5\x31\xf2\xed\x2d\x71\x8e\xcc\x0b\x32\xc3\x37\xdc\x24\xd6\xad\xf5\xf9\x34\x69\xd8\xd2\xfa\x38\x4d\xbc\xfb\x59\x16\xf3\x1c\x54\xed\x73\xb0\xf9\x89\xa3\x62\xd9\x3e\xc5\x89\x95\x76\xa7\x00\x65\x86\x27\x94\xe6\x5e\x13\xca\x52\x21\xb0\x25\xfe\xda\x6e\x04\x28\xcd\x8f\x1d\xae\x81\xdb\xf0\xfe\xf8\x7e\x30\x19\x9d\x0f\x3f\x9f\x0f\x27\x67\x57\xfd\x0f\xcd\xd6\xb7\x85\x60\x65\xb2\xcb\x8e\xf3\xc8\x88\xc3\xef\xb3\x29\x90\xea\x31\xf3\xa2\xca\xbe\xbc\x3e\x37\x35\x7e\x3b\x1d\x9f\x7d\xe2\x87\x5a\x47\x03\xcb\x71\xd9\xe2\xcc\x45\xf5\x85\x2d\xd5\xfe\xf4\xac\x37\x19\xf5\x4f\xc7\x2d\x40\x38\x73\x0c\x7b\xe0\x7e\xbc\xb8\x7a\x7f\x7a\xd1\xeb\x7f\xb8\x72\x1f\xbc\x3d\x91\xcf\xcd\x95\x57\x37\x7d\x40\x87\x5d\x36\xeb\xbd\x8f\x7e\x78\x29\x5d\xe5\x98\xcc\x45\xae\x4f\x15\xae\x75\x40\x1d\xfd\x3e\x1a\x9f\x5f\xee\x87\x00\x5f\x67\xf5\xdb\xba\xd9\xdb\xf2\x2c\xab\x7f\xcd\x23\x54\x6f\xaa\x25\x2f\xf7\x08\x55\xe9\xcf\xb5\x92\xca\x0d\x12\x39\xe3\xf6\x57\x85\x6a\xe2\x63\xbf\x29\xf3\x60\x83\x54\xf3\xb1\x47\x63\xb7\xb5\xbc\x8f\x26\xfc\x36\x5c\xfe\xb4\x1b\x36\x35\x0c\xea\xee\xbb\x60\xbd\xb2\x62\x7d\xcf\xa6\xed\xb9\xb4\xa2\xd7\x5a\x1a\x65\x57\xaf\x3e\x15\xe4\xe5\x9b\xba\x03\xcc\x6f\x03\x6b\x2e\xf0\x80\x46\xbd\x0f\x56\xef\x17\x13\x94\x07\xfc\x05\x9f\x8a\xbb\xab\x3f\x52\x41\xc4\x52\xe4\xcd\x50\x32\xaf\xcd\x04\x07\x42\x57\x7c\xd2\x71\x02\xa3\x28\x3d\x01\xe5\xeb\x3f\xfa\x38\x8e\x5e\xfd\x2f\x00\x80\xc8\xbc\xfc\xae\xf3\xba\xf3\xb6\xf3\xe6\xe8\x04\x1c\x55\xfd\xf7\x7a\x8e\x07\xfd\xc6\x2b\x4f\xec\x30\x94\x61\xcf\x6e\x91\xd8\xc1\xe5\xdd\x97\x88\x16\x09\xce\x3a\x8c\x42\x61\x9e\xc6\x9a\xe3\x3c\x17\x37\x57\xcb\x12\x49\x0e\xc9\x4d\xa2\x6f\xa9\xcb\x05\xb8\x2b\x2d\x31\x1a\xe0\xf7\xb4\x7f\x75\x57\xba\xc0\xea\x36\x50\x12\xaf\x52\x18\xbb\x50\x93\x0e\x21\x26\xf3\x55\x0c\x53\x47\x2d\xee\xb8\x87\x94\xf9\xf2\xc5\xb3\x7b\xfc\x80\x99\x0c\x34\x14\x57\xbf\x39\x0d\xd6\x6f\xb8\x27\x2a\xc5\x15\x67\xb1\x48\xf7\x2c\xb3\x9c\xa6\xdc\x58\xd1\x3e\xad\xa6\xf5\xb8\xb2\xe4\x02\xf0\x28\x59\x9d\x0b\xdc\xd2\x7b\xa7\x09\x22\xa7\x83\xde\xe7\xb7\x23\xf3\x3b\x00\x11\xca\xc2\x14\x27\xb9\x62\xce\xfa\x80\x00\xbd\x23\x19\xc8\x17\x08\xc4\x78\x86\xc2\x87\x30\x46\x80\xce\x98\x7a\x07\x54\x5c\xfb\x05\x98\xf0\x72\xb9\x2f\x50\x02\x4f\x52\x06\xa4\x16\x2e\xd6\x18\xaa\x22\xa6\x79\x08\x24\xcb\x53\x7e\x55\xba\xfc\xce\x27\xb8\x5d\xd5\x5a\xe0\x42\xaf\x2e\xf0\x35\x24\x67\x52\x0b\x21\x1a\x14\xb1\xf2\xcb\x28\x41\x21\xe0\x59\x4b\x90\x20\x4c\x84\x32\x9c\xa2\x88\x43\x03\x33\x9a\x72\xe2\x5c\x09\xe2\x54\x14\x99\x9d\x22\xec\x37\x8b\xe1\x9a\x56\x8f\x1e\xf8\x86\x0a\x0a\xa9\xbc\x51\x23\x27\x29\x4a\x41\xb2\x11\x31\x78\x33\x83\x1c\x52\x1d\xcf\x56\x31\x08\xe9\x32\x89\x11\x7f\x9a\x8f\xf1\x8c\x7b\x89\xb6\x20\x90\x15\xc1\x72\x44\x53\x4a\x63\x04\x49\x9b\xc1\xa6\xe8\xcf\x15\x9b\x30\x23\x9a\xc2\x26\x4f\x8b\x43\x18\x0d\x3d\x59\x67\x8b\x45\xde\x26\x82\xf9\x7c\x91\x49\x4b\xe4\x75\x7f\x92\xbb\x4c\x5b\xd1\x91\xd9\x2d\xac\xb2\x9a\x7d\xb7\x49\x6a\xf5\x64\xc8\x87\xaa\x74\x2e\x0a\xea\x12\xd9\xcc\x94\xa1\x4b\xe1\xf2\x41\x92\x0d\x25\xef\x26\x32\xb7\xad\x38\xfd\x26\x25\x9e\xab\xaa\x77\x35\x8a\xc9\x70\xae\x46\x98\xa6\xf0\xa1\x5e\x68\x37\x02\xfd\x48\x34\xa2\x22\x7e\x05\xf7\xf7\xba\x8e\x1a\x7e\x51\x2a\x7e\xcc\x86\xda\xbe\x35\x9e\x71\xe6\xda\x01\x80\x30\xd1\xb6\x07\xb0\x84\xe1\x8e\x10\x12\x1a\xed\x38\x08\x06\xc1\x35\x4b\x6d\xda\xaf\x73\x54\xf5\x32\x9a\x9a\x6f\x27\xd1\x37\x0b\x92\xea\xd2\x54\xee\x24\x94\x59\xbd\x8e\xd7\x6f\xa6\x28\x87\xa5\x59\xaf\x83\x71\x9a\xbf\x46\x68\x55\x86\x2e\xde\xbc\x56\xbf\x1b\x22\xa2\x2c\x5d\xf1\x7c\xe4\x09\x10\x59\xcd\x88\xa1\x94\x6f\x8e\xc6\x0b\x9c\x15\xb1\x5b\x10\x72\xbc\x71\x06\x56\x19\x8a\x94\x31\x12\x9c\xf5\x7b\xe5\x69\x04\x23\x19\xb9\x25\x22\xdd\x90\x50\xad\x85\x56\x31\x48\xb1\x91\x6a\x41\xc9\x7c\x3b\xa5\x72\x9e\xcc\xab\xea\xe4\x3c\x99\xd7\x15\x89\x4a\x1e\xec\xd3\x14\x42\x3b\xb4\x55\xa1\xdb\x0f\xb6\x48\x5f\xbc\xd5\x88\xcf\x64\xeb\xea\xb0\xd5\xf7\xfa\xd8\x8d\x74\xc9\x2f\x81\x00\x3b\x18\x11\x56\x03\xc2\x61\x3c\x94\x86\xc3\x4b\x18\x74\x99\x35\x7a\xab\x81\x7f\x7c\x3f\x18\x31\xa3\x1b\x55\x07\x5f\x14\xd4\x09\x60\x26\xae\x6e\x26\x82\xd5\xcb\xd4\x7d\xcc\x9a\xf8\x78\x2a\x53\xb3\x92\x26\xb0\x53\x64\xb1\xb3\xd2\x4c\x94\xd8\xa8\x36\x22\x30\xff\xc8\xe1\xf4\xc8\x8c\x56\x49\x67\x96\xd6\xe9\x67\x49\x56\xa8\x9b\xa0\x95\x80\xf8\x0b\xb0\x43\x0d\x15\x61\x8e\x8e\xe9\x06\xe6\xa5\x89\x36\x5c\x43\x70\xa7\xcd\x1c\x22\x38\x1d\xf4\xbe\x71\xb3\xd6\x63\x31\xce\x0b\x6a\xd8\xec\x14\x18\x45\x9c\x21\x61\x3c\xf0\x1b\x9d\x6e\x6b\xb6\x85\xbd\xca\x6d\xb5\xd3\x28\x4a\x51\xe6\xae\xd2\xc6\x5c\x12\x81\x77\xfe\xa2\x90\x0f\x90\x0f\xd9\xd6\x28\x8b\x1f\xb2\x9e\xaf\x32\x7f\x4b\x78\x8f\x97\xab\xe5\x09\x78\xf7\xf3\xcf\x6f\x7f\x6e\xac\x8d\x89\xa8\x5d\xdb\x3a\xa8\xfe\x04\x3d\x30\xc9\xd1\xbc\x7a\xdb\xac\xfa\xe3\xc7\xb8\x5e\x3e\xa2\x4d\x9e\x8f\x5e\xcb\xe1\x56\x89\x1f\x5b\xc2\x3d\xb7\xe5\xdc\x8e\x97\x04\x90\x6b\xec\x9b\xe1\xb6\x70\xc4\xee\x68\xdf\xe7\x4d\xb4\x01\x66\x31\xee\xf5\x5f\xa0\x2d\x24\x57\x8d\x72\x85\xb8\x6a\x88\x71\xfb\x4b\xaf\x71\xe4\xab\x50\x0e\xd7\x5e\xab\x69\xa2\xbd\x53\xec\x6e\xec\x20\x4f\xa0\x4b\xb9\x96\x42\xb4\x31\x04\x68\xaa\x12\x4b\xec\x8f\x4e\x85\x22\x13\x4f\x51\x00\x3a\xb3\x6a\x5e\x3f\x22\x0d\xb1\xb7\x7d\x9b\x17\x65\x9e\xdb\x9d\xac\x8b\x0b\x06\xc6\x65\x5c\x14\x85\x76\xdb\xc2\x4c\xb5\x5b\x35\x2d\x8a\xd2\x97\x60\x59\x7c\x93\xa6\x40\x8d\x87\x8b\xf9\x70\xc7\xf2\x75\xfe\xad\xcc\x6d\x03\x2d\xf8\xf4\xab\x16\x36\x5d\xea\x56\xc5\x8d\x2a\x38\xa1\x91\x57\x9e\xb6\x8a\xce\x14\xcc\xb3\x1b\x18\x9f\x92\x68\x06\x50\x48\x4c\x9f\xbd\xd1\x64\xb4\xb4\x34\x59\x22\x94\xf9\x35\x63\x9b\xbe\xc4\xaf\x8d\xee\xd3\x6b\x7a\x35\x36\x50\x1b\xe8\x6d\x20\x35\xf7\xd9\x68\x00\xb4\x07\xd6\xa0\x73\x01\x10\x19\xbd\x33\xa7\xce\x04\xc5\xf9\x02\x5f\xb9\x4f\xeb\x82\x96\xb6\x51\x03\x9d\xbd\x23\x09\xd4\x72\xf0\x16\xca\xfd\x1d\x47\x0d\x87\x55\x10\x18\x1c\xee\xd6\xf7\xae\xc1\x39\x87\xe5\xd4\xf7\xa5\xcc\x79\x81\x5a\x56\x25\x53\xdf\x49\xc7\x0a\x0b\xcb\xa6\x60\x45\x89\x5d\xbb\x26\xc6\x1c\x98\xba\x35\x29\x20\x4a\xc5\x7a\x56\x6e\x62\xef\x41\xab\xee\x75\xaf\xde\x3e\x8f\xdf\xa4\x42\xde\x6a\xcb\xa9\x72\x1f\xa2\x1d\xbc\x06\x98\xc0\x76\x19\xa1\x3d\x64\x50\x35\x2e\x7e\x1c\x71\x24\xe5\x86\xf7\x80\x46\xd9\x8f\x0e\xfd\xd9\xa4\xb9\x5a\x47\x21\x40\x0b\xa1\x4e\x1a\x34\xbe\xbf\xbd\x8f\x06\x4e\x9d\xb3\xd3\x3e\xa0\x1d\x13\xa7\x1a\xdf\x7b\x5f\x1b\x79\x48\x5b\x30\x73\xab\xc9\x35\xd1\x7b\xf2\x1d\xfd\xdd\x5c\xa0\x3e\x8d\x90\xcd\xfb\x51\xdf\xed\x5b\xfa\x56\x9f\x47\x15\x1c\xdc\x9d\x56\x2c\xb9\x51\xe4\x53\xee\x0f\xdb\x63\x8e\xbe\xb5\x57\x2a\x4b\x7d\xee\xf5\x5f\x6b\x81\xe5\x39\xaf\xe3\x1b\xe8\x2e\x71\x8b\xbe\x64\xa9\x56\x11\x8b\xbe\xc6\x7f\x4d\x9d\x3f\xa3\x15\x55\x3c\x8e\xb4\xf5\x1a\x1d\x46\x67\xda\x31\xd7\x72\x8d\xaa\xef\xf5\x35\x6a\x3c\xc8\xa4\xaf\x51\x55\x70\x58\xa3\xad\x18\x74\xa3\x35\xaa\x9e\x43\x42\x51\xb6\x9a\x12\x64\xc9\x14\xb0\xad\x02\xf5\x6a\xca\x55\x86\xd2\x67\xec\xf0\xfb\x5e\xcc\x95\x27\xa6\x3a\xda\x93\x54\xd6\x45\xad\xca\xac\xaa\x57\xc0\xb2\x3b\x47\x46\xa1\x45\x09\xd7\x9f\xba\x32\x54\xb1\x56\xfc\xb0\xe5\x5a\xdf\x6a\xcf\x52\xa5\x3b\x97\xd7\xf6\x44\xd9\x94\xcd\x72\x0a\x67\x33\x1c\x82\x59\x4c\xef\x00\xcc\x41\x6f\x00\xa4\x42\x03\x34\xe5\x71\x7e\x10\xa3\x35\x8a\xff\xbe\xe2\x01\x26\x49\x8c\x51\x34\xa6\x96\xd5\xd8\xe0\x55\x14\x6e\xc0\xc8\xed\x4a\xb5\x00\x03\xd4\x6d\xf4\xf3\xfb\x84\x51\xbe\x72\xcd\xba\xfa\xdb\xe3\xce\xe3\x2d\x7a\xd8\x63\x84\xae\xb8\xa3\xbb\x3f\x90\xfc\x10\x57\x73\x14\xb1\x5d\xac\x71\x93\x8e\x5b\xc7\x1b\x5b\x44\xf6\xe4\x05\x19\x7f\x05\x6a\x3d\xbf\x6d\x43\x69\x0f\x5b\x9b\xb6\xdc\x07\xf5\xdf\x46\x2e\x33\x68\x4d\xde\xe6\x51\x34\x1e\x5e\xa5\x51\xc3\x8a\x33\xef\x61\xc4\x4c\xb8\x61\x32\xe7\x62\x6d\x96\xd2\xa5\x38\xa2\x01\x97\xa8\x5c\xc2\x87\x95\x7b\x58\xb9\x96\xdf\x61\xe5\x6e\x34\x8a\x36\x31\x78\x7b\x29\x9a\x3b\xbc\x68\x73\xb3\x11\xe5\xcc\x0a\x15\x95\x01\x7f\x7a\x1a\x20\xc6\x6a\x30\x47\x11\x98\xc2\x0c\x45\x80\x8a\xeb\x53\x34\x8d\x50\x0a\x30\x01\x77\x0b\x1c\x2e\xd8\xa7\x07\x00\x53\x04\x32\x94\x77\x36\xb1\xc7\x9b\x23\x8b\x3c\x3e\xe9\x24\x6f\xe5\xce\x0f\x8f\x65\x32\x0b\x05\xcf\xb0\xb4\xb2\x05\x00\x90\x53\x30\x45\xca\x1c\x51\xa3\x60\x43\xb4\xa0\xab\xd3\xd3\x7b\xfe\x9e\x3f\x82\x7b\x41\xe7\x73\x4c\xdc\x27\xf1\x0d\x14\xcf\xf5\x26\xc5\xc9\xe7\x9c\x02\x4c\x22\x7e\xb9\x16\xe0\x19\xe0\xc9\xf9\x40\xb6\xa0\xab\x38\x02\x73\x44\xd8\x0a\x40\x20\xa6\x73\xee\x3f\xc0\x55\x9c\xb3\x16\xfc\x94\x73\x03\xf6\xce\xb8\x05\x70\xe4\x16\x77\xa0\x2d\x39\x83\x5b\xac\x90\x44\x6c\xda\x72\x1a\xd2\x58\x48\x7f\x14\x1d\x47\x88\x30\xba\x4e\x1f\x4a\xba\x82\xde\x0c\xe4\x0b\x9c\x89\xb7\xac\xf8\x58\x49\xc6\xe0\xa4\x22\x77\xed\x2b\x51\xca\xea\x8a\x85\x87\x32\x06\x4e\xa0\xe5\x1c\x57\x93\x48\xb3\x19\xe6\xc2\x2e\x1f\x30\xe4\x35\xdb\x7c\x81\x2c\xe3\xc9\xa9\xc0\x85\xb1\x36\xf4\xf3\x47\x6b\x7d\x82\x48\xc4\xd3\xaa\xfb\x25\x6b\x85\x4d\x22\x89\x6e\xe9\x2e\x22\x12\xb1\x39\x28\xf0\x4e\x21\x99\xa3\x57\x60\x8a\x18\x27\xa9\x0a\x98\x84\xf1\x2a\x42\x11\xb8\xc3\xf9\x42\x5e\x75\xe4\x15\x3b\xa0\x97\x83\x10\x12\x40\x49\xfc\xc0\x96\x82\x5a\x25\x11\xb8\x5b\x20\x36\x58\xb2\x5a\xa2\x14\x87\x50\xcc\x00\x9b\xaf\xa2\x8a\x87\x06\xec\x37\xa3\xe9\x12\xe6\xfc\xfc\x98\x99\x37\xbe\xfe\x6b\x7d\xd0\x2c\x69\xa6\x18\x24\x0f\x57\xf6\xd7\xd3\xca\x5f\xb0\xc9\x19\xbc\x60\x03\x45\x68\x4c\xd7\x58\xcd\x89\x94\x2b\x73\xbc\x46\xa4\x60\xaa\x0e\xe0\xb7\x1e\x18\xf1\xa7\x08\x20\x9c\x2f\x50\x6a\xd0\x9b\xa6\xdc\x52\x8a\x0a\x18\x10\x0c\x68\x64\x59\x40\x84\xe6\x0c\xea\x1a\x47\x28\x92\xcb\xa7\xba\x72\x84\xcd\xc5\x99\x9a\xac\x96\x53\x94\xba\x97\x92\xf8\xdd\x07\x65\x6e\xa0\x00\x93\x3c\xa0\x69\x20\x08\x60\x7f\xaa\x47\xff\xa9\x11\x36\xb2\xb6\xbc\x13\x32\x3e\x1b\x6c\x4a\x55\xb5\x30\xff\xcf\xf8\x6c\xf0\x0a\x5c\x77\x07\xaf\x18\xb9\x46\x67\xe3\xc1\x7f\x29\xdd\x23\x9d\xec\xe5\x2a\xcb\x05\x39\x38\xe5\x18\xad\x0a\x06\x7e\xa5\x13\x52\xa2\x93\xb1\xc5\x3e\x3e\x1b\x34\xd0\x67\x5f\xca\xbb\x85\x01\x92\xdb\xbc\x64\x0b\x61\x86\x4c\x64\x16\x73\x1f\x31\x95\xa1\x88\x80\x33\xce\xea\x24\x92\xf7\x69\x98\xf8\x8b\x29\x8c\x32\xb9\x21\xa9\x64\xb4\x22\x86\x85\xc9\xb8\x70\x66\x44\x5e\xe2\x2c\xc3\x64\xee\x92\xd3\x11\xca\x72\xf9\xb8\xc3\xf6\xe2\xba\xa5\x08\xc5\xc9\xfb\x98\x86\xb7\x9b\x88\xd0\xde\x80\x37\xa9\x48\xfc\xde\x40\x1e\xbe\x44\xd9\xb1\xac\xc1\x0a\x60\x6e\xd0\x93\x99\x0b\xc7\xcc\x95\xe9\x14\x60\x42\x9e\xa5\x8d\x0b\x4e\x94\x03\x98\x81\x04\xa6\xb9\x92\xc7\xa7\x2a\xca\xa1\x88\x7a\x66\xd4\x66\xb2\x98\x49\x2b\x40\xf9\xd2\x57\x5b\xc3\x0d\x8c\xd7\xda\x5b\x01\x20\xc4\x9e\x5b\x74\x0e\xfa\x9c\xf5\xba\x43\x36\x68\x28\x79\x1b\xa4\x88\x79\x59\x88\xe4\x4a\x9f\xf4\x06\x40\x8c\xfd\x33\x8c\x71\x04\xd0\x3d\x5c\x26\xcc\x24\x64\x76\xde\xcd\xd1\x9b\x5f\x7e\xea\xbc\x79\xf7\x8f\xce\x9b\xce\x9b\xe3\x9f\xfe\xe7\xe6\x88\x71\xcc\xcd\xd1\x4f\xaf\x5f\xbf\x39\x89\xa6\xbf\x9c\x9c\x1c\xbf\xfb\x9f\x6a\x5e\x1c\xdb\x6f\x13\xd7\x03\xdd\x87\x28\x69\x3e\x24\x5d\xd5\xa5\xbc\x95\x1c\x6a\x8c\x43\x1e\x69\x65\xa3\x97\x13\x2f\xed\x2c\x39\x5f\x55\x05\x0a\xc9\x3e\xe8\xa0\x90\x10\x7e\x1b\xb8\xc3\x71\xcc\x3a\x4b\xd1\xbf\xc5\x9a\xc4\xb3\xd2\x84\xa6\xab\x3c\xc3\x11\xe2\x53\xc0\x27\x89\xeb\xef\xe6\x41\xb7\x75\xf6\x36\xa3\x79\x6b\x87\xaf\xa5\xcb\xc7\x9f\xaf\xc1\x51\x83\x26\x6e\xe7\xd1\xb5\x8f\x11\xaa\x5f\xc5\xa8\x65\x6d\xb8\x2c\x1b\xd0\x48\xc6\x2e\x8a\x60\x71\x29\x0e\x94\xc0\x54\xeb\xf6\x15\x5b\xfe\xa5\x60\xc5\x04\x8c\xe9\xf1\x07\xd6\x98\xaf\xfe\x8c\xcb\xd4\x62\xdd\x0f\xca\x70\xca\x2b\xd1\x0f\x9b\x64\x05\xdb\xdb\x27\x2a\x4b\x14\x88\x96\xa2\x45\x2e\x15\xbd\x73\xc6\x97\xe7\xf7\x39\x4a\x09\x8c\xcf\x49\x8e\xf3\x87\xd1\xde\xe5\xd0\x06\xd1\x1a\xf5\x6b\xcf\xb5\x1b\xe0\x21\x7e\x6d\xa2\x38\xea\xb7\xd9\x92\x00\x9b\x44\x75\xd4\xcf\xe0\xbd\x22\x61\x49\x21\x75\x99\x78\xba\x45\x0f\x19\x48\x51\x2c\x94\xea\x02\x27\xcc\x44\x81\x7c\xa2\xe9\x4c\x0a\x8f\x8e\x14\x43\x45\xa6\x17\xce\x4f\x3d\xf2\x0a\xf4\x69\xce\xfe\x27\x52\x38\x72\x0b\xb0\x4b\x51\xd6\xa7\x39\xff\xd2\x30\xcb\xbb\x90\xa2\x65\x34\xca\x4a\x08\x29\x11\x99\x74\x26\x42\xc8\xb0\xa1\x4a\x95\xa4\x46\xdc\x13\x6a\xb6\x20\x1a\xce\x40\x8f\x30\x86\x96\x43\x66\x85\x12\x90\x00\xc1\x6d\xc1\x29\x02\x84\x92\x80\xdb\x33\x56\x18\x92\x52\x34\x35\x08\xe5\x01\x27\x41\x71\x73\x5e\x94\x30\xc3\x08\x25\x31\x0c\x51\x04\xa2\x15\x47\x1a\xaa\x64\xb9\xcc\x26\x45\xe9\x1c\x81\x84\x1b\xa5\x6d\xc9\xd3\x7e\x45\x88\xdf\xe6\xf3\xb5\x81\x4c\x17\xbf\x96\x92\x5d\xfc\x1a\x83\x7a\x65\xc5\x36\xc1\x3d\x13\xe5\x66\x95\xa0\xd7\x6e\x35\xc0\x76\x41\x3f\xf5\xdb\x38\xf8\x67\x62\xb4\x99\xd2\x6d\x33\xda\xb6\x35\x9b\xc3\xfa\xea\x67\x53\x92\x9a\x82\xd4\x63\x2a\x59\xa9\xa1\x6a\x4a\xb1\x30\x8a\x8f\x7d\xea\xb1\xa6\xe1\x9e\x5f\x49\xd6\xdb\x1f\x14\xe2\x41\x21\xee\x42\x8a\x83\x42\x3c\x28\xc4\xf2\x77\x50\x88\x1e\x8c\xbe\x96\x42\xdc\x53\xc0\xee\xc3\x9f\x5d\xf7\xe6\x54\x2b\x01\xcd\xa9\xdd\x77\x1c\x53\x2d\x7f\x6d\x16\x41\x5b\x8a\xb6\xe0\x85\x46\x06\x0f\x34\xc4\xfd\xf4\x73\xd3\xb8\xe1\xb6\x93\xb1\xbd\x66\xaf\x22\x26\xc0\x56\xb6\xe5\x7d\x25\xa0\x4e\x32\xb4\xdc\x2b\x55\xe7\x1e\x0e\x9b\xa5\x2f\x70\xb3\x94\x6f\x6c\x89\x99\xd1\xcc\xc9\x0e\x18\x89\xca\x53\xb4\xd7\xed\x54\x66\xa5\xee\x1c\xbf\xa7\x29\x9e\x63\x02\x73\x24\xad\xed\x6d\xe3\xf7\xae\xa0\xbd\xbc\xdf\x75\x88\xd7\x1f\xe2\xf5\x87\x78\xfd\x21\x5e\xff\xd2\xe3\xf5\x07\x57\xdb\xfa\x3b\xb8\xda\xc5\xef\xe0\x6a\x1f\x5c\xed\xf2\x77\x70\xb5\x3d\x18\x1d\x62\xcf\x87\xd8\xb3\xff\x67\x50\xbf\xda\x5e\x58\x64\x31\xce\xb8\x42\xe0\x79\x08\xca\xe1\xc8\x55\xba\x64\xca\xa4\xc3\x4f\x6e\xe9\x5f\x38\x45\x4f\xfb\xdd\xc6\x93\x84\xe0\xa0\x95\x0f\x5a\xf9\xa0\x95\x2b\xbf\x83\x56\xf6\xa0\x7c\xd0\xca\xdb\xd5\xdc\x4b\x00\xfc\x70\x85\xe0\x70\x85\xe0\x70\x85\xc0\x52\xf9\x70\x85\xe0\x70\x85\xa0\xf8\x3d\xdb\x15\x82\xad\x37\xbd\x44\xce\x84\xf1\x43\x62\x95\x43\x6e\x81\x69\x10\x5b\xa6\x3f\x60\x50\x94\xb9\x66\xca\x4a\x43\x96\x72\x74\x04\x5b\xf3\x7f\xe1\x0c\x4c\x51\x0e\x03\x9e\x10\x81\xc9\xce\x37\x9d\x7f\xb8\xc7\xb8\x45\xca\x10\xf5\xea\x48\xd3\xce\x9e\x7a\x0d\x85\x4f\x7d\xb1\x33\x26\xf6\xf0\xa4\xf0\x34\x07\x22\xcc\xf3\x35\x62\xcc\x20\xbc\x3c\xbd\x1c\x5b\x77\x5b\xbc\x22\x85\x17\x36\x60\xc9\x69\x56\xc8\x72\x86\x87\xb3\x17\x1b\xad\x9c\x79\x19\x59\x13\xf3\x9b\x9d\xa9\x36\x7e\xc4\x06\xb4\x49\xa5\xa3\xe5\x53\x81\x21\x73\x90\x51\xd4\xaf\xa5\x10\x29\xdf\x1c\x56\x89\x41\xd4\x97\x90\x12\x61\x8b\x65\x27\xe0\x5f\x7f\xb0\x2f\x0c\x3e\x8a\x3e\xab\x9c\x1f\xfc\xeb\x93\xe6\x4a\x89\x48\x66\x4b\x97\x22\x3e\x3b\x33\xa6\x68\xc5\xb6\xa4\x29\x5d\x92\x79\xf3\xa6\x54\xcb\xeb\xa9\x53\xea\x68\x49\xfa\x17\xd9\x53\x2a\x35\x36\x4e\xa0\xc2\x16\xaf\x84\xb9\x55\x12\x95\x88\x64\x2a\x83\x0b\xd0\x47\x09\x0e\x59\x51\xf4\xdf\x21\x2b\x8a\xf1\x3b\xe4\x56\x70\xfd\x0e\xb9\x15\x36\x1a\xc5\x21\x2b\xca\x4b\x5d\xb9\x2f\x3d\x4a\xba\x77\xc9\x72\x88\x86\x5a\x7f\x07\x81\xbb\x19\xe2\xdf\xb4\xc0\x7d\xc1\xc9\x6c\x1a\xe4\x65\x4e\x3f\xfc\x19\xb9\xce\x60\xb6\x95\xed\x4d\xe7\x81\x9b\xd7\xc2\x26\xd3\xe4\x61\xa3\x16\xcf\x19\xf9\x4f\x01\xfb\xa7\xd9\x03\x3e\x90\x94\xdc\x84\x37\x0e\xae\xea\x26\xae\xea\x9f\x34\x33\x7c\xd4\x3f\x69\x66\xf7\x4e\xff\x14\x69\xaf\xeb\x7e\xe9\xff\xa5\x99\xdd\x21\x2d\x0a\xea\x9e\xa8\xd6\x6b\xd5\x05\x55\x45\x6e\xdf\x93\xeb\xfc\x74\x8d\xae\xc9\x2d\xa1\x77\xe4\x03\xdf\xd4\x2f\xde\x9a\x3d\xbc\x82\xe0\xac\xba\xc7\x97\xb4\x3d\x66\xf0\xe6\xaf\x0b\xf8\xc5\x43\x83\xb8\x6c\xd6\x70\xcd\x6a\x48\x47\xb9\x5a\xc3\x7d\x15\x60\x27\xb4\x05\xfb\x93\xf9\x84\x59\x41\x5e\xc4\xbd\x5b\x0e\xc5\xeb\x7e\xaf\xbd\x9d\x4c\x57\x69\xe6\xda\x06\xd9\xa9\x17\xa7\x1a\x3e\x10\x07\x80\x28\x0b\x93\x25\x4c\x6d\x27\xe0\x1b\xe0\x16\x3b\x1d\x16\xcc\x7d\xa3\x2a\x9f\x86\x7c\xfb\xf4\xe9\xa0\x67\x31\xbd\xab\xa6\x83\x66\xdf\x9c\xf9\xa0\x45\xa1\x23\x21\x34\x2b\x74\x26\x84\x2e\x0b\xad\x09\xa1\x75\x4c\xaa\xfa\x44\x2f\x76\x3c\x9b\xb3\xa5\x42\x81\x71\xb2\x80\x9b\x68\x15\x4d\x31\xfc\xef\xaa\xbe\x50\x8f\xdc\x66\xe5\x23\xb7\x6b\xe6\xaa\x42\x7e\xb2\x3f\xe4\x53\x23\x97\x53\xb9\x95\xf0\x1d\xe9\x1c\x36\x87\x23\xb8\x4c\x62\x4c\xe6\x82\x13\xf6\x2d\x74\xbc\x4f\xae\x35\x59\xd2\xac\xb1\x67\x73\x7e\x67\x61\xd5\xee\xd5\xd7\x42\x6c\xfc\xf4\xfa\x67\x6b\x15\x46\xc5\xb1\x7d\x63\xa9\xcd\x28\x01\x40\x64\xe5\xbe\xdf\x14\x00\x6d\x91\xdb\x2b\xe0\x64\x86\xef\x1b\x90\xf7\x00\x81\x61\x8e\xd7\xe8\x03\x1b\x05\x5e\xa2\xab\xd5\x73\xd0\xfb\xed\xbb\xd7\x8e\x2a\x05\xc6\xef\xac\x15\x70\x14\x3f\x33\xaa\xcd\x98\xbe\xb1\xb2\x45\x26\x17\xd6\xf0\x09\xd5\xad\x86\xe6\x9b\xd7\x8d\x78\x5a\xca\xbd\x6e\xa2\xeb\x61\x3f\x53\x22\x3c\xa9\x46\x44\x69\x96\x40\x62\x28\x44\xf1\xc9\xae\x0f\x55\x99\x4d\x1d\x9e\xf3\x32\xbb\x36\xd4\xcb\xea\xca\xd0\x44\xa2\xaa\x0b\xb5\xd2\x97\xa3\x0a\xbf\x2f\x3d\xb6\xf5\x93\x70\x9b\xbb\x55\x4f\xfb\x88\xdc\xb7\xf3\x1c\x9c\x58\xbd\xfb\x36\x17\x60\xb4\xc4\x64\x94\xbb\x25\xa6\x79\xd1\x9a\xd5\xc6\x3c\xe6\x8d\xd7\x48\x3c\xf6\xe2\x08\x76\x17\x32\x90\xbf\x06\xff\x44\x8a\xda\x03\x5b\x14\x53\xeb\x1b\xa7\x11\x4e\x91\xef\x7a\xb9\x31\xe6\xae\xaa\x5c\x1c\x51\x81\xe1\x2d\x12\xe7\xa5\x96\x94\x60\xf7\x45\x87\x82\x04\x53\x9a\x2f\x9e\x88\x02\xd8\x71\x83\x9b\x87\xe8\x57\x1e\xda\xd8\x70\xd2\xd2\xa0\x3e\x89\x59\x3a\x68\x45\xef\x12\x09\xd0\x1b\x28\xa2\x9f\x0f\x47\x83\xd3\xbe\xa4\xbd\x83\xde\x4d\xc4\x64\xe6\x58\xaf\xdb\x06\x87\x6b\x82\xff\x5c\x21\xf1\xd6\x4d\xaf\xbb\x09\x0e\xa5\x89\xb2\xbb\x01\xe2\x00\xa1\x19\x20\x3f\xbd\xdd\xc6\xc0\xb0\x9c\x3a\x7c\x4e\x03\x83\x67\x42\x88\x52\x9a\xc4\x54\xbe\xa9\x26\xff\x70\x9c\x27\x52\x85\x56\x13\x83\x03\xeb\xa6\x34\xb9\xa0\xb5\xe7\xd5\x8c\x42\x8b\x91\x61\x20\x52\x33\x32\xf4\x52\xbb\x95\xe1\xb3\x22\xb6\x7d\x70\xed\x7b\xf6\xa8\x2b\x62\xc0\xf3\x36\xbc\x65\xda\xfd\x03\xf4\x0c\x12\x88\x97\xdf\x38\x40\xb1\x78\x25\xdc\xa6\xa0\x70\x57\x34\x52\x28\x8a\xec\x1b\x92\x61\x14\xfb\x80\xe9\x03\x80\x61\x18\xf0\x63\xca\x8c\x90\x16\xb1\x51\x88\x8c\xc2\x3c\x35\x7f\xde\x7c\x1d\x84\x46\xbe\xe3\x53\x1b\x18\x63\x6c\xd4\x20\x2e\x13\x94\xa8\x11\x50\xc2\x3b\xd1\xb3\x76\xa8\x0d\x47\x61\x7b\xfd\x9d\x4c\xb6\x27\x95\x7c\x49\xba\x22\xfb\x12\x7c\x03\x06\xcb\x21\xf7\xf4\xb2\xba\xd8\x33\xb0\xa8\x4a\x3d\xbd\xf0\x20\xf4\x5e\x96\xd0\xab\x4f\xb9\x7f\x7c\x0d\x6b\xe5\x89\x24\xc7\x0c\xc7\x39\x92\x27\x92\x54\xd6\xa5\x9c\x7e\x47\x22\xa4\x42\x28\x31\x5f\x1f\x04\x55\xf6\x6d\x55\x67\x69\xe8\x34\xaa\xdb\xc4\x7a\xb7\x6e\x9c\xa5\xe1\xe5\xe9\xd9\x0e\x3d\x6f\xdf\x3a\x4b\xc3\x5d\x42\xd4\xbb\x86\xb8\x71\x32\x48\xa9\xf3\x75\x8b\x4a\xf3\x27\x55\x27\x30\x0c\x0b\xb3\x02\x93\x64\x95\x0b\x9d\x12\xe6\xa9\xe3\x64\xbe\x28\xb1\x69\x93\xd3\x30\x1c\x28\x50\x3d\x06\xaa\xaa\x52\x6a\x15\xea\x7a\xa5\x8e\x4e\x55\xb9\xd4\x6a\xdc\x6c\x78\x2e\x7f\x73\x25\xb3\xd7\x13\x10\xe6\xa9\xd8\xea\x60\x8c\xdb\x89\xe2\x8b\x78\xaa\x79\x95\x0a\x67\x96\x69\xb1\xd3\xb3\x1e\x38\xeb\xf7\xbe\xaa\x12\xda\xfd\x3a\x40\x25\xf9\x5e\x85\x35\x46\x09\x0a\x0d\x62\x14\x9a\x8c\x15\x30\x2a\xd4\x69\xb7\xa1\xee\x82\x61\x38\x29\x20\x4c\x38\x88\x7d\x8b\x56\x75\xbe\x71\xb2\x84\x04\xce\x51\x34\x11\x93\xf9\x74\x2a\x47\xa5\x15\x9c\xac\x92\x08\xe6\xde\x23\x73\x5e\x8f\x00\x70\xfa\xe0\x67\xc0\x37\x7b\x20\xe1\x24\xa6\x73\xec\x4e\xd3\xd8\xf6\x0c\x68\xcb\x83\xdb\x21\x4a\xf3\x19\x8e\x5d\xb1\x4a\xb3\xcf\xe6\x63\xb3\xb7\xe8\x61\x4f\xd0\xc2\x18\x23\x92\x4f\xb2\xcc\x77\xf9\xb3\x71\xda\x08\xca\x9f\x61\xda\x98\x76\x4a\x67\x30\x44\x93\x65\xbe\x6a\x44\xb7\xe1\xaa\x30\x13\xc3\x98\x81\x12\x91\xd0\x09\x07\xbe\x86\xcd\x64\x68\x80\x9b\x4c\xd3\x49\x9e\xc2\xf0\x16\x93\xf9\x84\x50\x32\xc9\x08\xf4\xdd\x80\x6e\xa4\x2d\x10\x27\xbe\x26\xe2\xa5\xf5\x49\xb8\x58\x91\xdb\x49\x86\xff\xf2\xcd\x7e\x2b\x4c\x65\xec\x60\x72\x07\x71\x3e\x99\xd1\x74\x22\x6f\x7e\xed\x8a\x6c\x24\xf5\xc6\xe6\x80\x3d\x08\xa7\x68\x8e\xb3\x3c\x75\x5d\x7e\xd8\x0f\x7f\x2d\xe1\x1c\x4d\x92\x14\xcd\xf0\x7d\x23\xae\xfe\x65\x25\x41\xad\xe2\x78\x92\xa1\x30\x45\xcd\x1c\xe0\x87\x27\xe5\x62\x0e\x31\x41\x69\x36\x29\x64\xfc\xda\xaa\x6b\x77\x84\xce\xfe\x99\xd2\x38\x46\x4f\x04\x7f\x41\xb3\x7c\x6f\x90\x75\x7d\xfa\x14\x64\x21\x78\xdf\x60\x43\x82\x23\x94\xc4\xf4\x61\x4f\xf0\x68\x32\x8b\xd1\xfd\x84\xe7\xe0\xdd\x1b\x48\x44\xd6\xd9\x1d\xce\xc3\xc5\x9e\x20\xce\xa7\xc9\x1e\x20\xc5\xde\xcc\xc5\x7b\x11\x02\x1a\xf3\xc7\x74\x3e\xe1\x37\xe1\x77\x1c\x3b\xe3\x77\x31\x3b\xfb\x82\x28\xa6\x7c\x7f\x30\x71\x96\x63\xfa\x2c\x1a\x3c\xcb\x61\x1c\x4f\x78\x7f\xbb\xea\x19\x05\x2c\x49\x69\x83\x31\xd4\x34\xfc\xe5\x2a\x56\xd7\x08\x5c\x8d\x77\x1c\xb8\xd4\xb5\xbb\x0c\x39\x4a\x69\xc2\x27\xfb\xb9\xec\xf9\x9d\x0c\x42\x1a\xa1\x84\x46\x78\xf6\x4d\x60\x9b\xa5\x98\xae\xbf\x09\x4c\x6f\x57\x53\xf4\x0c\x88\xd2\x75\x36\x59\xa2\x25\x4d\x1f\x26\x31\x5e\xe2\x5d\xad\x97\x55\xc6\xcc\x2a\xbc\xc6\x31\x92\x0e\xa9\x34\x05\x76\x16\x01\xa5\x99\x95\xb8\x0e\xa5\x6e\x82\x68\x8a\xa6\x94\xe6\x13\xa9\x51\xef\x70\xbe\x98\xd0\x75\x33\x96\x7e\xa0\xcc\x01\x98\xb4\xb8\x69\xbb\x57\x87\x33\xa1\x69\x3e\xe1\x19\xa3\x5a\x39\x89\x6d\x52\x9a\x6d\x90\xe9\x91\x1f\x6f\x69\xac\xd5\xd2\x4f\x51\x3f\x54\x0b\x14\xed\x0c\x92\xe7\x28\x9b\x24\x28\x9d\x30\x81\xb5\x4f\xe8\xdc\x8c\x80\x61\x3e\x11\x61\xc2\xfd\xb8\xfd\xca\x63\x4b\x50\x8a\x69\x84\x43\xee\x5b\x4e\xe6\x31\x9d\xc2\x78\x82\xc9\x8c\x4e\xb2\x07\x52\x8d\x79\xd9\x3b\xb3\x2e\x2c\x67\x24\xad\xbc\x66\xa7\x21\xe3\x8f\xa5\xf1\x26\x46\x34\x2d\x5b\x85\x21\xca\xb2\xd9\x2a\x06\x21\x5d\x26\x31\x52\x67\x93\x1c\x41\x5c\xf5\xf3\x9d\xe6\xb3\x21\xb6\xd5\x20\x37\xbe\x9f\x58\x8b\x90\x6b\xc1\x70\x2e\x9f\x2f\x61\xe2\x88\x7e\xe3\xa0\x94\x80\x81\x10\xe6\xaa\x58\x9c\xb1\xab\xd6\xc9\x1e\xb2\x1c\x2d\x59\x1d\x63\xfb\xc8\x0a\x29\x50\x56\x36\xb8\x39\x7a\x7c\xec\x8c\xe9\x2d\x22\x5f\xbe\xa8\x1b\x90\xd2\x13\x0f\x92\x78\x35\xc7\xa4\xda\xd1\x0d\x29\x70\x2d\xcd\x60\x09\xf7\x04\xfc\x27\x10\x30\x1e\x4b\x92\xdc\x1c\xc5\x74\x2e\xb2\x45\xdd\x1c\xc9\x1e\xcf\x8a\x96\x17\x74\x7e\xc1\x8a\x58\xf7\xaf\xf4\x46\x30\xc1\x61\xc0\xac\xe2\x8c\xb5\x7a\x7c\xec\x9c\x26\x38\xfc\xc4\xfe\xfe\xf2\xe5\xd5\x0d\x79\x7c\x0c\x00\x9e\x01\x82\x40\xe7\x34\xc4\x97\xab\x38\xc7\x09\x8d\xc0\xcd\x91\x38\x67\x70\x04\xbe\x7c\x31\xa0\x85\x38\x58\xca\x4a\x0a\x5e\xd9\xac\x80\x88\x48\xc4\xda\x49\xe0\x9d\x2b\x2e\xe3\xbb\x68\x8d\x43\x34\x44\x21\x25\x04\x85\xf9\x6f\x10\xe7\x63\xbc\x44\x74\x95\x57\x3a\x11\x2a\x21\x88\x78\xfd\x20\x55\x0d\x82\x3b\x88\xf3\x20\x17\x4d\x64\xe7\x4d\x90\xab\x18\x55\xe8\x92\xa2\x59\x8a\xb2\x05\x83\x59\xd0\x94\xd1\x67\x28\xbe\x33\x20\x76\x82\x66\xab\x69\xb1\x22\x83\x08\xc5\xf0\x41\xa3\xee\x48\x2b\xec\xb2\x32\x8e\x85\x09\x61\x52\x74\x1d\xde\xa2\x74\x02\xa3\x7f\xaf\xb2\xdc\x8e\x03\xab\x70\xca\xcb\xed\xb8\xac\x32\x94\x32\x7e\x36\x5a\x5f\x67\x28\xed\x43\x17\xfa\xcc\x40\x80\x39\x0a\x6e\xd1\x43\x90\xc0\x7c\x21\x9a\x1e\xaf\xb2\xf4\x38\xa6\x21\x8c\x8f\x51\x1e\x1e\x73\x7e\x45\x69\x7e\xcc\x3a\xe8\xdc\xa2\x87\x2a\xa4\x10\x07\x22\x80\x53\xf4\x3c\xe2\x8b\xa7\x17\x21\x92\xe3\x19\x46\x69\xbd\xf7\x10\x07\xeb\xe5\x32\x60\xeb\x5b\xb4\xfa\xb5\xc8\xa4\xc7\xab\x6a\xfc\xf8\x79\xb9\xec\xd2\x25\xc4\x84\xdf\x21\xae\xf3\x21\x83\x13\xf1\x0a\x45\xff\x45\x13\xd9\x31\x9f\xf9\x38\x43\xad\x1a\x3b\x90\xaf\xf3\xb3\x44\xae\x5c\x7c\x1e\x04\xcb\xb5\xad\x23\x59\x36\x6d\x85\xa8\x05\x48\x33\xb2\x95\x89\xe2\x26\x5b\x90\x23\x02\x49\xc9\x67\x63\xfe\xa7\xd6\x56\x8e\xee\x8c\xb1\x50\x29\x04\x4c\x70\xf1\x54\x9b\xbe\x3e\x25\xc8\x43\xa6\x4f\x49\x72\x95\xe4\x78\x89\xff\x12\xdb\x5b\x0e\x90\x8b\x24\x09\xa8\x56\x4f\x2e\xa6\x4a\x6b\x87\x78\x61\xfd\xf4\x29\x5b\xf4\x1f\x68\x3a\x12\xa1\xe6\xf3\x64\x88\x60\xc4\xd4\x61\xe6\xea\x93\x50\x21\x50\x66\x34\x0d\x64\x80\x3a\x40\x49\x90\xaa\x76\x12\x07\x0f\x64\x0f\x3e\xb2\xf2\xc7\x14\x26\x8b\x73\x12\x25\x14\x93\xfc\x34\x8a\xb8\x34\x00\x37\x47\xaf\xab\xc8\x28\x04\xe6\xac\x41\x80\x64\x8b\x00\x46\x91\x92\x2e\xe0\x44\x57\x06\xa2\x95\x2e\x78\x7c\x3d\x1a\xf2\xc7\xe8\x90\x8f\xf2\x5f\x0c\x71\x6e\xbf\x82\x1f\x30\x89\xd0\xfd\x2b\xf0\x03\xce\xd1\x12\x9c\xfc\xd3\x05\x56\x7e\xce\xc0\x97\x2f\x72\xd4\xa2\xe5\x97\x2f\xaf\x1e\x1f\x39\x39\x1e\x81\x06\xf5\xf6\x15\xf8\x61\x0d\x4e\xfe\x29\xe1\x32\x86\x7b\x7c\x04\x3f\xdc\xf2\x7f\x09\x5e\x64\x15\xc4\x77\x3c\x03\xe8\x4f\x56\x78\x73\x24\xc4\x9a\x06\x54\x11\xfb\x8b\xfc\xf0\x47\x39\x2e\xf7\x64\x9c\x46\x91\x7a\x08\x7c\xc4\x03\xfb\xd9\x98\x0e\x23\xa1\x6a\x5d\xdc\xc1\x28\x8f\x64\xa3\x40\x6c\x07\x64\x41\x4e\x83\x54\xb6\x53\xe2\xde\x03\xda\xc3\x1e\xf2\x54\xe0\x40\xda\x96\x23\x02\xf3\x8f\xdc\xb2\xec\x91\x19\x1d\x3d\x10\xe7\xda\x93\x56\x69\xa0\xac\xd2\x80\x59\xa5\x81\xb0\x4a\x03\x66\x95\x06\xcc\x2a\x95\xc8\x35\xf6\xe2\xd6\x8e\xa6\x0a\x8e\x50\x8c\x72\xe4\x51\xbd\x5d\x5e\x41\xd7\xb9\x1a\xa7\xc5\x08\x25\xbc\xad\x17\xd9\x11\xab\xc6\x20\x38\xd0\x2c\x01\xca\x58\x54\xc0\x03\x5b\xb2\x75\x4f\x7c\xeb\xb1\x4f\xd5\xea\xec\x5b\x20\x03\x57\x85\xe4\xe3\x35\x07\xe2\xa3\x5b\xfe\xf1\x43\x02\x16\xc9\x9e\xd0\x68\x1a\x05\x91\xd4\x1d\x2b\x82\x8f\x73\x12\x68\xf2\xf4\xf8\x7d\x37\xa8\x58\x8c\x56\x99\xcd\x00\x05\xd3\xc8\xa2\x24\x99\x8f\xb4\x9f\x2e\x18\x24\xd5\x87\x53\x3d\x28\xf9\x93\x2c\x1e\x32\xa6\x17\x3d\x7a\x26\x48\x78\x79\x0d\xe3\x42\x86\x92\x10\x26\xa2\xfd\x3a\x86\x1c\x67\x29\x2d\x3e\xc7\x90\x58\x2d\x02\xd5\x54\xee\x0f\x06\x6a\x7f\xd0\x14\x6d\x97\xa2\xb4\x27\x0b\xab\x46\x15\x9b\x96\x69\x1a\xa8\xfd\xc0\x80\x50\xc2\x19\x4e\x02\x19\xbc\x1f\x8e\x65\x51\x9f\x12\xc6\x64\x16\x00\xeb\x74\x56\x55\x91\x9f\x87\x1f\x0c\x2d\x69\x36\x88\xdf\xca\x05\xc1\xeb\x5e\xbc\xbd\x5a\xd9\xeb\xa1\xfb\x3c\x90\xfe\x80\x52\x2c\xbc\xb2\x12\x1e\x32\x9b\x65\xcd\x26\x6f\x62\xc4\x75\x3a\xd3\x31\xd5\x2c\x3e\x8f\x45\xa1\xb5\xb9\x5a\xa3\x34\x86\x0f\x96\xa6\x55\x2e\x91\x07\x90\x4b\xdd\xc4\xcf\x0c\xf1\xb1\x54\x75\x8b\xb4\x35\x44\xca\xb7\xb6\xa6\x46\x7d\x84\x02\x58\x69\xd9\xb6\xe1\xf6\xff\x54\x2a\x49\xac\x99\x4b\x66\x23\xc8\x36\x5d\x14\xb0\x4c\x0a\x99\xcc\xb4\x84\xf7\x7c\xe1\x65\x41\xb6\x0e\x85\x56\x97\xd3\x7e\x09\xef\xfb\xac\x60\xb4\x0e\xb9\x52\xad\x70\x61\xe1\x98\x06\x1b\x10\xdc\xee\xc2\xd6\x6b\xee\x7d\x7a\xf6\x31\x45\x0a\x5b\xf7\x0c\x35\xf4\x52\x01\x60\x4e\x4b\x75\x6a\x80\xa6\x13\x8a\xec\x64\xdf\x08\xa5\xa4\xc2\xdb\x9a\x50\x66\xfb\xf6\x74\xfa\xb6\xf8\xe9\xf9\xa9\x74\xbb\x9a\xa2\x6f\x8c\x48\x5f\x63\xd1\x85\x30\xcf\xe3\x03\xa1\x5a\x13\x2a\x49\xe9\x12\xe5\x0b\xb4\xca\x0e\xc4\x6a\x24\x96\x3c\xad\x70\xa0\x54\x41\x29\x37\xc9\x94\xb9\x8d\x93\x20\xa1\x34\x6e\x08\x01\x14\xc1\x8c\xde\x60\x40\x69\xec\xf3\xf8\x6f\x8e\xc4\x5d\xeb\xc2\xa5\x67\x20\x3a\x23\xf6\x8d\xfb\xf6\xaf\xc0\xcd\x11\x22\x51\xa5\xfc\x9c\x23\x7f\x04\x0a\x9f\xde\x30\x88\x84\x13\x1e\x64\x39\xcc\x71\xd8\x8c\x2a\xaf\x66\xba\xe4\x1e\x8c\x1f\x79\xcb\x2f\xde\x9e\xa3\x07\x02\x97\x2d\xba\xee\x8a\x7a\xfb\xe9\x9b\x7b\xca\x6a\x5f\x2b\xe0\xfb\x5a\xa5\x4b\x46\x60\x7e\x26\x8b\x46\xac\xa4\xe6\x71\x08\x62\x05\x1b\xcf\x33\x6f\xf6\xf4\xb3\x0d\x3c\xd3\xcd\x1c\xe2\xb6\xf8\x0e\x68\xf4\x75\x78\x92\x21\x29\x62\x42\x01\x3f\x22\x1a\x64\xf8\x2f\xa4\xfc\x4c\x1a\x89\xa9\x3f\x63\x25\x23\xfc\x17\xaa\x5a\xf8\xcc\x1f\xb7\x4d\x8d\xb9\x4c\xad\x52\x4c\x43\xb4\xd3\xe7\x57\xb3\xe4\x5c\x49\x7c\x5f\xd9\x1a\x19\xe3\x37\x9b\x71\x32\x94\x3b\x56\x85\xc8\x28\xff\xfc\xc3\x8d\xbb\x8c\x8a\x59\x70\x17\x6c\xaa\x45\x0e\x05\x45\xcc\x8e\x2a\x8b\x4d\x1c\x6b\x57\xce\x0e\x7f\x07\x5b\x52\x54\xdc\xe3\x55\xc1\xc7\x11\x2b\x51\xc2\x8e\xff\x6f\x41\xb3\x3c\xe0\xe7\xb3\xfc\xdb\x67\x30\x49\xcc\x30\x50\x3b\x6f\xcf\x54\x0d\xe7\xc9\x50\x9e\x8e\xb5\x04\xfd\x79\xf8\x58\x94\x16\xf4\x2e\x1b\x78\x1d\xf3\x4a\x53\xb2\x8a\x63\x77\x3c\xf3\xa9\x36\xea\x78\x68\x72\x11\x26\x43\x44\xd0\xdd\x25\xbc\x1f\xa2\x3c\x7d\x38\xa3\x2b\x92\x8b\x98\x75\xa5\x8f\x68\x11\x32\xac\x09\xba\x0b\x98\xbf\x9b\xb2\xda\x41\xc8\xaa\xab\x00\xa4\x15\x56\x43\xe7\x5a\x8c\xdc\xd6\x9f\x1e\xf3\x2e\xaa\x7b\x40\x8a\x30\xe5\x25\x8d\x90\x65\xc2\x64\x98\x73\x49\xa3\x52\xbc\x96\x0d\xbc\x13\x56\x69\x5a\x9f\xb0\xb2\x6a\x7d\xdf\xf6\x13\xcd\xf2\x53\xc6\xb1\xee\x6d\xdb\x10\x8b\x70\x69\x99\x3c\x5f\x97\xff\xc5\x4d\xa8\xc3\x0e\xdb\x8b\xd9\x61\x6b\xb5\x15\xfa\x22\x63\x7b\x1b\x87\x3e\x95\x0a\x58\xc7\x90\x98\x41\x5a\x11\xe3\x35\x2a\x33\xf7\x18\x26\x58\xaf\xcc\x58\xf2\x74\xd0\x2b\x2a\x3f\xd7\x8e\x61\xd9\xbe\x54\xe1\xac\x65\xa3\x9d\xb1\x9b\x35\x27\xd4\x66\xd1\x9b\xb7\x33\xae\x9f\x77\xb3\x5b\x49\x08\x13\x6d\xfd\x73\x15\x1a\xc2\x64\xfc\x60\x31\x15\xd9\xd4\x63\x32\x4b\xa1\x3e\x3d\x3d\xf6\xa1\x3a\x39\x9d\xcb\xf1\x75\x65\x89\x5e\x8e\xaf\xc1\x6b\x93\xae\xc5\xbd\xa1\x60\x99\xaf\x54\xc8\x93\x35\xac\xaf\xf3\xca\x21\x91\xcb\xf1\xf5\x27\x04\xa3\x21\xa5\xcb\x7a\x37\xaa\xc4\xb6\x77\x6a\x74\x19\x2c\x10\x8c\x52\x2a\x76\x30\x44\xdf\x25\x54\x27\x0e\x25\xb0\x90\xe0\x80\xa0\xbc\xdc\xe4\x6b\xe2\x0c\x19\xb9\xf7\x9b\xa0\x73\x98\xa3\x3b\xf8\x50\x31\x32\x3f\x8a\xaf\x85\x19\x5a\x72\x88\x6e\xa9\x2a\x5e\x10\x75\x52\xba\xca\xd5\xae\x2d\x53\x89\xea\xd0\xc8\xeb\x0e\xff\xef\xf8\xb5\xa8\x36\xbf\xf3\xf4\x05\xbe\xfc\x61\xe7\x9c\xef\x31\xc6\x5f\x6d\xed\x8b\xea\x1f\x82\xf3\x87\xe0\xfc\xcb\x09\x3b\x1f\x82\xf3\x87\xe0\xfc\x21\x38\x7f\x08\xce\xbf\x7c\x62\x1d\x82\xf3\x6d\x82\xf3\x2a\x08\x16\x44\x29\x4d\x18\xcd\x54\x94\x43\x64\x07\x12\x61\xb0\x2f\xb6\x16\xed\xc3\x66\xb6\xee\x8a\xfb\x63\x37\xea\xc4\x63\x84\x06\x34\xea\xcd\x3c\x3d\x06\x74\x9d\x05\x8b\xbb\x80\xce\x66\x31\x85\x2a\xc2\x34\x4a\x31\x5d\xab\x56\x5a\x84\x4e\xc6\x4a\x5a\xc4\xe8\xd4\xa8\xab\x8c\x64\x86\x4f\x44\x88\xa6\x16\x40\x71\x99\x6d\xa2\x7b\x09\x57\x72\x12\xfa\x53\x85\x86\xce\x78\x56\x86\xd1\xe8\xc2\xee\x6a\x72\x77\x37\x13\x47\x91\xc0\xcd\x51\x19\x2a\x92\x47\xf1\xa2\x9b\x23\x7b\xf0\x89\xf5\x30\x5c\x91\x8f\xd3\xe4\x4c\x71\x86\x83\x6b\x65\xc0\x3e\xcb\x71\x98\x89\x83\x9e\x45\x47\x80\xf5\x44\x67\x33\x66\xb4\x37\x84\xb8\x38\x39\x44\xae\x6c\x1e\x6b\xe3\x81\xb1\x31\x5e\xf2\x6e\xdf\x54\xa3\x69\xac\xd7\x9c\x15\x96\x3d\xca\x55\x28\xc2\x78\x7a\x98\xad\x09\xfe\x97\x2f\x55\xe4\x8c\x55\x42\x73\xc6\x5a\xb2\x13\x99\x30\x50\x8e\xac\x88\x5d\xbe\x32\xdb\xc0\xec\x81\x84\xff\xce\xa4\x5b\x5f\x69\x66\x62\x24\xff\xa9\x1a\x08\xee\x8b\x18\x4a\x4e\x76\x58\xd7\x65\xf6\x66\x5d\xae\xb3\x86\xfe\x0a\xde\x6f\xcd\x0b\xf3\x69\xc2\x03\xeb\xf5\x3b\x20\x8f\xb5\x40\x53\xf3\x51\x6e\xb3\x41\xab\xa0\xd0\xb7\x10\x12\xf4\x45\xcc\xcc\x80\x0e\x87\xfd\x71\x9a\x14\xa1\x1b\xed\xdc\x56\x0d\xb5\x16\x4d\x6b\x57\x28\xec\xae\x9e\xff\xae\x8d\xa5\xb2\x7e\x77\xa3\x76\x73\xc3\xde\x64\x0f\x77\x37\x04\xb4\x5b\x38\xbb\x85\x4e\x9d\x3c\x4d\xe9\x2d\x97\x0e\x22\x60\xc7\xea\xbe\x17\x9f\x6a\x88\x89\x06\x22\xbb\x4d\x15\x2d\x86\x44\x76\xcc\xbb\x0a\x44\x0d\x2b\x36\x06\x08\xd6\xa6\x01\x46\x98\xe6\x2e\x18\xd0\xd1\x3e\x84\x9e\x56\x39\x55\x73\x6a\x65\xc9\x26\x33\x27\xa6\xab\x88\x9f\x68\x76\x92\x33\x14\xc9\x31\x03\x6d\xb2\xeb\xfd\xd8\xb7\xef\x0a\xce\x64\x6d\xf8\x1f\x62\xb9\x59\x99\x44\xb4\x91\x2b\x5e\xc4\x70\xf5\xda\xce\x7d\xbe\x5a\x3c\xcc\xfc\xb0\xf5\x0d\x3c\xbe\x87\xa1\x7c\xf9\x97\x7a\x01\xaf\xbe\x4b\x3a\x22\x90\x27\x00\x1c\x42\x32\x47\x95\x5d\x52\x73\x1b\xd6\xa8\x29\xb7\x61\x55\x3d\x7e\xe5\x35\x48\xd8\xb4\xeb\x3b\x4c\xaa\x49\x36\x40\x69\x5f\xee\x33\x79\x49\x3c\xe2\x69\x6d\x9c\x37\x1c\xd9\x1a\xe7\x4c\xff\x1c\x84\x2d\xfa\x57\x92\xc5\x10\x5c\xbf\xa2\x07\xc1\x3f\xbc\x34\x4c\x73\xa3\xf4\x8c\x93\x51\x8c\x54\xd3\x8c\x75\xb1\xbe\x31\x19\x74\xe1\xc0\x49\x81\x67\x38\x84\x39\xca\x9e\x95\x24\x42\xc4\x94\x02\x53\x98\x96\x72\xd4\x00\x54\x25\x58\xbb\x8a\x8a\xc4\x5a\x45\x49\xe5\x82\x8e\x72\x91\xba\xa8\xc6\x37\x66\x4e\x43\xb1\x33\xdb\xee\x9a\xac\xda\x0c\x7b\x06\xea\x79\xf9\x7e\x53\xd4\xcb\xb3\x00\xcf\x86\xba\xc6\xc8\xd7\x19\x92\x49\x90\x87\x34\x46\x4e\x8e\x4e\xa7\x30\xec\xc0\x55\xbe\xa0\xa9\xdc\xa7\xb2\x24\xf9\x2c\xe1\x54\xc6\xfd\xd4\x52\xb1\x05\x53\xf0\xc7\x85\x4f\x6e\x48\x00\x60\x82\x3f\xa6\x74\x95\xa8\x24\x9c\xea\xb5\x57\x33\xa1\x66\x20\x32\xfb\xde\x14\x79\x3a\xf9\xa4\xc8\xbf\x13\x1a\xc9\x7f\x15\x5e\xac\xf8\xb3\xb8\xa2\x26\x0a\xd7\xa8\x28\x49\x51\x12\xb3\xe5\x8d\x29\x29\xd1\x32\x5b\x41\xc1\x33\xfc\xe3\x1a\xa5\x53\x85\x48\x2c\x53\x92\x06\xe0\x0e\xe6\xe1\x42\xfc\x73\x8e\xe4\xb7\xa4\xfc\x16\xa6\x08\xe6\x48\xfc\x5b\x24\x5b\x14\xff\x16\x77\xa1\x36\x19\xbb\x98\x94\x25\x4c\x36\x44\x66\x1b\x0c\x6c\xa9\x63\x1d\x58\xf1\x2c\xb2\xea\x6b\x54\x64\x91\xad\x21\xf9\xe3\x7f\xff\x68\xef\xcb\xc9\xc6\x8e\x0e\x05\x47\xa7\x34\x56\x53\xaa\x7d\x99\x62\x12\x61\x32\xb7\x77\xae\x79\x00\xfa\x3d\x2f\xd3\x5f\xb7\x61\x28\x6f\x8a\x75\x78\xd4\xd8\x89\x18\x2f\x95\x7c\x94\xc4\x90\x28\xf4\xf8\xf7\xe2\xf5\xfc\xd6\x64\x81\x21\xee\x14\x61\xea\x7a\x6f\x30\xc4\x75\xc0\xf5\xcf\x4e\x42\x28\x83\xcc\xd2\xb3\x5c\xd9\x98\xcc\xbd\x13\x21\xab\xe9\x0f\x67\xb5\x63\x4a\x6d\x1e\xae\x33\x74\x1a\xe2\x53\xf2\x70\xb7\x40\x29\x3a\x1b\x76\x9b\x27\x83\xd1\x05\xde\xd9\x51\x42\xc9\x3c\x2b\x16\x0b\x3f\xd8\xb8\x01\x5a\x9b\x76\xc6\x63\x5d\xb2\xbb\xf9\x34\xc9\x78\xee\xf4\xda\xdf\xc7\x22\xdf\xc5\x36\xf3\x00\x93\x24\xb3\x77\x2d\x72\xd1\x2d\x6b\x92\x2c\x43\xea\x43\x04\xd1\x92\x92\xf2\x6f\x8e\xcc\x6c\x15\xab\x2f\xad\x58\xb0\x51\x06\x2b\xd1\xea\x18\xa4\x92\x36\x36\xd8\xf2\x8e\x1e\x63\xb2\x90\xa6\x88\x66\x9d\x90\x2e\xed\x1d\xca\x5e\x64\x8b\x5a\x2f\x35\x41\xe7\x9a\x48\x71\x8b\xcf\xda\x03\x81\xb9\xe2\xe3\xe3\x19\x26\x30\xc6\x7f\x95\x9a\x40\x2f\x2c\x07\x2a\x08\xc1\x9c\x35\xe7\xb8\xab\xd2\xd7\x2f\xa7\xbd\xf2\xb8\x11\x7d\x71\x1d\xb6\x40\xc7\x44\xdb\x82\x6f\x00\xd4\x15\xe4\xe7\x50\x27\xf2\x31\x74\x2b\xf6\x95\x87\xcd\xf7\x87\x89\xa6\x89\x5d\x48\xa9\x77\x33\x5d\x02\xae\xfa\x4a\x6e\x7b\xe4\x7c\xbc\xaf\xbd\x65\x68\x17\x63\xb5\x17\x09\xf7\xd7\xaf\x4b\x9a\x15\xd1\xfb\xb6\xe2\x81\x49\xa7\x0e\x4d\x10\xc9\x16\x78\x96\x33\x2d\xe1\x15\x54\x1b\xf3\x5a\xbd\xc7\x08\x67\x21\x5d\xa3\xf4\x41\xa9\x25\x1b\xe9\xf4\x1d\x0c\xb7\xa8\xa8\x75\xeb\x61\x90\x84\xc6\x5b\x29\x40\x77\x67\xbb\x2c\xa3\x88\x64\x3e\x9c\x44\xf1\x13\xa2\xe5\xf1\x15\xbf\x49\x7f\x44\xf7\xf4\xbe\x86\x3f\xe2\xf6\x41\x36\x36\xa6\x8c\x0d\xbe\xea\x2e\x94\x5f\x32\x38\xe4\x50\xe1\x2b\xe9\xb8\xe8\x2c\x22\xc5\x6b\xa3\x21\xb3\x77\x6f\xe2\x6b\x58\x97\xba\xc1\x27\xfe\xed\xb0\x7b\x6e\x8e\xfe\xbb\xb2\x69\xfb\x35\xcc\xec\xfd\x9a\x94\xbb\xd9\xd0\xed\x4c\xaf\x1b\xb7\x35\xb3\x85\xb1\xf2\x4d\x19\x22\xea\x19\x2c\xfb\x3a\xac\x3d\x1e\x18\xd4\x5f\xd6\x7a\xaa\x09\xaa\x58\x8d\xac\x22\xdf\x1f\xb2\x5a\xbe\x2e\x4a\x6c\x6b\xf9\xfe\x6d\x54\xfe\xfe\xcc\x31\x29\x5c\x6a\xe1\xce\x0d\xb5\xef\x7b\x11\x29\xd9\x3c\x8e\xbb\x8b\x9e\x4e\x69\x8c\x86\x68\xc6\x1b\x2b\x7a\x78\x30\x67\xd5\x2c\x66\x43\x0b\x34\xb3\x95\x78\xaf\x8d\x2b\x73\x7b\x10\x78\x4f\x41\xeb\x67\x9c\x07\x33\x28\xfd\x62\xe7\x41\x47\x73\xfb\x79\xd8\x34\x02\x6f\x79\xfd\x2a\xc9\x34\x92\x77\x79\x40\x64\xe4\xd9\xfe\xaa\x74\xde\xae\xdb\xa7\xb7\x5b\x8b\x27\x91\x84\x3c\x1d\xe5\x29\xcc\xd1\x5c\x65\x4d\x16\x09\x4e\x87\x34\x8e\x31\x99\x5f\x17\x12\xb7\xf2\x64\xfa\x92\x09\xa1\x0b\xf3\x19\x3b\xef\xc0\xdb\x19\xd4\x39\x5a\x26\x71\xf9\x9a\x77\xed\xad\xa7\xda\xc3\x79\x8d\x7d\xb6\xe9\x95\xd3\x99\x10\x9a\x73\x16\xd5\xc1\x97\x87\x29\xd9\x72\xcb\xc2\x14\x32\xe2\xa8\xed\x13\x57\xbd\x84\xa6\x39\xab\xf5\xcb\xbb\x37\x3f\xa9\x5a\xc6\x3b\x54\x0c\x41\x79\x3d\x43\x7f\xef\x4b\x14\x0c\x7a\xdd\xfa\xc7\xde\xe0\xcc\xfc\x98\x19\x4c\xdf\x6f\x62\x78\x3d\x52\xbd\x84\x73\x34\x58\xc5\xb1\xd8\xb5\xac\x1c\xa7\xc1\x66\xa9\x4e\x0c\xf5\x92\xd9\xe3\x63\x15\x86\xf5\xd2\x4a\x4e\x63\x94\xd6\x28\x1a\x14\x4f\x53\x9d\x80\xf3\x7b\x9c\xe5\xc5\x0c\x30\xc3\xfc\xcc\x96\x14\x5c\xf5\x5b\x3c\x99\x71\xa3\x9d\x15\xe0\xf8\xaa\x5b\xa4\x67\x04\x77\x79\x8d\x02\x8e\x79\xb0\xa0\x18\x9c\x38\x2d\x66\x0e\x45\x7c\x33\x1b\x64\x28\x5c\xa5\x38\xe7\xf0\xd0\x7d\x7e\x52\xdd\x54\x1b\x14\xf9\xcc\x9b\x8e\xd2\x31\x1e\x51\x75\xd5\x4c\x3a\xce\x60\x86\x30\x81\x53\x1c\x63\xfb\xdb\x61\x91\xfd\x69\xec\xd1\xef\xa3\xc9\x69\xf7\xb2\xd7\xd7\x0b\xd7\x34\x5e\x2d\xd1\x25\xdf\x6f\xaa\xb4\xd2\x88\x1a\x4c\xeb\xcf\xb0\x2f\x59\x9b\x01\xcc\x17\x27\xe0\x78\x49\xf2\xe3\xa2\x9a\xe9\x0c\x89\x93\x22\xfc\x5c\x66\x8a\x29\xa7\x54\x0c\xed\x99\x2d\x13\xbd\x82\xe0\x57\x21\xf2\x44\x1e\xb8\x30\xc5\x39\x0e\x61\x5c\x1e\x85\xe2\x77\xaf\x84\xc3\x55\xb2\xc5\x27\xb6\x40\x74\x48\x5f\x8a\x13\xab\x9e\x8e\xac\xf2\xa1\x3c\x72\x55\x42\x78\xd4\x13\x77\x56\x87\x54\x9d\x56\xf7\x88\xd4\x99\x9a\xca\xa0\x6a\xa7\x30\xe5\xe8\x08\xde\xa2\x2b\x18\x62\x36\x29\xaa\xc4\x7f\x81\xcc\x9a\x6c\x3f\x68\x23\x3d\x2b\x2b\x8c\xd1\x7f\xb7\xc5\x25\x87\x4f\x53\xf0\x7f\xf8\x85\x71\x73\x6e\x2f\xf9\x7b\x03\x17\x78\x89\x73\xf0\x5f\x9e\x1a\x43\xf4\xe7\x0a\x65\x39\xf8\x2f\x13\x87\xfa\x73\x89\xe2\xc7\xdf\x2f\xc8\xca\xe5\xeb\xef\xb8\x7e\xa8\x5a\x3c\x83\x20\xef\xad\x35\x36\xf6\x9e\xcf\xf6\x80\x72\x80\xa9\x4b\x88\x54\x8c\xbe\xc5\x80\x14\x9d\xb6\x1c\x92\xd6\x7c\xb7\x41\x59\x00\x39\xef\x3a\x7e\xf3\x62\x57\x15\xf6\xcf\xc7\xee\x42\xd6\x72\x30\x1e\x9e\x9e\x9d\xbb\x9a\x0e\x4f\x7f\xd3\x8b\x10\x59\x3b\x64\xf8\xaf\xd7\xef\xcf\x87\xfd\xf3\xf1\xf9\x68\xd2\xbf\xea\x9e\x4f\xfa\xa7\x97\x35\xa0\x6b\x18\xaf\xd0\x87\x94\x2e\x2d\xc3\x98\x61\x14\x47\xca\x7a\xb7\x16\x0a\x4d\xc0\x6c\x98\x0e\x93\xd6\x4c\x02\xd9\x51\x19\x9f\xf7\x4f\xfb\x63\x6b\xe7\xb5\xe3\xc0\xad\x0f\x21\x7b\x4f\x64\xd9\xb0\xe0\x54\x38\x1f\x7c\x74\xe2\x51\x11\x79\x22\xe8\xea\xe1\xf0\x6d\x01\xb7\xba\xd5\x61\xf6\x5e\x67\x4c\xd5\xf9\xd5\xe0\xc3\xc5\xf9\xff\x9b\x5c\x5e\x75\xed\xb3\x7b\x02\xa8\x38\x43\xfd\x82\xc6\xa1\x5f\x96\xe6\xef\x2b\xc9\xd4\xbf\x8d\x53\x78\x79\x7d\x31\xbe\x1e\x39\xf0\xab\xad\x63\x8d\x43\x64\x07\x32\x37\xb6\xba\x04\xdd\xd4\x5d\xb7\x37\x3a\x7d\x7f\x71\x3e\xf9\xed\xb4\x37\x9e\x7c\xb8\x1a\x4e\xfa\xe7\xe3\xdf\xae\x86\xbf\x36\x23\xe0\xa1\x72\xf7\x7a\x78\x3a\xee\x5d\xf5\xdb\x42\xe5\xeb\xa3\x2b\x1f\x4e\x34\x07\xe0\x51\x07\x4f\x60\xe4\xb9\x60\x30\xef\xb3\x0d\x90\x7a\x3d\x05\x85\x19\x17\x6b\x58\x7b\x34\x45\x07\x52\x9e\x17\xaf\x55\xd4\xa1\xa4\x2b\xef\x78\x6a\xc5\x1b\xb4\x2d\x31\x70\x42\x91\x17\x87\x18\x30\xe5\x92\xf3\x69\x68\x07\x16\xe5\xe1\xb1\x71\xf5\x88\xae\xb3\xe3\x29\xcc\x10\xa7\x5c\x27\x72\x63\x1e\x6c\xd9\x9b\xb9\x54\x8f\xed\x1d\xac\x61\x1a\xd3\xb9\xda\x66\x72\x01\x5e\x43\x06\x78\x7e\x6c\xab\x97\x22\x18\x5d\x91\xf8\xc1\xf4\x55\x6d\xbd\xd4\x3d\x70\x5f\x5f\xee\xda\x6d\x7b\xc4\xd3\x88\x86\xb7\xf5\xe7\x7a\x6a\xbd\xe1\xe9\xb1\xbd\x66\xb5\x27\x4d\xe6\x98\x79\x8f\x84\xa4\xa9\x99\x5c\x0a\x9b\x68\x21\xce\xcf\xb6\xc2\xa4\xa8\xeb\x74\x20\x3e\x89\x58\x02\xc9\x3e\x73\x96\xf0\x48\xba\xca\xf2\x38\x26\xac\x55\x15\x0b\x8d\xd5\xd2\x15\x09\xac\x75\x7c\x34\x57\xe3\x48\x69\x02\xe7\x50\xbc\x0b\xc4\x50\x1c\xd3\x42\xb7\xef\x47\x41\x88\xe7\xfa\x82\xb6\x62\xa9\x56\xdd\x2a\x4b\x63\xbc\x46\x04\x65\xd9\x20\xa5\xd3\xea\x7b\x4d\x33\x88\xe3\x55\x8a\xc6\x8b\x14\x65\x0b\x1a\x47\x27\xe0\xcd\x6b\xb3\xc6\x22\xcf\x93\x8f\x96\x57\x5e\x13\x81\x46\xb9\xb5\x67\x14\xf2\x60\xd1\x3f\x5e\xff\xf2\xba\x5a\xc2\x5f\x76\x47\x27\xe0\xd3\x78\x3c\x30\xcb\xf8\x1e\x26\x8c\xf9\x45\xb7\x11\x0a\x29\x89\xb2\x13\xf0\xe6\xa7\x0a\x04\x91\x8a\xbf\x28\x7f\x57\x29\x96\x2f\x31\xe9\xe3\x31\x2b\xc8\xac\xfa\x05\x80\xb7\xaf\xeb\xbe\xa3\x2e\xc5\xda\x19\xab\xc3\xf3\xf7\x57\x57\xe3\xc9\x6f\xbd\xf1\xa7\xc9\xd5\x67\x97\x86\x2f\x43\x6c\x1b\x5f\x5a\x2c\xbb\x1a\x8d\x2e\x7c\xd6\x52\x71\x4f\xd2\xce\x0b\x86\xdf\x2b\x6f\x64\xee\xcf\xf3\xd5\x6e\xed\xd5\x7c\xde\x5a\xd9\xae\xde\xae\xa3\xb3\x26\x3f\xce\xdd\xec\x6b\x78\xb8\x4e\xaa\x6c\x3c\x8c\x67\xf4\x6a\x81\xe5\xf7\x6d\x7a\xba\x56\x67\xb6\x85\xed\x79\xb0\xf8\xb6\xb7\xf8\x64\x8b\x7d\xf5\xa7\xba\x32\x45\xaa\x58\x1e\x23\x7e\xc5\xd7\xcf\x64\x15\xb4\xc4\xad\xe0\xed\x44\x66\x48\x97\x4b\x48\xa2\x13\xf0\xaf\x9b\xa3\xe3\x29\x26\xc7\xd9\xe2\xe6\xe8\x0f\xbd\x06\x4c\xe7\x99\x28\x2e\x47\xc5\x2a\xc6\x70\x45\xc2\x45\x20\x70\x10\x28\x74\x6a\x8d\xf7\x10\xe8\xd7\x69\xbc\xbf\x05\xc3\x2f\xde\xd5\x56\x4a\x61\xde\x0e\xa8\xbc\x7c\xa5\x4f\x0a\xfb\xe8\xb4\x82\x50\x9e\xe2\xb0\x66\x54\x54\x00\xfe\xf2\xee\xed\x4f\x7a\x95\x1c\xa5\x4b\x4c\xb8\x75\x76\x89\xb2\x8c\xd1\x45\x30\x50\x84\xd6\xc7\x5a\x21\xcf\xf5\xe0\x6f\x27\xe9\xfb\x01\xc7\x68\x43\xc1\x60\x70\xd1\x8e\x3c\x5e\x67\xc5\x5d\x04\x90\x2f\x99\x81\xcc\xd7\xa9\x22\x2d\xd6\xf5\xb1\x0c\x61\x96\x07\xe2\xc0\xbc\x73\x79\x5c\xb2\x4a\x4f\xb5\x3a\x38\x06\x02\x81\xad\x17\x87\x61\xae\x70\x6c\xc5\x8e\x77\xcd\x5c\xa9\x95\xed\x6a\xae\x38\x3a\x6b\x52\xd0\xee\x66\x5f\xc3\x5c\x71\x52\x65\xe3\x61\x3c\x6b\x10\x7e\x5b\xf3\xc3\x2f\x40\x5b\x9a\x26\x7f\x53\x73\xa2\x36\xd6\x14\xf1\x4b\xdd\x6a\xfd\x9d\xc6\x77\xf0\xa1\x90\xe1\x82\x08\x8e\x0d\xf0\x6a\x7c\x8e\x1f\x18\x60\x9d\x56\xe8\x2d\xf0\xa0\x49\x6e\x87\x52\xf5\x98\xfd\x60\x50\x1e\xd6\xc1\x58\x26\xc2\x0f\xc5\xa8\xec\x21\xa6\x1f\x8a\x51\xb9\x5d\x64\x2c\x54\x79\x00\x2a\x10\x1b\x5e\xe2\x2d\x7f\x38\x47\xcb\xba\xde\x0f\x00\xbf\x00\x5d\x4b\xf2\x5d\xb7\x05\x04\xea\x65\xc5\x8e\x49\xfe\x4d\x2c\x4c\xb4\x4c\xf2\x87\x2e\xae\xbe\x20\xbe\x44\x11\x5e\x2d\x4f\x80\x58\xe7\x75\xd0\xf6\xc8\x5e\xe3\x7c\x59\xe2\x7c\x6d\xa2\x78\xed\xe0\xda\xda\x36\x45\xec\x5a\x40\xd6\xe2\x77\x6d\x22\x74\xf6\x3a\xd7\xd3\x15\xc9\x57\xf6\x58\x9e\x2f\x8e\xd7\x12\xbf\x45\x98\xd8\x05\xf9\x5e\x60\xdb\x23\x86\x15\x61\xdb\xd6\xc5\x78\xda\xc5\x63\xc9\xbf\xe5\x5a\x3e\x5c\x9e\x76\xca\xd8\x5d\xa9\xa4\x74\x5b\xd9\x13\x04\x6d\x65\x77\xee\x14\x66\x0d\x1a\xa3\xa7\x8d\xb2\x4d\x05\x65\xdb\x44\x48\xfd\xec\xe9\x89\x8f\x36\x73\x12\xc3\x44\x00\x38\xf6\x67\x5b\xd9\xe5\x4c\x24\x4d\x10\x59\x67\x77\x58\x1e\xdf\xfe\xee\x8e\x46\x56\xc6\xdf\x06\xbf\x7d\x9d\x90\xb4\x74\xdd\xee\xa0\xe4\x77\x70\x8c\x71\xab\x43\x8c\xe0\xab\x9f\x8c\xbb\x2a\xa7\x74\xe7\x03\x72\x06\x7b\x1c\xce\xc9\x6d\xb0\x86\x6a\x31\x30\x44\xd6\x23\x5e\x67\x5f\x47\x52\x1b\xbd\x68\x60\xfc\x74\xa7\xb0\x73\xf5\x79\xa4\xb9\xb4\xf5\xe7\x75\x34\x37\xb6\x0d\x14\xe9\x4f\x56\xe1\x7c\xe3\x31\x6d\x55\x38\xfa\x7d\x34\xb9\xbc\xea\x5e\x5f\x58\x0f\x68\xb1\xd2\x7e\xcf\x7e\x78\xab\x37\x38\x9b\x5c\x5c\x9d\x19\xc7\x3c\xdc\x1b\x62\x57\x9f\x47\x93\xe1\x75\xbf\xdb\x1b\x56\x61\xc9\x7d\x2a\xd3\xa1\xe5\xba\xd9\xc1\x7b\x7f\x53\xff\xd9\x05\xc5\xf0\x4b\x7d\x50\x6a\x15\x75\x28\x4b\x1a\xad\x64\xe6\x17\x17\x24\x66\x58\x5b\xab\x1d\x4e\x4e\x6c\x73\x72\xa2\x2c\xf1\xed\xb7\xa3\x7b\xcd\xd4\x50\x3f\x15\x19\xb5\x2d\xbb\x6a\x28\x54\xc2\x0e\xe8\x3a\xeb\x64\x8b\x1d\x63\x2f\x16\x7e\xfb\x1b\x04\x4d\x2c\x4c\xed\x87\x64\x5d\x09\xdf\x77\x94\xa1\xd1\x27\x2a\xee\x41\xbf\xbc\x14\x77\xa0\xa5\xd9\xdf\x7c\x3d\x52\xf9\x05\xea\x92\xb7\x3c\x4d\x92\x59\x3d\x28\x54\xde\xea\xdd\xd6\x79\x32\xe9\xd4\x6e\x1c\x4d\xbe\x53\xdb\x8e\x5a\x4c\x0a\x68\xed\x8a\xd5\xe1\xef\xd3\x13\x6b\xe1\x5f\xe9\x08\x3c\xeb\x35\x31\xb5\x53\x32\x2e\x7d\x2c\xe0\xf2\xbc\x1e\x1f\x41\x4e\x7f\x87\xcb\xd8\xac\xfe\x1f\x80\x49\x84\x48\x0e\xde\x15\xb0\x99\x7f\xe4\xf7\xdf\x02\x80\x66\x33\x14\xe6\x27\xa0\x4f\xcf\xef\x51\xb8\xca\x35\x9d\xe4\xba\x9d\xa6\x83\xb2\x1c\xa9\xd2\x61\x8e\xc2\x05\x62\x12\xb2\x6c\xca\x63\x5d\xcc\x99\xeb\xdc\x16\x4f\xde\x75\x30\x3d\x26\x34\x0f\x98\x72\x7c\x68\xee\xbf\x65\x07\x41\x4a\xe3\x6a\x2f\x4b\xc8\x9c\x2c\x5f\x17\x72\x52\x40\x25\xdc\xf4\x35\xdc\xd8\xf2\x79\xbc\x9d\xbd\xd8\x2a\x63\x3f\x91\x13\x6b\x1b\xdd\xb7\xe1\xc1\xda\x44\x4f\xf5\x46\x65\x51\xe5\xa9\x6e\x7d\x95\x3d\xf8\xef\x7e\x55\xeb\xed\xf5\x06\x98\x1d\x89\x8d\xb6\x58\x9d\x20\xbe\xfa\x6d\x30\x17\xe5\x76\x1a\xde\x57\xba\x19\xe6\x76\xa3\x7f\x3b\x1d\x9f\x7d\xe2\x57\x9f\x46\x03\xcb\xa5\xaa\xe2\x5c\x69\x35\xe6\xa1\xda\x9f\x9e\xf5\x26\xa3\xfe\xe9\xb8\x05\x08\xe7\xa3\x2a\x1e\xb8\x1f\x2f\xae\xde\x9f\x5e\xf4\xfa\x1f\xae\xdc\xd7\xb3\x4e\xe4\xfb\xda\x65\xae\x1a\x1f\xd0\x61\xf7\xec\xaa\xff\xa1\xf7\xd1\x0f\x2f\xa5\xab\x1c\x93\xb9\x78\xdc\x40\x6d\xb1\x38\xa0\x8e\x7e\x1f\x8d\xcf\x2f\xf7\x43\x80\x36\xb7\x52\x0a\x96\x3a\xdc\x6a\x78\x81\xbe\xb9\xa9\x36\x8a\x54\xee\xdb\x4d\x12\x4a\xf3\xe3\xb6\x8e\xff\x53\x1f\xb4\x7f\x53\x2d\x79\xb9\x07\xed\xcb\x78\x44\xab\x3b\x90\x81\x99\x74\x1e\xa5\xb9\x41\x85\x8c\x5b\xe1\x15\xaa\x89\x8f\xfd\xa6\x64\xf5\x9e\x2d\xe4\x26\xf6\x68\xec\xb6\xf6\x54\x80\x09\xbf\x8d\x9c\x78\xda\x6d\xea\x1a\x06\xf5\xf0\x93\x60\xbd\xb2\x62\x7d\xa7\xba\xed\xed\x85\xa2\xd7\xda\xcb\x3b\xae\x5e\xcb\x8a\x1d\xe7\xdd\x96\xef\x3b\x46\xe3\x5d\x3d\xf5\x00\x0e\x4f\xa3\xa5\x85\x70\x06\x34\xea\x7d\xb0\x46\x6f\x30\x41\x79\xc0\x9f\xbe\xad\x84\x6b\xf4\xd7\x1d\x89\x10\x48\xbc\x19\x4a\xe6\x35\x7e\xe4\x40\xe8\x8a\xb3\x3e\x4e\x60\x14\xa5\x27\xa0\x7c\x36\xb7\xe5\x6b\x27\xdc\x50\xe4\x6f\x7d\x58\x11\x15\x76\x58\xc0\xcd\xe0\x20\x15\xd5\xda\x84\x32\x8a\x30\x83\xb6\xbf\x14\x00\xf9\xca\x6c\x41\x7c\x65\xe5\x35\x19\xb1\xbc\xba\x6c\x2c\x0d\xbf\xb6\x30\xaa\x56\xab\x08\x25\x69\x97\xca\x8e\x5e\xfd\x2f\x00\x80\x78\xce\xe9\x5d\xe7\x75\xe7\x6d\xe7\xa7\xa3\x13\x70\x54\x8d\xcd\xd5\x13\x47\xea\x69\xb4\x78\xb6\xc8\xa1\xf4\x21\xba\x45\xb6\x48\x57\xe4\xae\x24\x58\x91\x35\xbd\xc3\xb8\x27\xcc\xd3\x58\xa3\xdd\x5c\xa4\xc3\x2a\x4b\x24\xe5\xe5\xd8\x45\xdf\xd5\xdd\xdc\x22\xdb\x3a\xe0\xc9\xdf\x7e\x75\x57\xba\xc0\x2a\x63\x47\x12\xaf\x52\x18\xbb\x50\x93\x81\x23\x4c\xe6\xab\x18\xa6\x8e\x5a\x3c\x28\x17\x52\x46\xdc\xe2\x2d\x7f\x7e\x3d\x41\x06\x11\x8b\x7c\x72\x62\x79\xbe\x81\x71\xb2\x80\x52\xa1\x71\x21\x14\xe9\xa6\x44\x96\xd3\x94\xbb\x93\xda\xa7\xd5\xb4\xee\xa4\xc9\x15\x02\x1e\xe5\xec\x72\x95\x5c\x46\xe6\x68\x82\xc8\xe9\xa0\xf7\xf9\xed\xc8\xfc\xce\x98\x29\x0b\x53\x9c\xe4\x6a\xe1\xd6\x07\x04\xe8\x1d\xc9\x40\xbe\x40\x20\xc6\x33\x14\x3e\x84\x31\x02\x74\xc6\x4c\x68\x40\x45\x2e\x31\x80\x09\x2f\x97\xdb\xd1\x25\xf0\x24\x65\x40\x6a\x5b\x8a\x1a\x43\x55\x14\x39\xe7\xc9\x2c\x4f\x79\xfe\xb5\xf2\x3b\x9f\xe0\x76\x55\x6b\x41\x49\xbd\xba\xc0\xd7\xd0\xad\x49\x6d\x93\xc4\xa0\x88\x95\x5f\x46\x09\x0a\x01\x4f\x85\x8a\x04\x61\x22\x94\xe1\x14\x45\x1c\x1a\x98\xd1\x94\x13\xe7\x4a\x10\xa7\x22\x5f\xed\x14\x61\xbf\x59\x0c\xd7\xb4\x7a\x30\xd1\x37\x54\x50\xe8\xed\x8d\x1a\x39\x49\x51\x0a\xd9\x8d\x88\xc1\x9b\x19\xe4\x90\x06\xdb\x6c\x15\x83\x90\x2e\x93\x18\xf1\xf7\xfe\x19\xcf\xb8\x97\x68\x0b\x02\x59\x11\x2c\x47\x34\xa5\x34\x46\x90\xb4\x19\x2c\xf3\xf8\xd9\x84\x19\x21\x1e\x36\x79\xe5\xdf\x66\x43\x8f\xde\x28\x16\x79\x9b\xdd\x89\xe7\xdb\x75\xb0\xec\xaa\xec\x4f\x72\x97\xb9\x30\x3b\x32\x65\xa6\x55\x56\xb3\xef\x36\x49\xad\xde\x21\xfd\x50\x95\xce\x45\x41\x5d\x22\x9b\xe9\x37\x75\x29\x5c\xbe\x72\xba\xa1\xe4\xdd\x44\xe6\xb6\x15\xa7\xdf\xa4\xc4\x73\x55\xf5\xae\x46\x31\x19\xce\xd5\x08\xd3\x14\x3e\xd4\x0b\xed\x6e\x82\x1f\x89\x46\x54\xc4\xaf\xe0\xfe\x5e\xd7\x51\xc3\x2f\x4a\xc5\x8f\xd9\x97\xdb\xb7\xc6\x33\xce\x5c\x3b\x00\x10\xe6\xeb\xf6\x00\x96\x30\xdc\x11\x42\x42\xa3\x1d\x07\xc1\x20\xb8\x66\xa9\x4d\xfb\x75\x8e\xaa\x7e\x68\x53\xf3\xed\x24\xfa\x66\x1b\x0c\xba\x34\xcd\xc4\x16\x52\x99\x2a\xfc\x78\xfd\x66\x8a\x72\x58\xba\x3c\x3a\x18\xa7\xf9\x6b\x6c\x4b\xc8\xf0\xe0\x9b\xd7\xea\x77\x43\x44\x24\xb3\x2b\xbd\x05\x20\xf6\x8c\x88\xa1\x94\x6f\x8e\xc6\x0b\x9c\x15\xfb\x1e\x20\xe4\x78\xe3\x0c\xac\x32\x14\x29\x63\x24\x38\xeb\xf7\xca\xd0\xbe\xf1\xc2\x99\xda\xb7\x7a\x2a\x5d\x51\x49\x1e\xde\x29\x72\x5b\x5b\x55\x86\x28\xb1\x29\x8d\x11\x81\xf9\x47\x0e\xa7\x47\x66\xb4\xaa\x39\xcc\xd2\xba\xfa\xb0\xa4\x30\xd7\x75\x48\x25\x6a\xfc\x02\x14\x89\x31\xc7\xe6\xe8\xd8\xe4\x32\x33\x4b\xb4\xe1\x53\xcc\xad\x2e\x73\x88\xe0\x74\xd0\xfb\xc6\xf5\x92\x47\xe4\xcf\x0b\x6a\xd8\x04\x0d\x8c\x22\xce\x90\x30\x1e\xf8\xb5\x86\x5b\x1d\xb5\x50\x38\x5c\xd8\x9e\x46\x51\x8a\x32\x77\x95\x36\xf2\x4e\xc4\x56\x79\xec\xc1\x07\xc8\x87\x6c\x6b\x94\xc5\x0f\x59\x8f\x80\x99\xbf\x25\xbc\xc7\xcb\xd5\xf2\x04\xbc\xfb\xf9\xe7\xb7\x3f\x37\xd6\xc6\x44\xd4\xae\x45\x87\xab\x3f\x41\x0f\x4c\x72\x34\xaf\x87\xd3\xcd\x1f\x3f\x69\xf6\xf2\x11\x6d\x32\x5d\xf4\x5a\x0e\xbb\x48\xfc\xd8\x12\xee\xb9\x55\x5f\x3b\x5e\x12\x40\xae\xb1\x6f\x86\xdb\xc2\x11\x1b\xd0\x7d\x9f\x39\xd0\x06\x98\x45\x3b\xeb\xbf\x40\x5b\x48\xae\x1a\xe5\x0a\x71\xd5\x10\xe3\xf6\x97\x5e\xe3\xc8\x57\xa1\x1c\xae\xbd\x56\xd3\x44\x7b\xa7\xd8\xdd\xd8\x41\x9e\xe0\xff\x67\xef\x7f\x9b\xdb\xc6\x91\x7d\x71\xfc\xf9\xef\x55\xa0\x92\xad\xca\xcc\xfe\x2c\x39\x99\x3f\xd9\x19\x6f\x9d\x07\x8e\xed\x24\xaa\x75\x6c\x5d\x4b\xc9\x9c\xad\xf5\x5e\x2f\x44\x42\x12\x8e\x29\x80\x4b\x52\xb2\xb5\xd9\xb9\x35\x2f\xe3\x9e\xaa\x7b\xde\xdc\xbc\x92\x6f\xa1\x01\x90\x20\x09\x90\x94\x2c\x3b\x71\x02\x6d\xd5\x8e\x43\xfc\x6f\x34\x1a\x8d\x46\xf7\x07\xa6\x94\xdb\xd5\x19\xbe\xbc\x95\x58\x0e\xef\x7c\x22\x37\x32\xf9\x40\x9d\x38\xb5\xdb\x76\xde\xe6\x8e\xb4\x1c\x9e\x77\xad\x5e\x14\xaf\x5f\xdc\x49\xbb\x38\x15\xd5\xb8\x94\x8b\x3c\xd1\xae\x5b\x94\x1f\xe0\xa8\xaa\x16\x79\xea\xe7\xa0\x59\x3c\x4a\x55\xa0\xc6\xc3\xf9\x7c\xb8\x8d\x71\x26\xff\x56\xe6\xb6\x85\x16\x30\xfd\xba\x84\x6d\x2f\x75\x6f\xc5\xad\x5b\x70\xcc\xc3\x46\x79\xda\xe9\x78\x95\x33\xcf\xdd\xaa\x69\xda\x24\xda\x2b\xc8\x25\x66\x93\xbe\xd1\xa6\xb4\x74\x54\x59\x42\x92\x36\xef\x8c\x5d\xda\x92\xbf\x2e\x7b\x9f\x99\xb3\x71\xc7\x46\xfa\x8e\xb4\x4b\x4d\xed\x6d\xb6\x2a\x00\xdd\x2b\x6b\xd9\x73\x11\x92\xf7\x50\xa9\x73\xcf\x44\xf9\x2d\x62\x53\x7a\xd3\xae\x8b\x3a\xea\x46\x2d\x74\x6e\x1c\x49\x4f\x2f\x87\xc6\x44\x65\xa0\x75\xe4\x70\x68\x05\xbd\x12\x87\xbb\xf7\x7b\xd7\xe0\x9c\xc3\x72\xee\xf7\x85\xcc\xf9\x0c\x77\x59\xfd\xc4\xd2\x9d\xf6\x58\xa9\x61\xd9\x36\x58\x99\x62\xdf\x5d\xe3\xd2\x1c\x94\xf7\xd6\x38\xaf\x51\x6d\xac\x47\xc5\x2d\xd4\x0e\x76\xd5\x9d\x5e\xb6\xd9\xe7\xf1\x51\x6e\xc8\x5b\xd9\x8c\x2b\xc1\x0a\xdd\xea\x6b\xa9\x13\xd9\x22\x05\xba\xd7\x8c\xaa\xca\xc5\xb3\x11\x74\x52\xdd\x58\x0d\x79\x98\x3e\x73\xec\x9f\x6d\x3b\x57\x67\x2b\x04\xea\x20\xd4\x59\xcb\x8e\xdf\x5c\xbe\x89\x06\xce\x3d\xe7\x4e\x86\x7c\x7b\x4f\x9c\xdb\xf8\xce\xdb\xda\xe8\x84\xb4\x05\x33\x77\x9a\xdc\x72\xf7\xee\xfd\x4a\xee\x6e\x47\xa0\x33\x1e\x12\xdb\xe9\x47\x7f\xb7\xdf\xc9\x59\xcf\x3c\x3a\xc1\x1f\x77\x3a\xb1\xe4\x46\x96\x4f\x75\xc1\x63\xb7\x39\x36\xad\xbd\x62\xb3\x34\xe7\xde\xfc\x75\x16\x58\x0d\x17\xee\x4d\x03\xbd\x8b\xdd\xe2\x4c\xb1\x54\x27\x8b\xc5\x99\xc1\x7f\x6d\x8d\x3f\xa0\x16\x95\x3f\x99\xba\xf5\x1a\xbd\x08\x8f\x0c\x4f\xc6\x62\x8d\xea\xef\xf5\x35\x5a\x7a\xa6\xd5\x5c\xa3\x3a\xc1\xaf\xd1\x4e\x0c\xba\xd1\x1a\xd5\x8f\xa4\x92\x30\x5d\x4e\x18\xb1\x00\x42\x6c\xbb\x81\x36\xee\x94\xcb\x94\x24\x0f\xd8\xe0\xd7\xbd\x98\x2b\x0f\xcf\xf6\x8d\x87\x6a\xad\x8b\x5a\xa7\x59\xb7\x5e\x59\x97\xfd\x70\x54\x4a\xb4\x6c\xc2\xf5\x07\x70\x4b\x5b\xb1\x91\xbc\xde\x72\xad\x6f\x75\x67\xa9\x5f\x8e\x91\xfd\x56\x69\x13\x31\xcb\x09\x9e\x4e\x69\x80\xa6\x11\xbf\x41\x38\x43\x83\x21\x52\x1b\x1a\xe2\x09\xd8\xf9\x51\x44\x56\x24\xfa\x72\xc5\x03\x8e\xe3\x88\x92\x70\xcc\x2d\xab\xb1\xe5\x54\x91\x1f\x03\x46\xee\xa3\x54\x87\x6a\x90\x0e\x15\x3f\xb9\x8d\x05\xe5\x2b\xf8\x4c\xd5\xdf\x0e\x6f\x1e\xaf\xc9\x7a\x87\x16\xba\x3c\x14\x77\x77\x55\x82\x17\x46\xbb\x15\xb1\x9b\xad\x71\x93\x86\x3b\xdb\x1b\x3b\x58\xf6\x54\x0c\x44\x73\x06\x6e\x75\xc0\xb4\x75\x69\x07\x57\x9b\x36\x60\x82\xfa\x6f\xa3\x23\x33\xea\x4c\xde\xf6\x51\xb4\x7a\x9f\xf1\xb0\x65\xc5\x95\x1d\xa9\x23\x21\xdc\x28\x9b\x81\x58\x9b\x26\x7c\x21\x5d\x34\xf0\x82\x14\x4b\xd8\xaf\x5c\xbf\x72\x2d\x3f\xbf\x72\x37\x1a\x45\x17\x1b\xbc\x3d\x95\xcc\x1c\xa7\xe8\xf2\x65\x23\xc9\x84\x16\x2a\x33\xa3\x64\x19\x91\x14\x11\xc1\x6a\x38\x23\x21\x9a\xe0\x94\x84\x88\xcb\xf8\x07\x9e\x84\x24\x41\x94\xa1\x9b\x39\x0d\xe6\xe2\xd3\x1a\xe1\x84\xa0\x94\x64\xfd\x4d\xf4\xf1\x76\xcb\x22\xd8\x27\x9d\xe4\xad\x38\xed\x83\x2d\x53\x68\x28\x74\x4a\x95\x96\x2d\x2b\x40\x19\x47\x13\xa2\xd5\x11\x3d\x0a\x31\x44\x4b\x77\x4d\x7a\x36\x3a\xd0\x32\x3c\x89\xc8\x29\x9f\xcd\x28\x73\xbb\xd2\x96\xba\x78\x62\x16\xc9\x5d\x17\x33\x8e\x28\x0b\x21\x7e\x12\xd1\x29\x02\x04\x4b\x94\xce\xf9\x32\x0a\xd1\x8c\x30\xb1\x02\x08\x8a\xf8\x2c\xd5\x01\x51\xa2\x04\x78\x48\xb6\xf4\xde\x69\xb7\x40\x8e\x07\x26\x1c\xdd\x56\x9c\x01\x1a\x2b\x66\xa1\x98\xb6\x8c\x07\x3c\x92\xd2\x9f\x84\xfb\x21\x61\x82\xae\x93\x75\x41\x57\x34\x98\xa2\x6c\x4e\x53\xf9\x2c\x28\x8c\x95\xa5\xa2\x9e\x44\x42\x53\xef\xc9\x54\x91\x57\x2e\x3c\x92\x8a\xea\x64\xb7\x9c\xe3\x6a\x13\x69\x36\xc5\x5c\xea\xe5\x43\xd1\x79\x43\x37\x9f\x13\xcb\x78\x32\x2e\xfb\x22\x58\x1b\x37\xf3\x47\xe7\xfd\x84\xb0\x10\xde\xd6\x68\x96\xac\x15\x36\x09\x55\x77\x8b\xe3\x22\x61\xa1\x98\x83\xbc\xdf\x10\x99\xb7\x87\x26\x44\x70\x92\xce\x40\x59\x10\x2d\x43\x12\xa2\x1b\x9a\xcd\x55\xac\x12\x64\xec\xa3\x41\x86\x02\xcc\x10\x67\xd1\x5a\x2c\x05\xbd\x4a\x42\x74\x33\x27\x62\xb0\x6c\xb9\x20\x09\x0d\xb0\x9c\x01\x31\x5f\x79\x96\x06\x1a\x88\xdf\x94\x27\x0b\x9c\x81\xff\x58\xf9\xf1\x90\xfa\xaf\xb3\xa3\x59\xdc\x4e\x31\xcc\xd6\xe7\xf6\x87\x68\x8b\x5f\x6f\x13\x1f\xbc\xde\x06\x1b\x61\x69\xba\xc6\x7a\x4e\x94\x5c\x99\xd1\x15\x61\x39\x53\xf5\x11\xb8\x2d\x0b\xe2\x4f\x08\x22\x34\x9b\x93\xa4\x44\x6f\x9e\x80\xa6\x14\xe6\x75\x60\x34\xe4\xa1\x65\x01\x31\x9e\x89\x5a\x57\x34\x24\xa1\x5a\x3e\xd5\x95\x23\x75\x2e\x60\x6a\xb6\x5c\x4c\x48\xe2\x5e\x4a\xf2\x77\xdb\x2b\x20\x80\x7a\x94\x65\x3d\x9e\xf4\x24\x01\xec\x6f\xf6\x99\x3f\x3d\xc2\x56\xd6\x56\x4e\xdd\xe3\xa3\xe1\xa6\x54\xd5\x0b\xf3\x9b\xf1\xd1\x70\x0f\xbd\x3f\x1e\xee\x09\x72\x8d\x8e\xc6\xc3\x6f\xf5\xde\xa3\x0e\xd9\x8b\x65\x9a\x49\x72\x00\xe5\x04\xad\x72\x06\xde\x33\x09\xa9\xba\x93\x8a\xc5\x3e\x3e\x1a\xb6\xd0\x67\x57\x9b\x77\x07\x05\x24\xb3\x9d\x92\x2d\x84\xb9\x10\x22\x33\x9f\xfb\x50\x6c\x19\x9a\x08\x34\x05\x56\x67\xa1\x72\x88\x17\xe2\x2f\xe2\x38\x4c\xd5\x85\xa4\x96\xd1\x9a\x18\x16\x26\x03\xe1\x2c\x88\xbc\xa0\x69\x4a\xd9\xcc\x25\xa7\x43\x92\x66\xea\x85\x9f\xed\xc5\x75\x47\x11\x4a\xe3\x57\x11\x0f\xae\x37\x11\xa1\x83\x21\x14\xa9\x48\xfc\xc1\x50\x39\x5f\x92\x74\x5f\xe5\x10\x09\x38\x2b\xd1\x53\xa8\x0b\xfb\xe2\x28\xd3\xcf\xab\x09\x30\x13\x1c\x35\x01\x15\x07\xe1\x14\xc5\x38\xc9\xb4\x3c\x3e\xd4\x56\x0e\x4d\xd4\xa3\x52\x6e\x21\x8b\x85\xb4\x42\x1c\x96\xbe\xbe\x1a\x6e\x61\xbc\xce\xa7\x15\x84\x02\xda\x10\x06\xe3\xa0\xcf\xd1\xe0\xf8\x42\x0c\x1a\x2b\xde\x46\x09\x11\xa7\x2c\xc2\x32\xbd\x9f\x0c\x86\x48\x8e\xfd\x03\x8e\x68\x88\xc8\x2d\x5e\xc4\x42\x25\x14\x7a\xde\xe5\x93\x17\x3f\x7f\xd7\x7f\xf1\xf2\xa7\xfe\x8b\xfe\x8b\xfd\xef\x7e\xb8\x7c\x22\x38\xe6\xf2\xc9\x77\xcf\x9f\xbf\x38\x08\x27\x3f\x1f\x1c\xec\xbf\xfc\xa1\x0a\x1e\x63\xfb\x6d\x72\xf4\x20\xb7\x01\x89\xdb\x9d\xa4\xab\x7b\x29\x94\x52\x43\x8d\x68\x00\x96\x56\x31\x7a\x35\xf1\x4a\xcf\x52\xf3\x55\xdd\x40\x31\xdb\x05\x1d\x74\x27\xe4\xb9\x0d\xdd\xd0\x28\x12\x8d\x25\xe4\xbf\xe4\x9a\xa4\xd3\x42\x85\xe6\xcb\x2c\xa5\x21\x81\x29\x80\x49\xca\x43\xf0\x9b\x7f\x5d\x0f\x7b\x9b\xd1\xbc\xf3\x81\xaf\xe3\x91\x0f\xde\x30\xa3\x61\xcb\x4e\xdc\xed\x44\xd7\xdd\x46\xa8\x7f\x15\xa5\x56\x94\x01\x59\x36\xe4\xa1\xb2\x5d\xe4\xc6\xe2\x42\x1c\x68\x81\xa9\xd7\xed\x9e\x58\xfe\x85\x60\xa5\x0c\x8d\xf9\xfe\x6b\x51\x18\x56\x7f\x0a\x32\x35\x5f\xf7\xc3\xc2\x9c\xb2\x27\xdb\x11\x93\xac\xeb\x6e\x6c\x93\x14\x29\xba\x8a\x8e\xa2\x45\x2d\x15\xb3\x71\xc1\x97\x27\xb7\x19\x49\x18\x8e\x4e\x58\x46\xb3\xf5\x68\xe7\x72\x68\x03\x6b\x8d\xfe\x75\xe7\xda\x0d\xfa\x21\x7f\x5d\xac\x38\xfa\xb7\xd9\x92\x40\x9b\x58\x75\xf4\xaf\xc4\x7b\x39\xe2\x40\x2e\x75\x85\x78\xba\x26\xeb\x14\x25\x24\x92\x9b\xea\x9c\xc6\x42\x45\xc1\x30\xd1\x7c\xaa\x84\x47\x5f\x89\xa1\x1c\xaa\x01\xf8\x69\xc0\xf6\xd0\x19\xcf\xc4\x7f\xd4\x2b\x03\x42\x03\x3c\xe6\x24\x3d\xe3\x19\x7c\x69\x99\xe5\xbb\x90\xa2\xa3\x35\xca\x4a\x08\x25\x11\x85\x74\x66\x52\xc8\x88\xa1\xaa\x2d\x49\x8f\x78\x20\xb7\xd9\x9c\x68\x34\x45\x03\x26\x18\x5a\x0d\x59\x24\xaa\x8a\x64\x15\xa0\x0b\x4e\x08\x62\x9c\xf5\x40\x9f\xb1\xd6\xa1\x28\xc5\x93\x12\xa1\x1a\xaa\x53\x55\x81\x3a\x2f\x53\x84\x62\x44\xe2\x08\x07\x24\x44\xe1\x12\x3a\x8d\x35\x92\xad\xd0\x49\x49\x32\x23\x28\x06\xa5\xb4\x2b\x79\xba\xaf\x08\xf9\xdb\x7c\xbe\x36\x90\xe9\xf2\xd7\x51\xb2\xcb\x5f\xab\x51\xaf\xc8\xd8\xc5\xb8\x57\xee\x72\xfb\x96\x60\xe6\xee\x34\xc0\x6e\x46\x3f\xfd\xdb\xd8\xf8\x57\xee\xd1\x66\x9b\x6e\x97\xd1\x76\xcd\xd9\x6e\xd6\xd7\x3f\xdb\x26\x69\x6c\x90\xa6\x4d\x25\x2d\x76\xa8\xda\xa6\x98\x2b\xc5\xfb\x4d\xdb\x63\x6d\x87\x7b\xf8\x4d\xb2\x5e\xde\x6f\x88\x7e\x43\xbc\x0b\x29\xfc\x86\xe8\x37\xc4\xe2\xe7\x37\xc4\x86\x1e\x7d\xaa\x0d\x71\x47\x06\xbb\xd7\xff\x3c\x76\x5f\x4e\x75\x12\xd0\x40\xed\x33\x87\x9b\x6a\xf1\xeb\xb2\x08\xba\x52\xb4\x03\x2f\xb4\x32\x78\xcf\xe8\x78\x33\xfd\xdc\x34\x6e\x89\x76\x2a\x5d\xaf\xd9\xb3\xc8\x09\xb0\xa5\x6d\x19\xaf\x84\xb4\x27\x43\xc7\xbb\x52\xed\xf7\xe0\x2f\x4b\x3f\xc3\xcb\x52\xb8\xd8\x92\x33\x63\xa8\x93\x7d\x34\x92\x99\x27\x64\xa7\xd7\xa9\x42\x4b\xbd\xb3\xfd\x9e\x27\x74\x46\x19\xce\x88\xd2\xb6\xb7\xb5\xdf\xbb\x8c\xf6\x2a\xbe\xcb\xdb\xeb\xbd\xbd\xde\xdb\xeb\xbd\xbd\xfe\x73\xb7\xd7\xfb\xa3\xb6\xf5\xe7\x8f\xda\xf9\xcf\x1f\xb5\xfd\x51\xbb\xf8\xf9\xa3\x76\x43\x8f\xbc\xed\xd9\xdb\x9e\x9b\x7f\x25\xea\x57\xcb\x4b\x8d\x2c\xa2\x29\x6c\x08\x80\x43\x50\x0c\x47\xad\xd2\x85\xd8\x4c\xfa\xe0\xb9\x65\x7e\x01\x8a\x1e\x9e\x1d\xb7\x7a\x12\x22\xbf\x2b\xfb\x5d\xd9\xef\xca\x95\x9f\xdf\x95\x1b\xba\xec\x77\xe5\xed\x72\xee\xc4\x00\xee\x43\x08\x7c\x08\x81\x0f\x21\xb0\x64\xf6\x21\x04\x3e\x84\x20\xff\x3d\x58\x08\xc1\xd6\x97\x5e\x12\x33\x61\xbc\x8e\xad\x72\xc8\x2d\x30\x4b\xc4\x56\xf0\x07\xa2\x16\xad\xae\x95\x65\x65\x49\x96\x42\x77\x24\x5b\xc3\x5f\x34\x45\x13\x92\xe1\x1e\x00\x22\x08\xd9\xf9\xa2\xff\x93\x7b\x8c\x5b\x40\x86\xe8\x67\x03\xda\x6e\xf6\xf4\x73\x06\x30\xf5\xf9\xcd\x98\xbc\xc3\x53\xc2\xb3\x3c\x10\xa9\x9e\xaf\x88\x60\x06\x79\xca\x33\xd3\xa9\xf5\xb6\xa5\x51\xa4\x40\x62\x4b\x2f\x81\x66\xb9\x2c\x17\xfd\x70\xb6\x62\xa3\x95\x13\x97\x51\x14\x29\x7f\xb3\x33\xd5\xc6\xaf\x50\xa0\x2e\x50\x3a\x06\x9e\x0a\x0e\xc4\x01\x99\x84\x67\x35\x08\x91\xe2\x61\x5e\x0d\x0c\xa2\xbf\x04\x9c\x49\x5d\x2c\x3d\x40\x7f\xfb\xbb\xf8\x22\xea\x27\xe1\x07\x8d\xf9\x01\x5f\xef\x15\x2b\x25\x64\xa9\x0d\x2e\x45\x7e\x76\x22\xa6\x18\xc9\x36\xd0\x94\x63\x96\x36\xe2\xa6\x54\xd3\xeb\xd0\x29\xf5\x6e\x29\xfa\xe7\xe8\x29\x95\x1c\x1b\x03\xa8\x88\xc5\xab\xea\xdc\x0a\x44\x25\x64\xa9\x46\x70\x41\xe6\x28\x91\x47\x45\x31\x7f\x1e\x15\xa5\xf4\xf3\xd8\x0a\xae\x9f\xc7\x56\xd8\x68\x14\x1e\x15\xe5\x73\x5d\xb9\x9f\xbb\x95\x74\xe7\x92\xc5\x5b\x43\xad\x3f\x2f\x70\x37\xeb\xf8\xa3\x16\xb8\x9f\x31\x98\x4d\x8b\xbc\xcc\xf8\xeb\x7f\x86\x2e\x1f\xcc\xae\xb2\xbd\xcd\x1f\xb8\x7d\x2d\x6c\x32\x4d\x0d\x6c\xd4\xe1\x39\xa3\x66\x2f\xe0\xe6\x69\x6e\xa8\xbe\xa7\x28\xb9\x09\x6f\xf8\xa3\xea\x26\x47\xd5\x7f\xf2\xb4\x74\x46\xfd\x27\x4f\xed\xa7\xd3\x7f\x4a\xd8\xeb\xfa\xb9\xf4\x7f\xf1\xd4\x7e\x20\xcd\x13\xea\x27\x51\xa3\xd5\xea\x11\x54\x27\xb9\xcf\x9e\xb0\xe7\x27\x2b\xf2\x9e\x5d\x33\x7e\xc3\x5e\xc3\xa5\x7e\xfe\x58\xa4\x7f\x05\xc1\x99\x75\x87\x4f\xe1\x36\xa8\xc1\x9b\xbf\x2e\xd0\x2c\x1e\x5a\xc4\x65\xfb\x0e\xd7\xbe\x0d\x99\x5d\xae\xe6\x70\x87\x02\xdc\xa9\xdb\x92\xfd\xd9\xec\x4a\x68\x41\x8d\x1d\x6f\xbc\x72\xc8\x5f\xf7\x7b\xde\xd8\xc8\x64\x99\xa4\xae\x6b\x90\x3b\xb5\xe2\xdc\x86\x3d\x71\x10\x0a\xd3\x20\x5e\xe0\xc4\xe6\x01\xdf\x52\x6f\x7e\xd3\x61\xe9\x79\xd3\xa8\x8a\xa7\x21\xbf\xbf\x7f\x38\xe8\x69\xc4\x6f\xaa\x70\xd0\xe2\x9b\x13\x0f\x5a\x26\x3a\x00\xa1\x45\xa2\x13\x10\xba\x48\xb4\x02\x42\x9b\x3d\xa9\xee\x27\x66\xb2\xe3\xd9\x9c\x2d\x37\x14\x1c\xc5\x73\xbc\xc9\xae\x62\x6c\x0c\x4f\xab\xfb\x85\x7e\xe4\x36\x2d\x1e\xb9\x5d\x89\xa3\x2a\x06\xcf\xfe\x00\xa6\x46\x2d\xa7\xe2\x2a\xe1\x2b\xda\x73\xc4\x1c\x8e\xf0\x22\x8e\x28\x9b\x49\x4e\xd8\xb5\xd0\x69\x7c\x72\xad\x4d\x93\x16\x85\x1b\x2e\xe7\xef\x2c\xac\xba\xbd\xfa\x9a\x8b\x8d\xef\x9e\xff\x68\xcd\x22\xa8\x38\xb6\x5f\x2c\x75\x19\x25\x42\x84\x2d\xdd\xf1\x4d\x3d\x64\x2c\x72\x7b\x06\x1a\x4f\xe9\x6d\x4b\xe7\x1b\x2a\xc1\x41\x46\x57\xe4\xb5\x18\x05\x5d\x90\xf3\xe5\x43\xd0\xfb\xfb\x97\xcf\x1d\x59\xf2\x1e\xbf\xb4\x66\xa0\x61\xf4\xc0\x5d\x6d\xef\xe9\x0b\x2b\x5b\xa4\x6a\x61\x5d\xdc\xe3\x76\x6b\x74\xf3\xc5\xf3\xd6\x7e\x5a\xd2\x1b\x8f\x89\xae\x87\xfd\xca\x12\xe1\x5e\x77\x44\x92\xa4\x31\x66\xa5\x0d\x51\x7e\xb2\xef\x87\x3a\xcd\xb6\x1d\x9e\x40\x9a\x7d\x37\x34\xd3\xea\x9b\x61\xb9\x13\xd5\xbd\xd0\x48\xfd\x7c\xb6\xc2\xaf\x6b\x1f\xdb\xfa\x49\xb8\xcd\x8f\x55\xf7\xfb\x88\xdc\xe3\x79\x0e\x4e\xae\xde\x5d\xab\x0b\x38\x5c\x50\x36\xca\xdc\x12\xb3\x1c\x68\x2d\x72\x53\xb0\x79\xd3\x15\x91\x8f\xbd\x38\x8c\xdd\xb9\x0c\x84\xd7\xe0\xef\x69\xa3\x6e\xa8\x5b\x26\x73\xeb\x1b\xa7\x21\x4d\x48\x53\x78\x79\x69\xcc\xc7\x3a\x73\xee\xa2\x82\x83\x6b\x22\xfd\xa5\x16\x9c\x51\x77\xa0\x43\x4e\x82\x09\xcf\xe6\xf7\x44\x01\xea\x88\xe0\x06\x13\xfd\xb2\x81\x36\xb6\x3e\x19\x30\xa8\xf7\xa2\x96\x0e\x3b\xd1\xbb\xe8\x04\x1a\x0c\x35\xd1\x4f\x2e\x46\xc3\xc3\x33\x45\x7b\x07\xbd\xdb\x88\x29\xd4\xb1\xc1\x71\x97\x3e\xbc\x67\xf4\x9f\x4b\x22\xdf\xba\x19\x1c\x6f\xd2\x87\x42\x45\xb9\xbb\x02\xe2\xa8\xc2\x50\x40\xbe\xfb\x7e\x1b\x05\xc3\xe2\x75\xf8\x90\x0a\x06\x20\x21\x84\x09\x8f\x23\xae\xde\x54\x53\xff\x70\xf8\x13\xe9\x44\xab\x8a\x01\x95\x1d\x27\x3c\x3e\xe5\xb5\xe7\xd5\x4a\x89\x16\x25\xa3\xd4\x91\x9a\x92\x61\xa6\xda\xb5\x8c\x26\x2d\x62\xdb\x07\xd7\xbe\xe6\x13\x75\x45\x0c\x34\xbc\x0d\x6f\x99\xf6\xe6\x01\x36\x0c\x12\xc9\x97\xdf\xa0\x42\xb9\x78\x55\xbd\x6d\x46\xe1\x63\x59\x48\x77\x51\xa2\x6f\x28\x86\xd1\xec\x83\x26\x6b\x84\x83\xa0\x07\x6e\xca\x82\x90\x16\xb1\x91\x8b\x8c\x5c\x3d\x2d\xff\x1a\xf1\x3a\x18\x0f\x9b\xdc\xa7\x36\x50\xc6\xc4\xa8\x51\x54\x00\x94\xe8\x11\x70\x06\x8d\x98\xa8\x1d\xfa\xc2\x51\xea\x5e\x5f\x92\xca\x76\xaf\x92\x2f\x4e\x96\x6c\x57\x82\x6f\x28\xea\x72\xc8\x3d\x33\xad\x2e\xf6\x4a\xbd\xa8\x4a\x3d\x33\xd1\x0b\xbd\xcf\x4b\xe8\xd5\xa7\xbc\x79\x7c\x2d\x6b\xe5\x9e\x24\xc7\x94\x46\x19\x51\x1e\x49\x1a\x75\x29\xe3\x5f\x91\x08\xa9\x10\x4a\xce\xd7\x6b\x49\x95\x5d\x6b\xd5\x69\x12\x38\x95\xea\x2e\xb6\xde\xad\x0b\xa7\x49\xf0\xee\xf0\xe8\x0e\x2d\x6f\x5f\x3a\x4d\x82\xbb\x98\xa8\xef\x6a\xe2\xa6\xf1\x30\xe1\xce\xd7\x2d\x2a\xc5\xef\x75\x3b\xc1\x41\x90\xab\x15\x94\xc5\xcb\x4c\xee\x29\x41\x96\x38\x3c\xf3\x65\x8a\x6d\x37\x39\x0c\x82\xa1\xae\x6a\x20\xaa\xaa\x6e\x29\xb5\x0c\xf5\x7d\xa5\xde\x9d\xea\xe6\x52\xcb\x71\xb9\xa1\x5f\xfe\xe6\x9b\xcc\x4e\x3d\x20\xca\x5e\xb1\xd5\xc1\x94\xa2\x13\xe5\x17\xf9\x54\xf3\x32\x91\x87\x59\xb1\x8b\x1d\x1e\x0d\xd0\xd1\xd9\xe0\x93\x6e\x42\x77\x0f\x07\xa8\x80\xef\x55\x58\x63\x14\x93\xa0\x44\x8c\x7c\x27\x13\x09\x82\x0a\x75\xda\x6d\xb8\x77\xe1\x20\xb8\xca\x6b\xb8\x82\x2a\x76\x2d\x5a\xb5\x7f\xe3\xd5\x02\x33\x3c\x23\xe1\x95\x9c\xcc\xfb\xdb\x72\x34\xac\xe0\xd5\x32\x0e\x71\xd6\xe8\x32\xd7\x78\x22\x40\x40\x1f\xfa\x00\xfd\x4d\xd7\x2c\xb8\x8a\xf8\x8c\xba\x61\x1a\xbb\xfa\x80\x76\x74\xdc\x0e\x48\x92\x4d\x69\xe4\xb2\x55\x96\xdb\x6c\x77\x9b\xbd\x26\xeb\x1d\xd5\x16\x44\x94\xb0\xec\x2a\x4d\x9b\x82\x3f\x5b\xa7\x8d\x91\xec\x01\xa6\x4d\xec\x4e\xc9\x14\x07\xe4\x6a\x91\x2d\x5b\xbb\xdb\x12\x2a\x2c\xc4\x30\x15\x55\x49\x4b\xe8\x15\x54\xbe\xc2\xed\x64\x68\xa9\x37\x9e\x24\x57\x59\x82\x83\x6b\xca\x66\x57\x8c\xb3\xab\x94\xe1\xa6\x08\xe8\x56\xda\x22\xe9\xf1\x75\x25\x5f\x5a\xbf\x0a\xe6\x4b\x76\x7d\x95\xd2\x7f\x35\xcd\x7e\xa7\x9e\x2a\xdb\xc1\xd5\x0d\xa6\xd9\xd5\x94\x27\x57\x2a\xf2\xeb\xae\x9d\x0d\xd5\xbe\xb1\x79\xc5\x0d\x1d\x4e\xc8\x8c\xa6\x59\xe2\x0a\x7e\xd8\x0d\x7f\x2d\xf0\x8c\x5c\xc5\x09\x99\xd2\xdb\xd6\xbe\x36\x2f\x2b\x55\xd5\x32\x8a\xae\x52\x12\x24\xa4\x9d\x03\x9a\xeb\x53\x72\x31\xc3\x94\x91\x24\xbd\xca\x65\xfc\xca\xba\xd7\xde\xb1\x76\xf1\x67\xc2\xa3\x88\xdc\x53\xfd\x73\x9e\x66\x3b\xab\xd9\xdc\x4f\xef\x83\x2c\x8c\xee\xba\xda\x80\xd1\x90\xc4\x11\x5f\xef\xa8\x3e\x1e\x4f\x23\x72\x7b\x05\x18\xbc\x3b\xab\x92\xb0\x55\x7a\x43\xb3\x60\xbe\xa3\x1a\x67\x93\x78\x07\x35\x45\x8d\xc8\xc5\x3b\x11\x02\x06\xf3\x47\x7c\x76\x05\x91\xf0\x77\x1c\xbb\xe0\x77\x39\x3b\xbb\xaa\x51\x4e\xf9\xee\xea\xa4\x69\x46\xf9\x83\xec\xe0\x69\x86\xa3\xe8\x0a\xda\xbb\xeb\x3e\xa3\x2b\x8b\x13\xde\xa2\x0c\xb5\x0d\x7f\xb1\x8c\x74\x18\x81\xab\xf0\x1d\x07\xae\xf6\xda\xbb\x0c\x39\x4c\x78\x0c\x93\xfd\x50\xfa\xfc\x9d\x14\x42\x1e\x92\x98\x87\x74\xfa\x28\x7a\x9b\x26\x94\xaf\x1e\x45\x4f\xaf\x97\x13\xf2\x00\x1d\xe5\xab\xf4\x6a\x41\x16\x3c\x59\x5f\x45\x74\x41\xef\xaa\xbd\x2c\x53\xa1\x56\xd1\x15\x8d\x88\x3a\x90\x2a\x55\xe0\xce\x22\xa0\x50\xb3\x62\x97\x53\xea\x26\x1d\x4d\xc8\x84\xf3\xec\x4a\xed\xa8\x37\x34\x9b\x5f\xf1\x55\x7b\x2f\x9b\x2b\x15\x07\x80\xab\x0e\x91\xb6\x3b\x3d\x70\xc6\x3c\xc9\xae\x00\x31\xaa\xd3\x21\xb1\x0b\xa4\xd9\x06\x48\x8f\xe0\xde\xd2\x9a\xab\xe3\x39\x45\xff\x48\xcd\x50\x74\xe7\x2a\x01\xa3\xec\x2a\x26\xc9\x95\x10\x58\xbb\xac\x1d\xd4\x08\x1c\x64\x57\xd2\x4c\xb8\x9b\x63\xbf\x3e\xb1\xc5\x24\xa1\x3c\xa4\x01\x9c\x2d\xaf\x66\x11\x9f\xe0\xe8\x8a\xb2\x29\xbf\x4a\xd7\xac\x6a\xf3\xb2\x37\x66\x5d\x58\x4e\x4b\x5a\x11\x66\x67\x74\xa6\xd9\x96\x06\x45\x4a\xd6\xb4\x74\x19\x04\x24\x4d\xa7\xcb\x08\x05\x7c\x11\x47\x44\xfb\x26\x39\x8c\xb8\xfa\xd7\xe4\xcd\x67\xeb\xd8\x56\x83\xdc\x38\x3e\xb1\x66\x21\x37\x8c\xe1\x20\x9f\xdf\xe1\xd8\x61\xfd\xa6\xbd\x42\x02\xf6\xa4\x30\xd7\xc9\xd2\xc7\xae\x9a\x27\x5d\xa7\x19\x59\x88\x3c\xa5\xeb\x23\x6b\x4d\x3d\xad\x65\xa3\xcb\x27\x1f\x3f\xf6\xc7\xfc\x9a\xb0\x5f\x7f\xd5\x11\x90\xea\x24\xde\x8b\xa3\xe5\x8c\xb2\x6a\x43\x97\x2c\xef\x6b\xa1\x06\xab\x7a\x0f\xd0\xbf\x7b\xb2\x8e\x8f\x05\x49\x2e\x9f\x44\x7c\x26\xd1\xa2\x2e\x9f\xa8\x16\x8f\xf2\x92\xa7\x7c\x76\x2a\x92\x44\xf3\x7b\x66\x21\x1c\xd3\xa0\x27\xb4\xe2\x54\x94\xfa\xf8\xb1\x7f\x18\xd3\xe0\xad\xf8\xf7\xaf\xbf\xee\x5d\xb2\x8f\x1f\x7b\x88\x4e\x11\x23\xa8\x7f\x18\xd0\x77\xcb\x28\xa3\x31\x0f\xd1\xe5\x13\xe9\x67\xf0\x04\xfd\xfa\x6b\xa9\xb6\x80\xf6\x16\x2a\x93\xae\xaf\x28\x96\xd7\x48\x58\x28\xca\xa9\xca\xfb\xe7\x20\xe3\x8f\xc9\x8a\x06\xe4\x82\x04\x9c\x31\x12\x64\xbf\x60\x9a\x8d\xe9\x82\xf0\x65\x56\x69\x44\x6e\x09\xbd\x10\xf2\xf7\x12\x5d\xa0\x77\x83\x69\xd6\xcb\x64\x11\xd5\x78\x5b\xcd\xd5\x1e\x55\xe8\x92\x90\x69\x42\xd2\xb9\xa8\x33\xa7\xa9\xa0\xcf\x85\xfc\x2e\x2a\xb1\x13\x34\x5d\x4e\xf2\x15\xd9\x0b\x49\x84\xd7\x06\x75\x47\x46\xe2\xb1\x48\x83\x5e\x94\x6b\xb8\xca\x9b\x0e\xae\x49\x72\x85\xc3\xff\x5a\xa6\x99\xbd\x0f\x22\xc3\x21\xa4\xdb\xfb\xb2\x4c\x49\x22\xf8\xb9\x54\xfa\x7d\x4a\x92\x33\xec\xea\xbe\x50\x10\x70\x46\x7a\xd7\x64\xdd\x8b\x71\x36\x97\x45\xf7\x97\x69\xb2\x1f\xf1\x00\x47\xfb\x24\x0b\xf6\x81\x5f\x49\x92\xed\x8b\x06\xfa\xd7\x64\x5d\xad\x29\xa0\x3d\x69\xc0\xc9\x5b\x1e\xc1\xe2\x19\x84\x84\x65\x74\x4a\x49\x52\x6f\x3d\xa0\xbd\xd5\x62\xd1\x13\xeb\x5b\x96\xfa\x4b\x8e\xa4\x07\x59\x0d\x7e\xfc\xb0\x58\x1c\xf3\x05\xa6\x0c\x62\x88\xeb\x7c\x28\xea\x09\x21\x43\xde\x7e\x5e\x44\x35\x0c\x33\x1f\xa5\xa4\x53\x61\x47\xe7\xeb\xfc\xac\x3a\x57\x2c\xbe\x86\x0e\x16\x6b\xdb\xec\x64\x51\xb4\x53\x47\x2d\x95\xb4\x77\xb6\x32\x51\xa0\xb2\xf5\x32\xc2\x30\x2b\xf8\x6c\x0c\xff\x34\xca\xaa\xd1\x1d\x09\x16\x2a\x84\x40\xb9\xba\x68\x62\x4c\xdf\x19\x67\xa4\x81\x4c\x6f\xe3\xf8\x3c\xce\xe8\x82\xfe\x4b\x5e\x6f\x39\xaa\x9c\xc7\x71\x8f\x1b\xf9\xd4\x62\xaa\x94\x76\x88\x17\xd1\xce\x19\x17\x8b\xfe\x35\x4f\x46\xd2\xd4\x7c\x12\x5f\x10\x1c\x8a\xed\x30\x75\xb5\xc9\xb8\x14\x28\x53\x9e\xf4\x94\x81\xba\x47\xe2\x5e\xa2\xcb\xa9\x3e\x34\xd4\xdc\xd0\x1f\x95\xf9\x4d\x82\xe3\xf9\x09\x0b\x63\x4e\x59\x76\x18\x86\x20\x0d\xd0\xe5\x93\xe7\xd5\xce\xe8\x0e\xcc\x44\x81\x1e\x51\x25\x7a\x38\x0c\xb5\x74\x41\x07\xe6\x66\x20\x4b\x99\x82\xa7\xa9\xc5\x92\xfc\x29\x35\x08\xa3\xfc\x9b\xe8\x38\xe8\xaf\xe8\x0f\x94\x85\xe4\x76\x0f\xfd\x81\x66\x64\x81\x0e\xfe\xc3\x55\xad\xfa\x9c\xa2\x5f\x7f\x55\xa3\x96\x25\x7f\xfd\x75\xef\xe3\x47\x20\xc7\x47\x64\xd4\x7a\xbd\x87\xfe\xb0\x42\x07\xff\xa1\xea\x15\x0c\xf7\xf1\x23\xfa\xc3\x35\xfc\x25\x79\x51\x64\x90\xdf\xe9\x14\x91\x7f\x8a\xc4\xcb\x27\x52\xac\x19\x95\x6a\x62\xff\xaa\x3e\xfc\xbd\x18\x97\x7b\x32\x0e\xc3\x50\x3f\x04\x3e\x02\xc3\x7e\x3a\xe6\x17\xa1\xdc\x6a\x5d\xdc\x21\x28\x4f\x54\xa1\x9e\xbc\x0e\x48\x7b\x19\xef\x25\xaa\x9c\x16\xf7\x0d\x55\x37\xb0\x87\xf2\x0a\x1c\x2a\xdd\x72\xc4\x70\xf6\x06\x34\xcb\x01\x9b\xf2\xd1\x9a\x39\xd7\x9e\xd2\x4a\x7b\x5a\x2b\xed\x09\xad\xb4\x27\xb5\xd2\x9e\xd0\x4a\x7b\x42\x2b\x55\x9d\x6b\x6d\xc5\xb5\x5f\x9f\xf1\x90\x88\xdc\x17\x44\x3a\xc1\x9f\xdc\x02\x42\x2e\xaa\x2e\xa0\x90\xc8\xf6\x13\x95\xaf\x47\x64\x46\xc5\x54\x65\x9e\xd2\x2c\xe5\xac\xbe\xce\x4a\x08\x66\x59\xf0\xd8\xe5\x13\x70\x51\xc8\x99\x05\x72\x28\x6e\xca\xd3\x80\x7f\xf6\x84\x84\x92\xfe\x42\x40\x85\x4a\x56\x9d\x84\x80\x87\x90\xac\xfe\xef\x05\x19\x1a\x55\x91\x90\x44\x24\x23\x0d\x2a\xc8\x31\x64\x30\x75\x0f\x63\xc5\x45\x84\xc4\x50\xb6\x71\xd2\x46\x22\x9b\xa8\xc1\x31\x5d\x45\x85\xca\x26\xd7\x03\x03\x9f\x2a\x3d\x90\xdf\x06\xe2\x53\x35\xbb\xf8\xd6\x53\x06\xbc\x7c\x07\x80\x9c\x43\xf9\xd1\xbd\x0f\x80\xb3\x84\x65\x87\x8b\x79\x38\x09\x7b\xa1\xda\x43\x97\x8c\xee\x67\xac\x67\xec\x2b\xfb\xaf\x8e\x7b\x15\xcd\xd9\xba\x77\x89\x8a\x7a\x93\xd0\xa2\x2c\x08\x26\xdb\x4d\x13\xc0\xae\xaa\x0d\xe7\x36\xa9\xe5\x70\x3c\x5f\xa7\x42\x3f\x68\xd8\x6f\x7b\x31\xa4\xd7\x7a\x9c\xef\x25\x2c\xc0\x8a\x61\x57\x11\x86\x3e\x2b\xa9\xf9\x21\xc2\xcc\xaa\x19\xe9\xa2\xea\x9e\xb4\xa7\xef\x49\xcb\x22\xfe\x9d\x4c\x1d\xa8\xc4\xaa\x72\x29\xa6\x65\x92\xf4\xf4\xbd\x68\x8f\x71\x06\x0c\xa7\x2a\x19\xbe\xba\x18\xab\xa4\x33\xce\x04\x93\x59\x2a\x58\x25\xd3\xaa\xaa\xf0\xe1\xe2\x75\x49\x5b\x28\x17\x88\xbe\x57\x0b\x02\xf2\x9e\x7e\x7f\xbe\xb4\xe7\x23\xb7\x59\x4f\x9d\x8b\xf4\x06\x0b\x99\xb5\x10\x55\xa8\x9e\xb5\xb3\x49\x1b\x23\xae\x92\xa9\xd9\x53\x43\xf3\x6d\xd0\xac\x8c\x32\xe7\x2b\x92\x44\x78\x6d\x29\x5a\x3f\x37\xc4\xe5\x45\xd4\x85\xf9\xaa\xeb\xca\xd8\x36\x8e\x94\xf1\x62\xcc\x95\x63\xf9\x49\xdc\x6d\x53\xd2\x56\x0f\xb1\x2b\x29\xef\xf0\x1e\x89\x2d\x1b\x93\xad\x85\xb2\xe4\x47\xa5\x2d\x46\xd7\xa5\x95\x90\x5c\xf2\xd6\xf4\x0f\xa5\x54\x4a\x6c\xbf\xae\x3a\x65\x7d\x0a\xd5\x76\x92\x1f\x61\xba\x50\xf4\xdf\x95\x4c\xaa\xd7\xe2\xec\x6d\x9b\xf1\x6d\x9a\xc8\xeb\x2a\xb3\x40\x79\xb5\x2c\xf0\x2d\x48\x96\xb4\x97\xae\x02\xa9\xbe\xa9\x19\x78\x87\x6f\xc5\x46\x97\x8e\x56\x01\x68\x4f\x95\x65\x96\x5b\x20\x7a\x1b\x10\xdc\x6e\xab\xa8\xe7\xdc\xf9\xf4\xec\x62\x8a\x74\x6f\xdd\x33\xd4\xd2\x4a\xa5\x82\xf2\xb4\x54\xa7\x06\x19\x9b\x5e\x0e\x43\xf7\x48\x28\xa5\x76\xf4\xad\x09\x55\x2e\xdf\x9d\x4e\x8f\x8b\x9f\x1e\x9e\x4a\xd7\xcb\x09\x79\x64\x44\xfa\x14\x8b\x2e\xc0\x59\x16\x79\x42\x75\x26\x54\x9c\xf0\x05\xc9\xe6\x64\x99\x7a\x62\xb5\x12\x4b\xb9\xa5\x78\x4a\xe5\x94\x72\x93\x4c\x9f\x27\x68\xdc\x8b\x39\x8f\x5a\x6c\x3d\xb9\xd5\x6a\x30\x1c\x72\x1e\x35\x99\x76\x2e\x9f\xc8\xa0\xfa\xdc\x76\x23\xaa\xe8\x8f\xc4\xb7\xfc\x10\x4e\x58\x58\x49\x3f\x81\xce\x3f\x41\xb9\xf1\xa6\xa4\x10\x49\xc5\xb6\x97\x66\x38\xa3\x41\x7b\x57\x21\x5b\xd9\xf6\xd2\xd0\xe3\x8f\x50\xf2\xd7\xc6\x96\xc3\x35\xc3\x8b\x0e\x4d\x1f\xcb\x7c\xbb\x69\x1b\x4c\x01\xb9\x2a\x0f\x17\x98\xc5\x99\x93\xe1\x4c\x2b\xef\x23\x91\x52\x3b\x52\x49\x62\xf5\x36\x9e\x67\x28\x76\xff\xb3\x8d\x1a\xa6\x5b\x9c\xf8\xbb\xf6\x77\xc8\xc3\x4f\xc3\x93\xa2\x93\xd2\xf8\xd7\x03\x5f\xe0\x5e\x4a\xff\x45\xf4\x41\x9a\x87\x72\xea\x8f\x44\xca\x88\xfe\x8b\x54\x35\x7c\xb0\x8f\x59\xa6\xa6\xbc\x4c\xad\x52\xcc\xe8\xa8\x34\x97\xe9\xb9\x52\xfd\xdd\xb3\x15\x2a\x8d\xbf\x5c\x0c\xc8\x50\x5c\x4d\xe6\x22\xa3\xf8\xe7\xdf\xdd\x7d\x57\xe6\x4f\x4b\xdf\x25\x9b\x1a\x26\x62\x49\x91\x72\x43\x95\xc5\x26\xe3\x17\xf4\x61\x07\x1e\x3c\x57\x14\x95\x01\xdb\xda\xca\x3c\x12\x29\x5a\xd8\xc1\x7f\xe6\x3c\xcd\x7a\xe0\x88\xd7\x7c\x4f\xba\x93\x23\xfa\x49\x7c\xa1\xdc\xa0\x2d\xb7\x3b\x70\x4f\x20\x53\x73\x7a\x17\x05\x1a\x2d\x0f\x95\xa2\x6c\x19\x45\x6e\xc3\xf5\x7d\xdd\xc8\x82\x0d\x7a\x1e\xc4\x17\x84\x91\x9b\x77\xf8\xf6\x82\x64\xc9\xfa\x88\x2f\x59\x26\x2f\x27\x2a\x6d\x84\xf3\x40\xf4\x9a\x91\x9b\x9e\x38\xef\x26\x22\x77\x2f\x10\xd9\xb5\xa5\xd9\x5a\x57\x4b\xe3\xc6\x65\x88\xad\x3d\xf3\x72\x23\xcf\xde\x50\xa5\xe4\x1e\x69\x8d\x3d\x14\x4c\x92\xdf\x07\xbb\xcc\x29\x92\x15\x7b\xca\xc6\x2b\x19\x2b\xbf\x6d\x2e\xf1\xa4\xad\xd6\x86\xae\xc8\xec\xef\x78\x48\x2c\xbc\xa3\x9a\x5b\xf0\xb0\x90\xf4\x45\x81\x46\xde\xa9\x14\xad\xf3\x4e\x91\xb5\xee\x2b\xf0\x96\xa7\x19\x8c\xc0\xed\x2a\x10\x50\x69\x9a\x2e\x1e\x6c\x30\xb7\xa2\x3c\xfa\xce\xdf\xea\x7e\x36\xb7\xba\x9d\xae\xdf\x3f\x4f\x3b\xea\xa6\x66\x66\xbd\x1b\xad\x22\xcc\xca\x06\x71\x69\x4f\x2f\x65\x16\x27\x75\x1c\x53\x33\xb3\x60\xc9\xc3\xe1\x20\xcf\xfc\x50\xb7\xd4\x45\xf9\x42\x9b\x10\x25\x5b\x55\x9e\xbb\x29\x96\x72\x07\xcf\x5b\x6b\x6c\x0c\x54\x85\xbb\xa9\xd0\x2c\xc0\xb1\xb1\xfe\x41\x72\x06\x38\x1e\xaf\x2d\x5a\xab\x98\x7a\xca\xa6\x09\x36\xa7\x67\x20\x3e\x54\x27\xa7\xff\x6e\xfc\xbe\xb2\x44\xdf\x8d\xdf\xa3\xe7\x65\xba\xe6\xb1\x6a\xbd\x45\xb6\xd4\xd6\x57\x51\xb0\xbe\xce\x2b\x17\x9d\xef\xc6\xef\xdf\x12\x1c\x5e\x70\xbe\xa8\x37\xa3\x53\x6c\xf7\xf5\xa5\x26\x7b\x73\x82\xc3\x84\xcb\xdb\x22\xd9\x76\x51\xab\xb3\x0f\x45\x65\x01\xa3\x3d\x46\xb2\xe2\x62\xb9\x8d\x33\xd4\x2d\x49\xb3\x36\x3c\xc3\x19\xb9\xc1\xeb\x8a\xbe\xfb\x46\x7e\xcd\x35\xe2\x82\x43\x4c\xa5\x59\xf3\x82\xcc\x93\xf0\x65\xa6\x3d\x05\xc4\xee\xac\x1d\x95\x9e\xf7\xe1\x7f\xfb\xcf\x65\xb6\xd9\x4d\x43\x5b\xe8\xd7\xbf\xdb\x39\xe7\x6b\xbc\x6e\xa8\x96\x6e\xba\x60\xf0\xf7\x04\xfe\x9e\xe0\xf3\xb1\x80\xfb\x7b\x02\x7f\x4f\xe0\xef\x09\xfc\x3d\xc1\xe7\x4f\x2c\x7f\x4f\xd0\xe5\x9e\x20\x37\x82\x84\x09\x8f\x05\xcd\xb4\xc1\x45\x22\x52\x49\xeb\xc7\xaf\xb6\x12\xdd\x2d\x78\xb6\xe6\xf2\x98\xc5\x4b\xed\x65\x1b\x92\x21\x0f\x07\xd3\x86\x16\x7b\x7c\x95\xf6\xe6\x37\x3d\x3e\x9d\x46\x1c\x6b\x63\xd7\x28\xa1\x7c\xa5\x4b\x19\xc6\xc2\x92\x55\xa7\x2d\xac\xc2\xaa\x44\x95\xcd\x27\x86\x09\xc8\x34\xa0\xb8\xd4\x36\xd9\xbc\xaa\x57\x71\x12\xf9\xa7\x36\x0d\x1d\x01\x12\xc8\x68\x74\x6a\x3f\x6a\xc2\x71\x37\x95\x6e\x5f\xe8\xf2\x49\x61\x2a\x52\xee\x9f\xe1\xe5\x13\xbb\xf1\xa9\x68\x01\x3a\x0a\x76\xfe\x34\xa3\x81\xc3\x09\x3a\xbf\x42\x80\x3c\xd2\xc7\x38\x6f\x0f\x89\x06\xf9\x74\x2a\x74\xf7\x16\x4b\x17\x34\x26\x61\xda\xc1\xfa\x07\xa6\xba\x31\x5d\x80\x0d\xe5\x45\xd5\xbe\x27\x5a\xcd\x44\x62\xd1\xa2\x5a\x8c\xd2\xb0\x68\x1a\xfe\xda\xea\xff\xf5\xd7\x6a\xe7\x4a\x8b\x85\x67\x82\xc3\x54\x23\x0a\xab\x52\x8d\x2c\xb7\xa6\xee\x95\xcb\xe0\x74\xcd\x82\xff\x4a\xd5\xe9\xbe\x52\xac\xdc\x23\xf5\xa7\x2e\x20\x99\x30\x14\x5d\x72\x72\xc5\xaa\x2e\xba\x37\x6b\x72\x95\xb6\xb4\x97\x2f\x81\xad\x83\xa6\xc0\x04\xa8\x55\xe1\xcf\x35\x66\xaa\x7e\xdf\x31\x62\x18\x30\xdb\x2e\xc4\xb9\xb9\x72\xdf\x51\xbe\x50\x29\xe5\x54\x17\x2a\x3a\x1f\x44\x29\xf6\x62\x92\x80\x88\xaa\x15\x49\x87\x24\x39\x53\x66\xda\x46\x12\x8f\x00\x89\xc4\x19\x94\xb6\x4c\x49\x02\xc1\x35\x0f\x41\xd8\xbc\x7d\x1d\xc8\x93\x47\x2a\xbd\x4f\x49\xf2\x17\xb2\x96\xeb\x06\x52\x83\x24\x2b\xa5\x1e\x01\x19\xe5\x48\x0d\x21\x53\xdf\x10\x37\x26\xc3\x35\x9e\x5e\xe3\x9e\xc4\x44\x02\x52\xd0\x29\x0d\x70\x46\xd2\x07\x25\x49\x80\xf3\x21\xff\x45\x74\x48\x4a\x66\x35\x6a\x54\xea\x64\xf7\x8c\x9a\xc4\x46\x46\x45\xe5\x9c\x8e\x4a\x5a\xb9\xa8\x06\x76\xcd\xc3\x40\xde\xb1\x74\x8b\x6c\xd4\xb6\xe4\x07\xa0\x5e\x23\xdf\x6f\xda\xf5\xe2\x56\xef\xc1\xba\x6e\x30\xf2\xfb\x94\x28\xdc\xda\x0b\x1e\x11\x27\x47\x27\x13\x1c\xf4\xf1\x32\x9b\xf3\x44\x99\x79\x2d\xb8\x8c\x45\x3d\x95\x71\xdf\xb7\x54\xec\xc0\x14\xf0\x1e\xec\xc1\x25\xeb\x21\x1c\xd3\x37\x09\x5f\xc6\x1a\x37\x51\x3f\xd0\x59\xc6\x40\xec\x49\x30\xd6\xcb\x1c\x5a\x11\x26\x45\xfd\x3b\xe6\xa1\xfa\x2b\x57\x02\xe5\x3f\xf3\xa8\x22\x99\xb8\x22\x79\x4a\x42\xe2\x48\x2c\x6f\xca\x59\xd1\xad\x72\x29\x2c\x79\x06\x3e\xae\x48\x32\xd1\x1d\x89\x14\x8a\x64\x0f\xdd\xe0\x2c\x98\xcb\x3f\x67\x44\x7d\x8b\x8b\x6f\x41\x42\x70\x46\xe4\xdf\x12\x1f\x4f\xfe\x2d\xc3\x36\x36\x19\xbb\x9c\x94\x05\x8e\x37\xec\xcc\x36\x3d\xb0\xa1\x7d\x3a\x7a\x05\xc0\x9f\xfa\x6b\x98\x03\x7f\xd6\x3a\xf9\xec\x8f\xcf\xec\x6d\x39\xd9\xd8\xd1\xa0\xe4\xe8\x84\x47\x7a\x4a\x8d\x2f\x13\xca\x42\xca\x66\xf6\xc6\x0d\x15\xd1\x0c\x49\x29\xab\xa1\xb6\x1e\xaa\xa0\x96\x3e\x18\x5d\x9c\x1d\x83\x54\xc5\x47\x71\x84\x99\xee\x1e\x7c\xcf\x1f\x3c\xef\x4c\x16\x1c\xd0\x7e\x6e\xe5\xa9\xb7\x86\x03\x5a\xaf\xb8\xfe\xd9\x49\x08\x25\xeb\x6d\x2d\xab\x95\x4d\xd9\xac\x71\x22\x54\x36\xf3\xad\xa3\x6e\x4c\x69\x67\xb8\x38\xb5\x37\x23\xa1\xb2\x16\xb5\x55\x9b\x12\xfd\x21\xc4\x64\xc1\x59\xf1\x6f\xc0\x9d\x9e\x2e\x23\xfd\xa5\x13\xb9\x5b\xe5\x8d\x16\x23\xfb\x12\x73\xa0\x5a\xb1\x5e\x59\xb6\xba\x55\xe8\x8c\x20\x68\xc0\x13\xc2\xd3\x7e\xc0\x17\xf6\x06\x55\x2b\xaa\x44\xad\x95\xda\xa2\x76\x71\x8e\x0c\xae\xb1\xb6\xc0\x70\xa6\xe7\x6c\x7f\x4a\x19\x8e\xe8\xbf\x0a\xa9\x67\x26\x16\x03\x95\x84\xa0\x6c\xca\x9d\xe3\xae\x4a\x9a\x66\x99\xd4\x28\x7b\x5a\xbb\x2f\xa3\xd4\xf2\xee\x94\xbb\x6d\xe9\x6f\x0f\xe9\x08\xc9\x87\x10\x9d\xea\xad\x66\x6b\xef\x2b\xef\x2e\xef\xae\x27\xc6\xae\xe3\xea\x94\x7e\xd6\xcf\xb5\x98\xab\x8f\x78\x76\xef\x5c\x13\xef\x1b\x4f\xad\x59\x1b\xae\x3f\x98\xb6\xbb\x76\xb1\x6b\xb0\xda\xd0\xd3\x55\x3c\x08\xe9\xd4\xe7\x31\x61\xe9\x9c\x4e\x33\x21\x11\x1b\x05\xd5\xc6\xbc\x56\x6f\x31\xa4\x69\xc0\x57\x24\x59\x6b\x11\x6c\x23\x9d\x69\xec\x72\x8b\x8a\x5a\xb3\x0d\x0c\x12\xf3\x68\x2b\x61\xef\x6e\xec\x2e\xcb\x28\x64\x69\x53\x9f\x64\xf2\x3d\x76\xab\xe1\x5c\xf4\x28\x75\x6f\xf3\x54\xf3\x29\x74\x6f\xb7\xbe\xdd\x6d\x99\x98\xbe\x7a\xa6\x2d\xb8\x6a\x48\x6c\x96\x0c\x0e\x39\x94\x9f\x0b\xcc\xbe\x98\x2c\xa2\xc4\x6b\x8b\xf2\x74\x0f\x9a\xf3\x66\x9a\xd4\xe3\xd2\xde\xee\xd0\x66\x67\x2d\xa7\x41\x71\xd8\x42\x2f\x78\x54\x7b\xbe\x7e\x10\xc7\xce\xf2\xb5\x67\xc4\x7a\xf5\x37\x76\xee\x6b\x82\x2a\x0a\x9a\xc8\x08\x28\x3f\x56\x25\xd3\x45\x89\x6d\x95\xcc\x2f\x66\x77\xdd\x9d\xe6\x73\xf9\xe4\x8f\x56\x2b\xda\x86\x1b\xdd\x2b\x79\x00\xdf\xdc\x3c\x78\x97\x2d\x51\x9c\xfc\x2f\xc8\x14\x0a\x6b\x7a\x34\xf4\x5c\x64\xb3\xec\xd0\x1d\xba\x99\x2e\xe5\xcb\x4d\xb0\x6f\xda\x6d\x8b\x3b\xb2\x85\x3e\xe0\x3c\x94\x6d\x9d\x9f\xed\x3c\x98\xdd\xdc\x7e\x1e\x36\x35\xec\x5a\xde\xc1\x89\x53\x83\xe4\xc7\x60\x7b\x18\x35\xdc\xaa\x54\x1a\xef\xd6\xec\xfd\xab\x88\xf9\xe3\x28\x52\x9e\x8e\xb2\x04\x67\x64\xa6\xf1\x53\x25\xd4\xe1\x05\x8f\x22\xca\x66\xef\x73\x89\x5b\x79\x3c\x79\x21\x84\xd0\x69\xf9\x41\xab\xc6\x81\x77\xd3\x5d\x33\xb2\x88\xa3\xe2\x5d\xdf\xda\xab\x2f\xb5\x27\xb4\x5a\xdb\xec\xd2\x2a\xd0\x99\x31\x9e\x01\x8b\x9a\xd5\x17\x2e\x2e\x62\xb9\xa5\x41\x82\x05\x71\xb4\x55\xde\x95\x2f\xe6\x49\x26\x72\xfd\xfc\xf2\xc5\x77\x3a\x57\xe9\x45\x1a\xd1\x41\xe5\x34\x6b\xbe\xfc\x23\x13\x86\x83\xe3\xfa\xc7\xc1\xf0\xa8\xfc\x31\x2d\x31\xfd\x59\x1b\xc3\x9b\x06\xd0\x05\x9e\x91\xe1\x32\x8a\xe4\x65\x58\x25\xac\x80\x96\x53\x4d\x62\xe8\x37\x8d\x3e\x7e\xac\xd6\x61\x75\x25\xce\x78\x44\x92\x1a\x45\x7b\xf9\x23\x35\x07\xe8\xe4\x96\xa6\x59\x3e\x03\x42\x07\x3e\xb2\xc1\x03\xeb\x76\x73\xf0\xfc\x4b\xe3\xba\x1a\xfa\xab\xc3\x8c\x8e\x18\x3d\x86\x1c\x79\x3d\xe5\x2b\xf8\x7c\x70\xf2\xf2\xbe\x3c\x14\xf9\xad\x5c\x20\x25\xc1\x32\xa1\x19\xd4\x47\x6e\xb3\x83\xea\x5d\xcd\x30\x47\x36\xce\x5b\x74\xba\xe5\x14\x28\xc8\x7a\x26\x1d\x9e\x31\x01\x8e\xf1\x84\x46\xd4\xfe\x8a\x50\x68\x7f\x24\x77\xf4\xd7\xd1\xd5\xe1\xf1\xbb\xc1\x99\x99\xb8\xe2\xd1\x72\x41\xde\xc1\x35\x46\xa5\x94\x41\xd4\xde\xa4\xfe\x20\xf3\x42\x94\x19\xe2\x6c\x7e\x80\xf6\x17\x2c\xdb\xcf\xb3\x19\x8c\xf4\x3e\x25\xd2\x91\x08\xbc\x65\x12\xca\x81\x52\x11\xb6\x63\xdc\xc5\x66\x06\xc9\xaf\x52\xe4\x49\x24\xa4\x20\xa1\x19\x0d\x70\x54\x38\x1c\x81\x47\xfc\xfb\x94\x88\x79\xcd\xd9\xe2\xad\x58\x20\x66\x4d\xbf\xe6\x7e\x44\x0d\x0d\x59\xe5\x43\xe1\xd8\x54\xd4\xf0\xd1\x84\xf0\xab\x0e\xa9\x3a\xad\xee\x11\xa9\x6b\x89\xea\xa0\x6a\xbe\x31\x6a\x74\x8c\x6e\xd1\x14\x0e\xa8\x98\x14\x9d\xd2\xec\xd6\x6f\x85\xdd\xee\x75\x91\x9e\x95\x15\x26\xe8\x7f\xb7\xc5\xa5\x86\xcf\x13\xf4\x0d\x44\x14\x96\xe7\xf6\x1d\x20\x8f\x9f\xd2\x05\xcd\xd0\xb7\x0d\x39\x2e\xc8\x3f\x97\x24\xcd\xd0\xb7\xe5\x3e\xd4\x1f\x4e\x93\x3f\x40\x32\x4f\x8b\xe5\xdb\xdc\x70\xdd\xd5\x4d\x02\xa2\xab\x68\x82\xd6\xc2\x8d\x5e\x73\x0d\x55\x39\xaa\xa9\x4b\x88\x44\x8e\xbe\xc3\x80\x34\x9d\xb6\x1c\x92\x51\xfc\x6e\x83\xb2\x54\xe4\x8c\x40\x79\xf4\x62\x57\x27\x9e\x9d\x8c\xdd\x89\xa2\xe4\x70\x7c\x71\x78\x74\xe2\x2a\x7a\x71\xf8\x8b\x99\x44\xd8\xca\x21\xc3\xff\xf2\xfe\xd5\xc9\xc5\xd9\xc9\xf8\x64\x74\x75\x76\x7e\x7c\x72\x75\x76\xf8\xae\x56\xe9\x0a\x47\x4b\xf2\x3a\xe1\xb6\x77\xf9\xa7\x94\x44\xa1\xd6\xde\xad\x89\x72\x27\x10\x3a\x4c\x5f\x48\x6b\x21\x81\xec\x5d\x19\x9f\x9c\x1d\x9e\x8d\xad\x8d\xd7\x7c\x5a\xcb\x01\x4e\xf0\x0e\x87\x82\x88\x74\x4e\xa6\x6e\xe6\xdd\xfb\xd3\xf1\xfb\x91\xa3\x99\xda\x2c\x1b\xcc\xa3\x1a\x50\x18\xaa\x3a\x70\xa9\xad\xb9\xe3\xc1\xe8\xf0\xd5\xe9\xc9\xd5\x2f\x87\x83\xf1\xd5\xeb\xf3\x8b\xab\xb3\x93\xf1\x2f\xe7\x17\x7f\x69\xef\x80\x65\xb5\xe4\x95\xbe\xbf\x38\x1c\x0f\xce\xcf\xba\xd6\x0a\xd4\x3b\x56\x0f\x6c\x95\x07\xd0\x20\x2c\xee\x41\x05\x70\xd5\x21\xce\x26\x5d\x2a\xa9\xe7\xd3\xb5\x88\xad\x67\x85\x6b\xe0\xfa\x66\x25\x05\x26\x74\x2d\xa3\x59\x4b\xb2\x6c\x1c\x4f\x2d\x79\x83\xb2\x45\x0f\x9c\xb5\x28\x67\x5f\x51\x99\x3e\xb0\xc1\x34\x74\xab\x96\x64\xc1\x7e\xc9\x5d\x98\xaf\xd2\xfd\x09\x4e\x09\x50\xae\x1f\xba\x7b\xde\xdb\xb2\xb5\xb2\x06\xb0\x6f\x6f\x60\x85\x93\x88\xcf\xb4\xbd\xdf\x55\xf1\x0a\x8b\x8a\x67\xfb\xb6\x7c\x09\xc1\xe1\x39\x8b\xd6\xe5\x93\x8c\xad\x95\xfa\xf9\xac\xa9\x2d\x77\xee\xae\x2d\xd2\x49\xc8\x83\xeb\xfa\xb3\x0e\xb5\xd6\xe8\x64\xdf\x9e\xb3\xda\x92\x21\x73\xca\xb0\x09\x52\xd2\xd4\x36\x64\xdd\x9b\x70\x2e\x9d\xf6\x3a\xf5\x24\xcf\xeb\x54\x2f\xdf\xca\x93\x26\x4b\x3f\x00\x4b\x34\x48\xba\xca\xf2\xd8\x67\xa2\x54\xb5\x17\x06\xab\x25\x4b\xd6\xb3\xe6\x69\xa2\xb9\x1e\x47\xc2\x63\x3c\xc3\xf2\xfd\x08\xd1\xc5\x31\xcf\x37\x72\x97\x6b\xf7\x66\x1b\x84\x7c\xd6\xa9\xd7\x55\x2c\xd5\xb2\x5b\x65\x69\x44\x57\x84\x91\x34\x1d\x26\x7c\x52\x7d\xd7\x63\x8a\x69\xb4\x4c\xc8\x78\x9e\x90\x74\xce\xa3\xf0\x00\xbd\x78\x5e\xce\x31\xcf\xb2\xf8\x8d\xe5\x35\xc0\x58\x76\xa3\x70\xb9\x28\x25\x82\x29\xe1\xa7\xe7\x3f\x3f\xaf\xa6\xc0\x0b\xc0\xe4\x00\xbd\x1d\x8f\x87\xe5\x34\xb8\x4c\xc2\x11\x78\xa5\x8f\x48\xc0\x59\x98\x1e\xa0\x17\xdf\x55\x6a\x90\x90\xcd\x79\xfa\xcb\x4a\xb2\x7a\xb1\xc3\x1c\x4f\x39\x83\x42\x1d\xce\x2b\xf8\xfe\x79\xfd\x64\x61\x4a\xb1\x6e\xaa\xcc\xc5\xc9\xab\xf3\xf3\xf1\xd5\x2f\x83\xf1\xdb\xab\xf3\x0f\xae\x1d\xbe\x30\xc0\xd4\x7c\xff\xcf\x63\xc2\xd2\x34\x3a\xe2\x8b\x18\x3b\x90\x36\xcc\xf6\xce\x87\x27\x67\xa3\xd1\xe9\xd5\xd1\xf9\xd9\x6b\x67\x63\x20\x23\xe3\x6b\xba\x9f\x45\xe9\x3e\x97\x0d\xbc\x78\xd1\x0f\xd8\xf4\xf2\x09\x72\xf0\x4a\xe9\xd4\xa4\xa2\x2c\x76\x77\x6e\x32\x5c\xf0\x6b\x27\xa6\x5a\xda\x5d\xcf\x4a\x8e\xc6\xda\x4e\x01\xee\x62\x9f\xe2\x7c\xe4\xa4\xca\xc6\xc3\x78\xc0\x33\x11\xb2\xfc\x1e\xe7\x39\xc9\x7a\x14\xea\xa0\x9b\x7a\x8d\x70\x7b\x8d\x50\x95\xd8\x55\x7b\xba\x29\x83\xc5\x2e\x96\x4c\x2e\x8f\x11\x49\x56\x24\x69\x66\xb2\x4a\xb7\xe0\x2d\xfc\x64\x3b\x91\x19\xf0\xc5\x02\xb3\xf0\x00\xfd\xed\xf2\xc9\xfe\x84\xb2\xfd\x74\x7e\xf9\xe4\xef\x66\x0e\x9c\xcc\x52\x99\x5c\x8c\x4a\x64\x8c\xf0\x92\x05\x73\x85\xb1\x24\xbb\xd0\xaf\x15\xde\x81\x99\xd8\xa4\xf1\xee\x16\x0c\x44\x03\xd5\x56\x4a\xae\xfe\x0e\xb9\x8a\x08\x31\x27\x45\x7c\x74\x6a\x49\x24\x4b\x68\x50\x53\x3a\x2a\x15\xfe\xfc\xf2\xfb\xef\xcc\x2c\x19\x49\x16\x94\x81\xf6\xf6\x8e\xa4\xa9\xa0\x8b\x64\xa0\x90\xac\xf6\x8d\x44\x88\xdf\x6c\x2e\xa7\xe8\xfb\x9a\x46\x64\x43\xc1\x50\xe2\xa2\x3b\xf2\x78\x9d\x15\xef\x22\x80\x3a\x60\x70\x71\x09\x4b\x64\x5f\x1f\x8b\x00\xa7\x59\x4f\x7a\x36\x3b\x97\xc7\x3b\x91\xe9\xbe\x56\x07\xf4\x40\x76\x60\xeb\xc5\x51\x52\x57\xa0\xb7\xf2\xbe\xb4\xa6\xae\xd4\xd2\xee\xaa\xae\x38\x1a\x6b\xdb\xa0\xdd\xc5\x3e\x85\xba\xe2\xa4\xca\xc6\xc3\x78\x50\x13\xee\xb6\xea\x47\xb3\x00\xed\xa8\x9a\x7c\xa1\xea\x44\x6d\xac\x09\x81\x48\x53\xbd\xfe\x0e\xa3\x1b\xbc\xce\x65\xb8\x24\x82\xe3\xfa\xb4\x6a\xbf\x83\xeb\x66\xd1\x68\x85\xde\xb2\x1f\x3c\xce\xec\xb5\x54\x4f\xd4\xcd\xd5\x90\x2c\xa8\x57\x63\x99\x88\xe6\x5a\x4a\x99\x1b\x88\xd9\x5c\x4b\x29\x73\x37\xcb\x59\xa0\x83\x93\x2b\x35\xb6\xbc\xe8\x58\xfc\x68\x46\x16\xf5\x7d\xbf\x87\x20\x2a\xb3\x86\x21\x5a\xd7\x05\x64\xd7\x8b\x8c\xfd\x32\xf9\x37\xd1\x30\xc9\x22\xce\xd6\xc7\xb4\xfa\x12\xed\x82\x84\x74\xb9\x38\x40\x72\x9d\xd7\xab\xb6\x5b\xfe\x5a\xe7\xcb\x62\x07\xec\x62\xe5\xeb\x56\xaf\xad\x6c\x9b\x45\xaf\x43\xcd\x86\x7d\xaf\x8b\x05\xcf\x9e\xe7\xfd\x64\xc9\xb2\xa5\xdd\xd6\xd7\x64\xe7\xeb\xd8\xbf\x79\x10\xdb\x05\xf9\x4e\xea\xb6\x5b\x14\x2b\xc2\xb6\xeb\x11\xe3\x7e\x17\x8f\x05\x53\xc3\xb5\x7c\x40\x9e\xf6\x0b\xdb\x5e\xb1\x49\x99\xba\x72\x83\x91\xb4\x93\xde\x79\x27\x33\x6c\xaf\xd5\xba\xda\x2a\xdb\xb4\xd1\xb6\x8b\x05\xb5\x99\x3d\x1b\xec\xa7\xed\x9c\x24\x7a\x22\x2b\xd8\x2f\x3b\xcd\xef\xd2\xa3\x8e\xc7\x84\xad\xd2\x1b\xaa\x9c\x7f\xbf\x3a\xc7\xba\xca\xf8\xbb\xf4\x6f\x57\xfe\x75\x96\xa6\xbb\xb9\xd9\x7d\x05\x4e\x70\x5b\xb9\xc0\xa1\x4f\xee\x57\x75\x5e\x4c\xe9\x9d\xdd\xab\x4a\xec\xe1\xbd\xac\x36\x58\x43\x35\x1b\x18\x61\xab\x11\xe4\xd9\x95\x43\x63\xeb\x29\x1a\x95\x7e\xe6\xa1\xb0\x7f\xfe\x61\x64\x1c\x69\xeb\xe8\xfd\xc6\x31\xb6\x4b\x2d\xea\x3c\x59\xad\xe7\x91\xdb\xb4\x75\xe2\xe8\xaf\xa3\xab\x77\xe7\xc7\xef\x4f\xad\xee\x3d\x22\xf5\x6c\x60\x77\xfd\x19\x0c\x8f\xae\x4e\xcf\x8f\x4a\x6e\x20\xee\x0b\xb3\xf3\x0f\xa3\xab\x8b\xf7\x67\xc7\x83\x8b\x6a\x5d\xea\xfa\xaa\x7c\xa0\x85\xbd\xd9\xc1\x7b\x5f\xe8\xf9\xd9\x55\x4b\xe9\x5c\xda\x54\x4b\x2d\xa3\x59\xcb\x82\x87\x4b\x05\x47\xe1\xaa\x49\x28\xd6\xd6\x6c\xde\xb3\x62\x1b\xcf\x8a\x22\xa5\xe9\x3e\x9e\xdc\x1a\xaa\x86\xfe\x69\xcb\xa8\x6d\xd9\x55\x4d\xa1\xaa\xee\x1e\x5f\xa5\xfd\x74\x7e\x47\xdb\x8b\x85\xdf\xbe\x00\xa3\x89\x85\xa9\x9b\x6b\xb2\xae\x84\xaf\xdb\xca\xd0\x7a\x26\xca\xa3\x68\x3f\x3f\xdc\x2d\xd4\x51\xed\x6f\x0f\xae\xd3\xe7\x02\x1d\x22\xac\xbc\x4d\x52\xeb\x09\x8a\x14\x31\xa1\xdb\x1e\x9e\xca\x74\xea\x36\x8e\xb6\xb3\x53\xd7\x86\x3a\x4c\x0a\xea\x7c\x14\xab\xd7\xbf\xcb\x93\x58\x87\xf3\x95\xd9\x81\x07\x0d\x32\xd2\x37\x25\xe3\xe2\x8c\x85\x5c\x27\xaf\x8f\x1f\x51\xc6\xff\x8a\x17\x51\x39\xfb\xbf\xe1\x31\x76\x96\xa1\x97\x79\xdd\xe2\x7c\xd4\x7c\x7e\xeb\x21\x32\x9d\x92\x20\x3b\x40\x67\xfc\xe4\x96\x04\xcb\xcc\xd8\x93\x5c\xb1\x4d\x66\x55\xb9\xc7\xd4\xc7\x8f\x66\x77\xd4\x67\xa3\x75\xb3\xa5\x51\x30\x27\x42\x6e\x16\x15\x82\x05\x4c\x1c\xf1\xfa\xd7\xf9\xe3\x36\x7d\xca\xf7\x19\xcf\x7a\x62\xcb\x5c\xb7\xf7\xaa\x63\x03\xbd\x84\x47\xd5\x56\x16\x58\x1c\xbd\x9a\x9a\xf8\x68\x3c\x60\xff\x89\x0f\xb7\xc5\x43\x38\x77\x3e\xdb\x56\xd9\xfd\x9e\x8e\xb6\xb6\xd1\x3d\x8e\x73\xad\x4d\x20\x55\xa3\xf4\xf2\x2c\xf7\x15\x49\x54\xb4\xd0\x1c\x4f\x54\xcd\xb7\xd3\xa8\x22\x7b\x27\x36\xba\x78\x75\x56\xf1\xc9\x23\x8c\x5c\x94\xbb\xd3\xf0\x3e\x51\xb4\x91\xfb\x70\xfd\xcb\xe1\xf8\xe8\x2d\x84\xd3\x8c\x86\x96\x40\x9d\xdc\x41\xb4\x6a\x09\xd1\xe5\x0f\x8f\x06\x57\xa3\xb3\xc3\x71\x87\x2a\x9c\xf0\xe9\x0d\xf5\xbe\x39\x3d\x7f\x75\x78\x3a\x38\x7b\x7d\xee\x0e\xf9\x39\x50\x8f\x7a\x16\xf8\x27\x4d\x95\x5e\x1c\x1f\x9d\x9f\xbd\x1e\xbc\x69\xae\x2f\xe1\xcb\x8c\xb2\x99\x7c\xd9\x4c\x5f\xbc\x38\x6a\x1d\xfd\x75\x34\x3e\x79\xb7\x1b\x02\x74\x89\x65\xc9\x59\xca\xc7\x42\x7c\x86\x27\xf6\xf2\xb6\x91\xa3\x4e\x6f\x37\x49\x24\xc9\xf6\xbb\x9a\x03\xee\xdb\x3d\xff\x45\x35\xe5\xf3\x75\xcf\x2f\xac\x14\x8d\x00\xda\xd5\x09\x53\x88\xd2\x24\xc9\x4a\x54\x48\x41\x37\xaf\x50\x4d\x7e\x3c\x6b\xc3\xd5\x6e\xb8\x58\x6e\x63\x8f\xd6\x66\x6b\xa8\xe6\xe5\xfa\xbb\xc8\x89\xfb\xbd\xbc\xae\xf5\xa0\x6e\x94\x92\xac\x57\x64\x74\x78\x7e\x7c\x9d\x86\x93\x46\xe6\xad\x5b\x55\x00\x19\xc9\xb0\xab\x0c\x79\x38\x78\x6d\x35\xa9\x50\x46\xb2\x1e\xbc\x31\x57\xb1\xa1\x98\xcf\x28\x31\x29\x0f\xa0\x18\x89\x67\x35\x76\x80\x4a\xf8\x12\x38\x8f\xc6\x38\x0c\x93\x03\x54\xbc\x4f\xd7\x78\x29\x5e\xf4\x11\xf4\x34\x78\x15\xc0\xda\x51\xa9\x06\xf5\x40\x0b\xed\x25\x32\x5b\x17\xfb\x42\x7e\xf6\x37\x2e\x7d\x7a\x48\x3d\xe7\x96\x13\x5f\x2b\x59\x6d\x3a\x24\x64\x57\x85\x95\xde\xd5\xb5\x8e\xaa\xd2\x28\xed\x3b\x46\x24\xd8\x93\xbd\xff\x1f\x42\xe8\x49\x80\x23\x1a\xf0\xde\xea\x45\xff\xc5\xf7\x4f\x0e\x10\xa8\x74\xda\x03\xfd\xd5\xe1\x91\x7c\x3e\x42\xc1\x49\xcb\xf9\x7f\xfa\x14\x81\x9d\x16\x10\x88\xd0\x9c\x24\xe4\x92\x5d\xb2\xa7\x68\xc0\x82\x68\x19\x12\x84\x4d\xe4\x68\x34\xe5\x09\xca\xe6\x04\xa9\x76\xc4\xe1\xab\xf0\x45\xd8\x13\xe5\x30\x0b\xd1\x84\xb2\x10\xd1\x0c\x65\xbc\x96\xb9\x8c\x18\xde\xb7\xa2\x40\x76\x45\x74\x9a\x90\x0c\xbf\xb0\xce\xb7\xd1\x62\x01\xe2\x88\xd0\x53\x34\x9e\x13\x74\x74\x36\x40\xd2\xe0\x83\x18\x21\x61\x2a\xba\x39\x23\x19\xe0\x33\xee\x49\x00\xc7\x3d\x18\x46\x01\xe0\xd8\xbf\x54\x08\xa7\x1a\x46\x0c\xfd\x4d\xa8\xb2\xca\xdb\xb7\x7e\xe8\x29\xc0\x1e\xd5\x6a\xd6\xa8\x90\xc5\xe2\x2e\x90\x21\x4d\x88\x31\x99\x9e\x43\x99\x6d\xd0\x60\x09\x53\x52\x7e\x32\x71\x25\xab\x8d\x3c\x45\xef\x53\x12\x8a\xa1\x6b\x98\x37\x9d\x1d\x0d\x86\x29\xcc\x33\x0e\x57\x62\x0f\x4a\xc9\x82\xc0\x4c\xe9\x6a\x73\x14\x39\xf9\x4f\x0d\xb7\xe6\xa8\x75\xbc\x8e\xe7\x38\xed\xdf\x6d\x70\x40\xbf\x92\x62\x51\x1d\xcd\x19\x21\x21\x09\xa1\xdf\x41\x44\x70\x42\xd9\x0c\x9d\xf1\x90\x28\x63\xdd\x7b\x86\x57\x98\x46\xe0\xce\x33\x8d\xf0\xcc\xe8\x4f\x6c\x0e\xe7\x29\x3a\x02\xd6\x41\x69\xc6\x13\x92\xa2\x94\x2f\x88\xda\xdd\x54\x38\x39\x12\x07\x83\x64\xa1\xff\x86\xae\x99\x90\x48\x46\xcd\x05\x08\xdf\x53\xf4\x8b\x68\x45\x76\x6f\x2e\xe4\x0f\x70\x5d\xf1\xd6\x32\x52\xfd\x1c\x2a\x70\x3b\x2b\xc3\x59\x40\x2b\x9b\x68\x56\x87\xcb\xab\x73\x9a\x63\x2e\xd5\x3c\x4e\xd6\x9a\x1c\xa2\xe3\xf2\xa9\x1f\x73\xfc\x77\x5e\x16\x95\x75\x80\xec\x4f\x0a\xd4\xbb\x6d\xf2\x9c\x31\x88\xda\xfa\x86\xb9\x25\x29\x34\xab\xd8\x67\xbb\x3e\x37\xf0\x9e\xc1\x41\x39\xf7\x68\x64\x72\xb1\x81\x53\xbe\x4c\xd1\xd1\xc5\xb1\x5c\x54\x92\x97\xac\x9d\x08\x92\xb0\x1f\x27\xfc\xbf\x48\x90\x49\xf9\xd5\xe7\xc9\xac\xb1\x67\xf2\xa4\x3a\x25\x11\xbd\x35\x10\x3a\x65\x9a\xf1\x55\x71\xae\x91\x38\x99\xc5\x31\x31\x34\x0e\x5d\xd5\x64\x16\xd7\x2a\xca\xbf\xd5\xab\xa1\x71\xcc\x79\x54\xab\xc5\xca\x79\xb5\x64\x0d\x6e\xda\xc0\xad\xa8\x78\xb7\xc0\xe0\x3a\x23\x11\x2e\x0b\xcb\x82\xcf\x21\x4b\x5b\xf8\x46\xcf\xdb\x32\xcd\x14\x8e\x26\xec\x00\x72\x05\x4b\x29\x00\x53\xc8\x99\xdc\x2d\x97\xf1\x8e\xa6\xb0\x46\xc2\xc6\x79\x73\x12\xa3\x3a\xea\xe2\xde\xa7\x2e\x8a\x36\x92\x70\x9c\xc1\x16\x0e\xd6\xf3\xed\xc4\xf6\x5d\xa6\x65\x3c\x27\x29\x11\x07\xbc\x05\x4d\x01\x2b\x18\xe1\x84\x20\xce\xa2\x35\x98\xdd\x12\xaa\x44\xfe\x32\x9e\x25\x38\x24\x68\x9a\xf0\x05\x5a\x7d\xd7\x7f\x29\x37\xf0\x00\x33\x59\xcf\x84\xa0\x84\x2c\xf8\x8a\x84\x08\x4f\x33\x52\x14\xe0\x89\x18\xe1\x54\x1c\x0d\x91\x7a\xc0\xc2\x10\xe3\x77\x9f\xde\x86\xc5\x53\x5e\x83\x5d\x27\x70\x23\xc8\x4b\xa5\x20\x6d\x84\x7b\x59\x56\x9d\x76\x8a\x55\x59\xaa\x7a\x03\x74\xca\x52\x39\xf7\x39\xa3\xb7\x59\x17\x21\x67\xd1\x88\xac\xe5\x40\xb1\x6c\xee\x9d\xf8\xf4\x29\x5c\xcd\x94\x94\x63\x98\x03\xc1\x9c\x34\x2d\x1e\x64\x43\x34\x45\x4b\xa5\xfc\xe8\x29\x17\xda\x73\x4a\xa2\x29\xb8\x56\x92\x50\xaf\x3c\x93\xd1\xfa\x96\x97\xdd\xaa\x47\x1c\xf7\x2c\x59\x9f\x78\x2b\x11\x25\x2f\xf7\x14\x8d\xb9\x02\x33\x96\x3a\xd9\x1e\x4a\x49\x86\x32\x31\x88\x8c\xc3\xeb\x9b\x50\x65\x26\xd2\x2e\x9f\xa0\x3f\x62\x16\xfe\x11\xb2\x60\xc4\x38\xeb\xfd\x8b\x24\x5c\x9a\x20\x61\xc5\x41\x15\xf9\x25\xb4\x5e\x65\x11\xbf\xe9\x23\xf4\x8b\x58\x6d\x01\x5f\x2c\x04\xe5\x96\xa9\x50\xc5\x64\x76\x3a\x45\x6b\xbe\x44\x73\xbc\x22\x68\xc1\x13\x82\xb2\x39\x66\xe8\xc7\xe7\x52\x50\xf4\xd1\xe1\x84\xaf\x08\x7a\xf1\x5c\x7d\x10\x47\x08\xaa\xea\x26\x69\x4a\x58\x46\x71\x04\x0b\x13\x3a\x79\xa5\x54\x85\x2b\x49\x92\xcb\x27\x8c\x33\x05\x35\xf9\x54\x91\x73\x09\x6d\x10\x4d\xf8\x09\x0e\xae\x45\x9f\x32\x2e\xa6\x0a\x6a\x92\xa3\xbe\x52\x29\xa2\x96\x09\x4d\x42\x51\x8b\xad\x9e\x77\xe3\xf7\xaa\xb0\x11\x7f\x36\x7e\x5f\xbd\xb9\x83\x97\xee\xd5\x59\x6d\x45\xb2\xf9\xd5\x22\x5b\x2a\x9f\x00\xf9\x2c\xbe\xc5\xd4\x5e\x5c\xa7\x9a\x25\x5e\xfc\xf0\xc3\xf3\x4a\xee\xb2\xa2\xa3\xf6\xcd\x8a\x04\xcf\x72\x26\x13\xe2\x8d\xe0\x60\x2e\x25\x38\x82\x72\xe2\x54\x4b\x71\x24\x2b\x82\x29\x4d\x85\x26\x0b\xac\x20\xeb\x41\x37\x34\x8a\x84\xd4\xc4\xcb\x8c\x8b\x9d\x20\xc0\x51\xb4\x46\x31\x8f\x97\x11\xce\x48\x28\x49\xc7\xe8\x95\x6a\xfe\xca\xf9\x4c\xa7\xf9\xee\xe9\xf5\x4f\x69\x2f\xe6\x61\x4f\x15\x82\xa7\x5a\x75\xae\x80\x69\x9e\xd7\x2f\xd4\x7f\xdf\x7f\x5e\xca\x21\x55\x3a\xf9\x98\xfd\x65\x6e\xf6\xa8\x3c\xc8\x28\xce\xc5\xb2\x02\x39\xb1\x46\x0d\x48\x3f\x19\x7a\x65\x3c\x0f\xfa\xcb\xe1\xc5\xd9\xe0\xec\x4d\x2d\x9b\x58\x36\xb0\x41\x5e\x15\x35\x16\xd7\xba\xb5\xec\x82\xb8\xc5\x38\xaf\xae\x6c\x30\x63\x57\x57\xb5\x62\x8b\x6c\x29\x4a\x5c\x5d\x1d\x9d\x0d\xae\xde\x8d\xdf\x5f\x5d\x55\x32\xd0\x18\xdb\x9e\x57\x36\xc7\x09\x5e\xdb\x60\xee\xad\x54\x0f\xef\x2c\x2e\x27\x8c\xa8\x87\x16\x97\x29\x19\xf2\xf0\x88\x86\x49\xf9\xaa\xa0\xfa\x8c\xa6\x54\xf3\xad\xaf\xef\x9a\xed\x5e\xff\x94\x36\xd7\x63\x92\xcb\x5a\x97\xc8\xa0\x6f\x44\xd4\xea\x10\x07\xa2\xa3\xe9\xac\xea\xe8\xea\x78\x95\xd3\x39\xf7\x31\x4f\xb2\x05\x8e\x6b\xf4\x96\x40\xeb\xd2\xd6\x5e\x49\x32\xdd\x5a\x65\x7f\xa1\x96\x77\x38\x8e\xe1\xa9\x2c\x55\xaa\xfe\x5e\x27\x42\x6a\xfb\xd7\x06\xaa\x7c\x6b\x58\x60\x46\xa7\x24\xcd\xf4\x52\x4c\x0d\x63\xc8\x3e\x1c\x1b\x73\x8b\xd3\x1e\xc2\x29\xba\x21\x51\x04\x16\x94\xd4\x94\x59\xc5\x69\x26\x95\x46\x89\xd2\x82\x47\x1c\xda\x83\x15\x2e\x1d\x0d\x20\x93\xc8\x41\x12\x79\x36\xa5\x0c\x61\xf3\xa4\xa9\x74\xc8\xbe\x25\x94\xc4\xdc\x78\x8a\xf7\x19\xba\x5b\x5a\xdc\xdb\x50\xc5\x49\x47\x48\x02\x1c\xc7\x55\x95\x40\x5b\xdb\x3a\xf8\x2a\xd9\x6b\xb0\xc4\x93\x80\xfd\xab\xff\xbe\xf4\x59\x0a\xdd\xdc\xd1\xa5\x9c\x58\xf8\xba\xfc\xa0\xe2\x14\x8c\x9b\x55\x47\x64\x0a\x42\x89\xf9\xa9\xb0\xea\xe1\x5b\xc3\xf2\x00\x37\x0f\x46\xdc\xc3\xc6\x21\x26\xae\x41\x23\x27\x2a\xb3\x64\xc5\x3d\x84\x23\xce\x84\x54\xcf\xe6\x92\xb7\x94\xbf\xc4\x61\x18\x72\x96\x9e\x0b\x7d\xba\xf0\xba\x91\xfb\xf8\x9e\x59\xc9\x02\x27\xd7\x92\x2b\x63\x1e\x0a\x06\xc5\x48\xbb\x5c\x20\x1c\x86\x3d\xce\xf6\x10\x61\xe9\x12\xcc\x2e\x34\x13\xda\x7d\x6a\x96\xd7\xce\x13\x70\xd7\x13\x2e\x05\xa5\x80\x4f\xb3\x39\xce\x10\xcd\xd2\x42\x77\x06\x05\x3f\x21\x10\x34\x16\x9a\x55\xd0\xa9\xa8\x98\xac\x48\x02\xb5\x23\xb2\xa2\x81\xde\x89\xe4\x4f\xd5\x4d\x92\x3e\x8e\xe2\x39\xae\xb8\xe1\xe8\xfe\x8a\x1d\xe8\x00\x3d\x7b\x26\xcb\x95\x9c\xbb\xf0\x14\x5e\x17\x59\x9b\x9e\x64\x3c\x24\x87\xf5\xcf\xf2\xd6\x9f\x26\x24\x3c\x86\x31\x8f\xf2\x61\x0d\x66\x8c\xe7\x9f\xa5\xd3\x93\x58\x4e\x65\xe9\x27\x6a\x1d\x29\x1e\x1f\x93\xc4\x7a\xf3\x01\x4c\x7f\x72\x1b\x27\x44\x9e\x7c\xac\x9e\xb8\x70\x3d\x22\x16\x67\x65\xb0\xbc\x76\xfd\x86\x4a\x9e\x47\x67\x3c\x1b\xd4\x1c\xc3\x91\xbe\x63\xb6\xb5\x25\xdb\xbb\xa1\x2c\xe4\x37\x79\xe5\x16\x6f\x38\xb9\xdc\xce\x8c\x01\x16\x77\x56\xe6\xb0\xf3\x26\x3e\x7e\x44\x60\x90\x47\x7f\xb8\xde\x43\x7f\x58\xa1\x83\xff\x28\x17\x2f\xf9\x49\x7c\xfc\x88\xfe\x70\x8d\x7e\xfd\x55\x39\x34\xfc\x61\x85\xcc\xad\xe2\xe3\x47\xc3\x8d\xaa\x43\x74\xd1\x53\xf4\x0e\x5f\x13\x94\x0a\xed\xce\xb4\x51\x03\x7f\x69\x6e\x0a\x85\x06\x25\x14\x29\xa9\xa3\x16\xa5\x9b\x5d\xc2\x9a\x1c\xdc\x44\xbb\xc9\x75\xe3\x72\x02\x1d\x3b\x21\xc5\x72\x29\x35\x0c\xd3\x5e\x5f\xc3\xdd\x5a\x6f\xf4\xca\x73\x17\xb4\x39\x38\x5a\xc4\xd0\x53\xf4\x8e\x32\xba\xa0\xff\x22\x28\xe4\x37\x2c\xa3\x0b\x82\x42\x29\x17\xb0\x16\x92\xe6\xe9\x1b\x9e\x1f\xa1\x9c\xfd\x19\x65\x24\x8a\xcc\x7d\x2a\xe3\x28\xe4\x08\xa3\xcb\x27\x53\x9e\x04\x46\x03\xba\x88\xd8\x93\xe7\x59\x16\xa7\x07\xfb\xfb\x65\xf6\x0f\x79\x00\x20\x3c\x01\x89\xb3\x74\x5f\xb0\x67\xc4\x71\x98\xc2\x15\x9e\xf8\xbf\xfd\xa7\x26\xf6\x0a\x9f\x0a\x99\x50\x4c\xad\x91\xf6\x26\xc1\x01\x19\x96\xef\x97\xf3\xdb\x61\x27\x0a\xbb\xda\xff\xf3\xdd\xbd\xac\x00\x18\xfb\xfa\x84\x32\x9c\x50\x52\x62\x0d\x21\x16\xeb\x8a\x3d\x9a\xd2\x88\x94\x75\x79\x73\x46\xf5\x75\x1c\x34\xd3\x0b\x18\x35\x67\xb4\xf0\x28\x3b\x3a\x1b\x80\x73\x58\x03\x08\x8a\x51\x47\x1d\xd0\xa4\xee\xfe\xf3\x14\x09\x4e\x40\x7c\x2a\x87\x76\x36\x28\xf5\x57\x1c\x85\xc1\x8e\xd1\x2f\x97\xd2\x1d\x16\x6a\xef\xd1\xf9\xd9\xeb\x66\x1f\x9a\x17\xcf\x7b\xca\xda\x22\xea\x06\x5b\xd1\x93\x6a\x2f\xec\xc7\x21\xe7\x39\xc8\xdd\x1d\x05\x2c\x7b\x25\x9d\x7b\xac\x7d\x72\x40\x03\xe7\x77\xe0\x7f\x21\x6b\x17\x42\xb0\xe3\xf0\x5e\xfd\xc9\x5b\xef\xda\xf1\xaa\x3a\xe8\x11\x9c\xdf\x09\x88\x61\x51\x33\x9a\xe0\x54\xca\x2b\xf1\xf5\xfa\xa7\x54\x2a\x80\x22\xc9\x31\xe2\xcf\x00\x0e\xf9\x29\xcc\x9b\x38\x31\xab\xcb\xc9\x15\x4e\xa8\xd0\x96\xdc\x73\xf4\x6e\xfc\xfe\x53\x4e\x8c\x3e\x9f\x57\xc7\x31\x4c\xe4\xf3\x68\x52\xcd\xcf\x17\x3f\xd8\x24\xd3\x88\x10\x71\x90\x10\x72\x5d\xe8\x30\x8e\xf9\x18\x9d\x9e\x9c\x0c\x9d\x0b\x41\xf9\xfc\x9a\xe9\x8d\x7e\x5e\xa6\x53\x90\xe0\x91\x7d\x1e\x03\xac\xf0\xbe\x05\xc2\xb8\x04\x7c\xd2\x0b\x69\x2d\x1e\xad\x56\x19\xc9\x02\xa8\x8c\x91\xac\x0a\xab\x66\x56\xc7\x48\x66\x56\x67\x75\x90\x7d\x8a\x2e\x96\x2c\xb5\x1f\x8d\xf2\x85\x6b\x6c\x0d\xb9\x2d\x83\x96\x44\x67\x51\x26\x4e\xf8\x2c\xc1\x8b\x34\x97\x07\xea\xee\x4a\x08\x57\xf0\x57\x48\x75\xb5\x66\x79\x31\x2c\x8b\x58\xb5\xec\x72\xa8\x24\x56\x85\xba\x62\x91\xab\x36\x69\xf9\x3e\x25\xe6\x40\x0e\x87\x03\x7d\xdc\x9b\xe0\xe0\x5a\x30\x48\x6e\x79\x70\xb0\xc8\xf1\xe1\xf8\x70\x34\x3e\xbf\x38\xb9\x1a\xff\x75\xe8\x16\x9a\xe6\xe9\xbb\x26\x2c\xc1\x18\x97\x2e\x63\xe9\x93\x95\x7b\xcd\xc0\x85\x1f\xc8\x71\xbd\x62\x1c\x7d\x78\x7d\x72\x3a\xf8\x4f\xd1\xfe\xdb\xc3\xbf\xfc\x34\x1a\x9d\x5c\x7c\x18\x1c\x9d\x6c\x2a\x3b\x76\xbd\x2c\xeb\x36\xc1\xea\xb8\x7f\xc1\x34\xcb\x3d\x18\xda\xe8\x9c\x43\x8d\xe7\x04\x77\xd2\xba\xfa\xc4\x0d\xca\xa5\xf3\xc6\x02\x59\x48\xe1\x4f\x23\x84\xe7\x9c\xa7\x24\xe7\xc4\x8a\x95\xb4\xde\xd1\xa3\xc3\xd3\xc1\xd1\xb9\xde\x2e\x07\x67\x6f\xae\x5e\x1d\x1e\xfd\xe5\xe4\xec\xf8\x93\x6e\x99\x25\x63\x6e\x6d\x88\xd2\xf0\x01\x67\x78\xd0\x0c\xc4\x21\x9f\x4e\x25\xcb\x17\x4f\x30\x42\xba\x63\xd0\xa7\xef\x47\xe3\x93\x8b\x96\x95\xf7\x53\xba\x37\x99\xc5\x75\x86\x38\x5c\x66\xbc\x17\x92\x8c\x04\x72\xdb\x7e\xf5\x66\x88\x06\x43\xa1\xf0\x8b\x33\x9e\x83\xce\x03\xf7\x76\x80\x97\x19\x97\xd5\xd5\xdb\x52\x4f\x7e\x0e\x86\xd5\xf2\x95\xf9\x1b\x0c\x3f\xfc\x30\x3c\x3f\x3f\xbd\xaa\xe7\x34\x5a\x52\xb1\x9b\x56\x16\x17\x3b\x37\xac\xa9\x25\x63\x24\x42\x21\x01\x1f\x12\xb8\x09\x11\x47\xf6\x98\xc2\xcd\x88\x7a\x45\xb1\x49\x9c\x0c\x86\x83\xb3\xc1\xf0\x33\xdd\xdb\xc7\xc0\x22\xe0\xb9\x85\x06\xc3\xd5\x0f\x28\xe6\x3c\x2a\xf4\x5b\xe3\x5e\x18\xee\x00\x38\x23\x88\xc0\xf1\xa9\x8f\x86\x3c\x04\x97\x1a\x65\x52\xaf\xd6\x1c\xcc\x79\x4a\x98\xd4\x12\xc0\x02\x0f\xa7\xe1\x3e\x3a\x9a\x63\x36\x13\x1b\x02\x7c\x94\x17\x2f\xf2\xee\xd2\xbc\x3e\x92\xb5\xce\xf1\xaa\x56\x2f\xe3\xea\x9c\xd7\x97\xa7\x91\x74\xce\x97\x51\x88\xa6\x42\x17\xbe\xa1\xd9\x9c\x32\xd4\x2b\x70\x21\x68\xe8\x52\x49\xaa\x8c\x72\x34\x38\x76\xc5\xcf\x83\x09\x57\xad\x32\x91\xad\x8e\x7b\xf0\x14\x69\x4c\x1d\x38\x1f\x44\x7c\x06\x43\x4c\x39\x58\x0b\x83\x2c\x12\x9f\x52\x30\x5f\xba\x16\x84\xea\x8f\x7e\x67\xe2\xf5\xe0\xf4\xe4\xea\xf4\xfc\xcd\x9b\xc1\x99\x5d\x5b\x6f\x16\xd0\xaf\x49\x44\x6f\x73\xdf\x29\x31\xa1\x42\x09\xc8\xa7\x1a\x07\xfa\x3a\xe5\xf0\xe8\xe8\x64\x38\x6e\xdc\x0f\x8f\x4f\x5e\x1f\xbe\x3f\x1d\x9f\x9c\x1d\x0f\xcf\x07\x67\xe3\xf1\xf9\xdb\xf3\xd1\xf8\xf0\x68\x3c\x38\xaf\xc1\x1e\x14\x2b\x0b\xaa\x75\x93\x69\x30\x5c\xbd\x14\xcc\x55\xe8\x0c\x8d\x5d\x18\x0c\x3f\xbc\x1c\xbd\x1f\x0e\xcf\x2f\xdc\x0f\x8b\x58\xb4\xc8\xd2\xc4\x00\x45\xf4\xcc\x64\x1c\x66\xaa\xa9\xcd\xd3\xf3\x37\x62\x12\x86\x87\xe3\xb7\xce\x36\x8b\x9b\xb9\xf6\x26\x85\x30\x49\xd7\x69\x05\x11\xd5\xd2\xea\xe8\xe4\xc3\xc9\xc5\x60\xfc\xd7\xd1\x5f\xdd\xe0\xe7\x4e\xc9\x58\x1b\x66\x9a\x85\xca\x09\xb5\x4b\x93\x47\x17\x27\x27\xee\x59\xfd\x05\x27\x8c\x32\x67\xa0\x87\xac\xee\xed\xc9\xe1\xe9\xf8\xed\xc9\x99\x60\x63\xfb\xae\x69\x67\xdd\x4d\x01\x20\x8b\x34\x57\x70\x96\x13\x8d\x24\x88\x97\x07\xe8\xbb\x1f\x9f\x2f\xcc\x84\xa6\xd8\x81\x96\xc8\x00\x5d\xb4\x96\x2c\xc1\x73\x9f\xff\xfc\x73\x35\x45\xac\x46\x05\x49\x56\x7d\x6c\xab\xe6\xf8\x5f\x0d\x53\xb0\x47\x0f\x54\x32\xd5\xa3\x1d\x5e\x96\x49\x86\x43\xba\x13\xe0\x84\x1e\x02\xb0\x04\xc7\x61\x42\xe6\xe8\x4d\x68\x12\x56\x43\x52\xf3\x44\x60\x59\x5b\x6a\x23\x1d\x3a\x9f\x10\x9d\xd8\x1b\x7a\x07\x8d\xe8\xa4\xe7\xc8\xd0\x1c\xc6\x52\x7d\x2f\xe3\x36\x13\x4b\x30\xed\x47\x3c\xb8\xb6\x37\xa5\x72\xf4\x6c\x39\x8a\xb6\xa4\x24\x6b\x68\x4c\xa3\xb8\xa8\xbb\x60\x6b\x53\x2b\x9c\x00\x84\x9c\x3d\xcf\x86\x8d\x09\x1a\xb6\x35\x26\xc8\xb8\x51\x63\x75\xac\x8c\xc2\x3d\xd3\x38\x32\x5b\x4e\xae\x8e\x19\xbb\x1b\xf2\x84\x83\x5a\xdd\xb0\xee\xaa\xe5\x7a\xad\x84\xe9\x16\xea\xe0\xaa\xd7\xc5\x48\xed\xf8\x80\x6e\x26\x95\x77\x80\xaf\x69\x44\xce\x93\xa3\x92\x9b\x96\xe9\x00\xad\xed\x8e\x47\x67\x03\x9b\x4d\xc1\x6e\x68\x69\x45\x99\xad\x9b\x6f\x7a\x6e\x5b\x4b\x7b\x8d\x15\x1b\xce\x25\x7b\x8a\x8e\x94\xf7\x63\x14\x49\x53\x00\xbc\xbf\x7f\xa1\x76\x8e\xe3\xe2\xfd\x7d\xf0\x9d\x97\xee\x77\x50\x4c\x5a\xb5\x0d\x3b\x4b\xe1\xad\x8c\x16\x92\x3d\xd5\xf5\x78\x19\xc2\x83\x16\x17\xcd\x2e\xc7\x35\x47\x17\x2a\xf7\xd1\x8a\x0e\x16\xff\xc9\xbe\xdd\x6f\xcf\xb8\x6f\x0e\x38\x84\x53\x48\xd5\x55\x7c\x99\x49\x37\x32\x47\x41\x70\xd7\x2b\xfc\xb3\xd4\xb5\xb7\xbe\xdb\x86\x4e\x83\x62\x79\x64\x76\x43\xa6\xc6\xd1\x32\xc1\x91\xb5\x9b\x32\x43\x4a\xd9\x6c\x19\xe1\xc4\x96\x25\x77\x3e\xbb\x27\x12\x4a\x0a\x6a\xc7\xc4\x4f\x41\xb6\x57\x6f\x86\x43\xa2\x63\x9d\x34\xad\xca\x9e\x92\x05\x81\xd4\xf7\x9c\x2a\xf7\x4f\x97\x4f\xcf\x57\xaf\xde\x0c\x1b\xb8\xca\xe1\x6e\x5a\x22\x99\x9d\xa3\xee\x99\x76\xca\xcd\xf9\x53\x50\x6c\x30\x1c\x72\x1e\x95\xe9\x54\xf2\xba\x2e\xa8\x23\x3f\x3f\x14\x4d\x4a\xce\xeb\x9f\x82\x32\x6f\x79\x9a\x9d\xa8\x0e\x94\xe9\x63\xf1\xab\x2f\xa8\x64\x26\x3e\x14\xad\x2c\x8e\xef\x9f\x82\x62\xaa\xae\x41\xd1\x8d\x32\xdd\x9c\xfe\xf9\x05\xf5\xea\x59\x1e\x8a\x86\xd6\xe0\x8c\x4f\x41\xc5\x37\xd0\x11\x33\xe2\x69\x5d\x26\x63\x43\x18\x49\x41\xc8\x7a\xa6\xf5\x27\xa1\x64\x4a\x3e\xcd\xea\x2d\x51\x71\x44\xb2\x06\x12\x16\xa1\x36\x0e\xf2\xa5\xe4\xc1\x56\xf2\x96\xfc\x77\xa6\x1d\x0b\xc3\x9d\x10\xaf\x81\xf9\x5a\xd8\xce\xce\x70\xf6\xa8\xe4\x6a\x40\xc3\xf6\xfe\x93\x97\x4c\xb9\x56\x31\x82\xfa\x47\x11\x5f\x86\xc3\x84\xaf\x68\x08\x88\xae\xd2\xba\x96\x47\x48\x6f\x13\x4f\x00\x86\x5b\xa3\xd6\x5f\x7f\xed\xe9\xcd\xb0\x43\x6c\x81\xb3\x74\xe1\x10\x6e\xf6\xa1\x36\x65\xfb\xab\xef\x5d\x3b\xb6\x03\x3b\x4e\x56\xdf\xa3\x31\x8d\x7b\x0a\xce\xa1\xe4\xca\x17\xd0\x30\x51\xa3\x32\xcd\xd1\x2a\x55\x14\x7b\xc7\x43\x52\x45\xa5\x64\x38\x3b\x5f\x66\x33\x4e\xd9\x4c\x5b\x32\x1a\x66\x77\xc8\xc3\x86\x29\x0d\xb2\x46\xda\xe5\xbd\xb5\x22\xca\x55\xb0\x33\xcf\xd9\x6b\x69\xa6\x12\x69\x55\x5f\x36\xa7\x3f\x97\xcd\x93\xcb\xed\xb4\x66\xcb\x5d\xb9\xac\xef\xd9\x06\x58\xf2\x2f\xd2\x09\x9a\xd4\xd6\xf7\x95\xf6\xd0\xe5\x93\x5e\x20\xff\x9b\x57\x85\x70\x1c\x47\x6b\xd4\x9b\xba\x99\xa9\xbf\xc6\x8b\x28\xf7\x48\x2a\x6e\xd7\x9b\x6f\xc6\x95\x25\xd5\xb8\x0f\x87\x04\x8b\x59\xac\x57\xe6\xad\xf2\x4d\x51\xc9\x86\xc5\xb9\x84\x53\x31\x2d\x33\x0d\xa5\xeb\xe8\x18\x1d\x16\x1d\xb2\xa0\x62\x28\xcf\xbf\xd6\x72\xc5\x09\xbf\x85\x98\x10\x01\x02\x44\x90\x01\x20\x04\x91\x2c\x08\xd1\xf8\x74\xa4\x10\x42\xd2\xbe\xe1\x4b\x59\xc7\x18\xf8\xb1\x1b\xc6\x80\x0a\x98\x1a\xc1\xfe\xa0\xf9\x67\x5f\xbb\x3f\xa7\xfb\x10\xad\x25\x3b\xd4\x06\x3c\x00\x8b\xa8\xc0\xf9\x48\x05\x8b\xc5\x9c\x11\xd6\x86\x3e\x50\x2b\xf8\xa0\x48\x04\xd5\xd6\xcb\xa8\x04\x67\x10\xed\x84\x13\x22\x63\x1f\xa5\x01\x49\xc5\x10\xc3\xc8\xb5\xcb\xe3\x16\xd1\xcb\x0d\x31\x98\x0d\x81\xfc\x79\x80\xe6\x53\x21\xe6\x64\xdf\xfe\xb9\x24\x10\x70\x99\x71\x14\xcc\x49\x70\x0d\x3d\x83\x5b\x4e\xc2\x82\x2d\xa2\x43\x8b\x58\x70\x47\x70\xe8\x53\x34\x18\x1e\xbe\xab\xf8\x86\x2f\x30\xa3\x2a\x0a\x09\xdd\xcc\x09\x53\xa1\x62\x22\x09\xa8\xa4\x5c\xc2\x77\x1c\x99\xeb\x0a\x40\xdf\x41\x84\x68\xc4\x83\x6b\xe5\x79\x5e\x0a\x7c\xa6\x31\x5e\x40\x62\xe5\xdb\x1c\xb3\x30\xda\x22\xac\xd6\x1d\x12\x2c\xff\x2d\xa9\xa7\x18\x12\x70\x31\x30\x00\x27\x81\x1f\x88\x8c\x83\xb6\x9d\xc2\x76\x43\x85\xce\x81\xcd\xa5\x01\x36\x06\xc9\xba\xa3\x5e\xef\x73\x55\xdf\x47\xc0\x6c\xbd\x99\xcd\x83\x67\xeb\x75\x3c\x4c\x20\xad\x12\xfd\x1e\x4d\xc6\xa3\xc9\x78\x34\x19\x8f\x26\xe3\xd1\x64\x3c\x9a\x4c\x67\x34\x19\x9b\x06\x74\x0f\x08\x33\xd6\xdc\x1e\x76\xc6\xc3\xce\x78\xd8\x99\xd2\x04\xda\xa9\xa2\x03\x61\x81\x20\x46\x6c\x5b\xc6\x45\x56\x31\xa3\xf2\x14\x87\xa3\x88\x07\xbb\x1d\xe4\xe7\x77\x72\xda\xc5\xc2\xc4\x8b\x92\xd0\x74\x9e\x8d\x5f\x89\x11\xa2\x62\xfc\x52\x8a\xe0\x28\xe5\x82\xef\x80\x9b\x41\x41\x99\xac\x61\x9d\xc9\x09\x82\xe0\x17\x84\x67\xb3\x84\xcc\xdc\x9b\xee\x8e\xe6\xc2\xa9\x1e\xa8\x9d\x55\x32\x0b\x70\xc7\x82\xce\x94\x14\x28\x29\xd1\xf2\x65\x75\xb8\x61\xb1\xb0\x5f\x80\x99\x72\xa8\x7e\x9a\xaf\x33\xf0\xbe\xce\xd4\x42\x03\x77\x52\xb1\x36\x31\x2b\x7b\x4d\x4b\x50\x9a\x02\x3a\x03\x3a\x61\x25\x05\x8e\xe3\xb4\x71\xe4\x45\x17\x1b\xe6\xcb\xa3\x36\x3d\x2c\x6a\x53\x9b\xc1\xb1\x14\x0c\x90\x5b\x1e\x1f\x1d\xa0\x93\x04\x55\x4a\xc5\xf1\x08\xc2\x2b\xb6\xc2\x46\xf2\xa0\x48\x1e\x14\xa9\x0c\x8a\x24\x9f\x3e\x78\x54\x88\x48\xb6\x61\xf6\x64\x5e\x33\xa3\xc7\x3a\xda\x2d\xd6\x51\x83\x88\xbd\x0e\xc3\x5e\x90\x84\xa9\x92\xae\xde\xe9\x73\x7b\xa7\xcf\xfb\x77\xf9\x2c\x34\xe6\x4f\xe3\xa1\x77\xf8\xee\x55\xe1\x67\x5d\x38\xe9\x95\xd5\x78\xd3\x4f\x4f\xa5\x3c\x88\x3b\x6c\x59\xb5\xfd\x24\x4e\x9f\xa2\x0b\x1a\x86\xa8\x4c\x24\xab\xe2\x6d\xf8\x7b\x1a\xc9\xeb\x87\xe2\x24\x75\xce\xfa\x54\xac\xf4\x16\x9a\xaf\xf3\x52\xe9\xf8\x57\x66\xa6\xb9\x2a\xf2\x30\xf4\x51\xe7\xbb\x4f\x45\x9f\x23\xc3\x35\xc1\xa4\x4f\xe9\xd8\x59\xa6\x8f\x56\x4b\xbd\xf3\x79\xdd\xf9\xfc\x41\x68\xf2\xe9\xf7\xb6\x9d\x3b\x9e\x3f\xc4\x5a\x7b\x4c\x4e\xe7\xf7\x4f\x8f\x2f\xc3\xe1\xfc\xfe\xe9\xf4\x65\x3b\x9b\xdf\x3f\xfd\xbe\x06\x47\xf3\x07\xa6\xe2\x17\xe3\x64\x7e\xff\x74\xfb\xc2\x1c\xcc\x1f\x8c\x60\x9b\xb0\xd8\xfd\x10\xab\xc6\x5f\x0d\x9c\x55\xe3\xa9\x76\x6b\x2f\x18\xfb\x4a\xb6\xde\x26\x84\xe6\x5e\x07\x84\x66\x0f\xcd\xec\xa1\x99\x51\xf3\xa0\x91\x87\x66\xde\x05\x34\xb3\x15\x3a\x18\xd9\xa1\x8f\x0f\x50\x44\xd9\xf2\x56\xe7\xba\x1f\x80\x61\xf9\xc1\x1a\xbc\x81\x3c\xe0\xf0\xdd\x00\x87\xdb\xc2\x09\x14\x4f\xb5\x01\x12\x57\x30\xa0\x3d\x32\xb1\x05\x99\x58\xb9\x68\xa4\x65\x57\x96\xca\xc5\x38\xdc\x80\x16\x57\x2a\x7d\xb3\xbe\x41\xa6\xae\xe1\xb5\xf7\xbd\x90\x06\x70\x69\x46\x05\x97\xd5\x5d\x5c\xf6\x04\x6d\xcd\x87\x60\x70\x54\x81\xb4\x79\xaa\x3b\xa3\xef\x24\x1d\x8d\xeb\x88\x1b\x95\x5b\x5e\xf7\x18\x8c\xb5\x11\xee\xb1\x81\xad\xb1\x5f\xba\x3e\x82\x68\x25\xd5\x44\x2b\x1c\xf2\x67\x84\xab\xfb\x48\x81\x1a\x3b\xc3\x15\xe5\xc8\x2f\x12\xbe\x04\x94\xc1\x6a\x7b\x85\xd9\x43\x72\xb3\x0d\x20\xa5\x5a\xef\x1d\x80\x72\x5b\x70\xbf\x3d\xe0\xb7\x07\xfc\xf6\x80\xdf\x1e\xf0\xdb\x1c\x9d\x07\xfc\xae\x9d\xb4\x3d\xe0\x77\xb9\x37\x3b\x00\xfc\xf6\xc0\xd7\x1e\xf8\xda\x03\x5f\x7b\xe0\x6b\x0f\x7c\xed\x81\xaf\x3d\xf0\xb5\x93\x1a\x06\x1a\xb4\x76\x82\x6d\x6a\xb3\x3b\x1e\x74\x7b\x5d\x1e\x0c\xba\x48\xf6\x60\xd0\x90\xc3\x83\x41\x7b\x30\xe8\x6d\xc0\xa0\x7b\x1e\x0c\xda\x83\x41\xef\x00\x0c\xba\x18\x45\x09\x20\x2a\xa4\x09\x5c\x9b\xad\x41\xf9\xad\xde\x14\x98\x51\x9e\x52\xfd\x2a\x9f\xd8\x41\x3d\x06\xd8\x9e\x4a\x84\x9e\x51\x51\xf9\xb6\x21\x0f\xa9\x35\xa2\x69\xcd\x1a\x75\xc0\x5f\x2a\x55\x46\x52\xba\x0e\x00\xb1\x5f\x98\x09\x2c\xb4\x6f\x36\x0e\x77\xe4\xb7\x92\x09\xfa\x41\xf0\x00\x3b\xba\x3c\x54\x51\x5f\x72\xf7\x87\x11\x21\xf9\x0d\xd5\x8c\x66\xf3\xe5\xa4\x1f\xf0\xc5\x7e\xc9\x7d\x63\xbf\x8e\x19\xd3\xe6\x85\xa0\xdc\x16\xf2\x23\xe5\x66\xe0\x39\x5b\xfb\x28\xd8\xaa\xaa\x5f\xba\x6f\x7a\x09\x9d\x5f\x40\xcb\x53\x50\x51\x3f\x70\x23\x44\x83\xcb\x0b\x2c\x70\x4b\x89\x08\x28\xcd\x2b\x22\x17\xbb\x46\xc4\x4a\x48\x1c\xd1\x00\xa7\xe0\x60\x80\x50\x5a\x78\x3f\x14\xd2\xe3\x82\x14\x11\xc6\x6d\x8e\x07\xad\x24\xd4\x99\xec\x64\x44\x5d\x7c\x17\xec\xd5\xee\xea\x3e\xde\x5f\x8d\xdb\xfb\xfd\x30\x57\xe3\xf5\xb9\xad\x5c\x93\x5b\xed\xb5\xbd\x6e\x7c\x87\xca\x97\x4f\x45\x86\x8e\xc6\x52\x65\x8b\xbb\x99\xd3\x60\x8e\x4c\xac\xbe\x8c\xa3\x64\xc9\x1c\x27\x40\x75\x6a\xba\x3a\x3a\x3f\x1b\x5f\x9c\x9f\x9e\x9e\x5c\xb8\xde\x03\xaa\x2b\xda\x1b\x19\x59\xab\x18\x92\xf2\xb7\xd3\x53\xc1\x32\x4d\xe4\xc9\x60\x4e\x82\xeb\x9e\x09\x13\x63\x66\xeb\xd9\xc2\x0e\xb6\xd9\x66\x36\x91\xc1\x16\xf4\xc7\x5e\x71\xc0\x94\x40\x90\x1a\xe5\x63\xac\xa4\xd8\x87\x17\x2f\x7e\x1c\xe6\x79\xda\xd9\xf7\x4b\xc6\x88\xf4\xf0\x90\x1e\x1e\xf2\x8b\x00\x39\xf1\xf0\x90\x5b\x2d\x68\x8f\x0c\xf9\x58\x91\x21\x3d\x28\xa4\x2c\xf3\xd8\x40\x21\x61\x73\x42\x47\x83\xe3\x0b\x80\xec\x50\x57\x90\x0a\x5e\x4c\xf0\x35\x0e\x17\x6a\x7e\x0a\x59\xa6\x1c\x89\x16\x38\xde\x62\x4a\x64\x61\x51\x76\x77\x54\xf7\x68\x95\x1e\xad\xd2\xa3\x55\x7a\xb4\xca\x72\xc2\xdd\xd0\x2a\x3b\x43\xb6\x79\x18\xcb\xaa\x30\xf3\x30\x96\x1e\xc6\xd2\xc3\x58\x7a\x18\x4b\x0f\x63\xd9\x7a\x6a\xf2\x08\x96\x1e\xc1\xd2\x23\x58\x7a\x04\xcb\x0a\x82\xe5\x0b\x8f\x60\xe9\x11\x2c\x1f\x1c\xc1\xb2\x4b\x4f\x26\x98\x85\x37\x34\xcc\xe6\xb5\xbe\x58\x1a\x34\x32\x3f\x1e\xbc\x4c\x0f\x97\xe9\xe1\x32\x3d\x5c\xa6\x87\xcb\xf4\x70\x99\x9d\xe9\xe3\xe1\x32\x3d\x5c\xa6\x87\xcb\xf4\x70\x99\x1e\x2e\xd3\xc3\x65\x7a\xb8\x4c\x0f\x97\xe9\xe1\x32\x3d\x5c\xa6\x87\xcb\x7c\x44\x70\x99\x38\x8e\xd3\x4e\x5e\x5c\x1e\x23\xd3\x63\x64\x7e\x79\x18\x99\x1e\x1e\x53\xfe\x7c\x0c\x90\x87\xc7\xd4\x3d\xb9\xc0\x2c\x98\x93\x44\x5e\x99\x4d\x69\xa0\x1c\x13\x75\x06\xbd\xde\x8f\x22\x9c\xa6\x92\x74\x1f\x3f\xa2\xbe\xbc\x2b\x15\x8b\x63\x58\xcd\x80\xfe\x9d\x43\x67\x5c\x3e\x91\xbb\x06\x90\xb9\xa7\xf9\xe8\xf2\x89\xb1\x2e\x3c\x3e\x27\xf2\xf8\x9c\x8f\x13\x4f\xea\x31\xe3\x73\x6e\x0f\x97\xe2\x91\x3d\x3d\xb2\x67\xe5\xe7\x91\x3d\x3d\xb2\xe7\xd7\x8d\xec\x89\xee\x24\x50\x0f\xc3\x50\x28\x20\xaf\x23\x72\x8b\x3e\xc0\xd0\xd1\x71\x42\xc5\xf9\x08\x4e\x55\x52\xd8\x88\x1c\x31\x49\x84\x9a\x87\xde\x33\x7a\x8b\x8e\xf9\x02\x53\x86\x46\x3c\xb8\x26\x10\xf7\x85\xa3\x88\xdf\xa0\x63\x7a\x8d\xd3\xac\x2c\x7d\xc1\xe9\x6d\xb1\x58\x32\x1a\xe0\x8c\xc8\xc3\xa3\xc4\xf9\xe2\xb2\x15\x82\xa4\xb9\x09\x8d\xd6\x2c\x40\x87\x43\x1b\x34\xcb\x34\x22\xb7\x2b\x1e\xf5\x42\xe8\x9a\x5d\x14\x8b\x21\x7c\xe0\xd1\x60\x31\x2b\x0b\x63\xe7\x84\xda\x2b\xef\xd5\x31\xad\x6a\x13\x55\xef\xc6\x76\x13\xe0\x41\x59\x3d\x28\xab\x07\x65\xad\xfc\x3c\x28\xab\x07\x65\xf5\xa0\xac\x1e\x94\xd5\x83\xb2\xba\xc8\xe4\x41\x59\x3b\x4d\xe7\xe7\x0c\xca\xba\x7b\x98\x52\x89\x44\x2a\xda\xb4\x24\x02\x86\x69\x3d\xed\xcb\x03\x6b\x75\xe2\xb1\xa2\x26\x28\x57\x0f\xd6\xea\x68\xec\xcb\x00\x6b\xd5\x8d\xc9\x2a\xe4\xe9\x27\x5d\xb3\xa0\x5a\xdc\x36\x72\xc1\x67\x78\x46\x58\x7e\x24\xf4\xc8\xaf\x1e\xf9\xd5\x23\xbf\x1a\x35\x7e\x76\xc8\xaf\xf5\xd9\x57\xfa\xb8\xdb\x84\x65\x59\x5b\x76\x31\xe1\xe8\x8f\x64\xc2\x63\x3d\x33\x75\x4e\x44\xf5\xc5\x57\x93\x2c\x36\x7e\xad\xdb\xe5\xea\x3d\x6d\xb1\x5f\x6d\xda\x65\x1d\x79\xa9\xec\x69\x43\x70\x15\x3a\xa6\x65\x0f\x84\x62\x3c\x85\xe5\x2d\xcf\x69\x89\xba\xac\x51\x61\x99\xc2\xd4\x09\x0d\xc0\xb8\x7c\x86\x3f\x23\x92\xf5\x94\x83\xd2\xbe\x94\xb6\xfb\x90\x2d\x27\xd8\xff\x59\x86\x69\x1e\xb4\x89\xf2\x30\xdd\x87\x44\x61\xfc\x5a\xd0\x85\x73\xa7\xad\xcf\x06\x52\xd8\x09\x07\x9c\xde\x05\x0f\x78\x73\x57\x31\xdb\x20\x1f\x31\xac\xb0\xcb\xf5\xeb\x13\xb9\x43\x79\xcf\x24\x7b\xbf\x3f\x13\x74\x62\x8b\x67\x8e\xf2\xb6\xc9\x8d\x47\xda\xe1\x46\x95\xf0\x78\xc6\x8f\x03\xcf\xd8\x02\x2f\xdc\x7f\xf1\x9d\x84\x15\x6e\xe3\xab\xb6\xfd\xea\xd1\x63\x07\xb7\x3e\xf2\xef\x01\x84\x3d\x80\xf0\xa3\x81\x97\xf2\x00\xc2\xdb\xaf\x6a\x8f\x22\xfc\x58\x51\x84\x5b\x67\xdb\x43\x09\x7f\xbe\x50\xc2\x1e\xb1\xd7\x23\xf6\x7a\xc4\x5e\x8f\xd8\xfb\xc9\x10\x7b\x3d\x30\x6f\xb3\x8e\xe9\x81\x79\x3d\x30\xaf\x07\xe6\xf5\xc0\xbc\x1e\x98\xb7\xeb\x41\xc4\xa3\xf3\x7a\x74\x5e\x8f\xce\xeb\xd1\x79\x2b\xe8\xbc\xcf\x3d\x3a\xaf\x47\xe7\x7d\x70\x74\x5e\xfd\xe7\xe7\x86\x97\xeb\x01\x73\x3d\x60\xae\x07\xcc\xf5\x80\xb9\x1e\x30\xd7\x03\xe6\x7a\xc0\x5c\x0f\x98\xeb\x01\x73\x3d\x60\xae\x07\xcc\xf5\x80\xb9\x1e\x30\xd7\x03\xe6\x7a\xc0\x5c\x0f\x98\xfb\x45\x02\xe6\x16\xd3\xdf\xdd\x6d\xc9\x63\xe7\x7a\xec\xdc\x2f\x0f\x3b\x57\x30\x7f\xdf\x03\xe8\xca\x9f\x0f\x53\xf1\x00\xba\x32\x9f\xc7\xaf\x45\x1e\xbf\xf6\x71\x42\x6f\x3d\x66\xfc\x5a\x8f\x42\xeb\x51\x68\x91\x95\x5b\x3c\x0a\xad\x39\x0c\x8f\x42\xfb\x15\xa1\xd0\x7a\x28\x53\x0f\x65\xea\xa1\x4c\x2b\x3f\x0f\x65\xea\xa1\x4c\x3d\x94\xa9\x87\x32\xf5\x50\xa6\x2e\x32\x79\x28\xd3\x4e\xd3\xf9\x39\x43\x99\xce\xb3\x2c\x7e\x43\xaa\x7d\x32\x00\x0c\x65\xd1\x5a\x32\x4f\xb2\x03\xf4\xf3\xf3\x9f\x7f\xae\xa6\x08\x0e\x3d\x40\x70\x92\xaf\x63\xf1\x7f\x79\x90\xa5\x2e\x50\x52\xd4\x88\x67\xea\x21\x4b\x1d\x8d\x7d\x19\x90\xa5\x1e\x65\xd4\xa3\x8c\x7a\x94\x51\xa3\xc6\xcf\x0e\x65\xf4\x6b\x41\x80\xb4\x79\x21\x7c\x36\x60\x90\xb6\x4b\xf7\x4d\x2f\xa1\x9d\x80\x92\x77\xc1\x93\x7c\xbc\x40\x90\xbb\xba\x8f\xf7\x57\xe3\xf6\x7e\x7f\x26\x08\x8e\x1e\x8f\xf1\x71\xe0\x31\x3e\x38\xb2\x71\x1d\x00\xf2\x65\x37\xf4\xc7\x6e\xc0\x8f\x8f\x15\xfa\xd1\xa3\x3e\x7a\xd4\xc7\x2f\x02\xbb\xc4\xa3\x3e\x6e\xb5\xa0\xbf\x08\xc0\xc7\x47\x03\xd2\xe8\xf1\x19\x65\x19\x8f\xcf\xe8\xf1\x19\x3d\x3e\xa3\xc7\x67\xd4\x69\x1e\x9f\xd1\xe3\x33\x7a\x7c\x46\x8f\xcf\xe8\xf1\x19\x3d\x3e\xa3\xc7\x67\xbc\x5f\x7c\x46\x0f\xcd\xe8\xa1\x19\x3d\x34\xa3\x87\x66\xac\x41\x33\xbe\xf0\xd0\x8c\x1e\x9a\xf1\x73\x81\x66\xf4\xf8\x8c\x0f\x8b\xcf\xe8\x11\x1a\x1d\x08\x8d\x0f\x43\x9f\x2f\x09\xa5\xf1\xe1\x38\xea\xf1\x22\x35\x3e\x1c\x8d\x1e\x2f\x5a\xe3\x03\xad\xbc\x47\x87\xd8\xf8\x60\x74\xf9\xf4\x3b\xde\xce\x51\x1b\x1f\x6a\xdd\x3d\x26\xe4\xc6\x87\xa1\xc9\x97\x81\xde\xf8\x30\xb4\xfa\xb2\x11\x1c\x1f\x86\x86\x5f\x03\x8a\xe3\x27\xa0\xe4\x17\x83\xe4\xf8\x30\xb4\xfb\xc2\xd0\x1c\x1f\x94\x68\x8f\x1c\xd1\xf1\x6b\x83\x75\xc4\x71\x9c\x76\x72\x71\xf2\x58\x8e\x1e\xcb\xd1\x63\x39\x7a\x2c\xc7\xc7\x10\xb0\x52\xa4\xed\x08\xd5\xd1\xac\xf0\x6b\xc5\x77\xd4\xeb\xfc\x28\xc2\x69\x7a\x66\xdc\xb6\x02\x8d\x7a\x9a\x1d\x74\x76\x0f\x07\x89\x3c\x1c\xe4\xe3\x84\x2f\xf2\x70\x90\x1e\x0e\xd2\xc3\x41\x7a\x38\x48\x0f\x07\xf9\x85\xc0\x41\x02\x1e\x5c\x18\x0a\x65\xe0\x75\x44\x6e\xd1\x07\x18\x00\x3a\x4e\xa8\x38\x72\xc0\x41\x45\x8a\x0c\x91\x23\x26\x89\x50\x90\xd0\x7b\x46\x6f\xd1\x31\x5f\x60\xca\xd0\x88\x07\xd7\x04\xe2\x8c\x70\x14\xf1\x1b\x74\x4c\xaf\xc5\x29\xbc\x24\x43\xc1\x2d\x6c\xb1\x58\x32\x1a\xe0\x8c\xc8\xf3\x98\x84\x78\xe2\xb2\x15\x82\xa4\x29\x07\x8d\xd6\x2c\x40\x87\x43\x1b\x2a\xc7\x34\x22\xb7\x2b\x1e\xf5\x42\xe8\x9a\x5d\xa0\x8a\x21\x7c\xe0\xd1\x60\x31\x2b\x8b\x54\xe7\xb4\xd8\x2b\xef\xd5\xe1\x8c\x6a\xe4\x2e\x77\xc3\xa3\x6a\x7a\x54\x4d\x8f\xaa\x59\xf9\x79\x54\x4d\x8f\xaa\xe9\x51\x35\x3d\xaa\xa6\x47\xd5\x74\x91\xc9\xa3\x6a\x76\x9a\x4e\x8f\xaa\x99\x17\xf3\xa8\x9a\xed\x74\xf0\xa8\x9a\x8f\x1d\x55\x53\x37\x26\xab\x90\xa7\x9c\x74\xcd\x82\x6a\x71\xdb\xc8\x05\x9f\xe1\x19\x61\xf9\xca\xf1\x10\x9d\x1e\xa2\xd3\x43\x74\x1a\x35\x7e\x76\x10\x9d\xf5\xd9\x57\x7a\xb7\xdb\xe0\x64\x59\x5b\x76\x31\xe1\xe8\x8f\x64\xc2\x63\x3d\x33\x75\x4e\x44\xf5\xc5\x57\x93\x2c\x36\x7e\xad\x5b\xd1\xea\x3d\x6d\xb1\x36\x6d\xda\x65\x1d\x49\xa8\xac\x5f\x43\xf0\x95\x39\xa6\xe5\xdb\xf7\x62\x3c\x85\x9d\x2c\xcf\x69\x89\x22\xac\x51\x61\x99\xc2\xd4\x09\x0d\xc0\xb8\x64\x85\x3f\x23\x92\xf5\x94\x87\xce\xbe\x94\xb6\xfb\x90\x2d\x27\xd8\xff\x59\x86\x69\x1e\x84\x88\xf2\xb0\xd3\x87\x84\xcb\x7b\x04\x30\xb0\x3b\x02\x82\xcd\xfd\x96\x3e\x1b\xf4\x57\x27\x72\x6b\x7a\x17\xe8\xd6\xcd\xbd\xa5\x6c\x83\x7c\xc4\x08\xb0\x2e\xef\xa7\x4f\xe9\x11\xe4\x9d\x73\xec\xfd\xfe\x4c\xd0\x64\xdd\x9e\x2a\xb9\xad\xa8\xe2\xac\xe2\xf1\x67\x1f\x07\xfe\x6c\x1d\x0e\xf6\x4f\x1e\x0e\xd6\xc3\xc1\x7a\x38\xd8\x2f\x04\x2a\xc9\xc3\xc1\x7a\x38\x58\x0f\x07\xeb\xe1\x60\x3d\x1c\xac\x87\x83\xf5\x70\xb0\x1e\x0e\xf6\xcb\x82\x83\x75\x2a\x5d\x1e\x27\xb6\x59\x4d\xf4\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xb6\x5c\xcc\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x3e\x14\xc5\xe3\xc4\x7a\x9c\x58\x8f\x13\xfb\xb9\xc0\x31\x3e\x52\x40\x2e\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\xd5\x84\xc7\x89\xf5\x38\xb1\x9f\x52\x2d\xf5\x38\xb1\xd5\xa1\x78\x9c\xd8\xca\xcf\xe3\xc4\x76\x62\x14\x8f\x13\x5b\xef\x93\xc7\x89\xf5\x38\xb1\x1e\x27\x16\x7e\x1e\x27\xd6\x24\x93\xc7\x89\xf5\x38\xb1\xc5\xcf\xe3\xc4\x7a\x9c\x58\x3d\x0a\x8f\x13\xdb\xc2\x6f\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\x77\xce\xf1\x38\xb1\x1e\x27\x76\xf7\x38\xb1\xbd\xc2\x32\x22\x21\x63\x35\xa8\xd0\x58\x89\xb4\x0f\x2f\x5e\xfc\x69\x98\xe7\xd9\x15\xa4\xac\x07\x94\xf5\x80\xb2\x1e\x50\xd6\x03\xca\x7a\x40\xd9\x07\x07\x94\xdd\x21\x40\x90\x07\xa7\xf5\xe0\xb4\xf7\x0b\x4e\x0b\x9b\x13\x3a\x1a\x1c\x5f\x00\x4c\x90\xba\x3b\x57\x68\x86\x82\xaf\x71\xb8\x50\xf3\x53\xc8\x32\xe5\x48\xb8\xc0\xf1\x16\x53\x22\x0b\x8b\xb2\xbb\xa3\xba\x47\xcd\xf5\xa8\xb9\x1e\x35\xd7\xa3\xe6\x96\x13\x3c\x6a\xae\x75\x12\x3c\x6a\xae\x47\xcd\xf5\xa8\xb9\x76\xce\xf0\xa8\xb9\x1e\x35\xd7\x39\x72\x8f\x9a\xeb\x51\x73\x3d\x6a\xae\x47\xcd\xf5\xa8\xb9\xf9\x00\x3d\x6a\x6e\x35\xc3\x63\x46\xcd\xed\xd2\x93\x09\x66\xe1\x0d\x0d\xb3\x79\xad\x2f\x96\x06\x8d\xcc\x9d\x31\x7a\x3f\x39\x3c\xef\x57\x83\xce\xeb\xb1\x79\xad\xd8\xbc\xf7\x4f\x9b\x2f\x09\x97\xf7\x61\x38\xe9\xf1\x62\xf2\x3e\x0c\x7d\x1e\x2f\x1e\xef\x03\xac\xb6\x47\x87\xc5\xfb\x20\x34\xf9\xf4\x7b\xdb\xce\x71\x78\x1f\x62\xad\x3d\x26\x0c\xde\xfb\xa7\xc7\x97\x81\xbf\x7b\xff\x74\xfa\xb2\xb1\x77\xef\x9f\x7e\x5f\x03\xee\xee\x03\x53\xf1\x8b\xc1\xdc\xbd\x7f\xba\x7d\x61\x78\xbb\x0f\x46\xb0\x47\x8e\xb5\xeb\x61\x76\x3d\xcc\xae\x87\xd9\xfd\x1a\x60\x76\x3f\x2f\x84\xdd\xa7\xe8\x02\xb3\x60\x4e\x12\x79\x5d\x31\xa5\x81\x72\x0a\x2b\x6e\x5e\xe4\x95\x94\xe8\xc3\xb0\x1a\x4c\x82\x1a\x03\x4d\x3e\x7e\x6c\x2f\x6c\x86\x08\xca\x8a\x7c\x40\x91\xbd\xdf\x0f\x13\x50\x24\x65\x80\x47\xf6\xf5\xc8\xbe\x1e\xd9\xd7\x23\xfb\x7e\xae\xc8\xbe\xdb\x23\x04\x79\x4c\x60\x8f\x09\x5c\xf9\x79\x4c\x60\x8f\x09\xfc\xb5\x63\x02\xdf\x45\xa0\x7a\x34\xe1\x3b\xa3\x09\x6f\x3f\x01\x1e\x87\xd8\xe3\x10\x7b\x1c\xe2\xca\xcf\xe3\x10\x7b\x1c\x62\x8f\x43\xec\x71\x88\x3d\x0e\xb1\x8b\x4c\x1e\x87\xb8\xd3\x74\x7e\xce\x38\xc4\xbb\x47\xe6\x95\xe0\xbb\xa2\x4d\x4b\x22\xc0\xf6\xd6\xd3\xbe\x3c\x7c\x62\x27\x04\x31\x6a\x42\x2f\xf6\xf8\xc4\x8e\xc6\x3c\x3e\xb1\xc7\x27\xf6\xf8\xc4\xf6\x6e\x79\x7c\x62\xe4\xf1\x89\x4b\x4c\xe8\xf1\x89\x3d\x3e\xf1\xe7\x83\x4f\xec\xd1\x89\x3d\x3a\x71\xd7\x8e\xa3\x07\x47\x27\x76\x3a\x52\x69\xf1\x33\x2e\x3c\x89\x5c\xee\x45\x86\xdb\x9e\x91\xbb\xf0\xd9\x7b\xe9\x10\x44\xde\x49\xc9\xde\xef\x8e\x4e\x4a\x85\xd8\xbd\x7f\x04\xe4\x06\x0f\x37\xb5\x9d\x34\x79\xae\x41\x4c\x75\x51\x7b\xdd\x89\xed\xdf\xb9\x51\xe7\xf2\x89\x0b\x59\xf9\x89\xc1\x39\x1e\x5e\xf9\x91\xc2\x2b\xff\x24\x21\x95\x5b\x21\x93\x9f\x4a\x8b\x2d\x40\x8f\xa0\x39\x49\xc8\x25\xbb\x13\xda\xa5\xf2\x8c\xef\x0e\x79\xb9\x19\xa8\x55\x37\x5c\x4a\xd4\x84\x6c\xb5\x5b\x04\xbb\x02\x06\x69\xb7\xf0\xc4\x8d\x43\x40\x65\xf0\xbc\x8d\x5a\x6e\xc2\xdc\xdc\x09\xb0\xe7\xce\x50\x2b\x37\xa6\x4f\x15\x92\xca\x39\xe5\x45\x48\xc7\xdd\x71\x20\xb7\x61\xb9\x87\x83\xa3\xfc\x02\x91\x12\xef\x01\x15\x71\x53\x00\xc4\x36\xc0\xb8\xcd\x79\x74\x23\x6c\xac\x72\xf4\x91\x07\xc8\xda\x02\x20\xeb\xe9\x53\xd0\xe9\x4a\xbb\x9e\x09\xec\xdd\x0d\xbb\xca\x7e\xa7\xda\x86\x5c\xf5\x14\x8d\xb9\xba\x0a\x96\x10\x56\x7b\x28\x05\x37\x3c\x9a\xca\xdb\x26\x55\x21\x00\x59\x5d\x3e\x41\x7f\xc4\x2c\xfc\x23\x64\xc1\x88\x71\xd6\xfb\x17\x49\xb8\xba\x0a\x15\x6a\xb2\x44\xc1\xd2\xe7\x3b\xa8\x1f\x62\x58\xfa\x08\xfd\x42\x50\x42\x84\x7e\x21\xc6\x2a\xed\x55\x0a\x33\xcb\xf0\xb3\x5e\x70\xc0\xb1\xc2\x0c\xfd\xf8\x5c\x69\xf9\xe8\x70\xc2\x57\x04\xbd\x78\xae\x3e\x20\x9a\x49\xab\xda\x53\x44\xd2\x94\xb0\x8c\xe2\x48\xa8\x5f\x2d\x50\x5b\xdb\x02\x52\x5d\xb2\x4e\x30\x52\x9d\x50\xa4\xec\x20\x52\xcf\xcd\x0c\x56\x0c\x29\x13\xe5\xa7\x0d\x41\xaa\x06\x20\xf5\xcb\xe1\xc5\xd9\xe0\xec\x4d\x35\xd7\x26\x10\x52\xdb\x21\x48\xe5\x00\x52\x2f\x7e\x7c\xfe\xbc\x9c\x60\x07\x8e\x32\x87\x56\x18\x26\x2b\x00\x46\xe2\xac\xb0\x9c\x30\x92\xc9\x7c\xcb\x94\x0c\x79\x78\x44\xc3\xa4\x74\xfd\xf8\x6b\xb9\x3d\x17\xb4\x54\x0d\x57\xaa\xda\xd4\xf5\x4f\xe9\x95\x58\xe2\x57\x19\xbf\x26\x4c\x8f\x7e\x74\x72\xf1\x61\x70\x74\x72\x78\x74\x74\xfe\xfe\x6c\x7c\x35\x3e\xff\xcb\xc9\x99\x18\xbd\xbb\x03\x4d\x98\x54\xaa\x95\x98\x5e\x25\x9c\xab\x61\x69\xc3\x51\x89\xd2\xaa\xd9\xab\xb7\xe7\xa3\xf1\xd5\xd5\x81\x35\x6d\x78\x7e\x31\xae\x41\x79\x6d\x82\x79\x55\x9c\x84\x8c\x21\xb8\x18\xd0\x8a\x77\xe5\x86\xbb\xda\x02\xed\x4a\xff\x55\xa0\x4f\x29\xd9\xd8\x29\x94\x73\xbf\x43\x28\x67\x01\x90\xfa\x29\x22\x3a\x0b\xed\xaf\xfb\x79\xc5\x07\x77\xfa\xe0\xce\x47\x1c\xdc\xa9\x41\xa9\x0c\xfa\x09\x0a\x1f\xd6\x3f\xa3\x1c\xcb\xf8\x18\xc6\x3c\xca\x87\x35\x98\x31\x9e\x7f\x96\x96\x33\xb1\x9c\x4a\x42\xaf\x64\xfc\x1c\x93\x64\x51\xf7\x1c\xe9\x49\xa6\x3f\xb9\x8d\x13\x22\x21\x6c\x2d\xee\x6a\xca\xc6\x67\x7d\xd1\xad\x9e\xdb\xb4\xda\x9d\xf1\x6c\x50\xf3\x4c\x47\xda\x6a\x63\x6b\x4b\xb6\x77\x43\x59\xc8\x6f\xf2\xca\x2d\xb1\xa7\x72\xb9\x99\xc1\xad\x85\x09\xcb\x6a\xf3\xbd\x9f\xd8\xd8\x8a\xbd\xb0\xab\x69\x77\xdf\x9b\x76\x9b\x0a\x42\xbb\x52\xe7\xea\x89\xd3\x51\x75\x89\x49\xeb\x63\x1c\x61\x56\xf1\xb9\x2a\x2a\xbd\x7c\xa2\xaa\x2d\xa5\xeb\x1e\x5d\x3e\x31\x68\xf9\x64\x83\xa6\x49\x16\x84\xdb\x37\xa9\xc9\x90\x67\x68\x0d\xa6\x55\x6c\xd5\x31\x00\xb5\xdd\xa1\x7f\xdf\x3b\xf4\xdf\xb3\x43\x7f\xee\x4c\x5a\xf5\x5b\x9c\x52\x57\x08\x54\xee\xb3\xf8\x7a\x70\x7a\x32\x3c\x1c\xbf\x75\x36\x5c\xe0\x26\xb7\x37\x29\x56\x76\xba\x4e\x23\x3e\x6b\x69\x35\xf7\x94\xfc\xab\xcb\x36\x7f\xf9\xc4\xe9\xcd\x5d\x1b\x66\x9a\x85\x7c\x99\x75\x6d\xb2\xd9\x39\xf3\x17\x9c\x30\xca\x66\xf5\xc6\x3f\xb5\xdb\xbc\xf7\x18\x46\x9b\x79\x0c\x7f\x78\x40\x8f\xe1\x07\xf2\xfe\x37\xb1\xbf\xcb\x9d\x78\xd8\x98\x1e\x1f\x06\xb0\xa3\x30\x80\x87\x89\x4f\xc9\x5b\xe9\x51\xd6\x1b\x0c\xf5\x80\x61\x09\xb7\xac\x0a\xc1\x8d\x9b\xfb\xa1\x17\xd8\xfc\xe9\x32\x8e\x79\x92\x1d\x14\xd7\xb7\xe0\x36\x0a\x07\x35\x6d\x62\x6d\xec\xc2\xf8\xaf\xc3\xb7\x87\x7f\xf9\x69\xa4\x6c\x2d\x9b\x06\x85\xed\x3a\x30\xa6\x6e\xf0\xb4\x89\x83\xc7\x13\xef\xf6\x70\xc1\x58\x5f\x7e\x84\xc3\x3c\xcb\xe2\x37\xa4\xda\x27\xc3\xaf\x59\x16\xad\x25\xc3\xfa\xf8\xf9\xf9\xcf\x3f\x57\x06\xf3\x89\x43\x15\x5a\x86\x93\x97\xdd\xc9\x78\x3e\xb3\x90\x83\x2f\x25\x0a\xa0\x05\x3e\xa4\x30\xc3\x7a\x14\x11\x8f\x22\xe2\xdc\xf4\xbe\x0a\x14\x91\x47\x87\x82\xd1\x1e\x96\xb3\xef\xc3\x72\x2a\xe5\x1e\x77\x78\xcc\x25\x7b\x8a\x8e\xd4\xfb\x98\x51\x24\xe5\x9c\x03\x7a\x36\x85\x17\xe4\xe4\x7b\x84\x50\x4c\x8a\x7a\xc3\x6c\x56\xb8\x20\xa1\x85\x64\x13\x75\xc5\x77\x4f\xe8\xb7\x3a\x74\xe3\x8b\x7e\x3b\xc6\xbf\xd9\x60\x7b\xb3\xe1\xbe\x59\x8b\x7d\xc1\xef\x36\x3c\x0c\xed\x1e\xd7\xdb\x0d\x0f\x43\x93\x2f\xe3\xfd\x86\x87\xa1\xd5\x97\xfd\x86\xc3\xc3\xd0\xf0\x6b\x78\xc7\xe1\x13\x50\xf2\x8b\x79\xcb\xe1\x61\x68\xf7\x85\xbd\xe7\xf0\x40\x71\xab\xe2\x7f\xe0\x1e\xc2\x08\xea\x1f\x45\x7c\x19\x0e\x13\xbe\xa2\x21\x49\xf2\x1b\xd4\x3c\x68\x77\x9b\xc7\x71\xe1\x26\xc1\xa8\xf5\xd7\x5f\x7b\x7a\x33\xec\xf0\x50\xae\xb3\x74\xe1\x52\x6b\xf6\xa1\x36\x65\xfb\xab\xef\x5d\x3b\xb6\x23\x9e\x53\x56\xdf\xa3\x31\x8d\x7b\x2f\xd4\x14\x99\xee\x48\x01\x0d\x13\x35\x2a\xf3\x7e\x44\xa5\x8a\x62\xef\x78\x48\x0e\x90\xba\xd1\xc8\xeb\xce\xce\x97\xd9\x8c\x53\x36\xd3\x26\xbc\x86\xd9\x1d\xf2\xb0\x61\x4a\x83\xac\x91\x76\x79\x6f\x2d\x7e\x40\x60\x4b\xce\x70\x92\x49\xf6\x3c\x40\xe7\xec\xb5\xb4\xb3\x8a\xb4\xaa\x3f\x8e\xd3\x27\xc5\xe6\x8d\xe2\x76\xbc\xb1\xe5\xae\xf8\x5e\xf4\x6c\x03\x2c\x19\xdd\x74\x82\x26\x75\xc9\xde\x36\xa1\x6c\x3f\x9d\x2b\x5c\xeb\x40\xfe\x37\xaf\x0a\xe1\x38\x8e\xd6\xa8\x37\x75\x33\x93\x0c\xc2\xd6\x66\xba\xc2\x40\xd7\xec\xe8\xe0\x88\xa5\xb3\x58\x63\x7a\x65\xde\x2a\x1b\xa2\x4a\x78\x31\x9c\x67\xfb\x20\x66\x0c\x0b\x49\x43\xe9\xdc\x5c\x56\x61\xe2\xc6\x45\x07\x94\xcd\xc8\xa2\x1c\x16\x09\xe6\xb2\xd6\x72\xc8\x84\x12\x68\x22\x26\xab\x41\x61\x90\x2c\x08\xd1\xf8\x74\x84\x52\x12\x24\x62\x67\x33\xfc\xc1\x2a\x21\x80\xdf\xf7\x5f\xbc\xec\x3f\x97\x51\x80\xb9\x01\x60\xac\xfc\x32\x0b\x03\x9d\x4a\x50\xd9\xfd\xcb\xe1\xf7\xf6\x72\x78\xd3\xbb\xe1\x70\x75\xaf\xdf\x08\x40\x94\x65\x24\x99\x62\x70\x19\x15\xb5\x83\x53\x81\xbc\x8c\x7b\x8a\x7a\x68\x30\x45\xbf\xd0\x84\xcc\x96\x38\x09\x0d\xb7\x02\x15\x44\xc2\xd1\x9a\x2f\x93\xdc\xfc\x2c\xda\xe8\xa1\x97\xcf\x75\xe1\xf3\x6c\x4e\x92\x1b\x9a\x92\x3d\x44\xa7\xe8\xc3\x7f\x9e\x1e\x9e\x21\x9e\xa0\x57\xc3\xd7\x60\x06\xea\x58\xdf\x8f\x8e\xfa\x06\xc3\xc1\xb0\x63\x15\xdf\x39\xaa\x28\x90\x55\x30\x5b\x23\xc2\x02\x1c\xa7\x4b\xfd\x42\x80\xa3\xba\xfe\xa7\x7b\x77\xfd\x0e\xaf\xae\xfb\x47\xd7\xdb\x63\x66\x54\xb6\x29\x8d\xc8\x95\x10\x99\x32\xab\xb4\xef\xf2\x99\x12\x46\x60\x23\x0d\x18\xed\x47\x7c\xe6\x9f\x6d\xbf\xd7\x67\xdb\x25\x41\xe4\x95\xd4\x95\xf6\x1d\xac\x84\xe1\xf8\x17\xdc\x77\xf1\x82\x7b\x57\x43\xf2\x86\xa7\xbc\x7a\x2c\x45\x01\xac\xd0\x9b\x11\x06\xce\xc7\x93\x25\x8d\x42\x92\x40\x03\xba\xf9\x6f\x42\xb1\x54\xbf\x05\x69\x93\x10\xa8\x61\x4c\x17\x42\x11\x5e\xc4\x07\x88\x2d\xa3\xe8\xf2\x0e\xa6\xd8\xb6\x13\x63\x57\x4b\x6b\x44\xd3\xec\x2f\xd6\xf4\xd3\x3c\x0a\xf7\x0e\xd6\x58\x9b\xa5\x40\x51\xa8\xac\x66\xae\xf4\xa9\x27\x98\x93\x45\x71\x3a\xe2\x31\x61\x87\xc3\xc1\x87\xef\x47\xe5\xef\x08\x85\x24\x0d\x12\x1a\x43\x44\x45\xad\xef\x5a\xd3\xcf\x9f\x05\x30\x92\x84\xe6\x20\x76\xca\x57\x6f\x86\xe0\x0a\x5d\x76\xa8\x8f\x13\x71\x70\x10\x4c\x5b\xba\x61\x32\xf8\xaa\xbc\xe6\x4b\xdd\x78\x26\xba\x2a\xb3\xa1\x50\x30\x14\x91\x1d\x50\x23\x26\xa1\x1a\x9e\xbc\x74\xa7\x29\x4a\x48\x9c\x90\x94\xb0\xcc\x98\x91\xe2\xc7\xa7\x08\x33\xc4\x21\x3c\xb8\x0f\x87\x6f\x92\xe4\x9e\x78\x01\x67\x2b\x92\x64\x10\xae\x3a\x63\xf4\x5f\x79\xe5\x10\x12\x2b\x5a\x85\x55\x92\x55\x2b\x05\x5d\x89\xe1\x48\x6e\x9e\x12\xb9\x6d\x81\xd7\x28\x21\xa2\x19\xb4\x64\x46\x85\x72\x7f\xed\xa3\x77\x3c\x21\x88\xb2\x29\x3f\x30\xc1\xa2\xf4\x92\x52\xd8\xfd\xd9\x5a\x3a\xfd\xd3\xc9\x32\xe3\x49\xba\x0f\xec\xbf\x9f\xd2\x59\x0f\x27\xc1\x9c\x66\x24\xc8\x96\x09\xd9\xc7\x31\xed\x41\xdf\x99\x64\xf4\x45\xf8\x34\xf7\x34\x7a\x56\xee\xac\x0c\xb0\x4a\xb3\x04\x42\xb4\x8b\xef\xc0\xcf\x4d\xd3\x20\x18\x5a\xbe\x9a\x24\x0b\x2b\xff\xc7\x9c\xda\x1a\x86\xee\xe2\x64\x34\xce\xfd\x9c\x60\x46\x6a\x53\x00\xc4\x2f\x4a\xa6\xc5\x3c\x08\xa2\x51\x36\x85\x07\x0a\x68\xaa\x3d\x30\x89\xe1\xe2\x2b\x58\x2f\xa2\x25\xf8\x36\xf9\x4b\x97\x93\x85\x8c\x74\x92\xae\x54\x28\xe3\x7d\x74\x04\x92\x46\x28\x2e\x32\x6e\x2d\xec\xa3\x81\x38\x6d\x2c\x48\x74\x84\x53\x72\xef\xb3\x20\xa8\x9d\xf6\x04\x6d\xbb\xce\x43\xcd\x96\x61\x66\x97\x94\x33\x53\x4a\x06\x0d\xcb\xb4\x55\x17\xf1\x28\x26\x41\x79\x21\x2b\x7d\x4f\xb9\xac\x88\x05\x5c\x5a\xda\x15\x4f\x09\xc7\x52\x16\x3f\x9c\x9e\x2d\x17\x13\x92\x58\x9c\x1f\x2a\x0b\x7a\x24\x33\x0a\x6e\xca\x0c\x27\xde\xc3\x11\x62\x32\x61\xa9\x3c\x08\xb0\x52\x52\xff\x76\x2c\xb3\x58\xfd\x2a\x5e\xfe\xf0\xe3\x8b\xef\xfe\xfe\xac\x9e\x24\x8d\xe7\x07\x62\x75\x7e\xff\x5d\x3d\x59\x92\x54\x2c\xdd\x19\x49\xaa\xc9\x7a\xe6\x6d\x03\xad\x8c\xe7\xa8\xc8\x2a\xd7\x87\x10\xff\x82\x9e\x92\x96\x8a\x83\x34\x9d\x65\x54\x1e\xa9\x3a\x64\x28\x12\x26\x13\x9a\x25\x38\x59\xcb\xad\x46\xfa\x52\x63\xe9\x65\x2f\x23\x4c\xfa\xf5\x62\x55\x03\x40\x4b\x37\xd7\xc5\xf4\xa7\x19\x66\xa1\x38\xbf\xf1\x04\x45\x38\x99\x91\x6a\x77\x6d\x95\x22\x18\x82\x58\x69\x16\x47\x1a\xf9\x6b\x60\x12\xf9\x83\xed\xc9\x9e\x54\xe9\x35\xb8\x53\xcd\xe8\x8a\x30\xe3\x45\x13\xdd\x3d\x6b\xe3\xa8\x61\x71\x15\x3f\x69\xf1\xe9\xd4\x85\x0f\x20\xe7\x16\xcb\x14\xe4\x08\x9f\x2a\xbe\x42\xff\xc0\xf8\x80\xb1\x7f\x08\xe2\xc9\x3f\x0f\x16\x8b\x7f\x38\xbb\x84\xd0\x6b\x9e\x14\x14\x2f\x46\x22\x0e\xde\xba\x2a\x59\xf3\x1e\xba\x99\x93\x04\xbe\xfe\x43\x10\xdb\x5d\xe5\x3f\x44\x21\x9c\x10\xf4\xe2\x25\x9a\xd0\x4c\x2d\x9f\x3e\x34\x55\x9d\xd0\xa2\x1d\xd1\x4f\x77\x9d\xf5\x3e\xec\xa9\x76\x58\x88\xfe\xb1\x58\xc8\x06\xbf\xff\xae\xd4\xe0\x2f\x22\xf3\x5e\x43\x47\xc5\x50\xc4\xe2\x60\x62\x95\xcb\xe5\x6f\xab\x36\x26\x49\xef\x70\xa4\xc3\x5a\x68\xed\x79\xa1\xe2\x17\xe3\x4c\xec\xb9\x07\xe8\x7f\x7f\x73\x79\x19\xfe\xff\xbf\x3d\x90\xff\xf9\xc3\xbf\xcb\xff\xd6\x9f\xb7\xe5\x14\x97\xdc\x35\x53\x71\x92\xe0\x1a\xec\xb5\x10\x02\x84\x0d\x79\x62\x13\x5a\x25\xfe\x3a\xcd\x73\x6a\x81\x28\x0e\x11\x8a\xfe\x42\x86\xc4\x09\xcf\x78\xc0\x23\xad\xa5\xc8\xaa\xad\x94\x51\x72\x12\xd4\x95\x17\x7f\xfa\xb9\x9e\x65\x81\x6f\xe9\x62\xb9\x38\x40\x2f\x7f\xfc\xf1\xfb\x1f\x2d\xe9\x94\xc9\xf4\x17\x1b\x0a\xcc\x88\xcf\x46\x64\x45\x12\x9a\xad\x47\x41\x42\x48\x55\xa7\xab\x0d\xfb\xd9\x69\xb5\x84\x1e\x7e\xc4\x67\x28\x55\x29\x08\x03\x06\x88\x44\x5f\x8b\xf8\xcc\x1a\x77\x2b\x38\x27\x25\x32\x00\x48\x54\x20\x43\xb1\x8c\x6d\x03\x0d\xce\x5e\x9f\xdb\xb6\x88\xa6\xe9\x17\x5b\xcf\x18\x5e\x61\x7d\x47\xd2\xb9\x0c\x5f\xa8\xe3\xa3\x55\x47\x75\x66\x2b\x85\x52\x92\xa5\x62\x46\xb3\x39\x49\xd0\x74\xa9\xa2\x5d\x45\x7f\x6d\x80\xea\xe2\x27\x26\x7e\x01\xaf\x53\xe6\x86\x2c\x73\x40\xe2\xa4\xe7\x1e\xd0\x84\xf3\x88\xe0\x9a\xee\x1b\x27\x64\x4a\x6f\x0f\x43\xa1\xe3\xd2\x94\x2c\x48\xdd\xcb\xb0\x36\xa0\xa1\xa5\x4c\xb1\x83\x00\xb4\x2f\xe4\x40\xd8\xcc\x62\x1b\x51\x93\x5a\x81\xba\xef\x63\x96\x0e\x15\xe6\xdd\xb4\xdc\x0d\x63\x27\xb2\x0b\x00\x1d\xac\xa4\x50\x0e\x49\x88\x8e\x06\xc7\x17\xdb\x6d\x6a\x70\x9d\xd4\x69\x47\x11\x6d\x48\x63\x2b\xb0\x75\x51\xb3\x5e\xe1\x13\x52\x8c\x23\xbc\xc3\x2e\xd7\xac\xc5\xd8\x7a\x66\xe8\x32\x0a\x7a\x5a\x6b\x33\x84\x02\xf3\x16\x1b\x0a\xa8\x28\x6e\x91\xaf\x1e\x4e\x55\x67\xb6\x10\x51\x86\xfe\x21\xb4\xcf\xb4\x6f\x34\x02\xbb\x67\x27\xa5\x03\xc9\xb3\x5b\xe3\xde\xdb\xb0\xc5\x36\x6e\x4d\x0d\x7b\x6f\xd3\x16\xeb\xae\xb3\x79\xef\x6d\xdc\x62\x1b\x3a\xda\xb8\xf7\x36\xef\xb0\x1d\x6a\xed\xbe\xf5\xba\x17\xaa\xfc\xb5\xf3\x65\xe3\xce\x89\xee\xb2\xed\xaa\x6b\x13\xed\x83\x33\x6c\x95\x6f\xa3\x6a\x01\x20\x06\x78\xb5\x8a\x55\x3a\x89\x78\x70\xad\x0e\xa2\x72\xb5\xaa\x16\xac\x12\x4e\x45\xe7\xea\x5a\x14\x28\x3c\x9c\x3a\xa7\x85\x8c\xd9\xd3\xd7\x4e\x60\x54\xcf\x17\xba\x68\xd4\xce\xa8\xb2\x13\x39\x86\x0d\x00\x1a\xb0\x75\xa9\x39\x15\x4d\x97\xcd\xc9\x62\x7b\xd1\x5a\xa5\xc5\x2b\xd1\xae\x71\x4e\x37\xb0\x9d\xa3\x88\xdf\x08\x69\xa9\xb3\xda\xe7\xb9\x20\xe1\x3d\x88\xd4\x7b\x53\xdd\xd4\x0c\x9f\xdc\x4a\xa3\x4e\x77\x26\x32\x4a\xd8\xb9\x88\x27\x46\x28\xb0\xad\xcf\xaa\x22\xa4\x6b\x12\x73\xdb\x37\x63\xfb\xab\x19\xf2\x28\x56\x00\xe0\xae\x86\xb2\xca\x5f\xb1\x95\xc8\xd7\xaf\xc9\x1a\x7a\xa7\x58\x86\x33\x1d\xaf\x92\x12\xd5\xd1\x3b\x73\x50\xd1\xbb\x56\x16\xb2\xcf\xae\x31\xfe\x47\xc9\x44\xf6\x62\xf5\xaf\x12\x86\xc7\x0c\x05\x4b\x33\x9e\x80\xab\x84\xfc\x24\x41\x5f\xa5\xd1\x3c\x08\x48\x9c\x91\xf0\xac\x66\x85\x2e\x60\x0a\xb4\x55\x59\x7f\x09\x38\x0b\xa5\x2b\xfe\x01\xfa\x1b\xdc\x02\xc0\x2d\x54\xf8\x41\x9b\x8b\xe1\x2b\x58\xf9\x1f\xb9\xa9\xbf\x9b\x37\xfa\x56\x16\xfe\xc2\xd9\xbc\x64\xd8\x17\x9f\xad\xf6\xfc\x66\x3f\xf4\xfb\xb3\xde\x7b\x33\xbb\x37\xb3\x9b\x53\xe0\xcd\xec\x0f\x69\x66\x17\xe2\xa0\x6e\x5d\xd7\xf0\xf9\xc6\x35\x99\xce\x9c\xcf\xde\xee\x4d\xec\xe3\x39\x29\x4e\x01\xda\xb4\x2f\xc4\x8f\x65\x07\xbd\x8b\x95\xfc\x9a\x90\xf8\x3c\xa1\x33\xca\x70\x74\x46\x6e\xb3\xb7\x3c\x6e\xeb\xda\x79\xac\xfd\x51\x44\x61\xe8\x18\x57\x35\x20\x46\x6e\xb3\x39\x8f\x65\xa4\xa4\x7c\x2d\x49\x5a\xbd\xdb\x8c\x3e\x40\x53\x24\x88\x2a\x78\x3c\x83\x45\xa2\x03\xf7\x4d\xe3\x00\xcc\x08\xe0\x9e\x91\x50\x14\xb1\xd5\x2b\x6a\x49\x73\xf3\xcc\x52\xbd\xc3\x7b\xf9\x44\x74\x0e\x89\xde\x89\x7e\xff\xf9\xf2\x09\xf8\xd3\x10\x1c\x0a\xf2\x1a\xa9\x29\x89\xa6\x7f\xbe\x7c\xf2\x8d\xba\xd4\xf8\xd6\xd6\x84\x72\xa3\xcb\x9f\x56\x98\x24\x98\x05\x73\x3d\x4f\x67\xa2\x69\xce\x94\xd3\x56\x3f\x98\xce\x2e\x9f\x58\xe6\xad\xd1\xd2\x23\xba\xdf\x85\x49\xf2\x80\xd8\x1c\x49\x48\xcb\x17\x75\x44\x51\x08\x97\xf2\x09\x17\x80\x13\xb4\x0e\x28\x05\xee\xa2\x05\x04\xa2\xfa\x02\x07\x9f\x4c\x3e\x87\x05\x4e\x55\x29\xc9\xf6\x2a\xfb\x47\x8a\xb0\xad\x4e\xe9\x7b\x0e\xb5\xec\x21\xda\x27\x7d\x78\x0c\x5d\x3f\x90\x0e\x7b\xac\x6c\x8c\xac\x48\xb2\xce\xa1\x38\xcb\x40\x48\x4e\xba\xb9\x4d\x7e\x96\x47\x53\xac\xe4\xcb\xf1\xf3\xb4\x0d\x49\x62\x14\x43\xef\xd4\x3e\x07\xc0\xc6\x39\x2d\x28\x9b\xf5\x91\x38\xad\x5b\x81\x01\x35\x91\x14\x81\x14\x1b\xc8\x95\xa0\xef\x1e\xc8\x22\xce\xd6\x1b\x0e\x49\xb4\x3c\x18\x76\xe1\x85\x02\x71\xc3\x94\x18\x68\xca\xd5\x59\x6f\xb2\x86\x2d\x1d\x4a\x88\x89\xe1\x89\x95\x17\xd4\x15\x5e\xc6\x65\x71\x31\x45\xc0\x05\x60\xd4\x66\xf9\xc5\x1f\xdc\xe9\xec\x69\x7b\x4e\x61\xf7\xfa\xc7\xdf\x2e\x97\xcf\x9f\x7f\x1f\x0c\x86\xab\x97\xf0\x17\xf9\xfb\x81\x28\x6a\xbd\xb1\xe0\x09\xfa\x47\x9e\xfd\x07\x99\xfd\x40\x7e\x80\xee\xc1\x07\xb0\xb7\x00\x42\x10\xf4\xa3\x34\x00\xa3\x43\x9a\x3b\xad\xb2\x06\x2e\xed\xd4\x3c\x02\xa1\x58\x88\xf2\x6b\xcc\x09\x89\x38\x9b\xa5\x52\x10\x99\x70\x73\xc0\x9e\x85\x79\xdf\x56\x73\x4a\xc0\xab\xb6\x7a\x4d\x0b\x2c\xc0\xd0\x0d\x51\x02\x48\x70\xbc\xe8\xae\xa2\xea\x16\x3c\xb0\x35\x5b\x27\x64\xc1\xb3\x9c\xbb\x4b\xb3\x0a\xcc\x6c\xd5\x3d\x90\x14\x0a\x39\x33\x0f\x81\x0b\xcb\x64\x03\xde\x4e\x2b\xcc\x2d\xaf\xc9\xca\x18\x7a\xe5\x81\x08\x21\x33\x21\xd9\x0d\x21\x4c\xdd\x16\x04\x58\x99\xd3\x45\xf5\xb9\x78\x37\xfb\xbd\x27\x28\x99\xef\x03\xf6\x19\x56\x18\x52\xaa\x05\x3a\x45\x13\x2e\x84\x0b\x0b\x53\xb9\x8e\xc5\x7a\x7c\xf5\x66\x28\xb6\xf8\xbe\xc8\x7a\xa8\xd6\x4a\x61\xd6\x71\x71\x8e\xac\xfb\x65\xf7\xba\x5f\xd6\xea\x06\x5c\x42\x6b\xc7\xd5\x30\x8b\xbb\xf3\x80\xc3\xcd\xb1\x56\xe9\x0c\x32\xfc\xfe\xdb\x7f\xa7\xa5\xa6\xf4\x54\x58\x7b\xae\xa6\x5f\x89\x61\x7d\x47\x0f\x06\x04\x9c\x19\x0b\x66\x23\x5e\xd4\xa8\xae\x35\x6c\x03\xad\xd9\x54\xbf\x4b\xf1\xe5\x0f\xd7\x9f\xf2\x70\x1d\xf1\xe0\x5a\x41\xf7\x76\x09\xc6\xda\xe2\x8c\x2d\x5a\xd0\x28\xc0\xb5\x93\xb6\x99\x68\x39\x6f\x97\x7b\x57\x3b\x76\x1b\xc9\x6b\x7f\xf8\xf6\x87\x6f\x7f\xf8\xfe\xf2\x0e\xdf\xa6\x84\xe8\x78\x04\xaf\x4b\x9c\xe2\xb7\xf9\xb9\xdc\x61\x62\x6e\xd2\xc9\x42\x12\x91\xac\xdd\x9f\xe0\x58\x66\x43\x94\x85\x62\x04\xfa\x80\x01\x9c\x03\xb2\x2d\x07\x55\x17\x7c\x3b\x21\x00\xf6\x2b\xcb\x58\xad\xe5\x10\x22\x25\x4f\x15\x26\x9f\x4f\xe5\x35\x6c\x8c\x33\x0a\xfe\xe5\x6b\xa9\xbb\x72\xb1\x71\xa0\x84\x44\x04\xa7\xaa\x69\x5b\xa5\x0b\x9a\x66\xf8\x9a\x00\xca\xbd\xd8\x4d\x14\x63\x43\x2b\xb8\x68\x65\x8b\xc3\xd8\x86\x44\x15\x1b\xfa\x66\x65\x9c\x0a\x89\x98\xd2\xea\x37\x45\xd8\xea\x67\xdb\x0b\x7e\xd0\x13\xaf\xb6\x7c\x42\xb5\x65\x1b\x34\x88\xcd\x55\x17\x17\xd8\x43\xa1\xbf\xd4\x73\xd4\x95\x98\x2d\x21\x21\x1e\x28\x10\xa0\x3e\x82\x4a\x28\x80\xba\x87\xce\xed\x59\x46\x27\x7d\x14\x80\xd7\x90\xbc\x86\xf4\xa9\x35\xa4\xfa\x0a\x6e\x8a\x03\x90\x45\x27\x96\xfd\xd5\x58\xed\x1b\x28\x47\x20\x42\xed\x6b\xbc\xde\x53\x33\xb3\x76\x08\x55\x8b\x5c\xf4\x4d\x99\xa5\x95\x12\x94\xf7\xc6\x61\x7f\x4a\x96\x8c\x59\x2f\xf6\x9b\x94\x08\x55\xe5\x9b\xf7\x83\xe3\xd6\xde\x16\x59\x75\x5f\xe1\x6f\x65\x3f\x75\x76\xae\x43\xf3\x63\x91\xa5\x5b\xf3\x22\xab\x9e\x34\x25\x16\xe1\x7d\x80\xbb\xf4\x22\x0f\x58\xbd\x20\x38\x5c\xb7\x6a\xa9\xa5\xdc\x79\xe0\x7d\x28\xdf\x2b\x4a\xe9\x8c\x81\x02\xce\xb2\xa2\x5e\xb4\xa0\xb3\xca\x2b\x9b\xa5\xbe\x71\x28\x86\x23\xe5\xf6\x1f\x73\x06\x57\x05\xe9\x32\x98\x0b\x9d\x52\x22\xff\xab\xe7\x8d\xb4\xe0\xbe\xc1\x54\xac\xf2\x29\x77\xd8\xf8\x82\x80\xa4\xa9\x96\x50\x2e\x7c\x7a\xd4\x76\xb7\xb2\xc2\x09\xc5\xac\xd5\xad\xfb\x83\xcc\x86\x42\x12\x44\x38\x21\xa9\x72\x1f\x53\xa5\x0d\x5e\x36\x7c\x3e\xe1\xc5\xfc\x8d\xd4\x64\xaf\x54\x3e\xa8\x52\xb9\x0d\x70\xe4\xe6\x4a\xa5\x0b\x17\xb2\x50\x2a\xeb\x39\xea\x4a\xe5\x96\xe8\x91\x0f\xa4\x54\xca\x05\xbc\x51\x80\x69\xf5\xa9\x00\xaf\x50\x7a\x85\xd2\x9c\x02\xaf\x50\x3e\x98\x42\x59\x97\x3f\x6d\x81\xa5\x72\xbd\x6f\x1b\x5a\x7a\x93\x8e\x92\xe0\x38\xcd\x8e\xe6\x24\xb8\x6e\x8d\xc1\x19\x91\x0c\x49\x46\xe9\x85\x24\xcd\xd4\x0b\x62\xbd\x40\x14\x46\x9c\xa1\xc3\x5f\x46\xe8\xe4\xe8\xbb\xdc\xaf\x21\xed\xa3\x43\xb5\xe7\xd9\xf4\x86\x55\x39\x00\x50\xfa\xcb\x5e\x3e\x39\xe6\x67\x3c\x9b\xc3\x33\x4d\x7b\xe8\xf2\x89\x0a\xf5\xb9\x7c\x82\x78\x22\x52\x15\xa4\xcf\xe5\x93\x96\xf0\xd5\xbc\x1a\x5b\x38\x0f\x61\x4b\x1b\xce\x78\xaf\x28\x65\x4b\x94\x5d\xb1\x16\x93\xbd\xda\x4c\x17\x9c\xc4\xd3\x23\xce\x18\x09\x32\xb1\x2f\x9e\x72\x1c\xbe\xc2\x11\x66\x01\x65\xb3\xae\x51\x51\xaf\x86\xaf\x5b\xaa\x90\xee\x3e\x94\xe5\x20\x40\xd6\x4b\x49\xb5\xa5\x17\xb1\x54\x92\xad\xca\x0f\xc0\xca\x86\xc4\x8c\x67\x74\x41\x10\xa0\x19\x4d\xa0\x39\x92\xb8\x2f\x52\x55\x31\x4b\x19\x38\x49\x28\x3b\x61\x7e\x2d\x0e\x0f\x4d\x65\x1c\xd4\xb6\x09\x60\xfb\xdb\x2a\x4d\xaa\x8f\xcc\x29\xdf\xf2\x54\x05\xd1\x22\xba\x88\x13\xbe\x52\x7b\x4f\x4c\x12\x38\xa0\xb1\x00\x58\x2c\xe6\x61\x2f\xe3\xbd\xa6\x80\x83\x7c\xa8\xa9\x1c\x98\x74\x03\x4f\x08\x4e\xa5\x8f\x95\x02\x96\x92\x2f\x67\x43\xdf\x43\x32\x59\xca\x80\xe2\x78\x99\xc4\x3c\x15\xcc\xdf\xcc\xa0\x5b\x85\x9a\x4d\xe2\xa9\x38\x14\x0c\xa6\x38\x20\x43\x15\xaa\xd9\x81\x49\xaa\x65\xe4\xce\x90\x10\xd0\x57\x10\xc9\x5f\xeb\x94\x9a\xbf\xe6\x06\x5b\xaf\xa5\xb6\x6d\x80\x58\x49\x4e\x51\x3b\x32\xce\x32\x31\x31\x82\xd7\xf2\x57\xfd\x00\x22\x09\xf1\x24\x04\xef\x15\x2b\xb9\x71\x16\xcc\x51\x96\xe0\xe9\x94\x06\x28\xe3\xfb\xf9\x46\xa2\x10\x8c\xd4\xf3\x81\x00\x7b\x0e\x15\x2e\x64\x89\x39\x31\x7a\x62\xa5\xb1\x18\x8e\x8e\x0a\xd1\x08\x5c\xba\xa1\x69\xc4\x6f\x52\xc4\x57\x24\xa9\x46\x80\x74\xa8\x74\x8e\x59\x28\x18\x80\x05\x7c\x01\x7b\x69\xde\x7b\xb0\x5b\xc7\x3c\xc9\x52\xe5\x38\xa1\x38\x13\x06\xc5\x97\x59\x4a\xed\x91\x89\xa6\x11\x00\xa1\x41\x7e\xfa\x12\x3b\x62\x31\x5e\x1b\x8e\xd8\x37\xcb\x74\x89\xa3\xc8\x1a\xf1\x23\x74\xca\x10\x6c\x05\xfd\x7e\xff\x5b\x33\xd4\xf1\x7f\x7f\x43\x58\xff\x8f\xff\x26\xd9\xbc\xff\xc7\x7f\x67\x4b\x16\x3d\xff\xc3\xb7\x9b\xc6\x72\x0a\x76\x94\x4b\xe1\x3d\x33\xde\xe7\xe9\xc2\x91\xf5\x62\x80\x10\x96\x83\x8b\x29\xbe\x22\x99\x5c\xc3\xd7\x62\xa5\x47\xfd\xa5\x91\xff\x6a\x12\x4f\xaf\x34\xc4\x9b\x6d\xec\xe9\x3a\x0d\xb2\xc8\x5c\xaf\x66\x71\x70\x01\xe2\x53\xc1\xac\x9a\xbf\xe0\x29\x60\x7d\x17\x64\xe6\xb5\xd5\xbe\x4c\x85\x0a\x14\x48\x95\x45\x9e\x81\x15\xab\x3d\x7b\x96\x4a\x71\x8b\x63\xc9\x03\x2a\x13\x65\xa9\x50\x57\x01\xa6\x00\xf1\x1b\xab\xbf\x5a\x7d\xe9\x88\x69\x26\x2a\xae\xa4\x68\xe0\xce\x41\xab\x93\x78\xba\xc1\x2e\x73\xa2\xa7\xa5\x98\x22\x35\x43\x10\x25\xa3\xdd\x39\x45\xef\x85\x3a\x04\x4f\xa9\x5a\x2f\xca\x8a\x5e\xc3\x6b\x36\x5b\x75\x5b\x05\xb1\xa8\xa0\x98\x77\x1d\x7c\x32\x61\x08\xf5\x62\xa5\x7d\xb1\xd8\x04\xe7\xfc\xc6\xdc\x02\x6c\xc3\x30\x17\x73\xc9\x58\x9f\xf1\x62\xc5\x7f\x03\xde\x53\x85\x28\x30\x02\xcb\xac\xfe\xab\x38\x01\xac\xc0\x1b\x9c\x84\x12\x5e\x51\x39\x19\xe9\x35\x2f\xb6\x94\xc1\x54\xe3\xe4\x5d\x3e\x19\x03\x76\xe0\xe5\x13\xe9\xd4\x36\xe1\x99\xd5\xb9\x4b\x69\xd8\xf2\x39\x55\x92\xc6\x9c\x89\xc9\x52\xe2\x8a\xa6\x0a\x81\x50\x36\x58\xf1\x6c\x82\xf6\xac\x2b\x4b\x77\xe1\x78\x74\x21\xd4\x34\x59\x4e\xb6\x63\xab\x7a\xb2\xcc\x54\x9e\x72\xfb\x0e\xfb\x22\xf8\x1f\x87\x34\x21\x41\x16\xad\xad\x3e\x57\xa2\x67\x4c\xb7\xaf\xe6\xaf\xc8\x62\x15\x84\xe0\xc9\x16\xc7\x04\x27\xa9\xe9\x81\x3c\x18\x6a\x55\x9a\xb2\x19\x78\x87\x89\x9c\x7f\xd6\x87\x53\x50\x4f\x1c\xae\xb4\x31\x49\x16\x34\x4d\xe9\x8a\xa0\xd3\xef\x8c\xbd\xaa\xe0\x71\x39\x43\x5b\x48\x55\xa1\xda\x0c\x13\x7e\xbb\xd6\x18\xf1\xa3\x48\xb0\x54\xc7\x15\xfb\x6a\xf8\xba\xb9\x02\x3b\xe3\xdb\xf7\x7b\x43\x21\x7c\x96\x22\xb2\x98\x90\x50\xb0\x27\x80\x6f\xc6\xa2\x05\x65\xd8\x4a\x51\xb9\x29\xa1\xaf\x33\xee\xf6\x63\x73\x2f\xf0\xbc\xef\x83\x38\x13\xdd\x4d\x8f\x44\xc6\x65\xbc\x81\xbc\x6a\xa9\xa2\x24\xc7\x24\x2d\x6c\x83\x97\xe4\x31\xe4\x5c\x9c\x70\x69\x4c\x8c\xd6\x28\x10\x35\xa2\xa5\xf4\xb5\x5f\xc6\x69\x96\x10\xbc\x30\x75\xd2\x82\x42\xcf\x9e\xd9\x3d\x39\x55\xdf\x50\x30\x17\xa7\xbb\x3e\x42\x23\xb9\xe5\xab\xa0\xc3\xa2\x87\x53\x93\xdc\xca\x47\x50\x19\xe1\xef\x4b\xcd\xcc\x29\xf8\x8e\xb2\xd1\x9a\x05\xf2\x8d\xe8\x8d\x68\x5f\x2a\xb9\xe7\x10\xb6\x99\xfd\xd8\xa0\x00\x33\x10\x1c\x1b\xb4\x5f\xaa\xb4\x0a\xe4\xd6\x9d\x7c\xa7\x29\xcc\x58\xcf\x0c\x16\xb5\x55\x5b\x90\xb1\x8f\xd0\x29\xbf\x21\x89\x3e\x4f\xcf\xc4\x32\x4e\x48\xb8\x0c\x24\xae\x44\x6f\x19\x83\xf9\x88\x05\x22\xeb\x5b\x3a\x9b\xe7\x79\xed\x52\x56\x94\xd4\xe6\xb7\xe1\x7b\xb4\x4c\xf1\x8c\xa0\xc9\x1a\x4d\x84\xee\x26\x54\xc4\x65\x8c\x16\x3c\x91\xe2\xbc\x24\x25\x5e\xa4\x5b\x48\x88\x53\x3e\x3b\x25\x2b\x12\x75\x99\x11\x9d\xb7\x44\x75\xc0\x03\x01\x88\xce\x1c\xa4\xca\xd0\x3d\x1c\xb2\x20\x3f\x4a\x16\xb4\x5f\x48\x71\x7c\xae\xcf\xef\xe7\xd3\xa9\x3c\xb9\x0f\xd8\x94\x8b\xbf\xe4\xb9\x5d\x9c\x8f\xc4\xa1\xdd\x75\x4e\x84\x27\x8e\xc5\x0e\x48\x16\x34\xcb\x8a\xed\x48\x34\x96\x25\x38\x20\x28\xa6\x31\xd9\xd3\xb7\x0d\x42\x9b\x53\x31\x11\x44\x43\x5d\xdb\xaa\xfd\x47\x16\x20\x72\x4b\x02\x41\x32\x79\x48\xfb\x87\xa9\x3a\x9d\x4f\xa7\x7f\xef\x6f\x48\x7c\x58\xad\x03\xd0\xe5\x3a\xe9\x1e\x47\xe5\xfc\xae\xc3\xf6\x9c\xf3\x6b\x53\xd7\xfd\xfd\xb7\xff\x76\x5c\xe1\xc4\x3d\x39\x6d\x15\xf9\x21\x98\x4d\xaa\x98\x00\xb0\x8b\x92\x65\x44\x90\xba\xcf\xcb\x78\xac\x66\xd9\x7a\x00\x13\xe5\xc5\x3c\x4d\xd6\xb0\x45\xb2\xb0\x5e\xc3\x84\x67\x19\x5f\xf4\xb5\x12\xab\xae\xe5\x52\x3c\xcd\x81\xc6\xac\x8a\x02\x15\x87\x6e\x9a\xa1\x38\x21\x2b\xb8\x69\x92\x1a\x2c\xf8\x4c\x8b\xea\xd5\xb9\x48\x7a\x58\x4d\xd6\x31\x4e\x53\x15\xd7\xbf\xe6\x4b\x94\xde\xd0\xcc\xee\xb2\x9e\x71\xd5\x53\x25\x4f\x26\x04\xa5\x12\x7a\x59\xf5\x97\x03\x69\x65\x13\x2a\x7e\x45\x91\x49\x5e\x80\xb9\x6e\xb2\x62\x19\x92\x33\x59\xc3\xfb\xc1\xd2\x4c\x9a\xf0\xe5\x6c\xae\x19\x52\x1d\x27\xa1\xe6\x3d\xd9\xcc\x8d\x82\x19\xb0\xd5\x59\x7e\x9c\x4b\xe3\xfd\x16\x23\x2d\x78\x51\x52\x76\x53\x51\x90\x2f\xc4\xe3\x84\xae\xac\x21\x6c\xcd\xee\x72\x93\xe5\x4c\x9d\xc5\x4e\xf9\xec\x38\xe1\x80\xb1\xea\xac\xc5\xb1\x5f\x40\x35\xef\xc8\x82\x27\xeb\x61\xc2\xa7\x34\x22\x96\x77\xcf\x3a\xf5\x65\x44\x17\x00\x7d\x7c\x84\xa3\xe0\x4d\x82\xe3\xf9\x5b\xcc\x66\x87\xd3\x6c\xbb\x91\xe9\xda\x8e\x35\x91\xb6\xaf\x0d\x26\x49\x6b\x38\x63\xfe\x96\xa7\xd9\x21\x9c\x0f\x5a\xd7\xff\xb1\xbb\xac\x29\x0b\xc0\xa8\x20\x58\x3a\x75\x98\x49\x72\x13\x83\xc8\x3a\xe3\x7a\xe9\xe0\xc2\x26\x60\xbe\xd8\x9e\x1b\xd3\x68\x96\x92\x68\x8a\xbe\x81\x17\xb5\x5d\x86\x07\x5d\xf7\x9c\xaa\xf3\x76\x5e\x15\x91\x4a\xb1\xe4\xdf\x6f\xfb\xe8\xd5\x3a\x0f\x5a\x38\xb2\xbe\x57\x8a\x72\x64\x8d\xc2\xd2\x02\x30\x1f\xd5\x5e\xa6\xb6\x6e\x82\x4c\xaf\x33\x18\x32\xd5\xa5\xdf\x7f\xfb\x7f\xc7\x17\xe7\xc3\xdf\x7f\xfb\x1f\xf5\x14\x7d\x2e\x2f\x6e\xb0\x0a\x5c\x8c\x22\x7e\x83\x52\xbe\x20\x42\xaa\xc1\x7b\x7a\xee\x03\x07\xf4\xae\xfa\xd8\xbd\x82\x23\x87\xe0\x24\x9c\xe0\x05\x51\x87\xbb\x8b\x93\xf1\xfb\x0b\x40\x55\x57\x6f\xdf\xa3\xf7\x76\x70\x11\x95\x91\xca\x8e\x41\x38\x0a\x20\x9b\xf3\x1b\x56\x96\x4a\xe6\xb0\x06\x67\xc3\xf7\x63\x31\x2e\x10\x55\x7f\x6e\x90\x27\x20\x48\xb4\x2c\xce\xb4\x2c\xad\x4a\x7b\x9c\xc9\x9a\x54\xdc\xd3\xef\xbf\xfd\x3f\xd9\xad\xdf\x7f\xfb\x1f\xeb\x81\x06\x07\xd7\xa4\x98\x97\x5a\x87\x10\x57\xd2\x7c\x8e\x53\xf0\x1e\x90\x4e\xb4\x71\xc2\xb5\x07\x80\x9e\x64\x5b\xed\x76\x96\x02\x02\x2a\x62\xc2\xb9\x8c\xe5\x77\xde\x80\x85\x2e\x65\xb2\xee\x9a\x73\xfe\xf2\x33\xb2\x7a\x39\xde\xd2\x27\x57\x07\x9a\xcd\x14\x42\x24\x6e\x2c\x93\xc9\x8a\x06\xe4\x82\x2f\x33\xa1\x08\x03\xc8\x5c\x7b\xa4\x20\x4d\x4b\x17\xa6\x10\xa1\x5b\x60\xd4\xe1\x50\xd9\x04\x94\x82\xb6\x20\xa1\x6a\xc6\xaa\x8d\x42\x78\xef\x9e\xd8\xc5\xf4\x62\x05\x56\xd6\xdb\xcf\xc5\x78\x78\x71\x3e\xbe\x7a\x75\x7e\x3e\x96\x5a\x5d\x44\xa6\x19\x9a\x44\x98\xd9\xc0\x40\x1a\x63\x95\x8d\xb1\x4a\xf4\x6b\x15\x64\xd5\x69\xc0\x5a\x8b\x90\xb7\x8f\x3a\x4c\x52\x9d\xce\x39\xdb\x64\xb0\x25\xc9\x64\xa9\x94\xa6\xc6\x20\xf7\x50\x44\xf0\x4a\xdd\x81\x5a\xcf\x09\xa0\x82\x81\x93\xcc\x9c\x73\x65\x2a\xa8\xd4\xb8\xb4\x83\x88\x35\x32\x86\xdc\x69\x8f\x38\x63\x42\xa7\xbd\x1e\xb0\x15\x8e\x68\xe8\xba\x7e\x6b\xdc\x73\x35\x37\x5f\x80\xb1\x99\xb2\x19\xbc\x16\xbe\xe1\xbe\x56\xab\xc4\x7d\xc6\x6e\xee\x8c\x32\xae\x9d\xf1\x90\xa4\xa7\x34\x6d\x75\xe3\x39\x31\x0b\x1c\x0d\x8e\x2f\x44\xa1\x32\xce\xab\xf8\xfa\x0c\x2e\x3a\x75\xed\x3d\xc6\xf5\x33\xb4\xf0\x6a\x53\xc3\x0d\xc5\x02\xaf\xf5\x7c\x49\x2b\x54\xbe\x19\x61\x96\x47\x10\x13\xc3\xf8\xa5\x52\x1d\x50\x3f\xea\x1a\x53\x08\xd8\xa0\x88\xe0\xde\x0c\xd1\xa7\x19\x13\xa7\x01\x38\x69\x8a\x69\x24\x14\xed\x01\x9b\xf0\x25\x0b\x85\xfa\x30\xe4\x49\x3b\xc6\xe0\xb3\xd7\x8e\x82\x92\xce\x70\x6a\xea\x85\x24\xa2\x0b\x2a\xc6\xa6\xe8\x6e\xeb\xfa\xfb\xe3\xe1\xfe\xf8\x68\xa8\x6c\x99\xb0\xaf\x18\x56\x11\xb9\xdb\xda\xae\x42\x60\x67\xaf\x3c\x66\x58\xfe\x71\x86\x68\x92\x90\x34\x26\x60\x57\xd1\x47\xd1\x94\x04\x4b\xc0\xa9\xd4\x9b\x84\x16\x17\xcb\x94\x4c\x97\xb0\x30\xf1\x8a\x53\xeb\x3e\x83\x83\x00\xa2\xee\x61\xfb\x08\x96\x12\xb6\x80\x4f\xa7\x08\xcb\xfe\x80\x8a\x21\x7a\x9b\x24\x24\xc8\x2a\x77\xe7\xe8\xc4\x15\x23\xcb\x13\x33\x9e\xba\x40\x36\xc4\x29\xca\x82\xd8\x08\x8f\xee\xc9\x88\x51\x19\x25\x2d\x34\x85\x65\xe8\x4c\xb6\x6e\x3e\xaf\xc5\x49\x0c\x07\xd7\xbd\x52\xe8\xc8\x9e\x42\x99\x2a\xf6\x04\x1d\x2c\x5a\x00\xa0\xd1\x4c\x8b\x40\x97\xf7\xdf\xef\xbf\xfd\xbf\x2c\x88\x7f\xff\xed\x7f\xfa\x68\x5c\xdc\x8b\x60\x50\x26\x80\x49\x24\x8d\x60\xa2\xf7\x72\x23\xa9\xbc\xaa\x67\xdc\x61\xd4\x1f\x1b\x68\xd3\x32\x2b\xb0\x44\x8a\xd2\x74\xae\xaf\x46\xc4\xb2\x3b\x7e\x7b\x34\x2c\x5d\x5c\x04\xf1\xc1\x77\xdf\x59\x6f\xa4\x05\xcd\x5e\xfe\xb4\x07\x59\x5e\xfc\xe9\x67\xf9\xc7\x77\xdf\x17\x7f\xfd\xf4\x5c\xfe\xf5\xf2\x87\x1f\xbe\x57\x7f\xbd\x7c\xf9\x32\xff\xeb\x4f\xb6\x3d\xbb\x33\x14\x26\xcf\xb8\x06\x8e\x0d\xf8\x62\xa2\x3c\x1d\xe0\xf2\x38\xdf\x90\x59\x08\x54\xda\x73\x1a\xde\x51\xee\xdb\x50\xc4\x1b\x5b\x39\xab\x0d\x69\x2b\xb6\xa3\xdd\xaa\x39\x6d\xda\x9c\xf3\x06\x5c\x3a\x88\x59\x87\x1b\xad\xcb\x11\xcd\x23\x7f\x3d\x27\x64\x41\x2f\x6f\xd9\x2d\x0e\xb7\xc0\x91\xd3\xe2\xf0\x7c\x99\x6d\x29\x0f\x6b\x25\xdd\x02\xd1\x2a\xb3\xa6\x9d\x04\x22\x57\xcf\xd9\x95\x8f\x41\x62\x79\x35\x69\xc7\xf2\xd6\x6f\x73\x91\xe8\x32\x92\x08\x29\x79\x37\x91\x68\xab\x59\x48\xc9\x2f\x5f\x24\x72\xc5\x27\xbb\x91\x89\x1c\xce\xf6\x24\x0b\x42\xb0\x7e\xe5\x80\xaa\x8a\x87\xb8\xba\x7e\x36\xb8\xc9\x2a\xa9\xc4\xc1\x5f\x8c\x71\x46\x32\x31\x95\x30\x8d\xf2\x08\x9b\x05\x61\xc9\x93\x41\x70\xa1\x98\x68\x21\x76\xa5\xfc\x3d\x1b\xb5\x9c\x76\xb6\x16\xb7\x4e\x21\xfe\xe3\xf7\x7b\x52\x98\x7b\x89\x5c\x6a\xe0\x8b\x92\xc8\x04\x67\xcb\x84\x1c\x93\x8c\x04\xd9\xf9\x8a\x24\x09\x6d\xb7\x8b\xbf\xb6\x15\x32\x1f\x17\xe4\xfa\x9b\x58\x6d\xaa\x09\x3b\xa7\x64\x44\x99\x81\x3e\xa8\xc7\x20\x12\x53\x1a\x51\xa6\x65\x3b\x4a\x49\x8c\x13\x9c\x2b\xbb\x20\xf6\x98\xd5\x82\x05\x4f\x0c\xa6\x7b\x88\xdc\xe2\x45\x1c\x91\x3f\xa3\xcb\x27\xa3\xb3\xc3\xf1\xeb\x65\x14\xad\x2f\x30\x0b\xf9\xe2\x3f\xe0\xe5\xaa\x77\x87\xa3\xff\x65\x7e\x04\xaf\x86\xbd\x0b\x02\x6e\xfa\xa3\x65\x0c\x8b\xfb\x94\x07\xd7\xff\x61\x45\x9b\x42\x05\x9e\x16\x5c\x93\x40\xf1\xcb\x27\x72\x1b\x99\x72\xe9\x93\x9b\x8f\x7e\x4f\xa2\xb9\x88\xac\x5c\xdd\x92\xb8\x6f\xa4\x00\x29\x77\x99\xf1\x9e\xa4\xcf\xc6\x67\xd5\x19\x61\x24\xa1\xc1\x7f\x1e\x0f\xbb\xde\xbb\xbe\xa9\x96\x50\x17\x98\x29\x52\x29\xe8\x3f\x8f\x87\x28\xe5\xc5\x5b\x7a\x38\x09\xdd\x2e\x56\x21\x67\xcf\x9e\x65\x28\x95\x44\x84\xb2\x7c\x3a\x05\x4b\x0e\x4f\x50\x08\xe6\x6e\xb0\xfe\x4b\x4c\x6d\x21\x97\xff\xf3\x78\x28\xf7\x45\xab\xfd\x50\xdd\x9b\x12\xc1\x0b\x84\x85\x24\x2c\xae\x27\x84\x54\x85\xd6\x62\xf9\x58\x27\x9a\x90\x0c\xcc\x48\x85\xeb\xa0\xa3\x9f\x2c\x37\xe0\xf5\xef\xec\xdc\x32\x27\x38\xca\x1a\x20\xf1\x3b\x14\x16\x2a\xcd\x86\x36\x00\x59\xd0\xf1\xa4\x42\xa3\x30\xcb\x7d\xd0\x4e\x6e\x83\x68\xd9\xe1\x2a\x6c\x50\x29\x60\xea\x5d\x95\xb5\xc9\xa7\x5d\xdc\xf0\x4a\xde\x87\x44\x55\x0a\x16\xad\x05\x67\x34\xe3\x79\x14\x7e\xf9\x24\xda\x77\xdd\x42\x96\x77\xec\x92\x3f\x98\x72\x89\x9d\x31\x2e\x3e\x15\xf7\xfc\xcf\x9e\xa1\xc1\xf0\xc3\x08\x85\xcb\xc5\xc2\xea\x82\x97\x0f\x63\x4f\x7b\x4f\x2a\x19\xa7\xe3\x10\xa2\x35\x9a\xac\x4b\x57\xd3\x65\x73\xb6\x55\x5d\x54\x63\x5d\x2c\xa3\x8c\xc6\x91\xe1\x08\xa9\xde\xb8\x51\xcf\x6c\x6a\x58\x60\x15\xea\x00\xf7\xbe\x0e\xb5\x56\x2d\xb4\xd4\xe2\x17\x9a\x4a\x0c\x78\x4b\x02\xf4\x13\x76\xd5\x9b\x04\xc7\xae\xeb\x05\x49\x4e\x10\xb7\xcf\x9e\xed\x3f\x7b\x26\xab\x53\xb2\x15\xcd\xa5\x29\x4e\x5d\xc4\x3f\x7b\xb6\xff\xbf\x05\x2d\xf6\xf7\x56\x24\x9b\xbf\x78\x66\x59\x44\x48\xca\x47\x4d\x03\x79\x7a\xcd\xdd\x21\x61\xb6\x26\x64\x46\x99\x6e\x51\x54\xf7\xec\x99\x04\x8d\x8a\x52\xee\x32\xfa\x15\x24\x7c\xf6\x4c\xb5\x6d\xae\x69\x98\x20\x1a\xaf\xd2\xe7\x9b\xda\x83\xf3\x8a\xe5\x23\x0b\xdd\x97\x89\xcc\xaf\xcd\xa4\xe5\x29\x56\xcf\x4e\xa8\x60\x3d\x0d\x2f\x6f\x37\x89\xd5\xaf\x5e\xc0\x35\x15\xb4\x5d\x71\x16\x58\xd2\x74\x2e\xed\xce\x8b\xe2\x94\x92\xe7\x6e\xa4\x55\xda\x47\x67\x3c\x03\x19\x81\x08\x5b\xd1\x84\x33\xf9\x98\x85\xbc\x80\x05\x09\x39\x11\x7b\xd1\x82\x64\x38\xda\x53\xc8\x94\xc1\x9c\xa4\x19\xbc\x79\x6d\xed\x70\x60\x3c\xa5\x2b\x44\x44\x2c\x34\xb2\x84\xe2\x8c\x44\xeb\x32\xef\xf0\xa5\x89\xfd\x2d\xb5\x5c\x1e\x5c\x3b\x42\x57\x85\x18\x53\x31\x5b\xea\x7e\x87\xa0\xdf\x7f\xfb\xbf\x01\x8e\xe8\xef\xbf\xfd\xb7\x19\x0f\x24\xea\x3d\x8f\x09\x1b\x65\x38\xb8\x36\x0b\x5a\x57\x8e\xf6\x52\xfd\xfd\xb7\xff\x9b\xe1\x38\xaf\xca\xe4\x1e\xd1\xc6\xd6\x7c\x73\x41\xa6\x09\x49\xe7\xc0\x17\x2b\xdc\x7a\x99\x30\x70\x94\xcb\x1f\xc2\x01\x8f\x1c\x84\x33\x25\x90\x9c\x87\x8d\x84\xa4\x01\x66\xa9\x02\x83\x33\xd7\x18\x47\x2b\x92\xd0\xe9\x5a\x79\xb3\x02\x2e\x87\x7c\xf5\x56\x96\x51\xcf\x5c\x58\x65\xac\x72\xd9\x15\x42\x2f\x55\xa8\xa2\x39\x7b\xaf\x64\x68\xea\xf3\x0d\x95\x15\x1a\xd3\x06\xf7\xb0\xc6\x7d\x13\x1e\xa4\x1f\xbf\x6f\x5f\x94\xc3\xc1\xf0\xdd\xf8\xbd\xa6\xa1\x7a\xdf\x59\x70\x11\x67\x86\x2d\x59\x5d\x54\xf4\xd1\x88\xd8\xfd\x01\x14\x6b\x8b\x51\x8b\x3a\x0c\x37\xa0\x1f\x7e\x68\x90\x2c\xae\x2d\x38\x16\xcc\xb7\x21\x7f\x3c\x1b\xd8\x4a\x35\x72\x07\x4a\x88\x0c\xf4\xb1\xeb\x9a\x91\xe1\x8d\x02\xbc\x50\x3d\xcf\x32\xae\x04\x82\xba\x98\x83\x2b\x44\xd3\x2c\x61\xab\x76\x92\xf0\x6b\xc2\x6a\x2e\x23\x00\x46\x0b\x5c\x52\x8a\xc5\xd0\xed\x27\x72\x58\x2d\xf1\x41\x3f\x3f\xdf\xd8\xeb\x4a\xb7\xf0\x4a\xbd\xff\xdd\xb6\x0a\xcb\xd9\xf3\x13\x89\x0e\x59\xd6\x0f\x8c\x0b\x4d\x47\xf7\x5d\xec\x6b\x56\x4a\x10\x79\xdd\x54\x32\x2b\xc0\x95\xd6\x0c\x5b\xaf\x30\xbb\x8c\xe3\x35\x8d\x32\x92\x1c\x46\x11\xbf\x71\xba\x32\x74\xa9\x47\x1c\x6f\x5e\xbb\x7d\x3e\xaa\xac\x57\x2f\x54\xbc\x50\x15\xe4\xc7\x7a\xf3\x6a\xdc\x46\x11\x00\x69\x9a\xd2\x88\xf4\xd1\x5f\x85\x0a\x82\xd7\x10\x1e\x22\xaf\xec\x30\x9b\xa9\xad\x43\x19\x88\xf2\xdc\xfa\x14\x40\xed\x2e\x06\x99\x61\x97\xc9\x7b\xf3\xcd\xd4\xd8\x70\xcc\x0b\xfd\x05\x8e\x63\x22\xe3\x8d\x58\xc6\xe5\x42\x71\xb9\x6d\xa9\x18\x3e\x92\x88\x85\x85\x51\x48\xa7\x53\x92\xc0\x5b\x4a\x38\x9b\x97\x02\x33\xf6\x93\x25\xdb\xbf\x55\x67\x0a\xd1\xf1\x6d\xf9\x54\x90\x78\x98\xf0\x09\xd9\x40\x2e\x38\x4a\xea\x19\x02\x77\xcc\x8a\xb9\xd3\xaa\x71\x48\xc8\x00\xe9\xb6\x89\xb3\x4c\x9c\x5b\x25\x92\x6b\x00\x86\x8b\xb2\xe7\x03\xcc\x0e\x9d\xaa\x70\x2a\xc6\xad\x1a\x07\x5e\x61\x1a\x89\xfc\xfd\xb2\xe3\xe6\x02\x5f\x6b\xbf\x4b\x70\xaf\x54\x3e\xe6\x74\xa5\x0e\x02\x7a\xfa\x1d\x47\x42\x31\x2f\x70\x18\xdc\x03\x2f\x75\x71\x8a\x84\x6a\x8e\x86\xef\xcd\x49\xf9\xf1\xf9\x62\x6b\x79\x21\xa8\x39\xa6\x0b\xc2\x97\xad\xd7\xa2\xa5\x19\x50\x65\x9a\x68\x0f\x84\xb6\x8d\x4c\xc7\xd3\x95\x68\x0c\xbe\x98\xcf\xf7\x0c\xa9\x09\x26\x4f\x69\xd1\xa4\x69\x61\x66\x70\x2a\x04\xa0\xe9\xa7\x73\x6c\x9d\x41\x58\x5f\xd2\x81\x27\x8a\xca\xe2\xbe\x01\xe5\x4c\x6a\xe4\x62\x12\xf5\x4c\xf5\x25\x00\xae\x72\x70\x2e\x62\x11\xc5\xb9\x1c\x17\x0b\x69\xcf\x09\x91\x9b\xbb\xed\x8b\x1a\xc5\x72\x52\xc1\x04\x3c\x59\x6b\xd1\x62\xc4\x19\x2e\xf8\x92\x49\x2c\x38\xe5\xf7\x62\x60\x0d\x5b\xcd\xff\x89\xce\x31\xd5\xc1\xb7\xb2\x43\x26\xbf\x3c\x4f\x73\x3d\x67\x5b\xb6\x79\x87\xc5\xc9\xed\xee\xe2\xf9\x1d\x4e\xae\xdf\xe1\xb4\x3d\xbe\x77\x50\x29\xa0\x19\x6f\x21\xfe\x36\x8f\xdb\x80\x05\x9c\x0a\x69\x69\xa3\xcf\x60\x38\x96\x4c\x21\xea\x41\x13\x21\x53\xc5\x99\xa2\xaf\xbd\xdb\x27\x62\x16\xd5\x63\x5b\x73\x72\x8b\x43\x12\xd0\x05\x8e\x34\xd0\xae\x60\x20\x2b\x9f\x64\x28\x22\x38\xcd\xd0\x4f\xb2\x4e\x00\x41\x66\x2a\x6c\x58\xee\xa8\x41\x84\xd3\xb9\x76\x21\x5b\x2b\x0e\x5c\xe8\x5e\xd8\x4f\x04\xda\xd5\x04\xae\x58\xd6\x69\x46\x16\xa5\x69\xbc\x9d\x4e\x9f\xc3\x6f\xd7\x2f\xe1\xea\xd9\x39\x3b\x1c\x9f\xab\x8b\xa2\x5c\x6d\x97\x1b\xf3\x96\xd3\x3d\xe4\x69\xf6\x4b\x42\x33\x02\x5e\x25\x1b\x8b\x7e\x7b\xf1\xaa\x6e\x08\x3e\x56\x4e\x29\x21\x74\xbb\x50\xcc\x0c\x46\x37\xa2\xaa\xba\xc3\x7e\x8e\x30\x13\xcc\x49\x28\x5d\xd7\x18\x22\xb7\x59\x82\x51\x42\xec\xee\x63\x13\x79\x10\xcb\x23\x49\x91\x8c\x3b\x87\xa0\x48\x68\xe4\x06\xcb\xad\x3d\x88\xf8\x64\x42\x12\x0d\xad\x5e\x92\x43\x6e\xf0\xc6\xd4\x08\xbd\xe0\x41\xb0\x4c\xc4\x86\xa4\x4b\xe3\x38\x8e\x34\xd2\x65\x89\x57\xa4\xe1\xf0\xf7\xdf\xfe\xdb\x2a\xda\xd4\x25\x5e\x5d\x54\xf6\xef\xe4\xfd\xaf\xab\xda\x5c\xeb\xb7\x96\xdb\xe2\x54\xa8\x8e\x02\x3a\x80\x0a\xce\xbf\xfa\x91\x80\x62\x8e\x9b\x4f\x00\x2e\xc6\x29\xdd\x55\x6e\x74\x02\x50\x3d\xb1\x77\x59\x9d\x09\xa4\xad\x22\x33\xb4\x68\xb9\x53\xd2\x54\x19\xa9\x84\x52\x0d\xea\x05\x58\x2e\x72\x4f\xf2\x86\x4a\xf3\x83\x6b\x2a\x51\x39\x6f\x78\x72\x8d\x13\xb8\x37\x94\xa8\xa8\xa7\x94\x2d\x6f\xb5\x4b\xd9\x64\x39\x93\xf4\xb8\xc1\x76\x6f\x46\x7a\x2b\xef\x2c\x54\x7e\x0d\xd2\xf5\x43\xff\xc5\x8b\xdc\x30\x28\xf6\x5f\x69\xe0\x5b\x89\xef\x62\x4b\x9a\x25\x04\x3b\x1c\x7c\xd7\x4a\x3f\xd6\xde\xb1\xb9\x67\x6b\xc6\xf7\x10\x46\x73\x23\xb6\x45\x46\x1d\x96\x43\x59\xac\x37\x7b\x29\x9e\x95\xcc\x1b\x2f\xb6\x39\x4e\xad\x5e\xaa\x1b\x92\x4d\xcf\xec\xd7\xcb\x09\x39\xe3\x21\x19\xf2\x24\xbb\x10\xca\x7e\xfb\xdd\xff\x5f\x6a\x45\xd0\x9c\x47\x61\x9a\x5b\x9b\xe1\x92\x21\x91\x29\x60\x9e\x9d\xda\x9f\xa2\x54\xe1\x9d\xa8\x08\xee\xec\xa3\x73\x21\x35\x96\xea\x25\x38\xa9\x15\xc8\x5b\x17\x33\x0a\xcc\x0d\x9b\x06\xfb\x10\x8d\x57\xa9\x0a\xa6\x91\xa4\x5f\x4a\xad\x89\xa4\x44\x77\x0b\xe6\x4e\x5a\xc9\xa5\x02\x83\x59\xd8\xe8\x72\xab\x3c\x0f\xcc\x89\xfa\x5e\x6c\x66\x07\xdf\x7f\xf7\xa7\x97\x7f\xb2\x46\xbe\xb8\x6f\x64\x31\x5b\x9f\x4f\x1d\x17\x8e\xad\x77\x9e\xbd\xd6\x2b\xcd\xe2\xe5\xe9\xfe\x1f\x6d\xe9\xb7\xbd\xeb\xdc\xce\xd7\xa3\x2c\xeb\xf1\xa4\x27\x6b\x33\xe1\xb7\x4a\xa3\x6f\x78\x46\x9a\xcf\x3a\x9f\x58\x4f\x8b\xbc\x5a\x54\xc2\x53\xc3\xe2\xe0\xa6\x77\x36\x39\x63\x11\x9f\x69\xc9\x64\x1b\x01\x28\x2b\x86\xbc\x02\x7d\x39\xe2\x00\x1b\x51\x3a\x00\xae\x70\xb2\x1f\xf1\xd9\xbe\xa9\x66\xf6\x23\x6e\x85\x32\x69\x22\x6b\xc4\x67\x1d\x2d\xce\xa7\x3a\xa7\xf9\x58\xb4\x69\x60\x36\x58\x52\x3e\x20\x24\xce\x4c\xae\xa9\x3c\x3d\x7f\xa3\xe5\x74\xd9\x00\x1a\xf0\x9e\x74\xe4\xde\x62\x24\xfa\x51\x6b\x31\x17\x5d\xc6\x63\xe6\xdf\xd9\x13\xd8\xa2\x02\x69\x74\x30\x1e\xc1\x66\x53\x7e\x87\xf1\x7c\x8e\xcf\x7a\xdf\x71\x44\xeb\x76\x71\x7c\x5a\xca\xbe\xbb\xb1\xac\x53\x63\x11\xa2\x33\xae\x82\x43\x19\xd7\x0b\x0d\x84\xa8\xca\xd5\x68\x20\xdc\x86\x08\x0b\x7c\x0b\xa6\xd5\x11\xfd\x97\x1b\x2f\xdb\x21\x25\x35\x94\xd4\x61\x68\x05\x3d\x2f\x93\xef\x9d\x91\x59\x13\xcf\x7c\x68\x28\x41\x21\x5f\x60\xca\xe4\x4d\x91\x3b\xf2\x0f\xf0\x0b\xd5\xdb\x4f\x01\x66\x08\xb3\x54\xe8\x3e\x1f\xde\xa1\x7f\x2e\x49\x42\x89\x04\xb7\x09\x22\xbe\x0c\x7b\x94\xd1\x2c\xef\x25\x20\x73\xe5\x17\x24\x56\xef\x1f\x50\x31\xc0\xa5\x2c\x8d\x39\x0b\xf3\xb0\x92\x05\x0e\xe6\x94\x91\xfc\x7c\xcf\xf8\x0a\xf7\x70\x4c\xd1\x37\x3c\x11\x1b\xe1\xfb\xc9\x92\x65\x4b\x6b\x95\x3a\x6b\x4f\x77\xe3\xdb\x3e\x3a\xd4\xee\x55\x53\x29\x60\xbf\x09\x70\x0a\x6f\x6b\x11\x96\xd2\x8c\xae\xc8\xb7\x68\x41\x30\x73\x1b\x20\x4a\x77\xc8\xea\xf5\x15\xb4\x8c\xe1\x08\x79\x76\x38\x96\x51\x90\xda\x9e\xa2\x1b\x06\xe9\xdf\xc2\x41\x2f\xbe\xfb\x53\xff\x79\xff\x79\xff\xc5\xc6\x6c\xa4\x1a\x71\xdc\xc9\xdb\x59\x41\xbb\x47\x81\x2a\x2f\xfe\x56\x96\x8e\xbc\xc7\x72\xae\xa5\x7f\x84\x03\x05\x6a\x31\x81\x37\xc5\xe1\x04\x2d\x5f\xa8\xe9\x97\x38\xed\x1b\x3a\x05\x0a\xfd\xfe\xdb\xff\x15\x4b\xeb\xf7\xdf\xfe\xfb\xdb\x3d\xd3\x65\x27\x25\x56\x0a\x0b\x62\xe6\xa4\xdc\x93\x37\x8c\x2f\x5e\xfe\xdc\xff\xee\xc7\x1f\xfa\xea\xbf\x07\x3f\x81\x2a\x6f\xb6\x76\x60\x8e\xcc\x7a\x70\x1b\x30\xb4\x10\x6a\x50\xa0\x60\xf4\x8b\x63\x9c\xe8\xa4\x36\x07\x4f\x88\xb2\x08\x87\x86\x88\xfb\xe9\x4f\x7f\xfa\xb1\x21\xf2\xd7\xb1\x46\x19\xce\xf4\x61\xbd\x63\x98\x8b\x71\xbc\xaf\xbe\x3e\x04\x67\xde\x4a\xcc\x0b\xec\xad\xca\xe9\xc4\xb1\xb9\xaa\xa8\x06\x41\x4e\x60\x4a\x0d\xb7\xc1\x10\x36\xfb\x87\x62\xce\xa3\xfc\x51\xa1\x96\x70\x97\x1c\xbb\xa2\x12\x43\x63\x86\xba\xa8\x57\xd0\x73\x11\xc3\xca\x77\xd2\x76\x09\x50\x42\x1a\xd1\x9d\xe0\x0c\x7d\x43\xc1\xed\x46\xab\xb8\xc5\xe9\xf8\xdd\xe1\xe8\x7f\xbd\x3f\xb9\x38\x3c\x3e\x41\x19\x4e\x66\xc4\xf6\xd2\x5f\xe3\xeb\x06\x38\xcb\x35\x7c\xcb\xdc\xb8\x74\xd8\x56\x0d\xb6\x4d\x7f\xad\x4e\x7a\xde\x09\x63\xba\x21\xac\x0b\xbe\xa9\xe3\x46\x9a\xcf\x8f\x20\xb0\xcb\x8c\x0b\x8b\x79\x81\x21\x30\x57\x32\x48\x08\x13\x9c\xfb\x17\x9f\x1d\x8e\x95\xc9\x74\xc9\xf4\xad\x76\x43\x4c\xf6\x84\xcc\xf1\x8a\xf2\xfc\x01\x4b\xed\x8d\x95\xca\xab\x6e\x67\x60\x53\xb3\x82\xbe\xa9\x7a\xce\x48\x16\x51\xd6\x60\x17\x6f\xa2\x37\xb8\xd2\x8a\xee\x5e\x90\x59\x97\x10\xdc\xf3\x72\x7e\x2d\x26\x8d\xcd\x11\x25\x32\x05\x26\x44\x48\xf7\x24\xa3\xc1\x32\xc2\xd6\xc3\x8c\xdc\x31\x8a\xf7\xe9\x60\x33\xc4\xd2\x17\xa7\xa7\x2a\x92\x26\x8b\xfd\xc2\x87\xa0\x78\x3d\xd1\xbd\x5b\x6a\xf7\xd4\xdc\xff\x21\x84\x20\xd6\x39\xbf\x01\x4e\x00\xd4\x3b\xd9\xf8\x37\x73\x92\x10\xd3\xe6\x22\x4e\x8e\x91\xeb\xc5\x31\xca\xe4\xa9\xb4\x1f\x4c\x67\xfa\x05\x32\xc3\x59\x43\xac\x48\xa8\x3b\xe0\x8b\x78\xa9\x20\x76\xbe\x55\xc0\xa8\x4b\xbb\xb7\x50\x01\x49\xf6\x37\xa9\xd9\xff\xbd\x98\x95\x2b\x45\x03\xb9\x31\x1b\x83\x11\x0a\x09\x59\x66\x09\x67\x7d\xf1\xd5\xda\x5b\xd5\x15\x89\xf2\x53\x08\xec\x93\x45\x9c\xad\x37\xdd\x48\xa5\xab\x3c\x80\x90\xe0\x6c\xde\xf1\x2c\x34\xb4\x14\x32\x37\xb9\xc9\x5a\xc3\x64\x03\x84\xf6\x62\xc9\xe0\x09\x19\xeb\x99\x56\x46\xfd\xcb\xed\x47\xfa\x78\xeb\x17\xd8\x35\x4a\xd4\x1e\x8a\xe8\x35\x41\x87\x86\x85\x31\xc2\x6b\x92\x74\x8b\x4e\xdd\x8e\x2a\x09\x5f\x90\x6c\x4e\x96\xe9\x1b\xfe\x8e\x64\x09\x0d\xba\x02\x0b\x3d\x1b\x3a\x8b\xea\x53\x6d\x8a\xde\x70\xa1\xda\xc1\x6d\xd5\x42\x66\xb1\x2b\x1b\x51\x24\xdd\x76\xb5\x5b\x9c\xe0\xa5\xa2\x7e\x85\x1b\x2b\xfd\xdd\x8b\x38\xd6\x3d\x29\x01\x1d\x8a\x46\xc6\xa5\xe7\xa5\x0a\x8e\x90\x96\x2c\xb5\xd6\xf3\x47\x7b\x55\xa7\x50\x02\x31\x8f\x24\xdc\x93\xf9\x1c\xdb\xad\xd1\xa3\x88\xe3\xf0\xce\xb8\x6b\x05\xf1\xb7\x26\x7d\x85\xf0\xda\xc9\xb6\x42\xbf\x06\xda\x2b\xad\x9f\x32\x7d\xb7\x96\x83\x8a\x89\x21\xdd\xdd\x8f\xb5\x36\x46\x87\x57\x6a\xcb\x00\xdf\xf2\x34\xd7\x68\xe5\x7d\x9d\x06\xf7\x28\xb2\x5a\x45\x93\x9a\x60\x35\x4c\x1d\xa1\x42\x59\x08\xb2\xba\x18\x1d\xb9\xdb\xea\x51\xdd\xec\xa4\xa5\xd7\x06\x67\xaa\xeb\x3a\x92\x68\xe7\x03\xfc\xf9\xf9\xcf\x0d\x87\x0f\x87\xb2\x53\x0c\x70\x28\x2d\xf5\x5b\x33\xaa\xb5\x7c\x21\x28\xb4\x2b\x90\x97\x12\xb5\x15\x94\x90\x05\x5f\x11\x1d\x24\x0d\xd1\xf5\xad\x47\x8d\x5f\x14\x9c\x90\xc4\x5d\xd3\xf8\x81\x2b\xa2\x3c\xd2\x54\x9c\xbc\x86\x2f\x5d\x11\x97\xa3\xc5\x84\x90\x52\xe4\xbd\xde\xef\xfa\x0a\xe6\x58\x9e\x23\x34\x9a\x80\x8c\x75\xcb\xb7\x35\xe3\xa6\xcc\x15\x6f\x05\x17\xfe\x38\x0c\xcb\xfd\x2a\xe2\xd9\x34\xea\xd9\xff\xc7\xde\xbb\x2e\xc7\x6d\x63\x0b\xa3\xff\xcf\x53\x60\xe4\x5d\x65\x7b\x1f\x75\xcb\xce\xc5\x93\x51\x6a\xea\x94\x22\xc9\x49\xd7\xc8\x52\x7f\x52\x3b\xc9\xd4\x28\xdb\x46\x93\xe8\x6e\x1c\xb1\x01\x0e\x09\xb6\xd4\x93\x99\x53\x79\x8c\xbd\xab\x66\x5e\xce\x4f\x72\x0a\x6b\x01\x24\x48\x82\x97\x96\xa5\x5c\x66\x93\x3f\x12\xb9\x09\xe2\xb2\x00\xac\xfb\xc5\x49\x5e\x60\x62\xba\xb5\x18\xef\xeb\xf4\x96\xe1\x5c\xcc\x7a\xed\x64\xa2\xad\x49\x9b\x60\x46\xd8\x79\x0f\x4c\x4c\x7c\x6f\x03\xdb\x65\xf5\x8b\x92\xe7\xae\xfe\x77\xcd\xa9\x0e\xc4\x00\xaf\x45\x00\x5d\x91\x54\x96\x16\x8e\x09\x45\x95\x0f\x99\x94\x4c\x5f\x63\xf2\xc6\x70\x8e\x42\x8a\xd1\xdf\x58\xe2\xd5\x3f\x73\x47\x63\xe3\xb0\xa3\x69\xd9\x3c\xb0\xb3\x1d\x27\x87\xd3\x6c\x76\xd6\x1f\x44\xb3\xd9\x99\xeb\xd8\x32\x52\x72\x14\xf1\x0d\xcb\x3d\x42\x41\xf2\x41\x04\x31\xba\x6d\x48\x99\x6b\xe0\x63\xa0\x58\x46\x7c\xbb\x2f\x43\x1f\x92\x5d\x4d\xaa\x70\x33\x93\x07\xf3\xa3\xcc\x13\x7f\xec\x6e\x4e\x25\x2b\xbf\x3d\xf1\xfe\xe6\x54\xcc\x40\x62\x2d\xa7\xed\x7c\xe8\x7d\xe1\x8d\x29\x43\xfa\x81\x19\xdb\x16\xe2\x04\x58\x22\x12\x6b\x7b\x59\x32\xf4\x48\x81\x7e\x1b\xad\x6c\x45\x01\x35\x32\x22\xdf\x19\xcb\xd9\x64\x9a\x1e\xa2\xf6\xc5\x9b\xa2\x28\x90\x22\x55\x49\xe6\x8b\x89\x2b\x92\x8f\x8c\x0c\x50\x27\xd3\xa3\x37\x65\xfb\xf2\x08\xba\xd6\xbf\xc3\x66\x96\x7a\xb4\x9f\xdf\x07\x74\xe0\x64\xd3\xa4\xe7\xf0\x14\x7f\x2a\xd2\x0a\xd3\xd0\xe6\xd7\x31\xa6\x69\xdc\x69\xa3\x81\xd1\x17\x6f\x43\x13\x2e\xfd\xbc\x87\x93\xde\xfc\xb2\x3c\x8d\x8a\xa6\x03\x4a\x6b\x16\x85\x0a\xdc\x31\xfc\x47\xbf\x48\xd5\x6d\x18\x9a\x2c\xf5\x85\xd6\x76\x04\x67\xae\xa9\x4f\xc2\x23\x7d\xe2\x32\xd7\xdc\xa7\x49\xe8\xf1\x69\x4b\x34\xe6\x48\x4f\xc8\xfb\xb3\xcf\x03\xb5\x2d\x02\x33\xe5\x21\x0b\x68\x72\x14\x04\x2c\x62\x18\x8b\xd0\x97\x23\xbb\x6a\xfc\x34\x17\x1e\xd8\x9d\x46\x57\x6b\x40\x14\x76\xa8\x06\x74\x92\xf7\xf1\xd1\x72\x02\x78\x11\xf4\x48\x3d\x53\x5e\xcd\x5b\xdf\x57\x96\x08\x10\x2a\xa4\xd8\xae\x65\x66\x33\x0d\x5a\x07\x0a\xaf\xda\x13\xb9\x3d\x37\x37\x73\xca\xff\xc6\x4c\x9a\xa5\x72\x49\xa1\x31\x39\x93\xcb\x94\xdc\xd2\x44\x70\xb1\xd4\x44\x47\x65\x89\xf0\x6b\xed\xe6\x5b\x4c\x0a\x0b\x29\x40\xad\xda\xdd\x89\x5a\x81\xb8\x75\x5a\x2a\xe0\x95\x47\xf7\x6f\xb2\x48\xb0\x84\x62\x80\xbb\xaf\xf3\x15\x4d\x91\x45\x0b\x79\x1a\xc8\x0d\x33\x7a\x15\xe5\x2d\xe8\x86\x79\x15\xb3\x72\xa6\x41\xef\xf5\xbb\x0f\x97\x5a\xde\xbf\x89\xe0\x8a\xd3\xa8\x29\x0d\x51\xdb\x26\xba\x9f\x96\x93\x94\xda\x3c\xb0\xa1\x7e\xe5\xe7\x56\x17\x32\x27\x02\x6b\x7a\xc3\xb0\xb2\x81\xee\xb8\xe2\xf6\xb0\x33\x85\xaa\x2e\xaf\x27\x4f\x50\x5d\x9a\xe1\x0a\x4a\xcb\xaa\x31\x84\xcd\x6a\x46\x5c\x93\x87\xc7\xf9\xe2\xd5\x67\xf7\x5a\x14\x3a\x75\x0b\x1a\x9d\xf4\x4c\x1d\xd9\x54\xb0\xed\x2e\xa2\x2d\x28\xa8\xfb\xdb\x3e\x51\x37\xdf\x7e\x7f\x76\x74\xfe\xeb\x0b\xbb\x81\xf9\xdf\x27\x64\x16\x3e\xfc\xf6\x7c\xb2\xeb\x77\xb7\x3c\x61\xcb\x8c\x26\x61\x5f\x2c\xf9\x5d\xe5\x83\x7a\xda\xd9\xbc\x85\x23\x74\x3d\x4a\xce\xfe\x7c\xee\xb9\x83\xeb\x39\x5d\x77\x33\x7d\xdf\x79\x3f\xab\x70\x19\xa0\xc2\x37\xc6\xb3\x06\x87\x2d\xdd\xcc\x59\xab\xed\xcc\xbd\x4a\xb7\xcb\xb1\x51\x62\xef\x78\x9b\xf2\xa5\x9d\xf1\x54\x31\x4d\x19\x7a\x69\x83\xbe\xf3\x7e\x56\x49\xcf\x6c\x5f\xa1\x6a\xa8\xc9\x42\x34\xdf\x16\x8b\x2b\x05\x2c\xbc\xfc\xe2\x93\xdd\xcf\x75\xbe\x9e\x3e\x77\xf3\x3b\xa7\x71\x79\xee\xfa\x07\x73\x3d\x7d\x90\xf7\xad\xe3\x8a\xb1\xd6\x4b\xfa\x31\x8b\xb9\x44\x91\xe0\x32\x8b\xd8\x34\xe1\x52\xd3\xd9\xfe\x8b\xf3\x7c\x5c\x5e\x6c\x6c\x7f\x05\x73\x47\x83\xd2\xc3\x9c\xcf\x0a\x48\x8c\xac\x02\x52\x58\x49\x7c\xfd\xc3\xce\x8b\xbd\x0b\x7b\xe7\xc7\xf7\x24\x68\xf8\xfe\x64\x5a\x66\xed\xf4\x5c\xd3\x8c\x2b\x53\x36\x05\xb2\x15\xfa\x0f\x60\x9e\xf7\x2d\x64\x62\x5b\x77\xfb\xba\x17\x63\x71\x17\xc6\xbb\x4a\xe2\xdf\x9f\x4c\x1f\x36\x9e\x11\x72\x55\xdc\x2b\x94\xd1\x88\xd9\x5e\x32\x54\x2f\x10\x23\x13\x53\x36\x09\x33\xa9\x82\x88\xe6\x17\xc8\xbf\x3f\x99\x7a\x45\xd0\x5a\xbc\xe3\xee\xe2\xf8\x50\xef\xf4\x67\xad\x77\x8a\xbe\x35\xc6\xf0\x0e\x86\x3e\xce\x1e\xa3\xe2\xe9\xd7\x30\xce\x39\x8e\x83\x76\x4d\x7c\x5d\x94\x3c\xf5\x34\xa9\xd7\x3c\xf5\xce\xd7\xec\x7f\x5e\xf5\xb4\xde\x08\x06\x7b\xac\xb2\xa7\x43\x99\xd2\xa1\x4c\xa9\xbb\x05\x43\x99\xd2\xc7\x2c\x53\xda\x56\x45\x34\x8e\xa3\xed\x85\x78\x8d\x95\xab\xba\x08\xf5\x51\xa9\x35\x6a\x09\x6d\x51\x17\xe8\x09\xb5\x85\x45\x86\x74\x6e\x13\x75\xfb\x68\x1f\x72\x2a\xd0\x93\x8d\x75\xd8\x91\xd5\x08\xe5\xb9\x54\x33\xcd\xde\x74\xcd\xfc\x24\x6f\xe9\xcc\xda\x0a\x53\x36\x75\x3a\xb8\xc5\xa0\xf1\x2a\x5f\x87\x9f\x6b\x72\x97\x66\x51\xc5\x52\x16\xd5\x26\x8c\xf2\x9f\x80\x84\xfe\x34\x75\x2a\x92\x41\x3d\x94\x1b\x2e\x96\x5e\x77\x1f\x5b\xca\x1d\x55\xbb\x81\x4d\x35\x8d\xb5\xc3\x66\x89\xcd\x02\xe4\x83\x30\xa1\x0d\x15\xde\xe3\x38\xe2\x7a\x51\xa8\x6b\xa1\x62\xeb\x4c\xcd\x3b\x31\x4c\xc6\x67\x60\x02\x26\xc2\x16\x4d\x59\x69\x7c\x88\xd7\xc4\x1c\x92\xc6\x8a\x39\x67\xc4\xb0\x9f\xbb\xee\x2d\xe6\x79\xef\xce\x44\xce\x30\xa8\x10\x0b\xff\x40\xc2\x69\x4c\x10\x6f\x98\x59\xcc\x76\x09\x6e\xc0\xb6\x12\xaf\x17\x4a\xf6\x6b\x5c\xb7\xf1\x90\x0a\x12\xae\x58\xc2\x29\x66\x1f\x72\xfc\xa1\x21\x3d\x93\x01\x9b\x39\xfa\x3b\xa5\x93\x2e\xad\xe1\x7a\xef\x88\x68\x09\x85\x30\x11\xd0\x38\x85\xa2\x17\x69\x31\x23\xdf\x54\xbc\xfc\x29\xc9\x2b\x2a\x90\xaf\xa4\x5a\x99\x50\x5f\x99\x8c\xe6\x34\x05\xf0\x18\x2d\xe5\xd4\xec\x97\x70\x7f\xc3\xca\x1f\x5e\xd8\x00\x97\xca\x12\x26\x02\x7b\xf2\x46\x4e\x32\x3e\x99\x29\x0c\x9d\xb3\xb1\x58\xa6\x32\x8c\x4c\x20\x95\xa3\xad\xcc\xd6\x30\x61\x11\xe6\x09\xfd\x1d\xc0\x43\x4c\xcd\xf5\xb5\xb0\xa9\x4a\xd1\x17\xbc\x0a\x89\x06\xa3\x99\xde\x4c\xc1\x96\x30\x39\xc3\x12\xec\x9b\x70\x18\xeb\x1e\xfd\xe1\xa7\x7f\x9d\x4b\x05\x59\x43\x8f\xa2\xc8\x38\xb6\xbb\x7d\xfb\xfb\xd5\xdf\x82\xab\x2e\x1c\xa7\x3c\x1d\x25\x55\x3c\x85\x64\x85\x18\x31\x68\x16\x62\x2b\x9d\x8e\xc9\x91\xc9\xe3\xd5\x00\x5b\x38\x9a\x34\xaf\xf4\x6e\x7c\xc0\xcd\x92\x35\x80\x60\x31\xfa\x1f\x8e\x8a\x98\x62\xe7\xcd\x50\x05\xd8\xfb\xa7\x68\x31\x48\x31\x45\xcb\xd1\x97\x9f\xce\x4c\x9a\xb4\x29\xb2\x1d\x9f\xae\xa0\x31\xb8\x06\xb6\x12\x75\x63\x2f\x65\x34\x5e\x7c\x50\x2e\xac\x5d\x39\x1a\xe8\x09\xaa\xaf\x65\x53\xb7\x20\xd8\x3b\xe3\x13\x4d\xa3\x95\xdf\x65\xaf\x17\x30\x88\x29\xd8\x0a\xc9\x27\xaf\xcc\xd5\x6b\x69\x5b\x43\x02\xe7\xd5\x8f\x8d\xd3\xb6\x8c\x8d\xbd\x6f\xc1\x59\x14\x36\x46\x42\x14\x4f\x0e\x18\x9a\xa3\x00\x27\xeb\x9b\x09\x78\x2c\x15\xa4\x91\x09\x5f\x6a\x38\x34\xdd\x7f\xfb\x00\xf7\xf5\x4c\x1f\x21\x96\xac\xf1\x03\x42\xd5\x73\xc7\xe4\x6a\xae\x08\xe6\x3c\x8e\x20\x75\x65\x7b\x97\x39\xc8\x8a\x02\x17\x86\x0c\x1b\xb7\x68\x38\xc8\x35\xd8\xb4\x77\xaa\x2f\x40\x0e\x45\x4d\x97\x50\x4c\x08\xf3\xf8\x6f\xba\x66\x26\x9e\x01\x6a\xab\x40\xe0\x78\x5b\x2c\x66\xf1\x38\xd6\x65\x38\x63\x09\x73\xd9\x86\xb9\x8b\x77\x8b\x15\xf5\x03\x85\xc3\x76\x20\xf6\x7b\x2d\x13\x52\x12\xee\xf6\x21\xd2\x1e\xd2\x88\xee\x08\x11\xbe\xd6\x5c\x40\x5a\x38\xa9\xb9\x87\xcc\xe6\xcc\x06\xdd\x3c\xb8\x6c\x81\xa3\x7f\xdb\xe5\x21\xfe\xcc\x74\xdc\x81\x6f\xbe\xb3\x90\x52\x7a\xc5\xca\x4b\x69\xbc\x68\xf8\x34\x2c\xff\x3d\xca\xa9\xcf\x9e\xbf\xaf\x03\xc0\xae\xb1\xbd\xe3\xdd\x00\x50\x96\xb0\xaf\xfc\x2e\x69\xc5\x23\x13\xf2\x8d\x4c\xf3\x6a\x51\xc5\x2e\x7a\x04\xf5\x62\x2f\xdb\xfb\x6c\x5c\x67\x79\x15\xc8\xe6\x01\x27\xbe\xeb\x41\xa6\x41\x22\x53\xe0\xf4\x9c\xdb\xd8\x40\x13\x72\x30\x76\xe2\x76\x82\x71\x02\x6d\xe8\xb2\x1a\x79\xc1\x4c\x32\x77\x2f\xce\xd3\x12\xa4\x4a\x78\xa0\x1a\xcb\x4e\x16\x8f\xa5\x6e\xb0\x85\x46\x30\x91\x4d\x28\x2f\xc7\x6a\x1d\x07\xa7\x8c\xf2\x8a\x80\x3d\xe4\xc4\x21\x67\x09\x7a\x4b\x2c\xf9\x86\x09\x2d\x7d\xea\xe5\xb7\x9e\xf3\x66\x06\xd1\x19\xb7\x17\xa4\x5b\x03\xa6\x8b\x47\x48\x75\xbe\xdb\x9e\xe0\x07\x79\xd0\x45\x99\xaf\xb2\x2b\x3e\x6f\xc8\xdc\x50\x3c\xb0\x8f\xbf\x3a\x58\x34\x55\x1e\x28\x9e\x2a\x30\xf2\x8a\x03\x2d\xd0\x98\x36\xb9\x05\x16\x0f\x82\x83\x5c\x41\x0a\x63\x38\xa5\x50\xef\xcc\x26\xf8\x4e\xd1\xc7\xd3\x24\xad\x87\x5c\x26\x5b\xd2\xe8\x6d\x58\x3c\x95\xdc\xd9\xaa\x9c\x4c\xc9\x96\xb3\x32\xcc\x92\xc1\xd5\x5a\xf2\xe8\x80\xba\x44\x1a\x66\x2b\x57\x1f\x4f\x6d\xc6\xeb\xb7\x27\xd3\x86\xcc\xd8\xf6\xe9\xb3\xab\xcd\xb9\x09\x8a\xa7\x47\x96\x82\x7a\xe3\xee\x83\xd2\x9d\xb9\xa0\x78\x76\xcf\x61\x50\x3c\x7d\x0f\xe4\xee\x7c\xe3\x79\xf1\x51\xc7\xb1\xec\xc7\x28\x98\x93\x09\x26\xbd\xbc\x63\xc4\xc2\x68\x56\x9a\xab\x88\x29\x48\x84\x08\x09\xd8\x71\xac\xf6\x3e\x73\x86\xa8\xf5\xa8\xf4\xdb\xb3\x78\xb7\x2b\x7b\xbd\x57\xd4\x08\xe9\x20\x2b\x5d\x7c\x03\xeb\x43\x56\xc0\x9c\x64\xc3\x3c\x9f\x39\xf2\x85\xb7\x68\x7c\x79\x59\xd8\x03\x72\x93\x29\x31\xc9\xb1\xdc\x1c\x22\x07\x56\x53\x3c\xcb\x53\xde\x74\x70\x7d\xae\x5c\x6e\xae\x0e\x18\xad\x10\xca\xa9\x85\x80\x51\xbb\x9a\x61\x3a\x78\x9c\x85\x4d\x9c\xa2\x99\x9b\xbe\x18\xac\x13\x03\xd8\x52\xfb\x3b\x60\xb0\x8e\xb5\x17\xe8\xad\x82\xc1\xae\x11\x87\x5d\x1b\x2c\x76\x8d\x78\xec\x5a\x63\xb2\x56\x9e\x67\xc0\x65\xf0\xf4\xc2\x65\xe9\x3d\x04\xe0\x6e\xb9\xb7\x55\x85\x57\x3c\x5e\xb9\x97\x3c\x4b\x19\xb3\xba\x2f\x40\x65\x98\x13\x34\xdd\x0a\x45\xef\x9e\x77\xca\x23\xad\x62\xb3\xe1\x21\x9b\xc4\xe2\xf6\xbe\xad\xca\xcb\x91\x9a\x65\x52\x97\x86\xf5\x75\x3b\x97\x0a\x0d\xd9\x87\x0d\x49\x50\x1d\x20\x18\x47\x61\x6b\xa7\xea\xa0\x0a\x08\x1e\x87\x9a\x74\xc8\xaa\x2c\x92\xb7\xcf\xf7\xcb\x53\x76\x80\x8d\x50\xb5\x85\x61\x6d\x76\xfa\x0e\x55\x00\xe8\xb9\x40\x7f\x39\x5b\x31\xa2\x6e\x25\x9c\x35\xf0\x42\xb6\xef\x10\x41\x68\x22\xb4\x2d\xd2\xb0\x76\xec\xdd\x85\xb0\xab\x37\x15\x2b\x1d\xbd\x2a\x73\xa4\xd7\xfd\x22\x63\x98\x6d\xdf\x4d\x13\x6e\x57\x32\x32\x9b\x74\x08\x5b\x74\x7d\x5d\x10\xe4\x3f\x02\x76\xf9\xdd\x8a\xa6\xcf\xd6\xdb\x77\x11\x9d\xb3\xe8\x39\xe0\x1d\x83\xe4\xbb\xae\xb3\xa9\xe8\x6a\x15\x0d\x70\xc8\x70\x7e\xe8\x8b\x30\xca\xcd\xdb\xa1\x1e\xb7\xe7\x79\x33\x05\x3a\x40\x45\x9f\x17\x53\x84\xc9\x91\x0f\x3f\xfd\xd3\x4e\x14\xb4\xa3\x66\x41\xbd\x8f\x05\x2e\xb8\x71\xbd\xf5\x25\xe9\x39\xe8\x65\xb5\x77\xdb\xbe\xda\x7c\x41\xed\x8b\xe9\x56\x38\xe8\x53\xc7\x16\x0b\x16\x98\xe0\x3e\xa3\x29\x88\x00\xad\x9a\x88\xa9\x52\x45\xdb\x1e\x53\x17\x52\x8c\xac\x67\x3c\x9a\x5f\x31\xf2\xc1\xe8\x44\x16\x32\x59\xb3\xaa\x0e\xa2\xa5\x5e\x6e\xf1\xc0\x61\xa8\x03\xa6\x28\x93\xf1\x10\x02\xbc\x09\x74\x3e\x0a\x02\x99\x89\x5d\xf8\xae\xab\xf2\x87\x3f\x1b\xff\x55\x41\xc9\xed\x7d\x7a\x34\x99\x94\xc4\x32\xcc\xb3\xdb\x00\x33\x97\xa3\x67\x03\x8c\x0e\xb4\x8b\x2b\x6e\x3d\x6d\xbd\x74\xc9\x84\x94\x9d\x42\x9a\x9f\xb2\x3c\x00\x05\x44\x3e\x1a\xdc\xe4\x3e\x20\xef\xee\xb2\x49\x81\xec\x01\x7b\x2f\x68\x93\x02\xe2\x1a\x13\xa7\xc6\xa7\x94\xe7\x9a\x48\xcd\xfc\x76\xdc\xfc\x7e\x8c\x1d\xd9\x41\xfd\x40\xfa\x72\x49\xa4\x2f\xa7\x44\xea\xf7\xab\x93\x57\xfa\xf7\xdd\xe9\x92\x9c\x54\x68\xdc\x10\xeb\x5b\x78\x8e\xc9\xa4\x43\xea\xd0\x4f\x61\x5d\xa8\x1b\x0d\x0a\x39\x44\x99\x5c\xe4\x8d\x46\xf6\xf2\x73\x74\x7e\xf2\xb4\xc1\x1d\xdb\x7d\x76\xd3\x66\x35\x95\x76\xeb\xdb\x66\xa5\x54\xdc\xcf\xc8\xf6\xcd\x6c\x36\x2d\x8c\x48\x8d\x96\x35\x7d\x3c\x74\xd3\xe6\xa9\x5b\xc7\x9b\x8f\x33\xaa\xad\x99\x5a\xc9\x70\x07\xda\xf3\x06\x3f\x78\x58\x9a\x83\x4b\x86\xcb\x61\xd6\xed\xf8\x15\xe9\x3e\x31\x15\x35\x6b\x28\xc2\x5c\xee\x14\xdc\xc3\x43\xec\xc5\xce\xf6\x19\x1b\x2f\xc7\xe4\xeb\xd3\xd9\x3e\x99\xbe\x9d\xed\x13\xa6\x82\xf1\x73\xf2\xc6\x94\x88\xea\x90\x20\x4c\x1f\xfa\xd4\x5e\x5c\x3e\xd5\x4c\xc4\x12\x5c\x5b\x7e\x5d\x1a\xd7\x98\xaa\xd5\x0e\xfb\xf8\x74\xaa\xdb\x3f\xc6\x36\x76\xed\x60\xb7\x85\xc1\xdd\x41\x98\xe6\x38\xdf\x2a\x5c\xa6\xdd\x8b\xbe\x9b\x41\x08\x1b\x2f\x0f\xc9\x88\xb0\x3b\x1a\xa8\x43\x72\xb0\x90\x12\x4a\x3e\x42\xda\x1b\x72\x30\xa7\x09\x39\xbf\x98\x9d\x1e\xa2\x4f\x04\x13\x2a\xd9\x92\x75\x17\x71\xb9\x38\x3f\xfb\xb3\xc1\x63\x5b\xc2\x38\xe6\xc3\x26\xef\x61\x8c\xf7\xe0\xbd\x4c\xde\xe3\x10\xef\xad\xb7\x42\x43\x71\xb5\xe2\x81\xaa\xf7\x34\x17\x51\x31\x93\xb7\x16\xa8\xb9\xf2\xc5\xc2\x16\x4f\x9f\xf3\x56\x3e\x00\x1a\xbc\x90\xba\xb5\x94\x76\x0d\x80\x6e\x13\xb8\x1a\x07\x86\x0e\x54\x3b\x51\xe0\x48\x38\x67\x16\x08\x46\xfa\xd5\xec\xf7\xa1\x05\xb9\xa9\x69\x4b\xd5\x0a\x8b\xd9\x1e\xe6\xe5\xe8\x7b\x08\x6b\x78\xcc\x60\x56\xd0\x5d\x04\x95\x1e\xed\xf6\x15\x5d\x8f\xf0\xa7\x8f\x1b\x01\xfb\x68\x05\xf6\x0e\x5c\x26\x31\x00\x78\x58\x06\x28\x6e\x4a\xd8\x74\xff\x4e\xfb\x10\x42\xd2\x0f\x19\x75\x77\xc5\x83\x75\x4f\x7a\x39\x39\x7e\x33\xed\x6b\xb7\x04\x44\xd4\x3c\x77\x17\x43\x51\x7b\xea\x03\x98\x2d\x46\xba\xca\x10\xf0\x13\x0c\x99\x27\x88\x6e\xac\x9a\x89\x8f\x9b\x1d\xbf\x54\xea\xd9\xd4\xd7\xc9\xb5\xaa\x38\x69\x9e\x16\xb6\x1e\x3d\x4e\x9b\x1c\x09\x56\x20\xdd\x68\xf3\xaa\xc5\x10\xd4\xeb\x24\xea\xa5\xed\x40\xe3\x81\x2b\x91\xc2\x85\x12\x00\x25\x80\xd4\x63\x64\xb2\x70\xea\x48\x77\x93\x87\x99\x06\x30\xba\x2f\x83\xcf\x14\xa4\x39\x29\x95\x1a\xce\x33\x9c\x50\xa2\x58\xb0\x12\x3c\xa0\xde\xe2\x39\xc5\x03\x02\x3d\x2a\xad\xf8\x3a\x96\x69\xe1\x58\x8a\xd9\xe1\x21\x85\x43\x9e\x3b\x71\xc1\x13\x76\x4b\x23\x7f\x16\xb8\xe2\x41\x7c\x61\x14\x0a\x98\x81\x51\x12\x26\x8a\x6a\xb3\xe0\x3d\xd2\x7d\x39\x3a\x75\xcf\xd0\xec\xe3\xb7\x43\x77\x33\x26\x6e\xfc\x74\x97\xea\x36\x4f\x08\xfb\x05\xba\x1d\xc2\x0a\xa1\xaf\xd3\x60\x25\xc9\x25\x92\x6c\xf2\x8c\x8f\xd9\x98\xc4\x5c\x2c\xd3\x76\xdd\x6d\xaf\xf5\xf6\x40\x07\xb1\x3f\x32\xa1\x01\x20\x93\xa9\x8d\x50\xf8\x68\x87\x86\x92\x60\x86\xdc\xb8\x0b\xe5\xa9\xd5\xe8\x36\x42\xa1\x07\x04\x1a\x7c\xcc\x1b\x16\x67\x73\xbb\x3a\x9e\x66\x45\x56\x0a\x27\x4f\x47\x5e\x9e\xa1\x7d\x71\x1f\x85\x36\xea\x21\x3f\x0d\xed\xf2\x19\x4e\xfb\xd2\xc5\xbe\x84\xa9\xec\x22\x5f\xcc\xc7\xc4\x46\xa0\xb6\xf9\x86\x99\x18\x43\x12\x53\x9e\x34\x27\x34\x2e\x1e\x2d\xd4\x9a\xb2\x2a\x2e\x4c\xe9\x5c\x66\xaa\x07\x29\x79\x28\xb9\x51\x48\xa5\x6f\x5f\xbf\x93\x71\x8e\x8d\x3b\x2c\xd1\xd0\xa4\xdd\x23\x64\x20\x19\x03\xc9\xf8\xad\x93\x0c\x21\x95\x65\xad\x1a\xc1\xd2\x6e\x2f\xee\x69\x29\xee\x67\x23\xae\xb9\x32\x59\xb6\xaf\xc3\x9b\xc9\x34\x6b\x06\x58\xc7\x4d\xee\x61\x94\xbe\x9f\x39\x3a\xfe\xb5\x02\xf7\x7a\xcf\x85\xed\x03\x52\xff\x9a\x5a\x16\x22\x01\x5c\x5e\xc0\xc2\x64\x0c\xa7\x9e\x27\x6d\xae\x39\xc6\xaf\xcc\xec\xf3\x29\xf8\xbf\x5f\x42\xf0\x86\x0d\x45\x40\xdf\x99\x67\x73\x16\xd0\x2c\x35\xde\x1c\x1d\x8e\xc1\xf9\x14\x03\x96\x40\x1f\xb9\x47\xc8\x73\x34\x27\xda\x64\x77\x25\xff\x96\x2e\x22\x8b\x8e\x2f\x87\xae\xef\xc6\xbe\xeb\xb9\x81\xff\x00\x69\xa5\xf4\xaf\xcd\xab\xe2\xdf\x57\xc7\x33\x7c\xdb\x3c\x8c\xe9\xf1\x8c\x2b\x66\xdd\x43\xa8\xb0\x07\xc4\x9a\x14\x30\x0b\xf8\xcb\xd1\x27\x9f\x7f\xde\x62\x63\x7b\xbc\x63\x9f\x36\xa5\x5d\xc3\xa7\x6c\x26\xc8\xd3\xae\xf5\x08\x95\x68\xa8\x7c\xe3\x8e\x3a\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xfe\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x34\xad\x64\xc0\x65\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xd4\x9f\x21\x4a\x62\x88\x92\xc8\x9f\x21\x4a\x62\x88\x92\x78\xfc\x28\x89\x96\x5a\x30\x5a\xc6\xc0\x7c\x67\xbe\x77\xed\x1d\xb7\x9c\x72\x93\x1d\xef\x1e\x69\x0e\xcd\x97\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\xc8\x73\xd8\x8c\x1a\x87\x3c\x87\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\x7e\xf1\x0c\x16\x7c\xe7\x19\x2c\xf8\x83\x05\xdf\x3c\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\xe0\xb2\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\xaf\x3f\x83\x05\xbf\xfa\x0c\x16\xfc\xc1\x82\x5f\x7d\x06\x0b\xfe\x60\xc1\xcf\x9f\xc1\x82\x3f\x58\xf0\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\xec\x33\xc2\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\x92\x56\x0d\x49\xab\x86\x3c\x87\x43\x9e\xc3\x21\xcf\x61\xdb\xfc\x87\x3c\x87\x03\xc9\x18\x48\xc6\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\x43\x9e\xc3\xca\x33\xe4\x39\x6c\x16\x22\x87\x3c\x87\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xcb\x8a\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\xea\xcf\x10\x25\x31\x44\x49\xe4\xcf\x10\x25\x31\x44\x49\xfc\x3b\xe6\x39\xec\x63\x0b\xab\x63\xae\x6e\xfb\xd7\x02\x4d\x97\x05\xaf\xe9\x9b\x75\x96\xba\xda\x7c\x73\xe8\x30\x59\xa0\x14\x25\x2d\x77\xc3\x92\xfc\xbb\x02\x09\x19\xbb\xd6\x71\xa1\x1b\xb5\xdc\xcb\xc2\xe3\x5b\xd9\x1c\x8f\x0d\xcc\x3c\xfa\xb7\x60\xd6\x3c\x10\x5b\x74\xa7\xa0\xe7\x0f\xc7\x28\xc9\xe4\x7a\x98\x15\x5f\x6a\xb6\xf0\x7a\x0f\xfa\xbb\xde\x83\x03\x6c\xda\xfa\xba\xa6\x0b\xcd\xd2\x28\x40\x99\xd0\x41\x24\x6f\x59\x82\xb3\x41\x8f\x21\x67\x72\x29\x91\x6b\xae\x14\x0b\xf7\xb5\x44\x8e\xee\xe6\xbe\x4e\x03\x29\x52\x8e\x29\x2b\x51\xe2\xbe\xde\xe3\x62\xc1\x05\x57\xec\x7a\x8f\x8c\x08\x78\xa9\x38\xcb\xb1\x22\x8e\x99\x27\x89\x68\xaa\xc6\x24\x5f\x99\x17\x24\x7a\xae\x3c\x64\x42\xf1\x80\x46\x66\x82\xd5\x7e\xb8\x20\x34\x8a\x57\x54\x64\x6b\x96\x38\xed\xe0\x00\xf8\x7a\x35\x66\x41\x23\x1c\xa2\x29\xd6\xab\xd8\xc4\xc3\x21\xb2\xf5\xbc\x2e\xb7\xc7\x09\x3b\x39\x3f\x9a\x75\x1d\x8f\x29\x36\x23\x5c\x84\x3c\x40\x99\x24\x77\x8d\x5e\xd9\x34\x94\x40\xbd\x78\x6a\x01\x35\x67\x0b\xe9\x47\x3c\x54\x6c\x89\xee\xae\x71\xae\x73\x29\x23\x56\xcf\xaa\xd9\x42\x75\x2a\x52\xf9\xcc\x95\xf0\xf0\x54\x3b\x72\x9e\xbd\x68\x31\x0f\x6e\xf0\x3f\x32\xf3\x22\x20\xbd\xb6\x0a\xc7\xee\x9c\x04\xe3\xc8\xed\xec\xa1\x92\x46\xc1\xd4\x22\x77\x14\xf3\x48\xc9\x42\x46\x91\xbc\x45\xa8\xa1\xf0\x99\x8b\x63\x48\x17\xfe\x88\xb2\x09\x5e\xec\x77\x11\x57\x2c\xa1\x91\xfe\xc5\xd7\xf3\xf5\x35\x19\x61\x20\x83\x3e\xd5\xeb\x98\x26\x3c\x95\x62\x9f\x40\x24\x93\x15\x2a\x6c\x97\x0b\x29\xc9\x9c\x26\x20\xe8\xe4\xc3\xfd\x6e\xc7\xe1\x8a\xf1\xb4\x48\xc4\xfe\x9a\xd1\xe8\x4b\xf4\xbc\xb3\x84\x8e\x2f\x0c\x85\xe3\x29\xb4\xb1\x4a\xbb\x7c\x48\x3f\x12\xf9\x11\xe6\x41\x0b\x6f\x91\x79\xf1\x67\x80\x7f\x8e\xc7\x63\xf2\x0f\x67\x06\x2a\xc9\x98\x75\xa1\xcf\x3d\xd0\x70\x8c\xef\x89\xdf\xe7\xd5\x68\x2b\x3b\x86\x2a\xe6\xaa\x17\xc0\x45\x8f\xc9\xf9\x06\xdb\x71\xbe\x30\x58\xdb\x04\xfd\x5b\xe2\xcc\x59\x0b\xb4\xd0\xdf\x3b\x4d\x3a\x9e\x17\x43\xcf\xf2\x91\xa9\x2a\x76\xc7\xd9\x99\xdf\xc1\x21\xf5\x12\x5d\xd3\x45\xae\xd9\x90\x0b\x68\x0b\xa2\x2d\xfc\x3f\x7b\xf1\xe2\x93\x57\xf8\x5f\x7c\x93\x7f\x73\xb5\x92\x89\x1a\x05\x3c\x09\x32\xae\x80\x71\x31\x1f\xf9\x06\xfa\xfb\xdf\x5b\xbf\x06\x15\xa8\x7a\x86\x6d\x9e\xe7\x8d\x62\x9a\x30\x81\xc9\x6e\x97\x89\xcc\x62\xcd\xad\x5d\x5f\x2b\x1a\x45\xcf\xbc\xaa\x6c\x93\x7d\x15\x9d\x13\x72\x7c\x61\x7b\xb3\x67\x98\x46\x91\x23\xa1\xc2\x05\x3d\xc3\xf3\x80\x2c\x58\x03\x92\xd3\x57\x1b\xf1\x8c\xf5\xdf\x72\xf1\x7b\xba\x4f\x46\xfb\xe4\x1d\xc0\xe1\x60\x4c\xae\xe0\xca\x11\x73\xe5\x1a\x3b\x5d\xcb\x84\x91\x58\x33\xa7\x69\xca\x37\x8c\xcc\xd1\xf7\x78\x6b\x35\x23\x46\x67\x45\x58\x1a\xd0\x98\x91\x60\x45\x13\x1a\x28\x96\x98\x69\x9f\xa2\x03\xa7\xf7\x32\x3c\x03\x2a\xb5\xa6\x21\x1b\x65\x31\x1e\x8b\xf4\x79\x8e\x8e\x20\xe4\xc5\xa0\x8e\x5b\x36\xd7\xdc\x2f\x33\xc8\xc3\xdd\xf1\x90\xc5\x91\xdc\xae\x99\xf0\xa2\x53\xf3\x7d\x9c\xc8\xd0\x1e\x52\xe8\x57\xdf\x29\xc0\x49\x89\x14\x8a\x89\xd0\x39\xea\x34\xb8\x31\x3f\xfc\x43\x37\x2f\xfa\x27\xbf\xfb\x63\xd3\x0d\x08\xd9\xc6\x76\xff\x3b\x52\xb9\x05\x3e\x54\xd6\xc6\x3c\x95\x75\x09\x7d\xb9\xc2\x2b\xef\x57\x8f\xc6\x1a\x9a\x49\x5a\x51\x63\x57\x06\x11\xf4\x95\x3d\x68\x2a\xa8\x35\x0b\x0e\xe0\x76\x05\x61\x94\x25\x9a\xef\x38\x74\x98\x44\xd3\x5e\x3c\xa5\xef\x9d\x34\x99\xa6\xf7\xcd\xbf\xb4\x50\x33\x26\xe8\x3e\x05\xd4\xe4\x2e\xd6\x1c\x95\x8a\xb6\x8e\x4c\xf3\x0c\xb2\x64\x7b\xfd\xe2\x1c\x3c\x2a\x48\x90\x30\xe3\xb7\x9d\x9a\xdb\x2d\x13\x22\x78\xf4\x7c\xdf\x7a\x5e\x87\x6c\x41\xb3\x48\xa5\x04\x97\xa5\x41\x97\x84\x0d\x32\x8d\x92\xe4\x56\xe3\xca\x89\xc9\x65\xae\x27\x71\xea\xa4\x35\x07\xbe\xd5\xe2\xcf\x3c\x65\x34\x38\x0c\x91\xa6\x00\x4e\x33\x3e\xe1\x29\xde\xb1\x11\xf9\x8b\x61\xe5\xf4\x84\xec\x48\x3f\xec\x1b\x12\xa1\x19\x63\xd0\x3c\x96\x06\xf6\xde\x63\x2e\x82\x28\x0b\xad\x6a\x3e\xa0\x9a\x59\x86\x0e\x8a\x6e\x08\x12\x69\x21\xf3\x25\x41\x77\xcf\xf5\x4c\xfc\xb2\x96\x3b\xb9\x53\xff\xdc\x4a\x10\xd1\x88\xa9\xe8\xde\x2b\xdc\x41\xbb\xc6\xa5\xef\x77\x0e\xe8\xeb\x14\x24\xe3\xa6\x6d\x42\x1c\xf8\x9d\x11\x8b\x1d\xf1\x24\x61\x54\xdf\xa6\xe0\x86\xd0\x25\xe5\xc2\x7b\x64\xf1\x98\xa0\x3a\x35\xba\xa5\xdb\xb4\xe6\x34\x8b\x76\xce\x7d\x22\xd8\x86\x25\xa5\x53\xe7\xd5\x6a\xf6\xcc\x46\x5f\x40\x81\x30\x20\x1d\xb9\x45\x20\x96\x69\xca\xe7\x91\x1d\xb8\x70\xe4\xd0\x1f\x5c\xc5\x2c\xf0\x8b\xdd\xb8\x90\x66\xd7\x96\x76\x01\xbf\x51\x76\xf6\x8b\xdc\xf5\x5f\x81\x72\x84\xae\xc1\x2e\x55\x32\xa1\x4b\x66\x7f\x4a\x15\x55\x19\x02\x06\xf5\xd6\x2c\x3c\x77\x34\x8a\x37\x5c\x84\x1a\x1b\x59\x90\xc6\x51\x96\xd0\xa8\xf8\x25\x90\x02\x4d\x48\xe9\x21\xf9\xcb\x0f\xfa\x17\xdd\x3f\x0b\x4d\xfc\x97\xf9\x75\x34\x1a\x99\xff\xd0\x98\xdb\x48\x32\x42\x63\xce\xee\x14\x13\xd0\x70\x7c\xf3\x45\x3a\xe6\xf2\x60\xf3\xf2\x5a\xe0\xa0\xc7\x59\xaa\xe4\xfa\x92\xa1\x4a\xfc\x84\x81\x90\x08\x08\xbb\x14\xaf\x55\x0f\x81\xca\x35\xdd\xc9\x68\xc9\xc4\xf8\x26\x9b\xb3\x79\xc6\x23\x2d\xb5\xea\x01\xec\xf0\xcf\x42\xb6\x61\x11\x30\x2a\x16\x7f\xcd\xf8\x9a\xa5\x8a\xae\x63\x2d\xbf\x45\xe0\xf4\xaf\xc9\xd8\x21\x41\x97\x42\x81\xbe\x79\x29\x53\xe9\x38\x48\xc2\x71\x9c\x48\x0d\xe9\x00\x50\xdc\x58\x26\xcb\x6b\xa1\x71\x27\x4c\x03\x18\xa2\x43\xd2\xd0\xac\xac\xb6\xc5\xf5\xfa\xdd\x08\x23\x9e\xaa\x3f\x79\xdf\x9f\xf1\x54\x95\x37\xa5\x36\x4b\xb3\xe3\x5c\x2c\xb3\x88\x26\xf5\x06\xb0\x5f\x81\xd4\x87\xe6\x38\xca\x52\x85\x02\xeb\xc6\xee\x9d\xfe\xc7\xc8\x40\x40\xef\x0b\x74\x16\xac\xd8\xba\x88\x94\x93\x31\x13\x47\xd3\xc9\xb7\x9f\x5e\x95\x7f\xaf\x5c\xab\xea\xdc\xcb\xfe\xc7\x60\x6a\xa3\xc9\x9c\xab\x84\x26\x5b\x32\x99\x92\x34\x9b\x8f\xec\x34\x0f\x8e\x27\x27\x97\x25\x9c\x86\x2a\x92\x95\xc6\x82\xc8\x38\x81\x78\x0c\xb2\x1d\xa2\x39\x25\x31\x14\xc6\xd8\x35\xd7\x64\xc3\xa9\xe3\x61\x82\xb6\x43\xfc\xd4\xed\x57\x2e\xea\x13\xb5\x06\xa8\x5c\x1f\xe4\x5e\xe3\x06\x25\xbd\x73\xc8\xcb\xb7\xb6\x1c\xdf\xaf\xe1\x66\x0c\xad\xe8\x7b\x8c\x88\xc6\x80\x9f\x85\x06\xd6\x88\x69\x00\x6f\x1a\xa2\x47\x7d\x8a\x38\x0d\x42\x61\xee\xfe\x18\x58\x22\x96\xa4\x56\x68\x0e\xa4\xd8\xb0\x44\x91\x84\x05\x72\x29\xf8\xdf\xf2\xce\x53\x6b\xfa\x85\xb2\x1b\x35\x36\x92\x0b\xc5\x12\xcd\x3c\x01\xd2\xdb\x07\x1c\xbf\xa6\x5b\x92\x30\x3d\x0c\xc9\x84\xd3\xa1\x75\x3c\x79\xa3\x99\x66\x2e\x16\xf2\x10\xb2\xae\xa4\x87\x07\x07\x4b\xae\xec\xfd\x0e\xe4\x7a\x9d\x09\xae\xb6\x07\x70\x4d\xf9\x3c\xd3\x5b\x72\x00\x77\xf1\x20\xe5\xcb\x11\x4d\x82\x15\x57\x2c\x50\x59\xc2\x0e\x68\xcc\x47\x30\x77\x01\x17\x7c\xbc\x0e\x9f\x24\x06\x21\xa4\x4f\x7d\x18\xb1\x8e\x48\xe1\x72\xb5\x6d\x83\xbe\x5d\x26\x58\x11\xa5\x02\x64\x6b\x72\x68\x5b\xd2\x7e\x79\x7a\x35\x23\x76\x74\x6f\x60\x27\x02\xbf\xf8\x32\x2d\xf6\x41\x03\x8d\x8b\x85\xe5\xdf\x40\xf3\xed\xaa\x3b\x90\x79\x88\xb8\x87\x95\x4f\xb3\xf9\x9a\xab\xd4\x49\xd7\x21\xc7\xe4\x18\xd0\x9e\x26\x8a\x59\x1c\x52\xc5\xc2\x31\x99\x08\x72\x4c\xd7\x2c\x3a\xa6\x29\x7b\xf4\x5d\x00\x26\x76\xa4\x61\xdb\x77\x1f\x1a\x82\x6c\x9b\x74\xc7\x39\x22\x6d\xd8\xb6\xea\x45\xd5\x14\xb8\x1c\xe9\x61\x03\x83\x8a\x60\x5c\x4a\x9a\x9d\xb4\xed\xc6\x56\x88\x74\x8b\x19\xae\xc1\x71\xb9\x56\xa1\xc7\xfa\x56\x4d\xa6\xc4\xa2\x34\xc4\x60\x73\x16\x49\x7d\xb6\xa4\xd1\x48\x31\x9f\x15\xaa\x99\x6f\x19\x38\x87\xdf\x02\xe7\xb0\x92\x69\xe1\x85\xf0\x08\x5c\x83\x1b\x4b\x50\xe5\x18\xdc\x77\x75\x6e\xa1\x34\xb3\x2a\xa7\xe0\xbe\x7c\x4c\x2e\x61\xa0\xa0\x03\x05\x75\xb7\x60\xa0\xa0\x3f\x1b\x05\x75\xb1\x43\x3f\xea\x59\xc7\x35\xc5\xb3\x3b\xfd\x64\x77\x31\x04\xbc\x4d\xa6\x7d\xb4\x61\x7a\xa7\xcd\x07\xe5\xb8\x9a\x67\x93\xe9\xe6\x33\xb8\x56\x93\xe9\xe6\xd5\x73\x2b\x97\xdb\x63\xe1\x15\xba\x27\xa8\xe4\x9f\xe8\xbb\xb9\xa0\x01\x03\x5b\xde\xf5\xf5\x5e\xc5\x6c\x92\x6b\xaf\x40\x0f\x11\x49\x79\x63\xd5\x87\xdc\x7e\xe9\xd5\x1a\x5b\x67\x20\x27\xde\x67\x32\x2d\xb9\x9b\x60\x1d\x3b\x30\xe8\x19\xbd\x08\x20\x11\xaa\xc6\xe0\xbe\xe9\xa5\xf7\xd7\xd7\x0a\x94\x29\x59\x5a\xf3\x03\xad\x04\xb5\x42\xa8\x51\x5e\x0a\x50\x26\x46\xf5\xe7\xeb\xb4\x5a\x16\xef\xfa\x5a\xf7\x67\xea\xe1\xe5\xeb\x37\xc8\x2f\x2d\x8f\xca\x85\x3f\x64\x36\x17\xe9\xdc\x7d\x1a\x43\x8c\x9b\x26\x2b\x25\xbf\x3c\xf4\xa7\x3c\x2d\x8e\x02\xaa\x4a\x7c\xdd\xf2\x14\xf5\xb2\x98\x56\x85\x2a\x12\x67\x49\x2c\xf5\x4d\x7d\x36\x59\x98\xdc\x84\x2b\x56\x6c\x8d\x1e\xc7\x7a\xfa\xb4\xa7\xb6\xb0\x3a\x4a\xc9\x70\xfb\x23\x46\x13\x91\x6f\x9b\xd9\xc1\xa2\x5f\x3d\x81\x2c\x05\x3d\x7a\xa3\x8f\xf9\xf5\xb5\xb2\xdb\x31\xf6\x6a\xc1\x1f\x9c\xaf\x23\xc5\x0c\xf5\x71\xee\xbe\x52\xa7\x98\x0b\x4e\x9f\xfb\xff\x44\x13\x80\xb1\xcf\x00\xd0\xca\xb1\xf5\x67\x5c\x64\x77\xed\xa7\x3e\xb7\x50\xe7\x07\xfa\x4b\x38\x7a\xeb\x58\x6d\xc7\xa4\x18\xc6\x35\x6a\xa3\x85\x97\xa7\xad\x98\x45\x3f\x4b\xb9\x61\x89\x40\xdb\x50\xee\x6e\x24\xf7\x8d\xb7\xab\x9e\x76\x22\xb3\x25\xfa\x41\x58\x55\xaf\x61\xb6\x0b\xc9\xdd\xab\x1a\xc7\xcd\x85\x73\xa9\x1b\xe6\x29\x47\xf4\x54\xcf\x65\x88\x68\x01\xce\xe4\x97\x84\xe9\xf5\xe3\xc5\x0e\xf5\x21\xd9\xe0\x45\xf4\xc7\x5a\x17\xa1\xad\x1b\xa8\x5b\xb9\x2d\xc0\xb7\x4f\x5c\xa5\xb1\x4c\xd1\x6b\xf7\x40\x49\xf0\x04\xd5\x73\xb1\xca\x0f\xbf\x2b\x42\x24\x03\x1a\xe5\x21\x9c\x46\xd1\x3a\x59\x90\x12\x3e\xb3\xb8\xcc\xd9\xdf\x5e\xa0\x86\x8b\x64\xe1\x5d\x72\xed\x82\xe5\x03\x3e\xd1\x6b\x37\xbc\x16\x40\xce\x01\xbf\x17\xc9\xd8\x63\x54\xdc\xa1\x1c\xd6\xa5\x39\xc3\x11\x1c\x91\x5b\x8d\xe6\xca\xc8\xd9\x8f\x0f\x50\xeb\x3b\x2a\x6d\xbf\x67\xb0\x3c\xea\xa6\x50\x20\xeb\x9b\xed\xed\x54\xb8\xc8\x08\xf2\x41\x26\xe0\x58\xb1\xef\x99\x55\x3e\x85\x7d\x42\x01\x6b\xd4\xd9\x3f\x62\xec\xde\x2e\xed\xca\xeb\x52\x16\xb9\x72\x30\x70\x40\xcb\x34\x09\x66\x91\x32\xa3\xa4\xe4\x59\x9a\xf9\x31\x0c\x4d\xc9\x87\x9f\xfe\xc9\xd4\xea\xc5\x87\x9f\xfe\xf5\xdc\xf8\xbc\x83\x39\x92\x85\x44\xcf\xfa\x4b\xc2\x15\xe1\xa9\x78\xaa\x0a\xdd\x75\x37\x1d\x27\x78\x95\xe3\x44\x6a\xde\xc5\x39\x00\x08\x61\x07\x27\x94\x4f\x61\x31\x67\x2f\xc5\xb5\x81\x09\x87\xb8\x52\x88\x03\x02\xde\x07\x63\x85\xd0\x9a\xa5\xf9\xad\x75\x1c\xb1\xb5\x3e\x69\x88\xe8\x0b\xb4\xe1\x4e\x3a\xfd\xd2\xbf\x77\x5c\x71\x1a\x45\x5b\xf2\xff\x6a\x08\xc7\x09\x1b\x81\x17\x4d\x6e\x1b\x9a\xea\x2d\x62\x26\x67\x67\x8e\xf4\x83\x6c\xdd\x24\x11\xe8\xc7\xd6\x0c\x45\xf6\xde\xd4\x26\x95\xc2\x6b\x64\x68\x43\xdd\xc2\x9f\xae\xa9\xa6\x2e\xd0\xed\x8c\x87\x2a\xb8\x30\x2d\xb6\x96\xdc\x9b\x19\x43\x03\xae\xc5\x6f\xe1\x05\x76\xdb\x24\x9a\x22\xe3\x2a\x36\x10\x4d\xea\x4b\xdc\xa0\xa5\xd7\x4f\x53\x73\x73\x4d\xd0\x96\x4d\xe0\xe9\xf5\x5f\x9d\xb3\xa2\x74\x2e\x38\x5c\xe5\xcc\x86\xd9\x70\x34\x13\xed\x42\x1b\x3b\xbd\xa2\x85\x9f\xf4\x75\x43\xa6\x80\x4f\xc7\xe7\xad\x11\x59\xbf\xa6\xa4\x3c\x8f\x95\x83\xa5\xc3\x4d\x54\x34\xa0\xeb\x11\x00\xb7\xe1\x4d\x4b\x96\xa5\x7b\x3b\x97\xc6\xa6\xa8\x73\xd7\x71\x3f\x2a\xa2\x1f\xf1\xc2\x71\xa0\x72\x8b\x5a\x79\x68\x33\x89\xe6\xec\x75\x85\x47\xb4\x26\xb4\xb9\x04\x62\xea\x38\x9b\x4e\x0a\xff\x4c\x2b\x10\xa0\xe3\x61\x53\xa7\xe8\x52\x1c\xc7\x8c\x26\xb9\xcb\x1f\x78\xac\x93\x7c\x5e\x85\x55\xdc\xf6\x6c\x5d\x37\x59\xa5\x0c\x76\xab\x08\x10\x37\x25\xdd\x18\x74\x90\xbf\x6d\x1d\x24\x8f\xe9\x7a\x1e\xc9\xe0\xe6\x31\x14\x90\x93\xe9\xd1\x9b\xaf\x74\xe7\x55\xed\x63\xfe\xa2\xae\x7a\x2c\x26\x54\xd5\x3b\xe6\x6f\x06\xa5\xe3\xa0\x74\x1c\x94\x8e\xff\x76\x4a\xc7\x1c\x29\xf4\xd2\x38\x8a\x2a\x76\x29\x9e\xdd\xf5\x8d\x5a\x90\xd1\xb0\xf3\x10\xb2\x36\x32\x46\x23\x2d\xe8\x34\xa5\xd8\xed\x22\x8d\x2d\x9c\xdc\x13\x32\xbb\x38\xb9\x38\xc4\x44\x0d\x1a\x61\xd3\x39\xb2\x07\x6b\x2a\x32\x10\x63\x68\x18\x02\x97\x30\x26\xdf\x31\x8b\x12\xf0\xdc\x54\xa8\x84\xbf\x7b\x25\xc9\x8a\x8a\x30\x62\xe4\x2f\x3f\xfc\xa7\x3e\xac\x08\x9c\x68\x6b\x42\xae\xbd\x82\x9a\x9d\x48\x13\xff\xd7\xc2\x70\x51\x85\x47\xd2\xcb\x72\x7d\x04\x4f\x8f\x8b\x78\xc7\xfd\x1c\x27\xe9\xc5\xd8\xa7\x4c\xd3\x7a\x9a\xf8\x76\xdf\xcc\x7e\xb7\x14\xc9\x7d\x38\xf0\xae\x80\xab\x7b\xb3\xb6\x01\x0f\x7d\x4e\xb1\x6d\x73\x0a\x59\xc4\x94\x97\x69\x6f\x8f\x01\x81\xf0\xc0\xa3\xae\xab\xd3\xf0\x75\x26\xcc\xed\xf1\x0e\x7c\xef\xbb\xd3\x08\x99\x06\xd1\x64\xe4\x5e\xe2\xda\xab\xfc\xd4\x56\xdf\x68\x28\x57\x7f\x33\x60\xac\xfe\x5c\x06\x53\xf5\xad\x03\x86\x81\x0f\xfe\x85\xf9\xe0\x40\x8a\x05\x5f\x3e\x16\x23\x7c\x0c\xbd\xfb\x38\x61\x7c\xe3\x67\x85\xcd\x9c\x7c\xbc\x70\x90\x77\x38\x30\xc3\x03\x33\xdc\xb8\x0d\x03\x33\xfc\x5b\x65\x86\x11\x2f\xec\xc0\x0d\xbb\x28\xa6\x78\xee\xc1\x0e\x67\x4a\x1e\x19\xb2\x04\x1c\xb6\x8f\x14\x3f\x1a\x6f\xd0\x4c\xa9\x6b\xd3\xda\x85\xd6\x0e\x04\xf5\x67\x27\xa8\xc8\x9d\x3f\x16\x41\xfd\x06\x7a\xf7\x11\x54\x7c\xe3\x27\xa8\x66\x4e\x3e\x82\xba\xca\x3b\x1c\x08\xea\x40\x50\x1b\xb7\x61\x20\xa8\xbf\x55\x82\x8a\x78\x61\x07\x82\xea\xa2\x98\xe2\xd9\x9d\xa0\x82\xda\xda\x43\x05\x7b\x2b\x16\x7a\x49\xbd\x7e\x6d\x01\x62\xb5\xc9\xc9\x4e\x4a\x81\x46\x1a\x3c\xaf\x2b\xdc\x46\xf9\x10\x03\xc1\xfd\x45\x09\x6e\x2c\x65\xf4\x38\xc4\x76\x2a\xad\x01\xd6\x25\xb4\xfa\x57\x1f\x91\x85\x79\xd4\x09\x6c\x6c\x3a\x19\x88\xeb\x40\x5c\x1b\xb7\x61\x20\xae\xbf\x4d\xe2\xaa\x71\x41\x6f\xc2\xaa\x1b\xdf\x97\x8a\x5e\xf1\xbf\xf5\xf2\x95\x82\xc6\x24\xe5\x7f\x83\xac\x74\x59\x8a\x0e\x6e\x85\xdb\x31\xa1\x69\xca\x97\x62\xad\x4f\x46\x63\xae\x47\x93\x50\x41\x46\x63\x72\x62\xb3\x14\x28\x49\x3e\x79\x65\x3a\x33\xde\xe5\x2f\x5f\x7e\x62\x7f\x78\xd5\xe8\x75\xd5\x40\xbc\x1b\xf4\xf5\xb5\xf5\xe8\x59\x90\xe3\xc9\xc9\xe5\x8e\x6e\x5d\x21\x4f\xe9\x3c\xf2\x2a\xd9\x4b\x63\x80\xff\xb8\x6d\x0c\xf9\x4b\x93\xac\xf0\xf2\xd6\xcc\x10\xba\xba\xeb\x83\x8e\xa0\x2b\x1c\xb8\x7d\xa0\x33\x97\xca\xc2\x6f\x47\xfd\x01\x8f\xb9\xaf\xc6\x70\x19\x57\x9c\xe8\xab\x8d\x16\x04\x73\x91\x6d\x99\x5e\x70\x54\xcd\x3d\xc2\x8f\xa6\x93\xcd\x4b\xc8\x2a\x70\x4b\x93\xd0\x3b\x5b\x48\xd2\xa4\xf8\x9c\x47\x5c\x6d\x35\xa2\x50\x06\xd3\xb8\xbd\xc2\xd2\x31\x97\xcc\x7e\xf9\x95\x17\x00\xe8\x06\x8f\x18\x1b\x2b\xa8\x47\x5b\x5f\x1d\xf0\x0e\x23\x17\x13\x4d\xfb\xe7\xdf\x43\xd3\xbe\xd8\x42\x0d\x4b\xa2\x32\x21\x58\xa4\xd7\x64\xb3\x9d\x65\x0d\x3e\x3f\x04\xbd\x3c\x43\x16\xf1\x0d\x4b\x8a\x94\xbb\xfa\xa7\x3c\x1d\xbd\x53\xa9\xa9\x79\x87\x49\xd7\x2e\x13\xc8\xa3\xd3\x58\xaa\xb2\x76\x07\x26\xd3\xc9\x14\x3e\x30\x95\x9d\x49\x40\x85\x93\xfc\xe1\x7a\x0f\xf3\x41\xd8\xf2\x12\x50\x97\x66\x84\x85\x54\xae\xf7\xc6\x84\x1c\x35\xad\x77\x6d\xaa\x47\x3b\x3d\x98\xfc\x12\x29\xe2\x0e\x18\xb9\x80\xa1\xde\xdb\x44\x66\x78\x46\x1a\x6b\x83\x39\xf0\x2a\xc7\xa5\xd4\x60\x47\xc8\x91\x33\x87\xf2\xbc\x9b\x7a\x87\x09\xda\x83\x5e\x9d\xe0\xad\x4d\xad\xe1\xce\x01\xbd\x43\xf5\xed\x68\xea\x93\x16\x49\xb1\x4d\x01\x1a\xcb\x91\xd8\xdc\x9d\xba\x73\x61\x77\xa0\x70\xa8\x6f\x2d\x26\xf0\x8c\x2f\x30\x25\x92\x75\x6a\x7e\xae\x67\x51\xc0\xba\xf5\xe8\xb4\x3b\x90\xf9\x45\x1e\x7d\xe2\xdf\xf4\xf0\xa9\x3d\xb6\xb4\x0a\x4d\x29\x59\x52\xd0\x29\xcf\x86\xb7\x1f\xf5\x49\x65\x8d\xfb\x36\xeb\x27\x56\x3a\x35\x80\xc2\xdc\x41\xd7\x7b\xe7\x6c\x03\x69\x16\xb1\xf2\x66\x79\x30\x5f\xef\xba\x07\x83\x9b\x7d\xa9\xe6\x5b\x9d\x8b\xa9\x1a\xc9\x4c\x2d\x25\x17\xcb\xff\x2d\x28\xb5\x15\xeb\x08\xaa\x2e\x7a\xc2\x03\x53\x20\x39\x00\x2c\xb0\xaa\xc5\x8b\x90\x69\xc8\x49\xa6\x4d\x5a\xc3\x33\x0c\x77\xa4\x99\x50\x17\x01\xd4\xb0\xab\xcc\x54\xca\x43\x96\x4b\x1b\xd0\x48\xdf\x78\x5f\xa7\x90\xe5\x3f\xfd\x6b\xc6\x12\x1a\x7a\xf3\xc6\xb6\x83\x43\x86\xbd\x73\xac\x1e\xe9\xad\x4a\x2d\x07\x67\x32\x6b\xe8\xe3\x62\xa2\x07\xf2\x00\x00\x40\x35\xf3\x2d\x26\xd2\xf0\xcd\x39\x4f\xb3\xbb\xdb\x61\xde\xdc\x45\x54\x7c\xe4\xd5\xfe\xf6\xfb\xb3\xa3\xf3\x9f\xed\x6e\xc3\x68\x5e\xde\x32\x9f\xc0\xbd\x2f\x77\xa3\x96\xa6\xee\x9e\x30\x28\x63\x7e\x56\x65\x8c\xee\xa3\xe8\x36\x2d\x1d\xc2\xc7\x50\xd1\xfc\x29\x9b\xb3\xe3\x62\xbc\x63\x77\xbc\xaa\xe2\xa6\xad\x6d\x5d\x9d\xd3\xba\x92\xaa\x92\xa7\xad\xf1\xa0\xfa\x19\x54\x3f\x83\xea\xe7\xdf\x4e\xf5\xd3\x86\x4d\xea\x0a\xa1\x52\x82\xbc\x2a\x80\xff\x94\xc7\x1b\x39\x28\xb9\x42\xc1\xfb\x6b\x8b\x9c\x2e\xfa\x30\x0b\x76\x34\x14\x9f\x31\x65\xa1\x1d\xd9\x24\xdb\xdc\xf0\x30\xa3\x91\x33\xcd\x26\x0e\xcf\xf4\xb5\xb3\xa8\x9f\xc7\x05\xf7\x11\x88\xf3\x7c\xf7\x4d\x53\xb6\xf1\xda\xd8\xa8\x98\x57\x63\x61\x81\x53\xa3\x39\x98\x6f\x2d\x4b\xb3\x6f\x8b\x9e\x09\x8e\x3c\x2a\xb2\x29\x0d\x3d\xf4\xa8\x4b\xa2\xd1\x94\x08\x78\xc4\x92\x29\x4b\xb8\x6c\x76\xdb\xad\x22\x87\xcb\xca\x87\xb6\x58\x61\x8c\xff\x52\x52\xff\xb5\x90\xc9\x3a\x1f\x82\x37\x86\x6d\xda\x07\xd2\xec\x3a\xd1\x93\xfa\x56\x00\x37\x32\x26\x7f\x31\xea\xbe\x43\xf2\xf9\xfa\x07\x8f\x80\x61\x9f\x6e\x57\xdf\x2e\x47\xdf\x86\xd8\xcf\x1a\x04\xce\x35\x47\xdd\xb6\xd3\xfa\xfd\xaf\x63\x93\x57\x4e\x38\x6e\xdf\x0d\x76\x43\x78\xed\x32\x20\x13\x7b\x60\x35\x0e\x40\x21\x21\xa4\xdc\xa9\x51\xd4\xb2\xbb\x27\x56\x97\x79\xdf\x95\xf6\x5c\x2d\x31\x0e\x53\xc7\x9a\x27\x6c\x0e\x30\xf5\xac\xf9\xe9\x51\xfe\x59\xb1\xb3\x99\x92\x6b\xaa\x78\x50\x24\xce\x95\x9d\x75\x48\xca\x50\x01\x81\x46\xcb\x20\x5b\xa3\xa9\x29\x0e\xb3\x85\x49\xdb\x91\x26\xbd\x4b\x8b\xf4\x29\x2c\xf2\xbf\xef\xc2\x13\x38\xb5\x90\x96\xbc\xed\xd0\x94\x57\x7b\x95\x7f\x52\x1c\xfe\x3c\xab\xb3\x24\x81\x8c\xb7\x1d\x74\xc7\x3e\x80\x07\x8a\xd4\x97\x4e\x60\x78\xea\xae\xd2\xa0\x81\xc7\xc5\x6d\x18\x35\xda\x07\xbb\x99\x14\x33\x2d\xf8\xcd\xc4\x85\xff\x3a\x30\xdc\xff\xbe\x53\xdd\xb5\xd5\xe5\xec\xec\x7d\xb6\xbc\x9c\x99\xbd\x6d\xeb\x3b\x0a\x3c\xd9\xb2\x4e\xce\xd1\x18\xce\xc0\x2f\x71\x06\x6c\xbe\x8f\x0e\xda\x5f\xd6\xb0\x56\xbe\x69\x3b\x07\xb6\xff\xa6\x35\xb0\x0a\xff\x30\x9c\x84\x5f\xe6\x24\xb4\xbd\x65\x2a\x08\xbf\xfd\xf4\x58\xae\x63\xac\x19\xd6\x08\xb1\x32\xa4\x4e\xbd\x9f\x55\xe0\x35\x67\xea\x96\x31\x01\x63\x6c\x3e\x6d\xb4\x49\x40\x07\xb9\x14\x0f\x96\x09\x0d\xea\x17\xee\x59\x70\x60\xf5\xf2\x85\x17\x58\x6d\x40\x5a\x31\x1a\xa9\xd5\xf1\x8a\xf9\x3d\xe7\xcb\x4b\xfb\xc6\x69\x9c\x9f\x7e\x99\xd8\xa9\xa4\x79\x25\x11\xcd\xd6\x61\xcf\xde\xa5\x61\x07\xbd\x28\x7c\xdb\xdc\x23\xb9\xbc\xd2\xcc\x23\x57\xdb\xab\x20\x61\xac\xaa\x3a\xab\x2f\xe0\xac\xfa\x85\xdd\x96\x48\x2e\x49\x6a\xde\x10\x3a\x97\x1b\x66\x92\xc2\x44\x72\xe9\xe5\x61\x20\x51\x11\x13\xb9\xd1\x31\x55\xa1\xcc\x94\xbb\x19\x13\xb1\x90\xbb\xad\xa8\x59\x47\xde\x24\xa8\x37\x6a\x42\x0a\xcd\x77\x03\x28\x5a\x75\x21\xf0\xb5\xa3\x93\x32\x2b\xd4\xbf\x7a\x54\x88\xa0\x86\x2a\x29\x3e\xc8\x44\x3d\x85\x34\x77\x8b\x2c\x42\x73\x4b\xb8\x06\xb5\x0a\x94\x4a\x83\x00\x61\x28\x4b\x82\x25\x6c\x69\xa0\x32\x5a\xb3\xbc\x60\x8f\x98\xf4\xea\x96\xe6\xd9\x46\x6c\xb2\x1e\x63\x4e\x5f\xcb\x10\x6b\x7c\xcc\x35\x47\xb6\xe1\x89\x04\x37\x19\xb2\xa1\x09\x87\x23\x59\x9b\x2f\xda\x9a\x6f\xb2\x39\x1b\xb9\x9a\x9b\x38\x91\x01\x4b\xab\x62\x5a\x5b\xde\xc7\x62\xb4\x6f\xa9\x57\x6f\xb3\xa3\xc7\x6c\x13\x12\x2b\x6d\xdb\x69\x79\xd4\x6a\x7a\x23\x0f\x00\x1a\x4c\xe8\x5e\x20\x00\xb0\xb9\x58\x44\x19\x26\x3b\xc2\xaa\xf2\x50\xbf\x12\x0f\x48\xa3\xc9\xc7\x8f\x41\x13\xf7\xdb\xae\xcb\x59\x1a\xa8\xb2\x30\xa8\x54\xcc\x37\xac\x74\x2a\x78\x6a\x07\xf0\x2d\x90\x37\x6d\xb4\x0c\xf7\x4d\x62\x99\x35\x4b\x96\x56\x53\x7b\x34\x9d\x14\x8a\x5a\x4d\x98\xbc\x97\x5e\x34\x9c\x32\x0f\x5c\x3a\x88\x71\xbb\xca\xaf\x06\x9c\x87\x54\xfb\x91\x2e\xd5\x5f\x8f\xe9\x93\x1e\x2a\xc0\xda\x22\x76\x53\x03\xb6\x71\x0e\x0f\xc9\x35\xf5\x5c\x2d\xd9\x8d\x7b\xaa\x2d\xbe\x3f\x07\xd5\xa5\x42\x29\x33\x58\xbd\xb8\xa8\xae\x2e\xdb\x99\x2c\xf2\xa0\x6a\x96\x16\x2d\x22\x79\x2c\x4d\x22\x79\x00\x59\x9b\xf4\x3f\x27\x3d\xb5\x8a\xb5\xe5\xee\xa0\x59\xec\xda\x51\xa7\xf4\xdc\x83\x68\x17\x77\x58\x3d\xd9\x45\xcb\x58\x83\x41\x3f\x4d\x63\x77\xa7\xc0\x9a\x3c\xb8\xb6\x91\xec\x54\x1b\xbb\xcf\x75\x20\x03\x5e\xe9\x03\xcc\x5e\x8a\xca\x3a\x70\x1e\x4e\x59\x49\x1e\x54\x61\xd9\x7f\xe9\x7d\xce\x50\xab\xf2\xb2\x06\x94\x87\x54\x60\x92\x9f\x17\xb1\x0e\x17\xe5\x01\x4e\x4b\x2f\xfd\x27\x79\x34\x1d\x28\x79\x24\x3d\x28\x19\x8e\xd1\xcf\x7a\x8c\x7a\xaa\x50\xc9\x63\xaa\x51\xc9\x63\xa9\x52\xc9\x70\x98\x7e\xc6\xc3\xd4\xd5\xa2\xb7\x26\x96\x3c\x96\x36\x96\x3c\xac\x46\xb6\x0f\xf0\x3a\x34\xb3\xf5\xa5\x3e\x90\x76\x96\xec\xa8\xa1\xed\xb3\x96\x3e\x9a\xda\xfa\x82\x76\xd6\xd6\x36\x2d\x27\x92\xcb\xf4\x23\x34\xb6\xdd\x2b\x6c\x49\x26\xdd\xa2\xbd\x25\xad\x47\x7f\x70\x83\xfe\x59\xdd\xa0\x4d\x2c\x04\xb0\xbe\xfc\x51\x12\xc1\x98\xaa\x7d\xc8\x7e\xe3\x8b\xc2\xd3\xb9\xf4\xb2\xee\xda\x5c\x99\x9d\xd9\xe7\xdc\x99\xd9\x7d\x0d\x5d\x1b\xef\xe5\x5c\xe3\x06\x14\x74\x70\x60\x1e\x1c\x98\x07\x07\xe6\xdf\x96\x03\x73\x9b\x05\x0a\xca\x61\xf5\x09\xc8\x86\xd4\xfc\xfa\xf8\x63\x41\x2b\x56\x2a\x6f\x8e\x79\xfd\xf5\x3f\x72\xa3\x8b\xd7\xf6\x61\xbf\xc6\x68\xb2\x6a\xb1\x2e\xa8\x04\x46\x02\x99\x24\x2c\x8d\x35\xc5\x10\x4b\x62\x98\x25\x5b\x52\x69\xa7\x94\xfc\x95\x2a\x4f\x47\xe4\x52\x4f\x90\x89\x80\xc6\x69\x06\xf7\xb6\x98\x91\x6f\x2a\x0d\x1a\x42\x9c\xd2\x98\x90\xaf\xa4\x5a\x55\xaa\x0a\xd4\xaa\x88\xe9\x8e\xaa\xd5\x13\x1a\x74\x44\x79\x85\x10\x53\xc5\x60\x44\x52\x16\xd3\x44\x1f\x52\x22\x33\x45\xa8\x9e\xae\x2d\xd0\x80\x4d\x34\x17\x06\x95\xe7\x79\x73\xb9\x7b\x02\x73\x30\xfb\xe5\x02\x9e\x8b\x25\xd6\x4b\xc2\xa2\x0c\x50\xcd\x65\xc3\xaa\x90\x58\xd1\xa6\x5e\x89\x60\x4b\x98\x9c\x41\xbc\xfb\x24\x4e\xd8\x82\xdf\xb1\x10\x45\x87\x0f\x3f\xfd\xeb\x5c\xaa\x0f\x3f\xfd\x6b\x4c\x8e\xa2\x08\x2e\x6a\xb9\x6f\x7f\xbf\x26\x5a\x98\xe2\x71\xca\x2b\x04\x51\xc5\x53\xb0\xd2\x62\xe8\x9d\x59\x88\x92\xd8\xe7\x98\x1c\x01\x29\xab\x67\x2f\x32\xb0\x85\xa3\x49\x85\x3d\x9e\xb6\x8e\x3d\x2e\x59\x03\x08\x16\xa3\xff\x61\x56\x83\x65\xbf\x1a\xab\x9a\x21\x54\x01\xf6\xfe\x29\xea\x01\x60\xd4\x7c\x8a\xfe\xd8\xe6\x4e\x09\x11\x8f\x5b\xa3\xa4\xd5\x2d\x3f\x39\x91\x96\x8d\xbd\x94\xae\xca\x89\x13\x44\x5d\xb2\xa1\x56\x8e\x06\x58\x50\xe1\x5a\xb6\x08\x6e\xa5\x48\x4f\xa2\x31\xa1\xf2\xdd\xe2\x9e\xc0\x20\xae\xcd\xb0\x25\x8c\xb3\x61\x65\xd7\x7b\xe7\xd5\x8f\x81\x82\x09\x22\x63\x34\xb3\x9b\x80\xdc\xa6\x12\x24\xc5\x53\x2a\xdb\x6e\xba\x62\x77\x9a\x80\xa5\x80\x1d\xa0\xb8\x53\xa9\x68\x98\x8d\x29\xef\xd2\x11\x03\x8d\x7b\xa6\x8f\x10\x4b\xd6\xf8\x01\xa1\xea\xb9\x63\x83\xc8\x03\xea\x6d\x51\x93\xe6\xd4\x06\x15\x90\xa5\x79\x3e\x04\xd8\x4b\x4d\xfe\x20\xe8\x17\x0e\x72\x0d\x36\xed\x9d\xea\x0b\x90\x43\x51\x4b\x46\xc8\x8c\x85\xd6\x3f\x22\xa5\x6b\xbc\x02\x26\x7e\x14\x42\xaa\xfb\x68\x63\x1c\xcb\x93\x39\x63\x49\x3e\x5f\x32\xdf\xe2\x64\xf3\x1a\xf6\xf9\x8a\xfa\x81\xc2\x14\xb5\xd3\xf3\x42\xec\xf7\x5a\x26\x65\xce\x59\x73\x6b\xa6\x9e\xda\x8e\x10\xe1\xeb\x38\xe2\x45\x35\x3f\x46\xdc\x43\x16\xf1\x35\x37\x41\xb3\x38\x53\x4d\xde\x34\x4c\xda\xfb\xcc\xab\x8a\x15\x30\xe1\x0e\x7c\x8b\x88\x17\x8a\x77\xb4\xb4\x94\x0e\x63\x5c\xc3\xf2\xdf\x2f\xa1\xa2\xf8\xb3\xe7\xef\xeb\x00\xb0\x6b\xec\x50\xea\xec\x04\x80\x5a\x05\xf3\xf6\xce\x65\x52\x32\x72\x16\xbb\x58\xea\xa6\xba\x97\xed\x7d\x36\xae\xb3\xbc\x0a\x74\x20\x02\xde\x7f\xd7\x83\x4c\x21\xcd\x05\x94\x6d\x2c\x6e\x63\x03\x4d\xc8\xc1\xd8\x4b\x37\xd6\x50\x7d\xbd\x78\xca\xe6\x70\xa6\xd2\x66\x9c\xa7\xf9\x74\x48\x2a\x9b\x36\x55\x30\x2c\x1e\x4b\xdd\x60\x0b\x8b\x82\x4f\x7e\x94\x97\x63\xb5\x8e\x83\x53\x46\x79\xa5\x34\x22\x50\xcb\x35\x2f\x23\xbb\xe4\x1b\x26\x4c\xd6\x8e\xf6\xc8\x98\x66\x06\xd1\x19\xb7\xa7\x09\xb1\xa5\x12\x41\xf1\x08\xa9\xce\x77\xdb\x13\xfc\xc0\xaa\xa6\x2a\x7c\x95\x5d\xb1\x6e\xd2\x41\x39\xf4\x3e\xfe\xea\x60\x31\x6d\xa8\xb4\x57\x3c\x55\x60\x60\xd9\xbd\x76\x68\x40\x9b\x3e\xe0\x20\x57\x5c\xf3\xd4\x32\x2f\xb6\x68\x4b\xac\xa5\x64\x45\x37\xcc\xd6\xef\xe3\x0b\x38\x5d\x71\x77\xb7\xa0\x04\xb4\xb9\x11\x08\x57\x56\x73\x87\xd3\x9d\x9a\xde\x0d\xb3\x64\x70\xb5\x96\x3c\x3a\xa0\x2e\x91\x86\x29\xcc\xaa\x30\x3b\x9e\xda\xbc\x3e\x6f\x4f\xa6\x8d\x49\x63\xf0\xe9\xb3\xab\xed\xe5\xf6\xf0\xe9\x59\x74\xaf\xdc\xb8\x8f\x13\x43\x9f\x02\x7c\xf8\xdc\xa7\x0c\x9f\x7d\xfa\x1e\xc8\xdd\xf9\xc6\xf3\xe2\xa3\x8e\x63\xd9\x8f\x51\x30\x27\x93\x5c\x31\x87\xb8\x20\x16\xd6\xb2\x43\x9a\xcd\x55\xc4\x34\x1b\x8c\x92\x94\x19\xab\xbd\xcf\x9c\x21\x6a\x3d\x2a\xfd\xf6\xac\xa9\x38\x66\x03\x78\xae\xf7\xf2\x1b\xdb\x45\x56\xba\xf8\x06\xd6\x87\xac\xac\x40\x14\x36\x0a\xa5\x67\x8e\x7c\xf1\xbc\xe3\x18\xca\x44\x61\x0f\xc8\x4d\xba\x65\x70\x53\x46\x12\x2a\x96\x2c\x3d\xb0\xfa\x38\x48\xb9\xd5\x9a\xe9\x09\x1f\xee\xca\xe5\xe6\xea\x80\xd1\x04\xa1\x9c\x5a\x08\x18\xe5\x96\x19\xa6\x83\xc7\x59\xe0\x1e\x20\x73\xd3\x17\x83\x75\x62\x00\x6c\xba\x13\x06\xeb\x58\x7b\x81\xde\x2a\x18\xec\x1a\x71\xd8\xb5\xc1\x62\xd7\x88\xc7\xae\x35\x26\x6b\xe5\x79\x06\x5c\x06\x4f\x2f\x5c\x96\xde\x43\x00\xee\x96\x7b\x5b\x55\x78\xc5\xe3\x95\x7b\xc9\xb3\x94\x31\xab\xfb\x02\x54\x46\xd7\x71\xc4\x48\xba\x15\x8a\xde\xf9\xd2\xfd\xb8\xcf\xf5\x75\xab\xd8\x6c\x78\xc8\x26\xb1\xb8\xbd\x6f\xab\xf2\x2a\x95\x02\xad\x4b\xc3\xb6\x3a\x33\x8c\xad\x4f\x4f\x07\x10\x8c\x7f\xbe\xb5\x06\x74\x50\x05\x04\x8f\x43\x4d\x3a\x64\x55\x16\xc9\xdb\xe7\xfb\xe5\x29\x3b\xc0\x46\xa8\x9a\x1a\x66\xd6\x34\xdb\x01\x07\xd4\x73\x81\xfe\x72\xb6\x62\x44\xdd\x4a\x38\x6b\x90\xa4\xc2\xbe\x33\x25\xb4\xe7\x2a\xda\x16\x19\xf2\x3a\xf6\xee\x42\xd8\xd5\x5b\x0f\x9e\x42\xaf\xca\x1c\xe9\x15\x57\x23\xc1\x7b\xce\xb4\xef\xa6\x09\xb7\x2b\x19\x99\x4d\x3a\x84\x2d\xba\xbe\x2e\x08\xf2\x1f\x01\xbb\xfc\x6e\x45\xd3\x67\xeb\xed\x3b\x70\xad\x7b\x0e\x78\xc7\x20\xf9\xae\xeb\x6c\x12\x3e\x5a\x45\x03\x16\xd2\x87\xf9\xa1\xe3\x43\xe1\xfa\x1f\xea\x71\x7b\x9e\x37\xe8\x2f\x94\x90\x49\x0b\xb0\x34\x1a\x8b\xe6\x2c\x22\x1f\x7e\xfa\xa7\x9d\x28\x68\x47\xcd\x82\x7a\x1f\x0b\x5c\x70\xe3\x7a\xeb\x4b\xd2\x73\x68\xca\xf9\x5a\x3c\xed\xab\xcd\x17\xd4\xbe\x98\x6e\x85\xc3\x2c\x0f\xc6\x40\x56\xca\x68\x0a\x22\x40\xab\x26\x0f\x25\x98\x98\xf3\x75\x74\x4f\x5d\x48\x31\x32\x5e\x2a\xc6\xc8\x45\x6e\x57\x2c\x61\x46\x27\xb2\x90\xc9\x9a\x55\x75\x10\xa6\xf7\x1e\xba\xb8\x3a\x60\x9c\x94\x0c\x0f\x20\xc0\x97\x9d\xe9\x76\xe0\xbb\xca\xfe\x74\x3f\x1f\xff\x55\x41\xc9\xed\x7d\x7a\x34\x99\x94\xc4\x32\xb4\x81\x37\x68\xd7\xc8\xd1\x73\x0f\xcf\xbf\xdc\xf7\xaf\xf5\xb4\xf5\xf6\x34\x77\xad\xec\xcd\x4f\x3d\x0a\xe5\xe3\xc1\x4d\xee\x03\xf2\xee\x2e\x9b\x14\xc8\x1e\xb0\xf7\x82\x36\x71\xbc\x2d\x6f\x57\x32\xb5\x45\xf9\x73\x4d\x24\x14\xe1\xee\xea\xa3\x0f\x63\x47\x76\x72\x8d\xef\xc9\x25\x91\xbe\x9c\x12\xa9\xdf\xaf\x4e\x5e\xe9\xdf\x77\xa7\x4b\x72\x52\xa1\x71\x43\xac\x9f\xe7\xb3\x24\x93\xce\x74\x2d\xc4\xb1\x2e\xd4\x8d\x06\x85\x1c\x62\x92\x4c\xb2\xad\xfe\xbd\xbb\xd3\xa3\xf3\x93\xa7\xde\xf4\x9f\xe5\x67\x37\x6d\x56\xbb\xbb\x6a\x77\x9b\x95\x52\xbe\x44\xde\xf8\x94\xe3\x74\x66\xb3\x69\x61\x44\x6a\xb4\xac\xe9\xe3\xa1\x9b\x36\x4f\x3d\xf7\x23\xfc\x28\xa3\xda\x9a\xa9\x95\x0c\x77\xa0\x3d\x6f\xf0\x83\x87\xa5\x39\xb8\x64\xb8\x1c\x66\xdd\x8e\xf7\x86\xee\x13\xb3\xe0\xb2\xce\x24\x41\x16\x2b\xb1\x10\x7b\xb1\xb3\x7d\xc6\xc6\xcb\x31\xf9\xfa\x74\xb6\x4f\xa6\x6f\x67\xfb\x84\xa9\x60\xfc\x9c\xbc\xc9\x22\xc5\xe3\x2e\x0d\x9d\x01\x11\x9c\xda\x8b\xcb\xa7\x9a\x89\x58\x42\x14\xc8\xaf\x4b\xe3\x1a\x53\xb5\xda\x61\x1f\x9f\x4e\x75\xfb\xc7\xd8\xc6\xae\x1d\xec\xb6\x30\xb8\x3b\x08\xd3\x1c\xe7\x5b\x85\xcb\xb4\x7b\xd1\x77\x33\x08\x61\xe3\xe5\x21\x19\x11\x76\x47\x03\x75\x48\x0e\x16\x52\x92\x91\xf1\x5b\x38\x24\x07\x73\x9a\x90\xf3\x8b\xd9\xe9\x21\xfa\x44\x30\xa1\x92\x2d\x59\x77\x11\x97\x8b\xf3\xb3\x3f\x1b\x3c\xb6\x25\x8c\x83\xe8\x40\xc9\x7b\x18\xe3\x3d\x01\x77\x85\xf7\x38\xc4\x7b\xeb\xad\x30\xeb\x5a\xfa\x86\x46\x3c\xa4\xb9\x88\x0a\xce\xb4\x98\x10\x5a\xf9\x32\x40\x17\x4f\x9f\xf3\x56\xf1\xf9\x9d\xcd\xa6\x1a\xba\x39\x2a\x86\xa3\x00\x40\xd7\x40\x76\x1c\x18\x3a\x50\xed\x44\x81\xbb\xd6\x9c\x59\x20\x18\xe9\x57\xb3\xdf\x87\x16\xe4\xd7\xd9\x8b\x17\x9f\x06\xba\x63\xf8\x8b\x1d\x9a\x60\xfc\x5e\xc2\x1a\x1e\x33\x98\x15\x74\xa7\x91\x45\x92\x6f\x5f\xd1\xf5\x08\x7f\xfa\xb8\x11\xb0\x8f\x0e\xf7\xf5\x1d\xe2\x19\x11\x00\x0f\xcb\x00\x99\xa5\x3f\x64\xa7\x7d\x03\x0e\x7b\x20\xa3\xee\xae\x78\xb0\xee\x49\x2f\x27\xc7\x6f\xa6\x7d\xed\x96\x80\x88\x9a\xe7\xee\x62\x28\x27\x89\xb7\x9e\xad\x09\x20\xc1\x54\xe4\x30\xa4\xe1\xcd\x4c\x09\x86\x16\x21\x0e\x1d\x46\x81\x76\xcd\x4b\xea\xd5\x45\x59\xab\x9a\x27\x83\xcf\x6d\x3d\x7a\x9c\x36\x39\x12\xac\x40\xba\xd1\xe6\x55\x8b\x21\xa8\xd7\x49\x0c\xda\x03\xa7\xab\x34\x1e\xb8\x12\x29\x5c\x28\x01\x50\x02\x2c\x89\x30\x59\x38\x49\xc2\xbb\xc9\xc3\x4c\x03\x18\x9d\x44\xc1\x67\x0a\xca\x4d\xb8\xb0\x32\x3a\x77\x50\xa8\x2b\x16\xac\x04\x0f\xea\x49\x3d\xca\x0f\x08\xf4\xa8\xb4\xe2\xeb\x58\xa6\xe8\x21\x02\x59\x1b\x58\x22\x58\xf4\xe1\xa7\xff\x49\x09\x8f\x15\x46\x2f\x2c\x78\xc2\x6e\x69\x14\x75\x4c\x16\xf1\x85\x51\x28\x64\x29\x1a\xfc\x99\x58\x48\x74\x60\x35\xde\x23\xdd\x97\xa3\x53\xf7\x0c\xcd\x3e\x7e\x3b\x74\x37\x63\x02\x3e\x10\xec\x0e\x14\xae\x5d\xaa\x5b\xdc\x05\xb9\x20\x5f\xa0\xdb\x21\xac\x10\xfa\x3a\x0d\x56\x92\x5c\x22\xc9\x36\x39\xdd\x63\x2e\x96\x69\xbb\xee\xb6\xd7\x7a\x7b\xa0\x83\xd8\xef\xff\xdd\x00\x90\xc9\xd4\xfa\x81\x7f\xb4\x43\x43\x49\x30\x43\x6e\xdc\x85\xf2\xd4\x6a\x74\x1b\xa1\xd0\x03\x02\x0d\x9e\xbc\x0d\x8b\x7b\x63\x5a\x3b\x9e\x66\x79\x32\x18\x70\x50\x4e\xd6\x45\x92\x7f\x9f\x57\x75\x79\x71\x1f\x85\x36\xea\xd1\x13\x0d\xed\xfa\xa6\xab\x29\x9e\xbe\x84\xa9\x5c\x98\xa1\x98\x8f\xf1\x40\x47\x6d\xf3\x0d\xdb\x9a\xa3\x1d\x53\x6e\x92\xd1\xb4\x0f\xaf\x85\x5a\xc2\xee\x54\x42\x4b\x30\xa5\x73\x99\xa9\x1e\xa4\xe4\xa1\xe4\x46\x21\x95\xbe\x7d\xfd\x4e\xc6\x39\x36\xee\xb0\x44\x43\x93\x76\x8f\x90\x81\x64\x0c\x24\xe3\xb7\x4e\x32\x84\x54\x96\xb5\x6a\x04\x4b\xbb\xbd\xb8\xa7\xa5\xb8\x9f\x8d\xb8\xe6\xca\x64\xd9\xbe\x0e\x6f\x26\xd3\xac\x19\x60\x1d\x37\xb9\x87\x51\xfa\x7e\xe6\xe8\xf8\xd7\x0a\xdc\xeb\x3d\x17\xb6\x0f\x48\xfd\x6b\x6a\x59\x88\x04\x70\x79\x01\x0b\x93\x31\x9c\x7a\x9e\xb4\xb9\xe6\x18\xbf\x32\xb3\xcf\xa7\xe0\xff\x7e\x09\xc1\x1b\x36\x14\x01\x7d\x67\x9e\xcd\x59\x40\xb3\xd4\x78\x73\x74\x38\x06\xe7\x53\x0c\x58\x02\x7d\xe4\x1e\x21\xcf\xd1\x9c\xf8\xc6\xc4\x24\x94\xfc\x5b\xba\x88\x2c\x3a\xbe\x1c\xba\xbe\x1b\xfb\xae\xe7\x06\xfe\x03\xa4\x95\xd2\xbf\x36\xaf\x8a\x7f\x5f\x1d\xcf\xf0\x6d\xf3\x30\xa6\xc7\x33\xae\x98\x75\x0f\xa1\xc2\x1e\x10\x6b\x52\x00\x27\x19\xf2\x72\xf4\xc9\xe7\x9f\xb7\xd8\xd8\x1e\xef\xd8\xa3\x19\xb1\x1f\x3d\xbe\x42\x47\xa4\x7e\xa1\x12\x2d\x05\xf4\xec\xa8\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xe1\x5f\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xd3\x4a\x06\x5c\x36\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xfd\x19\xa2\x24\x86\x28\x89\xfc\x19\xa2\x24\x86\x28\x89\xc7\x8f\x92\x68\x49\x74\xab\x65\x0c\xcc\x77\xe6\x7b\xd7\xa7\x0c\x9f\xf7\x94\x9b\xec\x78\xf7\x48\x73\x68\xbe\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x66\xd4\x38\xe4\x39\x1c\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x8b\x67\xb0\xe0\x3b\xcf\x60\xc1\x1f\x2c\xf8\xe6\x19\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\x01\x97\x0d\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\x7e\xfd\x19\x2c\xf8\xd5\x67\xb0\xe0\x0f\x16\xfc\xea\x33\x58\xf0\x07\x0b\x7e\xfe\x0c\x16\xfc\xc1\x82\x3f\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\x61\x9f\x11\x86\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xb4\x6a\x48\x5a\x35\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xdb\xe6\x3f\xe4\x39\x1c\x48\xc6\x40\x32\x86\x3c\x87\x43\x9e\xc3\xca\x33\xe4\x39\x1c\xf2\x1c\x56\x9e\x21\xcf\x61\xb3\x10\x39\xe4\x39\x1c\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x5a\x56\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\xb4\x92\x01\x97\x0d\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x51\x7f\x86\x28\x89\x21\x4a\x22\x7f\x86\x28\x89\x21\x4a\xe2\xdf\x31\xcf\x21\x24\x2f\xec\xca\x72\x78\xa1\x1b\xb5\x9c\xe1\xc2\x3b\x5a\xd9\x7c\x88\x0d\x8c\x2f\xfa\x82\x60\x86\x39\x60\xf1\x75\xa7\xa0\x13\x0f\xc7\xc8\xf5\xe7\x3a\x8b\x15\x5f\x6a\x16\xea\x7a\x0f\xfa\xbb\xde\x83\xcd\x36\x6d\x7d\x5d\xd3\x85\x26\xff\x0a\xd0\x0b\x74\x10\xc9\x5b\x96\xe0\x6c\xd0\xbb\xc6\x99\x5c\x4a\xe4\x9a\x2b\xc5\xc2\x7d\x2d\xbd\xa2\x6b\xb6\xaf\xd3\x40\x8a\x94\x63\x7a\x47\x94\x4e\xaf\xf7\xb8\x58\x70\xc1\x15\xbb\xde\x23\x23\x02\x1e\x1d\xce\x72\xac\x38\x60\xe6\x49\x22\x9a\xaa\x31\xc9\x57\xe6\x05\x89\x9e\x2b\x0f\x99\x50\x3c\xa0\x91\x99\x60\xb5\x1f\x2e\x08\x8d\xe2\x15\x15\xd9\x9a\x25\x4e\x3b\xc8\xac\xe8\xeb\xd5\x98\xd0\x8c\x20\x85\x66\x4b\xaf\x12\x10\xcf\x86\xc8\xd6\xf3\xba\x8c\xdb\x82\xf4\x2a\x42\xe1\xcc\x15\x30\xf0\xa0\x38\x62\x46\x96\x1a\x8e\x89\x07\x37\xf8\x1f\x99\x79\xcf\xbf\x9e\x72\x85\x61\x74\x80\x6b\xfc\x88\x1d\xb0\x28\x69\xf4\x1b\x2d\x6c\x6f\x31\x8f\x94\x2c\x64\x14\xc9\x5b\x70\x09\x34\xb2\x4f\x2e\x0d\x20\x5a\xfa\x23\xb2\xc6\x78\xdb\xdf\x45\x5c\xb1\x84\x46\xfa\x17\x5f\xcf\xd7\xd7\x64\x84\x7e\xf4\xfa\xa0\xac\x63\x9a\xf0\x54\x8a\x7d\x02\x81\x34\x96\xa7\xb5\x5d\x2e\xa4\x24\x73\x9a\x00\x9f\x9d\x0f\xf7\xbb\x1d\x87\x2b\xc6\xd3\x1c\x39\xfb\x6b\x46\xa3\x2f\xd1\xf1\xcb\xe2\x59\xbe\x30\x08\x96\xa7\xd0\xc6\xea\x8c\xf2\x21\xfd\xf7\xf2\x47\x98\x07\x2d\x9c\x15\xe6\xc5\x9f\x01\xfe\x39\x1e\x8f\xc9\x3f\x9c\x19\xa8\x24\x63\xd6\x83\x3b\x77\x80\xc2\x31\xbe\x27\x7e\x97\x4b\xa3\x2c\xeb\x18\xaa\x98\xab\x5e\x00\x17\x3d\x26\xe7\x1b\x6c\xc7\xf9\xc2\x60\x6d\x13\xf4\x6f\x89\x33\x67\x2d\x4f\x41\x7f\xef\x34\x77\xf3\xbc\x18\x7a\x96\x8f\x4c\x55\xb1\x3b\xce\xce\xfc\x0e\x0e\xa9\x17\xe7\x9b\x2e\x72\xc1\x5a\x2e\xa0\x2d\x48\x56\xf0\xff\xec\xc5\x8b\x4f\x5e\xe1\x7f\xf1\x4d\xfe\xcd\xd5\x4a\x26\x6a\x14\xf0\x24\xc8\xb8\x02\xba\x69\x3e\xf2\x0d\xf4\xf7\xbf\xb7\x7e\x0d\x1a\x38\xf5\x0c\xdb\x3c\xcf\x1b\xc5\x34\x61\x02\x73\xad\x2e\x13\x99\xc5\x9a\x59\xb8\xbe\x56\x34\x8a\x9e\x79\x35\xa9\x26\xf9\x27\xda\xc6\x73\x7c\x61\x7b\xb3\x67\x98\x46\x91\x23\x20\xc1\x05\x3d\xc3\xf3\x80\x1c\x80\x9f\xb8\x53\x7d\xb5\x11\xcf\x58\xf7\x21\x17\x65\xa6\xfb\x64\xb4\x4f\xde\x01\x1c\x0e\xc6\xe4\x0a\xae\x1c\x31\x57\xae\xb1\xd3\xb5\x4c\x18\x89\x35\x6f\x94\xa6\x7c\xc3\xc8\x1c\x5d\x5f\xb7\x56\x30\x37\x2a\x13\xc2\xd2\x80\xc6\x8c\x04\x2b\x9a\xd0\x40\xb1\xc4\x4c\xfb\x14\xfd\x07\xbd\x97\xe1\x19\x20\xfe\x35\x0d\xd9\x28\x8b\xf1\x58\xa4\xcf\x73\x74\x04\x11\x17\x06\x75\xdc\xb2\xb9\x66\xbe\x98\x41\x1e\xee\x8e\x87\x2c\x8e\xe4\x76\xcd\x84\x17\x9d\x9a\xef\xe3\x44\x86\xf6\x90\x42\xbf\xfa\x4e\x01\x4e\x4a\xa4\xd0\x02\xba\x73\xd4\xb5\x4c\x8b\x3f\xfc\x43\x37\x2f\xfa\x27\xbf\xfb\x63\xd3\x0d\x08\xd9\xc6\x76\xff\x3b\x52\xb9\x05\x3e\x54\xd6\xc6\x51\x95\x45\xd9\x16\x43\x4b\x8b\x1c\xdb\xce\x75\x2f\xd0\xa9\xaa\x20\x0b\xbe\x65\x59\x8a\x85\x67\xd4\xb0\xc3\x98\xc6\x58\x0a\x3b\x49\xcb\xe9\xfa\x0c\x26\x6d\x6b\x04\x75\x59\x0f\x9a\x0a\x5a\x35\x2e\x42\x1e\x00\x5f\x7e\xbb\x82\x28\x3e\xa4\x5e\x86\x24\x3a\xfe\x04\x26\xcf\xb1\x17\x4f\xe9\x7b\x27\x4d\xa2\xe3\x7d\xf3\x2f\xcd\x53\x8f\x09\x7a\xef\x00\x35\xb9\x8b\x35\x93\xa2\xa2\xad\xc3\x52\x3f\x83\x24\xcd\x5e\xb7\x2c\x07\x8f\x0a\x12\x24\xcc\xb8\x0d\xa7\xe6\x76\xcb\x84\x08\x1e\x3d\xdf\xb7\x8e\xbf\x21\x5b\xd0\x2c\x52\x29\xc1\x65\x69\xd0\x25\x61\x03\x4b\xad\x24\xb9\xd5\xb8\x72\x62\x52\x69\xeb\x49\x9c\x9a\x3f\xf5\x7d\x34\x98\x33\xcf\x55\x0c\x9e\x2a\xa8\x8e\x34\xc3\xf8\x7a\xe5\x29\xde\xae\x11\xf9\x8b\xe1\x8b\xf4\x54\xec\x18\x3f\xec\x1b\xe2\xa0\xb9\x4c\x50\x79\xd9\x21\x31\x9f\xf4\x33\x2e\x82\x28\x6b\x9c\xf1\x8a\x91\x80\x6a\xce\x13\x3a\x28\xba\x21\x48\x9e\x85\xcc\x17\x03\xdd\x3d\xf7\xcc\xe4\xb4\x31\x4f\x75\x75\x6e\xa5\x89\x69\x94\x54\xed\xbe\x79\x9d\xde\xe3\x51\x9d\x43\x6d\x40\x90\xbf\x3c\xbb\x81\x39\xce\xfd\x78\x41\xe0\xd1\x2a\xf3\xfa\x09\xa3\xfa\x1e\x05\x37\x84\x2e\x29\x17\xfb\xe6\x34\xa0\xd2\x2e\xba\xa5\xdb\xd4\xb8\x66\x7a\x4f\xb1\xb5\xb3\xa1\x81\x6d\x9f\x08\xb6\x61\x49\xe9\xbc\x79\xd5\x69\x3d\xd3\xa0\x17\x50\x20\x0c\x88\x46\xae\x8a\x8e\x65\x9a\xf2\x79\x64\x07\x2e\x3c\x08\xf4\x07\x57\x31\x0b\xfc\xf2\x1e\xae\xad\xd9\xa7\xa2\x5d\xb2\x6c\x14\xda\xfc\xb2\x5e\xfd\x57\xa0\x19\xa1\x6b\x29\x4a\x95\x4c\xe8\x92\xd9\x9f\x52\x45\x55\x86\x80\x41\x85\x29\x0b\xcf\x1d\x55\xd6\x0d\x17\xa1\xc6\x43\x16\xa4\x71\x94\x25\x34\x2a\x7e\x09\xa4\x40\xdb\x45\x7a\x48\xfe\xf2\x83\xfe\x45\xf7\xcf\x42\x13\x78\x64\x7e\x1d\x8d\x46\xe6\x3f\x34\xe6\x36\x84\x89\xd0\x98\xb3\x3b\xc5\x04\x34\x1c\xdf\x7c\x91\x8e\xb9\x3c\xd8\xbc\xbc\x16\x38\xe8\x71\x96\x2a\xb9\xbe\x64\xa8\x8b\x3d\x61\x20\x71\x01\xaa\x2e\x05\x0a\xd5\x63\x6f\x72\x15\x6b\x32\x5a\x32\x31\xbe\xc9\xe6\x6c\x9e\xf1\x48\x8b\x80\x7a\x00\x3b\xfc\xb3\x90\x6d\x58\x04\x2c\x8a\xc5\x5c\x33\xbe\x66\xa9\xa2\xeb\x58\x0b\x43\x11\x78\x9b\x6b\x02\x76\x48\x04\xba\x83\xa5\x4c\xa5\xe3\x20\x09\xc7\x71\x22\x35\x8c\x03\x40\x6b\x63\x99\x2c\xaf\x85\xc6\x97\x30\x01\x60\x82\x0e\x49\x43\xb3\xb2\xa6\x10\x57\x5a\xf5\x59\x8b\x78\xaa\xfe\x54\x79\x73\xc6\x53\x55\xde\x02\x67\x4e\x66\x67\xb9\x58\x66\x11\x4d\xdc\x57\xb0\x23\x81\xd4\xc7\x22\xf7\x4e\x03\x59\x71\x63\x37\x48\xff\x63\x64\x96\xa9\x81\x0f\x3d\x05\x2b\xb6\x2e\xe2\xb0\x64\xcc\xc4\xd1\x74\xf2\xed\xa7\x57\xe5\xdf\xeb\x4e\x61\x66\xb2\xd6\xbd\xa1\x18\x72\xc4\xfe\x9a\xf1\x0d\x8d\x34\xca\x36\x37\xa7\xea\xaf\xe7\x5c\x8f\x06\xad\xab\x73\x78\xca\xb7\xa1\x1c\xb0\xad\xa7\x6a\x2c\x67\xe8\x4c\x8a\x93\x31\x2b\x66\xa1\x59\x1e\xce\x03\xf0\x91\x21\x26\xd4\xa7\x59\x91\x0b\xe0\x1f\xe0\x4e\x8d\x81\xc9\x60\x49\x6a\xc5\xd0\x40\x8a\x0d\x4b\x14\x49\x58\x20\x97\x82\xff\x2d\xef\x3c\xb5\xb6\x3c\xa8\xa3\x50\x23\x45\x5c\x28\x96\x68\x76\x04\x90\xc9\x3e\xa0\xd3\x35\xdd\x92\x84\xe9\x61\x48\x26\x9c\x0e\xad\x27\xc1\x1b\xcd\x86\x72\xb1\x90\x87\x90\x46\x23\x3d\x3c\x38\x58\x72\x65\xef\x4d\x20\xd7\xeb\x4c\x70\xb5\x3d\x80\xe3\xcf\xe7\x99\x92\x49\x7a\x00\x67\xfc\x20\xe5\xcb\x11\x4d\x82\x15\x57\x2c\x50\x59\xc2\x0e\x68\xcc\x47\x30\x77\x01\x17\x67\xbc\x0e\x9f\x24\xe6\xa2\xa5\x4f\x7d\x98\xa6\x8e\xa0\xe0\xe8\xb6\x6d\x83\x3e\xc1\x26\xfa\x0c\xf9\x6c\x64\x14\x72\x68\x5b\x33\xea\xe5\xe9\xd5\x8c\xd8\xd1\xbd\x91\x7a\x08\xfc\xe2\xcb\xb4\xd8\x07\x0d\x34\x2e\x16\x96\x23\x02\x55\xa6\xab\x40\x40\xa2\x1c\x71\x0f\x73\x9c\x66\xf3\x35\x57\xa9\x93\x7f\x41\x8e\xc9\x31\xa0\x13\x4d\x7f\xb2\x38\xa4\x8a\x85\x63\x32\x11\xe4\x98\xae\x59\x74\x4c\x53\xf6\xe8\xbb\x00\x6c\xe1\x48\xc3\xb6\xef\x3e\x34\x44\x4d\x36\x29\x03\x73\x34\xd5\xb0\x6d\xc5\x7d\xd4\x34\xad\xec\xb4\x6f\x63\x3c\x8a\xb8\x4a\x5a\xc3\x5d\xc5\x63\xb7\xb4\x42\xf6\x5a\x2c\x2a\x0d\x3e\xa8\xb5\x62\x2b\xd6\x4d\x66\x32\xcd\x31\x1d\xca\xd5\x73\x16\x49\x7d\xaa\xa4\xd1\xee\x30\x9f\x41\xa1\x99\x13\xf8\x5f\x46\x8b\x7f\xfc\x91\x2f\x08\xfb\x2b\x19\x5f\x7e\x75\x74\x7c\x2c\xc5\x82\x2f\xc9\xf5\x5e\x32\xa7\xc1\xf5\xde\x3f\xfe\x71\x2d\x9e\x98\xc8\x8d\x43\x82\x04\xec\x40\xb1\x75\x0c\xf8\xec\x00\x7f\x00\xcf\x94\xc2\xa2\x99\xa4\x23\xfd\xf1\x78\x4b\xd7\x91\xfe\x7a\x02\xcc\x32\x23\x94\x04\x51\x96\x2a\x96\x24\x32\x62\x79\xf1\x8f\xea\xb7\xa0\x3d\x93\x82\x09\xb5\xaf\x3f\x86\xf2\x21\x80\x41\x94\x45\xa5\x0d\x83\x5a\x49\xac\x30\xe7\x19\xfe\x01\x07\xbd\x94\x11\x2b\xf3\x1d\x30\x49\x9a\xa9\x95\x4c\xf8\xdf\xd0\x8d\xc1\x61\x3e\x4a\xf7\x09\xc9\x62\xc3\xc0\xd7\x02\x58\x5f\x68\xf8\x84\x9c\xcb\x10\xf5\x12\xe4\xd6\x78\x2b\x28\x49\xd6\x52\x70\xf0\xca\x93\x09\x09\x59\xc4\xf0\x9e\x23\xc9\xa5\x31\xff\x5a\xb3\x0a\x7a\x5f\xf4\x16\xfe\x80\xbb\x9a\xe3\xe1\xfc\x88\x8e\x88\xd0\x7d\xe3\x3f\x37\x2c\x99\xbb\xaf\x6e\x5d\xf7\xaa\x11\x5c\x8d\xe2\x5f\x4b\xbc\x95\x4f\xc8\xd4\x26\xe6\xf9\x6b\xc6\x12\x6e\x14\x24\x79\xce\x14\x76\xc7\x53\xc5\x84\xb9\xaa\x3b\xcd\x2c\x96\x61\xc3\xc4\xf2\xb1\x27\xd3\xa3\x37\xc5\xb7\x26\x0c\x43\xf0\x18\x4a\x0c\x85\x5a\x58\x12\xb8\x40\x13\xfe\x11\x31\x65\x2c\x32\xd5\x99\xf8\x59\xaa\xb6\xe9\xf1\x38\x96\x32\x6a\x98\xa1\x85\xd5\xc7\x0f\x33\x8f\x64\x70\x43\x17\xc8\xa1\x16\x9a\x1e\x3d\x3e\x5d\xc3\xcb\xca\x6f\x2b\x2a\xc2\xa8\x69\x4b\x97\x4c\x35\x6d\x28\x30\xaa\xac\xf8\x37\x12\xa9\xe2\xdf\x08\x3d\x84\x7b\xed\x9e\xac\xa9\xa0\x4b\x96\x92\x95\x4c\x95\xe3\x7b\xf0\x20\x10\x28\xf5\xf9\xa8\xcb\x3a\x67\x2c\x04\xd5\x81\x96\x3d\x95\x34\x6d\x2d\x8a\x71\x82\xd4\x1f\x6a\x69\x9e\x9e\x7b\x2c\xb0\x79\x49\x4f\xc8\x9f\xb2\x39\x3b\x2e\x36\x06\x51\x6f\x96\xe4\xca\x13\xd4\x1f\x70\xa5\x7b\x4c\x89\xe6\x51\x02\x68\xf2\x30\xeb\xd1\xe7\xc2\x39\x16\x81\x3b\xba\x77\x65\x4f\x50\x62\xd7\xf3\x90\xb7\xc2\x99\x4b\x6d\xd9\x4f\xcc\xb2\x09\xb5\x3a\x18\xc2\x17\x44\x48\xc1\x10\xc7\xa4\x4d\xf0\x79\x62\xb7\x11\x49\x60\xd3\x49\x78\x82\xe8\x0e\x90\x56\xb0\x2a\x79\xc0\xe6\x98\x10\x48\x5b\x8d\x02\x7c\xc5\x05\xaa\x6d\x1e\x89\x10\xc8\x88\x5d\x32\xf4\x26\xb5\xfb\xd3\xd2\xbf\x6e\xe6\x21\x52\x9d\xc3\xa4\x19\xb0\x13\x7a\x6b\x46\xa6\x83\xb2\xd6\xb3\x47\x1f\x4e\x1c\xdf\x21\xe2\x88\x74\x9b\x2a\xb6\x76\x39\x83\x6e\xca\xaf\x11\xf6\x2e\xd4\xde\xf9\x8c\x9c\x50\xb6\x96\xe2\x8a\x75\x11\x7a\x68\xfc\x73\x11\x77\x3d\x58\x99\xa0\x6b\x4e\xf3\xf8\x7c\xa2\xd9\xac\x25\x17\x44\x00\xde\x51\x52\x9f\x77\x20\x7b\xfb\x48\xb5\x50\x78\x73\xa3\xb1\xee\x4f\x43\x2b\xb4\xde\x0a\xe6\xd8\x71\x2b\xd2\xd9\x69\xc0\x9a\xf3\xe1\xc8\x82\xb9\xe1\xfe\xbf\x35\x9a\xf0\x90\xa7\x81\xdc\xb0\x24\x57\x7e\x4f\xa6\x68\xf8\xa1\xa1\x16\x83\x79\xca\xd6\xae\x8f\x67\x2b\x77\xe2\xe9\x75\xb6\x8d\x57\x34\x1d\xfb\xf9\x17\x72\x3c\x39\xb9\x24\x34\x53\x72\x14\x32\x2d\x41\x81\x25\x4c\xc0\x11\xa6\xe1\xda\xec\x4f\x41\x17\x10\x4d\x91\x35\x8d\xef\xb1\x25\xf8\xb1\xfe\xf6\xe1\xa0\x0e\x1b\x7b\xe0\x22\xb8\x2a\x98\x35\x69\x33\xe5\xf1\x82\x88\x51\x10\x9a\x35\x5b\x69\x64\xac\xb7\x82\x6e\x28\x8f\xe8\x5c\xdf\xab\x88\x2e\x1d\x40\xc5\x2e\x9c\x9f\x58\x75\x3b\xb0\xff\x29\x7a\xfb\x07\x65\x22\xe3\xe4\x72\xe1\xc8\x7e\xb9\x8a\xb4\xb1\x9f\x6e\x7d\x57\x45\xbe\x1a\xce\x7f\xca\xbd\xd3\x4b\x11\xa0\xbc\xe1\x26\x18\x81\x8d\x8b\xa5\xc5\x85\xad\x30\xc3\xd6\x71\xc9\x75\xa2\x27\x0b\x6c\x0e\xd8\x7c\x6b\xc1\xa1\x27\x6e\xb5\xd0\xc5\xfa\x3f\xfa\xbe\x56\x2e\xa8\x73\x9b\xac\x69\xa8\x9d\xfd\xac\x2c\xa2\x86\x78\x62\xeb\x90\x2b\x43\x7b\x7c\xee\x37\xe7\x96\xb3\xe7\x9c\xa0\xfc\xf4\x18\xd9\x25\x25\x1b\x9a\x70\x99\xa5\xe4\xf8\xf2\x04\x6f\x3b\x9e\xa5\x07\x62\xaf\x30\x4c\x78\xc1\x22\x7e\x87\xfd\x3a\x70\x74\x7e\x2d\x33\x28\xc0\x74\x2f\xe3\x98\x19\x92\xe6\x76\x35\x5f\xc6\xb5\x8e\xf2\xdf\xea\xdd\x94\x44\x84\x26\x9e\x1d\x7b\xf6\x9e\xc6\xda\xeb\x94\xb9\x88\xb5\xf1\x1b\x6f\xeb\x46\x5e\xb3\x81\xc7\x6e\x14\x3e\x76\x60\xbe\x6f\xeb\x3b\x9f\xa5\x2a\xe7\xe4\x44\x98\xf3\x66\x1a\x8f\xc0\x21\x90\x42\x33\x6a\x89\xca\xe2\xc7\x90\xd3\x3a\x77\xbe\x37\x47\xde\xc6\x84\xef\x84\x23\x8d\x27\x95\xc6\x93\x0f\x2a\xbd\xf7\xdb\x96\x19\x18\xbc\xac\x07\x82\x14\x28\x29\x83\xf7\xa7\x75\x16\x84\x7b\x99\xc5\xcb\x84\x86\x26\xf8\x60\xf3\xc9\xf8\x15\xf2\x26\x01\x56\xea\x7d\x42\xe6\x8c\x24\x6c\x2d\x37\x2c\x34\x8e\x72\xf6\x03\x99\xe8\x15\x2e\x12\x96\xae\x08\x17\xa9\xa2\x51\xf4\xa0\x22\x54\xcb\xf5\x2b\xdf\xe2\x5d\x36\xd0\x0f\x95\x12\x40\xcc\x1e\x6b\x64\xaa\xa4\x6e\xaa\x77\x14\x15\x12\x34\x8a\x64\xf0\xb0\x8b\xfc\xf5\x29\x01\x1e\xe2\x62\xd2\x75\x09\x9b\x36\xaa\x79\xbe\xd2\x2b\x24\xc5\xfa\xcb\x09\xc9\xe0\x34\x03\xe7\x32\xdf\xc2\x3d\xc3\x0d\x4a\x64\xa6\x71\xcc\x72\x99\xd8\x80\xa2\x47\xdc\x8b\x46\xbe\xc1\x90\x5c\x3c\x2c\x70\x3a\xd6\x7c\x69\xb0\x40\x89\xed\x0f\x41\x72\x01\x2b\xa0\xe7\xf8\x05\x54\x18\x0f\xd2\x27\xf9\x3d\x03\xf1\x57\x99\x8b\xa6\xf9\x39\xb8\x9b\x90\xcf\xa7\xb8\x66\x24\x4b\xf5\x2b\x8d\xdf\x47\xfa\x54\x46\x30\x09\x2f\x28\x68\x1c\xa7\xad\x2b\x2f\xa6\xd8\xb2\x5f\x35\x53\x6c\xbb\xd4\xd4\x2c\x4d\x77\xca\x53\x8f\x21\x17\x63\xd7\xbb\xcb\xc2\xf8\x5d\xb3\xfc\xfb\xe3\x8f\x4c\x84\xff\xf8\xc7\x4e\x32\x70\x2e\xfe\x42\x9c\xef\x9a\x0a\xbe\x60\xa9\xb2\xbb\x9b\xd6\xc4\x59\x63\x4f\x61\xc9\x3e\xa1\x29\xb9\x65\x11\x7c\x6c\x22\x8c\x0a\xa6\x2f\x35\x35\xb7\x81\x45\xb0\xa2\x8c\x14\xba\x2d\xa3\x90\xab\x59\x43\x07\x1a\xe9\x16\x2c\x41\x16\x1e\xea\x82\x3b\x0c\xb9\x21\x94\xb9\xd4\x9c\x4b\xde\x55\x43\x7c\x9c\xf6\x12\x8f\x9b\x61\x47\x8c\xf3\x9a\x35\x55\x7c\x91\x8e\x68\x1c\x57\xb7\xcc\xda\x9e\x2a\x3e\xc5\xe0\xf3\x77\xe6\x7e\xdf\xd4\x03\x31\xc8\xee\x4a\x25\x54\xb1\xe5\xf6\xd0\x58\x31\xc6\x6f\x4b\x3f\xeb\x4d\xfc\xf1\x47\xa2\xe4\x9f\xe9\x3a\xaa\xbe\x24\x7f\x27\x5c\x84\x4c\x28\xf2\x19\xb6\x63\x51\xca\xf4\x5f\x24\xb7\xda\x5c\xca\x28\xe2\x62\xf9\xd6\x41\xac\x89\xfb\x53\x3e\xcb\x35\xbd\x73\xa4\xb2\x43\xf2\xd2\x39\x45\x84\xd8\x13\x63\x97\x59\xb5\xd4\x45\xe5\x25\x37\x2f\x9a\x80\x54\x77\x49\x45\xb0\x62\xc9\xc8\x9a\xe1\xd0\x18\x56\x88\x6d\x18\x2a\x1b\xac\x58\x98\x45\x2c\x19\x83\xe3\xe3\xb8\x08\x1e\x06\xfb\x64\xc2\xc1\xc3\x7c\x14\xcb\xb0\x88\x11\x09\x0b\xbb\xe9\xe6\xd3\xf1\xcb\x4f\xc7\x9f\x81\x9b\x1b\xb1\x43\xfb\xd3\x9b\xe2\x99\xdf\x27\x14\x6c\x6e\xe0\xc8\x08\x87\xd8\x0c\x71\x14\x86\x52\xa4\x18\x89\x2b\x23\x66\xd0\x29\x04\xa3\xee\xbb\x9d\xac\x29\x9a\xef\x18\xb8\xd7\x41\x94\x89\x9d\x25\xa1\x61\x38\x02\x67\x6a\x91\x66\x20\x0d\x1b\x9d\xa8\xfb\x7d\x9c\x70\x99\x70\xb5\xb5\x2b\x87\x58\x15\x61\x82\x12\xd0\xbe\xeb\x9a\x1e\x12\x86\x66\x38\xb7\x0b\xbe\xd0\x1d\x83\x1f\x11\x68\x5c\xd9\x86\x07\xaa\x14\x15\xd2\x1f\xaa\x87\xe4\xa9\x31\xdc\x96\x2c\xad\x7a\x27\x3d\x8e\x8c\xe5\x7e\x64\x7a\x48\x22\x2e\xb2\x3b\xdb\xe0\xc7\x1f\x4d\xa2\xb7\xff\xb8\xd9\x27\xff\xb1\x21\x87\x7f\x24\xe3\x73\xa7\x27\x62\x8f\xad\x69\xfc\x1f\x37\xe4\x1f\xff\x38\x24\xd7\x7b\xfa\xef\x8d\x7e\xbb\xe7\x74\xc5\x44\xe8\x7c\xa0\xa9\x8d\x11\xd8\xcb\x81\xe4\xc5\x6e\x95\x77\xfb\x0d\xbd\x61\x24\xcd\x92\x32\x42\x03\x80\x59\xf0\x80\x63\x24\x24\x27\xd2\x2c\xaf\x03\xbf\x91\x09\xd6\x3c\x24\xe7\xf2\xca\x34\x2e\xde\x82\x87\x49\x42\x35\x68\xc8\x69\x49\x4f\x8c\xe3\x26\x37\xad\xe7\x03\x39\x09\x56\xec\x7f\x69\xe0\x1b\xb6\x3d\xf4\x1c\xca\x7e\xa3\xbb\xf3\x3e\xbd\x63\x41\xa6\x7a\x4d\xbb\xcb\xb2\x6a\x0e\x55\x89\x5c\x9d\xfb\xd0\x2d\x76\x96\x23\x14\x03\x10\x2e\xf8\x9a\xff\x8d\x91\x50\xde\x0a\xc5\xd7\x8c\x84\x78\x3b\xa8\xc5\x52\x2e\x63\x6f\xcd\x8e\x5f\x12\xc5\xa2\xc8\xa5\x0e\x4a\x92\x50\x12\x4a\xae\xf7\x20\x0d\x6b\x31\x80\xfd\xe4\x7a\xaf\x70\x72\x28\x9f\xd4\x50\x06\xe9\x41\x20\x45\xc0\x62\x95\x1e\xd8\x2c\x56\xe9\x01\xa8\x19\x62\x19\x1e\x3c\xb1\xb1\x64\x5c\x8a\x91\x5c\xe8\x9b\x51\x9c\x07\xe7\xdd\xd7\x09\x0d\xd8\x94\x25\x5c\x86\x57\x2c\x90\x22\x4c\x0f\xc9\x8b\x1a\xca\x2b\xb2\x4b\xa2\xe2\xc9\x36\xb0\x77\xff\x38\xa2\x69\x8a\x00\xfc\xf1\x47\x32\x46\x4e\x4e\x5f\x94\x69\xb5\x01\xf9\x7b\x6e\x99\xb8\xde\x43\xe2\x85\xba\x6c\x7b\xa6\xae\xf7\x9c\x3b\xa2\xd9\xc7\x63\x4b\xb1\xeb\xb8\xaf\xa0\xe6\x56\xb6\x48\xcb\x32\x58\x85\xa3\x03\xb5\x24\x6e\xb0\xe6\xab\xc7\x6e\x7f\x13\x65\xf8\x47\x6b\x01\x45\xe7\x4b\x9b\xbb\xb7\x2e\x9b\x81\x0b\x2f\x5f\x90\xad\xcc\x30\x9a\x9a\x46\x09\xa3\xe1\xd6\xed\xd4\x4c\x06\xb4\xac\x59\xca\x1a\x06\xb7\xde\x5f\xa6\x35\xbc\x76\x4f\x39\x5f\x83\x8f\xc2\x8f\x3f\x8e\x8f\xcf\x27\x13\xfd\x0f\x17\xed\x40\xd8\xcb\x9a\x6a\xf6\xe2\x2f\xd7\x7b\x07\x32\x56\x07\x81\xe0\x07\x73\x2e\x0e\x9c\xe1\xc0\xb7\x7c\x6f\x64\x86\xc8\x39\x58\x7c\x98\xd8\xbc\x4e\xe4\xba\xe4\x93\x61\x75\xb0\x6f\x68\x6c\x19\x48\xf7\x79\x42\x8e\x20\x8a\xe7\x4f\x6f\xbf\x3a\xbd\x3c\x3f\x9d\x9d\x5e\xbd\xbb\x3a\xbd\xfc\x76\x72\x7c\xfa\xee\x9b\x8b\xab\x19\x50\x00\xcf\xbb\xe9\xc5\xe5\xcc\x04\x71\xc9\x0d\x4b\x12\x1e\x86\x0c\xf1\x07\xfb\x6a\xfa\x9a\xac\xad\x7c\xef\x3e\x08\x1c\x27\x09\x87\xd5\x95\x8f\xac\x32\xa6\xfa\x85\x75\x36\xaf\x27\xe8\x60\x62\x53\x59\x8a\x05\xbe\x33\xd9\xf3\x8b\x93\xd3\x77\xe7\x47\x6f\x4e\xab\xfd\x82\x03\x55\x0d\x52\xf8\x80\x87\xa9\x0f\x52\xf9\xcb\x29\x55\xab\x43\xb8\x49\x63\x7d\xe2\x21\x18\xcc\x3b\x95\xe3\xa3\xb3\xc9\xf1\xc5\xbb\xf3\xd3\xd9\x77\x17\x97\x7f\x9a\x9c\x7f\xfd\xee\xab\xa3\xe3\x3f\x9d\x9e\x9f\xec\x32\x9f\x7c\xf7\xfe\xc4\xb6\x4d\xd3\x2a\x71\x98\x65\xb3\xa2\xfb\x00\x06\xc7\x56\xef\x6c\x6c\x82\xd3\x6c\x23\xa3\x6c\xcd\xde\xf8\xa2\xde\x47\x64\xad\x7f\xc6\x95\x1f\x6c\x68\x72\x10\xf1\x39\x1c\x4f\xab\x7d\xf3\x6f\x76\x71\x6f\x47\x82\xa9\x51\xc8\x93\xb6\x7e\x75\x6b\xf7\xdc\xfb\xfb\x0c\x04\x1f\xcd\xb9\xa8\x76\x96\xb2\x20\x03\x0c\x25\x85\x62\x77\xd5\xfa\x27\x71\xc2\x37\x3c\x62\xcb\xb2\xdb\x10\xf1\x61\xa0\x92\xc8\xa1\x25\x89\x39\x17\x34\x29\xc5\x1b\xa2\xb1\x4d\xbf\xab\x48\x16\x0b\x1e\x81\x07\x3f\xc8\x16\xa2\x7c\x09\xec\xa9\x30\xfd\x8f\x02\xc1\x1f\x04\x39\x98\xfe\x06\x54\xe0\x2c\x04\x28\x94\x71\x8f\xd5\xdb\xe4\x6e\x8f\xa6\x1d\xa0\xf8\x19\x37\xdc\xda\xf3\xc9\xbb\xe3\x8b\xf3\xd7\xcd\x98\x43\x33\x86\x2f\x5f\x8c\x8c\x0a\x45\xf7\x0d\x7a\xa5\xbd\xea\x2c\xac\xfd\xa1\x72\x48\x20\xbc\x04\xf6\xac\xe9\xa8\x54\xa7\x63\x30\x08\x4c\x6b\xf2\xf5\x2f\x8a\x3d\x04\x7f\x67\x96\xf3\xce\xd7\xf4\x09\xb9\x62\xe8\x2b\xaa\x2f\x33\x24\x26\xc8\x03\x7d\xc0\x59\xed\x8b\x14\x25\x6c\xfd\xaa\x61\xc5\xbf\x02\x0c\xfe\x04\xf6\xed\xcd\xec\x2d\x31\x4c\xe7\x86\x26\x5c\x4b\xa6\xcd\x7b\xf4\x66\xf6\xf6\x97\xdc\x98\x0d\x53\xab\x77\x6b\x95\x55\xd7\x31\x4d\xd8\x86\x09\x53\xae\xa8\x40\x72\xc0\x55\xa5\x11\x63\x10\x65\xb8\x90\xba\x55\xb5\xa4\x99\x5d\xdd\xd5\xd9\xe9\x69\xad\x2e\x60\x7e\x11\x16\x34\x4a\x59\xf9\xec\xf7\x26\x24\x1f\x85\xf0\xbd\x9d\x31\x15\x58\xb2\x34\xae\x85\x72\x17\xdd\x79\x88\xd1\xfd\xe9\xc7\x51\x18\x6a\xce\xf2\x75\xc4\xee\xc8\xb7\xb0\x74\x72\x92\xf0\x0d\xb8\x52\x53\x6b\xff\xd1\x2d\x62\x96\x80\xbe\xe0\xad\xe0\x77\xe4\x44\xae\x29\x17\xe4\x4a\x06\x37\x98\xa3\x0d\x42\x2e\xc9\x09\xbf\xa1\xa9\x2a\x13\x1b\x30\xc2\x83\x3f\x74\x40\x95\x89\xc7\x7f\xcd\x22\x7e\x07\x08\xd7\x0d\x4d\xbf\xda\x8a\x80\x1c\x4d\x27\x1e\xb2\xb3\x88\xd8\xdd\x46\x46\xa3\x10\xa6\xe6\xa7\x3c\x7a\x09\xdf\xca\x68\xb2\x5e\x96\x69\x4f\xe3\x86\xfa\x3b\x1f\xe9\xad\x28\xc3\xaf\xb6\x51\xf5\x69\xdc\x6f\x03\x02\xbf\x54\x71\x99\x81\x1e\xd9\xa3\x2f\xcc\x71\xae\x23\xc0\x01\xfa\xad\xd4\xdd\x7a\xe2\x0a\x25\x89\x5c\x26\x74\x9d\xe6\x98\xdc\x06\x0c\x8a\x10\x35\xef\xa9\xed\xd5\xfd\x5e\xaf\xd3\xb3\x11\x1e\xc9\xb4\xbc\x0b\x5a\xde\xf2\x30\x00\xff\xbb\x29\xfa\xdb\x94\xb9\x3b\x76\x34\x9d\x58\x65\xaf\xe6\x64\x35\x12\x0b\xa9\xa2\x60\x84\x6c\x40\x63\x27\x47\xb3\xa3\xab\xd9\xc5\xe5\xe9\xbb\xd9\x9f\xa7\xcd\x84\xbd\x58\x42\x9d\xa0\x7f\x47\xb9\xca\x3d\xb1\xba\xc6\xfb\xee\x68\x32\x7b\xf7\xfa\xe2\xf2\x5d\x3e\x70\xe3\x98\x00\x80\xda\x68\x9a\x92\xee\x4c\x3c\x35\xc5\xfc\x65\x08\xe6\x4a\xca\x94\xe5\x3b\xc2\x84\x15\x96\x9b\xf8\x9a\xdf\x96\x70\x04\x4b\x44\x2b\x00\x16\xf0\xd3\x5c\x1c\xe4\x19\x59\x60\x0a\x7b\x27\xb8\x5b\xbf\x6f\x58\xf4\xd9\xdb\xab\xd9\xe9\x65\xc7\x09\xfc\x22\xdd\x9f\x2f\xe3\xfa\x81\x38\x2a\x7c\xb6\x60\xc8\xaf\xbe\x9e\x3a\x39\xb9\x1b\xe0\x3c\x69\x26\xdd\x34\x53\x12\xbb\xab\x8f\x75\x2a\xc0\xc8\x38\x99\x56\xbf\xaf\xec\xdf\x64\xfa\xed\x67\xd3\x8b\x8b\xb3\x77\xf5\x96\xce\x48\x47\x10\x8d\xda\x38\x8a\x4c\xc8\x09\x4f\xe1\xcf\x6f\xbf\x3f\x3b\x3a\xb7\x07\xde\x6a\x98\x26\x53\x12\x4b\x19\xb5\x9f\xa4\x7c\x26\xd0\x45\xe3\x54\xce\x35\xa7\xe3\xbf\x6c\x9a\xdf\x83\xdb\x9d\x09\xc1\x22\x12\x32\x70\xcd\x83\xe8\x75\xbe\x20\x3c\xe6\x31\x44\x64\xc3\x9c\x43\xff\x5c\x5e\x9f\x9e\x4d\xbe\xd7\xb0\x38\x9f\x4c\x7f\xa5\x1c\x61\x69\xa5\x2b\x0b\xf1\xd2\x9a\x1b\x00\x8d\x8b\x83\xf6\xbf\x91\xb5\x7d\xc7\x13\xb6\xcc\x68\x12\xee\xb0\xbe\xef\x26\x97\xa7\x5f\xbf\x3d\xba\x3c\xf9\x95\xae\x71\x56\xba\x18\x9b\xcf\xe0\x6a\x14\x52\xad\xe3\x53\x54\xf1\x19\x1f\x83\xf7\xe7\x64\x9a\xd7\xe8\xa8\xf6\x1c\xac\x64\xaa\x09\x3d\xda\xb0\x78\x8a\x36\x93\x31\x39\x5e\x51\xb1\xc4\x28\x43\x9b\x83\xd9\xf8\xbd\x94\x8c\xef\xd0\xeb\x8a\x6e\x6a\xfd\x0a\x69\xb4\xff\x26\x8b\xb3\x89\xf9\x5c\x68\x09\xd8\x14\x4f\x19\x8d\x8c\x89\x75\x14\xf0\xb0\x2a\x88\xf8\x2c\x76\xa7\x4e\x82\x05\xa6\x6a\x38\xe0\x78\x72\x72\xd9\x0f\x5b\xd4\x5b\x3a\xc8\xe2\xc7\x1f\xc7\x06\xe9\xeb\x66\xae\x19\xc8\xce\xcc\xe2\x2d\x50\x2d\x44\x72\x09\x70\x4a\x25\x06\x07\xa8\x48\xff\x94\x82\x69\xb9\x09\x3f\x9b\xf9\x9c\x4c\xae\x8e\xbe\x3a\x3b\x7d\xf7\x7a\x72\x76\xfa\xee\xec\xe2\xeb\xaf\x27\xe7\x7e\x41\xbf\x9d\x5f\x40\xb1\xa0\x08\xda\x94\xc0\x85\xe6\xe7\x05\x73\x9e\xe9\x9f\x8f\x8e\x8f\x4f\xa7\xb3\xd6\x8b\x70\x72\xfa\xfa\xe8\xed\xd9\xec\xf4\xfc\x64\x7a\x31\x39\x9f\xcd\x2e\x34\xcf\x78\x74\x3c\x9b\x5c\x34\x63\x57\xec\xb6\x19\x4c\x93\xe9\xe6\x95\x3e\xa1\x05\x2b\xd7\x3a\x85\xc9\xf4\xdb\x57\x57\x6f\xa7\x9a\x21\xdd\x45\x00\xf5\x1f\x19\x88\x7c\x47\x47\x3c\x7d\x64\x70\x84\xb3\x8b\xaf\x35\xc8\xa7\x47\xb3\x6f\x34\x58\xe0\xba\xa0\x2b\x35\x6e\x2b\xc0\xd3\xee\xab\x92\xb0\xcf\x6d\x33\x76\xfa\x6b\x9c\xb1\x1e\xe4\x63\x26\x7c\x75\xfa\xed\xe9\xe5\x64\xf6\xe7\xab\x3f\x5f\xe1\x9c\xcd\x9d\x84\x8b\x9b\xc7\x8b\x88\x85\x6c\x5d\x49\xba\x4d\x23\xb9\xec\x58\x8b\x33\x54\xe3\x72\xda\x4e\xa2\x33\xde\xf5\xde\x2d\x4d\x04\x17\xcb\x3e\x4b\xbf\xf2\xae\xf7\xf8\xf2\xf4\xf4\x5c\xf7\xf5\x1d\xf6\x54\x5f\x71\xdf\xe5\x40\x4f\x8d\x2b\xfa\xce\x3f\xd1\x72\x77\xdf\x9c\x1e\x9d\xcd\xbe\x39\x3d\xd7\xd7\xd6\xcf\xb4\x36\x5f\xd5\xb6\x05\x4f\xa6\x33\xdd\xe5\x95\x61\x87\x41\x35\x90\x29\xf4\xba\x2e\x38\x36\x93\xbe\x4a\x2c\xb0\x7c\x64\xfb\x25\x2a\x75\xd8\xca\x0e\x96\xa7\x7a\x5f\x9d\x88\xcf\xa3\xca\xfe\x8e\x31\xe2\x35\xea\x18\xc4\xd9\x21\xf9\xe4\xf3\x17\x25\x83\x59\xc4\x37\x4c\xb0\x34\x9d\x26\x72\x5e\xad\x91\xc6\xee\x6a\xf1\xd7\x85\x92\xbc\xfa\xfb\x88\xb8\x76\xb4\xaa\xe8\x8d\x2d\x46\x70\x43\x46\x7a\x4c\xcf\xcb\x39\x4f\x42\xcf\xbb\xb8\x6c\x71\x7d\xf9\xa2\xfc\x1a\xdc\xe6\x68\x74\xc2\x22\xba\x6d\x6c\xb4\xa0\x3c\xca\x12\x36\x5b\x25\x2c\x5d\xc9\x28\x3c\x24\xaf\xca\xa0\xa4\x21\xff\xb9\xa1\x50\xb1\x80\x96\xc1\xe0\x79\xd9\x0a\x87\xde\xfa\xc0\x88\xcf\x0f\xd6\x32\xcc\x3c\x49\xbe\xf0\x40\x47\x7c\x3e\x6a\x68\xa0\x27\x75\x21\xa2\xad\x2f\x99\x7f\x79\x94\x24\x13\x07\x77\x78\x6d\xc6\x91\x0c\x6e\xfc\x43\x99\x16\x23\x5f\x8b\x62\x2c\x24\x3e\x2d\x83\x6d\x68\x02\x03\x22\xd0\xfd\x43\x6d\x68\x32\x4a\x32\x31\xf2\xb7\xd9\x71\x30\x30\xcc\x75\x0c\xa6\xc1\x78\xaf\xc1\xb0\x0b\xd4\x7e\xa5\x5b\x51\x4b\xd5\xe3\x5b\xb9\x3e\x67\x74\x59\xcb\x1b\xf1\x04\x6b\xc2\x5a\x85\xd2\x3e\xb9\x65\xe0\x23\x6a\x14\x4f\x40\xb3\x20\xf0\x3b\x33\xc9\x27\x74\x4b\x4d\x7d\xd1\xd9\x80\x50\x45\x0e\xd2\x6d\x7a\xb0\x48\x0f\xe6\xf1\x42\xb3\x5c\xb7\xcc\xb4\xc6\x54\x56\xd5\xe1\x20\xbd\x9e\x22\x21\x4f\xc0\xe5\xa7\x5a\x8d\xcd\x2e\x2e\xdd\xa6\x8b\xda\xe1\x72\xd7\x65\x06\xad\xeb\xda\xbe\xe2\xd8\x37\xe6\x47\x5b\x33\x2a\x30\x9b\x02\xa4\x7f\xca\x27\xd7\xbd\x14\xae\x90\x95\x8e\x13\x19\xd3\xa5\x66\xe9\x4d\x38\x5f\x45\xa1\x68\xc7\x35\xc9\x58\x81\xd1\xe3\x29\xb9\x11\xf2\x56\xb8\xa0\xa3\xaa\x34\x18\x7a\x37\x60\x7e\xdf\xf2\x94\x8d\xdf\x84\x49\xe6\x5a\x1b\x09\x81\x60\x26\x05\xfe\x8e\xa5\xcf\x6d\x73\xbc\xed\x65\x75\xac\x0d\x20\x72\x1d\x3e\x8b\xf7\xa3\xf6\xdb\xad\x17\x06\xb0\xaf\xa0\x9c\x16\x9c\x31\xea\xbc\x59\xed\x9d\x36\xdd\xda\x51\xe7\x25\xea\xee\xd7\x77\x41\x47\x1d\x48\xa7\xbd\xd7\x76\x84\x86\x9e\x98\xaf\x79\xc4\x2e\x92\xe3\x92\xc7\x7b\xcb\xa1\x6f\x1f\xd0\x7b\x05\x70\x9c\x13\x7b\xbd\xea\x83\x15\x81\x8a\xd6\xfc\x79\x7c\xee\xb3\x54\x34\xd8\x7b\xda\xa7\xe4\xb5\x22\x8d\xda\x4d\x3e\xed\x3d\x36\x98\x92\x9e\x90\x37\x0e\x92\x29\xd0\x09\xf0\x67\x55\x3f\x25\x37\x38\xc2\x16\x10\x77\xbb\x02\xdd\x12\x24\x6e\xa8\x38\xb6\x3b\x1d\x95\x7d\x9d\xf2\x48\x14\x27\x08\xc5\xed\xd1\xfa\xc9\xa7\x36\x2b\x90\xeb\x8c\x04\xfc\x48\x61\xd7\xf0\xc0\xbe\xdd\x61\xa3\xe7\xe1\xf6\xba\x85\x14\xbb\x6f\xf4\x14\xcd\xd6\x30\xcf\x45\xf6\x93\x9c\x86\xf9\x74\x9e\x44\x52\xbf\xe9\x1e\x2a\x55\x3f\xaf\x75\x13\x5f\x7d\xa6\x1d\xa6\xb0\x5d\xa7\xfc\xe3\x8f\x23\xbd\xa7\xd6\x34\x37\x05\xaf\xf6\x13\x5e\xf6\x58\x2d\xd6\x53\x18\xf1\xf2\x96\xe8\x9b\x3d\x22\x2c\x4a\x59\xc3\x57\x07\x59\x0a\x5b\xa7\xb9\x49\xc7\x41\x11\xfe\x8c\x98\x1a\x19\x5f\xfa\x03\x44\xed\x07\xd0\x2c\x07\xd8\xff\x97\x85\xa9\x19\xc1\xf8\xc5\xf6\x4a\x8a\xe3\xfa\xcd\x17\xb1\x11\xd5\xc8\x83\xfb\x3b\xd2\xef\x1a\x84\x50\x0d\xf0\xcf\x03\x12\xae\x18\x73\x33\x54\xad\xb2\xf9\x38\x90\xeb\x83\x52\x1c\xcd\x41\x3d\x3d\x80\x37\x2e\xc0\x44\x0f\x38\x79\x66\x77\x49\x8e\x70\xef\xa8\x01\x4f\x02\x04\xeb\x53\x8d\xfa\xc4\x52\xfa\x20\x6a\x8a\x03\xa3\x33\x24\x64\xc3\x8b\x18\xa8\x8e\x36\x0c\xaf\x82\xcd\x70\x93\xb0\x38\xe2\x01\x4d\xc1\x5f\xff\x5e\xd1\x08\xbe\x45\xa6\x45\x4c\x42\x71\x35\x2e\x59\x11\xad\xd5\x15\x0e\xd0\x09\x46\x42\xda\x40\x49\xfa\x44\x14\x34\x75\x0b\xee\x00\xc8\xec\x58\x9f\x5b\xcd\x8a\xd1\xe4\xa6\xe2\x72\x1d\xcb\x82\xc3\xf2\xc7\x05\xfc\xec\xbe\xf2\x16\xd7\xcc\x0a\xc7\x75\x07\x61\x94\xdd\xd9\x9d\xa8\x10\xb7\x79\x1e\x12\xf2\xaa\x01\xed\x34\x39\xc5\xfb\x35\x22\x4e\x6b\x6b\x13\x6a\x4c\x5e\x25\x09\x26\x0b\x8c\x98\x82\x22\x7a\x99\x68\x72\xa2\x1f\x5c\xf0\x7b\xb9\xe0\xbb\x28\x1d\xdb\x7c\xb4\x3b\x7e\xd3\xad\xa9\xb9\xe6\x7f\x8c\xbf\x7a\x25\x2b\x50\x2f\xd7\xf5\xdc\xfa\xe0\xf3\x5e\xf7\xfa\x98\x8c\xfa\xa1\x19\x52\x76\xed\x2c\x1a\xf8\x3d\x3c\x6a\x7e\x0f\xc6\xac\x8e\xa5\x3e\xdc\xf3\xae\xa4\x3e\xe2\x0d\x42\xac\xd1\x4a\xbe\x3b\xbe\x38\x9f\x5d\x5e\x9c\x9d\x9d\x5e\x36\xa9\x6f\xeb\x5a\xa0\x9d\xfc\x25\x1c\x6f\x89\xc7\x52\x59\x69\xde\x04\xd4\x56\x2b\x16\xdc\x8c\xca\x79\x8d\x8a\x66\xa3\xe4\x67\xe2\x3b\x76\x21\xcb\xbb\xf2\x20\x4c\x05\xe1\x28\xd5\x94\x4e\x59\xfe\xa3\xe7\x97\x6a\xab\x29\x44\xcf\x4f\x4c\x04\x39\x1b\x05\x54\xd0\xc8\x7c\xb5\xb7\xff\x7f\x11\x42\xf6\x4c\x7f\x9b\x4f\xc7\x2f\x5f\x8d\x3f\xdf\x3b\x24\x7b\xba\x2f\x13\xd2\x3b\x33\x7d\x14\x6e\x29\xe6\x85\x69\xde\x7b\xba\x26\xf1\x45\x29\xe6\xf3\xd8\xda\x4f\x09\x4f\xf3\x94\xf1\xf9\x5c\xb1\xc0\xe5\x02\xf8\x69\x16\xda\x71\x5d\xfb\x63\x91\xd2\xc8\x76\x54\xdf\xec\xe6\x6d\x2d\x8c\xb1\x4d\x9b\x99\x7f\xf7\x04\xf3\xeb\xe8\x69\x1a\xe3\x0a\x52\x72\xd8\x83\x77\x06\xfb\xbd\xc3\xde\x5d\x63\xcf\x13\x72\x9c\xaf\xa6\xc1\x4d\xa6\xec\x7f\xa2\x3f\x9f\xf3\x24\xf4\x7f\xfe\x66\xf6\xd6\x86\xa3\x68\xa2\x61\x63\x87\x30\x25\xee\x82\x06\xa6\xbc\x13\x1a\xbe\x91\x80\x3d\x21\x23\x32\x59\x38\x56\xf1\xc2\x9d\x61\xdf\x96\x8a\xdd\xca\x2c\xc9\xfd\xdc\xf4\x18\x23\xf2\xea\x85\xfd\xf8\x42\xad\x58\x72\xcb\x53\x06\x3a\x2d\xe3\xab\x91\x10\xab\xc4\xeb\xd9\xdf\xe7\x0d\xfd\x4d\xa6\x93\x69\xcf\x2e\x3e\x69\xe8\xa2\x90\x7d\xa9\xd8\x12\x26\x02\x1a\xa7\x99\x8d\xf3\x69\xe8\x6e\x5c\x70\x3e\xba\x73\xcb\xb8\xe8\xde\x18\xfe\xf4\xc2\x10\x03\x6b\x92\x37\xa6\xe1\x37\xb3\xb7\x68\x12\x36\x94\xd2\xc3\xf2\xb8\x5f\xbc\xfc\xec\xb3\x17\x95\xd6\xcd\x5e\xe2\x36\x79\x46\x93\xb3\x38\x7c\x06\xd4\x11\x35\x6f\x4f\x6c\x3a\x75\xd0\x4b\x70\x9b\xe9\xae\xa8\x7d\x94\x29\xb9\xa6\x40\xdb\xa2\x2d\x89\xa5\xc9\x1a\x89\xa7\xae\xe6\xd4\x7d\x48\xfe\x3e\x42\x1c\xfb\xa3\x45\xb5\xd7\x7b\x02\xaa\x1e\x19\x0f\x25\xcd\x76\x8e\xcc\x47\x4e\x3d\x97\xeb\xbd\x40\xd8\x2b\x87\x6d\x5f\x8c\x3f\x1d\xbf\x2c\xb5\x30\xd2\xa4\x7e\xfd\x97\x02\x91\xff\xe8\xe2\xf4\xeb\x3d\xf0\xa1\x82\x0e\x8c\xae\xac\x5c\x33\xe6\x7a\x2f\x92\xcb\x77\x11\xdb\xb0\x08\x5b\x7d\x77\x74\x79\x3e\x39\xff\xda\xdb\x6c\xc1\x23\xf6\x4e\x4b\xba\xd8\x14\x15\x15\x72\x69\x90\x11\xe8\x2b\x02\xc1\xc7\x91\x5c\xd6\x3e\xcf\x9d\xfc\xde\x15\x13\x72\x3d\x04\x2b\xcd\xf5\xd6\x14\x60\x7a\xf7\xce\xe7\xca\xfe\xee\x5d\xed\xb3\xb5\xca\xf4\x17\xef\xde\x19\x47\xf2\x77\xef\x2a\x0d\x30\xf2\xeb\xb0\x0c\x24\x3f\xa0\x4c\x94\x98\xdb\xf0\x1f\x95\xde\x50\x99\xd2\xd9\xdf\xcd\x17\x69\x7b\x3f\x2e\x20\xbc\x7d\x99\x0c\x89\x1a\xb1\x3a\x00\xc1\x28\x86\x77\xd6\x4c\xae\xe1\x51\x1a\xa5\xf8\x87\x3b\x60\xe3\xf9\x88\x65\xa2\xd6\x34\xae\x01\x35\x15\x54\xe9\x16\x2a\xc9\x58\xe5\x55\x40\x63\x3a\xe7\x11\xa6\xb4\x80\xa9\x43\x2f\x6f\x68\x1c\x73\xb1\x4c\xed\x57\xbb\xce\x64\x4e\x45\x78\xcb\x43\x7d\xce\xba\x07\x74\x1a\xd7\x47\xb3\x7f\x9a\x90\x9e\x1e\x1c\xc4\x4d\x18\x8e\x82\x24\x2c\xb1\x0d\xbf\xd1\x1a\x01\xb5\x24\x37\x8f\x50\x29\xe0\xab\xaf\xa7\xa5\x6c\xa1\xf8\xae\xa8\x17\x50\x7d\x5f\xaf\x1a\xd0\x90\x8a\xa7\xa8\x1d\x50\x6d\x70\x5d\x54\x10\x30\x3e\x45\xd7\x8f\x53\x3e\xa0\x3a\xf7\x72\xee\xf1\x32\x79\xc1\xfa\x3d\x5b\x70\x25\x4d\x64\xa6\xca\x12\xe7\x50\x3e\x60\x28\x1f\xe0\x6e\xc1\x50\x3e\xe0\x67\x2b\x1f\x50\xbd\xc4\xf5\x22\x02\xe5\xf2\x39\xfa\x02\x97\xae\x76\xff\x6a\x01\x34\x3d\x87\x82\x95\x1e\x8f\xd5\xca\x85\xbe\xc2\x86\xb6\x2a\x89\xd5\xa2\x1c\x5d\x99\x92\x97\x28\xb6\xcd\xb7\x84\x1a\x26\xf5\x2f\x27\xd8\xc4\xeb\x0c\xfb\xea\xb3\xcf\x5f\x7e\xf2\xc3\xd3\xfa\x2b\x4c\x17\x77\xa8\x6f\xe7\xa7\x9f\xd4\x5f\x23\x48\xf5\xd5\x5d\xd6\xab\x6c\xda\x9d\xf7\x17\x9a\x2e\xad\xe7\xb8\x68\x8a\xf7\xc3\x96\x43\x40\x58\x9a\x13\x64\xe1\x8c\xa9\x50\x58\x35\x06\xcd\x80\x30\x99\x73\x95\xd0\x64\x6b\xaa\xea\x81\xff\x31\x45\xd7\x37\x0c\x10\xda\xa9\x7e\x82\x77\x9a\xdb\x62\xfb\x53\x45\x45\xa8\xe5\x37\x99\x90\x88\x26\x4b\x56\x9d\xae\xaf\x53\x02\x4b\xd0\x37\xcd\x13\x3e\x82\x4f\x67\x91\x6e\x20\x4f\xfe\x57\x9e\x9a\xdc\xa6\x46\x71\x11\xbe\x66\xa7\xd7\x58\x26\xb8\xbb\x3c\x30\xea\x9d\x7a\x4d\xe1\x5b\xc0\x73\x90\x3d\x6d\x0e\xd1\xc0\x78\xae\xc8\x7b\x4a\x0f\x85\x78\xaf\x81\x87\x7f\x1e\xae\xd7\xef\x5b\x2a\x17\xbf\x96\x49\x01\xf1\x62\x25\x5a\xf0\xb6\x5d\x61\xcf\xfb\x26\xe1\xf8\x7b\x4a\xdf\x6b\x60\x37\x77\xf9\x5e\x7f\x44\x13\x46\x5e\xbe\x22\x73\xae\xcc\xf5\x19\xc3\x50\xd5\x0d\x2d\xc6\xd1\xf3\x6c\xee\xb3\x3e\x87\x7d\x33\x8e\x08\xc9\xfb\xf5\x1a\x07\xfc\xf4\x93\xd2\x80\xdf\xe9\xc6\xde\x32\x66\x66\xa2\x7a\x29\x58\xf9\xef\xe8\x8a\xe0\xf5\xf7\x75\x1b\xb3\x64\x74\x74\x65\x23\x62\x78\x2d\x96\xb4\x78\x62\xaa\x34\xcd\x3d\x24\xff\xf5\xec\xfa\x3a\xfc\xbf\x9f\x1f\xe2\xff\xfe\xe3\xef\xe5\x7f\xdb\x9f\xef\x7b\x52\xee\x5d\xc3\x39\x82\x12\x0e\x53\x99\xf8\x90\x56\xe9\x7c\x9d\xe5\x2d\x2d\x42\x84\xea\x95\x08\x7f\x8d\x43\xe2\x44\x2a\x19\xc8\xc8\x72\x29\xd8\xb5\x17\x32\x27\xb6\xa0\x9f\x92\xe4\xe5\xef\xff\x50\x6f\xb2\xa6\x77\x7c\x9d\xad\x0f\xc9\xab\xcf\x3f\xff\xf4\x73\xcf\x7b\x2e\xf0\xfd\xcb\x1d\x11\x66\x24\x97\x57\x6c\xc3\x12\xae\xb6\x57\x41\xc2\x58\x95\xa7\xab\x2d\xfb\xe9\x59\xf5\x0b\xbb\xfc\x48\x2e\x49\x6a\xde\x10\x3a\x97\x1b\xab\xb7\x8e\xe4\xd2\x5b\x8a\x0f\x2a\x8e\x33\x91\xe7\x2b\x4f\x55\x28\x33\xe5\x90\x0d\x32\x39\x7f\x7d\xe1\x23\x11\x6d\xdb\xaf\x49\xcf\x0c\xb2\xd6\xbc\x61\xe9\x0a\x43\x8c\x7c\x45\xc0\xcb\xab\x3a\xf7\x7d\x45\x52\xa6\x8a\x5a\x91\x8b\xcc\x98\x83\xd0\xeb\xba\xee\x3e\xa9\x1f\xbd\xf1\x6b\xc8\x31\x93\x2b\xb2\xdc\x05\x69\x49\xaf\x79\x41\x73\x29\x23\x46\x6b\xbc\x6f\x9c\xb0\x05\xbf\x3b\x72\x73\x83\x77\x52\xb7\xa9\xe7\x9b\x82\x82\x80\xf3\x05\xb4\x28\xa7\x1c\xf7\xad\xa8\x8d\xad\x20\x3b\x54\x04\xac\x4f\xa8\x50\xef\xa6\xe5\x69\x38\x94\xc8\x8f\x00\x6c\x80\x4f\x51\x5c\xf3\x78\x72\x72\x79\x3f\xa2\x16\xf0\xd0\xc7\xfb\x78\x96\x00\x99\xd3\x41\xd9\x0a\xc7\xba\xe8\xd9\xad\xa6\x6d\xd7\xd1\x5c\x0c\xbf\x9b\xca\xb5\x73\x31\xbe\x99\x39\xbc\x8c\x71\x0e\xb2\xdc\x0c\xe3\x70\x78\x0b\x82\x02\x2c\x4a\x33\xca\xb7\x0e\x82\x28\xb3\x41\xb5\xf4\xf7\x9a\xfb\x4c\xc7\xce\x20\x40\x3d\x7b\x31\x1d\x04\x65\xb7\x56\xda\xdb\x42\x62\x5b\x49\x53\x0b\xed\x6d\x23\xb1\xcd\x7d\xb6\xd3\xde\x56\x12\xdb\x32\xd1\x56\xda\xdb\x4e\x61\x7b\xf4\xda\x9f\xf4\x36\x5f\x54\x7c\xba\xcf\x65\x2b\xe5\x24\x1f\x43\x76\x8d\xd9\xc4\x68\x46\x26\xd3\x4e\xfc\x76\x55\xfd\x00\x80\x01\x09\x5f\xf4\x2d\xc5\x3c\xc1\x28\x88\xe2\x6d\x35\x23\x78\x31\x9c\x09\xec\xb5\xbd\x18\xb7\x3d\x90\x3a\x17\x05\x8e\xc9\xcb\xef\x62\x85\x55\x7b\xd1\xb1\x8e\xaa\xaf\x5f\x9c\x44\x9e\xa1\x14\x2c\xfe\x62\x5b\x1a\xce\xc4\xbf\xa9\x15\x5b\xdf\x1f\xb5\x56\x61\x81\x29\x84\x0b\x39\xdd\xf1\xe2\x31\x75\xbd\xf3\xa6\xfe\x7d\x2e\x40\xf8\x08\x28\xf5\xd1\x58\x37\xb3\xc3\xa7\x77\xa8\xd4\xe9\x7f\x88\x9c\x2f\xfc\xa7\x48\x26\x4e\xc4\x9a\x6f\xce\xa6\x23\x62\x7b\xd2\x7b\x3b\x76\x13\x16\x54\x1b\xe4\x61\x98\xe0\x6a\x55\x8d\xc5\xc4\xa7\x20\x25\xa6\x80\xf0\x16\xcb\xa2\xe1\x91\x31\xe5\xf5\xb1\x88\x2f\x4e\xf4\xa3\x4f\x50\x31\xbb\xce\x23\xe4\xdf\x5d\x67\xfd\xbf\xc9\x43\xf4\x5b\x2d\x41\xf8\xdb\x55\xf5\x43\xd2\xfa\xc7\xd1\xf0\x4f\x99\x15\x77\x4a\x8a\x7d\xfd\xb3\x57\x9f\xef\xe4\xcf\x2f\xa9\xf1\x63\xd3\xcf\x63\x69\xef\x07\x35\xfb\xa0\x66\x77\xb7\x60\x50\xb3\xff\x9c\x6a\x76\x8d\x0e\xfa\x95\xe8\x35\x8d\xef\x51\x90\xb7\xaf\x8a\x7d\xb6\x62\x85\x14\x60\x55\xfb\x1a\xfd\x78\x28\xe8\xc7\x68\xc9\x6f\x18\x8b\x2f\x30\x6b\x79\x74\xce\xee\xd4\x37\x32\xee\x9a\xda\x45\x6c\xfd\x51\xf4\xc7\x30\x31\x93\xf7\x3c\x22\x82\xdd\xa9\x95\x8c\x31\x57\x10\xc6\xb3\xa0\xd6\xbb\x4b\xe9\x03\x30\x25\x1a\xa8\xfa\x8c\x2b\xb8\x24\x36\x66\xda\x55\x0e\xc0\x8e\x80\x27\x33\x0b\xf5\x27\xbe\x7e\x75\x2f\x69\xae\x9e\xc9\x4c\x2e\xa2\xeb\x3d\x3d\x39\xa2\x67\xa7\xe7\xfd\xe5\xf5\x1e\xf8\xd3\x30\x1a\x6a\xf0\x3a\x6f\x53\x16\x2d\xbe\xbc\xde\x7b\x66\x8c\x1a\xcf\x7d\x43\x98\x98\x9f\xdc\x29\x75\x9e\x50\x11\xac\xec\x3e\x9d\xeb\xa1\xa5\x30\x4e\x5b\xe3\x60\xb1\xbc\xde\xf3\xec\x5b\xab\xa6\x47\x4f\xbf\xcf\x21\xc9\xd3\x40\xe5\x49\x88\x2c\x7e\x31\x22\x8a\x29\x63\x80\xce\xfa\x10\x04\xe8\x5d\x50\x0a\xa7\x8b\x17\x79\xe7\xcd\x2f\x63\x8c\x2a\xc4\xac\xc9\x1a\x45\xa4\x4c\xed\x57\xe8\x47\x4a\xa8\xaf\x4f\xac\xe1\x04\xbd\xec\x13\x3e\x66\x63\xc8\x7c\x67\xb3\xe1\x01\x8d\xc5\xc1\xd8\x86\x25\xdb\xbc\xde\x42\x39\x87\x52\x23\xdc\x9a\x55\x7e\x1e\x4f\x77\x2f\xf8\xf2\x9c\xef\x56\x87\x84\x35\x73\x61\x76\x86\xce\x41\xe4\x43\x0e\x0b\x2e\x96\x63\xa2\xa5\xf5\xda\x6e\xc1\xb4\x0c\x90\x0c\x80\xcc\x31\xc0\x9b\x60\x6d\x0f\x6c\x1d\xab\x6a\xbc\x69\xd7\x92\x62\x9a\xa6\xb7\x32\xe9\x52\x5c\xfa\xa6\x74\x61\x32\xab\xa1\x12\xda\xf4\x93\x2f\xd7\x2c\x29\x25\x4b\x26\x58\x02\x55\x0b\xe6\x5b\x2f\x21\x22\xa8\xce\x6c\xc3\x79\xa4\x9b\x91\x47\x7f\xd6\x96\xa4\x38\xde\xfd\xd1\x84\xf4\x86\x6d\x81\x1f\x31\x5d\xd8\x53\x02\x27\x26\x96\xe1\xd3\xb4\xf0\xd5\x6c\xd0\x79\x74\xca\x18\x98\x6b\xa7\x59\x25\xd2\x05\x6a\xfb\xe8\x3b\x69\xa6\x8b\xb8\x0a\x26\xac\xa4\xc1\x5a\x40\xa9\xc7\x84\xbc\xc1\x03\xd1\xd6\x13\xd5\x8c\x03\x0f\x6d\x17\x37\xcc\x77\x70\xec\xd3\x47\x63\xd3\x6a\xb3\xeb\xbf\xc2\xeb\x3d\x37\xa9\x6e\xc2\x16\x2c\xd1\xf7\xd4\xc7\x21\xb4\xa5\xb8\x97\x1b\x2d\x69\xb2\xdb\x03\x53\xbc\x70\xa4\x51\xc1\x08\x09\x77\x7a\x00\xfb\x79\xf0\xa4\x43\x43\x49\xc8\xec\xe2\xe4\xe2\x90\x1c\x85\x21\x91\xa0\xdc\xcc\x52\xb6\xc8\x22\xbc\x75\xe9\xd8\xe1\x9c\xf7\x81\x71\xdb\x27\x19\x0f\xff\x9f\x6a\x1a\x8e\x5d\x01\x99\x27\x2c\xfc\x78\x60\x5e\x01\x05\xd9\xe6\x96\x05\x0d\xd2\x2b\xdc\x70\x99\x80\x8d\x56\x1f\xa6\x75\xf7\x69\x31\x4a\xda\xae\x85\x35\x50\x1b\x7c\x6c\xa5\xaf\xc6\x19\x43\xe0\x89\xff\x65\x1f\x31\xdb\xff\x56\xa3\xa1\xc9\xb4\x0f\xad\x2b\x52\xdc\xb9\x1c\x11\x59\x48\xa3\xcb\x9a\x6f\x41\x64\xb1\x48\x2f\x96\x89\x97\xd6\x19\x17\x05\xa8\x5f\xc6\x12\x20\x41\x40\xe5\xc0\x68\x27\x72\xc7\x06\xb0\x59\xef\x5b\x7d\x75\xa1\xd7\x7f\xff\x97\xeb\xec\xc5\x8b\x4f\x83\xc9\x74\xf3\x0a\xfe\x62\x3f\x1c\xea\x4f\xbd\x16\x59\x99\x90\xf7\x79\xf3\xcf\xb0\xf9\x21\xfe\x00\xd3\x83\x1f\x40\x9f\x0c\x29\xbc\x60\x1e\xa5\x05\x38\x13\xb2\xd4\xd7\xcb\x4b\x81\x53\x82\xa1\x53\x00\x28\x11\x92\xdc\x4d\x63\xce\x22\xa9\x11\x3d\x30\x5a\xc6\x63\x10\x90\x27\x90\xdf\xc2\x7c\xe9\xc7\xda\x80\x6f\xab\x6e\x28\xfb\x98\x37\xe0\x96\x19\x06\x4b\x53\x74\x3d\x5d\x03\xd5\x5d\x69\x9c\x66\xbd\xef\x4b\xb6\x13\xb6\x96\x2a\xa7\xde\xa5\x5d\x05\x62\xdd\x48\xd2\x5c\x62\x3d\x85\x53\x58\x06\x1b\x62\x91\x0a\xf1\x46\x37\x80\x72\x8a\xd7\xf2\x42\x34\x13\x35\x67\xea\x96\x31\x61\xac\xa1\x01\x8d\x6c\x45\xd8\xb0\x60\x5f\xdd\x79\x43\xd6\x8b\x9c\xcf\xf5\xef\xb0\x49\xf2\x66\x46\xe0\x0b\x32\x97\x9a\x79\x12\x61\x8a\x7c\x8a\xe6\x37\xbe\xfa\x7a\xaa\x51\xca\x58\x37\x3d\x32\x77\xa5\x50\x5b\x37\x9d\x1c\xec\xfb\x55\xff\xbe\x5f\xd5\xfa\x1e\x03\xe9\xf3\x0d\x60\x96\x59\xf8\x06\x05\x12\x3c\x63\xac\xc8\xea\x80\xe1\xc3\x4f\xff\x93\x96\x86\xb2\x5b\xe1\x9d\xb9\xd9\x7e\xc3\x66\x3a\xe5\xd1\xb1\x50\x51\x7e\x61\x76\x3a\x8b\x0d\x38\x70\x94\x4b\x6e\xd5\xdf\x11\x7d\x0d\xca\xc3\x5f\x52\x79\x58\xae\x4d\xf8\x18\x3a\x44\x3d\xc2\x11\x8e\xb0\xad\x69\x12\xdd\x97\x1e\x7d\xa2\xaf\x72\xa2\xa3\x56\x74\x5e\x6f\x07\xe5\xe2\xa0\x5c\x1c\x94\x8b\xff\x7e\xca\x45\x17\x43\xf4\x54\x31\xd6\x31\x4e\xf1\xec\xae\x77\x6c\x30\xa1\xb5\xf1\x64\xa6\x6a\x56\x17\x3b\x76\x62\x8b\x6b\x89\x10\xaa\x12\x18\x05\x0a\x9c\x9c\xb9\x5b\xc1\x76\xab\xcf\xed\x9c\x41\x86\x76\xfc\xc6\x2b\xcf\x42\x08\x28\x6a\x4d\xdc\x73\x8e\x55\xd2\xd7\x31\x55\x1c\xe2\x67\xb6\xc8\xbb\x4a\x4d\x38\x48\xc2\x22\x46\x53\x33\xb4\xaf\xd3\x35\x4f\x15\xbd\x61\x50\x3a\x51\x53\x13\x73\xb0\x61\x14\x5a\x8c\x72\x0f\x65\xd3\x8e\x40\xd5\x04\x7d\xb7\x6f\x1a\x19\x12\xbd\xa5\xd5\xdf\x0c\x60\xab\x3f\xfb\x62\xbb\x61\x26\x03\xdb\xf2\x0b\xb2\x2d\x9e\xa2\xeb\x8f\xc0\xba\x58\x07\x8f\x62\x94\x2a\xff\x52\x6f\x51\x67\x62\x1a\x0b\xc4\x17\x8c\x4c\xbd\xc9\x63\x72\x33\x65\xa7\xb7\xda\x0a\x2a\xa1\x4e\xc6\xcf\x26\xd7\xd7\x3b\x93\x1c\xa2\x9c\x06\x0e\x69\xe0\x90\x7e\x69\x0e\xa9\x7e\x83\xdb\xe2\x9c\xf0\xd3\xb9\x87\xbe\x3a\xb7\x7d\x07\xe6\x08\x50\xa8\xff\x8e\xd7\x67\xea\x36\xb6\x0e\xef\xe6\x92\xeb\xb9\x19\xb3\x9b\x61\x82\xf2\xd9\x34\xe8\x9f\x92\x4c\x08\xaf\xa6\xb9\x8d\x89\x30\x5d\x7e\xfd\x76\x72\xd2\x39\xdb\xa2\xa9\x9d\x2b\xfc\x6d\xf4\xa7\x8d\x93\xeb\x31\xfc\x4c\x37\xe9\x37\xbc\x6e\x6a\x37\xcd\xa0\x45\x28\x9d\xf2\x31\xb3\xc8\x03\xf2\x2f\x19\x0d\x7d\x96\x9b\x32\x97\x5a\x6a\x9d\x27\x16\x31\x65\x7e\x53\xbe\x14\xc0\x80\x0b\x55\xf4\x4b\xd6\x7c\x59\x8a\xe8\xad\xcc\x4d\xc2\x67\x26\x2f\xa3\x5c\xc7\x52\x80\x29\x34\xcd\x82\x95\xe6\x29\x31\xed\xb9\xa9\x99\x6d\x11\xf7\x2d\xe5\xfa\x96\x2f\x64\x83\x8e\x2f\x08\x58\x9a\x27\x6c\x6c\xaa\x2b\x44\xba\xb4\xf9\x50\xa3\x4e\x74\x86\xad\x7c\x8b\xcd\x48\xc8\x82\x88\x26\x2c\x35\xee\xb1\xe6\x6b\xe7\x2c\x3b\x3e\xed\x90\xfb\x6d\x27\x36\x79\x60\x2a\x7f\x56\xa6\x12\xb2\x76\x3f\x7a\xd4\x3c\x1c\xee\xd6\xb8\xf9\x7a\x8b\x3a\x53\xe9\x99\x6b\x95\xa9\xac\x37\xf9\xd9\x98\x4a\xbc\xc0\x3b\x05\xd0\xc3\x27\x03\x43\x39\x30\x94\x03\x43\xf9\x4b\x33\x94\x75\xfc\xd3\x15\x38\x8f\xf7\xfd\xbe\xa1\xf3\x51\x24\x6f\x27\xd3\xc9\x74\x4a\x21\x71\xf1\xeb\x44\xae\xbf\xb3\x45\xfc\xef\xe1\xb9\x73\xbd\x77\xd4\xd6\xa3\xa5\x1c\x45\x48\x22\xcc\xde\xd7\x93\x09\x51\x09\x09\x25\x49\x86\xa9\xf4\xc3\x44\xc6\x98\x63\xab\xc8\x8b\xc5\x42\xa2\x12\xba\xd0\xc2\x31\x86\xca\xd8\xa1\x7c\x7d\x16\x51\x8c\x50\x1c\xe0\x07\x9f\x43\x45\x2b\x87\x02\xe0\x82\xac\x61\x0f\x0b\xaf\xc6\x2e\x1f\x00\x60\x98\xe4\xec\x17\x83\xd8\x6d\x7a\x95\x04\x27\xa9\x3a\x5e\xb1\xe0\xa6\x33\x88\xf5\x8a\x29\x82\x98\x68\x14\xb2\x54\x71\x01\xe7\x79\x04\xa9\x13\x89\x14\xe4\xe8\xbb\x2b\x72\x7a\xfc\x49\xee\x18\x98\x8e\xc9\x91\x61\xaa\x7c\xd3\xdf\x94\x23\xe8\x31\xe0\xe4\x7a\xef\x44\x9e\x4b\xb5\x82\x02\x39\xfb\xe4\x7a\xcf\xc4\xca\x5e\xef\x11\x99\xe8\xb7\x26\x27\xde\xf5\x5e\x47\xfe\x87\xbc\x1b\x5f\x3c\x2c\x13\x99\xaf\xc8\xda\xa8\xf8\xca\xf7\x12\xa7\xe2\xfd\x0c\x67\xb5\x9b\xb0\x31\x8f\x17\xc7\x52\x08\x16\x28\xcd\x78\x9d\x49\x1a\x7e\x45\x23\x2a\x02\x2e\x96\x7d\xc3\x8a\xbf\x9a\xbe\xee\xe8\x02\xfd\x65\xb9\xc8\xb3\xe8\x79\xad\xde\xfe\x83\x5c\x2e\x56\x1f\xe0\x40\x7a\xc7\x15\x5f\x33\x02\xe9\x00\xe7\x30\x1c\x4b\x9a\x2d\xf5\xe6\x33\xcf\x37\x20\xaa\x1a\x45\x74\xee\x77\x01\x75\x26\x4a\x45\x3a\x7c\x9d\x26\xd5\x1a\xbb\xb6\x1e\xac\xc9\x42\x41\xf8\x3a\x4e\xe4\xc6\x30\x37\x31\x4b\x40\x03\x20\x02\x38\x62\xb1\x0c\x47\x4a\x8e\xda\x22\xf6\xf2\xa5\xa6\xb8\x30\x8c\xa3\x4a\x18\x4d\xd1\x49\xd9\x96\xbd\xe2\xe0\x12\xa0\xe7\x1e\xb2\x79\x86\x19\x39\xe2\x2c\x89\x65\xaa\x0f\x7f\xfb\x01\xbd\x57\xac\xf6\x3c\x5e\x68\xa9\x73\xb2\xa0\x01\x9b\x9a\x5c\x07\x3d\x0e\x49\xf5\x1b\x64\x3d\x12\x06\x0c\x31\x61\x77\x9a\x77\x00\x9e\x10\x6b\x4a\x9b\xd3\xe0\x45\x64\x20\xce\x39\x59\x20\xf1\xa4\x18\x96\x8f\x2a\xa5\x37\x46\x9f\xb5\xbc\xaa\x31\xe4\x18\x24\x32\x09\xc1\x3d\xca\x0b\x6e\xaa\x82\x55\x8e\xf7\x94\x3c\xc8\x39\x15\x93\x02\x70\x6c\x2c\x38\x82\xb1\x30\xc5\x8c\xd7\xf0\xc5\x8a\x39\x33\xf1\xc2\x58\x2f\xc7\x86\x55\xda\x14\x96\x39\x82\x8d\xe4\x6d\x8a\x45\xae\x2b\x21\x94\x3d\x3a\x5d\x51\x11\xea\x03\x20\x02\xb9\x06\x66\x2d\x9f\x3d\x18\x46\x62\x99\xa8\xd4\x78\xe6\x98\x93\x09\x8b\x92\x99\x4a\xb9\x3f\xb4\xdf\xd5\x32\x11\x32\xc9\xc5\x7b\xcd\x72\x15\xeb\xf5\x25\xe2\x7c\x96\xa5\x19\x8d\x22\xaf\x13\x9d\x16\x5a\x42\x50\x46\x8d\xc7\xe3\xe7\x6e\xae\x80\xff\x7a\xc6\xc4\xf8\x3f\xff\xce\xd4\x6a\xfc\x9f\x7f\x57\x99\x88\x5e\xfc\xc7\xf3\x5d\x93\x21\xe8\xe3\x88\x57\xe1\xad\x70\x0a\x76\xf5\x39\x91\xf5\xcf\x20\xc5\x66\x9e\x9d\xd3\x9c\x2b\x66\x8a\xcb\xdf\xe8\x9b\x1e\x8d\x33\xa7\xfd\xbb\x79\xbc\x78\x67\x73\xa4\xfa\xd6\x9e\x6e\xd3\x40\x45\xee\x7d\x75\x3f\x07\x1f\x33\xb9\xd0\x87\xd5\x9e\x2f\x26\x52\x13\x10\x40\x55\xa9\xad\xaf\xf7\x2c\x35\xf9\xec\xf5\x06\xa1\x92\xc5\x1c\xb5\xa7\x4f\x53\x44\xb7\x34\x4e\x6d\x41\x0d\xdd\x88\x8b\x54\xcb\x43\x90\xe7\x87\xc8\x5b\xaf\xc3\x64\xfd\xea\xe8\x6d\x66\x26\x30\xb3\x18\xe0\xa3\xb3\x3e\xcc\xe3\xc5\x0e\x54\xe6\xd4\x6e\x4b\xb1\x45\x66\x87\x80\xb3\xb1\xf1\x10\x7a\xf6\x9a\xdf\x8e\x23\x2a\xfc\x5e\xd3\x55\x9e\xe5\x3e\xd3\x36\x51\xa0\x26\xaa\xf4\x4d\x8f\xa0\x06\x58\x42\xfd\xb3\x12\x5d\x2c\x88\xe0\x4a\xde\xba\x24\xc0\xb7\x0c\xf7\x32\x97\xac\x41\xe0\x94\x6d\x6e\xfc\x33\xe3\x4b\x6e\x51\x81\x13\x99\xed\x0d\x00\xa1\x09\x24\xdb\xbd\xa5\x49\x88\xf9\x89\x8d\x17\x5b\xce\x04\x6a\xbc\xb0\xb0\x89\x66\xaf\xf7\x66\x90\x7c\xf7\x7a\x0f\xbd\x26\xe7\x52\x79\xbd\x07\x8d\x08\x87\xe5\xe4\x59\x1a\x4b\xa1\x37\xcb\xa0\x2b\x9e\x9a\x14\xbe\x38\x60\xc5\x75\x0e\xc6\xf3\xde\x2c\x3b\x85\x93\xab\x4b\xcd\xa6\xe1\x77\x38\x8e\xaf\xeb\x79\xa6\x4c\x9b\xf2\xf8\x0d\x0a\xec\xb4\x28\xa5\x15\x6d\xbd\x4e\x7d\x7a\x66\xc2\x8e\x6f\xf6\xaf\x68\xe2\x45\x84\xe0\x2a\x19\xc7\x8c\x62\x7a\x73\x7b\x64\x27\x53\x2b\xab\x71\xb1\x04\xf7\x43\xdd\xf2\x4b\xab\xfd\x00\xf6\xa4\x21\x16\x25\x66\xc9\x9a\xa7\x29\xdf\x30\x72\xf6\x89\x43\xab\x8a\x33\x8e\x3b\x74\x0f\xac\xaa\x59\x9b\x69\x22\xef\xb6\xa7\x46\x56\xbf\x8a\xf4\x91\xea\x79\x63\xbf\x9a\xbe\x6e\xef\xc0\x7f\xf0\xfd\xf4\xde\x61\x08\x9f\xa6\x84\xad\xe7\x0c\x4a\x50\x40\xf6\xea\x58\x8f\x60\x34\xa7\x29\x29\x0f\xa5\xf9\x75\x21\x9b\x1d\x25\x9b\x2f\x78\x3e\xf7\x49\x8c\x75\xa7\x8e\x75\xc3\x2c\xde\x01\x5f\x75\x74\x51\xc2\x63\x08\x0b\xdf\xe2\x11\x3c\x0e\x9e\x8b\x13\x89\xda\xea\x68\x4b\x02\xdd\x23\xc9\x62\x53\x07\x29\x55\x09\xa3\x6b\x97\x27\x2d\x20\xf4\xf4\xa9\xdf\x55\xd8\xcc\x8d\x04\x2b\xca\x81\xd5\xbc\x42\x92\x6f\xa2\xf6\x8b\x19\x2e\x5c\x70\x1b\x27\x54\x63\xe5\x79\x2c\x36\x33\x87\xe0\x1b\x2e\xae\xb6\x22\x98\x42\x0d\xc6\x9d\x60\x5f\xfa\x72\xbf\x01\xd9\xd6\x6a\xe9\x19\xd0\x63\xc6\x29\x02\x62\x83\x75\x7c\x46\xb5\x53\xae\x3e\xcc\x29\x4d\xa1\x27\x7d\xea\x1c\x51\x5f\xb7\x05\x18\xc7\x84\x9c\xc9\x5b\x96\x58\x85\xcd\x52\x5f\xe3\x84\x85\x59\x80\x89\x99\x46\x59\x0c\xfa\x49\x11\xe8\xa6\xdf\xf0\xe5\x2a\x6f\xeb\xc7\xb2\xfa\x4b\xab\xdf\x9d\xbe\x25\x59\x4a\x97\x8c\xcc\xb7\x64\xae\x79\x37\xcd\x22\x66\x31\x59\xcb\x04\xd1\x79\x09\x4b\xbc\x4c\xef\x81\x21\xce\xe4\xf2\x8c\x6d\x98\x2f\x5e\xa4\xb6\x23\xb6\x6d\x09\xea\x90\x50\x0b\x72\x5c\xe7\x59\x1e\x1d\xde\xa3\x01\x17\xe4\xa2\x64\x01\xfb\x35\xa2\xe3\x0b\x2b\xbf\x5f\x2c\x16\x28\xb9\x4f\xc4\x42\xea\xbf\x50\x6e\xd7\xf2\x91\x16\xda\x9b\xe4\x44\x28\x65\xad\x29\x20\xc3\x02\x81\x76\x93\xf5\x60\x2a\xa1\x01\x23\x31\x8f\xd9\xbe\x35\x67\x69\x6e\xce\x04\x15\x32\x5b\xdf\xc1\xd7\xed\x7b\x15\x40\x4d\x08\x0d\x32\x14\xd2\xde\xbb\xac\xd3\xc5\x62\xf1\xc3\x78\x47\xe0\xc3\x6d\x9d\x00\x2f\xd7\x8b\xf7\x38\x2e\xb7\x6f\x12\xb6\x57\x52\xde\xb8\xbc\xee\x87\x9f\xfe\xa7\xc1\x46\x18\x8f\x70\xdb\x2a\xf8\x43\x1f\x36\x64\x31\x21\x43\x3d\x2a\x9a\x8c\xc1\x58\xc9\xd8\xec\xb2\x57\x00\xd3\xdf\xeb\x7d\x9a\x6f\x81\x44\x8a\xb0\xde\xc3\x5c\x2a\x25\xd7\x63\xcb\xc4\x1a\xbb\x6f\x4a\x17\x79\xa6\x4e\x2f\xa3\xc0\xb5\xd0\xcd\x15\x89\x13\xb6\x01\x53\x26\x72\xb0\xe0\x94\xaf\xbb\x37\x72\x11\xba\xf0\xcd\xb7\x31\x4d\x53\x93\x18\x67\x2b\x33\x92\xde\x72\xe5\x8f\x89\x50\xd2\xcc\xd4\xe0\x93\xb9\xa9\xb8\x93\x9b\xc8\x31\x74\x0b\x87\x30\xa1\x7d\x06\x4c\x68\x61\xf5\x32\x60\x40\xc8\x40\x4f\x30\xdf\x42\x05\x79\xd4\xc3\x27\x32\x5b\xae\xec\x81\x34\xe2\x24\xf4\xbc\x8f\xc3\xdc\x9a\x3c\x3d\xbe\x3e\x4d\x73\xcc\x8a\x9e\x27\xcc\x2f\x56\x5a\x9c\x45\x84\xec\xae\xa8\x20\xbf\x88\x58\x32\x6e\x67\x7f\xcc\x79\xb6\x34\xb2\xd8\x99\x5c\x9e\x24\x12\x92\x94\x37\xf6\xd2\x40\x2f\xa0\x9b\x37\x6c\x2d\x93\xed\x34\x91\x0b\x1e\x31\x4f\x15\xba\x5e\x73\xb9\xe2\x6b\xd0\x83\x1e\xd3\x28\xf8\x3a\xa1\xf1\xea\x1b\x2a\x96\x47\x0b\x75\xbf\x95\xd9\xde\x4e\x2c\x90\xee\xdf\x1b\x6c\x92\xe5\x70\x66\xf2\x1b\x99\xaa\xa3\xa0\x41\x75\x5c\xbe\xff\x27\xcd\xdf\xba\xb8\x00\x94\x0a\xfa\x48\xa7\x0d\x6a\x92\x5c\xc5\xa0\x9b\x2e\xa5\xbd\x3a\xb4\xd0\x09\xb8\x95\xf9\x8b\xa2\xad\x2a\x65\xd1\x82\x3c\xa3\x8b\x06\x8f\x11\xc0\x0f\xa6\xef\x15\x37\xf2\x76\xde\x15\x43\xa6\x18\xcf\xef\xf3\x31\xf9\x6a\x9b\x47\xc5\x1c\x7b\x8b\xfc\x92\x3c\x35\x95\x5f\x95\x9d\x77\x9d\xfa\xa6\x09\x38\xdd\x1f\x4b\x98\xa3\xbb\x0f\x3f\xfd\xf3\xe4\xf2\x62\xfa\xe1\xa7\x7f\x81\xef\x80\x14\x39\xbe\xb8\xa5\x26\xf2\x3f\x8a\xe4\x2d\x49\xe5\x9a\x69\xac\x46\xa3\xa8\x4d\xe0\x80\xd9\xb9\xa0\xd3\xf3\x31\xf5\x3c\x20\xfa\x8d\x26\x74\xcd\x8c\x70\x77\x79\x3a\x7b\x7b\x09\x65\x49\x8e\x8e\x8f\x4f\xa7\xb3\x31\x79\xeb\xcf\xce\x65\x1a\x72\x9c\x18\xc4\x3b\x41\x69\x10\x79\x2b\xca\x58\xc9\x5d\xd6\xe4\x7c\xfa\x76\xa6\xd7\x05\xa8\xea\xcb\x16\x7c\x02\x88\xc4\xe2\x62\x65\x71\x69\x15\xdb\x53\x85\x3d\x99\xc0\xba\x0f\x3f\xfd\x13\xa7\xf5\xe1\xa7\x7f\x79\x05\x1a\x34\x72\xd8\x7d\xa9\x4d\x88\x48\x83\xcd\x57\x34\x05\xf7\x14\xf4\xd2\x8e\x13\x69\x5d\x4c\xec\x26\xfb\x7a\xf7\x1f\x29\x00\xa0\x01\x26\xc8\x65\x22\x77\xaa\x80\x62\x22\x88\x93\xed\xd4\x1a\xf7\x2f\x97\x91\x09\x9c\x73\xdf\x9c\x9a\x26\xd0\xae\xa6\xd0\x28\x71\x67\x9c\xcc\x36\x3c\x60\x97\x32\x53\x9a\x11\x86\x2c\xad\xdd\xa1\xa8\x3c\x2d\x59\xe4\x21\xc5\x45\x91\xe4\x95\x86\x46\x27\x60\x18\xb4\x35\x0b\xcd\x30\x5e\x6e\x14\xf2\x63\xec\x6b\x2a\x66\x2f\x2b\x1c\x65\x4b\x7e\x2e\x67\xd3\xcb\x8b\xd9\xbb\xaf\x2e\x2e\x66\xc8\xd5\x45\x6c\xa1\xc8\x3c\xa2\xc2\x97\x4d\xab\x35\xd9\x87\xb3\x56\x2c\x1f\x61\xa2\xf8\x7a\x2d\xd8\x72\x11\x68\xde\xb6\x71\xb8\x46\x3a\x97\x62\x97\xc5\x96\x30\x93\xa7\x53\x9e\x3a\x8b\xdc\x27\x11\xa3\x1b\x63\x64\xf7\xca\x09\xc0\x82\x81\x17\x16\x96\x48\xf3\xf4\x98\xf9\xb3\x70\xb6\x1e\x0c\xa4\xb4\xc7\x52\x08\xcd\xd3\xde\x4c\x04\x84\xe3\x37\x99\xdf\x5a\x69\xae\x3d\xcd\x97\xa0\x6c\xe6\x62\x79\xc2\x22\xea\xf3\x59\x6b\x9b\x50\xad\x93\x66\x19\xbb\x7d\x32\x46\xb9\x76\x2e\x43\x96\x9e\xf1\xb4\xd3\x4f\xec\xd4\xfd\xe0\x78\x72\x72\xa9\x3f\x2a\x27\x4a\xd7\xbf\x3e\x05\x4b\xba\xed\x7d\x24\xa4\xad\xb6\x0d\x35\x15\x5b\x2c\x14\x6b\xba\xb5\xfb\x85\x5a\xa8\x9c\x18\x51\x91\xa7\xe0\x60\x8e\xf2\xcb\xbc\x6d\xc8\x95\x67\xcc\x98\x1a\xc1\x06\x45\x0a\x94\xdd\x52\xe2\xb5\x67\x01\x68\xc9\x3c\xb8\xa0\x3c\xd2\x8c\xf6\x44\xcc\x65\x26\x42\xcd\x3e\x4c\x65\xd2\x9d\xa4\xf7\xe9\xeb\x86\x0f\x11\xce\x20\x35\x8d\x42\x16\xf1\x35\xd7\x6b\x33\x70\xf7\x4d\xfd\xed\xc9\xf4\x60\x76\x3c\x35\xba\x4c\xa0\x2b\x8e\x56\x04\xa9\xad\xcf\x14\x02\x94\x3d\xa7\xf7\xbe\x9e\xa5\x20\x3c\x49\x58\x1a\x33\xac\x00\x5b\xa4\xb8\xc8\x20\xd1\xb3\x25\x12\x16\x5d\x98\x5c\x0c\x9a\xc6\x6f\x24\xf7\xd2\x19\x1a\x04\x90\xb6\x06\xc8\x47\x90\x61\xde\x1f\xb9\x58\x10\x8a\xf3\x01\x16\x43\xcf\x36\x49\x58\xa0\x2a\xce\x19\xe4\xb4\x29\x08\x5b\x26\x6e\xc0\x7e\x91\x1a\x98\xa6\x44\x05\xb1\x13\x7f\x3f\xc2\x90\x64\x0c\xc3\xd7\x9c\x42\x16\x36\xbe\xf6\x12\x9f\xd7\x5a\x12\xa3\xc1\xcd\xa8\x14\x9b\xb4\x6f\xd2\x34\x16\x34\xc1\x46\x23\x17\x19\x44\xb9\xb2\x28\xb0\xc9\xbd\xf4\xc3\x4f\xff\x54\x41\xfc\xe1\xa7\x7f\x8d\xc9\xac\xb0\x8b\x50\x60\x26\xe0\x90\x20\x8c\x60\xa3\xf7\x73\x25\x29\x9a\xea\x85\x6c\x50\xea\xcf\x9c\x72\x0d\xd8\x14\x8e\x44\x4a\xd2\x74\x65\x4d\x23\xfa\xda\x9d\x7c\x73\x3c\x2d\x19\x2e\x82\xf8\xf0\x93\x4f\xbc\x16\x69\x0d\xb3\x57\x5f\xec\x43\x93\x97\xbf\xff\x03\xfe\xf1\xc9\xa7\xc5\x5f\x5f\xbc\xc0\xbf\x5e\x7d\xf6\xd9\xa7\xe6\xaf\x57\xaf\x5e\xe5\x7f\xfd\xde\x47\xb3\x7b\xe7\x92\x96\x4a\xda\xcc\xeb\x81\x5c\xcf\x8d\xa7\x03\x18\x8f\x73\x82\x2c\x42\x80\xd2\x7e\xa3\xe2\x9d\xe4\xbe\x0d\x45\x40\xbb\xf7\x64\x75\xa5\x91\x89\xfd\xe9\xe2\xcd\x9e\xb6\x11\xe7\x7c\x80\x26\x1e\xc4\xed\xa3\x39\x3f\x49\x6b\x0e\x8f\x51\x63\x4e\x8c\x51\x3e\x72\x33\x3a\xbc\x47\x22\x56\x8b\x0e\x2f\x32\x75\x4f\x7c\x58\xfb\xb2\x19\x21\x7a\x71\xd6\xa2\x17\x42\x94\x99\x5a\x4a\x17\x21\xe6\xb5\xf7\xdb\xb8\x63\xb4\xfa\xed\x8e\x12\x9b\x94\x24\x1a\x4b\x7e\x1c\x4a\xf4\xf5\xac\xb1\xe4\xbf\x3f\x4a\x94\xe6\x9c\x3c\x0c\x4e\x94\x20\xdb\x33\x15\x84\xa0\xfd\xca\x33\x92\x9b\x33\x24\x8d\xf9\xd9\x39\x4d\x5e\x4c\xa5\x05\x7f\xbd\xc6\x25\x53\x7a\x2b\x61\x1b\x51\x84\x55\x41\x58\xf2\x64\xd0\xa7\x50\x6f\xb4\x46\xbb\x88\x7f\xcf\xaf\x3a\xa4\x9d\x7b\xa3\xdb\x46\x24\xfe\xf9\xa7\xfb\x88\xcc\x07\x8c\x5c\x1a\xe0\xdf\x0a\x23\x33\xaa\xb2\x84\x9d\x30\xc5\x02\x75\xb1\x61\x49\xc2\xbb\xf5\xe2\xaf\x7d\x1f\xb9\xd5\x79\xa5\xfd\x4d\xdf\x36\x33\x84\xff\xa4\x28\x66\xd4\x40\xdf\x9a\x6a\x4a\x89\x8b\x8d\xb8\xb0\xb8\x9d\xa4\x2c\xa6\x98\x94\x0e\x98\x5d\x40\x7b\xc2\xab\xc1\x82\xbc\x6f\xe9\x3e\x61\x77\x74\x1d\x47\xec\x4b\x72\xbd\x77\x75\x7e\x34\x7b\x9d\x45\xd1\xf6\x92\x8a\x50\xae\xff\x08\xa5\x1f\xdf\x1c\x5d\xfd\x1f\xf7\x47\xf0\x6a\xd8\xbf\x64\x10\x07\x72\x95\xc5\x70\xb9\xcf\x64\x70\xf3\x47\x6f\xba\x46\x52\x24\xa4\x04\x33\x09\x7c\x7e\xbd\x87\x64\x64\x21\xd1\xe9\x3b\x5f\xfd\x3e\xa6\x0b\xd2\x4d\xa5\xb1\x92\x34\x5b\xa4\x20\xd5\x7c\xa6\xe4\x08\xe1\xb3\xb3\xac\x0a\x09\xfc\x78\xf0\xfd\xc9\xb4\xaf\xdd\xf5\xeb\xea\x17\xc6\x80\x99\x12\xf3\x86\x7c\x7f\x32\x25\xa9\x2c\x8a\xd1\xd2\xc4\xef\xd9\x0a\x28\x30\x94\xe2\xe9\x53\x45\x52\x04\x22\x7c\x2b\x17\x0b\xd0\xe4\xc8\x84\x84\xa0\xee\x06\xed\x3f\x16\xa5\xd0\x78\xf9\xfb\x93\x29\xd2\x45\xaf\xfe\xd0\xd8\x4d\x99\x3e\x0b\x4c\x84\x2c\x2c\xcc\x13\x1a\xab\xc2\x68\x71\x22\x37\xfa\xcc\xcd\x99\x02\x35\x52\xe1\x3a\xd8\x30\x4f\x91\x2b\xf0\xc6\x1f\xed\xdc\xb2\x62\x34\x52\x2d\x35\x65\x7a\x7c\xac\x59\x9a\x1d\x75\x00\xf8\x61\x43\x4d\xa2\x56\x64\x96\xfb\xa0\x9d\xde\x05\x51\xd6\xc3\x14\x36\xa9\x7c\xe0\xf2\x5d\x95\xbb\x29\x17\x7d\xdc\xf0\x4a\xde\x87\xcc\x74\x0a\x1a\xad\xb5\x14\x5c\xc9\x3c\xcd\x43\x59\x12\x1d\x37\x59\x21\xcb\x14\xbb\xe4\x0f\x66\x5c\x62\x97\x42\xea\x9f\x0a\x3b\xff\xd3\xa7\x64\x32\xfd\xf6\x8a\x84\xd9\x7a\xed\x75\xc1\xcb\x97\xb1\x6f\xbd\x27\x0d\x8e\xb3\x81\x2e\xd1\x96\xcc\xb7\x25\xd3\x74\x59\x9d\xed\x65\x17\xcd\x5a\xd7\x59\xa4\x78\x1c\x39\x8e\x90\xa6\x48\x9c\xa9\x53\x6d\xf3\xea\x9b\x58\x1a\xb0\xfb\x36\xb0\xb5\xe6\xa2\xa5\x1e\xbf\xd0\x14\x8b\xa8\x78\x5e\xc0\x3c\x81\xaa\xde\x26\x34\x6e\x32\x2f\x20\x38\x01\xdd\x3e\x7d\x7a\xf0\xf4\x29\x76\x67\x70\x2b\x59\xa1\x2a\xce\x18\xe2\x9f\x3e\x3d\xf8\x2f\x0d\x8b\x83\xfd\x0d\x53\xab\x97\x4f\x3d\x97\xc8\xf8\xd3\x5b\x18\xa0\xf4\x9a\xbb\x43\xc2\x6e\xcd\xd9\x92\x0b\x3b\xa2\xee\xee\xe9\x53\xcc\x4a\x16\xa5\xb2\x49\xe9\x57\x80\xf0\xe9\x53\x33\xb6\x7b\xa7\x61\x83\x78\xbc\x49\x5f\xec\xaa\x0f\xce\x3b\xc6\x2a\x45\xfd\xaf\x09\xb6\xb7\x6a\xd2\xf2\x16\x9b\xba\x4d\x26\x1a\xd4\xd6\x67\xf1\xab\xc4\xea\xa6\x17\x70\x4d\x05\x6e\x57\xcb\x02\x19\x4f\x57\xa8\x77\x5e\x17\x52\x4a\xde\xba\x15\x56\xe9\x98\x9c\x4b\x05\x38\x82\x30\xb1\xe1\x89\x14\x58\x0d\x4a\x9a\xdc\x93\x54\x90\xb9\xa6\x45\x6b\xa6\x68\xb4\x6f\x52\x3b\x07\x2b\x96\xaa\x84\x2a\x99\x78\x27\x1c\x38\xb5\xe8\x35\x8a\x88\x35\x47\x96\x70\xaa\x58\xb4\x2d\x9f\x1d\x99\xb9\xc5\x33\x90\xcb\x95\xc1\x4d\x43\x6c\xb4\x46\x63\x26\x28\xd0\xd8\x77\x18\xf9\xf0\xd3\x7f\x07\x34\xe2\x1f\x7e\xfa\x1f\x37\xe0\x4c\xf7\x7b\x11\x33\x71\xa5\x68\x70\xe3\x7e\xe8\xbd\x39\xd6\x4b\xf5\xc3\x4f\xff\xad\x68\x9c\x77\xe5\x9e\x1e\x3d\xc6\xbd\xcf\xcd\x25\x5b\x24\x2c\x5d\xc1\xb9\xd8\x78\x73\x84\x96\x0e\xd0\xa4\xe1\xbb\xbc\x92\x1c\x78\xe4\x10\xaa\x0c\x42\x6a\x14\x36\x12\x96\x06\x54\xa4\x26\xdb\xa0\x7b\xc7\x24\xd9\xb0\x84\x2f\xb6\xc6\x9b\x15\x12\xbf\x60\xd9\x78\xfc\xc6\xd4\x89\xf2\xe2\x58\xe3\xb2\xab\x91\x5e\x6a\xd2\x72\xe7\xc7\x7b\x83\xb1\xcf\x2f\x76\x64\x56\x78\xcc\x5b\xdc\xc3\x5a\xe9\xa6\xfe\xf4\xcd\xec\x6d\xf7\xa5\x9c\x4e\xa6\x6f\x66\x6f\x2d\x0c\xf5\x9f\xe0\xec\xa9\x88\x14\x8e\x2e\xd9\x18\x2a\xc6\xe4\x8a\xf9\xfd\x01\xcc\xd1\xd6\xab\xd6\x7d\x38\x6e\x40\x9f\x7d\xd6\x82\x59\x9a\x48\x70\xac\x0f\xdf\x8e\xe7\xe3\xe9\xc4\xf7\x55\xeb\xe9\x20\x09\xc3\x40\x1f\x3f\xaf\x19\x39\xde\x28\x70\x16\xaa\xf2\xac\x90\x06\x21\x18\xc3\x1c\x98\x10\x5d\xb5\x84\xaf\xdb\x79\x22\x6f\x98\xa8\xb9\x8c\x40\x36\x77\x38\x25\xa5\x58\x0c\x3b\x7e\x82\xcb\xea\x88\x0f\xfa\xc3\x8b\x9d\xbd\xae\xec\x08\x5f\xd1\xe0\x86\xd5\x02\x3c\x6b\x50\x9e\x94\x9b\xe7\x12\x89\x8d\x89\x9f\x9b\xdf\x35\xa7\x63\xe7\xae\xe9\x9a\x17\x12\x0c\xcd\x4d\x25\xb5\x02\x98\xb4\x96\xd4\x6b\xc2\xec\xb3\x8e\xd7\x3c\x52\x2c\x81\x18\xb7\x46\x57\x86\x3e\xfd\x68\xf1\xe6\x75\xb3\xcf\x47\xf5\xe8\xd5\x3f\x2a\x4a\x3c\x06\xb9\x58\xef\x9a\xc6\x7d\x10\x81\x2c\x60\x0b\x1e\xb1\x31\xf9\xb3\x66\x41\xe8\x16\xc2\x43\xd0\x64\x47\xc5\xd2\x90\x0e\xa3\x20\xca\x5b\x5b\x29\x80\xfb\x5d\x0c\x94\xa3\x97\xc9\x67\xf3\x6c\xe1\x10\x1c\xd7\xa0\xbf\xa6\x71\xcc\x30\xde\x48\x28\x89\x17\xa5\xc9\x6d\xcb\x04\x89\xb2\x44\x5f\x2c\x4a\x42\xbe\xc0\x1c\xd7\x24\xa6\x6a\x55\x0a\xcc\x38\x48\x32\x71\x70\x67\x64\x0a\x3d\xf1\xfb\x9e\x53\x0d\xe2\x69\x22\xe7\x6c\x07\xbc\xd0\xf0\xa5\xdd\x21\x70\xc7\xac\xa8\x3b\xbd\x1c\x07\xe6\xa4\x40\xb7\x4d\xaa\x94\x96\x5b\x31\x55\x70\x00\x8a\x8b\xb2\xe7\x03\xec\x0e\x5f\x98\x70\x2a\x21\xbd\x1c\x07\xdd\x50\x1e\xe9\xf6\xe3\xb2\xe3\xe6\x9a\xde\x58\xbf\x4b\x70\xaf\x34\x3e\xe6\x7c\x63\x04\x01\xbb\xfd\x0d\x22\xa1\xde\x17\x10\x06\xf7\xc1\x4b\x5d\x4b\x91\xd0\xcd\xf1\xf4\xad\xbb\x29\x9f\xbf\x58\xdf\x1b\x5f\x68\x68\xce\xf8\x9a\xc9\xac\xd3\x2c\x5a\xda\x01\xf3\x4d\x1b\xec\x01\xd0\xbe\x95\xd9\x78\xba\x12\x8c\xc1\x17\xf3\xc5\xbe\x83\x35\x41\xe5\x89\x1a\x4d\x9e\x16\x6a\x86\x46\x86\x00\x38\xfd\x74\x45\xbd\x3b\x08\xf7\x0b\x1d\x78\xa2\xa8\x8c\xee\x5b\xd2\xe8\x21\x47\xae\x37\xd1\xee\xd4\x18\x33\x2c\x1b\x07\xe7\x22\x16\x51\xcb\xe5\xb4\xb8\x48\xfb\x8d\x39\x98\x73\xb7\x7d\xdd\xa3\xbe\x4e\x26\x98\x40\x26\x79\x0e\x7d\x27\xce\x70\x2d\x33\x81\xc9\x06\x8d\xdf\x8b\x93\xcc\xda\xab\xfe\x4f\x6c\x8b\x85\x8d\xee\xc6\x09\xb9\xe7\xe5\x45\x9a\xf3\x39\xf7\x3d\x36\x6f\xa8\x96\xdc\x3e\x1e\x3d\xbf\xa1\xc9\xcd\x1b\x9a\x76\xc7\xf7\x4e\x2a\x1f\xd8\x83\xb7\xd6\x7f\xbb\xe2\xb6\xa9\xa1\xc0\xfd\x2a\xf5\xc9\x74\x86\x87\x42\xf7\x43\xe6\x1a\xa7\x62\x81\x82\xab\x22\xe5\x8b\xad\x56\xb9\x62\x77\x34\x64\x01\x5f\xd3\xc8\x66\x72\xd6\x07\xc8\x7b\x4e\x14\x89\x18\x4d\x15\xf9\x02\xfb\x84\x2c\xdb\xc2\x84\x0d\x23\x45\x0d\x22\x9a\xae\xac\x0b\xd9\xd6\x9c\xc0\xb5\x9d\x85\x5f\x22\xb0\xae\x26\x60\x62\xd9\xa6\x8a\xad\x4b\xdb\x78\xb7\x58\xbc\x80\xe7\xa1\x4b\xc9\xdb\xdd\x39\x3f\x9a\x5d\x18\x43\x51\xce\xb6\x23\x61\xbe\xe7\x76\x4f\x65\xaa\xbe\x4b\xb8\x62\xe0\x55\xb2\x33\xea\xf7\x7f\x5e\xe5\x0d\xc1\xc7\xaa\x11\x4b\x68\xde\x2e\xd4\x3b\x43\xc9\xad\xee\xaa\xee\xb0\x9f\xa7\x30\x0a\x56\x2c\x44\xd7\x35\x41\xd8\x9d\x4a\x28\x49\x98\xdf\x7d\x6c\x8e\x82\x58\x1e\x49\x4a\x30\xee\x1c\x82\x22\x61\x90\x5b\x8a\xa4\x3d\x88\xe4\x7c\xce\x12\x9b\xbb\xbf\x84\x87\x9a\xb3\x83\xa6\x4e\xe8\x85\x0c\x82\x2c\xd1\x04\xc9\x7e\x4d\xe3\x38\xb2\xa9\x54\x4b\x67\x05\x15\x87\x1f\x7e\xfa\x1f\x2f\x6a\x33\x46\xbc\x3a\xaa\x1c\x7f\x94\xf7\xbf\xed\x6a\x77\xae\xdf\xfb\xdd\x3d\xa4\x42\x23\x0a\xd8\x00\x2a\x90\x7f\x6d\x95\x9d\x62\x8f\xdb\x25\x80\xa6\x83\x53\xb2\x55\xee\x24\x01\x98\x99\xf8\xa7\x6c\x64\x02\xd4\x55\x28\x87\x8b\x46\x4a\xc9\x53\xa3\xa4\xd2\x4c\x35\xb0\x17\xa0\xb9\xc8\x3d\xc9\x5b\x3a\xcd\x05\xd7\x14\xd3\xbe\xde\xca\xe4\x86\x26\x60\x37\xc4\xb4\xbb\x67\x5c\x64\x77\xd6\xa5\x6c\x9e\x2d\x11\x1e\xb7\xd4\xef\xcd\xc8\xef\xd0\x66\x61\xda\xdb\x2c\x70\x9f\x8d\x5f\xbe\xcc\x15\x83\x9a\xfe\xa2\x82\x6f\xa3\x7f\xd7\x24\x69\x99\x30\xda\xe0\xe0\xbb\x35\xfc\xb1\xf5\x8e\xcd\x3d\x5b\x95\xdc\x27\x94\xac\x9c\xd8\x16\x8c\x3a\x2c\x87\xb2\x78\x2d\x7b\x29\x5d\x96\xd4\x1b\x2f\xef\x23\x4e\x6d\x5e\x19\x0b\xc9\xae\x32\xfb\x4d\x36\x67\xe7\x32\x64\x53\x99\xa8\x4b\xcd\xec\x77\xdb\xfe\xff\x54\xfb\x84\xac\x64\x14\xa6\xb9\xb6\x19\x8c\x0c\x09\xbe\x01\xf5\xec\xc2\x5f\xcb\xd9\x84\x77\x92\x22\xb8\x73\x4c\x2e\x34\xd6\xc8\x4c\x29\x55\xe4\x0a\xd0\xea\xe2\x46\x81\x35\xe7\xe5\x03\x3a\xc4\xe3\x4d\x6a\x82\x69\x10\xf4\x19\x72\x4d\x2c\x65\x76\x5a\xb0\x77\xa8\x25\x47\x06\x86\x8a\xb0\xd5\xe5\xd6\x78\x1e\xb8\x1b\xf5\xa9\x26\x66\x87\x9f\x7e\xf2\xfb\x57\xbf\xf7\x46\xbe\x34\x5b\x64\xa9\xd8\x5e\xf8\x6b\x2c\x8d\xba\x6d\x9e\xa3\x4e\x93\x66\x6c\xd2\x19\x90\xff\x1a\xff\xa7\xef\xfd\xdd\xa8\xa8\xfc\x33\xe2\x42\x8d\x64\x32\xc2\xde\xdc\xfc\x6e\xa5\xd5\x37\x5b\x2c\x23\xb9\xec\x2d\xb1\x9e\x15\x6d\x2d\xaa\x84\x5a\xfd\x5a\x70\xb3\x94\x0d\x77\x2c\x92\x4b\x8b\x99\x7c\x2b\x00\x66\xc5\xc1\x57\xc0\x2f\x47\x12\xd2\x46\x94\x04\xc0\x0d\x4d\x0e\x22\xb9\x3c\x70\xd9\xcc\x71\x24\xbd\xa9\x4c\xda\xc0\x1a\xc9\x65\x4f\x8d\xf3\x99\x6d\x59\x88\xe2\xcb\x92\x82\xd9\x39\x92\x58\x81\x4f\xcb\x4c\x4d\x5b\x79\x76\xf1\xb5\xc5\xd3\x65\x05\x68\x20\x47\xe8\xc8\x7d\x8f\x95\x5c\xb1\x0d\x4b\xb8\xda\xea\xbd\xe8\xb3\x1e\xb7\xbd\xbb\xaa\xd4\xfc\x4e\xe8\x5c\x82\x8c\xa8\x69\x5d\x24\x97\x9d\xe5\x04\x6d\x07\xa8\x74\x28\x16\x36\x11\x0b\xf9\x11\xeb\xb9\x0a\x12\xc6\xba\xa3\x48\xce\xaa\x5f\x3c\xd8\x9a\x52\x15\xca\x4c\x3d\xe4\x8a\xb6\xdd\xe8\xf8\xac\xd4\xfc\xe1\xd6\xb2\x4d\x9d\x4b\x48\xce\xa5\x09\x0e\x15\xd2\x5e\x34\x40\xa2\xa6\x55\xab\x82\xf0\x3e\x40\x58\xd3\x3b\x50\xad\x5e\xf1\xbf\x35\x27\x64\x6f\xc0\x92\x36\x57\xd9\x51\xe8\xcd\xaa\x5f\x06\xdf\x1b\xa7\xb1\x05\x9e\x5b\xc9\x2a\x21\xa1\x5c\x53\x2e\xd0\x52\xd4\x1c\xf9\x07\x09\x32\x4d\xf1\xc4\x80\x0a\x42\x45\xaa\x79\x9f\x6f\xdf\x90\xbf\x66\x2c\xe1\x0c\x93\xdb\x04\x91\xcc\xc2\x11\x17\x5c\xe5\xb3\x84\xd4\x6f\xb9\x81\xc4\xeb\xfd\x03\x2c\x06\xb8\x94\xa5\xb1\x14\x61\x1e\x56\xb2\xa6\xc1\x8a\x0b\x96\xcb\xf7\x42\x6e\xe8\x88\xc6\x9c\x3c\x93\x89\x26\x84\x6f\xe7\x99\x50\x99\xb7\x4b\xdb\x74\x64\xa7\xf1\x7c\x4c\x8e\xac\x7b\xd5\x02\x11\xec\xb3\x80\xa6\x50\x9c\x92\x89\x94\x2b\xbe\x61\xcf\xc9\x9a\x51\xd1\xac\x80\x28\xd9\x90\x4d\x79\x1f\x92\xc5\x20\x42\x9e\x1f\xcd\x30\x0a\xd2\xea\x53\xec\xc0\x80\xfd\x3b\x4e\xd0\xcb\x4f\x7e\x3f\x7e\x31\x7e\x31\x7e\xb9\xf3\x31\x32\x83\x34\xd8\xe4\xfd\x47\xc1\xba\x47\x01\x2b\xaf\xff\x36\x9a\x8e\x7c\xc6\xb8\xd7\xe8\x1f\xd1\x90\x05\x6a\x3d\xe7\x82\x85\x28\x41\x63\x09\xa4\x71\xe9\xa4\x3d\xe3\x0b\x80\xd0\x87\x9f\xfe\x5b\x5f\xad\x0f\x3f\xfd\xcf\xf3\x7d\xd7\x65\x27\x65\x5e\x08\x6b\x60\xe6\xa0\xdc\x47\x0b\xe3\xcb\x57\x7f\x18\x7f\xf2\xf9\x67\x63\xf3\xff\xc3\x2f\x80\x95\x77\x47\x3b\x74\x57\xe6\x15\xdc\x26\x82\xac\x35\x1b\x14\x98\x3a\x0d\x85\x18\xa7\x27\x69\xd5\xc1\x73\x66\x34\xc2\xa1\x83\xe2\xbe\xf8\xfd\xef\x3f\x6f\x89\xfc\x6d\xb8\xa3\x82\x2a\x2b\xac\xf7\x0c\x73\x71\xc4\xfb\x6a\x79\x2b\x90\x79\x2b\x31\x2f\x40\x5b\x8d\xd3\x49\x03\x71\x35\x51\x0d\x1a\x9c\x70\x28\x6d\xba\x0d\x41\xa8\x3b\x3f\x12\x4b\x19\xe5\x55\xab\x3a\xc2\x5d\xf2\xdc\x15\x95\x18\x1a\x37\xd4\x05\x7c\x35\x8a\x09\x1b\x31\x38\xb7\x09\xfa\x31\x40\x29\xd3\x88\x9d\x84\x14\xe4\x19\x07\xb7\x1b\xcb\xe2\x16\xd2\xf1\x9b\xa3\xab\xff\xf3\xf6\xf4\xf2\xe8\xe4\x94\x28\x9a\x2c\x99\xaf\x54\x6e\x6b\xf9\x0c\xaa\x72\x0e\xdf\xb3\x37\x4d\x3c\x6c\x27\x07\xdb\xc5\xbf\x56\x37\x3d\x9f\x84\xb3\xdd\x10\xd6\x05\xbf\x19\x71\x23\xcd\xf7\x47\x03\xb8\x49\x8d\x0b\x97\x79\x4d\x21\x30\x17\x0f\x48\x08\x1b\x9c\xfb\x17\x9f\x1f\xcd\x8c\xca\x34\x13\xd6\xaa\xdd\x12\x93\x3d\x67\x2b\xba\xe1\x32\xaf\x00\x6d\xbd\xb1\x52\x34\x75\x37\x06\x36\xb5\x33\xe8\xbb\xb2\xe7\x82\xa9\x88\x8b\x16\xbd\x78\x1b\xbc\xc1\x95\x56\x4f\xf7\x92\x2d\xfb\x84\xe0\x5e\x94\xdb\x5b\x34\x29\x4a\x35\x47\x97\x79\x02\x34\x8d\xdd\x13\xc5\x83\x2c\xa2\x5e\x61\x06\x29\x46\x51\x00\x11\x88\x21\x45\x5f\x9c\x91\xe9\x08\x55\x16\x07\x85\x0f\x41\x51\x7e\xb8\x99\x5a\x5a\xf7\xd4\xdc\xff\x21\x84\x20\xd6\x95\xbc\x85\x93\x00\x59\xef\x70\xf0\x67\x2b\x96\x30\x57\xe7\xa2\x25\xc7\xa8\xa9\xa4\x1d\x17\x28\x95\x8e\x83\xc5\xd2\x96\xb8\x73\x9c\x35\xf4\x8d\x84\xbe\x03\xb9\x8e\x33\x93\x62\xe7\xb9\xc9\xbc\x9b\xf9\xbd\x85\x8a\x94\x64\x7f\x41\xce\xfe\x87\x62\x57\xde\x19\x18\x20\x61\x76\x16\xa3\x19\x12\x96\xa9\x44\x8a\xb1\xfe\xd5\x3b\x5b\x33\x15\xcc\xf2\x53\x20\xec\xd3\x75\xac\xb6\xbb\x12\x52\x74\x95\x87\x24\x24\x54\xad\x7a\xca\x42\x53\xcf\x47\x2e\x91\x9b\x6f\x6d\x1e\x76\xc8\xd1\xbe\xce\x04\xd4\x28\xf2\xca\xb4\x18\xf5\x8f\xe4\x07\x7d\xbc\x4d\x28\x5b\x9e\x25\x6a\x9f\x44\xfc\x86\x91\x23\x47\xc3\x18\xd1\x2d\x4b\xfa\x45\xa7\xde\x0f\x2a\x89\x5c\x33\xb5\x62\x59\xfa\xb5\x7c\xc3\x54\xc2\x83\xbe\x89\x85\x9e\x4e\x1b\x3f\xb5\x52\x6d\x4a\xbe\x96\x9a\xb5\x03\x6b\xd5\x1a\x9b\xf8\x99\x8d\x28\x42\xb7\x5d\xeb\x16\xa7\xcf\x52\xd1\xbf\x49\x4c\x8c\xfe\xee\x45\x1c\xeb\x3e\x62\xc0\x06\x46\x43\x49\xf4\xbc\x34\xc1\x11\xa8\xc9\x32\x77\x3d\xaf\x7a\x6f\x26\x45\x12\x88\x79\x64\xe1\x3e\xb6\x6b\x20\xb7\xce\x8c\x22\x49\xc3\x8f\xce\xbb\x56\x00\xff\xde\xa0\xaf\x00\xde\x3a\xd9\x56\xe0\xd7\x02\x7b\xc3\xf5\x73\x61\x6d\x6b\x79\x52\x31\xbd\xa4\x8f\xf7\x63\xad\xad\xb1\xc1\x2b\xb5\x63\x81\xdf\xc8\x34\xe7\x68\xd1\x5e\x67\x93\x7b\x14\x4d\xbd\xa8\xc9\x6c\xb0\x59\xa6\x8d\x50\xe1\x22\x04\x5c\x5d\xac\x8e\x7d\xdc\xed\x31\xd3\xec\xc5\xa5\xd7\x16\xe7\xb2\xeb\x36\x92\xe8\xc1\x17\xf8\x87\x17\x7f\x68\x11\x3e\x1a\x98\x9d\x62\x81\x53\xd4\xd4\xdf\xfb\xa0\x7a\xbf\x2f\x10\x85\x75\x05\x1a\xb0\x44\xed\x06\x25\x6c\x2d\x37\xcc\x06\x49\x43\x74\x7d\xa7\xa8\xf1\x9d\x49\x27\x84\x79\xd7\x6c\xfe\xc0\x0d\x33\x1e\x69\x26\x4e\xde\xa6\x2f\xdd\xb0\x26\x47\x8b\x39\x63\xa5\xc8\x7b\x4b\xef\xc6\x26\xcd\x31\xca\x11\x36\x9b\x00\xc6\xba\xe5\x64\xcd\xb1\x94\x35\xc5\x5b\x81\xc1\x9f\x86\x61\x79\x5e\x45\x3c\x9b\xcd\x7a\xe6\x24\x2f\x30\x31\xdd\x5a\x8c\xf7\x75\x7a\xcb\x70\x2e\x66\xbd\x76\x32\xd1\xd6\xa4\x4d\x30\x23\xec\xbc\x07\x26\x26\xbe\xb7\x81\xed\xb2\xfa\x45\xc9\x73\x57\xff\xbb\xe6\x54\x07\x62\x80\xd7\x22\x80\xae\x48\x2a\x4b\x0b\xc7\x84\xa2\x8c\x8c\x4c\x4a\xa6\xaf\xb1\xad\xfd\x4f\x84\x14\xa3\xbf\xb1\xc4\xab\x7f\xe6\x8e\xc6\xc6\x61\x47\xd3\xb2\x79\x60\x67\x3b\x4e\x0e\xa7\xd9\xec\xac\x3f\x88\x66\xb3\x33\xd7\xb1\x65\xa4\xe4\x28\xe2\x1b\x96\x7b\x84\x82\xe4\x83\x08\x62\x74\xdb\x90\x32\xd7\xc0\xc7\x40\xb1\x8c\xf8\x76\x5f\x86\x3e\x24\xbb\x9a\x54\xe1\x66\x26\x0f\xe6\x47\x99\x27\xfe\xd8\xdd\x9c\x4a\x56\x7e\x7b\xe2\xfd\xcd\xa9\x98\x81\xc4\x5a\x4e\xdb\xf9\xd0\xfb\xc2\x1b\x53\x86\xf4\x03\x33\xb6\x2d\xc4\x09\xb0\x44\x24\xd6\xf6\xb2\x64\xe8\x91\x02\xfd\x36\x5a\xd9\x8a\x0a\x7d\x64\x44\x6c\x22\xff\xc9\x34\x3d\x44\xed\x8b\x37\x45\x51\x20\x45\xaa\xfe\x7f\xf6\xde\x75\x39\x72\xdb\x6a\x14\xfd\x7f\x9e\x02\xd1\x7c\x55\x9a\xf9\x8e\xba\x35\xe3\xcb\xc4\x91\x2b\x75\x4a\x96\x34\x76\x57\x34\x52\x6f\x49\x63\x27\x15\x65\x8f\xd1\x24\xba\x1b\x47\x6c\x80\x21\xc1\x96\x3a\x4e\x4e\xf9\x35\x4e\x55\xf2\x72\x7e\x92\x5d\x58\x0b\x20\x41\x36\x40\xb2\x35\x23\xc7\xce\x47\xfe\xb0\x47\x4d\x10\x97\x05\x60\xdd\x2f\x59\xe1\x8b\x89\xab\x92\x8f\x8c\x0c\x50\x27\xd3\xe3\xb7\x75\xfb\xf2\x08\xba\xd6\xbf\xc3\x66\xd6\x7a\xb4\x9f\x3f\x06\x74\xe0\x64\x13\xd2\x73\x78\xaa\x8b\x55\x69\x85\x69\x6c\xf3\xeb\x18\xd3\x34\xee\xb4\xd1\xc0\xe8\x8b\xb7\xa6\x19\x97\x7e\xde\xc3\x49\x6f\x7e\x55\x9f\x46\x43\xd3\x01\xb5\x5b\xab\x4a\x18\xee\x18\xfe\xa3\x5f\xa5\xea\x36\x0c\x4d\x91\xfb\x42\x6b\x3b\x82\x33\x57\xd4\x27\xe1\x91\x3e\x71\x99\x2b\xee\xaf\x03\xd1\xf9\x69\x4b\x34\xe6\x48\x4f\xc8\xfb\xb3\xcf\x03\xb5\x2d\x02\x33\xe7\x31\x8b\x68\x76\x1c\x45\x2c\x61\x18\x8b\xd0\x97\x23\xbb\x0e\x7e\x5a\x0a\x0f\xec\x41\xa3\xab\x15\x20\x0a\x3b\x54\x00\x9d\x94\x7d\x7c\xb0\x9c\x00\x5e\x04\x3d\x52\xcf\xd4\x57\xf3\xce\xf7\x95\x25\x02\x84\x0a\x29\x36\x2b\x59\xd8\x4c\x83\xd6\x81\xc2\xab\xf6\x44\x6e\xcf\xcd\xcd\x9c\xf3\xbf\x31\x93\x66\xa9\x5e\xb3\x6a\x4c\xce\xe5\x22\x27\xf7\x34\x13\x5c\x2c\x34\xd1\x51\x45\x26\xfc\x5a\xbb\xd9\x06\x93\xc2\x42\x0a\x50\xab\x76\x77\xa2\x56\x20\x6e\x9d\xd6\x2a\xc4\x95\xd1\xfd\xeb\x22\x11\x2c\xa3\x18\xe0\xee\xeb\x7c\x49\x73\x64\xd1\x62\x9e\x47\x72\xcd\x8c\x5e\x45\x79\x2b\x06\x62\x5e\xc5\xa2\x9e\x69\xd0\x7b\xfd\x1e\xc3\xa5\xd6\xf7\x6f\x22\xb8\xe2\x34\x09\xa5\x21\x6a\xdb\x44\xf7\xd3\x7a\x92\x52\x9b\x07\x36\xd6\xaf\xfc\xdc\xea\x5c\x96\x44\x60\x45\xef\x18\x56\x36\xd0\x1d\x37\xdc\x1e\x76\xa6\x50\xcd\xe5\xf5\xe4\x09\x9a\x4b\x33\x5c\x41\x6d\x59\x5b\x0c\x61\x58\xcd\x88\x6b\xf2\xf0\x38\x5f\xbc\xfe\xec\x51\x8b\x42\xa7\x6e\x41\x93\xd3\x9e\xa9\x23\x43\x15\x01\x1f\x12\xda\x82\x82\xba\xbf\xed\x13\x75\x03\x05\x72\x7e\x79\x61\x37\x30\xff\xc7\x84\xcc\xc2\x87\xdf\x5e\x4c\x76\xfd\xee\x9e\x67\x6c\x51\xd0\x2c\xee\x8b\x25\xbf\x6b\x7c\xb0\x9d\x76\xb6\x6c\xe1\x08\x5d\x4f\x92\xb3\xbf\x9c\x7b\xe9\xe0\x7a\x41\x57\xdd\x4c\xdf\x77\xde\xcf\x1a\x5c\x06\xa8\xf0\x8d\xf1\x2c\xe0\xb0\xa5\x9b\x39\x6b\xb5\x9d\xb9\x57\xe9\x7e\x31\x36\x4a\xec\x1d\x6f\x53\xb9\xb4\x73\x9e\x2b\xa6\x29\x43\x2f\x6d\xd0\x77\xde\xcf\x1a\xe9\x99\xed\x2b\x54\x0d\x85\x2c\x44\xb3\x4d\xb5\xb8\x5a\xc0\xc2\xab\x2f\x3e\xd9\xfd\x5c\x97\xeb\xe9\x73\x37\xbf\x73\x1a\xd7\xe7\xae\x7f\x30\xd7\xd3\x07\x79\xdf\x3a\xae\x19\x6b\xbd\xa4\x1f\xb2\x98\x2b\x14\x09\xae\x8a\x84\x4d\x33\x2e\x35\x9d\xed\xbf\x38\xcf\xc7\xf5\xc5\xa6\xf6\x57\x30\x77\x04\x94\x1e\xe6\x7c\x36\x40\x62\x64\x15\x90\xc2\x6a\xe2\xeb\xef\x76\x5e\xec\x43\xdc\x3b\x3f\xbe\x27\x41\xc3\x1f\x4f\xa7\x75\xd6\x4e\xcf\x35\x2f\xb8\x32\x65\x53\x20\x5b\xa1\xff\x00\x96\x79\xdf\x62\x26\x36\xdb\x6e\x5f\x8f\x62\x2c\x1e\xe2\x74\x57\x49\xfc\x8f\xa7\xd3\x8f\x1b\xcf\x08\xb9\x2a\x1e\x15\xca\x68\xc4\x6c\x2f\x19\xda\x2e\x10\x23\x33\x53\x36\x09\x33\xa9\x82\x88\xe6\x17\xc8\xff\x78\x3a\xf5\x8a\xa0\x5b\xf1\x8e\xbb\x8b\xe3\x43\x41\xdd\x9f\xb5\xa0\x2e\xfa\xd6\x18\xc3\x3b\x18\xfa\x38\x7b\x8a\x92\xba\x5f\xc3\x38\x17\x38\x0e\xda\x35\xf1\x75\x55\x53\xd7\xd3\x64\xbb\xa8\xae\x77\xbe\x66\xff\xcb\xb2\xba\xdb\x8d\x60\xb0\xa7\xaa\xab\x3b\xd4\xc1\x1d\xea\xe0\xba\x5b\x30\xd4\xc1\x7d\xca\x3a\xb8\x6d\x65\x6a\xd3\x34\xd9\x5c\x8a\x37\x58\xb9\xaa\x8b\x50\x1f\xd7\x5a\xa3\x96\xd0\x16\x75\x81\x9e\x50\x5b\x58\x65\x48\xe7\x36\x51\xb7\x8f\xf6\x21\xa7\x02\x3d\xd9\x58\x87\x1d\x59\x8d\x58\x5e\x48\x75\xa3\xd9\x9b\xae\x99\x9f\x96\x2d\x9d\x59\x5b\x61\xca\xa6\x4e\x07\xb7\x18\x34\x5e\x95\xeb\xf0\x73\x4d\xee\xd2\x2c\xaa\x58\xc8\xaa\xda\x84\x51\xfe\x13\x90\xd0\xf7\x73\xa7\x22\x19\xd4\x43\xb9\xe3\x62\xe1\x75\xf7\xc9\x8b\x68\x49\x68\x6e\x54\xbb\x91\x4d\x35\x8d\xb5\xc3\x6e\x32\x9b\x05\xc8\x07\x61\x42\xfd\x19\xd6\xc0\xa8\xa7\x17\x85\xba\x16\x2a\x36\xce\xd4\xbc\x13\xc3\x64\x7c\x06\x26\x60\x22\x6c\xd1\x94\xd5\xc6\x87\x78\x4d\xcc\x21\x69\xac\x98\x33\x46\x0c\xfb\xb9\xeb\xde\x62\x9e\xf7\xee\x4c\xe4\x0c\x83\x0a\xb1\xf0\x0f\x24\x9c\xc6\x04\xf1\x86\x99\xc5\x6c\x97\xe0\x06\x6c\x4b\x3d\x7b\xa1\x64\xbf\xc6\x75\x1b\x0f\xa9\x28\xe3\x8a\x65\x9c\x62\xf6\x21\xc7\x1f\x1a\xd2\x33\x19\xb0\x99\xa3\xbf\x53\x3a\xe9\xda\x1a\x6e\xf7\x8e\x89\x96\x50\xdc\x52\xc2\x79\x35\x23\xdf\x54\xbc\xfc\x29\x29\x2b\x2a\x90\xaf\xa4\x5a\x9a\x50\x5f\x99\x8d\x66\x34\x07\xf0\x18\x2d\xe5\xd4\xec\x97\x70\x7f\xc3\xca\x1f\x5e\xd8\x00\x97\xca\x32\x26\x22\x7b\xf2\x46\x4e\x32\x3e\x59\x28\x0c\x9d\xb3\xb1\x58\xa6\x32\x8c\xcc\x20\x95\xa3\xad\xcc\x16\x98\xb0\x88\xcb\x84\xfe\x0e\xe0\x21\xa6\xe6\xf6\x56\xd8\x54\xa5\xe8\x0b\xde\x84\x44\xc0\x68\xa6\x37\x53\xb0\x05\x4c\xce\xb0\x04\x07\x26\x1c\xc6\xba\x47\xff\xf4\xe3\xbf\x2e\xa4\x82\xac\xa1\xc7\x49\x62\x1c\xdb\xdd\xbe\xfd\xfd\xea\x6f\xc1\x55\x17\x8e\x53\x99\x8e\x92\x2a\x9e\x43\xb2\x42\x8c\x18\x34\x0b\xb1\x95\x4e\xc7\xe4\xd8\xe4\xf1\x0a\xc0\x16\x8e\x26\x15\xf6\x78\x1a\x1f\x70\xb3\x64\x0d\x20\x58\x8c\xfe\xc3\x51\x11\x53\xec\x3c\x0c\x55\x80\xbd\x7f\x8a\x16\x83\x54\x53\xf4\x15\x9f\xee\x91\x49\x93\x86\x22\xdb\xf1\xe9\x0a\x1a\x83\x6b\x60\x2b\x51\x07\x7b\xa9\xa3\xf1\xea\x83\x7a\xe5\xf6\xc6\xd1\x40\x4f\x50\x7d\x2d\x43\xdd\x82\x60\xef\x8c\x4f\x34\x8d\x56\x7e\x97\xbd\x5e\xc0\x20\xa6\x60\x2b\x24\x9f\xbc\x36\x57\xaf\xa5\xed\x16\x12\xb8\x68\x7e\x6c\x9c\xb6\x65\x6a\xec\x7d\x73\xce\x92\x38\x18\x09\x51\x3d\x25\x60\x68\x89\x02\x9c\xac\x6f\x26\xe0\xb1\x56\x90\x46\x66\x7c\xa1\xe1\x10\xba\xff\xf6\x01\xee\xeb\xb9\x3e\x42\x2c\x5b\xe1\x07\x84\xaa\x17\x8e\xc9\xd5\x5c\x11\xcc\x79\x9c\x40\xea\xca\xf6\x2e\x4b\x90\x55\x05\x2e\x0c\x19\x36\x6e\xd1\x70\x90\xb7\x60\xd3\xde\xa9\xbe\x00\x25\x14\x35\x5d\x42\x31\x21\x2e\xe3\xbf\xe9\x8a\x99\x78\x06\xa8\xad\x02\x81\xe3\x6d\xb1\x98\xd5\xe3\x58\x97\xe1\x8c\x65\xcc\x65\x1b\x66\x2e\xde\xad\x56\xd4\x0f\x14\x0e\xdb\x81\xd8\xef\x8d\xcc\x48\x4d\xb8\x3b\x80\x48\x7b\x48\x23\xba\x23\x44\xf8\x4a\x73\x01\x79\xe5\xa4\xe6\x1e\x32\x9b\x33\x1b\x74\xf3\xe0\xb2\x05\x8e\xfe\x6d\x97\x87\xf8\x33\xd3\x71\x07\xbe\xe5\xce\x42\x4a\xe9\x25\xab\x2f\x25\x78\xd1\xf0\x09\x2c\xff\x7b\x94\x53\x9f\xbf\xf8\x7e\x1b\x00\x76\x8d\xed\x1d\xef\x06\x80\xba\x84\x7d\xed\x77\x49\xab\x1e\x99\x91\x6f\x64\x5e\x56\x8b\xaa\x76\xd1\x23\xa8\x57\x7b\xd9\xde\x67\x70\x9d\xf5\x55\x20\x9b\x07\x9c\xf8\xae\x07\x99\x46\x99\xcc\x81\xd3\x73\x6e\x63\x80\x26\x94\x60\xec\xc4\xed\x04\xe3\x04\xda\xd0\x65\x33\xf2\x82\x99\x64\xee\x5e\x9c\xa7\x25\x48\x95\xf1\x48\x05\xcb\x4e\x56\x8f\xa5\x6e\xb0\x85\x46\x30\x91\x21\x94\x57\x62\xb5\x8e\x83\x53\x47\x79\x55\xc0\x1e\x72\xe2\x90\xb3\x04\xbd\x25\x16\x7c\xcd\x84\x96\x3e\xf5\xf2\x5b\xcf\x79\x98\x41\x74\xc6\xed\x05\xe9\xd6\x80\xe9\xea\x11\x52\x5d\xec\xb6\x27\xf8\x41\x19\x74\x51\xe7\xab\xec\x8a\x2f\x02\x99\x1b\xaa\x07\xf6\xf1\x17\x07\x8b\x50\xe5\x81\xea\x69\x02\xa3\xac\x38\xd0\x02\x8d\x69\xc8\x2d\xb0\x7a\x10\x1c\xe4\x1a\x52\x18\xc3\x29\x85\x7a\x67\x36\xc1\x77\x8e\x3e\x9e\x26\x69\x3d\xe4\x32\xd9\x90\xa0\xb7\x61\xf5\x34\x72\x67\xab\x7a\x32\x25\x5b\xce\xca\x30\x4b\x06\x57\x6b\xc9\xa3\x03\xea\x12\x69\x98\xad\x5c\x7d\x32\xb5\x19\xaf\xdf\x9d\x4e\x03\x99\xb1\xed\xd3\x67\x57\xc3\xb9\x09\xaa\xa7\x47\x96\x82\xed\xc6\xdd\x07\xa5\x3b\x73\x41\xf5\xec\x9e\xc3\xa0\x7a\xfa\x1e\xc8\xdd\xf9\xc6\x8b\xea\xa3\x8e\x63\xd9\x8f\x51\x30\x27\x13\x4c\x7a\x65\xc7\x88\x85\xd1\xac\x34\x53\x09\x53\x90\x08\x11\x12\xb0\xe3\x58\xed\x7d\x96\x0c\x51\xeb\x51\xe9\xb7\x67\xe9\x6e\x57\xf6\x76\xaf\xaa\x11\xd2\x41\x56\xba\xf8\x06\xd6\x87\xac\x80\x39\xc9\x86\x79\x3e\x77\xe4\x0b\x6f\xd1\xf8\xfa\xb2\xb0\x07\xe4\x26\x73\x62\x92\x63\xb9\x39\x44\x0e\xad\xa6\xf8\xa6\x4c\x79\xd3\xc1\xf5\xb9\x72\xb9\xb9\x3a\x60\xb4\x42\x28\xe7\x16\x02\x46\xed\x6a\x86\xe9\xe0\x71\xe6\x36\x71\x8a\x66\x6e\xfa\x62\xb0\x4e\x0c\x60\x4b\xed\xef\x80\xc1\x3a\xd6\x5e\xa1\xb7\x06\x06\xbb\x45\x1c\x76\x6b\xb0\xd8\x2d\xe2\xb1\x5b\x8d\xc9\x5a\x79\x9e\x01\x97\xc1\xd3\x0b\x97\xe5\x8f\x10\x80\xbb\xe5\xde\x56\x15\x5e\xf5\x78\xe5\x5e\xf2\x3c\x67\xcc\xea\xbe\x00\x95\x61\x4e\xd0\x7c\x23\x14\x7d\x78\xd1\x29\x8f\xb4\x8a\xcd\x86\x87\x0c\x89\xc5\xed\x7d\x5b\x95\x97\x23\x35\xcb\x6c\x5b\x1a\xd6\xd7\xed\x42\x2a\x34\x64\x1f\x05\x92\xa0\x3a\x40\x30\x8e\xc2\xd6\x4e\xd5\x41\x15\x10\x3c\x0e\x35\xe9\x90\x55\x59\x22\xef\x5f\x1c\xd4\xa7\xec\x00\x1b\xa1\x6a\x0b\xc3\xda\xec\xf4\x1d\xaa\x00\xd0\x73\x81\xfe\xf2\x66\xc9\x88\xba\x97\x70\xd6\xc0\x0b\xd9\xbe\x43\x04\xa1\x89\xd0\xa6\x4a\xc3\xda\xb1\x77\x97\xc2\xae\xde\x54\xac\x74\xf4\xaa\xcc\x91\x5e\x0f\xaa\x8c\x61\xb6\x7d\x37\x4d\xb8\x5f\xca\xc4\x6c\xd2\x11\x6c\xd1\xed\x6d\x45\x90\x7f\x0f\xd8\xe5\x37\x4b\x9a\x3f\x5f\x6d\xde\x27\x74\xc6\x92\x17\x80\x77\x0c\x92\xef\xba\xce\xa6\xa2\xab\x55\x34\xc0\x21\xc3\xf9\xa1\x2f\xc2\xa8\x34\x6f\xc7\x7a\xdc\x9e\xe7\xcd\x14\xe8\x00\x15\x7d\x59\x4c\x11\x26\x47\x7e\xfa\xf1\x9f\x76\xa2\xa0\x1d\x35\x0b\xea\x7d\x2c\x70\xc1\xc1\xf5\x6e\x2f\x49\xcf\x41\x2f\xab\xbd\xdb\xf6\xd5\x96\x0b\x6a\x5f\x4c\xb7\xc2\x41\x9f\x3a\x36\x9f\xb3\xc8\x04\xf7\x19\x4d\x41\x02\x68\xd5\x44\x4c\xd5\x2a\xda\xf6\x98\xba\x90\x62\x64\x3d\xe3\xd1\xfc\x8a\x91\x0f\x46\x27\x32\x97\xd9\x8a\x35\x75\x10\x2d\xf5\x72\xab\x07\x0e\xc3\x36\x60\xaa\x32\x19\x1f\x43\x80\x37\x81\xce\xc7\x51\x24\x0b\xb1\x0b\xdf\x75\x5d\xff\xf0\x67\xe3\xbf\x1a\x28\xb9\xbd\x4f\x8f\x26\x93\x92\x54\xc6\x65\x76\x1b\x60\xe6\x4a\xf4\x6c\x80\xd1\x81\x76\x71\xc5\xad\xa7\xad\x97\x2e\x99\x90\xba\x53\x48\xf8\xa9\xcb\x03\x50\x40\xe4\x83\xc1\x4d\x1e\x03\xf2\xee\x2e\x43\x0a\x64\x0f\xd8\x7b\x41\x9b\x54\x10\xd7\x98\x38\x37\x3e\xa5\xbc\xd4\x44\x6a\xe6\xb7\xe3\xe6\xf7\x63\xec\xc8\x0e\xea\x07\xd2\x97\x4b\x22\x7d\x39\x25\xb2\x7d\xbf\x3a\x79\xa5\xff\xdc\x9d\xae\xc9\x49\x95\xc6\x0d\xb1\xbe\x85\xe7\x98\x4c\x3a\xa4\x0e\xfd\x54\xd6\x85\x6d\xa3\x41\x25\x87\x28\x93\x8b\x3c\x68\x64\xaf\x3f\xc7\x17\xa7\xfb\x01\x77\x6c\xf7\xd9\x4d\x9b\x15\x2a\xed\xd6\xb7\xcd\x52\xa9\xb4\x9f\x91\xed\x9b\x9b\x9b\x69\x65\x44\x0a\x5a\xd6\xf4\xf1\xd0\x4d\xc3\x53\xb7\x8e\x37\x1f\x66\x54\x5b\x31\xb5\x94\xf1\x0e\xb4\xe7\x2d\x7e\xf0\x71\x69\x0e\x2e\x19\x2e\x87\x59\xb7\xe3\x57\xa4\xfb\xc4\x54\xd4\x2c\x50\x84\xb9\xde\x29\xb8\x87\xc7\xd8\x8b\x9d\xed\x73\x36\x5e\x8c\xc9\xd7\x67\x37\x07\x64\xfa\xee\xe6\x80\x30\x15\x8d\x5f\x90\xb7\xa6\x44\x54\x87\x04\x61\xfa\xd0\xa7\xf6\xf2\x6a\x5f\x33\x11\x0b\x70\x6d\xf9\x65\x69\x5c\x53\xaa\x96\x3b\xec\xe3\xfe\x54\xb7\x7f\x8a\x6d\xec\xda\xc1\x6e\x0b\x83\xbb\x83\x30\xcd\x71\xb9\x55\xb8\x4c\xbb\x17\x7d\x37\x83\x10\x36\x5e\x1c\x91\x11\x61\x0f\x34\x52\x47\xe4\x70\x2e\x25\x94\x7c\x84\xb4\x37\xe4\x70\x46\x33\x72\x71\x79\x73\x76\x84\x3e\x11\x4c\xa8\x6c\x43\x56\x5d\xc4\xe5\xf2\xe2\xfc\x4f\x06\x8f\x6d\x08\xe3\x98\x0f\x9b\x7c\x0f\x63\x7c\x0f\xde\xcb\xe4\x7b\x1c\xe2\x7b\xeb\xad\x10\x28\xae\x56\x3d\x50\xf5\x9e\x96\x22\x2a\x66\xf2\xd6\x02\x35\x57\xbe\x58\xd8\xea\xe9\x73\xde\xea\x07\x40\x83\x17\x52\xb7\xd6\xd2\xae\x01\xd0\x6d\x02\x57\xe3\xc0\xd0\x81\x6a\x27\x0a\x1c\x09\x67\xcc\x02\xc1\x48\xbf\x9a\xfd\x3e\xb2\x20\x37\x35\x6d\xa9\x5a\x62\x31\xdb\xa3\xb2\x1c\x7d\x0f\x61\x0d\x8f\x19\xcc\x0a\xba\x4b\xa0\xd2\xa3\xdd\xbe\xaa\xeb\x11\xfe\xf4\x61\x23\x60\x1f\xad\xc0\xde\x81\xcb\x24\x06\x00\x1f\x97\x01\x4a\x43\x09\x9b\x1e\xdf\x69\x1f\x42\x48\xfa\x21\xa3\xee\xae\x78\xb4\xea\x49\x2f\x27\x27\x6f\xa7\x7d\xed\x96\x80\x88\xc2\x73\x77\x31\x14\xb5\xa7\x3e\x82\xd9\x62\xa4\xab\x8c\x01\x3f\xc1\x90\x65\x82\xe8\x60\xd5\x4c\x7c\xdc\xec\xf8\xb5\x52\xcf\xa6\xbe\x4e\xa9\x55\xc5\x49\xf3\xbc\xb2\xf5\xe8\x71\xda\xe4\x48\xb0\x02\xe9\x46\xeb\xd7\x2d\x86\xa0\x5e\x27\x51\x2f\x6d\x07\x1a\x0f\x5c\x89\x14\x2e\x94\x00\x28\x11\xa4\x1e\x23\x93\xb9\x53\x47\xba\x9b\x3c\xdc\x68\x00\xa3\xfb\x32\xf8\x4c\x41\x9a\x93\x5a\xa9\xe1\x32\xc3\x09\x25\x8a\x45\x4b\xc1\x23\xea\x2d\x9e\x53\x3d\x20\xd0\xa3\xd2\x8a\xaf\x52\x99\x57\x8e\xa5\x98\x1d\x1e\x52\x38\x94\xb9\x13\xe7\x3c\x63\xf7\x34\xf1\x67\x81\xab\x1e\xc4\x17\x46\xa1\x80\x19\x18\x25\x61\xa2\xaa\x36\x0b\xde\x23\xdd\x97\xa3\x53\xf7\x0c\xcd\x3e\x7c\x3b\x74\x37\x63\xe2\xc6\x4f\x77\xa9\x6e\xcb\x84\xb0\x5f\xa0\xdb\x21\xac\x10\xfa\x3a\x8b\x96\x92\x5c\x21\xc9\x26\xcf\xf9\x98\x8d\x49\xca\xc5\x22\x6f\xd7\xdd\xf6\x5a\x6f\x0f\x74\x90\xfa\x23\x13\x02\x00\x99\x4c\x6d\x84\xc2\x07\x3b\x34\xd4\x04\x33\xe4\xc6\x5d\x28\x4f\xad\x46\x37\x08\x85\x1e\x10\x08\xf8\x98\x07\x16\x67\x73\xbb\x3a\x9e\x66\x55\x56\x0a\x27\x4f\x47\x59\x9e\xa1\x7d\x71\x1f\x84\x36\xb6\x43\x7e\x02\xed\xca\x19\x4e\xfb\xd2\xc5\xbe\x84\xa9\xee\x22\x5f\xcd\xc7\xc4\x46\xa0\xb6\xf9\x8e\x99\x18\x43\x92\x52\x9e\x85\x13\x1a\x57\x8f\x16\x6a\x4d\x59\x15\x17\xa6\x74\x26\x0b\xd5\x83\x94\x7c\x2c\xb9\x51\x48\xa5\x6f\x5f\xbf\x93\x71\x81\x8d\x3b\x2c\xd1\xd0\xa4\xdd\x23\x64\x20\x19\x03\xc9\xf8\xb5\x93\x0c\x21\x95\x65\xad\x82\x60\x69\xb7\x17\xf7\xb4\x14\xf7\xb3\x11\x6f\xb9\x32\x59\xb6\xaf\xc3\x9b\xc9\x34\x0b\x03\xac\xe3\x26\xf7\x30\x4a\x3f\xce\x1c\x9d\xfe\x52\x81\x7b\xbb\xe7\xc2\xf6\x23\x52\xff\x2d\xb5\x2c\x44\x02\xb8\xbc\x80\x85\xc9\x18\x4e\x3d\xcf\xda\x5c\x73\x8c\x5f\x99\xd9\xe7\x33\xf0\x7f\xbf\x82\xe0\x0d\x1b\x8a\x80\xbe\x33\xcf\x67\x2c\xa2\x45\x6e\xbc\x39\x3a\x1c\x83\xcb\x29\x46\x2c\x83\x3e\x4a\x8f\x90\x17\x68\x4e\xb4\xc9\xee\x6a\xfe\x2d\x5d\x44\x16\x1d\x5f\x8e\x5c\xdf\x8d\x03\xd7\x73\x03\xff\x00\x69\xa5\xf6\xd7\xfa\x75\xf5\xf7\xf5\xc9\x0d\xbe\x0d\x0f\x63\x7a\x3c\xe7\x8a\x59\xf7\x10\x2a\xec\x01\xb1\x26\x05\xcc\x02\xfe\x6a\xf4\xc9\xe7\x9f\xb7\xd8\xd8\x9e\xee\xd8\xe7\xa1\xb4\x6b\xf8\xd4\xcd\x04\x65\xda\xb5\x1e\xa1\x12\x81\xca\x37\xee\xa8\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xe1\x5f\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\x68\x25\x03\x2e\x1b\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\xfb\x19\xa2\x24\x86\x28\x89\xf2\x19\xa2\x24\x86\x28\x89\xa7\x8f\x92\x68\xa9\x05\xa3\x65\x0c\xcc\x77\xe6\x7b\xd7\xde\x71\xcb\x29\x37\xd9\xf1\x1e\x91\xe6\xd0\x7c\x39\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x61\xd4\x38\xe4\x39\x1c\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\xab\x67\xb0\xe0\x3b\xcf\x60\xc1\x1f\x2c\xf8\xe6\x19\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\x01\x97\x0d\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\xf6\x33\x58\xf0\x9b\xcf\x60\xc1\x1f\x2c\xf8\xcd\x67\xb0\xe0\x0f\x16\xfc\xf2\x19\x2c\xf8\x83\x05\x7f\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x3e\x23\x0c\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\x69\xd5\x90\xb4\x6a\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\xb6\xcd\x7f\xc8\x73\x38\x90\x8c\x81\x64\x0c\x79\x0e\x87\x3c\x87\x8d\x67\xc8\x73\x38\xe4\x39\x6c\x3c\x43\x9e\xc3\xb0\x10\x39\xe4\x39\x1c\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x5a\x56\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x11\x5a\xc9\x80\xcb\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\xd8\x7e\x86\x28\x89\x21\x4a\xa2\x7c\x86\x28\x89\x21\x4a\xe2\x3f\x31\xcf\x61\x1f\x5b\xd8\x36\xe6\xea\xb6\x7f\xcd\xd1\x74\x59\xf1\x9a\xbe\x59\x17\xb9\xab\xcd\x37\x87\x0e\x93\x05\x4a\x51\xd3\x72\x07\x96\xe4\xdf\x15\x48\xc8\xd8\xb5\x8e\x4b\xdd\xa8\xe5\x5e\x56\x1e\xdf\xca\xe6\x78\x0c\x30\xf3\xe8\xdf\x82\x59\xf3\x40\x6c\xd1\x9d\x82\x9e\x3f\x1e\xa3\x24\x53\xea\x61\x96\x7c\xa1\xd9\xc2\xdb\x3d\xe8\xef\x76\x0f\x0e\xb0\x69\xeb\xeb\x9a\xce\x35\x4b\xa3\x00\x65\x42\x07\x89\xbc\x67\x19\xce\x06\x3d\x86\x9c\xc9\xe5\x44\xae\xb8\x52\x2c\x3e\xd0\x12\x39\xba\x9b\xfb\x3a\x8d\xa4\xc8\x39\xa6\xac\x44\x89\xfb\x76\x8f\x8b\x39\x17\x5c\xb1\xdb\x3d\x32\x22\xe0\xa5\xe2\x2c\xc7\x8a\x38\x66\x9e\x24\xa1\xb9\x1a\x93\x72\x65\x5e\x90\xe8\xb9\xf2\x98\x09\xc5\x23\x9a\x98\x09\x36\xfb\xe1\x82\xd0\x24\x5d\x52\x51\xac\x58\xe6\xb4\x83\x03\xe0\xeb\xd5\x98\x05\x8d\x70\x88\xa6\x58\xaf\x62\x13\x0f\x87\x28\x56\xb3\x6d\xb9\x3d\xcd\xd8\xe9\xc5\xf1\x4d\xd7\xf1\x98\x62\x33\xc2\x45\xcc\x23\x94\x49\x4a\xd7\xe8\xa5\x4d\x43\x09\xd4\x8b\xe7\x16\x50\x33\x36\x97\x7e\xc4\x43\xc5\x86\xe8\xee\x82\x73\x9d\x49\x99\xb0\xed\xac\x9a\x2d\x54\xa7\x21\x95\xdf\xb8\x12\x1e\x9e\x6a\x47\xce\xb3\x17\x2d\xe5\xd1\x1d\xfe\x47\x16\x5e\x04\xa4\xd7\xd6\xe0\xd8\x9d\x93\x60\x1c\xb9\x9d\x3d\x54\xd2\x28\x98\x5a\xe4\x8e\x6a\x1e\x39\x99\xcb\x24\x91\xf7\x08\x35\x14\x3e\x4b\x71\x0c\xe9\xc2\xef\x51\x36\xc1\x8b\xfd\x3e\xe1\x8a\x65\x34\xd1\xbf\xf8\x7a\xbe\xbd\x25\x23\x0c\x64\xd0\xa7\x7a\x95\xd2\x8c\xe7\x52\x1c\x10\x88\x64\xb2\x42\x85\xed\x72\x2e\x25\x99\xd1\x0c\x04\x9d\x72\xb8\xdf\xec\x38\x5c\x35\x9e\x16\x89\xd8\x5f\x0b\x9a\x7c\x89\x9e\x77\x96\xd0\xf1\xb9\xa1\x70\x3c\x87\x36\x56\x69\x57\x0e\xe9\x47\x22\x3f\xc0\x3c\x68\xe5\x2d\x32\xab\xfe\x19\xe1\x3f\xc7\xe3\x31\xf9\x87\x33\x03\x95\x15\xcc\xba\xd0\x97\x1e\x68\x38\xc6\x1f\x89\xdf\xe7\xd5\x68\x2b\x3b\x86\xaa\xe6\xaa\x17\xc0\x45\x8f\xc9\xf9\x06\xdb\x71\xbe\x30\x58\xdb\x04\xfd\x5b\xe2\xcc\x59\x0b\xb4\xd0\xdf\x7b\x4d\x3a\x5e\x54\x43\xdf\x94\x23\x53\x55\xed\x8e\xb3\x33\xbf\x81\x43\xea\x25\xba\xa6\x8b\x52\xb3\x21\xe7\xd0\x16\x44\x5b\xf8\x7f\xf1\xf2\xe5\x27\xaf\xf1\xbf\xf8\xa6\xfc\xe6\x7a\x29\x33\x35\x8a\x78\x16\x15\x5c\x01\xe3\x62\x3e\xf2\x0d\xf4\xf7\xbf\xb7\x7e\x0d\x2a\x50\xf5\x1c\xdb\xbc\x28\x1b\xa5\x34\x63\x02\x93\xdd\x2e\x32\x59\xa4\x9a\x5b\xbb\xbd\x55\x34\x49\x9e\x7b\x55\xd9\x26\xfb\x2a\x3a\x27\x94\xf8\xc2\xf6\x66\xcf\x30\x4d\x12\x47\x42\x85\x0b\x7a\x8e\xe7\x01\x59\xb0\x00\x92\xd3\x57\x1b\xf1\x8c\xf5\xdf\x72\xf1\x7b\x7e\x40\x46\x07\xe4\x3d\xc0\xe1\x70\x4c\xae\xe1\xca\x11\x73\xe5\x82\x9d\xae\x64\xc6\x48\xaa\x99\xd3\x3c\xe7\x6b\x46\x66\xe8\x7b\xbc\xb1\x9a\x11\xa3\xb3\x22\x2c\x8f\x68\xca\x48\xb4\xa4\x19\x8d\x14\xcb\xcc\xb4\xcf\xd0\x81\xd3\x7b\x19\x9e\x03\x95\x5a\xd1\x98\x8d\x8a\x14\x8f\x45\xfe\xa2\x44\x47\x10\xf2\x62\x50\xc7\x3d\x9b\x69\xee\x97\x19\xe4\xe1\xee\x78\xcc\xd2\x44\x6e\x56\x4c\x78\xd1\xa9\xf9\x3e\xcd\x64\x6c\x0f\x29\xf4\xab\xef\x14\xe0\xa4\x4c\x0a\xc5\x44\xec\x1c\x75\x1a\xdd\x99\x1f\xfe\xa1\x9b\x57\xfd\x93\xdf\xfc\x3e\x74\x03\x62\xb6\xb6\xdd\xff\x86\x34\x6e\x81\x0f\x95\xb5\x31\x4f\x75\x5d\x42\x5f\xae\xf0\xda\xfb\xd5\x93\xb1\x86\x66\x92\x56\xd4\xd8\x95\x41\x04\x7d\x65\x0f\x9a\x0a\x6a\xcd\x8a\x03\xb8\x5f\x42\x18\x65\x8d\xe6\x3b\x0e\x1d\x26\xd1\xb4\x17\x4f\xe9\x7b\x27\x4d\xa6\xe9\x03\xf3\x97\x16\x6a\xc6\x04\xdd\xa7\x80\x9a\x3c\xa4\x9a\xa3\x52\xc9\xc6\x91\x69\x9e\x43\x96\x6c\xaf\x5f\x9c\x83\x47\x05\x89\x32\x66\xfc\xb6\x73\x73\xbb\x65\x46\x04\x4f\x5e\x1c\x58\xcf\xeb\x98\xcd\x69\x91\xa8\x9c\xe0\xb2\x34\xe8\xb2\x38\x20\xd3\x28\x49\xee\x35\xae\x9c\x98\x5c\xe6\x7a\x12\x67\x4e\x5a\x73\xe0\x5b\x2d\xfe\x2c\x53\x46\x83\xc3\x10\x09\x05\x70\x9a\xf1\x09\xcf\xf1\x8e\x8d\xc8\x9f\x0d\x2b\xa7\x27\x64\x47\xfa\xcb\x81\x21\x11\x9a\x31\x06\xcd\x63\x6d\x60\xef\x3d\xe6\x22\x4a\x8a\xd8\xaa\xe6\x23\xaa\x99\x65\xe8\xa0\xea\x86\x20\x91\x16\xb2\x5c\x12\x74\xf7\x42\xcf\xc4\x2f\x6b\xb9\x93\x3b\xf3\xcf\xad\x06\x11\x8d\x98\xaa\xee\xbd\xc2\x1d\xb4\x0b\x2e\xfd\xa0\x73\x40\x5f\xa7\x20\x19\x87\xb6\x09\x71\xe0\x77\x46\x2c\x76\xc4\x93\x8c\x51\x7d\x9b\xa2\x3b\x42\x17\x94\x0b\xef\x91\xc5\x63\x82\xea\xd4\xe4\x9e\x6e\xf2\x2d\xa7\x59\xb4\x73\x1e\x10\xc1\xd6\x2c\xab\x9d\x3a\xaf\x56\xb3\x67\x36\xfa\x0a\x0a\x84\x01\xe9\x28\x2d\x02\xa9\xcc\x73\x3e\x4b\xec\xc0\x95\x23\x87\xfe\xe0\x3a\x65\x91\x5f\xec\xc6\x85\x84\x5d\x5b\xda\x05\xfc\xa0\xec\xec\x17\xb9\xb7\x7f\x05\xca\x11\xbb\x06\xbb\x5c\xc9\x8c\x2e\x98\xfd\x29\x57\x54\x15\x08\x18\xd4\x5b\xb3\xf8\xc2\xd1\x28\xde\x71\x11\x6b\x6c\x64\x41\x9a\x26\x45\x46\x93\xea\x97\x48\x0a\x34\x21\xe5\x47\xe4\xcf\x7f\xd1\xbf\xe8\xfe\x59\x6c\xe2\xbf\xcc\xaf\xa3\xd1\xc8\xfc\x87\xa6\xdc\x46\x92\x11\x9a\x72\xf6\xa0\x98\x80\x86\xe3\xbb\x2f\xf2\x31\x97\x87\xeb\x57\xb7\x02\x07\x3d\x29\x72\x25\x57\x57\x0c\x55\xe2\xa7\x0c\x84\x44\x40\xd8\xb5\x78\xad\xed\x10\xa8\x52\xd3\x9d\x8d\x16\x4c\x8c\xef\x8a\x19\x9b\x15\x3c\xd1\x52\xab\x1e\xc0\x0e\xff\x3c\x66\x6b\x96\x00\xa3\x62\xf1\xd7\x0d\x5f\xb1\x5c\xd1\x55\xaa\xe5\xb7\x04\x9c\xfe\x35\x19\x3b\x22\xe8\x52\x28\xd0\x37\x2f\x67\x2a\x1f\x47\x59\x3c\x4e\x33\xa9\x21\x1d\x01\x8a\x1b\xcb\x6c\x71\x2b\x34\xee\x84\x69\x00\x43\x74\x44\x02\xcd\xea\x6a\x5b\x5c\xaf\xdf\x8d\x30\xe1\xb9\xfa\x83\xf7\xfd\x39\xcf\x55\x7d\x53\xb6\x66\x69\x76\x9c\x8b\x45\x91\xd0\x6c\xbb\x01\xec\x57\x24\xf5\xa1\x39\x49\x8a\x5c\xa1\xc0\xba\xb6\x7b\xa7\xff\x18\x19\x08\xe8\x7d\x81\xce\xa2\x25\x5b\x55\x91\x72\x32\x65\xe2\x78\x3a\xf9\xf6\xd3\xeb\xfa\xef\x8d\x6b\xd5\x9c\x7b\xdd\xff\x18\x4c\x6d\x34\x9b\x71\x95\xd1\x6c\x43\x26\x53\x92\x17\xb3\x91\x9d\xe6\xe1\xc9\xe4\xf4\xaa\x86\xd3\x50\x45\xb2\xd4\x58\x10\x19\x27\x10\x8f\x41\xb6\x43\x34\xa7\x24\x86\xc2\x18\xbb\xe6\x8a\xac\x39\x75\x3c\x4c\xd0\x76\x88\x9f\xba\xfd\xca\xf9\xf6\x44\xad\x01\xaa\xd4\x07\xb9\xd7\x38\xa0\xa4\x77\x0e\x79\xfd\xd6\xd6\xe3\xfb\x35\xdc\x8c\xa1\x15\x7d\x8f\x11\xd1\x18\xf0\xb3\xd8\xc0\x1a\x31\x0d\xe0\x4d\x43\xf4\xa8\x4f\x11\xa7\x41\x28\xcc\xdd\x1f\x03\x4b\xc4\xb2\xdc\x0a\xcd\x91\x14\x6b\x96\x29\x92\xb1\x48\x2e\x04\xff\x5b\xd9\x79\x6e\x4d\xbf\x50\x76\x63\x8b\x8d\xe4\x42\xb1\x4c\x33\x4f\x80\xf4\x0e\x00\xc7\xaf\xe8\x86\x64\x4c\x0f\x43\x0a\xe1\x74\x68\x1d\x4f\xde\x6a\xa6\x99\x8b\xb9\x3c\x82\xac\x2b\xf9\xd1\xe1\xe1\x82\x2b\x7b\xbf\x23\xb9\x5a\x15\x82\xab\xcd\x21\x5c\x53\x3e\x2b\xf4\x96\x1c\xc2\x5d\x3c\xcc\xf9\x62\x44\xb3\x68\xc9\x15\x8b\x54\x91\xb1\x43\x9a\xf2\x11\xcc\x5d\xc0\x05\x1f\xaf\xe2\x67\x99\x41\x08\xf9\xbe\x0f\x23\x6e\x23\x52\xb8\x5c\x6d\xdb\xa0\x6f\x97\x09\x56\x44\xa9\x00\xd9\x9a\x12\xda\x96\xb4\x5f\x9d\x5d\xdf\x10\x3b\xba\x37\xb0\x13\x81\x5f\x7d\x99\x57\xfb\xa0\x81\xc6\xc5\xdc\xf2\x6f\xa0\xf9\x76\xd5\x1d\xc8\x3c\x24\xdc\xc3\xca\xe7\xc5\x6c\xc5\x55\xee\xa4\xeb\x90\x63\x72\x02\x68\x4f\x13\xc5\x22\x8d\xa9\x62\xf1\x98\x4c\x04\x39\xa1\x2b\x96\x9c\xd0\x9c\x3d\xf9\x2e\x00\x13\x3b\xd2\xb0\xed\xbb\x0f\x81\x20\xdb\x90\xee\xb8\x44\xa4\x81\x6d\x6b\x5e\x54\x4d\x81\xeb\x91\x1e\x36\x30\xa8\x0a\xc6\xa5\x24\xec\xa4\x6d\x37\xb6\x41\xa4\x5b\xcc\x70\x01\xc7\xe5\xad\x0a\x3d\xd6\xb7\x6a\x32\x25\x16\xa5\x21\x06\x9b\xb1\x44\xea\xb3\x25\x8d\x46\x8a\xf9\xac\x50\x61\xbe\x65\xe0\x1c\x7e\x0d\x9c\xc3\x52\xe6\x95\x17\xc2\x13\x70\x0d\x6e\x2c\x41\x93\x63\x70\xdf\x6d\x73\x0b\xb5\x99\x35\x39\x05\xf7\xe5\x53\x72\x09\x03\x05\x1d\x28\xa8\xbb\x05\x03\x05\xfd\xd9\x28\xa8\x8b\x1d\xfa\x51\xcf\x6d\x5c\x53\x3d\xbb\xd3\x4f\xf6\x90\x42\xc0\xdb\x64\xda\x47\x1b\xa6\x77\xda\x7c\x50\x8f\xab\x79\x3e\x99\xae\x3f\x83\x6b\x35\x99\xae\x5f\xbf\xb0\x72\xb9\x3d\x16\x5e\xa1\x7b\x82\x4a\xfe\x89\xbe\x9b\x73\x1a\x31\xb0\xe5\xdd\xde\xee\x35\xcc\x26\xa5\xf6\x0a\xf4\x10\x89\x94\x77\x56\x7d\xc8\xed\x97\x5e\xad\xb1\x75\x06\x72\xe2\x7d\x26\xd3\x9a\xbb\x09\xd6\xb1\x03\x83\x9e\xd1\x8b\x00\x12\xa1\x6a\x0c\xee\x9b\x5e\x7a\x7f\x7b\xab\x40\x99\x52\xe4\x5b\x7e\xa0\x8d\xa0\x56\x08\x35\x2a\x4b\x01\xca\xcc\xa8\xfe\x7c\x9d\x36\xcb\xe2\xdd\xde\xea\xfe\x4c\x3d\xbc\x72\xfd\x06\xf9\xe5\xf5\x51\xb9\xf0\x87\xcc\x96\x22\x9d\xbb\x4f\x63\x88\x71\xd3\x64\xa5\xe6\x97\x87\xfe\x94\x67\xd5\x51\x40\x55\x89\xaf\x5b\x9e\xa3\x5e\x16\xd3\xaa\x50\x45\xd2\x22\x4b\xa5\xbe\xa9\xcf\x27\x73\x93\x9b\x70\xc9\xaa\xad\xd1\xe3\x58\x4f\x9f\xf6\xd4\x16\x56\x47\x29\x19\x6e\x7f\xc2\x68\x26\xca\x6d\x33\x3b\x58\xf5\xab\x27\x50\xe4\xa0\x47\x0f\xfa\x98\xdf\xde\x2a\xbb\x1d\x63\xaf\x16\xfc\xa3\xf3\x75\xa4\x9a\xa1\x3e\xce\xdd\x57\xea\x0c\x73\xc1\xe9\x73\xff\xdf\x68\x02\x30\xf6\x19\x00\x5a\x3d\xb6\xfe\x9c\x8b\xe2\xa1\xfd\xd4\x97\x16\xea\xf2\x40\x7f\x09\x47\x6f\x95\xaa\xcd\x98\x54\xc3\xb8\x46\x6d\xb4\xf0\xf2\xbc\x15\xb3\xe8\x67\x21\xd7\x2c\x13\x68\x1b\x2a\xdd\x8d\xe4\x81\xf1\x76\xd5\xd3\xce\x64\xb1\x40\x3f\x08\xab\xea\x35\xcc\x76\x25\xb9\x7b\x55\xe3\xb8\xb9\x70\x2e\x75\xc3\x32\xe5\x88\x9e\xea\x85\x8c\x11\x2d\xc0\x99\xfc\x92\x30\xbd\x7e\xbc\xd8\xb1\x3e\x24\x6b\xbc\x88\xfe\x58\xeb\x2a\xb4\x75\x0d\x75\x2b\x37\x15\xf8\x0e\x88\xab\x34\x96\x39\x7a\xed\x1e\x2a\x09\x9e\xa0\x7a\x2e\x56\xf9\xe1\x77\x45\x48\x64\x44\x93\x32\x84\xd3\x28\x5a\x27\x73\x52\xc3\x67\x16\x97\x39\xfb\xdb\x0b\xd4\x70\x91\x2c\xbc\x6b\xae\x5d\xb0\x7c\xc0\x27\x7a\xed\x86\xd7\x02\xc8\x39\xe0\xf7\x22\x19\x7b\x8c\xaa\x3b\x54\xc2\xba\x36\x67\x38\x82\x23\x72\xaf\xd1\x5c\x1d\x39\xfb\xf1\x01\x6a\x7d\x47\xb5\xed\xf7\x0c\x56\x46\xdd\x54\x0a\x64\x7d\xb3\xbd\x9d\x0a\x17\x19\x41\x3e\xc8\x0c\x1c\x2b\x0e\x3c\xb3\x2a\xa7\x70\x40\x28\x60\x8d\x6d\xf6\x8f\x18\xbb\xb7\x4b\xbb\xca\xba\x94\x55\xae\x1c\x0c\x1c\xd0\x32\x4d\x86\x59\xa4\xcc\x28\x39\x79\x9e\x17\x7e\x0c\x43\x73\xf2\xd3\x8f\xff\x64\x6a\xf9\xf2\xa7\x1f\xff\xf5\xc2\xf8\xbc\x83\x39\x92\xc5\x44\xcf\xfa\x4b\xc2\x15\xe1\xb9\xd8\x57\x95\xee\xba\x9b\x8e\x13\xbc\xca\x69\x26\x35\xef\xe2\x1c\x00\x84\xb0\x83\x13\xea\xa7\xb0\x9a\xb3\x97\xe2\xda\xc0\x84\x23\x5c\x29\xc4\x01\x01\xef\x83\xb1\x42\x68\xcd\xd2\xfc\xd6\x2a\x4d\xd8\x4a\x9f\x34\x44\xf4\x15\xda\x70\x27\x9d\x7f\xe9\xdf\x3b\xae\x38\x4d\x92\x0d\xf9\x7f\x35\x84\xd3\x8c\x8d\xc0\x8b\xa6\xb4\x0d\x4d\xf5\x16\x31\x93\xb3\xb3\x44\xfa\x51\xb1\x0a\x49\x04\xfa\xb1\x35\x43\x91\xbd\x37\xb5\x49\xa5\xf0\x1a\x19\xda\x50\xb7\xf0\xa7\x6b\xda\x52\x17\xe8\x76\xc6\x43\x15\x5c\x98\xe6\x1b\x4b\xee\xcd\x8c\xa1\x01\xd7\xe2\xb7\xf0\x02\xbb\x6d\x12\xa1\xc8\xb8\x86\x0d\x44\x93\xfa\x1a\x37\x68\xe9\xf5\x7e\x6e\x6e\xae\x09\xda\xb2\x09\x3c\xbd\xfe\xab\x33\x56\x95\xce\x05\x87\xab\x92\xd9\x30\x1b\x8e\x66\xa2\x5d\x68\x63\xa7\x57\xb4\xf0\x93\xbe\x6e\xc8\x54\xf0\xe9\xf8\xbc\x35\x22\xeb\x97\x94\x94\xe7\xa9\x72\xb0\x74\xb8\x89\x8a\x00\xba\x1e\x01\x70\x03\x6f\x5a\xb2\x2c\x3d\xda\xb9\x34\x35\x45\x9d\xbb\x8e\xfb\x71\x15\xfd\x88\x17\x8e\x03\x95\x9b\x6f\x95\x87\x36\x93\x08\x67\xaf\xab\x3c\xa2\x35\xa1\x2d\x25\x10\x53\xc7\xd9\x74\x52\xf9\x67\x5a\x81\x00\x1d\x0f\x43\x9d\xa2\x4b\x71\x9a\x32\x9a\x95\x2e\x7f\xe0\xb1\x4e\xca\x79\x55\x56\x71\xdb\xb3\x75\xdd\x64\x8d\x32\xd8\xad\x22\x40\x1a\x4a\xba\x31\xe8\x20\x7f\xdd\x3a\x48\x9e\xd2\xd5\x2c\x91\xd1\xdd\x53\x28\x20\x27\xd3\xe3\xb7\x5f\xe9\xce\x9b\xda\xc7\xf2\xc5\xb6\xea\xb1\x9a\x50\x53\xef\x58\xbe\x19\x94\x8e\x83\xd2\x71\x50\x3a\xfe\xc7\x29\x1d\x4b\xa4\xd0\x4b\xe3\x28\x9a\xd8\xa5\x7a\x76\xd7\x37\x6a\x41\x46\xc3\xce\x43\xc8\xda\xc8\x18\x4d\xb4\xa0\x13\x4a\xb1\xdb\x45\x1a\x5b\x38\xb9\x67\xe4\xe6\xf2\xf4\xf2\x08\x13\x35\x68\x84\x4d\x67\xc8\x1e\xac\xa8\x28\x40\x8c\xa1\x71\x0c\x5c\xc2\x98\x7c\xc7\x2c\x4a\xc0\x73\xd3\xa0\x12\xfe\xee\x95\x24\x4b\x2a\xe2\x84\x91\x3f\xff\xe5\xbf\xf5\x61\x45\xe0\x24\x1b\x13\x72\xed\x15\xd4\xec\x44\x42\xfc\x5f\x0b\xc3\x45\x15\x1e\x49\x2f\xcb\xf5\x01\x3c\x3d\x2e\xe2\x3d\xf7\x73\x9c\xa4\x17\x63\x9f\x33\x4d\xeb\x69\xe6\xdb\x7d\x33\xfb\xdd\x52\x24\xf7\xe1\xc0\xbb\x02\xae\x1e\xcd\xda\x46\x3c\xf6\x39\xc5\xb6\xcd\x29\x66\x09\x53\x5e\xa6\xbd\x3d\x06\x04\xc2\x03\x8f\xbb\xae\x4e\xe0\xeb\x42\x98\xdb\xe3\x1d\xf8\xd1\x77\x27\x08\x99\x80\x68\x32\x72\x2f\xf1\xd6\xab\xf2\xd4\x36\xdf\x68\x28\x37\x7f\x33\x60\x6c\xfe\x5c\x07\x53\xf3\xad\x03\x86\x81\x0f\xfe\x37\xf3\xc1\x91\x14\x73\xbe\x78\x2a\x46\xf8\x04\x7a\xf7\x71\xc2\xf8\xc6\xcf\x0a\x9b\x39\xf9\x78\xe1\xa8\xec\x70\x60\x86\x07\x66\x38\xb8\x0d\x03\x33\xfc\x6b\x65\x86\x11\x2f\xec\xc0\x0d\xbb\x28\xa6\x7a\x1e\xc1\x0e\x17\x4a\x1e\x1b\xb2\x04\x1c\xb6\x8f\x14\x3f\x19\x6f\x10\xa6\xd4\x5b\xd3\xda\x85\xd6\x0e\x04\xf5\x67\x27\xa8\xc8\x9d\x3f\x15\x41\xfd\x06\x7a\xf7\x11\x54\x7c\xe3\x27\xa8\x66\x4e\x3e\x82\xba\x2c\x3b\x1c\x08\xea\x40\x50\x83\xdb\x30\x10\xd4\x5f\x2b\x41\x45\xbc\xb0\x03\x41\x75\x51\x4c\xf5\xec\x4e\x50\x41\x6d\xed\xa1\x82\xbd\x15\x0b\xbd\xa4\x5e\xbf\xb6\x00\xb1\xda\xe4\x74\x27\xa5\x40\x90\x06\xcf\xb6\x15\x6e\xa3\x72\x88\x81\xe0\xfe\x5b\x09\x6e\x2a\x65\xf2\x34\xc4\x76\x2a\xad\x01\xd6\x25\xb4\xfa\x57\x1f\x91\x85\x79\x6c\x13\xd8\xd4\x74\x32\x10\xd7\x81\xb8\x06\xb7\x61\x20\xae\xbf\x4e\xe2\xaa\x71\x41\x6f\xc2\xaa\x1b\x3f\x96\x8a\x5e\xf3\xbf\xf5\xf2\x95\x82\xc6\x24\xe7\x7f\x83\xac\x74\x45\x8e\x0e\x6e\x95\xdb\x31\xa1\x79\xce\x17\x62\xa5\x4f\x46\x30\xd7\xa3\x49\xa8\x20\x93\x31\x39\xb5\x59\x0a\x94\x24\x9f\xbc\x36\x9d\x19\xef\xf2\x57\xaf\x3e\xb1\x3f\xbc\x0e\x7a\x5d\x05\x88\x77\x40\x5f\xbf\xb5\x1e\x3d\x0b\x72\x32\x39\xbd\xda\xd1\xad\x2b\xe6\x39\x9d\x25\x5e\x25\x7b\x6d\x0c\xf0\x1f\xb7\x8d\x21\x7f\x69\x56\x54\x5e\xde\x9a\x19\x42\x57\x77\x7d\xd0\x11\x74\x95\x03\xb7\x0f\x74\xe6\x52\x59\xf8\xed\xa8\x3f\xe0\x29\xf7\xd5\x18\xae\xe3\x8a\x53\x7d\xb5\xd1\x82\x60\x2e\xb2\x2d\xd3\x0b\x8e\xaa\xa5\x47\xf8\xf1\x74\xb2\x7e\x05\x59\x05\xee\x69\x16\x7b\x67\x0b\x49\x9a\x14\x9f\xf1\x84\xab\x8d\x46\x14\xca\x60\x1a\xb7\x57\x58\x3a\xe6\x92\x39\xa8\xbf\xf2\x02\x00\xdd\xe0\x11\x63\x63\x05\xf5\x64\xe3\xab\x03\xde\x61\xe4\x62\x22\xb4\x7f\xfe\x3d\x34\xed\xab\x2d\xd4\xb0\x24\xaa\x10\x82\x25\x7a\x4d\x36\xdb\x59\x11\xf0\xf9\x21\xe8\xe5\x19\xb3\x84\xaf\x59\x56\xa5\xdc\xd5\x3f\x95\xe9\xe8\x9d\x4a\x4d\xe1\x1d\x26\x5d\xbb\x4c\x20\x8f\x4e\xb0\x54\xe5\xd6\x1d\x98\x4c\x27\x53\xf8\xc0\x54\x76\x26\x11\x15\x4e\xf2\x87\xdb\x3d\xcc\x07\x61\xcb\x4b\x40\x5d\x9a\x11\x16\x52\xb9\xdd\x1b\x13\x72\x1c\x5a\xef\xca\x54\x8f\x76\x7a\x30\xf9\x25\x72\xc4\x1d\x30\x72\x05\x43\xbd\xb7\x99\x2c\xf0\x8c\x04\x6b\x83\x39\xf0\xaa\xc7\xa5\x6c\xc1\x8e\x90\x63\x67\x0e\xf5\x79\x87\x7a\x87\x09\xda\x83\xde\x9c\xe0\xbd\x4d\xad\xe1\xce\x01\xbd\x43\xf5\xed\x08\xf5\x49\xab\xa4\xd8\xa6\x00\x8d\xe5\x48\x6c\xee\x4e\xdd\xb9\xb0\x3b\x50\x39\xd4\xb7\x16\x13\x78\xce\xe7\x98\x12\xc9\x3a\x35\xbf\xd0\xb3\xa8\x60\xdd\x7a\x74\xda\x1d\xc8\xfc\x22\x8f\x3e\xf1\x6f\x7b\xf8\xd4\x9e\x58\x5a\x85\xa6\x94\x22\xab\xe8\x94\x67\xc3\xdb\x8f\xfa\xa4\xb1\xc6\x03\x9b\xf5\x13\x2b\x9d\x1a\x40\x61\xee\xa0\xdb\xbd\x0b\xb6\x86\x34\x8b\x58\x79\xb3\x3e\x98\xaf\x77\xdd\x83\xc1\xcd\xbe\x54\xf3\xad\xce\xc5\x54\x8d\x64\xa1\x16\x92\x8b\xc5\xff\x14\x94\xda\x8a\x75\x04\x55\x97\x3d\xe1\x81\x29\x90\x1c\x00\x56\x58\xd5\xe2\x45\xc8\x34\xe4\x24\xd3\x26\xad\xe1\x19\x86\x3b\xd2\x4c\xa8\x8b\x00\xb6\xb0\xab\x2c\x54\xce\x63\x56\x4a\x1b\xd0\x48\xdf\x78\x5f\xa7\x90\xe5\x3f\xff\x6b\xc1\x32\x1a\x7b\xf3\xc6\xb6\x83\x43\xc6\xbd\x73\xac\x1e\xeb\xad\xca\x2d\x07\x67\x32\x6b\xe8\xe3\x62\xa2\x07\xca\x00\x00\x40\x35\xb3\x0d\x26\xd2\xf0\xcd\xb9\x4c\xb3\xbb\xdb\x61\x5e\x3f\x24\x54\x7c\xe0\xd5\xfe\xf6\x8f\xe7\xc7\x17\x3f\xdb\xdd\x86\xd1\xbc\xbc\x65\x39\x81\x47\x5f\xee\xa0\x96\x66\xdb\x3d\x61\x50\xc6\xfc\xac\xca\x18\xdd\x47\xd5\x6d\x5e\x3b\x84\x4f\xa1\xa2\xf9\x43\x31\x63\x27\xd5\x78\x27\xee\x78\x4d\xc5\x4d\x5b\xdb\x6d\x75\x4e\xeb\x4a\x9a\x4a\x9e\xb6\xc6\x83\xea\x67\x50\xfd\x0c\xaa\x9f\xff\x38\xd5\x4f\x1b\x36\xd9\x56\x08\xd5\x12\xe4\x35\x01\xfc\x87\x32\xde\xc8\x41\xc9\x0d\x0a\xde\x5f\x5b\xe4\x74\xd1\x87\x59\xb0\xa3\xa1\xf8\x8c\x29\x0b\xed\xc8\x26\xd9\xe6\x9a\xc7\x05\x4d\x9c\x69\x86\x38\x3c\xd3\xd7\xce\xa2\x7e\x19\x17\xdc\x47\x20\x2e\xf3\xdd\x87\xa6\x6c\xe3\xb5\xb1\x51\x35\xaf\x60\x61\x81\x33\xa3\x39\x98\x6d\x2c\x4b\x73\x60\x8b\x9e\x09\x8e\x3c\x2a\xb2\x29\x81\x1e\x7a\xd4\x25\xd1\x68\x4a\x44\x3c\x61\xd9\x94\x65\x5c\x86\xdd\x76\x9b\xc8\xe1\xaa\xf1\xa1\x2d\x56\x98\xe2\x5f\x4a\xea\x7f\xcd\x65\xb6\x2a\x87\xe0\xc1\xb0\x4d\xfb\x40\x9a\x5d\x27\x7a\x52\xdf\x0a\xe0\x46\xc6\xe4\xcf\x46\xdd\x77\x44\x3e\x5f\xfd\xc5\x23\x60\xd8\xa7\xdb\xd5\xb7\xcb\xd1\x37\x10\xfb\xb9\x05\x81\x0b\xcd\x51\xb7\xed\xb4\x7e\xff\xcb\xd8\xe4\xa5\x13\x8e\xdb\x77\x83\xdd\x10\x5e\xbb\x0c\xc8\xc4\x1e\x59\x8d\x03\x50\x48\x08\x29\x77\x6a\x14\xb5\xec\xee\xa9\xd5\x65\x3e\x76\xa5\x3d\x57\x4b\x8c\xc3\xd4\x89\xe6\x09\xc3\x01\xa6\x9e\x35\xef\x1f\x97\x9f\x55\x3b\x5b\x28\xb9\xa2\x8a\x47\x55\xe2\x5c\xd9\x59\x87\xa4\x0e\x15\x10\x68\xb4\x0c\xb2\x31\x9a\x9a\xea\x30\x5b\x98\xb4\x1d\x69\xd2\xbb\xb4\x48\x9f\xc2\x22\xff\xf3\x2e\x3c\x81\x53\x0b\x69\xc9\xdb\x0e\x4d\x7d\xb5\xd7\xe5\x27\xd5\xe1\x2f\xb3\x3a\x4b\x12\xc9\x74\xd3\x41\x77\xec\x03\x78\xa0\x4a\x7d\xe9\x04\x86\xe7\xee\x2a\x0d\x1a\x78\x5a\xdc\x86\x51\xa3\x7d\xb0\x9b\x49\x31\xd3\x82\xdf\x4c\x5c\xf8\x2f\x03\xc3\xfd\xcf\x3b\xd5\x5d\x5b\x5d\xcf\xce\xde\x67\xcb\xeb\x99\xd9\xdb\xb6\xbe\xa3\xc0\x93\x2d\xeb\xe4\x1c\x8d\xe1\x0c\xfc\x3b\xce\x80\xcd\xf7\xd1\x41\xfb\xeb\x1a\xd6\xc6\x37\x6d\xe7\xc0\xf6\x1f\x5a\x03\x6b\xf0\x0f\xc3\x49\xf8\xf7\x9c\x84\xb6\xb7\x4c\x45\xf1\xb7\x9f\x9e\xc8\x55\x8a\x35\xc3\x82\x10\xab\x43\xea\xcc\xfb\x59\x03\x5e\x33\xa6\xee\x19\x13\x30\xc6\xfa\xd3\xa0\x4d\x02\x3a\x28\xa5\x78\xb0\x4c\x68\x50\xbf\x74\xcf\x82\x03\xab\x57\x2f\xbd\xc0\x6a\x03\xd2\x92\xd1\x44\x2d\x4f\x96\xcc\xef\x39\x5f\x5f\xda\x37\x4e\xe3\xf2\xf4\xcb\xcc\x4e\x25\x2f\x2b\x89\x68\xb6\x0e\x7b\xf6\x2e\x0d\x3b\xe8\x45\xe1\xdb\xe6\x9e\xc8\xc5\xb5\x66\x1e\xb9\xda\x5c\x47\x19\x63\x4d\xd5\xd9\xf6\x02\xce\x9b\x5f\xd8\x6d\x49\xe4\x82\xe4\xe6\x0d\xa1\x33\xb9\x66\x26\x29\x4c\x22\x17\x5e\x1e\x06\x12\x15\x31\x51\x1a\x1d\x73\x15\xcb\x42\xb9\x9b\x31\x11\x73\xb9\xdb\x8a\xc2\x3a\xf2\x90\xa0\x1e\xd4\x84\x54\x9a\xef\x00\x28\x5a\x75\x21\xf0\xb5\xa3\x93\x32\x2b\xd4\xbf\x7a\x54\x88\xa0\x86\xaa\x29\x3e\xc8\x44\xed\x43\x9a\xbb\x79\x91\xa0\xb9\x25\x5e\x81\x5a\x05\x4a\xa5\x41\x80\x30\x94\x25\xc1\x12\xb6\x34\x52\x05\xdd\xb2\xbc\x60\x8f\x98\xf4\xea\x9e\x96\xd9\x46\x6c\xb2\x1e\x63\x4e\x5f\xc9\x18\x6b\x7c\xcc\x34\x47\xb6\xe6\x99\x04\x37\x19\xb2\xa6\x19\x87\x23\xb9\x35\x5f\xb4\x35\xdf\x15\x33\x36\x72\x35\x37\x69\x26\x23\x96\x37\xc5\xb4\xb6\xbc\x8f\xd5\x68\xdf\x52\xaf\xde\x66\x47\x8f\xd9\x10\x12\xab\x6d\xdb\x59\x7d\xd4\x66\x7a\x23\x0f\x00\x02\x26\x74\x2f\x10\x00\xd8\x5c\xcc\x93\x02\x93\x1d\x61\x55\x79\xa8\x5f\x89\x07\x24\x68\xf2\xf1\x63\xd0\xcc\xfd\xb6\xeb\x72\xd6\x06\x6a\x2c\x0c\x2a\x15\xf3\x35\xab\x9d\x0a\x9e\xdb\x01\x7c\x0b\xe4\xa1\x8d\x96\xf1\x81\x49\x2c\xb3\x62\xd9\xc2\x6a\x6a\x8f\xa7\x93\x4a\x51\xab\x09\x93\xf7\xd2\x8b\xc0\x29\xf3\xc0\xa5\x83\x18\xb7\xab\xfc\xb6\x80\xf3\x31\xd5\x7e\xa4\x4b\xf5\xd7\x63\xfa\xa4\x87\x0a\x70\x6b\x11\xbb\xa9\x01\xdb\x38\x87\x8f\xc9\x35\xf5\x5c\x2d\xd9\x8d\x7b\xda\x5a\x7c\x7f\x0e\xaa\x4b\x85\x52\x67\xb0\x7a\x71\x51\x5d\x5d\xb6\x33\x59\xe4\xa3\xaa\x59\x5a\xb4\x88\xe4\xa9\x34\x89\xe4\x23\xc8\xda\xa4\xff\x39\xe9\xa9\x55\xdc\x5a\xee\x0e\x9a\xc5\xae\x1d\x75\x4a\xcf\x7d\x14\xed\xe2\x0e\xab\x27\xbb\x68\x19\xb7\x60\xd0\x4f\xd3\xd8\xdd\x29\xb0\x26\x1f\x5d\xdb\x48\x76\xaa\x8d\xdd\xe7\x3a\x90\x01\xaf\xf4\x01\x66\x2f\x45\xe5\x36\x70\x3e\x9e\xb2\x92\x7c\x54\x85\x65\xff\xa5\xf7\x39\x43\xad\xca\xcb\x2d\xa0\x7c\x4c\x05\x26\xf9\x79\x11\xeb\x70\x51\x3e\xc2\x69\xe9\xa5\xff\x24\x4f\xa6\x03\x25\x4f\xa4\x07\x25\xc3\x31\xfa\x59\x8f\x51\x4f\x15\x2a\x79\x4a\x35\x2a\x79\x2a\x55\x2a\x19\x0e\xd3\xcf\x78\x98\xba\x5a\xf4\xd6\xc4\x92\xa7\xd2\xc6\x92\x8f\xab\x91\xed\x03\xbc\x0e\xcd\xec\xf6\x52\x3f\x92\x76\x96\xec\xa8\xa1\xed\xb3\x96\x3e\x9a\xda\xed\x05\xed\xac\xad\x0d\x2d\x27\x91\x8b\xfc\x03\x34\xb6\xdd\x2b\x6c\x49\x26\xdd\xa2\xbd\x25\xad\x47\x7f\x70\x83\xfe\x59\xdd\xa0\x4d\x2c\x04\xb0\xbe\xfc\x49\x12\xc1\x98\xaa\x7d\xc8\x7e\xe3\x8b\xca\xd3\xb9\xf6\x72\xdb\xb5\xb9\x31\x3b\xb3\xcf\xa5\x33\xb3\xfb\x1a\xba\x36\xde\xcb\xa5\xc6\x0d\x28\xe8\xe0\xc0\x3c\x38\x30\x0f\x0e\xcc\xbf\x2e\x07\xe6\x36\x0b\x14\x94\xc3\xea\x13\x90\x0d\xa9\xf9\xf5\xf1\xc7\x82\x56\xac\x56\xde\x1c\xf3\xfa\xeb\x3f\x4a\xa3\x8b\xd7\xf6\x61\xbf\xc6\x68\xb2\x66\xb1\x2e\xa8\x04\x46\x22\x99\x65\x2c\x4f\x35\xc5\x10\x0b\x62\x98\x25\x5b\x52\x69\xa7\x94\xfc\x8d\x2a\x4f\xc7\xe4\x4a\x4f\x90\x89\x88\xa6\x79\x01\xf7\xb6\x9a\x91\x6f\x2a\x01\x0d\x21\x4e\x69\x4c\xc8\x57\x52\x2d\x1b\x55\x05\xb6\xaa\x88\xe9\x8e\x9a\xd5\x13\x02\x3a\xa2\xb2\x42\x88\xa9\x62\x30\x22\x39\x4b\x69\xa6\x0f\x29\x91\x85\x22\x54\x4f\xd7\x16\x68\xc0\x26\x9a\x0b\x83\xca\xf3\x3c\x5c\xee\x9e\xc0\x1c\xcc\x7e\xb9\x80\xe7\x62\x81\xf5\x92\xb0\x28\x03\x54\x73\x59\xb3\x26\x24\x96\x34\xd4\x2b\x11\x6c\x01\x93\x33\x88\xf7\x80\xa4\x19\x9b\xf3\x07\x16\xa3\xe8\xf0\xd3\x8f\xff\xba\x90\xea\xa7\x1f\xff\x35\x26\xc7\x49\x02\x17\xb5\xde\xb7\xbf\x5f\x13\x2d\x4c\xf1\x38\x95\x15\x82\xa8\xe2\x39\x58\x69\x31\xf4\xce\x2c\x44\x49\xec\x73\x4c\x8e\x81\x94\x6d\x67\x2f\x32\xb0\x85\xa3\x49\x85\x3d\x9e\xb6\x8e\x3d\x2e\x59\x03\x08\x16\xa3\xff\x30\xab\xc1\xb2\x5f\xc1\xaa\x66\x08\x55\x80\xbd\x7f\x8a\x7a\x00\x18\xb5\x9c\xa2\x3f\xb6\xb9\x53\x42\xc4\xe3\x16\x94\xb4\xba\xe5\x27\x27\xd2\x32\xd8\x4b\xed\xaa\x9c\x3a\x41\xd4\x35\x1b\x6a\xe3\x68\x80\x05\x15\xae\x65\x8b\xe0\x56\x8b\xf4\x24\x1a\x13\x2a\xdf\x2d\xee\x09\x0c\xe2\xda\x0c\x5b\xc2\x38\x03\x2b\xbb\xdd\xbb\x68\x7e\x0c\x14\x4c\x10\x99\xa2\x99\xdd\x04\xe4\x86\x4a\x90\x54\x4f\xad\x6c\xbb\xe9\x8a\x3d\x68\x02\x96\x03\x76\x80\xe2\x4e\xb5\xa2\x61\x36\xa6\xbc\x4b\x47\x0c\x34\xee\xb9\x3e\x42\x2c\x5b\xe1\x07\x84\xaa\x17\x8e\x0d\xa2\x0c\xa8\xb7\x45\x4d\xc2\xa9\x0d\x1a\x20\xcb\xcb\x7c\x08\xb0\x97\x9a\xfc\x41\xd0\x2f\x1c\xe4\x2d\xd8\xb4\x77\xaa\x2f\x40\x09\x45\x2d\x19\x21\x33\x16\x5b\xff\x88\x9c\xae\xf0\x0a\x98\xf8\x51\x08\xa9\xee\xa3\x8d\x71\x2c\x4f\xe6\x8c\x65\xe5\x7c\xc9\x6c\x83\x93\x2d\x6b\xd8\x97\x2b\xea\x07\x0a\x53\xd4\x4e\xcf\x0b\xb1\xdf\x1b\x99\xd5\x39\x67\xcd\xad\x99\x7a\x6a\x3b\x42\x84\xaf\xd2\x84\x57\xd5\xfc\x18\x71\x0f\x59\xc2\x57\xdc\x04\xcd\xe2\x4c\x35\x79\xd3\x30\x69\xef\xb3\xac\x2a\x56\xc1\x84\x3b\xf0\xad\x22\x5e\x28\xde\xd1\xda\x52\x3a\x8c\x71\x81\xe5\x7f\xbf\x80\x8a\xe2\xcf\x5f\x7c\xbf\x0d\x00\xbb\xc6\x0e\xa5\xce\x4e\x00\xd8\xaa\x60\xde\xde\xb9\xcc\x6a\x46\xce\x6a\x17\x6b\xdd\x34\xf7\xb2\xbd\xcf\xe0\x3a\xeb\xab\x40\x07\x22\xe0\xfd\x77\x3d\xc8\x14\xd2\x5c\x40\xd9\xc6\xea\x36\x06\x68\x42\x09\xc6\x5e\xba\xb1\x40\xf5\xf5\xea\xa9\x9b\xc3\x99\xca\xc3\x38\x4f\xf3\xe9\x90\x54\x36\x0f\x55\x30\xac\x1e\x4b\xdd\x60\x0b\xab\x82\x4f\x7e\x94\x57\x62\xb5\x8e\x83\x53\x47\x79\xb5\x34\x22\x50\xcb\xb5\x2c\x23\xbb\xe0\x6b\x26\x4c\xd6\x8e\xf6\xc8\x98\x30\x83\xe8\x8c\xdb\xd3\x84\xd8\x52\x89\xa0\x7a\x84\x54\x17\xbb\xed\x09\x7e\x60\x55\x53\x0d\xbe\xca\xae\x58\x37\xe9\xa0\x1c\x7a\x1f\x7f\x71\xb0\x98\x06\x2a\xed\x55\x4f\x13\x18\x58\x76\xaf\x1d\x1a\xd0\xa6\x0f\x38\xc8\x35\xd7\x3c\xb5\x2c\x8b\x2d\xda\x12\x6b\x39\x59\xd2\x35\xb3\xf5\xfb\xf8\x1c\x4e\x57\xda\xdd\x2d\x28\x01\x6d\x6e\x04\xc2\x95\xd5\xdc\xe1\x74\xa7\xa6\x77\xc3\x2c\x19\x5c\xad\x25\x8f\x0e\xa8\x4b\xa4\x61\x0a\xb3\x2a\xdc\x9c\x4c\x6d\x5e\x9f\x77\xa7\xd3\x60\xd2\x18\x7c\xfa\xec\x6a\x7b\xb9\x3d\x7c\x7a\x16\xdd\xab\x37\xee\xe3\xc4\xd0\xa7\x00\x1f\x3e\x8f\x29\xc3\x67\x9f\xbe\x07\x72\x77\xbe\xf1\xa2\xfa\xa8\xe3\x58\xf6\x63\x14\xcc\xc9\x24\xd7\xcc\x21\x2e\x88\x85\xb5\xec\x90\x17\x33\x95\x30\xcd\x06\xa3\x24\x65\xc6\x6a\xef\xb3\x64\x88\x5a\x8f\x4a\xbf\x3d\x0b\x15\xc7\x0c\x80\xe7\x76\xaf\xbc\xb1\x5d\x64\xa5\x8b\x6f\x60\x7d\xc8\xca\x12\x44\x61\xa3\x50\x7a\xee\xc8\x17\x2f\x3a\x8e\xa1\xcc\x14\xf6\x80\xdc\xa4\x5b\x06\x37\x67\x24\xa3\x62\xc1\xf2\x43\xab\x8f\x83\x94\x5b\xad\x99\x9e\xf0\xe1\xae\x5c\x6e\xae\x0e\x18\x4d\x10\xca\xb9\x85\x80\x51\x6e\x99\x61\x3a\x78\x9c\x39\xee\x01\x32\x37\x7d\x31\x58\x27\x06\xc0\xa6\x3b\x61\xb0\x8e\xb5\x57\xe8\xad\x81\xc1\x6e\x11\x87\xdd\x1a\x2c\x76\x8b\x78\xec\x56\x63\xb2\x56\x9e\x67\xc0\x65\xf0\xf4\xc2\x65\xf9\x23\x04\xe0\x6e\xb9\xb7\x55\x85\x57\x3d\x5e\xb9\x97\x3c\xcf\x19\xb3\xba\x2f\x40\x65\x74\x95\x26\x8c\xe4\x1b\xa1\xe8\x83\x2f\xdd\x8f\xfb\xdc\xde\xb6\x8a\xcd\x86\x87\x0c\x89\xc5\xed\x7d\x5b\x95\x57\xad\x14\xe8\xb6\x34\x6c\xab\x33\xc3\xd8\xfa\xf4\x74\x00\xc1\xf8\xe7\x5b\x6b\x40\x07\x55\x40\xf0\x38\xd4\xa4\x43\x56\x65\x89\xbc\x7f\x71\x50\x9f\xb2\x03\x6c\x84\xaa\xa9\x61\x66\x4d\xb3\x1d\x70\x40\x3d\x17\xe8\x2f\x6f\x96\x8c\xa8\x7b\x09\x67\x0d\x92\x54\xd8\x77\xa6\x84\xf6\x4c\x25\x9b\x2a\x43\x5e\xc7\xde\x5d\x0a\xbb\x7a\xeb\xc1\x53\xe9\x55\x99\x23\xbd\xe2\x6a\x24\x78\xcf\x99\xf6\xdd\x34\xe1\x7e\x29\x13\xb3\x49\x47\xb0\x45\xb7\xb7\x15\x41\xfe\x3d\x60\x97\xdf\x2c\x69\xfe\x7c\xb5\x79\x0f\xae\x75\x2f\x00\xef\x18\x24\xdf\x75\x9d\x4d\xc2\x47\xab\x68\xc0\x42\xfa\x30\x3f\x74\x7c\xa8\x5c\xff\x63\x3d\x6e\xcf\xf3\x06\xfd\xc5\x12\x32\x69\x01\x96\x46\x63\xd1\x8c\x25\xe4\xa7\x1f\xff\x69\x27\x0a\xda\x51\xb3\xa0\xde\xc7\x02\x17\x1c\x5c\xef\xf6\x92\xf4\x1c\x42\x39\x5f\xab\xa7\x7d\xb5\xe5\x82\xda\x17\xd3\xad\x70\xb8\x29\x83\x31\x90\x95\x32\x9a\x82\x04\xd0\xaa\xc9\x43\x09\x26\xe6\x72\x1d\xdd\x53\x17\x52\x8c\x8c\x97\x8a\x31\x72\x91\xfb\x25\xcb\x98\xd1\x89\xcc\x65\xb6\x62\x4d\x1d\x84\xe9\xbd\x87\x2e\x6e\x1b\x30\x4e\x4a\x86\x8f\x20\xc0\xd7\x9d\xe9\x76\xe0\xbb\xea\xfe\x74\x3f\x1f\xff\xd5\x40\xc9\xed\x7d\x7a\x34\x99\x94\xa4\x32\xb6\x81\x37\x68\xd7\x28\xd1\x73\x0f\xcf\xbf\xd2\xf7\xaf\xf5\xb4\xf5\xf6\x34\x77\xad\xec\xe1\x67\x3b\x0a\xe5\xc3\xc1\x4d\x1e\x03\xf2\xee\x2e\x43\x0a\x64\x0f\xd8\x7b\x41\x9b\x38\xde\x96\xf7\x4b\x99\xdb\xa2\xfc\xa5\x26\x12\x8a\x70\x77\xf5\xd1\x87\xb1\x23\x3b\xb9\xc6\xf7\xe4\x92\x48\x5f\x4e\x89\x6c\xdf\xaf\x4e\x5e\xe9\x3f\x77\xa7\x6b\x72\x52\xa5\x71\x43\xac\x5f\xe6\xb3\x24\x93\xce\x74\x2d\xc4\xb1\x2e\x6c\x1b\x0d\x2a\x39\xc4\x24\x99\x64\x1b\xfd\x7b\x77\xa7\xc7\x17\xa7\xfb\xde\xf4\x9f\xf5\x67\x37\x6d\x56\xbb\xbb\x6a\x77\x9b\xa5\x52\xbe\x44\xde\xf8\xd4\xe3\x74\x6e\x6e\xa6\x95\x11\x29\x68\x59\xd3\xc7\x43\x37\x0d\x4f\xbd\xf4\x23\xfc\x20\xa3\xda\x8a\xa9\xa5\x8c\x77\xa0\x3d\x6f\xf1\x83\x8f\x4b\x73\x70\xc9\x70\x39\xcc\xba\x1d\xef\x0d\xdd\x27\x66\xc1\x65\x9d\x49\x82\x2c\x56\x62\x31\xf6\x62\x67\xfb\x9c\x8d\x17\x63\xf2\xf5\xd9\xcd\x01\x99\xbe\xbb\x39\x20\x4c\x45\xe3\x17\xe4\x6d\x91\x28\x9e\x76\x69\xe8\x0c\x88\xe0\xd4\x5e\x5e\xed\x6b\x26\x62\x01\x51\x20\xbf\x2c\x8d\x6b\x4a\xd5\x72\x87\x7d\xdc\x9f\xea\xf6\x4f\xb1\x8d\x5d\x3b\xd8\x6d\x61\x70\x77\x10\xa6\x39\x2e\xb7\x0a\x97\x69\xf7\xa2\xef\x66\x10\xc2\xc6\x8b\x23\x32\x22\xec\x81\x46\xea\x88\x1c\xce\xa5\x24\x23\xe3\xb7\x70\x44\x0e\x67\x34\x23\x17\x97\x37\x67\x47\xe8\x13\xc1\x84\xca\x36\x64\xd5\x45\x5c\x2e\x2f\xce\xff\x64\xf0\xd8\x86\x30\x0e\xa2\x03\x25\xdf\xc3\x18\xdf\x13\x70\x57\xf8\x1e\x87\xf8\xde\x7a\x2b\xdc\x74\x2d\x7d\x4d\x13\x1e\xd3\x52\x44\x05\x67\x5a\x4c\x08\xad\x7c\x19\xa0\xab\xa7\xcf\x79\x6b\xf8\xfc\xde\xdc\x4c\x35\x74\x4b\x54\x0c\x47\x01\x80\xae\x81\xec\x38\x30\x74\xa0\xda\x89\x02\x77\xad\x19\xb3\x40\x30\xd2\xaf\x66\xbf\x8f\x2c\xc8\x6f\x8b\x97\x2f\x3f\x8d\x74\xc7\xf0\x2f\x76\x64\x82\xf1\x7b\x09\x6b\x78\xcc\x60\x56\xd0\x9d\x46\x16\x59\xb9\x7d\x55\xd7\x23\xfc\xe9\xc3\x46\xc0\x3e\x3a\xdc\xd7\x77\x88\x67\x44\x00\x7c\x5c\x06\xc8\x2c\xfd\x63\x76\xda\x37\xe0\xb0\x07\x32\xea\xee\x8a\x47\xab\x9e\xf4\x72\x72\xf2\x76\xda\xd7\x6e\x09\x88\x28\x3c\x77\x17\x43\x39\x49\xbc\xf5\x6c\x4d\x00\x09\xa6\x22\x87\x21\x0d\x6f\x66\x4a\x30\xb4\x08\x71\xe8\x30\x0a\xb4\x6b\x56\x53\xaf\xce\xeb\x5a\xd5\x32\x19\x7c\x69\xeb\xd1\xe3\xb4\xc9\x91\x60\x05\xd2\x8d\xd6\xaf\x5b\x0c\x41\xbd\x4e\x62\xd4\x1e\x38\xdd\xa4\xf1\xc0\x95\x48\xe1\x42\x09\x80\x12\x61\x49\x84\xc9\xdc\x49\x12\xde\x4d\x1e\x6e\x34\x80\xd1\x49\x14\x7c\xa6\xa0\xdc\x84\x0b\x2b\xa3\x73\x07\x85\xba\x62\xd1\x52\xf0\x68\x3b\xa9\x47\xfd\x01\x81\x1e\x95\x56\x7c\x95\xca\x1c\x3d\x44\x20\x6b\x03\xcb\x04\x4b\x7e\xfa\xf1\xff\xcf\x09\x4f\x15\x46\x2f\xcc\x79\xc6\xee\x69\x92\x74\x4c\x16\xf1\x85\x51\x28\x14\x39\x1a\xfc\x99\x98\x4b\x74\x60\x35\xde\x23\xdd\x97\xa3\x53\xf7\x0c\xcd\x3e\x7c\x3b\x74\x37\x63\x02\x3e\x10\xec\x01\x14\xae\x5d\xaa\x5b\xdc\x05\x39\x27\x5f\xa0\xdb\x21\xac\x10\xfa\x3a\x8b\x96\x92\x5c\x21\xc9\x36\x39\xdd\x53\x2e\x16\x79\xbb\xee\xb6\xd7\x7a\x7b\xa0\x83\xd4\xef\xff\x1d\x00\xc8\x64\x6a\xfd\xc0\x3f\xd8\xa1\xa1\x26\x98\x21\x37\xee\x42\x79\x6a\x35\xba\x41\x28\xf4\x80\x40\xc0\x93\x37\xb0\xb8\xb7\xa6\xb5\xe3\x69\x56\x26\x83\x01\x07\xe5\x6c\x55\x25\xf9\xf7\x79\x55\xd7\x17\xf7\x41\x68\x63\x3b\x7a\x22\xd0\xae\x6f\xba\x9a\xea\xe9\x4b\x98\xea\x85\x19\xaa\xf9\x18\x0f\x74\xd4\x36\xdf\xb1\x8d\x39\xda\x29\xe5\x26\x19\x4d\xfb\xf0\x5a\xa8\x25\xec\x41\x65\xb4\x06\x53\x3a\x93\x85\xea\x41\x4a\x3e\x96\xdc\x28\xa4\xd2\xb7\xaf\xdf\xc9\xb8\xc0\xc6\x1d\x96\x68\x68\xd2\xee\x11\x32\x90\x8c\x81\x64\xfc\xda\x49\x86\x90\xca\xb2\x56\x41\xb0\xb4\xdb\x8b\x7b\x5a\x8a\xfb\xd9\x88\xb7\x5c\x99\x2c\xdb\xd7\xe1\xcd\x64\x9a\x85\x01\xd6\x71\x93\x7b\x18\xa5\x1f\x67\x8e\x4e\x7f\xa9\xc0\xbd\xdd\x73\x61\xfb\x11\xa9\xff\x96\x5a\x16\x22\x01\x5c\x5e\xc0\xc2\x64\x0c\xa7\x9e\x67\x6d\xae\x39\xc6\xaf\xcc\xec\xf3\x19\xf8\xbf\x5f\x41\xf0\x86\x0d\x45\x40\xdf\x99\xe7\x33\x16\xd1\x22\x37\xde\x1c\x1d\x8e\xc1\xe5\x14\x23\x96\x41\x1f\xa5\x47\xc8\x0b\x34\x27\xbe\x35\x31\x09\x35\xff\x96\x2e\x22\x8b\x8e\x2f\x47\xae\xef\xc6\x81\xeb\xb9\x81\x7f\x80\xb4\x52\xfb\x6b\xfd\xba\xfa\xfb\xfa\xe4\x06\xdf\x86\x87\x31\x3d\x9e\x73\xc5\xac\x7b\x08\x15\xf6\x80\x58\x93\x02\x38\xc9\x90\x57\xa3\x4f\x3e\xff\xbc\xc5\xc6\xf6\x74\xc7\x1e\xcd\x88\xfd\xe8\xf1\x35\x3a\x22\xf5\x0b\x95\x68\x29\xa0\x67\x47\x1d\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x09\xff\x8a\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x42\x2b\x19\x70\xd9\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xdb\xcf\x10\x25\x31\x44\x49\x94\xcf\x10\x25\x31\x44\x49\x3c\x7d\x94\x44\x4b\xa2\x5b\x2d\x63\x60\xbe\x33\xdf\xbb\x3e\x65\xf8\xbc\xa7\xdc\x64\xc7\x7b\x44\x9a\x43\xf3\xe5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x86\x51\xe3\x90\xe7\x70\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\xaf\x9e\xc1\x82\xef\x3c\x83\x05\x7f\xb0\xe0\x9b\x67\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x5c\x36\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\xdb\xcf\x60\xc1\x6f\x3e\x83\x05\x7f\xb0\xe0\x37\x9f\xc1\x82\x3f\x58\xf0\xcb\x67\xb0\xe0\x0f\x16\xfc\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xfb\x8c\x30\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\xa4\x55\x43\xd2\xaa\x21\xcf\xe1\x90\xe7\x70\xc8\x73\xd8\x36\xff\x21\xcf\xe1\x40\x32\x06\x92\x31\xe4\x39\x1c\xf2\x1c\x36\x9e\x21\xcf\xe1\x90\xe7\xb0\xf1\x0c\x79\x0e\xc3\x42\xe4\x90\xe7\x70\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x59\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\x68\x25\x03\x2e\x1b\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\xfb\x19\xa2\x24\x86\x28\x89\xf2\x19\xa2\x24\x86\x28\x89\xff\xc4\x3c\x87\x90\xbc\xb0\x2b\xcb\xe1\xa5\x6e\xd4\x72\x86\x2b\xef\x68\x65\xf3\x21\x06\x18\x5f\xf4\x05\xc1\x0c\x73\xc0\xe2\xeb\x4e\x41\x27\x1e\x8f\x91\xeb\x2f\x75\x16\x4b\xbe\xd0\x2c\xd4\xed\x1e\xf4\x77\xbb\x07\x9b\x6d\xda\xfa\xba\xa6\x73\x4d\xfe\x15\xa0\x17\xe8\x20\x91\xf7\x2c\xc3\xd9\xa0\x77\x8d\x33\xb9\x9c\xc8\x15\x57\x8a\xc5\x07\x5a\x7a\x45\xd7\x6c\x5f\xa7\x91\x14\x39\xc7\xf4\x8e\x28\x9d\xde\xee\x71\x31\xe7\x82\x2b\x76\xbb\x47\x46\x04\x3c\x3a\x9c\xe5\x58\x71\xc0\xcc\x93\x24\x34\x57\x63\x52\xae\xcc\x0b\x12\x3d\x57\x1e\x33\xa1\x78\x44\x13\x33\xc1\x66\x3f\x5c\x10\x9a\xa4\x4b\x2a\x8a\x15\xcb\x9c\x76\x90\x59\xd1\xd7\xab\x31\xa1\x19\x41\x0a\xcd\x96\x5e\x25\x20\x9e\x0d\x51\xac\x66\xdb\x32\x6e\x0b\xd2\x6b\x08\x85\x37\xae\x80\x81\x07\xc5\x11\x33\x8a\xdc\x70\x4c\x3c\xba\xc3\xff\xc8\xc2\x7b\xfe\xf5\x94\x1b\x0c\xa3\x03\x5c\xe3\x47\xec\x80\x45\x49\xa3\xdf\x68\x61\x7b\xab\x79\xe4\x64\x2e\x93\x44\xde\x83\x4b\xa0\x91\x7d\x4a\x69\x00\xd1\xd2\xef\x91\x35\xc6\xdb\xfe\x3e\xe1\x8a\x65\x34\xd1\xbf\xf8\x7a\xbe\xbd\x25\x23\xf4\xa3\xd7\x07\x65\x95\xd2\x8c\xe7\x52\x1c\x10\x08\xa4\xb1\x3c\xad\xed\x72\x2e\x25\x99\xd1\x0c\xf8\xec\x72\xb8\xdf\xec\x38\x5c\x35\x9e\xe6\xc8\xd9\x5f\x0b\x9a\x7c\x89\x8e\x5f\x16\xcf\xf2\xb9\x41\xb0\x3c\x87\x36\x56\x67\x54\x0e\xe9\xbf\x97\x3f\xc0\x3c\x68\xe5\xac\x30\xab\xfe\x19\xe1\x3f\xc7\xe3\x31\xf9\x87\x33\x03\x95\x15\xcc\x7a\x70\x97\x0e\x50\x38\xc6\x1f\x89\xdf\xe5\xd2\x28\xcb\x3a\x86\xaa\xe6\xaa\x17\xc0\x45\x8f\xc9\xf9\x06\xdb\x71\xbe\x30\x58\xdb\x04\xfd\x5b\xe2\xcc\x59\xcb\x53\xd0\xdf\x7b\xcd\xdd\xbc\xa8\x86\xbe\x29\x47\xa6\xaa\xda\x1d\x67\x67\x7e\x03\x87\xd4\x8b\xf3\x4d\x17\xa5\x60\x2d\xe7\xd0\x16\x24\x2b\xf8\x7f\xf1\xf2\xe5\x27\xaf\xf1\xbf\xf8\xa6\xfc\xe6\x7a\x29\x33\x35\x8a\x78\x16\x15\x5c\x01\xdd\x34\x1f\xf9\x06\xfa\xfb\xdf\x5b\xbf\x06\x0d\x9c\x7a\x8e\x6d\x5e\x94\x8d\x52\x9a\x31\x81\xb9\x56\x17\x99\x2c\x52\xcd\x2c\xdc\xde\x2a\x9a\x24\xcf\xbd\x9a\x54\x93\xfc\x13\x6d\xe3\x25\xbe\xb0\xbd\xd9\x33\x4c\x93\xc4\x11\x90\xe0\x82\x9e\xe3\x79\x40\x0e\xc0\x4f\xdc\xa9\xbe\xda\x88\x67\xac\xfb\x90\x8b\x32\xf3\x03\x32\x3a\x20\xef\x01\x0e\x87\x63\x72\x0d\x57\x8e\x98\x2b\x17\xec\x74\x25\x33\x46\x52\xcd\x1b\xe5\x39\x5f\x33\x32\x43\xd7\xd7\x8d\x15\xcc\x8d\xca\x84\xb0\x3c\xa2\x29\x23\xd1\x92\x66\x34\x52\x2c\x33\xd3\x3e\x43\xff\x41\xef\x65\x78\x0e\x88\x7f\x45\x63\x36\x2a\x52\x3c\x16\xf9\x8b\x12\x1d\x41\xc4\x85\x41\x1d\xf7\x6c\xa6\x99\x2f\x66\x90\x87\xbb\xe3\x31\x4b\x13\xb9\x59\x31\xe1\x45\xa7\xe6\xfb\x34\x93\xb1\x3d\xa4\xd0\xaf\xbe\x53\x80\x93\x32\x29\xb4\x80\xee\x1c\x75\x2d\xd3\xe2\x0f\xff\xd0\xcd\xab\xfe\xc9\x6f\x7e\x1f\xba\x01\x31\x5b\xdb\xee\x7f\x43\x1a\xb7\xc0\x87\xca\xda\x38\xaa\xba\x28\xdb\x62\x68\x69\x91\x63\xdb\xb9\xee\x39\x3a\x55\x55\x64\xc1\xb7\x2c\x4b\xb1\xf0\x8c\x1a\x76\x18\xd3\x18\x4b\x61\x27\x69\x39\x5d\x9f\xc1\xa4\x6d\x8d\xa0\x2e\xeb\x41\x53\x41\xab\xc6\x45\xcc\x23\xe0\xcb\xef\x97\x10\xc5\x87\xd4\xcb\x90\x44\xc7\x9f\xc0\xe4\x39\xf6\xe2\x29\x7d\xef\xa4\x49\x74\x7c\x60\xfe\xd2\x3c\xf5\x98\xa0\xf7\x0e\x50\x93\x87\x54\x33\x29\x2a\xd9\x38\x2c\xf5\x73\x48\xd2\xec\x75\xcb\x72\xf0\xa8\x20\x51\xc6\x8c\xdb\x70\x6e\x6e\xb7\xcc\x88\xe0\xc9\x8b\x03\xeb\xf8\x1b\xb3\x39\x2d\x12\x95\x13\x5c\x96\x06\x5d\x16\x07\x58\x6a\x25\xc9\xbd\xc6\x95\x13\x93\x4a\x5b\x4f\xe2\xcc\xfc\x53\xdf\x47\x83\x39\xcb\x5c\xc5\xe0\xa9\x82\xea\x48\x33\x8c\xaf\x57\x9e\xe3\xed\x1a\x91\x3f\x1b\xbe\x48\x4f\xc5\x8e\xf1\x97\x03\x43\x1c\x34\x97\x09\x2a\x2f\x3b\x24\xe6\x93\x7e\xce\x45\x94\x14\xc1\x19\x2f\x19\x89\xa8\xe6\x3c\xa1\x83\xaa\x1b\x82\xe4\x59\xc8\x72\x31\xd0\xdd\x0b\xcf\x4c\xce\x82\x79\xaa\x9b\x73\xab\x4d\x4c\xa3\xa4\x66\xf7\xe1\x75\x7a\x8f\x47\x73\x0e\x5b\x03\x82\xfc\xe5\xd9\x0d\xcc\x71\xee\xc7\x0b\x02\x8f\x56\x9d\xd7\xcf\x18\xd5\xf7\x28\xba\x23\x74\x41\xb9\x38\x30\xa7\x01\x95\x76\xc9\x3d\xdd\xe4\xc6\x35\xd3\x7b\x8a\xad\x9d\x0d\x0d\x6c\x07\x44\xb0\x35\xcb\x6a\xe7\xcd\xab\x4e\xeb\x99\x06\xbd\x82\x02\x61\x40\x34\x4a\x55\x74\x2a\xf3\x9c\xcf\x12\x3b\x70\xe5\x41\xa0\x3f\xb8\x4e\x59\xe4\x97\xf7\x70\x6d\x61\x9f\x8a\x76\xc9\x32\x28\xb4\xf9\x65\xbd\xed\x5f\x81\x66\xc4\xae\xa5\x28\x57\x32\xa3\x0b\x66\x7f\xca\x15\x55\x05\x02\x06\x15\xa6\x2c\xbe\x70\x54\x59\x77\x5c\xc4\x1a\x0f\x59\x90\xa6\x49\x91\xd1\xa4\xfa\x25\x92\x02\x6d\x17\xf9\x11\xf9\xf3\x5f\xf4\x2f\xba\x7f\x16\x9b\xc0\x23\xf3\xeb\x68\x34\x32\xff\xa1\x29\xb7\x21\x4c\x84\xa6\x9c\x3d\x28\x26\xa0\xe1\xf8\xee\x8b\x7c\xcc\xe5\xe1\xfa\xd5\xad\xc0\x41\x4f\x8a\x5c\xc9\xd5\x15\x43\x5d\xec\x29\x03\x89\x0b\x50\x75\x2d\x50\x68\x3b\xf6\xa6\x54\xb1\x66\xa3\x05\x13\xe3\xbb\x62\xc6\x66\x05\x4f\xb4\x08\xa8\x07\xb0\xc3\x3f\x8f\xd9\x9a\x25\xc0\xa2\x58\xcc\x75\xc3\x57\x2c\x57\x74\x95\x6a\x61\x28\x01\x6f\x73\x4d\xc0\x8e\x88\x40\x77\xb0\x9c\xa9\x7c\x1c\x65\xf1\x38\xcd\xa4\x86\x71\x04\x68\x6d\x2c\xb3\xc5\xad\xd0\xf8\x12\x26\x00\x4c\xd0\x11\x09\x34\xab\x6b\x0a\x71\xa5\x4d\x9f\xb5\x84\xe7\xea\x0f\x8d\x37\xe7\x3c\x57\xf5\x2d\x70\xe6\x64\x76\x96\x8b\x45\x91\xd0\xcc\x7d\x05\x3b\x12\x49\x7d\x2c\x4a\xef\x34\x90\x15\xd7\x76\x83\xf4\x1f\x23\xb3\x4c\x0d\x7c\xe8\x29\x5a\xb2\x55\x15\x87\x25\x53\x26\x8e\xa7\x93\x6f\x3f\xbd\xae\xff\xbe\xed\x14\x66\x26\x6b\xdd\x1b\xaa\x21\x47\xec\xaf\x05\x5f\xd3\x44\xa3\x6c\x73\x73\x9a\xfe\x7a\xce\xf5\x08\x68\x5d\x9d\xc3\x53\xbf\x0d\xf5\x80\x6d\x3d\x55\x63\x39\x43\x67\x52\x9c\x8c\x59\x31\x8b\xcd\xf2\x70\x1e\x80\x8f\x0c\x31\xa1\x3e\xcd\x8a\x9c\x03\xff\x00\x77\x6a\x0c\x4c\x06\xcb\x72\x2b\x86\x46\x52\xac\x59\xa6\x48\xc6\x22\xb9\x10\xfc\x6f\x65\xe7\xb9\xb5\xe5\x41\x1d\x85\x2d\x52\xc4\x85\x62\x99\x66\x47\x00\x99\x1c\x00\x3a\x5d\xd1\x0d\xc9\x98\x1e\x86\x14\xc2\xe9\xd0\x7a\x12\xbc\xd5\x6c\x28\x17\x73\x79\x04\x69\x34\xf2\xa3\xc3\xc3\x05\x57\xf6\xde\x44\x72\xb5\x2a\x04\x57\x9b\x43\x38\xfe\x7c\x56\x28\x99\xe5\x87\x70\xc6\x0f\x73\xbe\x18\xd1\x2c\x5a\x72\xc5\x22\x55\x64\xec\x90\xa6\x7c\x04\x73\x17\x70\x71\xc6\xab\xf8\x59\x66\x2e\x5a\xbe\xef\xc3\x34\xdb\x08\x0a\x8e\x6e\xdb\x36\xe8\x13\x6c\xa2\xcf\x90\xcf\x46\x46\xa1\x84\xb6\x35\xa3\x5e\x9d\x5d\xdf\x10\x3b\xba\x37\x52\x0f\x81\x5f\x7d\x99\x57\xfb\xa0\x81\xc6\xc5\xdc\x72\x44\xa0\xca\x74\x15\x08\x48\x94\x13\xee\x61\x8e\xf3\x62\xb6\xe2\x2a\x77\xf2\x2f\xc8\x31\x39\x01\x74\xa2\xe9\x4f\x91\xc6\x54\xb1\x78\x4c\x26\x82\x9c\xd0\x15\x4b\x4e\x68\xce\x9e\x7c\x17\x80\x2d\x1c\x69\xd8\xf6\xdd\x87\x40\xd4\x64\x48\x19\x58\xa2\xa9\xc0\xb6\x55\xf7\x51\xd3\xb4\xba\xd3\xbe\x8d\xf1\xa8\xe2\x2a\xe9\x16\xee\xaa\x1e\xbb\xa5\x0d\xb2\xd7\x62\x51\x09\xf8\xa0\x6e\x15\x5b\xb1\x6e\x32\x93\x69\x89\xe9\x50\xae\x9e\xb1\x44\xea\x53\x25\x8d\x76\x87\xf9\x0c\x0a\x61\x4e\xe0\x7f\x18\x2d\xfe\xe1\x07\x3e\x27\xec\xaf\x64\x7c\xf5\xd5\xf1\xc9\x89\x14\x73\xbe\x20\xb7\x7b\xd9\x8c\x46\xb7\x7b\xff\xf8\xc7\xad\x78\x66\x22\x37\x8e\x08\x12\xb0\x43\xc5\x56\x29\xe0\xb3\x43\xfc\x01\x3c\x53\x2a\x8b\x66\x96\x8f\xf4\xc7\xe3\x0d\x5d\x25\xfa\xeb\x09\x30\xcb\x8c\x50\x12\x25\x45\xae\x58\x96\xc9\x84\x95\xc5\x3f\x9a\xdf\x82\xf6\x4c\x0a\x26\xd4\x81\xfe\x18\xca\x87\x00\x06\x51\x16\x95\x06\x06\xb5\x92\x58\x65\xce\x33\xfc\x03\x0e\x7a\x25\x13\x56\xe7\x3b\x60\x92\xb4\x50\x4b\x99\xf1\xbf\xa1\x1b\x83\xc3\x7c\xd4\xee\x13\x92\xc5\xc0\xc0\xb7\x02\x58\x5f\x68\xf8\x8c\x5c\xc8\x18\xf5\x12\xe4\xde\x78\x2b\x28\x49\x56\x52\x70\xf0\xca\x93\x19\x89\x59\xc2\xf0\x9e\x23\xc9\xa5\x29\xff\x5a\xb3\x0a\x7a\x5f\xf4\x16\xfe\x05\x77\xb5\xc4\xc3\xe5\x11\x1d\x11\xa1\xfb\xc6\x3f\xd7\x2c\x9b\xb9\xaf\xee\x5d\xf7\xaa\x11\x5c\x8d\xea\xaf\x05\xde\xca\x67\x64\x6a\x13\xf3\xfc\xb5\x60\x19\x37\x0a\x92\x32\x67\x0a\x7b\xe0\xb9\x62\xc2\x5c\xd5\x9d\x66\x96\xca\x38\x30\xb1\x72\xec\xc9\xf4\xf8\x6d\xf5\xad\x09\xc3\x10\x3c\x85\x12\x43\xb1\x16\x96\x04\x2e\xd0\x84\x7f\x24\x4c\x19\x8b\x4c\x73\x26\x7e\x96\xaa\x6d\x7a\x3c\x4d\xa5\x4c\x02\x33\xb4\xb0\xfa\xf0\x61\x66\x89\x8c\xee\xe8\x1c\x39\xd4\x4a\xd3\xa3\xc7\xa7\x2b\x78\xd9\xf8\x6d\x49\x45\x9c\x84\xb6\x74\xc1\x54\x68\x43\x81\x51\x65\xd5\xdf\x48\xa4\xaa\xbf\x11\x7a\x08\xf7\xad\x7b\xb2\xa2\x82\x2e\x58\x4e\x96\x32\x57\x8e\xef\xc1\x47\x81\x40\xad\xcf\x27\x5d\xd6\x05\x63\x31\xa8\x0e\xb4\xec\xa9\xa4\x69\x6b\x51\x8c\x13\xa4\xfe\xb1\x96\xe6\xe9\xb9\xc7\x02\xc3\x4b\x7a\x46\xfe\x50\xcc\xd8\x49\xb5\x31\x88\x7a\x8b\xac\x54\x9e\xa0\xfe\x80\x2b\xdd\x63\x4e\x34\x8f\x12\x41\x93\x8f\xb3\x1e\x7d\x2e\x9c\x63\x11\xb9\xa3\x7b\x57\xf6\x0c\x25\x76\x3d\x0f\x79\x2f\x9c\xb9\x6c\x2d\xfb\x99\x59\x36\xa1\x56\x07\x43\xf8\x9c\x08\x29\x18\xe2\x98\x3c\x04\x9f\x67\x76\x1b\x91\x04\x86\x4e\xc2\x33\x44\x77\x80\xb4\xa2\x65\xcd\x03\xb6\xc4\x84\x40\xda\xb6\x28\xc0\x57\x5c\xa0\xda\xe6\x89\x08\x81\x4c\xd8\x15\x43\x6f\x52\xbb\x3f\x2d\xfd\xeb\x66\x1e\x22\xd5\x39\x4c\x5e\x00\x3b\xa1\xb7\x66\x64\x3a\xa8\x6b\x3d\x7b\xf4\xe1\xc4\xf1\x1d\x21\x8e\xc8\x37\xb9\x62\x2b\x97\x33\xe8\xa6\xfc\x1a\x61\xef\x42\xed\x9d\xcf\xc8\x29\x65\x2b\x29\xae\x59\x17\xa1\x87\xc6\x3f\x17\x71\xd7\x83\xd5\x09\xba\xe6\x34\x4f\x2e\x26\x9a\xcd\x5a\x70\x41\x04\xe0\x1d\x25\xf5\x79\x07\xb2\x77\x80\x54\x0b\x85\x37\x37\x1a\xeb\xf1\x34\xb4\x41\xeb\xad\x60\x8e\x1d\xb7\x22\x9d\x9d\x06\xdc\x72\x3e\x1c\x59\x30\x07\xee\xff\x3b\xa3\x09\x8f\x79\x1e\xc9\x35\xcb\x4a\xe5\xf7\x64\x8a\x86\x1f\x1a\x6b\x31\x98\xe7\x6c\xe5\xfa\x78\xb6\x72\x27\x9e\x5e\x6f\x36\xe9\x92\xe6\x63\x3f\xff\x42\x4e\x26\xa7\x57\x84\x16\x4a\x8e\x62\xa6\x25\x28\xb0\x84\x09\x38\xc2\x34\x5e\x99\xfd\xa9\xe8\x02\xa2\x29\xb2\xa2\xe9\x23\xb6\x04\x3f\xd6\xdf\x7e\x3c\xa8\xc3\xc6\x1e\xba\x08\xae\x09\x66\x4d\xda\x4c\x79\xbc\x28\x61\x14\x84\x66\xcd\x56\x1a\x19\xeb\x9d\xa0\x6b\xca\x13\x3a\xd3\xf7\x2a\xa1\x0b\x07\x50\xa9\x0b\xe7\x67\x56\xdd\x0e\xec\x7f\x8e\xde\xfe\x51\x9d\xc8\x38\xb9\x5c\x38\xb2\x5f\xae\x22\x6d\xec\xa7\x5b\xdf\x35\x91\xaf\x86\xf3\x1f\x4a\xef\xf4\x5a\x04\x28\x0f\xdc\x04\x23\xb0\x71\xb1\xb0\xb8\xb0\x15\x66\xd8\x3a\xad\xb9\x4e\xf4\x64\x81\xcd\x01\x9b\x6d\x2c\x38\xf4\xc4\xad\x16\xba\x5a\xff\x07\xdf\xd7\xc6\x05\x75\x6e\x93\x35\x0d\xb5\xb3\x9f\x8d\x45\x6c\x21\x9e\xd4\x3a\xe4\xca\xd8\x1e\x9f\xc7\xcd\xb9\xe5\xec\x39\x27\xa8\x3c\x3d\x46\x76\xc9\xc9\x9a\x66\x5c\x16\x39\x39\xb9\x3a\xc5\xdb\x8e\x67\xe9\x23\xb1\x57\x18\x26\x3c\x67\x09\x7f\xc0\x7e\x1d\x38\x3a\xbf\xd6\x19\x14\x60\xba\x17\x69\xca\x0c\x49\x73\xbb\x9a\x2d\xd2\xad\x8e\xca\xdf\xb6\xbb\xa9\x89\x08\x21\x9e\x1d\x7b\xf6\x9e\xc6\xad\xd7\x39\x73\x11\x6b\xf0\x1b\x6f\xeb\x20\xaf\x19\xe0\xb1\x83\xc2\xc7\x0e\xcc\xf7\xfd\xf6\xce\x17\xb9\x2a\x39\x39\x11\x97\xbc\x99\xc6\x23\x70\x08\xa4\xd0\x8c\x5a\xa6\x8a\xf4\x29\xe4\xb4\xce\x9d\xef\xcd\x91\xb7\x31\xe1\x3b\xe1\x48\xe3\x49\xa5\xf1\xe4\x47\x95\xde\xfb\x6d\xcb\x0d\x18\xbc\xac\x07\x82\x14\x28\x29\x83\xf7\xa7\x75\x16\x84\x7b\x59\xa4\x8b\x8c\xc6\x26\xf8\x60\xfd\xc9\xf8\x35\xf2\x26\x11\x56\xea\x7d\x46\x66\x8c\x64\x6c\x25\xd7\x2c\x36\x8e\x72\xf6\x03\x99\xe9\x15\xce\x33\x96\x2f\x09\x17\xb9\xa2\x49\xf2\x51\x45\xa8\x96\xeb\x57\xbf\xc5\xbb\x6c\xa0\x1f\x2a\x35\x80\x98\x3d\xd6\xc8\x54\x49\xdd\x54\xef\x28\x2a\x24\x68\x92\xc8\xe8\xe3\x2e\xf2\x97\xa7\x04\xf8\x18\x17\x93\xae\x6a\xd8\x34\xa8\xe6\xf9\x4a\xaf\x90\x54\xeb\xaf\x27\x24\x83\xd3\x0c\x9c\xcb\x6c\x03\xf7\x0c\x37\x28\x93\x85\xc6\x31\x8b\x45\x66\x03\x8a\x9e\x70\x2f\x82\x7c\x83\x21\xb9\x78\x58\xe0\x74\xac\xf8\xc2\x60\x81\x1a\xdb\x1f\x83\xe4\x02\x56\x40\xcf\xf1\x8b\xa8\x30\x1e\xa4\xcf\xca\x7b\x06\xe2\xaf\x32\x17\x4d\xf3\x73\x70\x37\x21\x9f\x4f\x75\xcd\x48\x91\xeb\x57\x1a\xbf\x8f\xf4\xa9\x4c\x60\x12\x5e\x50\xd0\x34\xcd\x5b\x57\x5e\x4d\xb1\x65\xbf\xb6\x4c\xb1\xed\x52\x53\x58\x9a\xee\x94\xa7\x9e\x42\x2e\xc6\xae\x77\x97\x85\xf1\xbb\xb0\xfc\xfb\xc3\x0f\x4c\xc4\xff\xf8\xc7\x4e\x32\x70\x29\xfe\x42\x9c\xef\x8a\x0a\x3e\x67\xb9\xb2\xbb\x9b\x6f\x89\xb3\xc6\x9e\xc2\xb2\x03\x42\x73\x72\xcf\x12\xf8\xd8\x44\x18\x55\x4c\x5f\x6e\x6a\x6e\x03\x8b\x60\x45\x19\x29\x74\x5b\x46\x21\x57\xb3\x86\x0e\x34\xd2\x2d\x58\x86\x2c\x3c\xd4\x05\x77\x18\x72\x43\x28\x4b\xa9\xb9\x94\xbc\x9b\x86\xf8\x34\xef\x25\x1e\x87\x61\x47\x8c\xf3\x9a\x35\x55\x7c\x91\x8f\x68\x9a\x36\xb7\xcc\xda\x9e\x1a\x3e\xc5\xe0\xf3\x77\xee\x7e\x1f\xea\x81\x18\x64\x77\xad\x32\xaa\xd8\x62\x73\x64\xac\x18\xe3\x77\xb5\x9f\xf5\x26\xfe\xf0\x03\x51\xf2\x4f\x74\x95\x34\x5f\x92\xbf\x13\x2e\x62\x26\x14\xf9\x0c\xdb\xb1\x24\x67\xfa\x5f\xa4\xb4\xda\x5c\xc9\x24\xe1\x62\xf1\xce\x41\xac\x99\xfb\x53\x39\xcb\x15\x7d\x70\xa4\xb2\x23\xf2\xca\x39\x45\x84\xd8\x13\x63\x97\xd9\xb4\xd4\x25\xf5\x25\x87\x17\x4d\x40\xaa\xbb\xa2\x22\x5a\xb2\x6c\x64\xcd\x70\x68\x0c\xab\xc4\x36\x0c\x95\x8d\x96\x2c\x2e\x12\x96\x8d\xc1\xf1\x71\x5c\x05\x0f\x83\x7d\x32\xe3\xe0\x61\x3e\x4a\x65\x5c\xc5\x88\xc4\x95\xdd\x74\xfd\xe9\xf8\xd5\xa7\xe3\xcf\xc0\xcd\x8d\xd8\xa1\xfd\xe9\x4d\xf1\xcc\x1f\x10\x0a\x36\x37\x70\x64\x84\x43\x6c\x86\x38\x8e\x63\x29\x72\x8c\xc4\x95\x09\x33\xe8\x14\x82\x51\x0f\xdc\x4e\x56\x14\xcd\x77\x0c\xdc\xeb\x20\xca\xc4\xce\x92\xd0\x38\x1e\x81\x33\xb5\xc8\x0b\x90\x86\x8d\x4e\xd4\xfd\x3e\xcd\xb8\xcc\xb8\xda\xd8\x95\x43\xac\x8a\x30\x41\x09\x68\xdf\x75\x4d\x0f\x19\x43\x33\x9c\xdb\x05\x9f\xeb\x8e\xc1\x8f\x08\x34\xae\x6c\xcd\x23\x55\x8b\x0a\xe9\x0f\xd5\x23\xb2\x6f\x0c\xb7\x35\x4b\xab\xde\x49\x8f\x23\x63\xbd\x1f\x99\x1f\x91\x84\x8b\xe2\xc1\x36\xf8\xe1\x07\x93\xe8\xed\xbf\xee\x0e\xc8\x7f\xad\xc9\xd1\xef\xc9\xf8\xc2\xe9\x89\xd8\x63\x6b\x1a\xff\xd7\x1d\xf9\xc7\x3f\x8e\xc8\xed\x9e\xfe\xf7\x5a\xbf\xdd\x73\xba\x62\x22\x76\x3e\xd0\xd4\xc6\x08\xec\xf5\x40\xf2\x6a\xb7\xea\xbb\xfd\x96\xde\x31\x92\x17\x59\x1d\xa1\x01\xc0\x2c\x78\xc0\x31\x12\x92\x13\x69\x96\xd7\x81\xdf\xc8\x04\x6b\x1e\x91\x0b\x79\x6d\x1a\x57\x6f\xc1\xc3\x24\xa3\x1a\x34\xe4\xac\xa6\x27\xc6\x71\xb3\xbb\xd6\xf3\x81\x9c\x04\xab\xf6\xbf\x36\xf0\x1d\xdb\x1c\x79\x0e\x65\xbf\xd1\xdd\x79\x9f\x3d\xb0\xa8\x50\xbd\xa6\xdd\x65\x59\x35\x87\xaa\x46\xae\x2e\x7c\xe8\x16\x3b\x2b\x11\x8a\x01\x08\x17\x7c\xc5\xff\xc6\x48\x2c\xef\x85\xe2\x2b\x46\x62\xbc\x1d\xd4\x62\x29\x97\xb1\xb7\x66\xc7\x2f\x89\x62\x49\xe2\x52\x07\x25\x49\x2c\x09\x25\xb7\x7b\x90\x86\xb5\x1a\xc0\x7e\x72\xbb\x57\x39\x39\xd4\x4f\x6a\x2c\xa3\xfc\x30\x92\x22\x62\xa9\xca\x0f\x6d\x16\xab\xfc\x10\xd4\x0c\xa9\x8c\x0f\x9f\xd9\x58\x32\x2e\xc5\x48\xce\xf5\xcd\xa8\xce\x83\xf3\xee\xeb\x8c\x46\x6c\xca\x32\x2e\xe3\x6b\x16\x49\x11\xe7\x47\xe4\xe5\x16\xca\xab\xb2\x4b\xa2\xe2\xc9\x36\xb0\x77\xff\x24\xa1\x79\x8e\x00\xfc\xe1\x07\x32\x46\x4e\x4e\x5f\x94\x69\xb3\x01\xf9\x7b\x69\x99\xb8\xdd\x43\xe2\x85\xba\x6c\x7b\xa6\x6e\xf7\x9c\x3b\xa2\xd9\xc7\x13\x4b\xb1\xb7\x71\x5f\x45\xcd\xad\x6c\x91\xd7\x65\xb0\x06\x47\x07\x6a\x49\xdc\x60\xcd\x57\x8f\xdd\xfe\x26\xca\xf0\x8f\xd6\x02\x8a\xce\x97\x36\x77\xef\xb6\x6c\x06\x2e\xbc\x7c\x4e\x36\xb2\xc0\x68\x6a\x9a\x64\x8c\xc6\x1b\xb7\x53\x33\x19\xd0\xb2\x16\x39\x0b\x0c\x6e\xbd\xbf\x4c\x6b\x78\xed\x9e\x72\xbe\x02\x1f\x85\x1f\x7e\x18\x9f\x5c\x4c\x26\xfa\x0f\x17\xed\x40\xd8\xcb\x8a\x6a\xf6\xe2\xcf\xb7\x7b\x87\x32\x55\x87\x91\xe0\x87\x33\x2e\x0e\x9d\xe1\xc0\xb7\x7c\x6f\x64\x86\x28\x39\x58\x7c\x98\x58\xbf\xc9\xe4\xaa\xe6\x93\x61\x75\xb0\x6f\x69\x6a\x19\x48\xf7\x79\x46\x8e\x21\x8a\xe7\x0f\xef\xbe\x3a\xbb\xba\x38\xbb\x39\xbb\x7e\x7f\x7d\x76\xf5\xed\xe4\xe4\xec\xfd\x37\x97\xd7\x37\x40\x01\x3c\xef\xa6\x97\x57\x37\x26\x88\x4b\xae\x59\x96\xf1\x38\x66\x88\x3f\xd8\x57\xd3\x37\x64\x65\xe5\x7b\xf7\x41\xe0\x38\x49\x38\xac\xae\x7c\x64\x95\x31\xcd\x2f\xac\xb3\xf9\x76\x82\x0e\x26\xd6\x8d\xa5\x58\xe0\x3b\x93\xbd\xb8\x3c\x3d\x7b\x7f\x71\xfc\xf6\xac\xd9\x2f\x38\x50\x6d\x41\x0a\x1f\xf0\x30\xf5\x41\xaa\x7c\x39\xa5\x6a\x79\x04\x37\x69\xac\x4f\x3c\x04\x83\x79\xa7\x72\x72\x7c\x3e\x39\xb9\x7c\x7f\x71\x76\xf3\xdd\xe5\xd5\x1f\x26\x17\x5f\xbf\xff\xea\xf8\xe4\x0f\x67\x17\xa7\xbb\xcc\xa7\xdc\xbd\x3f\xb0\x4d\x68\x5a\x35\x0e\xb3\x6e\x56\x74\x1f\xc0\xe0\xd8\xea\xbd\x8d\x4d\x70\x9a\xad\x65\x52\xac\xd8\x5b\x5f\xd4\xfb\x88\xac\xf4\xcf\xb8\xf2\xc3\x35\xcd\x0e\x13\x3e\x83\xe3\x69\xb5\x6f\xfe\xcd\xae\xee\xed\x48\x30\x35\x8a\x79\xd6\xd6\xaf\x6e\xed\x9e\x7b\x7f\x9f\x91\xe0\xa3\x19\x17\xcd\xce\x72\x16\x15\x80\xa1\xa4\x50\xec\xa1\x59\xff\x24\xcd\xf8\x9a\x27\x6c\x51\x77\x1b\x22\x3e\x0c\x54\x13\x39\xb4\x24\x31\xe3\x82\x66\xb5\x78\x43\x34\xb6\xe9\x77\x0d\xc9\x62\xce\x13\xf0\xe0\x07\xd9\x42\xd4\x2f\x81\x3d\x15\xa6\xff\x51\x24\xf8\x47\x41\x0e\xa6\xbf\x01\x15\x38\x0b\x01\x0a\x65\xdc\x63\xf5\x36\xb9\xdb\xa3\x69\x07\x28\x7e\xc6\x81\x5b\x7b\x31\x79\x7f\x72\x79\xf1\x26\x8c\x39\x34\x63\xf8\xea\xe5\xc8\xa8\x50\x74\xdf\xa0\x57\xda\x6b\xce\xc2\xda\x1f\x1a\x87\x04\xc2\x4b\x60\xcf\x42\x47\xa5\x39\x1d\x83\x41\x60\x5a\x93\xaf\xff\xad\xd8\x43\xf0\xf7\x66\x39\xef\x7d\x4d\x9f\x91\x6b\x86\xbe\xa2\xfa\x32\x43\x62\x82\x32\xd0\x07\x9c\xd5\xbe\xc8\x51\xc2\xd6\xaf\x02\x2b\xfe\x05\x60\xf0\x67\xb0\x6f\x6f\x6f\xde\x11\xc3\x74\xae\x69\xc6\xb5\x64\x1a\xde\xa3\xb7\x37\xef\xfe\x9d\x1b\xb3\x66\x6a\xf9\x7e\xa5\x8a\xe6\x3a\xa6\x19\x5b\x33\x61\xca\x15\x55\x48\x0e\xb8\xaa\x3c\x61\x0c\xa2\x0c\xe7\x52\xb7\x6a\x96\x34\xb3\xab\xbb\x3e\x3f\x3b\xdb\xaa\x0b\x58\x5e\x84\x39\x4d\x72\x56\x3f\xfb\xbd\x09\xc9\x07\x21\x7c\x6f\x67\x4c\x45\x96\x2c\x8d\xb7\x42\xb9\xab\xee\x3c\xc4\xe8\xf1\xf4\xe3\x38\x8e\x35\x67\xf9\x26\x61\x0f\xe4\x5b\x58\x3a\x39\xcd\xf8\x1a\x5c\xa9\xa9\xb5\xff\xe8\x16\x29\xcb\x40\x5f\xf0\x4e\xf0\x07\x72\x2a\x57\x94\x0b\x72\x2d\xa3\x3b\xcc\xd1\x06\x21\x97\xe4\x94\xdf\xd1\x5c\xd5\x89\x0d\x18\xe1\xc1\x1f\x3a\xa2\xca\xc4\xe3\xbf\x61\x09\x7f\x00\x84\xeb\x86\xa6\x5f\x6f\x44\x44\x8e\xa7\x13\x0f\xd9\x99\x27\xec\x61\x2d\x93\x51\x0c\x53\xf3\x53\x1e\xbd\x84\x6f\x65\x32\x59\x2d\xea\xb4\x27\xb8\xa1\xfe\xce\x47\x7a\x2b\xea\xf0\xdb\xda\xa8\xed\x69\x3c\x6e\x03\x22\xbf\x54\x71\x55\x80\x1e\xd9\xa3\x2f\x2c\x71\xae\x23\xc0\x01\xfa\x6d\xd4\xdd\x7a\xe6\x0a\x25\x99\x5c\x64\x74\x95\x97\x98\xdc\x06\x0c\x8a\x18\x35\xef\xb9\xed\xd5\xfd\x5e\xaf\xd3\xb3\x11\x1e\xc9\xb4\xbe\x0b\x5a\xde\xf2\x30\x00\xff\xb3\x29\xfa\xbb\x9c\xb9\x3b\x76\x3c\x9d\x58\x65\xaf\xe6\x64\x35\x12\x8b\xa9\xa2\x60\x84\x0c\xa0\xb1\xd3\xe3\x9b\xe3\xeb\x9b\xcb\xab\xb3\xf7\x37\x7f\x9a\x86\x09\x7b\xb5\x84\x6d\x82\xfe\x1d\xe5\xaa\xf4\xc4\xea\x1a\xef\xbb\xe3\xc9\xcd\xfb\x37\x97\x57\xef\xcb\x81\x83\x63\x02\x00\xb6\x46\xd3\x94\x74\x67\xe2\xa9\x29\xe6\xbf\x87\x60\x2e\xa5\xcc\x59\xb9\x23\x4c\x58\x61\x39\xc4\xd7\xfc\xba\x84\x23\x58\x22\x5a\x01\xb0\x80\x9f\xe6\xe2\x20\xcf\xc8\x1c\x53\xd8\x3b\xc1\xdd\xfa\x7d\x60\xd1\xe7\xef\xae\x6f\xce\xae\x3a\x4e\xe0\x17\xf9\xc1\x6c\x91\x6e\x1f\x88\xe3\xca\x67\x0b\x86\xfc\xea\xeb\xa9\x93\x93\x3b\x00\xe7\x49\x98\x74\xd3\x42\x49\xec\x6e\x7b\xac\x33\x01\x46\xc6\xc9\xb4\xf9\x7d\x63\xff\x26\xd3\x6f\x3f\x9b\x5e\x5e\x9e\xbf\xdf\x6e\xe9\x8c\x74\x0c\xd1\xa8\xc1\x51\x64\x46\x4e\x79\x0e\xff\xfc\xf6\x8f\xe7\xc7\x17\xf6\xc0\x5b\x0d\xd3\x64\x4a\x52\x29\x93\xf6\x93\x54\xce\x04\xba\x08\x4e\xe5\x42\x73\x3a\xfe\xcb\xa6\xf9\x3d\xb8\xdd\x85\x10\x2c\x21\x31\x03\xd7\x3c\x88\x5e\xe7\x73\xc2\x53\x9e\x42\x44\x36\xcc\x39\xf6\xcf\xe5\xcd\xd9\xf9\xe4\x8f\x1a\x16\x17\x93\xe9\x2f\x94\x23\xac\xad\x74\x69\x21\x5e\x5b\x73\x00\xd0\xb8\x38\x68\xff\x2b\x59\xdb\x77\x3c\x63\x8b\x82\x66\xf1\x0e\xeb\xfb\x6e\x72\x75\xf6\xf5\xbb\xe3\xab\xd3\x5f\xe8\x1a\x6f\x6a\x17\x63\xfd\x19\x5c\x8d\x4a\xaa\x75\x7c\x8a\x1a\x3e\xe3\x63\xf0\xfe\x9c\x4c\xcb\x1a\x1d\xcd\x9e\xa3\xa5\xcc\x35\xa1\x47\x1b\x16\xcf\xd1\x66\x32\x26\x27\x4b\x2a\x16\x18\x65\x68\x73\x30\x1b\xbf\x97\x9a\xf1\x1d\x7a\x5d\xd2\xf5\x56\xbf\x42\x1a\xed\xbf\xc9\xe2\x6c\x62\x3e\xe7\x5a\x02\x36\xc5\x53\x46\x23\x63\x62\x1d\x45\x3c\x6e\x0a\x22\x3e\x8b\xdd\x99\x93\x60\x81\xa9\x2d\x1c\x70\x32\x39\xbd\xea\x87\x2d\xb6\x5b\x3a\xc8\xe2\x87\x1f\xc6\x06\xe9\xeb\x66\xae\x19\xc8\xce\xcc\xe2\x2d\x50\x2d\x24\x72\x01\x70\xca\x25\x06\x07\xa8\x44\xff\x94\x83\x69\x39\x84\x9f\xcd\x7c\x4e\x27\xd7\xc7\x5f\x9d\x9f\xbd\x7f\x33\x39\x3f\x7b\x7f\x7e\xf9\xf5\xd7\x93\x0b\xbf\xa0\xdf\xce\x2f\xa0\x58\x50\x05\x6d\x4a\xe0\x42\xcb\xf3\x82\x39\xcf\xf4\xcf\xc7\x27\x27\x67\xd3\x9b\xd6\x8b\x70\x7a\xf6\xe6\xf8\xdd\xf9\xcd\xd9\xc5\xe9\xf4\x72\x72\x71\x73\x73\xa9\x79\xc6\xe3\x93\x9b\xc9\x65\x18\xbb\x62\xb7\x61\x30\x4d\xa6\xeb\xd7\xfa\x84\x56\xac\x5c\xeb\x14\x26\xd3\x6f\x5f\x5f\xbf\x9b\x6a\x86\x74\x17\x01\xd4\x7f\x64\x20\xf2\x1d\x1d\xf1\xf4\x91\xc1\x11\xce\x2f\xbf\xd6\x20\x9f\x1e\xdf\x7c\xa3\xc1\x02\xd7\x05\x5d\xa9\x71\x5b\x01\x9e\x76\x5f\x95\x84\x7d\x6e\x9b\xb1\xd3\x5f\x70\xc6\x7a\x90\x0f\x99\xf0\xf5\xd9\xb7\x67\x57\x93\x9b\x3f\x5d\xff\xe9\x1a\xe7\x6c\xee\x24\x5c\xdc\x32\x5e\x44\xcc\x65\xeb\x4a\xf2\x4d\x9e\xc8\x45\xc7\x5a\x9c\xa1\x82\xcb\x69\x3b\x89\xce\x78\xb7\x7b\xf7\x34\x13\x5c\x2c\xfa\x2c\xfd\xda\xbb\xde\x93\xab\xb3\xb3\x0b\xdd\xd7\x77\xd8\xd3\xf6\x8a\xfb\x2e\x07\x7a\x0a\xae\xe8\x3b\xff\x44\xeb\xdd\x7d\x73\x76\x7c\x7e\xf3\xcd\xd9\x85\xbe\xb6\x7e\xa6\x35\x7c\x55\xdb\x16\x3c\x99\xde\xe8\x2e\xaf\x0d\x3b\x0c\xaa\x81\x42\xa1\xd7\x75\xc5\xb1\x99\xf4\x55\x62\x8e\xe5\x23\xdb\x2f\x51\xad\xc3\x56\x76\xb0\x3e\xd5\xc7\xea\x44\x7c\x1e\x55\xf6\x77\x8c\x11\xdf\xa2\x8e\x51\x5a\x1c\x91\x4f\x3e\x7f\x59\x33\x98\x25\x7c\xcd\x04\xcb\xf3\x69\x26\x67\xcd\x1a\x69\xec\x61\x2b\xfe\xba\x52\x92\x37\x7f\x1f\x11\xd7\x8e\xd6\x14\xbd\xb1\xc5\x08\x6e\xc8\x48\x8f\xe9\x79\x39\xe3\x59\xec\x79\x97\xd6\x2d\xae\xaf\x5e\xd6\x5f\x83\xdb\x1c\x4d\x4e\x59\x42\x37\xc1\x46\x73\xca\x93\x22\x63\x37\xcb\x8c\xe5\x4b\x99\xc4\x47\xe4\x75\x1d\x94\x34\xe6\x3f\x37\x14\x1a\x16\xd0\x3a\x18\x3c\x2f\x5b\xe1\xd0\x5b\x1f\x98\xf0\xd9\xe1\x4a\xc6\x85\x27\xc9\x17\x1e\xe8\x84\xcf\x46\x81\x06\x7a\x52\x97\x22\xd9\xf8\x92\xf9\xd7\x47\xc9\x0a\x71\xf8\x80\xd7\x66\x9c\xc8\xe8\xce\x3f\x94\x69\x31\xf2\xb5\xa8\xc6\x42\xe2\xd3\x32\xd8\x9a\x66\x30\x20\x02\xdd\x3f\xd4\x9a\x66\xa3\xac\x10\x23\x7f\x9b\x1d\x07\x03\xc3\x5c\xc7\x60\x1a\x8c\x8f\x1a\x0c\xbb\x40\xed\x57\xbe\x11\x5b\xa9\x7a\x7c\x2b\xd7\xe7\x8c\x2e\xb6\xf2\x46\x3c\xc3\x9a\xb0\x56\xa1\x74\x40\xee\x19\xf8\x88\x1a\xc5\x13\xd0\x2c\x08\xfc\x2e\x4c\xf2\x09\xdd\x52\x53\x5f\x74\x36\x20\x54\x91\xc3\x7c\x93\x1f\xce\xf3\xc3\x59\x3a\xd7\x2c\xd7\x3d\x33\xad\x31\x95\x55\x73\x38\x48\xaf\xa7\x48\xcc\x33\x70\xf9\x69\x56\x63\xb3\x8b\xcb\x37\xf9\x7c\xeb\x70\xb9\xeb\x32\x83\x6e\xeb\xda\xbe\xe2\xd8\x37\xe6\x47\x5b\x31\x2a\x30\x9b\x02\xa4\x7f\x2a\x27\xd7\xbd\x14\xae\x90\x95\x4e\x33\x99\xd2\x85\x66\xe9\x4d\x38\x5f\x43\xa1\x68\xc7\x35\xc9\x58\x81\xd1\xe3\x39\xb9\x13\xf2\x5e\xb8\xa0\xa3\xaa\x36\x18\x7a\x37\x60\x7e\xdf\xfa\x94\x8d\xdf\x84\x49\xe6\xba\x35\x12\x02\xc1\x4c\x0a\xfc\x1d\x6b\x9f\xdb\xe6\x78\xdb\xeb\xea\x58\x1b\x40\xe4\x3a\x7c\x56\xef\x47\xed\xb7\x5b\x2f\x0c\x60\xdf\x40\x39\x2d\x38\x63\xd4\x79\xb3\xda\x3b\x0d\xdd\xda\x51\xe7\x25\xea\xee\xd7\x77\x41\x47\x1d\x48\xa7\xbd\xd7\x76\x84\x86\x9e\x98\x6f\x78\xc2\x2e\xb3\x93\x9a\xc7\x7b\xcb\xa1\x6f\x1f\xd0\x7b\x05\x70\x9c\x53\x7b\xbd\xb6\x07\xab\x02\x15\xad\xf9\xf3\xe4\xc2\x67\xa9\x08\xd8\x7b\xda\xa7\xe4\xb5\x22\x8d\xda\x4d\x3e\xed\x3d\x06\x4c\x49\xcf\xc8\x5b\x07\xc9\x54\xe8\x04\xf8\xb3\xa6\x9f\x92\x1b\x1c\x61\x0b\x88\xbb\x5d\x81\x6e\x09\x12\x37\x34\x1c\xdb\x9d\x8e\xea\xbe\x4e\x65\x24\x8a\x13\x84\xe2\xf6\x68\xfd\xe4\x73\x9b\x15\xc8\x75\x46\x02\x7e\xa4\xb2\x6b\x78\x60\xdf\xee\xb0\xd1\xf3\x70\x7b\xdd\x42\xaa\xdd\x37\x7a\x8a\xb0\x35\xcc\x73\x91\xfd\x24\x27\x30\x9f\xce\x93\x48\xb6\x6f\xba\x87\x4a\x6d\x9f\xd7\x6d\x13\xdf\xf6\x4c\x3b\x4c\x61\xbb\x4e\xf9\x87\x1f\x46\x7a\x4f\xad\x69\x6e\x0a\x5e\xed\xa7\xbc\xee\xb1\x5a\xad\xa7\x32\xe2\x95\x2d\xd1\x37\x7b\x44\x58\x92\xb3\xc0\x57\x87\x45\x0e\x5b\xa7\xb9\x49\xc7\x41\x11\xfe\x99\x30\x35\x32\xbe\xf4\x87\x88\xda\x0f\xa1\x59\x09\xb0\xff\xaf\x88\x73\x33\x82\xf1\x8b\xed\x95\x14\xc7\xf5\x9b\xaf\x62\x23\x9a\x91\x07\x8f\x77\xa4\xdf\x35\x08\xa1\x19\xe0\x5f\x06\x24\x5c\x33\xe6\x66\xa8\x5a\x16\xb3\x71\x24\x57\x87\xb5\x38\x9a\xc3\xed\xf4\x00\xde\xb8\x00\x13\x3d\xe0\xe4\x99\xdd\x25\x39\xc2\xa3\xa3\x06\x3c\x09\x10\xac\x4f\x35\xea\x13\x6b\xe9\x83\xa8\x29\x0e\x8c\xce\x90\x90\x0d\x2f\x61\xa0\x3a\x5a\x33\xbc\x0a\x36\xc3\x4d\xc6\xd2\x84\x47\x34\x07\x7f\xfd\x47\x45\x23\xf8\x16\x99\x57\x31\x09\xd5\xd5\xb8\x62\x55\xb4\x56\x57\x38\x40\x27\x18\x09\x69\x03\x25\xe9\x13\x51\x10\xea\x16\xdc\x01\x90\xd9\xb1\x3e\xb7\x9a\x15\xa3\xd9\x5d\xc3\xe5\x3a\x95\x15\x87\xe5\x8f\x0b\xf8\xd9\x7d\xe5\x2d\xae\xb9\xa9\x1c\xd7\x1d\x84\x51\x77\x67\x77\xa2\x42\xdc\xe6\x65\x48\xc8\xeb\x00\xda\x09\x39\xc5\xfb\x35\x22\x4e\x6b\x6b\x13\x0a\x26\xaf\x92\x04\x93\x05\x26\x4c\x41\x11\xbd\x42\x84\x9c\xe8\x07\x17\xfc\x5e\x2e\xf8\x2e\x4a\xc7\x36\x1f\xec\x8e\x1f\xba\x35\x5b\xae\xf9\x1f\xe2\xaf\xde\xc8\x0a\xd4\xcb\x75\xbd\xb4\x3e\xf8\xbc\xd7\xbd\x3e\x26\xa3\x7e\x68\x86\xd4\x5d\x3b\xab\x06\x7e\x0f\x8f\x2d\xbf\x07\x63\x56\xc7\x52\x1f\xee\x79\x57\x52\x1f\xf1\x80\x10\x6b\xb4\x92\xef\x4f\x2e\x2f\x6e\xae\x2e\xcf\xcf\xcf\xae\x42\xea\xdb\x6d\x2d\xd0\x4e\xfe\x12\x8e\xb7\xc4\x53\xa9\xac\x34\x6f\x02\x6a\xab\x25\x8b\xee\x46\xf5\xbc\x46\x55\xb3\x51\xf6\x33\xf1\x1d\xbb\x90\xe5\x5d\x79\x10\xa6\xa2\x78\x94\x6b\x4a\xa7\x2c\xff\xd1\xf3\x4b\xb5\xd1\x14\xa2\xe7\x27\x26\x82\x9c\x8d\x22\x2a\x68\x62\xbe\xda\x3b\xf8\xbf\x08\x21\x7b\xa6\xbf\xf5\xa7\xe3\x57\xbf\x1d\xbf\xda\x3b\x22\x7b\xba\x2f\x13\xd2\x7b\x63\xfa\xa8\xdc\x52\xcc\x0b\xd3\xbc\xf7\x74\x4d\xe2\x8b\x5a\xcc\xe7\x89\xb5\x9f\x12\x9e\x97\x29\xe3\xcb\xb9\x62\x81\xcb\x39\xf0\xd3\x2c\xb6\xe3\xba\xf6\xc7\x2a\xa5\x91\xed\x68\x7b\xb3\xc3\xdb\x5a\x19\x63\x43\x9b\x59\x7e\xf7\x0c\xf3\xeb\xe8\x69\x1a\xe3\x0a\x52\x72\xd8\x83\xf7\x06\xfb\xbd\xc7\xde\x5d\x63\xcf\x33\x72\x52\xae\x26\xe0\x26\x53\xf7\x3f\xd1\x9f\xcf\x78\x16\xfb\x3f\x7f\x7b\xf3\xce\x86\xa3\x68\xa2\x61\x63\x87\x30\x25\xee\x9c\x46\xa6\xbc\x13\x1a\xbe\x91\x80\x3d\x23\x23\x32\x99\x3b\x56\xf1\xca\x9d\xe1\xc0\x96\x8a\xdd\xc8\x22\x2b\xfd\xdc\xf4\x18\x23\xf2\xfa\xa5\xfd\xf8\x52\x2d\x59\x76\xcf\x73\x06\x3a\x2d\xe3\xab\x91\x11\xab\xc4\xeb\xd9\xdf\xe7\x81\xfe\x26\xd3\xc9\xb4\x67\x17\x9f\x04\xba\xa8\x64\x5f\x2a\x36\x84\x89\x88\xa6\x79\x61\xe3\x7c\x02\xdd\x8d\x2b\xce\x47\x77\x6e\x19\x17\xdd\x1b\xc3\x9f\x5e\x1a\x62\x60\x4d\xf2\xc6\x34\xfc\xf6\xe6\x1d\x9a\x84\x0d\xa5\xf4\xb0\x3c\xee\x17\xaf\x3e\xfb\xec\x65\xa3\x75\xd8\x4b\xdc\x26\xcf\x08\x39\x8b\xc3\x67\x40\x1d\x51\xf3\xf6\xcc\xa6\x53\x07\xbd\x04\xb7\x99\xee\xaa\xda\x47\x85\x92\x2b\x0a\xb4\x2d\xd9\x90\x54\x9a\xac\x91\x78\xea\xb6\x9c\xba\x8f\xc8\xdf\x47\x88\x63\x7f\xb0\xa8\xf6\x76\x4f\x40\xd5\x23\xe3\xa1\xa4\xd9\xce\x91\xf9\xc8\xa9\xe7\x72\xbb\x17\x09\x7b\xe5\xb0\xed\xcb\xf1\xa7\xe3\x57\xb5\x16\x46\x9a\xd4\xaf\xff\x5c\x21\xf2\x1f\x5c\x9c\x7e\xbb\x07\x3e\x54\xd0\x81\xd1\x95\xd5\x6b\xc6\xdc\xee\x25\x72\xf1\x3e\x61\x6b\x96\x60\xab\xef\x8e\xaf\x2e\x26\x17\x5f\x7b\x9b\xcd\x79\xc2\xde\x6b\x49\x17\x9b\xa2\xa2\x42\x2e\x0c\x32\x02\x7d\x45\x24\xf8\x38\x91\x8b\xad\xcf\x4b\x27\xbf\xf7\xd5\x84\x5c\x0f\xc1\x46\x73\xbd\x35\x15\x98\xde\xbf\xf7\xb9\xb2\xbf\x7f\xbf\xf5\xd9\x4a\x15\xfa\x8b\xf7\xef\x8d\x23\xf9\xfb\xf7\x8d\x06\x18\xf9\x75\x54\x07\x92\x1f\x50\x26\x4a\xcc\x6d\xf8\x8f\x46\x6f\xa8\x4c\xe9\xec\xef\xee\x8b\xbc\xbd\x1f\x17\x10\xde\xbe\x4c\x86\x44\x8d\x58\x1d\x80\x60\x14\xc3\x7b\x6b\x26\xd7\xf0\xa8\x8d\x52\xfd\xe1\x0e\x18\x3c\x1f\xa9\xcc\xd4\x8a\xa6\x5b\x40\xcd\x05\x55\xba\x85\xca\x0a\xd6\x78\x15\xd1\x94\xce\x78\x82\x29\x2d\x60\xea\xd0\xcb\x5b\x9a\xa6\x5c\x2c\x72\xfb\xd5\xae\x33\x99\x51\x11\xdf\xf3\x58\x9f\xb3\xee\x01\x9d\xc6\xdb\xa3\xd9\x7f\x9a\x90\x9e\x1e\x1c\xc4\x5d\x1c\x8f\xa2\x2c\xae\xb1\x0d\x1f\xbf\x46\x00\x12\xb5\xad\x2c\x34\x4f\x90\xca\xff\xab\xaf\xa7\xb5\x74\x9e\xf8\xae\x4a\xe8\xdf\x7c\xbf\x9d\xd6\x3f\x90\x2b\xa7\x4a\xee\xdf\x6c\x70\x5b\xa5\xf8\x37\x4e\x3f\xb7\x4f\x93\xdf\xbf\x39\xf7\x7a\x72\xf0\x3a\xfe\xc7\x02\x3b\x1b\xf0\xf5\xcc\x64\xa1\xea\x22\xe1\x90\xdf\x7f\xc8\xef\xef\x6e\xc1\x90\xdf\xff\x67\xcb\xef\xdf\xbc\xc4\xdb\x59\xfe\xeb\xf5\x6d\xf4\x05\xae\x5d\xed\xfe\xe9\xfc\x69\x7e\x01\x15\x25\x3d\x2e\xa5\x8d\x0b\x7d\x8d\x0d\x6d\xd9\x10\xab\xe6\x38\xbe\x36\x35\x29\x51\xae\x9a\x6d\x08\x35\x5c\xe4\x9f\x4f\xb1\x89\xd7\x5b\xf5\xf5\x67\x9f\xbf\xfa\xe4\x2f\xfb\xdb\xaf\x30\x9f\xdb\x91\xbe\x9d\x9f\x7e\xb2\xfd\x1a\x41\xaa\xaf\xee\x62\xbb\x0c\xa6\xdd\x79\x7f\x25\xe8\xda\x7a\x4e\xaa\xa6\x78\x3f\x6c\xbd\x02\x84\xa5\x39\x41\x16\xce\x98\xab\x84\x35\x83\xc4\x0c\x08\xb3\x19\x57\x19\xcd\x36\xa6\xec\x1d\x38\x08\x53\xf4\x4d\xc3\x08\x9e\x9d\x0a\x1c\x78\xa7\xb9\xa9\xb6\x3f\x57\x54\xc4\x5a\xc0\x92\x19\x49\x68\xb6\x60\xcd\xe9\xfa\x3a\x25\xb0\x04\x7d\xd3\x3c\xf1\x1d\xf8\x74\x56\xd1\x06\xf2\xe4\x7f\xe5\x29\x9a\x6d\x8a\x08\x57\xf1\x65\x76\x7a\xc1\x3a\xbe\xdd\xf5\x7b\x51\x31\xd4\x6b\x0a\xdf\x02\x9e\x83\xf4\x66\x33\x08\xd7\xc5\x73\x45\x6e\xf7\x28\x3d\x12\xe2\x76\x0f\x2a\x25\xe2\x1f\x47\xab\x95\xb7\xe2\xaa\x7d\xde\xc8\xac\x82\x7a\xb5\x1a\x2d\x1d\x57\xdd\x61\xff\x07\x26\x2f\xb8\xfe\xfd\x76\x4f\x03\x3d\xdc\xed\xed\x1e\x7c\x48\x33\x46\x5e\xbd\x26\x33\xae\xcc\x45\x1a\xc3\x80\xcd\xad\x75\x46\x83\xf9\x86\xfb\xf5\xcd\xe4\xa0\x1c\x4d\xc4\x5a\x28\x58\x99\x81\x3f\xfd\xa4\x36\xf0\x77\xfa\x13\x6f\xe5\x31\x3b\x65\x58\x16\x96\xeb\x3b\xbe\x26\x88\x12\x42\x9d\xa7\x2c\x1b\x1d\x5f\xdb\x50\x16\xbe\x15\x04\x5a\x3d\x29\x55\x9a\x16\x1f\x91\xff\xfd\xfc\xf6\x36\xfe\xbf\x5f\x1c\xe1\xff\xfe\xeb\xef\xf5\xbf\xed\xcf\x8f\x3d\x41\x8f\x2e\xbe\x9c\x40\xed\x85\xa9\xcc\x7c\xc8\xac\x76\xee\xce\xcb\x96\x16\x51\x42\xd9\x49\xdc\x0b\x8d\x5b\xd2\x4c\x2a\x19\xc9\xc4\x72\x2f\xd8\xb5\x17\x32\xa7\xb6\x12\x9f\x92\xe4\xd5\x6f\x7f\xb7\xdd\x64\x45\x1f\xf8\xaa\x58\x1d\x91\xd7\x9f\x7f\xfe\xe9\xe7\x9e\xf7\x5c\xe0\xfb\x57\x3b\x22\xd2\x44\x2e\xae\xd9\x9a\x65\x5c\x6d\xae\xa3\x8c\xb1\x26\xaf\xb7\xb5\xec\xfd\xf3\xe6\x17\x76\xf9\x89\x5c\x90\xdc\xbc\x21\x74\x26\xd7\x56\xe1\x9c\xc8\x85\xb7\x86\x1e\x94\x0a\x67\xa2\x4c\x34\x9e\xab\x58\x16\xca\x21\x27\x64\x72\xf1\xe6\xd2\x47\x3a\xda\xb6\x5f\x93\xa4\x1b\x48\x37\xf3\x96\xe5\x4b\x8c\x0d\xf2\x55\xef\xae\xaf\xea\xc2\xf7\x15\xc9\x99\xaa\x8a\x3c\xce\x0b\x63\xc7\x41\x77\xe9\x6d\xbf\x47\xfd\xe8\x8d\x5f\x41\x72\x98\x52\x03\xe5\x2e\x48\x8b\x68\xe1\x05\xcd\xa4\x4c\x18\xdd\xe2\x89\xd3\x8c\xcd\xf9\xc3\xb1\x9b\xd4\xbb\x93\xea\x4d\x3d\xdf\x54\x94\x05\xbc\x26\xa0\x45\x3d\x57\xb8\x6f\x45\x6d\xec\x06\xd9\xa1\x94\xdf\xf6\x84\x2a\xbd\x6c\x5e\x9f\x86\x43\xa1\xfc\x08\xc0\x46\xe6\x54\x55\x31\x4f\x26\xa7\x57\x8f\x23\x76\x11\x8f\x7d\x3c\x91\x67\x09\x90\xf2\x1c\xb4\xa4\x70\xac\xab\x9e\xdd\x32\xd8\x76\x1d\xe1\x2a\xf6\xdd\xd4\xaf\x9d\xbb\xf1\xcd\xcc\xe1\x71\x8c\x57\x8f\xe5\x72\x18\x87\xc3\x5b\x91\x17\x60\x5d\xc2\x88\xdf\x7a\xf6\xa1\x2c\x07\x65\xce\x6f\xf7\x34\x5b\x9a\x8f\x9d\x51\x90\xaa\xf6\x62\x47\x08\x4a\x75\x9d\x54\xb9\x85\xf8\xb6\x93\xa9\x76\xaa\xdc\x4e\x7c\xc3\x3d\x77\x51\xe5\x4e\xe2\xdb\x36\xe9\x0e\xaa\xdc\x49\x7b\x7b\xf5\xdd\x9f\x28\x87\xaf\x30\x3e\xdd\x27\xb6\x95\xa6\x92\x0f\x21\xc8\xc6\x12\x62\x74\x29\x93\x69\x27\xe6\xbb\x6e\x7e\x00\xc0\x80\x1c\x2e\xfa\xfe\x62\xea\x5f\x14\x5d\xf1\x1e\x9b\x11\xbc\xb8\xcf\xc4\xea\xda\x5e\x8c\x27\x1e\xc8\xa9\xf3\x0a\xfb\x94\x15\x75\xb1\x68\xaa\x45\x01\x58\x1a\xd5\xd7\x2f\x4e\xa2\x4c\x3a\x0a\x46\x7c\xb1\xa9\x0d\x67\x42\xda\xd4\x92\xad\x1e\x8f\x74\x9b\xb0\xc0\xac\xc0\x95\x64\xef\x38\xe6\x98\x52\xdd\x65\x53\xff\x3e\x57\x20\x7c\x02\x64\xfb\x64\x4c\x9d\xd9\xe1\xb3\x07\x54\x03\xf5\x3f\x44\xce\x17\xfe\x53\x24\x33\x27\x08\xcd\x37\x67\xd3\x11\xb1\x3d\xe9\xbd\x1d\xbb\x39\x08\x9a\x0d\xca\xc8\x4a\xf0\x9e\x6a\x86\x57\xe2\x53\x11\x19\x53\x13\x78\x83\x95\xce\xf0\xc8\x98\x8a\xf9\x58\x97\x17\x27\xfa\xc1\x27\xa8\x9a\x5d\xe7\x11\xf2\xef\xae\xb3\xfe\x5f\xe5\x21\xfa\x75\x55\x15\x34\xaa\xfb\xa7\xd7\xe0\x43\xb2\xf8\xa7\x51\xdc\x4f\x99\x95\x56\x6a\xfa\x7a\xfd\xb3\x57\x4d\xef\xe4\xad\xaf\x69\xe7\x53\xd3\xcf\x53\x29\xe5\x07\xed\xf9\xa0\x3d\x77\xb7\x60\xd0\x9e\xff\x9c\xda\x73\x8d\x0e\xfa\x95\xc6\x35\x8d\x1f\x51\x08\xb7\xaf\xe6\xfc\x66\xc9\x2a\x76\xdd\x6a\xec\x35\xfa\xf1\x90\xb9\x0f\x51\x7e\xdf\x31\x96\x5e\x62\xb6\xf0\xe4\x82\x3d\xa8\x6f\x64\xda\x35\xb5\xcb\xd4\xfa\x81\xe8\x8f\x61\x62\x26\xdf\x78\x42\x04\x7b\x50\x4b\x99\x62\x8e\x1e\x8c\x23\x41\x65\x76\x97\xce\x06\x60\x4a\x34\x50\xf5\x19\x57\x70\x49\x6c\xac\xb2\x2b\xdb\xc3\x8e\x80\x07\x31\x8b\xf5\x27\xbe\x7e\x75\x2f\x79\xa9\x5d\x29\x4c\x0e\xa0\xdb\x3d\x3d\x39\xa2\x67\xa7\xe7\xfd\xa5\x96\x8a\x44\xae\x18\x8d\x35\x78\x9d\xb7\x39\x4b\xe6\x5f\xde\xee\x3d\x37\xb6\x8a\x17\xbe\x21\x4c\xac\x4d\xe9\x0c\x3a\xcb\xa8\x88\x96\x76\x9f\x2e\xf4\xd0\x52\x18\x67\xa9\x71\x34\x5f\x78\x35\xc5\xad\x8a\x1a\x3d\xfd\x3e\x87\xa4\x4c\xbf\x54\x26\xff\xb1\xf8\xc5\xc8\x11\xa6\x7c\x00\x3a\xc9\x43\xf0\x9d\x77\x41\x39\x51\x5a\x4a\x55\x68\x8d\x01\xa4\x02\xc7\x0d\x83\xf9\x30\x59\xb1\xc6\x10\x39\x53\xa6\x2e\x9e\xac\xb9\x73\x07\x3a\x75\xe4\x1a\x88\xef\x83\xae\x40\xa3\xc9\xa0\xd8\x9c\xfe\x38\xaf\xbc\x9a\x2d\x60\xab\xf2\x06\x7e\xa0\x85\xd5\x75\x1e\xf7\x72\x2f\xec\xca\x44\xeb\x56\xff\x83\xe3\x43\x70\xa2\x21\x72\x10\x6e\x50\x42\x82\x8b\xc5\x98\x68\xa9\x7a\x6b\xab\x60\x5a\x06\x44\x00\x9e\xf2\x0c\xe0\x35\xb0\xf6\x04\xb6\x4a\x55\x33\xc8\xb3\x6b\x49\x29\xcd\xf3\x7b\x99\x75\x2a\x1d\x2f\x4d\xee\x32\x84\xad\xf9\xa8\x5c\x9b\x99\x7f\x4e\x16\x4c\xb0\x8c\x3a\x9b\x1c\xd0\x3b\xb6\x61\x37\xd2\xcd\x57\xa3\xc7\x68\x4b\xda\x19\xef\x66\x68\x92\x79\xc7\x36\xc0\x79\x98\x2e\xec\x79\x80\x43\x9c\xca\x78\x3f\xaf\xbc\x21\x03\x2a\x88\x4e\x96\x1f\xb3\xd9\x84\x35\x14\x5b\x57\xcc\xcc\x09\x51\x0f\xcc\x4a\x49\x73\x74\x81\xf0\x8e\x09\x79\x8b\x5b\x1c\xee\x94\x10\xaa\xf9\x00\x1e\xdb\x2e\xee\x98\xef\x28\xd8\xa7\x8f\x96\xa4\xd5\xb2\xb6\xa5\x93\x76\xf2\xcf\x66\x6c\xce\x32\x26\x94\x97\xa8\xb7\x65\x83\x97\x6b\x2d\xc1\xb1\xfb\x43\x53\xe7\x6f\xa4\xa5\xc4\x11\xd2\xda\xfc\x10\x36\xe6\xf0\x59\x87\x4e\x90\x90\x9b\xcb\xd3\xcb\x23\x72\x1c\xc7\x44\x82\x3a\xb1\xc8\xd9\xbc\x48\xf0\xae\xe4\x63\x87\xd9\x3d\x00\x5e\xeb\x80\x14\x3c\xfe\x7f\x3c\x7a\xee\x5d\x60\x55\xa6\xf6\xeb\x09\xaf\x6b\x40\x5b\x9b\x52\x5f\xaf\xc1\x76\x8d\x1b\x27\x33\xb0\x88\xea\x43\xb1\xea\xde\x75\xa3\xfa\xec\x9a\x7d\x80\x08\xe0\x63\x0b\x5f\x05\x26\x0f\x51\x18\xfe\x57\x7d\x04\x54\xff\x5b\x8d\x31\x26\xd3\x3e\x04\xa8\xca\xf7\xe6\xb2\x29\x64\x2e\x8d\x16\x68\xb6\x01\x39\xc2\xe2\xa7\x54\x66\x5e\x02\x64\xdc\x01\xa0\x98\x17\xcb\x40\xff\x00\xb4\x07\x0c\x61\xa2\x74\x22\x00\xfb\xf0\x81\xd5\x00\x57\xba\xf2\xdb\xbd\x3f\xdf\x16\x2f\x5f\x7e\x1a\x4d\xa6\xeb\xd7\xf0\x2f\xf6\x97\x23\x18\xcb\x6b\xf3\x04\x85\x71\xf9\xc1\x67\xf8\xc1\x11\xfe\x00\x5f\xc1\x0f\xa8\x99\x85\x9c\x56\x30\x97\xda\x22\x9c\x49\x59\xba\xe8\x65\x72\xc0\x09\xc0\xd0\x10\x00\x96\x88\x49\xe9\x16\x31\x63\x89\xd4\x78\x19\x38\x20\xe3\x42\x07\xb8\x0e\x52\xaa\x56\x66\x41\x3f\x92\x05\xf4\xd8\x74\xfb\x30\x84\xf6\x9e\x19\xce\x87\x2a\x9c\xae\x81\xec\xae\xf4\x47\xf3\xc4\x8f\x25\xa9\x19\x5b\x49\x55\x52\xd6\xda\xce\x02\x21\x0d\x52\x20\x97\x90\x4e\xe1\x24\xd6\xc1\x86\xb8\xa2\x41\x58\xd1\xe4\x5e\xcf\x79\x5a\x5f\x88\xe6\x8c\x66\x4c\xdd\x33\x26\x8c\x95\x31\xa2\x89\x2d\x91\x1a\x57\x7c\xa5\x3b\x6f\x48\x03\x51\x32\xa0\xfe\x1d\x36\x59\xcf\xcc\x08\x7c\x4e\x66\x52\x2d\xb5\x28\x96\x23\x0f\xa1\x79\x81\xaf\xbe\x9e\x6a\xa4\x32\xd6\x4d\x8f\xcd\x7d\xa9\x98\xa3\xd0\xc9\xc1\xbe\x5f\xf7\xef\xfb\xf5\x56\xdf\x63\xa2\xaf\xa9\x6f\x00\xb3\xcc\xca\x17\x27\x92\xe0\x89\x62\x65\x49\x07\x0c\xfb\x79\x6d\x20\xbb\x11\xde\x79\x9b\xcd\xc7\xca\x99\x6e\xb5\x70\xac\xdb\x53\x5e\x97\x9d\x4e\xe2\xa0\x33\xf3\xe8\xcc\xea\xa5\xf0\x9e\x42\x75\xa6\x47\x38\xc6\x11\x36\x5b\x0a\x34\xf7\xa5\x47\x8d\xe6\x2b\xd4\xe7\x68\xd3\x9c\xd7\x9b\x41\xa7\x36\xe8\xd4\x06\x9d\xda\x7f\x9e\x4e\xcd\xc5\x10\x3d\x35\x6b\xdb\x18\xa7\x7a\x76\x57\xb7\x05\xcc\x3b\x6d\x1c\x8f\x29\xd2\xd4\xc5\xec\x9c\xda\x5a\x4e\x22\x86\x24\xf8\x46\x75\x00\x27\x67\xe6\x16\x4c\xdd\xe8\x73\x3b\x63\x90\x10\x1c\xbf\xf1\xca\x7d\x10\x71\x88\xfa\x02\xf7\x9c\x63\x51\xee\x55\x4a\x15\x87\x70\x8d\x0d\x72\x86\x32\x89\x41\x40\x4f\x18\xcd\xcd\xd0\xbe\x4e\x57\x3c\x57\xf4\x8e\x41\xa5\xbe\x8c\xd9\xe9\xe1\x28\xb4\x1a\xe5\x11\x6a\x96\x1d\x81\xaa\xa9\xee\x6e\xdf\x04\x84\x9e\x11\x6c\x69\xf3\x37\x03\xd8\xe6\xcf\xbe\x50\x62\x98\xc9\xc0\x5b\x74\xf1\x16\x9e\x42\xdc\x4f\xc0\x5f\x58\x0f\x81\x6a\x94\x26\x93\xb1\xdd\x62\x9b\xd3\x08\x16\x0d\xaf\xb8\x8d\xed\x26\x4f\xc9\x72\xd4\xfd\xa9\xb6\x56\xd0\x88\xae\x31\x8e\x1a\xa5\x2e\xd9\x99\xe4\x10\x58\x33\xb0\x31\x03\x1b\xf3\xef\x66\x63\xb6\x6f\x70\x5b\x68\x0d\x7e\x3a\xf3\x10\xc1\xb0\x61\xa3\x8d\x83\x01\x14\xea\xbf\xe3\xdb\x33\x75\x1b\x5b\x5f\x6a\x73\xc9\xf5\xdc\x8c\x49\xc8\x70\x2a\xe5\x6c\x02\x2a\x98\xac\x10\xc2\xab\x53\x6d\xa3\xf4\xa6\xcb\xaf\xdf\x4d\x4e\x3b\x67\x5b\x35\xb5\x73\x85\x7f\x1b\x35\x62\x70\x72\x3d\x86\xbf\xd1\x4d\xfa\x0d\xaf\x9b\xda\x4d\x33\x68\x11\xca\x69\x7c\xc8\x2c\xca\x20\xed\x2b\x46\x63\x9f\xad\xa1\xce\x4a\xd6\x5a\x97\xc9\x26\x4c\xe9\xd7\x9c\x2f\x04\x70\xc9\x42\x55\xfd\x56\x65\xec\xbd\xfa\x33\x25\xe1\x33\x93\xab\x4f\xae\x52\x29\xc0\xbf\x2a\x2f\xa2\xa5\x66\xfc\x30\x15\xb6\xa9\xa3\x6c\x11\xf7\x3d\xe5\xfa\x96\xcf\x65\x40\xcd\x15\x45\x2c\x2f\x93\xf8\x85\x6a\xcd\x90\x2e\x95\x36\xd4\x2d\x13\x9d\x11\x11\xdf\x62\x33\x12\xb3\x28\xa1\x19\xcb\x8d\x7f\xa5\xf9\xda\x39\xcb\x8e\xbb\x34\xe4\x03\x1b\xb4\x4a\x1f\xc8\xf9\x41\xba\xe5\x27\x8f\xa6\x86\x13\xd8\x1a\x4f\xbd\xdd\x62\x9b\xf3\xf3\xcc\xb5\xc9\xf9\x6d\x37\xf9\xd9\x38\x3f\xbc\x65\x3b\x05\x56\xc3\x27\x03\xd7\x37\x70\x7d\x03\xd7\xf7\xef\xe6\xfa\xb6\xf1\x4f\x57\x40\x35\xde\xf7\xc7\x86\x54\x27\x89\xbc\x9f\x4c\x27\xd3\x29\x85\x8c\xb3\x6f\x32\xb9\xfa\xce\x56\x5f\xef\x8e\xb3\x6e\xfb\xda\x66\x69\xab\xc2\xcf\x60\xa6\x3e\x22\x6f\x82\x0e\x62\x42\x49\x56\x60\xbe\xf3\x38\x93\x29\x26\x42\xaa\x92\x17\xb1\x98\xa8\x8c\xce\xb5\xb4\x8a\xc1\x0f\x76\x28\x5f\x9f\x55\xc4\x1a\x64\x70\xdf\x39\x64\x0d\x20\x03\x99\x9d\x1e\x0f\x9a\xe0\xe7\x1f\x01\x36\x98\x74\xea\xdf\x05\x9c\xfb\xfc\x3a\x8b\x4e\x73\x75\xb2\x64\xd1\x5d\x27\x30\xae\x99\x22\x88\x5f\x46\x31\xcb\x95\x2d\xe3\x0f\x99\xec\x88\x14\xe4\xf8\xbb\x6b\x72\x76\xf2\x49\xe9\x2f\x96\x8f\xc9\xb1\xe1\x67\x7c\xb3\x5f\xd7\xe3\xa5\x31\x58\xe0\x76\xef\x54\x5e\x48\xb5\x84\x7a\x25\x07\xe4\x76\xcf\x44\x40\xda\x38\x2d\x53\x79\x27\xbe\xdd\xeb\x88\xf6\x2f\xbb\xf1\x41\x85\x89\xc2\x57\xf3\x6a\x54\x7d\xe5\x7b\x89\x53\xf1\x7e\x86\xb3\xda\x8d\xcf\x9f\xa5\xf3\x13\x29\x04\x8b\xd4\x0d\x5f\xb1\x73\x49\xe3\xaf\x68\x42\x45\xc4\xc5\xa2\x6f\xb0\xe8\x57\xd3\x37\x1d\x5d\xa0\x1b\x25\x17\x65\x52\x33\xaf\xd5\xd5\x7f\x8e\xeb\xb5\xc3\x23\x1c\x48\xef\xb8\xe2\x2b\x46\x20\x3b\xdb\x0c\x86\x63\x59\xd8\x4e\x6c\x3e\xf3\x7c\x03\x52\xa2\x51\xd4\x96\x56\x7f\x48\xfb\x5f\xab\x99\xe0\xeb\x34\x6b\x96\x3c\xb5\xe5\x39\x4d\xce\x01\xc2\x57\x69\x26\xd7\x86\x65\x49\x59\x06\xc2\xb7\x88\xe0\x88\xa5\x32\x1e\x29\x39\x6a\x8b\xb6\x2a\x97\x9a\xe3\xc2\x30\x06\x26\x63\x34\x47\xdf\x55\x5b\x85\x88\x83\x49\x5a\xcf\x3d\x66\xb3\x02\xf3\x2f\xa4\x45\x96\xca\x5c\x1f\xfe\xf6\x03\xfa\xa8\x08\xdc\x59\x3a\xd7\x02\xdf\x64\x4e\x23\x36\x35\x11\xec\x1d\x87\xe4\xab\xe9\x9b\xe6\x27\xc8\x4f\x64\x0c\xb8\x5c\xc2\x1e\x34\x43\x00\x8c\x1e\x56\xf8\x35\x87\xc1\x8b\xc6\x40\x90\x72\x72\xf2\xe1\x41\x31\x7c\x1c\x55\x4a\xef\x8b\x3e\x6a\x65\x8d\x59\xc8\xf8\x46\x64\x16\x83\x7f\x8e\x17\xda\x54\x45\xcb\x12\xeb\x29\x79\x58\xb2\x1f\x26\x21\xdb\xd8\x18\x38\x04\x63\x71\x8e\xf9\x87\xe1\x8b\x25\x73\x66\xe2\x05\xb1\x5e\x8e\x8d\x88\xb3\x09\x05\x4b\xf4\x9a\xc8\xfb\x1c\x4b\x0e\x37\xa2\xdf\x7a\x74\xba\xa4\x22\xd6\xfb\x2f\x22\xb9\x02\x0e\xac\x9c\x3d\xd8\x0d\x52\x99\xa9\xdc\xb8\x85\x98\x83\x09\x8b\x92\x85\xca\xb9\x3f\x5e\xdb\xd5\xef\x10\x32\x29\x05\x6b\xcd\x47\x55\xeb\xf5\xa5\x45\x7c\x5e\xe4\x05\x4d\x12\xaf\x17\x97\x96\x44\x62\x50\x03\x8d\xc7\xe3\x17\x3b\x9a\x6a\xf4\x61\xc3\x83\xfe\x4e\x38\xd5\x91\x7a\x20\x25\xcf\x67\x90\xcf\xb0\x4c\x85\x68\x8e\x0d\x33\x95\xbc\xef\xf4\x3d\x4e\xc6\x85\xd3\xfe\xfd\x2c\x9d\xbf\xb7\x09\x29\x7d\x4b\xcb\x37\x79\xa4\x12\xf7\x36\xba\x9f\x83\xff\x92\x9c\xeb\xb3\x68\x8f\x0f\x13\xb9\xf1\x02\xa7\xaa\xd6\xd6\xd7\x7b\x91\x9b\xe4\xe1\x1a\xfe\xa8\xbd\x30\x27\x69\x7f\x3f\x47\x64\x4a\xd3\xdc\x56\x2f\xd0\x8d\xb8\xc8\xb5\x0c\x03\x39\x5b\x88\xbc\xf7\xba\xe3\x6d\xdf\x0c\xbd\x8b\xcc\x84\xcc\x55\x03\x7c\x70\xa4\xfe\x2c\x9d\xef\x40\x43\xce\xec\xb6\x54\x5b\x64\x76\x08\xd8\x16\xeb\x04\xaf\x67\xaf\x79\xe4\x34\xa1\xc2\xef\x40\xfb\xa1\x0c\x89\x9e\xb6\x89\xcf\x33\xf1\x7e\x6f\x7b\x78\xb2\xc3\x12\xb6\x3f\xab\x51\xbd\x8a\xc4\x2d\xe5\xbd\x8b\xe0\x7d\xcb\x70\xef\x6a\xcd\xcc\x02\xae\xbb\xe6\x42\x3f\x37\x6e\xc5\xf6\xa6\x3b\x31\xb3\x5e\xaf\x7f\x9a\x41\x66\xd3\x7b\x9a\xc5\x98\x0c\xd6\x78\x48\x95\x1c\x9e\xbe\xf6\x73\x9b\xd5\xf3\x76\xef\x06\x32\x9d\xde\xee\xa1\x47\xde\x4c\x2a\xaf\x67\x9a\x11\xbb\xb0\x76\x37\xcb\x53\x29\xf4\x66\x19\x6c\xc4\x73\x93\x2f\x15\x07\x6c\xb8\x65\xc1\x78\xde\x9b\x65\xa7\x70\x7a\x7d\xa5\x99\x30\xfc\x0e\xc7\xf1\x75\x3d\x2b\x94\x69\x53\x1f\x3f\xa0\x19\xce\xab\xba\x45\xc9\xc6\xeb\x30\xa6\x67\x26\xec\xf8\x66\xff\xaa\x26\x5e\x3c\x07\x6e\x78\x69\xca\x28\xe6\x92\xb6\x47\x76\x32\xb5\xf2\x15\x17\x0b\x70\x6d\xd3\x2d\xbf\xb4\x1a\x0b\x60\x3e\x72\x42\x7d\x5d\xa6\x2c\x5b\xf1\x3c\xe7\x6b\x46\xce\x3f\x71\x48\x51\x75\xc6\x71\x87\x76\x4d\x0b\x32\x4b\xe7\x9a\x71\x99\x66\xf2\x61\x73\x66\xe4\xeb\xeb\x44\x1f\xa9\x9e\x37\xf6\xab\xe9\x9b\xf6\x0e\xfc\x07\xdf\x4f\xce\x1d\x76\x6f\x3f\x27\x6c\x35\x63\x90\xef\x1f\x52\x05\xa7\x7a\x04\xa3\x92\xcc\x49\x7d\x28\xcd\x8d\x0b\x19\x76\xc3\x0b\x5f\xf0\x72\xee\x93\x14\x8b\xfc\x9c\xe8\x86\x45\xba\x03\xbe\xea\xe8\xa2\x86\xc7\x10\x16\xbe\xc5\x23\x78\x1c\x3c\x97\x66\x12\xd5\xc0\xc9\x86\x44\xba\x47\x52\xa4\xa6\xe8\x4c\xae\x32\x46\x57\x2e\xc7\x59\x41\x68\x7f\xdf\xef\x86\x6a\xe6\x46\xa2\xa5\x16\xf9\xc7\x84\x5c\x23\x45\x37\xf1\xd4\xd5\x0c\xe7\x2e\xb8\x8d\x8b\xa3\x31\x9f\x3c\x15\x13\x59\x42\xf0\x2d\x17\xd7\x1b\x11\x4d\xa1\xe0\xdd\x4e\xb0\xaf\x7d\x79\x10\x40\xb6\x5b\x85\xcb\x0c\xe8\x31\x4b\x10\x01\xa1\xc0\x3a\xd5\xa2\xaa\xa8\x54\xf9\x95\x94\xa6\xd2\x6d\xee\x3b\x47\xd4\xd7\x6d\x05\xc6\x31\x21\xe7\xf2\x9e\x65\x56\xc9\xb2\xd0\xd7\x38\x63\x71\x11\x61\x32\x9d\x51\x91\x82\x4e\x51\x44\xba\xe9\x37\x7c\xb1\x2c\xdb\xfa\xb1\xac\xfe\xd2\xea\x64\xa7\xef\x48\x91\xd3\x05\x23\xb3\x0d\x99\x69\xd6\x4c\x73\x80\x45\x4a\x56\x32\x43\x74\x5e\xc3\x12\xaf\xf2\x47\x60\x88\x73\xb9\x38\x67\x6b\xe6\x0b\x39\xd8\xda\x11\xdb\xb6\x06\x75\x48\x82\x04\x09\x85\xcb\x8c\x7d\x0e\xef\x11\xc0\x05\xa5\xa0\x58\xc1\x7e\x85\xe8\xf8\xd2\x4a\xe7\x97\xf3\x39\xca\xe5\x13\x31\x97\xfa\x5f\x28\x95\x6b\xe9\x47\x8b\xe4\x21\x29\x10\xea\x06\x6b\x0a\xc8\xb0\x1a\x9b\xdd\x64\x3d\x98\xca\x68\xc4\x48\xca\x53\x76\x60\xed\x44\x9a\x9b\x03\x8e\x08\x05\x4f\x48\xa6\xef\xeb\xf6\x76\x4f\x45\x90\x81\x5f\xc3\x0c\x65\xb0\x9a\x62\x80\x5c\xce\xe7\x7f\x19\xef\x08\x7e\xb8\xaf\x13\xe0\xe6\x7a\x71\x1f\x27\xf5\xf6\x21\x61\x7a\x29\xe5\x9d\xcb\xed\x06\xd0\x86\x92\xe9\x08\xf7\xad\x81\x40\xf4\x69\x43\x1e\x13\xf2\x81\xa3\x1a\xc9\x98\x62\x95\x4c\xcd\x36\x7b\x05\x2c\xfd\xbd\xde\xa8\xd9\x06\x68\xa4\x88\xb7\x7b\x98\x49\xa5\xe4\x6a\x6c\xb9\x58\x63\x51\xcd\xe9\xbc\x4c\xbb\xe8\xe5\x14\xb8\x96\xa9\xb9\x22\x69\xc6\xd6\x60\x24\xac\x78\x64\xdd\xbb\x11\x7b\xd0\x81\x6d\xb6\x49\x69\x9e\x9b\x94\x25\x1b\x59\x90\xfc\x9e\x2b\xbf\xbf\xbd\x92\x66\xa2\x06\x9f\xcc\x4c\x79\x93\xd2\xf6\x8c\xc1\x3f\x38\x84\x8d\xfa\x43\x28\xa1\xe9\x32\x64\x83\x4c\x31\x90\x71\xb6\x81\x72\xdd\xa8\x3b\xcf\x64\xb1\x58\xda\x03\x69\xa4\x45\xe8\xf9\x00\x87\xb9\x37\x19\x54\x7c\x7d\x9a\xe6\x98\x82\xba\xcc\x4e\x5e\xad\xb4\x3a\x89\x08\xd8\x5d\x51\x41\x79\x11\xb1\x3e\xd7\xce\xde\x88\xb3\x62\x61\x64\xb1\x73\xb9\x38\xcd\x24\x64\x84\x0e\xf6\x12\xa0\x17\xd0\xcd\x5b\xb6\x92\xd9\x66\x9a\xc9\x39\x4f\x98\xa7\xe4\x57\xaf\xb9\x5c\xf3\x15\x28\x39\x4f\x68\x12\x7d\x9d\xd1\x74\xf9\x0d\x15\x8b\xe3\xb9\x7a\xdc\xca\x6c\x6f\xa7\x16\x48\x8f\xef\x0d\x36\xc9\x72\x38\x37\xf2\x1b\x99\xab\x63\x90\x0f\x3a\x6f\xff\x69\xf8\x5b\x17\x13\x80\xce\x40\x1f\xe9\x3c\xa0\x05\x29\x35\x08\xba\xe9\x42\xda\xab\x43\x2b\x91\xdf\x2d\x83\x5e\x55\xc8\x54\x39\x4b\xe6\xe4\x39\x14\xb0\x0f\xe9\x15\x6c\xdf\x4b\x6e\xe4\xed\xb2\x2b\x86\x4c\x31\x9e\xdf\x17\x63\xf2\xd5\xa6\x8c\xb9\x38\xf1\x56\x54\x25\x65\xd2\x20\xbf\x9e\xba\xec\x3a\xf7\x4d\x13\x70\xba\x3f\x52\xad\xc4\x76\x3f\xfd\xf8\xcf\xd3\xab\xcb\xe9\x4f\x3f\xfe\xcb\xd4\x77\x2f\xf1\xc5\x3d\x35\xe1\xde\x49\x22\xef\x49\x2e\x57\x4c\x23\x35\x9a\x24\x6d\x02\x07\xcc\xae\x59\x41\xde\x14\x4f\x80\xc8\x2a\x9a\xd1\x15\x33\xc2\xdd\xd5\xd9\xcd\xbb\x2b\xa8\x01\x61\x0a\xca\x93\x77\xfe\xbc\x49\xa6\x21\xc7\x89\x41\x2c\x0d\xd4\x61\x90\xf7\xa2\x8e\x95\xdc\x65\x4d\x2e\xa6\xef\x6e\xf4\xba\x00\x55\x7d\xd9\x82\x4f\x00\x91\x58\x54\xac\x2c\x2e\x6d\x22\x7b\xaa\xb0\x27\x13\xb4\xf5\xd3\x8f\xff\xc4\x69\xfd\xf4\xe3\xbf\xbc\x02\x0d\x5a\x30\xec\xbe\x6c\x4d\x88\x48\x83\xcc\x97\x34\x07\xbf\x0f\xf4\x51\x4e\x33\x69\x7d\x37\xec\x26\xfb\x7a\xf7\x1f\x29\x00\xa0\x01\x26\xc8\x65\xa2\xf4\x56\x80\xca\x0d\x88\x93\xed\xd4\x82\xfb\x57\xca\xc8\x04\xce\xb9\x6f\x4e\xa1\x09\xb4\xab\x29\x34\x4a\xdc\x19\x27\xb3\x35\x8f\xd8\x95\x2c\x94\x66\x84\x21\xb3\x66\x77\xa8\x23\xcf\x6b\x56\x74\xc8\x6b\x50\x25\xe6\xa4\xb1\xd1\x09\x18\x06\x6d\xc5\x62\x33\x8c\x97\x1b\x85\xa4\x08\x07\x9a\x8a\xd9\xcb\x0a\x47\xd9\x92\x9f\xab\x9b\xe9\xd5\xe5\xcd\xfb\xaf\x2e\x2f\x6f\x90\xab\x4b\xd8\x5c\x91\x59\x42\x85\x2f\xcf\x51\x6b\x86\x07\x67\xad\x98\xab\xdf\x44\x88\xf5\x5a\xb0\x65\x22\xd0\x24\x6d\xe3\x3c\x8d\x74\x2e\xc5\x2e\x8b\xad\x61\x26\x4f\xa7\x3c\x77\x16\x79\x40\x12\x46\xd7\xc6\x30\xee\x95\x13\x80\x01\x03\xf7\x26\xac\x47\xe5\xe9\xb1\xf0\x67\x4e\x6c\x3d\x18\x48\x69\x4f\xa4\x10\x9a\xa7\xbd\x9b\x08\x08\xda\x0e\x19\xd7\x5a\x69\xae\x3d\xcd\x57\xa0\x4b\xe6\x62\x01\x45\xd7\x77\xa4\x6b\x5b\x9d\x84\x65\xec\xf6\xc9\x18\xe5\xda\x85\x8c\x59\x7e\xce\xf3\x4e\x07\xac\x33\xf7\x83\x93\xc9\xe9\x95\xfe\xa8\x9e\xf4\x5a\xff\xba\x0f\xd6\x6f\xdb\xfb\x48\x48\x5b\xda\x18\x0a\xd8\xb5\x18\x20\x56\x74\x63\xf7\x0b\xb5\x50\x25\x31\xa2\xa2\x4c\xbd\xc0\x1c\xe5\x97\x79\x1b\xc8\x62\x66\x8c\x94\x1a\xc1\x46\x55\xde\x8b\xdd\x92\x95\xb5\x07\x92\xb7\xe4\x84\x9b\x53\x9e\x68\x3e\x7b\x22\x66\xb2\x10\xb1\x66\x1f\xa6\x32\xeb\x4e\xac\xba\xff\x26\xf0\x21\xc2\x19\xa4\xa6\x51\xcc\x12\xbe\xe2\x7a\x6d\x06\xee\xbe\xa9\xbf\x3b\x9d\x1e\xde\x9c\x4c\x8d\x2e\x13\xe8\x8a\xa3\x15\x41\x6a\xeb\xb3\x74\x00\x65\x2f\xe9\xbd\xaf\x67\x29\x08\xcf\x32\x96\xa7\x0c\xcb\x6d\x56\x89\x10\x0a\x48\xce\x6b\x89\x84\x45\x17\x26\x9a\x5f\xd3\xf8\xb5\xe4\x5e\x3a\x43\xa3\x08\x72\x95\x00\xf9\x88\x0a\x4c\xf6\x22\xe7\x73\x42\x71\x3e\xc0\x62\xe8\xd9\x66\x19\x8b\x54\xc3\xa1\x82\x9c\x85\x02\x7c\x65\xe6\x06\x84\x57\xe9\x5c\x69\x4e\x54\x94\x3a\xc1\xdd\x23\x0c\x77\xc5\x18\x6f\xcd\x29\x14\x71\xf0\xb5\x97\xf8\xbc\xd1\x82\x18\x8d\xee\x46\xb5\xc8\x9c\x03\x93\x40\xaf\xa2\x09\x36\xd6\xb5\xca\x81\xc2\x95\x45\x81\x21\xbf\xcd\x9f\x7e\xfc\xa7\x8a\xd2\x9f\x7e\xfc\xd7\x98\xdc\x54\x76\x11\x0a\xcc\x04\x1c\x12\x84\x11\x6c\xf4\x41\xa9\x24\x45\x43\xbc\x90\x01\xa5\xfe\x8d\x93\x7a\x1f\x9b\xc2\x91\xc8\x49\x9e\x2f\xad\x69\x44\x5f\xbb\xd3\x6f\x4e\xa6\x35\xc3\x45\x94\x1e\x7d\xf2\x89\xd7\xde\xac\x61\xf6\xfa\x8b\x03\x68\xf2\xea\xb7\xbf\xc3\x7f\x7c\xf2\x69\xf5\xaf\x2f\x5e\xe2\xbf\x5e\x7f\xf6\xd9\xa7\xe6\x5f\xaf\x5f\xbf\x2e\xff\xf5\x5b\x1f\xcd\xee\x9d\xff\x57\x2a\x69\xb3\x65\x47\x72\x35\x33\x7e\x0c\x60\x1a\x2e\x09\xb2\x88\x01\x4a\x07\x41\xc5\x3b\x29\x3d\x17\xaa\x60\x69\xef\xc9\xea\xca\x28\x92\xfa\x53\x7c\x9b\x3d\x6d\x23\xce\xe5\x00\x21\x1e\xc4\xed\x23\x9c\xe2\xa2\x35\x43\xc4\x28\x98\x73\x61\x54\x8e\x1c\x46\x87\x8f\x48\x91\x69\xd1\xe1\x65\xa1\x1e\x89\x0f\xb7\xbe\x0c\x23\x44\x2f\xce\x9a\xf7\x42\x88\xb2\x50\x0b\xe9\x22\xc4\xb2\xd0\x79\x1b\x77\x8c\x56\xbf\xdd\x51\x62\x48\x49\xa2\xb1\xe4\x87\xa1\x44\x5f\xcf\x1a\x4b\xfe\xe7\xa3\x44\x69\xce\xc9\xc7\xc1\x89\x12\x64\x7b\xa6\xa2\x78\x7f\xdf\xa9\x98\x61\x8e\x90\x34\xd6\x67\xe7\x30\x79\x11\x95\x96\xfb\xf5\x12\x17\x4c\xe9\x9d\x84\x5d\x44\x09\x56\x45\x71\xcd\x4f\x41\x1f\x42\xbd\xcf\x1a\xeb\x22\xfa\xbd\xb8\xee\x10\x76\x1e\x8d\x6d\x83\x38\xfc\xf3\x4f\x0f\x10\x97\x0f\x08\xb9\x36\xc0\x7f\x14\x42\x66\x54\x15\x19\x3b\x65\x8a\x45\xea\x72\xcd\xb2\x8c\x77\x2b\xc5\xdf\xf8\x3e\x72\x2b\xa1\x4a\xfb\x9b\xbe\x6c\x66\x08\xff\x49\x51\xcc\x68\x81\xbe\x35\x85\x71\x32\x17\x19\x71\x61\x51\x3b\xc9\x59\x4a\x31\x3d\x19\xf0\xba\x80\xf5\x84\x57\x81\x05\x19\xc0\xf2\x03\xc2\x1e\xe8\x2a\x4d\xd8\x97\xe4\x76\xef\xfa\xe2\xf8\xe6\x4d\x91\x24\x9b\x2b\x2a\x62\xb9\xfa\x3d\x94\xd9\x7b\x7b\x7c\xfd\xbf\xdc\x1f\xc1\xa9\xe1\xe0\x8a\x41\x7c\xc5\x75\x91\xc2\xe5\x3e\x97\xd1\xdd\xef\x03\xc5\x5c\xca\x24\x84\x60\x25\x81\xcf\x6f\xf7\x90\x8a\xcc\x25\xfa\x69\x97\xab\x3f\xc0\x4c\x34\xba\xa9\x34\x46\x92\xb0\x41\x0a\x72\x80\x17\x4a\x8e\x10\x3e\x3b\x8b\xaa\x90\xca\x8d\x47\x7f\x3c\x9d\xf6\x35\xbb\x7e\xdd\xfc\xc2\xd8\x2f\x73\x62\xde\x90\x3f\x9e\x4e\x49\x2e\xab\xc2\x9f\x34\xf3\x7b\xad\x02\x0a\x8c\xa5\xd8\xdf\x57\x24\x47\x20\xc2\xb7\x72\x3e\x07\x45\x8e\xcc\x48\x0c\xda\x6e\x50\xfe\x63\x1d\x01\x8d\x96\xff\x78\x3a\x45\xb2\xe8\x55\x1f\x1a\xb3\x29\xd3\x67\x81\x89\x98\xc5\x95\x71\x42\x63\x55\x18\x2d\xcd\xe4\x5a\x9f\xb9\x19\x53\xa0\x45\xaa\xfc\x02\x03\xf3\x14\xa5\xfe\x6e\xfc\xc1\xbe\x2d\x4b\x46\x13\xd5\x52\x06\xa4\xc7\xc7\x9a\xa3\xd9\x51\x05\x80\x1f\x06\xca\xc8\xb4\x22\xb3\xd2\xc3\xec\xec\x21\x4a\x8a\x1e\x76\xb0\x49\xe3\x03\x97\xed\x6a\xdc\x4d\x39\xef\xe3\x64\x57\xf3\x2d\x64\xa6\x53\x50\x68\xad\xa4\xe0\x4a\x96\x39\x0e\xea\x82\xe8\x38\x64\x84\xac\x13\xec\x9a\x3b\x98\xf1\x77\x5d\x08\xa9\x7f\xaa\xcc\xfc\xfb\xfb\x64\x32\xfd\xf6\x9a\xc4\xc5\x6a\xe5\x75\xb0\x2b\x97\x71\x60\x7d\x23\x0d\x8e\xb3\xb1\x29\xc9\x86\xcc\x36\x35\xcb\x74\x5d\x9b\xed\xe5\x16\xcd\x5a\x57\x45\xa2\x78\x9a\x38\x6e\x8e\xa6\xde\x97\xa9\x09\x6c\x13\x9e\x9b\xf0\x17\x30\xfb\x06\xb8\x5a\x73\xd1\x72\x8f\xd7\x67\x8e\x15\x2f\x3c\x2f\x60\x9e\x40\x55\xef\x33\x9a\x86\xac\x0b\x08\x4e\x40\xb7\xfb\xfb\x87\xfb\xfb\xd8\x9d\xc1\xad\x64\x89\x9a\x38\x63\x87\xdf\xdf\x3f\xfc\xdf\x1a\x16\x87\x07\x6b\xa6\x96\xaf\xf6\xbd\x99\xf9\x00\x3f\x5a\x18\xa0\xf0\x5a\x3a\x3b\xc2\x6e\xcd\xd8\x82\x0b\x3b\xa2\xee\x6e\x7f\x1f\x13\x5e\x25\xb9\x0c\xe9\xfc\x2a\x10\xee\xef\x9b\xb1\xdd\x3b\x0d\x1b\xc4\xd3\x75\xfe\x72\x57\x75\x70\xd9\x31\x16\x96\xe9\x7f\x4d\xb0\xbd\xd5\x92\xd6\xb7\xd8\x94\xda\x31\x51\x96\xb6\x70\x86\x5f\x23\xb6\x6d\x79\x01\xc7\x53\x60\x76\xb5\x28\x50\xf0\x7c\x89\x6a\xe7\x55\x25\xa4\x94\xad\x5b\x61\x95\x8f\xc9\x85\x54\x80\x23\x08\x13\x6b\x9e\x49\x81\x05\x7c\xa4\x49\x6c\x48\x05\x99\x69\x5a\xb4\x62\x8a\x26\x07\x26\x9d\x6f\xb4\x64\xb9\xca\xa8\x92\x99\x77\xc2\x91\x53\xf7\x5b\xa3\x88\x54\x73\x64\x19\xa7\x8a\x25\x9b\xfa\xd9\x91\x85\x5b\xd5\x00\xb9\x5c\x19\xdd\x05\x62\x8e\x35\x1a\x33\x71\x7c\xc6\xbc\xa3\xf7\x3a\xa2\x09\xdf\xdf\x77\x23\xc4\x74\xaf\x97\x29\x13\xd7\x8a\x46\x77\xee\x67\xde\x7b\x63\x5d\x54\xf7\xf7\x15\x4d\x6d\x47\xee\xc9\xd1\x03\x3c\xfa\xcc\x5c\xb1\x79\xc6\xf2\x25\x9c\x89\xb5\x37\xc3\x64\xed\xf0\x4c\x02\xdf\x95\x85\xbf\xc0\x19\x87\x50\x65\x90\x51\x50\xd0\xc8\x58\x1e\x51\x91\x9b\x24\x76\xee\xfd\x92\x64\xcd\x32\x3e\xdf\x18\x47\x56\xc8\x78\x82\xe5\xb9\xf1\x1b\x53\xd6\xc7\x8b\x5f\x8d\xb7\xae\x46\x78\xb9\x49\xc3\x5c\x1e\xed\x35\xc6\x13\xbf\xdc\x91\x51\xe1\x29\x6f\xf1\x0c\x6b\xa5\x99\xfa\xd3\xb7\x37\xef\xba\x2f\xe4\x74\x32\x7d\x7b\xf3\xce\xc2\xd0\x14\xa2\xd7\x27\x48\x0a\x47\x8d\x6c\x6c\x14\x63\x72\xcd\xfc\xae\x00\xe6\x58\xeb\x55\xeb\x3e\x1c\x0f\xa0\xcf\x3e\x6b\xc1\x2a\x21\xf2\x9b\xea\xa3\xb7\xe3\xf9\xd8\x9f\xf8\xbe\x6a\x3d\x1d\x24\x63\x18\xc1\xe3\xe7\x33\x13\xc7\x0f\x05\xce\x42\x53\x96\x15\xd2\x20\x03\x63\x93\x03\xeb\xa1\xab\x91\xf0\x75\x3b\xcb\xe4\x1d\x13\x4d\x67\x11\x48\xde\x0d\x87\xa4\x16\x63\x61\x87\xcf\x70\x55\x1d\x71\x3f\xbf\x7b\xb9\xb3\xbf\x95\x1d\xe1\x2b\x1a\xdd\xb1\xad\x70\xcc\x2d\x20\x4f\xea\xcd\x4b\x61\xc4\x86\x99\xcf\xcc\xef\x9a\xc9\xb1\x73\xd7\x24\xcd\x0b\x08\x86\x86\xa6\x9a\x42\x01\x8c\x59\x0b\xea\x35\x5e\xf6\x59\xc7\x1b\x9e\x28\x96\x41\xe8\x5a\xd0\x89\xa1\x4f\x3f\x5a\xb2\x79\x13\xf6\xf6\x68\x9e\xbc\xed\x8f\xaa\x82\x7c\x51\x29\xd1\xbb\x46\x71\x1f\x44\x20\xfb\xd5\x9c\x27\x6c\x4c\xfe\xa4\xb9\x0f\xba\x81\xb8\x0f\x34\xd6\x51\xb1\x30\x54\xc3\xa8\x86\xca\xd6\x56\x00\xe0\x7e\xe7\x02\xe5\xa8\x64\xca\xd9\x3c\x9f\x3b\xb4\xc6\x35\xe5\xaf\x68\x9a\x32\x8c\x23\x12\x4a\x96\xbe\x87\x01\x62\xa6\x28\x17\x2c\xd3\xd7\x8a\x92\x98\xcf\x31\x3d\x32\x49\xa9\x5a\xbe\x70\xe9\xc4\x61\x56\x88\xc3\x07\x23\x4d\xe8\x79\x3f\xf6\x98\x6a\x08\x4f\x33\x39\x63\x3b\x60\x85\xc0\x97\x76\x83\xc0\x0f\xb3\xa1\xe7\xf4\xf2\x1a\x98\xe5\x01\xfd\x35\xa9\x52\x5a\x62\xc5\xfc\xb3\x11\xa8\x2c\xea\x2e\x0f\xb0\x39\x7c\x6e\xa2\xa4\x84\xf4\xf2\x1a\x74\x4d\x79\xa2\xdb\x8f\xeb\x1e\x9b\x2b\x7a\x67\x1d\x2e\xc1\xaf\xd2\x38\x97\xf3\xb5\x11\x01\xec\xee\x07\x84\x41\xbd\x2f\x20\x06\x1e\x80\x7b\xba\x96\x1f\xa1\x9b\x93\xe9\x3b\x77\x53\x3e\x7f\xb9\x7a\x34\xba\xd0\xd0\xbc\xe1\x2b\x26\x8b\x4e\x7b\x68\x6d\x07\xcc\x37\x6d\xb0\x07\x40\xfb\x56\x66\xc3\xe4\x6a\x30\x06\x27\xcc\x97\x07\x0e\xd2\x04\x5d\x27\xaa\x32\x79\x5e\x29\x18\x82\xec\x00\xf0\xf8\xf9\x92\x7a\x77\x10\xae\x17\x7a\xee\x24\x49\x1d\xd9\xb7\x64\x8f\x43\x5e\x5c\x6f\xa2\xdd\xa9\x31\xa6\xed\x35\x9e\xcd\x55\x88\xa1\x96\xc8\x69\x75\x91\x0e\x82\x89\x7d\x4b\x7f\x7d\xdd\xa3\xbe\x4e\x26\x8a\x40\x66\x65\x8a\x75\x27\x7c\x70\x25\x0b\x81\x39\xf6\x8c\xc3\x8b\x93\x21\xd9\xab\xf7\xcf\x6c\x8b\xb9\x0d\xc5\xc6\x09\xb9\xe7\xe5\x65\x5e\x72\x39\x8f\x3d\x36\x6f\xa9\x96\xd9\x3e\x1c\x3b\xbf\xa5\xd9\xdd\x5b\x9a\x77\x87\xed\x4e\x1a\x1f\xd8\x83\xb7\xd2\xff\x76\x05\x6d\x93\x47\x9f\xfb\x75\xe9\x93\xe9\x0d\x1e\x0a\xdd\x0f\x99\x69\x94\x8a\xf9\xeb\xaf\xab\x24\x2a\xb6\x8c\xe0\x92\x3d\xd0\x98\x45\x7c\x45\x13\x9b\x1e\x58\x1f\x20\xef\x39\x51\x24\x61\x34\x57\xe4\x0b\xec\x13\x52\x37\x0b\x13\x0d\x8c\x04\x35\x4a\x68\xbe\xb4\xbe\x63\x1b\x73\x02\x57\x76\x16\x7e\x59\xc0\xfa\x98\x80\x6d\x65\x93\x2b\xb6\xaa\x6d\xe3\xc3\x7c\xfe\x12\x9e\x8f\x5d\x0f\xdc\xee\xce\xc5\xf1\xcd\xa5\xb1\x10\x95\x4c\x3b\xd2\xe5\x47\x6e\xf7\x54\xe6\xea\xbb\x8c\x2b\x06\xee\x24\x3b\xa3\x7e\xff\xe7\x4d\xce\x10\x9c\xab\x82\x58\x42\x73\x76\xb1\xde\x19\x4a\xee\x75\x57\xdb\x9e\xfa\x65\x52\xa0\x68\xc9\x62\xf4\x59\x13\x84\x3d\xa8\x8c\x92\x8c\xf9\xfd\xc6\x66\x28\x84\x95\x11\xa2\x04\xc3\xc9\x21\xd8\x11\x06\xb9\xa7\x48\xd9\xa3\x44\xce\x66\x2c\xb3\x49\xe1\x6b\x78\x28\x9c\x14\x33\x77\x62\x2e\x64\x14\x15\x99\x26\x48\xf6\x6b\x9a\xa6\x89\xcd\x20\x5a\x3b\x2b\xa5\xca\x30\x20\x3b\xa5\x2c\x52\xdb\x98\x72\xfc\x41\x5e\xff\xb6\xab\xdd\x59\x7e\xef\x77\x8f\x10\x09\x8d\x1c\x60\x03\xa7\x40\xf4\x35\x6e\x8c\xce\x16\xb7\xb3\xff\xa1\x73\x53\xb3\x51\xee\xc2\xfe\xfb\x0b\x40\xc2\xdc\x4a\x81\x00\x75\x14\xca\x61\xa1\x91\x4e\xf2\xdc\x28\xa7\x34\x47\x0d\xcc\x05\x68\x2c\x02\x1a\x22\xe3\x53\x8e\x9d\x96\x42\x6b\x8e\xb9\x4e\xef\x65\x76\x47\x33\x30\x17\x62\xae\xd9\x73\x2e\x8a\x07\xeb\x49\x36\x2b\x16\x41\x42\xa8\xcf\xef\x9c\x3f\xa0\xad\xc2\xb4\xb7\x59\xd5\x3e\x1b\xbf\x7a\x55\x2a\x04\x35\xf5\x45\xc5\xde\x5a\xff\xae\x09\xd2\x22\x63\x34\xe0\xd7\xbb\x31\xcc\xb1\x75\x8a\x2d\x1d\x5a\x95\x3c\x20\x94\x2c\x9d\x90\x16\x0c\x36\xac\x47\xb0\x78\x2d\x7a\x39\x5d\xd4\x54\x1b\xaf\x1e\x23\x4b\xad\x5f\x1b\xcb\xc8\xae\xf2\xfa\x5d\x31\x63\x17\x32\x66\x53\x99\xa9\x2b\xcd\xe9\x77\x9b\xfc\xff\xb0\xf5\x09\x59\xca\x24\xce\x4b\x2d\x33\x18\x17\x32\x7c\x03\x6a\xd9\xb9\xbf\xd8\x90\x89\xea\x24\x55\x4c\xe7\x98\x5c\x6a\x9c\x51\x98\xda\x96\xc8\x13\xa0\xb5\xc5\x0d\xfe\x0a\xe7\xb9\x03\x2a\xc4\xd3\x75\x6e\x62\x68\x10\xf4\x05\xf2\x4c\x2c\x67\x76\x5a\xb0\x77\xa8\x1d\x47\xf6\x85\x8a\xb8\xd5\xd3\xd6\x38\x1c\xb8\x1b\xf5\xa9\x26\x65\x47\x9f\x7e\xf2\xdb\xd7\xbf\xf5\x86\xbb\x84\x2d\xb1\x54\x6c\x2e\xfd\x55\x76\x46\xdd\xb6\xce\x51\xa7\x29\xb3\xaa\xb2\x3f\xfe\x6f\xdf\xfb\x87\x51\x55\x32\x66\xc4\x85\x1a\xc9\x6c\x84\xbd\xb9\xf9\xd2\x6a\xab\x6f\x29\x99\x2f\x17\xbd\xc5\xd5\xf3\xaa\xad\xc5\x94\x50\x56\x5d\x8b\x6d\x96\xae\xe1\x8e\x25\x72\x61\x31\x93\x6f\x05\xc0\xaa\x38\xf8\x0a\xb8\xe5\x44\x42\x2e\x88\x9a\xf8\xb7\xa6\xd9\x61\x22\x17\x87\x2e\x93\x39\x4e\xa4\x37\x3f\x49\x1b\x58\x13\xb9\xe8\xa9\x69\x3e\xb7\x2d\xdd\xc2\xf8\xae\x62\xd9\x39\x92\x58\x6d\x4d\x4b\x4c\xa1\xad\x3c\xbf\xfc\xda\xe2\xe9\xba\xf2\x33\x92\x23\xf4\xdf\x7e\xc4\x4a\x6c\x01\x7f\xbd\x17\x7d\xd6\xe3\xb6\xff\x68\xe5\xfe\x75\x07\xa8\x71\x70\x0a\xfe\x8b\xb9\xfc\x80\xf5\x5c\x47\x19\x63\xdd\xc1\x23\xe7\xcd\x2f\x3e\xda\x9a\x72\x15\xcb\x42\x7d\xcc\x15\x6d\xba\xd1\xf1\x79\xad\xf9\xc7\x5b\xcb\x26\x77\x2e\x21\xb9\x90\x26\x26\x54\x48\x7b\xd1\x00\x89\x9a\x56\xad\xda\xc1\xc7\x00\x61\x45\x1f\x40\xad\x7a\xcd\xff\x16\xce\x42\x1e\xc0\x92\x36\xad\xd8\x71\xec\x4d\x25\x5f\x07\xdf\x5b\xa7\xb1\x05\x9e\x5b\x20\x29\x23\xb1\x5c\x51\x2e\xd0\x42\x14\x8e\xf7\x83\x84\x93\x99\x09\x10\xa1\x82\x50\x91\x6b\xde\xe7\xdb\xb7\xe4\xaf\x05\xcb\x38\xc3\x8c\x35\x51\x22\x8b\x78\xc4\x05\x57\xe5\x2c\x21\x4b\x5b\x69\x1a\xf1\x7a\xfd\x00\x8b\x01\x9e\x64\x79\x2a\x45\x5c\x46\x93\xac\x68\xb4\xe4\x82\x95\xd2\xbd\x90\x6b\x3a\xa2\x29\x27\xcf\x65\xa6\x09\xe1\xbb\x59\x21\x54\xe1\xed\xd2\x36\x1d\xd9\x69\xbc\x18\x93\x63\xeb\x55\x35\x47\x04\xfb\x3c\xa2\x39\x14\x22\x64\x22\xe7\x8a\xaf\xd9\x0b\xb2\x62\x54\x84\xd5\x0f\x35\xdb\xb1\xa9\x19\x43\x8a\x14\x04\xc8\x8b\xe3\x1b\x8c\x7d\xb4\xda\x14\x3b\x30\x60\xff\x8e\x13\xf4\xea\x93\xdf\x8e\x5f\x8e\x5f\x8e\x5f\xed\x7c\x8c\xcc\x20\x01\x5b\xbc\xff\x28\x58\xb7\x28\xe0\xe4\xf5\xbf\x8d\x9e\xa3\x9c\x31\xee\x35\xfa\x45\x04\x52\x3b\xad\x66\x5c\xb0\x18\xe5\x67\xac\xab\x33\xae\x9d\xb4\xe7\x7c\x0e\x10\xda\xdf\xd7\x37\x6b\x7f\xff\xc5\x81\xe3\xa8\x13\x60\xbe\x01\x94\x25\x20\x0f\xd0\xae\xf8\xea\xf5\xef\xc6\x9f\x7c\xfe\xd9\xd8\xfc\xff\xe8\x0b\x60\xe4\xdd\xb1\x8e\xdc\x75\x79\x85\xb6\x89\x20\x2b\xcd\x04\x45\xa6\x34\x41\x25\xc2\xe9\x29\x5a\x4d\xf0\x8c\x19\x65\x70\xec\x20\xb8\x2f\x7e\xfb\xdb\xcf\x5b\x82\x7d\x43\x37\x54\x15\xbb\x64\x53\x7a\x7b\xf3\xee\xe7\xc8\xa4\x04\x96\xb6\x9a\x54\x4c\x93\x08\x82\x1d\x4b\x35\x97\x5f\x1f\xfd\xf6\xe6\xdd\xb8\x26\xf9\x56\xf9\x83\xda\x72\x07\x7d\x58\xa2\x20\x41\x95\x55\x76\xf4\x8c\x0f\x72\xd4\x23\xcd\x9a\x53\xa0\x33\x68\x04\x0b\x01\x77\x62\xdc\x75\x02\xec\x89\x09\x07\xd1\x47\x12\xae\xb5\xcd\x53\x22\x08\x75\xe7\x47\x52\x29\x93\xb2\x98\x54\x47\x9c\x50\x99\xf4\xa3\x11\x7c\xe4\xc6\x08\xc1\x09\xa8\x26\x6c\xd4\x08\x25\x88\xfd\x38\xb4\x96\xa2\xc5\x4e\x42\x0a\xf2\x9c\x83\xc3\x92\x15\x12\x2a\xf5\xc2\xdb\xe3\xeb\xff\xf5\xee\xec\xea\xf8\xf4\xcc\x54\x5a\xf5\xa4\x98\xe9\xd8\xa1\x52\x46\xf2\xec\x4d\x48\x0a\xe8\x94\x01\xba\x24\x80\xe6\xa6\x97\x93\x70\xb6\x1b\xe2\xe1\xe0\x37\x23\xb0\xe5\xe5\xfe\x68\x00\x87\xd4\xe0\x80\x0e\x57\x14\x22\x9a\xf1\x80\xc4\xb0\xc1\xa5\x63\xf6\xc5\xf1\x8d\x51\x39\x17\xc2\xfa\x03\xb4\xc4\xb2\xcf\xd8\x92\xae\xb9\x2c\xeb\x25\x5b\x3f\xb6\x1c\xdd\x04\x82\x11\x61\xed\x22\xce\xae\x02\x8e\x60\x2a\xe1\xa2\xc5\xae\xd0\x06\x6f\xf0\x41\xd6\xd3\xbd\x62\x8b\x3e\xb1\xcb\x97\xf5\xf6\x96\xd0\x88\x5a\xb9\xcf\x45\x89\xce\x34\x7d\xcc\x14\xd7\x78\xc8\x2b\x0e\x22\x06\xab\xaa\x12\x02\x3b\x41\xd1\x8b\x69\x64\x3a\x42\x9d\xcf\x61\xe5\x7f\x11\xb3\x34\x91\x9b\x15\x13\xfe\x0a\x88\x40\x01\xac\x63\x6f\xe9\x39\x12\x43\xf4\xef\x52\xde\xc3\x49\x80\x64\x80\x38\xf8\xf3\x25\x83\xc4\xb2\xa5\xd2\x4a\xcb\xde\x49\xa8\xd2\x1c\x17\x28\xd7\x8f\xa3\xf9\xc2\x56\x9e\x73\xdc\x5c\xf4\x8d\x84\xbe\x23\xb9\x4a\x0b\x93\x9b\xe8\x85\x49\x33\x5c\xf8\xfd\xac\xaa\x54\x6d\x7f\x46\xd9\xe8\x2f\xd5\xae\xbc\x37\x30\x40\xd6\xc6\x59\x8c\x66\xe9\x58\xa1\x32\x29\xc6\xfa\x57\xef\x6c\xcd\x54\x30\x3d\x52\x45\xf4\xce\x56\xa9\xda\xec\xca\x8a\x60\x8c\x01\x64\x6f\xa1\x6a\xd9\x53\x9a\x9c\x7a\x3e\x72\x3d\x7a\x67\x1b\x9b\x19\x1e\xb2\xc6\xaf\x0a\x01\xa5\x8d\xbc\x5a\x01\x4c\x97\x80\x24\x1c\xbd\xe3\x4d\x0c\x60\x99\x5e\xeb\x80\x24\xfc\x8e\x91\x63\x47\x43\x9b\xd0\x0d\xcb\xfa\x85\xf5\x3e\x0e\x2a\x99\x5c\x31\xb5\x64\x45\xfe\xb5\x7c\xcb\x54\xc6\xa3\xbe\x19\x99\xf6\xa7\xc1\x4f\xad\x5e\x20\x27\x5f\x4b\xcd\x1c\x83\xb5\x6f\x85\x4d\xfc\xec\x5a\x92\xa0\xc3\xb3\x75\x28\xd4\x67\xa9\xea\xdf\x64\x61\xc6\x48\x81\x2a\x00\xf8\x00\x31\x60\xce\xbc\x87\x52\x49\xf4\x59\x35\x9c\x01\xea\x02\xcd\x5d\x2f\x6b\xc4\x9b\x49\x91\x0c\x82\x45\x59\x7c\x80\xed\x02\xe4\xd6\x99\x91\xe6\x29\x3e\x38\x61\x5d\x05\xfc\x47\x83\xbe\x01\x78\xeb\x9e\xdc\x80\x5f\x0b\xec\x8d\xdc\xc4\x85\xb5\x4d\x96\xd9\xd8\xf4\x92\x3e\xdc\x03\x78\x6b\x8d\x01\x7f\xde\x8e\x05\x7e\x23\xf3\x52\x26\x40\x7b\xa7\xcd\x8a\x52\x35\xf5\xa2\x26\xb3\xc1\x66\x99\x36\xb4\x87\x8b\x18\x70\x75\xb5\x3a\xf6\x61\xb7\xc7\x4c\xb3\x97\x9c\xb3\xb5\x38\x57\xe0\xb1\x21\x58\x1f\x7d\x81\xbf\x7b\xf9\xbb\x16\xf1\x2d\xc0\xec\x54\x0b\x9c\xa2\xa9\xe3\xd1\x07\xd5\xfb\x7d\x85\x28\xac\x23\xd5\x80\x25\xb6\x6e\x50\xc6\x56\x72\xcd\x6c\x74\x39\xa4\x25\xe8\x14\x35\xbe\x33\x59\x98\x30\x61\x9d\x4d\xbc\xb8\x66\xc6\x9f\xcf\x24\x18\xb0\x69\x5d\xd7\x2c\xe4\xa8\x32\x63\xac\x96\xb2\xc0\xd2\xbb\xb1\xc9\xfe\x8c\x72\x84\x4d\xc3\x80\x41\x82\x25\x59\x73\x2c\x8d\xa1\x40\x35\x70\x98\xa0\x71\x5c\x9f\x57\x15\x08\x68\xd3\xc5\x39\x59\x1f\x4c\x30\x3c\xa3\xfe\x4e\xef\x19\xce\xc5\xac\xd7\x4e\x26\xd9\x98\x7c\x13\x66\x84\x9d\xf7\xc0\x24\x13\xe8\x6d\xa1\xbc\x6a\x7e\x51\xf3\x79\xd6\x7f\x6f\xb9\x24\x82\x18\xe0\xb5\xa9\xa0\x27\x97\x2a\xf2\xca\xb1\xa3\x2a\x6c\x23\xb3\x9a\xf1\x70\x6c\x4b\xeb\x13\x21\xc5\xe8\x6f\x2c\xf3\xaa\x33\xb8\xa3\xf3\x72\xd8\xd1\xbc\x6e\x60\xd9\xd9\x12\x56\xc2\xe9\xe6\xe6\xbc\x3f\x88\x6e\x6e\xce\x5d\xc7\xa0\x91\x92\xa3\x84\xaf\x59\xe9\x4f\x0b\x92\x0f\x22\x88\xd1\x7d\x20\x95\xb0\x81\x8f\x81\x62\x1d\xf1\xed\xbe\x0c\x7d\x48\x76\xb5\x49\x5f\x79\x3e\xfa\x00\x2f\xd4\x32\x63\xca\xee\xf6\x68\xb2\xa4\x7e\x1d\xf3\x63\xed\xd1\x98\xb9\xc5\x9a\x9e\xdb\xd9\xd0\xc7\x82\x1b\x53\xad\xf4\x83\x32\xb6\xad\xa4\x09\x30\xe5\x64\xd6\x78\xb5\x60\xe8\xd0\x03\xfd\x06\xcd\x94\x55\xc9\x40\x32\x22\xb6\xba\xc1\x64\x9a\x1f\xa1\xf2\xc5\x9b\xda\x29\x92\x22\x57\x59\xe1\x0b\x26\xac\x92\xb6\x8c\x0c\x4c\x27\xd3\xe3\xb7\x75\x03\xfd\x08\xba\xd6\xbf\xc3\x5e\xd6\x7a\xb4\x9f\x3f\x06\x74\xe0\xa3\x14\x52\x73\x78\xca\x9d\x55\xe9\x98\x69\x6c\xf3\x12\x19\xdb\x3e\xee\xb4\x51\xc0\xe8\x7b\xb7\xa6\x19\x97\x7e\xd6\xc3\x49\xfa\x7e\x55\x9f\x46\x43\xd1\x01\x15\x5f\xab\xaa\x1f\xee\x18\xfe\x93\x5f\x65\x30\x37\xfc\x4c\x91\xfb\x42\x92\x3b\xa2\x5a\x57\xd4\x27\xe0\x91\x3e\x01\xad\x2b\xee\x53\x24\xf4\xf8\xb4\x25\x8c\x75\xa4\x27\xe4\xfd\xd9\xe7\xbf\xdb\x16\xba\x6a\xe4\xc5\x73\x29\xd3\x29\xe6\x20\xec\xa3\xf8\xf8\x0e\xd9\x20\xb4\xf9\x83\x89\x65\xad\x81\x97\x33\x10\xfb\x2b\x62\x7b\x60\x13\x1b\xb6\xdd\x9f\x44\xca\x34\x77\x52\x43\x93\xc9\xd4\xb0\x13\x34\x63\xc6\x29\x59\xef\x1a\x26\x6c\x32\x39\xf8\x08\x44\x5c\xe9\x15\x05\x2d\xe7\x26\x5b\x17\x46\x4b\x96\x51\xe1\xa7\x17\xc7\x37\xfb\xfb\x71\x33\xa8\xec\x9d\x48\x40\x89\x5a\xa6\x6e\x2e\xeb\x64\x78\x95\x1f\x5c\x58\xdf\x3a\x9a\x33\xac\xec\x66\x56\x68\x96\x13\x49\xa1\xb8\x40\xdf\x91\x99\xc9\xf8\x51\x4b\x68\xe8\xeb\xf5\x31\xd9\xb4\x72\x1e\xb3\x88\x66\xc7\x51\xc4\x12\x86\x71\x38\x7d\x39\xea\xeb\xe0\xa7\xa5\xf0\xc7\x1e\x34\xb9\x59\x01\xa2\xb7\x43\x05\xc8\x41\xd9\xc7\x07\xcb\x79\xe0\x47\xd3\x23\xe7\x52\x7d\x35\xef\x7c\x5f\x59\x22\x4e\xa8\x90\x62\xb3\x92\x85\xcd\xb0\x69\x5d\x88\xbc\x6a\x6b\xe4\xd6\xdd\xa4\xe4\x39\xff\x1b\x33\xf9\xc5\xea\x05\xd6\xfe\x0f\x7b\xef\xba\xdc\x38\x6e\x35\x8a\xfe\x3f\x4f\x81\xb8\xbf\x2a\x77\xef\x63\xc9\xdd\x73\xe9\x4c\x9c\x4a\x9d\xf2\xd8\x9e\x19\xd5\x74\xdb\xda\xb6\x7b\x26\xa9\x38\xbb\x0b\x22\x21\x09\xc7\x14\xc0\x90\xa0\x6c\x65\x92\x53\x79\x90\x2f\x2f\x97\x27\x39\x85\xb5\x00\x12\x24\x01\x92\x72\x77\x4f\x26\xf9\xa8\xaa\x64\xda\x12\x89\xcb\xc2\xc2\xba\x5f\xa6\xe4\x8d\x5c\xe5\xe4\x81\x66\x82\x8b\x95\x16\x1a\x54\x91\x09\xbf\xd5\x75\xb1\xc3\x6a\xc8\x50\xfb\xd6\x3a\x9e\x9c\x7c\x2d\x28\xd8\x40\x6b\x3d\x07\xcb\xb2\x16\xdb\x22\x11\x2c\xa3\x58\xd9\xc1\x37\xf8\x9a\xe6\x28\x62\xc7\x3c\x8f\xe4\x96\x19\xbb\x98\xf2\xf6\xa0\xc4\x82\xa2\x45\xde\x8b\x91\x4f\xd2\x32\xea\xe7\x37\x13\x5c\x71\x9a\x84\xea\x6f\x75\x1d\xa2\xfb\x6a\xbd\x3a\xaf\x2d\x80\x1c\xeb\x9f\xfc\xda\xc6\x52\x96\x5c\x7c\x43\xef\x19\xfa\x99\xf4\xc0\x8d\xc0\x9f\xbd\x45\x8c\xe6\xf6\x06\xca\x74\xcd\xad\x19\xa9\xae\xb6\xad\x96\x40\x1f\x36\x13\xe3\x9e\x3c\x32\xea\x57\xaf\xbf\x78\xd2\xa6\x30\xa9\x41\xd0\xe4\x7c\x60\xcd\xd4\x50\x8f\xc9\xc7\x84\x76\x90\xa0\xfe\x77\x87\xe4\x9c\x41\xdb\xa7\x5f\x5e\xd2\x19\xac\xff\x29\xc9\xe2\xf0\xe2\x0f\x97\xb3\x7d\xdf\x7b\xe0\x19\x5b\x15\x34\x8b\x87\x52\xc9\x1f\x1b\x2f\xb4\xab\x2d\x97\x4f\x38\x7c\xfc\x93\x34\xab\x28\xd7\x5e\x06\x78\x5f\xd2\x4d\xbf\xd4\xfe\xa3\xf7\xb5\x86\x98\x08\x2e\x18\xe3\xfc\x0c\x84\x2c\xea\xc7\x9c\xbd\xda\xc1\xdc\xab\xf4\xb0\x9a\x1a\x27\xc4\x9e\xb7\xa9\xdc\xda\x1b\x9e\x2b\xa6\x39\xc3\x20\x6b\xde\x8f\xde\xd7\x1a\x75\xc9\xed\x4f\x68\xda\x0b\x79\xf8\x16\xbb\x6a\x73\xb5\x84\x9d\x57\x5f\x7d\xb6\x3f\x5e\x97\xfb\x19\x72\x37\x7f\x74\x1e\xae\xaf\x5d\x7f\x61\xae\xa7\x0f\xf2\xbe\x7d\xdc\x30\xd6\x79\x49\x3f\x64\x33\xd7\x28\xb1\x5d\x17\x09\x9b\x67\x5c\x6a\x3e\x3b\x7c\x73\x9e\x97\xeb\x9b\x4d\xed\xb7\xe0\xae\x0a\x18\xad\x0c\x7e\x36\x40\x62\x45\x49\xad\x46\xd7\xcc\x0f\xbf\xd9\x7b\xb3\x8f\xf1\xe0\xc6\x10\x9e\xd2\x24\xbf\x3f\x9f\xd7\x45\x3b\xbd\xd6\xbc\xe0\xca\xf4\x0b\x82\x32\x9d\x7e\x04\x2c\x0b\x1e\xc6\x4c\xec\xda\x81\x8f\x4f\x12\x2c\x1e\xe3\x74\x5f\x4b\xca\xef\xcf\xe7\x1f\x37\x9b\x17\xaa\xb4\x3c\x29\x91\xd7\x98\x49\xbc\x6c\xa8\xdd\x19\x49\x66\xa6\x1d\x18\x96\x10\x06\x1d\xdb\x6f\x51\xf9\xfd\xb9\x37\xc4\xbf\x9d\xee\xbb\xbf\x3d\x65\x6c\xd1\xdc\x6e\xd1\x8c\x21\x60\x26\xba\x01\xbc\xa9\x9c\x7d\x8a\x26\xcd\xdf\xc2\x3c\x97\x38\x0f\x3a\x8f\xf1\xe7\xaa\x4b\xb3\xe7\x91\x76\x9b\x66\xef\x7a\xcd\x21\x95\x8d\x9a\xdb\x0f\xc1\x64\x9f\xaa\x53\xf3\xd8\x59\x79\xec\xac\xec\x1e\xc1\xd8\x59\xf9\x53\x76\x56\xee\x6a\x7c\x9c\xa6\xc9\xee\x4a\x7c\x83\x7d\xd5\xfa\xb8\xe9\x69\xed\x69\xb4\xc5\xda\x96\x43\x30\x12\xda\x64\xab\xfa\xfd\xdc\x96\x91\xf7\x31\x28\x14\x27\x60\x24\x9b\x92\xb3\xa7\x3c\x10\xcb\x4b\xa9\x6e\xb5\x0c\xd2\xb7\xf2\xf3\xf2\x49\x67\xd5\x56\xe3\xb1\xa6\x42\x88\x3d\x42\x0f\x61\xb9\x8f\x80\xf1\xcf\xd9\x9a\x25\x15\x2b\x59\xf5\x42\x31\x1e\x16\x02\x6a\xf4\x61\xee\xf4\xcb\x83\x6e\x3d\xf7\x5c\xac\xbc\x66\x45\x30\x24\xd2\xdc\x18\xd0\x23\x5b\x08\x1d\x3b\xdb\xdd\x66\xb6\x48\x95\x0f\xc2\x84\xfa\x0b\x00\x82\xe7\x54\x6f\x0a\x0d\x22\x54\xec\x9c\xa5\x79\x17\x86\xb5\x22\x0d\x4c\x8c\xe1\x32\x68\xce\xaa\xcd\x0f\x49\xc5\x58\xe1\xd4\xb8\x8a\x17\x8c\x18\x19\x71\xdf\xb3\xc5\x2e\x04\xfd\x75\xf2\x19\xc6\xf8\x62\x5b\x2a\x28\x87\x8e\xed\x0b\x8c\xc4\x89\xb5\x58\x21\x5a\xdd\x36\x0f\xf7\x42\xc9\xbe\x8d\xfb\x36\x61\x68\x51\xc6\x15\xcb\x38\xc5\xe2\x58\x4e\xd8\x3e\x54\x0f\x33\x60\x33\xa8\xbf\x57\xb1\xf3\xda\x1e\xee\x0e\x4e\x89\x56\x23\xdc\x2e\xd6\x79\xb5\x22\xdf\x52\xbc\x42\x24\x29\xfb\x7d\x90\xaf\xa5\x5a\x9b\x7c\x74\x99\x4d\x16\x34\x07\xf0\x18\x53\xe2\xdc\x9c\x97\x70\xbf\xc3\xbe\x34\x5e\xd8\x80\x28\xc9\x32\x26\x22\x8b\x79\x13\xa7\x56\xa4\x2c\x14\x66\x78\xda\x94\x41\xd3\xb7\x48\x66\x50\x69\xd4\xf6\x0d\x0c\x2c\x58\xc4\x65\xbb\x09\x07\xf0\x90\xfa\x75\x77\x27\x6c\x21\x5d\x4c\x59\x68\x42\x22\xe0\x99\xd4\x87\x29\xd8\x0a\x16\x67\x44\x82\x23\x93\xb5\x65\xa3\xf8\xff\xf9\xf7\x7f\x5c\x4a\x05\x35\x6d\x4f\x93\xc4\xe4\x5f\xb8\x63\xfb\xc7\xd5\xef\x42\x3c\x34\xa0\x53\x59\x2d\x95\x2a\x9e\x43\x2d\x4d\x4c\x6c\x35\x1b\xb1\x6d\x76\xa7\xe4\xd4\x94\x99\x0b\xc0\x16\x50\x93\x0a\x8b\x9e\x26\x55\xc1\x6c\x59\x03\x08\x36\xa3\xff\x70\xec\xb8\x14\x07\x0f\x43\x15\x60\xef\x5f\xa2\xa5\x20\xd5\x12\xad\xd8\x5d\xff\xf4\x16\x7a\xa5\xa1\xf2\x0b\xf8\xe9\xcb\x6d\x84\x6b\x60\xbb\xa0\x07\x47\xa9\x93\xf1\xea\x85\xf2\x3a\x7b\x8e\xcf\x78\x8f\xf4\xb5\x0c\x0d\x0b\xda\xb7\x33\x3f\xd1\x3c\x5a\xf9\xe3\x22\x07\x01\x83\x98\x6e\xc1\x50\x1b\xf5\xc6\x5c\xbd\x8e\x67\x5b\x44\xe0\xb2\xf9\xb2\x89\x8c\x97\xa9\xf1\xaa\x2e\x39\x4b\xe2\x60\xc2\x4e\xf5\x29\x01\x43\x4b\x12\xe0\x64\x56\x98\xbc\xdc\x5a\xbb\x24\x99\xf1\x95\x86\x43\xe8\xfe\xdb\x0f\x48\x5f\xcf\x35\x0a\xb1\x6c\x83\x2f\x10\xaa\x5e\x38\x8e\x6d\x73\x45\xb0\x22\x77\x02\x95\x55\xbb\x87\x2c\x41\x56\xb5\x5f\x31\x6c\xd8\xc4\x9e\x03\x22\xb7\x60\xd3\x3d\xa8\xbe\x00\x25\x14\x35\x5f\x42\x35\x21\x2e\x8b\x14\xd0\x0d\x33\x89\x37\xd0\xf9\x07\xaa\x1b\x74\xa5\x0c\x57\x1f\xc7\x87\x6f\x3d\x94\x8e\xd8\xb0\x70\xe9\x6e\xb5\xa3\x61\xa0\x70\xc4\x0e\xa4\x7e\xdf\xc8\x8c\xd4\x94\xbb\x23\x28\x07\x01\x55\x6e\xf7\x84\x08\xdf\x68\x29\x20\xaf\x22\x01\x5d\x24\xb3\x15\xdd\xc1\x80\x9e\xa0\x4b\x15\x60\xd2\x3d\xa6\x27\xae\x81\x3b\xf0\x2d\x4f\x16\x0a\x9e\xaf\x59\x7d\x2b\xc1\x8b\x86\x9f\xc0\xf6\x0f\x51\x4f\x7d\xfe\xe2\xb0\x0d\x00\xbb\xc7\xee\x81\xf7\x03\x40\x5d\xc3\xbe\xf1\xc7\xfd\x55\x1f\x99\x91\xef\x64\x5e\xf6\x32\xab\x4e\xd1\xa3\xa8\x57\x67\xd9\x3d\x66\x70\x9f\xf5\x5d\xa0\x98\x07\x92\xf8\xbe\x88\x4c\xa3\x4c\xe6\x20\xe9\x39\xb7\x31\xc0\x13\x4a\x30\xf6\xd2\x76\x82\xc9\x18\x5d\xe4\xb2\x99\xde\xc2\x4c\xab\x01\x2f\xcd\xd3\x1a\xa4\xca\x78\xa4\x82\x4d\x51\xab\x8f\xe5\x6e\x70\x84\x46\x31\x91\x21\x92\x57\x52\xb5\x1e\xc4\xa9\x93\xbc\x2a\xaf\x14\x25\x71\x28\xac\x83\x31\x29\x2b\xbe\x65\x42\x6b\x9f\x7a\xfb\x9d\x78\x1e\x16\x10\x9d\x79\x07\x41\xba\x33\xaf\xbf\xfa\x08\xa9\x2e\xf7\x3b\x13\x7c\xa1\xcc\x6c\xa9\xcb\x55\x76\xc7\x97\x81\xde\x63\xd5\x07\xce\xf1\x17\x07\x8b\x50\x5f\x8c\xea\xd3\x04\x46\xd9\x0f\xa3\x03\x1a\xf3\x50\xec\x65\xf5\x41\x70\x90\x1b\xa8\xb0\x0d\x58\x0a\xdd\xf8\x6c\xfd\xf9\x1c\x03\x69\x4d\x4b\x05\x28\xb8\xb3\x23\xc1\x90\xce\xea\xd3\x28\xed\xae\xea\x15\xbf\x6c\xb3\x35\x23\x2c\x19\x5a\xad\x35\x8f\x1e\xa8\x4b\xe4\x61\xb6\xaf\xfa\xd9\xdc\x16\x64\x7f\x77\x3e\x0f\x14\x6e\xb7\x9f\x21\xa7\x1a\x2e\xa1\x51\x7d\x06\x14\xd3\x68\x3f\xdc\x8f\x28\xfd\x05\x36\xaa\xcf\xfe\xa5\x36\xaa\xcf\x50\x84\xdc\x5f\x6e\xbc\xac\x5e\xea\x41\xcb\x61\x82\x82\xc1\x4c\xf0\xbb\x95\x03\x23\x15\x46\xdf\xcf\x42\x25\x4c\x41\xb1\x4e\xe8\x0f\x80\x73\x75\x8f\x59\x0a\x44\x9d\xa8\x32\xec\xcc\xd2\xfd\xae\xec\xdd\x41\xd5\xc1\xa6\x87\xad\xf4\xc9\x0d\x6c\x08\x5b\x01\x9f\x8f\xcd\xa5\x7d\xee\xe8\x17\x9e\x7c\xd3\xe6\xb6\x70\x04\x94\x26\x73\x62\x2a\xb8\xb9\xa5\x6e\x8e\xad\xa5\xf8\xb6\xac\xcc\xd4\x23\xf5\xb9\x7a\xb9\xb9\x3a\xe0\x59\x42\x28\xe7\x16\x02\xc6\xec\x6a\xa6\xe9\x91\x71\x96\xb6\xbe\x8f\x16\x6e\x86\x52\xb0\x5e\x0a\x60\x12\x57\xf7\xa1\x60\x3d\x7b\xaf\xc8\x5b\x83\x82\xdd\x21\x0d\xbb\x33\x54\xec\x0e\xe9\xd8\x9d\xa6\x64\x9d\x32\xcf\x48\xcb\xe0\x33\x88\x96\xe5\x4f\x50\x80\xfb\xf5\xde\x4e\x13\x5e\xf5\xf1\xea\xbd\xe4\x79\xce\x98\xb5\x7d\x01\x29\xc3\xba\xb5\xf9\x4e\x28\xfa\xe8\xcb\xd8\x77\x3f\x77\x77\x9d\x6a\xb3\x91\x21\x43\x6a\x71\xf7\xd8\xd6\xe4\xe5\x68\xcd\x32\x6b\x6b\xc3\xfa\xba\x5d\x4a\x85\xde\xe6\x93\x40\xa1\x5e\x07\x08\x26\x1c\xdb\xfa\xa9\x7a\xb8\x02\x82\xc7\xe1\x26\x3d\xba\x2a\x4b\xe4\xc3\x8b\xa3\xfa\x92\x1d\x60\x23\x54\x6d\xdb\x62\xdb\x3c\xa1\xc7\x14\x00\x76\x2e\xb0\x5f\xde\xae\x19\x51\x0f\x12\x70\x0d\x62\xbd\xed\x6f\x48\x20\x34\x13\xda\x55\xb5\x82\x7b\xce\xee\x4a\xd8\xdd\x9b\x7e\xaa\x8e\x5d\x95\x39\xda\xab\x29\xbf\x0f\x2e\x01\xf3\x7c\x3f\x4f\x78\x58\xcb\xc4\x1c\xd2\x09\x1c\xd1\xdd\x5d\xc5\x90\x7f\x07\xd4\xe5\x57\x6b\x9a\x3f\xdf\xec\xde\x27\x74\xc1\x92\x17\x40\x77\x0c\x91\xef\xbb\xce\x4e\x04\xb3\xde\x37\x20\x19\xae\x0f\x03\x06\x26\x26\xe0\x24\x61\xb1\x9e\x77\x20\xbe\xb9\x11\xd1\x65\xab\x4f\x58\x1c\xf9\xe7\xdf\xff\xdb\x2e\x14\xac\xa3\x66\x43\x83\xd1\x02\x37\x1c\xdc\x6f\x7b\x4b\x7a\x0d\x7a\x5b\xdd\xc3\x76\xef\xb6\xdc\x50\xf7\x66\xfa\x0d\x0e\x1a\xeb\xd8\x72\xc9\x22\x93\x41\x69\x2c\x05\x09\x90\x55\x93\x96\x56\xeb\xb7\x3c\x60\xe9\x42\x8a\x89\xcd\x3f\x40\xf7\x2b\xe6\x97\x18\x9b\xc8\x52\x66\x1b\xd6\xb4\x41\x74\x74\x73\xae\x3e\x80\x0c\x6d\xc0\x54\x5d\x5c\x3e\x86\x02\x6f\x22\xf2\x4f\xa3\x48\x16\x62\x1f\xb9\xeb\xa6\xfe\xe2\xcf\x26\x7f\x35\x48\x72\xf7\x98\x1e\x4b\x26\x25\xa9\x8c\xcb\x22\x4c\x20\xcc\x95\xe4\xd9\x00\xa3\x87\xec\xe2\x8e\x3b\xb1\x6d\x90\x2d\x99\x90\x7a\x50\x48\xf8\x53\xd7\x07\xa0\xbf\xcd\x07\x83\x9b\x3c\x05\xe4\xfd\x43\x86\x0c\xc8\x1e\xb0\x0f\x82\x36\xa9\x20\xae\x29\x71\x6e\x02\x3f\x79\x69\x89\xd4\xc2\x6f\xcf\xcd\x1f\x26\xd8\x91\x3d\xcc\x0f\x64\xa8\x94\x44\x86\x4a\x4a\xa4\x7d\xbf\x7a\x65\xa5\xff\xdc\x93\xae\xe9\x49\x95\xc5\x0d\xa9\xbe\x85\xe7\x94\xcc\x7a\xb4\x0e\xfd\xa9\xbc\x0b\x6d\xa7\x41\xa5\x87\x28\x53\x30\x3f\xe8\x64\xaf\x7f\x4e\x2f\xcf\x0f\x03\x31\xd3\xee\x67\x3f\x6b\x56\xa8\xf3\xe0\xd0\x67\xd6\x4a\xa5\xc3\x9c\x6c\xdf\xdd\xde\xce\x2b\x27\x52\xd0\xb3\xa6\xd1\x43\x3f\x1a\x5e\xba\x0d\xbc\xf9\x30\xa7\xda\x86\xa9\xb5\x8c\xf7\xe0\x3d\x6f\xf1\x85\x8f\xcb\x73\x70\xcb\x70\x39\xcc\xbe\x9d\xb8\x22\x3d\x26\xd6\x4b\x67\x81\x16\xe1\xf5\x41\x21\x86\x3b\xc6\x51\xec\x6a\x9f\xb3\xe9\x6a\x4a\xbe\xbd\xb8\x3d\x22\xf3\x77\xb7\x47\x84\xa9\x68\xfa\x82\xbc\x35\x1d\xcc\x7a\x34\x08\x33\x86\xc6\xda\xab\xeb\x43\x2d\x44\xac\x20\xb4\xe5\x97\x65\x71\x4d\xa9\x5a\xef\x71\x8e\x87\x73\xfd\xfc\xa7\x38\xc6\xbe\x13\xec\xf7\x30\xb8\x27\x08\xcb\x9c\x96\x47\x85\xdb\xb4\x67\x31\xf4\x30\x08\x61\xd3\xd5\x09\x99\x10\xf6\x48\x23\x75\x42\x8e\x97\x52\x42\x47\x52\xa8\x2d\x44\x8e\x17\x34\x23\x97\x57\xb7\x17\x27\x18\x13\xc1\x84\xca\x76\x64\xd3\xc7\x5c\xae\x2e\xdf\xfc\xc1\xd0\xb1\x1d\x61\x1c\x8b\xb6\x93\xbb\x03\x98\x04\xed\x1f\xfa\x4f\x9c\xc5\xca\xe9\xc1\xfe\x7f\xd5\x67\x4b\x13\x1e\xd3\x52\x4d\xc5\x92\xf3\x5a\xa9\xe6\xca\x97\x75\x5c\x7d\x86\xe0\x5c\x1d\x09\x34\x88\xa1\xca\x70\xad\xbe\x1d\x00\xde\xd6\x1a\x36\x41\x0c\x3d\xe4\x76\xa6\x20\x98\x70\xc1\x2c\x20\x8c\x06\xac\x45\xf0\x13\x0b\x76\xd3\x75\x99\xaa\x35\xb6\x5b\x3e\xb1\x35\x22\x86\x28\x6c\x88\x6a\xb0\x2a\x18\x2e\x81\x66\xa4\xf6\x08\xab\xa1\x27\x06\xde\x1f\x34\x03\x8e\xd1\x09\xec\x3d\x24\x4d\x62\x00\xf0\x71\x85\xa0\x34\x54\x19\xeb\xe9\x83\x0e\x61\x86\x64\x18\x41\xea\x1f\x8a\x47\x9b\x81\x3c\x73\x76\xf6\x76\x3e\xd4\x77\x09\xc4\x28\xbc\x76\x97\x4a\x51\x8b\xf5\x11\xac\x16\x53\x52\x65\x0c\x34\x0a\xa6\x2c\x6b\x99\x07\x1b\xbb\xe2\xc7\x6d\xe3\x50\x6b\x46\x6e\xfa\x40\x95\x96\x55\x5c\x34\x77\x32\xa1\xf5\x3c\x5d\xba\x24\x78\x82\xf4\x43\xdb\xd7\x1d\xce\xa0\x41\x98\xa8\xb7\xb6\x07\x9f\x07\xc9\x44\x0a\x17\x4a\x00\x94\x08\x6a\xbc\x91\xd9\xd2\xe9\x74\xde\xcf\x22\x6e\x35\x80\x31\x84\x19\xe2\xa6\xa0\x9e\x4c\xad\x1b\x76\x59\x4a\x86\x12\xc5\xa2\xb5\xe0\x11\xf5\x76\x79\xaa\x3e\xa0\xd4\xa3\xe1\x8a\x6f\x52\x99\x57\xc1\xa5\xd8\xc8\xe0\x30\xaf\x4a\x54\x2e\x79\xc6\x1e\x68\xe2\x2f\xb6\x57\x7d\x90\x5a\x18\x93\x02\x16\xba\x94\x84\x89\xaa\x1d\x32\xc4\x8f\xf4\x5f\x8d\x5e\xeb\x33\x3c\xf6\xe1\x87\xa1\x87\x99\x12\x37\xcd\xb9\xcf\x78\x5b\x56\x2e\xfe\x0a\x03\x0f\x61\x87\x30\xd6\x45\xb4\x96\xe4\x1a\x99\x36\x79\xce\xa7\x6c\x4a\x52\x2e\x56\x79\xb7\xf5\x76\xd0\x7e\x07\x10\x83\xd4\x9f\x9b\x10\x00\xc8\x6c\x6e\x73\x14\x3e\x38\xa4\xa1\xa6\x9a\xa1\x3c\xee\x42\x79\x6e\x6d\xba\x41\x28\x0c\x80\x40\x20\xca\x3c\xb0\x39\x5b\x86\xd8\x89\x35\xab\xaa\x7f\x38\xf5\x50\xca\x3e\x22\xdd\x9b\xfb\x20\xa2\x01\x01\xfd\x58\x19\xaa\x13\x5d\xab\x15\xce\x87\x72\xc5\xa1\x6c\xa9\x1e\x24\x5f\xad\xc7\x64\x47\xa0\xbd\xf9\x9e\x99\x54\x40\x92\x52\x9e\x85\x2b\x6f\x57\x1f\xad\xd6\x9a\xee\x3f\x2e\x4c\xe9\x42\x16\x6a\x00\x23\xf9\x58\x9a\xa3\x90\x4a\xdf\xbe\x61\x98\x71\x89\x0f\xf7\xf8\xa2\xe1\x91\xee\x98\x90\x91\x61\x8c\x0c\xe3\xdf\x9b\x61\x08\xa9\xac\x58\x15\x04\x4b\xb7\xbf\x78\xa0\xa7\x78\x98\x8f\xb8\x15\xca\x64\x45\xbe\x9e\x68\x26\xf3\x58\x18\x60\x3d\xf7\x78\x80\x53\xfa\x69\xee\xe8\xf4\x97\x0a\xdc\xbb\x03\x17\xb6\x1f\x91\xf7\xb7\xcc\xb2\x90\x09\xe0\x4a\x02\x16\x26\x53\xc0\x7a\x9e\x75\x85\xe6\x98\xb8\x32\x73\xce\x17\x10\xff\x7e\x0d\xc9\x1b\x36\x15\x01\x63\x67\x9e\x2f\x58\x44\x8b\xdc\x44\x73\xf4\x04\x06\x97\x4b\x8c\x58\x06\x63\x94\x11\x21\x2f\xd0\x9d\x68\x2b\x0a\xd6\xe2\x5b\xfa\x58\x2c\x06\xbe\x9c\xb8\xb1\x1b\x47\x6e\xe4\x06\xfe\x01\x9a\x4a\xed\xaf\xed\xeb\xea\xef\x9b\xb3\x5b\xfc\x35\x3c\x8d\x19\xf1\x0d\x57\xcc\x86\x87\x40\x1b\x01\x40\x10\xeb\x52\xc0\x52\xeb\xaf\x26\x9f\x7d\xf9\x65\x87\x8f\xed\xd3\xa1\x7d\x1e\x2a\x6e\x87\x9f\xba\x9b\xa0\x2c\x6e\x37\x20\x55\x22\xd0\xad\xc2\x9d\x75\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xfc\x3b\x1e\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x08\xed\x64\xa4\x65\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\xb4\x3f\x63\x96\xc4\x98\x25\x51\x7e\xc6\x2c\x89\x31\x4b\xe2\xd3\x67\x49\x74\x74\xdc\xd1\x3a\x06\xd6\x3b\xf3\xfd\xd6\x3d\x70\x07\x96\x9b\xea\x78\x4f\x28\x73\x68\xde\x1c\xeb\x1c\x8e\x75\x0e\xc7\x3a\x87\x63\x9d\xc3\x30\x69\x1c\xeb\x1c\x8e\x1e\xfc\xd1\x83\x3f\x7a\xf0\x47\x0f\xfe\xe8\xc1\x1f\x3d\xf8\xd5\x67\xf4\xe0\x3b\x9f\xd1\x83\x3f\x7a\xf0\xcd\x67\xf4\xe0\x8f\x1e\xfc\xd1\x83\x3f\x7a\xf0\x47\x5a\x36\x7a\xf0\x47\x0f\xfe\xe8\xc1\x1f\x3d\xf8\xed\xcf\xe8\xc1\x6f\x7e\x46\x0f\xfe\xe8\xc1\x6f\x7e\x46\x0f\xfe\xe8\xc1\x2f\x3f\xa3\x07\x7f\xf4\xe0\x8f\x75\x0e\xc7\x3a\x87\x63\x9d\xc3\xb1\xce\xe1\x58\xe7\x90\x8c\x75\x0e\x07\xce\x30\xd6\x39\x1c\xeb\x1c\x8e\x75\x0e\xc7\xb2\x55\x63\xd9\xaa\xb1\xce\xe1\x58\xe7\x70\xac\x73\x18\x5e\xff\x58\xe7\x70\x64\x18\x23\xc3\x18\xeb\x1c\x8e\x75\x0e\x6b\x9f\xb1\xce\xe1\x58\xe7\xb0\xf1\x19\xeb\x1c\x86\x15\xc8\xb1\xce\xe1\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\xd1\xb1\xe3\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\xd0\x4e\x46\x5a\x36\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\x44\xfb\x33\x66\x49\x8c\x59\x12\xe5\x67\xcc\x92\x18\xb3\x24\xfe\x13\xeb\x1c\x0e\xf1\x85\xb5\x29\x57\xbf\xff\x6b\x89\xae\xcb\x4a\xd6\xf4\xad\xba\xc8\x5d\x6b\xbe\x41\x3a\x2c\x16\x28\x45\xcd\xca\x1d\xd8\x92\xff\x54\xa0\x20\x63\xdf\x3e\xae\xf4\x43\x1d\xf7\xb2\x8a\xf6\x56\xb6\xc6\x63\x40\x98\xc7\xf8\x16\xac\x9a\x07\x6a\x8b\x1e\x14\xec\xfc\xf1\x14\x35\x99\xd2\x0e\xb3\xe6\x2b\x2d\x16\xde\x1d\xc0\x78\x77\x07\x80\xc0\xe6\x59\xdf\xd0\x74\xa9\x45\x1a\x05\x24\x13\x06\x48\xe4\x03\xcb\x70\x35\x18\x2f\xe4\x2c\x2e\x27\x72\xc3\x95\x62\xf1\x91\xd6\xc8\x31\xd4\xdc\x37\x68\x24\x45\xce\xb1\x64\x25\x6a\xdc\x77\x07\x5c\x2c\xb9\xe0\x8a\xdd\x1d\x90\x09\x81\x28\x15\x67\x3b\x56\xc5\x31\xeb\x24\x09\xcd\xd5\x94\x94\x3b\xf3\x82\x44\xaf\x95\xc7\x4c\x28\x1e\xd1\xc4\x2c\xb0\x39\x0e\x17\x84\x26\xe9\x9a\x8a\x62\xc3\x32\xe7\x39\x40\x00\xdf\xa8\xc6\x2d\x68\x94\x43\x74\xc5\x7a\x0d\x9b\x88\x1c\xa2\xd8\x2c\xda\x7a\x7b\x9a\xb1\xf3\xcb\xd3\xdb\x3e\xf4\x98\xe3\x63\x84\x8b\x98\x47\xa8\x93\x94\x61\xd1\x6b\x5b\x86\x12\xb8\x17\xcf\x2d\xa0\x16\x6c\x29\xfd\x84\x87\x8a\x1d\xd1\xc3\x05\xd7\xba\x90\x32\x61\xed\xaa\x9a\x1d\x5c\xa7\xa1\x95\xdf\xba\x1a\x1e\x62\xb5\xa3\xe7\xd9\x8b\x96\xf2\xe8\x1e\xff\x4f\x16\x5e\x02\xa4\xf7\xd6\x90\xd8\x1d\x4c\x30\x41\xdc\xce\x19\x2a\x69\x0c\x4c\x1d\x7a\x47\xb5\x8e\x9c\x2c\x65\x92\xc8\x07\x84\x1a\x2a\x9f\xa5\x3a\x86\x7c\xe1\x77\xa8\x9b\xe0\xc5\x7e\x9f\x70\xc5\x32\x9a\xe8\x6f\x7c\x23\xdf\xdd\x91\x09\x26\x31\x68\xac\xde\xa4\x34\xe3\xb9\x14\x47\x04\x32\x99\xac\x52\x61\x87\x5c\x4a\x49\x16\x34\x03\x45\xa7\x9c\xee\x57\x7b\x4e\x57\xcd\xa7\x55\x22\xf6\xe7\x82\x26\xbf\xc5\xb8\x3b\xcb\xe8\xf8\xd2\x70\x38\x9e\xc3\x33\xd6\x68\x57\x4e\xe9\x27\x22\x3f\xc1\x3a\x68\x15\x2d\xb2\xa8\xfe\x19\xe1\x3f\xa7\xd3\x29\xf9\x9b\xb3\x02\x95\x15\xcc\x86\xcf\x97\x11\x68\x38\xc7\xef\x89\x3f\xe2\xd5\x58\x2b\x7b\xa6\xaa\xd6\xaa\x37\xc0\xc5\x80\xc5\xf9\x26\xdb\x73\xbd\x30\x59\xd7\x02\xfd\x47\xe2\xac\x59\x2b\xb4\x30\xde\x7b\xcd\x3a\x5e\x54\x53\xdf\x96\x33\x53\x55\x9d\x8e\x73\x32\xbf\x02\x24\xf5\x32\x5d\x33\x44\x69\xd9\x90\x4b\x78\x16\x54\x5b\xf8\x6f\xf1\xf2\xe5\x67\xaf\xf1\xff\xf1\x97\xf2\x9d\x9b\xb5\xcc\xd4\x24\xe2\x59\x54\x70\x05\x82\x8b\x79\xc9\x37\xd1\x5f\xff\xda\xf9\x36\x98\x40\xd5\x73\x7c\xe6\x45\xf9\x50\x4a\x33\x26\xb0\xd8\xed\x2a\x93\x45\xaa\xa5\xb5\xbb\x3b\x45\x93\xe4\xb9\xd7\x94\x6d\xaa\xaf\x62\x70\x42\x49\x2f\xec\x68\x16\x87\x69\x92\x38\x1a\x2a\x5c\xd0\x37\x88\x0f\x28\x82\x05\x88\x9c\xbe\xda\x48\x67\x6c\xfc\x96\x4b\xdf\xf3\x23\x32\x39\x22\xef\x01\x0e\xc7\x53\x72\x03\x57\x8e\x98\x2b\x17\x1c\x74\x23\x33\x46\x52\x2d\x9c\xe6\x39\xdf\x32\xb2\xc0\xc8\xe3\x9d\xb5\x8c\x18\x9b\x15\x61\x79\x44\x53\x46\xa2\x35\xcd\x68\xa4\x58\x66\x96\x7d\x81\x01\x9c\xde\xcb\xf0\x1c\xb8\xd4\x86\xc6\x6c\x52\xa4\x88\x16\xf9\x8b\x92\x1c\x41\xba\x8b\x21\x1d\x0f\x6c\xa1\xa5\x5f\x66\x88\x87\x7b\xe2\x31\x4b\x13\xb9\xdb\x30\xe1\x25\xa7\xe6\xfd\x34\x93\xb1\x45\x52\x18\x57\xdf\x29\xa0\x49\x99\x14\x8a\x89\xd8\x41\x75\x1a\xdd\x9b\x2f\xfe\xa6\x1f\xaf\xc6\x27\xbf\xfa\x5d\xe8\x06\xc4\x6c\x6b\x87\xff\x15\x69\xdc\x02\x1f\x29\xeb\x12\x9e\xea\xb6\x84\xa1\x52\xe1\x8d\xf7\xad\x4f\x26\x1a\x9a\x45\x5a\x55\x63\x5f\x01\x11\xec\x95\x03\x78\x2a\x98\x35\x2b\x09\xe0\x61\x0d\x69\x94\x35\x9e\xef\x04\x74\x98\x42\xd3\x5e\x3a\xa5\xef\x9d\x34\x95\xa6\x8f\xcc\x5f\x5a\xa9\x99\x12\x0c\x9f\x02\x6e\xf2\x98\x6a\x89\x4a\x25\x3b\x47\xa7\x79\x0e\x55\xb2\xbd\x71\x71\x0e\x1d\x15\x24\xca\x98\x89\xda\xce\xcd\xed\x96\x19\x11\x3c\x79\x71\x64\x23\xaf\x63\xb6\xa4\x45\xa2\x72\x82\xdb\xd2\xa0\xcb\xe2\x80\x4e\xa3\x24\x79\xd0\xb4\x72\x66\x6a\x99\xeb\x45\x5c\x38\x65\xcd\x41\x6e\xb5\xf4\xb3\x2c\x19\x0d\x01\x43\x24\x94\xbc\x69\xe6\x27\x3c\xc7\x3b\x36\x21\x7f\x34\xa2\x9c\x5e\x90\x9d\xe9\x4f\x47\x86\x45\x68\xc1\x18\x2c\x8f\xb5\x89\xbd\xf7\x98\x8b\x28\x29\x62\x6b\x9a\x8f\xa8\x16\x96\x61\x80\x6a\x18\x82\x4c\x5a\xc8\x72\x4b\x30\xdc\x0b\xbd\x12\xbf\xae\xe5\x2e\xee\xc2\xbf\xb6\x1a\x44\x34\x61\xaa\x86\xf7\x2a\x77\xf0\x5c\x70\xeb\x47\xbd\x13\xfa\x06\x05\xcd\x38\x74\x4c\x48\x03\x7f\x34\x6a\xb1\xa3\x9e\x64\x8c\xea\xdb\x14\xdd\x13\xba\xa2\x5c\x78\x51\x16\xd1\x04\xcd\xa9\xc9\x03\xdd\xe5\xad\xa0\x59\xf4\x73\x1e\x11\xc1\xb6\x2c\xab\x61\x9d\xd7\xaa\x39\xb0\x1a\x7d\x05\x05\xc2\x80\x75\x94\x1e\x81\x54\xe6\x39\x5f\x24\x76\xe2\x2a\x90\x43\xbf\x70\x93\xb2\xc8\xaf\x76\xe3\x46\xc2\xa1\x2d\xdd\x0a\x7e\x50\x77\xf6\xab\xdc\xed\x6f\x81\x73\xc4\xae\xc3\x2e\x57\x32\xa3\x2b\x66\xbf\xca\x15\x55\x05\x02\x06\xed\xd6\x2c\xbe\x74\x2c\x8a\xf7\x5c\xc4\x9a\x1a\x59\x90\xa6\x49\x91\xd1\xa4\xfa\x26\x92\x02\x5d\x48\xf9\x09\xf9\xe3\x9f\xf4\x37\x7a\x7c\x16\x9b\xec\x2f\xf3\xed\x9d\x98\x4c\x26\xe5\x7f\x68\xca\x6d\x2e\x19\xa1\x29\x67\x8f\x8a\x09\x78\x78\x7a\xff\x55\x3e\xe5\xf2\x78\xfb\xea\x4e\xe0\xc4\x67\x45\xae\xe4\xe6\x9a\xa1\x59\xfc\x9c\x81\xa2\x08\x44\xbb\x96\xb1\xa5\x79\xcd\x09\xc1\xb8\x3f\x81\x01\x74\x39\x53\xf9\x34\xca\xe2\x69\x9a\x49\x0d\x8e\x08\xe8\xd0\x54\x66\xab\x3b\xa1\x09\x1c\xbc\x07\x52\xcb\x09\x09\x3c\x56\xb7\xad\xe2\x82\xfc\xb1\x7e\x09\xcf\xd5\xf7\xde\xdf\xdf\xf0\x5c\xd5\x21\xd7\x5a\xa5\x39\x16\x2e\x56\x45\x42\xb3\xf6\x03\x00\xd4\x48\xea\x93\x3d\x4b\x8a\x5c\xa1\x56\xb9\xb5\x00\xd6\x7f\x4c\x0c\x04\x34\xe0\x60\xb0\x68\xcd\x36\x55\x32\x9b\x4c\x99\x38\x9d\xcf\x7e\xf8\xfc\xa6\xfe\x7d\x03\xf7\x9b\x6b\xaf\x07\x09\x83\x3f\x8c\x66\x0b\xae\x32\x9a\xed\xc8\x6c\x4e\xf2\x62\x31\xb1\xcb\x3c\x3e\x9b\x9d\x5f\xd7\x08\x0f\xda\x31\xd6\x9a\x54\xa1\x74\x03\x3a\x2c\x28\x60\x48\x8b\x94\xc4\x7c\x15\xe3\x7c\xdc\x90\x2d\xa7\x4e\x18\x08\x3a\xf8\xf0\x55\x77\x5c\xb9\x6c\x2f\xd4\x7a\x89\x4a\xa3\x8d\x7b\xd7\x02\x96\x74\x07\x0b\xeb\x57\xab\x9e\x80\xaf\xe1\x66\xbc\xa1\x18\x20\x8c\xd4\xc0\x80\x9f\xc5\x06\xd6\x48\x0e\x80\xb8\x19\xce\x44\x7d\xd6\x32\x0d\x42\x61\x2e\xe8\x14\xe4\x16\x96\xe5\x56\xb3\x8d\xa4\xd8\xb2\x4c\x91\x8c\x45\x72\x25\xf8\x5f\xca\xc1\x73\xeb\x9f\x85\xde\x18\x2d\x59\x8f\x0b\xc5\x32\x2d\xe1\x00\x65\x3a\x02\x42\xbc\xa1\x3b\x92\x31\x3d\x0d\x29\x84\x33\xa0\x8d\x0e\x79\xab\x25\x5b\x2e\x96\xf2\x04\x4a\xa3\xe4\x27\xc7\xc7\x2b\xae\xec\x05\x8c\xe4\x66\x53\x08\xae\x76\xc7\xe0\x35\xe2\x8b\x42\x1f\xc9\x71\xcc\xb6\x2c\x39\xce\xf9\x6a\x42\xb3\x68\xcd\x15\x8b\x54\x91\xb1\x63\x9a\xf2\x09\xac\x5d\x00\x21\x98\x6e\xe2\x67\x99\xb9\xb1\xf9\xa1\x8f\x6c\xb5\xa9\x1d\x5c\xae\xae\x63\xd0\xb7\xcb\xe4\x13\xa2\xe8\x8e\xb2\x47\x09\x6d\xcb\x7f\xaf\x2f\x6e\x6e\x89\x9d\xdd\x9b\x7b\x89\xc0\xaf\xde\xcc\xab\x73\xd0\x40\xe3\x62\x69\x85\x2c\x30\x4f\xbb\x36\x09\xe4\xf0\x09\xf7\xc8\xdb\x79\xb1\xd8\x70\x95\x3b\x35\x35\xe4\x94\x9c\x41\x72\xa6\xe6\x5c\x45\x1a\x53\xc5\xe2\x29\x99\x09\x72\x46\x37\x2c\x39\xa3\x39\xfb\xe4\xa7\x00\x92\xe6\x44\xc3\x76\xe8\x39\x04\xf2\x60\x43\x06\xde\x92\x90\x06\x8e\xad\x79\x51\x35\x9b\xac\xa7\x63\xd8\xec\x9d\x2a\x5f\x96\x92\x70\x24\xb5\x3d\xd8\x06\x27\xed\xf0\x95\x05\xa2\x8b\x5b\x6d\x74\x6c\x00\xd4\x6c\x4e\x2c\x49\x43\x0a\xb6\x60\x89\xd4\xb8\x25\x8d\xd9\x88\xf9\x5c\x45\x61\xe1\x62\x64\xef\x1f\x8d\xbd\xaf\x65\x5e\xf9\xf3\x3f\x01\x6b\x77\xa3\xf2\x9b\x6c\xdd\xfd\xad\xcd\xd2\x6b\x2b\x6b\xb2\x73\xf7\xc7\x4f\xc9\xca\x47\x36\x37\xb2\x39\xf7\x08\x46\x36\xf7\xb3\xb1\x39\x97\x3a\x0c\x63\x71\x6d\x5a\x53\x7d\xf6\x67\x72\xec\x31\x85\xd4\xb1\xd9\x7c\x88\x5d\x49\x9f\xb4\x79\xa1\x9e\xa1\xf2\x7c\x36\xdf\x7e\x01\xd7\x6a\x36\xdf\xbe\x7e\x61\x35\x5c\x8b\x16\x5e\xf5\x75\x86\xe6\xf2\x99\xbe\x9b\x4b\x1a\x31\xf0\x8a\xdd\xdd\x1d\x34\x1c\x10\xa5\x1d\x08\x34\xfa\x44\xca\x7b\x6b\x88\xe3\xf6\x4d\xaf\xfd\xd5\x86\xd5\x38\x99\x33\xb3\x79\x2d\x70\x03\x3b\xc2\x81\x6b\xcc\x58\x18\x80\x88\x50\x35\x85\x40\x48\x2f\x53\xbe\xbb\x53\x60\x96\x28\xf2\x56\x44\x65\x23\x3d\x14\x92\x76\xca\xa6\x7a\x32\x33\x46\x34\xdf\xa0\xcd\x06\x73\x77\x77\x7a\x3c\xd3\x59\xae\xdc\xbf\x21\x7e\x79\x7d\x56\x2e\xfc\xc9\xa7\xa5\xde\xe5\x9e\xd3\x14\xb2\xc5\x34\x5b\xa9\x45\xb8\x61\x64\xe2\x45\x85\x0a\x68\x74\xf0\x0d\xcb\x73\xb4\x70\x62\x79\x12\xaa\x48\x5a\x64\xa9\xd4\x37\xf5\xf9\x6c\x69\xaa\xfc\xad\x59\x75\x34\x7a\x1e\x1b\x33\xd3\x5d\x22\xc2\x5a\xfb\x24\xc3\xe3\x4f\x18\xcd\x44\x79\x6c\xe6\x04\xab\x71\xf5\x02\x8a\x1c\x2c\xd2\xc1\x68\xed\xbb\x3b\x65\x8f\x63\xea\xb5\x27\x7f\x74\xe1\x8b\x54\x2b\xd4\xe8\xdc\x7f\xa5\x2e\xb0\xa2\x9a\xc6\xfb\xff\x85\xc6\x74\xe3\xe9\x00\xa0\xd5\xb3\xd4\xdf\x70\x51\x3c\x76\x63\x7d\xe9\xeb\x2d\x11\xfa\xb7\x80\x7a\x9b\x54\xed\xa6\xa4\x9a\xc6\x75\x0f\xa3\xaf\x94\xe7\x9d\x94\x45\x7f\x56\x72\xcb\x32\x81\x5e\x96\x32\x70\x47\x1e\x99\xb8\x51\xbd\xec\x4c\x16\x2b\x8c\x28\xb0\x46\x53\x23\x11\x57\xea\xb5\xd7\xc8\x8c\x87\x0b\x78\xa9\x1f\x2c\x4b\x77\xe8\xa5\x5e\xca\x18\xc9\x02\xe0\xe4\x6f\x09\xd3\xfb\xc7\x8b\x1d\x6b\x24\xd9\xe2\x45\xf4\x67\x2d\x57\x49\xa2\x5b\xe8\x00\xb9\xab\xc0\x77\x44\x5c\xf3\xab\xcc\x31\xfe\xf5\x58\x49\x88\xa9\xd4\x6b\xb1\x16\x0a\xbf\x53\x3f\x91\x11\x4d\xca\x64\x48\x63\xb2\x9c\x2d\x49\x8d\x9e\x59\x5a\xe6\x9c\xef\x20\x50\xc3\x45\xb2\xf0\xae\x05\x49\xc1\xf6\x81\x9e\xe8\xbd\x1b\x59\x0b\x20\xe7\x80\xdf\x4b\x64\x2c\x1a\x55\x77\xa8\x84\x75\x6d\xcd\x80\x82\x13\xf2\xa0\xc9\x5c\x9d\x38\xfb\xe9\x01\xda\x4f\x27\xb5\xe3\xf7\x4c\x56\xe6\xaf\x54\xa6\x58\x7d\xb3\xbd\x83\x0a\x97\x18\x41\x55\xc5\x0c\x42\x14\x8e\x3c\xab\x2a\x97\x70\x44\x28\x50\x8d\xb6\xf8\x47\x8c\x07\xd9\xe5\x5d\x65\x87\xc7\xaa\xe6\x0c\x86\xe0\x6b\xa5\x23\xc3\x6a\x4c\x66\x96\x9c\x3c\xcf\x0b\x3f\x85\xa1\x39\xf9\xe7\xdf\xff\x9b\xa9\xf5\xcb\x7f\xfe\xfd\x1f\x2f\x4c\xf4\x38\x38\xf6\x58\x4c\xf4\xaa\x7f\x4b\xb8\x22\x3c\x17\x87\xaa\xb2\x02\xf7\xf3\x71\x82\x57\x39\xcd\xa4\x96\x5d\x1c\x04\x40\x08\x3b\x34\xa1\x8e\x85\xd5\x9a\xbd\x1c\xd7\x86\xf8\x9f\xe0\x4e\x21\xa3\x06\x64\x1f\xcc\xba\x41\xbf\x90\x96\xb7\x36\x69\xc2\x36\x1a\xd3\x90\xd0\x57\x64\xc3\x5d\x74\xfe\x5b\xff\xd9\x71\xc5\x69\x92\xec\xc8\xff\xab\x21\x9c\x66\x6c\x02\xf1\x28\xa5\x97\x65\xae\x8f\x88\x99\xca\x97\x25\xd1\x8f\x8a\x4d\x48\x23\xd0\x1f\xdb\x7d\x13\xc5\x7b\xd3\xe5\x53\x0a\xaf\xb9\xbe\x8b\x74\x0b\x7f\xd9\xa3\x96\x4e\xaf\x9f\x33\xb1\x9e\x10\x0c\xb4\xdc\x59\x76\x6f\x56\x0c\x0f\x70\xad\x23\x0b\x2f\xb0\xbb\x16\x11\xca\x31\x6b\x78\x13\x34\xab\xaf\x49\x83\x96\x5f\x1f\xe6\xe6\xe6\x9a\xf4\x27\x5b\x06\xd3\x1b\x09\xba\x60\x55\x13\x5a\x08\x5d\x2a\x85\x0d\x73\xe0\xe8\x70\xd9\x87\x37\xf6\xc6\x17\x0b\x3f\xeb\xeb\x87\x4c\x05\x9f\x9e\xd7\x3b\x73\x9b\x7e\x49\xe5\x6d\x3e\x55\x35\x93\x9e\x80\x4b\x11\x20\xd7\x13\x00\x6e\xe0\x97\x8e\x7a\x45\x4f\x0e\xd3\x4c\x4d\x7b\xe4\x3e\x74\x3f\xad\xf2\x08\xf1\xc2\x71\xe0\x72\xcb\x56\xa3\x65\xb3\x88\x70\x15\xb8\x2a\xb6\x58\x33\xda\x52\x03\x31\x1d\x91\xcd\x20\x55\xa4\xa3\x55\x08\x30\x84\x2f\x34\x28\x06\xe7\xa6\x29\xa3\x59\x19\x3c\x07\xb1\xdf\xa4\x5c\x57\xe5\x5f\xb6\x23\xdb\x20\x48\xd6\x68\x28\xdd\xa9\x02\xa4\xa1\xf2\x15\xa3\xa1\xf0\x67\x30\x14\xf2\x94\x6e\x16\x89\x8c\xee\x3f\x85\x95\x70\x36\x3f\x7d\xfb\xb5\x1e\xbc\x69\x22\x2c\x7f\x68\xdb\x07\xab\x05\x35\x8d\x83\xe5\x2f\xa3\x65\x70\xb4\x0c\x8e\x96\xc1\xff\x38\xcb\x60\x49\x14\x06\x99\x05\x45\x93\xba\x54\x9f\xfd\x8d\x82\x5a\xdb\xd0\xb0\xf3\x70\x9b\x2e\x5e\x43\x13\xad\x8d\x84\xea\xc9\xf6\xf1\xaf\x0e\x71\xeb\x19\xb9\xbd\x3a\xbf\x3a\xc1\xba\x04\xa2\x48\x12\xba\x40\x1e\xbe\xa1\xa2\x00\x5d\x83\xc6\x31\xb0\xf2\x29\xf9\x91\x59\x92\x80\x78\x43\xca\xe4\xc5\x6c\xb2\x62\x5e\xe5\xe2\x99\x26\x11\x6b\x2a\xe2\x84\x91\x3f\xfe\xe9\x7f\x69\x64\x45\xe0\x24\x3b\x93\x61\xec\xd5\xa6\xec\x42\x42\x42\x5a\x87\x54\x44\x15\xa2\xa4\x57\x2e\xfa\x00\xc1\x1b\x37\xf1\x9e\xfb\xc5\x42\x32\x48\xfa\xce\x99\x66\xc8\x34\xf3\x9d\xbe\x59\xfd\x7e\xf5\x80\x87\x88\xc9\x7d\xf9\x45\x4f\x96\x3f\x23\x1e\xfb\x62\x40\xbb\xd6\x14\xb3\x84\x29\xaf\x64\xdd\x9d\xf2\x00\xd9\x70\xa7\x7d\x57\x27\xf0\x76\x21\xcc\xed\xf1\x4e\xfc\xe4\xbb\x13\x84\x4c\x40\x7f\x98\xb8\x97\xb8\xf5\x53\x89\xb5\xcd\x5f\x34\x94\x9b\xdf\xd5\xe1\xd1\xfc\xd5\xd9\xef\x28\x95\x0e\x91\x4a\x23\x29\x96\x7c\xf5\xa9\xc4\xd2\x33\x18\xdd\x27\x97\xe2\x2f\x7e\xc1\xd4\xac\xc9\x27\x99\x46\xe5\x80\xa3\x68\x3a\x8a\xa6\xc1\x63\x18\x45\xd3\x7f\x57\xd1\x14\xe9\xc2\x1e\xb2\xa9\x4b\x62\xaa\xcf\x13\x84\xd3\x42\xc9\x53\xc3\x3b\x40\xde\xf5\x31\xc6\x4e\x5e\xbb\xa1\x8f\xf8\xe2\x9c\x65\xdf\xc9\xdc\x67\x6b\x6c\x14\x5c\xaf\x3f\x0f\xc1\xed\x42\x8a\xc9\x5f\x58\x26\x8f\x6c\x59\xb4\x0d\x7d\x34\x99\x9b\x9a\x1c\xb8\x3a\x7b\x63\x69\x50\x68\x88\x0a\xc8\x46\xd4\xdc\x11\xd2\xe2\x19\x8d\xd6\xe0\xc6\x09\xda\x92\x03\x3c\xfe\x43\xc4\x8e\xb0\x10\xd0\x82\xf1\x3e\xdc\x7d\x64\xe1\x7e\x16\x8e\xd2\xf9\xa7\x62\xe1\xdf\xc1\xe8\x3e\x16\x8e\xbf\xf8\x59\xb8\x59\x93\x8f\x85\xaf\xcb\x01\x47\x16\x3e\xb2\xf0\xe0\x31\x8c\x2c\xfc\xdf\x95\x85\x23\x5d\xd8\x83\x85\xbb\x24\xa6\xfa\xec\xcf\xc2\x81\x39\x7a\x58\xd5\x60\xc3\xc2\x20\xad\xd7\x6f\x2d\x78\xa2\x76\x8f\xc4\x70\x76\xbe\x97\x2d\x21\xc8\x5f\x17\x6d\x3b\xdd\xa4\x9c\x62\x64\xa6\xfd\xcc\x34\x95\x32\xf9\x34\x8c\x74\x2e\xad\x07\xd4\x65\xa2\xfa\x5b\x1f\x03\x85\x75\xb4\x99\x67\x6a\x06\x19\x19\xe7\xc8\x38\x83\xc7\x30\x32\xce\x7f\x4f\xc6\xa9\x69\xc1\x60\xa6\xa9\x1f\x7e\x2a\x87\xbc\xe1\x7f\x19\x14\xac\x04\x0f\x93\x9c\xff\x05\x34\xc9\x22\xc7\x08\xb3\x2a\xee\x97\xd0\x3c\xe7\x2b\xb1\xd1\x98\x11\x2c\x5b\x68\x6a\x03\xc8\x64\x4a\xce\x6d\xc2\xbd\x92\xe4\xb3\xd7\x66\x30\x13\xde\xfd\xea\xd5\x67\xf6\x8b\xd7\xfb\xaa\xaa\x01\x5b\x7c\x6b\x3f\x7a\x15\xe4\x6c\x76\x7e\xbd\x67\x5c\x55\xcc\x73\xba\x48\xbc\xbc\xbd\x36\x07\x04\x70\xdb\x87\x41\x7d\xcf\x8a\x2a\xcc\x5a\x0b\x3a\x18\x6b\xae\x11\x1d\x41\x57\x45\x50\xfb\x40\x67\x2e\x95\x85\xdf\x9e\x92\x05\x4f\xb9\xaf\x55\x6e\x9d\x56\x9c\xeb\xab\x8d\xde\x01\x73\x91\x6d\xb7\x59\x88\x14\x2d\x43\xb2\x4f\xe7\xb3\xed\x2b\x48\x90\x7f\xa0\x59\xec\x5d\x2d\xd4\x1b\x52\x7c\xc1\x13\xae\x76\x9a\x50\x28\x43\x69\xdc\x51\x61\xeb\x58\x16\xe5\xa8\xfe\x93\x17\x00\x18\x87\x8e\x14\x1b\x9b\x81\x27\x3b\x5f\x3b\xeb\x1e\x07\x16\x13\xa1\xf3\xf3\x9f\xa1\x79\xbe\x3a\x42\x0d\x4b\xa2\x0a\x21\x58\xa2\xf7\x64\x0b\x77\x15\x81\xa0\x1b\x82\x61\x96\x31\x4b\xf8\x96\x65\x55\xf5\x58\xfd\x55\x59\x59\xdd\x69\x3a\x14\x3e\x61\xd2\x77\xca\x04\x4a\xc2\x04\x7b\x2e\xb6\xee\xc0\x6c\x3e\x9b\xc3\x0b\xa6\x41\xb1\xb5\x18\xd9\x3a\x43\x07\x58\xda\xc0\x76\x4a\x80\x16\x2b\x13\xec\x09\x72\x77\x30\x25\xe4\x34\xb4\xdf\x8d\x69\x82\xec\x8c\x60\x4a\x25\xe4\x48\x3b\x60\xe6\x0a\x86\xfa\x6c\x33\x59\x20\x8e\x04\xdb\x5c\x39\xf0\xaa\x27\x86\xb4\x60\x47\xc8\xa9\xb3\x86\xfa\xba\x43\xa3\xc3\x02\x2d\xa2\x37\x17\xf8\x60\xab\x44\xb8\x6b\xc0\xf0\x4c\x7d\x3b\x42\x63\xd2\xaa\xbe\xb3\xe9\xa5\x62\x25\x12\x5b\x86\x52\x0f\x2e\xec\x09\x54\x11\xed\x9d\x75\xf1\x9f\x83\x65\xb0\x2a\xc2\x17\xbf\xd0\xab\xa8\x60\xdd\x89\x3a\xdd\x11\x5c\x7e\x75\x46\x63\xfc\xdb\x01\x41\xad\x67\x96\x57\xa1\x63\xa6\xc8\x2a\x3e\xe5\x39\xf0\x6e\x54\x9f\x35\xf6\x78\x64\x0b\x58\x62\xcb\x4e\x03\x28\x2c\x83\x73\x77\x70\xc9\xb6\x50\x31\x10\x9b\x48\xd6\x27\xf3\x8d\xae\x47\x30\xb4\xd9\x57\x35\xbd\x33\xba\x97\xaa\x89\x2c\xd4\x4a\x72\xb1\xfa\x9f\x42\x52\x3b\xa9\x8e\xa0\xea\x6a\x20\x3c\xb0\x9a\x8f\x03\xc0\x8a\xaa\x5a\xba\x08\x45\x73\x9c\xba\xd0\xa4\x33\x3f\xc2\x48\x47\x5a\x08\x75\x09\x40\x8b\xba\xca\x42\xe5\x3c\x66\xa5\xb6\x01\x0f\xe9\x1b\xef\x1b\x14\x0a\xd6\xe7\x7f\x2e\x58\x46\x63\x6f\x09\xd4\x6e\x70\xc8\x78\x70\xb9\xd0\x53\x7d\x54\xb9\x95\xe0\x4c\xfd\x09\x8d\x2e\x26\x7c\xbf\x8c\xc0\x07\x52\xb3\xd8\x61\xb9\x09\xdf\x9a\xcb\x8a\xb1\xfb\x21\xf3\xf6\x31\xa1\xe2\x03\xaf\xf6\x0f\xbf\x7f\x73\x7a\xf9\xb3\xdd\x6d\x98\xcd\x2b\x5b\x96\x0b\x78\xf2\xe5\x0e\x9a\x52\xda\xa1\x07\xa3\xc5\xa4\x6d\x31\xb9\x2f\x16\xac\x0a\x84\xca\x6b\x98\xf2\x29\xec\x28\xdf\x17\x0b\x76\x56\xcd\x77\xe6\xce\xd7\xb4\xae\x74\x3d\xdb\xb6\xb9\x74\xee\xa4\x69\x89\xe9\x7a\x78\xb4\xcf\x8c\xf6\x99\xd1\x3e\xf3\x1f\x67\x9f\xe9\xa2\x26\x6d\xab\x4d\xad\x20\x5b\x13\xc0\xdf\x97\x59\x39\x4e\x10\x69\x83\xcd\x0e\x37\xe9\x38\x43\x0c\xe1\xe8\x76\x36\xd4\x71\xb1\x44\x9e\x9d\xd9\x14\x77\xdc\xf2\xb8\xa0\x89\xb3\xcc\x90\x18\x66\xc6\xda\x5b\x1f\x2f\xb3\x67\x87\x68\xad\x65\x7d\xf5\xd0\x92\x6d\x56\x33\x3e\x54\xad\x2b\x58\xc8\xfe\xc2\xa8\xf7\x8b\x9d\x95\x3b\x8e\x6c\x93\x2d\xc1\x51\x90\x44\x59\x22\x30\xc2\x80\x3e\x18\x9a\x4c\x89\x88\x27\x2c\x9b\xb3\x8c\xcb\x70\xdc\x6c\x93\x38\x5c\x37\x5e\xb4\x51\x20\x29\xfe\xa5\xa4\xfe\xd7\x52\x66\x9b\x72\x0a\x1e\x4c\x6e\xb4\x1f\x28\xeb\xea\xe4\x18\xea\x5b\x01\x22\xc3\x94\xfc\xd1\xd8\xe4\x4e\xc8\x97\x9b\x3f\x79\xb4\x00\xfb\xe9\x8f\xb5\xed\x8b\xb4\x0d\x64\x48\xb6\x20\x70\xa9\xc5\xde\xae\x93\xd6\xbf\xff\x32\x0e\x79\xed\x24\xad\x0e\x3d\x60\x37\xd1\xd5\x6e\x03\x2a\x7f\x47\xd6\x2c\x00\x1c\x12\x12\xaf\x9d\x9e\x38\x1d\xa7\x7b\x6e\x0d\x8e\x4f\xdd\xe9\xc0\xdd\x12\x13\x23\x75\x96\x31\x1a\x28\x62\x11\xd8\xf3\xe1\x69\xf9\x5a\x75\xb2\x85\x92\x1b\xaa\x78\x54\x15\x6a\x95\xbd\x7d\x2f\xea\x50\x01\xad\x43\x2b\x0a\x3b\x63\x4e\xa9\x90\xd9\xc2\xa4\x0b\xa5\xc9\xe0\x56\x16\x43\x1a\x59\xfc\xcf\xbb\xf0\x04\xb0\x16\xca\x60\x77\x21\x4d\x7d\xb7\x37\xe5\x2b\x15\xf2\x97\x55\x84\x25\x89\x64\xba\xeb\xe1\x3b\xf6\x03\x74\xa0\xaa\xe2\xe8\xa4\x4f\xe7\xee\x2e\x0d\x19\xf8\xb4\xb4\x0d\x73\x2b\x87\x50\x37\x53\x88\xa5\x83\xbe\x99\xec\xe9\x5f\x06\x85\xfb\x9f\x87\xd5\x7d\x47\x5d\xaf\x06\x3e\xe4\xc8\xeb\x95\xc0\xbb\x8e\xbe\xa7\xa1\x90\x6d\x23\xe4\xa0\xc6\x88\x03\xff\x0a\x1c\xb0\x55\x31\x7a\x78\x7f\xdd\x0c\xda\x78\xa7\x0b\x0f\xfa\x1a\xe1\xb3\x86\xfc\x30\x62\xc2\xbf\x06\x13\xba\x7e\x65\x2a\x8a\x7f\xf8\xfc\x4c\x6e\x52\xec\x51\x15\x84\x58\x1d\x52\x17\xde\xd7\x1a\xf0\x5a\x30\xf5\xc0\x98\x80\x39\xb6\x9f\x07\x1d\x07\x30\x40\xa9\xc5\x83\xfb\x40\x83\xfa\xa5\x8b\x0b\x0e\xac\x5e\xbd\xf4\x02\xab\x0b\x48\x6b\x46\x13\xb5\x3e\x5b\x33\x7f\xb0\x7c\x7d\x6b\xdf\x39\x0f\x97\xd8\x2f\x33\xbb\x94\xbc\xec\x5c\xa1\xc5\x3a\x1c\xd9\xbb\x35\x1c\x60\x10\x87\xef\x5a\x7b\x22\x57\x37\x5a\x78\xe4\x6a\x77\x13\x65\x8c\x35\x4d\x67\xed\x0d\xbc\x69\xbe\x61\x8f\x25\x91\x2b\x92\x9b\x5f\x08\x5d\xc8\x2d\x33\xa5\x53\x12\xb9\xf2\xca\x30\x50\xce\x87\x89\xd2\x33\x98\xab\x58\x16\xca\x3d\x8c\x99\x58\xca\xfd\x76\x14\x36\x64\x87\x14\xf5\xa0\x25\xa4\x32\x4f\x07\x40\xd1\x69\x0b\x81\xb7\x1d\x9b\x94\xd9\xa1\xfe\xd6\x63\x42\x04\x33\x54\xcd\xf0\x41\x66\xea\x10\x8a\xc1\x2d\x8b\x04\x7d\x22\xf1\x06\xcc\x2a\xd0\x9a\x0b\x32\x74\xa1\x0d\x06\xb6\x4c\xa5\x91\x2a\x68\xcb\x3d\x82\x23\x62\x4a\xc4\x03\x2d\x6b\x72\xd8\x92\x36\xc6\xe7\xbd\x91\x31\xf6\x94\x58\x68\x89\x6c\xcb\x33\x09\xb1\x2c\x64\x4b\x33\x0e\x28\xd9\x5a\x2f\x3a\x84\xef\x8b\x05\x9b\xb8\x96\x9b\x34\x93\x11\xcb\x9b\x6a\x5a\x57\x75\xc4\x6a\xb6\x1f\xa8\xd7\x6e\xb3\x67\xc8\x6a\x88\x88\xd5\x8e\xed\xa2\x3e\x6b\xb3\x08\x90\x07\x00\x01\x3f\xb7\x17\x08\x00\x6c\x2e\x96\x49\x81\x25\x81\xb0\x8b\x39\xf4\x4b\x44\x04\x09\xfa\x65\xfc\x14\x34\x73\xdf\xed\xbb\x9c\xb5\x89\x1a\x1b\x83\xce\xb8\x7c\xcb\x6a\x58\xc1\x73\x3b\x81\x6f\x83\x3c\x74\xd0\x32\x3e\x32\xe5\x57\x36\x2c\x5b\x59\x4b\xed\xe9\x7c\x56\x19\x6a\x35\x63\xf2\x5e\x7a\x11\xc0\x32\x0f\x5c\x7a\x98\x71\xb7\xc9\xaf\x05\x9c\x8f\x69\xf6\x23\x7d\xa6\xbf\x01\xcb\x27\x03\x4c\x80\xad\x4d\xec\x67\x06\xec\x92\x1c\x3e\xa6\xd4\x34\x70\xb7\x64\x3f\xe9\xa9\xb5\xf9\xe1\x12\x54\x9f\x09\xa5\x2e\x60\x0d\x92\xa2\xfa\x86\xec\x16\xb2\xc8\x47\x35\xb3\x74\x58\x11\xc9\xa7\xb2\x24\x92\x8f\xa0\x6b\x93\xe1\x78\x32\xd0\xaa\xd8\xda\xee\x1e\x96\xc5\xbe\x13\x75\x5a\x9d\x7d\x14\xeb\xe2\x1e\xbb\x27\xfb\x58\x19\x5b\x30\x18\x66\x69\xec\x1f\x14\x44\x93\x8f\x6e\x6d\x24\x7b\xf5\x62\x1e\x72\x1d\xc8\x48\x57\x86\x00\x73\x90\xa1\xb2\x0d\x9c\x8f\x67\xac\x24\x1f\xd5\x60\x39\x7c\xeb\x43\x70\xa8\xd3\x78\xd9\x02\xca\xc7\x34\x60\x92\x9f\x97\xb0\x8e\x17\xe5\x23\x60\xcb\x20\xfb\x27\xf9\x64\x36\x50\xf2\x89\xec\xa0\x64\x44\xa3\x9f\x15\x8d\x06\x9a\x50\xc9\xa7\x34\xa3\x92\x4f\x65\x4a\x25\x23\x32\xfd\x8c\xc8\xd4\xf7\xc4\x60\x4b\x2c\xf9\x54\xd6\x58\xf2\x71\x2d\xb2\x43\x80\xd7\x63\x99\x6d\x6f\xf5\x23\x59\x67\xc9\x9e\x16\xda\x21\x7b\x19\x62\xa9\x6d\x6f\x68\x6f\x6b\x6d\x68\x3b\x89\x5c\xe5\x1f\x60\xb1\xed\xdf\x61\x47\xc9\xe5\x0e\xeb\x2d\xe9\x44\xfd\x31\x56\xb9\x1d\xab\x6c\xb2\x0a\x40\x3e\xe5\x9f\xa4\x5c\x8a\xe9\x12\x87\x32\x32\xfe\x50\x85\x23\xd7\x7e\x6c\xc7\x1f\x37\x56\x67\x0e\xa3\x8c\x38\x76\x7f\x86\xa1\x4d\x88\x71\x69\x16\x03\x36\x37\x46\x19\x8f\x51\xc6\x63\x94\xf1\xbf\x57\x94\x71\x97\x9b\x08\x3a\x3b\x0d\x49\x6d\x86\x2a\xf3\x1a\xfd\xb1\x37\x13\xab\xf5\xbc\xc6\x12\xf5\xfa\x8f\xd2\x33\xe2\x75\x50\xd8\xb7\x31\x2f\xab\xd9\x77\x0a\x9a\x5a\x91\x48\x66\x19\xcb\x53\x4d\xd6\xc5\x8a\x18\x89\xc6\x76\x07\xda\xab\xba\x7c\xa3\x61\xd1\x29\xb9\xd6\x0b\x64\x22\xa2\x69\x5e\xc0\xbd\xad\x56\xe4\x5b\x4a\xc0\x8c\x87\x4b\x9a\x12\xf2\xb5\x54\xeb\x46\x81\xfc\x56\x43\x2c\xe8\x25\xdf\x68\x04\x10\x30\xe4\x94\xcd\x2e\x4c\x41\xfe\x09\xc9\x59\x4a\x33\x8d\xa4\x44\x16\x8a\x50\xbd\x5c\xdb\x6b\x00\x1f\xd1\xa2\x12\xb4\x23\xe7\xe1\x1e\xe8\x04\xd6\x60\xce\xcb\x05\x3c\x17\x2b\x6c\xfd\x83\xfd\x05\xa0\x31\xc9\x96\x35\x21\xb1\xa6\xa1\x51\x89\x60\x2b\x58\x9c\x21\xbc\x47\x24\xcd\xd8\x92\x3f\xb2\x18\xe5\xfb\x7f\xfe\xfd\x1f\x97\x52\xfd\xf3\xef\xff\x98\x92\xd3\x24\x31\x95\xe6\xdc\xb1\xfd\xe3\x9a\xbc\x5b\x8a\xe8\x54\x36\xbb\xa1\x8a\xe7\xe0\x4a\xc5\x24\x36\xb3\x11\x25\x71\xcc\x29\x39\x05\x56\xd6\xae\xf1\x63\x60\x0b\xa8\x49\x85\x45\x4f\xdb\xdc\x1c\xb7\xac\x01\x04\x9b\xd1\x7f\x98\xdd\x60\x07\xab\x60\x83\x2e\x84\x2a\xc0\xde\xbf\x44\x3d\x01\xcc\x5a\x2e\xd1\x9f\x25\xdc\xab\xc6\x21\xba\x05\xd5\xa1\x7e\x25\xc7\xc9\x59\x0c\x8e\x52\xbb\x2a\xe7\x4e\x3a\x72\xcd\xd1\xd9\x40\x0d\x70\x73\xc2\xb5\xec\xd0\xae\x6a\x39\x93\x44\x53\x42\xe5\xbb\xc5\x03\x81\x41\x5c\xc7\x5e\x47\x42\x64\x60\x67\x77\x07\x97\xcd\x97\x81\x83\x09\x22\x53\xf4\x85\x9b\xd4\xd6\x50\x37\x8d\xea\x53\x6b\x13\x6e\x86\x62\x8f\x9a\x81\xe5\x40\x1d\xa0\x4f\x51\xad\xff\x95\xcd\xce\xee\x33\xe4\x02\x8f\x7b\xae\x51\x88\x65\x1b\x7c\x81\x50\xf5\xc2\x71\x14\x94\xa9\xe9\xb6\x3f\x47\xb8\x48\x40\x03\x64\x79\x59\x59\x00\xce\x52\xb3\x3f\x48\x9f\x05\x44\x6e\xc1\xa6\x7b\x50\x7d\x01\x4a\x28\x6a\xf5\x05\x85\xb1\xd8\x06\x31\xe4\x74\x83\x57\xc0\x64\x62\x42\x72\xf2\x10\x93\x89\xe3\x1e\x32\x38\x96\x95\xeb\x25\x8b\x1d\x2e\xb6\xec\x99\x5e\xee\x68\x18\x28\x4c\x7f\x36\xbd\x2e\xa4\x7e\xdf\xc8\xac\x2e\x39\x6b\x69\xcd\xb4\x06\xdb\x13\x22\x7c\x93\x26\xbc\x6a\x4c\xc7\x88\x8b\x64\x09\xdf\x70\x93\x7e\x8a\x2b\xd5\xec\x4d\xc3\xa4\x7b\xcc\xb2\x41\x56\x05\x13\xee\xc0\xb7\x4a\x4b\xa1\x78\x47\x6b\x5b\xe9\xf1\x98\x05\xb6\x7f\x88\xcd\xf8\x9f\xbf\x38\x6c\x03\xc0\xee\xb1\xc7\xf2\xb2\x17\x00\x5a\x1d\xb3\xbb\x07\x97\x59\xcd\x13\x59\x9d\x62\x6d\x98\xe6\x59\x76\x8f\x19\xdc\x67\x7d\x17\x18\xe5\x03\xb2\xff\xbe\x88\x4c\xa1\x60\x04\x74\x20\xac\x6e\x63\x80\x27\x94\x60\x1c\x64\xc0\x0a\x74\xfb\xae\x3e\x75\x9f\x35\x53\x79\x98\xe6\x69\x39\x1d\xea\xa3\xe6\xa1\x66\x7c\xd5\xc7\x72\x37\x38\xc2\xaa\x77\x91\x9f\xe4\x95\x54\xad\x07\x71\xea\x24\xaf\x56\x90\x03\xda\x92\x96\x1d\x51\x57\x7c\xcb\x84\xa9\x7f\xd1\x9d\xbe\x12\x16\x10\x9d\x79\x07\xfa\xf9\x3a\xea\xf5\x57\x1f\x21\xd5\xe5\x7e\x67\x82\x2f\x58\xfb\x51\x43\xae\xb2\x3b\xd6\x8f\xf4\x70\x0e\x7d\x8e\xbf\x38\x58\xcc\x03\x4d\xe3\xaa\x4f\x13\x18\xd8\x41\xae\x1b\x1a\xf0\xcc\x10\x70\x90\x1b\xae\x65\x6a\x59\xf6\x0d\xb4\xdd\xc2\x72\xb2\xa6\x5b\x66\x5b\xd1\xf1\x25\x60\x57\xda\x3f\x2c\x58\xea\x6c\x95\x01\xc2\x95\x35\xaf\xe1\x72\xe7\x66\x74\x23\x2c\x19\x5a\xad\x35\x8f\x1e\xa8\x4b\xe4\x61\x0a\xeb\x13\xdc\x9e\xcd\x6d\x85\x9c\x77\xe7\xf3\x60\xf9\x15\xfc\x0c\x39\xd5\xee\xce\x71\xf8\x19\xd8\x3f\xae\xfe\xf0\x90\x48\x83\x21\xbd\xe4\xf0\xf3\x94\x8e\x72\xf6\x33\x14\x21\xf7\x97\x1b\x2f\xab\x97\x7a\xd0\x72\x98\xa0\x60\x30\x93\xdc\x30\x87\xb9\x20\x15\xd6\xba\x43\x5e\x2c\x54\xc2\xb4\x18\x8c\x9a\x94\x99\xab\x7b\xcc\x52\x20\xea\x44\x95\x61\x67\x16\xea\xf3\x18\x00\xcf\xdd\x41\x79\x63\xfb\xd8\x4a\x9f\xdc\xc0\x86\xb0\x95\x35\xa8\xc2\xc6\xa0\xf4\xdc\xd1\x2f\x5e\xf4\xa0\xa1\xcc\x14\x8e\x80\xd2\xa4\xdb\xd1\x35\x67\x24\xa3\x62\xc5\xf2\x63\x6b\x8f\x83\xe2\x55\x9d\x35\x93\xf0\xc3\x5d\xbd\xdc\x5c\x1d\xf0\x6c\x20\x94\x73\x0b\x01\x63\xdc\x32\xd3\xf4\xc8\x38\x4b\x3c\x03\x14\x6e\x86\x52\xb0\x5e\x0a\x80\x8f\xee\x45\xc1\x7a\xf6\x5e\x91\xb7\x06\x05\xbb\x43\x1a\x76\x67\xa8\xd8\x1d\xd2\xb1\x3b\x4d\xc9\x3a\x65\x9e\x91\x96\xc1\x67\x10\x2d\xcb\x9f\xa0\x00\xf7\xeb\xbd\x9d\x26\xbc\xea\xe3\xd5\x7b\xc9\xf3\x9c\x31\x6b\xfb\x02\x52\x46\x37\x69\xc2\x48\xbe\x13\x8a\x3e\xfa\x0a\xe7\xb8\x9f\xbb\xbb\x4e\xb5\xd9\xc8\x90\x21\xb5\xb8\x7b\xec\xb2\xab\x7e\xad\x07\x7d\x4b\x1b\xb6\x8d\x86\x61\x6e\x8d\x3d\x3d\x40\x30\x41\xf4\xd6\x1b\xd0\xc3\x15\x10\x3c\x0e\x37\xe9\xd1\x55\x59\x22\x1f\x5e\x1c\xd5\x97\xec\x00\x1b\xa1\x6a\x3a\x7d\x59\xff\x69\x0f\x1c\xd0\xce\x05\xf6\xcb\xdb\x35\x23\xea\x41\x02\xae\x41\x25\x09\xfb\x9b\xe9\x06\xbd\x50\xc9\xae\xaa\x35\xd7\x73\x76\x57\xc2\xee\xde\x86\xd9\x54\x76\x55\xe6\x68\xaf\xb8\x1b\x09\x21\x6e\xe6\xf9\x7e\x9e\xf0\xb0\x96\x89\x39\xa4\x13\x38\xa2\xbb\xbb\x8a\x21\xff\x0e\xa8\xcb\xaf\xd6\x34\x7f\xbe\xd9\xbd\x87\xf8\xb7\x17\x40\x77\x0c\x91\xef\xbb\xce\xa6\x74\xa2\x35\x34\x60\x4f\x78\x58\x1f\x46\x27\x54\xf1\xf9\xb1\x9e\x77\x20\xbe\xc1\x78\xb1\x84\x9a\x54\x40\xa5\xd1\x59\xb4\x60\x09\xf9\xe7\xdf\xff\xdb\x2e\x14\xac\xa3\x66\x43\x83\xd1\x02\x37\x1c\xdc\x6f\x7b\x4b\x7a\x0d\xa1\xea\xa9\xd5\xa7\x7b\xb7\xe5\x86\xba\x37\xd3\x6f\x70\xb8\x2d\x33\x26\x50\x94\x32\x96\x82\x04\xc8\xaa\xa9\xe8\x08\x7e\xe0\x72\x1f\xfd\x4b\x17\x52\x4c\x4c\x28\x89\x71\x72\x91\x87\x35\xcb\x98\xb1\x89\x2c\x65\xb6\x61\x4d\x1b\x84\x19\x7d\x80\x2d\xae\x0d\x18\xa7\x6e\xc2\x47\x50\xe0\xeb\x11\x6f\x7b\xc8\x5d\xf5\xa0\xb7\x9f\x4f\xfe\x6a\x90\xe4\xee\x31\x3d\x96\x4c\x4a\x52\x19\xdb\xec\x18\xf4\x6b\x94\xe4\x79\x40\x78\x5e\x19\xa0\xd7\x89\x6d\x83\xc3\xc1\x5d\x2f\x7b\xf8\xd3\x4e\x15\xf9\x70\x70\x93\xa7\x80\xbc\x7f\xc8\x90\x01\xd9\x03\xf6\x41\xd0\x26\x4e\x48\xe4\xc3\x5a\xe6\xb6\xbf\x7c\x69\x89\x84\x7e\xd2\x7d\x63\x0c\x11\xec\xc8\x5e\xf1\xeb\x03\xa5\x24\x32\x54\x52\x22\xed\xfb\xd5\x2b\x2b\xfd\xe7\x9e\x74\x4d\x4f\xaa\x2c\x6e\x48\xf5\xcb\xca\x90\x64\xd6\x5b\x53\x85\x38\xde\x85\xb6\xd3\xa0\xd2\x43\x4c\xb9\x46\xb6\xd3\xdf\xf7\x0f\x7a\x7a\x79\x7e\xe8\x2d\xa4\x59\xff\xec\x67\xcd\xea\x8e\x29\xed\x7f\x66\xad\x94\xaf\x24\x36\x7e\xea\xc9\x34\xb7\xb7\xf3\xca\x89\x14\xf4\xac\x69\xf4\xd0\x8f\x86\x97\x5e\x06\xfb\x7d\x90\x53\x6d\xc3\xd4\x5a\xc6\x7b\xf0\x9e\xb7\xf8\xc2\xc7\xe5\x39\xb8\x65\xb8\x1c\x66\xdf\x4e\xf4\x86\x1e\x13\xeb\xc9\xb2\xde\x4a\x3e\x96\x2a\xb1\x18\x47\xb1\xab\x7d\xce\xa6\xab\x29\xf9\xf6\xe2\xf6\x88\xcc\xdf\xdd\x1e\x11\xa6\xa2\xe9\x0b\xf2\xb6\x48\x14\x4f\xfb\x2c\x74\x06\x44\x80\xb5\x57\xd7\x87\x5a\x88\x58\x41\xaa\xc6\x2f\xcb\xe2\x9a\x52\xb5\xde\xe3\x1c\x0f\xe7\xfa\xf9\x4f\x71\x8c\x7d\x27\xd8\xef\x61\x70\x4f\x10\x96\x39\x2d\x8f\x0a\xb7\x69\xcf\x62\xe8\x61\x10\xc2\xa6\xab\x13\x32\x21\xec\x91\x46\xea\x84\x1c\x2f\xa5\x24\x13\x13\xb7\x70\x42\x8e\x17\x34\x23\x97\x57\xb7\x17\x27\x18\x13\xc1\x84\xca\x76\x64\xd3\xc7\x5c\xae\x2e\xdf\xfc\xc1\xd0\xb1\x1d\x61\x1c\x54\x07\x4a\xee\x0e\x60\x12\xb4\x7f\xe8\x3f\x71\x16\x2b\xa7\x4f\xb5\x20\xdc\x3d\xee\x96\x26\x3c\xa6\xa5\x9a\x0a\x51\xaf\x58\x5e\x59\xf9\xea\x29\x57\x9f\x21\x38\xd7\x08\xce\xbd\xbd\x9d\x6b\x08\x97\xe4\x18\xd0\x01\x00\xaf\x01\xed\x04\x31\xf4\x90\xdb\x99\x82\x90\xad\x05\xb3\x80\x30\x1a\xb0\x16\xc1\x4f\x2c\xd8\xef\x8a\x97\x2f\x3f\x8f\xf4\xc0\xf0\x2f\x76\x62\xb2\xe6\x07\x29\x6c\x88\x6a\xb0\x2a\x18\x4e\x13\x8c\xac\x3c\xc2\x6a\xe8\x89\x81\xf7\x07\xcd\x80\x63\xf4\xc4\x99\xef\x91\x78\x88\x00\xf8\xb8\x42\x90\xd9\xfa\xc7\x1c\x74\x68\x66\xe0\x00\x82\xd4\x3f\x14\x8f\x36\x03\x79\xe6\xec\xec\xed\x7c\xa8\xef\x12\x88\x51\x78\xed\x2e\x95\x72\x4a\x62\xeb\xd5\x9a\x4c\x0f\x2c\xec\x0d\x53\x1a\xf9\xcc\x34\x34\xe8\x50\xe4\x30\x68\x14\xf8\xd7\xa2\x66\x62\x5d\xd6\x2d\xab\x65\x69\xf5\xd2\xdf\xa3\xe7\xe9\xd2\x25\xc1\x13\xa4\x1f\xda\xbe\xee\x70\x06\x0d\xc2\xc4\xa8\x3b\xc3\xb9\xd5\x42\x54\x4b\x26\x52\xb8\x50\x02\xa0\x44\xd8\x60\x60\xb6\x74\x4a\x6e\xf7\xb3\x88\x5b\x0d\x60\x0c\x14\x85\xb8\x29\x68\xde\xe0\xc2\xca\xd8\xdd\xc1\xa8\xae\x58\xb4\x16\x3c\x6a\x57\xdf\xa8\x7f\x40\xa9\x47\xc3\x15\xdf\xa4\x32\xc7\x28\x11\x28\xaf\xc0\x32\xc1\x92\xc3\x9c\xf0\x54\x61\x92\xc1\x92\x67\xec\x81\x26\x49\xcf\x52\x91\x5a\x18\x93\x42\x91\xa3\xcb\x9f\x89\xa5\xc4\x10\x56\x13\x3f\xd2\x7f\x35\x7a\xad\xcf\xf0\xd8\x87\x1f\x86\x1e\x66\x4a\x20\x0a\x82\x3d\x82\xc9\xb5\xcf\x78\x8b\x67\x20\x97\xe4\x2b\x0c\x3c\x84\x1d\xc2\x58\x17\xd1\x5a\x92\x6b\x64\xda\xa6\x3e\x7a\xca\xc5\x2a\xef\xb6\xde\x0e\xda\xef\x00\x62\x90\xfa\x23\xc0\x03\x00\x99\xcd\x6d\x24\xf8\x07\x87\x34\xd4\x54\x33\x94\xc7\x5d\x28\xcf\xad\x4d\x37\x08\x85\x01\x10\x08\xc4\xf2\x06\x36\xf7\xd6\x3c\xed\xc4\x9a\x95\x35\x5b\x20\x44\x39\xdb\x54\x05\xf3\x7d\x71\xd5\xf5\xcd\x7d\x10\xd1\x80\xb0\x69\x2c\x55\xde\x5d\xbf\x73\x68\x55\x99\xea\x33\x94\x2d\xd5\x9b\x1c\x54\xeb\x31\x31\xe8\x68\x6f\xbe\x67\x3b\x83\xda\x29\xe5\xa6\x66\x4c\xf7\xf4\x5a\xad\x25\xec\x51\x65\xb4\x06\x53\xba\x90\x85\x1a\xc0\x48\x3e\x96\xe6\x28\xa4\xd2\xb7\x6f\x18\x66\x5c\xe2\xc3\x3d\xbe\x68\x78\xa4\x3b\x26\x64\x64\x18\x23\xc3\xf8\xf7\x66\x18\x42\x2a\x2b\x56\x05\xc1\xd2\xed\x2f\x1e\xe8\x29\x1e\xe6\x23\x6e\x85\x32\x59\x91\xaf\x27\x9a\xc9\x3c\x16\x06\x58\xcf\x3d\x1e\xe0\x94\x7e\x9a\x3b\x3a\xfd\xa5\x02\xf7\xee\xc0\x85\xed\x47\xe4\xfd\x2d\xb3\x2c\x64\x02\xb8\x92\x80\x85\xc9\x14\xb0\x9e\x67\x5d\xa1\x39\x26\xae\xcc\x9c\xf3\x05\xc4\xbf\x5f\x43\xf2\x86\x4d\x45\xc0\xd8\x99\xe7\x0b\x16\xd1\x22\x37\xd1\x1c\x3d\x81\xc1\xe5\x12\x23\x96\xc1\x18\x65\x44\xc8\x0b\x74\x27\xbe\x35\x39\x09\xb5\xf8\x96\x3e\x16\x8b\x81\x2f\x27\x6e\xec\xc6\x91\x1b\xb9\x81\x7f\x80\xa6\x52\xfb\x6b\xfb\xba\xfa\xfb\xe6\xec\x16\x7f\x0d\x4f\x63\x46\x7c\xc3\x15\xb3\xe1\x21\x54\x58\x04\xb1\x2e\x05\x08\x92\x21\xaf\x26\x9f\x7d\xf9\x65\x87\x8f\xed\xd3\xa1\x3d\xba\x11\x87\x71\xe3\x1b\x0c\x44\x1a\x96\x2a\xd1\xd1\x8a\xce\xce\x3a\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\xfe\x1d\x8f\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x84\x76\x32\xd2\xb2\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xda\x9f\x31\x4b\x62\xcc\x92\x28\x3f\x63\x96\xc4\x98\x25\xf1\xe9\xb3\x24\x3a\xaa\xd1\x6a\x1d\x03\xeb\x9d\xf9\x7e\x1b\xd2\x2b\xcf\x8b\xe5\xa6\x3a\xde\x13\xca\x1c\x9a\x37\xc7\x3a\x87\x63\x9d\xc3\xb1\xce\xe1\x58\xe7\x30\x4c\x1a\xc7\x3a\x87\xa3\x07\x7f\xf4\xe0\x8f\x1e\xfc\xd1\x83\x3f\x7a\xf0\x47\x0f\x7e\xf5\x19\x3d\xf8\xce\x67\xf4\xe0\x8f\x1e\x7c\xf3\x19\x3d\xf8\xa3\x07\x7f\xf4\xe0\x8f\x1e\xfc\x91\x96\x8d\x1e\xfc\xd1\x83\x3f\x7a\xf0\x47\x0f\x7e\xfb\x33\x7a\xf0\x9b\x9f\xd1\x83\x3f\x7a\xf0\x9b\x9f\xd1\x83\x3f\x7a\xf0\xcb\xcf\xe8\xc1\x1f\x3d\xf8\x63\x9d\xc3\xb1\xce\xe1\x58\xe7\x70\xac\x73\x38\xd6\x39\x24\x63\x9d\xc3\x81\x33\x8c\x75\x0e\xc7\x3a\x87\x63\x9d\xc3\xb1\x6c\xd5\x58\xb6\x6a\xac\x73\x38\xd6\x39\x1c\xeb\x1c\x86\xd7\x3f\xd6\x39\x1c\x19\xc6\xc8\x30\xc6\x3a\x87\x63\x9d\xc3\xda\x67\xac\x73\x38\xd6\x39\x6c\x7c\xc6\x3a\x87\x61\x05\x72\xac\x73\x38\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x74\xec\x78\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x22\xb4\x93\x91\x96\x8d\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\xd1\xfe\x8c\x59\x12\x63\x96\x44\xf9\x19\xb3\x24\xc6\x2c\x89\xff\xc4\x3a\x87\x50\xbc\xb0\xaf\xca\xe1\x95\x7e\xa8\x03\x87\xab\xc8\x68\x65\xeb\x21\x06\x04\x5f\x8c\x05\xc1\x0a\x73\x20\xe2\xeb\x41\xc1\x26\x1e\x4f\x51\xea\x2f\x6d\x16\x6b\xbe\xd2\x22\xd4\xdd\x01\x8c\x77\x77\x00\x87\x6d\x9e\xf5\x0d\x4d\x97\x9a\xfd\x2b\x20\x2f\x30\x40\x22\x1f\x58\x86\xab\xc1\xd8\x1a\x67\x71\x39\x91\x1b\xae\x14\x8b\x8f\xb4\xf6\x8a\x61\xd9\xbe\x41\x23\x29\x72\x8e\xe5\x1d\x51\x3b\xbd\x3b\xe0\x62\xc9\x05\x57\xec\xee\x80\x4c\x08\x44\x74\x38\xdb\xb1\xea\x80\x59\x27\x49\x68\xae\xa6\xa4\xdc\x99\x17\x24\x7a\xad\x3c\x66\x42\xf1\x88\x26\x66\x81\xcd\x71\xb8\x20\x34\x49\xd7\x54\x14\x1b\x96\x39\xcf\x41\x65\x45\xdf\xa8\xc6\x85\x66\x14\x29\x74\x5b\x7a\x8d\x80\x88\x1b\xa2\xd8\x2c\xda\x3a\x6e\x07\xd1\x6b\x28\x85\xb7\xae\x82\x81\x88\xe2\xa8\x19\x45\x6e\x24\x26\x1e\xdd\xe3\xff\xc9\xc2\x8b\xff\x7a\xc9\x0d\x81\xd1\x01\xae\x89\x21\x76\xc0\xa2\xa4\xb1\x6f\x74\x88\xbd\xd5\x3a\x72\xb2\x94\x49\x22\x1f\x20\x20\xd0\xe8\x3e\xa5\x36\x80\x64\xe9\x77\x28\x1a\xe3\x6d\x7f\x9f\x70\xc5\x32\x9a\xe8\x6f\x7c\x23\xdf\xdd\x91\x09\xc6\xd0\x6b\x44\xd9\xa4\x34\xe3\xb9\x14\x47\x04\x12\x69\xac\x4c\x6b\x87\x5c\x4a\x49\x16\x34\x03\x39\xbb\x9c\xee\x57\x7b\x4e\x57\xcd\xa7\x25\x72\xf6\xe7\x82\x26\xbf\xc5\xb0\x2f\x4b\x67\xf9\xd2\x10\x58\x9e\xc3\x33\xd6\x66\x54\x4e\xe9\xbf\x97\x3f\xc1\x3a\x68\x15\xac\xb0\xa8\xfe\x19\xe1\x3f\xa7\xd3\x29\xf9\x9b\xb3\x02\x95\x15\xcc\x46\x6f\x97\x01\x50\x38\xc7\xef\x89\x3f\xe0\xd2\x18\xcb\x7a\xa6\xaa\xd6\xaa\x37\xc0\xc5\x80\xc5\xf9\x26\xdb\x73\xbd\x30\x59\xd7\x02\xfd\x47\xe2\xac\x59\xeb\x53\x30\xde\x7b\x2d\xdd\xbc\xa8\xa6\xbe\x2d\x67\xa6\xaa\x3a\x1d\xe7\x64\x7e\x05\x48\xea\xa5\xf9\x66\x88\x52\xb1\x96\x4b\x78\x16\x34\x2b\xf8\x6f\xf1\xf2\xe5\x67\xaf\xf1\xff\xf1\x97\xf2\x9d\x9b\xb5\xcc\xd4\x24\xe2\x59\x54\x70\x05\x7c\xd3\xbc\xe4\x9b\xe8\xaf\x7f\xed\x7c\x1b\x2c\x70\xea\x39\x3e\xf3\xa2\x7c\x28\xa5\x19\x13\x58\x6b\x75\x95\xc9\x22\xd5\xc2\xc2\xdd\x9d\xa2\x49\xf2\xdc\x6b\x49\x35\xc5\x3f\xd1\x37\x5e\xd2\x0b\x3b\x9a\xc5\x61\x9a\x24\x8e\x82\x04\x17\xf4\x0d\xe2\x03\x4a\x00\x7e\xe6\x4e\xf5\xd5\x46\x3a\x63\xc3\x87\x5c\x92\x99\x1f\x91\xc9\x11\x79\x0f\x70\x38\x9e\x92\x1b\xb8\x72\xc4\x5c\xb9\xe0\xa0\x1b\x99\x31\x92\x6a\xd9\x28\xcf\xf9\x96\x91\x05\x06\xbe\xee\xac\x62\x6e\x4c\x26\x84\xe5\x11\x4d\x19\x89\xd6\x34\xa3\x91\x62\x99\x59\xf6\x05\xc6\x0f\x7a\x2f\xc3\x73\x20\xfc\x1b\x1a\xb3\x49\x91\x22\x5a\xe4\x2f\x4a\x72\x04\xd9\x16\x86\x74\x3c\xb0\x85\x16\xbe\x98\x21\x1e\xee\x89\xc7\x2c\x4d\xe4\x6e\xc3\x84\x97\x9c\x9a\xf7\xd3\x4c\xc6\x16\x49\x61\x5c\x7d\xa7\x80\x26\x65\x52\x68\x05\xdd\x41\x75\xad\xd3\xe2\x17\x7f\xd3\x8f\x57\xe3\x93\x5f\xfd\x2e\x74\x03\x62\xb6\xb5\xc3\xff\x8a\x34\x6e\x81\x8f\x94\x75\x49\x54\x75\x55\xb6\xc3\xd1\xd2\xa1\xc7\x76\x4b\xdd\x4b\x0c\xaa\xaa\xd8\x82\x6f\x5b\x96\x63\x21\x8e\x1a\x71\x18\xcb\x18\x4b\x61\x17\x69\x25\x5d\x9f\xc3\xa4\x6b\x8f\x60\x2e\x1b\xc0\x53\xc1\xaa\xc6\x45\xcc\x23\x90\xcb\x1f\xd6\x90\xc5\x87\xdc\xcb\xb0\x44\x27\x9e\xc0\xd4\x39\xf6\xd2\x29\x7d\xef\xa4\x29\x74\x7c\x64\xfe\xd2\x32\xf5\x94\x60\xf4\x0e\x70\x93\xc7\x54\x0b\x29\x2a\xd9\x39\x22\xf5\x73\x28\xd2\xec\x0d\xcb\x72\xe8\xa8\x20\x51\xc6\x4c\xd0\x70\x6e\x6e\xb7\xcc\x88\xe0\xc9\x8b\x23\x1b\xf8\x1b\xb3\x25\x2d\x12\x95\x13\xdc\x96\x06\x5d\x16\x07\x44\x6a\x25\xc9\x83\xa6\x95\x33\x53\x4a\x5b\x2f\xe2\xc2\xfc\x53\xdf\x47\x43\x39\xcb\x5a\xc5\x10\xa9\x82\xe6\x48\x33\x8d\x6f\x54\x9e\xe3\xed\x9a\x90\x3f\x1a\xb9\x48\x2f\xc5\xce\xf1\xa7\x23\xc3\x1c\xb4\x94\x09\x26\x2f\x3b\x25\xd6\x93\x7e\xce\x45\x94\x14\xc1\x15\xaf\x19\x89\xa8\x96\x3c\x61\x80\x6a\x18\x82\xec\x59\xc8\x72\x33\x30\xdc\x0b\xcf\x4a\x2e\x82\x75\xaa\x9b\x6b\xab\x2d\x4c\x93\xa4\xe6\xf0\xe1\x7d\x7a\xd1\xa3\xb9\x86\xd6\x84\xa0\x7f\x79\x4e\x03\x6b\x9c\xfb\xe9\x82\x40\xd4\xaa\xcb\xfa\x19\xa3\xfa\x1e\x45\xf7\x84\xae\x28\x17\x47\x06\x1b\xd0\x68\x97\x3c\xd0\x5d\x6e\x42\x33\xbd\x58\x6c\xfd\x6c\xe8\x60\x3b\x22\x82\x6d\x59\x56\xc3\x37\xaf\x39\x6d\x60\x19\xf4\x0a\x0a\x84\x01\xd3\x28\x4d\xd1\xa9\xcc\x73\xbe\x48\xec\xc4\x55\x04\x81\x7e\xe1\x26\x65\x91\x5f\xdf\xc3\xbd\x85\x63\x2a\xba\x35\xcb\xa0\xd2\xe6\xd7\xf5\xda\xdf\x02\xcf\x88\x5d\x4f\x51\xae\x64\x46\x57\xcc\x7e\x95\x2b\xaa\x0a\x04\x0c\x1a\x4c\x59\x7c\xe9\x98\xb2\xee\xb9\x88\x35\x1d\xb2\x20\x4d\x93\x22\xa3\x49\xf5\x4d\x24\x05\xfa\x2e\xf2\x13\xf2\xc7\x3f\xe9\x6f\xf4\xf8\x2c\x36\x69\x47\xe6\xdb\xc9\x64\x62\xfe\xef\xa7\x9f\xf8\x92\xb0\x3f\x93\xe9\xf5\xd7\xa7\x67\x67\x52\x2c\xf9\x8a\xdc\x1d\x64\x0b\x1a\xdd\x1d\xfc\xed\x6f\x77\xe2\x19\x99\xc1\x15\x63\x84\x92\x28\x29\x72\xc5\xb2\x4c\x26\xac\x2c\x19\x7e\x5f\x2c\x58\x65\x43\xcd\x72\x90\xb9\xa5\x60\x42\x1d\xe9\x97\xa1\xe8\x38\x17\xe0\x8e\x34\xce\x94\x08\xed\xae\xad\x17\x0d\xfd\xae\x8c\x80\xb8\xd5\x33\x9c\xf4\x5a\x26\xec\x4e\xd0\x94\xdb\x74\x2b\xa2\xd7\x38\xa5\x85\x5a\xcb\x8c\xff\x05\x9d\x1f\xf7\x5f\xe5\x53\x2e\x8f\xb7\xaf\xee\x44\x2d\x73\x49\x33\xbd\x93\xd0\xc4\x77\x02\x2e\x0c\x3c\xf8\x8c\x5c\xca\x18\xa5\x19\xf2\x60\x7c\x1c\x4a\x92\x8d\x14\x1c\x7c\xf9\x32\x23\x31\x4b\x18\xc0\x17\xb0\x67\x42\x68\xca\xbf\xd5\x52\x96\x86\xac\x3e\x84\x3f\xe1\xb9\x64\xcc\x98\xac\x4b\x14\x9f\x10\xa1\xc7\xc6\x3f\xb7\x2c\x5b\xb8\x3f\x3d\xb8\x4e\xd9\x09\x98\xde\xaa\xbf\x56\x18\x3b\xf7\x8c\xcc\x6d\x3a\xff\x9f\x0b\x96\x71\x23\x56\x95\x59\xd6\xec\x91\xe7\x8a\x89\x88\xed\xbf\xb2\x54\xc6\x81\x85\x95\x73\xcf\xe6\xa7\x6f\xab\x77\x4d\xf0\xa6\xe0\x29\x34\x26\x88\x35\x89\x15\xb8\x41\x13\x34\x9a\x30\x65\xec\x38\xcd\x95\x44\x59\x3c\x4d\x33\xa9\xef\x04\x1e\xc9\x54\x66\xab\xce\xe5\xf1\x34\x95\x32\x09\xac\xd0\xc2\xea\xc3\xa7\x59\x24\x32\xba\xa7\x4b\xb0\x24\x38\x76\x01\x3d\x3f\xdd\xc0\x8f\x8d\xef\xd6\x54\xc4\x49\xe8\x48\x57\x4c\x85\x0e\x14\x18\x33\xab\xfe\x2e\xd2\xb8\xf6\x37\x42\x0f\xe1\xde\xba\x27\x1b\x2a\xe8\x8a\xe5\x64\x2d\x73\xe5\x78\x2c\x3e\x0a\x04\x6a\x63\x7e\xd2\x6d\x5d\x32\x16\x83\xc0\xa1\x39\x96\x92\xe6\x59\x4b\x62\x9c\xc4\xb6\x8f\xb5\x35\xcf\xc8\x03\x36\x18\xde\xd2\x33\xf2\x7d\xb1\x60\x67\xd5\xc1\x20\xf1\x2c\xb2\x52\xe4\x42\xa9\x83\x2b\x3d\x62\x4e\xb8\x82\x0c\x8a\x25\x5f\x7d\x9c\xfd\x68\xbc\x70\xd0\x22\x72\x67\xf7\xee\xec\x19\xf2\x79\xbd\x0e\xf9\x20\x9c\xb5\xb4\xb6\xfd\xcc\x6c\x9b\x50\x2b\xb9\x69\xc1\x43\x68\x3d\x1c\x68\x4c\x1e\x82\xcf\x33\x7b\x8c\xc8\xc4\x42\x98\xf0\x0c\xc9\x1d\x10\xad\x68\x5d\x8b\x9b\x29\x29\x21\x30\xa7\x16\x07\xf8\x9a\x0b\x14\xf6\x3e\x11\x23\x90\x09\xbb\x66\x18\x83\x62\xcf\xa7\x63\x7c\xfd\x98\x87\x49\xf5\x4e\x93\x17\x20\x10\xe8\xa3\x99\x98\x01\xea\xba\xd2\x80\x31\x9c\xe8\xff\x13\xa4\x11\xf9\x2e\x57\x6c\x63\x20\x67\xfe\xf3\xcc\xe4\x7a\xd8\x81\x8e\x15\xdb\xa4\xd0\x49\xe6\xd8\x8c\xac\x49\xf6\x04\x76\xb8\xa3\x9b\xa4\x9f\xdf\x3b\xaf\x91\x73\xca\x36\x52\xdc\xb0\x3e\x56\x0f\x0f\xff\x5c\xec\x5d\x4f\x56\x67\xe9\x5a\x03\x39\xbb\x9c\x69\x51\x69\xc5\x05\x11\x40\x79\x94\xd4\x18\x0f\x8c\xef\x08\xf9\xd6\x11\xb6\x55\x71\xa2\xb8\x9f\xce\x45\x1b\xdc\x1e\xfe\x2c\x07\xee\x24\x3b\x7b\x4d\xd8\x0a\x5a\x98\x58\x30\x07\x28\xc0\x3b\xa3\x41\xc7\x3c\x8f\xa4\x16\xd3\xad\xd2\x3c\x9b\xa3\xc1\x88\xc6\x5b\x96\x29\x9e\xb3\x8d\x1b\x1b\xd2\x29\x9f\x78\x46\xbd\xdd\xa5\x6b\x9a\x4f\xfd\x12\x0c\x39\x9b\x9d\x5f\x13\x5a\x28\x39\x89\x99\x62\xd8\x2f\x49\x0a\x40\x62\x1a\x6f\xcc\xf9\x54\x9c\x01\x09\x15\xd9\xd0\xf4\x09\x47\x82\x2f\xeb\x77\x3f\x1e\xd4\xe1\x60\x8f\x5d\x12\xd7\x04\xb3\x66\x6e\xa6\xad\x4e\x94\x30\x0a\x46\x2d\x2d\x58\x9a\x24\x86\x77\x82\x6e\x29\x4f\xa8\x56\x5e\x96\x09\x5d\x39\x80\x4a\x5d\x38\x3f\xb3\x6a\x3a\x88\xf0\x39\x46\x09\x46\x75\x36\xe3\x64\x80\x73\x14\xc0\xdc\xd4\xf7\xa9\x9f\x73\xfd\xd8\x24\xbf\x1a\xce\xdf\x97\x51\x6d\xb5\xcc\x11\x1e\xb8\x09\x02\x9f\xe1\x62\x65\xa9\x61\x27\xcc\xf0\xe9\xb4\xe6\x72\x19\x28\x04\x1b\x04\x5b\xec\x2c\x38\xf4\xc2\xad\xf6\x5a\xed\xff\x83\xef\x6b\xe3\x82\x3a\xb7\xc9\x9a\x94\xba\x05\xd0\xc6\x26\x5a\x84\x27\xb5\x81\x3c\x32\xb6\xe8\xf3\xb4\x35\x77\xe0\x9e\x83\x41\x25\xf6\x18\xed\x25\x27\x5b\x9a\x71\x59\xe4\xe4\xec\xfa\x1c\x6f\x3b\xe2\xd2\x47\x12\xb0\x30\xbd\x68\xc9\x12\xfe\x88\xe3\x3a\x70\x74\xbe\xad\x8b\x28\x20\x76\xaf\xd2\x94\x19\xa6\xe6\x0e\xb5\x58\xa5\xad\x81\xca\xef\xda\xc3\xd4\x94\x84\x90\xd4\x8e\x23\x7b\xb1\xb1\xf5\x73\xce\x5c\xc2\x1a\x7c\xc7\xfb\x74\x50\xda\x0c\x48\xd9\x41\xf5\x63\x0f\xf1\xfb\xa1\x7d\xf2\x45\xae\x4a\x59\x4e\xc4\xa5\x74\xa6\xe9\x08\x20\x81\x14\x5a\x54\xcb\x54\x91\x7e\x0a\x4d\xad\xf7\xe4\x07\xcb\xe4\x5d\x62\xf8\x5e\x34\xd2\x78\x60\x35\x9d\xfc\xa8\xfa\xfb\xb0\x63\xb9\x05\x43\x99\xf5\x5c\x48\x81\xba\x32\x44\x8d\xd8\x20\x03\xb8\x97\x45\xba\xca\x68\x6c\x82\x16\xb7\x9f\x4d\x5f\xa3\x6c\x12\x61\x87\xbf\x67\x64\xc1\x48\xc6\x36\x72\xcb\x62\xe3\x60\xb7\x2f\xc8\x4c\xef\x70\x99\xb1\x7c\x4d\xb8\xc8\x15\x4d\x92\x8f\xaa\x44\x75\x5c\xbf\xfa\x2d\xde\xe7\x00\xfd\x50\xa9\x01\xc4\x9c\xb1\x26\xa6\x4a\xea\x47\xf5\x89\xa2\x49\x82\x26\x89\x8c\x3e\xee\x26\x7f\x79\x66\x80\x8f\x71\x31\xe9\xa6\x46\x4d\x83\x86\x9e\xaf\xf5\x0e\x49\xb5\xff\x7a\x19\x13\xc0\x66\x90\x5c\x16\x3b\xb8\x67\x78\x40\x99\x2c\x34\x8d\x59\xad\x32\x1b\x88\xfc\x09\xcf\x22\x28\x37\x18\x96\x8b\xc8\x02\xd8\xb1\xe1\x2b\x43\x05\x6a\x62\x7f\x0c\x9a\x8b\x26\xd9\x53\x0f\xfa\x45\x54\x98\xc8\x93\x67\xe5\x3d\x03\x05\x58\x99\x8b\xa6\xe5\x39\xb8\x9b\x50\x07\xa0\xba\x66\xa4\xc8\xf5\x4f\x9a\xbe\x4f\x34\x56\x26\xb0\x08\x2f\x28\x68\x9a\xe6\x9d\x3b\xaf\x96\xd8\x71\x5e\x46\xcd\x1b\xae\x37\x85\x35\xea\x5e\x8d\xea\x53\xe8\xc6\x38\xf4\xfe\xfa\x30\xbe\x17\xd6\x81\x7f\xfa\x89\x89\xf8\x6f\x7f\xdb\x4b\x0b\x2e\x15\x60\xc8\x10\xda\x50\xc1\x97\x2c\x57\xf6\x7c\xf3\x96\x42\x6b\xfc\xd9\x2c\x3b\x22\x34\x27\x0f\x2c\x81\x97\x4d\x6c\x72\x25\xf6\xe5\xa6\x5b\x27\x08\x09\x56\x99\x91\x42\x3f\xcb\x28\x54\x78\xd4\xd0\x81\x87\xf4\x13\x2c\x43\x21\x1e\x3a\x8a\x3a\x22\xb9\x61\x95\xa5\xde\x5c\xea\xde\xf5\xd3\xd7\x68\x35\x48\x41\x0e\xc3\x8e\x18\xb7\xb7\x75\x38\x7c\x95\x4f\x68\x9a\x36\x8f\x2c\x65\x11\x3c\xd0\x88\x46\x82\x68\x81\x37\xee\xfb\xa1\x11\x88\x21\x77\x37\x2a\xa3\x8a\xad\x76\x27\xc6\x17\x31\x7d\x57\xfb\x5a\x1f\xe2\x4f\x3f\x11\x25\xff\x40\x37\x49\xf3\x47\xf2\x57\xc2\x45\xcc\x84\x22\x5f\xe0\x73\x2c\xc9\x99\xfe\x17\x29\x7d\x2f\xd7\x32\x49\xb8\x58\xbd\x73\x48\x6b\xe6\x7e\x55\xae\x72\x43\x1f\x1d\xbd\xec\x84\xbc\x72\xb0\x88\x10\x8b\x31\x76\x9b\xcd\xba\x68\x49\x7d\xcb\xe1\x4d\x13\xd0\xeb\xae\xa9\x88\xd6\x2c\x9b\xd8\x22\x2d\xd8\xb3\xb8\x52\xdc\x30\xc9\x26\x5a\xb3\xb8\x48\x58\x36\x85\x90\x89\x69\x95\x76\xa4\x6f\x73\x94\x71\x88\x4d\x9b\xa4\x32\xae\xa2\x4b\x63\xa4\x4b\xe0\x06\xfe\x7c\xfa\xea\xf3\xe9\x17\xe0\x20\x27\x76\x6a\x7f\x59\x34\xc4\xf9\x23\x42\x13\x29\x56\x18\xfb\x06\x48\x6c\xa6\x38\x8d\x63\x29\x72\xcc\xe1\x91\x09\x33\x04\x15\xd2\x58\x8e\xdc\x41\x36\x34\xbb\xb7\xbe\xb9\x18\xe3\x53\xed\x2a\x09\x8d\xe3\x09\x84\x61\x89\xbc\x00\x7d\xd8\xd8\x45\xdd\xf7\xd3\x8c\x4b\xe8\x3b\x6c\x76\x0e\x51\xae\xc2\x84\x33\x72\x95\x37\xdc\x0f\x19\x43\x67\x9a\x3b\x04\x5f\xea\x81\xc1\x03\x09\x56\x57\xb6\xe5\x91\xaa\xc5\x93\x0e\x87\xea\x09\x39\x34\x85\x54\x4b\x6c\x27\x90\x95\x10\xfb\x6a\x94\xd4\xc7\x91\xf9\x09\x49\xb8\x28\x1e\xed\x03\x3f\xfd\x64\x4a\xc4\xfc\xd7\xfd\x11\xf9\xaf\x2d\x39\xf9\x1d\x99\x5e\x3a\x23\x11\x8b\xb6\xe6\xe1\xff\xba\x27\x7f\xfb\xdb\x09\xb9\x3b\xd0\xff\xde\xea\x5f\x0f\x9c\xa1\x98\x88\x9d\x17\x34\xbf\x31\x2a\x7b\x3d\x05\xad\x3a\xad\xfa\x69\xbf\xa5\xf7\x8c\xe4\x45\x56\x27\x68\x00\x30\x0b\x1e\x08\xa9\x80\xb2\x06\x5a\xe8\x75\xe0\x37\x31\x69\x1e\x27\xe4\x52\xde\x98\x87\xab\x5f\x09\x91\xa9\x9e\x52\x66\x27\xe4\xa2\x66\x2b\xc6\x79\xb3\xfb\x4e\xfc\x40\x59\x82\x55\xe7\x5f\x9b\xf8\x9e\xed\x4e\x3c\x48\x39\x6c\x76\x77\xdd\x17\x8f\x2c\x2a\xd4\xa0\x65\xf7\xf9\x47\x0d\x52\xd5\xd8\xd5\xa5\x8f\xdc\xe2\x60\x25\x41\x31\x00\xe1\x82\x6f\xf8\x5f\x18\x89\xe5\x83\x50\x7c\xc3\x48\x8c\xb7\x83\x5a\x2a\xe5\x8a\xf6\xd6\xf5\xf8\x5b\xa2\x58\x92\xb8\xdc\x41\x49\x12\x4b\x28\xda\x0c\x05\xdc\xaa\x09\xec\x2b\x77\x07\x27\x50\xeb\x3d\x3f\x39\x3e\xae\x63\x6a\x2c\xa3\xfc\x38\x92\x22\x62\xa9\xca\x8f\x6d\xfd\x8b\xfc\x18\x0c\x0d\xa9\x8c\x8f\x9f\xd9\x28\x74\x2e\xc5\x44\x2e\xf5\xcd\xa8\xf0\xc1\xf9\xed\xdb\x8c\x46\x6c\xce\x32\x2e\xe3\x1b\x16\x49\x11\xe7\x27\xe4\x65\x8b\xe4\x55\x75\xa9\xd0\xf4\x64\x1f\xb0\x77\xff\x2c\xa1\x79\x8e\x00\xfc\xe9\x27\x32\x45\x59\x4e\x5f\x94\x79\xf3\x01\xf2\xd7\xd2\x3b\x71\x77\x80\xcc\x0b\xad\xd9\x16\xa7\xee\x0e\x9c\x3b\xa2\x05\xc8\x33\xcb\xb1\xdb\xb4\xaf\xe2\xe6\x56\xbb\xc8\xeb\x5a\x58\x43\xa6\x03\xc3\x24\x1e\xb0\x96\xac\xa7\xee\x78\x33\x65\x24\x48\xeb\x05\xc5\xb0\x0d\x5b\xf3\xaf\xad\x9d\x41\xf0\x0f\x5f\x92\x9d\x2c\x30\x0f\x8b\x26\x19\xa3\xf1\xce\x1d\xd4\x2c\x06\xec\xac\x45\xce\x02\x93\x4f\x0c\xab\x37\x4f\xc3\xcf\x2e\x96\xf3\x0d\x44\x1a\xfc\xf4\xd3\xf4\xec\x72\x36\xd3\x7f\xb8\x64\x07\x02\x66\x37\x54\x8b\x17\x7f\xbc\x3b\x38\x96\xa9\x3a\x8e\x04\x3f\x5e\x70\x71\xec\x4c\x07\x51\x69\x07\x13\x33\x45\x29\xc3\xe2\x87\x89\xed\x37\x99\xdc\xd4\xe2\x3a\xac\x15\xf6\x2d\x4d\xad\x00\xe9\x7e\x9e\x91\x53\x88\xff\xfd\xfe\xdd\xd7\x17\xd7\x97\x17\xb7\x17\x37\xef\x6f\x2e\xae\x7f\x98\x9d\x5d\xbc\xff\xee\xea\xe6\x16\x38\x80\xe7\xb7\xf9\xd5\xf5\xad\x09\xff\x96\x5b\x96\x65\x3c\x8e\x19\xd2\x0f\xf6\xf5\xfc\x1b\xb2\xb1\x1a\xbe\xfb\x41\xe0\x38\xe9\xbb\xd6\x5a\x3e\xb1\xe6\x98\xe6\x1b\x36\x4c\xad\x9d\xda\xcb\xc4\xb6\xb1\x15\x0b\x7c\x67\xb1\x97\x57\xe7\x17\xef\x2f\x4f\xdf\x5e\x34\xc7\x85\x98\x95\x16\xa4\xf0\x03\xb1\x29\x3e\x48\x95\x3f\xce\xa9\x5a\x9f\xc0\x4d\x9a\x6a\x8c\x87\x30\x72\xef\x52\xce\x4e\xdf\xcc\xce\xae\xde\x5f\x5e\xdc\xfe\x78\x75\xfd\xfd\xec\xf2\xdb\xf7\x5f\x9f\x9e\x7d\x7f\x71\x79\xbe\xcf\x7a\xca\xd3\xfb\x9e\xed\x42\xcb\xaa\x49\x98\x75\xd7\xa2\xfb\x01\x0a\x8e\x4f\xbd\xb7\x51\x8d\xce\x63\x5b\x99\x14\x1b\xf6\xd6\x97\x2f\x37\x21\x1b\xfd\x35\xee\xfc\x78\x4b\xb3\xe3\x84\x2f\x00\x3d\xad\xfd\xcd\x7f\xd8\xd5\xbd\x9d\x08\xa6\x26\x31\xcf\xba\xc6\xd5\x4f\xbb\x78\xef\x1f\x33\x12\x7c\xb2\xe0\xa2\x39\x58\xce\xa2\x02\x28\x94\x14\x8a\x3d\x36\xab\xa6\xa7\x19\xdf\xf2\x84\xad\xea\xc1\x3f\xc4\x47\x81\x6a\x2a\x87\xd6\x24\x16\x5c\xd0\xac\x96\xa9\x80\xee\x36\xfd\x5b\x43\xb3\x58\xf2\x04\x62\xff\x40\xb7\x10\xf5\x4b\x60\xb1\xc2\x8c\x3f\x89\x04\xff\x28\xc4\xc1\x8c\x37\x92\x02\x67\x23\xc0\xa1\x4c\x48\x9a\x3e\x26\xf7\x78\x34\xef\x00\xd3\xcf\x34\x70\x6b\x2f\x67\xef\xcf\xae\x2e\xbf\x09\x53\x0e\x2d\x18\xbe\x7a\x39\x31\x46\x14\x3d\x36\x58\x96\x0e\x9a\xab\xb0\x1e\x88\x06\x92\x40\x60\x2a\x9c\x59\x08\x55\x9a\xcb\x31\x14\x04\x96\x35\xfb\xf6\x5f\x4a\x3d\x04\x7f\x6f\xb6\xf3\xde\xf7\xe8\x33\x72\xc3\x30\x41\x45\x5f\x66\x48\x69\x2c\x43\x84\x21\x60\xed\xab\x1c\x35\x6c\xfd\x53\x60\xc7\xbf\x00\x0a\xfe\x0c\xce\xed\xed\xed\x3b\x62\x84\xce\x2d\xcd\xb8\xd6\x4c\xc3\x67\xf4\xf6\xf6\xdd\xbf\xf2\x60\xb6\x4c\xad\xdf\x6f\x54\xd1\xdc\xc7\x3c\x63\x5b\x26\x4c\x93\x83\x8a\xc8\x81\x54\x95\x27\x8c\x41\x7e\xc2\x52\xea\xa7\x9a\xcd\x50\xec\xee\x6e\xde\x5c\x5c\xb4\x3a\x0a\x95\x17\x61\x49\x93\x9c\xd5\x71\x7f\x30\x23\xf9\x20\x82\xef\x1d\x8c\xa9\xc8\xb2\xa5\x69\x2b\x09\xac\x1a\xce\xc3\x8c\x9e\xce\x3f\x4e\xe3\x58\x4b\x96\xdf\x24\xec\x91\xfc\x00\x5b\x27\xe7\x19\xdf\x42\x58\x3a\xb5\x1e\x20\xfd\x44\xca\x32\xb0\x17\xbc\x13\xfc\x91\x9c\xcb\x0d\xe5\x82\xdc\xc8\xe8\x1e\xab\xbb\x40\xb2\x06\x39\xe7\xf7\x34\x57\x75\x66\x03\x6e\xf8\xcd\xa6\x10\x10\xf5\x8e\x16\x82\x6f\x58\xc2\x1f\x81\xe0\xba\x49\x6d\x37\x3b\x11\x91\xd3\xf9\xcc\xc3\x76\x96\x09\x7b\xdc\xca\x64\x12\xc3\xd2\xfc\x9c\x47\x6f\xe1\x07\x99\xcc\x36\xab\x3a\xef\x09\x1e\xa8\x7f\xf0\x89\x3e\x8a\x3a\xfc\x5a\x07\xd5\x5e\xc6\xd3\x0e\x20\xf2\x6b\x15\xd7\x05\x58\x92\x3d\xf6\xc2\x92\xe6\x3a\x0a\x1c\x90\xdf\x46\xb7\x8e\x67\xae\x52\x92\xc9\x55\x46\x37\x79\x49\xc9\x6d\xaa\x81\x88\xd1\xf6\x9e\xdb\x51\xdd\xf7\xf5\x3e\x3d\x07\xe1\xd1\x4c\xeb\xa7\xa0\xf5\x2d\x8f\x00\xf0\x3f\x9b\xa3\xbf\xcb\x99\x7b\x62\xa7\xf3\x99\x35\xf6\x6a\x49\x56\x13\xb1\x98\x2a\x0a\x6e\xc8\x00\x19\x3b\x3f\xbd\x3d\xbd\xb9\xbd\xba\xbe\x78\x7f\xfb\x87\x79\x98\xb1\x57\x5b\x68\x33\xf4\x1f\x29\x57\x65\x2c\x56\xdf\x7c\x3f\x9e\xce\x6e\xdf\x7f\x73\x75\xfd\xbe\x9c\x38\x38\x27\x00\xa0\x35\x9b\xe6\xa4\x7b\x33\x4f\xcd\x31\xff\x35\x0c\x73\x2d\x65\xce\xca\x13\x61\xc2\x2a\xcb\x21\xb9\xe6\xdf\x4b\x39\x82\x2d\xa2\x17\x00\xdb\xfe\x68\x29\x0e\x32\x94\x97\x58\xfc\xd6\x49\x0b\xd3\xbf\x07\x36\xfd\xe6\xdd\xcd\xed\xc5\x75\x0f\x06\x7e\x95\x1f\x2d\x56\x69\x1b\x21\x4e\xab\xa8\x2d\x98\xf2\xeb\x6f\xe7\x4e\x35\xcf\x00\x9c\x67\x61\xd6\x4d\x0b\x25\x71\xb8\xf6\x5c\x17\x02\xdc\x8c\xb3\x79\xf3\xfd\xc6\xf9\xcd\xe6\x3f\x7c\x31\xbf\xba\x7a\xf3\xbe\xfd\xa4\x33\xd3\x29\xe4\xb1\x04\x67\x91\x19\x39\xe7\x39\xfc\xf3\x87\xdf\xbf\x39\xbd\xb4\x08\x6f\x2d\x4c\xb3\x39\x49\xa5\x4c\xba\x31\xa9\x5c\x09\x0c\x11\x5c\xca\xa5\x96\x74\xfc\x97\x4d\xcb\x7b\x70\xbb\x0b\x21\x58\x42\x62\x06\xc1\x79\x90\xf7\xc6\x97\x84\xa7\x3c\x85\x5c\x2e\x58\x73\xec\x5f\xcb\x37\x17\x6f\x66\xbf\xd7\xb0\xb8\x9c\xcd\xbb\x25\x42\xd5\x74\x75\x55\x72\xc2\x5c\xc6\x1a\x1e\x59\x01\x14\x92\x7c\x5d\xc4\x2b\x86\x74\xa7\x0a\x78\xae\x24\x86\xef\xbf\xca\x4b\xcc\xd4\x18\x92\x47\xd4\xfc\x0e\xe6\xf7\x7f\x9d\xe8\x59\x03\xe9\xda\x1e\x6d\x0d\xb8\x81\x13\x45\x28\xc2\xf3\xbf\x50\xb1\xba\xb9\xb7\x1f\x79\xc6\x56\x05\xcd\xe2\x3d\xf6\xf7\xe3\xec\xfa\xe2\xdb\x77\xa7\xd7\xe7\xbf\xd0\x3d\xde\xd6\x6e\xe0\xf6\x0b\xb8\x83\x95\xfa\xec\x84\x2f\x35\x02\xd4\xa7\x80\xc1\xb3\x79\x59\x46\xbc\x39\x72\xb4\x96\xb9\x96\x28\xd0\x59\xc6\x73\x74\xce\x4c\xc9\xd9\x9a\x8a\x15\xd6\x93\xb3\x65\x22\x4d\x88\x4d\xcd\xcf\x0f\xa3\xae\xe9\xb6\x35\xae\x90\xc6\xcd\x60\x0a\x4d\x9a\xea\x08\x4b\xad\x6a\x9b\xfa\xee\x93\x89\xf1\xe5\x4e\x22\x1e\x37\x35\x1e\x9f\x6b\xf0\xc2\xc9\x01\x65\xaa\x45\x6c\xce\x66\xe7\xd7\xc3\xc8\x52\xfb\x49\x87\x2a\xfd\xf4\xd3\xd4\xdc\x61\xfd\x98\xeb\x6f\xb2\x2b\xb3\x04\x12\x6c\x18\x89\x5c\x01\x9c\x72\x89\x99\x08\x2a\xd1\x5f\xe5\xe0\xc3\x0e\x31\x02\xb3\x9e\xf3\xd9\xcd\xe9\xd7\x6f\x2e\xde\x7f\x33\x7b\x73\xf1\xfe\xcd\xd5\xb7\xdf\xce\x2e\xfd\x16\x85\x6e\xc1\x04\xf5\x0f\x2b\xdb\x69\xac\xd0\xe2\x6e\x89\x2f\x58\x96\x45\x7f\x7d\x7a\x76\x76\x31\xbf\xed\xbc\x08\xe7\x17\xdf\x9c\xbe\x7b\x73\x7b\x71\x79\x3e\xbf\x9a\x5d\xde\xde\x5e\x69\xe1\xf4\xf4\xec\x76\x76\x15\x26\xe3\x38\x6c\x18\x4c\xb3\xf9\xf6\xb5\xc6\xd0\x4a\x66\xec\x5c\xc2\x6c\xfe\xc3\xeb\x9b\x77\x73\x2d\xf9\xee\xa3\xe9\xfa\x51\xe6\x1c\x6a\xf6\x83\x74\xad\x51\x06\x67\x78\x73\xf5\xad\x06\xf9\xfc\xf4\xf6\x3b\x0d\x16\xb8\x2e\x18\xb5\x8d\xc7\x0a\xf0\xb4\xe7\xaa\x24\x9c\x73\xd7\x8a\x9d\xf1\x82\x2b\xd6\x93\x7c\xc8\x82\x6f\x2e\x7e\xb8\xb8\x9e\xdd\xfe\xe1\xe6\x0f\x37\xb8\x66\x73\x27\xe1\xe2\x96\xc9\x29\x62\x29\x3b\x77\x92\xef\xf2\x44\xae\x7a\xf6\xe2\x4c\x15\xdc\x4e\x17\x26\x3a\xf3\xdd\x1d\x3c\xd0\x4c\x70\xb1\x1a\xb2\xf5\x1b\xef\x7e\xcf\xae\x2f\x2e\x2e\xf5\x58\x3f\xe2\x48\xed\x1d\x0f\xdd\x0e\x8c\x14\xdc\xd1\x8f\xfe\x85\xd6\x87\xfb\xee\xe2\xf4\xcd\xed\x77\x17\x97\xfa\xda\xfa\xa5\xe3\xf0\x55\xed\xda\xf0\x6c\x7e\xab\x87\xbc\x31\x72\x37\x48\x14\x85\xc2\x00\xef\x4a\x34\x34\x15\x36\xc4\x12\x3b\x5c\x75\x5f\xa2\xda\x80\x9d\x72\x67\x7d\xa9\x4f\x35\xbe\xf8\x82\xb7\xec\xf7\xd8\x46\xb8\xc5\x1d\xa3\xb4\x38\x21\x9f\x7d\xf9\xb2\xe6\x99\x4b\xf8\x96\x09\x96\xe7\xf3\x4c\x2e\x9a\x6d\x5c\xd8\xa3\x13\x7e\x50\x8e\x62\xac\xf1\xcd\xef\x27\xc4\x75\xd8\x35\x75\x7c\x7c\x62\x02\x37\x64\xa2\xe7\xf4\xfc\xb8\xe0\x59\xec\xf9\x2d\xad\xbb\x76\x5f\xbd\xac\xff\x0c\x11\x7a\x34\x39\x67\x09\xdd\x05\x1f\x5a\x52\x9e\x14\x19\xbb\x5d\x67\x2c\x5f\xcb\x24\x3e\x21\xaf\xeb\xa0\xa4\x31\xff\xb9\xa1\xd0\x70\xb5\xd6\xc1\xe0\xf9\xb1\x13\x0e\x83\x0d\x8f\x09\x5f\x1c\x6f\x64\x5c\x78\xea\x90\x20\x42\x27\x7c\x31\x09\x3c\xa0\x17\x75\x25\x92\x9d\xaf\xde\x70\x7d\x96\xac\x10\xc7\x8f\x78\x6d\xa6\x89\x8c\xee\xfd\x53\x99\x27\x26\xbe\x27\xaa\xb9\x90\xf9\x74\x4c\xb6\xa5\x19\x4c\x88\x40\xf7\x4f\xb5\xa5\xd9\x24\x2b\xc4\xc4\xff\xcc\x9e\x93\x81\x07\xb0\x67\x32\x0d\xc6\x27\x4d\x86\x43\xa0\x99\x2d\xdf\x89\x56\x35\x01\xdf\xce\x35\x9e\xd1\x55\xab\xee\xcb\x33\x6c\x5b\x67\x2d\x57\x47\xe4\x81\x41\x38\xaa\xb1\x70\x01\xcf\x82\x2c\x73\x2c\xd0\xc7\x88\x7e\x52\x73\x5f\x8c\x6a\x20\x54\x91\xe3\x7c\x97\x1f\x2f\xf3\xe3\x45\xba\xd4\x22\xd7\x03\x33\x4f\x63\xb5\x8d\xe6\x74\x50\x01\x48\x91\x98\x67\x10\x5b\xd4\x6c\x18\x63\x37\x97\xef\xf2\x65\x0b\xb9\xdc\x7d\x99\x49\xdb\x46\xbd\xaf\x39\x8e\x8d\x25\x5c\x36\x8c\x0a\x2c\x0c\x06\x15\x2a\xca\xc5\xf5\x6f\x85\x2b\x14\xa5\xd3\x4c\xa6\x74\xa5\x45\x7a\x93\x39\xd8\xb0\x5c\xda\x79\x4d\xbd\x38\x10\xf4\x78\x4e\xee\x85\x7c\x10\x2e\xe8\xa8\xaa\x4d\x86\x61\x14\x58\x82\xb0\xbe\x64\x13\xa0\x61\xea\xcd\xb5\x66\x42\x20\x98\x45\x41\x60\x65\xed\x75\x3f\x38\x23\xc1\x27\x89\x5c\xb5\xbd\x04\x6d\x64\x49\xe4\xca\x60\xee\x71\xc3\x09\x4b\x82\xf7\x1b\x49\x4b\xdd\xc8\x6c\x13\xa3\xdc\x30\xd6\xea\xf7\x49\x37\x29\xd1\x50\x84\x35\x35\xe8\x5b\x07\x81\x9a\xf4\x5e\xe3\xee\x41\x43\x24\x62\xd2\x7b\x63\xfb\xc7\xf5\x51\x83\x49\x0f\x85\xeb\x1e\xb5\x9b\x7a\x62\x7c\xe9\x37\x3c\x61\x57\xd9\x59\x2d\x92\xbf\xe3\x86\x75\x4f\xe8\xbd\x6f\x38\xcf\xb9\xbd\xcb\xed\xc9\xaa\x04\x4c\xeb\xd4\x3d\xbb\xf4\xf9\x5f\x02\x5e\xac\xee\x25\x79\x7d\x63\x93\x6e\x47\x56\xf7\x88\x01\x07\x59\xb5\x0b\x93\xfa\x79\x76\x39\x03\x95\x32\xb0\x13\xcf\x4d\x1b\x80\x23\x81\x7b\xf7\x8c\xbc\x75\xc8\x69\x45\x38\x41\x12\x6d\x86\x7e\xb9\x19\x27\xb6\x97\xab\x3b\x14\x98\xeb\xa0\x1e\x46\x23\x5b\xc0\x19\xa8\x1e\x3e\x56\xa6\xf7\x38\x99\x3d\xee\x88\x36\xf9\x20\xb7\x95\xee\xdd\xf8\x2e\x90\xbc\x2a\x57\x91\x07\x5c\xdd\x31\x30\x03\x6f\x96\x37\xd2\xa6\x3a\x34\x63\x91\x09\x3b\x18\x3d\x54\xc4\xcf\x5c\x03\xeb\xe9\xbd\x06\xa4\x4d\x66\x3c\xfc\xb8\x7d\x59\xda\x5e\xd3\xf6\x4a\x7b\xbc\x8b\xfb\x2e\xf9\xa7\x9f\x26\xfa\x4c\xad\xb7\x73\x0e\x89\x02\xe7\xbc\x1e\x04\x5c\xed\xa7\xf2\x8b\x96\x4f\x62\xb8\xfb\x84\xb0\x24\x67\x81\xb7\x8e\x8b\x1c\x8e\x4e\xcb\xcd\x4e\xcc\x27\xfc\x33\x61\x6a\x62\xd2\x13\x8e\x91\xaf\x1c\xc3\x63\x25\xc0\xfe\xbf\x22\xce\xcd\x0c\x26\xd4\x78\x50\xb5\x20\x37\x15\xa1\x4a\x37\x69\x26\x73\x3c\x3d\x37\x61\xdf\xbc\x8e\x66\xdd\x84\x32\xc7\xe3\x86\xb1\x32\x1e\x76\xc5\xd5\xba\x58\x4c\x23\xb9\x39\xae\x25\x27\x1d\xb7\xab\x2e\x78\x53\x2d\x4c\x42\x86\x53\xf4\x6f\x9f\x9a\x13\x4f\x4e\xc4\xf0\xd4\x95\xb0\x61\xea\x68\x39\xad\x55\x65\xa2\xa6\x53\x23\xc6\x97\x12\x4d\x49\x12\x06\x46\xb2\x2d\xc3\xab\x60\x0b\x07\x65\x2c\x4d\x78\x44\x73\x48\x81\x78\x52\x82\x87\x6f\x93\x79\x95\xe6\x51\x5d\x8d\x6b\x56\xa5\xc0\xf5\x65\x58\xf4\x82\x91\x90\x2e\x50\x92\x21\x49\x1a\xa1\x61\x21\xc2\x02\x25\x2d\x1b\xc6\xac\x85\x4e\x9a\xdd\x37\xa2\xd8\x53\x59\xc9\x92\xfe\x54\x8b\x9f\x3d\xfd\xc0\xd2\x9a\xdb\x2a\x17\xc0\x21\x18\xf5\x0c\x01\x27\xd1\xc6\x7d\xbc\xcc\xb2\x79\x1d\x20\x3b\xa1\x3c\x03\xbf\xed\xc7\x79\xda\xba\xd9\x82\x35\xc1\x24\xf8\xd8\x25\x49\x98\x82\x8e\x46\x85\x08\xe5\x25\x8c\x59\x0d\x83\xb2\x1a\x5c\x92\x8e\xcf\x7c\x70\x86\x43\xe8\xd6\xb4\xb2\x1d\x3e\x24\x05\xa0\x51\x6c\x69\x50\x36\x40\xe9\x67\xf1\x25\x04\x78\xc3\x76\x26\xc3\xc8\x0c\xa9\x47\xcb\x56\x0f\xf8\x83\x66\x5a\xa1\x24\x26\x52\x01\xeb\xae\xbb\xf8\xae\xa4\x46\xf1\x80\xba\x6e\xec\xaf\xef\xcf\xae\x2e\x6f\xaf\xaf\xde\xbc\xb9\xb8\x0e\x19\xaa\xdb\xf6\xae\xbd\x42\x50\x9c\x00\x94\x4f\x65\x9c\xd3\xb2\x09\x18\xe8\xd6\x2c\xba\x9f\xd4\xcb\x45\x55\x8f\x4d\xb2\x9f\x49\xee\xd8\x87\x2d\x37\x65\x90\x9f\xc9\x87\xee\x6e\x11\x05\xe7\xe3\xed\xab\x05\x53\xb4\xdc\xee\x5c\xc6\xd5\x7c\x38\xdd\xbf\x5e\x14\xf1\xa4\x55\x7e\x24\x99\x62\xa0\x08\xc8\x54\x14\x4f\x72\x2d\x68\x28\x2b\xfe\x0d\x7c\x53\xed\x34\x83\x1e\xf8\x8a\xa9\x8a\xc0\x26\x11\x15\x34\x31\x6f\x1d\x1c\xfd\x5f\x84\x90\x03\x33\xde\xf6\xf3\xe9\xab\xdf\x4c\x5f\x1e\x9c\x90\x03\xa4\xc3\xff\x15\xf1\x38\xcb\xc9\xc9\xef\x48\x9e\x26\x5c\xbd\xe1\xb9\x26\x5e\x47\x77\x07\xc4\x75\xc5\x12\x2c\xc3\x69\xb2\xda\x6f\xcd\x94\x55\x5c\x96\xf9\xc1\x8c\x3e\x78\x77\xa6\xf6\x4b\x2d\xe9\xf9\xcc\xfa\xf5\x09\xcf\xcb\x6a\xcb\xe5\xd6\xb0\x37\xdc\x12\xb4\x1f\x16\xdb\x79\x5d\xbf\x78\x55\xd5\xcb\x0e\xd4\xbe\x9a\x61\x84\xac\x82\x04\x42\x68\x58\xbe\xf7\x0c\x4b\x4c\xe9\x65\x1a\xa7\x1f\xca\x5d\x70\x64\xef\x0d\xaf\x7a\x8f\xa3\xbb\x4e\xc8\x67\xe4\xac\xdc\x4d\x20\x4e\xac\x1e\x80\xa5\x5f\x5f\xf0\x2c\xf6\xbf\xfe\xf6\xf6\x9d\xcd\xc7\xd2\xf7\xba\x6c\xea\xcd\x85\x62\xd9\x12\x1a\xb3\x43\xfe\x2a\x04\x64\xa0\xb8\xf1\x8c\x4c\xc8\x6c\xe9\x44\x6b\x54\xf1\x3c\x47\xb6\xcb\xe2\x4e\x16\x59\x19\xe8\xa9\xe7\x98\x90\xd7\x2f\xed\xcb\x57\x6a\xcd\xb2\x07\x9e\x33\xb0\xb5\x9a\x60\xa5\x8c\x58\xe3\xf2\xc0\xf1\xbe\x0c\x8c\x37\x9b\xcf\xe6\x03\x87\xf8\x2c\x30\x44\x65\xa9\xa0\x62\x47\x98\x88\x68\x9a\x17\x36\xd1\x2d\x30\xdc\xb4\x92\x53\xf5\xe0\x56\xcc\xd4\xa3\x31\xfc\xea\xa5\x61\xdd\x36\x54\xc4\x84\x2c\xbc\xbd\x7d\x87\xa1\x0a\x46\xae\xf1\x08\xa8\xee\x1b\xaf\xbe\xf8\xe2\x65\xe3\xe9\x70\x9a\x84\xad\x1f\x13\xca\x96\x80\xd7\x40\x96\x41\x8b\xf0\x33\x5b\x89\x18\xac\x48\xdc\x96\x7b\xac\xda\x86\x14\x4a\x6e\x28\x48\x22\xc9\x8e\xa4\xd2\x94\x4e\x35\x68\x11\x10\x8e\xc0\x5b\x99\xe7\x7c\x25\xde\xf3\x74\xfb\xfa\xee\xa0\xf2\xb4\x6a\xf0\xc4\x05\x4d\x72\x45\xa3\xe6\x9a\x79\x4e\x96\xb2\xc0\x00\xc2\x76\xc6\xc4\x09\xf9\xeb\x04\x09\xed\x4f\x96\xde\xde\x1d\x08\x68\x46\x62\xc2\xff\xb4\x02\x32\x31\x2f\x39\x6d\x16\xee\x0e\x22\x61\xaf\x33\x3e\xfb\x72\xfa\xf9\xf4\x55\xed\x09\x63\x57\xd0\x3f\xff\xb1\x62\xe9\x3f\xb9\xdc\xfd\xee\x00\x02\x14\x61\x00\x63\xb2\xad\xb7\x72\xb8\x3b\x48\xe4\xea\x7d\xc2\xb6\x2c\xc1\xa7\x7e\x3c\xbd\xbe\x9c\x5d\x7e\xeb\x7d\x6c\xc9\x13\xf6\x3e\xa5\x6a\x8d\x8f\x7a\x0c\x7d\xfa\x7f\xd3\x44\xae\x5a\xaf\x97\x11\xb4\xef\xab\x05\xb9\xe1\xb7\x8d\xc7\xf5\xb1\x57\x60\x7a\xff\xde\x97\x27\xf2\xfe\x7d\xeb\xb5\x8d\x2a\xf4\x1b\xef\xdf\x9b\x2c\x8d\xf7\xef\x1b\x0f\x60\x5a\xe5\x89\x06\x92\x41\x7b\xf6\x67\xf2\x3c\x61\xc2\xb0\x88\x17\xe4\xb3\x96\x91\xc7\x07\x45\x9b\x9f\xd9\x7e\xb2\x42\xa1\x2f\x5c\x14\xea\x7c\xb2\x86\x6c\x1d\xe6\xa6\x8e\x95\x34\x6e\x9a\xfd\xfc\xad\xb1\x7f\x94\x67\x0c\x04\xc2\x43\xdf\x7f\xd5\x08\xe0\x6c\x8e\xe3\x1e\x9d\x77\x2c\x53\x34\x55\xb3\x19\xe7\x08\x31\xa9\xe9\xbd\x0d\x66\xd1\x27\x58\x9b\xa5\xfa\xc3\x9d\x30\x88\xd1\xa9\xcc\xd4\x86\xa6\x2d\x34\xc8\x05\x55\xfa\x09\x0d\xd0\xc6\x4f\x11\x4d\xe9\x82\x27\x58\xe3\x06\x96\x0e\xa3\xbc\xa5\x69\xca\xc5\x2a\xb7\x6f\xed\xbb\x92\x05\x15\xf1\x03\x8f\xf5\xcd\xe8\x9f\xd0\x79\xb8\x3d\x9b\xfd\xa7\xc9\xf0\x1b\x60\x81\xbb\x8f\xe3\x49\x94\xc5\x35\x99\xab\x6e\x3e\xe3\xec\x51\x31\x01\x25\x77\x3c\x25\x6a\x8a\x5c\xc9\xcd\xb5\x89\xad\x80\xf0\x20\x8e\x7d\xb6\x3c\x02\x44\xab\x2c\xd5\xd4\x5f\x69\xa8\x12\x4b\x57\x58\xbe\x26\xf0\x58\xbd\x7b\x20\x2e\xe8\xeb\x6f\xe7\xb5\x0a\xbf\xf8\x5b\xc2\x73\xf5\xbd\xf7\xf7\x37\x65\xa9\x27\x5b\xa2\x3d\x50\x3c\x4b\xb3\xca\x22\xa1\x59\xfb\x01\x10\x95\x23\x99\xb2\xb2\x88\x0e\xf2\x33\x53\xc9\xfd\x4e\x38\x8e\xb3\x57\x66\xb0\x68\xcd\x36\x95\xd1\x4c\xa6\x4c\x9c\xce\x67\x3f\x7c\x7e\x53\xff\xbe\x51\x64\xbf\xb9\xf6\xb2\x57\xb0\xcd\xd9\x72\x7e\xc2\x4e\x1d\x3b\x08\xfd\xce\x64\xa1\xea\xe6\x8c\x40\x7b\x46\xe7\xe0\xeb\x97\xb2\xb6\x8c\x43\xbd\x54\xd3\x62\x37\x86\x80\x30\x5c\x80\xd9\x31\x8b\xcd\xf6\x30\xaf\x12\x1a\x17\x98\xae\x13\xd4\xd7\x82\x4d\x2e\xa1\xd1\x08\xd4\x16\x9a\x82\x32\x08\x26\x25\x8c\xc8\x8c\xa4\xd8\xb2\x4c\x91\x8c\x45\x72\x25\xf8\x5f\xca\xc1\x73\xeb\x82\x06\x34\x6e\x05\x2f\x83\x68\x27\x68\x82\xbc\x1e\x1d\x37\x1b\xba\x23\x19\xd3\xd3\x90\x42\x38\x03\xda\x96\xe3\x6f\x65\xc6\x20\x64\xeb\xc4\xb5\x39\x5b\x9c\x37\x89\x55\x6a\x77\x0c\xea\x0d\x5f\x14\x4a\x66\xf9\x71\xac\x99\xdf\x71\xce\x57\x13\x9a\x45\x6b\xae\x58\xa4\x8a\x8c\x1d\xd3\x94\x4f\x60\xed\x02\x11\x7d\x13\x3f\x2b\x03\x90\x0e\xef\x3c\xee\x87\x76\x27\x03\xc0\xe7\xae\x63\xf8\x1e\xaa\xf8\x42\x7b\x41\x6c\xc8\x83\x31\x77\x25\xb4\xad\x17\xea\xfa\xe2\xe6\xb6\x0c\x7f\x82\x13\x69\x1d\x01\x00\xbf\x7a\x33\xaf\xce\x41\x03\x8d\x8b\xa5\x6d\x9d\x52\x96\xad\xa9\x02\x3a\x35\xea\x25\xdc\xd3\x45\x27\x2f\x16\x1b\x2c\x07\x83\x11\x56\xd0\x71\xec\x0c\xec\xad\x5a\xce\xc2\xba\x42\xf1\x94\xcc\xb4\x72\xb4\x61\xc9\x19\xcd\xd9\x27\x3f\x05\xe8\x1f\x33\xd1\xb0\x1d\x7a\x0e\x2d\x13\xb7\xfb\x78\xbb\x6b\x60\xcd\x0a\xec\x39\xb6\xe6\x25\xbe\x49\x59\x54\xbf\xc8\xf5\x46\x19\xfa\x02\xd7\xae\x76\xc3\xec\xd4\xd1\x69\x95\xe6\x97\xd0\x9a\xce\x13\xf8\xdd\xb8\xd0\x37\xf8\x20\xf6\x04\xae\x82\xb9\x4f\x6f\x4c\x73\x3b\xd4\x32\x17\x3b\x42\x8d\x4c\xfd\xc7\x73\x7c\xc4\x1b\x53\xfe\xfa\x8b\x2f\x5f\x7d\xf6\xa7\xc3\xf6\x4f\x58\xe0\x11\xda\xc2\x7f\xfe\x59\xfb\xe7\xce\x9e\xf1\xf6\xe4\xfd\x2d\x65\x6b\xfb\x39\xab\x1e\xc5\xfb\xa1\xc9\xbf\x86\x27\xc2\xd2\x60\x90\x85\x33\x96\x2e\x62\xed\x68\x10\x00\x61\xb6\xe0\x2a\xa3\xd9\xce\xf4\xcf\x82\x30\x7e\x8a\x11\xa4\x98\xd0\xe7\xe9\x4e\x32\xb0\x67\xca\x59\xb9\x92\xf2\xf8\x73\x45\x45\xac\xd5\x4d\x99\x91\x84\x66\x2b\xd6\x5c\xae\x6f\x50\x02\x5b\xd0\x37\xcd\x93\xee\x85\x9f\xde\x76\xbc\xc0\x9e\xfc\x3f\x79\xba\xef\x9a\x6e\xa4\x55\xba\xa9\x5d\x5e\xb0\x21\x68\x7f\x23\x50\x34\x6a\x0e\x5a\xc2\x0f\x40\xe7\xa0\xde\xe1\x02\xb2\xf7\x11\xaf\xb4\x54\x4c\x4f\x84\xb8\x3b\x80\x96\x6b\xf8\xc7\xc9\x66\xe3\x6d\xdd\x68\x3f\xdf\xc8\xac\x82\x7a\xb5\x9b\x22\x67\xce\x70\x38\xfe\x91\x69\x15\xa0\xbf\xbf\x3b\xd0\x40\x0f\x0f\x7b\x77\x00\x2f\xd2\x8c\x91\x57\xaf\xc9\x82\x2b\x73\x91\xa6\x30\x61\xf3\x68\x9d\xd9\x60\xbd\xe1\x71\x7d\x2b\x39\x2a\x67\x13\xb1\x56\x63\x36\x66\xe2\xcf\x3f\xab\x4d\xfc\xa3\x7e\xc5\xdb\xc2\xc8\x2e\x19\xb6\x85\x7d\xbf\x4e\x6f\x08\x92\x84\xd0\xe0\x29\xcb\x26\xa7\x37\x36\xb3\x8d\xb7\x72\xc2\xab\x4f\x0a\xbd\xc5\xc5\x09\xf9\x3f\xcf\xef\xee\xe2\xff\xfb\xc5\x09\xfe\xe7\xbf\xfe\x5a\xff\xdb\x7e\xfd\x54\x0c\x7a\x72\x17\xd7\x04\xda\xb1\xcc\x65\xe6\x23\x66\x35\xbc\x7b\x53\x3e\x69\x09\x25\xf4\xaf\xc3\xb3\xd0\xb4\x25\xcd\xa4\x92\x91\x4c\xac\xf4\x82\x43\x7b\x21\x73\x6e\x5b\x7a\x29\x49\x5e\xfd\xfa\x37\xed\x47\x36\xf4\x91\x6f\x8a\xcd\x09\x79\xfd\xe5\x97\x9f\x7f\xe9\xf9\x9d\x0b\xfc\xfd\xd5\x9e\x84\x34\x91\xab\x1b\xb6\x65\x19\x57\xbb\x9b\x28\x63\xac\x29\xeb\xb5\xb6\x7d\xf8\xa6\xf9\x86\xdd\x7e\x22\x57\x24\x37\xbf\x10\xba\x90\x5b\xeb\x2c\x49\xe4\xca\xdb\x8c\x0b\x7a\x0e\x33\x51\x76\x1e\xc8\x55\x2c\x0b\xe5\xb0\x13\x32\xbb\xfc\xe6\xca\xc7\x3a\xba\x8e\x5f\xb3\xa4\x5b\xa8\x3e\xf5\x96\xe5\x6b\x4c\x15\xf4\xb5\x01\xae\xef\xea\xd2\xf7\x16\xc9\x99\xaa\xba\xc5\x2d\x0b\xe3\x83\xc4\xa4\x86\x76\x74\xb2\xfe\xe8\x83\xdf\x40\xad\xa8\xd2\x1e\xe7\x6e\x48\xab\x68\xe1\x0d\x2d\xa4\x4c\x18\x6d\xc9\xc4\x69\xc6\x96\xfc\xf1\xd4\xad\xf2\xdf\xcb\xf5\xe6\x9e\x77\x2a\xce\x02\x11\x3f\xf0\x44\xbd\x79\x80\x6f\x47\x5d\xe2\x06\xd9\xa3\x27\x58\x7b\x41\x95\x95\x3a\xaf\x2f\xc3\xe1\x50\x7e\x02\x60\xf3\xe7\xaa\xf6\x7a\x67\xb3\xf3\xeb\xa7\x31\xbb\x88\xc7\xe1\x5e\xe4\x75\x16\x3d\x3b\xbf\x46\x9b\x31\xa0\x75\x35\xb2\xdb\x4f\xd7\xee\x23\xdc\x0e\xbb\x9f\xfb\x75\x4b\x37\xbe\x95\x39\x32\x8e\x89\x48\xb3\x52\x0e\xe3\x80\xbc\x15\x7b\x01\xd1\x25\x4c\xf8\x6d\xfc\x2d\xea\x72\xd0\x2f\xf9\xee\x40\x8b\xa5\xf9\xd4\x99\x05\xb9\xea\x20\x71\x84\xa0\x56\xd7\xcb\x95\x3b\x98\x6f\x37\x9b\xea\xe6\xca\xdd\xcc\x37\x3c\x72\x1f\x57\xee\x65\xbe\x5d\x8b\xee\xe1\xca\xbd\xbc\x77\xd0\xd8\xc3\x99\x72\xf8\x0a\xe3\x67\x48\xe3\xf6\x9e\xfe\xff\x4f\x66\xc8\xc6\x2f\x64\x6c\x29\xb3\x79\x2f\xe5\xbb\x69\xbe\x00\xc0\x80\x92\x4e\xfa\xfe\x62\x2d\x70\x54\x5d\xf1\x1e\x77\xb4\xe3\x37\xc1\x08\xc4\x8e\x62\xa2\x48\x41\x4f\x5d\x56\xd4\xa7\x6c\xcd\x89\xdd\x17\x2d\x09\xc0\x1e\x8b\xbe\x71\x71\x11\x65\x0d\x62\x08\x40\x11\xbb\xda\x74\x26\xf1\x54\xad\xd9\xe6\xe9\x44\xb7\x09\x0b\x2c\x13\x5e\x69\xf6\x4e\x50\x99\xe9\xf9\x5b\x3e\xea\x3f\xe7\x0a\x84\x9f\x80\xd8\x7e\x32\xa1\xce\x9c\xf0\xc5\x23\x9a\x81\x86\x23\x91\xf3\x86\x1f\x8b\x64\xe6\xa4\x8a\xfa\xd6\x6c\x06\x22\x76\x24\x7d\xb6\x53\xb7\x24\x49\xf3\x81\x32\xff\x19\x22\xff\xfc\xbd\xf4\x2b\x26\x63\x9a\x8b\xee\xb0\xf9\x21\xa2\x8c\x69\xbd\x8d\x0d\x3e\x71\xa1\x1f\x8c\x41\xd5\xea\x7a\x51\xc8\x7f\xba\xce\xfe\xff\xbd\x91\xe8\x8d\xa4\xf1\xd7\x34\xa1\x22\xda\x87\x1a\x35\xde\xfa\x40\x64\x72\x47\x0b\x22\x94\x69\x56\xe3\x3e\x3b\x35\x8d\x67\x7d\x63\x37\xf1\xee\x5f\x80\x64\x75\x20\x3d\x11\xd1\x1a\xb0\xf9\xb7\x44\xb6\x7f\xaf\xbe\xb4\xf5\xee\x75\x9f\xd0\x5d\x04\xad\x4a\x3e\x8d\x97\x68\xce\xac\x6a\x5c\x73\x0e\xe9\xaf\xbd\x3e\x21\xa7\x6b\x4a\xcd\x15\x94\x9a\x71\x3e\x95\x07\x68\x74\xd5\x8c\xae\x1a\xf7\x08\x46\x57\xcd\xcf\xe9\xaa\xd1\xe4\xa0\xed\xa1\xb1\xc1\x3f\x8e\xab\xd5\x3e\x5c\x9e\xde\xc7\x77\xd3\xdc\xae\x59\xa5\x1b\x5a\xf7\x90\x26\x3f\x1e\x36\xf7\x21\x9e\x96\x7b\xc6\xd2\x2b\xec\x54\x91\x5c\xb2\x47\xf5\x9d\x4c\xfb\x96\x76\x95\xda\x10\x2c\xfd\x32\x2c\xcc\xf4\xba\x48\x88\x60\x8f\x6a\x2d\x53\xac\x0f\x87\x09\x77\xe8\x39\xe9\x33\x10\x02\x4c\x89\x06\xaa\xc6\x71\x05\x97\xa4\x0c\xaa\x72\x0c\x49\x70\x22\x10\xaa\xca\x62\xfd\x8a\x6f\x5c\x3d\x4a\x5e\x9a\xf2\x0a\x53\x7f\xee\xee\x40\x2f\x8e\xe8\xd5\xe9\x75\xff\x56\xab\xe0\x22\x57\x8c\xc6\x1a\xbc\xce\xaf\x39\x4b\x96\xbf\xbd\x3b\x78\x6e\x1c\x63\x2f\x7c\x53\x98\xa4\xc4\x32\x30\x6c\x91\x51\x11\xad\xed\x39\x5d\xea\xa9\xa5\x30\x71\x8a\xd3\x68\xb9\xf2\xba\x25\x3a\xad\x82\x7a\xf9\x43\x90\xa4\x2c\xfd\x57\x16\x9e\xb3\xf4\xc5\x28\xad\xa6\x75\x0d\x66\x13\x41\x3e\xb6\x77\x43\x39\x51\x34\x5b\x41\x69\xfc\xc5\x0e\x89\x0a\xa0\x1b\xe6\x77\x63\xa1\x7c\x4d\x21\x72\xa6\x4c\x57\x56\x59\xcb\x7b\x09\x0c\xea\x28\xd1\x90\xf2\x0d\x43\x81\xf9\x9c\x41\xab\x53\xfd\x72\x5e\xa5\x7f\x58\xc0\x56\xad\x75\xfc\x40\x0b\xdb\x86\x3d\x79\x38\x5e\xd8\x95\x4d\x3e\xac\xb1\x11\xe7\x87\x7c\x75\xc3\xe4\x20\x2f\xab\x84\x04\x17\xab\x29\x21\x3f\xae\x59\xeb\xa8\x60\x59\x06\x44\x00\x9e\x12\x07\xf0\x1a\x58\xe7\x15\xdb\xa4\xaa\x99\xf7\xdf\xb7\xa5\x94\xe6\xf9\x83\xcc\x7a\x2d\xdc\x57\xa6\x6e\x26\xc2\xd6\xbc\x54\xee\xcd\xac\x3f\x27\x2b\x26\x58\x46\x9d\x43\x0e\x18\xb9\xbb\xa8\x1b\xe9\x97\xab\x31\xb6\xbb\xa3\x12\x99\xf7\x30\x34\xcb\xbc\x67\x3b\x90\x3c\xcc\x10\x16\x1f\x00\x89\x53\x19\x1f\xe6\x55\x20\x72\xc0\xde\xd5\x2b\xf2\x63\x81\xb3\xb0\x39\xac\x75\xc5\xcc\x9a\x90\xf4\xc0\xaa\x94\x34\xa8\x0b\x8c\x77\x4a\xc8\x5b\x3c\xe2\xf0\xa0\x84\x50\x2d\x07\xf0\xd8\x0e\x71\xcf\x7c\xa8\x60\x3f\x43\x4c\x72\x9d\x6e\xdc\x96\x03\xc4\xa9\x7d\x9e\xb1\x25\xcb\x98\x50\x5e\xa6\xde\xd5\x89\x44\x6e\xb5\x26\xc7\x1e\x8e\x4d\x97\xd9\x89\xd6\x16\x27\xc8\x6b\xf3\x63\x38\x98\xe3\x67\x3d\x06\x68\x42\x6e\xaf\xce\xaf\x4e\xc8\x69\x1c\x13\x09\xb6\xeb\x22\x67\xcb\x22\xc1\xbb\x92\x4f\x1d\x61\xf7\x08\x64\xad\x23\x52\xf0\xf8\xff\xf1\x38\x55\xf6\x81\x55\x59\x56\x76\x20\xbc\x6e\x80\x6c\xed\x4a\xe7\x90\x06\xdb\x0d\x1e\x9c\xcc\xc0\xfd\xae\x91\x62\xd3\x7f\xea\xc6\xce\xde\xb7\xfa\x00\x13\xc0\x8f\x6d\xbb\x18\x58\x3c\xa4\xab\xf9\x7f\x1a\xa2\xa0\xfa\x7f\xd5\x14\x63\x36\x1f\xc2\x80\xaa\x5a\xa3\xae\x98\x42\x96\xd2\x98\x1c\x17\x3b\xd0\x23\x2c\x7d\x4a\x65\xe6\x65\x40\x26\xf6\x04\x5a\x49\xb2\x0c\xec\x10\xc0\x7b\xc0\xeb\x2a\xca\x88\x15\x08\x46\x38\xb2\xee\x86\xca\x31\x73\x77\xf0\xc7\xbb\xe2\xe5\xcb\xcf\xa3\xd9\x7c\xfb\x1a\xfe\xc5\xfe\x74\x02\x73\x79\x1d\xec\xe0\x9d\x28\x5f\xf8\x02\x5f\x38\xc1\x2f\xe0\x2d\xf8\x02\xdd\x00\x50\xe6\x10\xd6\x52\xdb\x84\xb3\x28\xcb\x17\xbd\x42\x0e\x44\x9c\x18\x1e\x02\xc0\x12\x31\x29\x63\x70\x16\x2c\x91\x9a\x2e\x83\x04\x64\xe2\x35\x81\xd6\x41\x39\xef\xca\x07\xed\x27\xb2\x40\x1e\x9b\x31\x46\x86\xd1\x3e\x30\x23\xf9\x50\x85\xcb\x35\x90\xdd\x97\xff\x68\x99\xf8\xa9\x2c\x35\x63\x1b\xa9\x4a\xce\x5a\x3b\x59\x60\xa4\x41\x0e\xe4\x32\xd2\x39\x60\x62\x1d\x6c\x48\x2b\x1a\x8c\x15\xe3\x3b\xea\xf5\xb6\xeb\x1b\xd1\x92\xd1\x82\xa9\x07\xc6\x84\x71\x69\x47\x34\xb1\x0d\xba\xe3\x4a\xae\x74\xd7\x0d\x95\x81\x4a\x01\xd4\x7f\xc2\xa6\x10\xa6\x99\x81\x2f\xc9\x42\xaa\xb5\x56\xc5\x72\x94\x21\xb4\x2c\xf0\xf5\xb7\x73\x4d\x54\xa6\xfa\xd1\x53\x73\x5f\x2a\xe1\x28\x84\x39\x38\xf6\xeb\xe1\x63\xbf\x6e\x8d\x3d\x25\xfa\x9a\xfa\x26\x30\xdb\xac\x02\xbf\x22\x09\x61\x4f\x56\x97\x74\xc0\x70\x98\xd7\x26\xb2\x07\xe1\x5d\xb7\x39\x7c\xec\xdb\x5c\x95\xc7\x5b\x9a\x9e\x71\xe5\x75\xd9\x13\x13\x51\x16\x31\xdb\xeb\x45\x45\xb3\xfb\xca\xbd\xaf\xa1\xb9\x96\x0f\xad\xec\x29\xd4\xbe\x0d\x05\xf3\x6d\xa7\x5f\x86\x6a\x0b\x4c\x65\xc8\x47\xd8\x73\x7a\x77\xf0\x2e\x67\x50\xd4\x7d\x7e\x77\x60\xcb\x35\xb9\x6b\x2b\xc5\x1e\x8d\xfc\x46\xf1\xa9\x2d\x76\xaa\x07\xb9\xf4\x14\x73\xc4\x0f\x0e\xa9\x61\xdd\xb9\xe5\xbd\x4e\x61\xb4\x5c\x7a\x2c\x97\xf5\x76\xb8\x9f\xc2\x80\xa9\x67\x38\xc5\x19\x76\x2d\x33\xa6\xfb\xa3\xc7\x98\xe9\x6b\xd6\xeb\xd8\x34\x9d\x9f\x77\xa3\x65\x73\xb4\x6c\x8e\x96\xcd\xff\x3c\xcb\xa6\x4b\x21\x06\xda\x37\xdb\x14\xa7\xfa\xec\x6f\xf4\x0c\x38\xd9\xba\xb8\xbd\x69\xd3\xd8\xc7\xe7\xcf\x6d\x37\x47\x11\x43\x1b\x1c\x63\xc0\x01\xcc\x59\xb8\x4d\xd3\x77\x1a\x6f\x17\x0c\x5a\x82\xe0\x3b\x5e\xed\x1b\x52\xae\xd1\x6a\xe3\xe2\xf9\x12\xa3\xa1\x52\xaa\x38\x64\x68\xed\x50\x3e\x97\x49\x0c\x5c\x3f\x61\x34\x37\x53\x7b\x39\x31\xcf\x15\xbd\x67\xd0\xab\x37\x63\x76\x79\x38\x0b\xad\x66\x79\x82\xb1\x6b\x4f\xa0\x6a\xae\xbb\xdf\x3b\x01\xd5\x73\x02\x47\xda\xfc\xce\x00\xb6\xf9\xb5\xaf\xf2\x05\xac\x64\x94\x2d\xfa\x64\x0b\x63\x06\xd5\xc4\x49\xeb\xbb\x9f\x28\x8d\xce\x06\x05\x55\xb3\x34\x85\x8c\xf6\x13\x6d\x49\xc3\xb3\xd6\xa6\xb4\xd1\x7e\xe4\x53\x8a\x1c\xf5\x10\xca\xd6\x0e\x1a\x09\x75\x26\x36\xab\xb4\xe8\x3b\x8b\x1c\x73\xe9\x46\x31\x66\x14\x63\xfe\xd5\x62\x4c\xfb\x06\x77\x65\xd3\xe1\xab\x0b\x0f\x13\x0c\xbb\x97\xba\x24\x18\x20\xa1\xfe\x3b\xde\x5e\xa9\xfb\xb0\x4d\x9f\x30\x97\x5c\xaf\xcd\x38\xe6\x8c\xa4\x52\xae\x26\x60\x08\xcb\x0a\x21\xbc\x96\xed\x2e\x4e\x6f\x86\xfc\xf6\xdd\xec\xbc\x77\xb5\xd5\xa3\x76\xad\xf0\x6f\x63\xcc\x0d\x2e\x6e\xc0\xf4\xb7\xfa\x91\x61\xd3\xeb\x47\xed\xa1\x19\xb2\x08\x0d\xb5\x3e\x64\x15\x65\x25\x89\x6b\x46\x63\x9f\xc7\xa7\x2e\x4a\xd6\x9e\x2e\xab\xed\x98\xe6\xef\x39\x5f\x09\x90\x92\x85\xaa\xc6\x25\x1b\xbe\xaa\xe5\x8d\x37\xd6\x26\xe1\x35\x53\x5a\x56\x6e\x52\x29\x20\xd2\x2d\x2f\xa2\xb5\x16\xfc\xb0\x47\x05\x5a\xc5\x4a\x5b\xf6\x03\xe5\xfa\x96\x2f\x65\xc0\xd8\x08\x85\x78\x2d\x85\x0a\x75\x9b\x23\x7d\x8e\x05\xe8\x5c\x2a\x7a\x93\xa0\x7e\xc0\xc7\x48\xcc\xa2\x84\x66\x60\x4d\xe3\xd1\xda\xbe\xed\xe0\xb2\x93\x21\x01\xe5\x2b\x47\xab\xd2\x07\x4a\x7e\xd0\x07\xe1\x93\x17\x50\x00\x0c\xec\x2c\xa1\xd0\x7e\xa2\x2d\xf9\x79\xd6\xda\x94\xfc\xda\x8f\xfc\x6c\x92\x1f\xde\xb2\xbd\x6a\x29\xc0\x2b\xa3\xd4\x37\x4a\x7d\xa3\xd4\xf7\xaf\x96\xfa\xda\xf4\xa7\xaf\x86\x02\xde\xf7\xa7\x56\x51\x48\x12\xf9\x30\x9b\xcf\xe6\x73\x0a\x05\xd2\xbf\xc9\xe4\xe6\x47\x53\x42\xae\xd7\xe9\x74\x78\xda\xf5\xb6\x2d\x2a\x5a\xb9\xa4\x60\xa5\x3e\x26\x6f\xf2\x8c\x62\x42\x49\x56\x60\x23\x92\x38\x93\x29\x56\x82\xab\xaa\xb7\xb1\x98\xa8\x8c\x2e\xb5\xb6\x8a\xf9\x4e\x76\x2a\xdf\x98\x55\x92\x2a\xb4\x56\xd9\x3b\x4b\x15\x20\x03\xa5\xed\x9e\x0e\x9a\xe0\xeb\x1f\x01\x36\x58\x75\xef\x5f\x05\x9c\x87\xfc\x26\x8b\xce\x73\x75\xb6\x66\xd1\x7d\x2f\x30\x6e\x98\x32\x5e\xb8\x49\xcc\x72\xc5\x05\x60\xe9\x04\x0a\xaf\x12\x29\xc8\xe9\x8f\x37\xe4\xe2\xec\xb3\x32\x6a\x2f\x9f\x92\x53\x23\xcf\xf8\x56\xbf\xad\x97\x48\xc0\xd4\x8d\xbb\x83\x73\x79\x29\xd5\x1a\x1a\x89\x1d\x91\xbb\x03\x93\xf4\x6c\x53\x33\x4d\x4b\xbc\xf8\xee\xa0\xa7\xc0\x47\x39\x8c\x0f\x2a\x4c\x14\xbe\x66\x94\x93\xea\x2d\xdf\x8f\xb8\x14\xef\x6b\xb8\xaa\xfd\xe4\xfc\x45\xba\x3c\x93\x42\xb0\x48\xdd\xf2\x8d\x93\x66\xc2\xc5\x6a\x68\x7e\xf8\xd7\xf3\x6f\x7a\x86\xc0\x60\x56\x2e\xca\xaa\x8e\x5e\xdf\xb7\x1f\x8f\x6d\xad\xc2\x52\xde\x10\xd8\xb5\x66\xa2\xf8\x86\x11\x28\x4f\xb9\xb0\x39\x3c\x41\x6f\xbd\x79\xcd\xf3\x0e\x68\x89\xc6\x50\x5b\xba\xab\xa1\x1f\x4f\xad\x99\x91\x6f\xd0\xac\xd9\xf4\xdc\x36\xe8\x36\x65\x46\x08\xdf\xa4\x99\xdc\x1a\x91\x25\x65\x19\x28\xdf\x22\x02\x14\x4b\x65\x3c\x51\x72\xd2\x95\x60\x59\x6e\x35\xc7\x8d\x61\xfa\x51\xc6\x68\x8e\x11\xc4\xb6\x3d\x20\x57\x58\x1e\x31\x23\x31\x5b\x14\x58\x72\x25\x2d\xb2\x54\xe6\x1a\xf9\xbb\x11\xf4\x49\x49\xf7\x8b\x74\xa9\x15\xbe\xd9\x92\x46\x6c\x6e\x8a\x56\xf4\x20\xc9\xd7\xf3\x6f\x9a\xaf\xa0\x3c\x91\x31\x90\x72\x09\x7b\xd4\x02\x01\x08\x7a\xd8\xe3\xdf\x20\x83\x97\x8c\x81\x22\xe5\x14\x25\x45\x44\x31\x72\x1c\x55\x4a\x9f\x8b\x46\xb5\xb2\xcb\x3c\x94\xbc\x24\x32\x8b\x21\x4a\xca\x0b\x6d\xaa\xa2\x75\x49\xf5\x94\x3c\x2e\xc5\x0f\x53\x35\x72\x6a\x1c\x1c\x82\xb1\x38\xc7\x72\xf9\xf0\xc6\x9a\x39\x2b\xf1\x82\x58\x6f\xc7\x26\xc1\xda\x8a\xaa\x25\x79\x4d\xe4\x43\x0e\x3d\xe1\x9b\x09\xaf\x03\x06\x5d\x53\x11\xeb\xf3\x17\x91\xdc\x80\x04\x56\xae\x1e\xfc\x06\xa9\xcc\x54\x6e\x82\x73\x0c\x62\xc2\xa6\x64\xa1\x72\xee\x2f\xd1\xe0\xda\x77\x08\x99\x95\x8a\xb5\x96\xa3\xaa\xfd\xfa\xea\xc2\x3e\x2f\xf2\x82\x26\x89\x37\x96\x4e\x6b\x22\x31\x98\x81\xa6\xd3\xe9\x8b\x3d\x5d\x35\x1a\xd9\x10\xd1\xdf\x09\xa7\x6d\xe1\x00\xa2\xe4\x79\x0d\x0a\xba\x96\xb5\x60\x0d\xda\x30\x85\x37\xf4\x5e\xdf\xe3\x64\x5a\x38\xcf\xbf\x5f\xa4\xcb\xf7\xb6\x22\xaf\x6f\x6b\xf9\x2e\x8f\x54\xe2\xde\x46\xf7\x75\x88\x22\x93\x4b\x8d\x8b\x16\x7d\x98\xc8\x4d\x2c\x3e\x55\xb5\x67\x7d\xa3\x17\xb9\xe9\x75\xa1\xe1\x6f\xdb\x08\x01\x26\x1d\x1e\xe6\x48\x4c\x69\x9a\xdb\x66\x3b\xfa\x21\x2e\x72\xad\xc3\x40\x99\x26\x22\x1f\xbc\x41\x91\xed\x9b\xa1\x4f\x91\x99\x04\xc6\x6a\x82\x0f\x2e\xce\xb1\x48\x97\x7b\xf0\x90\x0b\x7b\x2c\xd5\x11\x99\x13\x02\xb1\xc5\xa6\x22\xe8\xd5\x6b\x19\x39\x4d\xa8\xf0\x87\x31\x7f\xa8\x40\xa2\x97\xfd\xa8\x6e\xa5\xcd\x10\x97\x42\x6c\x68\xd6\x2f\x99\xe8\x3d\x78\xde\xab\xf1\x3d\x4b\xd7\x08\x25\x9f\x7f\xb6\xe0\x7e\x97\x27\xf6\x5f\xc0\x78\xaf\x9c\x29\x82\x4a\xb7\x65\x06\x78\x89\xa9\x20\xcc\xe6\x0d\xa3\x4e\x84\x71\x90\x10\x96\xe7\xc5\x54\x5c\xd5\xd4\xd6\x77\xcf\xee\x51\x2c\xcd\x49\x61\x83\xa7\x60\x61\x6b\xf9\x40\x52\x14\x33\x51\x2b\x40\x62\x6c\x66\xf7\x9a\xd5\x32\x86\x89\x2a\xb1\x93\x99\x8f\x3c\xd4\x06\x8e\x69\x26\x8b\xb5\x15\x01\xdb\xd2\xcc\xe6\x4a\x5c\xcf\xbf\xf1\x52\x63\x2d\xcd\xb9\xf8\xf7\x32\x7c\x8a\x81\xe4\x1c\x3c\x45\x00\x90\x39\x90\xb7\x03\xb2\x42\xcc\x21\x36\x5f\xf3\x9e\x61\x0e\x5b\x73\x4e\xc6\xb7\x13\x97\xe2\xd6\x9c\x65\x10\x06\x6f\xc8\xf2\x73\x13\xa2\x6f\xe9\xb5\x53\xec\xc0\x9b\x41\xa3\x21\xbe\x94\xd9\x03\xcd\x62\xac\x69\x6e\xa2\x0d\x4b\x39\x5d\x13\xef\xa5\x2d\x4e\x7d\x77\x70\x0b\x05\xbb\xef\x0e\x30\xba\x75\x21\x95\x37\xca\xd3\x28\xcf\xb0\x82\x8c\xe5\xa9\x14\xfa\xca\x19\x9e\xc2\x73\x53\xf6\x1b\x27\x6c\x84\x38\xc2\x7c\x7e\xac\x33\x4b\x38\xbf\xb9\xd6\xa2\x34\xbe\x87\xf3\xf8\x86\x5e\x14\xca\x3c\x53\x9f\x3f\x60\xdf\xcf\xab\xb6\x90\xc9\xce\x1b\x7c\xa9\x57\x26\xec\xfc\xe6\xfc\xaa\x47\xbc\xdc\x0a\x42\x5a\xd3\x94\x51\x6c\x60\x61\x09\xcf\x6c\x6e\xb5\x64\x8e\xa9\xe2\xf0\xe4\x6f\xad\xdd\x09\x44\xc8\x9c\x50\xdf\x90\x29\xcb\x36\x3c\xcf\xf9\x96\x91\x37\x9f\x39\x02\x45\x85\xdf\x78\x42\xfb\xd6\x73\x5a\xa4\x4b\x2d\x7e\xce\x33\xf9\xb8\xbb\x30\x56\x92\x9b\x44\xa3\xd4\x40\xba\xfb\xf5\xfc\x9b\xee\x01\xfc\x88\xef\x17\xca\x1c\xa1\xfd\x30\x27\x6c\xb3\x60\xd0\x64\x08\x2a\xde\xa7\x7a\x06\x63\x58\xce\x49\x7d\x2a\xad\x53\x09\x19\x0e\x69\x0d\x93\xe9\x72\xed\xb3\x14\xdb\x1a\x9e\xe9\x07\x8b\x74\x0f\xae\xd3\x33\x44\x8d\x1b\x21\x2c\xbc\x24\x1b\xc0\xe3\x70\xab\x34\x93\x68\xcc\x4f\x76\x24\xd2\x23\x92\x22\x35\x9d\xee\x72\x95\x31\xba\x71\xf5\x86\x0a\x42\x87\x87\xfe\x90\x6e\xb3\x36\x12\xad\x29\x07\x75\xe0\x06\xe5\x32\x5b\x90\xa0\x5c\xe1\xd2\x05\xb7\x09\x17\x36\x4e\xb0\x4f\xa5\x0a\x94\x10\x7c\xcb\xc5\xcd\x4e\x44\x73\xe8\x27\xbc\x17\xec\x6b\x6f\x1e\x05\x88\x6d\xab\x2f\xac\x01\x3d\x96\x77\x23\xa0\xda\xd9\x00\x75\x34\xf8\x95\x86\xdb\x52\x5e\xa8\x2c\xd4\x87\x0e\x8a\xfa\x86\xad\xc0\x38\x25\xe4\x8d\x7c\x60\x99\x35\x95\xad\xf4\x35\xce\x58\x5c\x44\x58\x05\x6d\x52\xa4\x60\x19\x16\x91\x7e\xf4\x3b\xbe\x5a\x97\xcf\xfa\xa9\xac\x7e\xd3\x5a\xd6\xe7\xef\x48\x91\xd3\x15\xd3\xbc\x70\xa1\x05\x6c\xcd\x22\x8b\x94\x6c\x64\x86\xe4\xbc\x46\x25\x5e\xe5\x4f\xa0\x10\x6f\xe4\xea\x0d\xdb\x32\x5f\xfa\x4e\xeb\x44\xec\xb3\x35\xa8\x43\xf5\x3a\xa8\x5d\x5f\x96\x5a\x75\x24\xc8\x00\x2d\x28\xd5\xfd\x0a\xf6\x1b\x24\xc7\x57\xd6\xc6\x72\xb5\x5c\xa2\x75\x65\x26\x96\x52\xff\x0b\x6d\x2b\x5a\x87\xbd\x3b\x08\xeb\xf2\x89\x5c\x61\x91\x10\x86\xcd\x6e\xed\x21\xeb\xc9\x54\x46\x23\x46\x52\x9e\xb2\x23\xeb\xed\xd3\x32\x39\xc8\xb5\x68\x3e\x80\x0e\x3e\xbe\x61\xef\x0e\x54\x04\x6d\x7f\x34\xcc\x50\x93\xae\x99\x77\xc8\xd5\x72\xf9\xa7\xe9\x9e\xe0\x87\xfb\x3a\x03\x99\x7c\x90\xf4\x71\x56\x7f\x3e\x64\x12\x59\x4b\x79\xef\xea\x2c\x01\xb2\xa1\x64\x3a\xc1\x73\x6b\x10\x10\x8d\x6d\xa8\x29\x40\x5b\x0b\x34\x06\x1a\x87\xba\x92\xa9\x39\x66\xbf\x60\x46\x41\x91\x86\xcc\xa4\x34\x65\x22\x6e\x8f\xb0\x90\x4a\xc9\xcd\xd4\xea\x22\xc6\x2f\x9e\xd3\x65\x59\x2f\xd7\x2b\x29\x70\x11\x81\x2d\x23\xcd\xd8\x16\x5c\xbd\x95\xa6\xa3\x47\x37\x72\x2f\x86\x21\x2e\x76\x29\xcd\x73\x53\x6b\x6a\x27\x0b\x92\x3f\x70\xe5\xcf\x5d\xd1\x52\x31\x2c\xd4\xd0\x93\x85\xe9\xa9\x56\x46\x10\x60\x22\x1d\x4e\x61\x33\x68\x11\x4a\xe8\x80\xf6\x0a\x60\xc0\xc8\xc0\x96\xb3\xd8\x69\x35\x23\x41\x0f\x48\x26\x8b\xd5\xda\x22\xa4\xd1\xf9\x61\xe4\x23\x9c\xe6\xc1\x94\xbe\xf2\x8d\x69\x1e\xc7\xde\x01\x65\x93\x8d\x6a\xa7\x15\x26\x22\x60\xf7\x25\x05\xe5\x45\xc4\xa6\xa0\x7b\xc7\x94\x2e\x8a\x95\xd1\xa8\xdf\xc8\xd5\x79\x26\xa1\x94\x7f\x70\x94\x00\xbf\x80\x61\xde\xb2\x8d\xcc\x76\xf3\x4c\x2e\x79\xc2\x3c\x7d\x46\x07\xad\xe5\x86\x6f\xc0\x54\x7d\x46\x93\xe8\xdb\x8c\xa6\xeb\xef\xa8\x58\x9d\x2e\xd5\xd3\x76\x66\x47\x3b\xb7\x40\x7a\xfa\x68\x70\x48\x56\xc2\xb9\x95\xdf\xc9\x5c\x9d\x82\x7e\xd0\x7b\xfb\xcf\xc3\xef\xba\x94\x00\x2c\x3f\x1a\xa5\xf3\x80\x2d\xab\xb4\x03\xe9\x47\x57\xd2\x5e\x1d\x5a\x19\x6e\x2a\x97\x9a\x74\x1a\x90\xab\x9c\x25\x4b\xf2\x9c\x2e\x03\x01\x35\x40\x1e\xcc\xd8\x6b\x6e\xac\x26\xe5\x50\x0c\x85\x62\xc4\xdf\x17\x53\xf2\xf5\xae\xcc\x5f\x3a\xf3\x36\xac\x27\x65\xb5\x37\xbf\xb7\xa1\x1c\x3a\xf7\x2d\x13\x68\xba\x3f\xeb\xb3\xa4\x76\xff\xfc\xfb\x7f\x9f\x5f\x5f\xcd\xff\xf9\xf7\x7f\x40\x68\x85\x14\x25\xbd\x78\xa0\x46\x61\x86\x66\x65\xb9\xdc\x30\x4d\xd4\x68\x92\x74\x29\x1c\xb0\x3a\x17\x74\x7a\x3d\xa6\x07\x10\x64\x29\xd2\x8c\x6e\x98\x51\xee\xae\x2f\x6e\xdf\x5d\x43\x2b\xa3\xd3\xb3\xb3\x8b\xf9\xed\x94\xbc\xf3\x17\xbc\x33\x0f\x72\x5c\x18\xe4\xa5\x41\x3b\x21\xf9\x20\xea\x54\xc9\xdd\xd6\xec\x72\xfe\xee\x56\xef\x0b\x48\xd5\x6f\x3b\xe8\x09\x10\x12\x4b\x8a\x95\xa5\xa5\x4d\x62\xaf\x95\x7c\x3d\x92\x49\x80\xfc\xe7\xdf\xff\x1b\x97\xf5\xcf\xbf\xff\xc3\xab\xd0\x18\x03\x81\x39\x97\xd6\x82\x88\x34\xc4\x7c\x4d\x73\x88\xde\xc1\x48\xf3\x34\x93\x36\x02\xc7\x1e\xb2\x6f\x74\x3f\x4a\x01\x00\x0d\x30\x41\x2f\x13\x65\xcc\x09\x34\x20\x42\x9a\x6c\x97\x16\x3c\xbf\x52\x47\x26\x80\xe7\xbe\x35\x85\x16\xd0\x6d\x6c\xd2\x24\x71\x6f\x9a\xcc\xb6\x3c\x62\xd7\xb2\x50\x5a\x10\x86\x92\xc8\xfd\x69\xc3\x3c\xaf\xc5\x42\x80\xe9\xa5\xaa\xa8\x4c\x63\x63\x13\x30\x02\xda\x86\xc5\x66\x1a\xaf\x34\x0a\x05\x46\x8e\x34\x17\xb3\x97\x15\x50\xd9\xb2\x9f\xeb\xdb\xf9\xf5\xd5\xed\xfb\xaf\xaf\xae\x6e\x51\xaa\x4b\xd8\x52\x91\x45\x42\x85\xaf\x66\x58\xa7\x41\xc6\xd9\xeb\xcd\x3e\xe9\x88\xa6\x23\xb9\x27\x89\xcf\x6a\xe7\x52\xec\xb3\xd9\x1a\x65\xf2\x0c\xca\x73\x67\x93\x47\x24\x61\x74\x6b\xc2\x1b\xbc\x7a\x02\x08\x60\x60\x40\xc3\x26\x98\x9e\x11\x0b\x7f\xc9\xdb\x4e\xc4\x40\x4e\x7b\x26\x85\xd0\x32\xed\xfd\x4c\x40\x01\x84\x90\x8b\xb4\x93\xe7\x5a\x6c\xbe\x06\x8f\x00\x17\xab\x73\x96\x50\x5f\x48\x5f\xd7\x82\x5a\x83\x84\x75\xec\xee\xc5\x18\xe3\xda\xa5\x8c\x59\xfe\x86\xe7\xbd\x61\x74\x17\xee\x0b\x67\xb3\xf3\x6b\x68\x2b\x58\xeb\x56\xa0\xbf\x3d\x04\x6b\xa5\x1d\x7d\x22\xa4\x98\x38\x5d\x73\x3b\xdc\x48\x1b\xba\xb3\xe7\x85\x56\xa8\x92\x19\x81\xf1\x12\xcb\x98\x30\xc7\xf8\x65\x7e\x0d\x94\x9f\x34\xae\x66\x4d\x60\xa3\xaa\x86\xcc\x7e\x05\x00\xbb\x8b\x32\x74\xd4\x61\x5c\x52\x9e\x68\x39\x7b\x26\x16\xb2\x10\xb1\x16\x1f\xe6\x32\xeb\xaf\x88\x7d\xf8\x4d\xe0\xc5\x3a\x9c\xdf\x9d\xcf\x8f\x6f\xcf\xe6\x68\xa8\xf4\xee\x5e\x60\xb5\x69\xe3\xde\x70\xec\x21\xc8\x67\x7d\x9e\x2a\xe0\xe9\x25\xa7\xf7\x8d\x2a\x05\xe1\x59\xc6\xf2\x94\x61\x77\xef\xaa\x9c\x48\x01\xf5\xd4\x2d\x7b\xb0\x84\xc2\xd4\xc4\xd0\xdc\x7d\x2b\xb9\x97\xc3\xd0\x28\x82\x8a\x3f\xc0\x38\xa2\x02\x4b\x26\xc9\xe5\x92\x50\x5c\x0f\x08\x17\x7a\xb5\x59\xc6\x22\xd5\x08\x88\x09\x15\x47\x5e\xd0\xe8\x7e\x52\xcb\x74\x3a\x32\xe5\x21\x2b\xea\x6c\x33\xb8\xab\xca\x3e\x5c\x59\x62\x14\x8a\x83\xd5\x9a\x69\xaa\x75\xd1\x99\x5e\x1f\x14\x6d\xf4\x0e\xe3\x00\xda\x95\xa7\xbc\xfb\xc7\x38\x10\x4d\x9d\x34\x41\xbc\xad\xdc\x57\x14\xa4\x05\xc0\x02\x04\x05\x1c\xf6\x51\x69\x05\x0d\xe6\x64\x0b\x29\x4c\x0b\xc1\xd8\x4d\xdf\xb6\x4e\x86\x3c\x5f\x5b\x0f\x96\xc6\x92\xf3\xef\xce\xe6\x35\xff\x52\x94\x9e\x7c\xf6\x99\x37\x2c\xa0\x88\xd3\x93\xd7\x5f\x1d\xc1\x23\xaf\x7e\xfd\x1b\xfc\xc7\x67\x9f\x57\xff\xfa\xea\x25\xfe\xeb\xf5\x17\x5f\x7c\x6e\xfe\xf5\xfa\xf5\xeb\xf2\x5f\xbf\xf6\x31\xe5\xc1\x95\xd9\xa5\x92\xb6\x8f\x41\x24\x37\x0b\x13\x6e\x02\x1e\x7c\x73\xa6\x47\x00\xa2\xa3\x12\xf9\x03\x95\x69\x4e\xb5\x6c\xb9\xce\x58\x15\x6c\x52\x55\x19\xf0\x8a\x58\xbd\x9d\x48\x98\xdf\x8e\x47\x06\x95\x75\x49\xfd\x6d\x1c\xdc\xd7\x03\x7c\xbc\x5c\x5e\x48\x5c\x19\xb6\x84\xce\xc2\x2c\x13\xbd\x3b\xff\x0f\xa1\x1a\x28\x93\x72\x49\x61\x92\xfa\x84\xd2\xb6\x96\xa4\x5e\x15\xea\x89\x34\xb5\xf5\xe6\x47\x26\xaa\xb2\x50\x2b\xe9\x12\x55\x10\x73\xfb\xc9\xaa\x92\x23\x59\xfd\x59\xc9\xaa\x34\x88\xf0\x71\xe8\xaa\x04\x03\x00\x53\x51\x7c\x78\xe8\xf4\x43\x42\x27\xa2\x92\x26\xd0\x20\x98\x57\x8b\x68\x14\x4b\x86\x5b\x5e\x31\xa5\x0f\x0c\x0e\x0b\xd5\x5c\x15\xc5\xb5\x90\x14\x0d\x00\x7d\x9c\x9a\x72\x87\xea\xec\x9f\x5f\xde\x34\x89\xfa\x3e\x14\xdb\x7b\x50\x86\x88\x1f\x01\x1f\xf8\xf2\x73\xfc\xef\x48\xd4\x47\xa2\xfe\x21\x44\x9d\x51\x55\x64\xec\x9c\x29\x16\xa9\xab\x2d\xcb\x32\xde\x6f\x9c\xff\xc6\xf7\x92\xdb\x58\x5c\xda\xef\xf4\x7d\x36\x53\xf8\x91\x51\x31\x63\x8d\xfa\xc1\x74\x56\xcb\xdc\x7e\x2d\x5c\x10\x8a\x9e\x0a\x92\xb3\x94\x62\xb9\x1c\x60\x17\x40\x3f\x85\xd7\x90\x06\x55\xfd\xf2\x23\xc2\x1e\xe9\x26\x4d\xd8\x6f\xc9\xdd\xc1\xcd\xe5\xe9\xed\x37\x45\x92\xec\xae\xa9\x88\xe5\xe6\x77\xd0\xa7\xf5\xed\xe9\xcd\xff\x76\xbf\x84\x10\x99\xa3\x6b\x06\xd9\x3a\x37\x45\x0a\xf4\xe3\x8d\x8c\xee\x7f\x17\xe8\x06\x56\x16\x16\x05\x6f\x0d\xbc\x7e\x77\x80\x44\x72\x29\x31\xea\xbf\xdc\xfd\x11\x56\x97\xd2\x8f\x4a\xe3\xac\x09\x3b\xc6\xa0\x89\x44\xa1\xe4\x04\xe1\xb3\xb7\xca\x0c\xa5\x85\x78\xf4\xfb\xf3\xf9\x50\xf7\xef\xb7\xcd\x37\x8c\x1f\x35\x27\xe6\x17\xf2\xfb\xf3\x39\xc9\x65\xd5\x47\x9b\x66\xfe\x18\x68\xe0\xcc\xb1\x14\x87\x87\x8a\xe4\x08\x44\x78\x57\x2e\x97\x60\x50\x92\x19\x89\xc1\xea\x0e\x4e\x08\x6c\x44\xa3\x29\xff\xef\xcf\xe7\xc8\x60\xbd\x66\x4c\xe3\xbe\x65\x1a\x17\x98\x88\x59\x5c\x39\x49\x34\xe1\x86\xd9\xd2\x4c\x6e\x35\xce\x2d\x98\x02\x6b\x56\x15\x65\x1a\x58\xa7\x28\xed\x88\xd3\x0f\x8e\x94\x5a\x33\x9a\xa8\x8e\x3e\x52\x03\x5e\xd6\x52\xd1\x9e\xa6\x08\x7c\x31\xd0\x87\xac\x93\xca\x95\xf1\x8a\x17\x8f\x51\x52\x0c\xf0\xc7\xcd\x1a\x2f\xa0\xe8\x06\x77\x73\xd2\xb8\x9b\x72\x39\x24\x64\xb3\x16\xa9\xca\xcc\xa0\x60\x58\xdb\x48\xc1\x95\x2c\x2b\x66\xd4\xe5\xb7\x69\xc8\x19\x5a\x97\x09\x6a\xc1\x85\x26\x7a\x7a\x25\xa4\xfe\xaa\x0a\x37\x38\x3c\x24\xb3\xf9\x0f\x37\x24\x2e\x36\x1b\x6f\xb8\x66\xb9\x8d\x23\x1b\x69\x6b\x68\x9c\xcd\x74\x4a\x76\x64\xb1\xab\x79\xc8\xeb\x56\x75\xaf\x4d\xd7\xec\x75\x53\x24\x8a\xa7\x89\x13\x34\x6b\x1a\x46\x9a\x16\xfb\xb6\x91\x81\x49\xa6\x02\xf7\x33\x6f\x27\x5d\x11\x48\xfa\x41\x6a\xe5\x89\x21\xce\xb1\x65\x92\xe7\x07\x58\x27\x30\xeb\x87\x8c\xa6\x21\x2f\x07\x82\x13\xc8\xed\xe1\xe1\xf1\xe1\x21\x0e\x67\x68\x2b\x59\xa3\x45\xd0\xc4\x03\x1c\x1e\x1e\xff\x1f\x0d\x8b\xe3\xa3\x2d\x53\xeb\x57\x87\xde\x6a\x9b\x40\x1f\x2d\x0c\x50\xc7\x2e\x43\x67\xe1\xb4\x16\x6c\xc5\x85\x9d\x51\x0f\x77\x78\x88\x45\xec\x92\x5c\x86\x6c\x8f\x15\x08\x0f\x0f\xcd\xdc\xee\x9d\x86\x03\xe2\xe9\x36\xef\x08\x9e\xf3\xdf\xb0\x72\x60\xec\x4c\x36\xfc\x9a\xe0\xf3\xd6\x5a\x5b\x3f\x62\xd3\xab\xcd\x44\x36\xda\xce\x4b\x7e\xcb\x5c\xdb\x03\x04\x61\xcc\x20\x4f\x6b\xa5\xa2\xe0\xf9\x1a\xcd\xdf\x1b\x8f\xba\xd3\x09\xab\x7c\x4a\x2e\xa5\x02\x1a\x41\x98\xd8\xf2\x4c\x0a\xec\x00\x27\x4d\xb1\x52\x2a\xc8\x42\xf3\xa2\x0d\x53\x34\x39\x32\x25\xba\xa3\x35\xcb\x55\x46\x95\xcc\xbc\x0b\x76\x2b\xcf\x69\x12\x91\x6a\x41\x2f\xe3\x54\xb1\x64\x57\xc7\x1d\x59\xb8\x9d\x4c\xd0\x16\x22\xa3\xfb\x40\x06\xbb\x26\x63\x26\x2b\xd4\xb8\x99\xf4\x59\x47\x34\xe1\x87\x87\x6e\xbe\xa1\x1e\xf5\x2a\x65\xe2\x46\xd1\xe8\xde\x7d\xcd\x7b\x6f\x6c\xc0\xf3\xe1\xa1\xa2\xa9\x1d\xc8\xc5\x1c\x3d\xc1\x93\x71\xe6\x9a\x2d\x33\x96\xaf\x01\x27\xb6\xde\xaa\xb1\x35\xe4\x99\x05\xde\x2b\x3b\x47\x42\x50\x10\xa1\xca\x10\xa3\x60\x72\x53\xc6\xf2\x88\x8a\xdc\x14\xa6\x74\xef\x97\x24\x5b\x96\xf1\xe5\xce\x84\x45\x43\xfd\x1c\x54\xa9\xf0\x1d\xd3\x17\xce\x4b\x5f\x4d\xec\xb7\x26\x78\xb9\x29\xad\x5e\xa2\xf6\x16\xb3\xd3\x5f\xee\x29\xa8\xf0\x94\x77\x44\xa8\x75\xf2\x4c\xfd\xea\xdb\xdb\x77\xfd\x17\x72\x3e\x9b\xbf\xbd\x7d\x67\x61\xa8\xff\x09\xf1\xa6\x10\x4b\x5c\x99\xb3\x8d\xaf\x64\x4a\x6e\x98\x3f\x24\xc1\xa0\xb5\xde\xb5\x1e\xc3\x89\x44\xfa\xe2\x8b\xfd\x43\x72\x79\xaa\x51\x6f\x4f\xfc\x38\x9c\xf9\xde\xea\xc4\x0e\x92\x31\xcc\x07\xf3\xcb\x99\x89\x13\x0f\x03\xb8\xd0\x50\x97\x89\x90\x86\x18\x18\xdf\x20\x78\x31\x5d\xdb\x86\xd7\x4c\x91\xc9\x7b\x26\x9a\x41\x2b\x50\x90\x1f\x90\xa4\x96\xb1\x63\xa7\xcf\x70\x57\x3d\x59\x64\xbf\x79\xb9\x77\xdc\x97\x9d\xe1\x6b\x1a\xdd\xb3\x56\x72\x6f\x0b\xc8\xb3\xfa\xe3\xa5\x32\x62\x8b\x16\x2c\xcc\xf7\x5a\xc8\xb1\x6b\xd7\x2c\xcd\x0b\x08\x86\x0e\xaf\x9a\xcd\x02\x9c\x6a\x2b\xea\x75\xa2\x0e\xd9\xc7\x37\x3c\x51\x2c\x83\x44\xc8\x60\x30\xc5\x90\x71\xb4\x66\xf3\x4d\x38\xea\xa4\x89\x79\xed\x97\xaa\x8e\xae\x51\x69\x34\x70\x9d\xf3\x3e\x88\x40\x2d\xb5\x25\x4f\xd8\x94\xfc\x41\x4b\x1f\x74\x07\x59\x44\xe8\x34\xa4\x62\x65\xb8\x86\x31\x6a\x95\x4f\x5b\x05\x80\xfb\x83\x1c\x94\x63\xf5\x29\x57\xf3\x7c\xe9\xf0\x1a\x37\xa4\x60\x43\xd3\x94\x61\x56\x9a\x50\xb2\x8c\x81\x0c\x30\x33\x45\xb9\x60\x99\xbe\x56\x94\xc4\x7c\x89\x25\xcf\x49\x4a\xd5\xfa\x85\xcb\x27\x8e\xb3\x42\x1c\x3f\x1a\x6d\x42\xaf\xfb\xa9\x68\xaa\x21\x3c\xcf\xe4\x82\xed\x41\x15\x02\x6f\xda\x03\x82\x78\xd0\x86\xc5\xd4\x2b\x6b\x60\xcd\x10\x8c\x1b\xa5\x4a\x69\x8d\x15\x6b\x4a\x47\x60\xcb\xa8\x87\x5e\xc0\xe1\xf0\xa5\xc9\xb9\x13\xd2\x2b\x6b\xd0\x2d\xe5\x89\x7e\x7e\x5a\x8f\x1c\xdd\xd0\x7b\x1b\xf8\x09\xf1\x9d\x26\xc8\x9d\x6f\x8d\x0a\x60\x4f\x3f\xa0\x0c\xea\x73\x01\x35\xf0\x08\xc2\xe4\xb5\xfe\x08\xc3\x9c\xcd\xdf\xb9\x87\xf2\xe5\xcb\xcd\x93\xc9\x85\x86\xe6\x2d\xdf\x30\x59\xf4\xfa\x65\x6b\x27\x60\xde\xe9\x82\x3d\x00\xda\xb7\x33\x9b\x74\x59\x83\x31\x04\x83\xbe\x3c\x72\x88\x26\x98\x53\xd1\x5a\xca\xf3\xca\xc0\x10\x14\x07\x40\xc6\xcf\xd7\xd4\x7b\x82\x70\xbd\x30\x82\x28\x49\xea\xc4\xbe\xa3\x16\x21\xca\xe2\xfa\x10\xed\x49\x4d\xb1\x14\xb7\x89\xb0\xae\x12\x56\xb5\x46\x4e\xab\x8b\x74\x14\x2c\xd6\x5d\xe6\x0d\xe8\x11\xf5\x75\x32\xd9\x0c\x32\x2b\xdb\x26\x38\xc9\xa8\x1b\x59\x08\xac\xd8\x68\x02\x6f\x9c\xaa\xe7\xbe\xd1\x65\x66\x9f\x58\xda\xc4\x7e\x5c\x50\x2d\xb5\x26\x2f\xa5\x9c\xa7\xa2\xcd\x5b\xaa\x75\xb6\x0f\xa7\xce\x6f\x69\x76\xff\x96\xe6\xfd\xa9\x56\xb3\xc6\x0b\x16\xf1\x36\xfa\xdf\xae\xa2\x6d\x7a\x63\x70\xbf\x17\x60\x36\xbf\x45\xa4\xd0\xe3\x90\x85\x26\xa9\xd8\x93\xe2\xa6\x2a\xc9\x63\xfb\xd0\xae\xd9\x23\x8d\x59\xc4\x37\x34\xb1\x25\xbf\x35\x02\x79\xf1\x44\x91\x84\xd1\x5c\x91\xaf\x70\x4c\x28\xc7\x2e\x4c\x6e\x39\x32\xd4\x28\xa1\xf9\xda\xc6\xb0\xed\x0c\x06\x6e\xec\x2a\xfc\xba\x80\x8d\x75\x01\x2f\xcd\x2e\x57\x6c\x53\x3b\xc6\xc7\xe5\xf2\x25\x7c\x7c\xa7\xf8\x21\x6d\x8e\xec\xe9\x5c\x9e\xde\x5e\x19\x5f\x53\x29\xb4\x23\x5f\x7e\xe2\x71\xcf\x65\xae\x7e\xcc\xb8\x62\x10\xd6\xb2\x37\xe9\xf7\xbf\xde\x94\x0c\x21\xc8\x2b\x48\x25\xb4\x64\x17\xeb\x93\xa1\xe4\x41\x0f\xd5\xce\x18\x28\x4b\x4c\x45\x6b\x16\x63\xec\x1c\xa4\xde\x65\x94\x64\xcc\x1f\xbf\xb6\x40\x25\xac\xcc\x37\xc6\x74\x36\x4c\x9d\x85\x49\x1e\x28\x72\xf6\x28\x91\x8b\x05\xcb\x6c\xa3\x87\x1a\x1d\x0a\x97\x58\xcd\x9d\xdc\x0f\x19\x45\x45\xa6\x19\x92\x7d\x9b\xa6\x69\x62\xeb\xd1\xd6\x70\xa5\x34\x19\x06\x74\xa7\x94\x45\xaa\x4d\x29\xa7\x1f\x94\x7d\x60\x87\xda\x5f\xe4\xf7\xbe\xf7\x04\x95\xd0\xe8\x01\x36\x81\x0b\x54\x5f\x13\x4e\xe9\x1c\x71\xb7\xf8\x1f\xc2\x9b\x9a\xb7\x73\x1f\xf1\xdf\xdf\x41\x18\xd6\x56\x2a\x04\x68\xa3\x50\x8e\x08\x8d\x7c\x92\xe7\xc6\x38\xa5\x25\x6a\x10\x2e\xc0\x62\x11\xb0\x10\x99\xd8\x76\x1c\xb4\x54\x5a\x73\xac\x9c\xfb\x20\xb3\x7b\x9a\x81\x47\x12\x2b\x17\xbf\xe1\xa2\x78\xb4\x11\x6d\x8b\x62\x15\x64\x84\x1a\x7f\x97\xfc\x11\x7d\x15\xe6\x79\x5b\xa3\xef\x8b\xe9\xab\x57\xa5\x41\x50\x73\x5f\x34\xec\x6d\xf5\xf7\x9a\x21\xad\x32\x46\x03\xf1\xc5\x3b\x23\x1c\xdb\xe0\xdc\x32\xb0\x56\xc9\x23\x42\xc9\xda\x49\xad\xc1\xa4\xc7\x7a\x26\x8d\x6f\x48\x48\xae\xa9\x21\xf1\x53\x74\xa9\xed\x6b\xe3\x19\xd9\x57\x5f\xbf\x2f\x16\xd0\xa7\x60\x2e\x33\x75\xad\x25\xfd\xfe\xb0\x81\xef\x5b\xaf\x90\xb5\x4c\xe2\xbc\xb4\x32\x83\x73\x21\xc3\x5f\xc0\x2c\xbb\xf4\xfb\xcd\x4d\x76\x29\xa9\x72\x4b\xa7\xe4\x4a\xd3\x8c\xc2\xf4\xad\x45\x99\x00\xbd\x2d\x6e\x12\x5a\xb8\x6a\x22\x70\x21\x9e\x6e\x73\x93\xcb\x83\xa0\x2f\x50\x66\x62\x39\xb3\xcb\x82\xb3\x43\xeb\x78\x95\x07\xdc\x15\xf1\x6b\x1c\xeb\xee\x41\x7d\xae\x59\xd9\xc9\xe7\x9f\xfd\xfa\xf5\xaf\xbd\x69\x37\x61\x67\x2f\x15\xbb\x2b\x7f\xe7\xac\x49\xbf\x13\x74\xd2\xeb\xe3\x4c\x4d\xc5\x0b\xf2\x7f\xa6\xff\xcb\xf7\xfb\xe3\xa4\x6a\x03\x35\xe1\x42\x4d\x64\x36\xc1\xd1\xdc\xea\x7b\xb5\xdd\x87\x3d\x95\x89\x5c\x0d\x56\x57\xdf\x54\xcf\x5a\x4a\xb9\x2c\x92\x04\xd4\x36\xcb\xd7\xf0\xc4\x12\xb9\xb2\x94\xc9\xb7\x03\x10\x55\x1c\x7a\x05\xd2\x72\x22\xa1\xb2\x48\x4d\xfd\xdb\xd2\xec\x38\x91\xab\x63\x57\xc8\x9c\x26\xd2\x5b\xed\xa6\x0b\xac\x89\x5c\x0d\xb4\x34\xbf\xb1\x4f\x56\x7a\xf8\xaa\x66\x58\x76\x50\x12\x3b\x28\x6a\x8d\x29\x74\x94\x6f\xae\xbe\xb5\x74\xba\x6e\xfc\x8c\xe4\x04\xe3\xc8\x9f\xb0\x93\x1b\xb6\x65\x19\x57\x3b\x7d\x16\x43\xf6\xe3\x3e\xef\xee\x2a\x37\xdf\x13\xba\x90\xa0\x21\x6a\x56\x97\xc8\x55\x6f\x3b\x48\x3b\x00\x5a\x1c\xaa\x8d\xcd\xc4\x52\x7e\xc0\x7e\x6e\xa2\x8c\xb1\xfe\x24\x96\x37\xcd\x37\x3e\xda\x9e\x72\x15\xcb\x42\x7d\xcc\x1d\xed\xfa\xc9\xf1\x9b\xda\xe3\x1f\x6f\x2f\xbb\xdc\xb9\x84\xe4\x52\x9a\xdc\x54\x21\xed\x45\x03\x22\x6a\x9e\xea\xb4\x0e\x3e\x05\x08\x1b\xfa\x08\x66\xd5\x1b\xfe\x97\x70\x4d\xfb\x00\x95\xb4\x45\xea\x4e\x63\x6f\x63\x82\x3a\xf8\xde\x3a\x0f\x5b\xe0\xb9\x4d\xcf\x32\x12\xcb\x0d\xe5\x02\x3d\x44\xe1\xbc\x43\x28\x5f\x9a\x99\x44\x15\x2a\x08\x15\xb9\x96\x7d\x7e\x78\x4b\xfe\x5c\xb0\x8c\x33\xac\x7f\x14\x25\xb2\x88\x27\x5c\x70\x55\xae\x12\x6a\xfe\x95\xae\x11\x7f\x88\xd1\x1a\x8c\x2b\x19\x9a\x63\xe2\x32\xab\x65\x43\xa3\x35\x17\xac\xd4\xee\x85\xdc\xd2\x09\x4d\x39\x79\x2e\x33\xcd\x08\xdf\x2d\x0a\xa1\x0a\xef\x90\xf6\xd1\x89\x5d\xc6\x8b\x29\x39\xb5\x81\x5b\x4b\x24\xb0\xcf\x23\x9a\x43\x73\x51\x26\x72\xae\xf8\x96\xbd\xb0\x9d\x8c\x3a\x43\xb6\x9c\x8a\x3c\x5a\x3e\x2a\x52\x50\x20\x2f\x4f\x6f\x31\x07\xd3\x5a\x53\xec\xc4\x40\xfd\x7b\x30\xe8\xd5\x67\xbf\x9e\xbe\x9c\xbe\x9c\xbe\xda\x1b\x8d\xcc\x24\x01\x5f\xbc\x1f\x15\x6c\xe4\x15\x48\xf2\xfa\xdf\xc6\xce\x51\xae\x18\xcf\x1a\xe3\x22\x02\x85\xc2\x36\x0b\x2e\x4c\xb9\x11\xd3\x2b\x6b\x5a\xc3\xb4\xe7\x7c\x09\x10\x3a\x3c\xd4\x37\xeb\xf0\xf0\xc5\x91\x13\xa8\x13\x10\xbe\x01\x94\x25\x20\x8f\xd0\xaf\xf8\xea\xf5\x6f\xa6\x9f\x7d\xf9\xc5\xd4\xfc\xf7\xe4\x2b\x10\xe4\xdd\xb9\x4e\xdc\x7d\x79\x95\xb6\x99\x20\x1b\x2d\x04\x45\xa6\xd1\x45\xa5\xc2\xe9\x25\x5a\x4b\xf0\x82\x19\x63\x70\xec\x10\xb8\xaf\x7e\xfd\xeb\x2f\x3b\x92\x8e\x43\x37\x54\x15\xfb\xd4\xe6\x7a\x7b\xfb\xee\xe7\xa8\xcb\x05\x9e\xb6\x9a\x56\x4c\x93\x08\x92\x2e\x4b\x33\x97\xdf\x1e\xfd\xf6\xf6\xdd\xb4\xa6\xf9\x56\xd5\xa8\xba\x2a\x51\x7d\x58\xd9\x29\x41\x95\x35\x76\x0c\xcc\x53\x72\xcc\x23\xcd\x3e\x72\x60\x33\x68\x24\x2d\x81\x74\x62\xc2\x75\x02\xe2\x89\x49\x4b\xd1\x28\x09\xd7\xda\xd6\x4b\x11\x84\xba\xeb\x23\xa9\x94\x49\x59\x30\xa8\x27\x5f\xa9\x2c\x3e\xd2\x48\x82\x72\x73\x95\x00\x03\xaa\x05\x1b\x33\x42\x09\x62\x3f\x0d\xad\x95\x8a\xb1\x8b\x90\x82\x3c\xe7\x10\xb0\x64\x95\x84\xca\xbc\xf0\xf6\xf4\xe6\x7f\xbf\xbb\xb8\x3e\x3d\xbf\x30\xdd\x93\x3d\xa5\x6e\x7a\x4e\xa8\xd4\x91\x3c\x67\x13\xd2\x02\x7a\x75\x80\x3e\x0d\xa0\x79\xe8\xe5\x22\x9c\xe3\x86\xbc\x3c\xf8\xce\x28\x6c\x79\x79\x3e\x1a\xc0\x21\x33\x38\x90\xc3\x0d\x85\xcc\x6a\x44\x90\x18\x0e\xb8\x0c\xf1\xbe\x3c\xbd\x35\x26\xe7\x42\xd8\x78\x80\x8e\x9c\xfa\x05\x5b\xd3\x2d\x97\x65\x0f\x74\x1b\xc7\x96\x63\x98\x40\x30\x33\xad\x5b\xc5\xd9\x57\xc1\x11\x4c\x25\x5c\x74\xf8\x15\xba\xe0\x0d\x61\xce\x7a\xb9\xd7\x6c\x35\x24\x87\xfa\xaa\xfe\xbc\x65\x34\xa2\xd6\xc2\x77\x55\x92\x33\xcd\x1f\x33\xc5\x35\x1d\xf2\xaa\x83\x48\xc1\xaa\x4e\xa3\x20\x4e\x50\x8c\x62\x9a\x98\x81\xd0\xe6\x73\x5c\xc5\x5f\xc4\x2c\x4d\xe4\x6e\xc3\x84\xbf\xab\x29\x70\x00\x1b\x2f\x5c\x46\x8e\xc4\x90\x85\xbc\x96\x0f\x80\x09\x50\x5a\x12\x27\x7f\xbe\x66\x50\xa6\xb8\x34\x5a\x69\xdd\x3b\x09\x75\x8f\xe4\x02\xf5\xfa\x69\xb4\x5c\xd9\x6e\x92\x4e\x98\x8b\xbe\x91\x30\x76\x24\x37\x69\x61\x6a\x24\xbd\x30\x45\xab\x0b\x7f\x9c\x55\x55\xf8\xef\x8f\xa8\x1b\xfd\xa9\x3a\x95\xf7\x06\x06\x28\xda\x38\x9b\xd1\x22\x1d\x2b\x54\x26\xc5\x54\x7f\xeb\x5d\xad\x59\x0a\x96\x69\xaa\x98\xde\xc5\x26\x55\xbb\x7d\x45\x11\xcc\x56\x80\x2a\x32\x54\xad\x07\x6a\x93\x73\xcf\x4b\x6e\x44\xef\x62\x67\xfb\x0c\x40\x0f\x82\x4d\x21\xa0\x51\x96\xd7\x2a\x80\x65\x1b\x90\x85\x63\x00\xbe\x2d\xcf\x66\xcb\x7c\x1d\x91\x84\xdf\x33\x72\xea\x58\x68\x13\xba\x63\xd9\xb0\xf4\xe2\xa7\x41\x25\x93\x1b\xa6\xd6\xac\xc8\xbf\x95\x6f\x99\xca\x78\x34\xb4\x32\xd4\xe1\x3c\xf8\xaa\xb5\x0b\xe4\xe4\x5b\xa9\x85\x63\xf0\xf6\x6d\xf0\x11\xbf\xb8\x96\x24\x18\xf0\x6c\x03\x0a\x35\x2e\x55\xe3\xdb\xfa\x75\x90\x8c\x50\x25\x22\x1f\x21\x05\xcc\xfd\x31\xe3\x4a\x62\xcc\xaa\x91\x0c\xd0\x16\x68\xee\x3a\x7a\x67\xe4\xd2\x2e\x8a\x64\x90\xb4\xca\xe2\x23\x7c\x2e\xc0\x6e\x9d\x15\x69\x99\xe2\x83\xcb\x1f\x56\xc0\x7f\x32\xe8\x1b\x80\xb7\xe1\xc9\x0d\xf8\x75\xc0\xde\xe8\x4d\x5c\x58\xdf\x64\x59\x15\x4e\x6f\xe9\xc3\x23\x80\x5b\x7b\x0c\xc4\xf3\xf6\x6c\xf0\x3b\x99\x97\x3a\x01\xfa\x3b\x6d\x75\x96\xea\x51\x2f\x69\x32\x07\x6c\xb6\x69\x3b\x69\x70\x11\x03\xad\xae\x76\xc7\x3e\xec\xf6\x98\x65\x0e\xd2\x73\x5a\x9b\x73\x15\x1e\x9b\xe9\xf5\xd1\x37\xf8\x9b\x97\xbf\xe9\x50\xdf\x02\xc2\x4e\xb5\xc1\x39\xba\x3a\x9e\x8c\xa8\xde\xf7\x2b\x42\x61\x03\xa9\x46\x2a\xd1\xba\x41\x19\xdb\xc8\x2d\xb3\x59\xee\x50\x1e\xa1\x57\xd5\xf8\xd1\x54\x83\xc2\xc2\x79\xb6\x00\xe4\x96\x99\x78\x3e\x53\xe8\xc0\x16\x09\xde\xb2\x50\xa0\xca\x82\xb1\x5a\xe9\x04\xcb\xef\xa6\xa6\x96\x38\xea\x11\xb6\x1c\x04\xe6\xc0\x95\x6c\xcd\xf1\x34\x86\x52\xec\x20\x60\x82\xc6\x71\x7d\x5d\x55\x4a\xa1\x2d\x5b\xe7\x54\x9f\x30\x49\xf9\x8c\xfa\x07\x7d\x60\xb8\x16\xb3\x5f\xbb\x98\x64\x67\xea\x5e\x98\x19\xf6\x3e\x03\x53\xd4\x60\xb0\x87\xf2\xba\xf9\x46\x2d\xe6\x59\xff\xdd\x0a\x49\x0c\x26\x78\x9a\x48\x2e\x55\xe4\x55\x60\x47\xd5\x26\x49\x66\x35\xe7\xe1\x94\xbc\x35\x92\xa3\x90\x62\xf2\x17\x96\x79\xcd\x19\xdc\xb1\x79\x39\xe2\x68\x5e\x77\xb0\xec\xed\x09\x2b\xe1\x74\x7b\xfb\x66\x38\x88\x6e\x6f\xdf\xb8\x81\x41\x13\x25\x27\x09\xdf\xb2\x32\x9e\x16\x34\x1f\x24\x10\x93\x87\x40\x61\x6a\x03\x1f\x03\xc5\x3a\xe1\xdb\x7f\x1b\x1a\x49\xf6\xf5\x49\x5f\x7b\x5e\xfa\x80\x28\xd4\xb2\x72\xcb\xfe\xfe\x68\xb2\xa6\x7e\x1b\xf3\x53\xfd\xd1\x58\x41\xc6\xba\x9e\xbb\xc5\xd0\xa7\x82\x1b\x4b\xbe\x0c\x83\x32\x3e\x5b\x69\x13\xe0\xca\xc9\xac\xf3\x6a\xc5\x30\xa0\xc7\x56\x14\xf6\xe3\x7f\xd5\x80\x92\x4c\x88\xed\x95\x31\x9b\xe7\x27\x68\x7c\xf1\x96\x98\x8a\xa4\xc8\x55\x56\xf8\x92\x09\xab\xe2\x31\x13\x03\xd3\xd9\xfc\xf4\x6d\xdd\x41\x3f\x81\xa1\xf5\xf7\x70\x96\xb5\x11\xed\xeb\x4f\x01\x1d\xc4\x28\x85\xcc\x1c\x9e\xe6\x79\x55\x71\x6f\x1a\xdb\xfa\x48\xc6\xb7\x8f\x27\x6d\x0c\x30\xfa\xde\x6d\x69\xc6\xa5\x5f\xf4\x70\x5a\x08\x5c\xd7\x97\xd1\x30\x74\x40\xff\xe0\xaa\x87\x8c\x3b\x87\x1f\xf3\xab\x7a\xf8\x46\x9e\x29\x72\x5f\x25\xef\x9e\x64\xd9\x0d\xf5\x29\x78\x64\x48\xa6\xeb\x86\xfb\x0c\x09\x03\x5e\xed\xc8\x6f\x9d\xe8\x05\x79\xbf\xf6\xc5\xef\x76\xa5\xae\x1a\x7d\xf1\x8d\x94\xe9\x1c\x6b\x21\x0e\x31\x7c\xfc\x88\x62\x10\xfa\xfc\xc1\xc5\xb2\xd5\xc0\xcb\x19\xa8\xfd\x15\xb3\x3d\xb2\x05\x16\xbb\xee\x4f\x22\x65\x9a\x3b\x25\xaa\xc9\x6c\x6e\xc4\x09\x9a\x31\x13\x94\xac\x4f\x0d\x0b\x47\x99\x5a\x80\xff\x3f\x7b\xff\xbe\xdc\x38\x6e\x35\x8a\xe2\xff\xff\x9e\x02\x71\x7f\x55\xee\xde\x3f\x4b\xee\x9e\x4b\xef\x89\xa7\x52\xa7\xdc\xb6\x7b\x46\x95\x6e\x5b\xc7\x56\xcf\x24\x15\x65\xbb\x20\x12\x92\x70\x4c\x11\x0c\x09\xca\x56\x26\x39\x95\x07\xf9\xbe\x97\xcb\x93\x9c\xc2\x5a\x00\x09\x92\x00\x49\xb9\xed\x99\x49\x42\x56\x25\xd3\x16\x41\x5c\x16\x80\x75\xbf\x10\x88\xb8\x52\x2b\xf2\x5a\xce\x75\xd6\x30\x8c\x96\x2c\x02\xcf\xcf\x2f\x4f\x67\x87\x87\x61\x3d\xa8\xec\x53\x1c\x81\x12\xb5\x48\x21\x5d\x54\x5d\x71\x2a\x3f\x78\x6c\x7c\xeb\x68\xc6\xb0\x4e\xa0\xc9\x39\x8e\xcb\x09\x44\x2c\x79\x8c\xbe\x23\x0b\x9d\x98\xa4\x92\x58\xd1\xd5\xeb\x63\xb2\x7a\x65\x3c\x64\x01\x4d\x4f\x83\x80\x45\x0c\xe3\x70\xfa\x72\xd4\x37\xde\x4f\x0b\xe1\x8f\x3d\x28\x72\xb3\x01\x44\x6f\x86\xf2\x90\x83\xa2\x8f\xcf\x96\xf3\xc0\x8f\xa6\x47\xee\xa7\xea\x6a\x3e\xb9\xbe\x32\x44\x9c\xd0\x58\xc4\xbb\x8d\xc8\x4d\xa6\x4f\xe3\x42\xe4\x54\x5b\x23\xb7\x6e\x27\x47\xcf\xf8\x5f\x99\xce\x73\x56\x2d\xd7\x37\x26\x1f\xc4\x2a\x23\xf7\x34\x8d\x79\xbc\x52\x4c\x83\xcc\xd3\xd8\xad\x75\x5d\xec\x30\x2b\x33\xe4\xe0\x35\x86\x27\x2b\x5e\x0b\x52\x4d\xd0\x4a\x05\xcb\x22\x41\xc6\x36\x8f\x62\x96\x52\xcc\x49\xe1\xea\x7c\x4d\x33\x64\xb1\x43\x9e\x05\x62\xcb\xb4\x5e\x4c\x3a\x2b\x9a\x62\x62\xd3\x3c\xeb\x3c\x91\x8f\x92\x32\xaa\xfb\x37\x89\xb9\xe4\x34\xf2\xe5\x01\x6b\xdb\x44\xfb\xd3\x6a\x96\x60\x93\x88\x39\x54\xaf\xdc\xd2\xc6\x52\x14\x54\x7c\x43\xef\x18\xda\x99\x54\xc7\x35\xc7\x9f\xbd\x59\x8c\xfa\xf2\x7a\xf2\x74\xf5\xa5\x69\xae\xae\xb2\xac\x06\x43\xef\x57\x13\xe3\x9a\x1c\x3c\xea\x37\x6f\xbf\x7a\xd4\xa2\x30\xa8\x21\xa6\xd1\x79\xcf\xdc\xad\xbe\x8a\xa5\x0f\x11\x6d\x41\x41\xdd\xdf\xf6\x89\x39\x83\x22\x62\xbf\xbe\xa0\x33\x98\xff\x63\x82\xc5\xe1\xc3\x1f\x2e\x27\xfb\x7e\x77\xcf\x53\xb6\xca\x69\x1a\xf6\xc5\x92\x3f\xd6\x3e\x68\x66\x7d\x2e\x5a\x58\x74\xfc\x59\x4a\x9f\x14\x73\x2f\x1c\xbc\x2f\xe9\xa6\x9b\x6b\xff\xd1\xf9\x59\x8d\x4d\x04\x13\x8c\x36\x7e\x7a\x5c\x16\x55\x33\x6b\xad\xa6\x33\xfb\x2a\xdd\xaf\xc6\xda\x08\xb1\xe7\x6d\x2a\x96\xf6\x81\x67\x92\x29\xca\xd0\x4b\x9b\xf7\xa3\xf3\xb3\x5a\x7e\x74\xf3\x0a\x55\x7b\x3e\x0b\xdf\x62\x57\x2e\xae\x12\xb0\xf3\xe6\x9b\x2f\xf6\x3f\xd7\xc5\x7a\xfa\xdc\xcd\x1f\xad\xc6\xd5\xb9\xab\x1f\xf4\xf5\x74\x41\xde\xb5\x8e\x1b\xc6\x5a\x2f\xe9\xe7\x2c\xe6\x1a\x39\xb6\xeb\x3c\x62\xd3\x94\x0b\x45\x67\xfb\x2f\xce\xf1\x71\x75\xb1\x89\xf9\xd5\x9b\x6d\xa9\x3c\x9f\x35\x90\x18\x56\x52\x89\xd1\x15\xf5\xc3\x6f\xf7\x5e\xec\x43\xd8\xbb\x40\x85\x23\x35\xc9\x1f\xce\xa7\x55\xd6\x4e\xcd\x35\xcb\xb9\xd4\xd5\xa7\x20\x5d\xa8\xfb\x00\x16\xe9\x17\x43\x16\xef\x9a\x8e\x8f\x8f\x62\x2c\x1e\xc2\x64\x5f\x4d\xca\x1f\xce\xa7\x4f\x1b\xcd\x0b\x59\x5a\x1e\x15\xc8\xab\xd5\x24\x4e\x32\xd4\xac\xb3\x25\x52\x5d\x5c\x0e\x53\x19\x83\x8c\xed\xd6\xa8\xfc\xe1\xdc\xe9\xe2\xdf\x0c\xf7\xdd\x5f\x9f\x32\x14\xfc\x6e\x16\xfc\x46\x17\x30\xed\xdd\x00\xd6\x54\xce\x9e\xa3\xe4\xf7\x77\x30\xce\x25\x8e\x83\xc6\x63\x7c\x5d\xd6\xfc\x76\x34\x69\x16\xfd\x76\xce\x57\x6f\x52\x51\xf6\xbb\xd9\x08\x06\x7b\xae\xba\xdf\x43\x9d\xee\xa1\x4e\xb7\xbd\x05\x43\x9d\xee\xe7\xac\xd3\xdd\x56\x46\x3b\x49\xa2\xdd\x55\xfc\x1e\xeb\xbb\x75\x51\xd3\xd3\x4a\x6b\xd4\xc5\x9a\xd2\x47\xd0\x13\xea\x64\xcb\x3a\x02\xdc\xa4\xb3\x77\x11\x28\x64\x27\xa0\x27\x13\x92\xb3\x27\x3f\x10\x8a\x4b\x21\x67\x8a\x07\xe9\x9a\xf9\x79\xd1\xd2\x9a\xb5\x91\x78\x8c\xaa\x10\x7c\x8f\xd0\x42\x58\xac\xc3\xa3\xfc\xb3\x96\x66\x50\xc5\x4a\x94\x35\x59\xb4\x85\x85\x80\x18\x7d\x98\x59\x75\xfb\xa0\x6a\xd0\x1d\x8f\x57\x4e\xb5\x22\x28\x12\x69\xa6\x15\xe8\x81\x49\xc8\x8e\x15\xf6\x66\xa9\x49\x52\xe5\x82\x30\xa1\xee\x04\x80\x60\x39\x55\x8b\x42\x85\x08\x8d\x77\xd6\xd4\x9c\x13\x03\x64\x65\x60\xa2\x15\x97\x5e\x75\x56\x65\x7c\x08\x2a\x66\x90\xca\x53\x9b\x8a\x17\x8c\x68\x1e\x71\xdf\xbd\xc5\x6a\x08\xdd\xf9\xfa\x19\xfa\xf8\x62\x79\x2c\x48\xcb\x8e\x65\x14\x34\xc7\x49\x2e\x68\xb0\x46\x6f\x75\x53\x8a\xde\x09\x25\xf3\x35\xae\x5b\xbb\xa1\x05\x29\x97\x2c\xe5\x14\x93\x63\x59\x6e\xfb\x90\x3d\x4c\x83\x4d\x1f\xfd\xbd\x92\xae\x57\xd6\x30\x3f\x38\x25\x4a\x8c\xb0\x6b\xa2\x67\xe5\x8c\x5c\x53\x71\x32\x91\xa4\xa8\x3b\x42\xde\x09\xb9\xd6\xf1\xe8\x22\x1d\x2d\x68\x06\xe0\xd1\xaa\xc4\xa9\xde\xaf\xd8\xfe\x0d\xeb\xe3\x38\x61\x03\xac\x24\x4b\x59\x1c\x98\x93\x37\xb2\x72\x45\x8a\x5c\x62\x84\xa7\x09\x19\xd4\xf5\x93\x44\x0a\xb5\x1f\x4d\xfd\x42\xcf\x84\xe3\xb0\x28\x7b\x61\x01\x1e\x42\xbf\xe6\xf3\x18\x37\x2f\x11\x18\xb2\x50\x87\x84\xc7\x32\xa9\x36\x33\x66\x2b\x98\x9c\x66\x09\x8e\x74\xd4\x96\xf1\xe2\xff\xe7\x3f\xfe\xe7\x52\xc8\x7f\xfe\xe3\x7f\xc6\x3a\xa9\x6a\xbd\x6f\x77\xbf\xba\xe0\xa8\x2e\x40\x55\x24\x61\xa5\x92\x67\x90\x4b\x13\x03\x5b\xf5\x42\x4c\xd1\xe6\x31\x39\xd5\x69\xe6\x3c\xb0\x85\xa3\x49\x63\x73\x3c\x75\xa8\x82\x5e\xb2\x02\x10\x2c\x46\xfd\x61\xe9\x71\x29\x76\xee\x87\x2a\xc0\xde\x3d\x45\x83\x41\xca\x29\x1a\xb6\xbb\xfa\x74\xe6\x8f\xa5\xbe\xf4\x0b\xf8\x74\xa7\x90\xb5\x6a\xea\x7b\x7b\xa9\xa2\xf1\xf2\x83\xe2\x3a\x3b\xb6\x4f\x5b\x8f\xd4\xb5\xf4\x75\x0b\xd2\xb7\x35\x3e\x51\x34\x5a\xba\xfd\x22\x7b\x01\x83\xe8\xda\xd3\x90\x1b\xf5\x46\x5f\xbd\x96\xb6\x0d\x24\x70\x59\xff\x58\x7b\xc6\x8b\x44\x5b\x55\x97\x9c\x45\xa1\x37\x60\xa7\x7c\x0a\xc0\xd0\x02\x05\x58\x91\x15\x3a\x2e\xb7\x52\xb6\x49\xa4\x7c\xa5\xe0\xe0\xbb\xff\xe6\x01\xee\xeb\xa5\x3a\x42\x2c\xdd\xe0\x07\x84\xca\x57\x96\x61\xdb\xaa\xc9\x8b\x63\xbb\x49\x87\x03\x64\x65\x19\x18\x4d\x86\xb5\xef\x39\x1c\xe4\x06\x6c\xda\x3b\x55\x17\xa0\x80\xa2\xa2\x4b\x28\x26\x84\x45\x92\x02\xba\x61\x3a\xf0\x06\x2a\x10\x41\x76\x83\xb6\x90\xe1\xf2\xb1\x6c\xf8\xc6\x42\x69\xb1\x0d\x0b\x1b\xef\x96\x2b\xea\x07\x0a\x8b\xed\x40\xec\xf7\x5e\xa4\xa4\x22\xdc\x1d\x41\x3a\x08\xc8\x72\xbb\x27\x44\xf8\x46\x71\x01\x59\xe9\x09\x68\x1f\xb2\x88\x6f\xb8\xae\x6d\x88\x33\xc5\x68\x8a\xb6\xcb\x43\xdc\x89\x13\xb9\x05\xdf\x62\x67\x15\x79\x50\xbf\x56\x96\xe2\xbd\x68\xf8\x78\x96\x7f\x88\x72\xea\xcb\x57\x87\x4d\x00\x98\x35\xb6\x77\xbc\x1f\x00\xaa\x12\xf6\x8d\xdb\xef\xaf\x7c\x44\x4a\xbe\x17\x59\x51\x53\xad\xdc\x45\x87\xa0\x5e\xee\x65\x7b\x9f\xde\x75\x56\x57\x81\x6c\x1e\x70\xe2\xfb\x1e\x64\x1a\xa4\x22\x03\x4e\xcf\xba\x8d\x1e\x9a\x50\x80\xb1\x13\xb7\x13\x0c\xc6\x68\x43\x97\xf5\xf0\x16\xa6\xcb\x15\x38\x71\x9e\x92\x20\x65\xca\x03\xe9\x2d\xce\x5a\x3e\x86\xba\xc1\x16\x6a\xc1\x44\xf8\x50\x5e\x81\xd5\x3a\x0e\x4e\x15\xe5\x95\x71\xa5\xc8\x89\x43\x62\x1d\xf4\x49\x59\xf1\x2d\x8b\x95\xf4\xa9\x96\xdf\x7a\xce\xfd\x0c\xa2\x35\x6e\x2f\x48\xb7\xc6\xf5\x97\x4f\x2c\xe4\xe5\x7e\x7b\x82\x1f\x14\x91\x2d\x55\xbe\xca\xac\xf8\xd2\x53\x03\xad\x7c\x60\x1f\x7f\x75\xb0\xf0\xd5\xd6\x28\x9f\x3a\x30\x8a\x9a\x1a\x2d\xd0\x98\xfa\x7c\x2f\xcb\x07\xc1\x41\x6e\x20\xc3\x36\x9c\x52\xa8\x0a\x68\xf2\xcf\x67\xe8\x48\xab\xab\x36\x40\xc2\x9d\x9d\xbf\x66\x47\xf9\xd4\x52\xbb\xcb\x6a\xc6\x2f\x53\xf4\x4d\x33\x4b\x1a\x57\x2b\xc9\xa3\x03\xea\x02\x69\x98\xa9\xef\x7e\x36\x35\x09\xd9\x3f\x9d\x4f\x3d\x89\xdb\xcd\xd3\x67\x57\xfd\x29\x34\xca\xa7\x47\x32\x8d\x66\xe3\xee\x83\xd2\x9d\x60\xa3\x7c\xf6\x4f\xb5\x51\x3e\x7d\x0f\xe4\xfe\x7c\xe3\x65\xf9\x51\xc7\xb1\xec\xc7\x28\xe8\x93\x09\x76\xb7\xa2\x63\xc4\xc2\x68\xfb\x59\xc8\x88\x49\x48\xd6\x09\xf5\x01\x70\xac\xf6\x3e\x0b\x86\xa8\xf5\xa8\xf4\xdb\xb3\x64\xbf\x2b\x3b\x3f\x28\xab\xe0\x74\x90\x95\x2e\xbe\x81\xf5\x21\x2b\x60\xf3\x31\xb1\xb4\x2f\x2d\xf9\xc2\x11\x6f\x5a\x5f\x16\xf6\x80\xdc\x64\x46\x74\x06\x37\x3b\xd5\xcd\xb1\xd1\x14\xcf\x8a\xcc\x4c\x1d\x5c\x9f\x2d\x97\xeb\xab\x03\x96\x25\x84\x72\x66\x20\xa0\xd5\xae\x7a\x98\x0e\x1e\x67\x69\xf2\xfb\x28\xe6\xa6\x2f\x06\xeb\xc4\x00\x3a\x70\x75\x1f\x0c\xd6\xb1\xf6\x12\xbd\xd5\x30\xd8\x1c\x71\xd8\x5c\x63\xb1\x39\xe2\xb1\xb9\xc2\x64\xad\x3c\xcf\x80\xcb\xe0\xe9\x85\xcb\xb2\x47\x08\xc0\xdd\x72\x6f\xab\x0a\xaf\x7c\x9c\x72\x2f\x79\x99\x31\x66\x74\x5f\x80\xca\x30\x6f\x6d\xb6\x8b\x25\x7d\x70\x45\xec\xdb\xcf\x7c\xde\x2a\x36\x6b\x1e\xd2\x27\x16\xb7\xf7\x6d\x54\x5e\x96\xd4\x2c\xd2\xa6\x34\xac\xae\xdb\xa5\x90\x68\x6d\x3e\xf1\x24\xea\xb5\x80\xa0\xdd\xb1\x8d\x9d\xaa\x83\x2a\x20\x78\x2c\x6a\xd2\x21\xab\xb2\x48\xdc\xbf\x3a\xaa\x4e\xd9\x02\x36\x42\xd5\x94\x4f\x36\xc5\x13\x3a\x54\x01\xa0\xe7\x02\xfd\xe5\x6c\xcd\x88\xbc\x17\x70\xd6\xc0\xd7\xdb\xbc\x43\x04\xa1\x88\xd0\xae\xcc\x15\xdc\xb1\x77\x57\xb1\x59\xbd\xae\xeb\x6a\xe9\x55\x99\x25\xbd\xea\xf4\xfb\x60\x12\xd0\xed\xbb\x69\xc2\xfd\x5a\x44\x7a\x93\x4e\x60\x8b\xe6\xf3\x92\x20\xff\x0e\xb0\xcb\x6f\xd6\x34\x7b\xb9\xd9\xdd\x46\x74\xc1\xa2\x57\x80\x77\x34\x92\xef\xba\xce\x96\x07\xb3\x5a\x37\x1c\x32\x9c\x1f\x3a\x0c\x8c\xb4\xc3\x49\xc4\x42\x35\x6e\xcf\xf3\x66\x7b\x44\x17\x25\x47\x61\x72\xe4\x9f\xff\xf8\x6f\x33\x51\xd0\x8e\xea\x05\xf5\x3e\x16\xb8\x60\xef\x7a\x9b\x4b\x52\x73\xf0\x15\x38\x2b\x9f\xf6\xd5\x16\x0b\x6a\x5f\x4c\xb7\xc2\x41\x9d\x3a\xb6\x5c\xb2\x40\x47\x50\x6a\x4d\x41\x04\x68\x55\x87\xa5\x55\xea\x3e\xf7\x98\x7a\x2c\xe2\x91\x89\x3f\x40\xf3\x2b\xc6\x97\x68\x9d\xc8\x52\xa4\x1b\x56\xd7\x41\xb4\x54\x95\x2e\x1f\x38\x0c\x4d\xc0\x94\x55\x5c\x9e\x42\x80\xd7\x1e\xf9\xa7\x41\x20\xf2\x78\x1f\xbe\xeb\xa6\xfa\xe1\xcf\xc6\x7f\xd5\x50\x72\x7b\x9f\x0e\x4d\x26\x25\x89\x08\x8b\x24\x4c\xc0\xcc\x15\xe8\x59\x03\xa3\x03\xed\xe2\x8a\x5b\x4f\x5b\x2f\x5d\x32\x21\x55\xa7\x10\xff\x53\x95\x07\xa0\xbe\xcd\x67\x83\x9b\x3c\x06\xe4\xdd\x5d\xfa\x14\xc8\x0e\xb0\xf7\x82\x36\x29\x21\xae\x30\x71\xa6\x1d\x3f\x79\xa1\x89\x54\xcc\x6f\xc7\xcd\xef\xc7\xd8\x91\x3d\xd4\x0f\xa4\x2f\x97\x44\xfa\x72\x4a\xa4\x79\xbf\x3a\x79\xa5\x7f\xdf\x9d\xae\xc8\x49\xa5\xc6\x0d\xb1\xbe\x81\xe7\x98\x4c\x3a\xa4\x0e\xf5\x94\xd6\x85\xa6\xd1\xa0\x94\x43\xa4\x4e\x98\xef\x35\xb2\x57\x9f\xd3\xcb\xf3\x43\x8f\xcf\xb4\xfd\xec\xa7\xcd\xf2\x55\x1e\xec\xdb\x66\x2d\x65\xd2\xcf\xc8\xf6\xfd\x6c\x36\x2d\x8d\x48\x5e\xcb\x9a\x3a\x1e\xaa\xa9\x7f\xea\xc6\xf1\xe6\xf3\x8c\x6a\x1b\x26\xd7\x22\xdc\x83\xf6\x7c\xc4\x0f\x9e\x96\xe6\xe0\x92\xe1\x72\xe8\x75\x5b\x7e\x45\xaa\x4f\xcc\x97\xae\x64\xf6\xee\x4e\xc1\x87\x3b\xc4\x5e\xcc\x6c\x5f\xb2\xf1\x6a\x4c\xbe\xbb\x98\x1d\x91\xe9\xa7\xd9\x11\x61\x32\x18\xbf\x22\x1f\x75\x05\xb3\x0e\x09\x42\xf7\xa1\x4e\xed\xd5\xf5\xa1\x62\x22\x56\xe0\xda\xf2\xeb\xd2\xb8\x26\x54\xae\xf7\xd8\xc7\xc3\xa9\x6a\xff\x1c\xdb\xd8\xb5\x83\xdd\x16\x06\x7b\x07\x61\x9a\xe3\x62\xab\x70\x99\x66\x2f\xfa\x6e\x06\x21\x6c\xbc\x3a\x21\x23\xc2\x1e\x68\x20\x4f\xc8\xf1\x52\x08\xa8\x48\x0a\xb9\x85\xc8\xf1\x82\xa6\xe4\xf2\x6a\x76\x71\x82\x3e\x11\x2c\x96\xe9\x8e\x6c\xba\x88\xcb\xd5\xe5\x87\x3f\x6a\x3c\xb6\x23\x8c\x63\xd2\x76\x32\x3f\x80\x41\x50\xff\xa1\xfe\xc4\x51\x0c\x9f\xee\xad\xff\x57\x3e\x5b\x1a\xf1\x90\x16\x62\x2a\xa6\x9c\x57\x42\x35\x97\xae\xa8\xe3\xf2\xe9\x73\xe6\xaa\x87\x40\x81\x18\xb2\x0c\x57\xf2\xdb\x01\xe0\x4d\xae\x61\xed\xc4\xd0\x81\x6e\x27\x12\x9c\x09\x17\xcc\x00\x42\x4b\xc0\x8a\x05\x3f\x31\x60\x9f\xe7\xaf\x5f\x7f\x19\xa8\x8e\xe1\x5f\xec\xc4\xe4\x88\xe8\x23\xb0\xe1\x51\x83\x59\x41\x77\x11\x14\x23\x35\x5b\x58\x76\x3d\xd2\xf0\xfe\xac\x11\xb0\x8f\x56\x60\xef\xc1\x69\x12\x0d\x80\xa7\x65\x82\x12\x5f\x66\xac\xc7\x77\xda\x87\x18\x92\x7e\x08\xa9\xbb\x2b\x1e\x6c\x7a\xd2\xcc\xc9\xd9\xc7\x69\x5f\xdb\x25\x20\x23\xff\xdc\x6d\x2c\x45\xcd\xa9\x0f\x60\xb6\x18\x92\x2a\x42\xc0\x51\x30\x64\x91\xcb\xdc\x5b\xd8\x15\x1f\xbb\x8c\xc3\xa2\xa2\x62\x5d\x56\x35\xab\x38\x69\x6e\x45\x42\xab\x71\xda\x64\x49\xb0\x04\xa9\x46\xdb\xb7\x2d\xc6\xa0\x5e\x27\x51\x2d\x6d\x0f\x3a\x0f\x9c\x89\x88\x6d\x28\x01\x50\x02\xc8\xf1\x46\x26\x4b\xab\xb8\x7a\x37\x89\x98\x29\x00\xa3\x0b\x33\xf8\x4d\x41\x3e\x99\x4a\x91\xed\x22\x95\x0c\x25\x92\x05\xeb\x98\x07\xd4\x59\xe5\xa9\x7c\x40\xa8\x47\xc5\x15\xdf\x24\x22\x2b\x9d\x4b\xb1\x90\xc1\x61\x56\xa6\xa8\x5c\xf2\x94\xdd\xd3\xc8\x9d\x6c\xaf\x7c\x10\x5b\x68\x95\x02\x26\xba\x14\x84\xc5\x65\x39\x64\xf0\x1f\xe9\xbe\x1a\x9d\xda\x67\x68\xf6\xf9\x9b\xa1\xba\x19\x13\x3b\xcc\xb9\x4b\x79\x5b\x64\x2e\xfe\x06\x1d\x0f\x61\x85\xd0\xd7\x45\xb0\x16\xe4\x1a\x89\x36\x79\xc9\xc7\x6c\x4c\x12\x1e\xaf\xb2\x76\xed\x6d\xaf\xf5\xf6\x40\x06\x89\x3b\x36\xc1\x03\x90\xc9\xd4\xc4\x28\x7c\xb6\x4b\x43\x45\x34\x43\x7e\xdc\x86\xf2\xd4\xe8\x74\xbd\x50\xe8\x01\x01\x8f\x97\xb9\x67\x71\x26\x0d\xb1\xe5\x6b\x56\x66\xff\xb0\xf2\xa1\x14\x75\x44\xda\x17\xf7\x59\x48\x03\x1c\xfa\x31\x33\x54\xeb\x71\x2d\x67\x38\xed\x4b\x15\xfb\x92\xa5\xaa\x93\x7c\x39\x1f\x1d\x1d\x81\xfa\xe6\x3b\xa6\x43\x01\x49\x42\x79\xea\xcf\xbc\x5d\x3e\x4a\xac\xd5\xd5\x7f\x6c\x98\xd2\x85\xc8\x65\x0f\x42\xf2\x54\x92\x63\x2c\xa4\xba\x7d\xfd\x4e\xc6\x25\x36\xee\xb0\x45\x43\x93\x76\x9f\x90\x81\x60\x0c\x04\xe3\x5f\x9b\x60\xc4\x42\x1a\xb6\xca\x0b\x96\x76\x7b\x71\x4f\x4b\x71\x3f\x1b\x71\xc3\x95\xc9\xb0\x7c\x1d\xde\x4c\xba\x99\x1f\x60\x1d\xf7\xb8\x87\x51\xfa\x71\xe6\xe8\xe4\xd7\x0a\xdc\xf9\x81\x0d\xdb\x27\xa4\xfd\x0d\xb5\x2c\x44\x02\xd8\x9c\x80\x81\xc9\x18\x4e\x3d\x4f\xdb\x5c\x73\xb4\x5f\x99\xde\xe7\x0b\xf0\x7f\xbf\x86\xe0\x0d\x13\x8a\x80\xbe\x33\x2f\x17\x2c\xa0\x79\xa6\xbd\x39\x3a\x1c\x83\x8b\x29\x06\x2c\x85\x3e\x0a\x8f\x90\x57\x68\x4e\x34\x19\x05\x2b\xfe\x2d\x5d\x24\x16\x1d\x5f\x4e\x6c\xdf\x8d\x23\xdb\x73\x03\xff\x00\x49\xa5\xf2\xd7\xf6\x6d\xf9\xf7\xcd\xd9\x0c\xdf\xfa\x87\xd1\x3d\x7e\xe0\x92\x19\xf7\x10\x28\x23\x00\x07\xc4\x98\x14\x30\xd5\xfa\x9b\xd1\x17\x5f\x7f\xdd\x62\x63\x7b\xbe\x63\x9f\xf9\x92\xdb\xe1\x53\x35\x13\x14\xc9\xed\x7a\x84\x4a\x78\xaa\x55\xd8\xa3\x0e\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x84\x7b\xc5\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xbe\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xe6\x33\x44\x49\x0c\x51\x12\xc5\x33\x44\x49\x0c\x51\x12\xcf\x1f\x25\xd1\x52\x71\x47\xc9\x18\x98\xef\xcc\xf5\xae\xbd\xe3\x96\x53\xae\xb3\xe3\x3d\x22\xcd\xa1\xfe\x72\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xfd\xa8\x71\xc8\x73\x38\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x97\xcf\x60\xc1\xb7\x9e\xc1\x82\x3f\x58\xf0\xf5\x33\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x03\x2e\x1b\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xe6\x33\x58\xf0\xeb\xcf\x60\xc1\x1f\x2c\xf8\xf5\x67\xb0\xe0\x0f\x16\xfc\xe2\x19\x2c\xf8\x83\x05\x7f\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x64\xc8\x73\xd8\x73\x84\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xa4\xad\x1a\xd2\x56\x0d\x79\x0e\x87\x3c\x87\x43\x9e\x43\xff\xfc\x87\x3c\x87\x03\xc1\x18\x08\xc6\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\x43\x9e\xc3\xda\x33\xe4\x39\xf4\x0b\x90\x43\x9e\xc3\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\x65\xc5\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xbe\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xe6\x33\x44\x49\x0c\x51\x12\xc5\x33\x44\x49\x0c\x51\x12\xff\x8e\x79\x0e\xfb\xd8\xc2\x9a\x98\xab\xdb\xfe\xb5\x44\xd3\x65\xc9\x6b\xba\x66\x9d\x67\xb6\x36\x5f\x1f\x3a\x4c\x16\x28\xe2\x8a\x96\xdb\xb3\x24\xf7\xae\x40\x42\xc6\xae\x75\x5c\xa9\x46\x2d\xf7\xb2\xf4\xf6\x96\x26\xc7\xa3\x87\x99\x47\xff\x16\xcc\x9a\x07\x62\x8b\xea\x14\xf4\xfc\xe1\x18\x25\x99\x42\x0f\xb3\xe6\x2b\xc5\x16\xce\x0f\xa0\xbf\xf9\x01\x1c\x60\xdd\xd6\xd5\x35\x5d\x2a\x96\x46\x02\xca\x84\x0e\x22\x71\xcf\x52\x9c\x0d\xfa\x0b\x59\x93\xcb\x88\xd8\x70\x29\x59\x78\xa4\x24\x72\x74\x35\x77\x75\x1a\x88\x38\xe3\x98\xb2\x12\x25\xee\xf9\x01\x8f\x97\x3c\xe6\x92\xcd\x0f\xc8\x88\x80\x97\x8a\xb5\x1c\x23\xe2\xe8\x79\x92\x88\x66\x72\x4c\x8a\x95\x39\x41\xa2\xe6\xca\x43\x16\x4b\x1e\xd0\x48\x4f\xb0\xde\x0f\x8f\x09\x8d\x92\x35\x8d\xf3\x0d\x4b\xad\x76\x70\x00\x5c\xbd\x6a\xb3\xa0\x16\x0e\xd1\x14\xeb\x54\x6c\xe2\xe1\x88\xf3\xcd\xa2\x29\xb7\x27\x29\x3b\xbf\x3c\x9d\x75\x1d\x8f\x29\x36\x23\x3c\x0e\x79\x80\x32\x49\xe1\x16\xbd\x36\x69\x28\x81\x7a\xf1\xcc\x00\x6a\xc1\x96\xc2\x8d\x78\x68\xbc\x23\xaa\x3b\xef\x5c\x17\x42\x44\xac\x99\x55\xb3\x85\xea\xd4\xa4\xf2\x99\x2d\xe1\xe1\xa9\xb6\xe4\x3c\x73\xd1\x12\x1e\xdc\xe1\xff\x89\xdc\x89\x80\xd4\xda\x6a\x1c\xbb\x75\x12\xb4\x13\xb7\xb5\x87\x52\x68\x05\x53\x8b\xdc\x51\xce\x23\x23\x4b\x11\x45\xe2\x1e\xa1\x86\xc2\x67\x21\x8e\x21\x5d\xf8\x1d\xca\x26\x78\xb1\x6f\x23\x2e\x59\x4a\x23\xf5\x8b\xab\xe7\xf9\x9c\x8c\x30\x88\x41\x9d\xea\x4d\x42\x53\x9e\x89\xf8\x88\x40\x24\x93\x11\x2a\x4c\x97\x4b\x21\xc8\x82\xa6\x20\xe8\x14\xc3\xfd\x66\xcf\xe1\xca\xf1\x94\x48\xc4\xfe\x92\xd3\xe8\x5b\xf4\xbb\x33\x84\x8e\x2f\x35\x85\xe3\x19\xb4\x31\x4a\xbb\x62\x48\x37\x12\xf9\x09\xe6\x41\x4b\x6f\x91\x45\xf9\xcf\x00\xff\x39\x1e\x8f\xc9\xdf\xad\x19\xc8\x34\x67\xc6\x7d\xbe\xf0\x40\xc3\x31\xfe\x40\xdc\x1e\xaf\x5a\x5b\xd9\x31\x54\x39\x57\xb5\x00\x1e\xf7\x98\x9c\x6b\xb0\x3d\xe7\x0b\x83\xb5\x4d\xd0\xbd\x25\xd6\x9c\x95\x40\x0b\xfd\xdd\x2a\xd2\xf1\xaa\x1c\x7a\x56\x8c\x4c\x65\xb9\x3b\xd6\xce\xfc\x06\x0e\xa9\x93\xe8\xea\x2e\x0a\xcd\x86\x58\x42\x5b\x10\x6d\xe1\xbf\xf9\xeb\xd7\x5f\xbc\xc5\xff\xc7\x37\xc5\x37\x37\x6b\x91\xca\x51\xc0\xd3\x20\xe7\x12\x18\x17\xfd\x91\x6b\xa0\xbf\xfd\xad\xf5\x6b\x50\x81\xca\x97\xd8\xe6\x55\xd1\x28\xa1\x29\x8b\x31\xd9\xed\x2a\x15\x79\xa2\xb8\xb5\xf9\x5c\xd2\x28\x7a\xe9\x54\x65\xeb\xec\xab\xe8\x9c\x50\xe0\x0b\xd3\x9b\x39\xc3\x34\x8a\x2c\x09\x15\x2e\xe8\x07\x3c\x0f\xc8\x82\x79\x90\x9c\xba\xda\x88\x67\x8c\xff\x96\x8d\xdf\xb3\x23\x32\x3a\x22\xb7\x00\x87\xe3\x31\xb9\x81\x2b\x47\xf4\x95\xf3\x76\xba\x11\x29\x23\x89\x62\x4e\xb3\x8c\x6f\x19\x59\xa0\xe7\xf1\xce\x68\x46\xb4\xce\x8a\xb0\x2c\xa0\x09\x23\xc1\x9a\xa6\x34\x90\x2c\xd5\xd3\xbe\x40\x07\x4e\xe7\x65\x78\x09\x54\x6a\x43\x43\x36\xca\x13\x3c\x16\xd9\xab\x02\x1d\x41\xb8\x8b\x46\x1d\xf7\x6c\xa1\xb8\x5f\xa6\x91\x87\xbd\xe3\x21\x4b\x22\xb1\xdb\xb0\xd8\x89\x4e\xf5\xf7\x49\x2a\x42\x73\x48\xa1\x5f\x75\xa7\x00\x27\xa5\x22\x96\x2c\x0e\xad\xa3\x4e\x83\x3b\xfd\xc3\xdf\x55\xf3\xb2\x7f\xf2\x9b\xdf\xf9\x6e\x40\xc8\xb6\xa6\xfb\xdf\x90\xda\x2d\x70\xa1\xb2\x36\xe6\xa9\xaa\x4b\xe8\xcb\x15\xde\x38\xbf\x7a\x36\xd6\x50\x4f\xd2\x88\x1a\xfb\x32\x88\xa0\xaf\xec\x41\x53\x41\xad\x59\x72\x00\xf7\x6b\x08\xa3\xac\xd0\x7c\xcb\xa1\x43\x27\x9a\x76\xe2\x29\x75\xef\x84\xce\x34\x7d\xa4\xff\x52\x42\xcd\x98\xa0\xfb\x14\x50\x93\x87\x44\x71\x54\x32\xda\x59\x32\xcd\x4b\xc8\x92\xed\xf4\x8b\xb3\xf0\x68\x4c\x82\x94\x69\xaf\xed\x4c\xdf\x6e\x91\x92\x98\x47\xaf\x8e\x8c\xe7\x75\xc8\x96\x34\x8f\x64\x46\x70\x59\x0a\x74\x69\xe8\x91\x69\xa4\x20\xf7\x0a\x57\x4e\x74\x2e\x73\x35\x89\x0b\x2b\xad\x39\xf0\xad\x06\x7f\x16\x29\xa3\xc1\x61\x88\xf8\x82\x37\xf5\xf8\x84\x67\x78\xc7\x46\xe4\x4f\x9a\x95\x53\x13\x32\x23\xfd\xf9\x48\x93\x08\xc5\x18\x83\xe6\xb1\x32\xb0\xf3\x1e\xf3\x38\x88\xf2\xd0\xa8\xe6\x03\xaa\x98\x65\xe8\xa0\xec\x86\x20\x91\x8e\x45\xb1\x24\xe8\xee\x95\x9a\x89\x5b\xd6\xb2\x27\x77\xe1\x9e\x5b\x05\x22\x0a\x31\x95\xdd\x3b\x85\x3b\x68\xe7\x5d\xfa\x51\xe7\x80\xae\x4e\x41\x32\xf6\x6d\x13\xe2\xc0\x1f\xb5\x58\x6c\x89\x27\x29\xa3\xea\x36\x05\x77\x84\xae\x28\x8f\x9d\x47\x16\x8f\x09\xaa\x53\xa3\x7b\xba\xcb\x1a\x4e\xb3\x68\xe7\x3c\x22\x31\xdb\xb2\xb4\x72\xea\x9c\x5a\xcd\x9e\xd9\xe8\x4b\x28\x10\x06\xa4\xa3\xb0\x08\x24\x22\xcb\xf8\x22\x32\x03\x97\x8e\x1c\xea\x83\x9b\x84\x05\x6e\xb1\x1b\x17\xe2\x77\x6d\x69\x17\xf0\xbd\xb2\xb3\x5b\xe4\x6e\xfe\x0a\x94\x23\xb4\x0d\x76\x99\x14\x29\x5d\x31\xf3\x53\x26\xa9\xcc\x11\x30\xa8\xb7\x66\xe1\xa5\xa5\x51\xbc\xe3\x71\xa8\xb0\x91\x01\x69\x12\xe5\x29\x8d\xca\x5f\x02\x11\xa3\x09\x29\x3b\x21\x7f\xfa\xb3\xfa\x45\xf5\xcf\x42\x1d\xfd\xa5\x7f\x9d\xc7\xa3\xd1\xa8\xf8\x0f\x4d\xb8\x89\x25\x23\x34\xe1\xec\x41\xb2\x18\x1a\x8f\xef\xbe\xc9\xc6\x5c\x1c\x6f\xdf\xcc\x63\x1c\xf8\x2c\xcf\xa4\xd8\x5c\x33\x54\x8b\x9f\x33\x10\x14\x01\x69\x57\x22\xb6\x14\xad\x39\x21\xe8\xf7\x17\xa3\x03\x5d\xc6\x64\x36\x0e\xd2\x70\x9c\xa4\x42\x81\x23\x00\x3c\x34\x16\xe9\x6a\x1e\x2b\x04\x07\xdf\x01\xd7\x72\x42\x3c\xcd\xaa\xba\x55\x9c\x90\xdb\xd7\x2f\xe2\x99\xfc\xbd\xf3\xfd\x07\x9e\xc9\x2a\xe4\x1a\xb3\xd4\xdb\xc2\xe3\x55\x1e\xd1\xb4\xd9\x00\x80\x1a\x08\xb5\xb3\x67\x51\x9e\x49\x94\x2a\xb7\x06\xc0\xea\x8f\x91\x86\x80\x02\x1c\x74\x16\xac\xd9\xa6\x0c\x66\x13\x09\x8b\x4f\xa7\x93\x1f\xbe\xbc\xa9\xfe\x5e\x3b\xfb\xf5\xb9\x57\x9d\x84\xc1\x1e\x46\xd3\x05\x97\x29\x4d\x77\x64\x32\x25\x59\xbe\x18\x99\x69\x1e\x9f\x4d\xce\xaf\x2b\x88\x07\xf5\x18\x6b\x85\xaa\x90\xbb\x01\x19\x16\x04\x30\xc4\x45\x52\x60\xbc\x8a\x36\x3e\x6e\xc8\x96\x53\xcb\x0d\x04\x0d\x7c\xf8\xa9\xdd\xaf\x58\x36\x27\x6a\xac\x44\x85\xd2\xc6\xbe\x6b\x1e\x4d\xba\x75\x0a\xab\x57\xab\x1a\x80\xaf\xe0\xa6\xad\xa1\xe8\x20\x8c\xd8\x40\x83\x9f\x85\x1a\xd6\x88\x0e\x00\xb9\x69\xca\x44\x5d\xda\x32\x05\xc2\x58\x5f\xd0\x31\xf0\x2d\x2c\xcd\x8c\x64\x1b\x88\x78\xcb\x52\x49\x52\x16\x88\x55\xcc\xff\x5a\x74\x9e\x19\xfb\x2c\xd4\xc6\x68\xf0\x7a\x3c\x96\x2c\x55\x1c\x0e\x60\xa6\x23\x40\xc4\x1b\xba\x23\x29\x53\xc3\x90\x3c\xb6\x3a\x34\xde\x21\x1f\x15\x67\xcb\xe3\xa5\x38\x81\xd4\x28\xd9\xc9\xf1\xf1\x8a\x4b\x73\x01\x03\xb1\xd9\xe4\x31\x97\xbb\x63\xb0\x1a\xf1\x45\xae\xb6\xe4\x38\x64\x5b\x16\x1d\x67\x7c\x35\xa2\x69\xb0\xe6\x92\x05\x32\x4f\xd9\x31\x4d\xf8\x08\xe6\x1e\x03\x22\x18\x6f\xc2\x17\xa9\xbe\xb1\xd9\xa1\x0b\x6d\x35\xb1\x1d\x5c\xae\xb6\x6d\x50\xb7\x4b\xc7\x13\x22\xeb\x8e\xbc\x47\x01\x6d\x43\x7f\xaf\x2f\x6e\x66\xc4\x8c\xee\x8c\xbd\x44\xe0\x97\x5f\x66\xe5\x3e\x28\xa0\xf1\x78\x69\x98\x2c\x50\x4f\xdb\x3a\x09\xa4\xf0\x11\x77\xf0\xdb\x59\xbe\xd8\x70\x99\x59\x39\x35\xc4\x98\x9c\x41\x70\xa6\xa2\x5c\x79\x12\x52\xc9\xc2\x31\x99\xc4\xe4\x8c\x6e\x58\x74\x46\x33\xf6\xec\xbb\x00\x9c\xe6\x48\xc1\xb6\xef\x3e\x78\xe2\x60\x7d\x0a\xde\x02\x91\x7a\xb6\xad\x7e\x51\x15\x99\xac\x86\x63\x98\xe8\x9d\x32\x5e\x96\x12\xbf\x27\xb5\xd9\xd8\x1a\x25\x6d\xb1\x95\x79\xbc\x8b\x1b\x65\x74\x8c\x03\xd4\x64\x4a\x0c\x4a\x43\x0c\xb6\x60\x91\x50\x67\x4b\x68\xb5\x11\x73\x99\x8a\xfc\xcc\xc5\x40\xde\x9f\x8c\xbc\xaf\x45\x56\xda\xf3\x9f\x81\xb4\xdb\x5e\xf9\x75\xb2\x6e\xbf\x6b\x92\xf4\xca\xcc\xea\xe4\xdc\x7e\xf9\x9c\xa4\x7c\x20\x73\x03\x99\xb3\xb7\x60\x20\x73\x3f\x1b\x99\xb3\xb1\x43\x3f\x12\xd7\xc4\x35\xe5\xb3\x3f\x91\x63\x0f\x09\x84\x8e\x4d\xa6\x7d\xf4\x4a\x6a\xa7\xf5\x07\xd5\x08\x95\x97\x93\xe9\xf6\x2b\xb8\x56\x93\xe9\xf6\xed\x2b\x23\xe1\x9a\x63\xe1\x14\x5f\x27\xa8\x2e\x9f\xa8\xbb\xb9\xa4\x01\x03\xab\xd8\x7c\x7e\x50\x33\x40\x14\x7a\x20\x90\xe8\x23\x21\xee\x8c\x22\x8e\x9b\x2f\x9d\xfa\x57\xe3\x56\x63\x45\xce\x4c\xa6\x15\xc7\x0d\xac\x08\x07\xa6\x31\xad\x61\x00\x24\x42\xe5\x18\x1c\x21\x9d\x44\x79\x3e\x97\xa0\x96\xc8\xb3\x86\x47\x65\x2d\x3c\x14\x82\x76\x8a\xa2\x7a\x22\xd5\x4a\x34\x57\xa7\xf5\x02\x73\xf3\xb9\xea\x4f\x57\x96\x2b\xd6\xaf\x91\x5f\x56\x1d\x95\xc7\xee\xe0\xd3\x42\xee\xb2\xf7\x69\x0c\xd1\x62\x8a\xac\x54\x3c\xdc\xd0\x33\xf1\xa2\x3c\x0a\xa8\x74\x70\x75\xcb\x33\xd4\x70\x62\x7a\x12\x2a\x49\x92\xa7\x89\x50\x37\xf5\xe5\x64\xa9\xb3\xfc\xad\x59\xb9\x35\x6a\x1c\xe3\x33\xd3\x9e\x22\xc2\x68\xfb\x04\xc3\xed\x8f\x18\x4d\xe3\x62\xdb\xf4\x0e\x96\xfd\xaa\x09\xe4\x19\x68\xa4\xbd\xde\xda\xf3\xb9\x34\xdb\x31\x76\xea\x93\x9f\x9c\xf9\x22\xe5\x0c\xd5\x71\xee\xbe\x52\x17\x98\x51\x4d\x9d\xfb\xff\x85\xca\x74\x6d\xe9\x00\xa0\x55\xa3\xd4\x3f\xf0\x38\x7f\x68\x3f\xf5\x85\xad\xb7\x38\xd0\xdf\xc2\xd1\xdb\x24\x72\x37\x26\xe5\x30\xb6\x79\x18\x6d\xa5\x3c\x6b\xc5\x2c\xea\x59\x89\x2d\x4b\x63\xb4\xb2\x14\x8e\x3b\xe2\x48\xfb\x8d\xaa\x69\xa7\x22\x5f\xa1\x47\x81\x51\x9a\x6a\x8e\xb8\x14\xaf\x9d\x4a\x66\xdc\x5c\x38\x97\xaa\x61\x91\xba\x43\x4d\xf5\x52\x84\x88\x16\xe0\x4c\x7e\x4b\x98\x5a\x3f\x5e\xec\x50\x1d\x92\x2d\x5e\x44\x77\xd4\x72\x19\x24\xba\x85\x0a\x90\xbb\x12\x7c\x47\xc4\x56\xbf\x8a\x0c\xfd\x5f\x8f\xa5\x00\x9f\x4a\x35\x17\xa3\xa1\x70\x1b\xf5\x23\x11\xd0\xa8\x08\x86\xd4\x2a\xcb\xc9\x92\x54\xf0\x99\xc1\x65\xd6\xfe\xf6\x02\x35\x5c\x24\x03\xef\x8a\x93\x14\x2c\x1f\xf0\x89\x5a\xbb\xe6\xb5\x00\x72\x16\xf8\x9d\x48\xc6\x1c\xa3\xf2\x0e\x15\xb0\xae\xcc\x19\x8e\xe0\x88\xdc\x2b\x34\x57\x45\xce\x6e\x7c\x80\xfa\xd3\x51\x65\xfb\x1d\x83\x15\xf1\x2b\xa5\x2a\x56\xdd\x6c\x67\xa7\xb1\x8d\x8c\x20\xab\x62\x0a\x2e\x0a\x47\x8e\x59\x15\x53\x38\x22\x14\xb0\x46\x93\xfd\x23\xda\x82\x6c\xd3\xae\xa2\xc2\x63\x99\x73\x06\x5d\xf0\x95\xd0\x91\x62\x36\x26\x3d\x4a\x46\x5e\x66\xb9\x1b\xc3\xd0\x8c\xfc\xf3\x1f\xff\xcd\xe4\xfa\xf5\x3f\xff\xf1\x3f\xaf\xb4\xf7\x38\x18\xf6\x58\x48\xd4\xac\xbf\x25\x5c\x12\x9e\xc5\x87\xb2\xd4\x02\x77\xd3\x71\x82\x57\x39\x49\x85\xe2\x5d\xac\x03\x80\x10\xb6\x70\x42\xf5\x14\x96\x73\x76\x52\x5c\xe3\xe2\x7f\x82\x2b\x85\x88\x1a\xe0\x7d\x30\xea\x06\xed\x42\x8a\xdf\xda\x24\x11\xdb\xa8\x93\x86\x88\xbe\x44\x1b\xf6\xa4\xb3\x6f\xdd\x7b\xc7\x25\xa7\x51\xb4\x23\xff\x8f\x82\x70\x92\xb2\x11\xf8\xa3\x14\x56\x96\xa9\xda\x22\xa6\x33\x5f\x16\x48\x3f\xc8\x37\x3e\x89\x40\x3d\xa6\xfa\x26\xb2\xf7\xba\xca\xa7\x88\x9d\xea\xfa\x36\xd4\x1d\xbb\xd3\x1e\x35\x64\x7a\xd5\x4e\xfb\x7a\x82\x33\xd0\x72\x67\xc8\xbd\x9e\x31\x34\xe0\x4a\x46\x8e\x9d\xc0\x6e\x9b\x84\x2f\xc6\xac\x66\x4d\x50\xa4\xbe\xc2\x0d\x1a\x7a\x7d\x98\xe9\x9b\xab\xc3\x9f\x4c\x1a\x4c\xa7\x27\xe8\x82\x95\x45\x68\xc1\x75\xa9\x60\x36\xf4\x86\xa3\xc1\x65\x1f\xda\xd8\xe9\x5f\x1c\xbb\x49\x5f\x37\x64\x4a\xf8\x74\x7c\xde\x1a\xdb\xf4\x6b\x4a\x6f\xf3\x5c\xd9\x4c\x3a\x1c\x2e\x63\x0f\xba\x1e\x01\x70\x3d\x6f\x5a\xf2\x15\x3d\xda\x4d\x33\xd1\xe5\x91\xbb\x8e\xfb\x69\x19\x47\x88\x17\x8e\x03\x95\x5b\x36\x0a\x2d\xeb\x49\xf8\xb3\xc0\x95\xbe\xc5\x8a\xd0\x16\x12\x88\xae\x88\xac\x3b\x29\x3d\x1d\x8d\x40\x80\x2e\x7c\xbe\x4e\xd1\x39\x37\x49\x18\x4d\x0b\xe7\x39\xf0\xfd\x26\xc5\xbc\x4a\xfb\xb2\xe9\xd9\x38\x41\xb2\x5a\x41\xe9\x56\x11\x20\xf1\xa5\xaf\x18\x14\x85\x3f\x83\xa2\x90\x27\x74\xb3\x88\x44\x70\xf7\x1c\x5a\xc2\xc9\xf4\xf4\xe3\x3b\xd5\x79\x5d\x45\x58\xbc\x68\xea\x07\xcb\x09\xd5\x95\x83\xc5\x9b\x41\x33\x38\x68\x06\x07\xcd\xe0\xbf\x9d\x66\xb0\x40\x0a\xbd\xd4\x82\x71\x1d\xbb\x94\xcf\xfe\x4a\x41\x25\x6d\x28\xd8\x39\xa8\x4d\x1b\xad\xa1\x91\x92\x46\x7c\xf9\x64\xbb\xe8\x57\x0b\xbb\xf5\x82\xcc\xae\xce\xaf\x4e\x30\x2f\x41\x9c\x47\x11\x5d\x20\x0d\xdf\xd0\x38\x07\x59\x83\x86\x21\x90\xf2\x31\xf9\x91\x19\x94\x80\xe7\x86\x14\xc1\x8b\xe9\x68\xc5\x9c\xc2\xc5\x0b\x85\x22\xd6\x34\x0e\x23\x46\xfe\xf4\xe7\xff\xa5\x0e\x2b\x02\x27\xda\xe9\x08\x63\xa7\x34\x65\x26\xe2\x63\xd2\x5a\xb8\x22\x2a\xf1\x48\x3a\xf9\xa2\xcf\x60\xbc\x71\x11\xb7\xdc\xcd\x16\x92\x5e\xdc\x77\xc6\x14\x41\xa6\xa9\x6b\xf7\xf5\xec\xf7\xcb\x07\xdc\x87\x4d\xee\x8a\x2f\x7a\x34\xff\x19\xf0\xd0\xe5\x03\xda\x36\xa7\x90\x45\x4c\x3a\x39\xeb\xf6\x90\x07\x88\x86\x3b\xed\xba\x3a\x9e\xaf\xf3\x58\xdf\x1e\xe7\xc0\x8f\xbe\x3b\x5e\xc8\x78\xe4\x87\x91\x7d\x89\x1b\xaf\x8a\x53\x5b\x7f\xa3\xa0\x5c\xff\xad\x0a\x8f\xfa\x5b\x6b\xbd\x03\x57\xda\x87\x2b\x0d\x44\xbc\xe4\xab\xe7\x62\x4b\xcf\xa0\x77\x17\x5f\x8a\x6f\xdc\x8c\xa9\x9e\x93\x8b\x33\x0d\x8a\x0e\x07\xd6\x74\x60\x4d\xbd\xdb\x30\xb0\xa6\xff\xaa\xac\x29\xe2\x85\x3d\x78\x53\x1b\xc5\x94\xcf\x23\x98\xd3\x5c\x8a\x53\x4d\x3b\x80\xdf\x75\x11\xc6\x56\x5a\xbb\xa1\x0f\xf8\xe1\x94\xa5\xdf\x8b\xcc\xa5\x6b\xac\x25\x5c\xaf\xb6\x07\xe7\xf6\x58\xc4\xa3\xbf\xb2\x54\x1c\x99\xb4\x68\x1b\xfa\xa0\x23\x37\x15\x3a\xb0\x65\xf6\xda\xd4\x20\xd1\x10\x8d\x21\x1a\x51\x51\x47\x08\x8b\x67\x34\x58\x83\x19\xc7\xab\x4b\xf6\xd0\xf8\xcf\x61\x3b\xfc\x4c\x40\x03\xc6\xfb\x50\xf7\x81\x84\xbb\x49\x38\x72\xe7\xcf\x45\xc2\xbf\x87\xde\x5d\x24\x1c\xdf\xb8\x49\xb8\x9e\x93\x8b\x84\xaf\x8b\x0e\x07\x12\x3e\x90\x70\xef\x36\x0c\x24\xfc\x5f\x95\x84\x23\x5e\xd8\x83\x84\xdb\x28\xa6\x7c\xf6\x27\xe1\x40\x1c\x1d\xa4\xaa\xb7\x62\xa1\x97\xd4\xeb\xd6\x16\x3c\x52\xba\x47\x64\x38\x39\xdf\x4b\x97\xe0\xa5\xaf\x8b\xa6\x9e\x6e\x54\x0c\x31\x10\xd3\x6e\x62\x9a\x08\x11\x3d\x0f\x21\x9d\x0a\x63\x01\xb5\x89\xa8\xfa\xd5\x45\x40\x61\x1e\x4d\xe2\x99\xe8\x4e\x06\xc2\x39\x10\x4e\xef\x36\x0c\x84\xf3\x5f\x93\x70\x2a\x5c\xd0\x9b\x68\xaa\xc6\x8f\xa5\x90\x37\xfc\xaf\xbd\x9c\x95\xa0\x31\xc9\xf8\x5f\x41\x92\xcc\x33\xf4\x30\x2b\xfd\x7e\x09\xcd\x32\xbe\x8a\x37\xea\x64\x78\xd3\x16\xea\xdc\x00\x22\x1a\x93\x73\x13\x70\x2f\x05\xf9\xe2\xad\xee\x4c\xbb\x77\xbf\x79\xf3\x85\xf9\xe1\xed\xbe\xa2\xaa\x47\x17\xdf\x58\x8f\x9a\x05\x39\x9b\x9c\x5f\xef\xe9\x57\x15\xf2\x8c\x2e\x22\x27\x6d\xaf\x8c\x01\x0e\xdc\xa6\x31\x88\xef\x69\x5e\xba\x59\x2b\x46\x07\x7d\xcd\xd5\x41\x47\xd0\x95\x1e\xd4\x2e\xd0\xe9\x4b\x65\xe0\xb7\x27\x67\xc1\x13\xee\x2a\x95\x5b\xc5\x15\xe7\xea\x6a\xa3\x75\x40\x5f\x64\x53\x6d\x16\x3c\x45\x0b\x97\xec\xd3\xe9\x64\xfb\x06\x02\xe4\xef\x69\x1a\x3a\x67\x0b\xf9\x86\x24\x5f\xf0\x88\xcb\x9d\x42\x14\x52\x63\x1a\xbb\x57\x58\x3a\xa6\x45\x39\xaa\xbe\x72\x02\x00\xfd\xd0\x11\x63\x63\x31\xf0\x68\xe7\x2a\x67\xdd\x61\xc0\x62\xb1\x6f\xff\xdc\x7b\xa8\xdb\x97\x5b\xa8\x60\x49\x64\x1e\xc7\x2c\x52\x6b\x32\x89\xbb\x72\x8f\xd3\x0d\x41\x37\xcb\x90\x45\x7c\xcb\xd2\x32\x7b\xac\xfa\xa9\xc8\xac\x6e\x15\x1d\xf2\xef\x30\xe9\xda\x65\x02\x29\x61\xbc\x35\x17\x1b\x77\x60\x32\x9d\x4c\xe1\x03\x5d\xa0\xd8\x68\x8c\x4c\x9e\xa1\x03\x4c\x6d\x60\x2a\x25\x40\x89\x95\x11\xd6\x04\x99\x1f\x8c\x09\x39\xf5\xad\x77\xa3\x8b\x20\x5b\x3d\xe8\x54\x09\x19\xe2\x0e\x18\xb9\x84\xa1\xda\xdb\x54\xe4\x78\x46\xbc\x65\xae\x2c\x78\x55\x03\x43\x1a\xb0\x23\xe4\xd4\x9a\x43\x75\xde\xbe\xde\x61\x82\xe6\xa0\xd7\x27\x78\x6f\xb2\x44\xd8\x73\x40\xf7\x4c\x75\x3b\x7c\x7d\xd2\x32\xbf\xb3\xae\xa5\x62\x38\x12\x93\x86\x52\x75\x1e\x9b\x1d\x28\x3d\xda\x5b\xf3\xe2\xbf\x04\xcd\x60\x99\x84\x2f\x7c\xa5\x66\x51\xc2\xba\xf5\xe8\xb4\x7b\x70\xb9\xc5\x19\x75\xe2\x3f\xf6\x70\x6a\x3d\x33\xb4\x0a\x0d\x33\x79\x5a\xd2\x29\xc7\x86\xb7\x1f\xf5\x49\x6d\x8d\x47\x26\x81\x25\x96\xec\xd4\x80\xc2\x34\x38\xf3\x83\x4b\xb6\x85\x8c\x81\x58\x44\xb2\x3a\x98\xab\x77\xd5\x83\xc6\xcd\xae\xac\xe9\xad\xde\xbd\x54\x8e\x44\x2e\x57\x82\xc7\xab\xff\x14\x94\xda\x8a\x75\x62\x2a\xaf\x7a\xc2\x03\xb3\xf9\x58\x00\x2c\xb1\xaa\xc1\x8b\x90\x34\xc7\xca\x0b\x4d\x5a\xe3\x23\x34\x77\xa4\x98\x50\x1b\x01\x34\xb0\xab\xc8\x65\xc6\x43\x56\x48\x1b\xd0\x48\xdd\x78\x57\xa7\x90\xb0\x3e\xfb\x4b\xce\x52\x1a\x3a\x53\xa0\xb6\x83\x43\x84\xbd\xd3\x85\x9e\xaa\xad\xca\x0c\x07\xa7\xf3\x4f\xa8\xe3\xa2\xdd\xf7\x0b\x0f\x7c\x40\x35\x8b\x1d\xa6\x9b\x70\xcd\xb9\xc8\x18\xbb\xdf\x61\xde\x3e\x44\x34\xfe\xcc\xab\xfd\xc3\x1f\x3e\x9c\x5e\xfe\x6c\x77\x1b\x46\x73\xf2\x96\xc5\x04\x1e\x7d\xb9\xbd\xaa\x94\xa6\xeb\xc1\xa0\x31\x69\x6a\x4c\xee\xf2\x05\x2b\x1d\xa1\xb2\xca\x49\x79\x0e\x3d\xca\xef\xf3\x05\x3b\x2b\xc7\x3b\xb3\xc7\xab\x6b\x57\xda\xda\x36\x75\x2e\xad\x2b\xa9\x6b\x62\xda\x1a\x0f\xfa\x99\x41\x3f\x33\xe8\x67\xfe\xed\xf4\x33\x6d\xd8\xa4\xa9\xb5\xa9\x24\x64\xab\x03\xf8\xf7\x45\x54\x8e\xe5\x44\x5a\x23\xb3\xfd\x55\x3a\x56\x17\x7d\x28\xba\x19\x0d\x65\x5c\x4c\x91\x67\x46\xd6\xc9\x1d\xb7\x3c\xcc\x69\x64\x4d\xd3\xc7\x86\xe9\xbe\xf6\x96\xc7\x8b\xe8\xd9\x3e\x52\x6b\x91\x5f\xdd\x37\x65\x13\xd5\x8c\x8d\xca\x79\x79\x13\xd9\x5f\x68\xf1\x7e\xb1\x33\x7c\xc7\x91\x29\xb2\x15\x73\x64\x24\x91\x97\xf0\xf4\xd0\xa3\x0e\x86\x42\x53\x71\xc0\x23\x96\x4e\x59\xca\x85\xdf\x6f\xb6\x8e\x1c\xae\x6b\x1f\x1a\x2f\x90\x04\xff\x92\x42\xfd\x6b\x29\xd2\x4d\x31\x04\xf7\x06\x37\x9a\x07\xd2\xba\x5a\x31\x86\xea\x56\x00\xcb\x30\x26\x7f\xd2\x3a\xb9\x13\xf2\xf5\xe6\xcf\x0e\x29\xc0\x3c\xdd\xbe\xb6\x5d\x9e\xb6\x9e\x08\xc9\x06\x04\x2e\x15\xdb\xdb\xb6\xd3\xea\xfd\xaf\x63\x93\xd7\x56\xd0\x6a\xdf\x0d\xb6\x03\x5d\xcd\x32\x20\xf3\x77\x60\xd4\x02\x40\x21\x21\xf0\xda\xaa\x89\xd3\xb2\xbb\xe7\x46\xe1\xf8\xd8\x95\xf6\x5c\x2d\xd1\x3e\x52\x67\x29\xa3\x9e\x24\x16\x9e\x35\x1f\x9e\x16\x9f\x95\x3b\x9b\x4b\xb1\xa1\x92\x07\x65\xa2\x56\xd1\x59\xf7\xa2\x0a\x15\x90\x3a\x94\xa0\xb0\xd3\xea\x94\xf2\x30\x1b\x98\xb4\x1d\x69\xd2\xbb\x94\x45\x9f\x42\x16\xff\x79\x17\x9e\xc0\xa9\x85\x34\xd8\x6d\x87\xa6\xba\xda\x9b\xe2\x93\xf2\xf0\x17\x59\x84\x05\x09\x44\xb2\xeb\xa0\x3b\xe6\x01\x3c\x50\x66\x71\xb4\xc2\xa7\x33\x7b\x95\x1a\x0d\x3c\x2f\x6e\xc3\xd8\xca\x3e\xd8\x4d\x27\x62\x69\xc1\x6f\x3a\x7a\xfa\xd7\x81\xe1\xfe\xf3\x4e\x75\xd7\x56\x57\xb3\x81\xf7\xd9\xf2\x6a\x26\xf0\xb6\xad\xef\x28\x28\x64\xca\x08\x59\x47\x63\x38\x03\xbf\xc4\x19\x30\x59\x31\x3a\x68\x7f\x55\x0d\x5a\xfb\xa6\xed\x1c\x74\x15\xc2\x67\x35\xfe\x61\x38\x09\xbf\xcc\x49\x68\x7b\xcb\x64\x10\xfe\xf0\xe5\x99\xd8\x24\x58\xa3\xca\x0b\xb1\x2a\xa4\x2e\x9c\x9f\xd5\xe0\xb5\x60\xf2\x9e\xb1\x18\xc6\xd8\x7e\xe9\x35\x1c\x40\x07\x85\x14\x0f\xe6\x03\x05\xea\xd7\xf6\x59\xb0\x60\xf5\xe6\xb5\x13\x58\x6d\x40\x5a\x33\x1a\xc9\xf5\xd9\x9a\xb9\x9d\xe5\xab\x4b\xfb\xde\x6a\x5c\x9c\x7e\x91\x9a\xa9\x64\x45\xe5\x0a\xc5\xd6\x61\xcf\xce\xa5\x61\x07\xbd\x28\x7c\xdb\xdc\x23\xb1\xba\x51\xcc\x23\x97\xbb\x9b\x20\x65\xac\xae\x3a\x6b\x2e\xe0\x43\xfd\x0b\xb3\x2d\x91\x58\x91\x4c\xbf\x21\x74\x21\xb6\x4c\xa7\x4e\x89\xc4\xca\xc9\xc3\x40\x3a\x1f\x16\x17\x96\xc1\x4c\x86\x22\x97\xf6\x66\x4c\xe2\xa5\xd8\x77\x45\x49\x2a\x36\x8a\x93\xca\xb3\x8f\x4c\xa6\x3c\xc8\xa6\xee\x7c\x27\xd5\x55\x4d\x5d\x5f\x99\x95\xcd\xce\xa6\x56\x89\x6f\x5d\xca\x5a\x37\x77\x2d\x6c\x83\x5d\xa0\x0a\x3c\x2d\xca\x23\xf1\x18\x0b\x23\x75\x9c\xc0\xdf\xbe\xfe\xed\x57\xfe\x45\x3b\x9d\x3f\xfc\xea\x7b\x9f\x7a\xc2\xab\xff\x29\x95\xf2\x1e\x50\xb5\x6a\x80\xe0\x6b\x4b\x13\xa7\xf7\x55\xfd\xea\x50\x9c\x82\xf2\xad\xa2\xee\x21\x13\x79\x08\x29\xf0\x96\x79\x84\x96\xa0\x70\x03\xca\x24\x28\x48\x06\x71\xc9\x50\xfc\x03\x0b\xc5\xd2\x40\xe6\xb4\x61\x14\xc2\x1e\x71\xaf\xee\x69\x91\x89\xc4\x24\xf2\xd1\x96\xfe\x8d\x08\xb1\x92\xc6\x42\xf1\xa1\x5b\x9e\x0a\xf0\xe0\x21\x5b\x9a\x72\xb8\x88\x8d\xf9\xa2\x19\xfc\x2e\x5f\xb0\x91\xad\xaf\x4a\x52\x11\xb0\xac\x2e\x9c\xb6\xe5\x84\x2c\x47\xfb\x81\x3a\xb5\x55\x7b\x3a\xea\xfa\x50\x77\x65\xdb\x2e\xaa\xa3\xd6\x53\x1f\x39\x00\xe0\xb1\xee\x3b\x81\x00\xc0\xe6\xf1\x32\xca\x31\x11\x12\xd6\x6e\x87\x2a\x91\x78\x40\xbc\xd6\x28\x37\xdd\x48\xed\x6f\xbb\x2e\x6f\x65\xa0\xda\xc2\xa0\x1e\x30\xdf\xb2\xca\xa9\xe0\x99\x19\xc0\xb5\x40\xee\xdb\x68\x11\x1e\xe9\xa4\x33\x1b\x96\xae\x8c\x7e\xfa\x74\x3a\x29\xd5\xd3\x8a\x1c\x3b\x51\x5d\xec\x39\x65\x0e\xb8\x74\xb0\x20\xed\x8a\xce\x06\x70\x9e\x52\xd9\x49\xba\x14\x9e\x3d\xa6\x4f\x7a\x28\x3e\x1b\x8b\xd8\x4f\xf9\xd9\xc6\x2f\x3d\x25\xaf\xd8\x73\xb5\x64\x3f\x9e\xb1\xb1\xf8\xfe\x7c\x63\x97\xe2\xa8\xca\x56\xf6\xe2\x1d\xbb\xba\x6c\x67\x2d\xc9\x93\x2a\x97\x5a\x74\xa7\xe4\xb9\xf4\xa7\xe4\x09\x34\x0c\xa4\xff\x39\xe9\xa9\x4b\x6d\x2c\x77\x0f\x7d\x6a\xd7\x8e\x5a\x05\xde\x9e\x44\xa7\xba\xc7\xea\xc9\x3e\xba\xd5\x06\x0c\xfa\xe9\x57\xbb\x3b\x05\xd6\xe4\xc9\x75\xac\x64\x8f\x92\xc1\xfd\xae\x03\x19\xf0\x4a\x1f\x60\xf6\x52\xcf\x36\x81\xf3\x74\x2a\x5a\xf2\xa4\x6a\xda\xfe\x4b\xef\x73\x86\x5a\x55\xb6\x0d\xa0\x3c\xa5\xda\x96\xfc\xbc\x88\x75\xb8\x28\x4f\x70\x5a\x7a\x69\x7d\xc9\xb3\x69\x7e\xc9\x33\x69\x7f\xc9\x70\x8c\x7e\xd6\x63\xd4\x53\x71\x4c\x9e\x53\x79\x4c\x9e\x4b\x81\x4c\x86\xc3\xf4\x33\x1e\xa6\xae\x16\xbd\xf5\xcf\xe4\xb9\x74\xd0\xe4\x69\xf5\xd0\x7d\x80\xd7\xa1\x8f\x6e\x2e\xf5\x89\x74\xd2\x64\x4f\xbd\x74\x9f\xb5\xf4\xd1\x4f\x37\x17\xb4\xb7\x8e\xda\xb7\x9c\x48\xac\xb2\xcf\xd0\x53\xf7\x59\x61\x5f\x7d\x75\x73\x95\x4f\xaa\xb3\x26\x9f\xab\xb7\xf6\x75\xea\x53\x67\x93\xee\x44\x03\x2d\x59\xb8\x5b\x54\xdb\xa4\x15\x2f\x0c\xee\xeb\x4d\xf7\x75\x1d\x68\x02\xcc\x3b\x7f\x96\x0c\x3a\xba\x70\x20\x0a\x10\xf8\xa2\xf4\x50\xaf\xbc\x6c\xba\xa4\xd7\x66\xa7\x37\xa3\x70\x42\xb7\x5f\x43\xd7\xda\xeb\xbc\xd0\x19\x02\x0f\x30\x38\x9e\x0f\x8e\xe7\x83\xe3\xf9\xbf\x96\xe3\x79\x9b\x0d\x0d\x8a\x7d\xf5\x89\x76\x87\xc2\x03\xea\xf8\x63\xb9\x2e\x56\x29\x83\x8e\x55\x0b\xd4\x1f\x85\xd9\xc8\x69\xbd\x31\x5f\x63\xa8\x5e\xbd\x14\x19\xd4\x39\x23\x81\x48\x53\x96\x25\x0a\xad\xc7\x2b\xa2\xd9\x3d\x53\x30\x6a\xaf\x82\x03\xb5\x1a\x56\xa7\xe4\x5a\x4d\x90\xc5\x01\x4d\xb2\x1c\xee\x6d\x39\x23\xd7\x54\x3c\x3a\x4e\x9c\xd2\x98\x90\x77\x42\xae\x6b\x35\x13\x1a\x35\xd2\x54\x47\xf5\xda\x10\x1e\xbe\xa1\xa8\x7f\xa2\x6b\x34\x8c\x48\xc6\x12\x9a\xaa\x43\x4a\x44\x2e\x09\x55\xd3\x35\xe5\x27\xb0\x89\xe2\x23\xa1\x42\x3d\xf7\x97\xc5\x27\x30\x07\xbd\x5f\x36\xe0\x79\xbc\xc2\x6a\x50\x58\x72\x02\x6a\xd5\x6c\x59\x1d\x12\x6b\xea\xeb\x95\xc4\x6c\x05\x93\xd3\x88\xf7\x88\x24\x29\x5b\xf2\x07\x16\xa2\xf0\xf3\xcf\x7f\xfc\xcf\xa5\x90\xff\xfc\xc7\xff\x8c\xc9\x69\x14\xe9\xe4\x83\x76\xdf\xee\x7e\x75\x28\x36\xc5\xe3\x54\xd4\x3f\xa2\x92\x67\x60\x67\xc6\xb8\x46\xbd\x10\x29\xb0\xcf\x31\x39\x05\x52\xd6\x4c\xfb\xa4\x61\x0b\x47\x93\xc6\xe6\x78\x6a\x25\x9b\x5e\xb2\x02\x10\x2c\x46\xfd\xa1\x57\x83\x45\xcd\xbc\x35\xdb\x10\xaa\x00\x7b\xf7\x14\xd5\x00\x30\x6a\x31\x45\x77\xe0\x78\xa7\x8c\x8b\xc7\xcd\xcb\x16\x76\x4b\x80\x56\x18\xab\xb7\x97\xca\x55\x39\xb7\x22\xd4\x2b\x56\xe0\xda\xd1\x00\x8e\x18\xae\x65\x8b\xe8\x59\x09\xa3\x25\x0a\x13\x4a\xd7\x2d\xee\x09\x0c\x62\x5b\x3d\x5b\x62\x64\x3d\x2b\x9b\x1f\x5c\xd6\x3f\x06\x0a\x16\x13\x91\xa0\xa3\x80\x8e\x76\xf6\x15\x58\x29\x9f\x4a\xe5\x78\xdd\x15\x7b\x50\x04\x2c\x03\xec\x00\xa5\xab\x2a\x25\xd1\x4c\xc0\x7e\x97\x96\x1b\x68\xdc\x4b\x75\x84\x58\xba\xc1\x0f\x08\x95\xaf\x2c\x2b\x4a\x91\xad\xc0\x94\x6c\xf1\xe7\x8d\xa8\x81\x2c\x2b\x92\x4d\xc0\x5e\x2a\xf2\x07\x11\xd5\x70\x90\x1b\xb0\x69\xef\x54\x5d\x80\x02\x8a\x4a\xb6\x43\x66\x2c\x34\x1e\x1e\x19\xdd\xe0\x15\xd0\xc1\xb9\x10\xaf\xde\x47\x9f\x64\xd9\xce\xf4\x19\x4b\x8b\xf9\x92\xc5\x0e\x27\x5b\x94\xd1\x2f\x56\xd4\x0f\x14\xba\x64\x9f\x9a\x17\x62\xbf\xf7\x22\xad\x72\xce\x8a\x5b\xd3\xd5\xe2\xf6\x84\x08\xdf\x24\x11\x2f\x6b\x15\x32\x62\x1f\xb2\x88\x6f\xb8\x8e\x48\xc6\x99\x2a\xf2\xa6\x60\xd2\xde\x67\x51\x33\xad\x84\x09\xb7\xe0\x5b\x46\x2a\x51\xbc\xa3\x95\xa5\x74\x98\x13\x3d\xcb\x3f\x5c\x41\x51\xf3\x97\xaf\x0e\x9b\x00\x30\x6b\xec\x50\x4b\xed\x05\x80\x46\x11\xf5\xf6\xce\x45\x5a\x31\xd3\x96\xbb\x58\xe9\xa6\xbe\x97\xed\x7d\x7a\xd7\x59\x5d\x05\xba\x40\x01\xef\xbf\xef\x41\xa6\x90\x43\x04\x8a\x52\x96\xb7\xd1\x43\x13\x0a\x30\xf6\xd2\xee\x79\x0a\xc0\x97\x4f\xd5\xa0\xcf\x64\xe6\xc7\x79\x8a\x4f\x87\x94\xb9\x99\xaf\x3e\x63\xf9\x18\xea\x06\x5b\x58\x96\xb3\x72\xa3\xbc\x02\xab\x75\x1c\x9c\x2a\xca\xab\xe4\x68\x81\x4a\xb5\x45\x91\xdc\x15\xdf\xb2\x58\xa7\x44\x69\x8f\x68\xf2\x33\x88\xd6\xb8\x3d\x8d\xa0\x2d\x25\x1c\xca\x27\x16\xf2\x72\xbf\x3d\xc1\x0f\x8c\xca\xa9\xc6\x57\x99\x15\xab\x26\x1d\x94\x43\xed\xe3\xaf\x0e\x16\x53\x4f\x1d\xc1\xf2\xa9\x03\x03\x8b\x0a\xb6\x43\x03\xda\xf4\x01\x07\xb9\xe1\x8a\xa7\x16\x45\x29\x49\x53\x40\x2e\x23\x6b\xba\x65\xa6\x3a\x21\x5f\xc2\xe9\x4a\xba\xbb\x05\x35\xa6\x49\x3c\x41\xb8\x34\xea\xb5\xcc\x68\x07\xa1\x77\xcd\x2c\x69\x5c\xad\x24\x8f\x0e\xa8\x0b\xa4\x61\x12\x53\x56\xcc\xce\xa6\x26\x69\xd2\xa7\xf3\xa9\x37\x23\x0f\x3e\x7d\x76\xb5\xbd\x98\x20\x3e\x3d\x4b\x0a\x56\x1b\xf7\x71\xc3\xe8\x53\x5e\x10\x9f\xc7\x14\x19\x34\x4f\xdf\x03\xb9\x3f\xdf\x78\x59\x7e\xd4\x71\x2c\xfb\x31\x0a\xfa\x64\x92\x1b\x66\x11\x17\xc4\xc2\x4a\x76\xc8\xf2\x85\x8c\x98\x62\x83\x51\x92\xd2\x63\xb5\xf7\x59\x30\x44\xad\x47\xa5\xdf\x9e\xf9\x4a\x7f\x7a\xc0\x33\x3f\x28\x6e\x6c\x17\x59\xe9\xe2\x1b\x58\x1f\xb2\xb2\x06\x51\x58\x2b\x94\x5e\x5a\xf2\xc5\xab\x8e\x63\x58\xe8\xf1\x91\x9b\xb4\x8b\xfc\x66\x8c\xa4\x34\x5e\xb1\xec\xd8\xe8\xe3\x20\x9f\x59\x6b\x1a\x2d\x7c\xb8\x2d\x97\xeb\xab\x03\x66\x1f\x84\x72\x66\x20\xa0\x95\x5b\x7a\x98\x0e\x1e\x67\x89\x7b\x80\xcc\x4d\x5f\x0c\xd6\x89\x01\xb0\xe9\x5e\x18\xac\x63\xed\x25\x7a\xab\x61\xb0\x39\xe2\xb0\xb9\xc6\x62\x73\xc4\x63\x73\x85\xc9\x5a\x79\x9e\x01\x97\xc1\xd3\x0b\x97\x65\x8f\x10\x80\xbb\xe5\xde\x56\x15\x5e\xf9\x38\xe5\x5e\xf2\x32\x63\xcc\xe8\xbe\x00\x95\xd1\x4d\x12\x31\x92\xed\x62\x49\x1f\x5c\xb9\x94\xec\x67\x3e\x6f\x15\x9b\x35\x0f\xe9\x13\x8b\xdb\xfb\x36\x2a\xaf\x4a\xa1\xd3\xa6\x34\x6c\x6a\x4f\xc3\xd8\xea\xf4\x74\x00\x41\x47\x18\x18\x6b\x40\x07\x55\x40\xf0\x58\xd4\xa4\x43\x56\x65\x91\xb8\x7f\x75\x54\x9d\xb2\x05\x6c\x84\xaa\x2e\xfe\x66\x8c\xcb\x1d\x70\x40\x3d\x17\xe8\x2f\x67\x6b\x46\xe4\xbd\x80\xb3\x06\xc9\x45\xcc\x3b\x5d\x20\x7c\x21\xa3\x5d\x99\x7e\xb0\x63\xef\xae\x62\xb3\x7a\xe3\x83\x54\xea\x55\x99\x25\xbd\xe2\x6a\x04\xf8\xff\xe9\xf6\xdd\x34\xe1\x7e\x2d\x22\xbd\x49\x27\xb0\x45\xf3\x79\x49\x90\x7f\x07\xd8\xe5\x37\x6b\x9a\xbd\xdc\xec\x6e\xc1\x39\xf0\x15\xe0\x1d\x8d\xe4\xbb\xae\xb3\xce\xa6\x69\x14\x0d\x70\xc8\x70\x7e\xe8\xba\x51\x06\x2f\x84\x6a\xdc\x9e\xe7\x0d\xfa\x0b\x05\xa4\x29\x03\x2c\x8d\xc6\xa2\x05\x8b\xc8\x3f\xff\xf1\xdf\x66\xa2\xa0\x1d\xd5\x0b\xea\x7d\x2c\x70\xc1\xde\xf5\x36\x97\xa4\xe6\xe0\x4b\xa8\x5b\x3e\xed\xab\x2d\x16\xd4\xbe\x98\x6e\x85\xc3\xac\x08\x27\x41\x56\x4a\x6b\x0a\x22\x40\xab\x3a\xc9\x27\xd8\x81\x8b\x75\x74\x4f\x3d\x16\xf1\x48\xfb\xd9\x68\x23\x17\xb9\x5f\xb3\x94\x69\x9d\xc8\x52\xa4\x1b\x56\xd7\x41\xe8\xde\x7b\xe8\xe2\x9a\x80\xb1\x52\x69\x3c\x81\x00\x5f\x75\x07\xdc\x83\xef\xaa\x7a\x04\xfe\x7c\xfc\x57\x0d\x25\xb7\xf7\xe9\xd0\x64\x52\x92\x88\xd0\x84\x0e\xa1\x5d\xa3\x40\xcf\x3d\x7c\x17\x0b\xef\xc5\xd6\xd3\xd6\xdb\x57\xde\xb6\xb2\xfb\x9f\x66\x1c\xcd\xe7\x83\x9b\x3c\x06\xe4\xdd\x5d\xfa\x14\xc8\x0e\xb0\xf7\x82\x36\xb1\xfc\x45\xef\xd7\x22\x43\xad\xa3\x5a\xbe\x66\xff\xa0\xc4\x78\x57\x1f\x7d\x18\x3b\xb2\x97\x73\x7f\x4f\x2e\x89\xf4\xe5\x94\x48\xf3\x7e\x75\xf2\x4a\xff\xbe\x3b\x5d\x91\x93\x4a\x8d\x1b\x62\xfd\x22\x59\x28\x99\x74\xa6\xd9\x21\x96\x75\xa1\x69\x34\x28\xe5\x10\x9d\xc1\x93\xed\xd4\xef\xdd\x9d\x9e\x5e\x9e\x1f\x3a\x73\xab\x56\x9f\xfd\xb4\x59\xed\x0e\xb7\xdd\x6d\xd6\x52\xba\xb2\xa4\xe3\x53\x8d\x34\x9a\xcd\xa6\xa5\x11\xc9\x6b\x59\x53\xc7\x43\x35\xf5\x4f\xbd\xf0\x84\xfc\x2c\xa3\xda\x86\xc9\xb5\x08\xf7\xa0\x3d\x1f\xf1\x83\xa7\xa5\x39\xb8\x64\xb8\x1c\x7a\xdd\x96\xf7\x86\xea\x13\x53\x0c\xb3\xce\xe4\x4e\x06\x2b\xb1\x10\x7b\x31\xb3\x7d\xc9\xc6\xab\x31\xf9\xee\x62\x76\x44\xa6\x9f\x66\x47\x84\xc9\x60\xfc\x8a\x7c\xcc\x23\xc9\x93\x2e\x0d\x9d\x06\x11\x9c\xda\xab\xeb\x43\xc5\x44\xac\x20\x8e\xe5\xd7\xa5\x71\x4d\xa8\x5c\xef\xb1\x8f\x87\x53\xd5\xfe\x39\xb6\xb1\x6b\x07\xbb\x2d\x0c\xf6\x0e\xc2\x34\xc7\xc5\x56\xe1\x32\xcd\x5e\xf4\xdd\x0c\x42\xd8\x78\x75\x42\x46\x84\x3d\xd0\x40\x9e\x90\xe3\xa5\x10\x64\xa4\xfd\x16\x4e\xc8\xf1\x82\xa6\xe4\xf2\x6a\x76\x71\x82\x3e\x11\x2c\x96\xe9\x8e\x6c\xba\x88\xcb\xd5\xe5\x87\x3f\x6a\x3c\xb6\x23\x8c\x83\xe8\x40\xc9\xfc\x00\x06\x41\xfd\x87\xfa\x13\x47\x31\x7c\xfa\x58\x31\xc2\xed\xfd\x6e\x69\xc4\x43\x5a\x88\xa9\xe0\x12\x8c\x19\xb7\xa5\x2b\xc5\x76\xf9\xf4\x39\x73\x35\xcf\xe5\xd9\x6c\xaa\x20\x5c\xa0\x63\x38\x0e\x00\x78\x05\x68\xcb\x89\xa1\x03\xdd\x4e\x24\xb8\x6c\x2d\x98\x01\x84\x96\x80\x15\x0b\x7e\x62\xc0\x3e\xcf\x5f\xbf\xfe\x32\x50\x1d\xc3\xbf\xd8\x89\x4e\x29\xd0\x4b\x60\xc3\xa3\x06\xb3\x82\xee\x14\xc2\x48\x8b\x2d\x2c\xbb\x1e\x69\x78\x7f\xd6\x08\xd8\x47\x87\x13\xfe\x1e\x51\x99\x08\x80\xa7\x65\x82\xf4\xd2\x9f\xb2\xd3\xbe\x61\x93\x3d\x10\x52\x77\x57\x3c\xd8\xf4\xa4\x99\x93\xb3\x8f\xd3\xbe\xb6\x4b\x40\x46\xfe\xb9\xdb\x58\xca\xca\x92\xae\x66\xab\xc3\x60\x30\xd7\x3b\x0c\xa9\xf9\x33\x5d\xe3\xa2\x45\x90\x43\xa7\x51\xa0\x5f\x8b\x8a\x8a\x75\x59\xd5\xac\x16\xd9\xf6\x0b\x7b\x8f\x1a\xa7\x4d\x96\x04\x4b\x90\x6a\xb4\x7d\xdb\x62\x0c\xea\x75\x12\x83\xf6\xf0\xef\x46\x55\x59\xc5\x99\x88\xd8\x86\x12\x00\x25\xc0\x9a\x13\x93\xa5\x95\x85\xbd\x9b\x44\xcc\x14\x80\xd1\x51\x14\xfc\xa6\xa0\x9e\x87\x0d\x2b\xad\x77\x07\xa5\xba\x64\xc1\x3a\xe6\x41\x33\x35\x49\xf5\x01\xa1\x1e\x15\x57\x7c\x93\x88\x0c\xbd\x44\x20\xf7\x04\x4b\x63\x16\x1d\x66\x84\x27\x12\x23\x30\x96\x3c\x65\xf7\x34\x8a\x3a\xa6\x8a\xd8\x42\xab\x14\xf2\x0c\x4d\xfe\x2c\x5e\x0a\x74\x61\xd5\xfe\x23\xdd\x57\xa3\x53\xfb\x0c\xcd\x3e\x7f\x33\x54\x37\x63\x02\x5e\x10\xec\x01\x54\xae\x5d\xca\x5b\xdc\x03\xb1\x24\xdf\xa0\xe3\x21\xac\x10\xfa\xba\x08\xd6\x82\x5c\x23\xd1\xd6\x29\xf3\x13\x1e\xaf\xb2\x76\xed\x6d\xaf\xf5\xf6\x40\x06\x89\xdb\x03\xdc\x03\x90\xc9\xd4\x78\x82\x7f\xb6\x4b\x43\x45\x34\x43\x7e\xdc\x86\xf2\xd4\xe8\x74\xbd\x50\xe8\x01\x01\x8f\x2f\xaf\x67\x71\x1f\x75\x6b\xcb\xd7\xac\x48\x68\x03\x2e\xca\xe9\xa6\xac\xa1\xe0\xf2\xab\xae\x2e\xee\xb3\x90\x06\xb8\x4d\x63\xf6\xfa\xf6\x94\xae\x7d\x53\xee\x94\x4f\x5f\xb2\x54\xad\x7b\x51\xce\x47\xfb\xa0\xa3\xbe\xf9\x8e\xed\xf4\xd1\x4e\x28\xd7\x09\x75\xda\x87\x57\x62\x2d\x61\x0f\x32\xa5\x15\x98\xd2\x85\xc8\x65\x0f\x42\xf2\x54\x92\x63\x2c\xa4\xba\x7d\xfd\x4e\xc6\x25\x36\xee\xb0\x45\x43\x93\x76\x9f\x90\x81\x60\x0c\x04\xe3\x5f\x9b\x60\xc4\x42\x1a\xb6\xca\x0b\x96\x76\x7b\x71\x4f\x4b\x71\x3f\x1b\x71\xc3\x95\xc9\xb0\x7c\x1d\xde\x4c\xba\x99\x1f\x60\x1d\xf7\xb8\x87\x51\xfa\x71\xe6\xe8\xe4\xd7\x0a\xdc\xf9\x81\x0d\xdb\x27\xa4\xfd\x0d\xb5\x2c\x44\x02\xd8\x9c\x80\x81\xc9\x18\x4e\x3d\x4f\xdb\x5c\x73\xb4\x5f\x99\xde\xe7\x0b\xf0\x7f\xbf\x86\xe0\x0d\x13\x8a\x80\xbe\x33\x2f\x17\x2c\xa0\x79\xa6\xbd\x39\x3a\x1c\x83\x8b\x29\x06\x2c\x85\x3e\x0a\x8f\x90\x57\x68\x4e\xfc\xa8\x63\x12\x2a\xfe\x2d\x5d\x24\x16\x1d\x5f\x4e\x6c\xdf\x8d\x23\xdb\x73\x03\xff\x00\x49\xa5\xf2\xd7\xf6\x6d\xf9\xf7\xcd\xd9\x0c\xdf\xfa\x87\xd1\x3d\x7e\xe0\x92\x19\xf7\x10\x1a\x9b\x03\x62\x4c\x0a\xe0\x24\x43\xde\x8c\xbe\xf8\xfa\xeb\x16\x1b\xdb\xf3\x1d\x7b\x34\x23\xf6\xa3\xc6\x37\xe8\x88\xd4\x2f\x54\xa2\xa5\x3a\xa1\x19\x75\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\xdc\x2b\x1e\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\xf0\xad\x64\xc0\x65\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x34\x9f\x21\x4a\x62\x88\x92\x28\x9e\x21\x4a\x62\x88\x92\x78\xfe\x28\x89\x96\x6c\xb4\x4a\xc6\xc0\x7c\x67\xae\x77\x7d\xca\x27\x3a\x4f\xb9\xce\x8e\xf7\x88\x34\x87\xfa\xcb\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\xf4\xa3\xc6\x21\xcf\xe1\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x5f\x3e\x83\x05\xdf\x7a\x06\x0b\xfe\x60\xc1\xd7\xcf\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\xb8\x6c\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x9b\xcf\x60\xc1\xaf\x3f\x83\x05\x7f\xb0\xe0\xd7\x9f\xc1\x82\x3f\x58\xf0\x8b\x67\xb0\xe0\x0f\x16\xfc\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x92\x21\xcf\x61\xcf\x11\x86\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xb6\x6a\x48\x5b\x35\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xfd\xf3\x1f\xf2\x1c\x0e\x04\x63\x20\x18\x43\x9e\xc3\x21\xcf\x61\xe5\x19\xf2\x1c\x0e\x79\x0e\x6b\xcf\x90\xe7\xd0\x2f\x40\x0e\x79\x0e\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x96\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\xcf\x10\x25\x31\x44\x49\x14\xcf\x10\x25\x31\x44\x49\xfc\x3b\xe6\x39\x84\xe4\x85\x5d\x59\x0e\xaf\x54\xa3\x96\x33\x5c\x7a\x46\x4b\x93\x0f\xd1\xc3\xf8\xa2\x2f\x08\x66\x98\x03\x16\x5f\x75\x0a\x3a\xf1\x70\x8c\x5c\x7f\xa1\xb3\x58\xf3\x95\x62\xa1\xe6\x07\xd0\xdf\xfc\x00\x36\x5b\xb7\x75\x75\x4d\x97\x8a\xfc\x4b\x40\x2f\xd0\x41\x24\xee\x59\x8a\xb3\x41\xdf\x1a\x6b\x72\x19\x11\x1b\x2e\x25\x0b\x8f\x94\xf4\x8a\x6e\xd9\xae\x4e\x03\x11\x67\x1c\xd3\x3b\xa2\x74\x3a\x3f\xe0\xf1\x92\xc7\x5c\xb2\xf9\x01\x19\x11\xf0\xe8\xb0\x96\x63\xc4\x01\x3d\x4f\x12\xd1\x4c\x8e\x49\xb1\x32\x27\x48\xd4\x5c\x79\xc8\x62\xc9\x03\x1a\xe9\x09\xd6\xfb\xe1\x31\xa1\x51\xb2\xa6\x71\xbe\x61\xa9\xd5\x0e\x32\x2b\xba\x7a\xd5\x26\x34\x2d\x48\xa1\xd9\xd2\xa9\x04\xc4\xb3\x11\xe7\x9b\x45\x53\xc6\x6d\x41\x7a\x35\xa1\x70\x66\x0b\x18\x78\x50\x2c\x31\x23\xcf\x34\xc7\xc4\x83\x3b\xfc\x3f\x91\x3b\xcf\xbf\x9a\x72\x8d\x61\xb4\x80\xab\x7d\x88\x2d\xb0\x48\xa1\xf5\x1b\x2d\x6c\x6f\x39\x8f\x8c\x2c\x45\x14\x89\x7b\x70\x08\xd4\xb2\x4f\x21\x0d\x20\x5a\xfa\x1d\xb2\xc6\x78\xdb\x6f\x23\x2e\x59\x4a\x23\xf5\x8b\xab\xe7\xf9\x9c\x8c\xd0\x87\x5e\x1d\x94\x4d\x42\x53\x9e\x89\xf8\x88\x40\x20\x8d\xe1\x69\x4d\x97\x4b\x21\xc8\x82\xa6\xc0\x67\x17\xc3\xfd\x66\xcf\xe1\xca\xf1\x14\x47\xce\xfe\x92\xd3\xe8\x5b\x74\xfb\x32\x78\x96\x2f\x35\x82\xe5\x19\xb4\x31\x3a\xa3\x62\x48\xf7\xbd\xfc\x09\xe6\x41\x4b\x67\x85\x45\xf9\xcf\x00\xff\x39\x1e\x8f\xc9\xdf\xad\x19\xc8\x34\x67\xc6\x7b\xbb\x70\x80\xc2\x31\xfe\x40\xdc\x0e\x97\x5a\x59\xd6\x31\x54\x39\x57\xb5\x00\x1e\xf7\x98\x9c\x6b\xb0\x3d\xe7\x0b\x83\xb5\x4d\xd0\xbd\x25\xd6\x9c\x95\x3c\x05\xfd\xdd\x2a\xee\xe6\x55\x39\xf4\xac\x18\x99\xca\x72\x77\xac\x9d\xf9\x0d\x1c\x52\x27\xce\xd7\x5d\x14\x82\xb5\x58\x42\x5b\x90\xac\xe0\xbf\xf9\xeb\xd7\x5f\xbc\xc5\xff\xc7\x37\xc5\x37\x37\x6b\x91\xca\x51\xc0\xd3\x20\xe7\x12\xe8\xa6\xfe\xc8\x35\xd0\xdf\xfe\xd6\xfa\x35\x68\xe0\xe4\x4b\x6c\xf3\xaa\x68\x94\xd0\x94\xc5\x98\x6b\x75\x95\x8a\x3c\x51\xcc\xc2\x7c\x2e\x69\x14\xbd\x74\x6a\x52\x75\xf2\x4f\xb4\x8d\x17\xf8\xc2\xf4\x66\xce\x30\x8d\x22\x4b\x40\x82\x0b\xfa\x01\xcf\x03\x72\x00\x6e\xe2\x4e\xd5\xd5\x46\x3c\x63\xdc\x87\x6c\x94\x99\x1d\x91\xd1\x11\xb9\x05\x38\x1c\x8f\xc9\x0d\x5c\x39\xa2\xaf\x9c\xb7\xd3\x8d\x48\x19\x49\x14\x6f\x94\x65\x7c\xcb\xc8\x02\x1d\x5f\x77\x46\x30\xd7\x2a\x13\xc2\xb2\x80\x26\x8c\x04\x6b\x9a\xd2\x40\xb2\x54\x4f\xfb\x02\xfd\x07\x9d\x97\xe1\x25\x20\xfe\x0d\x0d\xd9\x28\x4f\xf0\x58\x64\xaf\x0a\x74\x04\xd1\x16\x1a\x75\xdc\xb3\x85\x62\xbe\x98\x46\x1e\xf6\x8e\x87\x2c\x89\xc4\x6e\xc3\x62\x27\x3a\xd5\xdf\x27\xa9\x08\xcd\x21\x85\x7e\xd5\x9d\x02\x9c\x94\x8a\x58\x09\xe8\xd6\x51\x57\x32\x2d\xfe\xf0\x77\xd5\xbc\xec\x9f\xfc\xe6\x77\xbe\x1b\x10\xb2\xad\xe9\xfe\x37\xa4\x76\x0b\x5c\xa8\xac\x8d\xa3\xaa\x8a\xb2\x2d\x86\x96\x16\x39\xb6\x9d\xeb\x5e\xa2\x53\x55\x49\x16\x5c\xcb\x32\x14\x0b\xcf\xa8\x66\x87\x31\x8d\xb1\x88\xcd\x24\x0d\xa7\xeb\x32\x98\xb4\xad\x11\xd4\x65\x3d\x68\x2a\x68\xd5\x78\x1c\xf2\x00\xf8\xf2\xfb\x35\x44\xf1\x21\xf5\xd2\x24\xd1\xf2\x27\xd0\x79\x8e\x9d\x78\x4a\xdd\x3b\xa1\x13\x1d\x1f\xe9\xbf\x14\x4f\x3d\x26\xe8\xbd\x03\xd4\xe4\x21\x51\x4c\x8a\x8c\x76\x16\x4b\xfd\x12\x92\x34\x3b\xdd\xb2\x2c\x3c\x1a\x93\x20\x65\xda\x69\x38\xd3\xb7\x5b\xa4\x24\xe6\xd1\xab\x23\xe3\xf8\x1b\xb2\x25\xcd\x23\x99\x11\x5c\x96\x02\x5d\x1a\x7a\x58\x6a\x29\xc8\xbd\xc2\x95\x13\x9d\x4a\x5b\x4d\xe2\x42\xff\x53\xdd\x47\x8d\x39\x8b\x5c\xc5\xe0\xa9\x82\xea\x48\x3d\x8c\xab\x57\x9e\xe1\xed\x1a\x91\x3f\x69\xbe\x48\x4d\xc5\x8c\xf1\xe7\x23\x4d\x1c\x14\x97\x09\x2a\x2f\x33\x24\xe6\x93\x7e\xc9\xe3\x20\xca\xbd\x33\x5e\x33\x12\x50\xc5\x79\x42\x07\x65\x37\x04\xc9\x73\x2c\x8a\xc5\x40\x77\xaf\x1c\x33\xb9\xf0\xe6\xa9\xae\xcf\xad\x32\x31\x85\x92\xea\xdd\xfb\xd7\xe9\x3c\x1e\xf5\x39\x34\x06\x04\xf9\xcb\xb1\x1b\x98\xe3\xdc\x8d\x17\x62\x3c\x5a\x55\x5e\x3f\x65\x54\xdd\xa3\xe0\x8e\xd0\x15\xe5\xf1\x91\x3e\x0d\xa8\xb4\x8b\xee\xe9\x2e\xd3\xae\x99\xce\x53\x6c\xec\x6c\x68\x60\x3b\x22\x31\xdb\xb2\xb4\x72\xde\x9c\xea\xb4\x9e\x69\xd0\x4b\x28\x10\x06\x44\xa3\x50\x45\x27\x22\xcb\xf8\x22\x32\x03\x97\x1e\x04\xea\x83\x9b\x84\x05\x6e\x79\x0f\xd7\xe6\xf7\xa9\x68\x97\x2c\xbd\x42\x9b\x5b\xd6\x6b\xfe\x0a\x34\x23\xb4\x2d\x45\x99\x14\x29\x5d\x31\xf3\x53\x26\xa9\xcc\x11\x30\xa8\x30\x65\xe1\xa5\xa5\xca\xba\xe3\x71\xa8\xf0\x90\x01\x69\x12\xe5\x29\x8d\xca\x5f\x02\x11\xa3\xed\x22\x3b\x21\x7f\xfa\xb3\xfa\x45\xf5\xcf\x42\x1d\x76\xa4\x7f\x9d\xc7\xa3\xd1\x68\x1e\xd3\x84\x9b\xe8\x25\x42\x13\xce\x1e\x24\x8b\xa1\xd5\xf8\xee\x9b\x6c\xcc\xc5\xf1\xf6\xcd\x3c\xc6\x11\xcf\xf2\x4c\x8a\xcd\x35\x43\x45\xec\x39\x03\x71\x0b\xf0\x74\x25\x46\x48\x91\x97\x13\x12\xa3\xb3\x56\xc6\x64\x36\x0e\xd2\x70\x9c\xa4\x42\x41\x20\x00\xa4\x33\x16\xe9\x6a\x1e\x2b\x6c\x06\x5f\x00\x8b\x72\x42\x3c\xcd\xaa\x7a\x3c\x9c\x4a\xdd\xa3\x2c\xe2\x99\xfc\x7d\xed\xcd\x07\x9e\xc9\x2a\x80\xac\x39\x69\xb8\xf3\x78\x95\x47\x34\xb5\x5f\x01\xbc\x02\xa1\x36\xad\xf0\x1d\x03\x49\x6e\x6b\xc0\xa7\xfe\x18\xe9\x65\x2a\xe8\x40\x4f\xc1\x9a\x6d\xca\x18\x29\x91\xb0\xf8\x74\x3a\xf9\xe1\xcb\x9b\xea\xef\x4d\x97\x2d\x3d\x59\xe3\x7c\x50\x0e\x39\x62\x7f\xc9\xf9\x96\x46\x0a\xa1\xea\x73\x5d\xf7\xa6\xb3\x0e\xaf\x47\x27\x6a\xed\x6e\xf5\xac\x56\x43\xa9\xd5\x54\xb5\x5d\x0b\x5d\x3d\x71\x32\x7a\xc5\x2c\xd4\xcb\xc3\x79\x00\xb6\xd0\xa8\x9e\xba\xf4\x1e\x62\x09\xd4\x1d\x4e\xfc\x18\x58\x00\x96\x66\x46\x48\x0c\x44\xbc\x65\xa9\x24\x29\x0b\xc4\x2a\xe6\x7f\x2d\x3a\xcf\x8c\xa5\x0d\xaa\x1c\x34\x08\x05\x8f\x25\x4b\x15\xb3\x00\x57\xfd\x08\x90\xdd\x86\xee\x48\xca\xd4\x30\x24\x8f\xad\x0e\x8d\x9d\xff\xa3\x62\x12\x79\xbc\x14\x27\x90\xe4\x22\x3b\x39\x3e\x5e\x71\x69\x0e\x76\x20\x36\x9b\x3c\xe6\x72\x77\x0c\xfa\x7f\xbe\xc8\xa5\x48\xb3\xe3\x90\x6d\x59\x74\x9c\xf1\xd5\x88\xa6\xc1\x9a\x4b\x16\xc8\x3c\x65\xc7\x34\xe1\x23\x98\x7b\x0c\x37\x6b\xbc\x09\x5f\xa4\xfa\x26\x64\x87\x2e\x3c\xd0\x44\x1f\x70\x74\xdb\xb6\x41\x9d\x60\x1d\x19\x86\x5c\x30\x92\xf1\x02\xda\xc6\xc8\x79\x7d\x71\x33\x23\x66\x74\x67\x14\x1d\x02\xbf\xfc\x32\x2b\xf7\x41\x01\x8d\xc7\x4b\xc3\xaf\x80\xa2\xd1\x16\xef\x91\x64\x46\xdc\xc1\xba\x66\xf9\x62\xc3\x65\x66\x65\x47\x10\x63\x72\x06\x61\x76\x8a\x3a\xe4\x49\x48\x25\x0b\xc7\x64\x12\x93\x33\xba\x61\xd1\x19\xcd\xd8\xb3\xef\x02\x30\x6d\x23\x05\xdb\xbe\xfb\xe0\x89\x68\xf4\xa9\xea\x0a\x34\xe5\xd9\xb6\xf2\x3e\x2a\x8a\x53\x75\xa9\x37\x11\x18\x65\xcc\x23\x6d\xe0\xae\xf2\x31\x5b\x5a\x23\x4a\x2d\xf6\x0e\x8f\x87\x68\xa3\x14\x8a\x71\x62\x99\x4c\x0b\x4c\x87\x52\xef\x82\x45\x42\x9d\x2a\xa1\x75\x2f\xcc\xa5\xee\xf7\xd3\xe9\xff\x24\x4a\x09\xff\xf7\x42\x47\x4e\x9c\x10\x24\x51\xc7\x92\x6d\x12\xc0\x58\xc7\xf8\x03\x78\x86\x94\x16\xc5\x34\x1b\xa5\x0b\x1a\x8c\x77\x74\x13\xa9\x9e\x7e\xfa\x89\x2f\x09\xfb\x0b\x19\x5f\xbf\x3b\x3d\x3b\x13\xf1\x92\xaf\xc8\xfc\x40\x35\x99\x1f\xfc\xfd\xef\xaa\xff\x09\xb0\xb3\x8c\x50\x12\x44\x79\x26\x59\x9a\x8a\x88\x15\xe5\x39\xea\xbd\x83\x7e\x4b\xc4\x2c\x96\x47\xea\x63\x28\xf0\x01\x58\x44\x1a\x74\xea\x99\x96\x91\x95\x4a\x83\x9b\x26\xf2\x38\xe8\xb5\x88\x58\x95\x39\x80\x65\xd0\x5c\xae\x45\xca\xff\x8a\x8e\x06\x16\x87\xe0\xe0\x00\x3c\x03\xcf\x63\x60\x4e\xa1\xe1\x0b\x72\x29\x42\xd4\x1c\x90\x7b\xed\x4f\x20\x05\xd9\x88\x98\x83\xdf\x9c\x48\x49\xc8\x22\x86\x77\x1d\xc9\x2e\x4d\xf8\x77\x8a\x5d\x50\x7b\xa3\xb6\xf1\xcf\xb8\xb3\x05\x2e\x2e\x8e\xe9\x88\xc4\xaa\x6f\xfc\x73\xcb\xd2\x85\xfd\xea\xde\x76\x80\x1a\xc1\xf5\x28\xff\x5a\xe1\xcd\x7c\x41\xa6\x26\x75\xce\x5f\x72\x96\x72\xad\xc2\x28\x32\x9a\xb0\x07\x9e\x49\x16\xeb\xeb\xba\xd7\xcc\x12\x11\x7a\x26\x56\x8c\x3d\x99\x9e\x7e\x2c\xbf\xd5\x81\x12\x31\x4f\xa0\x08\x50\xa8\xc4\x99\x18\x17\xa8\x03\x34\x22\x26\xb5\xcd\xa4\x3e\x13\x37\x5b\xd5\x36\x3d\x9e\x24\x42\x44\x9e\x19\x1a\x58\x7d\xfe\x30\x8b\x48\x04\x77\x74\x89\x6c\x64\xa9\x8b\x51\xe3\xd3\x0d\xbc\xac\xfd\xb6\xa6\x71\x18\xf9\xb6\x74\xc5\xa4\x6f\x43\x41\x08\x66\xe5\xdf\x48\xa8\xca\xbf\x11\x7a\x8e\xd3\xf1\xa2\x79\xdf\x36\x34\xa6\x2b\x96\x91\xb5\xc8\xa4\xe5\x2c\xf0\x24\x00\xa9\xf4\xf9\x8c\xab\x7c\x41\x2e\x19\x0b\x41\xd6\x57\xc2\xa2\x14\xba\xad\xc1\x38\x56\x4c\xf9\x53\x2d\xcd\xd1\x73\x8f\x05\xfa\x97\xf4\x82\xfc\x3e\x5f\xb0\xb3\x72\x63\x10\x97\xe6\x69\xa1\xed\x40\x81\x9f\x4b\xd5\x63\x46\x14\xdb\x12\x40\x93\xa7\x59\x8f\x3a\x17\xd6\xb1\x08\xec\xd1\x9d\x2b\x7b\x81\x22\xb6\x9a\x87\xb8\x8f\xad\xb9\x34\x96\xfd\x42\x2f\x9b\x50\xa3\x34\x51\x32\x7f\x2c\x62\x86\x28\x27\xf3\xc1\xe7\x85\xd9\x46\xa4\x8a\xbe\x93\xf0\x02\xcf\x37\xe0\xb0\x60\x5d\x71\x59\x2d\x8e\x3e\xd0\xba\x06\x41\x78\xc7\x63\xd4\xb3\x3c\x13\x5d\x10\x11\xbb\x66\xe8\xfe\x69\xf6\xa7\xa5\x7f\xd5\xcc\x41\xb3\x3a\x87\xc9\x72\xe0\x30\xd4\xd6\x8c\x74\x07\x55\x35\x65\x8f\x3e\xac\xc0\xbb\x13\xc4\x11\xd9\x2e\x93\x6c\xa3\x21\xd7\x9b\x59\x50\x18\xdc\x66\x10\xba\xc8\xbf\xf5\x19\x39\xa7\x6c\x23\xe2\x1b\xd6\x45\xf9\xa1\xf1\xcf\x45\xed\xd5\x60\x55\x0a\xaf\xd8\xcf\xb3\xcb\x89\xe2\xbd\x56\x3c\x26\x31\x60\x1e\x29\xd4\x89\x07\x3a\x78\x84\x64\x0c\x25\x3a\x3b\x80\xea\xf1\x44\xb5\x46\xfc\x8d\xb4\x8e\x1d\xb7\xa2\x9d\xbd\x06\x6c\xf8\x0b\x8e\x0c\x98\x3d\x18\xe0\x93\x56\x5e\x87\x3c\x0b\xc4\x96\xa5\x85\xbe\x7a\x32\x45\x5b\x0d\x0d\x95\x6c\xcc\x33\xb6\xb1\xdd\x32\x5b\xd9\x15\x47\xaf\xb3\x5d\xb2\xa6\xd9\xd8\xcd\xd0\x90\xb3\xc9\xf9\x35\xa1\xb9\x14\xa3\x90\x29\xb1\x0a\x8c\x57\x31\x1c\x62\x1a\x6e\xf4\xfe\x94\x94\x01\x11\x15\xd9\xd0\xe4\x11\x5b\x82\x1f\xab\x6f\x9f\x0e\xea\xb0\xb1\xc7\x36\x8a\xab\x83\x59\x11\x37\x5d\xd1\x2e\x88\x18\x05\x49\x5a\xf1\x99\x5a\xf0\xfa\x14\xd3\x2d\xe5\x11\x5d\xa8\x7b\x15\xd1\x95\x05\xa8\xc4\x86\xf3\x0b\xa3\x21\x07\x99\x20\x43\x07\xfd\xa0\x4a\x66\xac\xe4\x2b\x1c\xf9\x31\x3b\xeb\xcc\xd8\x4d\xb9\x7e\xac\xa3\x5f\x05\xe7\xdf\x17\x0e\xe5\x95\xa0\x4d\xee\xb9\x09\x5a\x8a\xe3\xf1\xca\x60\xc3\x56\x98\x61\xeb\xa4\xe2\xed\xd0\x93\x27\xd6\x07\x6c\xb1\x33\xe0\x50\x13\x37\x8a\xe3\x72\xfd\x9f\x7d\x5f\x6b\x17\xd4\xba\x4d\xc6\x9a\xd3\xce\x8f\x92\x3a\xeb\x56\x43\x3c\x89\xf1\xa1\x15\xa1\x39\x3e\x8f\x9b\x73\xcb\xd9\xb3\x4e\x50\x71\x7a\xb4\x30\x93\x91\x2d\x4d\xb9\xc8\x33\x72\x76\x7d\x8e\xb7\x1d\xcf\xd2\x13\x31\x58\x18\xd9\xbb\x64\x11\x7f\xc0\x7e\x2d\x38\x5a\xbf\x56\x59\x14\xe0\xc2\x57\x49\xc2\x34\x51\xb3\xbb\x5a\xac\x92\x46\x47\xc5\x6f\xcd\x6e\x2a\x32\x83\x8f\x89\xc7\x9e\x9d\xa7\xb1\xf1\x3a\x63\x36\x62\xf5\x7e\xe3\x6c\xed\xe5\x36\x3d\x5c\xb6\x57\x1a\xd9\x83\xfd\xbe\x6f\xee\x7c\x9e\xc9\x82\x97\x8b\xc3\x82\x3b\x53\x78\x04\x0e\x81\x88\x15\xab\x96\xca\x3c\x79\x0e\xc1\xad\x73\xe7\x7b\xf3\xe4\x6d\x6c\xf8\x5e\x38\x52\x3b\x3f\x29\x3c\xf9\xa4\xe2\x7c\xbf\x6d\x99\x81\x8d\xca\x38\x0d\x88\x18\x45\x67\x70\xd8\x34\xfe\x7d\x70\x2f\xf3\x64\x95\xd2\x50\xc7\x0b\x6c\xbf\x18\xbf\x45\xde\x24\xc0\xe2\xba\x2f\xc8\x82\x91\x94\x6d\xc4\x96\x85\xda\xb7\xcd\x7c\x20\x52\xb5\xc2\x65\xca\xb2\x35\xe1\x71\x26\x69\x14\x3d\xa9\x10\xd5\x72\xfd\xaa\xb7\x78\x9f\x0d\x74\x43\xa5\x02\x10\xbd\xc7\x0a\x99\x4a\xa1\x9a\xaa\x1d\x45\x0d\x05\x8d\x22\x11\x3c\xed\x22\x7f\x7d\x5a\x81\xa7\xb8\x98\x74\x53\xc1\xa6\x5e\xbd\xcf\x3b\xb5\x42\x52\xae\xbf\x9a\x41\x0c\x4e\x33\x70\x2e\x8b\x1d\xdc\x33\xdc\xa0\x54\xe4\x0a\xc7\xac\x56\xa9\x89\x01\x7a\xc6\xbd\xf0\xf2\x0d\x9a\xe4\xe2\x61\x81\xd3\xb1\xe1\x2b\x8d\x05\x2a\x6c\x7f\x08\x92\x0b\x98\x06\x1d\xc7\x2f\xa0\xb1\x76\xfa\x7c\x51\xdc\x33\x10\x80\xa5\xbe\x68\x8a\x9f\x83\xbb\x09\x29\x78\xca\x6b\x46\xf2\x4c\xbd\x52\xf8\x7d\xa4\x4e\x65\x04\x93\x70\x82\x82\x26\x49\xd6\xba\xf2\x72\x8a\x2d\xfb\xe5\x30\xa1\xb6\xcb\x4d\x7e\x89\xba\x53\xa2\x7a\x0e\xd9\x18\xbb\xde\x5f\x1e\xc6\xef\xfc\x32\xf0\x4f\x3f\xb1\x38\xfc\xfb\xdf\xf7\x92\x82\x0b\x01\x18\x82\x73\x37\x34\xe6\x4b\x96\x49\xb3\xbf\x59\x43\xa0\xd5\x66\x16\x96\x1e\x11\x9a\x91\x7b\x16\xc1\xc7\x3a\x2c\xa8\x64\xfb\x32\x5d\x28\x1b\x98\x04\x23\xcc\x88\x58\xb5\x65\x14\x92\x2b\x2b\xe8\x40\x23\xd5\x82\xa5\xc8\xc4\x43\x31\x6f\x8b\x25\xd7\xa4\xb2\x90\x9b\x0b\xd9\xbb\x6e\x40\x4f\xb2\x5e\x02\xb2\x1f\x76\x44\x7b\x9c\x19\x0b\xc6\x37\xd9\x88\x26\x49\x7d\xcb\x8c\x49\xaa\xe6\x08\x0c\x8e\x7a\x1f\xec\xef\x7d\x3d\x10\x8d\xee\x6e\x64\x4a\x25\x5b\xed\x4e\xb4\x69\x62\xfc\xa9\xf2\xb3\xda\xc4\x9f\x7e\x22\x52\xfc\x91\x6e\xa2\xfa\x4b\xf2\x37\xc2\xe3\x90\xc5\x92\x7c\x85\xed\x58\x94\x31\xf5\x2f\x52\x18\x73\xae\x45\x14\xf1\x78\xf5\xc9\x42\xad\xa9\xfd\x53\x31\xcb\x0d\x7d\xb0\xe4\xb2\x13\xf2\xc6\x3a\x45\x84\x98\x13\x63\x96\x59\x37\xe0\x45\xd5\x25\xfb\x17\x4d\x40\xae\xbb\xa6\x71\xb0\x66\xe9\xc8\x58\xe7\xd0\x46\x56\x0a\x6e\x18\xdf\x1a\xac\x59\x98\x47\x2c\x1d\x83\xb7\xe2\xb8\x8c\xf8\x05\xb3\x65\xca\xc1\x2d\x7c\x94\x88\xb0\x0c\xec\x08\x4b\x73\xea\xf6\xcb\xf1\x9b\x2f\xc7\x5f\x81\x6f\x1a\x31\x43\xbb\x33\x92\xe2\x99\x3f\x22\x14\x4c\x71\xe0\x7d\x08\x87\x58\x0f\x71\x1a\x86\x22\xce\x30\x7c\x56\x44\x4c\x23\x54\x88\x20\x3d\xb2\x3b\xd9\x50\xb4\xea\x31\xf0\x89\x83\xd0\x10\x33\x4b\x42\xc3\x70\x04\x1e\xd0\x71\x96\x83\x3c\xac\xf5\xa2\xf6\xf7\x49\xca\x05\x94\xfc\xd7\x2b\x87\x00\x93\x58\x47\x12\xa0\xd9\xd7\xb6\x46\xa4\x0c\xad\x73\x76\x17\x7c\xa9\x3a\x06\xe7\x1f\xd0\xba\xb2\x2d\x0f\x64\x25\x94\xa3\x3f\x54\x4f\xc8\xa1\xb6\xe7\x56\x0c\xb0\x6a\x27\x1d\xde\x87\xd5\x7e\x44\x76\x42\x22\x1e\xe7\x0f\xa6\xc1\x4f\x3f\xe9\xec\x6c\xff\x75\x77\x44\xfe\x6b\x4b\x4e\x7e\x47\xc6\x97\x56\x4f\xc4\x1c\x5b\xdd\xf8\xbf\xee\xc8\xdf\xff\x7e\x42\xe6\x07\xea\xdf\x5b\xf5\xf6\xc0\xea\x8a\xc5\xa1\xf5\x81\xa2\x37\x5a\x64\xaf\x46\x7f\x97\xbb\x55\xdd\xed\x8f\xf4\x8e\x91\x2c\x4f\xab\x08\x0d\x00\x66\xc0\x03\xde\x8c\x90\x51\x48\x31\xbd\x16\xfc\x46\x3a\xc2\xf2\x84\x5c\x8a\x1b\xdd\xb8\x7c\x0b\x8e\x27\x29\x55\xa0\x21\x17\x15\x5d\x31\x8e\x9b\xde\xb5\x9e\x0f\xe4\x25\x58\xb9\xff\x95\x81\xef\xd8\xee\xc4\x71\x28\xfb\x8d\x6e\xcf\xfb\xe2\x81\x05\xb9\xec\x35\xed\x2e\x73\xa9\x3e\x54\x15\x72\x75\xe9\x42\xb7\xd8\x59\x81\x50\x34\x40\x78\xcc\x37\xfc\xaf\x8c\x84\xe2\x3e\x96\x7c\xc3\x48\x88\xb7\x83\x1a\x2c\x65\xb3\xf6\xc6\x12\xf9\x2d\x91\x2c\x8a\x6c\xea\x20\x05\x09\x05\xd4\x4b\x80\xdc\xa9\xe5\x00\xe6\x93\xf9\x41\xe9\xfb\x50\x3d\xa9\xa1\x08\xb2\xe3\x40\xc4\x01\x4b\x64\x76\x6c\x52\x4f\x65\xc7\xa0\x68\x48\x44\x78\xfc\xc2\x04\x80\x71\x11\x8f\xc4\x52\xdd\x8c\xf2\x3c\x58\xef\xbe\x4b\x69\xc0\xa6\x2c\xe5\x22\xbc\x61\x81\x88\xc3\xec\x84\xbc\x6e\xa0\xbc\x32\x25\x24\xaa\x9e\x4c\x03\x73\xf7\xcf\x22\x9a\x65\x08\xc0\x9f\x7e\x22\x63\xe4\xe5\xd4\x45\x99\xd6\x1b\x90\xbf\x15\xd6\x89\xf9\x01\x12\x2f\xd4\x66\x9b\x33\x35\x3f\xb0\xee\x88\x62\x20\xcf\x0c\xc5\x6e\xe2\xbe\x92\x9a\x1b\xe9\x22\xab\x4a\x61\x35\x9e\x0e\x14\x93\xb8\xc1\x8a\xb3\x1e\xdb\xfd\x4d\xa4\xe6\x20\x8d\x51\x14\x3d\x26\x4d\xba\xdd\xa6\x74\x06\x7e\xb7\x7c\x49\x76\x22\xc7\x10\x68\x1a\xa5\x8c\x86\x3b\xbb\x53\x3d\x19\xd0\xb3\xe6\x19\xf3\x0c\x6e\x9c\xc2\x74\x6b\x78\x6d\x9f\x72\xbe\x01\xd7\x85\x9f\x7e\x1a\x9f\x5d\x4e\x26\xea\x0f\x1b\xed\x40\xac\xca\x86\x2a\xf6\xe2\x4f\xf3\x83\x63\x91\xc8\xe3\x20\xe6\xc7\x0b\x1e\x1f\x5b\xc3\x81\x43\xf8\xc1\x48\x0f\x51\xf0\xb0\xf8\xb0\x78\xfb\x3e\x15\x9b\x8a\xab\x86\xd1\xc2\x7e\xa4\x89\x61\x20\xed\xe7\x05\x39\x85\xd0\x9b\xdf\x7f\x7a\x77\x71\x7d\x79\x31\xbb\xb8\xb9\xbd\xb9\xb8\xfe\x61\x72\x76\x71\xfb\xfd\xd5\xcd\x0c\x28\x80\xe3\xdd\xf4\xea\x7a\xa6\x23\xaf\xc4\x96\xa5\x29\x0f\x43\x86\xf8\x83\xbd\x9b\xbe\x27\x1b\x23\xe1\xdb\x0f\x02\xc7\xca\x9c\x61\xb4\xe5\x23\xa3\x8e\xa9\x7f\x61\x3c\xc4\x9b\x59\x35\x58\xbc\xad\x2d\xc5\x00\xdf\x9a\xec\xe5\xd5\xf9\xc5\xed\xe5\xe9\xc7\x8b\x7a\xbf\xe0\x57\xd5\x80\x14\x3e\xe0\x16\xea\x82\x54\xf1\x72\x4a\xe5\xfa\x04\x6e\xd2\x58\x9d\x78\x88\xe0\x72\x4e\xe5\xec\xf4\xc3\xe4\xec\xea\xf6\xf2\x62\xf6\xe3\xd5\xf5\xef\x27\x97\xdf\xdd\xbe\x3b\x3d\xfb\xfd\xc5\xe5\xf9\x3e\xf3\x29\x76\xef\xf7\x6c\xe7\x9b\x56\x85\xc3\xac\x9a\x16\xed\x07\x30\x38\xb6\xba\x35\x01\x05\x56\xb3\xad\x88\xf2\x0d\xfb\xe8\x0a\x55\x1f\x91\x8d\xfa\x19\x57\x7e\xbc\xa5\xe9\x71\xc4\x17\x70\x3c\x8d\xfe\xcd\xbd\xd9\xe5\xbd\x1d\xc5\x4c\x8e\x42\x9e\xb6\xf5\xab\x5a\xdb\xe7\xde\xdd\x67\x10\xf3\xd1\x82\xc7\xf5\xce\x32\x16\xe4\x80\xa1\x44\x2c\xd9\x43\xbd\x60\x49\x92\xf2\x2d\x8f\xd8\xaa\xea\x4d\x44\x5c\x18\xa8\x22\x72\x28\x49\x62\xc1\x63\x9a\x56\x82\x04\xd1\xdc\xa6\xde\xd5\x24\x8b\x25\x8f\xc0\xed\x1e\x64\x8b\xb8\x7a\x09\xcc\xa9\xd0\xfd\x8f\x82\x98\x3f\x09\x72\xd0\xfd\x0d\xa8\xc0\x5a\x08\x50\x28\xed\x35\xab\xb6\xc9\xde\x1e\x45\x3b\x40\xf5\x33\xf6\xdc\xda\xcb\xc9\xed\xd9\xd5\xe5\x7b\x3f\xe6\x50\x8c\xe1\x9b\xd7\x23\xad\x44\x51\x7d\x83\x66\xe9\xa0\x3e\x0b\x63\x81\xa8\x1d\x12\x88\x09\x81\x3d\xf3\x1d\x95\xfa\x74\x34\x06\x81\x69\x4d\xbe\xfb\x45\xb1\x47\xcc\x6f\xf5\x72\x6e\x5d\x4d\x5f\x90\x1b\x86\x2e\xa4\xea\x32\x43\x36\x81\x22\x3a\x07\xfc\xd7\xbe\xc9\x50\xc2\x56\xaf\x3c\x2b\xfe\x15\x60\xf0\x17\xb0\x6f\x1f\x67\x9f\x88\x66\x3a\xb7\x34\xe5\x4a\x32\xf5\xef\xd1\xc7\xd9\xa7\x5f\x72\x63\xb6\x4c\xae\x6f\x37\x32\xaf\xaf\x63\x9a\xb2\x2d\x8b\x75\x7d\xa1\x12\xc9\x01\x57\x95\x45\x8c\x41\x68\xe0\x52\xa8\x56\xf5\x3a\x64\x66\x75\x37\x1f\x2e\x2e\x1a\xc5\xfc\x8a\x8b\xb0\xa4\x51\xc6\xaa\x67\xbf\x37\x21\xf9\x2c\x84\xef\xec\x8c\xc9\xc0\x90\xa5\x71\x23\xfe\xba\xec\xce\x41\x8c\x1e\x4f\x3f\x4e\xc3\x50\x71\x96\xef\x23\xf6\x40\x7e\x80\xa5\x93\xf3\x94\x6f\xc1\xc3\x9a\x1a\x0b\x90\x6a\x91\xb0\x14\xf4\x05\x9f\x62\xfe\x40\xce\xc5\x86\xf2\x98\xdc\x88\xe0\x0e\x13\xab\x41\x9c\x24\x39\xe7\x77\x34\x93\x55\x62\x03\x66\x78\x70\x93\x0e\xa8\xd4\x41\xf4\xef\x59\xc4\x1f\x00\xe1\xda\xf1\xe4\x37\xbb\x38\x20\xa7\xd3\x89\x83\xec\x2c\x23\xf6\xb0\x15\xd1\x28\x84\xa9\xb9\x29\x8f\x5a\xc2\x0f\x22\x9a\x6c\x56\x55\xda\xe3\xdd\x50\x77\xe7\x23\xb5\x15\x55\xf8\x35\x36\xaa\x39\x8d\xc7\x6d\x40\xe0\x96\x2a\xae\x73\xd0\x24\x3b\xf4\x85\x05\xce\xb5\x04\x38\x40\xbf\xb5\x42\x59\x2f\x6c\xa1\x24\x15\xab\x94\x6e\xb2\x02\x93\x9b\x28\xbf\x38\x44\xdd\x7b\x66\x7a\xb5\xbf\x57\xeb\x74\x6c\x84\x43\x32\xad\xee\x82\x92\xb7\x1c\x0c\xc0\x7f\x36\x45\xff\x94\x31\x7b\xc7\x4e\xa7\x13\xa3\xec\x55\x9c\xac\x42\x62\x21\x95\x14\xcc\x90\x1e\x34\x76\x7e\x3a\x3b\xbd\x99\x5d\x5d\x5f\xdc\xce\xfe\x38\xf5\x13\xf6\x72\x09\x4d\x82\xfe\x23\xe5\xb2\xf0\xc5\xea\x1a\xef\xc7\xd3\xc9\xec\xf6\xfd\xd5\xf5\x6d\x31\xb0\x77\x4c\x00\x40\x63\x34\x45\x49\xf7\x26\x9e\x8a\x62\xfe\x32\x04\x73\x2d\x44\xc6\x8a\x1d\x61\xb1\x11\x96\x7d\x7c\xcd\xbf\x96\x70\x04\x4b\x44\x2b\x00\x56\xdc\x53\x5c\x1c\x24\x07\x59\x62\xde\x79\x2b\x22\x5b\xbd\xf7\x2c\xfa\xc3\xa7\x9b\xd9\xc5\x75\xc7\x09\xfc\x26\x3b\x5a\xac\x92\xe6\x81\x38\x2d\xbd\xb6\x60\xc8\x77\xdf\x4d\xad\x44\xda\x1e\x38\x4f\xfc\xa4\x9b\xe6\x52\x60\x77\xcd\xb1\x2e\x62\x30\x33\x4e\xa6\xf5\xef\x6b\xfb\x37\x99\xfe\xf0\xd5\xf4\xea\xea\xc3\x6d\xb3\xa5\x35\xd2\x29\x84\x90\x7a\x47\x11\x29\x39\xe7\x19\xfc\xf3\x87\x3f\x7c\x38\xbd\x34\x07\xde\x68\x98\x26\x53\x92\x08\x11\xb5\x9f\xa4\x62\x26\xd0\x85\x77\x2a\x97\x8a\xd3\x71\x5f\x36\xc5\xef\xc1\xed\xce\xe3\x98\x45\x24\x64\xe0\x9c\x07\x21\xe7\x7c\x49\x78\xc2\x13\x08\xa3\x86\x39\x87\xee\xb9\xbc\xbf\xf8\x30\xf9\x83\x82\xc5\xe5\x64\xda\xce\x11\xca\xba\xa9\xab\xe4\x13\xa6\x22\x54\xf0\x48\x73\xc0\x90\xe4\x5d\x1e\xae\x18\xe2\x9d\xd2\xe1\xb9\xe4\x18\x7e\xff\x4d\x56\x9c\x4c\x75\x42\xb2\x80\xea\xf7\xa0\x7e\xff\xe5\x58\xcf\x0a\x48\xd7\x66\x6b\x2b\xc0\xf5\xec\x28\x42\x11\xda\xff\x4a\xd9\xea\xfa\xda\x7e\xe4\x29\x5b\xe5\x34\x0d\xf7\x58\xdf\x8f\x93\xeb\x8b\xef\x3e\x9d\x5e\x9f\xff\x4a\xd7\x38\xab\xdc\xc0\xed\x57\x70\x07\x4b\xf1\xd9\x72\x5f\xaa\x39\xa8\x8f\xe1\x04\x4f\xa6\x45\x05\x8f\x7a\xcf\xc1\x5a\x64\x8a\xa3\x40\x63\x19\xcf\xd0\x38\x33\x26\x67\x6b\x1a\xaf\x30\xca\xd1\x64\x68\xd6\x2e\x36\x15\x3b\x3f\xf4\xba\xa6\xdb\x46\xbf\xb1\xd0\x66\x06\x9d\xe3\x59\xc7\x9c\x2e\x95\xa8\xad\x4b\xab\x8c\x46\xda\x96\x3b\x0a\x78\x58\x97\x78\x5c\xa6\xc1\x0b\x2b\xfd\x02\x93\x0d\x64\x73\x36\x39\xbf\x3e\x2e\x7f\x7c\x5b\xfc\x38\x8f\x7f\xfa\x69\x44\xd0\x7c\xf1\x32\x62\x31\xf9\x2f\x35\x60\xf6\x8a\x7c\x41\xaa\x7c\x9d\x1f\x91\x61\x37\x8e\x83\xa1\x2d\x53\x4b\x9e\x66\x52\xf7\x5b\xb1\x51\xf9\xba\x7d\xdb\xab\xdb\x88\xd6\x7b\x55\x2b\x61\x51\xc6\x9e\x6a\xe6\x63\x8d\xaf\x54\x33\x6b\x04\xdb\x3a\x63\x36\xc4\xd0\x05\x50\xdd\x44\x62\x05\xc7\x23\x13\x18\x80\x21\x23\xf5\x53\x06\xa6\x7b\x1f\xfd\xd3\x53\x3b\x9f\xdc\x9c\xbe\xfb\x70\x71\xfb\x7e\xf2\xe1\xe2\xf6\xc3\xd5\x77\xdf\x4d\x2e\xdd\x8a\x94\x76\x7e\x0c\xc5\xae\x32\x56\x56\x00\x97\x5f\x5c\x13\x4c\x04\xa7\x7e\x3e\x3d\x3b\xbb\x98\xce\x5a\xef\xff\xf9\xc5\xfb\xd3\x4f\x1f\x66\x17\x97\xe7\xd3\xab\xc9\xe5\x6c\x76\xa5\x78\xf2\xd3\xb3\xd9\xe4\xca\x4f\xbd\xb0\xdb\xe6\xdc\x9a\xe7\xf6\x46\x67\xc0\x09\x73\x1a\x65\x92\x06\x77\x8f\x38\x90\x86\x9a\xfd\xf0\xf6\xe6\xd3\x54\x49\x05\x7b\x41\xac\xe4\x40\xde\x7a\xbe\xb3\x18\x90\x5e\x27\xf7\xf2\x74\x76\x7b\xf5\x69\xf6\xdd\x55\x9f\xcd\xf3\x1e\xda\xf2\x50\x4d\xa6\xdb\xb7\x0a\x8d\x95\x82\x45\xeb\x86\xf5\x01\x44\xa1\x0e\xf1\x9e\xe8\xe6\x56\x41\x2a\x05\xf4\x11\x55\x28\x06\x07\xfb\x70\xf5\x9d\x3a\xab\xd3\xd3\xd9\xf7\xea\x3c\x01\x7a\x45\x2f\x7f\xbc\x0f\x70\x10\xcd\x85\x90\x02\x2e\x48\xdb\xe4\xad\xfe\xbc\x93\x57\x83\xf4\x39\x5b\xbe\x09\xdf\x5c\xfc\x70\x71\x3d\x99\xfd\xf1\xe6\x8f\x37\x38\x67\x8d\xc3\x01\xd1\x17\xc1\x4c\xf1\x52\xb4\xae\x24\xdb\x65\x91\x58\x75\xac\xc5\x1a\xca\xbb\x9c\xb6\x2b\x6c\x8d\x37\x3f\xb8\xa7\x69\xcc\xe3\x55\xaf\x6b\xe5\x5c\xef\xd9\xf5\xc5\xc5\xa5\xea\xeb\x47\xec\xa9\xb9\xe2\xbe\xcb\x81\x9e\xbc\x2b\xfa\xd1\x3d\xd1\x6a\x77\xdf\x5f\x9c\x7e\x98\x7d\x7f\x71\xa9\xf0\x9d\x5b\x9a\xf2\xe3\xb8\xb6\x05\x4f\xa6\x33\xd5\xe5\x8d\x96\xd3\x80\x03\xcd\x25\x06\x04\x94\x37\x59\x27\x43\x8b\x97\x58\x8c\xb4\xfd\x3e\x55\x3a\x6c\x95\x53\xaa\x53\x7d\xac\xb2\xce\xe5\xec\x67\x7e\xc7\x9c\x06\x0d\x6e\x2a\x48\xf2\x13\xf2\xc5\xd7\xaf\x2b\x96\xdc\x88\x6f\x59\xcc\xb2\x6c\x9a\x8a\x45\xbd\xe2\x1e\x7b\x68\xe4\x0b\x28\xad\x37\xf5\xdf\x47\xc4\x36\xf0\xd6\x75\x42\xd8\x62\x04\x37\x64\xa4\xc6\x74\xbc\x5c\xf0\x34\x74\xbc\x4b\xaa\xae\x00\x6f\x5e\x57\x5f\x83\x47\x27\x8d\xce\x59\x44\x77\xde\x46\x4b\xca\xa3\x3c\x65\xb3\x75\xca\xb2\xb5\x88\xc2\x13\xf2\xb6\x0a\x4a\x1a\xf2\x9f\x1b\x0a\x35\xd3\x7c\x15\x0c\x8e\x97\xad\x70\xe8\xad\xa8\x8e\xf8\xe2\x78\x23\xc2\xdc\x91\x32\x0e\x0f\x74\xc4\x17\x23\x4f\x03\x35\xa9\xab\x38\xda\xb9\x4a\x43\x54\x47\x49\xf3\xf8\xf8\x01\xaf\xcd\x38\x12\x8a\x62\xbb\x86\xd2\x2d\x46\xae\x16\xe5\x58\x48\x87\x5a\x06\xdb\xd2\x14\x06\x44\xa0\xbb\x87\xda\xd2\x74\x94\xe6\xf1\xc8\xdd\x66\xcf\xc1\xc0\x62\xdc\x31\x98\x02\xe3\xa3\x06\xc3\x2e\x50\x2d\x9b\xed\xe2\x46\xe2\x27\xd7\xca\xd5\x39\xa3\xab\x46\x9e\x93\x17\x58\x61\xd8\x68\x3a\x8f\xc8\x3d\x03\xf7\x65\xad\x11\x05\x9a\x05\x49\x0a\x72\x9d\x2c\x45\xb5\x54\xd4\x17\xbd\x60\x08\x95\xe4\x38\xdb\x65\xc7\xcb\xec\x78\x91\x2c\x15\xaf\x7a\xcf\x74\x6b\x4c\x8c\x56\x1f\x0e\x92\x35\x4a\x12\xf2\x14\x7c\xd1\xea\xb5\xfd\xcc\xe2\xb2\x5d\xb6\x6c\x1c\x2e\x7b\x5d\x7a\xd0\x7a\x93\x17\xe4\x1d\xc7\xbe\x31\xdb\xde\x86\xd1\x18\xb3\x7f\x40\x32\xb1\x62\x72\xdd\x4b\xe1\x12\x45\xaf\x24\x15\x09\x5d\x29\x11\x50\x47\x9a\xd6\x34\xdd\x66\x5c\x9d\xda\x17\x38\x64\x9e\x91\xbb\x58\xdc\xc7\x36\xe8\xa8\xac\x0c\x86\x6e\x37\x98\x2d\xba\x3a\x65\xed\xd0\xa3\x53\x03\x37\x46\x42\x20\xe8\x49\x81\x23\x6e\xe5\x73\x37\x38\x83\x98\x8f\x22\xb1\x6a\x5a\x95\x9a\x87\x25\x12\x2b\x7d\x72\x8f\x6b\x46\x7b\xe2\xbd\xdf\x88\x5a\xaa\x46\x09\x13\x48\x67\xbb\x3d\x97\xef\x47\xed\xa8\x44\x41\x11\xe6\x54\xc3\x6f\x2d\x08\x6a\xd4\x79\x8d\xdb\x3b\xf5\xa1\x88\x51\xe7\x8d\xed\xee\xd7\x85\x0d\x46\x1d\x18\xae\xbd\xd7\x76\xec\x89\xfe\xc8\xef\x79\xc4\xae\xd2\xb3\x4a\xe4\x47\xcb\x0d\x6b\x1f\xd0\x79\xdf\x70\x9c\x73\x73\x97\x9b\x83\x95\x01\xbb\xc6\x09\xe0\xec\xd2\x65\xaf\xf3\x58\x3d\xdb\xa7\xe4\xb4\xa5\x8e\xda\x0d\x9f\xed\x3d\x7a\x0c\xaa\xe5\x2a\x74\xa8\xf0\xd9\xe5\x04\x64\x71\xcf\x4a\x1c\x37\xad\xc7\x19\xf1\xdc\xbb\x17\xe4\xa3\x85\x4e\x4b\xc4\x09\x9c\x68\xdd\x55\xd0\x8e\x50\x32\x65\xf7\xed\xae\x40\xbd\x0b\xe9\x54\x6a\xd1\x25\x56\x47\x55\x77\xc3\x22\x1c\xcc\x8a\x04\xb3\x7b\x34\xc1\x2a\x99\xc9\xd7\x65\xfb\x03\x02\xe7\x55\x9a\x16\x1d\xe0\x6a\xf7\x99\xea\x79\xb3\x9c\x9e\x59\xe5\xa6\x69\x0d\x9e\xdf\x20\xed\xc0\x22\x6e\xe2\xea\x99\x4f\xe7\x35\x20\x4d\x34\xe3\xa0\xc7\xcd\xcb\xd2\xb4\xb2\x37\x67\xda\x61\x8d\xde\x77\xca\x5a\x6d\x62\xac\xe3\x53\x08\x2c\x39\xe7\x69\x43\xb1\x80\xeb\x29\xed\xe8\x45\x4b\x0c\x8f\xf0\xa8\x23\x34\x14\xf2\x0c\xb6\x4e\xf1\xcd\x96\x8f\x30\xfc\x33\x62\x72\xa4\xc3\x59\x8e\x91\xae\x1c\x43\xb3\x02\x60\xff\x6f\x1e\x66\x85\xc6\x81\x14\x91\x37\x5d\xde\xd3\x76\xe8\x4a\x19\x9e\x54\x0f\xfe\x79\x7c\x2c\xcb\xbe\x71\x40\xf5\x3c\x1b\x45\x4c\xd0\x0d\x63\x76\xee\xb8\x75\xbe\x18\x07\x62\x73\x5c\x09\x66\x3b\x6e\x66\xe9\x70\x86\xe6\xe8\x00\x1e\x2b\x3f\xf3\x3e\x39\x4a\x1e\x1d\xb8\xe3\xc8\x43\x62\xc2\x1a\x50\xd3\x5e\x49\xea\x45\x75\x51\x6d\xf4\x47\x86\x3c\x95\x11\x03\xed\xe2\x96\xe1\x55\x30\x79\xa7\x52\x96\x44\x3c\xa0\x19\x84\xcc\x3c\x2a\x20\xc8\xb5\xc8\xac\x0c\x0b\x2a\xaf\xc6\x35\x2b\x43\x26\xbb\x22\x72\x3a\xc1\x48\x48\x1b\x28\x49\x9f\xa0\x1e\x5f\xb7\xe0\x91\x83\x9c\x96\x71\x7b\x57\x4c\x27\x4d\xef\x6a\x51\x0f\x89\x28\x79\x49\x77\x68\xce\xcf\x1e\xae\x62\x70\xcd\xac\x8c\x1d\xb1\x10\x46\x35\xa2\xc4\x0a\xcc\xb2\x9b\x17\x51\x59\x6f\x3d\x68\xc7\x17\x97\xe2\xd6\xfd\x58\xad\x8d\x59\xd6\x9b\x52\x4e\x10\x4c\xe3\x19\x31\x09\xc5\x27\xf3\xd8\x17\xc7\x32\x44\xc1\xf4\x8a\x82\xb1\x51\x3a\xb6\xf9\xec\x88\x18\xdf\xad\x69\x44\xc7\x7c\x4e\xc8\x48\x2d\x39\x57\xaf\xe8\x91\xc2\x2e\xe7\x0a\x20\x71\xba\x79\x8d\xfa\xa1\x19\x52\xf5\xae\x2e\x1b\xb8\x9d\xac\x1a\xae\x47\xda\xb3\x05\x4b\xe4\xd8\xe7\x5d\x0a\x75\xc4\x3d\xe2\xba\xd6\xbf\xde\x9e\x5d\x5d\xce\xae\xaf\x3e\x7c\xb8\xb8\xf6\x29\xaa\x9b\xfa\xae\xbd\x5c\x96\x2c\x87\xa5\x67\xd2\x50\x2a\xd6\x04\xf4\x73\x6b\x16\xdc\x8d\xaa\xd9\xc5\xca\x66\xa3\x68\x0f\xcd\xdb\xaf\x50\x03\xd9\x73\x95\x69\xe7\x2a\x7f\x26\xee\x6b\x1f\xe6\xa4\xce\x89\xfd\x4c\x9e\x27\xf6\x12\x51\x7c\x38\xde\xbe\x59\x30\x49\x8b\xe5\x4e\x45\x58\x8e\x87\xc3\xfd\xf2\x0c\x99\x23\x18\xf9\x89\x38\xab\x9e\x8c\x30\x93\x41\x38\xca\x14\xbb\x25\x0d\x13\xdc\xf3\x4b\xb9\x53\x6c\x4a\xcf\x4f\x74\x2e\x11\x36\x0a\x68\x4c\x23\xfd\xd5\xc1\xd1\xff\x8f\x10\x72\xa0\xfb\xdb\x7e\x39\xfe\xe2\xcd\xf8\xcd\xc1\x09\xd1\x26\x4d\xed\x17\x70\xf2\x3b\x92\x25\x11\x87\x24\xeb\x64\x7e\x70\x34\x3f\x20\xb6\x51\x9f\x60\x2e\x5b\x9d\x0b\x62\xa6\x87\x2c\xbd\x19\xf5\x0b\xdd\x7b\xef\xd5\xe9\x8c\x49\x95\x54\x01\x67\xc6\x1b\x86\xf0\xac\x28\x0f\x52\x2c\x0d\x8b\x19\x2f\x41\x06\x64\xa1\x19\xd7\xf6\x26\x29\x73\xe1\x99\x8e\x9a\x57\xd3\x7f\x20\x4b\xd7\x1a\xdf\x31\x2c\xbe\x7b\x81\x89\xd9\xd4\x34\xb5\xe9\x13\xb9\x4f\xd8\xb2\x5b\x4d\xb1\x6f\xb1\x77\xdb\x14\xfb\x82\x9c\x15\xab\xf1\x78\x57\x56\xdd\x16\xd5\xe7\x0b\x9e\x86\xee\xcf\x3f\xce\x3e\x99\x28\x46\x75\xaf\x4d\xc8\x29\x26\x58\x5f\xd2\x40\x97\xf2\x43\x37\x26\x64\xba\x5e\x90\x11\x99\x2c\x2d\x1f\xa7\xd2\x0b\xee\xc8\x94\x05\xdf\x89\x3c\x2d\xdc\xa3\xd5\x18\x23\xf2\xf6\xb5\xf9\xf8\x4a\xae\x59\x7a\xcf\x33\x06\x1a\x67\xed\xe2\x97\x12\xa3\x62\xef\xd9\xdf\xd7\x9e\xfe\x26\xd3\xc9\xb4\x67\x17\x5f\x78\xba\x28\xf5\x35\x34\xde\x11\x16\x07\x34\xc9\x72\x13\x1e\xea\xe9\x6e\x5c\x72\xeb\xaa\x73\xc3\x6c\xab\xde\x18\xfe\xf4\x5a\x33\x30\xc6\xc1\x4a\x3b\xbf\x7c\x9c\x7d\x6a\x38\xbd\xd4\xd8\x74\xfb\x8b\x37\x5f\x7d\xf5\xba\xe1\x50\xe0\x0b\x2e\x32\x59\x97\x7c\x31\x46\xf0\x19\x70\x74\xa8\x17\x7f\x61\x4a\x67\x80\x2e\x8d\x9b\x24\xa9\x65\x9d\xbb\x5c\x8a\x0d\x05\x7e\x2c\xda\x91\x44\xe8\xfc\xc3\xfa\x58\x78\x58\x44\xb0\xd9\x66\x19\x5f\xc5\xb7\x3c\xd9\xbe\x9d\x1f\x94\xf6\x66\x05\x9e\xc2\x23\xa5\x9e\x29\x2a\x23\x4b\x91\xa3\xdb\x6d\x33\xce\xe8\x84\xfc\x6d\x84\x88\xf6\x27\x83\x6f\xe7\x07\x31\x54\xcf\xd3\x4e\xb3\x4a\x0c\x1b\xe9\x8f\xac\xba\x60\xf3\x83\x20\x36\xd7\x19\xdb\xbe\x1e\x7f\x39\x7e\x53\x69\xa1\xb5\x2b\xea\xf5\x9f\x4a\xfa\xfe\x93\x4d\xea\xe7\x07\xe0\xd6\x0b\x1d\x68\xc5\x75\xb5\xf6\xd8\xfc\x20\x12\xab\xdb\x88\x6d\x59\x84\xad\x7e\x3c\xbd\xbe\x9c\x5c\x7e\xe7\x6c\xb6\xe4\x11\xbb\x4d\xa8\x5c\x63\x53\x87\xba\x53\xfd\x6f\x1c\x89\x55\xe3\xf3\xc2\xef\xfc\xb6\x9c\x90\xed\xb4\x5e\x6b\xae\xb6\xbd\x04\xd3\xed\xad\x2b\xba\xea\xf6\xb6\xf1\xd9\x46\xe6\xea\x8b\xdb\x5b\x1d\xdb\x74\x7b\x5b\x6b\x80\xc1\xc8\x27\x0a\x48\xbd\xfd\x8a\x5c\x50\x34\x51\xcd\xcd\x96\xe5\x11\xfa\xca\x3e\x42\xad\x2d\x2b\x87\xad\x45\xe9\xd6\x32\x13\x8f\xeb\xce\xdf\x6b\xeb\x47\x7e\x46\x43\xc0\xdf\xf5\xdd\x37\x35\xb7\xe7\x7a\x3f\xf6\xd6\x39\xfb\xd2\xa9\x86\x15\x99\xb1\xb6\x10\x43\x01\x6f\x8d\x4b\x8f\xda\xc1\xca\x28\xe5\x1f\xf6\x80\xde\x13\x9d\x88\x54\x6e\x68\xd2\x38\x06\x59\x4c\xa5\x6a\xa1\x00\x5a\x7b\x15\xd0\x84\x2e\x78\x84\x99\xa1\x60\xea\xd0\xcb\x47\x9a\x24\x3c\x5e\x65\xe6\xab\x7d\x67\xb2\xa0\x71\x78\xcf\x43\x75\x33\xba\x07\xb4\x1a\x37\x47\x33\xff\xd4\x71\xb1\x3d\xf4\x90\x77\x61\x38\x0a\xd2\xb0\xc2\x73\x3d\x57\x81\x9c\x46\x32\xb7\x67\x28\x93\xf3\xee\xbb\x69\x25\x2f\x36\xbe\x2b\x8b\xe5\xd4\xdf\x37\x4b\xe6\x78\x52\xce\x95\x85\x73\xea\x0d\xe6\x65\xf9\x1c\xcd\x0f\xce\x9f\xa7\x76\x4e\x7d\xee\xd5\xc2\x1b\x55\xca\x82\xa5\xe5\x76\x10\x30\x91\x8a\x5c\x56\x95\x3a\x43\xed\x9c\xa1\x76\x8e\xbd\x05\x43\xed\x9c\x9f\xad\x76\x4e\xfd\x12\x37\x2b\xe8\x54\x2b\xbb\xa9\x0b\x5c\xb9\xda\xfd\x4b\xe5\xd0\xec\x12\x6a\x29\x3b\xc2\x25\x6a\x17\xfa\x06\x1b\x9a\x92\x5c\x46\x51\x79\x7a\xa3\xab\x31\xa3\x94\xb9\xd8\x11\xaa\x79\xea\x3f\x9d\x63\x13\x67\x24\xc6\xdb\xaf\xbe\x7e\xf3\xc5\x9f\x0f\x9b\xaf\x30\x2d\xea\x89\xba\x9d\x5f\x7e\xd1\x7c\x8d\x20\x55\x57\x77\xd5\x2c\x00\x6d\x76\xde\xb5\xd0\xda\x7a\xce\xca\xa6\x78\x3f\x4c\x2d\x20\x84\xa5\x3e\x41\x06\xce\x98\xf0\x8b\x35\x7d\x62\x00\x84\xe9\x82\xcb\x94\xa6\x3b\x5d\xf0\x15\x82\x5f\x28\xfa\xd1\x62\x18\xec\x5e\xc5\x83\x9c\xd3\xdc\x95\xdb\x9f\x49\x1a\x87\x4a\xdc\x14\x29\x89\x68\xba\x62\xf5\xe9\xba\x3a\x25\xb0\x04\x75\xd3\x1c\x41\x92\xf8\xb4\x1c\x12\x7c\x80\x3c\xb9\x5f\xd5\x6b\x3f\xd1\x8d\x29\x9f\x5f\x06\x69\x9b\xe9\x79\x2b\xd8\x77\x57\xae\x47\xd5\x6e\xaf\x29\xfc\x00\x78\x0e\xb2\x84\x2e\x20\xe7\x05\x9e\x2b\xc5\x15\xd3\x93\x38\x9e\x1f\x40\x8d\x60\xfc\xe3\x64\xb3\x71\xd6\x1a\x37\xcf\x7b\x91\x96\x50\x2f\x57\x93\x67\xcc\xea\x0e\xfb\x3f\xd2\x05\x36\xd4\xef\xf3\x03\x05\x74\x7f\xb7\xf3\x03\xf8\x90\xa6\x8c\xbc\x79\x4b\x16\x5c\xea\x8b\x34\x86\x01\xeb\x5b\x6b\x8d\x06\xf3\xf5\xf7\xeb\x9a\xc9\x51\x31\x5a\x1c\x2a\x31\x66\xa3\x07\xfe\xf2\x8b\xca\xc0\x3f\xaa\x4f\x9c\x35\x37\xcd\x94\x61\x59\x58\xa8\xf6\xf4\x86\x20\x4a\xf0\x75\x9e\xb0\x74\x74\x7a\x63\xe2\x41\x79\x23\x93\x42\xf9\x24\x54\x2a\x5a\x7c\x42\xfe\xcf\xcb\xf9\x3c\xfc\xff\xbf\x3a\xc1\xff\xfc\xd7\xdf\xaa\x7f\x9b\x9f\x1f\x7b\x82\x7c\xf8\xd8\x7e\xeb\xa8\xcb\x85\xbc\x21\x8b\xa7\x22\x75\x21\xb3\xca\xb9\xfb\x50\xb4\x34\x88\x12\xc2\x4d\x70\x2f\x14\x6e\x49\x52\x21\x45\x20\x22\xc3\xbd\x60\xd7\x4e\xc8\x9c\x9b\x1a\xb4\x52\x90\x37\xff\xfb\xb7\xcd\x26\x1b\xfa\xc0\x37\xf9\xe6\x84\xbc\xfd\xfa\xeb\x2f\xbf\x76\xbc\xe7\x31\xbe\x7f\xb3\x27\x22\x8d\xc4\xea\x86\x6d\x59\xca\xe5\xee\x26\x48\x19\xab\xf3\x7a\x8d\x65\x1f\x7e\xa8\x7f\x61\x96\x1f\x89\x15\xc9\xf4\x1b\x42\x17\x62\x6b\x4c\x46\x91\x58\x39\xab\xc7\xaa\x93\x03\xf5\x72\x35\xf3\x96\xc9\x50\xe4\xd2\x22\x27\x64\x72\xf9\xfe\xca\x45\x3a\xda\xb6\x5f\x91\xa4\x19\xe4\x6c\xfb\xc8\xb2\x35\x06\xd8\x36\xed\x1d\xf5\x55\x5d\xba\xbe\x22\x19\x93\x65\x79\xe3\x65\xae\x2d\xb1\x18\xda\xd1\xf4\xd1\x56\x8f\xda\xf8\x0d\x64\x58\x2b\xf4\x71\xf6\x82\x94\x88\xe6\x5f\xd0\x42\x88\x88\xd1\x06\x4f\x9c\xa4\x6c\xc9\x1f\x4e\xed\xda\x18\x9d\x54\x6f\xea\xf8\xa6\xa4\x2c\xe0\xf7\x04\x2d\xaa\x25\x37\x5c\x2b\x6a\x63\x37\xc8\x1e\x45\x6c\x9b\x13\x2a\xb5\xd4\x59\x75\x1a\x16\x85\x72\x23\x00\x13\x75\x5a\xd6\x83\x3e\x9b\x9c\x5f\x3f\x8e\xd8\x05\x3c\x74\xf1\x44\x8e\x25\x80\x62\x1f\x74\xc6\x70\xac\xcb\x9e\xcd\x0d\x5f\xb0\x72\x1d\xee\xca\xba\xa4\x17\xf5\x6b\xe7\x6e\x5c\x33\xb3\x78\x1c\xed\x97\x67\xb8\x1c\xc6\xe1\xf0\x96\xe4\x05\x58\x17\x3f\xe2\x37\x5e\xc8\x28\xcb\x85\x84\xc7\x64\x7e\xa0\xd8\xd2\x6c\x6c\x8d\x82\x54\xb5\x17\x3b\x42\x50\xaa\xeb\xa4\xca\x2d\xc4\xb7\x9d\x4c\xb5\x53\xe5\x76\xe2\xeb\xef\xb9\x8b\x2a\x77\x12\xdf\xb6\x49\x77\x50\xe5\x4e\xda\xdb\xab\xef\xfe\x44\xd9\x7f\x85\xf1\xe9\x3e\xb1\xad\x34\x95\x7c\x0e\x41\xd6\x76\x21\xad\x4b\x99\x4c\x3b\x31\xdf\x4d\xfd\x03\x00\x06\x24\x42\x53\xf7\x17\x33\xe8\xa3\xe8\x8a\xf7\x58\x8f\xe0\xc4\x7d\xda\xb8\x6b\x7a\xd1\xbe\xb4\x20\xa7\x2e\x4b\xec\x53\xd4\x92\xc7\x72\xe1\x06\x05\x60\x51\x70\x57\xbf\x38\x89\x22\x73\x37\xb8\xe1\xc4\xbb\xca\x70\x3a\x5c\x5b\xae\xd9\xe6\xf1\x48\xb7\x0e\x0b\x4c\xae\x5f\x4a\xf6\x96\x6b\x5d\x14\x89\x7b\x85\x47\x4d\x53\xf7\x3e\x97\x20\x7c\x06\x64\xfb\x6c\x4c\x9d\xde\xe1\x8b\x07\x54\x03\xf5\x3f\x44\xd6\x17\xee\x53\x24\x52\x2b\x76\xd6\x35\x67\xdd\x11\x31\x3d\xa9\xbd\x1d\xdb\x89\x7c\xea\x0d\x8a\xac\x01\xe0\xff\x58\x4f\x1d\x80\x4f\x49\x64\x74\x35\xfc\x1d\x56\x10\xc5\x23\x23\x62\x56\x56\xa4\xc7\x89\x7e\xf6\x09\x2a\x67\xd7\x79\x84\xdc\xbb\x6b\xad\xff\x5f\xfb\x10\x7d\x10\x34\x7c\x47\x23\x1a\x07\xfb\x60\xa3\xda\x57\x9f\x79\x98\xec\xde\xbc\x07\x4a\x97\x78\xb2\xdb\x8e\x27\xf1\x2a\x65\x99\xb3\xef\xfa\xb9\xfb\x05\x0e\x59\x15\x48\x8f\x3c\x68\x35\xd8\xfc\x4b\x1e\xb6\x7f\xc9\xf2\xd0\xcf\x6f\x2e\x82\x02\x3f\xcf\x63\x25\x9a\x32\x23\x1a\x57\x8c\x43\xea\x67\xa7\x4d\xc8\xaa\x35\x54\x31\x05\x25\xba\x9f\xe7\xb2\x00\x0d\xa6\x9a\xc1\x54\x63\x6f\xc1\x60\xaa\xf9\x39\x4d\x35\x0a\x1d\x34\x2d\x34\xc6\xf9\xc7\x32\xb5\x9a\xc6\xc5\xee\x3d\xbd\x99\x66\xb6\x66\xa5\x6c\x68\xcc\x43\x0a\xfd\x38\xc8\xdc\xe7\x58\x5a\xee\x18\x4b\xae\xb0\xbe\x4b\x74\xc9\x1e\xe4\xf7\x22\xe9\x9a\xda\x55\x62\x5c\xb0\xd4\xc7\x30\x31\x5d\x21\x26\x22\x31\x7b\x90\x6b\x91\x60\x56\x45\x0c\x3b\x44\xcb\x49\x97\x82\x10\x60\x4a\x14\x50\xd5\x19\x97\x70\x49\x0a\xa7\x2a\x4b\x91\x04\x3b\x02\xae\xaa\x2c\x54\x9f\xb8\xfa\x55\xbd\x64\x85\x2a\x2f\xd7\x59\x1b\xe7\x07\x6a\x72\x44\xcd\x4e\xcd\xfb\x5b\x25\x82\xc7\x99\x64\x34\x54\xe0\xb5\xde\x66\x2c\x5a\x7e\x3b\x3f\x78\xa9\x0d\x63\xaf\x5c\x43\xe8\xd0\xcc\xc2\x31\x6c\x91\xd2\x38\x58\x9b\x7d\xba\x54\x43\x8b\x58\xfb\x29\x8e\x83\xe5\xca\x69\x96\x68\xd5\x0a\x6e\xe8\xc3\x35\x83\xfc\x63\x33\xee\x34\xd7\x54\x8f\x0b\xdf\xb0\xd2\x71\x19\xea\xfb\x88\xa5\xbc\xd7\x85\x6c\x54\x2f\x63\x42\x7e\x54\xdb\x51\x4a\xb5\x4e\x8e\x46\x17\x92\x28\x20\x1e\x9a\x34\xa4\xab\x94\x06\x6c\x99\x47\xa6\x3f\x22\xf9\x86\x81\x3e\x17\xfb\x55\xd8\xa3\xab\x6f\x46\xde\x4d\xae\xcf\x0b\x8b\xa3\x58\x92\x37\x5f\xbc\xce\x8c\x63\xab\x17\x42\x7e\x45\x70\x9f\x5b\x54\x64\x14\x2d\xf2\x59\x1a\x04\xac\xa5\x7a\x5d\x11\x0b\x83\xce\x20\x6c\xdf\xb9\xe3\x19\x91\x34\x5d\x41\xc5\x8d\xc5\x0e\x01\x05\xf7\x11\xd3\x00\x20\xd8\x00\x08\x4c\xea\x62\xcf\xa2\x12\x1e\xe5\xe9\xd4\xd2\x32\x40\x66\x00\xe8\x0a\xec\x0b\x0c\x2a\x28\xab\x8f\xb3\x32\x4a\xc8\x9c\xbc\xb2\x62\xd7\xbe\x30\x73\x84\x6b\x39\x61\x57\xd4\x0e\x32\xda\x58\x1c\x1f\xd2\x1a\x68\x2e\x00\xc2\xf7\x0a\x48\xf0\x78\xa5\x0f\x43\xdb\xc9\x02\xf0\x14\x97\x04\xf1\x84\xb1\xee\xb1\x4d\x22\xeb\xe9\x21\xba\x96\x94\xd0\x2c\xbb\x17\x69\xa7\x09\xe0\x4a\xa7\xe3\x45\xd8\xea\x8f\x8a\xb5\xe9\xf9\x67\x64\xc5\x62\x96\x52\x6b\x93\x3d\x56\x80\x36\xf4\x4f\xba\x05\x0f\x74\x7e\x6f\x49\x70\xe8\xdc\x0c\xc5\x53\xdc\xb1\x1d\xb0\x66\xba\x0b\x73\x1e\xe0\x10\x27\x22\x3c\xcc\x4a\x4f\x6d\x8f\x42\xb0\x53\x26\xc2\xbc\x89\x7e\x7d\x61\xe3\x8a\xe9\x39\x21\x6e\x86\x59\x49\xa1\x8f\x2e\x70\x26\x63\x42\x3e\xe2\x16\xfb\x3b\x25\x84\x2a\x46\x89\x87\xa6\x8b\x3b\xe6\x3a\x0a\xe6\xe9\xa3\xb3\x6c\xb5\x73\x37\x2c\x44\x56\x49\x85\x94\x2d\x59\xca\x62\xe9\xe4\x7a\xda\x0a\x1c\x89\xad\x12\x75\xd9\xfd\xb1\x2e\x5e\x3d\x52\xe2\xf4\x08\x99\x91\xec\x18\x36\xe6\xf8\x45\x87\x86\x9e\x90\xd9\xd5\xf9\xd5\x09\x39\x0d\x43\x22\x40\xb9\x9f\x67\x80\x78\xe1\xae\x64\x63\x4b\x1a\x38\x02\x66\xf4\x88\xe4\x3c\xfc\xbf\x1c\x56\xa7\x7d\x60\x55\x64\xab\xee\x09\xaf\x1b\x40\x5b\xbb\xc2\x7a\xa6\xc0\x76\x83\x1b\x27\x52\xf0\x4f\x50\x87\x62\xd3\xbd\xeb\xda\x10\xd1\x35\x7b\x0f\x95\xc4\xc7\x54\x73\xf5\x4c\x1e\xa2\x1a\xdd\xaf\xfa\x48\xf0\xee\xb7\x0a\x63\x4c\xa6\x7d\x08\x50\x99\xc2\xd8\xe6\xe3\xc8\x52\x68\x9d\xec\x62\x07\x82\x96\xc1\x4f\x89\x48\x9d\x04\x48\x3b\xe7\x40\x85\x5a\x96\x82\xa2\x06\x68\x0f\x98\xa5\xe3\xc2\xa5\x07\xbc\x35\x8e\x8c\x3d\xa6\xb4\x5c\xcd\x0f\xfe\x34\xcf\x5f\xbf\xfe\x32\x98\x4c\xb7\x6f\xe1\x5f\xec\xcf\x27\x30\x96\xd3\x03\x01\xcc\x37\xc5\x07\x5f\xe1\x07\x27\xf8\x03\x7c\x05\x3f\xa0\x9d\x04\xb2\xa7\xc2\x5c\x2a\x8b\xb0\x26\x65\xe8\xa2\x93\x0b\x04\x97\x1c\x4d\x43\x00\x58\x71\x48\x0a\x27\xa5\x05\x8b\x84\xc2\xcb\xc0\x22\x6a\x87\x56\xc0\x75\x50\x25\xa0\x34\xd2\xbb\x91\x2c\xa0\xc7\xba\x13\x96\x26\xb4\xf7\x4c\xb3\x86\x54\xe2\x74\x35\x64\xf7\xa5\x3f\x4a\x68\x78\x2c\x49\x4d\xd9\x46\xc8\x82\xb2\x56\x76\x16\xb9\x2a\x1f\x05\xb2\x09\xe9\x14\x4e\x62\x15\x6c\x88\x2b\x6a\x84\x15\x1d\x60\xaa\x69\xfc\xab\x0b\x51\x9c\xd1\x82\xc9\x7b\xc6\x62\x6d\xf3\x0f\x68\x64\xea\xfe\x87\x25\xe3\x6d\xcf\x1b\x12\x48\x15\xfc\xa2\x7b\x87\x75\x7e\x5d\x3d\x02\x5f\x92\x85\x90\x6b\x25\xab\x66\xc8\x43\x28\x5e\xe0\xdd\x77\x53\x85\x54\xc6\xaa\xe9\xa9\xbe\x2f\xed\x0c\xa5\x9a\x12\xf6\xfd\xb6\x7f\xdf\x6f\x1b\x7d\x8f\x89\xba\xa6\xae\x01\xf4\x32\x4b\xcf\xb8\x40\x80\x5f\x98\x11\xb6\x2d\x30\x1c\x66\x95\x81\xcc\x46\x38\xe7\xad\x37\x1f\xcb\xc1\x97\x59\x14\x97\xba\x14\x65\x71\x5d\xf6\x3c\x89\xc8\x8b\xe8\xe5\x75\x1e\x45\xbd\xfa\xd2\xff\x41\x41\x73\x2d\xee\x1b\xe1\x65\xa8\x9e\xd0\x18\xcc\xb5\x9c\x6e\x1e\xaa\xc9\x30\x15\x3e\x31\x7e\xd3\xf2\xfc\xe0\x53\xc6\xa0\x56\xc4\x74\x7e\x60\xb2\x7a\xd9\x73\x2b\xd8\x1e\x75\xf8\xb5\x64\x58\x99\xec\x58\x75\x72\xe9\xc8\xf9\x89\x0f\x76\xa9\x60\xdd\xba\xe4\xbd\x76\x61\x50\xed\x3a\x54\xbb\xd5\x2a\xdb\xcf\xa1\xe1\x55\x23\x9c\xe2\x08\xbb\x86\x9e\xd7\x7e\xe9\xd0\xf6\xba\x6a\x80\x5b\x4a\x5f\xeb\xf5\x6e\x50\xfd\x0e\xaa\xdf\x41\xf5\xfb\xef\xa7\xfa\xb5\x31\x44\x4f\x05\x70\x13\xe3\x94\xcf\xfe\x5a\x61\x8f\x15\xb2\x8d\xda\xeb\xea\xaf\x5d\x74\xfe\xdc\x14\x89\x8d\x43\xa8\xae\xa5\x15\x38\x70\x72\x00\xb7\x11\x83\xdc\xd4\xb9\x5d\x30\xa8\x34\x84\xdf\x38\xa5\x6f\x88\x49\x47\xad\x8d\x7d\xce\x97\xe8\x2e\x96\x50\xc9\x21\x84\x6d\x87\xfc\xb9\x88\x42\xa0\xfa\x11\xa3\x99\x1e\xda\x49\x89\x79\x26\xe9\x1d\x83\x12\xe0\x29\x33\xd3\xc3\x51\x68\x39\xca\xd3\x28\x08\x5b\x59\x28\x69\x17\x6d\xef\xf3\x8d\x47\xf4\x1c\xc1\x96\xd6\x7f\xd3\x80\xad\xff\xec\x4a\x90\x02\x33\x19\x78\x0b\x3f\x6f\xd1\x4c\x68\x55\x66\xa2\x18\xad\x58\x0c\xb9\xac\x16\x39\x57\x27\x10\x06\x30\xc3\xbf\x04\xcc\x04\x5a\x7d\x48\x0c\xc2\x45\x3c\xe3\x1b\x96\x49\xba\x49\x4e\x48\x9c\x47\xd1\xbc\x96\x05\x01\xc4\x1c\x80\xd9\xb3\x70\x2f\x65\x15\xea\x1b\x2b\x29\x4b\xc9\xc0\xd4\xdf\x37\x79\x98\xe6\x34\xeb\x6c\x4c\xbd\xc5\xc0\xc9\x0c\x9c\xcc\xc0\xc9\xfc\xdb\x71\x32\x75\x54\xd1\x8f\x99\x71\x23\xa0\xf2\x79\x04\x3f\x13\xd1\x2c\xeb\x11\xbb\x87\xcd\x48\xc8\x82\x88\x1a\xeb\x2e\x00\x51\x5d\x5c\xb5\x4f\xe9\xa6\xc8\xf7\xb1\x11\x31\xf7\x98\xd1\x50\x03\xc1\x33\x5b\x41\x88\xd7\x12\xec\xa1\xe8\x7b\x87\xca\x2b\xbe\x35\xae\x73\xea\x44\x8a\x54\x7a\x74\xe2\x74\x21\x72\x49\x02\x96\x2a\xd0\xa9\xd3\x06\xb1\x22\xd5\x59\xed\xe5\x11\xd7\xae\x84\x6f\x71\x4c\x7c\xb4\x9d\x93\x6b\x80\x3a\xcd\x9c\x4b\x37\x24\xa1\x91\x76\x2d\xdc\x8f\x75\xc2\x1b\x37\xad\xa4\x0b\xeb\x98\xf5\xa7\xe6\x27\x45\xac\x15\xfc\x48\xa8\xd4\x4e\xdc\x5d\x47\x54\x3d\xa5\xae\xbb\xb8\xfd\x98\xe0\x91\xbc\xb6\xeb\xb1\xd4\xbb\x22\x29\x5b\xa6\x2c\x5b\x3b\xd9\xdd\x8f\x18\x98\xa5\x7b\x34\xd3\xe2\x19\x38\x48\x86\xd4\x65\xa1\x7a\xbc\x37\x86\xf7\xd6\x97\xfc\x9a\x07\x92\x8d\x7b\x8f\x2b\xb3\x09\xa8\x58\x20\x5f\x88\x9c\xa5\x3a\xc9\xf5\x8f\x1a\x6b\xb9\x14\x68\x91\xc3\x2b\x18\x33\x16\x32\xb4\x98\xea\x0b\x94\x71\x75\x92\x38\xa8\x2c\x35\xc8\xc9\x62\xa7\xfb\xdd\xc3\x25\x66\xc5\xe2\xce\x70\xbc\x53\xd5\x88\xac\x45\x14\x66\xf8\x81\x99\x84\x28\xed\x9f\xfb\x9b\x61\x17\x3c\x0d\x7f\xf8\xaa\x8f\x01\xf6\xdd\xe4\xfa\xfc\x87\xaf\x6c\x7f\xd5\x92\x3f\xa8\xc2\x36\x07\x34\xa1\x7a\xfe\xea\xf1\x06\xd8\x88\x66\xf2\x9d\x10\x3e\xdf\x0f\xe7\x14\x3f\x58\xdf\x68\x48\x15\x11\xe6\x6a\x4a\x76\x9f\xfe\x2e\x09\x92\x61\x74\x5c\x91\x11\x11\xb9\x4c\x72\x97\x2a\xda\x3c\x7d\xac\x8b\x6a\xe8\x6b\x56\x09\x35\xdb\x77\x65\x8e\xcf\x7d\x8b\x34\x4d\x7f\x81\x85\x82\xb3\x53\x3a\x39\xef\xbb\xb2\x6b\x68\x4f\x26\xe7\x45\xd0\x3d\xcc\xe7\xf3\x26\xe1\x93\x62\x9d\x33\x80\x84\x59\x06\x25\x98\x1c\x04\xe7\x94\x6d\x9c\xf4\x6d\x9f\x69\x6c\x9d\xdc\xbe\x77\x22\x86\xeb\xb7\xa6\x11\xc2\x34\x3e\x67\x16\xed\xf6\x5d\x8d\x00\xde\xf6\x46\x00\x6f\xf7\x43\x00\x6f\x07\x04\x60\x2d\x67\x40\x00\x8e\x95\x0d\x08\xe0\x97\x44\x00\x6d\x6f\x17\xab\x4e\x4f\x58\x35\x45\x3c\x82\xc0\x37\xab\x3f\xbd\xbc\x73\xc7\x9d\x47\x03\xf3\x45\x26\xe9\x22\xe2\xd9\x9a\xf5\x64\x4b\xd4\xe6\x49\x21\x69\x64\x2c\xd4\x62\x89\xb6\x76\x56\xf6\xa4\x56\x42\x32\x96\xa1\xbe\xad\x0d\x4c\x1e\x1f\x61\xf7\xfc\x7a\x61\x4d\xcf\xfc\xde\x3e\xd3\xfc\x2e\x85\x7c\x3a\x10\xc6\x22\x1e\xfd\x2c\xd3\xfc\x3c\x48\x3e\xc7\x34\x21\xfe\xa5\x1f\xf8\xa6\xd8\xd4\x26\x8c\x00\x3d\xe3\xc2\x9a\xf5\x63\xd4\x49\x67\x9c\xb2\x47\xe0\x01\xbf\x82\xaa\x8a\xa3\xa0\xc1\xc5\x1c\xfc\x18\xa4\x7b\x56\xbd\xc8\x75\x8b\x3f\x98\x67\x05\x1e\xaf\xb0\xfb\xb5\xc8\x58\xa9\x62\x27\xf7\x8c\x50\xb7\x57\x4d\xf9\x14\x8a\x8c\x16\x7c\xdd\x0f\x63\x13\x94\xe9\xfa\xaf\xe2\x86\xa3\xcf\x74\x41\x42\x52\x92\x32\x9a\x89\x18\xab\x2c\x63\xbe\xd4\x36\x72\xd6\x7b\x5e\x1d\x24\xad\x3e\x2f\x98\x8d\x56\x26\x00\x5e\xc6\x1b\x81\xfd\x3c\xc1\x7c\xa0\x55\xef\xe9\xcc\x76\x09\xb3\x4c\x70\xa5\xd3\xa4\x71\x7b\xab\xb8\xdc\xb7\xef\xf6\x96\xd3\xe2\xc8\x8e\xa4\xae\x2b\xb1\x61\xd9\xfa\x48\x41\x5f\xbd\x65\x31\x61\xba\xaa\xb7\x71\x32\x6a\x4b\x85\x40\x30\xcd\xfb\xc8\xd0\x30\xb8\x51\x5a\x65\xfe\xb9\x80\xea\xe2\xbf\x3b\x13\x0b\x20\x26\xea\x85\x21\x11\x13\xbd\xad\x61\xa2\xb7\x03\x26\xea\x58\xc1\x80\x89\xf6\x9b\xd7\x80\x89\xf4\xf3\x9f\x84\x89\x5a\x5c\xcc\x47\x2e\xe6\xbd\x5f\xb3\x46\xe1\xf8\xb2\x59\x9d\x95\xed\xdd\xd2\xd1\x67\xdb\xda\xd5\xed\x40\x45\x7c\xa7\x2f\xc9\x87\xb2\x29\x9a\x06\xa5\xb1\x9b\x37\xed\x82\xa0\x0f\x49\xa1\x85\x0b\xda\x10\x19\xd8\xd0\xc4\x6b\x53\x21\x5c\xd8\xd2\x82\x07\xfa\xe5\x62\x00\xf0\x65\x71\x75\x79\xfd\xfe\xec\xcb\x2f\xbf\xfc\x2d\xe8\xdf\x31\x49\x22\x04\x4b\x7d\x9a\x9d\xb5\x28\xe9\xd5\x18\x23\xf7\x24\xe3\x3c\xd2\xf5\x31\x9a\x75\x8d\x49\xc7\xa1\xc3\x98\xc7\x2e\x78\x82\xec\x6f\xec\x50\x99\xfe\xa8\x2c\x23\x6b\xd9\x6e\xda\x65\xe1\xcf\x52\x81\xe3\xa8\xfd\x78\xfd\x6b\xdd\xb6\xc1\xec\xeb\xa9\x3f\x13\x61\x85\x61\xdb\x28\xab\x3f\xc4\xb4\x0f\x80\x7a\x81\xa9\x98\xa0\xe4\x31\x16\xe1\xed\x8d\x72\xcf\xcb\x8f\x8a\x00\x23\x35\xe1\x27\xc0\xfd\x2b\x2a\xd9\x3d\x6d\x8b\xd5\xaa\xcd\xe5\x3b\xfc\xa0\xf0\xd9\xb6\x16\xf4\x04\xd3\x29\x6a\x6c\xec\xc1\x7c\x98\x4f\x5c\x53\xfa\xfc\x19\x45\x8c\xa6\x31\x0b\xdf\xa7\x62\xd3\x7f\x4e\x1f\xca\x8f\xca\x53\x67\x5b\xa3\x53\xb6\xa2\x69\xd8\x3a\x30\x41\x24\x97\xea\xf8\x48\xd8\x70\x13\x26\xed\xf3\xad\x33\x4f\xaf\xa3\x48\xfa\x71\x7a\x8d\xc5\x4d\x96\xda\xbf\x1d\x39\x01\x0c\x5b\xf8\xc8\xb2\x35\x54\x2c\x41\x9a\x7b\x44\x7c\x09\xa2\xec\xa7\xc6\x34\xa2\xe6\x53\xc7\x87\xb2\x58\x92\x3c\xb3\xd6\xde\xba\x60\xd2\x7b\x3f\x49\x11\xe7\x30\xeb\x62\x7b\x1a\x2b\x87\x05\x9b\x30\x45\xf4\x57\xc1\x1d\xa2\x7a\x7b\x78\x66\xce\x4b\xf7\xe2\x21\xac\xf1\xa9\xd6\xd4\xcd\x9b\x90\xcf\x65\xf4\xb8\xb5\x49\xa5\xa7\x27\xe8\x9c\x3d\xae\x00\xd6\x5a\x45\x7a\x8f\xe7\x5d\x9d\x91\x58\xfc\xe2\xcc\x58\x41\xb5\x7a\xc9\x85\x9a\x6a\x35\x05\xc3\x81\x6a\xb5\x2c\x64\xa0\x5a\x2d\x13\x1a\xa8\x56\xf3\x19\xa8\xd6\x40\xb5\x7c\xad\x06\xaa\xd5\xfa\xf9\xbf\xa4\x67\xff\x73\x85\x0b\xea\xcc\x26\x16\xe6\x7a\x16\xa7\x7b\x9d\x08\xb5\x1c\x05\xdf\x5a\x6e\xf7\x8d\x16\x0e\xc7\xfb\xe6\x5c\xf5\xbe\x94\x9e\xf7\x8d\x26\xf3\x9f\xab\x84\x50\x73\x05\xb5\x22\x42\x3a\x1f\x6d\x91\xc5\xc8\xed\xdb\x3a\xf8\xf3\x0f\xfe\xfc\xf6\x16\x0c\xfe\xfc\x3f\x9f\x3f\x7f\xe3\x06\xb7\x55\x10\xc2\x4f\x17\x0e\x0a\xe6\xcf\x18\xd5\xe6\xc4\x0f\x28\xd4\x7d\xc7\x9b\x33\xb5\x1b\x1b\x73\xc7\xb6\xf4\xe8\xd1\x8a\x4c\x1d\x7c\x58\xcc\xc6\x45\x46\x15\x12\xc8\xe3\xb8\xc5\x4f\xde\x4d\xa6\x75\x97\xdf\x7d\x72\x7a\x5f\xb9\xe0\xaa\x9a\x9a\xb9\xc2\xbf\x35\x9f\xe5\x9d\x5c\x8f\xe1\x3d\x1c\x9e\x6b\x78\x60\x76\xf4\xa6\x59\xc1\x0f\x9f\x35\x8b\xa2\x7a\xe6\x35\xa3\xa1\x4b\xc4\xaa\x0a\x79\x95\xd6\x45\x85\xe1\x30\x07\x14\x91\xf1\x55\x0c\xb1\x22\xb1\x2c\xfb\x25\x1b\xbe\xaa\xd4\xca\xab\xcd\x4d\xc0\x67\x34\xd2\x05\x83\x12\x11\x83\xc0\x9d\xe5\xc1\x9a\xd0\x8c\xbc\x67\x11\x7f\xd0\x89\x2e\x8a\xf4\x34\xf7\x94\xab\x5b\xbe\x14\x9e\xfc\x21\x41\xc0\xb2\xcc\x60\xa8\x62\x26\xfb\x66\xd4\xdb\xd2\x94\xd3\x6e\x4f\xf3\x1f\xb0\x59\x19\x94\x82\x11\x08\xfa\x6b\xeb\x2c\x5b\x55\x21\x20\xae\x64\x48\x14\xf1\x99\x9c\xdf\x52\x9d\x8d\x67\x2f\x1a\x09\x27\xb0\xb5\x6c\x64\xb3\x45\x93\xf3\x73\xcc\xb5\xce\xf9\x35\x9b\xfc\x6c\x9c\x1f\xde\xb2\xbd\xea\x47\xc2\x27\x03\xd7\x37\x70\x7d\x03\xd7\xf7\x4b\x73\x7d\x4d\xfc\xd3\x55\x37\x12\xef\xfb\x63\x2b\x47\x46\x91\xb8\x9f\x4c\x27\xd3\x29\x0d\xee\x98\xcc\xde\xa7\x62\xf3\xa3\x2e\x9b\xdf\x69\xc3\x3e\x3c\x6d\xfb\xda\xc4\xe4\x97\x8e\x26\x30\x53\x17\x91\xd7\xb5\x55\x42\x42\x49\x9a\x47\x90\xcc\x36\x4c\x45\x82\xd5\xef\xcb\x8a\xf5\x2c\x24\x32\xa5\x4b\x25\xad\x62\x8d\x17\x33\x94\xab\xcf\xb2\x30\xd7\x92\x46\xd9\xfe\x95\xb9\x00\x32\x50\xce\xff\xf1\xa0\xf1\x7e\xfe\x04\xb0\x81\xbe\x7f\x31\xe0\xdc\x67\x37\x69\x70\x9e\xc9\xb3\x35\x0b\xee\x3a\x81\x71\xc3\xa4\xd6\x5f\x8e\x2c\x5d\xf9\x28\x50\x1f\x13\x11\x93\xd3\x1f\x6f\xc8\xc5\xd9\x17\x45\x84\x6a\x36\x26\xa7\x9a\x9f\x71\xcd\x7e\x5b\x2d\x0b\x89\xe5\x2a\xe6\x07\xe7\xe2\x52\xc8\xb5\xba\x9e\x50\xac\x09\x0b\xbd\x99\x6a\x54\xe7\x18\x01\x3a\x3f\xe8\x28\x69\x5a\x74\xe2\x82\x09\x8b\x73\x97\x52\x7e\x54\x7e\xe5\x7a\xa9\x27\xe2\xfa\x4c\x4f\x6a\x2f\x2e\x7f\x91\x2c\xcf\x44\x1c\xb3\x00\x62\x79\xca\x9a\x18\x3c\x5e\xf5\xad\x88\xf7\x6e\xfa\xbe\xa3\x0b\x74\xd2\xe1\x31\x79\x37\x7d\x4f\x36\x22\x74\xd7\x93\x74\x9f\x62\xdc\xc6\x28\x2a\xb8\x0d\x35\x90\xda\x6f\xc9\x37\x8c\xa8\x33\x49\x16\xa6\x6a\x89\x37\xfd\x9e\xfe\xcc\xf1\x0d\x7a\x04\xa1\x47\x56\x61\x82\x59\x8b\x0c\xa2\x7d\x15\x43\xbe\x80\x5b\xe2\xea\x34\x65\x34\x58\xdb\x05\x55\x74\xe1\x97\x4c\x17\x56\x25\x7c\x93\xa4\x62\xcb\x8a\x38\x64\x10\xbd\xe3\x00\x0e\x58\x22\xc2\x91\x14\xa3\xb6\x92\x52\xc5\x52\x33\x5c\x18\x16\x5c\xd1\xae\x88\x56\x18\x32\x86\xcd\xaa\xb9\x87\x6c\x91\x63\x91\xd9\x24\x4f\x13\x91\xa9\xa3\xdf\x7e\x40\x1f\x55\x66\x70\x91\x2c\x95\xb8\x37\x59\xd2\x80\x4d\x75\x99\xce\x8e\x43\xf2\x6e\xfa\xbe\xfe\x09\x72\x13\x29\x03\x1e\x97\xb0\x07\xc5\x0e\x00\x9b\x07\x22\x9d\x39\x0c\x4e\x24\x06\x62\x54\x61\x6c\x33\xa2\xa0\xe6\xe2\xa8\x94\x6a\x5f\xd4\x51\x4b\x52\xb1\x4a\xe9\x06\xd8\x37\x1e\x13\x91\x86\x90\xf6\xd4\x09\x6d\x2a\x83\x75\x81\xf3\xa4\x38\x2e\x98\x8f\x98\x49\x85\xfd\xc6\x3a\x63\x51\xcc\x58\x08\x1d\x6e\xf0\x8b\x35\xb3\x66\xe2\x04\xb1\x5a\x8e\x29\xfb\xa5\xd1\x68\x89\x5c\x21\xa9\x80\xd8\xb2\xb4\x5e\xe2\xab\x47\xa7\x6b\x1a\x87\x6a\xff\xe3\x40\x6c\x80\xff\x2a\x66\x0f\xa6\x5e\xf4\x05\xc3\x6c\x9b\xfa\x60\xc2\xa2\x44\x2e\x33\xee\x2e\x4a\x69\x6b\x77\x08\x99\x14\x62\xb5\xe2\xa2\xca\xf5\x16\xab\xb0\xb6\xe0\x65\x9e\xe5\x34\x8a\x9c\x26\x76\x25\x87\x84\xa0\x04\x1a\x8f\xc7\xaf\xf6\xcc\x06\xa0\x0e\x1b\x1e\xf4\x4f\x71\x92\xf2\x2d\x8f\xd8\xaa\x1f\x52\x72\x7c\x76\x44\xf8\xd2\x54\xdb\x3c\x32\xc7\x86\xe9\x08\xcc\x3b\x75\x8f\xa3\x71\x6e\xb5\xbf\x5d\x24\xcb\x5b\x7d\xcf\x9c\xc4\x23\xdb\x65\x81\x8c\xec\xdb\x68\x7f\x0e\x69\x61\xc5\x52\x9d\x45\x73\x7c\x58\x9c\xe9\xea\x03\x54\x56\xda\xba\x7a\xcf\x33\xc5\x15\x07\xc8\xc5\xa2\xee\x42\x9f\xa4\xc3\xc3\x0c\x91\x29\x4d\x70\x8b\x75\x23\x1e\x67\x4a\x82\x81\xc2\xd4\x44\xdc\x3b\x2d\xc8\xcd\x9b\xa1\x76\x91\xe9\x92\x4d\xe5\x00\x9f\x5d\x8e\x74\x91\x2c\xf7\xa0\x21\x17\x66\x5b\xca\x2d\xd2\x3b\x04\x4c\x8b\x29\xbe\xa0\x66\xaf\x38\xe4\x24\xa2\xb1\xdb\xaa\xfa\xb9\xec\x88\x9a\xf6\x83\x9c\x09\x53\x13\x4f\xc4\xf1\x86\xa6\xdd\x7c\x89\x5a\x83\xe3\xbb\x0a\xdd\x2b\x89\x1c\x75\x4d\xfd\xcb\x2f\x16\x5c\xdd\xb4\xf4\xae\xc8\xe0\x9a\x31\x49\x50\xe6\x36\xd4\x00\x6f\x31\x8d\x09\x33\xa5\xd2\x50\x24\xf2\x60\x36\xaa\x73\xef\x6a\x24\x30\xc6\x73\x08\x63\xe8\x9c\x26\xb9\x49\x87\xaa\x66\x06\x99\x5b\x13\xe4\x32\x89\x58\x7a\x91\x4f\x39\x21\xa8\xbe\x01\x86\xd5\xd0\x2a\x46\x88\x44\xd4\xa4\x82\xd5\x66\x70\x8f\x49\x54\x9d\xc0\x24\x35\x05\x11\xae\xa7\xef\x09\x30\x73\xf6\x01\x7c\xed\xdf\x46\x4f\xf4\x19\x6e\x23\x00\x48\xef\xc8\xc7\x1e\xf9\x4f\xf4\x2e\xd6\x3f\xf3\x6c\xa2\x5a\x9a\xb5\x33\xae\xb5\xd9\x28\xb7\x62\x2b\x83\xc4\xf6\x1a\x2f\xbf\xd4\x49\xf7\x0d\xc2\xb6\xea\x3b\x3a\x8b\x86\x28\x88\x6b\xab\xb4\xe2\xd4\x85\xc9\x1f\x5c\xb0\xe9\x0a\x7b\x2f\xe1\xec\x48\x41\xe6\x07\xb3\x3c\x8e\x59\x34\x3f\xc0\x7c\xd5\x0b\x21\x9d\x79\x9b\xb5\xec\x0c\x33\x48\x59\x96\x88\x58\xdd\x39\x4d\x54\x78\x46\x24\xf4\x82\x03\xd6\x92\x16\xc3\x78\x4e\x04\x69\xa6\x70\x7e\x73\xad\x38\x69\xfc\x0e\xc7\x71\x75\xbd\xc8\xa5\x6e\x53\x1d\xdf\xa3\xde\x07\x47\x8b\x90\xa7\x2c\x90\xd1\xce\x99\x4e\x59\xcd\x2c\x36\xe3\xeb\xfd\x2b\x9b\x38\xc9\x15\x24\xa9\x4e\x12\x46\xd3\xcc\x2e\xfb\x32\x99\x1a\x21\x99\x63\x75\x3c\x68\xf9\xad\x51\x3b\x01\x0f\xe9\xb9\xd7\x09\x4b\x37\x3c\xcb\xf8\x96\x91\x0f\x5f\x58\x1c\x45\x79\xbe\x71\x87\xf6\x2d\x61\xbd\x48\x96\x8a\xff\x9c\xa6\xe2\x61\x77\xa1\x95\x24\x37\x91\x3a\x52\x3d\x11\xef\xbb\xe9\xfb\xf6\x0e\xdc\x07\xdf\xcd\x95\x59\x5c\xfb\x61\x46\xd8\x66\xc1\x42\x75\x3c\xef\xf2\x05\x1b\x25\x6a\x04\xad\x57\xce\x48\x75\x28\xbf\x57\x45\x17\x9e\x2e\xe6\x3e\x49\xa4\x9a\x6e\x76\xa6\x1a\xe6\xc9\x1e\x64\xa7\xa3\x8b\x0a\x39\x42\x58\xb8\x16\x8f\xe0\xb1\xc8\x55\x92\x0a\xd4\xe5\x47\x3b\x12\xa8\x1e\x49\x8e\x05\x8e\xf2\x24\x93\x29\xa3\x1b\x5b\x70\x28\x21\x74\x78\xe8\x4e\xd2\xae\xe7\x46\x82\x35\xe5\x20\x0f\xdc\x20\x63\x66\x6a\x30\x16\x33\x5c\xda\xe0\xd6\x09\xc0\xb5\x0d\xec\xb9\x64\x81\x02\x82\x1f\x79\x7c\xb3\x8b\x03\x4c\xc3\xb4\x17\xec\x2b\x5f\x1e\x79\x90\xad\x74\xcb\x76\xba\xa2\x3d\x04\x88\x14\x29\xe7\x51\xdf\x57\xe8\x6d\x0b\x86\xa1\x54\x50\x1f\x5a\x47\xd4\xd5\x6d\x09\xc6\x31\x21\x1f\xc4\x3d\x4b\x8d\xa6\x6c\xa5\xae\x71\xca\xc2\x3c\xc0\xc2\xef\xa3\x3c\x01\xc5\x70\x1c\xa8\xa6\xdf\xf3\xd5\xba\x68\xeb\xc6\xb2\xea\x4b\xa3\x58\x9f\x7e\x22\x79\x46\x57\x0c\xf2\x35\x28\x0e\x1b\xdc\x92\x12\xb2\x11\x29\xa2\xf3\x0a\x96\x78\x93\x3d\x02\x43\x7c\x10\xab\x0f\x6c\xcb\x5c\x05\x39\x1a\x3b\x62\xda\x56\xa0\x0e\x05\xfb\x23\xf8\xd9\x64\x54\xb0\x58\x48\x0f\x2e\x28\xe4\xfd\x12\xf6\x1b\x44\xc7\x57\x46\xc5\x72\xb5\x5c\xa2\x72\x65\x12\x2f\x85\xfa\x17\xea\x56\x94\x10\x3b\x3f\xf0\x0b\xf3\x91\x58\x61\x5d\x54\xb6\xe1\x52\x96\xe4\x48\x0d\x26\x53\x1a\x30\x92\xf0\x84\x1d\x19\x63\x9f\x62\xca\x81\xb1\x45\xfd\xc1\x66\xe3\x29\x8b\x3d\x3f\x90\x01\x61\x0f\x2c\x50\x30\x43\x51\xba\xa2\xdf\x21\x57\xcb\xe5\x9f\xc7\x7b\x82\x1f\xee\xeb\x04\x98\xf2\x5e\xdc\xc7\x59\xb5\xbd\x4f\x27\xb2\x16\xe2\xce\x16\x5a\x3c\x68\x43\x8a\x64\x84\xfb\x56\x43\x20\xea\xb4\xa1\xa8\xa0\x8e\x9b\xd6\x05\x6a\x7b\xba\x14\x89\xde\x66\xa7\x9c\xac\xbe\x57\x1b\xb5\xd8\x01\x8d\x8c\xc3\x66\x0f\x0b\x21\xa5\xd8\x8c\x8d\x30\xa2\xcd\xe2\x19\x5d\x32\x53\xa2\xc0\xc9\x29\x98\x1c\x60\x49\xca\xb6\x60\xe9\x2d\x45\x1d\xd5\xbb\xe6\x7b\xd1\x71\x6f\xb1\x4b\x68\x96\xe9\xf2\xda\x3b\x91\x93\xec\x9e\x4b\x77\x35\x0a\x29\xf4\x44\x35\x3e\x59\x30\x92\x61\xd2\x7f\x3d\x5d\x2c\x8d\x83\x43\x98\x9a\x58\x08\x25\xb4\x3f\x3b\x19\x30\x20\x64\xa0\xcc\x59\xec\x94\x9c\x11\xa1\x01\x24\x15\xf9\x6a\x5d\x0b\xb9\x82\x9e\x8f\x70\x98\x7b\x5d\xed\xdb\xd5\xa7\x6e\x9e\x88\x88\x07\x3b\xa4\x22\x0b\x66\xad\xb4\x3c\x89\x08\xd8\x7d\x51\x41\x71\x11\xcf\x53\xbe\x75\xd6\x0d\x6c\xcf\x12\xbd\xc8\x57\x5a\xa4\xfe\x20\x56\xe7\xa9\x48\x12\x1e\xaf\xbc\xbd\x78\xe8\x05\x74\xf3\x91\x6d\x44\xba\x9b\xa6\x62\xc9\x23\x36\xa5\x72\xfd\x98\xb9\xdc\xf0\x0d\x68\xaa\xcf\x68\x14\x7c\x97\xd2\x64\xfd\x3d\x8d\x57\xa7\x4b\xf9\xb8\x95\x99\xde\xce\x0d\x90\x1e\xdf\x1b\x6c\x92\xe1\x70\x66\xe2\x7b\x91\xc9\xd3\xc0\xe3\x32\x5f\xbd\xfd\xe7\xfe\x6f\x6d\x4c\x00\xaa\x1f\x75\xa4\x33\x8f\xc8\x57\x28\x82\x54\xd3\x95\x30\x57\x87\x96\x9a\x9b\xd2\xa2\x26\x4a\x61\x8d\xcb\x8c\x45\x4b\xf2\x92\x2e\x3d\xfe\x34\x80\x1e\x74\xdf\x6b\xae\xd5\x26\x45\x57\x0c\x99\x62\x3c\xbf\xaf\xc6\xe4\xdd\xae\xa8\x48\x82\x47\xdb\xd5\xa5\x2e\x69\xed\x34\x36\x14\x5d\x67\xae\x69\x02\x4e\x77\xd7\x71\x2a\xb0\xdd\xfc\xe0\xfc\xfa\x6a\x3a\x3f\x00\xbf\x0a\x11\x17\xd8\xe2\x9e\xea\x5a\x91\x50\xe4\x30\x13\x1b\x88\xf2\xa6\x51\xd4\x26\x6e\xc0\xdc\x6c\xc0\xa9\xd9\x1c\xa1\x84\x03\x41\xcf\x34\xa5\x1b\xa6\x45\xbb\xeb\x8b\xd9\xa7\xeb\x4b\xd5\xeb\xe9\xd9\xd9\xc5\x74\x36\x26\x9f\xdc\x15\xfe\x75\x43\x8e\x13\x83\x3a\x33\x3b\x91\x83\xf2\xa6\x8a\x93\xac\x45\x4d\x2e\xa7\x9f\x66\xf3\x03\x44\x53\xdf\xb6\xe0\x12\x40\x22\x06\x0d\x4b\x83\x47\xeb\x88\x9e\x4a\xec\x49\x97\x33\x9a\x1f\xe0\x9c\xdc\xb5\x4e\x8c\x6a\x40\xef\x48\x6d\x32\x44\x68\x24\xbe\xa6\x19\x38\xed\x60\xce\xf8\x24\x15\xc6\xf1\xc6\x6c\xae\xab\x6f\xf7\x51\x02\xd0\x69\x30\x82\x3c\x16\x17\xae\x26\x34\x8a\x8c\x50\x61\x26\xe6\xdd\xb9\x42\x36\x26\x70\xbe\x5d\x73\xf2\x4d\xa0\x5d\xcb\xa4\x50\xe1\xde\xb8\x98\x29\xc1\x1f\x02\x7b\xa6\xa9\x90\x22\x10\x9d\xec\x19\xa8\x6d\x6c\x17\x08\xf4\x65\x4f\xf4\xe7\x84\x86\x5a\x17\xa0\x19\xb3\x0d\x0b\xf5\x30\x4e\x2e\x14\x42\x86\x8e\x14\xf5\x32\x97\x14\x0e\xb1\x21\x3b\xd7\xb3\xe9\xf5\xd5\xec\xf6\xdd\xd5\xd5\x0c\xb9\xb9\x88\x2d\x25\x59\x44\x34\x76\x95\x47\x6f\x55\xc4\x58\x6b\xbd\xd9\xa7\xb0\xd0\x4c\xd7\x79\x6c\x96\xe3\x31\x52\xb9\x88\xf7\x59\x6c\x05\x23\x39\x3a\x85\xf0\x07\xb3\xc8\x23\x12\x31\xba\xd5\x5e\x0d\x4e\xf9\x00\x18\x2f\x50\x9c\xad\x85\xd0\x2a\x82\x5a\x8f\x8f\xa8\x45\xaa\xd5\xc8\x67\x22\x8e\x15\x2f\x7b\x37\x89\x21\x71\xaa\xcf\x32\xda\x4a\x6b\xcd\x69\xbe\x36\xb9\x34\xce\x59\xe4\x0c\x96\x6a\x9b\x50\xa3\x13\xbf\x6c\xdd\x3e\x19\xad\x54\xbb\x14\x21\x83\xc4\xf3\x5d\xdb\x7f\x61\x7f\x70\x36\x39\xbf\x56\x1f\xa1\xd1\x28\x52\xff\x12\x4b\x28\xd9\x7f\x08\xae\x0b\xa6\xf7\x51\x2c\xe2\x11\xfa\x6d\x41\xee\x87\x16\xfb\xd1\x86\xee\xcc\x7e\xa1\xf6\xa9\x20\x42\xa0\xb4\xc4\x82\xa4\xcc\x52\x7a\xe9\xb7\xee\x22\x84\xc6\x63\x4e\x21\xd7\xa0\x4c\x93\xec\xca\x9b\xf5\x0c\x99\x9d\x97\x94\x47\x8a\xbf\x9e\xc4\x0b\x91\xc7\xa1\x62\x1b\xa6\x22\x95\xdd\x8e\x05\xef\x3d\x1f\x56\xe1\xfc\xe9\x7c\x7a\x3c\x3b\x9b\xa2\x82\xd2\xb9\xfa\x38\x84\xcd\xd0\x76\x0d\x4b\x0f\x82\x14\xd6\x65\xa2\x02\x5a\x5e\x50\x78\x57\xaf\x22\x26\x3c\x4d\x59\x96\xe8\x6c\xdb\x65\x61\xd0\x3c\xe5\x72\x57\x90\x07\x83\x28\x74\x75\x4b\x45\xd7\xb7\x82\x3b\x29\x0c\x0d\x02\xc8\x69\x0d\x84\x23\xc8\xb1\x3a\xb4\x58\x2e\x09\xc5\xf9\x00\x53\xa1\x66\x9b\xa6\x2c\x90\x35\x3f\x18\xf2\xde\x1d\x29\xb4\xa0\xc1\xdd\xa8\x52\xb3\xe4\xc8\xc4\x1b\x15\xd8\xd9\xd4\x62\x2b\x6b\xf4\x72\x69\x90\x91\xcf\xfd\x55\x49\xa4\x89\x92\x41\x27\x6a\x7e\x0a\xbe\xee\x6e\x2c\x40\xdb\x7c\x94\x73\xfd\xe8\xfe\xa1\xb0\x93\x42\x88\xb3\xd2\x6e\x45\x81\x53\x80\x53\x80\xa0\x80\xcd\x3e\x2a\xb4\x9f\xde\xea\x6a\xb1\x88\xc1\xa8\x50\x08\x77\xda\xa3\x42\x1b\x17\xb2\x6c\x6d\x4c\x57\xea\x94\x9c\x7f\x7f\x36\xad\x18\x96\x82\xe4\xe4\x8b\x2f\x9c\xfe\x00\x79\x98\x9c\xbc\xfd\xe6\x08\x9a\xbc\xf9\xdf\xbf\xc5\x7f\x7c\xf1\x65\xf9\xaf\x6f\x5e\xe3\xbf\xde\x7e\xf5\xd5\x97\xfa\x5f\x6f\xdf\xbe\x2d\xfe\xf5\xbf\x5d\x44\xd9\x7f\xf9\xaa\x19\xa0\xd4\xbe\xa9\x9b\x80\x59\x6c\x36\x0b\x2b\x80\xd5\xec\xe9\x11\x80\xe8\xa8\x38\xfc\x9e\xa8\xb0\x69\x41\xa0\xe3\x10\xcb\x43\x1a\x5f\x93\xb2\x6e\xa0\x93\xd1\xea\x8a\x82\x8c\x99\x5b\x8f\x47\x7a\x05\xa1\xa9\x99\x74\x7c\xde\x92\xd6\x8f\x14\x50\x78\xf4\x14\x5a\x4b\xad\x8e\xbc\xc5\x4b\x47\xc5\xc8\x7e\x0c\xda\x9e\xa4\xb3\x15\x83\x5e\xe5\xf2\x91\x28\xb4\xf1\xe5\x13\xe3\x50\x91\xcb\x95\xb0\x71\x28\x70\xb5\xdd\x58\x54\x8a\x01\x8b\xfe\xac\x58\x54\xe8\x83\xf0\x34\x68\x54\x80\x9c\xcf\x64\x10\x1e\x1e\x42\xde\xb9\x38\xa4\x69\xa8\x6d\x85\x52\x68\x87\x02\x6f\x41\x2c\x3c\x46\xa1\x60\xb8\xe4\x15\x93\x6a\xc3\x60\xb3\x50\x9e\x95\x41\x58\x71\x3d\x51\x00\x50\xdb\xa9\x10\x35\xf1\xa8\x4a\xcf\x2f\x6f\xea\x38\x7c\x1f\x04\xed\xdc\x28\x8d\xb3\x8f\x00\xed\x7f\xfd\x25\xfe\x77\xc0\xe1\x03\x0e\x77\xbe\x75\xe3\x70\x46\x65\x9e\xb2\x73\x26\x59\x20\xaf\xb6\x2c\x4d\x79\xb7\xca\xfd\xbd\xeb\xa3\x22\x7e\x49\x0a\x70\xce\x4a\x8d\xf1\x5e\x0f\xe1\x3e\x7b\x92\x69\x2d\xd3\x0f\x68\x28\xa2\xa9\x75\x3e\x08\x8f\x09\x45\xfb\x03\xc9\x58\x42\xb1\xac\x2d\x50\x07\x40\x97\xb1\x53\x3d\x06\xd5\xf7\xb3\x23\xc2\x1e\xe8\x26\x89\xd8\xb7\x64\x7e\x70\x73\x79\x3a\x7b\x9f\x47\xd1\xee\x9a\xc6\xa1\xd8\xfc\x4e\xa6\x39\x3b\xfa\x78\x7a\xf3\x7f\xdb\x3f\x82\xe7\xcb\xd1\x35\x83\x10\x9c\x9b\x3c\x01\x74\xf1\x41\x04\x77\xbf\x9b\x1f\x38\x4f\xea\xfc\x00\x82\x80\xb4\x7f\x2b\x7c\x3e\x3f\x40\x9c\xb8\x14\x69\x50\x59\xfd\x11\x56\x81\x56\x4d\x85\x36\xc1\xf8\xcd\x5d\x0a\x08\x34\x97\x62\x84\xf0\xd9\x5b\x20\x86\x12\xc0\x3c\xf8\xc3\xf9\xb4\xaf\x51\xf7\xbb\xfa\x17\xda\x3a\x9a\x11\xfd\x86\xfc\xe1\x7c\x4a\x32\x61\xec\xf0\x24\xa0\xa9\xdb\xb1\x19\x08\x71\x28\xe2\xc3\x43\x49\x32\x04\x22\x7c\x2b\x96\x4b\x50\x17\x89\x94\x84\xa0\x4b\x07\xd3\x02\x78\x6a\x01\xa2\xff\xc3\xf9\x14\xe9\xa9\x53\x39\xa9\x8d\xb2\x4c\x9d\x05\x16\x87\x2c\x2c\x4d\x1f\x0a\x4f\xc3\x68\x49\x2a\xb6\xea\xcc\x2d\x98\x04\x5d\x55\xe9\x3c\xea\x99\x67\x5c\xe8\x07\xc7\x9f\xed\x00\xb5\x66\x34\x92\xeb\x47\xca\xf9\xf8\xb1\x62\x82\xf6\x54\x34\xe0\x87\x53\x37\x4a\x6b\x45\x66\x85\x1b\xe2\xc5\x43\x10\xe5\x3d\xac\x6c\x93\xda\x07\xc8\xa9\xc1\xdd\x1c\xd5\xee\x26\xd4\x69\xea\xf4\xc4\xac\x38\xa0\x32\xdd\x29\xa8\xcd\x74\xad\x29\x53\xd9\xb2\xca\xae\x8d\x7d\x26\xce\x2a\x0b\x50\xf1\x19\xd4\x4e\xd1\xab\x58\xa8\x9f\x4a\x27\x82\xc3\x43\x32\x99\xfe\x70\x43\xc2\x7c\xb3\x71\x7a\x61\x16\xcb\x38\x32\x0e\xb4\x1a\xc7\x99\xf0\xa5\x68\x47\x16\xbb\x8a\xdd\xbb\xaa\x2d\x77\x6a\x6c\xf5\x5a\x37\x79\x24\x79\x12\x59\xbe\xb0\x18\x2f\x47\xf2\x0c\xed\x83\xea\x3f\x11\x33\x11\x52\x60\x54\xe6\xcd\x48\x2a\x02\x91\x3c\x89\xce\x62\xd8\x70\x0d\xce\x80\x79\x74\xbd\x80\x79\x02\x4d\xbe\x4f\x69\xe2\xb3\x5d\x20\x38\x01\xdd\x1e\x1e\x1e\x1f\x1e\x62\x77\x1a\xb7\x92\x35\xea\xfb\xb4\x95\xff\xf0\xf0\xf8\xff\x28\x58\x1c\x1f\x6d\x99\x5c\xbf\x39\x74\x5c\x22\x1d\x4e\x61\x60\x80\x12\x74\xe1\x11\x0b\xbb\xb5\x60\x2b\x1e\x9b\x11\x55\x77\x87\x87\xba\x9a\x58\x26\x7c\x9a\xc5\x12\x84\x87\x87\x7a\x6c\xfb\x4e\xc3\x06\xf1\x64\x9b\xb5\xb8\xc4\xb9\x6f\x58\xd1\xf1\x34\x65\x4b\xfe\xd0\xff\x9a\x60\x7b\xa3\x8b\xad\x6e\x31\x49\xf0\x25\xfa\x2b\x16\xf5\xc2\x9c\xd0\x6a\xda\x75\xc0\x3b\x19\xd8\x67\x25\x43\xe4\x3c\x5b\xa3\x72\x7b\xe3\x90\x6e\x5a\x61\x95\x8d\xc9\xa5\x90\x80\x23\x08\x8b\xb7\x3c\x15\xf1\x06\x8c\xc8\x42\x67\xa5\xa5\x31\x59\x28\x5a\xb4\x61\x92\x46\x78\x02\x45\x1a\xac\x59\x26\x53\x2a\x85\x3b\x9d\xb2\x5d\x21\x5e\xa1\x88\x44\xf1\x73\x29\xa7\x92\x45\xbb\xea\xd9\x11\x79\x6a\x3b\xf4\x80\xa6\x43\x04\x77\x9e\xb0\x74\x85\xc6\x74\xa8\xa7\x36\x1f\xa9\xbd\x0e\x68\xc4\x0f\x0f\xed\x20\x42\xd5\xeb\x55\xc2\xe2\x1b\x49\x83\x3b\xfb\x33\xe7\xbd\x31\x7e\xcc\x87\x87\x92\x26\xa6\x23\xfb\xe4\xa8\x01\x1e\x7d\x66\xae\xb1\xb6\x19\x9c\x89\x2d\xed\xb4\x56\x4c\x3c\xdf\xf9\xca\xb2\x79\x23\x96\x52\x96\x05\x34\xce\xb4\x13\xab\x7d\xbf\x04\xd9\xb2\x94\x2f\x77\xda\xdb\x19\xb3\x20\x83\x04\x85\xdf\x00\x39\x76\x6b\x6b\x8d\x4b\xb7\x42\x78\x19\x93\x45\xf4\x22\x37\xb3\x94\x82\xbc\xde\x93\x51\xe1\x09\x6f\xf1\x3b\x6b\xa5\x99\xea\xd3\x8f\xb3\x4f\xdd\x17\x72\x3a\x99\x7e\x9c\x7d\x32\x30\x54\xff\x04\x2f\x52\x69\x32\xbc\x69\x45\x36\x5a\x42\xc6\xe4\x86\xb9\x1d\x0d\xf4\xb1\x56\xab\x56\x7d\x58\xfe\x45\x5f\x7d\xb5\xbf\xa3\x2d\x4f\xd4\xd1\xdb\xf3\x7c\x1c\x4e\x5c\x5f\xb5\x9e\x0e\x92\x32\x0c\xf2\x72\xf3\x99\x91\xe5\xe5\x82\x89\xbb\xab\xd2\x31\x89\x85\x46\x06\xda\xf2\x07\x36\x4a\x5b\x95\xe1\xd4\x4a\xa4\xe2\xae\x48\x30\x5c\xb8\xa2\xb8\xeb\x01\x16\xc3\x9b\x3a\x80\xed\xfe\x76\xbf\x7d\xbd\xb7\x37\x97\x19\xe1\x1d\x0d\xee\x58\x23\x62\xb7\x01\xe4\x49\xb5\x79\x21\x8c\x98\x4c\x04\x0b\xfd\xbb\x62\x72\xcc\xdc\x15\x49\x73\x02\x82\xa1\x39\xab\xa2\xa2\x00\x93\xd9\x8a\x3a\x4d\xa4\x7d\xd6\xf1\x9e\x47\x92\xa5\x10\xdd\xe8\x75\x91\xe8\xd3\x8f\x92\x6c\xde\xfb\x7d\x49\xea\x27\xaf\xf9\x91\x39\x78\x0a\xcb\xd8\x89\x0a\xcd\x00\x2e\x88\x40\xcd\xf3\x25\x8f\xd8\x98\xfc\x51\x71\x1f\x74\x07\xc1\x41\x68\x12\xa4\xf1\x4a\x53\x0d\xad\xc3\x2a\x5a\x1b\x01\xc0\x9d\x7b\x9a\x4b\x4b\xc9\x53\xcc\xe6\xe5\xd2\xa2\x35\xb6\xab\xc0\x86\x26\x09\xc3\x60\xb3\x58\x8a\xc2\xb3\xd1\x43\xcc\x24\xe5\x31\x4b\xd5\xb5\xa2\x24\xe4\xcb\x25\x4b\x59\x2c\x49\x42\xe5\xfa\x95\x4d\x27\x8e\xd3\x3c\x3e\x7e\xd0\xd2\x84\x9a\xf7\x63\x8f\xa9\x82\xf0\x34\x15\x0b\xb6\x07\x56\xf0\x7c\x69\x36\x08\xbc\x3c\x6b\x0a\x52\x27\xaf\x81\x89\x40\xd0\x1b\x94\x4a\xa9\x24\x56\xa0\x19\x34\x00\x95\x45\xd5\xa5\x02\x36\x87\x2f\x75\x28\x5d\x2c\x9c\xbc\x06\xdd\x52\x0e\x79\xbc\xc7\x55\x7f\xd0\x0d\xbd\x33\xee\x9c\xe0\xb5\xa9\x5d\xd7\xf9\x56\x8b\x00\x66\xf7\x3d\xc2\xa0\xda\x17\x10\x03\x8f\xc0\xf9\x5d\xc9\x8f\xd0\xcd\xd9\xf4\x93\xbd\x29\x5f\xbf\xde\x3c\x1a\x5d\x28\x68\xce\xf8\x86\x89\xbc\xd3\xea\x5a\xd9\x01\xfd\x4d\x1b\xec\x01\xd0\xae\x95\x99\x58\xca\x0a\x8c\xc1\xc5\xf3\xf5\x91\x85\x34\x41\x7b\x8a\xca\x51\x9e\x95\x0a\x06\x2f\x3b\x00\x3c\x7e\xb6\xa6\xce\x1d\x84\xeb\x85\x7e\x41\x51\x54\x45\xf6\x9a\x21\x77\x53\x0e\xc5\x8b\xab\x4d\x34\x3b\x35\x26\x3f\xaa\x8d\xd3\x7e\xd3\x65\x1c\xaa\x92\xc8\x69\x79\x91\x8e\x9c\xf9\x0d\x48\xa9\x17\x43\xb0\xa9\xeb\xa4\x63\x14\x44\xba\x33\x98\xc5\x8a\x31\xdd\x88\x5c\x67\xa3\xd7\x4e\x35\x56\xf1\x61\xa7\x5d\x34\x35\x2d\x96\x26\x5a\x1f\x27\x54\x09\x98\xc9\x0a\x2e\xe7\xb1\xc7\xe6\x23\x55\x32\xdb\xe7\x63\xe7\x8f\x34\xbd\xfb\x48\xb3\xee\x08\xaa\x49\xed\x03\x73\xf0\x36\xea\xdf\xb6\xa0\x0d\x05\x98\x33\x85\x2c\x5d\xf0\x99\x4c\x67\x78\x28\x54\x3f\x64\xa1\x50\x2a\xa4\xab\x34\x4e\xf3\x0b\xb5\x8b\x5f\x7e\xa1\xde\x90\x35\x7b\xa0\x21\x0b\xf8\xa6\x2c\x87\xa5\x0e\x90\xf3\x9c\x48\x12\x31\x9a\x49\xf2\x0d\xf6\x99\x31\x79\x04\x6a\x7b\xb5\xa5\x48\x50\x83\x88\x66\x6b\xe3\x99\xb6\xd3\x27\x70\x63\x66\xe1\x96\x05\x8c\x27\x0b\x18\x65\x76\x99\x64\x9b\xca\x36\x3e\x2c\x97\xaf\xe1\x71\xed\xe2\xe3\x2b\x04\x97\xbb\x73\x79\x3a\xbb\xd2\xa6\xa5\x82\x69\x47\xba\xfc\xc8\xed\x9e\x8a\x4c\xfe\x98\x72\xc9\xc0\x69\x65\x6f\xd4\xef\xfe\xbc\xce\x19\x82\x0b\x97\x17\x4b\x28\xce\x2e\x54\x3b\x43\xc9\xbd\xea\xaa\x19\x07\x50\xe4\x8d\x0a\xd6\x2c\x44\xaf\x38\x08\xa8\x4b\x29\x49\x99\xdb\x3b\x6d\x81\x42\x58\x11\x46\x8c\x41\x6a\x18\x11\x0b\x83\xdc\x53\xa4\xec\x41\x24\x16\x0b\x96\xa2\x78\x41\xe3\x0a\x1e\x72\x2a\x5f\xc1\xf4\x96\x59\x11\x1d\x22\x08\xf2\x54\x11\x24\xf3\x35\x4d\x92\xc8\x94\x5a\xaf\x9c\x95\x42\x65\xe8\x91\x9d\x12\x16\xc8\x26\xa6\x1c\x7f\x56\x4c\x81\xe9\x6a\x7f\x96\xdf\xf9\xdd\x23\x44\x42\x2d\x07\x98\xb0\x2c\x10\x7d\xb5\x9b\xa4\xb5\xc5\xed\xec\xbf\xef\xdc\x54\x8c\x9b\xfb\xb0\xff\xee\x9c\xc1\x30\xb7\x42\x20\x40\x1d\x85\xb4\x58\xe8\xa2\xe2\x3c\x2a\xa7\x14\x47\x0d\xcc\x05\x68\x2c\x3c\x1a\x22\xed\xb1\x8e\x9d\x16\x42\x6b\x06\xf6\x3b\xd0\xb2\xd0\x14\x0c\x90\x58\x94\xff\x03\x8f\xf3\x07\xe3\xaf\xb6\xc8\xff\x3f\xf6\xfe\x76\x39\x6e\xdc\x68\x1c\xc5\xbf\xff\xaf\x02\x91\x9f\x2a\xdb\xbf\xbf\x66\x64\x7b\x77\x9d\x8d\x52\xa9\x53\xb2\x24\x3b\x53\x91\xa5\x39\x92\xbc\x9b\xa7\x32\xf9\xb9\x30\x24\x66\x06\x47\x1c\x80\x0f\x41\x8e\x34\xd9\xe4\xd4\xde\xc3\xf9\x74\xaa\xf6\xea\xf6\x4a\x4e\xa1\x1b\x20\x41\x12\x7c\x19\xbd\x78\x77\x13\xb2\x2a\x59\x6b\x08\x02\x8d\x06\xd0\xdd\xe8\xd7\x65\x23\x23\xd4\xfb\x77\xc1\xef\xd0\x56\x61\xda\xdb\xc4\x7b\x5f\x8f\x5f\xbf\xce\x15\x82\x9a\xfb\xa2\x62\x6f\xa3\x7f\xd7\x0c\x69\x99\x30\xda\xe0\x35\xbc\x35\xc2\xb1\x75\xba\xcd\x1d\x66\x53\xb9\x4f\x28\x59\x39\x01\x33\x18\xca\x58\x8e\x8f\xf1\x75\x09\x21\x33\xa5\x4d\x7c\x9f\xbb\xd4\xe6\xad\xb1\x8c\xec\x7a\x5f\xbf\xc9\xe6\x0c\xea\x74\xc9\x24\xbd\xd4\x92\x7e\xb7\x97\xc0\x5f\x6a\x9f\x98\x7a\x9f\x56\xcb\x0c\xc6\x85\x04\xdf\xb4\xa5\x25\x36\x31\xa3\xa4\x88\x18\x1d\x93\x0b\x4d\x33\x50\x97\xbb\xc0\x64\x61\xc6\x1a\xe5\x86\x96\x35\xa7\x42\x04\x2e\xc4\xe3\x8d\x32\x11\x3a\x88\xfa\x0c\x65\x26\xa6\x98\x05\x0b\xd6\x0e\xb5\xe3\x45\x74\x6f\x9b\x3f\xaf\xb1\xa3\xbb\x0b\xf5\x95\x66\x65\x87\x5f\xbd\xf9\xfd\xdb\xdf\x7b\x83\x69\x9a\x6d\xbb\x54\x6c\x2f\x16\x0d\x86\xc6\x4e\x5b\xe7\xa8\xd3\x94\x19\x9b\x44\x16\xe4\x7f\x8f\xff\x97\xef\xfd\xdd\xe8\x26\xd7\xef\x8d\xb8\x48\x47\x32\x19\x61\x6f\xed\x65\x7d\xbc\x96\xca\x48\x2e\x7b\x5f\x57\xcf\x8a\xb6\x96\x52\x2e\xb2\x28\x82\x6b\x9b\xe5\x6b\xb8\x62\x91\x5c\x5a\xca\xe4\x9b\x01\x88\x2a\x0e\xbd\x02\x69\x39\x92\x90\x30\xa4\x74\xfd\xdb\xd0\xe4\x20\x92\xcb\x03\x57\xc8\x1c\x47\xd2\x9b\xc4\xa6\x0d\xad\x91\x5c\xf6\xd4\x34\x9f\xd9\x96\xc5\x3d\x7c\x59\x52\x2c\x3b\x5b\x12\xee\x54\x89\xbe\x31\x35\x2d\xe5\xd9\xc5\x07\x4b\xa7\xcb\xca\xcf\x40\x8e\xd0\x4b\xfc\x1e\x33\xb9\x62\x1b\x96\xf0\x74\xab\xd7\xa2\xcf\x7c\xdc\xf6\xee\xac\x94\xf9\x9d\xd0\xb9\x84\x1b\xa2\x66\x75\x91\x5c\x36\x1a\x4f\x15\x2b\xc2\x34\x74\x07\xa8\x71\x28\x26\x36\x11\x0b\xf9\x80\xf9\x5c\x05\x09\x63\xdd\xa1\x29\x67\xd5\x2f\x1e\x6d\x4e\x2a\x0d\x65\x96\x3e\xe6\x8c\xb6\xdd\xe4\xf8\xac\xd4\xfc\xf1\xe6\xb2\x55\xce\x21\x24\xe7\xd2\x44\x9c\x0a\x69\x0f\x1a\x10\x51\xd3\xaa\x55\x3b\x78\x1f\x24\xac\xe9\x1d\xa8\x55\xaf\xf8\x3f\x7c\x7b\xb4\x95\x4a\xda\xcc\x73\x47\x61\xe8\x13\xfc\xcb\xe8\xfb\xe8\x34\xb6\xc8\x73\x8b\x3f\x26\x24\x94\x6b\xca\x05\x5a\x88\x9a\xa3\x09\x6d\x6d\x37\x08\x41\xa1\x82\x50\xa1\xb4\xec\xf3\xdd\x47\xf2\x3f\x19\x4b\x38\xc3\xb4\x46\x41\x24\xb3\x70\xc4\x05\x4f\x73\x28\x21\x91\x5f\x6e\x1a\xf1\x7b\x14\xad\x40\xb9\x92\xa0\x3a\x26\xcc\x23\x56\xd6\x34\x58\x71\xc1\xf2\xdb\xbd\x90\x1b\x3a\xa2\x31\x27\x2f\x64\x02\x65\xde\xe6\x99\x48\x33\x6f\x97\xb6\xe9\xc8\x82\xf1\x72\x4c\x8e\x8a\x82\xf1\x40\x60\x5f\x04\x54\x31\x88\xb9\x11\x8a\xa7\x7c\xc3\x5e\x92\x35\xa3\xa2\x59\xfd\x50\xb2\x1d\x83\x5b\x1a\x4b\x49\x16\xc3\x05\xf2\xfc\xe8\x1a\x23\x2b\xad\x36\xc5\x0e\x0c\xd4\xbf\x63\x07\xbd\x7e\xf3\xfb\xf1\xab\xf1\xab\xf1\xeb\x9d\xb7\x91\x19\xa4\xc1\x16\xef\xdf\x0a\xd6\xd1\x0a\x24\x79\xfd\x6f\xa3\xe7\xc8\x21\xc6\xb5\x46\xbf\x88\x86\xfc\x5f\xeb\x39\x17\x26\x89\x88\x29\xf2\x38\x2e\xed\xb4\x17\x7c\x01\x18\x7a\xfe\x5c\x9f\xac\xe7\xcf\x5f\xee\x3b\x8e\x3a\x0d\xc2\x37\xa0\x32\x47\xe4\x3e\xda\x15\x5f\xbf\xfd\xc3\xf8\xcd\x37\x5f\x8f\xcd\x7f\x0f\xbf\x05\x41\xde\x1d\xeb\xd0\x9d\x97\xf7\xd2\x36\x11\x64\xad\x85\x20\xbd\xde\xa6\xd2\x87\xb3\x88\x56\x13\x3c\x67\xb6\x60\xa8\x43\xe0\xbe\xfd\xfd\xef\xbf\x69\x09\x25\x6e\x3a\xa1\x69\xb6\x4b\xca\xad\x8f\xd7\x9f\xbe\x44\xba\x2d\xb0\xb4\x95\x6e\xc5\x34\x0a\x20\x94\x32\x57\x73\xf9\xf5\xd1\x1f\xaf\x3f\x8d\x4b\x37\xdf\x22\xc9\x54\x5b\x82\xa9\x87\x65\x93\x12\x34\xb5\xca\x8e\x9e\x51\x48\x8e\x7a\xc4\x7c\xe1\x98\x51\x34\xc9\x2a\x87\x24\x81\x74\x62\xdc\x75\x1a\xc4\x13\x13\x74\xa2\xb7\x24\x1c\x6b\x9b\x05\x45\x10\xea\xc2\x47\x62\x29\xa3\x3c\x0d\x50\x47\x34\x52\x9e\x52\xa4\x12\xe2\xe4\x46\x22\xc1\x0e\x28\x00\x36\x6a\x84\x1c\xc5\x7e\x1a\x5a\x4a\x00\x63\x81\x90\x82\xbc\xe0\xe0\xb0\x64\x2f\x09\x85\x7a\xe1\xe3\xd1\xd5\xff\xf9\xe9\xf4\xf2\xe8\xe4\x94\xa4\x34\x59\xb2\xd4\x93\xc0\xa6\x63\x85\xf2\x3b\x92\x67\x6d\x9a\x6e\x01\x9d\x77\x80\xae\x1b\x40\x75\xd1\x73\x20\x9c\xe5\x86\xa8\x3b\xf8\xcd\x5c\xd8\x54\xbe\x3e\x1a\xc1\x4d\x6a\x70\x74\x18\xa5\x10\x2f\x8d\x1b\x24\x84\x05\xce\x3d\xba\xcf\x8f\xae\x8d\xca\x39\x13\xd6\x1f\xa0\x25\x52\x7e\xce\x56\x74\xc3\x65\x62\x49\xac\xf5\x63\x53\xe8\x26\xd0\x18\x77\xd6\x7e\xc5\xd9\xf5\x82\x23\x58\x1a\x71\xd1\x62\x57\x68\xc3\x37\x78\x35\x6b\x70\x2f\xd9\xb2\x4f\x64\xf4\x45\xb9\xbd\x65\x34\x8e\x78\xa1\x49\x5b\x4e\xce\x34\x7f\x4c\x52\xae\xe9\x90\xf7\x3a\x88\x14\x6c\xce\x22\x29\x96\x98\x2a\x78\xa2\x4f\x1f\x78\x31\x8d\x4c\x47\xa8\xf3\x39\x28\xfc\x2f\x42\x16\x47\x72\xbb\x66\x22\x6d\x96\x37\xac\x5b\x70\x51\xf8\x18\xa2\x8b\x57\xf2\x16\x76\x02\x64\x8c\xc4\xc1\x5f\x40\xe9\x25\x47\x69\xa5\xef\xde\x91\xb7\x67\x94\x4b\xf0\x1a\x16\x2c\xa0\x08\x11\x06\x5e\xe7\x6e\x2e\xfa\x44\x42\xdf\x81\x5c\xc7\x99\xc9\x7c\xf4\xd2\x64\xa2\xce\xfc\x7e\x56\x45\x3e\xbf\xbf\xe1\xdd\xe8\xef\xc5\xaa\x7c\x36\x38\x40\xd1\xc6\x99\x8c\x16\xe9\x58\x96\x26\x52\x8c\xf5\xaf\x5e\x68\x0d\x28\x98\x7c\xa9\x60\x7a\xa7\xeb\x38\xdd\xee\x2a\x8a\x60\x70\x02\xe4\x86\xa1\xe9\xaa\xe7\x6d\x72\xea\xf9\xc8\xf5\xe8\x9d\x6f\x6d\xf1\x00\x28\x2c\xb0\xce\x04\x14\x89\xf2\x6a\x05\x30\x19\x03\xb2\x70\xf4\xb7\xb7\x49\xd7\x6c\xf2\xae\x7d\x12\xf1\x1b\x46\x8e\x1c\x0d\x6d\x44\xb7\x2c\xe9\x17\x3c\x7c\x3f\xac\x24\x72\xcd\xd2\x15\xcb\xd4\x07\xf9\x91\xa5\x09\x0f\xfa\xe6\x7b\x7a\x3e\x6d\xfc\xd4\xea\x05\x14\xf9\x20\xb5\x70\x0c\xd6\xbe\x35\x36\xf1\x8b\x6b\x51\x84\x0e\xcf\xd6\xa1\x50\xef\xa5\xa2\x7f\x9b\x95\x0e\x62\x0f\x8a\x30\xe3\x7d\xa4\x80\x8a\x79\x37\x65\x2a\xd1\x67\xd5\x48\x06\xa8\x0b\x34\x67\x1d\xad\x33\x72\x61\x81\x32\xe5\x8e\x59\xb8\x8f\xed\x1a\xd8\xad\x03\x91\x96\x29\x1e\x9c\xd5\xb0\x40\xfe\xbd\x51\x5f\x41\xbc\x75\x4f\xae\xe0\xaf\x05\xf7\xe6\xde\xc4\x85\xb5\x4d\xe6\xb9\xde\xf4\x94\x1e\xee\x01\x5c\x9b\x63\x83\x3f\x6f\xc7\x04\xff\x2c\x55\x7e\x27\x40\x7b\xa7\xcd\xb9\x52\x34\xf5\x92\x26\xb3\xc0\x66\x9a\xb6\x3c\x06\x17\x21\xd0\xea\x62\x76\xec\x61\xa7\xc7\x80\xd9\xeb\x9e\x53\x9b\x9c\x7b\xe1\xb1\x81\x5d\x8f\x3e\xc1\x3f\xbc\xfa\x43\xcb\xf5\xad\x41\xd8\x29\x26\x38\x45\x53\xc7\xbd\x37\xaa\xf7\xfb\x82\x50\x58\x47\xaa\x81\x4a\xd4\x4e\x50\xc2\xd6\x72\xc3\x6c\x0c\xfb\x65\xaf\x2a\xee\xdf\x9b\x1c\x4f\x98\x0e\xcf\xa6\x75\xdc\x30\xe3\xcf\x67\xab\xcc\x9a\xdc\xbf\x1b\xd6\xe4\xa8\x32\x67\xac\x94\x18\xc1\xf2\xbb\xb1\x49\x11\x8e\xf7\x08\x9b\xec\x01\x43\xde\x72\xb6\xe6\x58\x1a\x9b\x22\xea\xc0\x61\x82\x86\x61\x19\xae\x22\x82\xd0\x26\xa3\x73\x72\x4b\x98\x90\x7b\x46\xfd\x9d\xde\x32\x84\xc5\xcc\xd7\x02\x13\x6d\x4d\x56\x0b\x33\xc2\xce\x6b\x60\x52\x16\xf4\xb6\x50\x5e\x56\xbf\x28\xf9\x3c\xeb\xbf\x6b\x2e\x89\x8d\xf1\x9c\xc6\x93\x2b\xcd\x54\xe1\xd8\x51\xd4\x3e\x92\x49\xc9\x78\x38\x26\x1f\x8d\xe4\x28\xa4\x18\xfd\x83\x25\x5e\x75\x06\x77\x74\x5e\x8e\x38\xaa\xca\x06\x96\x9d\x2d\x61\x39\x9e\xae\xaf\xcf\xfa\xa3\xe8\xfa\xfa\xcc\x75\x0c\x1a\xa5\x72\x14\xf1\x0d\xcb\xfd\x69\xe1\xe6\x83\x04\x62\x74\xdb\x90\x6f\xda\xe0\xc7\x60\xb1\x4c\xf8\x76\x9f\x86\xde\x24\xbb\xda\xa4\x2f\x3d\x1f\x3d\xc0\x0b\x35\xcf\xcb\xb2\xbb\x3d\x9a\xac\xa8\x5f\xc7\x7c\x5f\x7b\x34\xe6\x87\xb1\xa6\xe7\x76\x31\xf4\xbe\xe8\xc6\x84\x2e\xfd\xb0\x8c\x6d\x8b\xdb\x84\x32\xe5\x67\x11\xad\x4b\x86\x0e\x3d\xed\x79\x82\x8b\xaa\x92\x64\x44\x6c\x01\x8c\xc9\x54\x1d\xa2\xf2\xc5\x9b\x38\x2a\x90\x42\xa5\x49\xe6\xaf\xb4\x6a\x69\xd7\xc8\xe0\x74\x32\x3d\xfa\x58\x36\xd0\x8f\xa0\x6b\xfd\x3b\xac\x65\xa9\x47\xfb\xf9\x7d\x50\x07\x3e\x4a\x4d\x6a\x0e\x4f\x45\xbc\x22\x67\x37\x0d\x6d\xf6\x23\x63\xdb\xc7\x95\x36\x0a\x18\x7d\xee\x36\x34\xe1\xd2\x2f\x7a\x38\x95\x01\x2e\xcb\x60\x54\x14\x1d\x50\x3b\x97\x95\xcb\x1b\x93\x66\x6f\x58\x37\xcd\xbd\x91\x67\x32\xe5\x4b\xd0\xdd\x11\x13\xbb\xa6\xbe\x0b\x1e\xe9\x13\xd0\xba\xe6\x4d\x55\xc9\x3b\x3e\x6d\x09\x63\x1d\x69\x80\xbc\x3f\xfb\xfc\x77\xdb\x42\x57\xcd\x7d\xf1\x4c\xca\x78\x8a\x19\x0e\xfb\x28\x3e\xbe\x47\x31\x08\x6d\xfe\x60\x62\xd9\x68\xe4\x29\x06\xd7\xfe\x82\xd9\xee\xdb\xb4\x89\x6d\xe7\x27\x92\x32\x56\x4e\xe2\x69\x32\x99\x1a\x71\x82\x26\xcc\x38\x25\xeb\x55\xc3\xb4\x50\x26\xc3\x1f\x81\x88\x2b\x3d\xa3\x46\xcb\xb9\xc9\x08\x86\xd1\x92\x79\x9c\xf9\xc9\xf9\xd1\xf5\xf3\xe7\x61\x35\xa8\xec\x93\x88\x40\x89\x9a\x27\x86\xb6\xe9\xf5\xf7\xbc\xca\x0f\x2e\xac\x6f\x1d\x55\x0c\x8b\xff\x99\x19\x9a\xe9\x04\x52\xa4\x5c\xa0\xef\xc8\xdc\xa4\x1d\x29\xa5\x4b\xf4\xf5\x7a\x9f\x9c\x5d\x8a\x87\x2c\xa0\xc9\x51\x10\xb0\x88\x61\x1c\x4e\x5f\x89\xfa\xaa\xf1\xd3\xfc\xf2\xc7\xee\x34\xbb\x59\x03\xa1\xb7\x43\x35\xb0\x83\xbc\x8f\x07\xdf\xf3\xc0\x8f\xa6\x47\x66\xa7\xf2\x6c\x3e\xf9\xbe\xb2\x4c\x9c\x50\x21\xc5\x76\x2d\x33\x9b\xbf\xd3\xba\x10\x79\xd5\xd6\x28\xad\xbb\x29\xcf\x15\xff\x07\x33\x59\xcc\xca\x35\xf8\xc6\xe4\x4c\x2e\x15\xb9\xa5\x89\xe0\x62\xa9\x85\x86\x34\x6b\xaa\x55\x3e\xdf\x62\xae\x65\xc8\xac\x6b\x0d\x4f\x4e\xbc\x16\x64\x96\xa0\xa5\xb2\x94\x79\x3e\x8c\x4d\x16\x09\x96\x50\x4c\x41\xe1\xeb\x7c\x45\x15\x8a\xd8\x21\x57\x81\xdc\x30\xa3\x17\x4b\xbd\x65\x4a\x8b\x3a\xe3\x1d\x3b\xf2\x5e\xb7\x8c\xf2\xfa\x4d\x04\x4f\x39\x8d\x9a\xb2\x7c\xb5\x2d\xa2\xfb\x69\x39\xf7\xaf\x4d\xaf\x1c\xea\x57\xfe\xdb\xc6\x42\xe6\x5c\x7c\x4d\x6f\x18\xda\x99\x74\xc7\x15\xc7\x9f\x9d\x45\x8c\xea\xf4\x7a\xca\x74\xd5\xa9\x19\xa9\xae\x34\xad\x9a\x40\xdf\xac\x26\xc6\x39\x79\x64\xd4\x6f\xdf\x7e\x7d\xaf\x49\x61\x50\x83\xa0\xd1\x49\xcf\x8c\xac\x4d\x65\x48\xef\x22\xda\x42\x82\xba\xbf\xed\x13\x73\x06\x95\xc1\x7e\x7d\x41\x67\x00\xff\x7d\x82\xc5\xe1\xc3\xef\xce\x27\xbb\x7e\x77\xcb\x13\xb6\xcc\x68\x12\xf6\xa5\x92\xdf\x57\x3e\xa8\xe7\x72\xce\x5b\x38\x7c\xfc\x49\x2a\x9a\xe4\xb0\xe7\x0e\xde\xe7\x74\xdd\x2d\xb5\x7f\xef\xfd\xac\x22\x26\x82\x09\xc6\x18\x3f\x1b\x5c\x16\x75\x33\x67\xae\xb6\x33\xf7\x28\xdd\x2e\xc7\xc6\x08\xb1\xe3\x69\xca\xa7\x76\xc6\x55\xca\x34\x67\xe8\xa5\xcd\xfb\xde\xfb\x59\x25\xeb\xb9\x7d\x85\xaa\xbd\x26\x0b\xdf\x7c\x5b\x4c\xae\x14\xb0\xf3\xfa\xdb\x37\xbb\xef\xeb\x7c\x3e\x7d\xce\xe6\xf7\x4e\xe3\x32\xec\xfa\x07\x73\x3c\x7d\x98\xf7\xcd\xe3\x8a\xb1\xd6\x43\xfa\x90\xc9\x5c\xa2\xc4\x76\x99\x45\x6c\x9a\x70\xa9\xf9\x6c\xff\xc9\x79\x3e\x2e\x4f\x36\xb6\xbf\x36\x26\x57\x2a\xf6\x67\x05\x25\x56\x94\xd4\xd7\xe8\x92\xfa\xe1\x0f\x3b\x4f\xf6\x2e\xec\x5d\x76\xc2\x93\x9a\xe4\xaf\x27\xd3\xb2\x68\xa7\x61\x55\x19\x4f\x4d\x51\x29\x48\x06\xea\xdf\x80\x79\x72\xc5\x90\x89\x6d\xdd\xf1\xf1\x5e\x82\xc5\x5d\x18\xef\xaa\x49\xf9\xeb\xc9\xf4\x71\xa3\x79\x21\x4b\xcb\xbd\x02\x79\x8d\x9a\xc4\xcb\x86\xea\xe5\xb3\x64\x62\x6a\xc6\x61\xa2\x62\xb8\x63\xfb\x35\x2a\x7f\x3d\xf1\xba\xf8\xd7\xc3\x7d\x77\xd7\xa7\xfc\x26\xab\x78\x3f\x55\xf9\x6e\xf4\xfd\x32\x6e\x0d\x60\x46\xe5\xec\x29\x0a\x78\x7f\x80\x71\xce\x71\x1c\xb4\x1a\xe3\xeb\xa2\x82\xb7\xa7\x49\xbd\x84\xb7\x17\x5e\xb3\x3a\x79\x11\xef\x7a\x23\x18\xec\xa9\xaa\x78\x0f\x55\xb7\x87\xaa\xdb\xee\x12\x0c\x55\xb7\x9f\xb2\xea\x76\x5b\x51\xec\x38\x8e\xb6\x17\xe2\x3d\x96\x6b\xeb\x62\xa3\x47\xa5\xd6\xa8\x84\xb5\x95\x8c\xa0\x27\x54\xc6\x16\x85\x01\xb8\xcd\x52\xef\xe3\x4c\x28\x47\x40\x4f\x36\x16\x67\x47\x41\x20\x94\xe7\x32\xbd\xd6\xc2\x47\x17\xe4\x27\x79\x4b\x07\x6a\x7b\xd5\xb1\x3a\x42\x70\x3a\x42\xd3\x60\x3e\x8f\x06\xad\x9f\x33\x35\x4b\x2a\x96\xb2\x28\xb1\x62\x4c\x2b\x04\xee\xcf\xcf\x95\x5b\x8f\x10\x64\x25\x2e\x96\x5e\x7d\x22\x68\x10\xa9\x32\x9a\xf3\xc0\xe6\x59\xc7\x82\x79\xd7\x89\xcd\x4e\xe5\xc3\x30\xa1\xfe\xcc\x7f\x60\x32\xd5\x93\x42\x4d\x08\x15\x5b\x07\x34\x2f\x60\x98\x47\xd2\xe0\xc4\x68\x2c\x1b\xf5\x58\xa5\xf1\x21\x9a\x98\x41\xca\x4e\x63\x23\x9e\x33\x62\x84\xc3\x5d\xd7\x16\x8b\x1c\x74\xa7\xe1\x67\xe8\xdc\x8b\xd5\xae\x20\xdb\x3a\x56\x47\x30\xa2\x26\x39\xa5\xc1\x0a\xdd\xd4\x6d\x61\x79\x2f\x96\xec\xd7\x38\x6f\xe3\x7f\x16\x24\x3c\x65\x09\xa7\x98\x15\xcb\xf1\xd7\x87\xb4\x61\x06\x6d\x66\xeb\xef\x94\x4b\xbd\x34\x87\xd9\xde\x11\xd1\xf7\x07\xb7\xc2\xb9\x2a\x20\xf2\x81\xe2\x95\x1e\x49\x5e\x48\x84\xbc\x93\xe9\xca\x04\xa2\xcb\x64\x34\xa7\x0a\xd0\x63\x74\x88\x53\xb3\x5e\xc2\xfd\x0d\xcb\xdd\x78\x71\x03\x32\x24\x4b\x98\x08\xec\xce\x1b\x39\x49\x22\x65\x96\x62\x68\xa7\x8d\x15\x34\xe5\x90\x64\x02\xa5\x1c\x6d\x39\xc2\x06\x80\x45\x98\x57\xb3\x70\x10\x0f\x31\x5f\xb3\x99\xc0\xc5\x8b\x25\xc6\x2a\x54\x31\xd1\x60\x92\xd4\x8b\x29\xd8\x12\x80\x33\x22\xc1\xbe\x09\xd7\xb2\xee\xfb\x3f\xff\xf8\xd3\xb9\x4c\x7f\xfe\xf1\xa7\x31\x39\x8a\x22\x13\x78\xe1\xf6\xed\xef\xd7\xd4\x0f\x35\xf5\xa4\xf2\x24\xab\x34\xe5\x0a\x92\x68\x62\x44\xab\x99\x88\x2d\xc2\x3c\x26\x47\x26\xbf\x5c\x03\x6e\x61\x6b\x52\x61\xb7\xa7\x89\x51\x30\x53\xd6\x08\x82\xc9\xe8\x3f\x1c\x05\x2e\xc5\xce\x9b\xb1\x0a\xb8\xf7\x83\x68\x29\x48\x01\x62\x43\x31\x95\xae\xfc\xb0\xb4\x29\xef\x02\x3e\xdd\x29\x62\x9d\x0a\xf9\x8d\xbd\x94\xc9\x78\xf1\x41\x7e\x9c\x3d\xcb\x67\xcc\x46\xfa\x58\x36\x75\x0b\xd7\x6e\x67\x7c\xa2\x79\x74\xea\x77\x88\xec\x85\x0c\x62\x6a\x49\x43\x52\xd4\x2b\x73\xf4\x5a\xda\xd6\x88\xc0\x79\xf5\x63\xe3\x12\x2f\x63\x63\x4e\x5d\x70\x16\x85\x8d\x91\x3a\xc5\x93\x23\x86\xe6\x24\xc0\x09\xa9\x30\x01\xb9\xa5\x2a\x4c\x32\xe1\x4b\x8d\x87\xa6\xf3\x6f\x1f\x90\xbe\x5e\xe8\x2d\xc4\x92\x35\x7e\x40\x68\xfa\xd2\xb1\x68\x3b\x25\x76\x71\x6c\x3f\xeb\xf0\xa0\xac\xa8\xee\x62\xd8\xb0\x71\x3a\x87\x8d\x5c\xc3\x4d\x7b\xa7\x48\x23\xf1\x1a\x9e\xa3\x40\xf3\x27\xbc\x2e\x84\x79\x96\x02\xba\x66\x26\xf2\x26\x5d\xf9\xaf\xe4\xc5\x03\xb9\x0f\x7c\x46\x7c\x6b\xa2\x74\xc4\x87\xb9\x4b\x7f\x3b\x90\x6a\xa7\x6d\xf1\xe5\x8a\x1f\x48\x05\xdf\xcb\x84\x94\x2e\x79\xfb\x8d\x1c\xc0\x3e\x98\x03\xd7\xb3\xa5\xd6\x5a\x1a\x50\x85\x2b\xa0\xbb\xd9\x22\xbe\xe6\x9d\x0b\x06\xea\xf5\x08\x0d\xae\x8d\x38\xe1\x0e\x7e\xf3\x15\xee\x58\x33\x3c\xc8\xa5\x79\x36\x4e\xff\x39\xde\x57\x5f\xbc\xf4\x26\xbe\x2c\x9e\x2f\x83\x80\xd2\x35\xfc\x4a\x73\xed\x84\xfc\x59\xaa\xbc\x54\x1a\x4c\xa3\xbd\x53\x3d\x47\xcf\x6d\x7e\x1f\x12\x7f\xb4\xaf\x65\x07\xb4\xee\x14\x51\x16\x04\x71\xdd\x97\xee\x32\x48\xa4\x02\x89\xaf\xef\x91\x6d\x60\x1c\xf9\xd8\x9d\x0c\x80\x60\xa8\x46\x1b\x4d\xad\x06\xbf\x30\x53\xbb\xc0\x4b\x18\xf5\x35\x33\x4d\x78\x90\x36\x16\x64\x2d\x1e\xcb\x02\x61\x09\xcd\xed\x45\x36\xd1\xc5\x9c\xf4\x75\x60\xbb\x4c\x17\x8b\xa8\x53\x14\xd7\x21\xed\x0e\x7a\xac\x2c\xf9\x86\x09\x7d\x45\xd5\xd3\x6f\xe4\x3a\xa4\x55\x8a\x74\xc6\xed\x85\xe9\xd6\xa8\xff\xe2\x11\x32\x3d\xdf\x6d\x4d\xf0\x83\x3c\xee\xa5\x2c\x7c\xd9\x19\x9f\x37\xd4\x3f\x2b\x1e\x58\xc7\x5f\x1d\x2e\x9a\x0a\x6d\x14\x4f\x15\x19\x79\x81\x8d\x16\x6c\x4c\x9b\x3c\x33\x8b\x07\xd1\x41\xae\x20\xff\x36\xec\x52\xa8\x05\x68\xb3\xd3\x2b\x74\xb3\x35\x25\x1c\x20\x1d\xcf\xb6\xb9\x80\x47\xf1\x54\x12\xbf\xa7\xe5\x7c\x60\x79\x31\x01\x94\xa8\x0c\x21\xd7\xd7\x93\x4e\xaa\x08\x3c\xcc\xd6\x74\x3f\x9e\xda\x74\xed\x9f\x4e\xa6\x0d\x69\xdd\xed\xd3\x67\x55\x9b\x13\x6c\x14\x4f\x8f\x54\x1b\xf5\xc6\xdd\x1b\xa5\x3b\xfd\x46\xf1\xec\x9e\x88\xa3\x78\xfa\x6e\xc8\xdd\x85\xcb\xf3\xe2\xa3\x8e\x6d\xd9\x4f\xbe\x32\x3b\x13\xac\x72\x79\xc7\x48\x85\xd1\x32\x34\x4f\x23\x96\x42\x2a\x4f\xa8\x1e\x80\x63\xb5\xf7\x99\x4b\x4b\xad\x5b\xa5\xdf\x9a\xc5\xbb\x1d\xd9\xd9\x5e\x51\x12\xa7\x83\xad\x74\x33\xdb\x1e\x6c\x05\x2c\x42\x36\xd2\xf6\x85\x73\x09\xf1\x44\xa3\x56\xa7\x85\x3d\xa0\xa8\xa9\x88\xc9\xef\xe6\x26\xc2\x39\xb0\xea\xe4\xeb\x3c\x6f\x53\x7b\xaf\xa5\x42\x40\xe6\xe8\x80\xdd\x09\xb1\xac\x2c\x06\x8c\x6e\xd6\x0c\xd3\x21\x2b\x2f\x6c\xf6\x1f\x2d\xc0\xf5\xa5\x60\x9d\x14\xc0\x84\xb5\xee\x42\xc1\x3a\xe6\x5e\x90\xb7\x32\x05\xfb\xf9\xc7\x9f\xae\x8f\xa7\x3f\xff\xf8\x93\x46\xc4\xcf\x3f\xfe\xf4\xe9\x44\xff\xd1\x21\xef\x0c\x74\x0c\x9e\x5e\x74\x4c\xdd\xe3\x86\xdc\x7d\x31\x6e\xd5\xf1\x15\x8f\xf7\x62\x4c\x5e\x28\xc6\xac\x72\x0c\xc8\x18\x66\xb4\x55\x5b\x91\xd2\x3b\x5f\x2c\xbf\xfb\xcc\x66\xad\xf7\x6a\x23\x3f\x36\xdd\x9b\xdb\xfb\xb6\x3a\x31\xe7\x5a\x2d\x93\xfa\x75\x59\x1f\xb5\x73\x99\xa2\x1d\xfa\xb0\x21\x85\xaf\x83\x04\xe3\xa8\x6d\x0d\x59\x1d\x1c\x01\xd1\xe3\x70\x92\xf6\xde\xe7\x2c\x92\xb7\x2f\xf7\xcb\x20\x3b\xc8\x46\xac\xda\x72\xc9\xb6\xac\x42\xc7\xc5\x03\x14\x61\xa0\xe0\xbc\x5e\x31\x92\xde\x4a\xd8\x6b\xe0\x05\x6e\xdf\x21\x71\xd0\x0c\x68\x5b\x64\x11\xee\x58\xbb\x0b\x61\x67\x6f\xea\xb9\x3a\x8a\x57\xe6\xdc\x90\x4c\x62\x7e\x50\x2b\x98\xf6\xdd\xfc\xe0\x76\x25\x23\xb3\x48\x87\xb0\x44\xb3\x59\xc1\x8c\xff\xa4\x69\xcb\xef\x56\x54\xbd\x58\x6f\x3f\x47\x74\xce\xa2\x97\x9a\xe6\x18\xf2\xde\x75\x98\x1d\xcf\x66\x3d\x6b\xd8\x62\x08\x1d\x3a\x12\x8c\x8c\x23\x4a\xc4\x42\x3d\x6a\xcf\xdd\xe6\x7a\x4a\xe7\x85\x46\x01\x36\x0d\xac\x85\x13\x94\xa7\x66\x3a\xbd\x37\x05\x4c\xb7\x69\xb6\xf5\x09\x69\x08\x9a\xaa\x9c\x15\x4f\xfb\x5c\xf3\xe9\xb4\x4f\xa5\xeb\x70\x0b\xd8\x71\x6c\xb1\x60\x81\x89\xab\x34\xea\x83\x08\x48\xaa\x09\x56\x2b\xd5\x7a\xee\x01\xba\x90\x62\x64\xa3\x12\xd0\x36\x8b\x51\x27\x46\x17\xb2\x90\xc9\x9a\xb9\x8a\x09\x70\x3d\x6e\xae\x24\x5d\x3c\xb0\x15\xea\x88\x29\x6a\xbb\x3c\xc6\xc5\xdd\xf8\xe9\x1f\x05\x81\xcc\xc4\x2e\xf2\xd6\x55\xf9\xc3\x2f\x26\x77\x55\xc8\x71\x7b\x9f\x1e\x35\x27\x25\xb1\x0c\xf3\xd4\x4c\x20\xc4\xe5\xa4\xd9\x20\xa3\x83\xe4\xe2\x8c\x5b\x77\x5b\x2f\x45\x33\x21\x65\x8f\x91\xe6\xa7\x7c\x0f\x80\xaa\x37\x0f\x46\x37\xb9\x0f\xca\xbb\xbb\x6c\xd2\x2e\x7b\xd0\xde\x0b\xdb\xa4\xc0\xb8\xa6\xc2\xca\xb8\x83\xf2\x5c\x3d\xa9\x85\xde\x8e\x93\xdf\x4f\xa8\x23\x3b\xa8\x1d\x48\x5f\x09\x89\xf4\x95\x92\x48\xfd\x7c\x75\xca\x49\xff\xbe\x2b\x5d\xba\x1f\x15\x9a\x36\xa4\xfa\x16\x9f\x63\x32\xe9\xb8\x6d\xe8\xa7\x30\x3d\x80\x45\xe1\xca\xb5\x24\x14\xf7\x8f\xd4\xa4\xd1\x6f\xb4\xc0\x97\x9f\xa3\xf3\x93\xe7\x0d\x9e\xd4\xee\xb3\x9b\x16\xab\xa9\x1e\xa1\x7d\x6c\x3a\x90\xdd\xa4\x6d\xfc\xe6\xc1\xd2\x36\x7e\x89\x26\xe1\x9c\x5e\x3a\xf5\x88\xec\x40\x90\xc1\xb7\x28\x7b\xda\xc3\x1a\xd3\x2a\x6c\x57\xb7\x57\x5f\x69\xdb\x63\xc2\xb2\xf8\x7b\xa1\x5e\x56\xc5\x6e\x53\x0b\x49\xb4\x59\x1a\x09\xe8\xc7\x0e\xb0\xa4\x29\x0d\x56\x39\x24\xcf\x15\xc1\x48\x14\xb8\x25\x5b\x7c\x07\xb9\x8b\x52\x8e\x8c\x2e\x5c\x94\xad\x59\xfa\xe4\xd8\xcd\xba\xef\x8a\xec\xfb\x75\x2b\x42\x07\x9a\xcf\x99\x16\x7b\xad\x82\x57\x26\x55\xde\x8d\xa0\x4f\x4d\x6c\x55\x98\x6b\x3f\x3b\x2c\x94\x7a\x3f\xe9\x05\x74\xe7\x88\xba\xa2\x1c\x0b\x52\x58\xd7\x01\xe3\xca\xd1\x2e\xb2\xec\xc4\x36\x77\xe7\x9a\xbe\xb8\x02\x30\xc3\x17\xfb\xb8\xfb\xe8\x9b\xb9\x39\x76\xf7\x47\x22\x02\x8e\x4d\xe6\x1e\x02\x81\xfe\xcc\x33\x3f\xfc\xbd\x39\x3d\x66\xf9\x41\x2a\x6b\x66\x08\x27\x39\x62\x8b\x14\x6d\x57\x85\xd3\x12\x9e\x9e\x1e\x8a\x19\xe2\x1e\xc4\xdc\xc7\xe8\xb9\x2a\x20\xfb\xa2\x14\xb4\xbb\xcd\x2a\x4d\xe3\x7e\x3e\x0c\x7f\xbe\xbe\x9e\x16\x36\xfa\x46\xc7\x05\xbd\x4b\x74\xd3\x66\xd0\xad\x5f\xe3\xc3\x7c\x16\xd6\x2c\x5d\xc9\x70\x07\xce\xf0\x11\x3f\x78\x5c\xa9\x1d\xa7\x8c\x44\x1d\xe7\xed\xb8\x6d\xea\x3e\xb1\x0e\x85\xde\x8f\xdd\x9d\x42\x6c\x4c\x88\xbd\x58\x68\x5f\xb0\xf1\x72\x4c\x3e\x9c\x5e\xef\x93\xe9\xa7\xeb\x7d\xc2\xd2\x60\xfc\x92\x7c\x34\x95\x21\x3b\xf4\x2f\xa6\x0f\xcd\xf7\x2f\x2e\x9f\xeb\x6b\xd8\x12\x3c\x07\x7f\x5d\xb6\xaa\x98\xa6\xab\x1d\xd6\xf1\xf9\x54\xb7\x7f\x8a\x65\xec\x5a\xc1\x6e\x8a\xe2\xae\x20\x80\x39\xce\x97\x0a\xa7\x69\xd7\xa2\xef\x62\x10\xc2\xc6\xcb\x43\x32\x22\xec\x8e\x06\xe9\x21\x39\x58\x48\x09\x95\x9e\x21\x67\x1b\x39\x98\xd3\x84\x9c\x5f\x5c\x9f\x1e\xa2\xcb\x19\x13\x69\xb2\x25\xeb\x2e\xf1\xfc\xe2\xfc\xec\xbf\x0d\xe5\xdc\x12\xc6\xb1\x18\x06\x99\xed\xc1\x20\x68\xff\xd2\x7f\xe2\x28\xb3\x3d\xeb\x10\xd6\x50\x57\xb5\x78\x36\x34\xe2\x21\xcd\x95\x7c\x58\xca\x43\x8b\x4f\x3c\xf5\x65\x73\x28\x9e\x3e\x7b\xae\xbc\x09\x34\x8a\x21\x7b\x7b\x29\x6f\x28\x20\xde\xe6\x70\xef\xc7\xab\x26\x29\xf8\x6a\xcf\x99\x45\x84\xd1\x1f\x2e\x64\xb2\x3e\xb4\x68\x9f\x65\xaf\x5e\x7d\x15\xe8\x8e\xe1\x5f\xec\xd0\xe6\xde\xe9\xa3\xf0\xc2\xad\x06\x50\x41\x77\x11\x14\x79\xb6\x4b\x58\x74\x3d\x32\xf8\x7e\xd0\x08\xd8\x47\x87\x7b\x49\x6f\xa1\x83\x18\x04\x3c\xee\x35\x32\x6e\xca\x38\x78\xff\x4e\xfb\x5d\x27\x7a\x11\xa4\xee\xae\x78\xb0\xee\xc9\x33\x27\xc7\x1f\xa7\x7d\xbd\x3e\x80\x18\x35\xc3\xee\x52\x29\x6a\x77\x7d\x00\xd0\x62\xa8\xbf\x0c\x81\x46\xc1\x90\x79\x8d\x88\xc6\x82\xd9\xf8\xb8\xe5\x71\x4a\x32\xad\xa9\xaf\x97\xdb\xa4\x10\x68\xee\x64\x98\xd0\xe3\xb4\x89\xb6\x60\x43\xd7\x8d\x36\x6f\x5b\xcc\xe8\xbd\x76\xa2\x9e\xda\x0e\x7c\x1e\x24\x13\x29\x5c\x2c\x01\x52\x02\xc8\x9d\xb9\xcb\x65\x0d\xb2\xd0\x69\x04\x63\x84\x08\xb8\xa5\x42\x9e\x2e\x17\x57\x45\x8a\x2e\x4a\x52\x16\xac\x04\x0f\x68\x87\x27\x12\xa8\x45\x51\xed\xcf\xd7\xb1\x54\x85\xf3\x1c\x16\x88\x79\xae\x8a\xd4\xbf\x0b\x9e\xb0\x5b\x1a\xf9\x93\x98\x16\x0f\x52\x0b\xa3\x94\xc5\x04\xc2\x92\x30\x51\x94\x99\x07\xb7\xbc\xee\xa3\xd1\x69\xbb\x83\x66\x0f\x5f\x0c\xdd\xcd\x98\xb8\xe9\x23\xba\x4c\x5f\x79\x46\xf8\x6f\xd1\xaf\x1b\x66\x08\x7d\x9d\x06\x2b\x49\x2e\x91\x69\x93\x17\x7c\xcc\xc6\x24\xe6\x62\xa9\xda\x6d\x5f\xbd\xe6\xdb\x83\x18\xc4\xfe\xd0\xaf\x06\x84\x4c\xa6\x36\x04\xec\xc1\xce\x60\x25\xe5\x16\xca\xe3\x2e\x96\xa7\xd6\x22\xd6\x88\x85\x1e\x18\x68\x08\xe2\x69\x98\x9c\x4d\xef\xee\xb8\xf2\x16\x59\x95\x9c\x3c\x53\x79\x7d\xa6\xf6\xc9\x3d\x88\x68\x80\x32\x02\x33\xee\xb5\x6e\xd7\x02\xc2\x69\x5f\xae\xd8\x97\x2d\x95\x63\x90\x0a\x78\x4c\xf0\x19\x5a\xeb\x6e\x98\x09\xb1\x26\x31\xe5\x49\x73\x45\x83\xe2\xd1\x57\x56\x53\x55\xcd\xc5\x29\x9d\xcb\x2c\xed\xc1\x48\x1e\xeb\xe6\x28\x64\xaa\x4f\x5f\xbf\x9d\x71\x8e\x8d\x3b\xbc\x78\xa0\x49\xbb\x37\xdd\xc0\x30\x06\x86\xf1\xdb\x66\x18\x42\xa6\x56\xac\x6a\x44\x4b\xbb\xb7\x4d\x4f\x3f\x9b\x7e\x1e\x36\x35\x27\x50\x2b\xf2\x75\xf8\x81\x9a\x66\xcd\x08\xeb\x38\xc7\x3d\x5c\x7a\xee\xe7\xcc\x13\xff\x5a\x91\x3b\xdb\x73\x71\xfb\x88\xbc\xbf\x66\xd8\x02\x0d\xaf\x2b\x09\x58\x9c\x8c\x61\xd7\xf3\xa4\x4d\x33\x6f\x3c\x72\xcd\x3a\x9f\x42\x78\xd1\x25\xc4\xc6\xd9\x48\x2f\x54\x9b\xbf\x98\xb3\x80\x66\xca\xf8\xc1\x75\x98\x12\x72\x10\x03\x96\x40\x1f\xb9\x2f\xdd\x4b\x54\xc5\xdb\x4c\xad\x25\xcf\xc0\x2e\x16\x8b\x2e\x83\x87\x85\xd7\xdb\x7e\xe1\xf3\x06\xff\xd4\xa7\xdd\xfd\xf7\xe6\xad\xfd\xeb\xea\xf8\x1a\xde\x34\x77\x8e\x3d\x9d\xf1\x94\x19\x77\x3a\x28\xc9\x02\x9b\xc2\x1a\x62\xb1\x6c\xc5\xeb\xd1\x9b\x6f\xbe\x69\x51\xf3\x3f\xdd\x56\x57\x4d\x89\x42\xf1\x29\x1b\x57\xf3\x44\xa1\x3d\xa2\xcf\x1a\x2a\xff\xb8\xa3\x0e\x81\x67\x43\xe0\x59\x0f\x53\xe7\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\x59\xd3\x8c\x87\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x7c\xb3\x18\xe8\xd8\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x36\x04\x9e\x0d\x81\x67\xe5\x67\x08\x3c\x1b\x02\xcf\xf2\x67\x08\x3c\x1b\x02\xcf\x86\xc0\x33\x6f\xa7\x43\xe0\x99\x83\x8b\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\xca\xcf\x97\x0c\x3c\x6b\x29\x0e\x49\xc8\xc8\x64\xe8\xf5\xbd\x6b\xef\xb8\x45\x4e\x30\x67\xe3\x1e\x89\xb9\xcb\xa7\x6a\xc8\xcc\x3d\x64\xe6\x1e\x32\x73\x0f\x99\xb9\x7d\xe0\x0d\x99\xb9\x07\x07\xa9\xc1\x41\x6a\x70\x90\x1a\x1c\xa4\x06\x07\xa9\xc1\x41\xaa\x78\x06\x07\xa9\xe2\x19\x1c\xa4\x06\x07\xa9\x5f\x95\x63\xc1\xe0\x20\x35\x38\x48\x0d\x0e\x52\x83\x83\x54\xad\xf1\x6f\x8c\x8e\x0d\x0e\x52\x83\x83\xd4\xe0\x20\x35\x38\x48\x0d\x0e\x52\x83\x83\xd4\xe0\x20\xe5\x3c\x83\x83\xd4\xe0\x20\x95\x3f\x83\x83\xd4\xe0\x20\x35\x38\x48\x79\x3b\x1d\x1c\xa4\x1c\x5c\x0c\x0e\x52\x83\x83\xd4\xe0\x20\x55\x7e\x86\xcc\xdc\x43\x66\xee\x21\x33\x77\xe9\x19\x32\x73\x0f\x99\xb9\x87\xcc\xdc\xbd\x46\x18\x32\x73\x0f\x99\xb9\x87\xcc\xdc\x43\xa2\xd5\x21\xd1\xea\x90\x99\x7b\xc8\xcc\x3d\x64\xe6\x6e\x86\x7f\xc8\xcc\x3d\x30\x8c\x81\x61\x0c\x99\xb9\x87\xcc\xdc\xa5\x67\xc8\xcc\x3d\x64\xe6\x86\x67\xc8\xcc\xdd\xf0\x0c\x99\xb9\x87\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x2b\x3d\x43\xe0\xd9\x10\x78\xf6\xab\x0a\xd8\x18\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\xab\x35\xfe\x8d\xd1\xb1\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x9c\x67\x08\x3c\x1b\x02\xcf\xf2\x67\x08\x3c\x1b\x02\xcf\x86\xc0\x33\x6f\xa7\x43\xe0\x99\x83\x8b\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\xca\xcf\xbf\x77\x66\xee\x3e\xae\x06\xfe\xa5\x6e\x97\x0e\x16\xe8\x19\x52\xdc\xd4\x7d\x50\x67\x0a\xef\x22\x48\x1f\x0d\xdb\xc6\xf4\xd6\x52\x94\xec\x83\x0d\x53\xf2\xaf\x0a\xa4\x10\xef\x9a\xc7\x85\x6e\xd4\xc2\x93\xca\x1b\x59\x62\x6b\xef\x2c\xd0\x65\x10\xf3\x3c\x83\xd2\x47\x77\x0a\x16\xd2\x70\x8c\x7a\xa0\x5c\x83\xbd\xe2\x4b\x7d\xad\x9e\xed\x41\x7f\xb3\x3d\x10\x01\x4c\x5b\x5f\xd7\x74\xa1\x2f\x85\x29\x08\x9d\xd0\x41\x24\x6f\x59\x82\xd0\xa0\x0b\xa6\x03\x9c\x22\x72\xcd\xd3\x54\xf3\x12\x6e\xa3\x77\x7c\x9d\x06\x52\x28\x8e\x49\xd6\x51\x57\x39\xdb\xe3\x62\xc1\x05\x4f\xd9\x6c\x8f\x8c\x08\x38\xfe\x39\xd3\xb1\x9c\xca\xc0\x49\x22\xaa\xd2\x31\xc9\x67\xe6\x45\x89\x86\x95\x87\x4c\xa4\x3c\xa0\x91\x01\xb0\xda\x0f\x17\x84\x46\xf1\x8a\x8a\x6c\xcd\x12\xa7\x1d\x6c\x00\x5f\xaf\x86\x3f\x19\xd5\x1a\x7a\xba\x78\x4d\x42\xb8\x39\x44\xb6\x9e\xd7\xb5\x9e\x71\xc2\x4e\xce\x8f\xae\xbb\xb6\xc7\x14\x9b\x11\x2e\x42\x1e\xa0\x46\x27\x8f\x34\x59\xd9\xc4\xe9\x65\xaa\x42\xe6\x6c\x21\xfd\xa2\x1b\x15\x5b\xa2\xbb\x6b\x84\x75\x2e\x65\xc4\xea\xce\x18\x2d\x72\x7b\x45\xca\xba\x76\xf5\x63\xb8\xab\x1d\x2d\x99\x3d\x68\x31\x0f\x6e\xf0\xff\x64\xe6\x25\x40\x7a\x6e\x15\x9d\x87\xb3\x13\x4c\x5c\x8c\xb3\x86\xa9\xb4\x42\x47\xb3\xde\xa6\x80\x43\xcb\x6e\x51\x24\x6f\x11\x6b\xa8\xba\xcb\x95\x59\x28\x59\xff\x09\x74\x3b\x78\xae\x3f\x47\x3c\x65\x09\x8d\x7e\xfe\xf1\x27\x5f\xbf\xb3\x19\x19\x61\x54\x98\xde\xd3\xeb\x98\x26\x5c\x49\xb1\x4f\x20\x34\xd4\x2a\x65\x4c\x87\x0b\x29\xc9\x9c\x26\x3f\xff\xf8\x53\x31\xd4\xef\x76\x1a\xaa\x18\x4b\x0b\x55\xec\x7f\x32\x1a\xfd\x11\x9d\x98\xed\x25\x81\x2f\xcc\xed\x80\x2b\x68\x63\x0d\x1d\xf9\x80\x7e\xf2\xf1\x83\x86\x82\x5a\x07\xbc\xb9\xfd\x47\x00\xff\x18\x8f\xc7\xe4\x5f\xce\xd8\x69\x92\x31\x1b\x85\x94\x3b\xf2\x62\xef\x7f\x25\xfe\xc0\x01\x63\xdb\x69\x1c\xa4\x80\x4f\x03\xcd\x45\x2b\x40\xbe\x01\x76\x84\x11\x86\x69\x02\xca\xd7\xbf\x03\xe7\x8a\xaa\x17\xd0\xd3\x67\xcd\x1c\x5e\x16\x83\x5e\xe7\x63\xd2\xb4\x58\x05\x67\x05\x7e\x07\xdb\xd0\xcb\x56\x4d\x17\xb9\xe6\x57\x2e\xa0\x2d\xa8\xff\xe0\xbf\xd9\xab\x57\x6f\xde\xe2\xff\xe3\x9b\xfc\x9b\xab\x95\x4c\xd2\x51\xc0\x93\x20\xe3\x29\x08\xae\xe6\x23\xdf\x40\xff\xfc\x67\xeb\xd7\x12\x46\x7c\x81\x6d\x5e\xe6\x8d\x62\x9a\x30\x73\xe9\x59\x26\x32\x8b\xf5\xa5\x67\x36\x4b\x69\x14\xbd\xf0\x9a\xf9\x4c\x45\x00\x74\xf6\xc9\x29\x82\xed\xcd\xee\x55\x1a\x45\x8e\x16\x0f\x8e\xe0\x19\xee\x01\xbc\xa6\x36\x90\x31\x7d\x78\x91\x92\x58\xa7\x57\x97\x82\xab\x7d\x32\xda\x27\x9f\x01\x0f\x07\x63\x72\x05\x27\x8b\x98\x93\xd5\xd8\xe9\x5a\x26\x8c\xc4\xfa\x86\xa5\x14\xdf\x30\x32\xc7\x70\x8d\xad\xd5\x1d\x1b\x9d\x3e\x61\x2a\xa0\x31\x23\xc1\x8a\x26\x34\x48\x59\x62\xc0\x3e\x45\xaf\x77\xef\xd6\x7f\x01\x7c\x68\x4d\x43\x36\xca\x62\xdc\x16\xea\x65\x4e\x70\x20\x46\x10\xc9\xc3\x2d\x9b\xeb\xab\x19\x43\x02\xe1\xae\x77\xc8\xe2\x48\x6e\xd7\x4c\x78\xc9\x25\x7e\x1d\x27\x32\x34\x1b\x14\xfa\xd4\x67\x48\xd3\x9c\x44\x8a\x94\x89\x30\xdf\xe0\x34\xb8\xc1\x3f\xff\xa5\x9b\x16\x3d\x93\xdf\xfd\xa9\x61\xdf\x87\x6c\x63\x3a\xfe\x1d\xa9\xec\x7d\xdf\x35\xa6\x4d\x28\x2a\x6b\x59\xfb\x4a\x7b\x57\xde\xaf\x9e\x4c\xe4\x33\x40\x5a\x25\xcc\xae\x82\x1f\x58\x71\x7a\xf0\x4a\x30\xf6\x14\x9c\xfd\x76\x05\x11\xe7\x25\x5e\xee\xb8\xb8\x99\xeb\xa3\x97\x36\xe9\xd3\x26\x4d\xcd\x93\x7d\xf3\xd7\x5c\xa6\xab\x31\x41\xaf\x53\xe0\x15\x77\xb1\x96\x94\xd2\x68\xeb\x5c\x52\x5f\x40\xbd\x16\xaf\x3b\xb1\x43\x37\x05\x09\x12\x66\x02\x5c\x94\x39\xd3\x32\x21\x82\x47\x2f\xf7\x6d\x90\x4a\xc8\x16\x34\x8b\x52\x45\x70\x5a\x1a\x75\x49\xd8\x70\x57\x49\x25\xb9\xd5\x14\x72\x62\x6e\xc4\x1a\x88\x53\xe7\x72\x0c\xf2\xa8\xa5\x9a\x79\xf1\x12\x74\xa1\x6c\x8a\x73\x37\xe3\x13\xae\xf0\x64\x8d\xc8\xdf\x8c\x88\xa6\x01\xb2\x23\xfd\x7d\xdf\xb0\x04\x2d\xf0\x82\x4d\xa6\x34\xb0\xf7\xf4\x72\x11\x44\x59\x68\x0d\x96\x01\xd5\x42\x30\x74\x50\x74\x43\x90\x05\x0b\x99\x4f\x09\xba\x7b\xd9\xe4\x29\x59\x06\xee\xd4\x0f\x5b\x09\x23\x9a\x1c\x15\xdd\x7b\x2f\x6d\xd0\xae\x71\xea\xfb\x9d\x03\xfa\x3a\x05\x9d\x61\xd3\x32\x21\xe5\xfb\xde\x28\x0c\x9d\x6b\x47\xc2\xa8\x3e\x4d\xc1\x0d\xa1\x4b\xca\x85\x77\xcb\xe2\x36\x41\x43\x53\x74\x4b\xb7\xaa\x16\x5f\x80\x9e\x1f\xfb\x44\xb0\x0d\x4b\x4a\xbb\xce\xab\x3c\xe9\x59\x17\xa9\xc0\x02\x61\xc0\x30\x72\x3b\x69\x2c\x95\xe2\xf3\xc8\x0e\x5c\xb8\xb6\xe9\x0f\xae\x62\x16\xf8\xaf\xd3\x38\x91\x66\x67\xbf\xf6\x8b\x7b\xe3\x9d\xd8\x7f\x95\xae\xff\x0a\x0c\x23\x74\xdd\x18\x54\x2a\x13\xba\x64\xf6\x27\x95\xd2\x34\x43\xc4\xa0\x45\x8f\x85\xe7\x8e\xad\xe5\x86\x8b\x50\x53\x23\x8b\xd2\x38\xca\x12\x1a\x15\xbf\x04\x52\xa0\x61\x5d\x1d\x92\xbf\xfd\x5d\xff\xa2\xfb\x67\xa1\x09\x94\x35\xbf\xce\xc4\x68\x34\xca\xff\x43\x63\x6e\xc3\x6e\x09\x8d\x39\xbb\x4b\x99\x80\xc6\xe3\x9b\x6f\xd5\x98\xcb\x83\xcd\xeb\x99\xc0\x81\x8f\x33\x95\xca\xf5\x25\x43\x83\xe1\x09\x83\x0b\x20\x10\xed\x52\x70\x2b\xa8\xb9\x08\xba\x49\x0b\x74\x29\x56\x2c\x55\xe3\x20\x09\xc7\x71\x22\x35\x3a\x02\xa0\x43\x63\x99\x2c\x67\x42\x13\x38\xf8\x0e\x64\x95\x43\xd2\xd0\xac\x6c\x75\x42\x80\xaa\xde\xcf\xf8\x2e\xe2\x2a\xfd\x8b\xf7\xfd\x19\x57\x69\x19\x73\x35\x28\xcd\xb2\x70\xb1\xcc\x22\x9a\xd4\x1b\x00\x52\x03\xa9\x57\xf6\x38\xca\x54\x8a\xb7\xc5\x8d\x45\xb0\xfe\x63\x64\x30\xa0\x11\x07\x9d\x05\x2b\xb6\x2e\xe2\x7e\x65\xcc\xc4\xd1\x74\xf2\xdd\x57\x57\xe5\xdf\x2b\x7b\xbf\xe6\xd9\x5d\x8a\xad\x00\x2f\x01\x9a\xcc\x79\x9a\xd0\x64\x4b\x26\x53\xa2\xb2\xf9\xc8\x82\x79\x70\x3c\x39\xb9\x2c\x11\x1e\xd4\x4f\xac\x34\xa9\x42\x99\x06\xee\xa6\x70\xb1\x42\x5a\x94\x4a\x0c\xed\x33\x2e\x19\x6b\xb2\xe1\xd4\x71\x8c\x43\xb7\x07\xfc\xd4\xed\x57\x2e\xea\x80\x5a\xfb\x79\xae\x8c\x71\xcf\x5a\x83\xb2\xd4\xd9\x85\xe5\xa3\x55\xce\x55\xa2\xf1\x66\x7c\x44\x30\x9e\x02\xa9\x81\x41\x3f\x0b\x0d\xae\x91\x1c\x00\x71\x33\x9c\x89\xfa\xb4\x60\x1a\x85\xc2\x1c\xd0\x31\xc8\x2d\x2c\x51\xf6\xc6\x1a\x48\xb1\x61\x49\x4a\x12\x16\xc8\xa5\xe0\xff\xc8\x3b\x57\xd6\x6b\x05\xaa\xb4\xd5\x64\x3c\x2e\x52\x96\x68\x09\x07\x28\x13\xea\xe8\xd7\x74\x4b\x12\xa6\x87\x21\x99\x70\x3a\xb4\xfe\x72\x1f\xb5\x3c\xcb\xc5\x42\x1e\x42\x16\x29\x75\x78\x70\xb0\xe4\xa9\x3d\x80\x81\x5c\xaf\x33\xc1\xd3\xed\x01\xd8\xd3\xf9\x3c\xd3\x4b\x72\x10\xb2\x0d\x8b\x0e\x14\x5f\x8e\x68\x12\xac\x78\xca\x82\x34\x4b\xd8\x01\x8d\xf9\x08\x60\x17\x40\x08\xc6\xeb\xf0\x59\x62\x4e\xac\x7a\xee\x23\x5b\x75\x6a\x07\x87\xab\x6d\x19\xf4\xe9\x32\xa1\xd7\x28\xb0\xa3\xec\x91\x63\xdb\xf2\xdf\xcb\xd3\xab\x6b\x62\x47\xf7\x86\xa9\x23\xf2\x8b\x2f\x55\xb1\x0e\x1a\x69\x5c\x2c\xac\x90\x05\x26\x0c\x57\xd7\x80\x1c\x3e\xe2\x1e\x39\x5b\x65\xf3\x35\x4f\x95\x93\x7e\x48\x8e\xc9\x71\x6e\xdb\xc8\xe2\x90\xa6\x2c\x1c\x93\x89\x20\xc7\x74\xcd\xa2\x63\xaa\xd8\x93\xaf\x02\x48\x9a\x23\x8d\xdb\xbe\xeb\xd0\x90\x32\xa0\x49\x71\x9b\x13\xd2\x86\x65\xab\x1e\x54\xcd\x26\xcb\x51\x6c\x36\xd0\xb1\x48\x2d\x40\x49\x95\xba\x16\x8f\x5d\xd8\x0a\x27\x6d\x31\x87\x34\xc4\x5b\xd4\x0a\x3a\x5a\x97\xd0\xc9\x94\x58\x92\x86\x14\x6c\xce\x22\xa9\xf7\x96\x34\xea\x20\xe6\x33\xa2\x37\x0b\x17\xff\x49\xec\xfd\xa9\xf8\xfa\x4a\xaa\xc2\xc5\xe9\x09\x78\xba\x1b\xbd\x54\xe5\xe7\xee\xbb\x3a\x2f\x2f\x41\x56\xe5\xe3\xee\xcb\xa7\xe4\xe1\x03\x7f\x1b\xf8\x9b\xbb\x04\x03\x7f\xfb\x62\xfc\xcd\xa5\x0e\xfd\x78\x5b\x9d\xd6\x14\xcf\xee\xdc\x8d\xdd\xc5\xe0\xb2\x31\x99\xf6\x51\x28\xe9\x95\x36\x1f\x94\x83\xf5\x5e\x4c\xa6\x9b\xaf\xe1\x58\x4d\xa6\x9b\xb7\x2f\xed\xd5\xd6\x6e\x0b\xef\xbd\x75\x02\x7a\xf1\x89\x3e\x9a\x0b\x1a\x30\xcd\x54\x7e\xfe\xf1\xa7\x8a\x55\x21\x57\xff\xc0\x45\x3e\x92\xf2\xc6\xea\xdf\xb8\xfd\xd0\xab\x6c\xb5\x7e\x33\x4e\x08\xe1\x64\x5a\xf2\x64\xc3\xa8\x67\xb0\x74\x19\xc5\x02\x90\x10\x9a\x8e\xc1\x2b\xdc\xcb\x8b\x67\xb3\x14\xb4\x11\x99\xaa\xb9\x97\x57\x82\xe9\x21\x7a\x31\xf7\xc8\x90\x89\xd1\x9d\xf9\x3a\xad\x56\x38\x9e\xcd\x74\x7f\xa6\xb4\x71\x3e\x7f\x43\xfa\x54\x79\x54\x2e\xfc\xa1\xfa\xf9\x75\xcb\x5d\xa5\x31\x84\xcd\x6a\xa6\x52\x72\xf9\x45\x77\x83\xd3\x62\x23\xa0\xae\xc1\xd7\x2d\x57\xa8\xd8\xc4\x04\x4e\x34\x25\x71\x96\xc4\x52\x9f\xd3\x17\x93\x85\xf1\x31\x5a\xb1\x62\x69\xf4\x38\xd6\x89\xb0\xdd\x53\xc9\x2a\xf9\x24\xc3\xe5\x8f\x18\x4d\x44\xbe\x6c\x66\x05\x8b\x7e\x35\x00\x99\x02\x15\x74\xa3\x77\xc4\x6c\x96\xda\xe5\x18\x7b\xd5\xc8\x8f\x2e\x73\x91\x02\xc2\x73\xbf\xdb\x4c\xe5\x40\x9d\x62\xce\xc9\x9f\x7f\xfc\xe9\x7f\x81\xf6\xdc\x18\x35\x0a\x77\x99\x3c\x8b\xc7\x19\x17\xd9\x5d\xfb\x9e\xcf\x0d\xb7\xf9\x76\xfe\x23\x6c\xbc\x75\x9c\x6e\xc7\xc4\x0e\xe2\x5a\x7a\xd1\xec\xc9\x55\x2b\x4d\xd1\xcf\x52\x6e\x58\x22\xd0\x9c\x92\x3b\x91\xc9\xfd\xc2\x71\x6c\x95\xc8\x6c\x89\xce\x01\x56\x4f\x6a\x84\xe0\xf6\x78\x76\xb3\xb0\xb0\x27\x75\xc3\x3c\x9a\x1f\x6a\x5d\x87\x40\x10\x60\x37\xfe\x91\x30\x3d\x77\x3c\xd2\xa1\xde\x1e\x1b\x3c\x82\xfe\xec\x0e\x85\x43\xce\x06\x8a\x8f\x6f\x0b\xd4\xed\x13\x57\xdf\x2a\x15\x06\x02\x1c\xa4\x12\xdc\xcb\x35\x24\x56\x25\xe1\xb7\xce\x47\x32\xa0\x51\x1e\x0f\x6e\x74\x94\x93\x05\x29\x11\x32\x4b\xc5\xf2\x95\xed\x85\x66\x38\x40\x16\xd7\x25\x67\x3d\x98\x3c\xd0\x11\x3d\x73\x23\x61\x01\xd6\x1c\xd4\x7b\x89\x8b\xdd\x40\xc5\xd9\xc9\xf1\x5c\x82\x18\x36\xdf\x88\xdc\x6a\xf2\x56\x7a\xd1\x40\x07\x50\x5d\x3a\x2a\x2d\xbd\x67\xb0\x3c\x80\xaf\xd0\xbc\xea\x13\xed\xed\x54\xb8\x44\x08\xf2\xcd\x26\xe0\x69\xb0\xef\x81\x2a\x07\x61\x9f\x50\xa0\x16\x75\xa1\x8f\x18\xa3\xb0\xcb\xb1\xf2\xd2\xe2\x45\x36\x2e\x8c\x43\xd2\x57\x8d\x04\xf3\xd4\x99\x51\x14\x79\xa1\x32\x3f\x65\xa1\x4a\x2f\x2c\x4b\x57\xaf\x7e\xfe\xf1\xa7\x97\x26\x84\x06\xac\x77\x2c\x24\x1a\xea\x3f\x12\x9e\x12\xae\xc4\xf3\xb4\x50\xfa\x76\x73\x6f\x82\x87\x38\x4e\xa4\x96\x58\x9c\x0d\x80\x18\x76\xa8\x41\x79\x0f\x16\x30\x7b\xf9\xac\x8d\x73\x3a\xc4\x99\x42\x48\x21\x48\x3c\x18\x76\x88\x66\x20\x2d\x65\xad\xe3\x88\xad\xf5\x4e\x43\x02\x6f\x09\x86\x0b\xb2\xfa\xa3\x7f\xe5\x78\xca\x69\x14\x6d\xc9\xff\xa5\xf1\x1b\x27\x6c\x04\x4e\x25\xb9\x49\x65\xaa\x17\x88\x99\x8c\xc0\x39\xa9\x0f\xb2\x75\xd3\x2d\x40\x3f\xb6\xe8\x3b\x8a\xf4\xa6\xb8\xbc\x14\x5e\xdd\x7c\x1b\xc1\x16\xfe\x74\x70\xb5\x0b\xbc\x6e\x67\x5c\xde\xc1\xa3\x67\xb1\xb5\x4c\xde\x40\x0c\x0d\xb8\xbe\x10\x0b\x2f\xaa\xdb\x80\x68\x0a\xb1\xad\x98\x0e\x34\x83\x2f\x49\x80\x8e\xeb\x2b\x9e\x5b\x13\xfd\x69\xd3\x03\x7b\xdd\x68\xe7\x0c\xf5\xa2\x4c\x04\xe8\x7f\x94\x8b\x18\x66\xb9\x8d\x87\xe8\x0e\x1c\xb1\xd3\x5f\xb4\xd5\x4f\xb4\xdb\xb7\x50\x4f\xab\xe3\xf3\xd6\xf0\xce\x5f\x53\xda\xaf\xa7\xca\xf8\xd4\xe1\x35\x29\x1a\x88\xf5\x08\x90\xdb\xf0\xa6\x25\x8f\xdb\xbd\x7d\x2d\x63\x14\x5d\x3b\xb7\xfb\x51\x11\x46\x8d\x07\x8e\x03\x8f\x5b\x38\x12\x31\xf6\x64\x80\x68\xce\x8e\x59\x84\x58\x68\x36\x9b\xdf\x3a\x30\x2b\xba\x01\xc7\x71\x57\xb4\xd7\x00\xf4\xc3\x6b\xea\x14\x63\x14\xe2\x98\xd1\x24\xf7\x80\x83\x10\x18\x92\xc3\x55\x18\x93\x6d\xcf\xd6\x93\xb1\x90\xd1\x47\x8d\x7e\x7e\x95\x53\x39\x68\x05\xbf\xb0\x56\x90\xc7\x74\x3d\x8f\x64\x70\xf3\x14\x2a\xc1\xc9\xf4\xe8\xe3\x3b\xdd\x79\x55\x1f\x98\xbf\xa8\x2b\x03\x0b\x80\xaa\x9a\xc0\xfc\xcd\xa0\x06\x1c\xd4\x80\x83\x1a\xf0\xdf\x4e\x0d\x98\x13\x85\x5e\x3a\x40\x51\xa5\x2e\xc5\xb3\xbb\x06\x50\x5f\x32\x34\xee\x3c\x6c\xa6\x8d\xc9\xd0\x48\x5f\x42\x9a\x12\x6c\x77\x31\xae\x16\x39\xeb\x19\xb9\xbe\x38\xb9\x38\xc4\x7c\x2c\x22\x8b\x22\x3a\x47\xe6\xbd\xa6\x22\x83\x4b\x06\x0d\x43\xe0\xe1\x63\xf2\x3d\xb3\x24\x01\xf7\x0d\xc9\x83\xb7\x93\xd1\xd2\x9f\xa0\xf0\x99\x26\x11\x2b\x2a\xc2\x88\x91\xbf\xfd\xfd\x7f\xe9\xcd\x8a\xc8\x89\xb6\x26\xbb\x82\xf7\x12\x65\x01\x69\x92\xce\x5a\xc4\x21\x9a\xe2\x96\xf4\x0a\x44\x0f\x90\xb8\x71\x12\x9f\xb9\x5f\x1e\x24\xbd\xc4\x6e\xc5\x34\x27\xa6\x89\x6f\xf5\x0d\xf4\xbb\x25\x48\xef\x23\x1f\x77\x45\x07\xdd\x5b\xf0\x0c\x78\xe8\xf3\xf4\x6c\x83\x29\x64\x11\x4b\xbd\x22\x75\x7b\xc0\x02\x44\x03\x1f\x75\x1d\x9d\x86\xaf\x33\x61\x4e\x8f\x77\xe0\x7b\x9f\x9d\x46\xcc\x34\x5c\x1c\x46\xee\x21\xae\xbd\xca\x77\x6d\xf5\x8d\xc6\x72\xf5\xb7\x32\x3e\xaa\x6f\x9d\xf9\x0e\xe2\x68\xab\x38\x1a\x48\xb1\xe0\xcb\xa7\x92\x47\x8f\xa1\x77\x9f\x40\x8a\x6f\xfc\x12\xa9\x81\xc9\x27\x92\x06\x79\x87\x83\x4c\x3a\xc8\xa4\x8d\xcb\x30\xc8\xa4\xbf\x55\x99\x14\xe9\xc2\x0e\x42\xa9\x4b\x62\x8a\xe7\x1e\x52\x69\x96\xca\x23\xc3\x34\x40\xd0\xf5\x71\xc4\x56\x26\xbb\xa6\x77\xf8\xe1\x94\x25\x7f\x96\xca\xa7\x5d\xac\x94\x9e\x28\xb7\x07\xdf\x75\x21\xc5\xe8\x1f\x2c\x91\xfb\x36\x0f\xe4\x9a\xde\x99\x80\x4b\x4d\x0e\xdc\xcb\x7a\x05\x34\xc8\xf7\x40\x05\x04\x11\x6a\xb6\x08\x61\xec\x90\xcd\x60\x25\xbd\x69\x54\x5a\x99\xfb\x43\xe4\x8d\x66\xee\x5f\xc3\xf1\x2e\x6c\x7d\xe0\xdd\x15\xde\x8d\xf2\xf8\x53\xf1\xee\x3f\x43\xef\x3e\xde\x8d\x6f\xfc\xbc\xdb\xc0\xe4\xe3\xdd\xab\xbc\xc3\x81\x77\x0f\xbc\xbb\x71\x19\x06\xde\xfd\x5b\xe5\xdd\x48\x17\x76\xe0\xdd\x2e\x89\x29\x9e\xdd\x79\x37\x70\x45\x0f\x8f\xea\xad\x4a\xe8\x75\xcf\xf5\xeb\x07\xee\x79\x9f\x47\x62\x38\x39\xd9\x49\x7b\xd0\xc8\x58\xe7\x75\xcd\xdc\x28\x1f\x62\xe0\xa2\x2d\x5c\x34\x96\x32\x7a\x1a\x0e\x3a\x95\xd6\xca\xe9\x72\x4f\xfd\xab\x8f\x73\x02\x1c\x75\xae\x19\x9b\x4e\x06\x8e\x39\x70\xcc\xc6\x65\x18\x38\xe6\x6f\x93\x63\x6a\x5a\xd0\x9b\x5b\xea\xc6\xf7\xb9\xd6\x62\x66\x89\x4f\xaa\x87\x77\x44\xde\xd4\x5a\x35\x14\x06\xb5\xa3\x0b\x1d\xd1\xb4\x28\xcf\x35\x64\xbd\x72\x21\x59\x92\x8f\xa5\x42\x86\x89\x3c\x2a\xdf\xba\x85\xee\x17\x51\xf5\xa9\x24\x7f\x9b\xed\x5d\x67\x42\xb0\x68\xb6\xb7\x4f\x66\x7b\xdf\x1b\xf7\xb2\xd9\xde\xdf\x61\xde\x73\x1a\xdc\x8c\x20\x01\x4d\xca\xe7\x3c\xaa\x5d\x08\xc9\xd3\xb8\xd4\x02\x33\xbd\xe2\xff\xe8\xe5\xc3\x05\x8d\x89\xe2\xff\x80\xeb\x76\xa6\xd0\xed\xae\x70\x82\x26\x54\x29\xbe\x14\x6b\x7d\x98\x1a\x93\xda\x9a\xfc\x08\x32\x1a\x93\x13\x07\x3d\x6f\xde\x9a\xce\x8c\xa7\xfb\xeb\xd7\x6f\xec\x0f\x6f\x77\xbd\xcf\x37\x58\x2a\x6a\xf3\x81\x45\x3e\x9e\x9c\x5c\xee\xe8\x6e\x16\x72\x45\xe7\x91\x57\x0e\x2a\x8d\x01\xde\xec\xb6\x31\xe8\x38\x92\xac\xf0\x39\xd7\x42\x21\x6e\x31\xbd\x7d\x10\x75\x85\x3b\xb9\x0f\x75\x86\x0e\x59\xfc\xed\x28\x85\x19\x40\xde\x7d\x98\x9e\xde\x35\x38\x84\x95\x49\xed\x09\x7e\x40\x18\x34\xd7\x84\x35\x91\x59\x9e\xd1\x12\xe0\x98\x4c\x89\x3e\xab\x3f\xff\xf8\xff\x2a\x40\x24\x91\x1b\xbf\xdd\xf1\xdd\x87\xe9\x98\xfc\xcd\x2c\xf8\x21\x59\xd0\x48\xb1\xbf\x7b\xea\x65\xb5\xce\x80\xc7\xdc\x57\x1b\xbe\x02\xb5\xa6\xe7\x68\xfd\x31\xd4\xdb\x96\x57\x07\x07\xe0\xdc\xc3\xfe\x68\x3a\xd9\xbc\x86\x63\x77\x4b\x93\xd0\x8b\xef\xd2\x71\xd4\xdc\x21\x35\xec\xc5\xed\x15\x16\x0f\xa9\xc9\x7e\xf9\x95\x77\x09\x31\xac\x00\xd9\xb4\x3e\x41\x1a\xa8\xb1\x07\x11\x1d\x06\x4a\x26\x9a\x76\x60\x0d\x23\xb0\x0b\x4d\xfb\x62\x13\x6a\x5c\x92\x14\x08\x92\x9e\x93\x4b\xea\xfc\x7d\x82\xf7\x6c\xc8\x22\xbe\x61\x49\x91\x1d\x5d\xff\x94\x57\x0c\x51\x95\x2c\x89\xde\x3d\x4a\xba\x56\x99\x40\x3a\x9f\xc6\x22\xc3\xb5\x53\x3c\x99\x4e\xa6\xf0\x81\xa9\xc8\x6f\x15\x83\xc6\x27\x7a\xb6\x87\x09\x2a\x6c\x05\x20\xa8\x2b\x36\xc2\x5a\x57\xb3\xbd\x31\x21\x47\x4d\xf3\x5d\x9b\xaa\xff\x4e\x0f\x26\xe1\x85\x42\xea\x07\x23\x17\x38\xd4\x6b\xab\x4f\x08\xec\x91\xc6\x1a\x8f\x0e\xbe\xca\x51\x3e\x35\xdc\x11\x72\xe4\xc0\x50\x86\xbb\xa9\x77\x00\xd0\x6e\xf4\x2a\x80\xb7\x36\xd7\x87\x0b\x03\xfa\xdd\xea\xd3\xd1\xd4\x27\x2d\x6a\x17\x98\x1a\x61\x56\x0c\xb5\x59\x6e\x75\xe7\xc2\xae\x40\x11\xa4\xd0\x5a\xef\xe5\x05\x28\x80\x1d\xbe\xf9\x52\x43\x51\xe0\xba\x75\xeb\xb4\x73\x3a\xff\xe5\x55\xef\xf8\x8f\x3d\xbc\x95\x8f\xad\x80\x82\xf6\xb7\x2c\x29\x84\x13\xcf\x82\xb7\x6f\xf5\x49\x65\x8e\xfb\x36\x41\x33\xd6\xa8\x36\x88\xc2\x64\x46\xb3\xbd\x73\xb6\x81\x7c\x8e\x58\x35\xb9\x3c\x98\xaf\x77\xdd\x83\xe1\x2e\xbe\x8a\x20\xad\x6e\xdb\x34\x1d\xc9\x2c\x5d\x4a\x2e\x96\xff\x29\x24\xb5\x95\xea\x08\x9a\x5e\xf4\xc4\x07\xe6\x64\x72\x10\x58\x50\x55\x4b\x17\x21\xf5\x91\x53\xf7\x80\xb4\x06\xbd\x18\x91\x58\xdf\x3c\x5c\x02\x50\xa3\xae\x32\x4b\x15\x0f\x59\x7e\xc5\xcc\x85\x54\x5f\xa7\x90\x15\x5a\xfd\x4f\xc6\x12\x1a\x7a\x53\x7c\xb7\xa3\x43\x86\xbd\x93\xb9\x82\x2c\xad\xac\xd8\x6e\xb2\x88\xe8\xed\x62\xa2\x32\xf2\xc0\x0a\x20\x35\xf3\x2d\x26\x0d\xf1\xc1\x9c\x67\x44\xdf\x6d\x33\x6f\xee\x22\x2a\x1e\x78\xb4\xbf\xfb\xeb\xd9\xd1\xf9\x17\x3b\xdb\x30\x9a\x57\x3a\xce\x01\xb8\xf7\xe1\x6e\x54\x9c\xd5\x5d\x4b\x06\xfd\x58\x49\x3f\x96\x30\x3d\x51\x3c\x6c\x4f\xa2\x26\xbb\x2c\x06\xa8\x6b\xcb\x9c\x97\x3e\xa5\x99\x0b\x5c\x5d\x77\x96\x94\x7b\x1e\x54\x68\x83\x0a\xad\x71\x19\x06\x15\xda\x6f\x53\x85\xe6\x10\x88\xde\x9a\xb4\x1a\xc5\x29\x9e\xdd\xf5\x6b\x48\x64\x58\x08\xb9\xc4\xba\x78\xed\xa5\xdb\xb8\x5c\xd7\x11\x7f\xa2\x22\x3c\x28\xa9\x8f\xfc\x4a\x0f\xf0\xf5\xa8\xa9\x4c\xd8\x5d\x10\x65\xa1\x29\x33\x26\xd8\xad\xeb\x6c\x39\x84\xfa\x7c\x61\xce\x79\x93\xcd\x59\xe1\x1b\xae\x4a\xc2\xd5\x53\x30\xd2\xbf\x64\x73\x76\x5c\x8c\x77\xec\x8e\x57\xe5\xab\x6d\x6d\xeb\x6c\xb6\x75\x26\x55\xae\xdb\xd6\x78\x60\xc2\x03\x13\x1e\x98\xf0\xbf\x1d\x13\x6e\xa3\x26\x75\x9e\x5c\xca\x44\x5b\x45\xb0\x53\x73\xca\x21\x22\xe5\x9b\x69\x7f\xd6\xec\x74\xd1\xe7\x12\x6c\x47\x43\xb5\x30\xe6\x06\xb6\x23\x9b\xac\xd6\x1b\x1e\x66\x34\xea\x28\x29\xe4\x0c\xbb\xb3\x0a\xbb\xab\x4a\x50\x43\x6d\xa0\x06\x90\xcb\x85\x82\x0a\xb8\x1a\x2b\xf3\x9c\x1a\x8d\xf8\x7c\x6b\xaf\xea\xfb\xb6\xde\xb2\xe0\xa8\x7b\xc1\xeb\x77\x43\x0f\x3d\x6a\x3c\x69\x32\x25\x02\x1e\xb1\x64\xca\x12\x2e\x9b\x43\x89\xaa\xc4\xe1\xb2\xf2\xa1\xf5\x8f\x8d\xf1\xaf\x54\xea\x7f\x2d\x64\xb2\xce\x87\xe0\x8d\x89\x1e\xec\x03\x59\xec\x9d\x7c\x0b\xfa\x54\x80\xac\xe0\xda\x65\xbe\x59\xfb\x8c\x32\xf6\xe9\x0e\x3f\xea\x0a\x3e\x6a\xc8\x16\x51\xc3\xc0\xb9\x0c\xdb\x57\x5a\xbf\xff\x75\x2c\xf2\xca\x49\xe0\xd1\x77\x81\xdd\xa4\x1f\x85\xfd\x59\x6d\x45\x60\x35\xe9\xc0\x21\x21\x05\x8d\x53\x26\xb5\x65\x75\x4f\xac\x95\xf1\xbe\x33\xed\x39\x5b\x62\xbc\xc7\x8f\x13\x46\x1b\xd2\x78\x35\xcc\xf9\xf9\x51\xfe\x59\xb1\xb2\x59\x2a\xd7\x34\xe5\x41\x91\xa1\x5e\x76\x96\x42\x2c\x63\x05\xae\x3a\x6c\xc3\x92\xad\xb1\x40\x14\x9b\xd9\xe2\xa4\x6d\x4b\x93\xde\xb5\xb9\xfa\x54\xe6\x8a\x18\xbd\xf9\x90\xd0\x80\xed\x78\xde\xcf\xca\xdf\x55\x8e\x3b\xe8\xd7\x4d\xe6\xa6\x62\xcf\xb7\xcd\x09\x14\xc7\x58\x6f\x10\x0a\x9a\x50\xd7\xd4\x04\x09\x83\xe6\x8c\x09\x00\x57\xf3\xf0\x2b\xdc\x27\xaf\xba\xba\x34\xf6\xe0\xc9\x94\x2c\x69\x32\xa7\x4b\x0d\x4e\x14\x31\xa8\x27\xe6\x22\xfe\xf5\x43\xc9\xc8\x7f\x22\xe9\x24\x70\xfe\xa1\x7e\x4a\xdb\xf1\x2b\xcf\xf6\x2a\xff\xc4\x75\x63\x31\x85\x28\x24\x09\x64\xbc\xed\x59\x14\x10\x28\x6a\x91\x08\xdc\x49\xca\xa3\xdc\x59\x1a\x82\xfa\xb4\x5c\x02\x33\x76\xf4\xe1\x13\x26\xa9\x5f\x0b\xa7\x30\x39\x79\x7e\x1d\xbc\xe2\x3f\x6f\x57\x77\x2d\x75\xb9\xa0\x4c\x9f\x25\x2f\x17\x93\x69\x5b\xfa\x8e\x6a\xbd\xb6\x46\xaf\xb3\x35\x86\x3d\xf0\x4b\xec\x01\x9b\x69\xad\x43\x8a\x2a\xdb\x60\x2b\xdf\xb4\xed\x03\xdb\x7f\xd3\x1c\x58\x45\x12\x1b\x76\xc2\x2f\xb3\x13\xda\xde\xb2\x34\x08\xbf\xfb\xea\x58\xae\x63\x2c\x5f\xda\x88\xb1\x32\xa6\x4e\xbd\x9f\x55\xf0\x35\x67\xe9\xad\x16\x87\xf4\x18\x9b\xaf\xfc\xd7\x5c\xdb\x41\xae\x0f\x29\xa4\x26\x77\x2f\xb8\x42\xd0\x2b\x2f\xb2\xda\x90\xb4\x62\x34\x4a\x57\xc7\x2b\xe6\x0f\xc8\x2c\x4f\xed\xcf\x4e\xe3\x7c\xf7\xcb\xc4\x82\xa2\xf2\x92\x67\x5a\x40\xc6\x9e\xbd\x53\xc3\x0e\x7a\x71\xf8\x36\xd8\x23\xb9\xbc\xd2\x62\x38\x4f\xb7\x57\x41\xc2\x58\x55\x09\x59\x9f\xc0\x59\xf5\x0b\xbb\x2c\x91\x5c\x12\x65\xde\x10\x3a\x97\x1b\x66\x12\xf2\x45\x72\xe9\x95\x61\x20\x45\x24\x13\xb9\x5b\x92\x4a\x43\x99\xa5\xee\x62\x4c\xc4\x42\xee\x3a\xa3\x38\x91\x6b\x2d\x49\x65\xea\x23\x4b\x13\x1e\xa8\x69\x1f\xa7\xc9\xa9\xef\x2b\x3b\xb3\xeb\xe3\x29\xa4\x8b\x2b\x6a\x62\x16\xcd\x7d\x13\x5b\x63\x17\x68\x45\x48\xf2\xca\x99\x5c\x60\xcd\xcc\x8e\x1d\xf8\x87\x57\x7f\xf8\xba\x79\xd2\x5e\xdf\xd9\x66\xdf\x81\x26\x45\x4f\xa3\x26\xad\xb0\x6b\x34\xa0\xaa\x55\x97\x06\x5f\x3b\x3a\x4d\xb3\xae\xfa\x57\x8f\x0a\xda\xdc\x8c\x1c\xc5\x19\x99\xa4\xcf\x21\x9d\xf2\x22\x8b\xd0\x1a\x16\xae\x41\x2d\x07\xb5\x6a\xe1\x1a\x03\xf5\xe3\xa0\x0c\x18\xa1\x41\x9a\xd1\x9a\x47\x0a\xf6\x88\x6b\x75\x4b\xf3\xfc\x76\x36\x3d\xa4\x71\x33\x5c\xcb\x10\xdd\xbe\xe7\x5a\x0e\xdd\xf0\x44\x82\x03\x34\xd9\xd0\x84\xc3\x41\xac\xc1\x8b\x3e\x78\x37\xd9\x9c\x8d\x5c\xcd\x5f\x9c\xc8\x80\xa9\xea\x35\xbf\x2d\xbb\x78\x31\xda\x77\xd4\xab\xf7\xdb\x31\x26\xac\x89\x74\x97\x96\xed\xb4\x3c\x6a\x35\xa1\xa6\x07\x01\x0d\xae\x85\x5e\x24\x00\xb2\xb9\x58\x44\x19\xa6\xd7\x04\x15\x78\x26\x04\x17\x4b\xdc\x20\x8d\xae\x30\x7e\xbe\x91\xb8\xdf\x76\x9a\x2c\xdd\xc6\x95\x89\x2d\x16\xfa\x9e\xbb\x61\xa5\x5d\xc1\x95\x1d\xc0\x37\x41\xde\xb4\xd0\x32\xdc\x37\xa9\x0c\xd7\x2c\x59\x5a\x4d\xff\xd1\x74\x52\x28\xfa\x35\x3b\xf6\x92\x3a\xd1\xb0\xcb\x3c\x78\xe9\x10\x41\xda\x55\xc6\x35\xe4\x3c\xa6\xda\x98\x74\xa9\x8e\x7b\x80\x4f\x7a\x16\x9a\x7f\x80\x1a\xb9\x4d\x5e\x7a\x4c\x59\xb1\xe7\x6c\xc9\x6e\x32\x63\x6d\xf2\xfd\xe5\xc6\x2e\x15\x5c\x59\xac\xec\x25\x3b\x76\x75\xd9\x2e\x5a\x92\x47\x55\xd3\xb5\x68\xa1\xc9\x53\x69\xa2\xc9\x23\x68\x18\x48\xff\x7d\xd2\x53\x2b\x5d\x9b\xee\x0e\x9a\xe9\xae\x15\x75\x2a\x03\x3f\x8a\x76\x7a\x87\xd9\x93\x5d\xb4\xd4\x35\x1c\xf4\xd3\x54\x77\x77\x0a\xa2\xc9\xa3\x6b\xab\x49\xef\xa3\x40\x7a\x1e\x07\xb2\x93\xe6\x9a\xdc\x5f\x7b\xdd\x35\xb1\xe2\x18\xed\xa8\xc1\xee\xea\xd8\x23\x28\x77\x6a\xb1\xbb\xfa\xec\x50\x72\x93\x1d\x96\x69\x20\xea\x9d\x28\xea\xa5\x1b\xaf\x23\xe7\xf1\xf4\xe3\xe4\x51\x75\xe4\xfd\xa7\xde\xe7\x00\xb7\xea\xcb\x6b\x48\x79\x4c\x9d\x39\xf9\xb2\x5c\x6d\x38\x28\x8f\xb0\x5b\x7a\xa9\xdc\xc9\x93\xa9\xdd\xc9\x13\xa9\xde\xc9\xb0\x8d\xbe\xe8\x36\xea\xa9\xb5\x27\x4f\xa9\xb9\x27\x4f\xa5\xbd\x27\xc3\x66\xfa\x82\x9b\xa9\xab\x45\x6f\xe5\x3f\x79\x2a\x03\x00\x79\x5c\x23\x40\x1f\xe4\x75\x18\x03\xea\x53\x7d\x24\x83\x00\xd9\xd1\x28\xd0\x67\x2e\x7d\x8c\x03\xf5\x09\xed\x6c\x20\x68\x9a\x4e\x24\x97\xea\x01\x46\x82\x3e\x33\xec\x6b\x2c\xa8\xcf\xf2\x51\x0d\x06\xe4\xa1\x46\x83\xa6\x4e\x9b\x6c\x09\xa4\x3b\xa1\x58\x4b\x61\x9d\x16\xbb\x02\x69\xa5\x0b\x43\xf8\x85\x13\x7e\x61\x62\x8b\x41\x6a\xe7\x4f\x92\x22\xd3\x54\xfc\xc6\x9b\x03\xbe\x28\x22\x2c\x4a\x2f\xeb\x21\x15\x15\xe8\xcc\x2a\xe4\x41\x14\xee\x6b\xe8\xda\x44\x4d\xe4\x9a\x5a\x60\xfe\x43\xe0\xc4\x10\x38\x31\x04\x4e\xfc\xb6\x02\x27\xda\x2c\x97\x50\xae\xb7\x4f\x8a\x26\x28\x22\xa6\xb7\x3f\x16\xdc\xc5\x0f\x4d\x85\x3d\x82\x15\xc8\xf4\x1f\xb9\xb1\xce\xc7\xa1\xf2\x72\xbd\x98\x9d\xa1\x5a\x4c\x18\x2a\x15\x93\x40\x26\x09\x53\xb1\xa6\xe7\x62\x49\x8c\x9c\x67\x8b\xbe\xee\x14\x51\x58\xa9\x42\x7b\x44\x2e\x35\x80\x4c\x04\x34\x56\x19\x9c\xdb\x02\x22\x1f\x28\x0d\x9a\x65\x6a\x14\x94\xe4\x9d\x4c\x57\x95\xfa\x67\xb5\x2a\xc7\xba\xa3\x6a\x9d\xb7\x06\x81\x21\xaf\x65\x68\xea\xad\x8d\x88\x62\x31\x4d\xf4\x26\x25\x32\x4b\x09\x75\x23\x37\xb1\x09\xe4\x2b\xd3\x50\x98\x0a\xcc\x0d\x00\x8b\xd0\xae\x97\x8b\x78\x2e\x96\x58\xd5\x15\xcb\xc7\x41\xdd\xc9\x0d\xab\x62\x62\x45\x9b\x7a\x25\x82\x2d\x01\x38\x43\x78\xf7\x49\x9c\xb0\x05\xbf\x63\x21\xde\x7a\xa0\xb6\x6d\xfa\xf3\x8f\x3f\x8d\xc9\x51\x14\x99\xb4\xe2\x6e\xdf\xfe\x7e\x4d\xf6\x1d\x8a\xdb\x29\xaf\x64\x4a\x53\xae\xc0\xba\x8f\xa9\x2c\xcc\x44\x52\x89\x7d\x8e\xc9\x11\xb0\xb2\x7a\x5e\x57\x83\x5b\xd8\x9a\x54\xd8\xed\x69\xb4\x6b\x66\xca\x1a\x41\x30\x19\xfd\x87\x99\x0d\x16\x26\x6e\xac\xba\x8c\x58\x05\xdc\xfb\x41\xd4\x03\xc0\xa8\x39\x88\xfe\x5c\x41\x9d\x97\x5b\xdc\x6e\x8d\xf2\x60\xf7\xd5\xcf\xc9\x5c\xd2\xd8\x4b\xe9\xa8\x9c\x38\x49\x89\x4a\xb6\xf7\xca\xd6\x00\x51\x18\x8e\x65\xcb\x9d\xb3\x94\x39\x85\x68\x4a\x98\xfa\x4e\x71\x4f\x64\x10\xd7\xd6\xdc\x92\x16\xa5\x61\x66\xb3\xbd\xf3\xea\xc7\xc0\xc1\x04\x91\x31\xba\x67\x98\x04\x37\x4d\xc5\x12\x8b\x27\x47\x0c\x2d\xca\x94\xb3\x3b\xcd\xc0\x14\x50\x07\x28\x42\x5b\x2a\x6e\x6c\x73\x34\x75\xa9\xb7\x81\xc7\xbd\xd0\x5b\x08\xac\x2e\x48\xa7\xd2\x97\x8e\xed\x2a\x4f\x50\x65\xcb\x2f\x36\xa7\x0a\xab\xa0\x4c\xe5\xf9\xc5\x60\x2d\x35\xfb\x83\x24\x3a\xb0\x91\x6b\xb8\x69\xef\x14\x69\xa4\x04\x15\x7e\x8e\x02\x7d\xb9\x43\xa1\x2c\xb4\xfe\x35\x8a\xae\xf1\x28\x60\x5e\x96\xf6\x4e\x21\x8f\x51\x5e\xf1\xb7\x98\x32\xee\xb5\x24\x87\x9b\xcc\xb7\x08\xb4\x1d\xb9\x03\xa9\x76\xda\x16\x5f\x36\x8c\x43\xc3\x85\x54\xf0\xbd\x4c\xca\x12\xf4\x7e\x23\x07\xb0\x0f\x16\x87\xf6\x6c\xa9\x75\x1c\xf1\xa2\xf2\x38\x23\xee\x66\x8b\xf8\x9a\x77\x2e\x18\xb8\x44\x81\x29\x4c\x2c\x1b\x71\xc2\x1d\xfc\xf6\x72\x95\x80\x92\xce\xfa\x93\xd2\x3c\x1b\xa7\xff\x7c\x19\xc9\x39\x8d\x5e\xbc\xec\xd0\x3e\x7d\x19\x04\x7c\x00\x60\x0c\x88\xfa\xee\x2c\x93\x92\x91\x1c\xa6\xd1\xde\xa9\x9e\x63\xa9\x9b\x62\xa1\xbb\xd6\xb2\x03\x5a\x77\x8a\xe8\x9d\x06\x17\x04\xcf\xa2\x51\x48\x1f\x47\xa8\x3f\x57\x54\xf1\x14\x47\xb6\x81\x71\xe4\x63\xf7\xd2\xfd\x09\xe6\xad\xcb\x5c\x3c\x65\x5f\x0b\x96\xaa\x66\xc2\xa8\x85\x79\xa8\x98\xa1\xba\x6d\xc9\x96\x05\xc2\x12\x16\xf5\x6b\xfd\x74\x31\x27\x7d\x1d\xd8\x2e\xd3\xc5\x52\xee\x3e\x2d\x39\x88\xad\x75\x45\x5c\xf2\x0d\x13\x26\x55\x5e\x7b\xd8\x5e\xb3\x14\xe9\x8c\xdb\xd3\x44\xda\x92\xe5\xb5\x78\x84\x4c\xcf\x77\x5b\x13\xfc\xc0\x2a\xa4\x2a\xc2\x97\x9d\xb1\x6e\xd2\xc1\x5e\xf4\x3a\xfe\xea\x70\x31\x6d\x28\x1c\x5e\x3c\x55\x64\x60\x15\xf1\x76\x6c\x40\x9b\x3e\xe8\x20\x57\x5c\x0b\xde\x32\xaf\x1c\x6f\x2b\x46\x2b\xb2\xa2\x1b\x66\xcb\x91\x83\xff\xc3\x16\xff\xea\x20\xb4\x89\x53\x7d\x9f\xf0\xd4\x2a\xdf\x94\xd5\x1d\x42\xef\x46\xa2\x32\x84\x5c\x5f\x4f\x3a\xa9\x22\xf0\xb0\x14\x53\x99\x5d\x1f\x4f\x6d\x32\xcd\x4f\x27\xd3\xc6\x4c\x8d\xf8\xf4\x59\xd5\xf6\xea\xe1\xf8\xf4\xac\x21\x5e\x6e\xdc\xc7\x43\xa6\x4f\x3d\x71\x7c\xee\x53\x55\xdc\x3e\x7d\x37\xe4\xee\xc2\xe5\x79\xf1\x51\xc7\xb6\xec\x27\x5f\x99\x9d\x49\xae\x98\xc3\x5c\x90\x0a\xeb\x0b\x86\xca\xe6\x69\xc4\xb4\xac\x8c\xd7\x2d\x33\x56\x7b\x9f\xb9\xb4\xd4\xba\x55\xfa\xad\x59\x53\xad\xff\x06\xf4\xcc\xf6\xf2\x13\xdb\xc5\x56\xba\x99\x6d\x0f\xb6\xb2\x82\xfb\xb2\xd1\x3a\xbd\x70\x2e\x21\x2f\x3b\xb6\x61\xae\xe5\x47\x51\x53\xd9\xfc\xb5\xe9\x8a\x29\x46\x12\x2a\x96\x4c\x1d\x58\xa5\x1d\xe4\xb9\x6d\x4d\xaf\x8a\x4f\x29\xed\x92\x39\x3a\x60\x14\x42\x2c\x2b\x8b\x01\xa3\x01\x33\xc3\x74\xc8\xca\x0b\x5c\x03\x14\xe0\xfa\x52\xb0\x4e\x0a\x80\x4d\x77\xa2\x60\x1d\x73\x2f\xc8\x5b\x99\x82\xfd\xfc\xe3\x4f\xd7\xc7\xd3\x9f\x7f\xfc\x49\x23\xe2\xe7\x1f\x7f\xfa\x74\xa2\xff\xe8\x90\x77\x06\x3a\x06\x4f\x2f\x3a\xa6\xee\x71\x43\xee\xbe\x18\xb7\xea\xf8\x8a\xc7\x7b\x31\x26\x2f\x14\x63\x56\x39\x06\x64\x8c\xae\xe3\x88\x11\xb5\x15\x29\xbd\xf3\xe5\xd7\x74\x9f\xd9\xac\xf5\x5e\x6d\xe4\xc7\xa6\x7b\x73\x7b\xdf\x56\x27\xe6\x5c\xab\x65\x52\xbf\x2e\xeb\xa3\x76\x2e\x53\x06\x63\xeb\xdd\xd3\x81\x04\x13\xf8\x61\xcd\x05\x1d\x1c\x01\xd1\xe3\x70\x92\xf6\xde\xe7\x2c\x92\xb7\x2f\xf7\xcb\x20\x3b\xc8\x46\xac\x9a\x82\xcf\xd6\xec\xdc\x81\x07\x54\x84\x81\x82\xf3\x7a\xc5\x48\x7a\x2b\x61\xaf\x41\xf6\x1c\xfb\x0e\x89\x83\x66\x40\xdb\x22\x25\x75\xc7\xda\x5d\x08\x3b\x7b\xeb\x9d\x54\x28\x5e\x99\x73\x43\xc2\xd9\xa0\x5a\xc1\xb4\xef\xe6\x07\xb7\x2b\x19\x99\x45\x3a\x84\x25\x9a\xcd\x0a\x66\xfc\x27\x4d\x5b\x7e\xb7\xa2\xea\xc5\x7a\xfb\x19\xbc\x06\x5f\x6a\x9a\x63\xc8\x7b\xd7\x61\x36\xf9\xd5\xad\xfe\x01\xb6\x18\x42\x87\x2e\x1d\x45\x44\x49\xa8\x47\xed\xb9\xdb\xa0\xbf\x50\x42\xe2\x5a\xa0\xcf\x68\x4b\x9a\xb3\x48\x03\x6b\xe1\x04\xe5\xa9\x99\x4e\xef\x4d\x01\xd3\x6d\x9a\x6d\x7d\x42\x1a\x82\xa6\x12\x11\xc5\xd3\x3e\xd7\x7c\x3a\xed\x53\xe9\x3a\xdc\x02\x76\x1c\x46\xf8\xa0\x08\x65\xd4\x07\x11\x90\x54\x93\xf4\x1d\xac\xc3\xf9\x3c\xba\x41\x17\x52\x8c\x8c\xf7\x8d\xb1\x80\x91\xdb\x15\x4b\x98\xd1\x85\x2c\x64\xb2\x66\xae\x62\x02\x9c\x7d\xb0\xf7\x1e\x8a\xba\x3a\x62\x9c\x3c\x31\x8f\x70\x71\x2f\x3b\x09\xee\x20\x6f\x95\xfd\x04\xbf\x9c\xdc\x55\x21\xc7\xed\x7d\x7a\xd4\x9c\x94\xc4\x32\xb4\xd1\x5c\x68\xf4\xc8\x49\x73\x0f\x8f\xc6\xdc\xa7\xb1\x75\xb7\xf5\x0e\x5f\x70\x4d\xf0\xcd\x4f\x3d\xb4\xe9\xe1\xe8\x26\xf7\x41\x79\x77\x97\x4d\xda\x65\x0f\xda\x7b\x61\x9b\x38\x5e\xa4\xb7\x2b\xa9\x50\x15\xa9\xa7\x6f\xc4\x3e\x2d\xf4\x76\xc6\x05\xf4\x11\xea\xc8\x4e\xf1\x16\x3d\x25\x24\xd2\x57\x4a\x22\xf5\xf3\xd5\x29\x27\xfd\xfb\xae\x74\xe9\x7e\x54\x68\xda\x90\xea\xe7\xc9\xe3\x1b\x8a\x34\x95\x9f\xc2\xf4\x00\x16\x85\x2b\xd7\x92\x50\xdc\x3f\x4c\x46\x77\xb6\xd5\xbf\x77\x77\x7a\x74\x7e\xf2\xbc\x47\x38\xca\x6e\x5a\xac\xae\xe0\x1d\x83\xc5\x9d\xee\xc4\x86\x4a\xb7\xd1\x8b\x7e\xd2\x36\x7e\x89\x26\xe1\x9c\x5e\x3a\xa9\x0d\xed\x40\x7a\x51\x9c\x54\xf9\x3d\xac\x31\xad\xc2\x76\x75\x7b\xf5\x95\xb6\x3d\x26\x2c\x8b\xbf\x17\xea\x65\x55\xec\x46\x07\x1a\x0d\x4d\x97\x7e\xec\x00\xa0\x82\x02\xd4\x16\x92\xe7\x0a\x6e\xb4\xe6\x96\x6c\xf1\x1d\xe4\x8e\x20\x39\x32\xba\x70\x51\xb6\x66\xe9\x93\x63\x37\xeb\xbe\x2b\xb2\xef\xd7\xad\x08\x1d\x68\x3e\x67\x5a\xec\xb5\x0a\x5e\x99\x54\x79\x37\x82\x8e\xea\x13\x8d\x08\xab\xfd\xec\xb0\x50\xea\xfd\xa4\x17\xd0\x9d\x23\xea\x8a\x72\x2c\x48\x61\x5d\x07\x8c\x2b\x47\xbb\xc8\xb2\x13\xdb\xdc\x9d\x6b\xe6\x60\x16\xe1\xbf\x68\x86\xef\x1f\x19\x44\xec\xdc\x1c\xbb\xfb\x23\x11\x81\x7e\x51\xce\x0d\x53\xc3\x58\xe7\xfa\xfc\xf0\x77\x7f\x62\xd2\xfa\x83\x54\xd6\xcc\x10\x4e\x72\xc4\x16\xa9\x2d\x72\x97\xf3\x10\x38\x3d\x3d\x14\x33\xc4\x3d\x88\x50\x61\x43\x5f\xcb\x9f\xab\x02\xb2\x2f\x4a\x41\xbb\xdb\xac\xd2\xd4\x57\x77\x0c\x9f\x72\xf8\xec\xf5\xf5\xb4\xb0\xd1\x37\x3a\x2e\xe8\x5d\xa2\x9b\x36\x83\x9e\x7b\x98\x3f\xc8\x67\x61\xcd\xd2\x95\x0c\x77\xe0\x0c\x1f\xf1\x83\xc7\x95\xda\x71\xca\x48\xd4\x71\xde\x8e\x73\x9c\xee\x13\x8b\xf6\xb0\xce\xdc\x8f\x56\xae\x63\x21\xf6\x62\xa1\x7d\xc1\xc6\xcb\x31\xf9\x70\x7a\xbd\x4f\xa6\x9f\xae\xf7\x09\x4b\x83\xf1\x4b\xf2\x31\x8b\x52\x1e\x77\xd9\x36\x0c\x8a\x80\xef\x5f\x5c\x3e\xd7\xd7\xb0\x25\xc4\x07\xfe\xba\x6c\x55\x31\x4d\x57\x3b\xac\xe3\xf3\xa9\x6e\xff\x14\xcb\xd8\xb5\x82\xdd\x14\xc5\x5d\x41\x00\x73\x9c\x2f\x15\x4e\xd3\xae\x45\xdf\xc5\x20\x84\x8d\x97\x87\x64\x44\xd8\x1d\x0d\xd2\x43\x72\xb0\x90\x92\x8c\x8c\x5b\xd8\x21\x39\x98\xd3\x84\x9c\x5f\x5c\x9f\x1e\xa2\xcb\x19\x13\x69\xb2\x25\xeb\x2e\xf1\xfc\xe2\xfc\xec\xbf\x0d\xe5\xdc\x12\xc6\x41\xf5\x42\xc9\x6c\x0f\x06\x41\xfb\x97\xfe\x13\x47\x99\xed\x59\x87\xb0\xeb\xae\xe9\x6f\x68\xc4\x43\x9a\x2b\xf9\x20\xd4\x02\x6b\x58\xa5\xbe\xa2\x55\xc5\xd3\x67\xcf\x55\x22\x42\xae\xaf\xa7\x1a\xc3\x0e\x03\xa0\x02\x11\xaf\x11\xdd\x9f\x57\x4d\x52\xf0\x88\x9d\x33\x8b\x08\xa3\x3f\x5c\xc8\x64\x7d\x68\xd1\x3e\xcb\x5e\xbd\xfa\x2a\xd0\x1d\xc3\xbf\xd8\xa1\xc9\x93\xd3\x4b\xe1\x85\x5b\x0d\xa0\x82\xee\x34\xc1\x48\xf2\x25\x2c\xba\x1e\x19\x7c\x3f\x68\x04\xec\xa3\xc3\xbd\x64\x87\x54\x03\x88\x80\xc7\xbd\x46\x9a\xa9\x3f\x66\xa7\x7d\x73\x01\xf4\x20\x48\xdd\x5d\xf1\x60\xdd\x93\x67\x4e\x8e\x3f\x4e\xfb\x7a\x7d\x00\x31\x6a\x86\xdd\xa5\x52\x4e\xdd\x31\x0d\xad\x09\x2f\xc4\xea\x69\x30\xa4\xb9\x60\x98\xaa\x91\x2d\xf7\x2b\xf4\xc9\xaf\xcb\xb4\x7c\x51\xb6\x49\xe5\xf5\xeb\x72\x4b\xb9\x1e\xa7\x4d\xb4\x05\x1b\xba\x6e\xb4\x79\xdb\x62\x46\xef\xb5\x13\x83\xf6\x9c\x26\x55\x3e\x0f\x92\x89\x14\x2e\x96\x00\x29\x01\x56\x71\xdc\xe1\xb2\x06\x61\x4a\x1a\xc1\xe8\x87\x0f\x6e\xa9\x50\x21\xd3\xc5\x95\xb1\x58\x82\x39\x32\x65\xc1\x4a\xf0\xa0\x9e\x6f\xab\xfc\x80\x5a\x14\xd5\xfe\x7c\x1d\x4b\x27\x07\xf2\x8d\x16\xca\xa3\xe7\x8a\xf0\x38\xc5\xc8\xb6\x05\x4f\xd8\x2d\x8d\xa2\x0e\x50\x91\x5a\x18\xa5\x6c\xa6\xd0\x59\x8a\x89\x85\xc4\x08\x01\xe3\x96\xd7\x7d\x34\x3a\x6d\x77\xd0\xec\xe1\x8b\xa1\xbb\x19\xa3\xff\x18\xbb\x03\x83\x55\x97\xe9\x0b\xd7\x40\x2e\xc8\xb7\xe8\xd7\x0d\x33\x84\xbe\x4e\x83\x95\x24\x97\xc8\xb4\x4d\x11\xba\x98\x8b\xa5\x6a\xb7\x7d\xf5\x9a\x6f\x0f\x62\x10\xfb\x03\x6c\x1a\x10\x32\x99\xda\x40\x9b\x07\x3b\x83\x95\x94\x5b\x28\x8f\xbb\x58\x9e\x5a\x8b\x58\x23\x16\x7a\x60\xa0\x21\x54\xa2\x61\x72\x1f\x4d\x6b\xc7\x95\x37\xcf\xd2\x06\x11\x20\xc9\xba\xa8\xe1\xe4\x0b\x5b\x29\x4f\xee\x41\x44\x03\x94\x11\x58\xdc\xa6\x3d\xe3\x7b\xdf\x3c\x72\xc5\xd3\x97\x2d\x95\x2b\x49\x16\xf0\x98\x10\x1f\xb4\xd6\xdd\xb0\xad\xd9\xda\x31\xe5\x26\x4b\x5c\xfb\xf0\xfa\xca\x4a\xd8\x5d\x9a\xd0\x12\x4e\xe9\x5c\x66\x69\x0f\x46\xf2\x58\x37\x47\x21\x53\x7d\xfa\xfa\xed\x8c\x73\x6c\xdc\xe1\xc5\x03\x4d\xda\xbd\xe9\x06\x86\x31\x30\x8c\xdf\x36\xc3\x10\x32\xb5\x62\x55\x23\x5a\xda\xbd\x6d\x7a\xfa\xd9\xf4\xf3\xb0\xa9\x39\x81\x5a\x91\xaf\xc3\x0f\xd4\x34\x6b\x46\x58\xc7\x39\xee\xe1\xd2\x73\x3f\x67\x9e\xf8\xd7\x8a\xdc\xd9\x9e\x8b\xdb\x47\xe4\xfd\x35\xc3\x16\x68\x78\x5d\x49\xc0\xe2\x64\x0c\xbb\x9e\x27\x6d\x9a\x79\xe3\x91\x6b\xd6\xf9\x14\xc2\x8b\x2e\x21\x36\xce\x46\x7a\xa1\xda\xfc\xc5\x9c\x05\x34\x53\xc6\x0f\xae\xc3\x94\x90\x83\x18\xb0\x04\xfa\xc8\x7d\xe9\x5e\xa2\x2a\xfe\xa3\x09\xf9\x2a\x79\x06\x76\xb1\x58\x74\x19\x3c\x2c\xbc\xde\xf6\x0b\x9f\x37\xf8\xa7\x3e\xed\xee\xbf\x37\x6f\xed\x5f\x57\xc7\xd7\xf0\xa6\xb9\x73\xec\xe9\x8c\xa7\xcc\xb8\xd3\x51\x61\x37\x85\x35\xc4\x82\x4b\x21\x79\x3d\x7a\xf3\xcd\x37\x2d\x6a\xfe\xa7\xdb\xea\xe8\x7c\xd1\x8f\x03\x5f\xa1\xdb\x66\xbf\xe8\xb3\x96\x1a\xff\x76\xd4\x21\xf0\x6c\x08\x3c\xeb\x61\xea\x1c\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x6b\x9a\xf1\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\x99\x6f\x16\x03\x1d\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\xac\xfc\x0c\x81\x67\x43\xe0\x59\xfe\x0c\x81\x67\x43\xe0\xd9\x10\x78\xe6\xed\x74\x08\x3c\x73\x70\x31\x04\x9e\x0d\x81\x67\x43\xe0\x59\xf9\xf9\x92\x81\x67\x2d\x85\x13\x08\x19\x99\x0c\xbd\xbe\x77\x7d\xca\xac\x7b\xe5\x04\x73\x36\xee\x91\x98\xbb\x7c\xaa\x86\xcc\xdc\x43\x66\xee\x21\x33\xf7\x90\x99\xdb\x07\xde\x90\x99\x7b\x70\x90\x1a\x1c\xa4\x06\x07\xa9\xc1\x41\x6a\x70\x90\x1a\x1c\xa4\x8a\x67\x70\x90\x2a\x9e\xc1\x41\x6a\x70\x90\xfa\x55\x39\x16\x0c\x0e\x52\x83\x83\xd4\xe0\x20\x35\x38\x48\xd5\x1a\xff\xc6\xe8\xd8\xe0\x20\x35\x38\x48\x0d\x0e\x52\x83\x83\xd4\xe0\x20\x35\x38\x48\x0d\x0e\x52\xce\x33\x38\x48\x0d\x0e\x52\xf9\x33\x38\x48\x0d\x0e\x52\x83\x83\x94\xb7\xd3\xc1\x41\xca\xc1\xc5\xe0\x20\x35\x38\x48\x0d\x0e\x52\xe5\x67\xc8\xcc\x3d\x64\xe6\x1e\x32\x73\x97\x9e\x21\x33\xf7\x90\x99\x7b\xc8\xcc\xdd\x6b\x84\x21\x33\xf7\x90\x99\x7b\xc8\xcc\x3d\x24\x5a\x1d\x12\xad\x0e\x99\xb9\x87\xcc\xdc\x43\x66\xee\x66\xf8\x87\xcc\xdc\x03\xc3\x18\x18\xc6\x90\x99\x7b\xc8\xcc\x5d\x7a\x86\xcc\xdc\x43\x66\x6e\x78\x86\xcc\xdc\x0d\xcf\x90\x99\x7b\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\xd2\x33\x04\x9e\x0d\x81\x67\xbf\xaa\x80\x8d\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x5a\xe3\xdf\x18\x1d\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\xcc\x79\x86\xc0\xb3\x21\xf0\x2c\x7f\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\xf3\x76\x3a\x04\x9e\x39\xb8\x18\x02\xcf\x86\xc0\xb3\x21\xf0\xac\xfc\xfc\x7b\x67\xe6\x86\x74\xdb\x5d\x79\xb9\x2f\x74\xa3\x16\xfa\x5d\x5e\x74\x89\xad\xbd\x70\xa2\x7b\x1d\xe6\x44\x06\x05\x89\xee\x14\xac\x89\xe1\x18\x75\x26\xb9\xb6\x77\xc5\x97\xfa\x0a\x3a\xdb\x83\xfe\x66\x7b\xc0\x2e\x4d\x5b\x5f\xd7\x74\xa1\x2f\x50\x29\x08\x68\xd0\x41\x24\x6f\x59\x82\xd0\xa0\xbb\xa2\x03\x9c\x22\x72\xcd\xd3\x54\xd3\x5d\x6e\x23\x5d\x7c\x9d\x06\x52\x28\x8e\x09\xc9\x51\xaf\x37\xdb\xe3\x62\xc1\x05\x4f\xd9\x6c\x8f\x8c\x08\x38\xc9\x39\xd3\xb1\x54\xdd\xc0\x49\x22\xaa\xd2\x31\xc9\x67\xe6\x45\x89\x86\x95\x87\x4c\xa4\x3c\xa0\x91\x01\xb0\xda\x0f\x17\x84\x46\xf1\x8a\x8a\x6c\xcd\x12\xa7\x1d\xe4\x02\xf7\xf5\x6a\x68\xb9\x51\x43\xa1\x57\x88\xd7\x7c\x82\x7b\x43\x64\xeb\x79\x5d\x43\xd8\x22\x36\x56\x98\xfc\xb5\xab\x9e\xc1\x8d\xe2\x28\x69\x32\x65\xee\x9c\x3c\xb8\xc1\xff\x93\x99\x77\xff\x6b\x90\x2b\x57\x6e\x07\xb9\x26\x2c\xc3\x41\x4b\x2a\x2d\xcf\x6b\x56\x1b\x14\x70\x68\xd1\x21\x8a\xe4\x2d\x92\x02\xd4\x1c\xe5\xba\x14\x14\xec\xfe\x04\xaa\x05\x3c\xec\x9f\x23\x9e\xb2\x84\xea\x7b\xbd\xaf\xdf\xd9\x8c\x8c\x30\x28\x49\x6f\x93\x75\x4c\x13\xae\xa4\xd8\x27\x10\x99\x68\x75\x02\xa6\xc3\x85\x94\x64\x4e\x93\x9f\x7f\xfc\xa9\x18\xea\x77\x3b\x0d\x55\x8c\xa5\x79\x3a\xfb\x9f\x8c\x46\x7f\x44\x1f\x5a\x2b\xa3\xf2\x85\x11\x4e\xb9\x82\x36\x56\xcf\x9e\x0f\xe8\x3f\x91\x3f\x68\x28\xa8\xf5\xff\x9a\xdb\x7f\x04\xf0\x8f\xf1\x78\x4c\xfe\xe5\x8c\x9d\x26\x19\xb3\x41\x30\xb9\x1f\x29\xf6\xfe\x57\xe2\xf7\x5b\x37\xa6\x85\xc6\x41\x0a\xf8\x34\xd0\x5c\xb4\x02\xe4\x1b\x60\x47\x18\x61\x98\x26\xa0\x7c\xfd\x3b\x70\xae\xa8\x7a\x01\x3d\x7d\xd6\xec\xe3\x65\x31\xe8\x75\x3e\x26\x4d\x8b\x55\x70\x56\xe0\x77\xb0\x0d\xbd\x54\xdd\x74\x91\x2b\x1e\xe5\x02\xda\x82\xf6\x09\xfe\x9b\xbd\x7a\xf5\xe6\x2d\xfe\x3f\xbe\xc9\xbf\xb9\x5a\xc9\x24\x1d\x05\x3c\x09\x32\x9e\x82\xdc\x64\x3e\xf2\x0d\xf4\xcf\x7f\xb6\x7e\x2d\x61\xc4\x17\xd8\xe6\x65\xde\x28\xa6\x09\x33\x32\xf7\x32\x91\x59\xac\x65\xee\xd9\x2c\xa5\x51\xf4\xc2\x6b\x65\x32\x09\xe9\xd1\xd7\x24\xa7\x08\xb6\x37\xbb\x57\x69\x14\x39\x4a\x24\x38\x82\x67\xb8\x07\xf0\x96\xe4\xbf\x00\x51\x7d\x78\x91\x92\x58\x9f\x4b\x97\x28\xaa\x7d\x32\xda\x27\x9f\x01\x0f\x07\x63\x72\x05\x27\x8b\x98\x93\xd5\xd8\xe9\x5a\x26\x8c\xc4\x5a\xc0\x57\x8a\x6f\x18\x99\x63\xb4\xc0\xd6\xaa\x2e\x8d\x4a\x99\x30\x15\xd0\x98\x91\x60\x45\x13\x1a\xa4\x2c\x31\x60\x9f\xa2\xd3\xb5\x77\xeb\xbf\x00\xd2\xbe\xa6\x21\x1b\x65\x31\x6e\x0b\xf5\x32\x27\x38\x10\xa2\x86\xe4\xe1\x96\xcd\xf5\xcd\x80\x21\x81\x70\xd7\x3b\x64\x71\x24\xb7\x6b\x26\xbc\xe4\x12\xbf\x8e\x13\x19\x9a\x0d\x0a\x7d\xea\x33\xa4\x69\x4e\x22\x45\xca\x44\x98\x6f\x70\x1a\xdc\xe0\x9f\xff\xd2\x4d\x8b\x9e\xc9\xef\xfe\xd4\xb0\xef\x43\xb6\x31\x1d\xff\x8e\x54\xf6\xbe\x4f\x8a\x6e\x93\x94\xca\x4a\xbe\x16\xd3\x73\x8b\x86\xaf\x5d\x1f\xb1\x40\x5f\xd4\x82\xdc\xfb\x26\x65\x39\x11\xee\x4c\xa3\x28\xc0\x82\x1a\x52\x58\x20\xad\x0e\xc0\x67\x42\x6e\x9b\x23\x18\x11\x7a\xf0\x4a\xb0\x35\x70\x11\xf2\x00\xae\x94\xb7\x2b\x08\x78\x76\x05\x54\xd7\xc3\xca\xdc\x5e\xbc\xb4\x49\x9f\x36\x69\x4a\x6e\xec\x9b\xbf\xe6\x32\x5d\x8d\x09\x3a\x3d\x02\xaf\xb8\x8b\xb5\xf0\x91\x46\x5b\xe7\x8e\xf4\x02\xca\x85\x78\xbd\x59\x1d\xba\x29\x48\x90\x30\x13\x5f\xa1\xcc\x99\x96\x09\x11\x3c\x7a\xb9\x6f\x63\x24\x42\xb6\xa0\x59\x94\x2a\x82\xd3\xd2\xa8\x4b\xc2\x06\x51\x39\x95\xe4\x56\x53\xc8\x89\xb9\x90\x69\x20\x4e\xcd\x3f\xf5\x29\x34\xf4\x32\xaf\x9a\x81\xbe\x7b\xa0\x32\x37\xc3\xf8\x7a\xe5\x0a\xcf\xd4\x88\xfc\xcd\xc8\x3b\x1a\x14\x3b\xc6\xdf\xf7\x0d\x33\xd0\xd2\x23\x18\x03\xec\x90\x58\xd9\xe4\x05\x17\x41\x94\x35\x42\xbc\x62\x24\xa0\x5a\xa2\x84\x0e\x8a\x6e\x08\x32\x5f\x21\xf3\xc9\x40\x77\x2f\x3d\x90\x9c\x36\x56\x4c\xa9\xc2\x56\x02\x4c\x13\xa2\x6a\xf7\xcd\xf3\xf4\x6e\x8f\x2a\x0c\xb5\x01\x41\x33\xe5\x59\x0d\x73\x53\xf6\x8a\x22\x02\xb7\x56\x59\x86\x4f\x18\xd5\xe7\x28\xb8\x21\x74\x49\xb9\xd8\x37\xbb\x01\xcd\x19\xd1\x2d\xdd\x2a\xe3\xc5\xee\xdd\xc5\xd6\xf3\x00\x5d\x0e\xf6\x89\x60\x1b\x96\x94\xf6\x9b\xf7\xd6\xde\xb3\x20\x4f\x81\x05\xc2\x80\x55\xe4\x06\xba\x58\x2a\xc5\xe7\x91\x1d\xb8\xf0\xa9\xd2\x1f\x5c\xc5\x2c\xf0\xdf\xe3\x70\x6e\xcd\x5e\x66\xed\x37\xc6\xc6\xcb\x98\xff\x0e\x57\xff\x15\x58\x45\xe8\xda\xcf\x55\x2a\x13\xba\x64\xf6\x27\x95\xd2\x34\x43\xc4\xa0\x29\x89\x85\xe7\x8e\x92\xff\x86\x8b\x50\xd3\x21\x8b\xd2\x38\xca\x12\x1a\x15\xbf\x04\x52\xa0\x45\x57\x1d\x92\xbf\xfd\x5d\xff\xa2\xfb\x67\xa1\x89\xd0\x34\xbf\xce\xc4\x68\x34\x9a\x09\x1a\x73\x1b\xe8\x49\x68\xcc\xd9\x5d\xca\x04\xb4\x1a\xdf\x7c\xab\xc6\x5c\x1e\x6c\x5e\xcf\x04\x8e\x78\x9c\xa9\x54\xae\x2f\x19\x9a\xa8\x4e\x18\x5c\xa3\x80\x4e\x97\xc2\x29\x41\xb1\x42\x04\xba\xaf\x2a\x96\xaa\x71\x90\x84\xe3\x38\x91\x1a\x03\x01\x10\x9d\xb1\x4c\x96\x33\xa1\xa9\x19\x7c\x01\x82\xc9\x21\x69\x68\x56\xb6\x70\x20\x28\x85\x8f\x2d\xfe\x1a\x71\x95\xfe\xa5\xf2\xe6\x8c\xab\xb4\x8c\x20\x07\x26\x83\x77\x2e\x96\x59\x44\x13\xf7\x15\xe0\x2b\x90\x7a\xd1\x72\xad\x08\xdc\xd0\x36\x16\x7d\xfa\x8f\x91\x99\xa6\xc6\x0e\xf4\x14\xac\xd8\xba\x08\x27\x95\x31\x13\x47\xd3\xc9\x77\x5f\x5d\x95\x7f\xaf\x3b\xb1\x5a\x57\x61\xe3\x8e\x55\x0c\x39\x62\xff\x93\xf1\x0d\x8d\x34\x41\x35\xfb\xba\xea\x5f\xec\x6c\xde\x06\xb5\x97\xb3\xba\xe5\xbd\x5a\xce\x3a\xa1\x41\x35\xd6\x7e\xf4\x8c\x47\x60\xcc\x8c\x59\x68\xa6\x87\x70\x00\xb5\x30\xa4\x9e\xfa\xf4\x19\x72\x01\xdc\x1d\x76\xfc\x18\x44\x00\x96\x28\x7b\xf9\x0b\xa4\xd8\xb0\x24\x25\x09\x0b\xe4\x52\xf0\x7f\xe4\x9d\x2b\xeb\x7f\x00\xf5\xb6\x6a\x8c\x82\x8b\x94\x25\x5a\x58\x80\xa3\x8e\xda\x56\x7d\xed\x4f\x98\x1e\x86\x64\xc2\xe9\xd0\x7a\x3e\x7d\xd4\xa2\x21\x17\x0b\x79\x08\xf9\x80\xd4\xe1\xc1\xc1\x92\xa7\x76\x63\x07\x72\xbd\xce\x04\x4f\xb7\x07\x60\x19\xe5\xf3\x2c\x95\x89\x3a\x08\xd9\x86\x45\x07\x8a\x2f\x47\x34\x09\x56\x3c\x65\x41\x9a\x25\xec\x80\xc6\x7c\x04\xb0\x0b\x38\x59\xe3\x75\xf8\x2c\x31\x27\x41\x3d\xf7\xd1\x81\x3a\xf9\x80\xad\xdb\xb6\x0c\x7a\x07\x9b\x20\x5a\x94\x7d\x91\x8d\xe7\xd8\xb6\xae\x1f\x97\xa7\x57\xd7\xc4\x8e\xee\x0d\x38\x46\xe4\x17\x5f\xaa\x62\x1d\x34\xd2\xb8\x58\x58\x79\x05\x94\xd1\xee\xb5\x1d\x59\x66\xc4\x3d\x22\xab\xca\xe6\x6b\x9e\x2a\x27\x91\x8c\x1c\x93\xe3\x5c\x4b\x9d\xc5\x21\x4d\x59\x38\x26\x13\x41\x8e\xe9\x9a\x45\xc7\x54\xb1\x27\x5f\x05\x10\xda\x46\x1a\xb7\x7d\xd7\xa1\x21\xf8\xbb\x49\x05\x97\x93\xa9\x86\x65\x2b\xce\xa3\xe6\x38\xe5\x48\x24\x1b\xac\x56\x84\x87\xd3\x1a\xed\x2a\x1e\xbb\xa4\x15\xa6\xd4\xa2\xd2\x6e\xf0\x99\xaf\x15\xe5\xb3\x6e\x7d\x93\x69\x4e\xe9\xf0\xae\x3b\x67\x91\xd4\xbb\x4a\x1a\x9d\x0a\xf3\x19\x42\x9b\xf9\xf4\x7f\x04\xa7\x04\x3e\x09\xff\xf7\xcc\x84\x9b\x1d\x12\x64\x50\x07\x29\x5b\xc7\x40\xaf\x0e\xf0\x07\xf0\x96\x2b\x3c\x2d\x12\x35\x4a\xe6\x34\x18\x6f\xe9\x3a\xd2\x1c\xf7\x87\x1f\xf8\x82\xb0\xff\x21\xe3\xcb\x77\x47\xc7\xc7\x52\x2c\xf8\x92\xcc\xf6\x74\x93\xd9\xde\xbf\xfe\xa5\xfb\x9f\x80\x30\xcb\x08\x25\x41\x94\xa9\x94\x25\x89\x8c\x58\x5e\x26\xae\xda\x3b\xe8\xad\xa4\x60\x22\xdd\xd7\x1f\x43\xa1\x39\xa0\x21\xa9\x25\xa6\x0d\x60\xd9\x9b\x52\xe1\x88\x60\x58\x3c\x0e\x7a\x29\x23\x56\x16\x0d\x60\x1a\x34\x4b\x57\x32\xe1\xff\x40\xe7\x2b\x47\x3e\xf0\xf0\xff\x86\x81\x67\x02\x44\x53\x68\xf8\x8c\x9c\xcb\x10\xb5\x05\xe4\xd6\xf8\x58\xa5\x92\xac\xa5\xe0\xe0\x47\x2c\x13\x12\xb2\x88\xe1\x49\x47\xa6\x4b\x63\xfe\x41\x0b\x0b\x7a\x65\xf4\x22\xfe\x1d\xd7\x35\xa7\xc4\xf9\x26\x1d\x11\xa1\xfb\xc6\x3f\x37\x2c\x99\xbb\xaf\x6e\x5d\xbb\xc3\x08\x0e\x47\xf1\xd7\x12\xcf\xe5\x33\x32\xb5\x39\xc6\x1c\xd8\x8a\xd4\x4f\xec\x8e\xab\x14\x6a\x30\x52\x45\x62\x9a\x98\xe3\x75\xf4\x91\x14\xb3\xdd\x1d\xe8\x58\x86\x0d\x30\x2f\x59\xda\x04\x71\x3e\x9d\x67\x08\x40\xde\xb1\x89\x46\x13\x3c\x86\x22\x96\xa1\xbe\x04\x09\x44\x8c\x89\x82\x8b\x58\x6a\x6c\xd0\x55\x30\xfd\xc2\x58\x1b\xec\x3c\x8e\xa5\x8c\x94\xfb\x83\x66\x3e\xc9\x06\xb3\x43\xf8\xa7\x65\x67\xf2\xf0\xe1\xe7\x91\x0c\x6e\xe8\x02\x85\x52\x56\x02\x83\xae\xe1\x65\xe5\xb7\x15\x15\x61\xd4\xb4\x45\x5a\xd0\x0d\x57\x6a\x56\xfc\x8d\x6c\xaf\xf8\x1b\xb1\xea\x5d\x9e\xda\x31\x5c\x53\x41\x97\x4c\x91\x95\x54\xa9\xe3\x94\xf5\x28\x08\x29\xf5\xf9\x84\xb3\x7c\x46\xce\x19\x0b\x41\x73\xa0\xaf\x9e\xa9\x34\x6d\x2d\x05\x73\x92\x79\x3c\xd6\xd4\x3c\x3d\xf7\x98\x60\xf3\x94\x9e\x81\xf9\xf6\xb8\x58\x18\xa4\xcd\x59\x92\xeb\x4e\x50\x7d\xc0\x53\xdd\xa3\x22\x5a\x08\x0a\xa0\xc9\xe3\xcc\x47\xef\x0b\x67\x5b\x04\xee\xe8\xde\x99\x3d\xc3\x0b\xbb\x86\x43\xde\x0a\x07\x96\xda\xb4\x9f\x99\x69\x13\x6a\x55\x30\x84\x2f\x88\x90\x82\x21\x09\x53\x4d\xf8\x79\x66\x97\x11\x79\x6c\xd3\x4e\x78\x86\xfb\x1b\x68\x62\xb0\x2a\x85\x04\xe4\x5b\x1f\x78\x67\x8d\xc1\xbc\xe3\x02\xb5\x36\x4f\xc4\x67\x64\xc4\x2e\x19\xba\xd8\xdb\xf5\x69\xe9\x5f\x37\xf3\xf0\xc0\xce\x61\x54\x06\xf2\x8a\x5e\x9a\x91\xe9\xa0\xac\xf4\xec\xd1\x87\x6b\xb6\x47\x1a\xa1\xb6\x2a\x65\x6b\x83\xb9\xde\xc2\x87\xa6\xec\xae\xc0\xd1\x25\x4e\x38\x9f\x91\x13\xca\xd6\x52\x5c\xb1\x2e\x49\x02\x1a\x7f\x29\xe9\x41\x0f\x56\x96\x18\xb4\x30\x7b\x7c\x3e\xd1\x92\xdc\x92\x0b\x22\x80\xf2\xa4\x52\xef\x78\x60\x9e\xfb\xc8\xde\xf0\x7e\xe8\x06\xa8\xde\x9f\x13\x57\x84\x09\x7b\xf7\xc7\x8e\x5b\xc9\xce\x33\x62\x23\x7f\xaf\x22\x6e\xf9\x31\x68\xb0\x17\x85\x07\x8d\x29\x07\x6d\xc4\x72\xab\x92\xb3\xb9\x8e\x9e\xd9\xdc\x35\x6b\xeb\xbe\x5e\x9d\x45\xc8\x55\x20\x37\x2c\xd9\xda\x8d\xdc\x36\xab\x9c\x1f\x00\x3c\x3b\x49\x47\x3b\x61\xaf\xe6\x62\x35\xca\x5d\xcf\xfc\xe4\xec\x93\xd1\xeb\xdb\xd9\xe4\xaa\xfc\xc9\x14\x8d\x57\x34\xdc\xe8\x3b\x90\x2a\x10\xd1\x0a\x6d\x43\xaf\xd7\xdb\x78\x45\xd5\xd8\x2f\xed\x91\xe3\xc9\xc9\x25\xa1\x59\x2a\x47\x21\xd3\x37\x4e\xb0\xe6\x09\x38\x91\x34\x5c\x9b\xcd\x56\xb0\x39\xa4\xba\x64\x4d\xe3\x7b\xec\x2f\xfc\x58\x7f\xdb\xba\x85\x76\x17\x79\x0f\x5c\x7a\x5d\x45\xb3\xe6\xd4\x66\xfb\x05\x11\xa3\xa0\x64\xd0\x42\xb8\xb9\x93\x7e\x12\x74\x43\x79\x44\xe7\x9a\x48\x44\x74\xe9\x20\x2a\x76\xf1\xfc\xcc\x1a\x0f\xe0\xba\xa4\x30\x9a\x2b\x28\xf3\x4c\x27\x85\x17\x47\xa1\xd3\xcd\x5d\x36\xf6\xb3\xe1\xef\xab\xbc\x44\xe3\xd9\x71\x11\x74\x83\xe2\x79\xc3\xb1\x36\x27\x89\x8b\x65\x9f\x13\x61\x5a\xc7\x25\x07\x8f\x9e\x47\xc2\x6c\xb0\xf9\xd6\xa2\x43\x03\x6e\x75\xea\xc5\xfc\x1f\x4c\x7c\x2a\xd4\xc6\x39\x4d\xd6\xd0\xd5\x2e\x5c\x93\xaa\x1c\x5a\xa1\xa2\xb1\x0d\xbc\x90\xa1\xdd\x3e\xf7\x83\xb9\x65\xef\x39\x3b\x28\xdf\x3d\xe6\xa6\xa7\xc8\x86\x26\x5c\x66\x8a\x1c\x5f\x9e\xe0\x69\xc7\xbd\xf4\x48\xd2\x22\xe6\x88\x58\xb0\x88\xdf\x61\xbf\x0e\x1e\x9d\x5f\xcb\xf2\x16\x5c\x29\x96\x71\xcc\x58\xa2\xaa\x5d\xcd\x97\x71\xad\xa3\xfc\xb7\x7a\x37\xbd\x2e\x46\x4d\x37\x15\x1c\xd1\xbb\x4b\x6b\xaf\x15\x73\x09\x6e\xe3\x37\xde\xd6\x8d\x22\x75\xc3\x55\xa2\xf5\xca\x85\x0b\x03\xe4\x08\x36\xc4\x3d\x6e\x59\xb7\xf5\xdd\x92\xa9\x34\x17\x66\x45\x98\x8b\xa7\x9a\xf6\xc0\xc6\x91\x42\xcb\xaa\x49\x9a\xc5\x4f\x75\xa3\x6d\xdd\x2d\xbd\x2f\x25\x6d\xf7\x10\x77\xae\xd5\x09\x7a\x66\x45\x1a\xa7\x45\xda\x78\x4f\xcf\xe5\xf1\x00\xd6\x8f\xe0\x1b\xe7\x35\x3d\xc2\xa3\x2a\x6e\xfa\xed\x97\x6b\xb0\x45\x5a\x97\x10\x29\x50\xee\x02\x3f\x63\xeb\x9f\x09\x44\x26\x8b\x97\x09\x0d\x4d\xbc\xdc\xe6\xcd\xf8\x2d\x4a\x8d\x01\xe6\xd4\x79\x46\xe6\x8c\x24\x6c\x2d\x37\x2c\x34\xbe\x89\xf6\x03\x99\xe8\x19\x2e\x12\xa6\x56\x84\x0b\x95\xd2\x28\x7a\xd4\xeb\x6d\x0b\x2d\x29\x93\xa4\x5d\x76\x96\x1f\x2b\x25\x84\x98\x35\xd6\x9c\x21\x95\xba\xa9\x5e\x51\xd4\x29\xd1\x28\x92\xc1\xe3\x4e\xf2\xd7\xa7\xaf\x79\x0c\x8a\x41\xd7\x25\xd6\xd0\x78\x33\x78\xa7\x67\x48\x8a\xf9\x97\x93\x6a\xc2\x6e\x06\x31\x6c\xbe\x85\x73\x86\x0b\x94\xc8\x4c\x13\xbf\xe5\x32\xb1\x11\xb0\x4f\xb8\x16\x8d\x42\x90\x91\x1f\x70\xb3\xc0\xee\x58\xf3\xa5\xa1\x02\xa5\x0b\x59\x08\x77\x4a\x30\x01\x7b\xb6\x5f\x40\x85\x71\xda\x7d\x96\x9f\x33\x50\x4d\xa4\xe6\xa0\x69\xe1\x14\xce\x26\x64\xa8\x2b\x8e\x19\xc9\x94\x7e\xa5\x99\xd2\x48\xef\xca\x08\x80\xf0\xa2\x82\xc6\xb1\x6a\x9d\x79\x01\x62\xcb\x7a\x79\x4c\xe5\xed\x37\xda\x66\x5d\x47\xe7\x5d\xf7\x29\xb4\x16\xd8\xf5\xee\x9a\x0a\xfc\xae\x59\x3b\xf1\xc3\x0f\x4c\x84\xff\xfa\xd7\x4e\xfa\x89\x5c\x35\x01\x69\x29\xd6\x54\xf0\x05\x53\xa9\x5d\x5f\x55\x53\x35\x18\x73\x1a\x4b\xf6\x09\x55\xe4\x96\x45\xf0\xb1\x09\x8c\x2d\x64\x58\xf4\x7e\xb1\x97\x68\x73\x33\x93\x42\xb7\x85\x48\x9b\x35\xd5\xd8\x81\x46\xba\x05\x4b\xf0\x46\xc2\x45\x29\x74\xc3\xf2\xf0\x5c\xa3\x91\x6b\x45\xaa\x8e\x12\xb1\xea\xa5\xba\x68\xc6\x1d\x31\xfe\x84\xd6\x52\xf5\xad\x1a\xd1\x38\xae\x2e\x99\x35\x3d\x56\x1c\xb9\xc1\x0d\xf3\xcc\xfd\xbe\xa9\x07\x62\xc8\xdd\x55\x9a\xd0\x94\x2d\xb7\x87\xc6\x08\x35\xfe\x54\xfa\x59\x2f\xe2\x0f\x3f\x90\x54\xfe\x37\x5d\x47\xd5\x97\xe4\x9f\x84\x8b\x90\x89\x94\x7c\x8d\xed\x58\xa4\x98\xfe\x17\xc9\x8d\x76\x97\x32\x8a\xb8\x58\x7e\x72\x48\x6b\xe2\xfe\x94\x43\xb9\xa6\x77\xce\x25\xf3\x90\xbc\x76\x76\x11\x21\x76\xc7\xd8\x69\x56\x0d\xb5\x51\x79\xca\xcd\x93\x26\x70\x49\xbd\xa4\x22\x58\xb1\x64\x64\xad\xb0\x68\x0b\x2d\x6e\xa1\x98\xdd\x21\x58\xb1\x30\x8b\x58\x32\x06\x5f\xd4\x71\x91\xef\x02\xcc\xd3\x09\x07\xb7\xfe\x51\x2c\xc3\x22\xb2\x2c\x2c\xcc\xe6\x9b\xaf\xc6\xaf\xbf\x1a\x7f\x0d\x3e\x88\xc4\x0e\xed\x4f\xd2\x8d\x7b\x7e\x9f\x50\x30\xb9\x82\x6f\x29\x6c\x62\x33\xc4\x51\x18\x4a\xa1\x30\x79\x84\x8c\x98\x21\xa8\x90\x3f\x61\xdf\xed\x64\x4d\xd1\x7a\xcb\xc0\xf7\x11\x82\x23\x2d\x94\x84\x86\xe1\x08\x7c\xd8\x85\xca\xe0\x72\x6f\x34\xd6\xee\xf7\x71\xc2\x65\xc2\xd3\xad\x9d\x39\x84\x58\x0a\x13\x09\x82\xe6\x7d\xd7\x7e\x84\x57\x15\x37\x48\xe1\x99\x26\xd3\x3c\x25\xe0\xe4\x05\xfa\x70\xb6\xe1\x41\x5a\x0a\x66\xec\x8f\xd5\x43\xf2\xdc\xd8\xed\x4b\x86\x76\xbd\x92\x1e\x2f\xd3\x72\x3f\x52\x1d\x92\x88\x8b\xec\xce\x36\xf8\xe1\x07\x93\xbc\xf4\xbf\x6e\xf6\xc9\x7f\x6d\xc8\xe1\x9f\xc8\xf8\xdc\xe9\x89\xd8\x6d\x6b\x1a\xff\xd7\x0d\xf9\xd7\xbf\x0e\xc9\x6c\x4f\xff\x7b\xa3\xdf\xee\x39\x5d\x31\x11\x3a\x1f\x68\x7e\x63\xf4\x0f\xe5\xdc\x27\xc5\x6a\x95\x57\xfb\x23\xbd\x61\x44\x65\x49\x99\xa0\x01\xc2\x2c\x7a\xc0\x6b\x95\x46\x11\x0a\xbd\x0e\xfe\x46\x26\xc7\xc0\x21\x39\x97\x57\xa6\x71\xf1\x16\x1c\x8c\x12\xaa\x51\x43\x4e\x4b\x5a\x7c\x1c\x37\xb9\x69\xdd\x1f\x28\x4b\xb0\x62\xfd\x4b\x03\xdf\xb0\xed\xa1\x67\x53\xf6\x1b\xdd\x85\xfb\xf4\x8e\x05\x59\xda\x0b\xec\x2e\xc3\xb8\xd9\x54\x25\x76\x75\xee\x23\xb7\xd8\x59\x4e\x50\x0c\x42\xb8\xe0\x6b\xfe\x0f\x46\x42\x79\x2b\x52\xbe\x66\x24\xc4\xd3\x41\x2d\x95\x72\x45\x7b\x6b\x73\xfe\x23\x49\x59\x14\xb9\xdc\x21\x95\x24\x94\x50\x42\x08\x54\xb2\xc5\x00\xf6\x93\xd9\x5e\xe1\xe3\x52\xde\xa9\xa1\x0c\xd4\x41\x20\x45\xc0\xe2\x54\x1d\xd8\xa4\x8b\xea\x00\xb4\x26\xb1\x0c\x0f\x9e\xd9\x18\x55\x2e\xc5\x48\x2e\xf4\xc9\x28\xf6\x83\xf3\xee\x43\x42\x03\x36\x65\x09\x97\xe1\x15\x0b\xa4\x08\xd5\x21\x79\x55\x23\x79\x45\x96\x64\xd4\xa3\xd9\x06\xf6\xec\x1f\x47\x54\x29\x44\xe0\x0f\x3f\x90\x31\xca\x72\xfa\xa0\x4c\xab\x0d\xc8\x3f\x73\xbb\xd1\x6c\x0f\x99\x17\xda\x19\xec\x9e\x9a\xed\x39\x67\x44\x0b\x90\xc7\x96\x63\xd7\x69\x5f\xc1\xcd\xed\xed\x42\x95\x6f\x61\x15\x99\x0e\xb4\xac\xb8\xc0\x5a\xb2\x1e\xbb\xfd\x4d\x52\x23\x41\x5a\x33\x36\x7a\xc6\xda\x0c\xf4\xf5\xdb\x19\xf8\x57\xf3\x05\xd9\xca\x0c\x93\x80\xd0\x28\x61\x34\xdc\xba\x9d\x1a\x60\x40\x69\x9c\x29\xd6\x30\xb8\x75\xfe\x33\xad\xe1\xb5\xbb\xcb\xf9\x1a\x5c\x54\x7e\xf8\x61\x7c\x7c\x3e\x99\xe8\x3f\x5c\xb2\x03\xd1\x46\x6b\xaa\xc5\x8b\xbf\xcd\xf6\x0e\x64\x9c\x1e\x04\x82\x1f\xcc\xb9\x38\x70\x86\x9b\xed\xed\x93\xd9\xde\xc8\x0c\x91\xcb\xb0\xf8\x30\xb1\x79\x9f\xc8\x75\xc9\x25\xc7\xaa\x94\x3f\xd2\xd8\x0a\x90\xee\xf3\x8c\x1c\x41\xe8\xd4\x5f\x3e\xbd\x3b\xbd\x3c\x3f\xbd\x3e\xbd\xfa\x7c\x75\x7a\xf9\xdd\xe4\xf8\xf4\xf3\x9f\x2f\xae\xae\x81\x03\x78\xde\x4d\x2f\x2e\xaf\x4d\xe4\x9c\xdc\xb0\x24\xe1\x61\xc8\x90\x7e\xb0\x77\xd3\xf7\x64\x6d\x6f\xf8\xee\x83\xc8\x71\xf2\x46\x59\xd5\xff\xc8\xea\x90\xaa\x5f\xd8\x48\x80\x7a\x4e\x29\x26\x36\x95\xa9\x58\xe4\x3b\xc0\x9e\x5f\x9c\x9c\x7e\x3e\x3f\xfa\x78\x5a\xed\x17\xfc\xe7\x6a\x98\xc2\x07\xdc\x7f\x7d\x98\xca\x5f\x4e\x69\xba\x3a\x84\x93\x34\xd6\x3b\x1e\x22\xf0\xbc\xa0\x1c\x1f\x9d\x4d\x8e\x2f\x3e\x9f\x9f\x5e\x7f\x7f\x71\xf9\x97\xc9\xf9\x87\xcf\xef\x8e\x8e\xff\x72\x7a\x7e\xb2\x0b\x3c\xf9\xea\xfd\x85\x6d\x9b\xc0\x2a\x49\x98\x65\xa3\xaf\xfb\x00\x05\xc7\x56\x9f\x4d\xd4\x88\xdb\x6c\x23\xa3\x6c\xcd\x3e\xfa\x92\xb5\x8c\xc8\x5a\xff\x8c\x33\x3f\xd8\xd0\xe4\x20\xe2\x73\xd8\x9e\x56\x69\xe8\x5f\xec\xe2\xdc\x8e\x04\x4b\x47\x21\x4f\xda\xfa\xd5\xad\xdd\x7d\xef\xef\x33\x10\x7c\x34\xe7\xa2\xda\x99\x62\x41\x06\x14\x4a\x8a\x94\xdd\x55\x6b\x78\xc5\x09\xdf\xf0\x88\x2d\xcb\x5e\x63\xc4\x47\x81\x4a\x57\x0e\x7d\x93\x98\x73\x41\x93\x52\x90\x27\x1a\x42\xf5\xbb\xca\xcd\x62\xc1\x23\x08\xaf\x80\xbb\x85\x28\x1f\x02\xbb\x2b\x4c\xff\xa3\x40\xf0\x47\x21\x0e\xa6\xbf\x81\x14\x38\x13\x39\x37\xf1\xf7\x76\x09\xdd\xe5\xd1\xbc\x03\x54\x3f\xe3\x86\x53\x7b\x3e\xf9\x7c\x7c\x71\xfe\xbe\x99\x72\x68\xc1\xf0\xf5\xab\x91\x51\xa2\xe8\xbe\x41\xb3\xb4\x57\x85\xc2\x9a\x53\x2a\x9b\x04\x62\x7f\x60\xcd\x9a\xb6\x4a\x15\x1c\x43\x41\x00\xac\xc9\x87\x5f\x94\x7a\x08\xfe\xd9\x4c\xe7\xb3\xaf\xe9\x33\x72\xc5\xd0\x55\x58\x1f\x66\x48\x83\x90\x47\x61\x81\xa7\xe2\xb7\x0a\x6f\xd8\xfa\x55\xc3\x8c\x7f\x05\x14\xfc\x19\xac\xdb\xc7\xeb\x4f\xc4\x08\x9d\x1b\x9a\x70\x7d\x33\x6d\x5e\xa3\x8f\xd7\x9f\x7e\xc9\x85\xd9\xb0\x74\xf5\x79\x9d\x66\xd5\x79\x4c\x13\xb6\x61\xc2\x94\xdc\x2b\x88\x1c\x48\x55\x2a\x62\x0c\x02\x3f\x17\x52\xb7\xaa\x96\xe6\xb4\xb3\xbb\x3a\x3b\x3d\xad\xd5\xb7\xcd\x0f\xc2\x82\x46\x8a\x95\xf7\x7e\x6f\x46\xf2\x20\x82\xef\xed\x8c\xa5\x81\x65\x4b\xe3\x5a\xfc\x7c\xd1\x9d\x87\x19\xdd\x9f\x7f\x1c\x85\xa1\x96\x2c\xdf\x47\xec\x8e\x7c\x07\x53\x27\x27\x09\xdf\x80\x27\x3d\xb5\xa6\x29\xdd\x22\x66\x09\xe8\x0b\x3e\x09\x7e\x47\x4e\xe4\x9a\x72\x41\xae\x64\x70\x83\x29\x45\x21\x0a\x96\x9c\xf0\x1b\xaa\xd2\x32\xb3\x01\x9f\x02\x70\x87\x0f\x68\x6a\x92\x20\xbc\x67\x11\xbf\x03\x82\xeb\xe6\x03\xb8\xda\x8a\x80\x1c\x4d\x27\x1e\xb6\xb3\x88\xd8\xdd\x46\x46\xa3\x10\x40\xf3\x73\x1e\x3d\x85\xef\x64\x34\x59\x2f\xcb\xbc\xa7\x71\x41\xfd\x9d\x8f\xf4\x52\x94\xf1\x57\x5b\xa8\x3a\x18\xf7\x5b\x80\xc0\x7f\xab\xb8\xcc\x40\x93\xec\xd1\x17\xe6\x34\xd7\xb9\xc0\x01\xf9\xad\xd4\x8e\x7c\xe6\x5e\x4a\x12\xb9\x4c\xe8\x5a\x55\xbd\x71\x34\x47\x04\xdd\xbb\xb2\xbd\xba\xdf\xeb\x79\x7a\x16\xc2\x73\x33\x2d\xaf\x82\xbe\x6f\x79\x04\x80\xff\x6c\x8e\xfe\x49\x31\x77\xc5\x8e\xa6\x13\xab\xec\xd5\x92\xac\x26\x62\x21\x4d\x29\x98\x21\x1b\xc8\xd8\xc9\xd1\xf5\xd1\xd5\xf5\xc5\xe5\xe9\xe7\xeb\xff\x9e\x36\x33\xf6\x62\x0a\x75\x86\xfe\x3d\xe5\x69\xee\x25\xd7\x35\xde\xf7\x47\x93\xeb\xcf\xef\x2f\x2e\x3f\xe7\x03\x37\x8e\x09\x08\xa8\x8d\xa6\x39\xe9\xce\xcc\x53\x73\xcc\x5f\x86\x61\xae\xa4\x54\x2c\x5f\x11\x26\xec\x65\xb9\x49\xae\xf9\x6d\x5d\x8e\x60\x8a\x68\x05\xc0\x22\xb4\x5a\x8a\x83\xe4\x2e\x0b\x2c\xc7\xe2\xc4\xdd\xeb\xf7\x0d\x93\x3e\xfb\x74\x75\x7d\x7a\xd9\xb1\x03\xbf\x55\xfb\xf3\x65\x5c\xdf\x10\x47\x85\x0b\x1a\x0c\xf9\xee\xc3\xd4\x29\x21\xd1\x80\xe7\x49\x33\xeb\xa6\x59\x2a\xb1\xbb\xfa\x58\xa7\x02\xcc\x8c\x93\x69\xf5\xfb\xca\xfa\x4d\xa6\xdf\x7d\x3d\xbd\xb8\x38\xfb\x5c\x6f\xe9\x8c\x74\x04\xa1\xc2\x8d\xa3\xc8\x84\x9c\x70\x05\xff\xfc\xee\xaf\x67\x47\xe7\x76\xc3\x5b\x0d\xd3\x64\x4a\x62\x29\xa3\xf6\x9d\x94\x43\x02\x5d\x34\x82\x72\xae\x25\x1d\xff\x61\xd3\xf2\x1e\x9c\xee\x4c\x08\x16\x91\x90\x81\xa7\x21\x38\x66\xf2\x05\xe1\x31\x8f\x21\x5c\x1e\x60\x0e\xfd\xb0\xbc\x3f\x3d\x9b\xfc\x55\xe3\xe2\x7c\x32\x6d\x97\x08\xd3\xaa\xa9\xab\x90\x13\xa6\x32\xd4\xf8\x48\x32\xa0\x90\xe4\x5d\x16\x2e\x19\xd2\x9d\xc2\x15\xbd\x90\x18\xfe\xf2\xad\xca\x77\xa6\xde\x21\x2a\xa0\xe6\x3d\xa8\xdf\x7f\x39\xd1\xb3\x84\xd2\x95\x5d\xda\x12\x72\x1b\x56\x14\xb1\x08\xed\x7f\xa5\x62\x75\x75\x6e\xdf\xf3\x84\x2d\x33\x9a\x84\x3b\xcc\xef\xfb\xc9\xe5\xe9\x87\x4f\x47\x97\x27\xbf\xd2\x39\x5e\x97\x4e\xe0\xe6\x6b\x38\x83\xc5\xf5\xd9\xf1\xab\xaa\x84\x0e\x8c\x61\x07\x4f\xa6\x79\xc9\xae\x6a\xcf\xc1\x4a\x2a\x2d\x51\xa0\xb1\x8c\x2b\x34\xce\x8c\xc9\xf1\x8a\x8a\x25\x46\xb3\xda\xda\x04\xc6\xc5\xa6\x64\xe7\x87\x5e\x57\x74\x53\xeb\x57\x48\x63\x66\x30\xd5\x0d\x4c\x6c\xf1\x42\x5f\xb5\x4d\xb6\xb8\xd1\xc8\xd8\x72\x47\x01\x0f\xab\x37\x1e\x9f\x69\xf0\xd4\x49\xb3\xc1\xd2\x1a\xb1\x39\x9e\x9c\x5c\x1e\x14\x3f\xbe\xcd\x7f\x9c\x89\x1f\x7e\x18\x11\x34\x5f\xbc\x88\x98\x20\xff\xa5\x07\x54\x2f\xc9\x1b\x52\x96\xeb\x9a\x09\x19\x76\xe3\xd9\x18\xc6\x32\xb5\xe0\x89\x4a\x4d\xbf\x25\x1b\x55\x53\xb7\x6f\x7b\x75\x1b\xd1\x6a\xaf\x7a\x26\x2c\x52\xec\xb1\x20\x1f\x1b\x7a\xa5\x9b\x39\x23\xb8\xd6\x19\xbb\x20\x96\x2f\x80\xea\x26\x92\x4b\xd8\x1e\x4a\x62\x68\x4c\x1a\xe9\x9f\x14\x98\xee\x9b\xf8\x9f\x01\xed\x64\x72\x75\xf4\xee\xec\xf4\xf3\xfb\xc9\xd9\xe9\xe7\xb3\x8b\x0f\x1f\x26\xe7\x7e\x45\x4a\xbb\x3c\x86\xd7\xae\x22\x26\x5a\x82\x94\x9f\x1f\x13\x4c\xe4\xa7\x7f\x3e\x3a\x3e\x3e\x9d\x5e\xb7\x9e\xff\x93\xd3\xf7\x47\x9f\xce\xae\x4f\xcf\x4f\xa6\x17\x93\xf3\xeb\xeb\x0b\x2d\x93\x1f\x1d\x5f\x4f\x2e\x9a\xb9\x17\x76\x5b\x87\xad\xbe\x6f\xaf\x4c\x7e\xa3\x30\xa3\x91\x4a\x69\x70\x73\x8f\x0d\x69\xb9\xd9\x77\x6f\xaf\x3e\x4d\xf5\xad\x60\x27\x8c\x15\x12\xc8\xdb\x86\xef\x1c\x01\xa4\xd7\xce\x3d\x3f\xba\xfe\x7c\xf1\xe9\xfa\xc3\x45\x9f\xc5\x6b\xdc\xb4\xc5\xa6\x9a\x4c\x37\x6f\x35\x19\x2b\x2e\x16\xad\x0b\xd6\x07\x11\xb9\x3a\xa4\x71\x47\xd7\x97\x0a\x52\x66\xa0\xf3\xaa\x26\x31\x38\xd8\xd9\xc5\x07\xbd\x57\xa7\x47\xd7\x7f\xd6\xfb\x09\xc8\x2b\x86\x2c\xe0\x79\x80\x8d\x68\x0f\x44\x2a\xe1\x80\xb4\x01\xef\xf4\xd7\x08\xbc\x1e\xa4\xcf\xde\x6a\x02\xf8\xea\xf4\xbb\xd3\xcb\xc9\xf5\x7f\x5f\xfd\xf7\x15\xc2\x6c\x68\x38\x10\xfa\x3c\xcc\x4c\x2c\x64\xeb\x4c\xd4\x56\x45\x72\xd9\x31\x17\x67\xa8\xc6\xe9\xb4\x1d\x61\x67\xbc\xd9\xde\x2d\x4d\x04\x17\xcb\x5e\xc7\xca\x3b\xdf\xe3\xcb\xd3\xd3\x73\xdd\xd7\xf7\xd8\x53\x7d\xc6\x7d\xa7\x03\x3d\x35\xce\xe8\x7b\x3f\xa0\xe5\xee\xfe\x7c\x7a\x74\x76\xfd\xe7\xd3\x73\x4d\xef\xfc\xb7\xa9\x66\x1a\xd7\x36\xe1\xc9\xf4\x5a\x77\x79\x65\xee\x69\x20\x81\x66\x29\x46\x37\x14\x27\xd9\xa4\xba\x13\x0b\xac\xcf\xdd\x7e\x9e\x4a\x1d\xb6\xde\x53\xca\xa0\xde\x57\x59\xe7\x73\xf6\xb3\xbf\x63\xee\x8a\x9a\x34\x15\xc4\xd9\x21\x79\xf3\xcd\xab\x92\x25\x37\xe2\x0b\x16\x6c\x83\xa8\x9a\x4e\x37\x4e\xd8\x55\x2a\xe3\x5a\x27\xec\xae\x96\x2b\x82\x38\x36\x9d\xfa\x9b\x11\x71\x0d\xbf\x55\x5d\x91\x6d\x33\x52\xab\x2c\x0d\xe5\xad\x28\xc3\xb6\x61\x82\x29\x35\x4d\xe4\xbc\x0a\x9f\x17\x8e\x26\x28\xba\x61\x18\x91\x11\x9c\xde\x91\x1e\xd3\xf3\x72\xce\x93\xd0\xf3\x2e\x2e\xbb\x29\xbc\x7e\x55\x7e\x0d\xde\xa6\x34\x3a\x61\x11\xdd\x36\x36\x5a\x50\x1e\x65\x09\xbb\x5e\x25\x4c\xad\x64\x14\x1e\x92\x0a\x93\x49\xf9\x9a\xc9\x2c\x6d\xe8\x20\x61\x34\xe4\x5f\x1a\x4b\x15\xb7\x82\x32\x9a\x3c\x2f\x3b\xf0\xd4\x3e\xc3\x16\x25\xfc\x33\x28\x27\xba\xa6\x1c\xf4\x9b\x9a\x5c\x39\x41\x3f\x47\xd3\x89\x16\xf0\x41\xb5\x41\xa3\x3a\x43\x7c\x44\x95\xbb\x5d\x88\x0b\x11\x6d\x0f\x09\x72\xce\x96\xd1\x22\x3e\x3f\x58\xcb\x30\xf3\x64\x65\xc4\x61\x22\x3e\x1f\x35\x34\x28\x86\xa9\x57\xa7\x2a\x8f\x92\x64\xe2\xe0\x0e\x69\xd7\x38\x92\x5a\x6c\xf2\x0d\x65\x5a\x8c\x7c\x2d\x76\x98\xd2\x86\x26\x30\x20\xee\x1e\xff\x50\x1b\x9a\x8c\x92\x4c\x8c\xfc\x6d\x76\x1c\x0c\xcc\xf6\x1d\x83\x69\x34\xde\x6b\x30\xec\x02\x75\xe3\x6a\x2b\x6a\x59\xd6\x7c\x33\xd7\x07\x86\x2e\x6b\x49\x85\x70\x8b\xe6\xea\xe6\x7d\x72\xcb\xc0\x87\xdc\xa8\xa5\x41\x70\x80\x9c\x20\x99\xc9\x4c\xa4\x5b\x6a\x11\x08\x5d\x91\x08\x4d\xc9\x81\xda\xaa\x83\x85\x3a\x98\xc7\x0b\x7d\x61\xb8\x65\xa6\x35\x66\x21\xac\x0e\x07\xf9\x50\x53\x12\xf2\x04\x1c\x02\xab\x85\xbe\xed\xe4\xd4\x56\x2d\x6a\x9b\xcb\x9d\x97\x19\xb4\xda\xe4\x19\x79\xc7\xb1\x6f\x4c\x6d\xb9\x66\x54\x60\xaa\x1d\xc8\xdc\x97\x03\xd7\x3d\x15\x9e\xe2\xfd\x37\x4e\x64\x4c\x97\xfa\x1e\x6e\x02\xb1\x2b\xe6\x06\x3b\xae\xc9\x8f\x0d\xd7\x14\xae\xc8\x8d\x90\xb7\xc2\x45\x1d\x4d\x4b\x83\xa1\xef\x13\x16\xad\x28\x83\x6c\xbc\xaa\x4c\x7e\xed\xda\x48\x88\x04\x03\x14\x78\x43\x97\x3e\xf7\xa3\x53\x13\x86\x48\x2e\x7d\x84\xa1\xb6\x73\xe5\xd2\xec\xdc\x83\x8a\xe7\x04\x69\x3c\xdf\x48\x03\xcb\x96\x21\x1b\x9a\xe9\xfa\x9e\x17\xef\x47\xed\xa4\x44\x63\x11\x60\xaa\x10\xea\x16\x02\x35\xea\x3c\xc6\xed\x9d\x36\x91\x88\x51\xe7\x89\xed\xee\xd7\x47\x0d\x46\x1d\x14\xae\xbd\xd7\x76\xea\x89\x4e\xe1\xef\x79\xc4\x2e\x92\xe3\x52\xf8\x4d\xcb\x09\x6b\x1f\xd0\x7b\xde\x70\x9c\x13\x7b\x96\xeb\x83\x15\x21\xe0\xd6\x13\xe3\xf8\xdc\x67\x34\x6d\x30\x3d\xb7\x83\xe4\x35\x68\x8f\xda\x59\x61\x7b\x8f\x0d\x2c\xb6\x98\x85\x09\x3e\xd7\x6c\x3c\x92\x4b\xd5\x30\x13\xcf\x49\xeb\xb1\x47\x1a\xce\xdd\x33\xf2\xd1\x21\xa7\x05\xe1\x84\xeb\x40\xd5\x5f\xd3\x0d\x13\x43\xd5\x5c\xd9\xd4\x0a\x3a\x76\xc8\x42\x54\x09\xf1\x71\x3a\x2a\xfb\x7c\xe6\x31\x79\x4e\x38\x9e\xdb\xa3\x8d\x18\x52\x36\x39\x9e\xeb\x94\x09\x22\x66\x61\xdf\xf5\xa0\xab\xdd\x71\xad\xe7\xc9\xf2\xba\xc7\x15\x8b\x66\xd4\xa8\xcd\x5e\x01\x1e\x2a\xe2\x67\xae\x0d\xf0\x74\x1e\x03\x52\x27\x33\x1e\x7e\x5c\x3f\x2c\x75\x57\x87\x3a\xa4\x1d\x2e\x01\xbb\x82\x6c\x74\x57\xd6\x45\x61\x0a\xc2\xea\x09\x4f\x6a\xda\x1d\x9c\x4f\xe1\xcc\x90\xb7\xc4\x18\x95\x06\x9d\x90\xc1\x42\xa6\x60\xe9\xf4\x05\xc0\x71\xd4\x86\x7f\x46\x2c\x1d\x99\x98\xa2\x03\xe4\x2b\x07\xd0\x2c\x47\xd8\xff\x9d\x85\x2a\x57\xfb\x90\x3c\xfc\xa9\xcb\x85\xdd\x8d\x1f\x2a\x62\xc4\xaa\x11\x58\xf7\x0f\x28\xda\x35\x18\xab\x9a\x86\x26\x0f\xcc\xba\x62\xcc\x4d\xd4\xb8\xca\xe6\xe3\x40\xae\x0f\x4a\x11\x85\x07\xf5\x24\x36\xde\xf8\x28\x13\x45\xe5\x24\x41\xdf\x25\x85\xcf\xbd\xa3\xa7\x3c\x69\x7a\x6c\x6c\x09\x9a\x3b\x4a\x39\xf4\x6c\x11\x22\x74\x0a\x87\xa4\xb0\x11\x03\x15\xef\x86\xe1\x51\x10\xc6\xc2\x93\xb0\x38\xe2\x01\x55\x10\xb7\x74\xaf\xa8\x2c\xdf\x24\x55\x11\x9b\x55\x1c\x8d\x4b\x56\xc4\xad\x76\x85\x45\x75\xa2\x91\x90\x36\x54\x92\x3e\x91\x55\x4d\xdd\x82\x5b\x14\x4a\x5a\x36\xf6\x00\xca\x1a\x25\x37\x95\xd0\x93\x58\x16\xb2\xa4\x3f\x3e\xea\x8b\xc7\x0c\x59\x5a\x73\x5d\x04\xf0\x38\x04\xa3\x1c\xd6\xe3\x44\xc7\xb9\xcd\xf3\xd0\xb8\xb7\x0d\x64\xa7\x29\x38\xc8\xaf\x80\x73\x5a\x5b\xdb\x78\x63\x06\x47\x49\x30\x67\x6e\xc4\x52\xa8\x7d\x9d\x89\xa6\x60\xa2\x21\x14\xa9\x57\x28\x92\x4b\xd2\xb1\xcd\x83\xc3\x92\x9a\x4e\x4d\x2d\x44\xe9\x21\x71\x3b\x95\xdc\x75\xbd\x42\x78\x72\xe3\xa8\x2f\x8a\xc7\xeb\x6b\x37\xea\x47\x66\x48\xd9\xc5\xbd\x68\xe0\xf7\x74\xab\x69\xac\x8c\x7b\x11\xd6\x99\x72\xf7\x7b\x2a\xf5\x16\x6f\xb8\xae\x1b\x25\xf8\xe7\xe3\x8b\xf3\xeb\xcb\x8b\xb3\xb3\xd3\xcb\x26\x6b\x41\x5d\x71\xb7\x93\xdf\xd8\x8d\xb7\xcc\xdb\x63\xaa\x62\xb5\x68\x02\x8a\xc6\x15\x0b\x6e\x46\xe5\xe4\x7b\x45\xb3\x51\xe5\xa2\xfd\xef\xa6\x6a\xed\x89\x85\xa4\x13\x0b\x5f\x48\x3a\xdb\x45\x78\xa9\x4a\x6a\x5f\xc8\x3d\xc8\x9d\x22\x5e\x2f\x0e\x36\xaf\xe7\x2c\xa5\xf9\x74\xa7\x32\x2c\xc6\xc3\xe1\x7e\x79\x81\xcd\x13\x31\xfe\x48\x92\x57\x4f\x41\x99\xa5\x41\x38\x52\x5a\x1c\x4b\xad\x90\xdc\xf3\xcb\x74\xab\xc5\x98\x9e\x9f\x98\x84\x2f\x6c\x14\x50\x41\x23\xf3\xd5\xde\xfe\xff\x8f\x10\xb2\x67\xfa\xdb\x7c\x35\x7e\xf3\x66\xfc\xcd\xde\x21\x31\x76\x67\xe3\xbc\x71\xf8\x27\xa2\xe2\x88\x43\xc5\x03\x32\xdb\xdb\x9f\xed\x11\xd7\xf3\x82\x60\x6a\x69\x93\xb0\xe3\xda\x0c\x59\xb8\x9c\x9a\x17\xa6\xf7\xde\xb3\x33\x39\xba\x4a\xf9\x1c\x8e\xad\xcb\x12\xe1\x2a\xaf\xd5\x93\x4f\x0d\xca\xf8\x46\x0b\xb8\x23\xb2\xd0\x8e\xeb\xba\xfc\x14\xa9\x24\x6d\x47\xf5\xa3\xd9\xbc\x21\x0b\xff\xa7\xa6\x6d\x98\x7f\xf7\x0c\x53\x01\x6a\x30\x8d\x7d\x1a\xa5\x53\x58\xb2\xcf\x86\xa3\x7f\xc6\xde\x5d\x7b\xf9\x33\x72\x9c\xcf\xa6\xc1\x05\xb6\xec\x5b\xaa\x3f\x9f\xf3\x24\xf4\x7f\xfe\xf1\xfa\x93\x0d\x35\xd5\xe7\xda\xc6\x05\x63\xb5\x83\x05\x0d\x4c\xc5\x61\xf4\x35\x43\xa1\xec\x19\x19\x91\xc9\xc2\x71\x44\x2b\x5c\x15\xf7\xc1\x4a\x9f\x4a\xb2\x95\x59\x92\xfb\xb0\xeb\x31\x46\xe4\xed\x2b\xfb\xf1\x45\xba\x62\xc9\x2d\x57\x0c\x34\xd2\xc6\x0f\x33\x21\x56\x05\xdf\xb3\xbf\x6f\x1a\xfa\x9b\x4c\x27\xd3\x9e\x5d\xbc\x69\xe8\xa2\xd0\xe7\x50\xb1\x25\x4c\x04\x34\x56\x99\x8d\xe1\x6d\xe8\x6e\x5c\x48\xf3\xba\x73\x2b\x8c\xeb\xde\x18\xfe\xf4\xca\x08\x38\xd6\x0b\xce\x78\x28\x7d\xbc\xfe\x54\xf3\x4c\xaa\x88\xf1\xee\x17\xaf\xbf\xfe\xfa\x55\xcd\xeb\xa3\x29\x02\xcc\xa6\xc6\x6a\x0a\x04\x83\xcf\x40\xe2\x43\xbd\xf9\x33\x5b\xc7\xc6\x56\x3b\x35\x81\x64\x79\x31\xc9\x2c\x95\x6b\x0a\xf2\x5a\xb4\x25\xb1\x34\x69\xbd\xcd\xb6\x68\x10\x21\xc1\xb0\xae\x14\x5f\x8a\xcf\x3c\xde\xbc\x9d\xed\x15\x4e\x01\x1a\x3d\xb9\xdb\x50\x35\x9d\x97\x22\x0b\x99\xa1\x6f\x74\x3d\x18\xec\x90\xfc\x73\x84\x84\xf6\x07\x4b\x6f\x67\x7b\x02\x4a\x54\x1a\xcf\x66\x7d\x4d\x1b\x99\x8f\x34\x49\xca\x5b\x05\xc2\x1e\x67\x6c\xfb\x6a\xfc\xd5\xf8\x75\xa9\x85\xd1\xbe\xe8\xd7\x7f\x2b\xf8\xfb\x0f\x2e\xab\x9f\xed\x81\xef\x35\x74\x60\x14\xdb\x7b\xfb\xe5\x06\x91\x5c\x7e\x8e\xd8\x86\x45\xd8\xea\xfb\xa3\xcb\xf3\xc9\xf9\x07\x6f\xb3\x05\x8f\xd8\xe7\x98\xa6\x2b\x6c\xea\x51\x87\xea\xff\x8d\x23\xb9\xac\x7d\x9e\x07\x07\x7c\x2e\x00\x72\x23\x0b\x2a\xcd\xf5\xb2\x17\x68\xfa\xfc\xd9\x17\x02\xf7\xf9\x73\xed\xb3\x75\x9a\xe9\x2f\x3e\x7f\x36\x01\x68\x9f\x3f\x57\x1a\x60\xc4\xf8\xa1\x46\x52\x6f\xe7\x2f\x1f\x16\x6d\xe8\x79\xbd\x65\xb1\x85\xbe\x76\xb7\x50\x6b\xcb\xd2\x66\x6b\x51\xca\xb5\x40\xd2\xe0\x5f\xf5\xaf\xca\xfc\x51\x9e\x31\x18\x68\xee\xfa\xe6\xdb\x8a\x6f\x7a\xb5\x1f\x77\xe9\xbc\x7d\x99\x4c\xdd\x9a\xcd\x38\x4b\x88\xf1\x9a\x9f\xad\xdf\x95\x5e\xc1\xd2\x28\xc5\x1f\xee\x80\x8d\x3b\x3a\x96\x49\xba\xa6\x71\x6d\x1b\x28\x41\x53\xdd\x42\x23\xb4\xf2\x2a\xa0\x31\x9d\xf3\x08\xd3\x77\x01\xe8\xd0\xcb\x47\x1a\xc7\x5c\x2c\x95\xfd\x6a\x57\x48\xe6\x54\x84\xb7\x3c\xd4\x27\xa3\x7b\x40\xa7\x71\x7d\x34\xfb\x4f\x13\xbc\xdc\x43\x4f\x79\x13\x86\xa3\x20\x09\x4b\x32\xd7\x53\x55\xab\xaa\x65\xdc\x7b\x82\x9a\x55\xef\x3e\x4c\x4b\x69\xe5\xf1\x5d\x51\xb9\xaa\xfa\xbe\x5e\xbf\xaa\x21\x2f\x60\x51\xc5\xaa\xda\x60\x56\xd4\xb2\x32\xf2\xe0\xec\x69\x0a\x59\x55\x61\x2f\x57\xc1\x29\x73\x16\xac\xf3\xb8\x85\xa8\x96\x44\x66\x69\x59\xe9\x33\x14\xb2\x1a\x0a\x59\xb9\x4b\x30\x14\xb2\xfa\x62\x85\xac\xaa\x87\xb8\x5e\xce\xaa\x5c\x66\x51\x1f\xe0\xd2\xd1\xee\x5f\xb7\x8a\xaa\x73\x28\x58\xee\xf1\x88\xac\x1c\xe8\x2b\x6c\x68\xeb\xe3\x59\x45\xe6\xd1\x95\x29\x79\x8e\xb7\xcc\xf9\x96\x50\x23\x53\xff\xed\x04\x9b\x78\xc3\x65\xde\x7e\xfd\xcd\xeb\x37\x7f\x7f\x5e\x7f\x85\xb9\x6b\x0f\xf5\xe9\xfc\xea\x4d\xfd\x35\xa2\x54\x1f\xdd\x65\xbd\xca\xba\x5d\x79\xdf\x44\x2b\xf3\x39\x2e\x9a\xe2\xf9\xb0\x85\xb9\x10\x97\x66\x07\x59\x3c\x63\x56\x36\x56\xf7\x99\x01\x14\x26\x73\x9e\x26\x34\xd9\x9a\x9a\xcb\x10\xa1\x44\xd1\xd9\x19\x63\x95\x77\xaa\xe4\xe5\x05\x73\x5b\x2c\xbf\x4a\xa9\x08\xf5\x75\x53\x26\x24\xa2\xc9\x92\x55\xc1\xf5\x75\x4a\x60\x0a\xfa\xa4\x79\x22\x59\xf1\x69\xd9\x24\xf8\x00\x7b\xf2\xbf\xaa\x16\x62\xa3\x6b\x46\x96\x7c\xc3\x84\x13\x49\x6f\xc1\xf3\x0e\x4e\x3a\x4b\x98\x91\x5c\xf5\xdb\x0b\x84\xef\x80\xce\x41\x2a\xd7\x39\x24\x26\xc1\x7d\xa5\xa5\x62\x7a\x28\xc4\x6c\x0f\xca\x74\xe3\x1f\x87\xeb\xb5\xb7\xa0\xbf\x7d\xde\xcb\xa4\xc0\x7a\x31\x9b\x4c\x31\xa7\x3b\xec\x7f\xdf\xd4\xa7\xd1\xbf\xcf\xf6\x34\xd2\x9b\xbb\x9d\xed\xc1\x87\x34\x61\xe4\xf5\x5b\x32\xe7\xa9\x39\x48\x63\x18\xb0\xba\xb4\xce\x68\x00\x6f\x73\xbf\x3e\x48\xf6\xf3\xd1\x44\xa8\xaf\x31\x6b\x33\xf0\x57\x6f\x4a\x03\x7f\xaf\x3f\xf1\x16\xc0\xb5\x20\xc3\xb4\xb0\x6a\xf4\xd1\x15\x41\x92\xd0\xd4\x79\xcc\x92\xd1\xd1\x95\x0d\xda\xe5\xb5\x74\x17\xc5\x13\xd3\x54\xf3\xe2\x43\xf2\xbf\x5f\xcc\x66\xe1\xff\xff\xe5\x21\xfe\xe7\xbf\xfe\x59\xfe\xdb\xfe\x7c\xdf\x1d\xd4\x44\x8f\xdd\xb7\x9e\x22\x79\x28\x1b\x32\x31\x95\x89\x8f\x98\x95\xf6\xdd\x59\xde\xd2\x12\x4a\x88\x09\xc2\xb5\xd0\xb4\x25\x4e\x64\x2a\x03\x19\x59\xe9\x05\xbb\xf6\x62\xe6\xc4\x16\x84\x4e\x25\x79\xfd\xfb\x3f\xd4\x9b\xac\xe9\x1d\x5f\x67\xeb\x43\xf2\xf6\x9b\x6f\xbe\xfa\xc6\xf3\x9e\x0b\x7c\xff\x7a\x47\x42\x1a\xc9\xe5\x15\xdb\xb0\x84\xa7\xdb\xab\x20\x61\xac\x2a\xeb\xd5\xa6\xfd\xfc\xac\xfa\x85\x9d\x7e\x24\x97\x44\x99\x37\x84\xce\xe5\xc6\x9a\x94\x22\xb9\xf4\x96\x72\xd6\x3b\x07\x8a\x57\x1b\xe1\x4d\xa5\xa1\xcc\x52\x87\x9d\x90\xc9\xf9\xfb\x0b\x1f\xeb\x68\x5b\x7e\xcd\x92\xae\x21\xb1\xde\x47\xa6\x56\x18\x05\xed\x0b\x03\x28\xcf\xea\xdc\xf7\x15\x51\x2c\x2d\x6a\x8d\x2f\x32\x63\xa9\xc5\xf8\x1b\x5f\xd8\x00\x81\x85\x5f\x43\x1a\xbc\x5c\x1f\xe7\x4e\x48\x5f\xd1\x9a\x27\x34\x97\x32\x62\xb4\x26\x13\xc7\x09\x5b\xf0\xbb\x23\xb7\x1a\x4b\x27\xd7\x9b\x7a\xbe\x29\x38\x0b\xf8\x45\x41\x8b\x72\x91\x17\xdf\x8c\xda\xc4\x0d\xb2\x43\x45\xe9\x3a\x40\x85\x96\x5a\x95\xc1\x70\x38\x94\x9f\x00\xd8\xd0\xe0\xa2\x38\xfb\xf1\xe4\xe4\xf2\x7e\xcc\x2e\xe0\xa1\x4f\x26\xf2\x4c\x01\x14\xfb\xa0\x33\x86\x6d\x5d\xf4\x6c\x4f\xf8\x9c\x15\xf3\xf0\x97\xb9\x26\xbd\xb8\x5f\xbb\x74\xe3\x83\xcc\x91\x71\x8c\xdf\x9e\x95\x72\x18\x87\xcd\x5b\xb0\x17\x10\x5d\x9a\x09\xbf\xf5\x52\xc6\xbb\x5c\x48\xb8\x20\xb3\x3d\x2d\x96\xaa\xb1\x33\x0a\x72\xd5\x5e\xe2\x08\xc1\x5b\x5d\x27\x57\x6e\x61\xbe\xed\x6c\xaa\x9d\x2b\xb7\x33\xdf\xe6\x9e\xbb\xb8\x72\x27\xf3\x6d\x03\xba\x83\x2b\x77\xf2\xde\x5e\x7d\xf7\x67\xca\xcd\x47\x18\x9f\xee\x1d\xdb\xca\x53\xc9\x43\x18\xb2\xb1\x0b\x19\x5d\xca\x64\xda\x49\xf9\xae\xaa\x1f\x00\x32\x20\x5b\x9d\x3e\xbf\x58\xe6\x00\xaf\xae\x78\x8e\xcd\x08\x5e\xda\x67\x8c\xbb\xb6\x17\xe3\x6b\x0b\xf7\xd4\x45\x41\x7d\xf6\xad\x5d\x0d\x6b\xf7\x5b\x12\x80\x15\xfa\x7d\xfd\x22\x10\x79\x7a\x75\x70\xd3\x11\xdb\xd2\x70\x26\xa6\x3e\x5d\xb1\xf5\xfd\x89\x6e\x15\x17\x58\x01\xa1\xb8\xd9\x3b\xae\x77\x51\x24\x6f\x35\x1d\xb5\x4d\xfd\xeb\x5c\xa0\xf0\x09\x88\xed\x93\x09\x75\x66\x85\x4f\xef\x50\x0d\xd4\x7f\x13\x39\x5f\xf8\x77\x91\x4c\x9c\x00\x67\x1f\xcc\xa6\x23\x62\x7b\xd2\x6b\x3b\x76\xb3\x2d\x55\x1b\xe4\xa9\x1d\xc0\x3f\xb2\x9a\xdf\x01\x9f\x82\xc9\x60\x02\x5e\xb6\xc5\xa2\xb9\xb8\x65\xa4\xb0\xf9\x19\x15\x33\x80\x3e\x78\x07\x15\xd0\x75\x6e\x21\xff\xea\x3a\xf3\xff\x6d\x6f\xa2\x33\x49\xc3\x77\x34\xa2\x22\xd8\x85\x1a\x55\xbe\x7a\xe0\x66\x72\x7b\x6b\xdc\x50\xa6\xa8\x98\xdb\x76\x3c\x11\xcb\x84\x29\x6f\xdf\xd5\x7d\xf7\x0b\x6c\xb2\x32\x92\xee\xb9\xd1\x2a\xb8\xf9\x4d\x6e\xb6\xdf\x56\xad\xf6\x72\xc9\xd4\x27\x34\x17\x41\x15\xa6\xa7\xb1\x12\x4d\x99\xbd\x1a\x97\x8c\x43\xfa\x67\xaf\x4d\xc8\x29\x08\x55\x32\x05\xc5\xa6\x9f\xa7\xb2\x00\x0d\xa6\x9a\xc1\x54\xe3\x2e\xc1\x60\xaa\xf9\x92\xa6\x1a\x4d\x0e\xea\x16\x1a\xeb\xfc\xe3\x98\x5a\x6d\xe3\x7c\xf5\x1e\xdf\x4c\x73\xbd\x62\xc5\xdd\xd0\x9a\x87\x34\xf9\xf1\xb0\xb9\x87\x58\x5a\x6e\x18\x8b\x2f\xb0\x08\x4f\x74\xce\xee\xd2\x3f\x7b\x52\x70\x54\x40\xbb\x88\xad\x0b\x96\xfe\x18\x00\x33\x65\x7c\x22\x22\xd8\x5d\xba\x92\x31\xa6\xbe\xc4\xb0\x44\xb4\x9c\x74\x29\x08\x01\xa7\x44\x23\x55\xef\xf1\x14\x0e\x49\xee\x54\xe5\x28\x92\x60\x45\xc0\x55\x95\x85\xfa\x13\x5f\xbf\xba\x17\x95\xab\xf2\x32\x93\x5a\x73\xb6\xa7\x81\x23\x1a\x3a\x0d\xf7\x1f\xf5\x15\x5c\xa8\x94\xd1\x50\xa3\xd7\x79\xab\x58\xb4\xf8\xe3\x6c\xef\x85\x31\x8c\xbd\xf4\x0d\x61\x42\x37\x73\xc7\xb0\x79\x42\x45\xb0\xb2\xeb\x74\xae\x87\x96\xc2\xf8\x29\x8e\x83\xc5\xd2\x6b\x96\x68\xd5\x0a\xae\xe9\xdd\x25\x83\x24\x71\xd7\xdc\x6b\xae\x29\x6f\x17\xbe\x66\x85\xe3\x32\x14\x61\x92\x8b\xf4\xd6\x54\x1b\xd2\xbd\x8c\x09\xf9\x5e\x2f\x47\x71\xab\xf5\x4a\x34\xa6\xda\x47\x8e\xf1\xd0\xe6\x8a\x5d\x26\x34\x60\x8b\x2c\xb2\xfd\x59\xd7\x75\xdb\xaf\xa6\x1e\x5d\x7d\x33\xf2\x6e\x72\x79\x92\x5b\x1c\xe5\x82\xbc\x7e\xf3\x4a\x59\xc7\xd6\x46\x0c\x35\x2b\x82\xfb\x9c\xa2\x3c\xed\x6b\x9e\x74\xd4\x12\x60\x73\xab\x37\x65\xcb\x30\x28\x0d\xc2\xfa\xbd\x2b\xae\x48\x4a\x93\x25\x94\x45\x99\x6f\x11\x51\x70\x1e\x31\x4d\x00\xa2\x0d\x90\xc0\x52\x53\x2b\x5d\x96\xc2\xa7\x1a\x3a\x75\xb4\x0c\x90\x39\x00\xba\x02\xfb\x02\x83\x9a\xdd\xfa\x63\x55\x44\x11\xd9\x9d\x57\x94\x55\xdb\x15\x67\x9e\x70\x2e\x2f\xee\xf2\x02\x4f\x56\x1b\x8b\xe3\x43\xda\x03\x23\x05\x40\x78\x5f\x8e\x09\x2e\x96\x66\x33\xb4\xed\x2c\x40\x4f\x7e\x48\x90\x4e\x58\xeb\x1e\x5b\xc7\x69\x35\x7d\x44\xd7\x94\x62\xaa\xd4\xad\x4c\x3a\x4d\x00\x17\x26\x67\x32\xe2\xd6\x7c\x94\xcf\xcd\xc0\xaf\xc8\x92\x09\x96\x50\x67\x91\x1b\xac\x00\x6d\xe4\x9f\x74\x5f\x3c\xd0\xf9\xbd\x25\x0b\xa5\x77\x31\xb4\x4c\x71\xc3\xb6\x20\x9a\x99\x2e\xec\x7e\x80\x4d\x1c\xcb\xf0\xb9\x2a\x3c\xb5\x1b\x14\x82\x9d\x77\x22\x4c\x6e\xd9\xac\x2f\xac\x1d\x31\x03\x13\xd2\x66\x80\x2a\x95\x66\xeb\x82\x64\x32\x26\xe4\x23\x2e\x71\x73\xa7\x84\x50\x2d\x28\xf1\xd0\x76\x71\xc3\x7c\x5b\xc1\x3e\x7d\x74\x96\xad\x76\xee\x9a\x85\xc8\xa9\x7b\x91\xb0\x05\x4b\x98\x48\xbd\x52\x4f\x5b\x15\x2a\xb9\xd1\x57\x5d\x76\x7b\x60\xca\xa5\x8f\xf4\x75\x7a\x84\xc2\x88\x3a\x80\x85\x39\x78\xd6\xa1\xa1\x27\xe4\xfa\xe2\xe4\xe2\x90\x1c\x85\x21\x91\xa0\xdc\xcf\x14\x10\x5e\x38\x2b\x6a\xec\xdc\x06\xf6\x41\x18\xdd\x27\x19\x0f\xff\x0f\x8f\xd5\x69\x17\x5c\xe5\x29\xc5\x7b\xe2\xeb\x0a\xc8\xd6\x36\xb7\x9e\x69\xb4\x5d\xe1\xc2\xc9\x04\xfc\x13\xf4\xa6\x58\x77\xaf\xba\x31\x44\x74\x41\xdf\xc0\x25\xf1\xb1\x25\x77\x1b\x80\x87\xa8\x47\xff\xab\x3e\x37\x78\xff\x5b\x4d\x31\x26\xd3\x3e\x0c\xa8\xc8\x33\xed\xca\x71\x64\x21\x8d\x4e\x76\xbe\x85\x8b\x96\xa5\x4f\xb1\x4c\xbc\x0c\xc8\x38\xe7\x40\x19\x61\x96\x80\xa2\x06\x78\x0f\x98\xa5\x45\xee\xd2\x03\xde\x1a\xfb\xd6\x1e\x53\x58\xae\x66\x7b\x7f\x9b\x65\xaf\x5e\x7d\x15\x4c\xa6\x9b\xb7\xf0\x2f\xf6\xf7\x43\x18\xcb\xeb\x81\x00\xe6\x9b\xfc\x83\xaf\xf1\x83\x43\xfc\x01\xbe\x82\x1f\xd0\x4e\x02\x29\x6e\x01\x96\xd2\x24\x1c\xa0\x2c\x5f\xf4\x4a\x81\xe0\x92\x63\x78\x08\x20\x4b\x84\x24\x77\x52\x9a\xb3\x48\x6a\xba\x0c\x22\xa2\x71\x68\x05\x5a\x07\xa5\x1c\x0a\x23\xbd\x9f\xc8\x02\x79\xac\x3a\x61\x19\x46\x7b\xcb\x8c\x68\x48\x53\x04\xd7\x60\x76\x57\xfe\xa3\x2f\x0d\xf7\x65\xa9\x09\x5b\xcb\x34\xe7\xac\xa5\x95\x45\xa9\xaa\x89\x03\xb9\x8c\x74\x0a\x3b\xb1\x8c\x36\xa4\x15\x15\xc6\x8a\x0e\x30\xe5\x5a\x0b\xe5\x89\x68\xc9\x68\xce\xd2\x5b\xc6\x84\xb1\xf9\x07\xd4\x18\xc5\x31\x63\xa5\x11\xbc\x5d\xb8\x21\xc1\x54\x2e\x2f\xfa\x57\xd8\x24\x41\x36\x23\xf0\x05\x99\xcb\x74\xa5\xef\xaa\x0a\x65\x08\x2d\x0b\xbc\xfb\x30\xd5\x44\x65\xac\x9b\x1e\x99\xf3\xd2\x2e\x50\x6a\x90\xb0\xef\xb7\xfd\xfb\x7e\x5b\xeb\x7b\x4c\xf4\x31\xf5\x0d\x60\xa6\x59\x78\xc6\x05\x12\xfc\xc2\xec\x65\xdb\x41\xc3\x73\x55\x1a\xc8\x2e\x84\x17\x6e\xb3\xf8\xcb\x48\xce\x69\x54\xa4\xba\x5c\x98\x7a\xa1\xf9\x71\xd9\x71\x27\xa2\x2c\x62\xa6\xd7\xb9\x15\xcd\xec\x0b\xff\x07\x8d\xcd\x95\xbc\xad\x85\x97\xa1\x7a\xc2\x50\x30\xdf\x74\xba\x65\xa8\xba\xc0\x94\xfb\xc4\x34\x9b\x96\x67\x7b\x9f\x14\x83\x82\x1e\xd3\xd9\x9e\xcd\xfa\xe5\xc2\x96\x8b\x3d\x7a\xf3\x9b\x9b\x61\x09\xd8\xb1\xee\xe4\xdc\x93\x98\x15\x1f\xec\x52\xe3\xba\x75\xca\x3b\xad\xc2\xa0\xda\xf5\xa8\x76\xcb\xa5\xd0\x9f\x42\xc3\xab\x47\x38\xc2\x11\xb6\x35\x3d\xaf\xfb\xd2\xa3\xed\xf5\x15\x6a\x77\x94\xbe\xce\xeb\xed\xa0\xfa\x1d\x54\xbf\x83\xea\xf7\xdf\x4f\xf5\xeb\x52\x88\x9e\x0a\xe0\x3a\xc5\x29\x9e\xdd\xb5\xc2\x0d\x56\xc8\x36\x6e\x6f\x4a\xf4\x76\xf1\xf9\x13\x5b\xc9\x57\x84\x50\x02\xcd\x28\x70\x60\xe7\x00\x6d\x23\x96\xb8\xe9\x7d\x3b\x67\x50\x0e\x0a\xbf\xf1\xde\xbe\x21\x26\x1d\xb5\x36\xee\x3e\x5f\xa0\xbb\x58\x4c\x53\x0e\x21\x6c\x5b\x94\xcf\x65\x14\x02\xd7\x8f\x18\x55\x66\x68\x2f\x27\xe6\x2a\xa5\x37\x0c\xea\xb4\x27\xcc\x82\x87\xa3\xd0\x62\x94\xc7\x51\x10\xb6\x8a\x50\xa9\x5b\x59\xbf\xcf\x37\x0d\x57\xcf\x11\x2c\x69\xf5\x37\x83\xd8\xea\xcf\xbe\x04\x2a\x00\xc9\x20\x5b\x34\xcb\x16\xf5\x84\x57\x45\x26\x8a\xd1\x92\x09\xc8\x75\x35\xcf\xb8\xde\x81\x30\x80\x1d\xfe\x05\x50\x26\xd0\xea\x43\x62\x10\x2e\xc5\x35\x5f\x33\x95\xd2\x75\x7c\x48\x44\x16\x45\xb3\x4a\x16\x04\xb8\xe6\x00\xce\x9e\x44\x7a\x29\x4a\x85\x5f\x39\x49\x59\x0a\x01\xa6\xfa\xbe\x2e\xc3\xd4\xc1\xac\x8a\x31\xd5\x16\x83\x24\x33\x48\x32\x83\x24\xf3\x6f\x27\xc9\x54\x49\x45\x3f\x61\xc6\x4f\x80\x8a\xe7\x1e\xf2\x4c\x44\x95\xea\x11\xbb\x87\xcd\x48\xc8\x82\x88\x5a\xeb\x2e\x20\x51\x1f\x5c\xbd\x4e\xc9\x3a\xcf\xf7\xb1\x96\x82\x37\x98\xd1\x50\x03\xc1\x95\xab\x20\xc4\x63\x09\xf6\x50\xf4\xbd\x43\xe5\x15\xdf\x58\xd7\x39\xbd\x23\x65\x92\x36\xe8\xc4\xe9\x5c\x66\x29\x09\x58\xa2\x51\xa7\x77\x1b\xc4\x8a\x94\xa1\xda\xc9\x23\xae\x5d\x09\xdf\xe2\x98\x78\x6f\x3b\x27\x37\x08\xf5\x9a\x39\x17\x7e\x4c\x42\x23\xe3\x5a\xb8\x9b\xe8\x84\x27\x6e\x5a\x4a\x17\xd6\x01\xf5\xa7\xfa\x27\x79\xac\x15\xfc\x48\x68\x6a\x9c\xb8\xbb\xb6\xa8\x7e\x0a\x5d\x77\x7e\xfa\x31\x01\x24\x79\xe5\x16\xcd\xa9\x76\x45\x12\xb6\x48\x98\x5a\x79\xc5\xdd\x8f\x18\x98\x65\x7a\xb4\x60\x71\x05\x0e\x92\x21\xf5\x59\xa8\xee\xef\x8d\xd1\x78\xea\x0b\x79\xad\x01\x93\xb5\x73\x8f\x33\x73\x19\xa8\x9c\xa3\x5c\x88\x92\xa5\xde\xc9\xd5\x8f\x6a\x73\x39\x97\x68\x91\xc3\x23\x28\x18\x0b\x19\x5a\x4c\xcd\x01\x52\x5c\xef\x24\x0e\x2a\x4b\x83\x72\x32\xdf\x9a\x7e\x77\x70\x89\x59\x32\xd1\x19\x8e\x77\xa4\x1b\x91\x95\x8c\x42\x85\x1f\x58\x20\x64\x61\xff\xdc\xdd\x0c\x3b\xe7\x49\xf8\xdd\xd7\x7d\x0c\xb0\xef\x26\x97\x27\xdf\x7d\xed\xfa\xab\x16\xf2\x41\x19\xb7\x19\x90\x09\xdd\xf3\xd7\xf7\x37\xc0\x46\x54\xa5\xef\xa4\x6c\xf2\xfd\xf0\x82\x78\xe6\x7c\x63\x30\x95\x47\x98\x6b\x90\xdc\x3e\x9b\xbb\x24\xc8\x86\xd1\x71\x25\x8d\x88\xcc\xd2\x38\xf3\xa9\xa2\xed\xd3\xc7\xba\xa8\x87\xbe\x64\xa5\x50\xb3\x5d\x67\xe6\xf9\xbc\x69\x92\xb6\xe9\x2f\x30\x51\x70\x76\x4a\x26\x27\x7d\x67\x76\x09\xed\xc9\xe4\x24\x0f\xba\x07\x78\x1e\x06\x44\xd3\x2d\xd6\x0b\x01\x24\xcc\xb2\x24\xc1\xe6\x20\x38\xa1\x6c\xed\xe5\x6f\xbb\x80\xb1\xf1\x4a\xfb\x8d\x80\x58\xa9\xdf\x01\x23\x04\x30\x1e\x02\x45\xbb\x7d\xd7\x10\x80\xb7\xbd\x09\xc0\xdb\xdd\x08\xc0\xdb\x81\x00\x38\xd3\x19\x08\x80\x67\x66\x03\x01\xf8\x25\x09\x40\xdb\xdb\xf9\xb2\xd3\x13\x56\x83\x88\x5b\x10\xe4\x66\xfd\x67\xa3\xec\xdc\x71\xe6\xd1\xc0\x7c\xaa\x52\x3a\x8f\xb8\x5a\xb1\x9e\x62\x89\x5e\xbc\x54\xa6\x34\xb2\x16\x6a\xb9\x40\x5b\x3b\x2b\x7a\xd2\x33\x21\x8a\x29\xd4\xb7\xb5\xa1\xa9\xc1\x47\xd8\x0f\x5f\x2f\xaa\xd9\x00\xdf\xdb\x27\x82\xef\x5c\xa6\x8f\x87\x42\x21\xc5\xe8\x8b\x80\xf9\x30\x4c\x3e\x05\x98\x10\xff\xd2\x0f\x7d\x53\x6c\xea\x32\x46\xc0\x9e\x75\x61\x55\xfd\x04\x75\xd2\x19\xa7\xdc\x70\xe1\x01\xbf\x82\xb2\x8a\x23\xe7\xc1\x39\x0c\xcd\x14\xa4\x1b\xaa\x5e\xec\xba\xc5\x1f\xac\x61\x06\x0d\x5e\x61\xb7\x2b\xa9\x58\xa1\x62\x27\xb7\x8c\x50\xbf\x57\x4d\xf1\xe4\x8a\x8c\x16\x7a\xdd\x8f\x62\x13\xbc\xd3\xf5\x9f\xc5\x15\x47\x9f\xe9\x9c\x85\x24\x24\x61\x54\x49\x81\xa5\xb0\x31\x5f\x6a\x1b\x3b\xeb\x0d\x57\x07\x4b\xab\xc2\x05\xd0\x18\x65\x02\xd0\x65\x3c\x11\xd8\xcf\x23\xc0\x03\xad\x7a\x83\x73\xbd\x8d\x99\x63\x82\x2b\x9c\x26\xad\xdb\x5b\xc9\xe5\xbe\x7d\xb5\x37\x9c\xe6\x5b\x76\x94\x9a\xba\x13\x6b\xa6\x56\xfb\x1a\xfb\xfa\x2d\x13\x84\x99\xd2\xeb\xd6\xc9\xa8\x2d\x15\x02\xc1\x34\xef\x23\xcb\xc3\xe0\x44\x19\x95\xf9\x43\x11\xd5\x25\x7f\x77\x26\x16\x40\x4a\xd4\x8b\x42\x22\x25\x7a\x5b\xa1\x44\x6f\x07\x4a\xd4\x31\x83\x81\x12\xed\x06\xd7\x40\x89\xcc\xf3\x9f\x44\x89\x5a\x5c\xcc\x47\x3e\xe1\xbd\x5f\xb3\x5a\x75\xff\xa2\x59\x55\x94\xed\xdd\xd2\xd3\x67\xdb\xdc\xf5\xe9\x40\x45\x7c\xa7\x2f\xc9\x59\xd1\x14\x4d\x83\xa9\xb5\x9b\xd7\xed\x82\xa0\x0f\x49\xa0\x85\x0f\xdb\x10\x19\x58\xd3\xc4\x1b\x53\x21\x1c\xd8\xc2\x82\x07\xfa\xe5\x7c\x00\xf0\x65\xf1\x75\x79\xf9\xfe\xf8\xab\xaf\xbe\xfa\x03\xe8\xdf\x31\x49\x22\x04\x4b\x7d\xba\x3e\x6e\x51\xd2\xeb\x31\x46\x7e\x20\x45\x16\x99\xfa\x18\xf5\xba\xc7\xa4\x63\xd3\x61\xcc\x63\x17\x3e\xe1\xee\x6f\xed\x50\xca\x7c\x54\x94\x99\x75\x6c\x37\xed\x77\xe1\x07\xa9\xc0\x71\xd4\x7e\xb2\xfe\xa5\x69\x5b\x13\xf6\x0d\xe8\x4f\xc4\x58\x61\xd8\x36\xce\xda\x1c\x62\xda\x07\x41\xbd\xd0\x94\x03\x98\x72\x81\x45\x7a\x7b\x93\xdc\x93\xe2\xa3\x3c\xc0\x48\x03\xfc\x08\xb4\x7f\x49\x53\x76\x4b\xdb\x62\xb5\x2a\xb0\x7c\xc0\x0f\x72\x9f\x6d\x67\x42\x8f\x00\x4e\x5e\x63\x63\x07\xe1\xc3\x7e\xe2\x03\xe9\xe1\x10\x45\x8c\x26\x82\x85\xef\x13\xb9\xee\x0f\xd3\x59\xf1\x51\xb1\xeb\x5c\x6b\x74\xc2\x96\x34\x09\x5b\x07\x26\x48\xe4\x12\x13\x1f\x09\x0b\x6e\xc3\xa4\x9b\x7c\xeb\xec\xd3\x6b\x2b\x92\x7e\x92\x5e\x6d\x72\x93\x85\xf1\x6f\x47\x49\x00\xc3\x16\x3e\x32\xb5\x82\x8a\x25\xc8\x73\xf7\x49\x53\x82\x28\xf7\xa9\x08\x8d\xa8\xf9\x34\xf1\xa1\x4c\xa4\x24\x53\xce\xdc\x5b\x27\x4c\x7a\xaf\x27\xc9\xe3\x1c\xae\xbb\xc4\x9e\xda\xcc\x61\xc2\x36\x4c\x11\xfd\x55\x70\x85\xa8\x59\x1e\xae\xec\x7e\xe9\x9e\x3c\x84\x35\x3e\xd6\x9c\xba\x65\x13\xf2\x50\x41\x8f\x3b\x8b\x54\x78\x7a\x82\xce\xb9\xc1\x15\xc0\x99\xab\x4c\x6e\x71\xbf\xeb\x3d\x22\xe4\x2f\x2e\x8c\xe5\x5c\xab\xd7\xbd\xd0\x70\xad\xfa\xc5\x70\xe0\x5a\x2d\x13\x19\xb8\x56\x0b\x40\x03\xd7\xaa\x3f\x03\xd7\x1a\xb8\x56\x53\xab\x81\x6b\xb5\x7e\xfe\x9b\xf4\xec\x7f\xaa\x70\x41\x93\xd9\xc4\xa1\x5c\x4f\xe2\x74\x6f\x12\xa1\x16\xa3\xe0\x5b\xc7\xed\xbe\xd6\xc2\xe3\x78\x5f\x87\xd5\xac\x4b\xe1\x79\x5f\x6b\x32\xfb\x52\x25\x84\xea\x33\xa8\x14\x11\x32\xf9\x68\xf3\x2c\x46\x7e\xdf\xd6\xc1\x9f\x7f\xf0\xe7\x77\x97\x60\xf0\xe7\xff\x72\xfe\xfc\xb5\x13\xdc\x56\x41\x08\x3f\x9d\x7b\x38\x58\x73\xc6\xa8\x36\x27\x7e\x20\xa1\xfe\x33\x5e\x87\xd4\x6d\x6c\xcd\x1d\x9b\xc2\xa3\xc7\x28\x32\x4d\xf0\x61\x0e\x8d\x8f\x8d\x6a\x22\x90\x09\xd1\xe2\x27\xef\x67\xd3\xa6\xcb\x0f\x9f\xbc\xde\x57\x3e\xbc\xea\xa6\x16\x56\xf8\xb7\x91\xb3\x1a\x81\xeb\x31\x7c\x83\x84\xe7\x1b\x1e\x84\x1d\xb3\x68\x4e\xf0\xc3\x83\xa0\xc8\xab\x67\x5e\x32\x1a\xfa\xae\x58\xe5\x4b\x5e\xa9\x75\x5e\x61\x38\xcc\x80\x44\x28\xbe\x14\x10\x2b\x22\xd2\xa2\x5f\xb2\xe6\xcb\x52\xad\xbc\x0a\x6c\x12\x3e\xa3\x91\x29\x18\x14\x4b\x01\x17\x6e\x95\x05\x2b\x42\x15\x79\xcf\x22\x7e\x67\x12\x5d\xe4\xe9\x69\x6e\x29\xd7\xa7\x7c\x21\x1b\xf2\x87\x04\x01\x53\xca\x52\xa8\x1c\x92\x5d\x33\xea\x6d\x68\xc2\x69\xb7\xa7\xf9\x77\xd8\xac\x08\x4a\xc1\x08\x04\xf3\xb5\xb3\x97\x9d\xaa\x10\x10\x57\x32\x24\x8a\x78\xa0\xe4\xb7\xd0\x7b\xe3\xc9\x8b\x46\xc2\x0e\x6c\x2d\x1b\x59\x6f\x51\x97\xfc\x3c\xb0\x56\x25\xbf\x7a\x93\x2f\x26\xf9\xe1\x29\xdb\xa9\x7e\x24\x7c\x32\x48\x7d\x83\xd4\x37\x48\x7d\xbf\xb4\xd4\x57\xa7\x3f\x5d\x75\x23\xf1\xbc\xdf\xb7\x72\x64\x14\xc9\xdb\xc9\x74\x32\x9d\xd2\xe0\x86\xa5\xea\x7d\x22\xd7\xdf\x9b\xb2\xf9\x9d\x36\xec\xe7\x47\x6d\x5f\xdb\x98\xfc\xc2\xd1\x04\x20\xf5\x31\x79\x53\x5b\x25\x24\x94\x24\x59\x04\xc9\x6c\xc3\x44\xc6\x58\xfd\xbe\xa8\x58\xcf\x42\x92\x26\x74\xa1\x6f\xab\x58\xe3\xc5\x0e\xe5\xeb\xb3\x28\xcc\xb5\xa0\x91\xda\xbd\x32\x17\x60\x06\xca\xf9\xdf\x1f\x35\x8d\x9f\x3f\x02\x6e\xa0\xef\x5f\x0c\x39\xb7\xea\x2a\x09\x4e\x54\x7a\xbc\x62\xc1\x4d\x27\x32\xae\x58\x6a\xf4\x97\x23\x47\x57\x3e\x0a\xf4\xc7\x44\x0a\x72\xf4\xfd\x15\x39\x3d\x7e\x93\x47\xa8\xaa\x31\x39\x32\xf2\x8c\x0f\xfa\x4d\xb9\x2c\x24\x96\xab\x98\xed\x9d\xc8\x73\x99\xae\xf4\xf1\x84\x62\x4d\x58\xe8\xcd\x56\xa3\x3a\xc1\x08\xd0\xd9\x5e\x47\x49\xd3\xbc\x13\x1f\x4e\x98\xc8\x7c\x4a\xf9\x51\xf1\x95\xef\xa5\x01\xc4\xf7\x99\x01\x6a\x27\x29\x7f\x1e\x2f\x8e\xa5\x10\x2c\x80\x58\x9e\xa2\x26\x06\x17\xcb\xbe\x15\xf1\xde\x4d\xdf\x77\x74\x81\x4e\x3a\x5c\x90\x77\xd3\xf7\x64\x2d\x43\x7f\x3d\x49\xff\x2e\xc6\x65\x8c\xa2\x5c\xda\xd0\x03\xe9\xf5\x4e\xf9\x9a\x11\xbd\x27\xc9\xdc\x56\x2d\x69\x4c\xbf\x67\x3e\xf3\x7c\x83\x1e\x41\xe8\x91\x95\x9b\x60\x56\x52\x41\xb4\xaf\x16\xc8\xe7\x70\x4a\x7c\x9d\x26\x8c\x06\x2b\xb7\xa0\x8a\x29\xfc\xa2\x4c\x61\x55\xc2\xd7\x71\x22\x37\x2c\x8f\x43\x86\xab\xb7\x08\x60\x83\xc5\x32\x1c\xa5\x72\xd4\x56\x52\x2a\x9f\xaa\xc2\x89\x61\xc1\x15\xe3\x8a\xe8\x84\x21\x63\xd8\xac\x86\x3d\x64\xf3\x0c\x8b\xcc\xc6\x59\x12\x4b\xa5\xb7\x7e\xfb\x06\xbd\x57\x99\xc1\x79\xbc\xd0\xd7\xbd\xc9\x82\x06\x6c\x6a\xca\x74\x76\x6c\x92\x77\xd3\xf7\xd5\x4f\x50\x9a\x48\x18\xc8\xb8\x84\xdd\x69\x71\x00\xc4\x3c\xb8\xd2\xd9\xcd\xe0\x25\x62\x70\x8d\xca\x8d\x6d\xf6\x2a\x68\xa4\x38\x9a\xa6\x7a\x5d\xf4\x56\x8b\x13\xb9\x4c\xe8\x1a\xc4\x37\x2e\x88\x4c\x42\x48\x7b\xea\xc5\x36\x4d\x83\x55\x4e\xf3\x52\x79\x90\x0b\x1f\x82\xa5\x9a\xfa\x8d\x4d\xc6\x22\xc1\x58\x08\x1d\xae\xf1\x8b\x15\x73\x20\xf1\xa2\x58\x4f\xc7\x96\xfd\x32\x64\xb4\x20\xae\x90\x54\x40\x6e\x58\x52\x2d\xf1\xd5\xa3\xd3\x15\x15\xa1\x5e\x7f\x11\xc8\x35\xc8\x5f\x39\xf4\x60\xea\x45\x5f\x30\xcc\xb6\x69\x36\x26\x4c\x4a\x66\xa9\xe2\xfe\xa2\x94\xae\x76\x87\x90\x49\x7e\xad\xd6\x52\x54\x31\xdf\x7c\x16\xce\x12\xbc\xc8\x54\x46\xa3\xc8\x6b\x62\xd7\xf7\x90\x10\x94\x40\xe3\xf1\xf8\xe5\x8e\xd9\x00\xf4\x66\xc3\x8d\xfe\x49\xc4\x09\xdf\xf0\x88\x2d\xfb\x11\x25\xcf\x67\xfb\x84\x2f\x6c\xb5\xcd\x7d\xbb\x6d\x98\x89\xc0\xbc\xd1\xe7\x38\x1a\x67\x4e\xfb\xcf\xf3\x78\xf1\xd9\x9c\x33\x2f\xf3\x50\x5b\x15\xa4\x91\x7b\x1a\xdd\xcf\x21\x2d\xac\x5c\xe8\xbd\x68\xb7\x0f\x13\xca\x54\x1f\xa0\x69\xa9\xad\xaf\xf7\x4c\x69\xa9\x38\x40\x29\x16\x75\x17\x66\x27\x3d\x7f\xae\x90\x98\xd2\x18\x97\xd8\x34\xe2\x42\xe9\x1b\x0c\x14\xa6\x26\xf2\xd6\x6b\x41\xae\x9f\x0c\xbd\x8a\xcc\x94\x6c\x2a\x06\x78\x70\x39\xd2\x79\xbc\xd8\x81\x87\x9c\xda\x65\x29\x96\xc8\xac\x10\x08\x2d\xb6\xf8\x82\x86\x5e\x4b\xc8\x71\x44\x85\xdf\xaa\xfa\x50\x71\x44\x83\x7d\x97\x5e\x4b\x5b\x13\x4f\x0a\xb1\xa6\x49\xb7\x5c\xa2\xe7\xe0\xf9\xae\xc4\xf7\x0a\x26\x47\x7d\xa0\x7f\xf5\x66\xce\xf5\x49\x4b\x6e\xf2\x0c\xae\x8a\xa5\x04\xef\xdc\x96\x1b\xe0\x29\xa6\x82\x30\x5b\x2a\x0d\xaf\x44\x0d\x94\x8d\x9a\xdc\xbb\x86\x08\x8c\x71\x1f\xc2\x18\x26\xa7\x49\x66\xd3\xa1\x6a\xc8\x20\x73\x6b\x8c\x52\x26\x91\x8b\x46\xe2\x53\x00\x04\xd5\x37\xc0\xb0\x1a\x3a\xc5\x08\x91\x89\xda\x54\xb0\xc6\x0c\xde\x60\x12\xd5\x3b\x30\x4e\x6c\x41\x84\xcb\xe9\x7b\x02\xc2\x9c\xbb\x01\x5f\x35\x2f\x63\x43\xf4\x19\x2e\x23\x20\xc8\xac\xc8\xc7\x1e\xf9\x4f\xcc\x2a\x56\x3f\x6b\x58\x44\x3d\x35\x67\x65\x7c\x73\x73\x49\x6e\xc9\x56\x06\x89\xed\x0d\x5d\x7e\x61\x92\xee\x5b\x82\xed\xd4\x77\xf4\x16\x0d\xd1\x18\x37\x56\x69\x2d\xa9\x4b\x9b\x3f\x38\x17\xd3\x35\xf5\x5e\xc0\xde\x49\x25\x99\xed\x5d\x67\x42\xb0\x68\xb6\x87\xf9\xaa\xe7\x32\xf5\xe6\x6d\x36\x77\x67\x80\x20\x61\x2a\x96\x42\x9f\x39\xc3\x54\xb8\x22\x29\xf4\x82\x03\x56\x92\x16\xc3\x78\x5e\x02\x69\x41\x38\xb9\xba\xd4\x92\x34\x7e\x87\xe3\xf8\xba\x9e\x67\xa9\x69\x53\x1e\xbf\x41\xbd\x0f\x8e\x16\x21\x4f\x58\x90\x46\x5b\x6f\x3a\x65\x0d\x99\xb0\xe3\x9b\xf5\x2b\x9a\x78\xd9\x15\x24\xa9\x8e\x63\x46\x13\xe5\x96\x7d\x99\x4c\xed\x25\x99\x63\x75\x3c\x68\xf9\x47\xab\x76\x02\x19\xb2\xe1\x5c\xc7\x2c\x59\x73\xa5\xf8\x86\x91\xb3\x37\x8e\x44\x51\xec\x6f\x5c\xa1\x5d\x4b\x58\xcf\xe3\x85\x96\x3f\xa7\x89\xbc\xdb\x9e\x1a\x25\xc9\x55\xa4\xb7\x54\x4f\xc2\xfb\x6e\xfa\xbe\xbd\x03\xff\xc6\xf7\x4b\x65\x8e\xd4\xfe\x5c\x11\xb6\x9e\xb3\x50\x6f\xcf\x9b\x6c\xce\x46\xb1\x1e\xc1\xe8\x95\x15\x29\x0f\xd5\xec\x55\xd1\x45\xa7\x73\xd8\x27\x71\xaa\xc1\x55\xc7\xba\x61\x16\xef\xc0\x76\x3a\xba\x28\xb1\x23\xc4\x85\x6f\xf2\x88\x1e\x87\x5d\xc5\x89\x44\x5d\x7e\xb4\x25\x81\xee\x91\x64\x58\xe0\x28\x8b\x55\x9a\x30\xba\x76\x2f\x0e\x05\x86\x9e\x3f\xf7\x27\x69\x37\xb0\x91\x60\x45\x39\xdc\x07\xae\x50\x30\xb3\x35\x18\x73\x08\x17\x2e\xba\x4d\x02\x70\x63\x03\x7b\xaa\xbb\x40\x8e\xc1\x8f\x5c\x5c\x6d\x45\x80\x69\x98\x76\xc2\x7d\xe9\xcb\xfd\x06\x62\x9b\xfa\xef\x76\xa6\xa2\x3d\x04\x88\xe4\x29\xe7\x51\xdf\x97\xeb\x6d\x73\x81\xa1\x50\x50\x3f\x77\xb6\xa8\xaf\xdb\x02\x8d\x63\x42\xce\xe4\x2d\x4b\xac\xa6\x6c\xa9\x8f\x71\xc2\xc2\x2c\xc0\xc2\xef\xa3\x2c\x06\xc5\xb0\x08\x74\xd3\x3f\xf3\xe5\x2a\x6f\xeb\xa7\xb2\xfa\x4b\xab\x58\x9f\x7e\x22\x99\xa2\x4b\x06\xf9\x1a\xb4\x84\x0d\x6e\x49\x31\x59\xcb\x04\xc9\x79\x89\x4a\xbc\x56\xf7\xa0\x10\x67\x72\x79\xc6\x36\xcc\x57\x90\xa3\xb6\x22\xb6\x6d\x09\xeb\x50\xb0\x3f\x82\x9f\x6d\x46\x05\x47\x84\x6c\xa0\x05\xf9\x7d\xbf\xc0\xfd\x1a\xc9\xf1\x85\x55\xb1\x5c\x2c\x16\xa8\x5c\x99\x88\x85\xd4\xff\x42\xdd\x8a\xbe\xc4\xce\xf6\x9a\x2f\xf3\x91\x5c\x62\x5d\x54\xb6\xe6\x69\x5a\xb0\x23\x3d\x58\x9a\xd0\x80\x91\x98\xc7\x6c\xdf\x1a\xfb\xb4\x50\x0e\x82\x2d\xea\x0f\xd6\xeb\x86\xb2\xd8\xb3\xbd\x34\x20\xec\x8e\x05\x1a\x67\x78\x95\x2e\xe9\x77\xc8\xc5\x62\xf1\xf7\xf1\xee\xe8\x9f\x5e\x9d\x1f\x5d\x4f\x35\x6b\xf7\x2c\x00\x15\xdb\x0b\x5f\xd9\x9e\x51\x57\x64\xfd\xa8\xc3\xcf\xac\xb6\xb2\x05\x18\xc5\x8d\x27\xa1\x62\xc9\xdc\x0a\xd7\xb7\xf0\x5b\x28\xd7\xfe\x8b\x5c\xcc\x83\x1b\x42\xb1\xc6\x05\x3a\xd4\x25\xcc\x18\x05\x50\xdf\x0f\x6f\x02\x19\x45\x5c\xdf\xe4\x8d\xa8\x99\x5b\x37\xfd\x0a\xc9\x5c\x60\x64\xf1\x8a\xad\x59\x42\x23\x03\x17\x55\x79\x6d\x79\x2d\x15\xbe\x3f\x26\x6f\x5f\x7d\xf3\x96\xbc\x78\xfd\xea\xcd\xd7\x3f\xff\xf8\xff\xbc\xfd\xe6\x9b\xaf\xbe\x79\xd9\x54\xe4\x3c\x86\xca\x3b\x74\x1e\x6d\x4b\xc2\x57\x75\x10\x95\x27\x4b\xd1\x3b\x43\x0a\x22\x63\x96\xd0\x26\x39\x55\x6d\x55\xca\xd6\x6a\x4c\xce\xb8\xc8\xee\xf4\xa7\x8a\x7c\xf5\xe6\xf7\x6f\xbf\xd5\xe0\xbc\xfa\xc3\x1f\xfe\xb0\xaf\xf1\x18\x31\xac\xb6\xa3\xc8\x5a\x2a\x2d\x96\xe4\x02\xc4\xd1\xf9\x91\xaf\x5b\x3b\x4b\x9c\xf6\xd7\x7f\x78\xfd\xcd\x1b\x3b\x3f\x1b\xb4\xa6\xc9\xb8\x60\x7a\x3f\xd3\x84\x47\x5b\xbd\x08\x89\x9c\x47\x6c\x8d\xeb\xe0\x2f\xed\x81\xfd\xc9\x0d\x4b\x22\x7d\x4d\xcc\x0f\x41\x3e\xc7\x62\x42\xff\x1f\x7b\x6f\xbf\xdc\xb6\x71\x35\x0e\xff\xff\x5e\xc5\x56\x7e\x66\x64\x3f\x23\x52\xb6\x93\xb8\xa9\x3a\xfd\x43\x91\x14\x87\x53\x5b\xe2\x4f\x92\x93\x76\xc2\x3e\x9e\x25\xb0\x24\xf7\x15\xb8\x8b\x02\x0b\xca\x6c\xda\x77\x72\x1b\xef\x4c\xae\x2e\x57\xf2\x9b\x3d\x67\x17\x58\x80\xbb\x00\x28\xcb\x69\xd2\x07\x9c\x69\x63\x91\xc0\x7e\x9c\x3d\x7b\xbe\x3f\xbe\x2a\x3b\x5d\xd8\x68\x56\xfd\x6e\x48\xf4\xe4\x42\x0b\xa8\x7c\xc3\xdc\xeb\xf1\xf2\xf9\xf3\xe7\xcf\x4f\x5e\xfe\xe1\x0f\x7f\xf8\x83\x8f\x48\xa5\xc6\x50\x44\xfe\x67\xfc\xdf\xbb\xbf\x7e\x18\x55\xcd\x90\x46\x5c\xa8\x91\xcc\x46\x88\xda\xfe\xa4\x39\xe0\x83\x13\x50\x76\x7b\x49\xf5\x67\xf5\xe7\x43\xb6\xc6\x95\x94\x77\xae\x31\x20\xc0\x8e\x95\x4c\x47\x48\x0f\x1b\x8c\x59\x23\x12\xaa\xe0\x1a\xba\xc6\xc6\x6e\xe2\x54\x94\x4c\x0d\x70\xbd\xf6\x27\xfd\xbe\x26\x80\xf3\x2d\xc8\x9e\x22\xde\x1d\x61\x2e\x95\x92\xeb\xb1\x55\xf2\x4d\xb8\x49\x4e\x17\xcc\xb6\xfe\xf0\x22\xad\xad\xad\x97\x66\x6c\x03\x11\x14\x95\x09\x41\x8f\x6e\xf4\x49\x0c\x88\x9d\x6f\x53\x9a\xe7\xa6\x6d\xfd\x56\x16\x24\xbf\xe7\xca\xdf\xe5\x45\x49\xb3\x50\xc3\xa7\xe7\x8c\xe4\xd8\x4c\xc3\x2c\x17\x5b\x4e\xe1\x14\xb6\xd7\x1c\x42\x09\xe3\x3a\xbc\xd8\x05\x02\x22\x18\x49\xe7\x5b\xad\xbf\x27\xe8\x58\xcc\x64\xb1\x5c\x35\x52\x19\x61\xe4\x23\x9c\xe6\xde\x74\xd1\xf7\x8d\x69\x1e\x4f\x65\xc2\xa3\x2d\x4a\x67\x73\xe6\xec\xb4\x42\x61\x04\xec\xbe\x2c\xb6\x64\x70\xe7\x19\xdf\x78\xfb\x71\xb6\x57\x5f\x9f\x17\x4b\x63\xaa\x7a\x23\x97\xe7\x99\x4c\x53\x8d\xf6\x7b\xca\x61\x30\xcc\x5b\xb6\x96\xd9\x76\x9a\xc9\x05\x4f\xd8\x94\xaa\xd5\x43\xd6\x72\xc3\xd7\xe0\x01\x3a\xa3\x49\xf4\x3a\xa3\xe9\xea\x1b\x2a\x96\xa7\x0b\xf5\xb0\x9d\xd9\xd1\xce\x2d\x90\x1e\x3e\x1a\x1c\x92\xd5\x1c\x6e\xe5\x37\x32\x57\xa7\x51\x20\x15\xa5\x7e\xfb\xcf\xc3\xef\xba\x94\x00\x4c\xaa\x1a\xa5\xf3\x80\x29\xa5\x34\xb0\xea\x47\x97\xd2\x5e\x1d\x5a\x59\x44\x2b\x4f\xb5\xac\x8c\x20\x5c\xe5\x2c\x59\x90\xa7\x74\x11\x88\x53\x03\xf2\x60\xc6\x5e\x71\xc3\x9c\xcb\xa1\x18\x2a\x9b\x88\xbf\xcf\xc6\xe4\xab\x6d\xd9\xe9\x07\x51\xdb\x37\xa4\x69\x15\xef\x75\xe2\x95\x43\xe7\xbe\x65\x02\x9b\xf0\xf7\x47\x2b\xa9\xdd\xec\xe0\xfc\xfa\x6a\x3a\x3b\x80\x78\x25\xcd\xe8\x0d\xb5\xb8\xa7\xa6\x07\x2b\x34\x0f\xcd\xe5\x1a\xaa\x27\xd0\x24\x69\x53\xe3\x61\x6d\x2e\xe0\xf4\x6a\x8e\xd0\x72\x00\xc5\x04\x68\x46\xd7\xcc\x98\x4c\xae\x2f\x6e\xdf\x5d\x5f\xea\x51\x4f\xcf\xce\x2e\xa6\xb7\x63\xf2\x2e\xf7\xde\x7a\xf3\x20\xc7\x85\x41\xff\xa6\xad\x2c\xc0\x28\x5a\xa7\x49\xce\xa6\x26\x97\xd3\x77\xb7\xb3\x03\x24\x53\x7f\x6c\xa1\x25\x40\x44\x2c\x19\x56\x96\x8e\x36\x09\x3d\x55\x38\x92\x69\x13\x36\x3b\xc0\x35\xf9\x7b\x08\x59\x93\x9b\x39\x91\xc6\x62\x88\x34\x44\x7c\x45\x73\x08\x86\xc3\x5e\x0c\x69\x26\x6d\x40\x9b\x3d\x5c\xdf\xd8\x7e\x54\x02\xd0\x19\x30\x82\x9d\x43\x94\x21\x5c\x34\x49\xac\xb2\x6e\x17\x16\x3c\xb9\xd2\xe6\x44\x00\xbf\x7d\x6b\x0a\x2d\xa0\xdd\x7a\xab\x49\xe1\xde\xb4\x98\x6d\x78\x84\x09\x73\xd3\x4c\x2a\x19\xc9\x4e\xb5\x07\x64\x54\x37\xb4\x08\x73\x44\x52\xf3\x3a\xa1\xb1\xb1\xb1\x19\x85\x67\xcd\x62\x33\x8d\x57\xe6\x82\x54\xbc\x23\xcd\xbd\xec\x25\x05\x24\xb6\x6c\xe7\xfa\x76\x7a\x7d\x75\xfb\xfe\xab\xab\xab\x5b\xd4\x92\x12\xb6\x50\x64\x9e\x50\x71\x17\xb4\x7f\x04\x94\x00\x67\xaf\x37\xfb\x34\xec\xba\x35\xfd\x53\xd5\x4e\x9b\x2b\x6b\xed\x92\x62\x9f\xcd\xd6\x28\x92\x67\x50\x48\x2b\xb2\x9b\x3c\x22\x09\xa3\x1b\x13\x2d\xe4\xd5\xbb\x41\xf0\x02\x83\xf4\x4a\x4a\x23\x39\x37\x46\x7c\x40\x8f\x5f\xe3\x9e\x39\x93\x42\x68\x1d\xf1\x6e\x22\xa0\x20\x71\x28\xe2\xa0\x95\xd7\x5a\x6c\xbe\xb6\x35\x6a\xce\x59\xe2\x4d\x42\x6c\x5b\xd0\xce\x20\x61\x9b\x55\xfb\x62\x8c\xb1\xfa\x52\xc6\x0c\x1a\x3a\x74\x1d\xff\x85\xfb\xc2\xd9\xe4\xfc\x5a\xbf\x84\x5a\x5c\xa2\xff\x25\x17\x44\x7f\x7b\x08\xaa\x80\x1d\x7d\x24\xa4\x18\x61\x3c\x24\xd4\x54\x69\xf1\xcb\xae\xe9\xd6\x9e\x17\x5a\x75\x4b\x26\x04\xce\x00\x6c\xf4\xcb\x1c\x63\xb2\xf9\xd5\xaf\x1f\xda\x48\x54\x4d\x5c\xa3\xaa\xfc\xb8\xaf\x1e\xdd\x27\xa8\x98\xbe\xa0\x3c\xd1\xf2\xf5\x44\xcc\x65\x21\x62\x2d\x36\x84\x34\xf9\xba\xc4\xf1\x75\xe0\xc5\x3a\x9c\xdf\x9d\x4f\x8f\x6f\xcf\xa6\x68\xf8\xf7\xee\x5e\xc4\x70\x18\xc6\x5f\xe8\xd8\x17\x91\xc3\xfa\x5c\xbf\xc0\xcb\x4b\x0e\xef\x1b\x55\x0a\xc2\xb3\x8c\xe5\xa9\xa9\x62\x5f\x35\xdc\x2d\x32\xae\xb6\x25\x7b\xb0\x84\xc2\x74\x8d\xd5\x7c\x7d\x23\xb9\x97\xc3\xd0\x28\x82\x5a\xf1\xc0\x38\xa2\x02\xbb\xae\xcb\xc5\x82\x50\x5c\x0f\x08\x15\x7a\xb5\x59\xc6\x22\xd5\x88\x2f\x23\x5f\xfb\x33\xf0\xe6\x34\xba\x1b\xd5\x7a\x01\x1d\xd9\x3c\xbe\x92\x3a\xdb\x1e\x87\x55\xef\x6b\xae\x2c\x31\x0a\x85\x95\xcf\x0e\x54\x94\xce\x0e\x40\x6a\xa1\x00\x5f\xff\x30\x0e\xa0\x5d\x39\xca\xbb\x7f\x0c\xab\xd2\xd4\x49\x13\xc4\xdb\xca\x1f\x4c\x41\x52\x00\x2c\x40\x50\xc0\x61\x1f\x95\x46\x81\x60\xd7\x42\x21\x05\x38\xeb\x4a\xe5\xce\x44\x2a\x19\xa7\x5d\x9e\xaf\xac\x4b\x58\x63\xc9\xf9\x37\x67\xd3\x9a\xc3\x36\x4a\x4f\x5e\xbe\xf4\xc6\xd9\x14\x71\x7a\xf2\xea\xcb\x23\x78\xe4\xc5\xef\xff\x80\xff\x78\xf9\x59\xf5\xaf\x2f\x9f\xe3\xbf\x5e\x7d\xfe\xf9\x67\xe6\x5f\xaf\x5e\xbd\x2a\xff\xf5\x7b\x1f\x53\x0e\x5f\xbe\x7a\x65\x35\x7d\x6e\x53\x89\xda\x6b\x24\xd7\x73\x27\x31\xdc\x9e\xe9\x11\x80\xe8\xa8\x44\xfe\x40\xb6\xe5\xb4\x64\xd0\x22\x46\xc3\x93\x8d\xe1\xaa\xfa\x71\xfa\x2d\x43\x1d\xd9\xc5\x82\xf9\xed\xe3\xa4\x57\x72\xa7\x5e\x49\xc7\xeb\x2d\xe5\x32\x49\x09\x85\x07\x2f\xa1\xb5\x85\xf1\x28\xd8\x14\x78\x54\xce\x1c\xa6\xa0\xed\xc5\x6f\x5b\x29\xe8\x55\xa1\x1e\x48\x42\x77\xde\x7c\x64\x1a\x2a\x0b\xb5\x94\x2e\x0d\x05\xa9\xb6\x9b\x8a\x2a\x39\x50\xd1\x5f\x94\x8a\x4a\x83\x08\x8f\x43\x46\x25\xe8\xf9\x4c\x45\xf1\xe1\x21\xd4\x73\x14\x31\xcd\x62\xe3\x83\x57\xd2\x04\xea\x04\x1b\xcd\x21\x1a\xc5\x92\xe1\x96\x97\x4c\xe9\x03\x83\xc3\x42\x7d\x56\x45\x71\x2d\xa4\x4b\x03\x40\x1f\xa7\x26\xd4\x21\xa3\xf5\xf9\xe5\x4d\x93\x86\xef\x43\xa0\xbd\x07\x65\x68\xf6\x11\x90\xfd\x2f\x3e\xc3\xff\x0e\x34\x7c\xa0\xe1\xde\x5f\xfd\x34\x9c\x51\x55\x64\xec\x9c\x29\x16\xa9\xab\x0d\xcb\x32\xde\x6d\x72\xff\xda\xf7\x52\x99\x17\xa8\x24\xf8\x25\x32\xeb\x97\x31\x53\xf8\x71\x4f\x31\x63\x65\xfa\x16\x1d\xb0\x34\x73\xf0\x83\x70\x41\x28\xfa\xf5\x48\xce\x52\x8a\xed\xa2\x81\x3b\x00\xb9\x14\x5e\xf3\x58\x9e\xd2\x48\xab\xe9\xec\x03\x5d\xa7\x09\xfb\x23\x99\x1d\xdc\x5c\x9e\xde\x7e\x5d\x24\xc9\xf6\x1a\x3c\x60\x7f\x52\x59\xc1\x8e\xde\x9e\xde\xfc\x1f\xf7\x4b\x88\x28\x3b\xba\x66\x90\xda\x76\x53\xa4\x40\x2e\xde\xc8\xe8\xee\x4f\xb3\x03\x2f\xa6\xce\x0e\xc0\x7d\x61\xe2\xc6\xe1\xf5\xd9\x01\xd2\xc4\x85\xcc\xa2\xda\xee\x8f\xb0\xbb\xba\x7e\x54\x1a\xd7\x66\xd8\x8d\xac\x81\x40\x0b\x25\x47\x08\x9f\xbd\x15\xe2\x45\x22\xc1\x07\x34\x99\xfa\x59\xb1\x35\xc2\x04\x83\x1f\xeb\xa7\x5d\x8d\x56\x15\xfd\xac\xbc\x2b\x18\xe0\xd1\x88\x8f\x58\x66\xd4\xcb\x05\xec\xca\x9c\x72\xb2\x5e\x7d\x2f\x18\x3f\x6f\x34\x69\xdf\x4f\xe1\xed\xb4\xc1\x0a\xda\x90\xf3\xe8\x2f\xe7\xd3\xbe\x81\x25\xaf\x9b\x6f\x98\x08\x8d\x9c\x98\x5f\xc8\x5f\xce\xa7\x24\x97\x36\x16\x88\x44\x34\xf3\x27\x57\x80\xd0\x12\x4b\x71\x78\xa8\x48\x8e\x08\x07\xef\xca\xc5\x02\x4c\x6b\x32\x23\x31\xf8\x1d\xc0\x0d\x03\xd1\xa2\xc0\x14\xff\x72\x3e\x45\xd9\xc3\x6b\xc8\x35\x81\x21\x4c\xdf\x1b\x26\x62\x16\x57\x6e\x22\xcd\xd3\x60\xb6\x34\x93\x1b\x7d\x3f\xe7\x4c\x81\x5d\xaf\x0a\x60\x0f\xac\x53\x94\xb6\xd4\xf1\x47\x07\x61\xae\x18\x4d\xd4\xea\x81\x36\x11\x7c\x59\x0b\x8c\x7b\x1a\x65\xf0\xc5\xa9\x9f\xfc\xb7\x12\xfe\x32\x14\xfa\xe2\x43\x94\x14\x3d\x3c\x92\x93\xc6\x0b\x28\xd5\x02\x1d\x1b\x35\xe8\x18\xf4\x8a\xeb\x8c\x06\xaf\x05\xc1\x33\x33\x28\x98\x18\x4d\xbf\x3b\xdb\x5d\xb7\x2e\xda\x8e\x43\x61\x16\x75\x71\xa9\x16\xb7\x6c\x12\x33\x96\x42\xea\xaf\xaa\x40\xa6\xc3\x43\x32\x99\x7e\x7b\x43\xe2\x62\xbd\xf6\x06\x10\x94\xdb\x38\xb2\x41\xfc\x86\x1f\xd8\x14\xca\x64\x4b\xe6\xdb\x5a\xec\x4d\xdd\xb3\xe0\xb5\x6e\x9b\xbd\xae\x8b\x44\xf1\x34\x71\xe2\xf1\x31\x67\x97\x14\x39\xfa\x52\xf5\x7f\x12\x66\xb3\x34\x21\xb0\x85\xef\x66\x73\x12\xc8\x26\x4c\x4d\x25\xd5\x9d\xf4\x84\x1c\x04\x6d\xdf\x0f\xb0\x4e\x90\x5f\xee\x33\x9a\x86\xfc\x3c\x08\x4e\x60\x4d\x87\x87\xc7\x87\x87\x38\x9c\xe1\x43\x64\x85\xb6\x51\x13\x69\x74\x78\x78\xfc\x3f\x1a\x16\xc7\x47\x1b\xa6\x56\x2f\x0e\x3d\x97\xc8\xa4\x74\x59\x18\xa0\xb5\xa1\x8c\xca\x87\xd3\x9a\xb3\x25\x17\x76\x46\x3d\xdc\xe1\xa1\xe9\x68\x98\xcb\x90\x15\xb6\x02\xe1\xe1\xa1\x99\xdb\xbd\xd3\x70\x40\x3c\xdd\xe4\x2d\x61\xb9\xfe\x1b\x56\x0e\x3c\xcd\xd8\x82\x7f\xe8\x7f\x4d\xf0\x79\x6b\xb7\xae\x1f\x31\x44\x7b\x94\xc5\x00\xca\x9e\x85\x5e\x68\xed\xfa\xc0\x20\x43\x02\x54\x0d\xcd\x75\x0a\x9e\xaf\xd0\x11\xb0\xf6\x68\x82\xad\xb0\xca\xc7\xe4\x52\x2a\xa0\x11\x84\x89\x0d\xcf\xa4\x58\x83\xc3\x5d\x9a\xca\xd8\x54\x90\xb9\xe6\xdb\x6b\xa6\x68\x82\x18\x28\xb3\x68\xc5\x72\x95\x51\x25\xfd\x25\xdd\x4b\x6e\x8a\x7e\x04\x9a\x6a\xd9\x37\xe3\x54\xb1\x64\x5b\xc7\x1d\x59\x64\x6e\x50\x21\x58\x85\x64\x74\x17\x28\x8d\xa1\xc9\x98\x49\x37\x37\xae\x36\x7d\xd6\x11\x4d\xf8\xe1\xa1\x9b\xc8\xac\x47\xbd\x4a\x99\xb8\x51\x34\xba\x73\x5f\xf3\xde\x1b\x1b\x59\x74\x78\xa8\x68\x6a\x07\x72\x31\x47\x4f\xf0\x60\x9c\xb9\xc6\xfe\x8a\x80\x13\x1b\xda\xe9\xd9\x99\x04\xde\x0b\xb5\x86\x0c\x66\x4d\x66\x2c\x8f\xa8\xc8\x4d\x20\xbd\x7b\xbf\x24\xd9\xb0\x8c\x2f\xb6\x26\xe3\x02\x2b\xb1\x83\xb6\x89\xef\x00\x3b\xf6\x5b\xb6\x6d\x5a\x89\x26\x78\x39\x53\x65\x06\x35\xb7\xab\x54\x92\x3c\xdf\x53\xa8\xe3\x29\x6f\x89\x7d\x6d\xe5\x99\xfa\xd5\xb7\xb7\xef\xba\x2f\xe4\x74\x32\x7d\x7b\xfb\xce\xc2\x50\xff\x13\x22\xd9\x95\xad\x32\x69\x8c\xfe\xe8\x35\x1a\x93\x1b\xe6\x0f\xca\x30\x68\xad\x77\xad\xc7\x70\x62\x1c\x3f\xff\x7c\xff\x60\x7f\x9e\x6a\xd4\xdb\x13\x3f\x0e\x27\xbe\xb7\x5a\xb1\x83\x64\x0c\x13\x4d\xfd\x32\x79\xe2\x44\x04\x61\xf3\x80\xba\x25\x81\x08\x69\x88\x81\xf1\x92\x82\x3f\xd7\x35\xfb\x78\x2d\x38\x99\xbc\x2b\x8b\x9c\x97\x61\x3b\xfe\x9e\xa4\xe5\xf4\xb6\x17\x69\x7b\xcc\xef\x1f\x9e\xef\x1d\x51\x6a\x67\xf8\x8a\x46\x77\x6c\xa7\x6a\xc0\x0e\x90\x27\xf5\xc7\x4b\xc5\xcd\x56\x43\x99\x9b\xef\xb5\x90\x63\xd7\xae\x59\x9a\x17\x10\x0c\x5d\x7f\x35\x73\x0e\xb8\x17\x97\xd4\xeb\x4e\xee\xb3\x8f\xaf\x79\xa2\x58\x06\x19\xd6\xc1\x70\x92\x3e\xe3\x68\x2d\xf0\xeb\x70\xdc\x4d\x13\xf3\x76\x5f\xb2\x88\xa7\xa9\x8c\x5b\x2c\xd5\x4e\xe0\x83\x48\x22\xa3\x3b\xb2\xe0\x09\x1b\x93\xbf\x6a\xe9\x83\x6e\x21\x41\x11\xdd\xa7\x10\xfe\x07\x5c\xc3\xd8\xfb\xca\xa7\xad\x02\xe0\xaf\x7f\xcf\x95\x63\x10\x2b\x57\xf3\x74\xe1\xf0\x1a\x37\xac\x62\x4d\xd3\x94\x61\xc2\xab\x50\xb2\x8c\xae\x0e\x30\x33\x45\xb9\x60\x99\xbe\x56\x94\xc4\x7c\xb1\x60\x19\x13\x8a\xa4\x54\xad\x9e\xb9\x7c\xe2\x38\x2b\xc4\xf1\x07\xa3\x4d\xe8\x75\x3f\x14\x4d\x35\x84\xa7\x99\x9c\xb3\x3d\xa8\x42\xe0\x4d\x7b\x40\x10\x69\xde\x30\x26\x7b\x65\x0d\x2c\x46\x84\x11\xe9\x54\x29\xad\xdd\x03\xcf\xa0\x11\x98\x77\xea\xe1\x27\x70\x38\x7c\x61\xd2\x79\x85\xf4\xca\x1a\x74\x43\x39\xf4\x12\x18\xd7\x63\xd2\xd7\xf4\xce\x86\x94\x43\xe4\xb8\x49\x9f\xe1\x1b\xa3\x02\xd8\xd3\x0f\x28\x83\xfa\x5c\x40\x0d\x3c\x82\x04\x1c\xad\x3f\xc2\x30\x67\xd3\x77\xee\xa1\x7c\xf1\x7c\xfd\x60\x72\xa1\xa1\x79\xcb\xd7\x4c\x16\x9d\x1e\xea\xda\x09\x98\x77\xda\x60\x0f\x80\xf6\x5a\x12\x4c\x3e\x77\x0d\xc6\x10\x66\xfe\xfc\xc8\x21\x9a\x60\x69\x46\x43\x32\xcf\x2b\x63\x4c\x50\x1c\x00\x19\x3f\x5f\x51\xef\x09\xc2\xf5\xc2\x18\xaa\x24\xa9\x13\x7b\x23\x90\xfb\x39\x87\x96\xc5\xf5\x21\xda\x93\x1a\x93\xef\xf4\xc1\x99\xdc\x8d\x2a\x17\x5e\x6b\xe4\xb4\xba\x48\x47\xe1\xe8\x5f\x9b\x91\xa4\x47\xd4\xd7\xc9\xe4\x49\xc9\x6c\x6b\x29\x8b\x93\xe7\xbe\x96\x85\xe9\x88\x61\x02\x90\x9c\x06\xe8\xbe\xd1\x65\x66\x9f\x58\xd8\x8a\x21\xb8\xa0\x5a\xd2\x5e\x5e\x4a\x39\x0f\x45\x9b\xb7\x54\xeb\x6c\x1f\x4f\x9d\xdf\xd2\xec\xee\x2d\xcd\xbb\xb3\x38\x27\x8d\x17\x2c\xe2\xad\xf5\xbf\x5d\x45\x1b\x9a\xc0\xe7\x9a\x58\xfa\xe0\x33\x99\xde\x22\x52\xe8\x71\xc8\x5c\x93\x54\x28\x99\x6b\x13\x77\xe6\xfa\x14\x3f\x7b\xa9\x7f\x21\x2b\xf6\x81\xc6\x2c\xe2\xeb\xaa\x25\x9f\x46\x20\x2f\x9e\x28\x92\x30\x9a\x2b\xf2\x25\x8e\x99\x33\x75\x04\x2e\x0e\x7d\xa4\xc8\x50\xa3\x84\xe6\x2b\x1b\xc5\xb7\x35\x18\xb8\xb6\xab\xf0\xeb\x02\x36\xea\x07\x1c\x58\x10\x13\x5e\x3b\xc6\x0f\x8b\xc5\x73\xf8\xf8\x4e\xf1\xe1\x5d\xca\xab\xd3\xb9\x3c\xbd\xbd\x32\x6e\xb8\x52\x68\x47\xbe\xfc\xc0\xe3\x9e\xca\x5c\x7d\x97\x71\xc5\x20\xc0\x67\x6f\xd2\xef\x7f\xbd\x29\x19\x42\xb8\x5b\x90\x4a\x68\xc9\x2e\xd6\x27\x43\xc9\xbd\x1e\x6a\x37\x17\xa9\xac\x5d\x17\xad\x58\x8c\x11\x84\x90\xd4\x9b\x51\x92\x31\x7f\x24\xdf\x1c\x95\xb0\xb2\x94\x01\x26\xca\x62\x56\x3e\x4c\x72\x4f\x91\xb3\x47\x89\x9c\xcf\x59\x86\xea\x05\x15\x35\x3a\xe4\x35\x54\xbb\xa9\x1a\x90\x55\x26\xa3\xa8\xc8\x34\x43\xb2\x6f\xd3\x34\x4d\xb8\x15\x4d\x5c\x5c\x29\x4d\x86\x01\xdd\x29\x65\x91\xda\xa5\x94\xe3\x8f\xca\x6b\xb2\x43\xed\x2f\xf2\x7b\xdf\x7b\x80\x4a\x68\xf4\x00\x9b\x1a\x0a\xaa\xaf\x09\x29\x75\x8e\xb8\x5d\xfc\x0f\xe1\x4d\xcd\x11\xbc\x8f\xf8\xef\xaf\x5b\x0e\x6b\x2b\x15\x02\xb4\x51\x28\x47\x84\x46\x3e\xc9\x73\x63\x9c\xd2\x12\x35\x08\x17\x60\xb1\x08\x58\x88\x4c\x74\x3f\x0e\x5a\x2a\xad\x39\xf8\x3a\xc1\xca\x42\x33\x70\xd6\xea\xb1\xa9\x49\x98\x31\xb1\x7d\xf3\x62\x19\x64\x84\x1a\x7f\x17\xfc\x03\xfa\x75\xcc\xf3\xb6\xf8\xe7\xe7\xe3\x17\x2f\x4a\x83\xa0\xe6\xbe\x68\xd8\xdb\xe8\xef\x35\x43\x5a\x66\x8c\x06\x22\xac\xb7\x46\x38\xb6\x01\xca\x65\x70\xb1\x92\x47\x84\x92\x95\x93\xb4\x87\xe9\xd4\xf5\x1c\x3d\xdf\x90\x90\xb6\x57\x43\xe2\x87\xe8\x52\x9b\x57\xc6\x8b\xb4\xaf\xbe\x7e\x57\xcc\x19\xf4\x0a\x94\x99\xba\x86\x54\xa6\x4e\xdc\xff\xf3\xce\x2b\xa6\xe7\xb0\xb5\x32\x83\x73\xc1\xcd\x8b\x0a\x94\x46\x37\x79\xeb\xa4\xca\x5a\x1f\x93\x2b\x81\x99\x4e\x90\x83\x8a\x32\x01\x7a\xa6\xdc\xf4\xd6\x70\x39\x56\xe0\x42\x3c\xdd\xe4\x26\x4b\x10\x41\x5f\xa0\xcc\xc4\x72\x66\x97\x05\x67\x87\xd6\xf1\xaa\xc2\x40\x5b\xec\xb3\x89\x39\x70\x0f\xea\x33\xc8\x54\xfa\xec\xe5\xef\x5f\xfd\xde\x9b\xd0\x17\xf6\x83\x87\xd2\xf5\x7a\x24\xec\x75\xa7\xec\x75\xe5\x48\xed\x9f\x25\xd5\xea\xd5\x4d\xe4\x12\x52\x2d\xb5\xfa\x29\xe8\x9a\x5d\xb3\x25\xeb\xb4\xc7\xbe\xf1\xbd\xe4\xe6\x50\x68\xa2\x69\xa2\x3f\x23\x8d\x1d\x5a\x1c\x0e\x90\x39\x0c\x04\xe5\x19\x81\x11\x21\xc9\x14\x1b\xa7\x63\x7e\x59\x8c\x34\xc0\xe4\x9f\x5a\x0c\x83\xe4\xcf\x50\xfc\x08\x4c\x66\xdc\xbe\x60\xf9\x07\xa2\x5b\x15\xae\x59\xf2\x0d\x13\xbe\x92\x43\x65\x52\x5b\xcc\xe2\x70\xe2\xe9\x02\x24\x12\xe4\x8e\xc0\x0c\x11\x1f\xcd\xf2\x21\x1f\x0c\x56\xba\x1f\x0d\x48\xe4\xb2\xb7\xd9\xe0\x4d\xf5\xac\xe5\x58\x8b\x22\x49\x40\x7d\xb6\xf2\x05\xde\x9c\x44\x2e\x2d\x87\xf0\x6d\x05\x44\x46\x87\x6f\x80\xd6\x92\x48\x28\x1e\x55\x53\xc3\x37\x34\x3b\x4e\xe4\xf2\xd8\x15\xf6\xc7\x89\xf4\x16\x34\xeb\xd8\x65\x4f\x8b\xff\x1b\xfb\x64\x65\x0f\x59\xd6\x0c\xfc\x0e\x69\x00\xdd\x36\xd3\x9a\x6b\xe8\x4a\xbd\xb9\x7a\x6d\xf9\x65\xdd\x08\x1d\xc9\x11\x66\x36\x3c\x60\x27\x37\x6c\xc3\x32\xae\xb6\xfa\x2c\xfa\xec\xc7\x7d\xde\xdd\x55\x6e\xbe\x27\x74\x2e\x41\x53\xd7\xb7\x47\xa3\x90\x97\xf6\x64\x0c\xcb\x5d\xd8\x5a\xa4\x72\x69\x2c\x3f\xd5\xc6\x26\x62\x21\x3f\x62\x3f\x37\x51\xc6\x58\x77\x3a\xd5\x9b\xe6\x1b\x8f\xb6\xa7\x5c\xc5\xb2\x50\x8f\xb9\xa3\x6d\x37\x5b\x7c\x53\x7b\xfc\xf1\xf6\xb2\xcd\x9d\x4b\x48\x2e\xa5\xa9\x3e\x20\xa4\xbd\x68\xc0\xcc\xcc\x53\xad\x56\xda\x87\x00\x61\x4d\x3f\x80\x79\xfb\x86\xff\xc3\x87\xa3\xad\xdc\xca\x56\x21\x3d\x8d\x63\x9f\x02\x56\x07\xdf\x5b\xe7\x61\x0b\x3c\xb7\x11\x70\x46\x62\xb9\xa6\x5c\xa0\xa7\x2e\x9c\x01\x6b\xfb\x7c\x42\xda\x14\x15\x84\x8a\x5c\xcb\xa0\xdf\xbe\x25\x7f\x2f\x58\xa6\x69\xad\x86\x5e\x94\xc8\x22\x1e\x71\xc1\x55\xb9\x4a\x28\xea\x5a\xba\xa8\xfc\x51\x70\x2b\x30\x72\x65\x68\x16\x8b\xcb\x2c\xab\x35\x8d\x56\x5c\xb0\xd2\xca\x22\xe4\x86\x8e\x68\xca\xc9\x53\x99\x41\xcb\xcf\x79\x21\x54\xe1\x1d\xd2\x3e\x3a\xb2\xcb\x78\x36\x26\xa7\x36\xb6\x70\x81\x04\xf6\x69\x44\x73\x06\x79\x62\x22\xe7\x8a\x6f\xd8\x33\xb2\x66\x54\x84\xcd\x40\x35\x1f\x3e\x84\x52\x32\x45\x8a\x14\x14\xf9\xcb\xd3\x5b\xcc\x06\xb6\x56\x2d\x3b\x31\x50\xff\x0e\x0c\x7a\xf1\xf2\xf7\xe3\xe7\xe3\xe7\xe3\x17\x7b\xa3\x91\x99\x24\x10\x13\xe1\x47\x05\x1b\x1c\x08\x1a\x95\xfe\xb7\xb1\x37\x95\x2b\xc6\xb3\xc6\xf8\x94\x40\x2d\xc8\xf5\x1c\x72\xe2\x81\x99\x63\xc3\xdf\x71\x0d\xd3\x9e\xf2\x05\x40\xe8\xf0\x50\xdf\xac\xc3\xc3\x67\x47\x4e\x70\x59\x40\x09\x02\x50\x96\x80\x3c\x42\xff\xee\x8b\x57\x7f\x18\xbf\xfc\xe2\xf3\xb1\xf9\xef\xc9\x97\xa0\x50\xb9\x73\x9d\xb8\xfb\xf2\x2a\xcf\x13\x01\xb9\xfe\x44\x9f\xb7\xe9\xfa\xe4\x1c\xa2\xb5\xc8\xcf\x99\x6d\x1e\xed\x10\xb8\x2f\x7f\xff\xfb\x2f\x5a\xca\x4a\x84\x6e\xa8\x2a\xf6\x29\xbf\xf8\xf6\xf6\xdd\x2f\x51\x7a\x11\x3c\x9e\x35\xeb\x04\x4d\x22\x48\xff\x2d\xcd\x8d\x7e\xbf\xc0\xdb\xdb\x77\xf5\x62\x11\x55\xc1\xc1\xb6\x62\x83\x1f\x57\x59\x50\x50\x65\x8d\x4e\x3d\x33\xe7\x1c\x33\x95\x79\xc3\x71\x67\x69\x92\x55\x4f\xa3\x03\xe9\xc4\x84\x4d\x85\x2a\x4a\xa0\xa8\xac\x51\x12\xae\xb5\xad\x88\x25\x08\x75\xd7\x47\x52\x29\x93\xb2\x24\x5c\x47\x06\x5d\x59\x5e\xaa\x91\x96\xe7\x66\xcf\x01\x06\x54\x0b\x36\xe6\x9c\x12\xc4\x7e\x1a\x5a\x2b\x06\x66\x17\x21\x05\x79\xca\x21\x70\xcc\x2a\x6b\x95\x99\xe7\xed\xe9\xcd\xff\x79\x77\x71\x7d\x7a\x7e\x41\x14\xcd\x96\x4c\x79\x8a\x99\x75\x9c\x50\xa9\xab\xfe\xdb\x8a\xa7\x98\xb2\x29\xb0\x08\xe7\xb8\xab\xfa\x29\x46\x71\xce\xcb\xf3\xd1\x00\x0e\xb9\x23\x30\xc8\x99\x42\x8e\x3f\x22\x48\x0c\x07\x5c\x66\x21\x5c\x9e\xde\x1a\xd3\x7f\x21\x6c\x5c\x46\x4b\x75\x87\x39\x5b\xd1\x0d\x97\x99\x25\xb1\x36\x9e\x30\xc7\x70\x8d\x60\xae\xe4\xe3\x96\xe3\x10\x4c\x25\x5c\xb4\xf8\x77\xda\xe0\x0d\x91\xf8\x7a\xb9\xd7\x6c\xd9\x27\x9b\xff\xaa\xfe\xbc\x65\x34\x8e\x78\xa1\x49\x5b\x49\xce\x34\x7f\xcc\x14\xd7\x74\xc8\xab\x96\x23\x05\x9b\xb3\x44\x8a\x25\x96\x8d\x9f\xe8\xdb\x07\xd1\x64\x23\x33\x10\xda\xde\x8e\xab\x38\x98\x98\xa5\x89\xdc\xae\x99\x50\x61\x79\xc3\x86\xb2\x57\x4d\xf0\x21\x23\x7e\x25\xef\x01\x13\xa0\x7a\x30\x4e\xfe\x14\x0b\xe9\x54\xc6\xc3\xb5\x8c\x59\xe2\x1d\x19\xe5\x12\x54\xc3\xa2\x05\x34\xa4\xc3\x62\x01\x65\xb8\x91\xbe\x91\x30\x76\x24\xd7\x69\x61\xaa\xe0\x3d\x33\x5d\x09\x0a\x7f\xbc\x5b\xa5\x22\x7f\x8f\xba\xd1\xdf\xaa\x53\x79\x6f\x60\x80\xa2\x8d\xb3\x19\x2d\xd2\xb1\x42\x65\x52\x8c\xf5\xb7\xde\xd5\x9a\xa5\x60\x21\xbe\x8a\xe9\x5d\xac\x53\xb5\xdd\x57\x14\xc1\x84\x1a\xa8\x13\x46\xd5\xaa\xa7\x36\x39\xf5\xbc\xe4\x46\xa1\xcf\xb7\xb6\x91\x0c\x34\x99\x59\x17\x02\x1a\x06\x7a\xad\x33\x58\x40\x04\x59\x38\xe6\x88\xd8\x02\x9c\xb6\x90\xe3\x11\x49\xf8\x1d\x23\xa7\x8e\xa5\x3c\xa1\x5b\x96\xf5\x4b\x78\x7f\x18\x54\x32\xb9\x66\x6a\xc5\x8a\xfc\xb5\x7c\xcb\x54\xc6\xa3\xbe\xb5\xff\x0e\xa7\xc1\x57\xad\x5d\x20\x27\xaf\xa5\x16\x8e\xc1\xeb\xba\xc6\x47\xfc\xe2\x5a\x92\x60\x90\xbe\x0d\xec\xd4\xb8\x54\x8d\x6f\x2b\x94\x42\xbe\x4c\x95\x1a\x7f\x84\x14\x30\x67\x5e\xa4\x54\x12\x63\x87\x8d\x64\x80\x36\x59\x73\xd7\xd1\x4b\x26\x17\x76\x51\xa6\xf5\x3d\x8b\x8f\xf0\xb9\x00\xbb\x75\x56\xa4\x65\x8a\x8f\xae\x70\x5b\x01\xff\xc1\xa0\x6f\x00\xde\x86\x89\x37\xe0\xd7\x02\x7b\xa3\x37\x71\x61\x7d\xc4\x65\xdd\x4f\xbd\xa5\x8f\x8f\xc4\xde\xd9\x63\x20\xae\xba\x63\x83\xdf\xc8\xbc\xd4\x09\xd0\xef\x6c\xeb\x04\x55\x8f\x7a\x49\x93\x39\x60\xb3\x4d\x5b\x4c\x8c\x8b\x18\x68\x75\xb5\x3b\xf6\x71\xb7\xc7\x2c\xb3\x97\x9e\xb3\xb3\x39\x57\xe1\xb1\xc9\x88\x8f\xbe\xc1\x3f\x3c\xff\x43\x8b\xfa\x16\x10\x76\xaa\x0d\x4e\xd1\xe5\xf4\x60\x44\xf5\xbe\x5f\x11\x0a\x1b\xd0\x36\x50\x89\x96\x1b\xf4\x1d\xcf\xd8\xeb\x82\x66\xf1\x83\x4f\x21\x30\x42\x75\x0e\xf7\x5c\xeb\x75\x34\xf3\x4a\xa0\x16\x0e\x0f\x3d\x09\xbf\x4a\x88\x87\xf3\xc0\x93\xf0\x3b\x57\xf1\x70\x1e\xfd\x24\x32\xb6\x96\x1b\x66\x2b\x60\x60\x3b\xf7\x2e\xe0\x7f\x57\xcf\x61\x32\xc5\x96\x37\xcc\x44\xb8\xda\xde\xef\xa6\x22\xff\x86\x85\x42\xb7\xe6\x8c\xd5\xca\xaa\x58\xc9\x63\x6c\x92\x92\x50\xa3\xb3\xa5\x62\x30\x61\xb6\x14\x30\x1c\xdf\x7b\x28\x1f\x17\x42\x88\x68\x1c\xd7\xd7\x55\xe5\x1f\xdb\x12\xb1\x4e\x65\x1a\x53\xb0\x83\x51\xff\xa0\xf7\x0c\xd7\x62\xf6\x6b\x17\x93\x6c\x4d\x4d\x1c\x33\xc3\xde\x67\x60\x0a\x9e\xf4\xf6\xd9\x5f\x37\xdf\xa8\x65\x01\xe8\xbf\x77\x82\x74\x83\xd9\xe0\x26\xb6\x51\x15\x79\x15\xea\x54\x75\x24\x94\x59\xcd\x9d\x3e\x26\x6f\x8d\x0c\x2f\xa4\x18\xfd\x83\x65\x5e\xc3\x12\x77\xac\x8f\x8e\x62\x90\xd7\x5d\x8e\x7b\xfb\x86\x4b\x38\xdd\xde\xbe\xe9\x0f\xa2\xdb\xdb\x37\x6e\xa8\xdc\x48\xc9\x51\xc2\x37\xac\x8c\x30\x07\x1d\x14\x49\xf5\xe8\x3e\xd0\x05\xc2\xc0\xc7\x40\xb1\xce\x82\xf6\xdf\x86\x46\x92\x7d\xa3\x34\xae\x3d\x2f\x7d\x44\x5c\x76\x59\xd5\x69\xff\x08\x0d\xb2\xa2\x7e\x6b\xff\x43\x23\x34\xb0\xba\x94\x0d\xc6\x68\x57\x08\x1e\x0a\x6e\x2c\x07\xd5\x0f\xca\x37\xd6\x59\xeb\x26\x6d\x66\xd6\x8d\xb8\x64\x18\xe2\xd6\x5e\xbd\xbf\xea\xf5\x4c\x46\xc4\xb6\xa5\x9a\x4c\xf3\x13\x34\x83\x79\xcb\xce\x45\x52\xe4\x2a\x2b\xfc\xfd\xcf\x2d\xed\x1a\x19\x98\x4e\xa6\xa7\x6f\xeb\x21\x2b\x23\x18\x5a\x7f\x0f\x67\x59\x1b\xd1\xbe\xfe\x10\xd0\x41\xd4\x5e\xc8\xe0\xe4\xe9\x53\x5b\x75\xd2\xa0\xb1\xad\x9d\x66\xa2\x5d\xf0\xa4\x8d\x29\x4c\xdf\xbb\x0d\xcd\xb8\xf4\x0b\x81\x4e\xbf\x9e\xeb\xfa\x32\x1a\x26\x27\xe8\x68\x5f\xb5\x6b\x73\xe7\xf0\x63\x7e\xd5\x7c\xc6\x48\x96\x45\xee\x6b\x9b\xd1\x91\x51\xbf\xa6\x3e\x55\x9b\xf4\x49\x87\x5f\x73\x9f\x49\xa7\xc7\xab\x2d\x49\xf0\x23\xbd\x20\xef\xd7\xbe\x88\xf6\xb6\xc4\x77\xa3\xb9\xbf\x91\x32\x9d\x62\x7d\xd4\x3e\x26\xa8\xef\x50\xe6\xc1\x28\x18\x70\x76\x6d\x34\xf0\x72\x06\x06\x98\x8a\xd9\x1e\xd9\xa2\xab\x6d\xf7\x27\x91\x32\xcd\x9d\x76\x10\x64\x32\x35\xe2\x04\xcd\x98\x09\xd3\xd7\xa7\x86\x45\xe5\x4c\x7d\x50\x02\x39\x88\x7a\x47\xc1\x58\x12\x53\x4f\x10\xf3\x87\xcb\x2a\x15\xe7\x97\xa7\xb7\x87\x87\x71\x33\xcd\xf2\x9d\x48\xc0\x9c\x5d\xb6\x6b\xb0\x89\xd2\x07\x5e\x09\x8d\x0b\x1b\x6d\x4a\x73\x86\x2d\x79\xcd\x0e\xcd\x76\x22\x29\x14\x17\x18\x4d\x35\x37\x45\x8b\x6a\xc5\x56\x7d\xa3\x3e\xa4\xe2\x5f\xce\x63\x16\xd1\xec\x34\x8a\x58\xc2\x30\x33\xad\xaf\x54\x7d\x13\x7c\xb5\x54\xc3\xd9\x07\xcd\x6e\xd6\x40\xe8\xed\x54\x01\x76\x50\x8e\xf1\xd1\x1a\x37\x44\x96\xf5\xa8\x0b\x57\xdf\xcd\x3b\xdf\x5b\x96\x89\x13\x2a\xa4\xd8\xae\x65\x61\xab\xff\xda\xa0\x3a\xaf\x03\x01\xa5\x75\xb7\x11\x49\xce\xff\xc1\x4c\x0d\xc4\x7a\x67\xdc\x31\x79\x23\x97\x39\xb9\xa7\x99\xe0\x62\xa9\x85\x06\x55\x64\xc2\x6f\xff\x9e\x43\x9a\x9c\xa9\x77\x6f\x5d\x80\x4e\x06\x23\xd4\xa5\xa1\xb5\x66\xd1\x65\x35\x9d\x4d\x91\x08\x96\x51\x2c\x60\xe3\x1b\x7c\x45\x73\x14\xb1\x63\x9e\x47\x72\xc3\xb2\x2a\x7c\x68\xb7\x79\x38\x16\x3b\x2e\xf2\x4e\x8c\x7c\x90\x96\x51\x3f\xbf\x89\xe0\x8a\xd3\x24\x54\x23\xb0\xed\x10\xdd\x57\xeb\x15\xf9\x6d\xd3\x83\x58\xff\xe4\xd7\x36\x16\xb2\xe4\xe2\x6b\x7a\xc7\xd0\xe3\xa7\x07\x6e\x84\xc2\xed\x2d\x62\x34\xb7\xd7\x53\xa6\x6b\x6e\xcd\x48\x75\xb5\x6d\xed\x08\xf4\x61\x83\x3d\xee\xc9\x23\xa3\x7e\xf9\xea\xf3\x07\x6d\x0a\xd3\x7c\x04\x4d\xce\x7b\xd6\x73\x0e\x35\x07\xff\x90\xd0\x16\x12\xd4\xfd\x6e\x9f\x2c\x4c\xe8\xd7\xf9\xeb\x4b\xc3\x84\xf5\x3f\xa4\x7c\x02\xbc\xf8\xed\xe5\x64\xdf\xf7\x4a\x6b\x47\x5f\x2a\xf9\x5d\xe3\x85\xdd\x4a\xf0\xe5\x13\x0e\x1f\xff\x24\x7d\xc6\xca\xb5\x7f\x23\x73\x75\x21\xa2\x6c\x9b\xee\xc3\xbd\xbe\x6b\x7d\xbd\x65\x5f\x5e\xea\x29\x73\xa5\x75\x45\x93\xec\x6e\x07\x73\x41\xf0\x78\xfb\x2d\x53\x3c\x2e\xe9\xba\x5b\x4b\xf9\xce\xfb\x5a\x43\x2c\x06\xe7\x9f\x71\xbb\x07\x82\x96\xf5\x63\xce\xd9\xda\xc1\xdc\x7d\xdd\x2f\xc7\xc6\xfd\xb5\x27\xf5\x28\xb7\xf6\x86\xe7\x8a\x69\x4e\xd8\xcb\x8e\xfc\x9d\xf7\xb5\x46\xef\x15\xfb\x13\x1a\x95\x43\xbe\xe5\xf9\xb6\xda\x5c\x2d\x65\xef\xc5\x97\x2f\xf7\xbf\xc7\xe5\x7e\xfa\xd0\xa2\xef\x9c\x87\xeb\x6b\xd7\x5f\x18\x72\xe4\x83\xbc\x6f\x1f\x37\x8c\xb5\x12\xa5\x8f\xd9\xcc\x35\x4a\xa8\xd7\x45\xc2\xa6\x19\x97\x5a\xae\xe8\xbf\x39\xcf\xcb\xf5\xcd\xa6\xf6\xdb\x60\x29\xba\x0a\x3f\x1b\x20\xb1\xa2\x73\x56\xd4\xc3\x39\xfd\x9d\x34\x5a\x37\xfb\x21\xee\xdd\xfc\xca\x53\x9c\xe8\x2f\xe7\xd3\xba\x28\xab\xd7\x9a\x17\x5c\x99\xd6\x96\x50\x3a\xd9\x8f\x80\x65\x29\xda\x98\x89\xed\x6e\xc8\xed\x83\x04\xa9\x0f\x71\xba\xaf\xe5\xe8\x2f\xe7\xd3\xc7\xcd\xe7\x87\x3a\x4d\x0f\x4a\xe5\x37\x66\x21\x2f\xdb\xdd\x6d\xe2\x29\x33\xd3\xb9\x16\xcb\xba\x83\x4d\xc1\x6f\x41\xfa\xcb\xb9\x37\xc9\x67\x37\xe1\x7f\x7f\xfb\x91\x5f\x53\xde\xfd\x16\x84\xf7\xd8\x8d\x05\xc9\x95\xcc\xe8\x92\xd9\xaf\xd0\x84\x08\xa7\x65\x2b\x38\x6b\xaa\x6d\x8d\x0b\x77\x5c\xc4\x27\x64\x76\x60\x4b\xe1\xa7\x49\x91\xd1\xa4\xfa\xa6\x2c\x44\x9f\x9f\x90\xef\xff\xa6\xbf\x01\xfb\x6c\xfc\x2d\x4a\xf2\xe6\xdb\x99\x18\x8d\x46\x33\x41\x53\x6e\xbe\x3f\x21\x34\xe5\xec\x83\x62\x02\x2b\xf5\x98\x3e\xfe\x9b\x17\x33\x81\x33\x9e\x15\xb9\x92\xeb\x6b\x86\x61\x57\xe7\x6c\xc1\x05\xc7\x5a\x26\xb5\xc6\xfb\x9a\x9b\x9c\x98\xa8\x43\x13\x50\x03\x0e\x7c\xce\xf2\x71\x94\xc5\xe3\x1d\x2d\x68\x26\xca\x4e\xfc\xcb\x4c\x16\xe9\x09\x09\x3c\x86\x63\xd7\xc1\xf0\x1a\xe6\xb9\xc4\x79\x30\x5e\x01\x7f\xd6\xa4\xff\xcf\xa1\x47\xde\x94\xa5\x8b\x2c\xf0\xbc\xeb\x35\xa7\xc3\x05\xc4\xfa\xf9\x1e\x82\xc9\xf2\x48\xea\x33\x3e\x43\x75\x4f\x7f\xb3\xb1\xa0\xd6\x7f\x8c\x0c\x48\x34\x24\x61\xbc\x68\xc5\xd6\xb4\xbc\x8c\x32\x65\xe2\x74\x3a\xf9\xf6\xb3\x9b\xfa\xf7\x41\xb3\x92\x73\x64\x75\x04\x6c\xb4\xbd\x9f\x4e\xcc\x63\xb5\x02\xfd\x66\x69\x2c\x36\xeb\x40\x63\x18\xb8\x9c\xd2\x8c\xe5\xfa\xfa\xf9\x0a\xd4\xc8\x05\xa1\xc2\xa0\xb1\xbe\x59\x5a\xff\x2c\x03\x0e\x23\x29\x36\x2c\xc3\x92\x68\x4b\xc1\xff\x51\x0e\x5e\xc6\x0a\x27\x54\xb1\xdd\xe8\x19\x5b\xb8\xca\x2d\x99\xb3\xa6\x5b\x63\x9b\x21\x85\x70\x06\xc4\x5c\xfd\x31\x79\x2b\x21\xda\x67\x21\x4f\xc8\x4a\xa9\x34\x3f\x39\x3e\x5e\x72\x65\xb1\xd5\x44\xa1\xa8\xed\x31\xb0\x17\x3e\x2f\x94\xcc\xf2\xe3\x98\x6d\x58\x72\x9c\xf3\xe5\x88\x66\xd1\x8a\x2b\x16\xa9\x22\x63\xc7\x34\xe5\x23\x58\xbb\xc0\x4e\xe1\xeb\xf8\x49\x66\xd0\x3b\x3f\xf4\x5d\xee\xdd\x6b\x0f\x58\xd8\x76\x0c\x1a\x07\x4d\x9b\x2f\x78\xd9\x84\x02\x95\xd0\xb6\x95\x6b\xae\x2f\x6e\x6e\x89\x9d\xdd\x9b\x97\x8e\xc0\xaf\xde\xcc\xab\x73\xd0\x40\xe3\x62\xc1\x4c\x26\x62\xd9\xca\xb3\x6a\x0c\x02\xbd\x53\x39\xdb\x2d\xc2\x94\x17\xf3\x35\xd8\xa8\xb1\xaf\x28\x06\x71\x9d\x61\x43\xe4\x39\x33\xbd\x00\x63\x88\xeb\x3a\xa3\x6b\x96\x9c\xd1\x9c\x7d\xf2\x53\xd0\xd0\xce\x47\x1a\xb6\x7d\xcf\xa1\x46\x82\x9a\x8f\xef\x5a\x2f\x4b\x8a\x53\x7d\x5a\x8c\xb8\x34\x4d\x93\xed\x95\xf8\x1a\x9b\xc6\x76\xb1\xd1\xd3\xda\xd3\x68\x74\xb6\xfd\x14\x61\x24\x34\x3e\x57\x6d\x54\xb8\xed\xe9\xe1\xe3\x4c\x28\x47\xc0\x48\x36\x1b\x6f\x4f\x41\x20\x96\x97\x52\xdd\x6a\xe1\xa3\x6b\xe5\xe7\xe5\x93\xce\xaa\xad\x0a\x64\x6d\xa2\x10\xee\x86\xae\xd0\x72\x1f\x01\x2b\xa7\xb3\x35\x4b\x2a\x96\xb2\x6a\x48\x65\x5c\x49\x04\xec\x05\x87\xb9\xdb\x15\x19\x64\x25\x2e\x96\x5e\xfb\x29\x58\x4c\x69\x6e\x3c\x05\x91\xed\x4a\x81\x6d\x7b\x6f\x33\x5b\x9f\xce\x07\x61\x42\xfd\x75\x52\x31\x23\x2d\xb6\x96\x1f\x2a\xb6\xce\xd2\xbc\x0b\xc3\xaa\xbb\x06\x26\xc6\x42\x1b\xb4\xdb\xd5\xe6\x87\x7a\x02\x0c\x0a\x1c\x1b\x9f\xf8\x9c\x11\x23\x1c\xee\x7b\xb6\xd8\x12\xa6\xbb\x69\x09\xc3\xb0\x72\xec\xb9\x09\xbd\x29\xb0\x97\x8c\x11\x35\xc9\x05\x8d\x56\x98\x20\x61\x6a\x51\xf8\x45\x3a\xfb\x36\xee\xdb\x44\x3e\x46\x19\x57\x2c\xe3\x14\xeb\xe2\x39\x99\x22\x50\x38\xd0\x80\xcd\xa0\xfe\x5e\x9d\x27\x6a\x7b\x98\x1d\x9c\x12\xad\x3f\x68\x05\x9b\xa6\x39\x04\xc6\xe7\xd5\x8a\x7c\x4b\xf1\x4a\x8f\xa4\x6c\xbb\x84\x7d\xfb\xb0\x14\x85\xcc\x46\x73\x9a\x03\x78\x8c\xcd\x74\x6a\xce\x4b\xb8\xdf\x61\x73\x30\x2f\x6c\x40\x86\x64\x19\x13\x91\xc5\xbc\x91\x53\x52\x57\x16\x0a\x93\xbb\x6d\xb6\xb0\x69\x1e\x27\x33\x68\x28\x6d\x9b\x22\x07\x16\x2c\xe2\xb2\xf7\x8f\x03\x78\xc8\x36\x9c\xcd\x04\x1e\x5e\x2a\x31\x4b\xa6\x09\x89\x80\x0b\x56\x1f\xa6\x60\x4b\x58\x9c\x11\x09\x8e\x4c\xa2\xa0\x4d\x1c\xf9\xf9\xc7\x9f\x2e\xa5\xfa\xf9\xc7\x9f\xc6\xe4\x34\x49\x4c\xca\x8f\x3b\xb6\x7f\x5c\xd3\x94\xd2\x74\xdf\x2b\x4b\x52\x53\xc5\x73\x28\x39\x8c\x39\xed\x66\x23\x4a\xe2\x98\x63\x72\x6a\x2a\x4c\x06\x60\x0b\xa8\x49\x85\x45\x4f\x93\x1d\x63\xb6\xac\x01\x04\x9b\xd1\x7f\x38\x06\x6b\x8a\x83\x87\xa1\x0a\xb0\xf7\x2f\xd1\x52\x90\x6a\x89\x81\xd6\x53\x5d\xd5\xb4\x69\xa8\xf2\x0a\x7e\xba\x0b\x6a\xc7\x2c\x57\xa6\x4a\x78\x70\x94\x3a\x19\xaf\x5e\x28\xaf\xb3\xe7\xf8\x8c\x9b\x4c\x5f\xcb\xd0\xb0\xa0\x76\x3b\xf3\x13\xcd\xa3\x95\x3f\x14\xb7\x17\x30\x08\x31\x42\x7c\x4a\x23\x76\x63\xae\x5e\xcb\xb3\x3b\x44\xe0\xb2\xf9\xb2\x49\xc6\x90\xa9\x71\x1f\x2f\x38\x4b\xe2\x60\x8e\x58\xf5\x29\x01\x43\x4b\x12\xe0\x24\xf3\x98\x84\xe9\x5a\xcf\x3a\x99\xf1\xa5\x86\x43\xe8\xfe\xdb\x0f\x48\x5f\x4f\x35\x0a\xb1\x6c\x8d\x2f\x10\xaa\x9e\x39\x1e\x7c\xa7\x6f\x2b\xce\xed\x67\x1d\x1e\x90\x55\xbd\xb0\x0c\x1b\x36\xe9\x0e\x80\xc8\x3b\xb0\x69\x1f\x14\x69\x24\xaa\xe1\x25\x08\x34\x7f\xb2\x2d\x55\x6d\x9d\x12\xba\x66\x26\xe7\x4b\xad\xfc\x2a\x79\xf5\x81\xfc\x6e\x5f\xd0\x82\x75\xc9\x3a\xe2\xc3\xdc\xa5\xbf\x1d\x40\xb5\xdb\xb6\xf0\x72\xc5\x0f\xa4\x82\x5f\xcb\x8c\xd4\x94\xbc\xa3\x20\x07\xb0\x1f\xac\x18\xee\x41\xa9\xb5\xc9\x4f\xb7\x41\xa8\x2e\xb2\x25\x7c\xcd\x3b\x0f\x0c\xdc\x09\x09\x3a\x98\x83\x30\xe1\x0e\x7c\xcb\x13\xee\x38\x33\xbc\xc8\xb5\x7d\x06\xb7\x7f\x88\xfa\xea\xd3\x67\xde\xd2\xb7\xd5\xe7\x97\x01\x40\x4d\x0d\xbf\xd1\x5c\x3b\x23\x68\x7d\x47\x78\xc0\x36\xda\x07\xd5\x7b\xf4\x68\xf3\x47\x50\xfa\xa7\xfd\x2c\x3b\x56\xeb\x6e\xd1\xa9\x4e\xe0\x2b\x78\x1b\x65\x32\x07\x89\xaf\xef\x95\x0d\x30\x8e\x72\xee\x4e\x06\x40\x30\x49\xa8\x8d\xa6\x36\xd3\xae\x98\xe9\xf4\xe2\x25\x8c\x5a\xcd\x54\x19\x8f\x54\xb0\x2d\x7c\xf5\xb1\x2c\xb0\xac\xdb\xb0\xc5\xe0\x78\x2f\x5d\x2c\x49\x5f\x07\xb4\xeb\x74\xd1\xad\x54\x0f\xc9\x7b\xa2\xac\xb1\x86\x35\x27\xf2\x62\xae\xb7\x1f\xe4\x3a\xa4\x55\x8a\x74\xe6\xed\x05\xe9\xd6\xba\x1f\xd5\x47\x48\x75\xb9\xdf\x99\xe0\x0b\x65\xc6\x55\x5d\xf8\xb2\x3b\xbe\x0c\x74\x8b\xac\x3e\x70\x8e\xbf\x3a\x58\x84\xda\x12\x55\x9f\x26\x30\xca\x76\x44\x2d\xd0\x98\x86\x22\x51\xab\x0f\x82\x83\xdc\x40\x05\x7e\xc0\x52\xe8\x9c\x6a\x7b\x79\xe4\x18\x56\x6c\x1a\xde\x40\x41\xae\x6d\xb8\xdd\x51\xf5\x69\xb4\xc9\x50\xf5\x8a\x80\x65\xeb\x15\x94\xa8\x0c\x21\xd7\xea\x49\x27\x55\x04\x1e\x66\xe2\x84\x6e\xcf\xa6\xb6\xb9\xc5\xbb\xf3\x69\xa0\x09\x86\xfd\xf4\x39\xd5\x70\x89\x9d\xea\xd3\xa3\xd8\xce\xee\xc3\xdd\x88\xd2\x5d\x80\xa7\xfa\xec\x5f\x8a\xa7\xfa\xf4\x45\xc8\xfd\x85\xcb\xcb\xea\xa5\x0e\xb4\xec\x27\x5f\x19\xcc\x04\xaf\x5c\x39\x30\x52\x61\xf4\x0c\xcd\x55\xc2\x14\x2f\x8b\xee\xe0\x5c\xed\x63\x96\xd2\x52\x2b\xaa\xf4\x3b\xb3\x74\xbf\x2b\x3b\x3b\xa8\x1a\x88\x75\xb0\x95\x6e\x66\xdb\x83\xad\x80\x47\xc8\xe6\x78\x3f\x75\x94\x10\x4f\x1e\x74\x73\x5b\x4e\xed\x22\x96\x13\x53\xe1\xd1\x2d\x85\x75\x6c\xcd\xc9\xb7\x65\xe5\xb6\xf6\x51\x6b\x6d\xd3\xcc\xd5\x01\xbf\x13\x42\x39\xb7\x10\x30\xb6\x59\x33\x4d\x87\xac\xbc\xb0\xf5\xbf\xb4\x00\xd7\x97\x82\x75\x52\x00\x93\x50\xbd\x0f\x05\xeb\xd8\x7b\x45\xde\xea\x14\xec\xe7\x1f\x7f\xba\x3d\x9b\xfe\xfc\xe3\x4f\x1a\x10\x3f\xff\xf8\xd3\xbb\x73\xfd\x47\x87\xbc\x33\xd0\x31\xf8\xf4\xa2\x63\xf9\x03\x34\xe4\x6e\xc5\xb8\xd5\xc6\x57\x7d\xbc\x8a\x31\x79\x9a\x33\x66\x8d\x63\x40\xc6\xb0\xa6\x75\xbe\x15\x8a\x7e\xf0\x55\x91\x70\x3f\xb3\x59\xab\x5e\x6d\xe4\xc7\x90\xde\xdc\x3e\xb6\xb5\x89\x39\x6a\xb5\xcc\x76\xd5\x65\x7d\xd5\x2e\xa5\x42\x3f\xf4\x49\xa0\x88\xb7\x03\x04\x13\x98\x6e\x1d\x59\x1d\x1c\x01\xc1\xe3\x70\x92\xf6\xd1\xe7\x2c\x91\xf7\xcf\x8e\xea\x4b\x76\x80\x8d\x50\xb5\xcd\xe5\x6d\x63\x95\x0e\xc5\x03\x0c\x61\x60\xe0\xbc\x5d\x31\xa2\xee\x25\xe0\x1a\x44\xbd\xdb\xdf\x90\x38\x68\x06\xb4\xad\xea\x88\x77\x9c\xdd\x95\xb0\xbb\x37\xdd\xaf\x1d\xc3\x2b\x73\x34\x24\xd3\x9a\x03\xcc\x0a\xe6\xf9\x6e\x7e\x70\xbf\x92\x89\x39\xa4\x13\x38\xa2\xd9\xac\x62\xc6\x7f\xd2\xb4\xe5\x77\x2b\x9a\x3f\x5d\x6f\xdf\x27\x74\xce\x92\x67\x9a\xe6\x18\xf2\xde\x75\x99\x9d\x48\x6e\xbd\x6b\x40\x31\x5c\x1d\x06\x12\x8c\x4c\x20\x4a\xc2\x62\x3d\x6b\x4f\x6c\x73\x23\xc3\xcb\xb6\xcc\xb0\x36\xbd\x58\xbb\x4e\x30\x9e\x9a\xed\xf4\x46\x0a\xd8\x6e\x68\xb7\xbb\x1b\xd2\x2b\x08\xd5\xf4\xab\x3e\xed\x7b\x2d\xb7\xd3\xbe\x95\xae\xcb\x2d\x00\xe3\xd8\x62\xc1\x22\x93\xd1\x6b\xcc\x07\x09\x90\x54\x93\x9c\x57\xeb\x8c\xdf\x63\xe9\x42\x8a\x91\xcd\xc2\x40\xdf\x2c\x66\xd9\x18\x5b\xc8\x42\x66\x6b\xe6\x1a\x26\x20\xd4\x3a\xdc\x77\xbf\xfa\x00\x2a\xec\x02\xa6\xea\xee\xf4\x18\x8a\xbb\xc9\x4b\x38\x8d\x22\x59\x88\x7d\xe4\xad\x9b\xfa\x8b\xbf\x98\xdc\xd5\x20\xc7\xed\x63\x7a\xcc\x9c\x94\xa4\x32\x2e\x8b\x82\x81\x10\x57\x92\x66\x03\x8c\x0e\x92\x8b\x3b\x6e\xc5\xb6\x5e\x86\x66\x42\xea\x11\x23\xe1\x4f\x5d\x0f\x80\xea\x97\x1f\x0d\x6e\xf2\x10\x90\x77\x0f\x19\xb2\x2e\x7b\xc0\xde\x0b\xda\xa4\x82\xb8\xa6\xc2\xb9\x09\x07\xe5\xa5\x79\x52\x0b\xbd\x1d\x37\xbf\x9f\x50\x47\xf6\x30\x3b\x90\xbe\x12\x12\xe9\x2b\x25\x91\xdd\xfb\xd5\x29\x27\xfd\xe7\x9e\x74\x4d\x3f\xaa\x2c\x6d\x48\xf5\x2d\x3c\xc7\x64\xd2\xa1\x6d\xe8\x4f\xe5\x7a\x00\x8f\xc2\x8d\xeb\x49\xa8\xf4\x0f\x65\x1a\x69\x04\x3d\xf0\xf5\xcf\xe9\xe5\xf9\x61\x20\x72\xdc\xfd\xec\x67\xc5\x0a\x75\x6f\xb5\x1f\x5b\x88\x66\x3f\x69\x1b\xdf\xf9\x68\x69\x1b\xdf\x44\x97\x70\x49\x2f\x9d\x8e\x64\x76\x22\xa8\xe1\x5d\x35\x89\xee\xe1\x8d\x69\x15\xb6\x9b\xe8\xd5\x57\xda\xf6\xb8\xb0\x2c\xfc\x9e\xe6\xcf\x9a\x62\xb7\xe9\x86\x26\xda\x3c\x8d\x04\xec\x63\xc7\xd8\x00\x9a\x46\xab\x72\x25\x87\x39\xc1\xcc\x1b\xd0\x92\x2d\xbc\xa3\x32\x44\xa9\x04\x46\x17\x2c\xea\xde\x2c\x7d\x73\x2c\xb2\x1e\xb9\x22\xfb\xd1\xae\x17\xa1\x03\xcc\x97\x4c\x8b\xbd\xd6\xc0\x2b\xb3\x26\xef\xc6\xa5\x4f\x4d\x2e\x59\x5c\x5a\x3f\x3b\x3c\x94\x1a\x9f\xf4\x01\xba\x7b\x44\x5b\x51\x09\x05\x29\x6c\xe8\x80\x09\xe5\x68\x17\x59\xf6\x62\x9b\xfb\x73\x4d\x5f\x5e\x01\xb8\xe1\x2b\x3c\xee\xbe\xfa\x66\x6f\x8e\xdf\xfd\x91\x88\x80\xe3\x93\x79\x80\x40\xa0\x5f\xf3\xec\x0f\xbf\x0f\x17\x66\xad\x7f\x90\xca\x9a\x1d\xc2\x4d\x4e\xd8\x42\xa1\xef\xaa\x0a\x5a\xc2\xdb\xd3\xc3\x30\x43\xdc\x8b\x58\xc6\x18\x1d\xe6\xd5\xca\x7e\x51\x0a\xda\xfd\xcc\x4a\xa9\xb4\x5f\x0c\xc3\x37\xb7\xb7\xd3\xca\x47\x1f\x0c\x5c\xd0\x58\xa2\x1f\x0d\x2f\xdd\xc6\x35\x7e\x5c\xcc\xc2\x9a\xa9\x95\x8c\xf7\xe0\x0c\x6f\xf1\x85\xc7\x95\xda\x71\xcb\x48\xd4\x71\xdf\x4e\xd8\xa6\x1e\x13\x3b\xd1\x68\x7c\xec\x1e\x14\x72\x63\x62\x1c\xc5\xae\xf6\x29\x1b\x2f\xc7\xe4\xf5\xc5\xed\x11\x99\xbe\xbb\x3d\x22\x4c\x45\xe3\x67\xe4\xad\xe9\x0d\xdb\x61\x7f\x31\x63\x68\xbe\x7f\x75\x7d\xa8\xd5\xb0\x25\x44\x0e\xfe\xba\x7c\x55\x29\x55\xab\x3d\xce\xf1\x70\xaa\x9f\xff\x14\xc7\xd8\x75\x82\xdd\x14\xc5\x3d\x41\x58\xe6\xb8\x3c\x2a\xdc\xa6\x3d\x8b\xbe\x87\x41\x08\x1b\x2f\x4f\xc8\x88\xb0\x0f\x34\x52\x27\xe4\x78\x21\x25\xf4\xc5\x87\x6a\x81\xe4\x78\x4e\x33\x72\x79\x75\x7b\x71\x82\x21\x67\x4c\xa8\x6c\x4b\xd6\x5d\xe2\xf9\xd5\xe5\x9b\xbf\x1a\xca\xb9\x25\x8c\x63\x3b\x1c\x32\x3b\x80\x49\xd0\xff\xa5\xff\xc4\x59\x66\x07\x36\x20\x2c\xd0\x47\xa0\xfa\x6c\x68\xc2\x63\x5a\x1a\xf9\xb0\x99\x8f\x16\x9f\xb8\xf2\x55\xaf\xa8\x3e\x7d\x70\xae\x8e\x04\x1a\xc4\xd0\x37\xa0\x56\xb1\x16\x00\x6f\xbb\x07\xf4\xe3\x55\x13\x05\xb1\xda\x73\x66\x01\x61\xec\x87\x0b\x99\xad\x4f\x2c\xd8\x67\xc5\xf3\xe7\x9f\x45\x7a\x60\xf8\x17\x3b\xb1\xb5\x86\xfa\x18\xbc\x10\xd5\x60\x55\x30\x5c\x02\x2d\xf1\xed\x11\x56\x43\x8f\x0c\xbc\x3f\x6a\x06\x1c\xa3\x23\xbc\xa4\xb7\xd0\x41\x0c\x00\x1e\x57\x8d\x4c\x43\xb5\x2e\x1f\x3e\x68\x3f\x75\xa2\x17\x41\xea\x1e\x8a\x47\xeb\x9e\x3c\x73\x72\xf6\x76\xda\x37\xea\x03\x88\x51\x78\xed\x2e\x95\xa2\x16\xeb\x23\x58\x2d\x96\x36\x90\x31\xd0\x28\x98\xb2\xec\x12\x13\x6c\x99\x8f\x1f\xb7\x41\x56\x4d\xa6\x35\x1d\x36\x4b\x9f\x14\x2e\x9a\x3b\x15\x35\xf4\x3c\x6d\xa2\x2d\xf8\xd0\xf5\x43\x9b\x57\x2d\x6e\xf4\x5e\x98\xa8\xb7\xb6\x07\x9f\x07\xc9\x44\x0a\x17\x4a\x00\x94\x08\xaa\xb6\xee\xa3\xac\x41\xfd\x43\x0d\x60\xcc\x10\x81\xb0\x54\xa8\x4b\xe6\xc2\xaa\x2a\x49\x46\x89\x62\xd1\x4a\xf0\x88\x76\x44\x22\x81\x59\x14\xcd\xfe\x7c\x9d\xca\xbc\x0a\x9e\xc3\x16\x51\x87\x79\x55\x74\x7a\xc1\x33\x76\x4f\x13\x7f\xf9\xdc\xea\x83\xd4\xc2\x18\x65\xb1\x74\xb5\x24\x4c\x2c\x24\xe6\xae\x98\xb0\xbc\xee\xab\xd1\xe9\xbb\x83\xc7\x3e\xfe\x30\xf4\x30\x63\xe2\x96\xcb\xe8\x72\x7d\x95\xbd\x08\xbe\xc4\xb8\x6e\xd8\x21\x8c\x75\x11\xad\x24\xb9\x46\xa6\x4d\x9e\xf2\x31\x1b\x93\x94\x8b\x65\xde\xee\xfb\xea\xb5\xdf\x1e\xc4\x20\xf5\xa7\x7e\x05\x00\x32\x99\xda\x14\xb0\x8f\x0e\x06\xab\x19\xb7\x50\x1e\x77\xa1\x3c\xb5\x1e\xb1\x20\x14\x7a\x40\x20\x90\xc4\x13\xd8\x9c\x6d\x2c\xe0\x84\xf2\x56\x55\xa4\x9c\xba\x5a\x65\x87\xb6\xf6\xcd\x7d\x14\xd1\x00\x63\x04\x56\x18\x6c\x45\xd7\x6a\x85\xd3\xbe\x5c\xb1\x2f\x5b\xaa\xe7\x20\x55\xeb\x31\xc9\x67\xe8\xad\xbb\x63\x26\xc5\x9a\xa4\x94\x67\xe1\x5e\x1a\xd5\x47\xab\xac\xa6\xaf\xa2\x0b\x53\x3a\x97\x85\xea\xc1\x48\x1e\x4b\x73\x14\x52\xe9\xdb\xd7\x0f\x33\x2e\xf1\xe1\x8e\x28\x1e\x78\xa4\x3d\x9a\x6e\x60\x18\x03\xc3\xf8\x6d\x33\x0c\x21\x95\x15\xab\x82\x60\x69\x8f\xb6\xe9\x19\x67\xd3\x2f\xc2\x66\x27\x08\xd4\x8a\x7c\x1d\x71\xa0\xe6\xb1\x30\xc0\x3a\xee\x71\x8f\x90\x9e\x87\x05\xf3\xa4\xbf\x56\xe0\xce\x0e\x5c\xd8\x3e\x22\xef\xdf\x71\x6c\x81\x85\xd7\x95\x04\x2c\x4c\xc6\x80\xf5\x3c\x6b\xb3\xcc\x9b\x88\x5c\x73\xce\x17\x90\x5e\x74\x0d\xb9\x71\x36\xd3\x0b\xcd\xe6\x4f\xe7\x2c\xa2\x45\x6e\xe2\xe0\x3a\x5c\x09\xe5\x12\x23\x96\xc1\x18\x65\x2c\xdd\x33\x34\xc5\xdb\xca\xb4\xb5\xc8\xc0\x2e\x16\x8b\x21\x83\x27\x55\xd4\xdb\x51\x15\xf3\x06\xff\xd4\xb7\xdd\xfd\xf7\xe6\x95\xfd\xeb\xe6\xec\x16\x7e\x09\x0f\x8e\x23\xbd\xe1\x8a\x99\x70\x3a\x68\x06\x04\x48\x61\x1d\xb1\xd8\x30\xe5\xc5\xe8\xe5\x17\x5f\xb4\x98\xf9\x3f\x1d\xaa\xe7\xa1\xc2\xa8\xf8\xa9\x3b\x57\xcb\xc2\xa8\x3d\xb2\xcf\x02\x3d\xa7\xdc\x59\x87\xc4\xb3\x21\xf1\xac\x87\xab\x73\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x2c\xb4\xe3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\x33\xdf\x2e\x06\x3a\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\x59\xfd\x33\x24\x9e\x0d\x89\x67\xe5\x67\x48\x3c\x1b\x12\xcf\x86\xc4\x33\xef\xa0\x43\xe2\x99\x03\x8b\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\xea\x9f\x5f\x32\xf1\xac\xa5\x19\x26\x21\x23\x53\xa1\xd7\xf7\x5b\xfb\xc0\x2d\x72\x82\xb9\x1b\x0f\x28\xcc\x5d\xbf\x55\x43\x65\xee\xa1\x32\xf7\x50\x99\x7b\xa8\xcc\xed\x5b\xde\x50\x99\x7b\x08\x90\x1a\x02\xa4\x86\x00\xa9\x21\x40\x6a\x08\x90\x1a\x02\xa4\xaa\xcf\x10\x20\x55\x7d\x86\x00\xa9\x21\x40\xea\x57\x15\x58\x30\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\xb5\xf3\xf0\x6f\x8c\x8e\x0d\x01\x52\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\xe5\x7c\x86\x00\xa9\x21\x40\xaa\xfc\x0c\x01\x52\x43\x80\xd4\x10\x20\xe5\x1d\x74\x08\x90\x72\x60\x31\x04\x48\x0d\x01\x52\x43\x80\x54\xfd\x33\x54\xe6\x1e\x2a\x73\x0f\x95\xb9\x6b\x9f\xa1\x32\xf7\x50\x99\x7b\xa8\xcc\xdd\x6b\x86\xa1\x32\xf7\x50\x99\x7b\xa8\xcc\x3d\x14\x5a\x1d\x0a\xad\x0e\x95\xb9\x87\xca\xdc\x43\x65\xee\xf0\xfa\x87\xca\xdc\x03\xc3\x18\x18\xc6\x50\x99\x7b\xa8\xcc\x5d\xfb\x0c\x95\xb9\x87\xca\xdc\xf0\x19\x2a\x73\x07\x3e\x43\x65\xee\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x6a\x9f\x21\xf1\x6c\x48\x3c\xfb\x55\x25\x6c\x0c\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\xed\x3c\xfc\x1b\xa3\x63\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x39\x9f\x21\xf1\x6c\x48\x3c\x2b\x3f\x43\xe2\xd9\x90\x78\x36\x24\x9e\x79\x07\x1d\x12\xcf\x1c\x58\x0c\x89\x67\x43\xe2\xd9\x90\x78\x56\xff\xfc\x67\x57\xe6\xee\x13\x6a\xe0\x3f\xea\x76\xe9\x60\x81\x91\x21\x95\xa6\xee\x5b\x75\x91\xa3\x2e\x82\xf4\xd1\xb0\x6d\x2c\x6f\x2d\x45\xcd\x3f\x18\xd8\x92\xff\x54\xa0\x84\x78\xd7\x3e\xae\xf4\x43\x2d\x3c\xa9\x8e\xc8\x12\x9f\xf6\xee\x02\x43\x06\xb1\xce\x33\x18\x7d\xf4\xa0\xe0\x21\x8d\xc7\x68\x07\x2a\x2d\xd8\x2b\xbe\xd4\x6a\xf5\xec\x00\xc6\x9b\x1d\x80\x08\x60\x9e\xf5\x0d\x4d\x17\x5a\x29\x54\x20\x74\xc2\x00\x89\xbc\x67\x19\xae\x06\x43\x30\x9d\xc5\xe5\x44\xae\xb9\x52\x9a\x97\x70\x9b\xbd\xe3\x1b\x34\x92\x22\xe7\x58\x64\x1d\x6d\x95\xb3\x03\x2e\x16\x5c\x70\xc5\x66\x07\x64\x44\x20\xf0\xcf\xd9\x8e\xe5\x54\x66\x9d\x24\xa1\xb9\x1a\x93\x72\x67\x5e\x90\xe8\xb5\xf2\x98\x09\xc5\x23\x9a\x98\x05\x36\xc7\xe1\x82\xd0\x24\x5d\x51\x51\xac\x59\xe6\x3c\x07\x08\xe0\x1b\xd5\xf0\x27\x63\x5a\xc3\x48\x17\xaf\x4b\x08\x91\x43\x14\xeb\xf9\xae\xd5\x33\xcd\xd8\xf9\xe5\xe9\x6d\x17\x7a\x4c\xf1\x31\xc2\x45\xcc\x23\xb4\xe8\x94\x99\x26\x2b\x5b\x38\xbd\x4e\x55\xc8\x9c\x2d\xa4\x5f\x74\xa3\x62\x4b\xf4\x70\xc1\xb5\xce\xa5\x4c\xd8\x6e\x30\x46\x8b\xdc\xde\x90\xb2\x6e\x5d\xfb\x18\x62\xb5\x63\x25\xb3\x17\x2d\xe5\xd1\x1d\xfe\x9f\x2c\xbc\x04\x48\xef\xad\x61\xf3\x70\x30\xc1\xe4\xc5\x38\x67\xa8\xa4\x15\x3a\xc2\x76\x9b\x6a\x1d\x5a\x76\x4b\x12\x79\x8f\x50\x43\xd3\x5d\x69\xcc\x42\xc9\xfa\x4f\x60\xdb\xc1\x7b\xfd\x3e\xe1\x8a\x65\x34\xf9\xf9\xc7\x9f\x7c\xe3\xce\x66\x64\x84\x59\x61\x1a\xa7\xd7\x29\xcd\x78\x2e\xc5\x11\x81\xd4\x50\x6b\x94\x31\x03\x2e\xa4\x24\x73\x9a\xfd\xfc\xe3\x4f\xd5\x54\xbf\xdb\x6b\xaa\x6a\x2e\x2d\x54\xb1\xbf\x17\x34\xf9\x23\x06\x31\x5b\x25\x81\x2f\x8c\x76\xc0\x73\x78\xc6\x3a\x3a\xca\x09\xfd\xe4\xe3\x07\xbd\x0a\x6a\x03\xf0\xe6\xf6\x1f\x11\xfc\x63\x3c\x1e\x93\x7f\x39\x73\xab\xac\x60\x36\x0b\xa9\x0c\xe4\xc5\xd1\xff\x42\xfc\x89\x03\xc6\xb7\x13\x9c\xa4\x5a\x9f\x5e\x34\x17\xad\x0b\xf2\x4d\xb0\xe7\x1a\x61\x9a\xd0\xa2\x7c\xe3\x3b\xeb\x5c\xd1\xfc\x29\x8c\xf4\x5e\x33\x87\x67\xd5\xa4\xb7\xe5\x9c\x54\x55\xa7\xe0\x9c\xc0\xef\x00\x0d\xbd\x6c\xd5\x0c\x51\x5a\x7e\xe5\x02\x9e\x05\xf3\x1f\xfc\xb7\x78\xfe\xfc\xe5\x2b\xfc\x7f\xfc\xa5\x7c\xe7\x66\x25\x33\x35\x8a\x78\x16\x15\x5c\x81\xe0\x6a\x5e\xf2\x4d\xf4\xcf\x7f\xb6\xbe\x2d\x61\xc6\xa7\xf8\xcc\xb3\xf2\xa1\x94\x66\xcc\x28\x3d\xcb\x4c\x16\xa9\x56\x7a\x66\x33\x45\x93\xe4\xa9\xd7\xcd\x67\x3a\x02\x60\xb0\x4f\x49\x11\xec\x68\x16\x57\x69\x92\x38\x56\x3c\xb8\x82\x6f\x10\x07\x50\x4d\x0d\x90\x31\x7d\x79\x91\x92\xd8\xa0\x57\x97\x82\xe7\x47\x64\x74\x44\xde\x03\x1c\x8e\xc7\xe4\x06\x6e\x16\x31\x37\x2b\x38\xe8\x5a\x66\x8c\xa4\x5a\xc3\xca\x73\xbe\x61\x64\x8e\xe9\x1a\x5b\x6b\x3b\x36\x36\x7d\xc2\xf2\x88\xa6\x8c\x44\x2b\x9a\xd1\x48\xb1\xcc\x2c\xfb\x02\xa3\xde\xbd\xa8\xff\x14\xf8\xd0\x9a\xc6\x6c\x54\xa4\x88\x16\xf9\xb3\x92\xe0\x40\x8e\x20\x92\x87\x7b\x36\xd7\xaa\x19\x43\x02\xe1\x9e\x77\xcc\xd2\x44\x6e\xd7\x4c\x78\xc9\x25\xbe\x9d\x66\x32\x36\x08\x0a\x63\xea\x3b\xa4\x69\x4e\x26\x85\x62\x22\x2e\x11\x9c\x46\x77\xf8\xe7\xbf\xf4\xa3\xd5\xc8\xe4\x77\x7f\x0a\xe0\x7d\xcc\x36\x66\xe0\xdf\x91\x06\xee\xfb\xd4\x98\x36\xa1\xa8\x6e\x65\xed\x2b\xed\xdd\x78\xdf\xfa\x64\x22\x9f\x59\xa4\x35\xc2\xec\x2b\xf8\x81\x17\xa7\x07\xaf\x04\x67\x4f\xc5\xd9\xef\x57\x90\x71\x5e\xe3\xe5\x4e\x88\x9b\x51\x1f\xbd\xb4\x49\xdf\x36\x69\x7a\x9e\x1c\x99\xbf\xe6\x52\xad\xc6\x04\xa3\x4e\x81\x57\x7c\x48\xb5\xa4\xa4\x92\xad\xa3\xa4\x3e\x85\x7e\x2d\xde\x70\x62\x87\x6e\x0a\x12\x65\xcc\x24\xb8\xe4\xe6\x4e\xcb\x8c\x08\x9e\x3c\x3b\xb2\x49\x2a\x31\x5b\xd0\x22\x51\x39\xc1\x6d\x69\xd0\x65\x71\x40\x57\x51\x92\xdc\x6b\x0a\x39\x31\x1a\xb1\x5e\xc4\x85\xa3\x1c\x83\x3c\x6a\xa9\x66\xd9\xbc\x04\x43\x28\x43\x79\xee\x66\x7e\xc2\x73\xbc\x59\x23\xf2\xbd\x11\xd1\xf4\x82\xec\x4c\x7f\x3b\x32\x2c\x41\x0b\xbc\xe0\x93\xa9\x4d\xec\xbd\xbd\x5c\x44\x49\x11\x5b\x87\x65\x44\xb5\x10\x0c\x03\x54\xc3\x10\x64\xc1\x42\x96\x5b\x82\xe1\x9e\x85\x22\x25\xeb\x8b\xbb\xf0\xaf\xad\x06\x11\x4d\x8e\xaa\xe1\xbd\x4a\x1b\x3c\x17\xdc\xfa\x51\xe7\x84\xbe\x41\xc1\x66\x18\x3a\x26\xa4\x7c\xdf\x19\x83\xa1\xa3\x76\x64\x8c\xea\xdb\x14\xdd\x11\xba\xa4\x5c\x78\x51\x16\xd1\x04\x1d\x4d\xc9\x3d\xdd\xe6\x3b\xf9\x05\x18\xf9\x71\x44\x04\xdb\xb0\xac\x86\x75\x5e\xe3\x49\xcf\xbe\x48\x15\x14\x08\x03\x86\x51\xfa\x49\x53\x99\xe7\x7c\x9e\xd8\x89\xab\xd0\x36\xfd\xc2\x4d\xca\x22\xbf\x3a\x8d\x1b\x09\x07\xfb\xb5\x2b\xee\x41\x9d\xd8\xaf\x4a\xef\x7e\x0b\x0c\x23\x76\xc3\x18\x72\x25\x33\xba\x64\xf6\xab\x5c\x51\x55\x20\x60\xd0\xa3\xc7\xe2\x4b\xc7\xd7\x72\xc7\x45\xac\xa9\x91\x05\x69\x9a\x14\x19\x4d\xaa\x6f\x22\x29\xd0\xb1\x9e\x9f\x90\xef\xff\xa6\xbf\xd1\xe3\xb3\xd8\x24\xca\x9a\x6f\x67\x62\x34\x1a\x95\xff\xa1\x29\xb7\x69\xb7\x84\xa6\x9c\x7d\x50\x4c\xc0\xc3\xe3\xbb\x2f\xf3\x31\x97\xc7\x9b\x17\x33\x81\x13\x9f\x15\xb9\x92\xeb\x6b\x86\x0e\xc3\x73\x06\x0a\x20\x10\xed\x5a\x72\x2b\x98\xb9\x08\x86\x49\x0b\x0c\x29\xce\x99\xca\xc7\x51\x16\x8f\xd3\x4c\x6a\x70\x44\x40\x87\xc6\x32\x5b\xce\x84\x26\x70\xf0\x1e\xc8\x2a\x27\x24\xf0\x58\xdd\xeb\x84\x0b\x6a\x46\x3f\xe3\x6f\x09\xcf\xd5\x9f\xbd\xbf\xbf\xe1\xb9\xaa\x43\x6e\x67\x95\xe6\x58\xb8\x58\x16\x09\xcd\x76\x1f\x00\xa0\x46\x52\x9f\xec\x59\x52\xe4\x0a\xb5\xc5\x8d\x05\xb0\xfe\x63\x64\x20\xa0\x01\x07\x83\x45\x2b\xb6\xae\xf2\x7e\x65\xca\xc4\xe9\x74\xf2\xed\x67\x37\xf5\xef\x1b\xb8\xbf\x13\xd9\x5d\xcb\xad\x80\x28\x01\x9a\xcd\xb9\xca\x68\xb6\x25\x93\x29\xc9\x8b\xf9\xc8\x2e\xf3\xf8\x6c\x72\x7e\x5d\x23\x3c\x68\x9f\x58\x69\x52\x85\x32\x0d\xe8\xa6\xa0\x58\x21\x2d\x52\x12\x53\xfb\x4c\x48\xc6\x9a\x6c\x38\x75\x02\xe3\x30\xec\x01\x5f\x75\xc7\x95\x8b\xdd\x85\x5a\xff\x79\x69\x8c\x71\xef\x5a\xc0\x58\xea\x60\x61\xfd\x6a\xd5\x6b\x95\x68\xb8\x99\x18\x11\xcc\xa7\x40\x6a\x60\xc0\xcf\x62\x03\x6b\x24\x07\x40\xdc\x0c\x67\xa2\x3e\x2b\x98\x06\xa1\x30\x17\x74\x0c\x72\x0b\xcb\x72\xab\xb1\x46\x52\x6c\x58\xa6\x48\xc6\x22\xb9\x14\xfc\x1f\xe5\xe0\xb9\x8d\x5a\x81\x2e\x6d\x3b\x32\x1e\x17\x8a\x65\x5a\xc2\x01\xca\x84\x36\xfa\x35\xdd\x92\x8c\xe9\x69\x48\x21\x9c\x01\x6d\xbc\xdc\x5b\x2d\xcf\x72\xb1\x90\x27\x50\x45\x2a\x3f\x39\x3e\x5e\x72\x65\x2f\x60\x24\xd7\xeb\x42\x70\xb5\x3d\x06\x7f\x3a\x9f\x17\xfa\x48\x8e\x63\xb6\x61\xc9\x71\xce\x97\x23\x9a\x45\x2b\xae\x58\xa4\x8a\x8c\x1d\xd3\x94\x8f\x60\xed\x02\x08\xc1\x78\x1d\x3f\xc9\xcc\x8d\xcd\x0f\x7d\x64\x6b\x97\xda\xc1\xe5\x6a\x3b\x06\x7d\xbb\x4c\xea\x35\x0a\xec\x28\x7b\x94\xd0\xb6\xfc\xf7\xfa\xe2\xe6\x96\xd8\xd9\xbd\x69\xea\x08\xfc\xea\xcd\xbc\x3a\x07\x0d\x34\x2e\x16\x56\xc8\x02\x17\x86\x6b\x6b\x40\x0e\x9f\x70\x8f\x9c\x9d\x17\xf3\x35\x57\xb9\x53\x7e\x48\x8e\xc9\x59\xe9\xdb\x28\xd2\x98\x2a\x16\x8f\xc9\x44\x90\x33\xba\x66\xc9\x19\xcd\xd9\x27\x3f\x05\x90\x34\x47\x1a\xb6\x7d\xcf\x21\x50\x32\x20\x64\xb8\x2d\x09\x69\xe0\xd8\x9a\x17\x55\xb3\xc9\x7a\x16\x9b\x4d\x74\xac\x4a\x0b\x50\xd2\xa4\xae\xd5\xc7\x1e\x6c\x83\x93\xb6\xb8\x43\x02\xf9\x16\x3b\x0d\x1d\x6d\x48\xe8\x64\x4a\x2c\x49\x43\x0a\x36\x67\x89\xd4\xb8\x25\x8d\x39\x88\xf9\x9c\xe8\x61\xe1\xe2\x7f\x13\x7b\xff\x54\x7c\x7d\x25\xf3\x2a\xc4\xe9\x13\xf0\x74\x37\x7b\xa9\xc9\xcf\xdd\xdf\x76\x79\x79\x6d\x65\x4d\x3e\xee\xfe\xf8\x29\x79\xf8\xc0\xdf\x06\xfe\xe6\x1e\xc1\xc0\xdf\x7e\x31\xfe\xe6\x52\x87\x7e\xbc\x6d\x97\xd6\x54\x9f\xfd\xb9\x1b\xfb\x90\x42\xc8\xc6\x64\xda\xc7\xa0\xa4\x4f\xda\xbc\x50\x4f\xd6\x7b\x3a\x99\x6e\x3e\x87\x6b\x35\x99\x6e\x5e\x3d\xb3\xaa\xad\x45\x0b\xaf\xde\x3a\x01\xbb\xf8\x44\x5f\xcd\x05\x8d\x98\x66\x2a\x3f\xff\xf8\x53\xc3\xab\x50\x9a\x7f\x40\x91\x4f\xa4\xbc\xb3\xf6\x37\x6e\x5f\xf4\x1a\x5b\x6d\xdc\x8c\x93\x42\x38\x99\xd6\x22\xd9\x30\xeb\x19\x3c\x5d\xc6\xb0\x00\x24\x84\xaa\x31\x44\x85\x7b\x79\xf1\x6c\xa6\xc0\x1a\x51\xe4\x3b\xe1\xe5\x8d\x64\x7a\xc8\x5e\x2c\x23\x32\x64\x66\x6c\x67\xbe\x41\x9b\x1d\x8e\x67\x33\x3d\x9e\x69\x6d\x5c\xee\xdf\x90\xbe\xbc\x3e\x2b\x17\xfe\x54\xfd\x52\xdd\x72\x4f\x69\x0c\x69\xb3\x9a\xa9\xd4\x42\x7e\x31\xdc\xe0\xa2\x42\x04\xb4\x35\xf8\x86\xe5\x39\x1a\x36\xb1\x80\x13\x55\x24\x2d\xb2\x54\xea\x7b\xfa\x74\xb2\x30\x31\x46\x2b\x56\x1d\x8d\x9e\xc7\x06\x11\xb6\x47\x2a\x59\x23\x9f\x64\x78\xfc\x09\xa3\x99\x28\x8f\xcd\x9c\x60\x35\xae\x5e\x40\x91\x83\x09\x3a\x18\x1d\x31\x9b\x29\x7b\x1c\x63\xaf\x19\xf9\xd1\x65\x2e\x52\xad\xf0\xd2\x1f\x36\xd3\xb8\x50\x17\x58\x73\xf2\xe7\x1f\x7f\xfa\x6f\xb0\x9e\x1b\xa7\x46\x15\x2e\x53\x56\xf1\x78\xc3\x45\xf1\xa1\x1d\xe7\x4b\xc7\x6d\x89\xce\x7f\x04\xc4\x5b\xa7\x6a\x3b\x26\x76\x12\xd7\xd3\x8b\x6e\x4f\x9e\xb7\xd2\x14\xfd\x59\xca\x0d\xcb\x04\xba\x53\xca\x20\x32\x79\x54\x05\x8e\xad\x32\x59\x2c\x31\x38\xc0\xda\x49\x8d\x10\xdc\x9e\xcf\x6e\x0e\x16\x70\x52\x3f\x58\x66\xf3\x43\xaf\xeb\x18\x08\x02\x60\xe3\x1f\x09\xd3\x7b\xc7\x2b\x1d\x6b\xf4\xd8\xe0\x15\xf4\x57\x77\xa8\x02\x72\x36\xd0\x7c\x7c\x5b\x81\xee\x88\xb8\xf6\x56\x99\x63\x22\xc0\xb1\x92\x10\x5e\xae\x57\x62\x4d\x12\x7e\xef\x7c\x22\x23\x9a\x94\xf9\xe0\xc6\x46\x39\x59\x90\x1a\x21\xb3\x54\xac\x3c\xd9\x5e\x60\x86\x0b\x64\x61\x5d\x0b\xd6\x83\xcd\x03\x1d\xd1\x3b\x37\x12\x16\x40\xcd\x01\xbd\x97\xb8\x58\x04\xaa\xee\x4e\x09\xe7\xda\x8a\x01\xf9\x46\xe4\x5e\x93\xb7\xda\x0f\x01\x3a\x80\xe6\xd2\x51\xed\xe8\x3d\x93\x95\x09\x7c\x95\xe5\x55\xdf\x68\xef\xa0\xc2\x25\x42\x50\x6f\x36\x83\x48\x83\x23\xcf\xaa\xca\x25\x1c\x11\x0a\xd4\x62\x57\xe8\x23\xc6\x29\xec\x72\xac\xb2\xb5\x78\x55\x8d\x0b\xf3\x90\xb4\xaa\x91\x61\x9d\x3a\x33\x4b\x4e\x9e\xe6\x85\x9f\xb2\xd0\x5c\x1f\x2c\x53\xab\xe7\x3f\xff\xf8\xd3\x33\x93\x42\x03\xde\x3b\x16\x13\xbd\xea\x3f\x12\xae\x08\xcf\xc5\xa1\xaa\x8c\xbe\xdd\xdc\x9b\xe0\x25\x4e\x33\xa9\x25\x16\x07\x01\x10\xc2\x0e\x35\xa8\xe3\x60\xb5\x66\x2f\x9f\xb5\x79\x4e\x27\xb8\x53\x48\x29\x04\x89\x07\xd3\x0e\xd1\x0d\xa4\xa5\xac\x75\x9a\xb0\xb5\xc6\x34\x24\xf0\x96\x60\xb8\x4b\xce\xff\xe8\x3f\x39\xae\x38\x4d\x92\x2d\xf9\x7f\x35\x7c\xd3\x8c\x8d\x20\xa8\xa4\x74\xa9\x4c\xf5\x01\x31\x53\x11\xb8\x24\xf5\x51\xb1\x0e\x69\x01\xfa\x63\x9b\xbe\xa3\x48\x6f\x9a\xcb\x4b\xe1\xb5\xcd\xb7\x11\x6c\xe1\x2f\x07\xb7\xa3\xc0\xeb\xe7\x4c\xc8\x3b\x44\xf4\x2c\xb6\x96\xc9\x9b\x15\xc3\x03\x5c\x2b\xc4\xc2\x0b\xea\xb6\x45\x84\x52\x6c\x1b\xae\x03\xcd\xe0\x6b\x12\xa0\x13\xfa\x8a\xf7\xd6\x64\x7f\xda\xf2\xc0\xde\x30\xda\x39\x43\xbb\x28\x13\x11\xc6\x1f\x95\x22\x86\x39\x6e\x13\x21\xba\x07\x47\xec\x8c\x17\x6d\x8d\x13\xed\x8e\x2d\xd4\xdb\xea\x78\xbd\x35\xbd\xf3\xd7\x54\xf6\xeb\x53\x55\x7c\xea\x88\x9a\x14\x01\x62\x3d\x02\xe0\x06\x7e\x69\xa9\xe3\xf6\xe0\x58\xcb\x14\x45\xd7\x4e\x74\x3f\xad\xd2\xa8\xf1\xc2\x71\xe0\x71\x0b\x47\x22\xc6\x91\xcc\x22\xc2\xd5\x31\xab\x14\x0b\xcd\x66\x4b\xad\x03\xab\xa2\x9b\xe5\x38\xe1\x8a\x56\x0d\xc0\x38\xbc\xd0\xa0\x98\xa3\x90\xa6\x8c\x66\x65\x04\x1c\xa4\xc0\x90\x72\x5d\x95\x33\xd9\x8e\x6c\x23\x19\x2b\x19\x7d\x14\x8c\xf3\x6b\xdc\xca\xc1\x2a\xf8\x0b\x5b\x05\x79\x4a\xd7\xf3\x44\x46\x77\x9f\xc2\x24\x38\x99\x9e\xbe\xfd\x4a\x0f\xde\xb4\x07\x96\x3f\xec\x1a\x03\xab\x05\x35\x2d\x81\xe5\x2f\x83\x19\x70\x30\x03\x0e\x66\xc0\xff\x38\x33\x60\x49\x14\x7a\xd9\x00\x45\x93\xba\x54\x9f\xfd\x2d\x80\x5a\xc9\xd0\xb0\xeb\xe4\xd6\xe6\x39\xab\xc5\x01\x39\x32\x01\x3e\x3c\xc7\x3f\xad\xa6\x87\xa9\x69\x4c\x79\x4d\x3d\x5c\x95\x21\xf2\x4e\xb3\x0d\x32\x3b\xd0\xfa\xec\x09\x36\xc4\xd0\xff\x04\x79\x06\xc2\x39\x67\x07\x30\x20\x44\x49\x32\x75\xe4\x4c\x18\x50\x4e\xf5\x93\xb0\x2f\x6c\xef\x02\x9a\xf2\x9e\x02\x3b\x4d\xb4\x92\x15\x2a\x20\x5e\x87\x8c\xe6\xb3\x40\xb1\xaa\x77\x08\x17\xa3\xc2\x64\x33\x58\xe1\x01\x56\x3c\x26\x82\x27\xd0\xa9\x25\x90\x53\xb0\x66\x14\xa5\x93\x6a\x34\x02\x77\x8c\x31\x34\xe0\x09\x29\x46\xce\x18\x5a\xff\xe5\x22\x66\x1f\x08\x3f\x0a\x59\x01\xcc\xef\x65\x8e\x07\xd7\x44\xd0\x00\xdf\x99\x66\x67\xb1\x40\x21\x03\x63\x22\x5d\x31\x63\xe2\x04\x76\xc4\x3c\x97\x11\x87\xe2\x18\x54\xe1\x75\x64\xa5\xe9\xf5\xb4\xfc\xc6\x2b\xc8\x69\x50\x3e\x40\x10\x6a\x91\xdb\x9f\x90\xdb\xab\xf3\xab\x13\xac\xef\x23\x8a\x24\xa1\x73\x14\x06\xd7\x54\x14\xa0\xb4\xd2\x38\x06\x99\x70\x4c\xbe\x63\x96\xc5\x20\x1d\x22\x65\x31\x80\x6c\xb4\xf4\x17\xbc\x7c\xa2\x31\x6c\x45\x45\x9c\x30\xf2\xfd\xdf\xfe\x5b\x13\x3f\xbc\x6c\xc9\xd6\x54\xeb\xf0\x2a\xe5\x76\x21\x21\x69\xbf\x45\xbc\xae\x60\xda\x89\x98\x0e\xf4\x21\x92\x95\x96\x98\x5a\x46\xe1\x58\x42\xe6\x9c\x9a\x6f\xbd\x10\x61\x5c\xc7\xef\x8a\x0a\x8c\xc9\xad\x24\x0b\xcd\x78\x9c\xf3\x46\x7b\x07\xe6\xb9\x55\x2f\x7a\x29\x82\xbe\x28\xb5\x28\xfa\x3a\x5e\x1e\xe6\xa6\xb3\x91\x45\x21\x67\x19\xc1\xa4\x70\xea\x41\x4c\x86\xf6\x8d\x52\x9a\xdf\x1f\xdb\x3a\xd5\x60\xc4\x84\xf7\xdc\xaf\xa4\x91\x5e\xba\x70\xce\xb4\x78\x4c\x33\x1f\x49\x36\x9b\xdb\xaf\x6b\x41\x1f\xa5\xb5\x2b\x65\xef\xc1\xda\x60\xc4\xe3\xce\xf0\xeb\x5b\x8b\x49\x87\x39\x39\x9b\x9c\x5f\xef\x49\xab\x63\x96\x30\xe5\xd5\x8b\x6b\xb3\x9c\xe3\x63\xe6\x2e\x94\xc2\xa0\xc9\x49\x2a\x43\xb6\xef\x65\x76\x47\x33\x59\x68\x74\x76\x4a\xef\x07\x4c\x96\x1a\xaf\x9c\xe4\xec\xd3\xe9\x04\x83\x77\xe7\x5b\x5c\x16\xd2\xd5\x04\xb3\x4e\x32\xa6\x8a\x4c\x10\xe8\x90\xb1\x48\xb8\x1f\xd2\x2c\xcb\x64\x66\x13\x4b\x2a\xb6\x3a\x67\x4c\x38\xe2\x91\xb2\x94\xca\xe6\x3e\x33\x55\x52\xb4\xfd\xd3\xaf\xfe\x5e\x30\x11\xb1\x4b\xc8\x24\xf3\x82\x11\x6c\xfa\x27\xe4\x79\x07\x88\x35\x01\xd5\x8a\x1c\x38\xa0\x70\x50\x93\x9f\x86\x96\x60\x9e\xdb\x2d\x60\x66\xb7\xe2\x7e\x9b\x45\xb5\x75\x9e\x93\xfb\x8c\x2b\xc5\x84\x51\xe7\x6b\xfc\x0a\x82\x7b\x73\x69\x26\x45\xb5\x1b\xa7\xf5\x13\x5d\x58\x89\x2b\xc0\x10\x93\xf9\xa5\x17\x02\x96\x08\x95\x97\xb1\xe8\xa6\xa2\x72\xc6\x12\x46\xf3\xc0\xd5\x01\x59\xec\x88\xa4\x34\x77\x5c\x82\xf5\x8d\x3b\xec\x10\xa8\x68\x9d\xb8\x79\x07\x4d\x12\x79\x9f\x93\x22\x77\xcd\xc1\x10\xe9\x9c\x2b\x42\x49\x46\xb1\x92\xb7\xa9\x47\xa5\x79\x34\x13\x79\x61\x00\x30\xf1\xf6\x5e\x5c\x51\xb0\x46\x03\x12\xe1\x86\x34\x77\x16\x31\xc9\xd8\xc8\x2c\x46\x6b\x51\x50\x79\x0e\x12\xff\xf0\x19\x2b\xa6\x7b\x30\x0a\x5b\x8f\x00\xeb\x7d\xf5\x79\x08\xe1\x02\x7c\xb9\x8e\x70\x5f\xcb\xac\x22\xe9\x1e\xec\xeb\x4d\xed\x3a\x96\xd4\x29\x2c\x34\x5a\x51\xa4\x8e\x4c\xc7\xe2\x52\x6e\x72\x0a\x1e\x20\x0a\x41\x9a\xc7\x47\x61\x5d\x85\x0e\x63\x97\x98\x58\x6f\x68\x10\x47\x48\x95\x53\x7a\xc7\xb6\xb6\x64\x44\x9a\x1f\x91\x1c\xf5\xe0\x3b\x06\xf1\xf2\x11\xcd\x95\xe9\x1c\x06\x04\x34\x48\x20\xfc\xf4\x1d\x6b\x9f\x9c\xf6\x54\x14\x6e\x6a\x4f\xdb\x6c\xd6\x52\x63\xd1\xeb\x89\xb5\x4e\x89\x50\xd5\x38\x28\xbc\x3e\xec\x44\x8a\x25\xcb\x90\x2c\x1b\xaf\x20\xb6\x64\x79\x97\xe3\x70\x67\x52\x2c\xf8\xb2\x39\x9f\xbe\x24\x8c\xfa\x42\xe5\x5b\x69\x60\x21\xca\x93\xee\xda\xe0\xbb\xea\x51\x9b\x21\x94\x61\x9e\xb1\xb5\x67\xba\x82\x12\x5a\xea\x03\xe9\x0f\x5a\xaa\xaf\x8b\x52\x8f\x28\xfb\x06\x99\x72\xc0\x90\x3c\x72\xd7\xbd\xf3\x53\x40\x6e\x1f\x01\x83\x6f\x7e\x57\xc7\x98\xe6\xaf\x0e\xac\x07\xf3\x64\xab\x79\x32\x02\x14\xff\x54\xf6\x49\xbc\x40\x3e\x03\x25\xfe\xe2\xb7\x50\x9a\x35\xf9\x4c\x94\x51\x39\xe0\x60\xa3\x1c\x6c\x94\xc1\x63\x18\x6c\x94\xbf\x55\x1b\x25\xd2\x85\x3d\x8c\x94\x2e\x89\xa9\x3e\x0f\xb0\x52\x16\x4a\x1a\x21\x91\x81\x18\xe1\xe3\x88\xad\x0c\x7e\x4d\x3f\xe0\x8b\x53\x96\x7d\x03\x96\xc6\x2e\xf9\xaf\xfe\x3c\x98\x3a\x85\x14\xa3\x7f\xb0\x4c\x1e\x59\xc3\xd7\x9a\x7e\x70\x04\x3c\xd7\x79\xd3\x58\x1a\xd4\xff\xa2\x02\x8a\x4a\x94\x96\x49\xd0\x81\x5a\x8d\x93\x21\x01\xba\x4b\x22\x6b\x01\x45\x98\xfb\xef\xc0\x78\x1f\xb6\x3e\xf0\xee\x06\xef\x46\x53\xd0\xa7\xe2\xdd\xdf\xc0\xe8\x3e\xde\x8d\xbf\xf8\x79\xb7\x59\x93\x8f\x77\xaf\xca\x01\x07\xde\x3d\xf0\xee\xe0\x31\x0c\xbc\xfb\xb7\xca\xbb\x91\x2e\xec\xc1\xbb\x5d\x12\x53\x7d\xf6\xe7\xdd\xc0\x15\x3f\xc6\xae\xd3\x4b\xcf\xf5\x9b\x2e\xc2\xa6\xe1\x56\x61\x01\x89\xe1\xe4\x3c\xf8\x9e\xcf\x10\x1d\x64\xac\x1e\x57\xe5\xa8\x9c\x62\xe0\xa2\x2d\x5c\x34\x95\x32\xf9\x34\x1c\x74\x2a\x6d\xd4\x9b\xcb\x3d\xf5\xb7\x3e\xce\x09\xeb\xd8\xe5\x9a\xa9\x19\x64\xe0\x98\x03\xc7\x0c\x1e\xc3\xc0\x31\x7f\x9b\x1c\x53\xd3\x82\xde\xdc\x52\x3f\xfc\x10\xb5\x16\x2b\x8d\xbd\xcb\x7b\x38\xf3\xcb\x47\x6d\x54\x42\x8e\x45\x8e\xd0\xba\x4e\x34\x2d\x2a\x03\x6b\x6c\x96\x16\x14\xcf\xf4\xb1\x54\x88\xa5\x29\xab\x34\xd9\x34\xa1\xa3\xaa\xca\x92\x92\xe4\xfb\xd9\xc1\x6d\x21\x04\x4b\x66\x07\x47\x64\x76\xf0\x9d\x49\x37\x98\x1d\xfc\x0d\xf6\x3d\xa7\xd1\xdd\x08\x0a\x12\x2a\x3e\xe7\xc9\x8e\x42\x48\x3e\x4d\x8a\x15\x30\xd3\x1b\xfe\x8f\x5e\x31\xfd\xe8\x6d\xc9\xf9\x3f\x40\xdd\x2e\x72\x4c\xc3\xa8\x92\xe2\x08\xcd\x73\xbe\x14\x6b\x7d\x99\x82\x4d\x0e\x4c\xbd\x2c\x99\x8c\xc9\xb9\x03\x9e\x97\xaf\xcc\x60\x26\xf3\xf1\xc5\x8b\x97\xf6\x8b\x57\xfb\xea\xf3\x7d\x9d\xe4\x70\xc8\x0f\xf1\x90\xf3\x9c\xce\x93\x6e\xd7\x06\x38\x3c\xed\xc3\x60\xe3\xc8\x8a\x2a\x07\x51\x0b\x85\x95\x33\x1b\x41\x57\xa5\x17\xfa\x40\x67\xe8\x90\x85\xdf\x9e\x52\x98\x59\xc8\x57\xaf\xa7\x17\x1f\x02\x09\x02\x75\x52\x7b\x8e\x2f\x10\x06\x8f\x6b\xc2\x9a\xc9\xa2\xac\x70\x0e\xeb\x98\x4c\x89\xbe\xab\x3f\xff\xf8\xff\x63\xa8\x01\x91\x1b\x7f\xdc\xd0\x57\xaf\xa7\x63\xf2\xfd\xb9\xf5\x7c\x2f\x68\x92\xb3\xbf\x79\xfa\xa7\xb6\xee\x80\xa7\x3c\xed\x5e\x75\xe9\x0d\x3b\x31\xd4\x1b\xea\xcc\x71\xec\xaa\x5d\x65\x5c\x9e\x4e\x27\x9b\x17\x70\xed\xee\x69\x16\x7b\xe1\x5d\xbb\x8e\x9a\x3b\x28\xc3\x5e\xdc\x51\xe1\xf0\x90\x9a\x1c\xd5\x7f\xf2\x1e\x21\xa6\x99\x22\x9b\xd6\x37\x48\x2f\x6a\xec\x01\x44\x47\x6c\x0c\x13\x21\x0c\xdc\x81\x08\x60\xa1\x79\xbe\x42\x42\x0d\x4b\xa2\x80\x20\xe9\x3d\xb9\xa4\xce\x3f\x26\x64\x53\xc5\x2c\xe1\x1b\x96\x55\xdd\x72\xf4\x57\x65\x07\xb9\xbc\x51\x35\xdb\x8b\xa3\xa4\xeb\x94\x09\x94\x77\xf4\x66\x19\xed\xec\xed\x16\xa8\xf5\x64\x0a\x2f\x40\x89\x22\xf0\xcf\x0a\xa7\x3a\xd9\xec\x00\x0b\x96\xd9\x8e\x90\xd0\x67\x76\x84\xbd\x4f\x67\x07\x63\x42\x4e\x43\xfb\xd5\x63\x36\x46\xa8\x62\x24\x8a\xdc\xcc\x5c\xc1\x50\x9f\xad\xbe\x21\x80\x23\xc1\x9e\xdf\x0e\xbc\xea\x59\xdf\x3b\xb0\x23\xe4\xd4\x59\x43\x7d\xdd\xa1\xd1\x61\x81\x16\xd1\x9b\x0b\xbc\xb7\xb5\xdf\xdc\x35\x60\x1e\x96\xbe\x1d\xa1\x31\x69\xd5\xcb\xca\xf4\x8c\xb5\x62\xa8\xed\x7a\xa0\x07\x17\xf6\x04\xaa\xa4\xd5\xd6\xfe\x7f\x4f\xf9\xa2\xce\x37\x9f\xe9\x55\x54\xb0\x6e\x45\x9d\x76\x4e\xe7\x57\x5e\x35\xc6\xbf\xed\x91\xbd\x76\x66\x05\x14\xf4\xbf\x15\x59\x25\x9c\x78\x0e\xbc\x1d\xd5\x27\x8d\x3d\x1e\xd9\x86\x1d\x3c\x47\xcf\x3d\x00\x0a\x23\xa5\x66\x07\x97\x6c\x03\xf5\xbd\x9f\x42\x31\xed\xfa\x64\xbe\xd1\xf5\x08\x86\xbb\xf8\x3a\xc4\xb5\xa6\xf1\x51\x35\x92\x85\x5a\x4a\x2e\x96\xff\x5b\x48\x6a\x2b\xd5\x11\x54\x5d\xf5\x84\x07\xd6\xe8\x74\x00\x58\x51\x55\x4b\x17\xa1\x14\xa6\xd3\x07\x8b\xb4\x26\x41\x1b\x91\x58\x6b\x1e\x2e\x01\xd8\xa1\xae\xb2\x50\x39\x8f\x59\xa9\x62\x96\x42\xaa\x6f\x50\xe8\x12\x92\xff\xbd\x60\x19\x8d\xbd\x2d\x5f\xda\xc1\x21\xe3\xde\xc5\xfd\x4f\x31\xc0\xca\x88\xed\xa6\xaa\x9c\x46\x17\x13\xb5\x5a\x26\xda\x02\xa9\x99\x6f\xb1\x88\x9c\x6f\xcd\x65\x87\x9c\xfd\x90\x79\xf3\x21\xa1\xe2\x23\xaf\xf6\xb7\x7f\x79\x73\x7a\xf9\x8b\xdd\x6d\x98\xcd\x2b\x1d\x97\x0b\x78\xf0\xe5\x0e\x1a\xce\x76\x43\x4b\x06\xfb\x58\xcd\x3e\x96\x31\xbd\x51\xbc\x6c\x9f\xc4\x4c\x76\x5d\x4d\xb0\x6b\x2d\x73\x7e\xf4\x19\xcd\xdc\xc5\xed\xda\xce\xb2\xfa\xc8\x83\x09\x6d\x30\xa1\x05\x8f\x61\x30\xa1\xfd\x36\x4d\x68\x0e\x81\xe8\x6d\x49\xdb\xa1\x38\xd5\x67\x7f\xfb\x1a\x12\x19\x16\x43\x6d\xd9\x2e\x5e\x7b\xed\x3e\x5c\xef\xf3\x8d\x5f\x51\x11\x1f\xd7\xcc\x47\x7e\xa3\x07\xc4\x7a\xec\x98\x4c\xd8\x87\x28\x29\x62\xd3\x76\x56\xb0\x7b\x37\xd8\x72\x48\xfd\xfe\x85\x39\xe7\x5d\x31\x67\x55\x6e\x57\x5e\x13\xae\x3e\x05\x23\xfd\x73\x31\x67\x67\xd5\x7c\x67\xee\x7c\x4d\xbe\xda\xf6\xec\x2e\x9b\x6d\xdd\x49\x93\xeb\xb6\x3d\x3c\x30\xe1\x81\x09\x0f\x4c\xf8\x3f\x8e\x09\xb7\x51\x93\x5d\x9e\x5c\xeb\x4c\xd0\x04\xb0\x93\x99\xe2\x10\x91\xba\x66\xda\x9f\x35\x3b\x43\xf4\x51\x82\xed\x6c\x68\x16\xc6\x5e\x11\x76\x66\xd3\xe5\x64\xc3\xe3\x82\x26\x1d\x2d\x26\x9d\x69\xf7\x36\x61\x77\x75\x8d\x0c\xf4\x8a\x0c\x2c\xb9\xde\x38\xb2\x5a\x57\xb0\x53\xe3\x85\xb1\x88\x43\x6a\x21\xa8\xea\x47\x90\xf6\xa7\x24\xe4\x94\x2b\x69\xd5\xef\xc0\x08\x3d\x7a\x7e\x6a\x32\x25\x22\x9e\xb0\x6c\xca\x32\x2e\xc3\x59\xac\x4d\xe2\x70\xdd\x78\xd1\xc6\xc7\xa6\xf8\x97\x92\xfa\x5f\x90\xe7\x6f\xa7\xe0\xc1\xf4\x37\xfb\x29\xb3\xe5\x6c\xc5\x30\xaa\x28\xc8\x0a\xae\x5f\xe6\x8b\xb5\xcf\x29\x63\x3f\xdd\x99\xaf\x5d\x79\xaf\x81\xea\x61\x3b\x10\xb8\x94\x71\xfb\x49\xeb\xdf\x7f\x1d\x87\xbc\x72\x0a\xba\xf5\x3d\x60\xb7\x08\x5c\xe5\x7f\xce\xb7\x22\xb2\x96\x74\xe0\x90\x50\x92\xd0\x69\x9b\xdf\x72\xba\xe7\xd6\xcb\xf8\xd0\x9d\xf6\xdc\x2d\x31\xd1\xe3\x67\x19\xa3\x81\xb2\xae\x81\x3d\x1f\x9e\x96\xaf\x55\x27\x5b\x28\xb9\xa6\x8a\x47\x55\xc7\x22\xd9\xd9\x1a\xbb\x0e\x15\x50\x75\xd8\x86\x65\x5b\xe3\x81\xa8\x90\xd9\xc2\xa4\x0d\xa5\x49\xef\x5e\xad\x7d\x3a\xb5\x26\x8c\xde\xbd\xce\x68\xc4\xf6\xbc\xef\x6f\xea\xef\x35\xae\x7b\x3d\x67\xcf\xe2\x7c\xdb\x9e\xc0\x70\x8c\xfd\xa7\xa1\xc1\x1d\x75\x5d\x4d\x55\xfe\xb3\x5e\xae\xe6\xe1\x37\x88\x27\x9e\x74\xe4\xfa\x90\xc6\x1f\x3c\x99\x92\x25\xcd\xe6\x74\xa9\x97\x93\x24\x2c\xc2\x54\xcb\x0a\xf0\x2f\x3e\x96\x8c\xfc\x6f\x24\x9d\x04\xee\x3f\xf4\xd3\x6b\xbb\x7e\xf5\xdd\xde\x94\xaf\xb8\x61\x2c\xa6\x31\x99\x24\x91\x4c\xb7\x3d\x9b\x44\x03\x45\xad\x1a\xc3\x38\x45\x1a\x73\x77\x97\x86\xa0\x7e\x5a\x2e\x81\x15\xdc\xfa\xf0\x09\x53\xe4\xb9\x85\x53\x98\x1a\x8d\xbf\x0e\x5e\xf1\xbf\x0f\xab\xbb\x8e\xba\xde\x60\xb0\xcf\x91\xd7\x9b\x0b\xb6\x1d\xbd\x19\x3b\xb4\x7c\xd3\x2e\xd0\x45\x8d\x01\x07\xfe\x1d\x38\x60\x2b\xef\x76\x48\x51\x75\x1f\x6c\xe3\x9d\x36\x3c\xb0\xe3\x87\xf6\xc0\x1a\x92\xd8\x80\x09\xff\x1e\x4c\x68\xcf\x3c\x98\x17\x4b\x53\x28\x74\xda\x23\x78\xed\xbc\xf1\xfc\x2e\x5b\xc8\x14\x96\x9a\xc8\x36\x8c\xac\xd9\x5a\x66\xfe\xc2\x47\x1a\x9d\xd2\xa2\xac\xc2\x4a\xb4\xa4\xb3\xeb\xf9\xc5\x9f\x1b\x6e\xdb\xf6\x32\x1f\x9f\xbd\x0c\x41\x20\x10\xd5\xc8\x54\x14\x7f\xfb\xd9\x99\x5c\xa7\xd8\xd1\x3f\x88\x34\x75\x64\xb9\xf0\xbe\xd6\x40\x99\x39\x53\xf7\x5a\x22\xd4\x73\x6c\x3e\xf3\x6b\xfa\x76\x80\xd2\x24\x54\x09\x8e\xee\x75\x70\xe5\xc0\xe7\x5e\x7c\x69\xc3\x93\x15\xa3\x89\x5a\x9d\xad\x98\x3f\x27\xb5\xbe\xb5\x6f\x9c\x87\x4b\x02\x20\x33\xbb\x94\xbc\xec\x02\xac\x75\x04\x1c\xd9\xbb\x35\x1c\xa0\x97\x90\xd3\xb6\xf6\x44\x2e\x6f\xb4\x26\xc2\xd5\xf6\x26\xca\x18\xf3\x55\x5f\x69\xc8\xfd\xcd\x37\xec\xb1\x24\x72\x49\x72\xf3\x0b\xa1\x73\xb9\x61\xa6\xf2\x45\x22\x97\x81\x52\x6f\x0c\x83\x4e\x8c\x61\x35\x57\xb1\x2c\x94\x7b\x18\x13\xb1\x90\xfb\xee\x28\xcd\xe4\x5a\x0b\x93\x45\xfe\x96\xa9\x8c\x47\x79\x9f\xab\x77\x38\xf5\xbd\x65\x77\x76\x7b\x36\x35\x97\xcf\x46\x5b\x57\x8f\xfb\x36\xb6\xc6\x21\xf0\xa2\x66\x65\x33\x79\x2e\xb0\x8d\x7c\x07\x06\xfe\xe1\xf9\x1f\x3e\x0f\x6f\xda\x7b\xd1\xc2\xe1\x13\x21\x5b\x57\xd0\x98\x58\xb9\x76\x02\xa0\x6a\x35\x27\xc2\xdb\x8e\x59\xd7\x9c\xab\xfe\xd6\x63\x85\x37\xca\xa1\x63\x3b\x24\x13\x75\x08\x1d\x46\x16\x45\x82\x0e\xc1\x78\x0d\x96\x49\x09\x69\xd3\x5a\x93\x03\x02\x88\x25\x8a\x68\xa4\x0a\xba\x13\x94\x83\x23\xe2\x59\xdd\xd3\xb2\xe4\xb3\xad\x98\x6e\x22\x2d\xd7\x32\xc6\xc8\xf7\xb9\x16\xc5\x37\x3c\x93\x10\x03\x4e\x36\x34\xe3\x70\x11\x77\xd6\x8b\x61\x88\x77\xc5\x9c\x8d\x5c\xe3\x67\x9a\xc9\x88\xe5\x4d\x4b\x47\x5b\xc3\x9d\x6a\xb6\x6f\xa9\xd7\xf4\xb9\x67\x5a\x5c\x88\x7b\xd5\x8e\xed\xa2\x3e\x6b\xb3\xc6\xbc\x07\x00\x81\xe8\x4a\x2f\x10\xb0\xb4\x97\x58\x24\x05\x56\x9c\x07\x2f\x40\x21\x04\x17\x4b\x44\x90\x3d\xeb\x0d\x65\xee\xbb\x9d\x5e\x5b\xf7\xe1\xc6\xc6\x16\x0b\xad\xea\x6f\x58\x0d\x2b\x78\x6e\x27\xf0\x6d\x90\x87\x0e\x5a\xc6\x47\xa6\xba\xf7\x9a\x65\x4b\xeb\xec\x38\x9d\x4e\x2a\x5f\x87\x96\x48\xfc\x2c\x39\x80\x65\x1e\xb8\x74\x48\x61\xed\x56\xf3\x1d\xe0\x3c\xa6\xe5\x9c\x74\x59\xcf\x7b\x2c\x9f\xf4\xb0\xa2\xef\x6c\x62\x3f\x4b\x7a\x9b\xc8\xf8\x98\xe2\x72\xcf\xdd\x92\xfd\xc4\xe6\x9d\xcd\xf7\x17\x9d\xbb\xac\x90\x75\xc9\xba\x97\xf8\xdc\x35\x64\xbb\x74\x4d\x1e\xd5\x52\xd9\x62\x88\x27\x9f\xca\x18\x4f\x1e\xc1\xc8\x42\xfa\xe3\x49\x4f\xc3\xfc\xce\x76\xf7\x30\xce\x77\x9d\x68\x65\xbb\x7f\x1c\x03\xfd\x1e\xbb\x27\xfb\x18\xea\x77\x60\xd0\xcf\x58\xdf\x3d\x28\x88\x26\x8f\x6e\xb0\x27\xbd\xaf\x02\xe9\x79\x1d\xc8\x5e\xc6\x7b\xf2\x70\x03\x7e\xd7\xc6\xaa\x6b\xb4\xa7\x11\xbf\x6b\x60\x8f\xa0\xdc\x69\xc8\xef\x1a\xb3\xc3\xce\x4f\xf6\x38\xa6\x81\xa8\x77\x82\xa8\x97\x7b\x60\x17\x38\x8f\xe7\x22\x20\x8f\xea\x26\xe8\xbf\xf5\x3e\x17\xb8\xd5\x65\xb0\x03\x94\xc7\x74\x1b\x90\x5f\x96\xab\x0d\x17\xe5\x11\xb0\xa5\x97\xd7\x81\x7c\x32\xcf\x03\xf9\x44\xde\x07\x32\xa0\xd1\x2f\x8a\x46\x3d\x1d\x17\xe4\x53\x3a\x2f\xc8\xa7\x72\x60\x90\x01\x99\x7e\x41\x64\xea\x7a\xa2\x87\xff\x83\x7c\x2a\x1f\x08\x79\x7c\x3f\x08\xe9\xf6\x85\x90\x3e\xed\x48\x7a\xfb\x44\x76\x80\xf3\x58\x7e\x11\xf2\xb8\xbe\x11\xd2\x03\xa7\x3a\x7c\x24\xbb\x5b\x7d\x24\x3f\x09\xd9\xd3\x57\xd2\x67\x2f\x7d\x7c\x26\xbb\x1b\xda\xdb\x6f\x12\xda\x4e\x22\x97\xf9\x47\xf8\x4e\xfa\xec\xb0\xaf\x0f\x65\x77\x97\x8f\xea\x47\x21\x1f\xeb\x4b\x09\x0d\x1a\x72\xb1\x90\xee\xfb\xdb\xd2\x82\xb3\xc5\xdd\x42\x5a\xc9\xe5\x90\x98\xe3\x24\xe6\x98\xac\x73\x50\x66\xf8\x27\x29\x9e\x7a\x89\x33\xa0\x42\x85\x3f\x54\xb9\x37\xb5\x1f\x77\x93\x6d\x1a\xab\x33\xa7\x50\xa6\xd7\xb8\x3f\xc3\xd0\x26\x9f\xa6\x34\x60\x83\x4c\x34\xa4\xd4\x0c\x29\x35\x43\x4a\xcd\x6f\x2b\xa5\xa6\xcd\xa1\xbb\xcc\x58\xde\x19\xf9\x71\x6b\xdb\x0d\x6b\xf4\x67\x90\x53\x8a\x2f\x9a\x5e\xdc\x04\x9b\x1b\xe9\x3f\x4a\x1f\xa6\x8f\x43\x51\xfb\x36\xd6\xed\x20\x6b\xaa\xa2\x15\x89\x32\xae\x58\xc6\x29\x5c\x12\x4a\x22\x99\x65\x2c\x4f\x35\x3d\x17\x4b\x62\xe4\x3c\x25\xb1\x4d\xf2\x5e\xb9\xa6\xb5\x3d\xcc\x0e\x4e\xc9\xb5\x5e\x20\x13\x11\x4d\xf3\x02\xee\x6d\xb5\x22\xdf\x52\x02\x06\x77\x6a\xec\xb6\xe4\x2b\xa9\x56\x8d\x4e\xc9\x4e\xf7\x67\xd3\x9b\x5e\xc4\x3b\x1d\xa1\x03\x02\x43\xd9\xf5\xdc\x74\x66\x1e\x91\x9c\xa5\x34\xc3\xf6\x3d\x85\x22\xd4\xcd\xe9\xc5\x47\xa0\x92\x9d\x5e\x05\x17\x70\x1e\x81\x05\x8b\xd8\x9e\x97\x0b\x78\x2e\x96\x63\xe8\xaf\x8f\x8d\xa6\xa1\x43\xbd\x56\x4c\xea\x90\x58\xd1\xd0\xa8\x44\xb0\x25\x2c\xce\x10\x5e\xad\x8e\xb0\x05\xff\x60\x5b\x45\xfd\xfc\xe3\x4f\x97\x52\xfd\xfc\xe3\x4f\x63\x72\x9a\x24\xa6\xe0\xbc\x3b\xb6\x7f\x5c\x53\x97\x89\x22\x3a\xad\x8b\x1c\x3b\x84\x51\xc5\x73\x08\x7a\xc0\x22\x27\x66\x23\x4a\xe2\x98\x63\x72\x0a\xac\x6c\xb7\xe2\xaf\x81\x2d\xa0\x26\x15\x16\x3d\x8d\x42\x66\xb6\x0c\x6d\x7c\xf4\x66\xf4\x1f\x66\x37\xc0\x17\x70\xf0\x30\x54\x01\xf6\xfe\x25\x42\x1f\xaa\x02\x83\x3e\x70\x89\xfe\x2a\x52\x9d\x3a\x3f\xa2\x5b\x50\x1e\xec\xd6\x88\x9d\x9a\x36\xc1\x51\x1a\x8a\x6c\x55\xae\xaa\x16\x92\xd0\x40\x0d\x10\x85\xe1\x5a\xb6\xa8\xe2\xb5\x9a\x3a\x44\x53\x42\xe5\xbb\xc5\x3d\x81\x41\x5c\x17\x7c\x4b\xc1\x9c\xc0\xce\x66\x07\x97\xcd\x97\x6d\x13\xa4\x14\xa3\x56\x4c\xe9\xa3\x50\x5b\xf5\xea\x53\x02\x86\x96\x24\x80\xb0\x0f\x9a\x81\xe5\x40\x1d\xae\x44\xb2\x25\x2a\xa3\x8b\x05\x8f\x10\x52\xb6\x7a\x57\x97\xd5\x1f\x78\xdc\x53\x8d\x42\xe0\x8c\x42\x3a\xa5\x9e\x39\x2e\x3d\xa7\x89\x17\xce\x1d\x2e\x22\xd7\x00\x59\x5e\x56\x9e\x83\xb3\xd4\xec\x0f\xca\x2b\x01\x22\xef\xc0\xa6\x7d\x50\xa4\x91\x12\x3c\x1b\x25\x08\xb4\x72\x87\x42\x59\x6c\xc3\x8e\x72\xba\xc6\xab\x80\x15\x7b\xda\x07\x85\x0a\x57\xd6\x08\xe7\x6c\x19\x71\x2d\x2b\xd7\x4d\xe6\x5b\x5c\xb4\x9d\xb9\x03\xa8\x76\xdb\x16\x5e\x36\xc1\x47\xaf\x0b\xa9\xe0\xd7\x32\xab\x4b\xd0\x47\x41\x0e\x60\x3f\x50\x76\x74\x17\x6c\x84\xaf\xd3\x84\xb3\xbc\xd2\x15\x5d\x64\x83\xa6\x8c\x5d\x07\x06\x66\x22\xf0\x10\x8a\x65\x10\x26\xdc\x81\x6f\xaf\x08\x92\xb2\xb1\x68\x6d\x9f\xc1\xed\x1f\x2e\x13\x39\xa7\xc9\xd3\x67\x1d\x46\xb9\x5f\x06\x00\xaf\x61\x31\x66\x89\x5a\x77\x96\x59\x2d\x76\x00\xb6\xd1\x3e\xa8\xde\x63\x6d\x98\xea\xa0\xbb\xce\xb2\x63\xb5\xee\x16\x31\x68\x2f\xb7\xdd\x38\x1b\x87\x46\xa1\xb0\x20\xa1\xfe\x2a\x62\xd5\xa7\xba\xb2\x01\xc6\x51\xce\xdd\xcb\x24\x2a\x98\x6a\x37\x2a\xd7\x43\x50\x98\xca\xc3\x84\x51\x0b\xf3\xd0\x4b\x25\xef\x76\xb1\x5b\x16\x08\x47\x08\xbc\x02\x14\x27\x3f\x5d\x2c\x49\x5f\x07\xb4\xeb\x74\xb1\x56\xd5\x51\x4b\x0e\xa2\x6c\xf3\x8d\x0d\x7c\xb1\x88\x62\x7b\x42\x67\x58\x8a\x74\xe6\xed\xe9\x39\x6e\xa9\xff\x5b\x7d\x84\x54\x97\xfb\x9d\x09\xbe\x60\x0d\x52\x0d\xe1\xcb\xee\x58\x3f\xd2\xc1\x5e\xf4\x39\xfe\xea\x60\x31\x95\xd9\x9e\xc0\x80\x37\x3a\xa0\x01\xcf\xf4\x01\x07\xb9\x81\xe6\xa1\x80\xa5\xb9\x5c\x33\x68\x5c\x2a\x23\x99\xe4\x64\x45\x37\x68\xbb\xcf\x8f\x30\x2c\x64\x8b\x7f\x75\x10\xda\x8c\x39\x25\xaa\xb9\xb2\xc6\xb7\xdc\xda\x0e\x61\x74\x23\x51\x19\x42\xae\xd5\x93\x4e\xaa\x68\xba\xe5\x42\x91\xbb\xdb\xb3\xa9\x2d\xb3\xfa\xee\x7c\x1a\xac\xe1\x89\x9f\x3e\xa7\x4a\xc5\xf6\x6a\xd1\xf1\xcc\xa8\xdb\x4d\xb0\xfb\x70\x9f\xc0\xa1\x94\x2a\xc5\x32\x71\x42\xfe\x67\xfc\xdf\xed\x4f\x7e\x18\xdd\x95\x11\x14\x23\x2e\xd4\x48\x66\x23\x9c\x21\xd4\x91\xbc\xfa\xf4\x45\xc8\xfd\x85\xcb\xcb\xea\xa5\x0e\xb4\xec\x27\x5f\x19\xcc\x24\x37\xcc\x61\x2e\x48\x85\xb5\x82\x91\x17\x73\x95\x30\x2d\x2b\xa3\xba\x65\xe6\x6a\x1f\xb3\x94\x96\x5a\x51\xa5\xdf\x99\xa5\xfb\x5d\xd9\xd9\x41\x79\x63\xbb\xd8\x4a\x37\xb3\xed\xc1\x56\x56\xa0\x2f\x1b\xab\xd3\x53\x47\x09\x79\xd6\x81\x86\xa5\x95\x1f\x45\xcd\xdc\x56\x36\x56\x2b\x96\x33\x92\x51\xb1\x64\xf9\xb1\x35\xda\x41\x05\xe4\xd6\xc2\xbb\xf8\xa9\x15\xe4\x32\x57\x07\x9c\x42\x08\xe5\xdc\x42\xc0\x58\xc0\xcc\x34\x1d\xb2\xf2\x02\xcf\x00\x05\xb8\xbe\x14\xac\x93\x02\xe0\xa3\x7b\x51\xb0\x8e\xbd\x57\xe4\xad\x4e\xc1\x7e\xfe\xf1\xa7\xdb\xb3\xe9\xcf\x3f\xfe\xa4\x01\xf1\xf3\x8f\x3f\xbd\x3b\xd7\x7f\x74\xc8\x3b\x03\x1d\x83\x4f\x2f\x3a\x96\x3f\x40\x43\xee\x56\x8c\x5b\x6d\x7c\xd5\xc7\xab\x18\x93\xa7\x39\x63\xd6\x38\x06\x64\x8c\xae\xd3\x84\x91\x7c\x2b\x14\xfd\xe0\xab\xbc\xea\x7e\x66\xb3\x56\xbd\xda\xc8\x8f\x21\xbd\xb9\x7d\x6c\x6b\x13\x73\xd4\x6a\x99\xed\xaa\xcb\xfa\xaa\x5d\x4a\xc5\x60\x6e\x8d\x3d\x1d\x40\x30\xf9\x30\xd6\x5d\xd0\xc1\x11\x10\x3c\x0e\x27\x69\x1f\x7d\xce\x12\x79\xff\xec\xa8\xbe\x64\x07\xd8\x08\x55\xc2\x55\xce\x92\x85\x75\x3b\x77\xc0\x01\x0d\x61\x60\xe0\xbc\x5d\x31\xa2\xee\x25\xe0\x1a\xd4\x55\xb2\xbf\x21\x71\xd0\x0c\x68\x5b\x15\x2b\xef\x38\xbb\x2b\x61\x77\x6f\x83\xb6\x2a\xc3\x2b\x73\x34\x24\xdc\x0d\x9a\x15\xcc\xf3\xdd\xfc\xe0\x7e\x25\x13\x73\x48\x27\x70\x44\xb3\x59\xc5\x8c\xff\xa4\x69\xcb\xef\x56\x34\x7f\xba\xde\xbe\x87\x60\xca\x67\x9a\xe6\x18\xf2\xde\x75\x99\x4d\xe5\x7d\x6b\x7f\x00\x14\xc3\xd5\x61\xa4\x4b\x95\x68\x13\xeb\x59\x7b\x62\x1b\x8c\x17\x4b\x08\xe8\x00\xfa\x8c\xbe\xa4\x39\x4b\xf4\x62\xed\x3a\xc1\x78\x6a\xb6\xd3\x1b\x29\x60\xbb\xa1\xdd\xee\x6e\x48\xaf\x20\xd4\x3c\xa4\xfa\xb4\xef\xb5\xdc\x4e\xfb\x56\xba\x2e\xb7\x00\x8c\xc3\xc4\x27\x14\xa1\x8c\xf9\x20\x01\x92\x6a\xda\x01\x80\x77\xb8\xdc\x47\xf7\xd2\x85\x14\x23\x13\x94\x64\x3c\x60\xe4\x7e\xc5\x32\x66\x6c\x21\x0b\x99\xad\x99\x6b\x98\x80\x18\x28\x1c\xbd\x87\xa1\x6e\x17\x30\x4e\x05\xa1\x47\x50\xdc\xeb\xb1\x93\x7b\xc8\x5b\xf5\xf0\xc9\x5f\x4e\xee\x6a\x90\xe3\xf6\x31\x3d\x66\x4e\x4a\x52\x19\xdb\x24\x37\x74\x7a\x94\xa4\xb9\x47\xa0\x67\x19\xea\xd9\x8a\x6d\xbd\xb3\x3a\x5c\x17\x7c\xf8\xb3\x9b\xf1\xf5\xf1\xe0\x26\x0f\x01\x79\xf7\x90\x21\xeb\xb2\x07\xec\xbd\xa0\x4d\x9c\xe0\xda\xfb\x95\xcc\xd1\x14\xa9\xb7\x6f\xc4\x3e\x2d\xf4\x76\xa6\x4b\xf4\x11\xea\xc8\x5e\x69\x28\x3d\x25\x24\xd2\x57\x4a\x22\xbb\xf7\xab\x53\x4e\xfa\xcf\x3d\xe9\x9a\x7e\x54\x59\xda\x90\xea\x97\x6d\x05\x02\xed\xbb\xea\x9f\xca\xf5\x00\x1e\x85\x1b\xd7\x93\x50\xe9\x1f\xa6\xd6\x3f\xdb\xea\xef\xbb\x07\x3d\xbd\x3c\x3f\xec\x91\xa5\xb3\x9f\x15\xab\x2b\xa7\xc9\x40\x71\x2f\x9d\xd8\x50\xe9\x36\x7a\xd1\x4f\xda\xc6\x37\xd1\x25\x5c\xd2\x4b\xa7\xe8\xa5\x9d\x08\xc2\x48\xab\x10\xd2\x1e\xde\x98\x56\x61\xbb\x89\x5e\x7d\xa5\x6d\x8f\x0b\xcb\xc2\xef\x69\xfe\xac\x29\x76\x63\x00\x8d\x5e\x4d\x97\x7d\xec\x18\x56\x05\xad\xc9\xed\x4a\x0e\x73\xd0\x68\x8d\x96\x6c\xe1\x1d\x95\x81\x20\x25\x30\xba\x60\x51\xf7\x66\xe9\x9b\x63\x91\xf5\xc8\x15\xd9\x8f\x76\xbd\x08\x1d\x60\xbe\x64\x5a\xec\xb5\x06\x5e\x99\x35\x79\x37\x2e\x1d\xcd\x27\x1a\x10\xd6\xfa\xd9\xe1\xa1\xd4\xf8\xa4\x0f\xd0\xdd\x23\xda\x8a\x4a\x28\x48\x61\x43\x07\x4c\x28\x47\xbb\xc8\xb2\x17\xdb\xdc\x9f\x6b\x96\xcb\xac\xb2\xa2\xd1\x0d\xdf\x3f\x61\x8a\xd8\xbd\x39\x7e\xf7\x47\x22\x02\xfd\x92\xbf\x03\x5b\xc3\x14\xf0\xdd\xfd\xe1\xf7\xfe\x92\xb5\xbb\x1f\xa4\xb2\x66\x87\x70\x93\x13\xb6\x50\xb6\xfd\x61\xc9\x43\xe0\xf6\xf4\x30\xcc\x10\xf7\x22\x42\xef\x15\xad\x96\x1f\xe6\xd5\xca\x7e\x51\x0a\xda\xfd\xcc\x4a\x29\x5f\x47\x3a\xfc\xd4\xb3\x8a\x6f\x6f\xa7\x95\x8f\x3e\x18\xb8\xa0\xb1\x44\x3f\x1a\x5e\x7a\x19\x61\xfe\x51\x31\x0b\x6b\xa6\x56\x32\xde\x83\x33\xbc\xc5\x17\x1e\x57\x6a\xc7\x2d\x23\x51\xc7\x7d\x3b\xc1\x71\x7a\x4c\x6c\xe7\xc4\x3a\xab\x82\x5a\xb9\x8e\xc5\x38\x8a\x5d\xed\x53\x36\x5e\x8e\xc9\xeb\x8b\xdb\x23\x32\x7d\x77\x7b\x44\x98\x8a\xc6\xcf\xc8\xdb\x22\x51\x3c\xed\xf2\x6d\x18\x10\x01\xdf\xbf\xba\x3e\xd4\x6a\xd8\x12\xd2\x26\x7f\x5d\xbe\xaa\x94\xaa\xd5\x1e\xe7\x78\x38\xd5\xcf\x7f\x8a\x63\xec\x3a\xc1\x6e\x8a\xe2\x9e\x20\x2c\x73\x5c\x1e\x15\x6e\xd3\x9e\x45\xdf\xc3\x20\x84\x8d\x97\x27\x64\x44\xd8\x07\x1a\xa9\x13\x72\xbc\x90\x92\x8c\x4c\x58\xd8\x09\x39\x9e\xd3\x8c\x5c\x5e\xdd\x5e\x9c\x60\xc8\x19\x13\x2a\xdb\x92\x75\x97\x78\x7e\x75\xf9\xe6\xaf\x86\x72\x6e\x09\xe3\x60\x7a\xa1\x64\x76\x00\x93\xa0\xff\x4b\xff\x89\xb3\xcc\x0e\x6c\x40\xd8\x6d\xd7\xf6\x37\x34\xe1\x31\x2d\x8d\x7c\x90\x6a\x81\xdd\xcd\x94\xaf\x9d\x59\xf5\xe9\x83\x73\x8d\x8c\x90\xdb\xdb\xa9\x86\xb0\xc3\x00\xa8\x40\xc0\x6b\x40\xf7\xe7\x55\x13\x05\x11\xb1\x73\x66\x01\x61\xec\x87\x0b\x99\xad\x4f\x2c\xd8\x67\xc5\xf3\xe7\x9f\x45\x7a\x60\xf8\x17\x3b\x31\xe5\x83\x7a\x19\xbc\x10\xd5\x60\x55\x30\x9c\x26\x18\x59\x79\x84\xd5\xd0\x23\x03\xef\x8f\x9a\x01\xc7\xe8\x08\x2f\xd9\xa3\x02\x03\x02\xe0\x71\xd5\x48\xb3\xf5\xc7\x1c\xb4\x6f\x89\x84\x1e\x04\xa9\x7b\x28\x1e\xad\x7b\xf2\xcc\xc9\xd9\xdb\x69\xdf\xa8\x0f\x20\x46\xe1\xb5\xbb\x54\xca\xe9\x48\xa7\x57\x6b\xb2\x2e\xb1\xaf\x1e\x4c\x69\x14\x0c\xd3\x4f\xb4\x45\xbf\xc2\x98\xfc\x5d\x99\x96\x2f\xea\x3e\xa9\xb2\xb3\x61\xe9\x29\xd7\xf3\xb4\x89\xb6\xe0\x43\xd7\x0f\x6d\x5e\xb5\xb8\xd1\x7b\x61\x62\xd4\x5e\xea\xa5\xc9\xe7\x41\x32\x91\xc2\x85\x12\x00\x25\xc2\xfe\x9e\x7b\x28\x6b\x90\xa6\xa4\x01\x8c\x71\xf8\x10\x96\x0a\xbd\x53\x5d\x58\x19\x8f\x25\xb8\x23\x15\x8b\x56\x82\x47\xbb\x65\xc8\xea\x1f\x30\x8b\xa2\xd9\x9f\xaf\x53\xe9\x54\xc7\xbe\xd3\x42\x79\x72\x98\x13\x9e\x2a\xcc\x6c\x5b\xf0\x8c\xdd\xd3\x24\xe9\x58\x2a\x52\x0b\x63\x94\x2d\x72\x0c\x96\x62\x62\x21\x31\x43\xc0\x84\xe5\x75\x5f\x8d\x4e\xdf\x1d\x3c\xf6\xf1\x87\xa1\x87\x19\x63\xfc\x18\xfb\x00\x0e\xab\x2e\xd7\x17\x9e\x81\x5c\x90\x2f\x31\xae\x1b\x76\x08\x63\x5d\x44\x2b\x49\xae\x91\x69\x9b\xf6\x84\x29\x17\xcb\xbc\xdd\xf7\xd5\x6b\xbf\x3d\x88\x41\xea\x4f\xb0\x09\x00\x64\x32\xb5\x89\x36\x1f\x1d\x0c\x56\x33\x6e\xa1\x3c\xee\x42\x79\x6a\x3d\x62\x41\x28\xf4\x80\x40\x20\x55\x22\xb0\xb9\xb7\xe6\x69\x27\x94\xb7\x2c\x5e\x07\x19\x20\xd9\xba\xea\xee\xe5\x4b\x5b\xa9\x6f\xee\xa3\x88\x06\x18\x23\xb0\xed\x51\x7b\x2f\x80\xbe\xe5\xf5\xaa\x4f\x5f\xb6\x54\xef\x31\x5a\xad\xc7\xa4\xf8\xa0\xb7\xee\x8e\x6d\x0d\x6a\xa7\x94\x9b\xe2\x79\xed\xd3\x6b\x95\x95\xb0\x0f\x2a\xa3\x35\x98\xd2\xb9\x2c\x54\x0f\x46\xf2\x58\x9a\xa3\x90\x4a\xdf\xbe\x7e\x98\x71\x89\x0f\x77\x44\xf1\xc0\x23\xed\xd1\x74\x03\xc3\x18\x18\xc6\x6f\x9b\x61\x08\xa9\xac\x58\x15\x04\x4b\x7b\xb4\x4d\xcf\x38\x9b\x7e\x11\x36\x3b\x41\xa0\x56\xe4\xeb\x88\x03\x35\x8f\x85\x01\xd6\x71\x8f\x7b\x84\xf4\x3c\x2c\x98\x27\xfd\xb5\x02\x77\x76\xe0\xc2\xf6\x11\x79\xff\x8e\x63\x0b\x2c\xbc\xae\x24\x60\x61\x32\x06\xac\xe7\x59\x9b\x65\xde\x44\xe4\x9a\x73\xbe\x80\xf4\xa2\x6b\xc8\x8d\xb3\x99\x5e\x68\x36\x7f\x3a\x67\x11\x2d\x72\x13\x07\xd7\xe1\x4a\x28\x97\x18\xb1\x0c\xc6\x28\x63\xe9\x9e\xa1\x29\xfe\xad\x49\xf9\xaa\x45\x06\x76\xb1\x58\x0c\x19\x3c\xa9\xa2\xde\x8e\xaa\x98\x37\xf8\xa7\xbe\xed\xee\xbf\x37\xaf\xec\x5f\x37\x67\xb7\xf0\x4b\x78\x70\x1c\xe9\x0d\x57\xcc\x84\xd3\x51\x61\x91\xc2\x3a\x62\x21\xa4\x90\xbc\x18\xbd\xfc\xe2\x8b\x16\x33\xff\xa7\x43\x75\x0c\xbe\xe8\xc7\x81\x6f\x30\x6c\xb3\x5f\xf6\x19\x51\xb2\x45\x69\xc4\x91\x86\xc4\xb3\x21\xf1\xac\xdb\xd5\x39\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x16\xda\xf1\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\x99\x6f\x17\x03\x1d\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\xac\xfe\x19\x12\xcf\x86\xc4\xb3\xf2\x33\x24\x9e\x0d\x89\x67\x43\xe2\x99\x77\xd0\x21\xf1\xcc\x81\xc5\x90\x78\x36\x24\x9e\x0d\x89\x67\xf5\xcf\x2f\x99\x78\xd6\xd2\x38\x81\x90\x91\xa9\xd0\xeb\xfb\xad\x4f\x03\x7e\xaf\x9c\x60\xee\xc6\x03\x0a\x73\xd7\x6f\xd5\x50\x99\x7b\xa8\xcc\x3d\x54\xe6\x1e\x2a\x73\xfb\x96\x37\x54\xe6\x1e\x02\xa4\x86\x00\xa9\x21\x40\x6a\x08\x90\x1a\x02\xa4\x86\x00\xa9\xea\x33\x04\x48\x55\x9f\x21\x40\x6a\x08\x90\xfa\x55\x05\x16\x0c\x01\x52\x43\x80\xd4\x10\x20\x35\x04\x48\xed\x3c\xfc\x1b\xa3\x63\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\x35\x04\x48\x39\x9f\x21\x40\x6a\x08\x90\x2a\x3f\x43\x80\xd4\x10\x20\x35\x04\x48\x79\x07\x1d\x02\xa4\x1c\x58\x0c\x01\x52\x43\x80\xd4\x10\x20\x55\xff\x0c\x95\xb9\x87\xca\xdc\x43\x65\xee\xda\x67\xa8\xcc\x3d\x54\xe6\x1e\x2a\x73\xf7\x9a\x61\xa8\xcc\x3d\x54\xe6\x1e\x2a\x73\x0f\x85\x56\x87\x42\xab\x43\x65\xee\xa1\x32\xf7\x50\x99\x3b\xbc\xfe\xa1\x32\xf7\xc0\x30\x06\x86\x31\x54\xe6\x1e\x2a\x73\xd7\x3e\x43\x65\xee\xa1\x32\x37\x7c\x86\xca\xdc\x81\xcf\x50\x99\x7b\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\xda\x67\x48\x3c\x1b\x12\xcf\x7e\x55\x09\x1b\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x3b\x0f\xff\xc6\xe8\xd8\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\xce\x67\x48\x3c\x1b\x12\xcf\xca\xcf\x90\x78\x36\x24\x9e\x0d\x89\x67\xde\x41\x87\xc4\x33\x07\x16\x43\xe2\xd9\x90\x78\x36\x24\x9e\xd5\x3f\xff\xd9\x95\xb9\xa1\xdc\x76\x57\x5d\xee\x2b\xfd\x50\x0b\xfd\xae\x1f\xba\xc4\xa7\xbd\xeb\xc4\xf0\x3a\xac\x89\x0c\x06\x12\x3d\x28\x78\x13\xe3\x31\xda\x4c\x4a\x6b\xef\x8a\x2f\xb5\x0a\x3a\x3b\x80\xf1\x66\x07\xc0\x2e\xcd\xb3\xbe\xa1\xe9\x42\x2b\x50\x0a\x04\x34\x18\x20\x91\xf7\x2c\xc3\xd5\x60\xb8\xa2\xb3\xb8\x9c\xc8\x35\x57\x4a\xd3\x5d\x6e\x33\x5d\x7c\x83\x46\x52\xe4\x1c\x0b\x92\xa3\x5d\x6f\x76\xc0\xc5\x82\x0b\xae\xd8\xec\x80\x8c\x08\x04\xc9\x39\xdb\xb1\x54\xdd\xac\x93\x24\x34\x57\x63\x52\xee\xcc\x0b\x12\xbd\x56\x1e\x33\xa1\x78\x44\x13\xb3\xc0\xe6\x38\x5c\x10\x9a\xa4\x2b\x2a\x8a\x35\xcb\x9c\xe7\xa0\x16\xb8\x6f\x54\x43\xcb\x8d\x19\x0a\xa3\x42\xbc\xee\x13\xc4\x0d\x51\xac\xe7\xbb\x16\xc2\x16\xb1\xb1\xc1\xe4\x6f\x5d\xf3\x0c\x22\x8a\x63\xa4\x29\x72\xa3\x73\xf2\xe8\x0e\xff\x4f\x16\x5e\xfc\xd7\x4b\x6e\xa8\xdc\x0e\x70\x4d\x5a\x86\x03\x16\x25\x2d\xcf\x0b\x9b\x0d\xaa\x75\x68\xd1\x21\x49\xe4\x3d\x92\x02\xb4\x1c\x95\xb6\x14\x14\xec\xfe\x04\xa6\x05\xbc\xec\xef\x13\xae\x58\x46\xb5\x5e\xef\x1b\x77\x36\x23\x23\x4c\x4a\xd2\x68\xb2\x4e\x69\xc6\x73\x29\x8e\x08\x64\x26\x5a\x9b\x80\x19\x70\x21\x25\x99\xd3\xec\xe7\x1f\x7f\xaa\xa6\xfa\xdd\x5e\x53\x55\x73\x69\x9e\xce\xfe\x5e\xd0\xe4\x8f\x18\x43\x6b\x65\x54\xbe\x30\xc2\x29\xcf\xe1\x19\x6b\x67\x2f\x27\xf4\xdf\xc8\x1f\xf4\x2a\xa8\x8d\xff\x9a\xdb\x7f\x44\xf0\x8f\xf1\x78\x4c\xfe\xe5\xcc\xad\xb2\x82\xd9\x24\x98\x32\x8e\x14\x47\xff\x0b\xf1\xc7\xad\x1b\xd7\x42\x70\x92\x6a\x7d\x7a\xd1\x5c\xb4\x2e\xc8\x37\xc1\x9e\x6b\x84\x69\x42\x8b\xf2\x8d\xef\xac\x73\x45\xf3\xa7\x30\xd2\x7b\xcd\x3e\x9e\x55\x93\xde\x96\x73\x52\x55\x9d\x82\x73\x02\xbf\x03\x34\xf4\x52\x75\x33\x44\x69\x78\x94\x0b\x78\x16\xac\x4f\xf0\xdf\xe2\xf9\xf3\x97\xaf\xf0\xff\xf1\x97\xf2\x9d\x9b\x95\xcc\xd4\x28\xe2\x59\x54\x70\x05\x72\x93\x79\xc9\x37\xd1\x3f\xff\xd9\xfa\xb6\x84\x19\x9f\xe2\x33\xcf\xca\x87\x52\x9a\x31\x23\x73\x2f\x33\x59\xa4\x5a\xe6\x9e\xcd\x14\x4d\x92\xa7\x5e\x2f\x93\x29\x48\x8f\xb1\x26\x25\x45\xb0\xa3\x59\x5c\xa5\x49\xe2\x18\x91\xe0\x0a\xbe\x41\x1c\x40\x2d\xc9\xaf\x00\x51\x7d\x79\x91\x92\xd8\x98\x4b\x97\x28\xe6\x47\x64\x74\x44\xde\x03\x1c\x8e\xc7\xe4\x06\x6e\x16\x31\x37\x2b\x38\xe8\x5a\x66\x8c\xa4\x5a\xc0\xcf\x73\xbe\x61\x64\x8e\xd9\x02\x5b\x6b\xba\x34\x26\x65\xc2\xf2\x88\xa6\x8c\x44\x2b\x9a\xd1\x48\xb1\xcc\x2c\xfb\x02\x83\xae\xbd\xa8\xff\x14\x48\xfb\x9a\xc6\x6c\x54\xa4\x88\x16\xf9\xb3\x92\xe0\x40\x8a\x1a\x92\x87\x7b\x36\xd7\x9a\x01\x43\x02\xe1\x9e\x77\xcc\xd2\x44\x6e\xd7\x4c\x78\xc9\x25\xbe\x9d\x66\x32\x36\x08\x0a\x63\xea\x3b\xa4\x69\x4e\x26\x85\x62\x22\x2e\x11\x9c\x46\x77\xf8\xe7\xbf\xf4\xa3\xd5\xc8\xe4\x77\x7f\x0a\xe0\x7d\xcc\x36\x66\xe0\xdf\x91\x06\xee\xfb\xa4\xe8\x36\x49\xa9\x6e\xe4\x6b\x71\x3d\xb7\x58\xf8\xda\xed\x11\x0b\x8c\x45\xad\xc8\xbd\x6f\x53\x96\x13\x21\x66\x1a\x43\x01\x36\xd4\x90\xc2\x2e\xd2\xda\x00\x7c\x2e\xe4\xb6\x3d\x82\x13\xa1\x07\xaf\x04\x5f\x03\x17\x31\x8f\x40\xa5\xbc\x5f\x41\xc2\xb3\x2b\xa0\xba\x11\x56\x46\x7b\xf1\xd2\x26\x7d\xdb\xa4\x69\xb9\x71\x64\xfe\x9a\x4b\xb5\x1a\x13\x0c\x7a\x04\x5e\xf1\x21\xd5\xc2\x87\x4a\xb6\x8e\x8e\xf4\x14\xda\x85\x78\xa3\x59\x1d\xba\x29\x48\x94\x31\x93\x5f\x91\x9b\x3b\x2d\x33\x22\x78\xf2\xec\xc8\xe6\x48\xc4\x6c\x41\x8b\x44\xe5\x04\xb7\xa5\x41\x97\xc5\x01\x51\x59\x49\x72\xaf\x29\xe4\xc4\x28\x64\x7a\x11\x17\xe6\x9f\xfa\x16\x1a\x7a\x59\x76\xcd\xc0\xd8\x3d\x30\x99\x9b\x69\x7c\xa3\xf2\x1c\xef\xd4\x88\x7c\x6f\xe4\x1d\xbd\x14\x3b\xc7\xdf\x8e\x0c\x33\xd0\xd2\x23\x38\x03\xec\x94\xd8\xd9\xe4\x29\x17\x51\x52\x04\x57\xbc\x62\x24\xa2\x5a\xa2\x84\x01\xaa\x61\x08\x32\x5f\x21\xcb\xcd\xc0\x70\xcf\x3c\x2b\xb9\x08\x76\x4c\x69\xae\xad\xb6\x30\x4d\x88\x9a\xc3\x87\xf7\xe9\x45\x8f\xe6\x1a\x76\x26\x04\xcb\x94\xe7\x34\x8c\xa6\xec\x15\x45\x04\xa2\x56\x5d\x86\xcf\x18\xd5\xf7\x28\xba\x23\x74\x49\xb9\x38\x32\xd8\x80\xee\x8c\xe4\x9e\x6e\x73\x13\xc5\xee\xc5\x62\x1b\x79\x80\x21\x07\x47\x44\xb0\x0d\xcb\x6a\xf8\xe6\xd5\xda\x7b\x36\xe4\xa9\xa0\x40\x18\xb0\x8a\xd2\x41\x97\xca\x3c\xe7\xf3\xc4\x4e\x5c\xc5\x54\xe9\x17\x6e\x52\x16\xf9\xf5\x38\xdc\x5b\x38\xca\xac\x5d\x63\x0c\x2a\x63\x7e\x1d\x6e\xf7\x5b\x60\x15\xb1\xeb\x3f\xcf\x95\xcc\xe8\x92\xd9\xaf\x72\x45\x55\x81\x80\x41\x57\x12\x8b\x2f\x1d\x23\xff\x1d\x17\xb1\xa6\x43\x16\xa4\x69\x52\x64\x34\xa9\xbe\x89\xa4\x40\x8f\x6e\x7e\x42\xbe\xff\x9b\xfe\x46\x8f\xcf\x62\x93\xa1\x69\xbe\x9d\x89\xd1\x68\x34\x13\x34\xe5\x36\xd1\x93\xd0\x94\xb3\x0f\x8a\x09\x78\x6a\x7c\xf7\x65\x3e\xe6\xf2\x78\xf3\x62\x26\x70\xc6\xb3\x22\x57\x72\x7d\xcd\xd0\x45\x75\xce\x40\x8d\x02\x3a\x5d\x4b\xa7\x04\xc3\x0a\x11\x18\xbe\x9a\x33\x95\x8f\xa3\x2c\x1e\xa7\x99\xd4\x10\x88\x80\xe8\x8c\x65\xb6\x9c\x09\x4d\xcd\xe0\x0d\x10\x4c\x4e\x48\xe0\xb1\xba\x87\x03\x97\x52\xc5\xd8\xe2\xb7\x09\xcf\xd5\x9f\x1b\xbf\xbc\xe1\xb9\xaa\x03\xc8\x59\x93\x81\x3b\x17\xcb\x22\xa1\x99\xfb\x13\xc0\x2b\x92\xfa\xd0\x4a\xab\x08\x68\x68\x1b\x0b\x3e\xfd\xc7\xc8\x6c\x53\x43\x07\x46\x8a\x56\x6c\x5d\xa5\x93\xca\x94\x89\xd3\xe9\xe4\xdb\xcf\x6e\xea\xdf\xef\x06\xb1\xda\x50\x61\x13\x8e\x55\x4d\x39\x62\x7f\x2f\xf8\x86\x26\x9a\xa0\x1a\xbc\x6e\xc6\x17\x3b\xc8\x1b\x30\x7b\x39\xa7\x5b\xc7\xd5\x7a\xd5\x09\xbd\x54\xe3\xed\xc7\xc8\x78\x5c\x8c\xd9\x31\x8b\xcd\xf6\x70\x1d\x40\x2d\x0c\xa9\xa7\x3e\x7b\x86\x5c\x00\x77\x07\x8c\x1f\x83\x08\xc0\xb2\xdc\x2a\x7f\x91\x14\x1b\x96\x29\x92\xb1\x48\x2e\x05\xff\x47\x39\x78\x6e\xe3\x0f\xa0\xdf\xd6\x0e\xa3\xe0\x42\xb1\x4c\x0b\x0b\x70\xd5\xd1\xda\xaa\xd5\xfe\x8c\xe9\x69\x48\x21\x9c\x01\x6d\xe4\xd3\x5b\x2d\x1a\x72\xb1\x90\x27\x50\x0f\x28\x3f\x39\x3e\x5e\x72\x65\x11\x3b\x92\xeb\x75\x21\xb8\xda\x1e\x83\x67\x94\xcf\x0b\x25\xb3\xfc\x38\x66\x1b\x96\x1c\xe7\x7c\x39\xa2\x59\xb4\xe2\x8a\x45\xaa\xc8\xd8\x31\x4d\xf9\x08\xd6\x2e\xe0\x66\x8d\xd7\xf1\x93\xcc\xdc\x84\xfc\xd0\x47\x07\x76\xc9\x07\xa0\x6e\xdb\x31\x68\x0c\x36\x49\xb4\x28\xfb\x22\x1b\x2f\xa1\x6d\x43\x3f\xae\x2f\x6e\x6e\x89\x9d\xdd\x9b\x70\x8c\xc0\xaf\xde\xcc\xab\x73\xd0\x40\xe3\x62\x61\xe5\x15\x30\x46\xbb\x6a\x3b\xb2\xcc\x84\x7b\x44\xd6\xbc\x98\xaf\xb9\xca\x9d\x42\x32\x72\x4c\xce\x4a\x2b\x75\x91\xc6\x54\xb1\x78\x4c\x26\x82\x9c\xd1\x35\x4b\xce\x68\xce\x3e\xf9\x29\x80\xd0\x36\xd2\xb0\xed\x7b\x0e\x81\xe4\xef\x90\x09\xae\x24\x53\x81\x63\xab\xee\xa3\xe6\x38\xf5\x4c\x24\x9b\xac\x56\xa5\x87\xd3\x1d\xda\x55\x7d\xec\x91\x36\x98\x52\x8b\x49\x3b\x10\x33\xbf\xd3\x94\xcf\x86\xf5\x4d\xa6\x25\xa5\x43\x5d\x77\xce\x12\xa9\xb1\x4a\x1a\x9b\x0a\xf3\x39\x42\xc3\x7c\xfa\x7f\x05\xa7\x04\x3e\x09\xff\xf7\xc4\xa4\x9b\x9d\x10\x64\x50\xc7\x8a\xad\x53\xa0\x57\xc7\xf8\x05\x44\xcb\x55\x91\x16\x59\x3e\xca\xe6\x34\x1a\x6f\xe9\x3a\xd1\x1c\xf7\x87\x1f\xf8\x82\xb0\xbf\x93\xf1\xf5\x57\xa7\x67\x67\x52\x2c\xf8\x92\xcc\x0e\xf4\x23\xb3\x83\x7f\xfd\x4b\x8f\x3f\x01\x61\x96\x11\x4a\xa2\xa4\xc8\x15\xcb\x32\x99\xb0\xb2\x4d\x5c\x73\x74\xb0\x5b\x49\xc1\x84\x3a\xd2\x2f\x43\xa3\x39\xa0\x21\xca\x12\xd3\xc0\xb2\xac\xa6\x54\x05\x22\x18\x16\x8f\x93\x5e\xcb\x84\xd5\x45\x03\xd8\x06\x2d\xd4\x4a\x66\xfc\x1f\x18\x7c\xe5\xc8\x07\x1e\xfe\x1f\x98\x78\x26\x40\x34\x85\x07\x9f\x90\x4b\x19\xa3\xb5\x80\xdc\x9b\x18\x2b\x25\xc9\x5a\x0a\x0e\x71\xc4\x32\x23\x31\x4b\x18\xde\x74\x64\xba\x34\xe5\xaf\xb5\xb0\xa0\x4f\x46\x1f\xe2\xdf\xf0\x5c\x4b\x4a\x5c\x22\xe9\x88\x08\x3d\x36\xfe\xb9\x61\xd9\xdc\xfd\xe9\xde\xf5\x3b\x8c\xe0\x72\x54\x7f\x2d\xf1\x5e\x3e\x21\x53\x5b\x63\xcc\x59\x5b\x55\xfa\x89\x7d\xe0\xb9\x82\x1e\x8c\x34\x27\x29\xcd\xcc\xf5\x3a\x7d\x4b\xaa\xdd\xee\xbf\xe8\x54\xc6\x81\x35\x2f\x99\x0a\xad\xb8\xdc\xce\x13\x5c\x40\x39\xb0\xc9\x46\x13\x3c\x85\x26\x96\xb1\x56\x82\x04\x02\xc6\x64\xc1\x25\x4c\x19\x1f\x74\x73\x99\x7e\x61\xac\x6d\xed\x3c\x4d\xa5\x4c\x72\xf7\x0b\xcd\x7c\xb2\x0d\x56\x87\xf0\x6f\xcb\xee\xe4\xe3\xa7\x9f\x27\x32\xba\xa3\x0b\x14\x4a\x59\x6d\x19\x74\x0d\x3f\x36\xbe\x5b\x51\x11\x27\x21\x14\x69\x01\x37\xa8\xd4\xac\xfa\x1b\xd9\x5e\xf5\x37\x42\xd5\x7b\x3c\x3b\xd7\x70\x4d\x05\x5d\xb2\x9c\xac\x64\xae\x9c\xa0\xac\x47\x01\x48\x6d\xcc\x4f\xb8\xcb\x27\xe4\x92\xb1\x18\x2c\x07\x5a\xf5\x54\xd2\x3c\x6b\x29\x98\x53\xcc\xe3\xb1\xb6\xe6\x19\xb9\xc7\x06\xc3\x5b\x7a\x02\xee\xdb\xb3\xea\x60\x90\x36\x17\x59\x69\x3b\x41\xf3\x01\x57\x7a\xc4\x9c\x68\x21\x28\x82\x47\x1e\x67\x3f\x1a\x2f\x1c\xb4\x88\xdc\xd9\xbd\x3b\x7b\x82\x0a\xbb\x5e\x87\xbc\x17\xce\x5a\x76\xb6\xfd\xc4\x6c\x9b\x50\x6b\x82\x21\x7c\x41\x84\x14\x0c\x49\x58\x1e\x82\xcf\x13\x7b\x8c\xc8\x63\x43\x98\xf0\x04\xf1\x1b\x68\x62\xb4\xaa\xa5\x04\x94\xa8\x0f\xbc\x73\x87\xc1\x7c\xc5\x05\x5a\x6d\x3e\x11\x9f\x91\x09\xbb\x66\x18\x62\x6f\xcf\xa7\x65\x7c\xfd\x98\x87\x07\x76\x4e\x93\x17\x20\xaf\xe8\xa3\x19\x99\x01\xea\x46\xcf\x1e\x63\xb8\x6e\x7b\xa4\x11\xf9\x36\x57\x6c\x6d\x20\xd7\x5b\xf8\xd0\x94\xdd\x15\x38\xba\xc4\x09\xe7\x35\x72\x4e\xd9\x5a\x8a\x1b\xd6\x25\x49\xc0\xc3\xbf\x94\xf4\xa0\x27\xab\x4b\x0c\x5a\x98\x3d\xbb\x9c\x68\x49\x6e\xc9\x05\x11\x40\x79\x94\xd4\x18\x0f\xcc\xf3\x08\xd9\x1b\xea\x87\x6e\x82\xea\xc3\x39\x71\x43\x98\xb0\xba\x3f\x0e\xdc\x4a\x76\x9e\x10\x9b\xf9\x7b\x93\x70\xcb\x8f\xc1\x82\xbd\xa8\x22\x68\x4c\x3b\x68\x23\x96\x5b\x93\x9c\xad\x75\xf4\xc4\xd6\xae\x59\xdb\xf0\xf5\xe6\x2e\x62\x9e\x47\x72\xc3\xb2\xad\x45\xe4\xb6\x5d\x95\xfc\x00\xd6\xb3\x97\x74\xb4\x17\xf4\x76\x42\xac\x46\x65\xe8\x99\x9f\x9c\xbd\x33\x76\x7d\xbb\x9b\xd2\x94\x3f\x99\xa2\xf3\x8a\xc6\x1b\xad\x03\xe5\x15\x20\x5a\x57\x1b\x18\xf5\x76\x9b\xae\x68\x3e\xf6\x4b\x7b\xe4\x6c\x72\x7e\x4d\x68\xa1\xe4\x28\x66\x5a\xe3\x04\x6f\x9e\x80\x1b\x49\xe3\xb5\x41\xb6\x8a\xcd\x21\xd5\x25\x6b\x9a\x3e\x00\xbf\xf0\x65\xfd\x6e\x2b\x0a\xed\x2f\xf2\x1e\xbb\xf4\xba\x09\x66\xcd\xa9\x0d\xfa\x45\x09\xa3\x60\x64\xd0\x42\xb8\xd1\x49\xdf\x09\xba\xa1\x3c\xa1\x73\x4d\x24\x12\xba\x74\x00\x95\xba\x70\x7e\x62\x9d\x07\xa0\x2e\xe5\x98\xcd\x15\xd5\x79\xa6\x53\xc2\x8b\xa3\xd0\xe9\xd6\x2e\x1b\xfb\xd9\xf0\x77\x4d\x5e\xa2\xe1\xec\x84\x08\xba\x49\xf1\x3c\x70\xad\xcd\x4d\xe2\x62\xd9\xe7\x46\x98\xa7\xd3\x5a\x80\x47\xcf\x2b\x61\x10\x6c\xbe\xb5\xe0\xd0\x0b\xb7\x36\xf5\x6a\xff\x1f\x4d\x7c\x1a\xd4\xc6\xb9\x4d\xd6\xd1\xd5\x2e\x5c\x93\xa6\x1c\xda\xa0\xa2\xa9\x4d\xbc\x90\xb1\x45\x9f\x87\xad\xb9\x05\xf7\x1c\x0c\x2a\xb1\xc7\x68\x7a\x39\xd9\xd0\x8c\xcb\x22\x27\x67\xd7\xe7\x78\xdb\x11\x97\x1e\x49\x5a\xc4\x1a\x11\x0b\x96\xf0\x0f\x38\xae\x03\x47\xe7\xdb\xba\xbc\x05\x2a\xc5\x32\x4d\x19\xcb\xf2\xe6\x50\xf3\x65\xba\x33\x50\xf9\xdd\xee\x30\xbd\x14\xa3\x90\xa6\x82\x33\x7a\xb1\x74\xe7\xe7\x9c\xb9\x04\x37\xf8\x8e\xf7\xe9\xa0\x48\x1d\x50\x25\x5a\x55\x2e\x3c\x18\x20\x47\x80\x10\x0f\xd0\xb2\xee\x77\xb1\xa5\xc8\x55\x29\xcc\x8a\xb8\x14\x4f\x35\xed\x01\xc4\x91\x42\xcb\xaa\x99\x2a\xd2\x4f\xa5\xd1\xb6\x62\x4b\x6f\xa5\xa4\x4d\x0f\x71\xf7\xda\xdc\xa0\x67\x57\x24\xb8\x2d\xd2\xc6\x7b\x7a\x1e\x8f\x67\x61\xfd\x08\xbe\x09\x5e\xd3\x33\x3c\xaa\xe1\xa6\x1f\xbe\xdc\x82\x2f\xd2\x86\x84\x48\x81\x72\x17\xc4\x19\xdb\xf8\x4c\x20\x32\x45\xba\xcc\x68\x6c\xf2\xe5\x36\x2f\xc7\xaf\x50\x6a\x8c\xb0\xa6\xce\x13\x32\x67\x24\x63\x6b\xb9\x61\xb1\x89\x4d\xb4\x2f\xc8\x4c\xef\x70\x91\xb1\x7c\x45\xb8\xc8\x15\x4d\x92\x47\x55\x6f\x5b\x68\x49\x9d\x24\xed\x83\x59\x7e\xa8\xd4\x00\x62\xce\x58\x73\x06\x25\xf5\xa3\xfa\x44\xd1\xa6\x44\x93\x44\x46\x8f\xbb\xc9\x5f\x9f\xbd\xe6\x31\x28\x06\x5d\xd7\x58\x43\x50\x33\xf8\x4a\xef\x90\x54\xfb\xaf\x17\xd5\x04\x6c\x06\x31\x6c\xbe\x85\x7b\x86\x07\x94\xc9\x42\x13\xbf\xe5\x32\xb3\x19\xb0\x9f\xf0\x2c\x82\x42\x90\x91\x1f\x10\x59\x00\x3b\xd6\x7c\x69\xa8\x40\x4d\x21\x8b\x41\xa7\x04\x17\xb0\x07\xfd\x22\x2a\x4c\xd0\xee\x93\xf2\x9e\x81\x69\x42\x99\x8b\xa6\x85\x53\xb8\x9b\x50\xa1\xae\xba\x66\xa4\xc8\xf5\x4f\x9a\x29\x8d\x34\x56\x26\xb0\x08\x2f\x28\x68\x9a\xe6\xad\x3b\xaf\x96\xd8\x72\x5e\x1e\x57\x79\xbb\x46\x1b\xb6\x75\x74\xea\xba\x9f\xc2\x6a\x81\x43\xef\x6f\xa9\xc0\xf7\xc2\xd6\x89\x1f\x7e\x60\x22\xfe\xd7\xbf\xf6\xb2\x4f\x94\xa6\x09\x28\x4b\xb1\xa6\x82\x2f\x58\xae\xec\xf9\xe6\x3b\xa6\x06\xe3\x4e\x63\xd9\x11\xa1\x39\xb9\x67\x09\xbc\x6c\x12\x63\x2b\x19\x16\xa3\x5f\xac\x12\x6d\x34\x33\x29\xf4\xb3\x90\x69\xb3\xa6\x1a\x3a\xf0\x90\x7e\x82\x65\xa8\x91\x70\x51\x4b\xdd\xb0\x3c\xbc\xb4\x68\x94\x56\x91\x66\xa0\x44\x9a\xf7\x32\x5d\x84\x61\x47\x4c\x3c\xa1\xf5\x54\x7d\x99\x8f\x68\x9a\x36\x8f\xcc\xba\x1e\x1b\x81\xdc\x10\x86\xf9\xc6\x7d\x3f\x34\x02\x31\xe4\xee\x46\x65\x54\xb1\xe5\xf6\xc4\x38\xa1\xc6\xef\x6a\x5f\xeb\x43\xfc\xe1\x07\xa2\xe4\x5f\xe9\x3a\x69\xfe\x48\xfe\x49\xb8\x88\x99\x50\xe4\x73\x7c\x8e\x25\x39\xd3\xff\x22\xa5\xd3\xee\x5a\x26\x09\x17\xcb\x77\x0e\x69\xcd\xdc\xaf\xca\x55\xae\xe9\x07\x47\xc9\x3c\x21\x2f\x1c\x2c\x22\xc4\x62\x8c\xdd\x66\xd3\x51\x9b\xd4\xb7\x1c\xde\x34\x01\x25\xf5\x9a\x8a\x68\xc5\xb2\x91\xf5\xc2\xa2\x2f\xb4\xd2\x42\xb1\xba\x43\xb4\x62\x71\x91\xb0\x6c\x0c\xb1\xa8\xe3\xaa\xde\x05\xb8\xa7\x33\x0e\x61\xfd\xa3\x54\xc6\x55\x66\x59\x5c\xb9\xcd\x37\x9f\x8d\x5f\x7c\x36\xfe\x1c\x62\x10\x89\x9d\xda\x5f\xa4\x1b\x71\xfe\x88\x50\x70\xb9\x42\x6c\x29\x20\xb1\x99\xe2\x34\x8e\xa5\xc8\xb1\x78\x84\x4c\x98\x21\xa8\x50\x3f\xe1\xc8\x1d\x64\x4d\xd1\x7b\xcb\x20\xf6\x11\x92\x23\xed\x2a\x09\x8d\xe3\x11\xc4\xb0\x8b\xbc\x00\xe5\xde\x58\xac\xdd\xf7\xd3\x8c\xcb\x8c\xab\xad\xdd\x39\xa4\x58\x0a\x93\x09\x82\xee\x7d\xd7\x7f\x84\xaa\x8a\x9b\xa4\xf0\x44\x93\x69\xae\x08\x04\x79\x81\x3d\x9c\x6d\x78\xa4\x6a\xc9\x8c\xfd\xa1\x7a\x42\x0e\x8d\xdf\xbe\xe6\x68\xd7\x27\xe9\x89\x32\xad\x8f\x23\xf3\x13\x92\x70\x51\x7c\xb0\x0f\xfc\xf0\x83\x29\x5e\xfa\x5f\x77\x47\xe4\xbf\x36\xe4\xe4\x4f\x64\x7c\xe9\x8c\x44\x2c\xda\x9a\x87\xff\xeb\x8e\xfc\xeb\x5f\x27\x64\x76\xa0\xff\xbd\xd1\xbf\x1e\x38\x43\x31\x11\x3b\x2f\x68\x7e\x63\xec\x0f\xf5\xda\x27\xd5\x69\xd5\x4f\xfb\x2d\xbd\x63\x24\x2f\xb2\x3a\x41\x03\x80\x59\xf0\x40\xd4\x2a\x4d\x12\x14\x7a\x1d\xf8\x8d\x4c\x8d\x81\x13\x72\x29\x6f\xcc\xc3\xd5\xaf\x10\x60\x94\x51\x0d\x1a\x72\x51\xb3\xe2\xe3\xbc\xd9\x5d\x2b\x7e\xa0\x2c\xc1\xaa\xf3\xaf\x4d\x7c\xc7\xb6\x27\x1e\xa4\xec\x37\xbb\xbb\xee\x8b\x0f\x2c\x2a\x54\xaf\x65\x77\x39\xc6\x0d\x52\xd5\xd8\xd5\xa5\x8f\xdc\xe2\x60\x25\x41\x31\x00\xe1\x82\xaf\xf9\x3f\x18\x89\xe5\xbd\x50\x7c\xcd\x48\x8c\xb7\x83\x5a\x2a\xe5\x8a\xf6\xd6\xe7\xfc\x47\xa2\x58\x92\xb8\xdc\x41\x49\x12\x4b\x68\x21\x04\x26\xd9\x6a\x02\xfb\xca\xec\xa0\x8a\x71\xa9\x63\x6a\x2c\xa3\xfc\x38\x92\x22\x62\xa9\xca\x8f\x6d\xd1\xc5\xfc\x18\xac\x26\xa9\x8c\x8f\x9f\xd8\x1c\x55\x2e\xc5\x48\x2e\xf4\xcd\xa8\xf0\xc1\xf9\xed\x75\x46\x23\x36\x65\x19\x97\xf1\x0d\x8b\xa4\x88\xf3\x13\xf2\x7c\x87\xe4\x55\x55\x92\xd1\x8e\x66\x1f\xb0\x77\xff\x2c\xa1\x79\x8e\x00\xfc\xe1\x07\x32\x46\x59\x4e\x5f\x94\x69\xf3\x01\xf2\xcf\xd2\x6f\x34\x3b\x40\xe6\x85\x7e\x06\x8b\x53\xb3\x03\xe7\x8e\x68\x01\xf2\xcc\x72\xec\x5d\xda\x57\x71\x73\xab\x5d\xe4\x75\x2d\xac\x21\xd3\x81\x95\x15\x0f\x58\x4b\xd6\x63\x77\xbc\x89\x32\x12\xa4\x75\x63\x63\x64\xac\xad\x40\xbf\xab\x9d\x41\x7c\x35\x5f\x90\xad\x2c\xb0\x08\x08\x4d\x32\x46\xe3\xad\x3b\xa8\x59\x0c\x18\x8d\x8b\x9c\x05\x26\xb7\xc1\x7f\xe6\x69\xf8\xd9\xc5\x72\xbe\x86\x10\x95\x1f\x7e\x18\x9f\x5d\x4e\x26\xfa\x0f\x97\xec\x40\xb6\xd1\x9a\x6a\xf1\xe2\xfb\xd9\xc1\xb1\x4c\xd5\x71\x24\xf8\xf1\x9c\x8b\x63\x67\xba\xd9\xc1\x11\x99\x1d\x8c\xcc\x14\xa5\x0c\x8b\x1f\x26\x36\x5f\x67\x72\x5d\x0b\xc9\xb1\x26\xe5\xb7\x34\xb5\x02\xa4\xfb\x79\x42\x4e\x21\x75\xea\xcf\xef\xbe\xba\xb8\xbe\xbc\xb8\xbd\xb8\x79\x7f\x73\x71\xfd\xed\xe4\xec\xe2\xfd\x37\x57\x37\xb7\xc0\x01\x3c\xbf\x4d\xaf\xae\x6f\x4d\xe6\x9c\xdc\xb0\x2c\xe3\x71\xcc\x90\x7e\xb0\xaf\xa6\x5f\x93\xb5\xd5\xf0\xdd\x0f\x02\xc7\xa9\x1b\x65\x4d\xff\x23\x6b\x43\x6a\xbe\x61\x33\x01\x76\x6b\x4a\x31\xb1\x69\x6c\xc5\x02\xdf\x59\xec\xe5\xd5\xf9\xc5\xfb\xcb\xd3\xb7\x17\xcd\x71\x21\x7e\x6e\x07\x52\xf8\x81\xf0\x5f\x1f\xa4\xca\x1f\xa7\x54\xad\x4e\xe0\x26\x8d\x35\xc6\x43\x06\x9e\x77\x29\x67\xa7\x6f\x26\x67\x57\xef\x2f\x2f\x6e\xbf\xbb\xba\xfe\xf3\xe4\xf2\xf5\xfb\xaf\x4e\xcf\xfe\x7c\x71\x79\xbe\xcf\x7a\xca\xd3\xfb\x33\xdb\x86\x96\x55\x93\x30\xeb\x4e\x5f\xf7\x03\x14\x1c\x9f\x7a\x6f\xb2\x46\xdc\xc7\x36\x32\x29\xd6\xec\xad\xaf\x58\xcb\x88\xac\xf5\xd7\xb8\xf3\xe3\x0d\xcd\x8e\x13\x3e\x07\xf4\xb4\x46\x43\xff\x61\x57\xf7\x76\x24\x98\x1a\xc5\x3c\x6b\x1b\x57\x3f\xed\xe2\xbd\x7f\xcc\x48\xf0\xd1\x9c\x8b\xe6\x60\x39\x8b\x0a\xa0\x50\x52\x28\xf6\xa1\xd9\xc3\x2b\xcd\xf8\x86\x27\x6c\x59\x8f\x1a\x23\x3e\x0a\x54\x53\x39\xb4\x26\x31\xe7\x82\x66\xb5\x24\x4f\x74\x84\xea\xdf\x1a\x9a\xc5\x82\x27\x90\x5e\x01\xba\x85\xa8\x5f\x02\x8b\x15\x66\xfc\x51\x24\xf8\xa3\x10\x07\x33\xde\x40\x0a\x9c\x8d\x5c\x9a\xfc\x7b\x7b\x84\xee\xf1\x68\xde\x01\xa6\x9f\x71\xe0\xd6\x5e\x4e\xde\x9f\x5d\x5d\x7e\x1d\xa6\x1c\x5a\x30\x7c\xf1\x7c\x64\x8c\x28\x7a\x6c\xb0\x2c\x1d\x34\x57\x61\xdd\x29\x0d\x24\x81\xdc\x1f\x38\xb3\x10\xaa\x34\x97\x63\x28\x08\x2c\x6b\xf2\xfa\xdf\x4a\x3d\x04\x7f\x6f\xb6\xf3\xde\xf7\xe8\x13\x72\xc3\x30\x54\x58\x5f\x66\x28\x83\x50\x66\x61\x41\xa4\xe2\x97\x39\x6a\xd8\xfa\xa7\xc0\x8e\x7f\x05\x14\xfc\x09\x9c\xdb\xdb\xdb\x77\xc4\x08\x9d\x1b\x9a\x71\xad\x99\x86\xcf\xe8\xed\xed\xbb\x7f\xe7\xc1\x6c\x98\x5a\xbd\x5f\xab\xa2\xb9\x8f\x69\xc6\x36\x4c\x98\x96\x7b\x15\x91\x03\xa9\x2a\x4f\x18\x83\xc4\xcf\x85\xd4\x4f\x35\x5b\x73\xda\xdd\xdd\xbc\xb9\xb8\xd8\xe9\x6f\x5b\x5e\x84\x05\x4d\x72\x56\xc7\xfd\xde\x8c\xe4\xa3\x08\xbe\x77\x30\xa6\x22\xcb\x96\xc6\x3b\xf9\xf3\xd5\x70\x1e\x66\xf4\x70\xfe\x71\x1a\xc7\x5a\xb2\xfc\x3a\x61\x1f\xc8\xb7\xb0\x75\x72\x9e\xf1\x0d\x44\xd2\x53\xeb\x9a\xd2\x4f\xa4\x2c\x03\x7b\xc1\x3b\xc1\x3f\x90\x73\xb9\xa6\x5c\x90\x1b\x19\xdd\x61\x49\x51\xc8\x82\x25\xe7\xfc\x8e\xe6\xaa\xce\x6c\x20\xa6\x00\xc2\xe1\x23\xaa\x4c\x11\x84\xaf\x59\xc2\x3f\x00\xc1\x75\xeb\x01\xdc\x6c\x45\x44\x4e\xa7\x13\x0f\xdb\x59\x24\xec\xc3\x46\x26\xa3\x18\x96\xe6\xe7\x3c\x7a\x0b\xdf\xca\x64\xb2\x5e\xd6\x79\x4f\xf0\x40\xfd\x83\x8f\xf4\x51\xd4\xe1\xb7\x73\x50\xbb\xcb\xf8\x48\x06\xae\x55\x0c\x07\xc1\xd7\x58\x3a\x0e\x0b\x57\x46\x2c\xcf\x69\xb6\x05\xfa\x8f\xba\x4a\x0e\x16\xe9\xaa\x99\x82\xe6\x54\xd0\xca\x2d\x4d\xa8\xa8\x0d\x0e\x95\x20\xe6\xe9\x82\x50\x45\x8e\xf3\x6d\x7e\xbc\xc8\x8f\xe1\x4f\x11\x93\x08\x32\x94\x5e\xc2\x4f\x59\x61\xe5\xf4\x63\xfc\x7a\x6c\x0b\xec\x19\x8b\x22\x57\x9c\x26\x3c\xaf\xd2\x2e\x51\x0d\xae\x1b\x50\xb4\xe2\x92\x2b\xad\x2c\xcb\x4c\x91\x05\xcd\x57\xa0\xa1\xc0\x22\x84\x24\x0b\xca\x93\x22\xc3\x48\x2d\x96\x65\x32\xcb\x8f\x34\x76\x08\xa9\x48\xcc\xf3\xac\x48\x21\xda\xc9\xc9\xee\x14\xb6\x51\x56\x93\x0f\xdb\x93\x9b\x1d\x00\xa4\x46\xf3\x74\xb1\xc8\xeb\xd7\xb8\xc2\x0b\xad\x01\x76\x88\x24\xae\xbe\x8d\x2a\x8a\xde\xb1\xf9\xa7\xde\xd3\x08\xf7\xd4\x10\x53\x7a\x93\x0a\x84\xbc\xff\x46\xe7\xdb\x7c\xb4\xfb\xdb\x13\xf2\x15\x8f\x79\x86\xf1\x3a\x34\xc1\x6c\x46\xe3\xd5\x82\xde\x5f\x60\x82\x29\x6b\x51\x08\x76\x8f\x13\x92\x7b\x46\xd6\xf4\x8e\x35\x0f\x3c\xcd\x64\x4a\x4d\x11\x50\x59\xb2\xb8\xdd\x59\x73\x69\x4d\x66\x44\x16\x2a\xe1\x1b\x93\x35\x55\x47\xd0\x1d\x91\x08\x37\x6b\xe6\x00\x6b\x72\x6d\xf9\x5d\xf2\x78\x85\x7e\x7e\x18\x6d\x68\x36\xca\x0a\x31\xf2\x3f\xf3\x28\xb0\xda\xb9\x01\xbf\x2a\x90\x3d\x21\x80\x65\xe4\x38\xcd\x64\x74\x5c\x99\x15\x4c\xe9\x9a\x22\x2f\x68\x92\x6c\x4d\x0a\x3a\x4c\x9c\x66\x72\x99\xd1\x35\xec\x4d\xe3\xb5\x7e\x71\x4c\x26\xea\xd0\x25\x1e\xb0\x06\x91\xa3\x92\xb0\x3d\x6a\xce\x69\x2f\x39\xf8\xeb\xaa\x2b\x72\x84\x09\x0d\x7a\x3d\x99\x94\xaa\x24\x24\x8b\x3c\x00\x49\xcd\x1f\x94\xd2\xa2\xe2\xd9\xed\x9b\xaf\xec\xd2\xb4\xda\x92\xe9\xfd\x26\xcd\xc6\x44\x75\x04\xb1\xab\xf7\xa3\x46\xe8\xd7\x8c\xd1\xf8\x4a\x24\xdb\x5d\x91\xfb\x61\xa4\x3a\xf2\x1b\x80\xae\x0b\x70\xfa\x79\x5c\x3b\xa5\x78\xec\xd8\xda\x40\x52\x6e\xb4\xf9\x7d\xe2\xda\x8f\x2c\x64\x1a\x81\x93\x9a\x5c\x83\x9b\x34\xb7\xa3\xba\xef\x6b\x44\xf0\x10\x47\x8f\x11\x91\xf4\x21\x8c\xff\xbb\x95\xaf\x77\x39\x73\x4f\xec\x74\x3a\xb1\x7e\xb9\x39\x8d\xee\xb4\xbc\xa9\x39\x2d\x44\x8c\x04\x24\xce\xf3\xd3\xdb\xd3\x9b\xdb\xab\xeb\x8b\xf7\xb7\x7f\x9d\x86\x75\xb0\x6a\x0b\xbb\xba\xd7\x77\x94\xab\x32\xa0\xb9\x6b\xbe\xef\x4e\x27\xb7\xef\xbf\xbe\xba\x7e\x5f\x4e\x1c\x9c\x13\x00\xb0\x33\x9b\x56\x7a\xf6\xd6\x73\xb4\x72\xf3\xef\xd1\x6d\x56\x52\xe6\xac\x3c\x11\x26\xac\x5d\x33\xa4\x82\xfe\xb6\xec\x58\xb0\x45\x74\xd8\x62\xbf\x70\xad\x70\x43\x1d\xae\x05\x0a\x7b\x4e\x89\x14\xfd\x7b\x60\xd3\x6f\xde\xdd\xdc\x5e\x5c\x77\x60\xe0\x97\xf9\xd1\x7c\x99\xee\x22\xc4\x69\x15\x2d\x8c\xf2\xe5\xeb\xa9\xd3\xed\x27\x00\xe7\x49\x58\xcb\xa2\x85\x92\x38\xdc\xee\x5c\x17\x02\x04\xbc\xc9\xb4\xf9\x7e\xe3\xfc\x26\xd3\x6f\x3f\x9f\x5e\x5d\xbd\x79\xbf\xfb\xa4\x33\xd3\x29\x54\x75\x08\xce\x22\x33\x72\xce\x73\xf8\xe7\xb7\x7f\x79\x73\x7a\x69\x11\xde\x3a\x03\x26\x53\x92\x4a\x99\xb4\x63\x52\xb9\x12\x18\x22\xb8\x94\x4b\xad\x94\xfa\x2f\x9b\x56\xcd\xe1\x76\x17\x42\xb0\x84\xc4\x0c\x82\xc2\x21\x86\x9e\x2f\x08\x4f\x79\x0a\x22\x36\xac\x39\xf6\xaf\xe5\xeb\x8b\x37\x93\xbf\x68\x58\x5c\x4e\xa6\xed\xca\xbb\x6a\x46\x25\x54\x2a\xdd\x54\xc6\x1a\x1e\x5a\xf2\xd6\xf2\xf6\x57\x45\xbc\x64\x48\x77\xaa\xac\xa1\x4a\xb9\xfb\xf3\x97\x79\x89\x99\x1a\x43\xf2\x88\x9a\xdf\xc1\x53\xfa\xef\xb3\x12\xd4\x40\xba\xb2\x47\x5b\x03\x6e\xe0\x44\x11\x8a\xf0\xfc\xaf\xd4\x02\xd2\xdc\xdb\x77\x3c\x63\xcb\x82\x66\xf1\x1e\xfb\xfb\x6e\x72\x7d\xf1\xfa\xdd\xe9\xf5\xf9\xaf\x74\x8f\xb7\xb5\x1b\xb8\xf9\x1c\xee\x60\x65\xe9\x74\x42\x60\x1b\x59\x5e\x63\xc0\xe0\xc9\xb4\xec\xae\xd8\x1c\x39\x5a\xc9\x5c\x4b\x14\x18\xd7\xa0\xf5\x02\x2a\x96\x6c\x4c\xce\x56\x54\x2c\xb1\xf0\x80\x6d\x23\x63\xa2\x21\x6b\x21\x59\x30\xea\x8a\x6e\x76\xc6\x15\xd2\x78\x84\x4d\x23\x1a\x53\x06\x62\x41\x93\xc4\x16\xf6\x1c\x8d\x4c\xd8\xcd\x28\xe2\x71\x53\xfa\xf7\x45\x71\x5c\x38\x15\x91\x98\xda\x21\x36\x67\x93\xf3\xeb\xe3\xea\xcb\x57\xe5\x97\x33\xf1\xc3\x0f\x23\x82\x9e\xe6\xa7\x09\x13\xe4\xbf\xf4\x84\xf9\x33\xf2\x92\xd4\xe5\xba\x30\x21\xc3\x61\x3c\x88\x61\x82\x08\x16\x3c\xcb\x95\x19\xb7\x16\x4e\x10\x1a\xf6\x55\xaf\x61\x13\xda\x1c\x55\xef\x84\x25\x39\x7b\xac\x95\x8f\x0d\xbd\xd2\x8f\x39\x33\xb8\x8e\x74\x7b\x20\x96\x2f\x80\x95\x3d\x91\x4b\x40\x8f\x5c\x62\x16\xa3\x4a\xf4\x57\x39\x44\x59\x85\xf8\x9f\x59\xda\xf9\xe4\xe6\xf4\xab\x37\x17\xef\xbf\x9e\xbc\xb9\x78\xff\xe6\xea\xf5\xeb\xc9\xa5\xdf\xe6\xdd\x2e\x8f\xa1\x85\xac\x2a\x5f\x21\x51\xdd\xb3\xd7\x04\x6b\xae\xea\xaf\x4f\xcf\xce\x2e\xa6\xb7\xad\xf7\xff\xfc\xe2\xeb\xd3\x77\x6f\x6e\x2f\x2e\xcf\xa7\x57\x93\xcb\xdb\xdb\x2b\x2d\x93\x9f\x9e\xdd\x4e\xae\xc2\xdc\x0b\x87\xdd\x5d\xdb\x2e\xde\xde\x98\x52\x74\x71\x41\x93\x5c\xd1\xe8\xee\x01\x08\x69\xb9\xd9\xb7\xaf\x6e\xde\x4d\xb5\x56\xb0\x17\xc4\x2a\x09\xe4\x55\xe0\x3d\x47\x00\xe9\x85\xb9\x97\xa7\xb7\xef\xaf\xde\xdd\xbe\xbe\xea\x73\x78\x41\xa4\xad\x90\x6a\x32\xdd\xbc\xd2\x64\xac\x52\x2c\x5a\x0f\xac\x0f\x20\x4a\xcb\x75\x10\xa3\x77\x8f\x0a\xaa\x1b\x61\x9e\x81\x26\x31\x38\xd9\x9b\xab\xd7\x1a\x57\xa7\xa7\xb7\xdf\xa0\x35\x4e\x30\x93\x5d\x86\xf7\x01\x10\xd1\x5e\x08\x25\xe1\x82\xb4\x2d\xde\x19\x2f\xb8\x78\x3d\x49\x1f\xdc\x0a\x2d\xf8\xe6\xe2\xdb\x8b\xeb\xc9\xed\x5f\x6f\xfe\x7a\x83\x6b\x36\x34\x1c\x08\x7d\x99\x11\x2c\x16\xb2\x75\x27\xf9\x36\x4f\xe4\xb2\x63\x2f\xce\x54\xc1\xed\xb4\x5d\x61\x67\xbe\xd9\xc1\x3d\xcd\x04\x17\xcb\x5e\xd7\xca\xbb\xdf\xb3\xeb\x8b\x8b\x4b\x3d\xd6\x77\x38\xd2\xee\x8e\xfb\x6e\x07\x46\x0a\xee\xe8\x3b\xff\x42\xeb\xc3\x7d\x73\x71\xfa\xe6\xf6\x9b\x8b\x4b\x4d\xef\xfc\xda\x54\x98\xc6\xb5\x6d\x78\x32\xbd\xd5\x43\xde\x18\x3d\x0d\x24\xd0\x42\x61\x22\x5a\x75\x93\x4d\x55\x52\xb1\x00\x0b\x71\xde\x7e\x9f\x6a\x03\xb6\xea\x29\xf5\xa5\x3e\xd4\xac\xef\x8b\xcb\xb6\xdf\x63\x99\xa1\x1d\x69\x2a\x4a\x8b\x13\xf2\xf2\x8b\xe7\xb5\xa0\x9b\x84\x2f\x58\xb4\x8d\x92\x66\xe5\xf3\x34\x63\x37\x4a\xa6\x3b\x83\xb0\x0f\x3b\x65\x7d\x88\x63\xeb\xde\xfd\x65\x44\xdc\x18\x9d\xa6\xad\xc8\x3e\x33\xca\x57\x85\x8a\xe5\xbd\xa8\xaf\x6d\xc3\x04\xcb\xf3\x69\x26\xe7\xcd\xf5\x79\xd7\x11\x5a\x45\xf7\x1a\x46\x64\x04\xb7\x77\xa4\xe7\xf4\xfc\x38\xe7\x59\xec\xf9\x2d\xad\x47\x94\xbd\x78\x5e\xff\xd9\x78\x35\xce\x59\x42\xb7\xc1\x87\x8c\xd3\xe2\x76\x95\xb1\x7c\x25\x93\xf8\x84\x34\x98\x8c\xe2\x6b\x26\x0b\x15\x18\x20\x63\x34\xe6\xbf\x34\x94\x1a\x11\x60\x75\x30\x79\x7e\xec\x80\x53\xfb\x0e\x5b\x9c\x20\x4f\xa0\xf3\xf3\x9a\x72\xb0\x6f\x6a\x72\xe5\xe4\x67\x9e\x4e\x27\x5a\xc0\x07\xd3\x06\x4d\x76\x19\xe2\x23\x7a\x47\x49\xcd\x1e\x8c\x9c\xb3\x65\xb6\x84\xcf\x8f\xd7\x32\x2e\x3c\x05\x74\x71\x9a\x84\xcf\x47\x81\x07\xc2\x66\xe7\xe6\x2c\x59\x21\x8e\x3f\x20\xed\x1a\x27\x52\x8b\x4d\xbe\xa9\xcc\x13\x23\xdf\x13\x7b\x6c\xe9\xe3\x9d\x2c\x7b\x4e\x06\x11\x56\x1d\x93\x69\x30\x3e\x68\x32\x1c\x02\x6d\xe3\xf9\x56\xec\xd8\xfe\x7d\x3b\xd7\x17\x86\x2e\x77\xea\xbf\x21\x8a\x96\xe6\xe6\x23\x72\xcf\xc0\x3f\x62\xcc\xd2\x20\x38\x94\xde\x0e\xeb\x6b\xad\x3c\xb1\x4d\x37\x5b\x2e\xc1\xa9\x04\x4f\x63\xc1\xd8\xe6\x74\x50\xba\x5a\x11\xf4\xf4\xc8\x6c\xd7\xf5\x81\x9b\x43\x8f\x66\xcb\xbe\xaa\x49\xfd\x03\xe8\xab\x90\xc8\xa5\xef\x2a\xec\x9c\x95\x5c\x96\x0e\x9b\x7a\x58\x17\x09\x62\x34\xde\xfa\xba\x2f\xc4\xe6\x8d\xbb\x89\x31\xd5\xef\xa3\xf6\xcb\xa3\xaf\x38\xac\xa9\x41\x9a\x5a\xae\xe4\xa8\x13\x71\xdb\x07\x0d\x5d\x8a\x51\x27\x8e\x76\x8f\xeb\xc3\xff\x51\xc7\x9d\x6e\x1f\xb5\x9d\x5e\x60\xc6\xca\xd7\x3c\x61\x57\xd9\x59\x2d\x37\xb0\x9a\x77\xd7\xd3\xdc\x3e\xa3\x41\x31\xdf\x44\xe7\x16\x7d\xc3\xb3\xed\x60\x70\xaf\xc9\x76\xf0\xb9\x31\x9f\x8b\x6f\xeb\xca\x25\x5a\x73\x73\x9a\xbb\x5b\xe4\x8e\x93\x13\x43\x04\xea\xa1\xdc\x41\x37\xa6\x07\x6b\x7d\x6e\xc6\xf6\x0d\xd5\x9f\xae\xca\x76\xd8\xe8\xb9\xb3\x4b\x5f\xa0\x4b\x20\x5c\xa8\x7d\x2a\x6f\x10\xd2\xa8\x9d\x27\xb6\x8f\x18\xe0\xb5\xd5\x2e\x4c\xc1\x10\xcd\xcf\x13\xb9\xf4\x41\x2c\x40\x80\x7a\x5c\x9d\x00\x39\xb2\x3e\x70\x53\x88\xbb\xa4\xa0\xa0\x17\x34\x63\xec\xdd\xd4\x5e\x13\x62\x53\xf3\xb9\x02\x72\x40\xe5\xb8\x46\x5a\xa6\x33\x50\x3d\x4e\xbf\xcc\xa3\x76\x52\xa8\xdd\x11\x6d\x96\x67\x6e\x0b\x9a\xba\x81\xf4\xe1\x60\x80\x51\xaf\x60\xe3\x9e\x04\xc7\x1b\xd2\x5c\x1d\x9a\xb1\xa7\x86\x23\xb9\x3c\xc4\xd5\xcf\x65\x03\xeb\xe9\x24\x0e\x64\x97\xfa\x7a\x18\xf3\xee\x65\xd9\x0d\x4f\xdb\x5d\x69\x47\x18\xd7\xbe\x4b\x36\x46\x2c\x1b\x56\x36\x05\xa9\xf5\x9c\x67\x3b\x66\x1e\xdc\x4f\x15\x80\x56\x3e\x89\x79\x85\x01\xe3\x90\x81\x42\x91\xc3\xd1\x69\x4d\xc0\x49\xae\x81\x7f\x26\x4c\x8d\x4c\x1e\xe8\x31\xb2\xdb\x63\x78\xac\x04\xd8\xff\x57\xc4\x79\x69\xff\x21\x65\xca\x6a\x57\xda\x91\x9b\xf3\x59\xe5\xf5\x36\xb3\x66\x1f\x9e\x04\xba\x6f\x02\x6d\xb3\x74\x58\x99\x4c\x7b\xc3\x98\x5b\x5c\x77\x55\xcc\xc7\x91\x5c\x1f\xd7\xb2\xc0\x8f\x77\x0b\x8f\x79\x73\x5a\x4d\xe6\xab\xd3\xb8\x62\x9f\xb2\x6b\x0f\xce\x78\xf5\x94\x56\xb3\xf9\x80\xe8\xf7\xa8\xd5\x3d\xb5\x8d\xe3\x30\x91\x07\x0a\x79\x27\x0c\x6c\xbd\x1b\x86\x57\x41\x18\x57\x4f\xc6\xd2\x84\x47\x34\x87\x5c\xd3\x07\x65\xd2\xfa\x36\x99\x57\xf9\xb4\xd5\xd5\xb8\x66\x55\xad\x81\xae\x54\xd6\x4e\x30\x12\xd2\x06\x4a\xd2\x27\x1b\x36\x34\x2c\x84\xb2\x22\xc7\xb7\xf9\x62\xd0\x8a\x2e\xbb\x6b\xa4\x0b\xa6\xb2\xca\xe9\xf4\xe7\xb4\xfe\xe2\x79\x9e\x96\xd6\xdc\x56\x49\x97\x0e\xc1\xa8\xa7\x62\x3a\x19\xcd\xee\xe3\x65\x3a\xf3\xab\x00\xd9\x09\x25\x74\xfa\x2d\x71\xce\xd3\xd6\x49\x1e\xac\xba\x2b\x09\xd6\x39\x4f\x18\x04\xc1\x65\x85\x08\x25\x80\x0e\xe9\xa3\xbd\xd2\x47\x5d\x92\x8e\xcf\x7c\x74\x2a\x69\xe8\xd6\xec\xa4\x95\x7e\x4c\xae\x65\xa3\xde\x68\xaf\xb4\xcb\xd2\x4b\xea\xcb\xbc\xf4\x06\xdd\x8d\xfa\x91\x19\x52\x4f\x4b\xaa\x1e\xf0\x87\xbc\xed\x98\xae\x4c\x9c\x11\x06\x58\xba\xf8\xae\xa4\x46\xf1\x80\xde\x6e\xac\xe1\xef\xcf\xae\x2e\x6f\xaf\xaf\xde\xbc\xb9\xb8\x0e\xb9\x0d\x76\x2d\x78\x7b\x05\x90\xdd\x79\x5b\x73\x3e\xa6\x4d\x56\x8b\x26\x60\x71\x5c\xb1\xe8\x6e\x54\x2f\x98\x5a\x3d\x36\x6a\x44\xaa\xfe\xa7\xd9\x5c\x7b\x42\x21\xeb\x84\xc2\x2f\x24\x9d\xed\x23\xbc\x34\x25\xb5\x5f\x28\x4e\xc8\xdd\x22\xaa\x17\xc7\x9b\x17\x73\xa6\x68\xb9\xdd\xa9\x8c\xab\xf9\x70\xba\x7f\xbf\xc0\xe6\xa9\xf2\xf1\x48\x92\x57\x4f\x41\x99\xa9\x28\x1e\xe5\x5a\x1c\x53\x56\x48\xee\xf9\xa6\xda\x6a\x31\xa6\xe7\x2b\xa6\x48\x17\x1b\x45\x54\xd0\xc4\xbc\x75\x70\xf4\xff\x10\x42\x6c\xa2\xc4\xe6\xb3\xf1\xcb\x97\xe3\x2f\x46\x19\x32\x8b\x97\x07\x27\xc4\x78\xa2\x4d\x38\xc7\xc9\x9f\x48\x9e\x26\x1c\xda\xd5\x90\xd9\xc1\xd1\xec\x80\xb8\xb1\x18\x04\xfb\x02\x98\x6a\x4b\xb7\x66\xee\x2a\x08\xd5\xfc\x60\xa6\xe9\xbd\x4d\x53\x60\xb1\x56\x8c\xe7\xcc\x06\x31\x11\x9e\x97\x8d\xd6\xca\x3d\x42\x0f\xf6\x64\x01\xca\x22\x8b\xed\xbc\x6e\x10\x50\x55\x07\xd8\x0e\xb4\x7b\x47\xc3\x98\x59\x45\x44\x85\xf0\xb1\x7c\xef\x09\xd6\x71\xd5\xcb\x34\x1e\x6b\x14\x53\xe1\xec\xde\x1b\xd6\xfe\xde\xe6\xbd\x54\x1e\xf4\x27\xe4\xac\xdc\x4d\x20\x28\xb6\x1e\x6d\xaa\x5f\x9f\xf3\x2c\xf6\xbf\xfe\xf6\xf6\x9d\xad\x13\xa0\x2f\xb8\x2d\xea\x80\xad\x6a\x16\x34\x32\xed\xe2\x31\xfa\x0c\xa5\xb3\x27\x64\x44\x26\x0b\x27\x34\xad\x0a\x5e\x3c\x02\xbf\xbd\x92\x64\x2b\x8b\xac\x8c\x6a\xd7\x73\x8c\xc8\xab\xe7\xf6\xe5\x2b\xb5\x62\xd9\x3d\xcf\x19\x34\x02\x33\x91\x99\x19\xb1\x46\xf9\x9e\xe3\x7d\x11\x18\x6f\x32\x9d\x4c\x7b\x0e\xf1\x32\x30\x44\x65\xd8\xa1\x62\x4b\x98\x88\x68\x9a\x17\xb6\x00\x43\x60\xb8\x71\x25\xd6\xeb\xc1\xad\x54\xae\x47\x63\xf8\xd5\x73\x23\xe9\xd8\xb8\x38\x13\xb3\xf4\xf6\xf6\xdd\x4e\xac\x52\x43\x9e\x77\xdf\x78\xf1\xf9\xe7\xcf\x77\xe2\x40\x42\xe9\xbb\xb6\xae\x61\x28\x8b\x17\x5e\x03\xd1\x0f\x33\x50\x9e\xd8\x26\x64\xb6\x55\xb5\xc9\x02\x2e\x3b\x01\x17\x4a\xae\x29\x08\x6e\xc9\x96\xa4\xd2\xf4\x64\x30\x68\x11\x90\x25\xc1\xd5\x9e\xe7\x7c\x29\xde\xf3\x74\xf3\x6a\x76\x50\x85\x09\x68\xf0\x94\x81\x44\xcd\x5a\x8c\x39\x59\xc8\x02\xa3\xa5\x77\x33\x79\x4f\xc8\x3f\x47\x48\x71\x7f\xb0\x84\x77\x76\x20\xa0\xbf\xb0\x89\x75\xd6\xfa\xda\xc8\xbc\xa4\x49\x52\xf9\x54\x24\xec\x75\xc6\x67\x9f\x8f\x3f\x1b\xbf\xa8\x3d\x61\xcc\x30\xfa\xe7\xef\x2b\x46\xff\x83\xcb\xf3\x67\x07\x10\x8d\x0d\x03\x18\xc3\xff\xc1\x51\xfd\x81\x44\x2e\xdf\x27\x6c\xc3\x12\x7c\xea\xbb\xd3\xeb\xcb\xc9\xe5\x6b\xef\x63\x0b\x9e\xb0\xf7\x29\x55\x2b\x7c\xd4\x63\x17\xd5\xff\x1b\x27\x72\xb9\xf3\x7a\x99\x2e\xf0\xbe\x5a\x90\x9b\x6b\xd0\x78\x5c\x1f\x7b\x05\xa6\xf7\xef\x7d\xf9\xcb\xef\xdf\xef\xbc\xb6\x56\x85\x7e\xe3\xfd\x7b\x93\x3d\xfc\xfe\x7d\xe3\x01\x2c\xf7\x71\xa2\x81\xd4\x3b\x1c\xcc\x07\x45\x5b\x37\x64\xf7\xc9\x0a\x85\x3e\x77\x51\xa8\xf5\xc9\x1a\xb2\xb5\x58\xe7\x5a\x56\x12\x88\xb8\xfa\x57\x63\xff\x28\xd8\x18\x08\x84\x87\xbe\xfb\xb2\x11\xad\xde\x1c\xc7\x3d\x3a\xef\x58\xa6\xcd\x82\x66\x33\xce\x11\x62\xb2\xfd\x7b\x1b\x89\xa5\x4f\xb0\x36\x4b\xf5\x87\x3b\x61\x10\xa3\x53\x99\xa9\x35\x4d\x77\xd0\x20\x17\x54\xe9\x27\x34\x40\x1b\x3f\x45\x34\xa5\x73\x9e\x60\xed\x45\x58\x3a\x8c\xf2\x96\xa6\x29\x17\xcb\xdc\xbe\xb5\xef\x4a\xe6\x54\xc4\xf7\x3c\xd6\x37\xa3\x7b\x42\xe7\xe1\xdd\xd9\xec\x3f\x4d\x4a\x67\x0f\x83\xe5\x5d\x1c\x8f\xa2\x2c\xae\x09\x5f\x9f\xaa\xd5\xe0\x4e\xb9\xd4\x4f\xd0\x70\xf0\xab\xd7\xd3\x5a\x4f\x10\xfc\xad\x6a\x3b\xd8\xfc\x7d\xb7\xf9\x60\xa0\xa8\x6b\xd5\x82\xb0\xf9\xc0\xac\x6a\x44\x68\xe4\xc1\xd9\xa7\xe9\x42\xd8\x5c\x7b\xbd\x85\x59\x9d\xb3\x60\x93\xde\x2d\xe4\xb9\x64\xb2\x50\x75\xeb\xcf\xd0\x85\x70\xe8\x42\xe8\x1e\xc1\xd0\x85\xf0\x17\xeb\x42\xd8\xbc\xc4\xbb\xbd\x08\xeb\x3d\x72\xf5\x05\xae\x5d\xed\xfe\x4d\x07\x69\x7e\x59\xac\xe7\xac\xb3\xf9\xf7\xe1\xe9\x0d\x3e\x68\x9b\x9b\x5a\x8b\xe6\xe9\x0d\x11\xf8\x83\x0d\x3c\xa0\x46\xa6\xfe\xfe\x1c\x1f\xf1\x26\xd0\xbc\xfa\xfc\x8b\x17\x2f\xff\x76\xb8\xfb\x13\x16\x1e\x3f\xd1\xb7\xf3\xb3\x97\xbb\x3f\x23\x48\xf5\xd5\x5d\xb2\x9d\x08\x1f\x7b\xf2\xbe\x8d\x36\xf6\x73\x56\x3d\x8a\xf7\xc3\x76\x55\x44\x58\x1a\x0c\xb2\x70\xc6\x92\x9a\x6c\x37\xa6\x08\x40\x98\xcd\xb9\xca\x68\xb6\x35\x0d\xf3\x21\x67\x89\x62\xf8\x33\x66\x2f\xef\xd5\x86\xd1\xbb\xcc\x6d\x75\xfc\xb9\xa2\x22\xd6\xea\xa6\xcc\x48\x42\xb3\x25\x6b\x2e\xd7\x37\x28\x81\x2d\xe8\x9b\xe6\xc9\x6d\xc5\x4f\x0b\x92\xe0\x07\xd8\x93\xff\xa7\x66\x17\x4d\xba\x66\x64\xc9\x37\x4c\x38\x65\x50\xec\xf2\xbc\x93\x93\xce\xfe\x93\xa4\xb4\x01\xf7\x5a\xc2\xb7\x40\xe7\xa0\x0e\xf7\x1c\xaa\x4a\x21\x5e\x69\xa9\x98\x9e\x08\x31\x3b\xd0\xe0\x33\x7f\x9c\xac\xd7\xb3\x83\xe0\xb2\x08\x84\xca\x95\x50\xaf\x76\x53\xe4\xcc\x19\x0e\xc7\x3f\x32\xcd\xc5\xf4\xf7\xb3\x03\x0d\xf4\xf0\xb0\xb3\x03\x78\x91\x66\x8c\xbc\x78\x45\xe6\x5c\x99\x8b\x34\x86\x09\x9b\x47\xeb\xcc\x06\xeb\x0d\x8f\xeb\x5b\xc9\x51\x39\x9b\x88\xb5\x1a\xb3\x36\x13\x7f\xf6\xb2\x36\xf1\x77\xfa\x15\x6f\xf7\x72\xbb\x64\xd8\x16\xd6\x5b\x38\xbd\x21\x48\x12\x42\x83\xa7\x2c\x1b\x9d\xde\xd8\x34\x5e\xee\x29\x06\x61\x3f\x29\x55\x9a\x17\x9f\x90\xff\xf9\xbf\xec\xfd\xfb\x6e\x23\x37\xb6\x30\x8a\xbf\x0a\xc7\xf9\x01\xee\xde\x3f\x4b\xee\x74\x92\x9e\xc4\x83\xc1\x81\x63\x77\x32\xc6\xee\x76\xeb\xb3\xdd\xc9\x7c\x18\xe5\x0b\xa8\x2a\x4a\xe2\x71\x89\xac\x29\xb2\x64\x6b\xf6\x1e\x20\xef\x70\xfe\x3a\x40\x9e\x2e\x4f\x72\xc0\xb5\x48\x16\x4b\x62\x5d\xe4\x4b\x26\x99\x5d\xfa\x23\x69\x4b\x55\xbc\x2c\x2e\xae\xfb\xe5\xc5\x74\x9a\xfe\xff\x5f\x9e\xe0\xff\xfe\x7f\xff\x5d\xff\xdb\x7d\xfd\x50\x0c\x6a\xa2\xc7\xe1\xaf\x91\x0e\xa7\x28\x1b\x32\x31\x91\x45\x8c\x98\xd5\xf0\xee\x9d\x7f\xd2\x11\x4a\xc8\x12\xc2\xb3\x30\xb4\x25\x2f\xa4\x96\x89\xcc\x9c\xf4\x82\x43\x47\x21\x73\xee\xba\xf9\x6b\x49\x3e\xfd\xe3\x57\xbb\x8f\xac\xe8\x3d\x5f\x95\xab\x13\xf2\xe6\x8b\x2f\x3e\xfb\x22\xf2\x3b\x17\xf8\xfb\xa7\x7b\x12\xd2\x4c\x2e\xae\xd9\x9a\x15\x5c\x6f\xae\x93\x82\xb1\x6d\x59\x6f\x67\xdb\x87\xef\xb6\xdf\x70\xdb\xcf\xe4\x82\x28\xfb\x0b\xa1\x33\xb9\x76\xbe\xa5\x4c\x2e\xa2\x7d\xf8\x0d\xe6\x28\x26\x7c\xaf\x32\xa5\x53\x59\xea\x80\x9d\x90\x8b\xcb\x6f\x3e\xc4\x58\x47\xdb\xf1\x1b\x96\x74\x03\x55\x51\xdf\x33\xb5\xc4\xbc\xe8\x58\x62\x40\x7d\x57\x97\xb1\xb7\x88\x62\x1a\x9a\x08\xea\x25\x2b\xc8\xbc\xb4\x2e\x5b\xcc\xc8\x89\x25\x12\x10\x38\xf8\x15\xd4\x30\xf5\xf6\xb8\x70\x43\x46\x45\x6b\xde\xd0\x4c\xca\x8c\xd1\x1d\x99\x38\x2f\xd8\x9c\xdf\x9f\x86\xad\xb4\x3a\xb9\xde\x24\xf2\x4e\xc5\x59\x20\x40\x0a\x9e\xa8\x77\xe8\x8a\xed\xa8\x4d\xdc\x20\xfd\xf9\x5b\x64\x41\x95\x95\x5a\xd5\x97\x11\x70\xa8\x38\x01\x70\xc9\xc2\xd6\xee\xc6\xb0\x09\xd8\xc3\x98\x5d\xc2\xd3\x98\x4c\x14\xd9\x02\x18\xf6\xc1\x66\x0c\x68\x5d\x8d\xec\x6e\xf8\x8c\x55\xfb\x48\x1f\xc1\xfd\xda\xa5\x9b\xd8\xca\x02\x19\xc7\x06\xf0\x39\x29\x87\x71\x40\xde\x8a\xbd\x80\xe8\xd2\x4c\xf8\x6d\x79\x5d\xab\xcb\xa5\x84\x0b\x32\x3d\x30\x62\xa9\x1a\x07\xb3\x20\x57\xed\x25\x8e\x10\xd4\xea\x3a\xb9\x72\x0b\xf3\x6d\x67\x53\xed\x5c\xb9\x9d\xf9\x36\x8f\xdc\xc5\x95\x3b\x99\x6f\xdb\xa2\x3b\xb8\x72\x27\xef\xed\x35\x76\x7f\xa6\xdc\x7c\x85\xf1\xd3\x8d\xb1\xad\x3c\x95\x3c\x86\x21\x5b\xbf\x90\xb5\xa5\x5c\x4c\x3a\x29\xdf\xf5\xf6\x0b\x00\x0c\x28\x35\x6a\xee\x2f\xf6\xa8\x41\xd5\x15\xef\xb1\x9d\x21\x4a\xfb\xac\x97\xd7\x8d\x62\x83\x6e\x41\x4f\x9d\x57\xd4\xe7\xc8\xf9\xd5\xc0\x6b\xe0\x49\x80\x99\x34\x8e\xbc\xb8\x08\xdf\x1b\x03\xe2\x75\xc4\xa6\x36\x9d\xcd\xb2\xd7\x4b\xb6\x7a\x38\xd1\xdd\x86\x05\xb6\xaf\xa9\x34\xfb\x20\x06\x2f\xcb\xe4\x9d\xa1\xa3\xee\xd1\xf8\x39\x57\x20\x7c\x06\x62\xfb\x6c\x42\x9d\x3d\xe1\xb7\xf7\x68\x06\xea\x8f\x44\xc1\x1b\x71\x2c\x92\x45\x90\xf2\x1c\x5b\xb3\x1d\x88\xb8\x91\xcc\xd9\x8e\xc3\xfa\x4b\xdb\x0f\xf8\x62\x0f\x10\x28\xb9\x5d\xf1\x01\x3f\x15\x93\xc1\xea\xe9\x6c\x83\x1d\xcf\x11\x65\xa4\x70\xc5\x75\x15\xb3\x0b\x7d\x34\x06\x55\xab\xeb\x44\xa1\xf8\xe9\x06\xfb\xff\x7d\x23\xd1\x3b\x49\xd3\xaf\x69\x46\x45\xb2\x0f\x35\xda\x7a\xeb\x91\xc8\x14\x8e\xd6\x88\x50\xb6\x23\x64\xf8\xec\xf8\x42\x2c\x0a\xa6\xa2\x63\x6f\xe3\xdd\xbf\x00\xc9\xea\x40\x7a\x20\xa2\x6d\xc1\xe6\x77\x89\x6c\xf1\xd7\x76\xbf\xc5\x16\x2f\x61\xde\x9a\xd2\xb2\x80\x88\x40\xfc\x0a\x71\x00\x96\x4f\x93\x84\xe5\x9a\xa5\x97\x3b\x4e\x92\x2a\xbd\xdf\x39\x3d\xdc\x37\x89\x14\x29\xc7\x80\x5a\xf2\x37\xf0\x22\x81\xdf\x35\xfd\xce\x79\x33\xe0\xdb\x7a\xbf\xeb\x67\x74\x17\x41\x0b\xbd\xe7\xf1\x12\x4d\x98\x53\x8d\x6b\xce\x21\xf3\x75\xd4\x27\x14\x74\xf3\xab\xb9\x82\x72\x3b\xce\x73\x79\x80\x06\x57\xcd\xe0\xaa\x09\x8f\x60\x70\xd5\xfc\x9a\xae\x1a\x43\x0e\x76\x3d\x34\x2e\xf8\x27\x70\xb5\xba\x87\xfd\xe9\x3d\xbd\x9b\xe6\x66\xc9\x2a\xdd\xd0\xb9\x87\x0c\xf9\x89\xb0\xb9\xc7\x78\x5a\x6e\x19\xcb\x3f\x60\x07\xb5\xec\x92\xdd\xeb\xbf\x44\x8a\x72\x6c\x2d\xed\x43\xee\x42\xb0\xcc\xcb\xb0\x30\xdb\x83\x2d\x23\x82\xdd\xeb\xa5\xcc\xb1\x18\x26\xe6\x27\xa2\xe7\xa4\xcb\x40\x08\x30\x25\x06\xa8\x06\xc7\x35\x5c\x12\x1f\x54\x15\x18\x92\xe0\x44\x20\x66\x95\xa5\xe6\x95\xd8\xb8\x66\x14\xe5\x4d\x79\xa5\x2d\xb6\x39\x3d\x30\x8b\x23\x66\x75\x66\xdd\x7f\x32\x2a\xb8\x50\x9a\xd1\xd4\x80\x37\xf8\x55\xb1\x6c\xfe\xa7\xe9\xc1\x0b\xeb\x18\x7b\x19\x9b\xc2\xe6\x70\xfa\xc0\xb0\x19\x44\x92\xba\x73\xba\x34\x53\x4b\x61\xe3\x14\xc7\xc9\x7c\x11\x75\x4b\xb4\x5a\x05\x57\xf4\xfe\x8a\x41\xd9\xb8\x1b\x1e\x75\xd7\xd4\xd1\x85\xaf\x58\x15\xc1\x0c\x1d\xf4\xe4\x5c\xdf\xd9\x56\x71\x66\x94\x31\x21\xdf\x9b\xe3\xa8\xb4\xda\xa8\x44\x63\x5b\x35\x79\x88\xa7\xae\x7a\xec\xa2\xa0\x09\x9b\x97\x99\x1b\xcf\xc5\xb0\xbb\x71\x0d\xf5\xe8\x1a\x9b\x91\xaf\x2f\xae\xce\xbd\xc7\x51\xce\xc9\xa7\xaf\x5f\x29\x17\xd8\xda\x08\xa1\x66\x43\x70\x9f\x5b\xe4\x0b\xc1\xfa\x32\xa4\x8e\x00\x5b\xad\xde\x56\x88\xc7\xec\x34\x28\x85\x1d\x3d\x71\x45\x34\x2d\x16\x4c\xbb\xb2\xf5\x5c\xe1\x7d\x24\x17\x55\x87\x2b\x00\x02\xd3\xc8\xd7\x84\xac\xe5\x51\x35\x0c\x1a\x58\x19\xb4\x81\x23\x0c\x05\xfe\x05\x43\x60\x10\xd5\x55\x95\x4e\xe4\x30\xaf\xea\x89\xb9\x2f\xcc\x22\x79\x5d\x51\xd8\xf9\xee\x7c\xce\x1a\x8b\xf3\x43\xa9\x70\x2b\x05\x40\x9e\x9f\x87\x04\x17\x0b\x8b\x0c\x6d\x98\x05\xe0\xf1\x97\x04\xe9\x84\xf3\xee\xb1\x55\xae\xb7\x0b\x4a\x74\x6d\x29\xa7\x4a\xdd\xc9\xa2\xd3\x05\xf0\xc1\x56\x51\x46\xd8\xda\x97\xfc\xde\xec\xfa\x15\x59\x30\xc1\x0a\x1a\x1c\x72\x83\x17\xa0\x8d\xfc\x93\x6e\xc5\x03\xa3\xe0\x5b\xea\x52\x46\x0f\xc3\xc8\x14\xb7\x6c\x03\xa2\x99\x1d\xc2\xe1\x03\x20\x71\x2e\xd3\x43\x55\x45\x6a\x37\x18\x04\x3b\x75\x22\x2c\x77\xd9\x6c\x2f\xdc\xb9\x62\x76\x4d\x48\x9b\x61\x55\x5a\x5a\xd4\x05\xc9\x64\x4c\xc8\x7b\x3c\xe2\xe6\x41\x09\xa1\x46\x50\xe2\xa9\x1b\xe2\x96\xc5\x50\xc1\x7d\xfa\xd8\x2c\x5b\xfd\xdc\x3b\x1e\xa2\xa0\x69\x51\xc1\xe6\xac\x60\x42\x47\xa5\x9e\xb6\x16\x82\x72\x6d\x54\x5d\x76\x07\xbd\x04\xb9\x58\x8c\x8c\x3a\x3d\x42\x61\x44\x1d\xc3\xc1\x1c\x7f\xd2\x61\xa1\x27\xe4\xe6\xc3\xf9\x87\x13\x72\x9a\xa6\x44\x82\x71\xbf\x54\x40\x78\xe1\xae\xa8\x71\xa0\x0d\x1c\x81\x30\x7a\x44\x4a\x9e\xfe\x5f\x11\xaf\xd3\x3e\xb0\xf2\x45\xc6\x7b\xc2\xeb\x1a\xc8\xd6\xc6\x7b\xcf\x0c\xd8\xae\xf1\xe0\x64\x01\xf1\x09\x06\x29\x56\xdd\xa7\x6e\x1d\x11\x5d\xab\x6f\xe0\x92\xf8\x71\xdd\x12\x1a\x16\x0f\xe9\x8f\xf1\x9f\xfa\x68\xf0\xf1\x5f\x0d\xc5\xb8\x98\xf4\x61\x40\x55\xe5\xe9\x50\x8e\x23\x73\x69\x6d\xb2\xb3\x0d\x28\x5a\x8e\x3e\xe5\xb2\x88\x32\x20\x1b\x9c\x03\x3d\xe0\x59\x01\x86\x1a\xe0\x3d\xe0\x96\x16\x3e\xa4\x07\xa2\x35\x8e\x9c\x3f\xa6\xf2\x5c\x4d\x0f\xfe\x36\x2d\x5f\xbd\xfa\x2c\xb9\x98\xac\xdf\xc0\xbf\xd8\x0f\x27\x30\x57\x34\x02\x01\xdc\x37\xfe\x85\xcf\xf1\x85\x13\xfc\x02\xde\x82\x2f\xd0\x4f\x02\x45\x6f\x61\x2d\xb5\x4d\x04\x8b\x72\x7c\x31\x2a\x05\x42\x48\x8e\xe5\x21\x00\x2c\x91\x12\x1f\xa4\x34\x63\x99\x34\x74\x19\x44\x44\x1b\xd0\x0a\xb4\x0e\xfa\xf0\x54\x4e\xfa\x38\x91\x05\xf2\xb8\x1d\x84\x65\x19\xed\x1d\xb3\xa2\x21\xd5\xb8\x5c\x0b\xd9\x7d\xf9\x8f\x51\x1a\x1e\xca\x52\x0b\xb6\x92\xda\x73\xd6\xda\xc9\xa2\x54\xd5\xc4\x81\x42\x46\x3a\x01\x4c\xac\x83\x0d\x69\xc5\x16\x63\xc5\x00\x98\x7a\xf7\x85\xfa\x46\x8c\x64\x34\x63\xfa\x8e\x31\x61\x7d\xfe\x09\xb5\x4e\x71\xac\x61\x69\x05\xef\x70\xdd\x50\x72\xca\xcb\x8b\xf1\x13\xb6\x65\x91\xed\x0c\x7c\x4e\x66\x52\x2f\x8d\xae\xaa\x50\x86\x30\xb2\xc0\xd7\xdf\x4e\x0c\x51\x19\x9b\x47\x4f\xed\x7d\x69\x17\x28\xcd\x92\x70\xec\x37\xfd\xc7\x7e\xb3\x33\xf6\x98\x98\x6b\x1a\x9b\xc0\x6e\xb3\x8a\x8c\x4b\x24\xc4\x85\x39\x65\x3b\x00\xc3\xa1\xaa\x4d\xe4\x0e\x22\xba\x6e\x7b\xf8\x8b\x4c\xce\x68\x56\x15\xbf\x9c\xdb\x36\x2c\xfe\xba\xec\x89\x89\x28\x8b\xd8\xed\x75\xa2\xa2\xdd\x7d\x15\xff\x60\xa0\xb9\x94\x77\x3b\xe9\x65\x68\x9e\xb0\x14\x2c\xb6\x9d\x6e\x19\x6a\x57\x60\xf2\x31\x31\xcd\xae\xe5\xe9\xc1\x47\xc5\xa0\xc5\xc7\x64\x7a\x40\x56\x8c\x0a\x55\x5f\x9b\x17\x7b\x0c\xf2\x5b\xcd\xb0\xb6\xd8\xb1\x19\xe4\x32\x52\xaa\x15\x3f\x38\xa4\x81\x75\xeb\x96\xf7\x3a\x85\xc1\xb4\x1b\x31\xed\x66\x32\xb9\xa5\x73\x7c\x86\x3d\x8b\x85\xd7\xcc\x70\x8a\x33\x6c\x76\xec\xbc\xe1\x8f\x11\x6b\x6f\x7d\x75\x3b\x46\xdf\xe0\xe7\xcd\x60\xfa\x1d\x4c\xbf\x83\xe9\xf7\xdf\xcf\xf4\x1b\x52\x88\x9e\x06\xe0\x5d\x8a\x53\x7d\xf6\xb7\x0a\x37\x78\x21\xdb\xb8\xbd\xed\xaf\xde\xc5\xe7\xcf\x5d\x1b\x76\x91\x42\xff\x4a\xe5\xfa\xc8\x71\x85\xb4\x8d\x38\xe2\x66\xf0\x76\xc6\xa0\x41\x14\xbe\x13\xd5\xbe\x21\x27\x1d\xad\x36\x21\x9e\xcf\x31\x5c\x2c\xa7\x9a\x43\x0a\xdb\x06\xe5\x73\x99\xa5\xc0\xf5\x33\x46\x95\x9d\x3a\xca\x89\xb9\xd2\xf4\x96\x89\x6c\x43\x74\xc1\xdc\xf2\x70\x16\x5a\xcd\xf2\x34\x06\xc2\x56\x11\x4a\x57\xc5\xa1\xfa\xbd\xd3\xa0\x7a\x8e\xe0\x48\xb7\xbf\xb3\x80\xdd\xfe\x3a\x56\x49\x05\x56\x32\xc8\x16\xcd\xb2\xc5\x6e\xe5\xab\xaa\x24\xc5\x68\xc1\x04\x14\xbd\x9a\x95\xdc\x60\x20\x4c\xe0\xa6\x7f\x01\x94\x09\xac\xfa\xae\x53\xe7\x0d\x5f\x31\xa5\xe9\x2a\x3f\x21\xa2\xcc\xb2\xe9\x56\x15\x04\x50\x73\x00\x66\xcf\x22\xbd\xa0\x19\xda\x48\xba\xd7\x41\x75\x96\x4a\x80\xd9\xfe\x7d\x57\x86\xd9\x5d\xe6\xb6\x18\xb3\xfd\xc4\x20\xc9\x0c\x92\xcc\x20\xc9\xfc\xdb\x49\x32\xdb\xa4\xa2\x9f\x30\x13\x27\x40\xd5\xe7\x01\xf2\x4c\x46\x95\xea\x91\xbb\x87\x8f\x91\x94\x25\x19\x75\xde\x5d\x00\xa2\xb9\xb8\xe6\x9c\x8a\x95\xaf\xf7\xb1\x92\x82\x37\xb8\xd1\xd0\x02\xc1\x55\x68\x20\xc4\x6b\x09\xfe\x50\x8c\xbd\x43\xe3\x15\x5f\xbb\xd0\x39\x83\x91\xb2\xd0\x0d\x36\x71\x3a\x93\xa5\x26\x09\x2b\x0c\xe8\x0c\xb6\x41\xae\x48\x7d\x55\x7b\x45\xc4\xb5\x1b\xe1\x5b\x02\x13\x1f\xec\xe7\xe4\x16\xa0\x51\x37\xe7\x3c\x0e\x49\x78\xc8\x86\x16\xee\x27\x3a\xe1\x8d\x9b\xd4\xea\x86\x75\xac\xfa\xe3\xee\x2b\x3e\xd7\x0a\xbe\x24\xd4\x35\x08\xee\x42\x51\xf3\xa9\x6c\xdd\xfe\xf6\x63\x25\x48\xf2\x2a\x6c\xa3\xb3\x3d\x14\x29\xd8\xbc\x60\x6a\x19\x15\x77\xdf\x63\x62\x96\x1d\xd1\x2d\x8b\x2b\x08\x90\x4c\x69\xcc\x43\xf5\xf0\x68\x8c\xc6\x5b\x5f\xc9\x6b\x0d\x90\xdc\xb9\xf7\xb8\xb3\x90\x81\xca\x19\xca\x85\x28\x59\x1a\x4c\xde\x7e\x69\x67\x2f\x97\x12\x3d\x72\x78\x05\x6d\xd7\xe5\x39\xa6\x71\x98\xe1\x15\x37\x98\xc4\xc1\x64\x69\x41\x4e\x66\x1b\x3b\xee\x1e\x21\x31\x0b\x26\x3a\xd3\xf1\x4e\xcd\x43\x64\x29\xb3\x54\xe1\x0b\x6e\x11\xb2\xf2\x7f\xee\xef\x86\x9d\xf1\x22\xfd\xee\xf3\x3e\x0e\xd8\xaf\x2f\xae\xce\xbf\xfb\x3c\x8c\x57\xad\xe4\x83\x3a\x6c\x4b\x20\x13\x66\xe4\xcf\x1f\xee\x80\xcd\xa8\xd2\x5f\x4b\xd9\x14\xfb\x11\x5d\xe2\xbb\xe0\x1d\x0b\x29\x9f\x61\x6e\x96\x14\x8e\xd9\x3c\x24\x41\x36\x8c\x81\x2b\x3a\x23\xb2\xd4\x79\x19\x33\x45\xbb\x4f\x1f\xef\xa2\x99\xfa\x8a\xd5\x52\xcd\xf6\xdd\x59\xe4\xf5\xa6\x4d\xba\x47\xff\x05\x1b\x85\x60\xa7\xe2\xe2\xbc\xef\xce\xae\xe0\x79\x72\x71\xee\x93\xee\x61\x3d\x8f\x5b\x44\x93\x16\x1b\x5d\x01\x14\xcc\x72\x24\xc1\xd5\x20\x38\xa7\x6c\x15\xe5\x6f\xfb\x2c\x63\x1d\x95\xf6\x1b\x17\xe2\xa4\xfe\x60\x19\x29\x2c\xe3\x31\xab\x68\xf7\xef\x5a\x02\xf0\xa6\x37\x01\x78\xb3\x1f\x01\x78\x33\x10\x80\x60\x3b\x03\x01\x88\xec\x6c\x20\x00\xff\x4a\x02\xd0\xf6\xeb\x6c\xd1\x19\x09\x6b\x96\x88\x28\x08\x72\xb3\xf9\xb3\x51\x76\xee\xb8\xf3\xe8\x60\x7e\xab\x34\x9d\x65\x5c\x2d\x59\x4f\xb1\xc4\x1c\x9e\x96\x9a\x66\xce\x43\x2d\xe7\xe8\x6b\x67\xd5\x48\x66\x27\x44\x31\x85\xf6\xb6\x36\x30\x35\xc4\x08\xc7\xd7\xd7\x8b\x6a\x36\xac\xef\xcd\x33\xad\xef\x52\xea\xa7\x03\xa1\x90\x62\xf4\xab\x2c\xf3\x71\x90\x7c\x8e\x65\x42\xfe\x4b\x3f\xf0\x4d\xf0\xd1\x90\x31\x02\xf4\x5c\x08\xab\xea\x27\xa8\x93\xce\x3c\xe5\x06\x85\x07\xe2\x0a\xea\x26\x0e\xcf\x83\xfd\x1a\x9a\x29\x48\xf7\xaa\x7a\xb1\xeb\x96\x78\xb0\x86\x1d\x34\x44\x85\xdd\x2d\xa5\x62\x95\x89\x9d\xdc\x31\x42\xe3\x51\x35\xd5\xc7\x1b\x32\x5a\xe8\x75\x3f\x8a\x4d\x50\xa7\xeb\xbf\x8b\x6b\x8e\x31\xd3\x9e\x85\x14\xa4\x60\x54\x49\x81\xcd\xb1\xb1\x5e\x6a\x1b\x3b\xeb\xbd\xae\x0e\x96\xb6\xbd\x2e\x58\x8d\x35\x26\x00\x5d\xc6\x1b\x81\xe3\x3c\xc1\x7a\xe0\xa9\xde\xcb\xb9\xd9\xe4\x2c\x70\xc1\x55\x41\x93\x2e\xec\xad\x16\x72\xdf\x7e\xda\x6b\x4e\x3d\xca\x8e\xb4\x6d\x40\xb1\x62\x6a\x79\x64\xa0\x6f\x7e\x65\x82\x30\xdb\x8c\xdd\x05\x19\xb5\x95\x42\x20\x58\xef\x7d\xe4\x78\x18\xdc\x28\x6b\x32\x7f\x2c\xa0\xba\xe4\xef\xce\xc2\x02\x48\x89\x7a\x51\x48\xa4\x44\x6f\xb6\x28\xd1\x9b\x81\x12\x75\xec\x60\xa0\x44\xfb\xad\x6b\xa0\x44\xf6\xf3\x3f\x89\x12\xb5\x84\x98\x8f\x62\xc2\x7b\xbf\xc7\x76\xfa\xfd\x57\x8f\x6d\x8b\xb2\xbd\x9f\x8c\x8c\xd9\xb6\x77\x73\x3b\xd0\x10\xdf\x19\x4b\xf2\xae\x7a\x14\x5d\x83\xda\xf9\xcd\x77\xfd\x82\x60\x0f\x29\xe0\x89\x18\xb4\x21\x33\x70\xc7\x12\x6f\x5d\x85\x70\x61\x2b\x0f\x1e\xd8\x97\xfd\x04\x10\xcb\x12\x1b\xf2\xea\x9b\xb3\xcf\x3e\xfb\xec\x2b\xb0\xbf\x63\x91\x44\x48\x96\xfa\x78\x73\xd6\x62\xa4\x37\x73\x8c\xe2\x8b\x14\x65\x66\x1b\x65\xec\x76\x42\x26\x1d\x48\x87\x39\x8f\x5d\xf0\x04\xdd\xdf\xf9\xa1\x94\x7d\x89\xdc\x0a\x79\x27\x9c\x03\xda\xfa\x6e\xda\x75\xe1\x47\x99\xc0\x71\xd6\x7e\xb2\xfe\x95\x7d\x76\x47\xd8\xb7\x4b\x7f\x26\xc6\x0a\xd3\xb6\x71\xd6\xe6\x14\xd3\x3e\x00\xea\x05\x26\xbf\x40\xcd\x05\xd8\x9f\xfa\x93\xdc\xf3\xea\x25\x9f\x60\x64\x16\xfc\x04\xb4\x7f\x41\x35\xbb\xa3\x6d\xb9\x5a\x5b\x6b\xf9\x16\x5f\xf0\x31\xdb\xc1\x86\x9e\x60\x39\xbe\xc7\xc6\x1e\xc2\x87\x7b\x25\xb6\xa4\xc7\xaf\x28\x63\xb4\x10\x2c\xfd\xa6\x90\xab\xfe\x6b\x7a\x57\xbd\x54\x61\x5d\xe8\x8d\x2e\xd8\x82\x16\x69\xeb\xc4\x04\x89\x5c\x61\xf3\x23\xe1\xc0\x5d\x9a\x74\x53\x6c\x9d\xfb\xf4\x42\x45\xd2\x4f\xd2\xdb\xd9\xdc\xc5\xdc\xc6\xb7\xa3\x24\x80\x69\x0b\xef\x99\x5a\x42\xc7\x12\xe4\xb9\x47\xa4\xa9\x40\x54\xf8\xd9\x12\x1a\xd1\xf2\x69\xf3\x43\x99\xd0\xa4\x54\xc1\xde\x5b\x37\x4c\x7a\x9f\x27\xf1\x79\x0e\x37\x5d\x62\xcf\xce\xce\x61\xc3\x2e\x4d\x11\xe3\x55\xf0\x84\xa8\x3d\x1e\xae\x1c\xbe\x74\x6f\x1e\xd2\x1a\x9f\x6a\x4f\xdd\xb2\x09\x79\xac\xa0\xc7\x83\x43\xaa\x22\x3d\xc1\xe6\xdc\x10\x0a\x10\xec\x55\x16\x77\x88\xef\x06\x47\x84\xfc\x97\x0b\x63\x9e\x6b\xf5\xd2\x0b\x2d\xd7\xda\x55\x0c\x07\xae\xd5\xb2\x91\x81\x6b\xb5\x2c\x68\xe0\x5a\xbb\x9f\x81\x6b\x0d\x5c\xab\xe9\xa9\x81\x6b\xb5\xbe\xfe\xbb\x8c\xec\x7f\xae\x74\x41\x5b\xd9\x24\xa0\x5c\xcf\x12\x74\x6f\x0b\xa1\x56\xb3\xe0\xaf\x41\xd8\xfd\xce\x13\x91\xc0\xfb\xdd\xb5\xda\x73\xa9\x22\xef\x77\x1e\x99\xfe\x5a\x2d\x84\x76\x77\xb0\xd5\x44\xc8\xd6\xa3\xf5\x55\x8c\xe2\xb1\xad\x43\x3c\xff\x10\xcf\x1f\x1e\xc1\x10\xcf\xff\xeb\xc5\xf3\xef\xdc\xe0\xb6\x0e\x42\xf8\xea\x2c\xc2\xc1\x9a\x2b\x46\xb5\x05\xf1\x03\x09\x8d\xdf\xf1\xdd\x95\x86\x0f\x3b\x77\xc7\xba\x8a\xe8\xb1\x86\x4c\x9b\x7c\xe8\x57\x13\x63\xa3\x86\x08\x94\x42\xb4\xc4\xc9\xc7\xd9\xb4\x1d\xf2\xdb\x8f\xd1\xe8\xab\x18\x5c\xcd\xa3\x6e\xad\xf0\x6f\x2b\x67\x35\x2e\xae\xc7\xf4\x0d\x12\x5e\x6c\x7a\x10\x76\xec\xa1\x05\xc9\x0f\x8f\x5a\x85\xef\x9e\x79\xc5\x68\x1a\x53\xb1\xea\x4a\x5e\xed\x69\xdf\x61\x38\x2d\x81\x44\x28\xbe\x10\x90\x2b\x22\x74\x35\x2e\x59\xf1\x45\xad\x57\xde\xd6\xda\x24\xbc\x46\x33\xdb\x30\x28\x97\x02\x14\x6e\x55\x26\x4b\x42\x15\xf9\x86\x65\xfc\xde\x16\xba\xf0\xe5\x69\xee\x28\x37\xb7\x7c\x2e\x1b\xea\x87\x24\x09\x53\xca\x51\x28\xbf\x92\x7d\x2b\xea\xad\x69\xc1\x69\x77\xa4\xf9\x77\xf8\x58\x95\x94\x82\x19\x08\xf6\xed\x00\x97\x83\xae\x10\x90\x57\x32\x14\x8a\x78\xa4\xe4\x37\x37\xb8\xf1\xec\x4d\x23\x01\x03\x5b\xdb\x46\xee\x3e\xb1\x2b\xf9\x45\xd6\xba\x2d\xf9\xed\x3e\x12\x97\xfc\x1a\xfb\x0c\x9b\x1f\x81\xc9\x16\x6b\xf6\x51\x80\x5f\xe8\x1b\xa8\xeb\x73\x42\xe6\x34\xc3\xd6\x03\xcf\x20\x36\xe2\x15\xdd\xab\xf9\x24\xbc\x32\x88\x8c\x83\xc8\x38\x88\x8c\xff\x6a\x91\x71\x97\x78\x75\x35\x9d\xc4\xfb\xfe\xd0\xb6\x93\x59\x26\xef\x2e\x26\x17\x93\x09\x4d\x6e\x99\x56\xdf\x14\x72\xf5\xbd\xed\xb9\xdf\xe9\x00\x3f\x3c\x6d\x7b\xdb\x25\xf4\x57\x51\x2a\xb0\xd2\x98\x84\x60\x1b\xb3\xa4\x84\x92\xa2\xcc\xa0\x12\x6e\x5a\xc8\x1c\x5b\xe7\x57\xed\xee\x59\x4a\x74\x41\xe7\x86\xc2\x62\x83\x18\x37\x55\x6c\xcc\xaa\xab\x17\x10\xdb\xbd\xdb\x7a\x01\x64\xbe\xfb\xeb\xbb\xd3\xcb\x87\x83\xa6\xf1\xf5\x27\x80\x0d\x8c\xfd\x2f\x03\xce\x9d\xba\x2e\x92\x73\xa5\xcf\x96\x2c\xb9\xed\x04\xc6\x35\xd3\xd6\xf8\x39\x0a\x0c\xed\xa3\xc4\xbc\x4c\xa4\x20\xa7\xdf\x5f\x93\xb7\x67\xaf\x7d\x7a\xab\x1a\x93\x53\x2b\x0c\xc5\x56\xbf\xae\xf7\x94\xc4\x5e\x17\xd3\x83\x73\x79\x29\xf5\xd2\x5c\x4f\xe8\xf4\x84\x5d\xe2\x5c\x2b\xab\x73\x4c\x1f\x9d\x1e\x74\xf4\x43\xf5\x83\xc4\x60\xc2\x44\x19\xb3\xe8\x8f\xaa\xb7\x62\x3f\xda\x85\xc4\x5e\xb3\x8b\xda\x4b\x45\x98\xe5\xf3\x33\x29\x04\x4b\x20\x11\xa8\x6a\xa8\xc1\xc5\xa2\x6f\x3b\xbd\xaf\x27\xdf\x74\x0c\x81\x11\x3e\x5c\x90\xaf\x27\xdf\x90\x95\x4c\xe3\xcd\x28\xe3\x58\x8c\xc7\x98\x65\x5e\xda\x30\x13\x99\xf3\xd6\x7c\xc5\x88\xc1\x49\x32\x73\x2d\x4f\x1a\x6b\xf7\xd9\xd7\x22\xef\x60\x38\x11\x86\x73\x79\xff\xcd\x52\x2a\x48\x15\x36\xd2\xfc\x0c\x6e\x49\x6c\xd0\x82\xd1\x64\x19\x76\x63\xb1\x5d\x63\x94\xed\xca\x4a\xf8\x2a\x2f\xe4\x9a\xf9\x24\x66\xd0\xdb\x45\x02\x08\x96\xcb\x74\xa4\xe5\xa8\xad\x1f\x95\xdf\xaa\xc2\x8d\x61\xb7\x16\x1b\xc7\x18\xe4\x30\x63\xce\xad\x59\x7b\xca\x66\x25\x76\xa8\xcd\xcb\x22\x97\xca\xa0\x7e\x3b\x82\x3e\xa8\x47\xe1\x2c\x9f\x1b\x5d\xf1\x62\x4e\x13\x36\xb1\x3d\x3e\x3b\x90\xe4\xeb\xc9\x37\xdb\xaf\xa0\x34\x51\x30\x10\x90\x09\xbb\x37\xe2\x00\x88\x79\xa0\x0f\x3a\x64\x88\x12\x31\xd0\xc1\xbc\xa7\xce\xe9\x91\x56\x8a\xa3\x5a\x9b\x73\x31\xa8\x96\x17\x72\x51\xd0\x15\x88\x6f\x5c\x10\x59\xa4\x50\x33\x35\x0a\x6d\xaa\x93\xa5\xa7\x79\x5a\x1e\x7b\xe1\x43\x30\x6d\xa8\xdf\xd8\x96\x3b\x12\x8c\xa5\x30\xe0\x0a\xdf\x58\xb2\x60\x25\x51\x10\x9b\xed\xb8\x9e\x61\x96\x8c\x56\xc4\x15\x2a\x12\xc8\x35\x2b\xb6\xfb\x83\xf5\x18\x74\x49\x45\x6a\xce\x5f\x24\x72\x05\xf2\x97\x5f\x3d\xf8\x89\x31\x90\x0c\x4b\x75\x5a\xc4\x84\x4d\xc9\x52\x2b\x1e\xef\x68\x19\x9a\x86\x08\xb9\xf0\x3a\xb9\x91\xa2\xaa\xfd\xfa\x5d\x04\x47\xf0\xa2\x54\x25\xcd\xb2\xa8\x7f\xde\xe8\x21\x29\x58\x90\xc6\xe3\xf1\xcb\x3d\x4b\x09\x18\x64\x43\x44\xff\x28\xf2\x82\xaf\x79\xc6\x16\xfd\x88\x52\xe4\xb5\x23\xc2\xe7\xae\x55\xe7\x91\x43\x1b\x66\xd3\x37\x6f\xcd\x3d\xce\xc6\x65\xf0\xfc\x8f\xb3\x7c\xfe\xa3\xbd\x67\x51\xe6\xa1\x36\x2a\xd1\x59\x78\x1b\xc3\xd7\xa1\xa6\xac\x9c\x1b\x5c\x74\xe8\xc3\x84\xb2\xad\x0b\xa8\xae\x3d\x1b\x1b\xbd\x54\x46\x2a\x4e\x50\x8a\x45\xc3\x87\xc5\xa4\xc3\x43\x85\xc4\x94\xe6\x78\xc4\xf6\x21\x2e\x94\xd1\x60\xa0\xab\x35\x91\x77\x51\xf7\xf3\xee\xcd\x30\xa7\xc8\x6c\xbf\xa7\x6a\x82\x47\xf7\x32\x9d\xe5\xf3\x3d\x78\xc8\x5b\x77\x2c\xd5\x11\xd9\x13\x02\xa1\xc5\x75\x6e\x30\xab\x37\x12\x72\x9e\x51\x11\x77\xc9\x3e\x56\x1c\x31\xcb\xbe\xd7\x37\xd2\x35\xd4\x93\x42\xac\x68\xd1\x2d\x97\x98\x3d\x44\xde\xab\xf1\xbd\x8a\xc9\xd1\xd8\xd2\x3f\x7b\x3d\xe3\xe6\xa6\x15\xb7\xbe\xfc\xab\x62\x9a\xa0\xce\xed\xb8\x01\xde\x62\x2a\x08\x73\x7d\xd6\x50\x25\x6a\xa0\x6c\xd4\x16\xee\xb5\x44\x60\x8c\x78\x08\x73\xd8\x82\x28\xa5\xab\xa5\x6a\x56\x06\x65\x5f\x73\x94\x32\x89\x9c\x37\x12\x9f\x6a\x41\xd0\xba\x03\xbc\xb2\x69\xd0\xc9\x10\x99\xa8\xab\x23\x6b\x7d\xe8\x0d\xfe\x54\x83\x81\x79\xe1\xba\x29\x5c\x4d\xbe\x21\x20\xcc\x85\x08\xf8\xaa\xf9\x18\x1b\x52\xd7\xf0\x18\x01\x40\xf6\x44\xde\xf7\x28\x9e\x62\x4f\x71\xfb\xb5\x86\x43\x34\x5b\x0b\x4e\x26\xb6\xb7\x90\xe4\xd6\x1c\x6d\x50\x15\xdf\xd2\xe5\x17\xb6\x62\xbf\x23\xd8\x41\x73\xc8\x68\xc7\x11\x03\x71\xeb\xd2\x36\x92\xba\x74\xc5\x87\xbd\x98\x6e\xa8\xf7\x1c\x70\x47\x4b\x32\x3d\xb8\x29\x85\x60\xd9\xf4\x00\x8b\x5d\xcf\xa4\x8e\x16\x7d\xb6\xba\x33\xac\xa0\x60\x2a\x97\xc2\xdc\x39\xcb\x54\xb8\x22\x1a\x46\xc1\x09\xb7\x2a\x1e\xc3\x7c\x51\x02\xe9\x96\x70\x7e\x7d\x65\x24\x69\x7c\x0f\xe7\x89\x0d\x3d\x2b\xb5\x7d\xa6\x3e\x7f\x83\x6f\x00\xa2\x34\x52\x5e\xb0\x44\x67\x9b\x68\x2d\x66\xb3\x32\xe1\xe6\xb7\xe7\x57\x3d\x12\x65\x57\x50\xe1\x3a\xcf\x19\x2d\x54\xd8\x33\xe6\x62\xe2\x94\x64\x8e\xad\xf5\xe0\xc9\x3f\x39\xb3\x13\xc8\x90\x0d\xf7\x3a\x67\xc5\x8a\x2b\xc5\xd7\x8c\xbc\x7b\x1d\x48\x14\x15\x7e\xe3\x09\xed\xdb\xff\x7a\x96\xcf\x8d\xfc\x39\x29\xe4\xfd\xe6\xad\x35\x92\x5c\x67\x06\xa5\x7a\x12\xde\xaf\x27\xdf\xb4\x0f\x10\x47\xfc\xb8\x54\x16\x48\xed\x87\x8a\xb0\xd5\x8c\xa5\x06\x3d\x6f\xcb\x19\x1b\xe5\x66\x06\x6b\x94\x56\xa4\x3e\x55\x73\x48\x46\x17\x9d\xf6\x6b\xbf\xc8\xb5\x59\xae\x3a\x33\x0f\x96\xf9\x1e\x6c\xa7\x63\x88\x1a\x3b\x42\x58\xc4\x36\x8f\xe0\x09\xd8\x55\x5e\x48\x74\x04\x64\x1b\x92\x98\x11\x49\x89\xdd\x91\xca\x5c\xe9\x82\xd1\x55\xa8\x38\x54\x10\x3a\x3c\x8c\x57\x78\xb7\x6b\x23\xc9\x92\x72\xd0\x07\xae\x51\x30\x73\x0d\x1c\xfd\x0a\xe7\x21\xb8\x6d\xf5\x70\xeb\x40\x7b\x2e\x5d\xc0\x43\xf0\x3d\x17\xd7\x1b\x91\x60\x0d\xa7\xbd\x60\x5f\x7b\xf3\xa8\x81\xd8\xea\xb8\x6e\x67\xdb\xe1\x43\x76\x89\xaf\x57\x8f\xf6\x3e\x6f\xb7\xf5\x02\x43\x65\xa0\x3e\x0c\x50\x34\x36\x6c\x05\xc6\x31\x21\xef\xe4\x1d\x2b\x9c\xa5\x6c\x61\xae\x71\xc1\xd2\x32\xc1\xae\xf1\xa3\x32\x07\xc3\xb0\x48\xcc\xa3\x7f\xe1\x8b\xa5\x7f\x36\x4e\x65\xcd\x9b\xce\xb0\x3e\xf9\x48\x4a\x45\x17\x0c\x8a\x3d\x18\x09\x1b\x62\x9a\x72\xb2\x92\x05\x92\xf3\x1a\x95\xf8\x54\x3d\x80\x42\xbc\x93\x8b\x77\x6c\xcd\x62\xdd\x3c\x76\x4e\xc4\x3d\x5b\x83\x3a\x74\xfb\xcf\xe0\x6b\x57\x8e\x21\x10\x21\x1b\x68\x81\xd7\xf7\x2b\xd8\xaf\x90\x1c\x7f\x70\x26\x96\x0f\xf3\x39\x1a\x57\x2e\xc4\x5c\x9a\x7f\xa1\x6d\xc5\x28\xb1\xd3\x83\x66\x65\x3e\x93\x0b\x6c\xaa\xca\x56\x5c\xeb\x8a\x1d\x99\xc9\x74\x41\x13\x46\x72\x9e\xb3\x23\xe7\x29\x34\x42\x39\x08\xb6\x68\x3f\x58\xad\x1a\x7a\x6a\x4f\x0f\x74\x42\xd8\x3d\x4b\x0c\xcc\x50\x95\xae\xd9\x77\xc8\x87\xf9\xfc\x87\xf1\xfe\xe0\x9f\x5c\x5f\x9e\xde\x4c\x0c\x6b\x8f\x1c\x00\x15\x9b\x0f\xb1\x9e\x3f\xa3\xae\xb4\xfc\x51\x47\x90\xda\xce\xc9\x56\xcb\xa8\x34\x9e\x82\x8a\x05\x0b\xdb\x63\xdf\xc1\x77\xa9\x5c\xc5\x15\xb9\x9c\x27\xb7\x84\x62\x83\x0c\x8c\xc6\x2b\x98\x75\x0a\xa0\xbd\x1f\x7e\x49\x64\x96\x71\xa3\xc9\x5b\x51\xd3\xbb\x46\xe3\x06\x49\x2f\x30\xb2\x7c\xc9\x56\xac\xa0\x99\x5d\x17\x55\xbe\x31\xbd\x91\x0a\xbf\x39\x23\x6f\x5e\x7d\xf1\x86\xbc\xf8\xf4\xd5\xeb\xcf\x7f\xf9\xe9\xff\x79\xf3\xc5\x17\x9f\x7d\xf1\xb2\xa9\x43\x7a\x0e\x6d\x7b\xe8\x2c\xdb\xd4\x84\xaf\xed\x49\x94\xaf\xb4\x62\x30\x43\x0a\x22\x73\x56\xd0\x26\x39\x55\x6d\x94\x66\x2b\x35\x26\xef\xb8\x28\xef\xcd\xab\x8a\x7c\xf6\xfa\x8f\x6f\xbe\x34\xcb\x79\xf5\xd5\x57\x5f\x1d\x19\x38\x66\x0c\x5b\xf5\x28\xb2\x92\xca\x88\x25\x5e\x80\x38\xbd\x3c\x8d\x0d\xeb\x76\x89\xdb\xfe\xfc\xab\x4f\xbf\x78\xed\xf6\xe7\x32\xde\x0c\x19\x17\xcc\xe0\x33\x2d\x78\xb6\x31\x87\x50\xc8\x59\xc6\x56\x78\x0e\xf1\xbe\x20\x38\x9e\x5c\xb3\x22\x33\x6a\xa2\xbf\x04\x7e\x8f\xd5\x86\xbe\xf6\x6d\x32\x5c\x28\xac\xf3\x39\x6e\x7f\x28\x78\x4c\x8c\x80\xca\xd7\x2c\xbc\x1e\xaf\x5f\xbd\x7a\xf5\xea\xe4\xf5\x57\x5f\x7d\xf5\x55\x8c\x48\xe5\xd6\x50\x44\xfe\xcf\xf8\x3f\x76\x7f\xbd\x1f\x55\x9d\x94\x46\x5c\xe8\x91\x2c\x46\x88\xda\xf1\x8c\x3b\xe0\x83\x17\xa0\xec\xf6\x92\xea\xcf\xea\xcf\x37\xd9\x1a\x97\x52\xde\x86\xc6\x80\x06\x76\xac\x65\x3e\x42\x7a\xb8\xc5\x98\x0d\x22\xa1\x0a\x6e\xa0\x6b\x6d\xec\x36\xc8\x45\xcb\xdc\x02\x37\x6a\x7f\x32\xef\x1b\x02\x38\xdb\x80\xec\x29\xd2\xdd\x11\x66\x52\x6b\xb9\x1a\x3b\x25\xdf\xc6\xaa\x28\x3a\x67\xae\x6f\x48\x14\x69\x5d\x61\xbe\xbc\x60\x6b\x08\xbf\xa8\x4c\x08\x66\x74\xab\x4f\x62\x34\xed\x6c\x93\x53\xa5\x6c\xcf\xfb\x8d\x2c\x89\xba\xe3\x3a\xde\x22\x46\x4b\xbb\x50\xcb\xa7\x67\x8c\x28\xec\xc4\x61\x97\x8b\xfd\xaa\x70\x0a\xd7\xa8\x0e\xa1\x84\x41\x21\x51\xec\x02\x01\x11\x8c\xa4\xb3\x8d\xd1\xdf\x33\x74\x2c\x16\xb2\x5c\x2c\xb7\xf2\x20\x61\xe4\x23\x9c\xe6\xce\xb6\xe0\x8f\x8d\x69\x1f\xcf\x65\xc6\x93\x0d\x4a\x67\x33\x16\xec\xb4\x42\x61\x04\xec\xbe\x2c\xd6\x33\xb8\xf3\x82\xaf\xa3\xcd\x3c\xdb\x4b\xb7\xcf\xca\x85\x35\x55\xbd\x93\x8b\xf3\x42\xe6\xb9\x41\xfb\x3d\xe5\x30\x18\xe6\x3d\x5b\xc9\x62\x33\x29\xe4\x9c\x67\x6c\x42\xf5\xf2\x21\x6b\xb9\xe6\x2b\xf0\x00\x9d\xd1\x2c\xf9\xb6\xa0\xf9\xf2\x2f\x54\x2c\x4e\xe7\xfa\x61\x3b\x73\xa3\x9d\x3b\x20\x3d\x7c\x34\x38\x24\xa7\x39\xdc\xc8\xbf\x48\xa5\x4f\x93\x86\x3c\x96\xfa\xed\x3f\x6f\x7e\x37\xa4\x04\x60\x52\x35\x28\xad\x1a\x4c\x29\xde\xc0\x6a\x1e\x5d\x48\x77\x75\x68\x65\x11\xad\x3c\xd5\xb2\x32\x82\x70\xad\x58\x36\x27\x2f\xe8\xbc\x21\xc8\x0d\xc8\x83\x1d\x7b\xc9\x2d\x73\xf6\x43\x31\x54\x36\x11\x7f\x5f\x8e\xc9\xd7\x1b\xdf\x26\x08\x51\x3b\x36\xa4\xed\x33\x1f\x75\xe2\xf9\xa1\x55\x6c\x99\xc0\x26\xe2\xcd\xd5\x3c\xb5\x9b\x1e\x9c\x5f\x7d\x98\x4c\x0f\x20\xd8\xc9\x30\x7a\x4b\x2d\xee\xa8\x6d\xe0\x0a\x9d\x47\x95\x5c\x41\xe9\x05\x9a\x65\x6d\x6a\x3c\xac\x2d\x04\x9c\x59\xcd\x11\x5a\x0e\xa0\x12\x01\x2d\xe8\x8a\x59\x93\xc9\xd5\xdb\x9b\x8f\x57\x97\x66\xd4\xd3\xb3\xb3\xb7\x93\x9b\x31\xf9\xa8\xa2\xb7\xde\x3e\xc8\x71\x61\xd0\xfc\x69\x23\x4b\x30\x8a\xd6\x69\x52\xb0\xa9\x8b\xcb\xc9\xc7\x9b\xe9\x01\x92\xa9\x3f\xb5\xd0\x12\x20\x22\x8e\x0c\x6b\x47\x47\xb7\x09\x3d\xd5\x38\x92\xed\x31\x36\x3d\xc0\x35\xc5\x1b\x10\x39\x93\x9b\x3d\x91\xad\xc5\x10\x69\x89\xf8\x92\x2a\x88\xa4\xc3\x46\x0e\x79\x21\x5d\x34\x9c\x3b\xdc\xd8\xd8\x71\x54\x02\xd0\x59\x30\x82\x9d\x43\xf8\xf8\x2f\x9a\x65\x4e\x59\x77\x0b\x6b\x3c\x39\x6f\x73\x22\x80\xdf\xb1\x35\x35\x2d\xa0\xdd\x7a\x6b\x48\xe1\xde\xb4\x98\xad\x79\x82\xd9\x76\x93\x42\x6a\x99\xc8\x4e\xb5\x07\x64\xd4\x30\xb4\x08\x13\x4c\x72\xfb\x3a\xa1\xa9\xb5\xb1\x59\x85\x67\xc5\x52\x3b\x4d\x54\xe6\x82\x3c\xbe\x23\xc3\xbd\xdc\x25\x05\x24\x76\x6c\xe7\xea\x66\x72\xf5\xe1\xe6\xc7\xaf\x3f\x7c\xb8\x41\x2d\x29\x63\x73\x4d\x66\x19\x15\xb7\x8d\xf6\x8f\x06\x25\x20\xd8\xeb\xf5\x3e\xdd\xbe\x6e\x6c\xf3\x55\xbd\xd3\x23\xcb\x59\xbb\xa4\xd8\x67\xb3\x35\x8a\x14\x19\x14\x72\x92\xdc\x26\x8f\x48\xc6\xe8\xda\x46\x0b\x45\xf5\x6e\x10\xbc\xc0\x20\xbd\x94\xd2\x4a\xce\x5b\x23\x3e\xa0\x41\xb0\x75\xcf\x9c\x49\x21\x8c\x8e\x78\x7b\x21\xa0\x9a\x71\x53\xc4\x41\x2b\xaf\x75\xd8\x7c\xe5\x0a\xdc\x9c\xb3\x2c\x9a\xc1\xd8\xb6\xa0\x9d\x41\x9a\x6d\x56\xed\x8b\xb1\xc6\xea\x4b\x99\x32\xe8\x06\xd1\x75\xfc\x6f\xc3\x17\xce\x2e\xce\xaf\xcc\x4b\xa8\xc5\x65\xe6\x5f\x72\x4e\xcc\xb7\x87\xa0\x0a\xb8\xd1\x47\x42\x8a\x11\x06\x53\x42\x41\x96\x16\xbf\xec\x8a\x6e\xdc\x79\xa1\x55\xd7\x33\x21\x70\x06\x60\x97\x60\x16\x18\x93\xed\xaf\x71\xfd\xd0\x85\xb1\x1a\xe2\x9a\x54\xb5\xcb\x63\xc5\xec\x9e\xa1\xdc\xfa\x9c\xf2\xcc\xc8\xd7\x17\x62\x26\x4b\x91\x1a\xb1\xa1\x49\x93\xaf\x4b\x1c\xdf\x34\xbc\x58\x87\xf3\xc7\xf3\xc9\xf1\xcd\xd9\x04\x0d\xff\xd1\xdd\x8b\x14\x0e\xc3\xfa\x0b\x03\xfb\x22\x72\xd8\x98\xeb\x17\x78\xb9\xe7\xf0\xb1\x51\xa5\x20\xbc\x28\x98\xca\x6d\x09\xfc\xaa\x5b\x6f\x59\x70\xbd\xf1\xec\xc1\x11\x0a\xdb\x72\xd6\xf0\xf5\xb5\xe4\x51\x0e\x43\x93\x04\x0a\xcd\x03\xe3\x48\x4a\x6c\xd9\x2e\xe7\x73\x42\x71\x3d\x20\x54\x98\xd5\x16\x05\x4b\xf4\x56\x7c\x19\xf9\x26\x9e\xbe\x37\xa3\xc9\xed\xa8\xd6\x48\xe8\xc8\x25\x01\x7a\xea\xec\x1a\x24\x56\x8d\xb3\xb9\x76\xc4\xa8\x29\x26\x7d\x7a\xa0\x93\x7c\x7a\x00\x52\x0b\x05\xf8\xc6\x87\x09\x00\x1d\xca\x51\xd1\xfd\x63\x58\x95\xa1\x4e\x86\x20\xde\x54\xfe\x60\x0a\x92\x02\x60\x01\x82\x02\x0e\xfb\xc8\x1b\x05\x1a\x5b\x1e\x0a\x29\xc0\x59\xe7\x95\x3b\x1b\xa9\x64\x9d\x76\x4a\x2d\x9d\x4b\xd8\x60\xc9\xf9\x5f\xce\x26\x35\x87\x6d\x92\x9f\xbc\x7e\x1d\x8d\xb3\x29\xd3\xfc\xe4\xcd\x97\x47\xf0\xc8\xa7\x7f\xfc\x0a\xff\xf1\xfa\xb3\xea\x5f\x5f\xbe\xc2\x7f\xbd\xf9\xfc\xf3\xcf\xec\xbf\xde\xbc\x79\xe3\xff\xf5\xc7\x18\x53\x6e\xbe\x7c\xf5\xb2\x6c\xe6\xdc\x26\x12\xb5\xd7\x44\xae\x66\x41\x56\xb9\x3b\xd3\x23\x00\xd1\x91\x47\xfe\x86\x54\xcd\x89\x67\xd0\x22\x45\xc3\x93\x8b\xe1\xaa\x9a\x79\xc6\x2d\x43\x1d\xa9\xc9\x82\xc5\xed\xe3\xa4\x57\x66\xa8\x59\x49\xc7\xeb\x2d\xb5\x36\x89\x87\xc2\x83\x97\xd0\xda\xff\x78\xd4\xd8\x51\x78\xe4\x67\x6e\xa6\xa0\xed\x95\x73\x5b\x29\xe8\x87\x52\x3f\x90\x84\xee\xbc\xf9\xc4\x34\x54\x96\x7a\x21\x43\x1a\x0a\x52\x6d\x37\x15\xd5\x72\xa0\xa2\xbf\x2a\x15\x95\x16\x11\x9e\x86\x8c\x4a\xd0\xf3\x99\x4e\xd2\xc3\x43\x28\x06\x29\x52\x5a\xa4\xd6\x07\xaf\xa5\x0d\xd4\x69\xec\x52\x87\x68\x94\x4a\x86\x5b\x5e\x30\x6d\x0e\x0c\x0e\x0b\xf5\x59\x9d\xa4\xb5\x90\x2e\x03\x00\x73\x9c\x86\x50\x37\x19\xad\xcf\x2f\xaf\xb7\x69\xf8\x3e\x04\x3a\x7a\x50\x96\x66\x1f\x01\xd9\xff\xe2\x33\xfc\xff\x40\xc3\x07\x1a\x1e\xfd\x35\x4e\xc3\x19\xd5\x65\xc1\xce\x99\x66\x89\xfe\xb0\x66\x45\xc1\xbb\x4d\xee\xdf\xc4\x5e\xf2\x49\x85\x5a\x82\x5f\xa2\x70\x7e\x19\x3b\x45\x1c\xf7\x34\xb3\x56\xa6\xef\xd0\x01\x4b\x8b\x00\x3f\x08\x17\x84\xa2\x5f\x8f\x28\x96\x53\xec\x35\x0d\xdc\x01\xc8\xa5\x88\x9a\xc7\x54\x4e\x13\xa3\xa6\xb3\x7b\xba\xca\x33\xf6\x27\x32\x3d\xb8\xbe\x3c\xbd\xf9\xa6\xcc\xb2\xcd\x15\x78\xc0\xfe\xac\x8b\x92\x1d\xbd\x3f\xbd\xfe\x5f\xe1\x97\x10\x51\x76\x74\xc5\x20\x2f\xee\xba\xcc\x81\x5c\xbc\x93\xc9\xed\x9f\xa7\x07\x51\x4c\x9d\x1e\x80\xfb\xc2\xc6\x8d\x63\xa6\xd6\x01\xd2\xc4\xb9\x2c\x92\xda\xee\x8f\xb0\x35\xbb\x79\x54\x5a\xd7\x66\xb3\x1b\xd9\x00\x81\x96\x5a\x8e\x10\x3e\x7b\x2b\xc4\xf3\x4c\x82\x0f\xe8\x62\x12\x67\xc5\xce\x08\xd3\x18\xfc\x58\x3f\xed\x6a\xb4\xaa\x62\x68\xe5\x5d\xc1\x00\x8f\xad\xf8\x88\x45\x41\xa3\x5c\xc0\xad\x2c\xa8\x45\x1b\xd5\xf7\x1a\xe3\xe7\xad\x26\x1d\xfb\xa9\x79\x3b\x6d\xb0\x82\x1e\xe6\x3c\xf9\xeb\xf9\xa4\x6f\x60\xc9\xb7\xdb\x6f\xd8\x08\x0d\x45\xec\x2f\xe4\xaf\xe7\x13\xa2\xa4\x8b\x05\x22\x09\x2d\xe2\xc9\x15\x20\xb4\xa4\x52\x1c\x1e\x6a\xa2\x10\xe1\xe0\x5d\x39\x9f\x83\x69\x4d\x16\x24\x05\xbf\x03\xb8\x61\x20\x5a\x14\x98\xe2\x5f\xcf\x27\x28\x7b\x44\x0d\xb9\x36\x30\x84\x99\x7b\xc3\x44\xca\xd2\xca\x4d\x64\x78\x1a\xcc\x96\x17\x72\x6d\xee\xe7\x8c\x69\xb0\xeb\x55\x01\xec\x0d\xeb\x14\xde\x96\x3a\x7e\x74\x10\xe6\x92\xd1\x4c\x2f\x1f\x68\x13\xc1\x97\x8d\xc0\xb8\xa7\x51\x06\x5f\x9c\xc4\xc9\x7f\x2b\xe1\xf7\xa1\xd0\x6f\xef\x93\xac\xec\xe1\x91\xbc\xd8\x7a\x01\xa5\x5a\xa0\x63\xa3\x2d\x3a\x06\x8d\xe6\x3a\xa3\xc1\x6b\x41\xf0\xcc\x0e\x0a\x26\x46\xdb\x2c\xcf\xb5\xe6\xad\x8b\xb6\xe3\xa6\x30\x8b\xba\xb8\x54\x8b\x5b\xb6\x89\x19\x0b\x21\xcd\x57\x55\x20\xd3\xe1\x21\xb9\x98\x7c\x77\x4d\xd2\x72\xb5\x8a\x06\x10\xf8\x6d\x1c\xb9\x20\x7e\xcb\x0f\x5c\x0a\x65\xb6\x21\xb3\x4d\x2d\xf6\xa6\xee\x59\x88\x5a\xb7\xed\x5e\x57\x65\xa6\x79\x9e\x05\xf1\xf8\x98\xf0\x4b\x4a\x85\xbe\x54\xf3\xbf\x8c\xb9\x2c\x4d\x08\x6c\xe1\xbb\xd9\x9c\x04\xb2\x09\x73\x5b\x86\x75\x27\x3d\x41\x81\xa0\x1d\xfb\x01\xd6\x09\xf2\xcb\x5d\x41\xf3\x26\x3f\x0f\x82\x13\x58\xd3\xe1\xe1\xf1\xe1\x21\x0e\x67\xf9\x10\x59\xa2\x6d\xd4\x46\x1a\x1d\x1e\x1e\xff\x1f\x03\x8b\xe3\xa3\x35\xd3\xcb\x4f\x0f\x23\x97\xc8\xa6\x74\x39\x18\xa0\xb5\xc1\x47\xe5\xc3\x69\xcd\xd8\x82\x0b\x37\xa3\x19\xee\xf0\xd0\xb6\x43\x54\xb2\xc9\x0a\x5b\x81\xf0\xf0\xd0\xce\x1d\xde\x69\x38\x20\x9e\xaf\x55\x4b\x58\x6e\xfc\x86\xf9\x81\x27\x05\x9b\xf3\xfb\xfe\xd7\x04\x9f\x77\x76\xeb\xfa\x11\x43\xb4\x87\xaf\x24\xe0\x1b\x1e\x46\xa1\xb5\xeb\x03\x83\x0c\x09\x50\x35\x0c\xd7\x29\xb9\x5a\xa2\x23\x60\x15\xd1\x04\x5b\x61\xa5\xc6\xe4\x52\x6a\xa0\x11\x84\x89\x35\x2f\xa4\x58\x81\xc3\x5d\xda\xb2\xda\x54\x90\x99\xe1\xdb\x2b\xa6\x69\x86\x18\x28\x8b\x64\xc9\x94\x2e\xa8\x96\xf1\x7a\xf0\x9e\x9b\xa2\x1f\x81\xe6\x46\xf6\x2d\x38\xd5\x2c\xdb\xd4\x71\x47\x96\x45\x18\x54\x08\x56\x21\x99\xdc\x36\xd4\xd5\x30\x64\xcc\xe6\xaa\x5b\x57\x9b\x39\xeb\x84\x66\xfc\xf0\x30\x4c\x64\x36\xa3\x7e\xc8\x99\xb8\xd6\x34\xb9\x0d\x5f\x8b\xde\x1b\x17\x59\x74\x78\xa8\x69\xee\x06\x0a\x31\xc7\x4c\xf0\x60\x9c\xb9\xc2\xe6\x8c\x80\x13\x6b\xda\xe9\xd9\xb9\x68\x78\xaf\xa9\xaf\x64\x63\xd6\x64\xc1\x54\x42\x85\xb2\x81\xf4\xe1\xfd\x92\x64\xcd\x0a\x3e\xdf\xd8\x8c\x0b\x2c\xe3\x0e\xda\x26\xbe\x03\xec\x38\x6e\xd9\x76\x69\x25\x86\xe0\x29\xa6\x7d\x06\x35\x77\xab\xd4\x92\xbc\xda\x53\xa8\xe3\x39\x6f\x89\x7d\x6d\xe5\x99\xe6\xd5\xf7\x37\x1f\xbb\x2f\xe4\xe4\x62\xf2\xfe\xe6\xa3\x83\xa1\xf9\x27\x44\xb2\x6b\x57\xa2\xd2\x1a\xfd\xd1\x6b\x34\x26\xd7\x2c\x1e\x94\x61\xd1\xda\xec\xda\x8c\x11\xc4\x38\x7e\xfe\xf9\xfe\xc1\xfe\x3c\x37\xa8\xb7\x27\x7e\x1c\x5e\xc4\xde\x6a\xc5\x0e\x52\x30\x4c\x34\x8d\xcb\xe4\x59\x10\x11\x84\x9d\x07\xea\x96\x04\x22\xa4\x25\x06\xd6\x4b\x0a\xfe\xdc\xd0\xec\x13\xb5\xe0\x14\xf2\xd6\x57\x48\xf7\x61\x3b\xf1\x86\xa6\x7e\x7a\xd7\xc8\xb4\x3d\xe6\xf7\xab\x57\x7b\x47\x94\xba\x19\xbe\xa6\xc9\x2d\xdb\xa9\x1a\xb0\x03\xe4\x8b\xfa\xe3\x5e\x71\x73\xa5\x54\x66\xf6\x7b\x23\xe4\xb8\xb5\x1b\x96\x16\x05\x04\x43\xd7\x5f\xcd\x9c\x03\xee\xc5\x05\x8d\xba\x93\xfb\xec\xe3\x1b\x9e\x69\x56\x40\x86\x75\x63\x38\x49\x9f\x71\x8c\x16\xf8\x4d\x73\xdc\xcd\x36\xe6\xed\xbe\xe4\x10\xcf\x50\x99\xb0\xd2\xaa\x9b\x20\x06\x91\x4c\x26\xb7\x64\xce\x33\x36\x26\xff\xdb\x48\x1f\x74\x03\x09\x8a\xe8\x3e\x85\xf0\x3f\xe0\x1a\xd6\xde\xe7\x9f\x76\x0a\x40\xbc\x78\x3e\xd7\x81\x41\xcc\xaf\xe6\xc5\x3c\xe0\x35\x61\x58\xc5\x8a\xe6\x39\xc3\x84\x57\xa1\xa5\x8f\xae\x6e\x60\x66\x9a\x72\xc1\x0a\x73\xad\x28\x49\xf9\x7c\xce\x0a\x26\x34\xc9\xa9\x5e\xbe\x0c\xf9\xc4\x71\x51\x8a\xe3\x7b\xab\x4d\x98\x75\x3f\x14\x4d\x0d\x84\x27\x85\x9c\xb1\x3d\xa8\x42\xc3\x9b\xee\x80\x20\xd2\x7c\xcb\x98\x1c\x95\x35\xb0\x92\x11\x46\xa4\x53\xad\x8d\x76\x0f\x3c\x83\x26\x60\xde\xa9\x87\x9f\xc0\xe1\xf0\xb9\x4d\xe7\x15\x32\x2a\x6b\xd0\x35\xe5\xd0\x88\x60\x5c\x8f\x49\x5f\xd1\x5b\x17\x52\x0e\x91\xe3\x36\x7d\x86\xaf\xad\x0a\xe0\x4e\xbf\x41\x19\x34\xe7\x02\x6a\xe0\x11\x24\xe0\x18\xfd\x11\x86\x39\x9b\x7c\x0c\x0f\xe5\x8b\x57\xab\x07\x93\x0b\x03\xcd\x1b\xbe\x62\xb2\xec\xf4\x50\xd7\x4e\xc0\xbe\xd3\x06\x7b\x00\x74\xd4\x92\x60\xf3\xb9\x6b\x30\x86\x30\xf3\x57\x47\x01\xd1\x04\x4b\x33\x1a\x92\xb9\xaa\x8c\x31\x8d\xe2\x00\xc8\xf8\x6a\x49\xa3\x27\x08\xd7\x0b\x63\xa8\xb2\xac\x4e\xec\xad\x40\x1e\xe7\x1c\x46\x16\x37\x87\xe8\x4e\x6a\x4c\xbe\x37\x07\x67\x73\x37\xaa\x5c\x78\xa3\x91\xd3\xea\x22\x1d\x35\x47\xff\xba\x8c\x24\x33\xa2\xb9\x4e\x36\x4f\x4a\x16\x1b\x47\x59\x82\x3c\xf7\x95\x2c\x6d\x3b\x0d\x1b\x80\x14\x74\x4f\x8f\x8d\x2e\x0b\xf7\xc4\xdc\x55\x0c\xc1\x05\xd5\x92\xf6\x94\x97\x72\x1e\x8a\x36\xef\xa9\xd1\xd9\x1e\x4f\x9d\xdf\xd3\xe2\xf6\x3d\x55\xdd\x59\x9c\x17\x5b\x2f\x38\xc4\x5b\x99\x7f\x87\x8a\x36\x74\x90\x57\x86\x58\xc6\xe0\x73\x31\xb9\x41\xa4\x30\xe3\x90\x99\x21\xa9\x50\x6f\xd7\x25\xee\xcc\xcc\x29\x7e\xf6\xda\xfc\x42\x96\xec\x9e\xa6\x2c\xe1\xab\xaa\x9f\x9f\x41\xa0\x28\x9e\x68\x92\x31\xaa\x34\xf9\x12\xc7\x54\x4c\x1f\x81\x8b\xc3\x1c\x29\x32\xd4\x24\xa3\x6a\xe9\xa2\xf8\x36\x16\x03\x57\x6e\x15\x71\x5d\xc0\x45\xfd\x80\x03\x0b\x62\xc2\x6b\xc7\x78\x3f\x9f\xbf\x82\x4f\xec\x14\x1f\xde\xe2\xbc\x3a\x9d\xcb\xd3\x9b\x0f\xd6\x0d\xe7\x85\x76\xe4\xcb\x0f\x3c\xee\x89\x54\xfa\xfb\x82\x6b\x06\x01\x3e\x7b\x93\xfe\xf8\xeb\xdb\x92\x21\x84\xbb\x35\x52\x09\x23\xd9\xa5\xe6\x64\x28\xb9\x33\x43\xed\xe6\x22\xf9\xc2\x77\xc9\x92\xa5\x18\x41\x08\x49\xbd\x05\x25\x05\x8b\x47\xf2\xcd\x50\x09\xf3\xa5\x0c\x30\x51\x16\xb3\xf2\x61\x92\x3b\x8a\x9c\x3d\xc9\xe4\x6c\xc6\x0a\x54\x2f\xa8\xa8\xd1\xa1\xa8\xa1\x3a\x4c\xd5\x80\xac\x32\x99\x24\x65\x61\x18\x92\x7b\x9b\xe6\x79\xc6\x9d\x68\x12\xe2\x8a\x37\x19\x36\xe8\x4e\x39\x4b\xf4\x2e\xa5\x1c\x3f\x2a\xaf\xc9\x0d\xb5\xbf\xc8\x1f\x7d\xef\x01\x2a\xa1\xd5\x03\x5c\x6a\x28\xa8\xbe\x36\xa4\x34\x38\xe2\x76\xf1\xbf\x09\x6f\x6a\x8e\xe0\x7d\xc4\xff\x78\xd1\x73\x58\x9b\x57\x08\xd0\x46\xa1\x03\x11\x1a\xf9\x24\x57\xd6\x38\x65\x24\x6a\x10\x2e\xc0\x62\xd1\x60\x21\xb2\xd1\xfd\x38\xa8\x57\x5a\x15\xf8\x3a\xc1\xca\x42\x0b\x70\xd6\x9a\xb1\xa9\x4d\x98\xb1\xb1\x7d\xb3\x72\xd1\xc8\x08\x0d\xfe\xce\xf9\x3d\xfa\x75\xec\xf3\xae\x72\xe8\xe7\xe3\x4f\x3f\xf5\x06\x41\xc3\x7d\xd1\xb0\xb7\x36\xdf\x1b\x86\xb4\x28\x18\x6d\x88\xb0\xde\x58\xe1\xd8\x05\x28\xfb\xe0\x62\x2d\x8f\x08\x25\xcb\x20\x69\x0f\xd3\xa9\xeb\x39\x7a\xb1\x21\x21\x6d\xaf\x86\xc4\x0f\xd1\xa5\xd6\x6f\xac\x17\x69\x5f\x7d\xfd\xb6\x9c\x31\x68\x34\x28\x0b\x7d\x05\xa9\x4c\x9d\xb8\xff\x9f\x3b\xaf\xd8\x86\xc5\xce\xca\x0c\xce\x85\x30\x2f\xaa\xa1\xae\xba\xcd\x5b\x27\x55\xd6\xfa\x98\x7c\x10\x98\xe9\x04\x39\xa8\x28\x13\xa0\x67\x2a\x4c\x6f\x6d\xae\xe5\x0a\x5c\x88\xe7\x6b\x65\xb3\x04\x11\xf4\x25\xca\x4c\x4c\x31\xb7\x2c\x38\x3b\xb4\x8e\x57\x15\x06\xda\x62\x9f\x6d\xcc\x41\x78\x50\x9f\x41\xa6\xd2\x67\xaf\xff\xf8\xe6\x8f\xd1\x84\xbe\x66\x3f\x78\x53\xba\x5e\x8f\x84\xbd\xee\x94\xbd\xae\x1c\xa9\xfd\xb3\xa4\x5a\xbd\xba\x99\x5c\x40\xaa\xa5\x51\x3f\x05\x5d\xb1\x2b\xb6\x60\x9d\xf6\xd8\x77\xb1\x97\xc2\x1c\x0a\x43\x34\x6d\xf4\x67\x62\xb0\xc3\x88\xc3\x0d\x64\x0e\x03\x41\x79\x41\x60\x44\x48\x32\xc5\xae\xeb\x98\x5f\x96\x22\x0d\xb0\xf9\xa7\x0e\xc3\x20\xf9\xb3\x29\x7e\x04\x26\xb3\x6e\x5f\xb0\xfc\x03\xd1\xad\x0a\xd7\x2c\xf8\x9a\x89\x58\xc9\x21\x9f\xd4\x96\xb2\xb4\x39\xf1\x74\x0e\x12\x09\x72\x47\x60\x86\x88\x8f\x76\xf9\x90\x0f\x06\x2b\xdd\x8f\x06\x64\x72\xd1\xdb\x6c\xf0\xae\x7a\xd6\x71\xac\x79\x99\x65\xa0\x3e\x3b\xf9\x02\x6f\x4e\x26\x17\x8e\x43\xc4\xb6\x02\x22\x63\xc0\x37\x40\x6b\xc9\x24\x14\x8f\xaa\xa9\xe1\x6b\x5a\x1c\x67\x72\x71\x1c\x0a\xfb\xe3\x4c\x46\x0b\x9a\x75\xec\xb2\xa7\xc5\xff\x9d\x7b\xb2\xb2\x87\x2c\x6a\x06\xfe\x80\x34\x80\x6e\x5b\x18\xcd\xb5\xe9\x4a\xbd\xfb\xf0\xad\xe3\x97\x75\x23\x74\x22\x47\x98\xd9\xf0\x80\x9d\x5c\xb3\x35\x2b\xb8\xde\x98\xb3\xe8\xb3\x9f\xf0\xf9\x70\x57\xca\x7e\x4f\xe8\x4c\x82\xa6\x6e\x6e\x8f\x41\xa1\x28\xed\x29\x18\x96\xbb\x70\xb5\x48\xe5\xc2\x5a\x7e\xaa\x8d\x5d\x88\xb9\x7c\xc4\x7e\xae\x93\x82\xb1\xee\x74\xaa\x77\xdb\x6f\x3c\xd9\x9e\x94\x4e\x65\xa9\x9f\x72\x47\x9b\x6e\xb6\xf8\xae\xf6\xf8\xd3\xed\x65\xa3\x82\x4b\x48\x2e\xa5\xad\x3e\x20\xa4\xbb\x68\xc0\xcc\xec\x53\xad\x56\xda\x87\x00\x61\x45\xef\xc1\xbc\x7d\xcd\xff\x11\xc3\xd1\x56\x6e\xe5\xaa\x90\x9e\xa6\x69\x4c\x01\xab\x83\xef\x7d\xf0\xb0\x03\x5e\xd8\x45\xb8\x20\xa9\x5c\x51\x2e\xd0\x53\xd7\x9c\x01\xeb\x9a\x84\x42\xda\x14\x15\x84\x0a\x65\x64\xd0\xef\xde\x93\xbf\x97\xac\x30\xb4\xd6\x40\x2f\xc9\x64\x99\x8e\xb8\xe0\xda\xaf\x12\x8a\xba\x7a\x17\x55\x3c\x0a\x6e\x09\x46\xae\x02\xcd\x62\xa9\xcf\xb2\x5a\xd1\x64\xc9\x05\xf3\x56\x16\x21\xd7\x74\x44\x73\x4e\x5e\xc8\x02\xfa\x85\xce\x4a\xa1\xcb\xe8\x90\xee\xd1\x91\x5b\xc6\xcb\x31\x39\x75\xb1\x85\x73\x24\xb0\x2f\x12\xaa\x18\xe4\x89\x09\xc5\x35\x5f\xb3\x97\x64\xc5\xa8\x68\x36\x03\xd5\x7c\xf8\x10\x4a\xc9\x34\x29\x73\x50\xe4\x2f\x4f\x6f\x30\x1b\xd8\x59\xb5\xdc\xc4\x40\xfd\x3b\x30\xe8\xd3\xd7\x7f\x1c\xbf\x1a\xbf\x1a\x7f\xba\x37\x1a\xd9\x49\x1a\x62\x22\xe2\xa8\xe0\x82\x03\x41\xa3\x32\xff\xb6\xf6\x26\xbf\x62\x3c\x6b\x8c\x4f\x69\xa8\x05\xb9\x9a\x41\x4e\x3c\x30\x73\xec\x16\x3c\xae\x61\xda\x0b\x3e\x07\x08\x1d\x1e\x9a\x9b\x75\x78\xf8\xf2\x28\x08\x2e\x6b\x50\x82\x00\x94\x1e\x90\x47\xe8\xdf\xfd\xf4\xcd\x57\xe3\xd7\x5f\x7c\x3e\xb6\xff\x3f\xf9\x12\x14\xaa\x70\xae\x93\x70\x5f\x51\xe5\xf9\x42\x40\xae\x3f\x31\xe7\x6d\x5b\x46\x05\x87\xe8\x2c\xf2\x33\xe6\x3a\x4f\x07\x04\xee\xcb\x3f\xfe\xf1\x8b\x96\xb2\x12\x4d\x37\x54\x97\xfb\x94\x5f\x7c\x7f\xf3\xf1\xd7\x28\xbd\x08\x1e\xcf\x9a\x75\x82\x66\x09\xa4\xff\x7a\x73\x63\xdc\x2f\xf0\xfe\xe6\x63\xbd\x58\x44\x55\x70\xb0\xad\xd8\xe0\xe3\x2a\x0b\x0a\xaa\x9d\xd1\xa9\x67\xe6\x5c\x60\xa6\xb2\x6f\x04\xee\x2c\x43\xb2\xea\x69\x74\x20\x9d\xd8\xb0\xa9\xa6\x8a\x12\x28\x2a\x1b\x94\x84\x6b\xed\x2a\x62\x09\x42\xc3\xf5\x91\x5c\xca\xcc\x97\x84\xeb\xc8\xa0\xf3\xe5\xa5\xb6\xd2\xf2\xc2\xec\x39\xc0\x80\x6a\xc1\xd6\x9c\xe3\x41\x1c\xa7\xa1\xb5\x62\x60\x6e\x11\x52\x90\x17\x1c\x02\xc7\x9c\xb2\x56\x99\x79\xde\x9f\x5e\xff\xaf\x8f\x6f\xaf\x4e\xcf\xdf\x12\x4d\x8b\x05\xd3\x91\x62\x66\x1d\x27\xe4\x75\xd5\x7f\x59\xf1\x14\x5b\x36\x05\x16\x11\x1c\x77\x55\x3f\xc5\x2a\xce\xca\x9f\x8f\x01\x70\x93\x3b\x02\x83\x9c\x29\xe4\xf8\x23\x82\xa4\x70\xc0\x3e\x0b\xe1\xf2\xf4\xc6\x9a\xfe\x4b\xe1\xe2\x32\x5a\xaa\x3b\xcc\xd8\x92\xae\xb9\x2c\x1c\x89\x75\xf1\x84\x0a\xc3\x35\x1a\x73\x25\x9f\xb6\x1c\x87\x60\x3a\xe3\xa2\xc5\xbf\xd3\x06\x6f\x88\xc4\x37\xcb\xbd\x62\x8b\x3e\xd9\xfc\x1f\xea\xcf\x3b\x46\x13\x88\x17\x86\xb4\x79\x72\x66\xf8\x63\xa1\xb9\xa1\x43\x51\xb5\x1c\x29\xd8\x8c\x65\x52\x2c\xb0\x6c\xfc\x85\xb9\x7d\x10\x4d\x36\xb2\x03\xa1\xed\xed\xb8\x8a\x83\x49\x59\x9e\xc9\xcd\x8a\x09\xdd\x2c\x6f\xb8\x50\xf6\xaa\x83\x3e\x64\xc4\x2f\xe5\x1d\x60\x02\x54\x0f\xc6\xc9\x5f\x60\x21\x9d\xca\x78\xb8\x92\x29\xcb\xa2\x23\xa3\x5c\x82\x6a\x58\x32\x87\x6e\x76\x58\x2c\xc0\x87\x1b\x99\x1b\x09\x63\x27\x72\x95\x97\xb6\x0a\xde\x4b\xdb\x95\xa0\x8c\xc7\xbb\x55\x2a\xf2\xdf\x50\x37\xfa\xa1\x3a\x95\x1f\x2d\x0c\x50\xb4\x09\x36\x63\x44\x3a\x56\xea\x42\x8a\xb1\xf9\x36\xba\x5a\xbb\x14\x2c\xc4\x57\x31\xbd\xb7\xab\x5c\x6f\xf6\x15\x45\x30\xa1\x06\xea\x84\x51\xbd\xec\xa9\x4d\x4e\x22\x2f\x85\x51\xe8\xb3\x8d\xeb\x42\x03\x1d\x6a\x56\xa5\x80\x6e\x83\x51\xeb\x0c\x16\x10\x41\x16\x8e\x39\x22\xae\x00\xa7\x2b\xe4\x78\x44\x32\x7e\xcb\xc8\x69\x60\x29\xcf\xe8\x86\x15\xfd\x12\xde\x1f\x06\x95\x42\xae\x98\x5e\xb2\x52\x7d\x2b\xdf\x33\x5d\xf0\xa4\x6f\xed\xbf\xc3\x49\xe3\xab\xce\x2e\xa0\xc8\xb7\xd2\x08\xc7\xe0\x75\x5d\xe1\x23\x71\x71\x2d\xcb\x30\x48\xdf\x05\x76\x1a\x5c\xaa\xc6\x77\x15\x4a\x21\x5f\xa6\x4a\x8d\x3f\x42\x0a\xa8\x58\x14\x29\xb5\xc4\xd8\x61\x2b\x19\xa0\x4d\xd6\xde\x75\xf4\x92\xc9\xb9\x5b\x94\xed\x9b\xcf\xd2\x23\x7c\xae\x81\xdd\x06\x2b\x32\x32\xc5\xa3\x2b\xdc\x56\xc0\x7f\x30\xe8\xb7\x00\xef\xc2\xc4\xb7\xe0\xd7\x02\x7b\xab\x37\x71\xe1\x7c\xc4\xbe\xee\xa7\xd9\xd2\xe3\x23\xb1\x77\xf6\xd8\x10\x57\xdd\xb1\xc1\xbf\x48\xe5\x75\x02\xf4\x3b\xbb\x3a\x41\xd5\xa3\x51\xd2\x64\x0f\xd8\x6e\xd3\x15\x13\xe3\x22\x05\x5a\x5d\xed\x8e\x3d\xee\xf6\xd8\x65\xf6\xd2\x73\x76\x36\x17\x2a\x3c\x2e\x19\xf1\xc9\x37\xf8\xd5\xab\xaf\x5a\xd4\xb7\x06\x61\xa7\xda\xe0\x04\x5d\x4e\x0f\x46\xd4\xe8\xfb\x15\xa1\x70\x01\x6d\x03\x95\x68\xb9\x41\xdf\xf3\x82\x7d\x5b\xd2\x22\x7d\xf0\x29\x34\x8c\x50\x9d\xc3\x1d\x37\x7a\x1d\x2d\xa2\x12\xa8\x83\xc3\x43\x4f\x22\xae\x12\xe2\xe1\x3c\xf0\x24\xe2\xce\x55\x3c\x9c\x27\x3f\x89\x82\xad\xe4\x9a\xb9\x0a\x18\xd8\x0b\xbe\x0b\xf8\xdf\xd7\x73\x98\x6c\xb1\xe5\x35\xb3\x11\xae\xae\x71\xbc\xad\xc8\xbf\x66\x4d\xa1\x5b\x33\xc6\x6a\x65\x55\x9c\xe4\x31\xb6\x49\x49\xa8\xd1\xb9\x52\x31\x98\x30\xeb\x05\x8c\xc0\xf7\xde\x94\x8f\x0b\x21\x44\x34\x4d\xeb\xeb\xaa\xf2\x8f\x5d\x89\xd8\xa0\x32\x8d\x2d\xd8\xc1\x68\x7c\xd0\x3b\x86\x6b\xb1\xfb\x75\x8b\xc9\x36\xb6\x26\x8e\x9d\x61\xef\x33\xb0\x05\x4f\x7a\xfb\xec\xaf\xb6\xdf\xa8\x65\x01\x98\xbf\x77\x82\x74\x1b\xb3\xc1\x6d\x6c\xa3\x2e\x55\x15\xea\x54\xb5\x33\x94\x45\xcd\x9d\x3e\x26\xef\xad\x0c\x2f\xa4\x18\xfd\x83\x15\x51\xc3\x12\x0f\xac\x8f\x81\x62\xa0\xea\x2e\xc7\xbd\x7d\xc3\x1e\x4e\x37\x37\xef\xfa\x83\xe8\xe6\xe6\x5d\x18\x2a\x37\xd2\x72\x94\xf1\x35\xf3\x11\xe6\xa0\x83\x22\xa9\x1e\xdd\x35\x74\x81\xb0\xf0\xb1\x50\xac\xb3\xa0\xfd\xb7\x61\x90\x64\xdf\x28\x8d\xab\xc8\x4b\x8f\x88\xcb\xf6\x55\x9d\xf6\x8f\xd0\x20\x4b\x1a\xb7\xf6\x3f\x34\x42\x03\xab\x4b\xb9\x60\x8c\x76\x85\xe0\xa1\xe0\xc6\x72\x50\xfd\xa0\x7c\xed\x9c\xb5\x61\xd2\x66\xe1\xdc\x88\x0b\x86\x21\x6e\xed\xd5\xfb\xab\x46\xd1\x64\x44\x5c\x5b\xaa\x8b\x89\x3a\x41\x33\x58\xb4\xec\x5c\x22\x85\xd2\x45\x19\x6f\x9e\xee\x68\xd7\xc8\xc2\xf4\x62\x72\xfa\xbe\x1e\xb2\x32\x82\xa1\xcd\xf7\x70\x96\xb5\x11\xdd\xeb\x0f\x01\x1d\x44\xed\x35\x19\x9c\x22\x4d\x6e\xab\x4e\x1a\x34\x75\xb5\xd3\x6c\xb4\x0b\x9e\xb4\x35\x85\x99\x7b\xb7\xa6\x05\x97\x71\x21\x30\xe8\xd7\x73\x55\x5f\xc6\x96\xc9\x09\xda\xe1\x57\xed\xda\xc2\x39\xe2\x98\x5f\x35\x9f\xb1\x92\x65\xa9\x62\x6d\x33\x3a\x32\xea\x57\x34\xa6\x6a\x93\x3e\xe9\xf0\x2b\x1e\x33\xe9\xf4\x78\xb5\x25\x09\x7e\x64\x16\x14\xfd\x3a\x16\xd1\xde\x96\xf8\x6e\x35\xf7\x77\x52\xe6\x13\xac\x8f\xda\xc7\x04\xf5\x3d\xca\x3c\x18\x05\x03\xce\xae\xb5\x01\x9e\x62\x60\x80\xa9\x98\xed\x91\x2b\xba\xda\x76\x7f\x32\x29\x73\x15\xb4\x83\x20\x17\x13\x2b\x4e\xd0\x82\xd9\x30\x7d\x73\x6a\x58\x54\xce\xd6\x07\x25\x90\x83\x68\x76\xd4\x18\x4b\x62\xeb\x09\x62\xfe\xb0\xaf\x52\x71\x7e\x79\x7a\x73\x78\x98\x6e\xa7\x59\x7e\x14\x19\x98\xb3\x7d\xbb\x06\x97\x28\x7d\x10\x95\xd0\xb8\x70\xd1\xa6\x54\x31\xec\xe7\x6b\x77\x68\xb7\x93\x48\xa1\xb9\xc0\x68\xaa\x99\x2d\x5a\x54\x2b\xb6\x1a\x1b\xf5\x21\x15\xff\x14\x4f\x59\x42\x8b\xd3\x24\x61\x19\xc3\xcc\xb4\xbe\x52\xf5\x75\xe3\xab\x5e\x0d\x67\xf7\x86\xdd\xac\x80\xd0\xbb\xa9\x1a\xd8\x81\x1f\xe3\xd1\x1a\x37\x44\x96\xf5\xa8\x0b\x57\xdf\xcd\xc7\xd8\x5b\x8e\x89\x13\x2a\xa4\xd8\xac\x64\xe9\xaa\xff\xba\xa0\xba\xa8\x03\x01\xa5\xf5\xb0\x11\x89\xe2\xff\x60\xb6\x06\x62\xbd\xad\xee\x98\xbc\x93\x0b\x45\xee\x68\x21\xb8\x58\x18\xa1\x41\x97\x85\x88\xdb\xbf\x67\x90\x26\x67\xeb\xdd\x3b\x17\x60\x90\xc1\x08\x75\x69\x68\xad\xd3\xb4\xaf\xa6\xb3\x2e\x33\xc1\x0a\x8a\x05\x6c\x62\x83\x2f\xa9\x42\x11\x3b\xe5\x2a\x91\x6b\x56\x54\xe1\x43\xbb\x9d\xc7\xb1\xd8\x71\xa9\x3a\x31\xf2\x41\x5a\x46\xfd\xfc\x2e\x04\xd7\x9c\x66\x4d\x35\x02\xdb\x0e\x31\x7c\xb5\x5e\x91\xdf\x35\x3d\x48\xcd\x4f\x71\x6d\x63\x2e\x3d\x17\x5f\xd1\x5b\x86\x1e\x3f\x33\xf0\x56\x28\xdc\xde\x22\xc6\xf6\xf6\x7a\xca\x74\xdb\x5b\xb3\x52\x5d\x6d\x5b\x3b\x02\x7d\xb3\xc1\x1e\xf7\x14\x91\x51\xbf\x7c\xf3\xf9\x83\x36\x85\x69\x3e\x82\x66\xe7\x3d\xeb\x39\x37\x75\x16\xbf\xcf\x68\x0b\x09\xea\x7e\xb7\x4f\x16\x26\xf4\xeb\xfc\xed\xa5\x61\xc2\xfa\x1f\x52\x3e\x01\x5e\xfc\xee\xf2\x62\xdf\xf7\xbc\xb5\xa3\x2f\x95\xfc\x7e\xeb\x85\xdd\x4a\xf0\xfe\x89\x80\x8f\x3f\x4b\x9f\x31\xbf\xf6\xbf\x48\xa5\xdf\x8a\xa4\xd8\xe4\xfb\x70\xaf\xef\x5b\x5f\x6f\xd9\x57\x94\x7a\x4a\xa5\x8d\xae\x68\x93\xdd\xdd\x60\x21\x08\x9e\x6e\xbf\x3e\xc5\xe3\x92\xae\xba\xb5\x94\xef\xa3\xaf\x6d\x89\xc5\xe0\xfc\xb3\x6e\xf7\x86\xa0\x65\xf3\x58\x70\xb6\x6e\xb0\x70\x5f\x77\x8b\xb1\x75\x7f\xed\x49\x3d\xfc\xd6\xde\x71\xa5\x99\xe1\x84\xbd\xec\xc8\xdf\x47\x5f\xdb\xea\xbd\xe2\x7e\x42\xa3\x72\x93\x6f\x79\xb6\xa9\x36\x57\x4b\xd9\xfb\xf4\xcb\xd7\xfb\xdf\x63\xbf\x9f\x3e\xb4\xe8\xfb\xe0\xe1\xfa\xda\xcd\x17\x96\x1c\xc5\x20\x1f\xdb\xc7\x35\x63\xad\x44\xe9\x31\x9b\xb9\x42\x09\xf5\xaa\xcc\xd8\xa4\xe0\xd2\xc8\x15\xfd\x37\x17\x79\xb9\xbe\xd9\xdc\x7d\xdb\x58\x8a\xae\xc2\xcf\x2d\x90\x38\xd1\xb9\x28\xeb\xe1\x9c\xf1\x4e\x1a\xad\x9b\xbd\x4f\x7b\x37\xbf\x8a\x14\x27\xfa\xeb\xf9\xa4\x2e\xca\x9a\xb5\xaa\x92\x6b\xdb\xda\x12\x4a\x27\xc7\x11\xd0\x97\xa2\x4d\x99\xd8\xec\x86\xdc\x3e\x48\x90\xba\x4f\xf3\x7d\x2d\x47\x7f\x3d\x9f\x3c\x6d\x3e\x3f\xd4\x69\x7a\x50\x2a\xbf\x35\x0b\x45\xd9\xee\x6e\x13\x4f\x59\xd8\xce\xb5\x58\xd6\x1d\x6c\x0a\x71\x0b\xd2\x5f\xcf\xa3\x49\x3e\xbb\x09\xff\xfb\xdb\x8f\xe2\x9a\xf2\xee\xb7\x20\xbc\xa7\x61\x2c\x88\xd2\xb2\xa0\x0b\xe6\xbe\x42\x13\x22\x9c\x96\xab\xe0\x6c\xa8\xb6\x33\x2e\xdc\x72\x91\x9e\x90\xe9\x81\x2b\x85\x9f\x67\x65\x41\xb3\xea\x1b\x5f\x88\x5e\x9d\x90\xbf\xfd\x60\xbe\x01\xfb\x6c\xfa\x1d\x4a\xf2\xf6\xdb\xa9\x18\x8d\x46\x53\x41\x73\x6e\xbf\x3f\x21\x34\xe7\xec\x5e\x33\x81\x95\x7a\x6c\x1f\xff\xf5\xa7\x53\x81\x33\x9e\x95\x4a\xcb\xd5\x15\xc3\xb0\xab\x73\x36\xe7\x82\x63\x2d\x93\x5a\xe3\x7d\xc3\x4d\x4e\x6c\xd4\xa1\x0d\xa8\x01\x07\x3e\x67\x6a\x9c\x14\xe9\x78\x47\x0b\x9a\x0a\xdf\x89\x7f\x51\xc8\x32\x3f\x21\x0d\x8f\xe1\xd8\x75\x30\x7c\x0b\xf3\x5c\xe2\x3c\x18\xaf\x80\x3f\x1b\xd2\xff\x9f\x4d\x8f\xbc\xf3\xa5\x8b\x1c\xf0\xa2\xeb\xb5\xa7\xc3\x05\xc4\xfa\xc5\x1e\x82\xc9\x54\x22\xcd\x19\x9f\xa1\xba\x67\xbe\x59\x3b\x50\x9b\x3f\x46\x16\x24\x06\x92\x30\x5e\xb2\x64\x2b\xea\x2f\xa3\xcc\x99\x38\x9d\x5c\x7c\xf7\xd9\x75\xfd\xfb\x46\xb3\x52\x70\x64\x75\x04\xdc\x6a\x7b\x3f\xb9\xb0\x8f\xd5\x0a\xf4\xdb\xa5\xb1\xd4\xae\x03\x8d\x61\xe0\x72\xca\x0b\xa6\xcc\xf5\x8b\x15\xa8\x91\x73\x42\x85\x45\x63\x73\xb3\x8c\xfe\xe9\x03\x0e\x13\x29\xd6\xac\xc0\x92\x68\x0b\xc1\xff\xe1\x07\xf7\xb1\xc2\x19\xd5\x6c\x37\x7a\xc6\x15\xae\x0a\x4b\xe6\xac\xe8\xc6\xda\x66\x48\x29\x82\x01\x31\x57\x7f\x4c\xde\x4b\x88\xf6\x99\xcb\x13\xb2\xd4\x3a\x57\x27\xc7\xc7\x0b\xae\x1d\xb6\xda\x28\x14\xbd\x39\x06\xf6\xc2\x67\xa5\x96\x85\x3a\x4e\xd9\x9a\x65\xc7\x8a\x2f\x46\xb4\x48\x96\x5c\xb3\x44\x97\x05\x3b\xa6\x39\x1f\xc1\xda\x05\x76\x0a\x5f\xa5\x9f\x14\x16\xbd\xd5\x61\xec\x72\xef\x5e\x7b\xc0\xc2\xb6\x63\x30\x38\x68\xdb\x7c\xc1\xcb\x36\x14\xc8\x43\xdb\x55\xae\xb9\x7a\x7b\x7d\x43\xdc\xec\xd1\xbc\x74\x04\x7e\xf5\xa6\xaa\xce\xc1\x00\x8d\x8b\x39\xb3\x99\x88\xbe\x95\x67\xd5\x18\x04\x7a\xa7\x72\xb6\x5b\x84\x49\x95\xb3\x15\xd8\xa8\xb1\xaf\x28\x06\x71\x9d\x61\x43\xe4\x19\xb3\xbd\x00\x53\x88\xeb\x3a\xa3\x2b\x96\x9d\x51\xc5\x9e\xfd\x14\x0c\xb4\xd5\xc8\xc0\xb6\xef\x39\xd4\x48\xd0\xf6\xe3\xbb\xd6\x4b\x4f\x71\xaa\x4f\x8b\x11\x97\xe6\x79\xb6\xf9\x20\xbe\xc1\xa6\xb1\x5d\x6c\xf4\xb4\xf6\x34\x1a\x9d\x5d\x3f\x45\x18\x09\x8d\xcf\x55\x1b\x15\xee\x7a\x7a\xc4\x38\x13\xca\x11\x30\x92\xcb\xc6\xdb\x53\x10\x48\xe5\xa5\xd4\x37\x46\xf8\xe8\x5a\xf9\xb9\x7f\x32\x58\xb5\x53\x81\x9c\x4d\x14\xc2\xdd\xd0\x15\xea\xf7\xd1\x60\xe5\x0c\xb6\xe6\x48\xc5\x42\x56\x0d\xa9\xac\x2b\x89\x80\xbd\xe0\x50\x85\x5d\x91\x41\x56\xe2\x62\x11\xb5\x9f\x82\xc5\x94\x2a\xeb\x29\x48\x5c\x57\x0a\x6c\xdb\x7b\x53\xb8\xfa\x74\x31\x08\x13\x1a\xaf\x93\x8a\x19\x69\xa9\xb3\xfc\x50\xb1\x09\x96\x16\x5d\x18\x56\xdd\xb5\x30\xb1\x16\xda\x46\xbb\x5d\x6d\x7e\xa8\x27\xc0\xa0\xc0\xb1\xf5\x89\xcf\x18\xb1\xc2\xe1\xbe\x67\x8b\x2d\x61\xba\x9b\x96\x30\x0c\x2b\xc7\x9e\x9b\xd0\x9b\x02\x7b\xc9\x58\x51\x93\xbc\xa5\xc9\x12\x13\x24\x6c\x2d\x8a\xb8\x48\xe7\xde\xc6\x7d\xdb\xc8\xc7\xa4\xe0\x9a\x15\x9c\x62\x5d\xbc\x20\x53\x04\x0a\x07\x5a\xb0\x59\xd4\xdf\xab\xf3\x44\x6d\x0f\xd3\x83\x53\x62\xf4\x07\xa3\x60\xd3\x5c\x41\x60\xbc\xaa\x56\x14\x5b\x4a\x54\x7a\x24\xbe\xed\x12\xf6\xed\xc3\x52\x14\xb2\x18\xcd\xa8\x02\xf0\x58\x9b\xe9\xc4\x9e\x97\x08\xbf\xc3\xe6\x60\x51\xd8\x80\x0c\xc9\x0a\x26\x12\x87\x79\xa3\xa0\xa4\xae\x2c\x35\x26\x77\xbb\x6c\x61\xdb\x3c\x4e\x16\xd0\x50\xda\x35\x45\x6e\x58\xb0\x48\x7d\xef\x9f\x00\xf0\x90\x6d\x38\x9d\x0a\x3c\xbc\x5c\x62\x96\xcc\x36\x24\x1a\x5c\xb0\xe6\x30\x05\x5b\xc0\xe2\xac\x48\x70\x64\x13\x05\x5d\xe2\xc8\x2f\x3f\xfd\x7c\x29\xf5\x2f\x3f\xfd\x3c\x26\xa7\x59\x66\x53\x7e\xc2\xb1\xe3\xe3\xda\xa6\x94\xb6\xfb\x9e\x2f\x49\x4d\x35\x57\x50\x72\x18\x73\xda\xed\x46\xb4\xc4\x31\xc7\xe4\xd4\x56\x98\x6c\x80\x2d\xa0\x26\x15\x0e\x3d\x6d\x76\x8c\xdd\xb2\x01\x10\x6c\xc6\xfc\x11\x18\xac\x29\x0e\xde\x0c\x55\x80\x7d\x7c\x89\x8e\x82\x54\x4b\x6c\x68\x3d\xd5\x55\x4d\x9b\x36\x55\x5e\xc1\x4f\x77\x41\xed\x94\x29\x6d\xab\x84\x37\x8e\x52\x27\xe3\xd5\x0b\xfe\x3a\x47\x8e\xcf\xba\xc9\xcc\xb5\x6c\x1a\x16\xd4\xee\x60\x7e\x62\x78\xb4\x8e\x87\xe2\xf6\x02\x06\x21\x56\x88\xcf\x69\xc2\xae\xed\xd5\x6b\x79\x76\x87\x08\x5c\x6e\xbf\x6c\x93\x31\x64\x6e\xdd\xc7\x73\xce\xb2\xb4\x31\x47\xac\xfa\x78\xc0\x50\x4f\x02\x82\x64\x1e\x9b\x30\x5d\xeb\x59\x27\x0b\xbe\x30\x70\x68\xba\xff\xee\x03\xd2\xd7\x0b\x83\x42\xac\x58\xe1\x0b\x84\xea\x97\x81\x07\x3f\xe8\xdb\x8a\x73\xc7\x59\x47\x04\x64\x55\x2f\x2c\xcb\x86\x6d\xba\x03\x20\xf2\x0e\x6c\xda\x07\x45\x1a\x89\x6a\xb8\x07\x81\xe1\x4f\xae\xa5\xaa\xab\x53\x42\x57\xcc\xe6\x7c\xe9\x65\x5c\x25\xaf\x3e\x90\xdf\x1d\x0b\x5a\x70\x2e\xd9\x40\x7c\x98\x85\xf4\xb7\x03\xa8\x6e\xdb\x0e\x5e\xa1\xf8\x81\x54\xf0\x1b\x59\x90\x9a\x92\x77\xd4\xc8\x01\xdc\x07\x2b\x86\x47\x50\x6a\x65\xf3\xd3\x5d\x10\x6a\x88\x6c\x19\x5f\xf1\xce\x03\x03\x77\x42\x86\x0e\xe6\x46\x98\xf0\x00\xbe\xfe\x84\x3b\xce\x0c\x2f\x72\x6d\x9f\x8d\xdb\x3f\x44\x7d\xf5\xc5\xcb\x68\xe9\xdb\xea\xf3\xeb\x00\xa0\xa6\x86\x5f\x1b\xae\x5d\x10\xb4\xbe\x23\x3c\x60\x1b\xed\x83\x9a\x3d\x46\xb4\xf9\x23\x28\xfd\xd3\x7e\x96\x1d\xab\x0d\xb7\x18\x54\x27\x88\x15\xbc\x4d\x0a\xa9\x40\xe2\xeb\x7b\x65\x1b\x18\x87\x9f\xbb\x93\x01\x10\x4c\x12\x6a\xa3\xa9\xdb\x69\x57\xcc\x76\x7a\x89\x12\x46\xa3\x66\xea\x82\x27\xba\xb1\x2d\x7c\xf5\x71\x2c\xd0\xd7\x6d\xd8\x60\x70\x7c\x94\x2e\x7a\xd2\xd7\x01\xed\x3a\x5d\x0c\x2b\xd5\x43\xf2\x9e\xf0\x35\xd6\xb0\xe6\x84\x2a\x67\x66\xfb\x8d\x5c\x87\xb4\x4a\x91\xc1\xbc\xbd\x20\xdd\x5a\xf7\xa3\xfa\x08\xa9\x2f\xf7\x3b\x13\x7c\xc1\x67\x5c\xd5\x85\x2f\xb7\xe3\xcb\x86\x6e\x91\xd5\x07\xce\xf1\x37\x07\x8b\xa6\xb6\x44\xd5\x67\x1b\x18\xbe\x1d\x51\x0b\x34\x26\x4d\x91\xa8\xd5\x07\xc1\x41\xae\xa1\x02\x3f\x60\x29\x74\x4e\x75\xbd\x3c\x14\x86\x15\xdb\x86\x37\x50\x90\x6b\xd3\xdc\xee\xa8\xfa\x6c\xb5\xc9\xd0\xf5\x8a\x80\xbe\xf5\x0a\x4a\x54\x96\x90\x1b\xf5\xa4\x93\x2a\x02\x0f\xb3\x71\x42\x37\x67\x13\xd7\xdc\xe2\xe3\xf9\xa4\xa1\x09\x86\xfb\xf4\x39\xd5\xe6\x12\x3b\xd5\xa7\x47\xb1\x9d\xdd\x87\xbb\x11\xa5\xbb\x00\x4f\xf5\xd9\xbf\x14\x4f\xf5\xe9\x8b\x90\xfb\x0b\x97\x97\xd5\x4b\x1d\x68\xd9\x4f\xbe\xb2\x98\x09\x5e\x39\x3f\x30\x52\x61\xf4\x0c\xcd\x74\xc6\x34\xf7\x45\x77\x70\xae\xf6\x31\xbd\xb4\xd4\x8a\x2a\xfd\xce\x2c\xdf\xef\xca\x4e\x0f\xaa\x06\x62\x1d\x6c\xa5\x9b\xd9\xf6\x60\x2b\xe0\x11\x72\x39\xde\x2f\x02\x25\x24\x92\x07\xbd\xbd\xad\xa0\x76\x11\x53\xc4\x56\x78\x0c\x4b\x61\x1d\x3b\x73\xf2\x8d\xaf\xdc\xd6\x3e\x6a\xad\x6d\x9a\xbd\x3a\xe0\x77\x42\x28\x2b\x07\x01\x6b\x9b\xb5\xd3\x74\xc8\xca\x73\x57\xff\xcb\x08\x70\x7d\x29\x58\x27\x05\xb0\x09\xd5\xfb\x50\xb0\x8e\xbd\x57\xe4\xad\x4e\xc1\x7e\xf9\xe9\xe7\x9b\xb3\xc9\x2f\x3f\xfd\x6c\x00\xf1\xcb\x4f\x3f\x7f\x3c\x37\x7f\x74\xc8\x3b\x03\x1d\x83\x4f\x2f\x3a\xa6\x1e\xa0\x21\x77\x2b\xc6\xad\x36\xbe\xea\x13\x55\x8c\xc9\x0b\xc5\x98\x33\x8e\x01\x19\xc3\x9a\xd6\x6a\x23\x34\xbd\x8f\x55\x91\x08\x3f\xd3\x69\xab\x5e\x6d\xe5\xc7\x26\xbd\xb9\x7d\x6c\x67\x13\x0b\xd4\x6a\x59\xec\xaa\xcb\xe6\xaa\x5d\x4a\x8d\x7e\xe8\x93\x86\x22\xde\x01\x10\x6c\x60\xba\x73\x64\x75\x70\x04\x04\x4f\xc0\x49\xda\x47\x9f\xb1\x4c\xde\xbd\x3c\xaa\x2f\x39\x00\x36\x42\xd5\x35\x97\x77\x8d\x55\x3a\x14\x0f\x30\x84\x81\x81\xf3\x66\xc9\x88\xbe\x93\x80\x6b\x10\xf5\xee\x7e\x43\xe2\x60\x18\xd0\xa6\xaa\x23\xde\x71\x76\x1f\x84\xdb\xbd\xed\x7e\x1d\x18\x5e\x59\xa0\x21\xd9\xd6\x1c\x60\x56\xb0\xcf\x77\xf3\x83\xbb\xa5\xcc\xec\x21\x9d\xc0\x11\x4d\xa7\x15\x33\xfe\xb3\xa1\x2d\x7f\x58\x52\xf5\x62\xb5\xf9\x31\xa3\x33\x96\xbd\x34\x34\xc7\x92\xf7\xae\xcb\x1c\x44\x72\x9b\x5d\x03\x8a\xe1\xea\x30\x90\x60\x64\x03\x51\x32\x96\x9a\x59\x7b\x62\x5b\x18\x19\xee\xdb\x32\xc3\xda\xcc\x62\xdd\x3a\xc1\x78\x6a\xb7\xd3\x1b\x29\x60\xbb\x4d\xbb\xdd\xdd\x90\x59\x41\x53\x4d\xbf\xea\xd3\xbe\x57\xbf\x9d\xf6\xad\x74\x5d\x6e\x01\x18\xc7\xe6\x73\x96\xd8\x8c\x5e\x6b\x3e\xc8\x80\xa4\xda\xe4\xbc\x5a\x67\xfc\x1e\x4b\x17\x52\x8c\x5c\x16\x06\xfa\x66\x31\xcb\xc6\xda\x42\xe6\xb2\x58\xb1\xd0\x30\x01\xa1\xd6\xcd\x7d\xf7\xab\x0f\xa0\xc2\x2e\x60\xaa\xee\x4e\x4f\xa1\xb8\xdb\xbc\x84\xd3\x24\x91\xa5\xd8\x47\xde\xba\xae\xbf\xf8\xab\xc9\x5d\x5b\xe4\xb8\x7d\xcc\x88\x99\x93\x92\x5c\xa6\xbe\x28\x18\x08\x71\x9e\x34\x5b\x60\x74\x90\x5c\xdc\x71\x2b\xb6\xf5\x32\x34\x13\x52\x8f\x18\x69\xfe\xd4\xf5\x00\xa8\x7e\xf9\x68\x70\x93\x87\x80\xbc\x7b\xc8\x26\xeb\x72\x04\xec\xbd\xa0\x4d\x2a\x88\x1b\x2a\xac\x6c\x38\x28\xf7\xe6\x49\x23\xf4\x76\xdc\xfc\x7e\x42\x1d\xd9\xc3\xec\x40\xfa\x4a\x48\xa4\xaf\x94\x44\x76\xef\x57\xa7\x9c\xf4\xef\x7b\xd2\x35\xfd\xa8\xb2\xb4\x21\xd5\x77\xf0\x1c\x93\x8b\x0e\x6d\xc3\x7c\x2a\xd7\x03\x78\x14\xae\x43\x4f\x42\xa5\x7f\x68\xdb\x48\xa3\xd1\x03\x5f\xff\x9c\x5e\x9e\x1f\x36\x44\x8e\x87\x9f\xfd\xac\x58\x4d\xdd\x5b\xdd\xc7\x15\xa2\xd9\x4f\xda\xc6\x77\x1e\x2d\x6d\xe3\x9b\xe8\x12\xf6\xf4\x32\xe8\x48\xe6\x26\x82\x1a\xde\x55\x93\xe8\x1e\xde\x98\x56\x61\x7b\x1b\xbd\xfa\x4a\xdb\x11\x17\x96\x83\xdf\x0b\xf5\x72\x5b\xec\xb6\xdd\xd0\x44\x9b\xa7\x91\x80\x7d\xec\x18\x1b\x40\xd3\x64\xe9\x57\x72\xa8\x08\x66\xde\x80\x96\xec\xe0\x9d\xf8\x10\x25\x0f\x8c\x2e\x58\xd4\xbd\x59\xe6\xe6\x38\x64\x3d\x0a\x45\xf6\xa3\x5d\x2f\x42\x07\x98\x2f\x99\x11\x7b\x9d\x81\x57\x16\xdb\xbc\x1b\x97\x3e\xb1\xb9\x64\xa9\xb7\x7e\x76\x78\x28\x0d\x3e\x99\x03\x0c\xf7\x88\xb6\x22\x0f\x05\x29\x5c\xe8\x80\x0d\xe5\x68\x17\x59\xf6\x62\x9b\xfb\x73\xcd\x58\x5e\x01\xb8\xe1\x2b\x3c\xee\xbe\xfa\x76\x6f\x81\xdf\xfd\x89\x88\x40\xe0\x93\x79\x80\x40\x60\x5e\x8b\xec\x0f\xbf\x6f\x2e\xcc\x5a\xff\x20\x95\xb5\x3b\x84\x9b\x9c\xb1\xb9\x46\xdf\x55\x15\xb4\x84\xb7\xa7\x87\x61\x86\x84\x17\xd1\xc7\x18\x1d\xaa\x6a\x65\xbf\x2a\x05\xed\x7e\x66\xa9\x75\xde\x2f\x86\xe1\x2f\x37\x37\x93\xca\x47\xdf\x18\xb8\x60\xb0\xc4\x3c\xda\xbc\x74\x17\xd7\xf8\xb8\x98\x85\x15\xd3\x4b\x99\xee\xc1\x19\xde\xe3\x0b\x4f\x2b\xb5\xe3\x96\x91\xa8\xe3\xbe\x83\xb0\x4d\x33\x26\x76\xa2\x31\xf8\xd8\x3d\x28\xe4\xc6\xa4\x38\x8a\x5b\xed\x0b\x36\x5e\x8c\xc9\xb7\x6f\x6f\x8e\xc8\xe4\xe3\xcd\x11\x61\x3a\x19\xbf\x24\xef\x6d\x6f\xd8\x0e\xfb\x8b\x1d\xc3\xf0\xfd\x0f\x57\x87\x46\x0d\x5b\x40\xe4\xe0\x6f\xcb\x57\x95\x53\xbd\xdc\xe3\x1c\x0f\x27\xe6\xf9\xe7\x38\xc6\xae\x13\xec\xa6\x28\xe1\x09\xc2\x32\xc7\xfe\xa8\x70\x9b\xee\x2c\xfa\x1e\x06\x21\x6c\xbc\x38\x21\x23\xc2\xee\x69\xa2\x4f\xc8\xf1\x5c\x4a\xe8\x8b\x0f\xd5\x02\xc9\xf1\x8c\x16\xe4\xf2\xc3\xcd\xdb\x13\x0c\x39\x63\x42\x17\x1b\xb2\xea\x12\xcf\x3f\x5c\xbe\xfb\xdf\x96\x72\x6e\x08\xe3\xd8\x0e\x87\x4c\x0f\x60\x12\xf4\x7f\x99\x3f\x71\x96\xe9\x81\x0b\x08\x6b\xe8\x23\x50\x7d\xd6\x34\xe3\x29\xf5\x46\x3e\x6c\xe6\x63\xc4\x27\xae\x63\xd5\x2b\xaa\x4f\x1f\x9c\xab\x23\x81\x01\x31\xf4\x0d\xa8\x55\xac\x05\xc0\xbb\xee\x01\xfd\x78\xd5\x85\x86\x58\xed\x19\x73\x80\xb0\xf6\xc3\xb9\x2c\x56\x27\x0e\xec\xd3\xf2\xd5\xab\xcf\x12\x33\x30\xfc\x8b\x9d\xb8\x5a\x43\x7d\x0c\x5e\x88\x6a\xb0\x2a\x18\x2e\x83\x96\xf8\xee\x08\xab\xa1\x47\x16\xde\x8f\x9a\x01\xc7\xe8\x08\x2f\xe9\x2d\x74\x10\x0b\x80\xa7\x55\x23\xf3\xa6\x5a\x97\x0f\x1f\xb4\x9f\x3a\xd1\x8b\x20\x75\x0f\xc5\x93\x55\x4f\x9e\x79\x71\xf6\x7e\xd2\x37\xea\x03\x88\x51\xf3\xda\x43\x2a\x45\x1d\xd6\x27\xb0\x5a\x2c\x6d\x20\x53\xa0\x51\x30\xa5\xef\x12\xd3\xd8\x32\x1f\x3f\x61\x83\xac\x9a\x4c\x6b\x3b\x6c\x7a\x9f\x14\x2e\x9a\x07\x15\x35\xcc\x3c\x6d\xa2\x2d\xf8\xd0\xcd\x43\xeb\x37\x2d\x6e\xf4\x5e\x98\x68\xb6\xb6\x07\x9f\x07\xc9\x44\x8a\x10\x4a\x00\x94\x04\xaa\xb6\xee\xa3\xac\x41\xfd\x43\x03\x60\xcc\x10\x81\xb0\x54\xa8\x4b\x16\xc2\xaa\x2a\x49\x46\x89\x66\xc9\x52\xf0\x84\x76\x44\x22\x81\x59\x14\xcd\xfe\x7c\x95\x4b\x55\x05\xcf\x61\x8b\xa8\x43\x55\x15\x9d\x9e\xf3\x82\xdd\xd1\x2c\x5e\x3e\xb7\xfa\x20\xb5\xb0\x46\x59\x2c\x5d\x2d\x09\x13\x73\x89\xb9\x2b\x36\x2c\xaf\xfb\x6a\x74\xfa\xee\xe0\xb1\xc7\x1f\x86\x19\x66\x4c\xc2\x72\x19\x5d\xae\x2f\xdf\x8b\xe0\x4b\x8c\xeb\x86\x1d\xc2\x58\x6f\x93\xa5\x24\x57\xc8\xb4\xc9\x0b\x3e\x66\x63\x92\x73\xb1\x50\xed\xbe\xaf\x5e\xfb\xed\x41\x0c\xf2\x78\xea\x57\x03\x40\x2e\x26\x2e\x05\xec\xd1\xc1\x60\x35\xe3\x16\xca\xe3\x21\x94\x27\xce\x23\xd6\x08\x85\x1e\x10\x68\x48\xe2\x69\xd8\x9c\x6b\x2c\x10\x84\xf2\x56\x55\xa4\x82\xba\x5a\xbe\x43\x5b\xfb\xe6\x1e\x45\x34\xc0\x18\x81\x15\x06\x5b\xd1\xb5\x5a\xe1\xa4\x2f\x57\xec\xcb\x96\xea\x39\x48\xd5\x7a\x6c\xf2\x19\x7a\xeb\x6e\x99\x4d\xb1\x26\x39\xe5\x45\x73\x2f\x8d\xea\x63\x54\x56\xdb\x57\x31\x84\x29\x9d\xc9\x52\xf7\x60\x24\x4f\xa5\x39\x0a\xa9\xcd\xed\xeb\x87\x19\x97\xf8\x70\x47\x14\x0f\x3c\xd2\x1e\x4d\x37\x30\x8c\x81\x61\xfc\xbe\x19\x86\x90\xda\x89\x55\x8d\x60\x69\x8f\xb6\xe9\x19\x67\xd3\x2f\xc2\x66\x27\x08\xd4\x89\x7c\x1d\x71\xa0\xf6\xb1\x66\x80\x75\xdc\xe3\x1e\x21\x3d\x0f\x0b\xe6\xc9\x7f\xab\xc0\x9d\x1e\x84\xb0\x7d\x42\xde\xbf\xe3\xd8\x02\x0b\x6f\x28\x09\x38\x98\x8c\x01\xeb\x79\xd1\x66\x99\xb7\x11\xb9\xf6\x9c\xdf\x42\x7a\xd1\x15\xe4\xc6\xb9\x4c\x2f\x34\x9b\xbf\x98\xb1\x84\x96\xca\xc6\xc1\x75\xb8\x12\xfc\x12\x13\x56\xc0\x18\x3e\x96\xee\x25\x9a\xe2\x5d\x65\xda\x5a\x64\x60\x17\x8b\xc5\x90\xc1\x93\x2a\xea\xed\xa8\x8a\x79\x83\x7f\x9a\xdb\x1e\xfe\x7b\xfd\xc6\xfd\x75\x7d\x76\x03\xbf\x34\x0f\x8e\x23\xbd\xe3\x9a\xd9\x70\x3a\x68\x06\x04\x48\xe1\x1c\xb1\xd8\x30\xe5\xd3\xd1\xeb\x2f\xbe\x68\x31\xf3\x3f\x1f\xaa\xab\xa6\xc2\xa8\xf8\xa9\x3b\x57\x7d\x61\xd4\x1e\xd9\x67\x0d\x3d\xa7\xc2\x59\x87\xc4\xb3\x21\xf1\xac\x87\xab\x73\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\xac\x69\xc7\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\xb1\x5d\x0c\x74\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\xfa\x67\x48\x3c\x1b\x12\xcf\xfc\x67\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\xe8\xa0\x43\xe2\x59\x00\x8b\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\xea\x9f\x5f\x33\xf1\xac\xa5\x19\x26\x21\x23\x5b\xa1\x37\xf6\x5b\xfb\xc0\x2d\x72\x82\xbd\x1b\x0f\x28\xcc\x5d\xbf\x55\x43\x65\xee\xa1\x32\xf7\x50\x99\x7b\xa8\xcc\x1d\x5b\xde\x50\x99\x7b\x08\x90\x1a\x02\xa4\x86\x00\xa9\x21\x40\x6a\x08\x90\x1a\x02\xa4\xaa\xcf\x10\x20\x55\x7d\x86\x00\xa9\x21\x40\xea\x37\x15\x58\x30\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\xb5\xf3\xf0\xef\x8c\x8e\x0d\x01\x52\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\x15\x7c\x86\x00\xa9\x21\x40\xca\x7f\x86\x00\xa9\x21\x40\x6a\x08\x90\x8a\x0e\x3a\x04\x48\x05\xb0\x18\x02\xa4\x86\x00\xa9\x21\x40\xaa\xfe\x19\x2a\x73\x0f\x95\xb9\x87\xca\xdc\xb5\xcf\x50\x99\x7b\xa8\xcc\x3d\x54\xe6\xee\x35\xc3\x50\x99\x7b\xa8\xcc\x3d\x54\xe6\x1e\x0a\xad\x0e\x85\x56\x87\xca\xdc\x43\x65\xee\xa1\x32\x77\xf3\xfa\x87\xca\xdc\x03\xc3\x18\x18\xc6\x50\x99\x7b\xa8\xcc\x5d\xfb\x0c\x95\xb9\x87\xca\xdc\xf0\x19\x2a\x73\x37\x7c\x86\xca\xdc\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\xd5\x3e\x43\xe2\xd9\x90\x78\xf6\x9b\x4a\xd8\x18\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\xdb\x79\xf8\x77\x46\xc7\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x0b\x3e\x43\xe2\xd9\x90\x78\xe6\x3f\x43\xe2\xd9\x90\x78\x36\x24\x9e\x45\x07\x1d\x12\xcf\x02\x58\x0c\x89\x67\x43\xe2\xd9\x90\x78\x56\xff\xfc\x7b\x57\xe6\xee\x13\x6a\x10\x3f\xea\x76\xe9\x60\x8e\x91\x21\x95\xa6\x1e\x5b\x75\xa9\x50\x17\x41\xfa\x68\xd9\x36\x96\xb7\x96\xa2\xe6\x1f\x6c\xd8\x52\xfc\x54\xa0\x84\x78\xd7\x3e\x3e\x98\x87\x5a\x78\x52\x1d\x91\x25\x3e\x1d\xdd\x05\x86\x0c\x62\x9d\x67\x30\xfa\x98\x41\xc1\x43\x9a\x8e\xd1\x0e\xe4\x2d\xd8\x4b\xbe\x30\x6a\xf5\xf4\x00\xc6\x9b\x1e\x80\x08\x60\x9f\x8d\x0d\x4d\xe7\x46\x29\xd4\x20\x74\xc2\x00\x99\xbc\x63\x05\xae\x06\x43\x30\x83\xc5\x29\x22\x57\x5c\x6b\xc3\x4b\xb8\xcb\xde\x89\x0d\x9a\x48\xa1\x38\x16\x59\x47\x5b\xe5\xf4\x80\x8b\x39\x17\x5c\xb3\xe9\x01\x19\x11\x08\xfc\x0b\xb6\xe3\x38\x95\x5d\x27\xc9\xa8\xd2\x63\xe2\x77\x16\x05\x89\x59\x2b\x4f\x99\xd0\x3c\xa1\x99\x5d\xe0\xf6\x38\x5c\x10\x9a\xe5\x4b\x2a\xca\x15\x2b\x82\xe7\x00\x01\x62\xa3\x5a\xfe\x64\x4d\x6b\x18\xe9\x12\x75\x09\x21\x72\x88\x72\x35\xdb\xb5\x7a\xe6\x05\x3b\xbf\x3c\xbd\xe9\x42\x8f\x09\x3e\x46\xb8\x48\x79\x82\x16\x1d\x9f\x69\xb2\x74\x85\xd3\xeb\x54\x85\xcc\xd8\x5c\xc6\x45\x37\x2a\x36\xc4\x0c\xd7\xb8\xd6\x99\x94\x19\xdb\x0d\xc6\x68\x91\xdb\xb7\xa4\xac\x9b\xd0\x3e\x86\x58\x1d\x58\xc9\xdc\x45\xcb\x79\x72\x8b\xff\x91\x65\x94\x00\x99\xbd\x6d\xd9\x3c\x02\x4c\xb0\x79\x31\xc1\x19\x6a\xe9\x84\x8e\x66\xbb\x4d\xb5\x0e\x23\xbb\x65\x99\xbc\x43\xa8\xa1\xe9\xce\x1b\xb3\x50\xb2\xfe\x33\xd8\x76\xf0\x5e\xff\x98\x71\xcd\x0a\x9a\xfd\xf2\xd3\xcf\xb1\x71\xa7\x53\x32\xc2\xac\x30\x83\xd3\xab\x9c\x16\x5c\x49\x71\x44\x20\x35\xd4\x19\x65\xec\x80\x73\x29\xc9\x8c\x16\xbf\xfc\xf4\x73\x35\xd5\x1f\xf6\x9a\xaa\x9a\xcb\x08\x55\xec\xef\x25\xcd\xfe\x84\x41\xcc\x4e\x49\xe0\x73\xab\x1d\x70\x05\xcf\x38\x47\x87\x9f\x30\x4e\x3e\xfe\xcb\xac\x82\xba\x00\xbc\x99\xfb\x47\x02\xff\x18\x8f\xc7\xe4\x9f\xc1\xdc\xba\x28\x99\xcb\x42\xf2\x81\xbc\x38\xfa\x5f\x49\x3c\x71\xc0\xfa\x76\x1a\x27\xa9\xd6\x67\x16\xcd\x45\xeb\x82\x62\x13\xec\xb9\x46\x98\xa6\x69\x51\xb1\xf1\x83\x75\x2e\xa9\x7a\x01\x23\xfd\x68\x98\xc3\xcb\x6a\xd2\x1b\x3f\x27\xd5\xd5\x29\x04\x27\xf0\x07\x40\xc3\x28\x5b\xb5\x43\x78\xcb\xaf\x9c\xc3\xb3\x60\xfe\x83\xff\x97\xaf\x5e\xbd\x7e\x83\xff\xc5\x5f\xfc\x3b\xd7\x4b\x59\xe8\x51\xc2\x8b\xa4\xe4\x1a\x04\x57\xfb\x52\x6c\xa2\xff\xfe\xef\xd6\xb7\x25\xcc\xf8\x02\x9f\x79\xe9\x1f\xca\x69\xc1\xac\xd2\xb3\x28\x64\x99\x1b\xa5\x67\x3a\xd5\x34\xcb\x5e\x44\xdd\x7c\xb6\x23\x00\x06\xfb\x78\x8a\xe0\x46\x73\xb8\x4a\xb3\x2c\xb0\xe2\xc1\x15\x7c\x87\x38\x80\x6a\x6a\x03\x19\x33\x97\x17\x29\x89\x0b\x7a\x0d\x29\xb8\x3a\x22\xa3\x23\xf2\x23\xc0\xe1\x78\x4c\xae\xe1\x66\x11\x7b\xb3\x1a\x07\x5d\xc9\x82\x91\xdc\x68\x58\x4a\xf1\x35\x23\x33\x4c\xd7\xd8\x38\xdb\xb1\xb5\xe9\x13\xa6\x12\x9a\x33\x92\x2c\x69\x41\x13\xcd\x0a\xbb\xec\xb7\x18\xf5\x1e\x45\xfd\x17\xc0\x87\x56\x34\x65\xa3\x32\x47\xb4\x50\x2f\x3d\xc1\x81\x1c\x41\x24\x0f\x77\x6c\x66\x54\x33\x86\x04\x22\x3c\xef\x94\xe5\x99\xdc\xac\x98\x88\x92\x4b\x7c\x3b\x2f\x64\x6a\x11\x14\xc6\x34\x77\xc8\xd0\x9c\x42\x0a\xcd\x44\xea\x11\x9c\x26\xb7\xf8\xe7\x3f\xcd\xa3\xd5\xc8\xe4\x0f\x7f\x6e\xc0\xfb\x94\xad\xed\xc0\x7f\x20\x5b\xb8\x1f\x53\x63\xda\x84\xa2\xba\x95\xb5\xaf\xb4\x77\x1d\x7d\xeb\xd9\x44\x3e\xbb\x48\x67\x84\xd9\x57\xf0\x03\x2f\x4e\x0f\x5e\x09\xce\x9e\x8a\xb3\xdf\x2d\x21\xe3\xbc\xc6\xcb\x83\x10\x37\xab\x3e\x46\x69\x93\xb9\x6d\xd2\xf6\x3c\x39\xb2\x7f\xcd\xa4\x5e\x8e\x09\x46\x9d\x02\xaf\xb8\xcf\x8d\xa4\xa4\xb3\x4d\xa0\xa4\xbe\x80\x7e\x2d\xd1\x70\xe2\x80\x6e\x0a\x92\x14\xcc\x26\xb8\x28\x7b\xa7\x65\x41\x04\xcf\x5e\x1e\xb9\x24\x95\x94\xcd\x69\x99\x69\x45\x70\x5b\x06\x74\x45\xda\xa0\xab\x68\x49\xee\x0c\x85\xbc\xb0\x1a\xb1\x59\xc4\xdb\x40\x39\x06\x79\xd4\x51\x4d\xdf\xbc\x04\x43\x28\x9b\xf2\xdc\xed\xfc\x84\x2b\xbc\x59\x23\xf2\x37\x2b\xa2\x99\x05\xb9\x99\x7e\x38\xb2\x2c\xc1\x08\xbc\xe0\x93\xa9\x4d\x1c\xbd\xbd\x5c\x24\x59\x99\x3a\x87\x65\x42\x8d\x10\x0c\x03\x54\xc3\x10\x64\xc1\x42\xfa\x2d\xc1\x70\x2f\x9b\x22\x25\xeb\x8b\x7b\x1b\x5f\x5b\x0d\x22\x86\x1c\x55\xc3\x47\x95\x36\x78\xae\x71\xeb\x47\x9d\x13\xc6\x06\x05\x9b\x61\xd3\x31\x21\xe5\xfb\xde\x1a\x0c\x03\xb5\xa3\x60\xd4\xdc\xa6\xe4\x96\xd0\x05\xe5\x22\x8a\xb2\x88\x26\xe8\x68\xca\xee\xe8\x46\xed\xe4\x17\x60\xe4\xc7\x11\x11\x6c\xcd\x8a\x1a\xd6\x45\x8d\x27\x3d\xfb\x22\x55\x50\x20\x0c\x18\x86\xf7\x93\xe6\x52\x29\x3e\xcb\xdc\xc4\x55\x68\x9b\x79\xe1\x3a\x67\x49\x5c\x9d\xc6\x8d\x34\x07\xfb\xb5\x2b\xee\x8d\x3a\x71\x5c\x95\xde\xfd\x16\x18\x46\x1a\x86\x31\x28\x2d\x0b\xba\x60\xee\x2b\xa5\xa9\x2e\x11\x30\xe8\xd1\x63\xe9\x65\xe0\x6b\xb9\xe5\x22\x35\xd4\xc8\x81\x34\xcf\xca\x82\x66\xd5\x37\x89\x14\xe8\x58\x57\x27\xe4\x6f\x3f\x98\x6f\xcc\xf8\x2c\xb5\x89\xb2\xf6\xdb\xa9\x18\x8d\x46\xfe\x7f\x34\xe7\x2e\xed\x96\xd0\x9c\xb3\x7b\xcd\x04\x3c\x3c\xbe\xfd\x52\x8d\xb9\x3c\x5e\x7f\x3a\x15\x38\xf1\x59\xa9\xb4\x5c\x5d\x31\x74\x18\x9e\x33\x50\x00\x81\x68\xd7\x92\x5b\xc1\xcc\x45\x30\x4c\x5a\x60\x48\xb1\x62\x5a\x8d\x93\x22\x1d\xe7\x85\x34\xe0\x48\x80\x0e\x8d\x65\xb1\x98\x0a\x43\xe0\xe0\x3d\x90\x55\x4e\x48\xc3\x63\x75\xaf\x13\x2e\x68\x3b\xfa\x19\x7f\xcb\xb8\xd2\xff\x19\xfd\xfd\x1d\x57\xba\x0e\xb9\x9d\x55\xda\x63\xe1\x62\x51\x66\xb4\xd8\x7d\x00\x80\x9a\x48\x73\xb2\x67\x59\xa9\x34\x6a\x8b\x6b\x07\x60\xf3\xc7\xc8\x42\xc0\x00\x0e\x06\x4b\x96\x6c\x55\xe5\xfd\xca\x9c\x89\xd3\xc9\xc5\x77\x9f\x5d\xd7\xbf\xdf\xc2\xfd\x9d\xc8\xee\x5a\x6e\x05\x44\x09\xd0\x62\xc6\x75\x41\x8b\x0d\xb9\x98\x10\x55\xce\x46\x6e\x99\xc7\x67\x17\xe7\x57\x35\xc2\x83\xf6\x89\xa5\x21\x55\x28\xd3\x80\x6e\x0a\x8a\x15\xd2\x22\x2d\x31\xb5\xcf\x86\x64\xac\xc8\x9a\xd3\x20\x30\x0e\xc3\x1e\xf0\xd5\x70\x5c\x39\xdf\x5d\xa8\xf3\x9f\x7b\x63\x4c\x78\xd7\x1a\x8c\xa5\x01\x16\xd6\xaf\x56\xbd\x56\x89\x81\x9b\x8d\x11\xc1\x7c\x0a\xa4\x06\x16\xfc\x2c\xb5\xb0\x46\x72\x00\xc4\xcd\x72\x26\x1a\xb3\x82\x19\x10\x0a\x7b\x41\xc7\x20\xb7\xb0\x42\x39\x8d\x35\x91\x62\xcd\x0a\x4d\x0a\x96\xc8\x85\xe0\xff\xf0\x83\x2b\x17\xb5\x02\x5d\xda\x76\x64\x3c\x2e\x34\x2b\x8c\x84\x03\x94\x09\x6d\xf4\x2b\xba\x21\x05\x33\xd3\x90\x52\x04\x03\xba\x78\xb9\xf7\x46\x9e\xe5\x62\x2e\x4f\xa0\x8a\x94\x3a\x39\x3e\x5e\x70\xed\x2e\x60\x22\x57\xab\x52\x70\xbd\x39\x06\x7f\x3a\x9f\x95\xe6\x48\x8e\x53\xb6\x66\xd9\xb1\xe2\x8b\x11\x2d\x92\x25\xd7\x2c\xd1\x65\xc1\x8e\x69\xce\x47\xb0\x76\x01\x84\x60\xbc\x4a\x3f\x29\xec\x8d\x55\x87\x31\xb2\xb5\x4b\xed\xe0\x72\xb5\x1d\x83\xb9\x5d\x36\xf5\x1a\x05\x76\x94\x3d\x3c\xb4\x1d\xff\xbd\x7a\x7b\x7d\x43\xdc\xec\xd1\x34\x75\x04\x7e\xf5\xa6\xaa\xce\xc1\x00\x8d\x8b\xb9\x13\xb2\xc0\x85\x11\xda\x1a\x90\xc3\x67\x3c\x22\x67\xab\x72\xb6\xe2\x5a\x05\xe5\x87\xe4\x98\x9c\x79\xdf\x46\x99\xa7\x54\xb3\x74\x4c\x2e\x04\x39\xa3\x2b\x96\x9d\x51\xc5\x9e\xfd\x14\x40\xd2\x1c\x19\xd8\xf6\x3d\x87\x86\x92\x01\x4d\x86\x5b\x4f\x48\x1b\x8e\x6d\xfb\xa2\x1a\x36\x59\xcf\x62\x73\x89\x8e\x55\x69\x01\x4a\xb6\xa9\x6b\xf5\x71\x07\xbb\xc5\x49\x5b\xdc\x21\x0d\xf9\x16\x3b\x0d\x1d\x5d\x48\xe8\xc5\x84\x38\x92\x86\x14\x6c\xc6\x32\x69\x70\x4b\x5a\x73\x10\x8b\x39\xd1\x9b\x85\x8b\xff\x49\xec\xfd\xb9\xf8\xfa\x52\xaa\x2a\xc4\xe9\x19\x78\x7a\x98\xbd\xb4\xcd\xcf\xc3\xdf\x76\x79\x79\x6d\x65\xdb\x7c\x3c\xfc\xf1\x39\x79\xf8\xc0\xdf\x06\xfe\x16\x1e\xc1\xc0\xdf\x7e\x35\xfe\x16\x52\x87\x7e\xbc\x6d\x97\xd6\x54\x9f\xfd\xb9\x1b\xbb\xcf\x21\x64\xe3\x62\xd2\xc7\xa0\x64\x4e\xda\xbe\x50\x4f\xd6\x7b\x71\x31\x59\x7f\x0e\xd7\xea\x62\xb2\x7e\xf3\xd2\xa9\xb6\x0e\x2d\xa2\x7a\xeb\x05\xd8\xc5\x2f\xcc\xd5\x9c\xd3\x84\x19\xa6\xf2\xcb\x4f\x3f\x6f\x79\x15\xbc\xf9\x07\x14\xf9\x4c\xca\x5b\x67\x7f\xe3\xee\xc5\xa8\xb1\xd5\xc5\xcd\x04\x29\x84\x17\x93\x5a\x24\x1b\x66\x3d\x83\xa7\xcb\x1a\x16\x80\x84\x50\x3d\x86\xa8\xf0\x28\x2f\x9e\x4e\x35\x58\x23\x4a\xb5\x13\x5e\xbe\x95\x4c\x0f\xd9\x8b\x3e\x22\x43\x16\xd6\x76\x16\x1b\x74\xbb\xc3\xf1\x74\x6a\xc6\xb3\xad\x8d\xfd\xfe\x2d\xe9\x53\xf5\x59\xb9\x88\xa7\xea\x7b\x75\x2b\x3c\xa5\x31\xa4\xcd\x1a\xa6\x52\x0b\xf9\xc5\x70\x83\xb7\x15\x22\xa0\xad\x21\x36\x2c\x57\x68\xd8\xc4\x02\x4e\x54\x93\xbc\x2c\x72\x69\xee\xe9\x8b\x8b\xb9\x8d\x31\x5a\xb2\xea\x68\xcc\x3c\x2e\x88\xb0\x3d\x52\xc9\x19\xf9\x24\xc3\xe3\xcf\x18\x2d\x84\x3f\x36\x7b\x82\xd5\xb8\x66\x01\xa5\x02\x13\x74\x63\x74\xc4\x74\xaa\xdd\x71\x8c\xa3\x66\xe4\x27\x97\xb9\x48\xb5\xc2\xcb\x78\xd8\xcc\xd6\x85\x7a\x8b\x35\x27\x7f\xf9\xe9\xe7\xff\x00\xeb\xb9\x75\x6a\x54\xe1\x32\xbe\x8a\xc7\x3b\x2e\xca\xfb\x76\x9c\xf7\x8e\x5b\x8f\xce\x7f\x02\xc4\x5b\xe5\x7a\x33\x26\x6e\x92\xd0\xd3\x8b\x6e\x4f\xae\x5a\x69\x8a\xf9\x2c\xe4\x9a\x15\x02\xdd\x29\x3e\x88\x4c\x1e\x55\x81\x63\xcb\x42\x96\x0b\x0c\x0e\x70\x76\x52\x2b\x04\xb7\xe7\xb3\xdb\x83\x05\x9c\x34\x0f\xfa\x6c\x7e\xe8\x75\x9d\x02\x41\x00\x6c\xfc\x13\x61\x66\xef\x78\xa5\x53\x83\x1e\x6b\xbc\x82\xf1\xea\x0e\x55\x40\xce\x1a\x9a\x8f\x6f\x2a\xd0\x1d\x91\xd0\xde\x2a\x15\x26\x02\x1c\x6b\x09\xe1\xe5\x66\x25\xce\x24\x11\xf7\xce\x67\x32\xa1\x99\xcf\x07\xb7\x36\xca\x8b\x39\xa9\x11\x32\x47\xc5\xfc\xc9\xf6\x02\x33\x5c\x20\x07\xeb\x5a\xb0\x1e\x6c\x1e\xe8\x88\xd9\xb9\x95\xb0\x00\x6a\x01\xe8\xa3\xc4\xc5\x21\x50\x75\x77\x3c\x9c\x6b\x2b\x06\xe4\x1b\x91\x3b\x43\xde\x6a\x3f\x34\xd0\x01\x34\x97\x8e\x6a\x47\x1f\x99\xcc\x27\xf0\x55\x96\x57\x73\xa3\xa3\x83\x8a\x90\x08\x41\xbd\xd9\x02\x22\x0d\x8e\x22\xab\xf2\x4b\x38\x22\x14\xa8\xc5\xae\xd0\x47\xac\x53\x38\xe4\x58\xbe\xb5\x78\x55\x8d\x0b\xf3\x90\x8c\xaa\x51\x60\x9d\x3a\x3b\x8b\x22\x2f\x54\x19\xa7\x2c\x54\x99\x83\x65\x7a\xf9\xea\x97\x9f\x7e\x7e\x69\x53\x68\xc0\x7b\xc7\x52\x62\x56\xfd\x27\xc2\x35\xe1\x4a\x1c\xea\xca\xe8\xdb\xcd\xbd\x09\x5e\xe2\xbc\x90\x46\x62\x09\x10\x00\x21\x1c\x50\x83\x3a\x0e\x56\x6b\x8e\xf2\x59\x97\xe7\x74\x82\x3b\x85\x94\x42\x90\x78\x30\xed\x10\xdd\x40\x46\xca\x5a\xe5\x19\x5b\x19\x4c\x43\x02\xef\x08\x46\xb8\x64\xf5\xa7\xf8\xc9\x71\xcd\x69\x96\x6d\xc8\xff\x6d\xe0\x9b\x17\x6c\x04\x41\x25\xde\xa5\x32\x31\x07\xc4\x6c\x45\x60\x4f\xea\x93\x72\xd5\xa4\x05\x98\x8f\x6b\xfa\x8e\x22\xbd\x6d\x2e\x2f\x45\xd4\x36\xdf\x46\xb0\x45\xbc\x1c\xdc\x8e\x02\x6f\x9e\xb3\x21\xef\x10\xd1\x33\xdf\x38\x26\x6f\x57\x0c\x0f\x70\xa3\x10\x8b\x28\xa8\xdb\x16\xd1\x94\x62\xbb\xe5\x3a\x30\x0c\xbe\x26\x01\x06\xa1\xaf\x78\x6f\x6d\xf6\xa7\x2b\x0f\x1c\x0d\xa3\x9d\x31\xb4\x8b\x32\x91\x60\xfc\x91\x17\x31\xec\x71\xdb\x08\xd1\x3d\x38\x62\x67\xbc\x68\x6b\x9c\x68\x77\x6c\xa1\xd9\x56\xc7\xeb\xad\xe9\x9d\xbf\xa5\xb2\x5f\xcf\x55\xf1\xa9\x23\x6a\x52\x34\x10\xeb\x11\x00\xb7\xe1\x97\x96\x3a\x6e\x0f\x8e\xb5\xcc\x51\x74\xed\x44\xf7\xd3\x2a\x8d\x1a\x2f\x1c\x07\x1e\x37\x0f\x24\x62\x1c\xc9\x2e\xa2\xb9\x3a\x66\x95\x62\x61\xd8\xac\xd7\x3a\xb0\x2a\xba\x5d\x4e\x10\xae\xe8\xd4\x00\x8c\xc3\x6b\x1a\x14\x73\x14\xf2\x9c\xd1\xc2\x47\xc0\x41\x0a\x0c\xf1\xeb\xaa\x9c\xc9\x6e\x64\x17\xc9\x58\xc9\xe8\xa3\xc6\x38\xbf\xad\x5b\x39\x58\x05\x7f\x65\xab\x20\xcf\xe9\x6a\x96\xc9\xe4\xf6\x39\x4c\x82\x17\x93\xd3\xf7\x5f\x9b\xc1\xb7\xed\x81\xfe\x87\x5d\x63\x60\xb5\xa0\x6d\x4b\xa0\xff\x25\x6e\x06\xfc\x84\x5c\x51\x91\x40\xf9\x2e\x27\x22\x24\x4b\x2a\x16\x70\x76\xa0\x49\x17\x6b\xf6\x51\xdc\x0a\x79\x27\xbe\x31\xe2\xb4\x3a\x21\x73\x9a\x29\x36\xd8\x10\x07\x1b\xe2\x60\x43\xfc\x9d\xdb\x10\x3d\x45\xe9\x65\x40\x14\xdb\xa4\xa9\xfa\xec\x6f\x3e\x34\x1a\x8a\x81\x5d\x27\xab\xb7\xcf\x39\x15\x10\x68\x99\x8d\x0e\xe2\x0a\xff\x74\x6a\x22\xe6\xb5\x31\x1d\xb5\x13\x71\xed\xe3\xeb\x83\x4e\x1d\x64\x7a\x60\x94\xe1\x13\xec\xa6\x61\xfe\x09\xc2\x10\xc4\x82\x4e\x0f\x60\x40\x08\xb1\x64\xfa\x28\x98\xb0\x41\xb3\x35\x4f\xc2\xbe\xb0\x37\x0c\xa8\xd9\x7b\x4a\xfb\x34\x33\x1a\x5a\x53\xf5\xf1\x3a\x64\x0c\x93\x06\x8a\x55\xbd\x43\xb8\x18\x95\x36\x15\xc2\x49\x1e\xb0\xe2\x31\x11\x3c\x83\x36\x2f\x0d\x09\x09\x2b\x46\x51\xb4\xa9\x46\x23\x70\xc7\x18\x43\xeb\x9f\x90\x62\x14\x8c\x61\x94\x67\x2e\x52\x76\x4f\xf8\x51\x93\x09\xc1\xfe\xee\x13\x44\xb8\x21\x82\x16\xf8\xc1\x34\x3b\x8b\x05\x0a\xd9\x30\x26\xd2\x15\x3b\x26\x4e\xe0\x46\x54\x4a\x26\x1c\x2a\x6b\x50\x8d\xd7\x91\x79\xbb\xed\xa9\xff\x26\x2a\x05\x1a\x50\x3e\x40\x8a\x6a\x11\xfa\x3f\x21\x37\x1f\xce\x3f\x9c\x60\x71\x20\x51\x66\x19\x9d\xa1\x24\xb9\xa2\xa2\x04\x8d\x97\xa6\x29\x08\x94\x63\xf2\x3d\x73\x2c\x06\xe9\x10\xf1\x95\x04\x8a\xd1\x22\x5e\x2d\xf3\x13\x83\x61\x4b\x2a\xd2\x8c\x91\xbf\xfd\xf0\x1f\x86\xf8\xe1\x65\xcb\x36\xb6\xd4\x47\x54\xa3\x77\x0b\x69\x52\x15\x5a\x64\xf3\x0a\xa6\x9d\x88\x19\x40\x1f\xc2\x60\xa9\xc7\x54\x1f\xc2\xe3\x08\x59\x70\x6a\xb1\xf5\x42\x78\x72\x1d\xbf\x2b\x2a\x30\x26\x37\x92\xcc\x0d\xe3\x09\xce\x1b\x8d\x25\x98\x24\x57\xbd\x18\xa5\x08\xe6\xa2\xd4\x42\xf0\xeb\x78\x79\xa8\x6c\x5b\x24\x87\x42\xc1\x32\x1a\x33\xca\x69\x04\x31\x19\x1a\x47\xbc\x2a\xb0\x3f\xb6\x75\xea\xd0\x88\x09\x3f\xf2\xb8\x86\x47\x7a\x29\xd2\x8a\x19\xd9\x9a\x16\x31\x92\x6c\x37\xb7\x5f\xcb\x83\x3e\x1a\x6f\x57\xbe\xdf\x83\x55\xc9\x84\xa7\x9d\xb1\xdb\x37\x0e\x93\x0e\x15\x39\xbb\x38\xbf\xda\x93\x56\xa7\x2c\x63\x3a\xaa\x54\xd7\x66\x39\xc7\xc7\xec\x5d\xf0\xc2\xa0\x4d\x68\xf2\xf1\xde\x77\xb2\xb8\xa5\x85\x2c\x0d\x3a\x07\x75\xfb\x1b\xec\x9d\x06\xaf\x82\xcc\xee\xd3\xc9\x05\x46\xfe\xce\x36\xb8\x2c\xa4\xab\x19\xa6\xac\x14\x4c\x97\x85\x20\xd0\x5e\x63\x9e\xf1\x38\xa4\x59\x51\xc8\xc2\x65\xa5\x54\x6c\x75\xc6\x98\x08\xc4\x23\xed\x28\x95\x4b\x9c\x66\xda\x53\xb4\xfd\x73\xb7\xfe\x5e\x32\x91\xb0\x4b\x48\x43\x8b\x82\x11\x1c\x02\x27\xe4\x55\x07\x88\x0d\x01\x35\x5a\x20\x78\xaf\x70\x50\x9b\xdc\x86\x66\x64\xae\xdc\x16\x30\x2d\x5c\xf3\xb8\xc1\xa3\xda\x3a\x57\xe4\xae\xe0\x5a\x33\x61\x6d\x01\x35\x7e\x05\x91\xc1\x4a\xda\x49\x51\x67\xc7\x69\xe3\x44\x17\x56\x12\x0a\x30\xc4\xa6\x8d\x99\x85\x80\x19\x43\x2b\x1f\xc8\x6e\xcb\x31\x17\x2c\x63\x54\x35\x5c\x1d\x90\xc5\x8e\x48\x4e\x55\xe0\x4f\xac\x6f\x3c\x60\x87\x40\x45\xeb\xc4\x2d\x3a\x68\x96\xc9\x3b\x45\x4a\x15\xda\x92\x21\x4c\x5a\x69\x42\x49\x41\xb1\x0c\xb8\x2d\x66\x65\x78\x34\x13\xaa\xb4\x00\xb8\x88\x36\x6e\x5c\x52\x30\x65\x03\x12\xe1\x86\x0c\x77\x16\x29\x29\xd8\xc8\x2e\xc6\x68\x51\x50\xb6\x0e\xb2\x06\xf1\x19\x27\xa6\x47\x30\x0a\xfb\x96\x00\xeb\x7d\xf3\x79\x13\xc2\x35\xf0\xe5\x3a\xc2\x7d\x23\x8b\x8a\xa4\x47\xb0\xaf\x37\xb5\xeb\x58\x52\xa7\xb0\xb0\xd5\xc7\x22\x0f\x64\x3a\x96\x7a\xb9\x29\xa8\x96\x80\x28\x04\x39\x22\x8f\xc2\xba\x0a\x1d\xc6\x21\x31\x71\xae\xd4\x46\x1c\x21\x55\x42\xea\x2d\xdb\xb8\x7a\x13\xb9\x3a\x22\x0a\xf5\xe0\x5b\x06\xc1\xf6\x09\x55\xda\xb6\x1d\x03\x02\xda\x48\x20\xe2\xf4\x1d\x0b\xa7\x9c\xf6\x54\x14\xae\x6b\x4f\xbb\x54\x58\xaf\xb1\x98\xf5\xa4\x46\xa7\x44\xa8\x1a\x1c\x14\x51\x07\x78\x26\xc5\x82\x15\x48\x96\xad\x4b\x11\xfb\xb9\x7c\x54\x38\xdc\x99\x14\x73\xbe\xd8\x9e\xcf\x5c\x12\x46\x63\x71\xf6\xad\x34\xb0\x14\xfe\xa4\xbb\x36\xf8\xb1\x7a\xd4\xa5\x17\x15\x98\xa4\xec\x8c\xa1\xa1\xa0\x84\x66\xfe\x86\xdc\x09\x23\xd5\xd7\x45\xa9\x27\x94\x7d\x1b\x99\x72\x83\x15\x7a\x14\xae\x7b\xe7\xa7\x06\xb9\x7d\x04\x0c\x7e\xfb\xbb\x3a\xc6\x6c\xff\x1a\xc0\x7a\xb0\x6d\xb6\xda\x36\x13\x40\xf1\xe7\x32\x6e\xe2\x05\x8a\x59\x37\xf1\x97\xb8\x79\xd3\xae\x29\x66\xdf\x4c\xfc\x80\x43\x9c\xe3\x60\xa3\x6c\x3c\x86\xc1\x46\xf9\x7b\xb5\x51\x22\x5d\xd8\xc3\x48\x19\x92\x98\xea\xf3\x00\x2b\x65\xa9\xa5\x15\x12\x19\x88\x11\x31\x8e\xd8\xca\xe0\x57\xf4\x1e\x5f\x9c\xb0\xe2\x2f\x60\x69\xec\x92\xff\xea\xcf\x83\xa9\x53\x48\x31\xfa\x07\x2b\xe4\x91\x33\x7c\xad\xe8\x7d\x20\xe0\x85\x9e\x9f\xad\xa5\x41\xf1\x30\x2a\xa0\x22\x85\xb7\x4c\x82\x0e\xd4\x6a\x9c\x6c\x12\xa0\xbb\x24\xb2\x16\x50\x34\x73\xff\x1d\x18\xef\xc3\xd6\x07\xde\xbd\xc5\xbb\xd1\x14\xf4\x5c\xbc\xfb\x2f\x30\x7a\x8c\x77\xe3\x2f\x71\xde\x6d\xd7\x14\xe3\xdd\x4b\x3f\xe0\xc0\xbb\x07\xde\xdd\x78\x0c\x03\xef\xfe\xbd\xf2\x6e\xa4\x0b\x7b\xf0\xee\x90\xc4\x54\x9f\xfd\x79\x37\x70\xc5\xc7\xd8\x75\x7a\xe9\xb9\x71\xd3\x45\xb3\x69\xb8\x55\x58\x40\x62\x78\x71\xde\xf8\x5e\xcc\x10\xdd\xc8\x58\x23\xae\xca\x91\x9f\x62\xe0\xa2\x2d\x5c\x34\x97\x32\x7b\x1e\x0e\x3a\x91\x2e\x64\x2e\xe4\x9e\xe6\xdb\x18\xe7\x84\x75\xec\x72\xcd\xdc\x0e\x32\x70\xcc\x81\x63\x36\x1e\xc3\xc0\x31\x7f\x9f\x1c\xd3\xd0\x82\xde\xdc\xd2\x3c\xfc\x10\xb5\x16\xcb\x94\x7d\x54\x3d\x9c\xf9\xfe\x51\x17\x95\xa0\xb0\x42\x12\x5a\xd7\x89\xa1\x45\x3e\xb0\xc6\xa5\x78\x41\xe5\xcd\x18\x4b\x85\x58\x1a\x5f\xe2\xc9\xe5\x18\x1d\x55\x25\x9a\xb4\x24\x7f\x9b\x1e\xdc\x94\x42\xb0\x6c\x7a\x70\x44\xa6\x07\xdf\xdb\x5c\x85\xe9\xc1\x0f\xb0\xef\x19\x4d\x6e\x47\x50\xcd\x50\xf3\x19\xcf\x76\x14\x42\xf2\x3c\xf9\x59\xc0\x4c\xaf\xf9\x3f\x7a\x25\x04\xa0\xb7\x45\xf1\x7f\x80\xba\x5d\x2a\xcc\xe1\xa8\x32\xea\x08\x55\x8a\x2f\xc4\xca\x5c\xa6\xc6\x0e\x09\xb6\xd8\x96\xcc\xc6\xe4\x3c\x00\xcf\xeb\x37\x76\x30\x9b\x36\xf9\xe9\xa7\xaf\xdd\x17\x6f\xf6\xd5\xe7\xfb\x3a\xc9\xe1\x90\x1f\xe2\x21\xe7\x8a\xce\xb2\x6e\xd7\x06\x38\x3c\xdd\xc3\x60\xe3\x28\xca\x2a\x81\xd1\x08\x85\x95\x33\x1b\x41\x57\xe5\x26\xc6\x40\x67\xe9\x90\x83\xdf\x9e\x52\x98\x5d\xc8\xd7\xdf\x4e\xde\xde\x37\x64\x17\xd4\x49\xed\x39\xbe\x40\x18\x3c\x6e\x08\x6b\x21\x4b\x5f\x1e\x1d\xd6\x71\x31\x21\xe6\xae\xfe\xf2\xd3\xff\x8b\xa1\x06\x44\xae\xe3\x71\x43\x5f\x7f\x3b\x19\x93\xbf\x9d\x3b\xcf\x37\xc4\xda\xfe\x10\x69\xbe\xda\xba\x03\x9e\xf3\xbc\x7b\xd5\xde\x1b\x76\x62\xa9\x37\x14\xa9\xe3\xd8\x92\xbb\x4a\xd7\x3c\x9d\x5c\xac\x3f\x85\x6b\x77\x47\x8b\x34\x0a\xef\xda\x75\x34\xdc\x41\x5b\xf6\x12\x8e\x0a\x87\x87\xd4\xe4\xa8\xfe\x53\xf4\x08\x31\x47\x15\xd9\xb4\xb9\x41\x66\x51\xe3\x08\x20\x3a\x62\x63\x98\x68\xc2\xc0\x1d\x88\x00\x16\xda\xe7\x2b\x24\x34\xb0\x24\x1a\x08\x92\xd9\x53\x48\xea\xe2\x63\x42\x2a\x56\xca\x32\xbe\x66\x45\xd5\x6a\xc7\x7c\xe5\xdb\xcf\xa9\xad\x92\xdb\x51\x1c\x25\x5d\xa7\x4c\xa0\x36\x64\x34\x45\x69\x67\x6f\x37\x40\xad\x2f\x26\xf0\x02\xd4\x37\x02\xff\xac\x08\x4a\x9b\x4d\x0f\xb0\xda\x99\x6b\x27\x09\x4d\x6a\x47\xd8\x38\x75\x7a\x30\x26\xe4\xb4\x69\xbf\x66\xcc\xad\x11\xaa\x18\x89\x52\xd9\x99\x2b\x18\x9a\xb3\x35\x37\x04\x70\xa4\xb1\x61\x78\x00\xaf\x7a\xca\xf8\x0e\xec\x08\x39\x0d\xd6\x50\x5f\x77\xd3\xe8\xb0\x40\x87\xe8\xdb\x0b\xbc\x73\x85\xe3\xc2\x35\x60\x12\x97\xb9\x1d\x4d\x63\xd2\xaa\x11\x96\x6d\x38\xeb\xc4\x50\xd7\x32\xc1\x0c\x2e\xdc\x09\x54\x19\xaf\xad\xcd\x03\x5f\xf0\x79\x9d\x6f\xbe\x34\xab\xa8\x60\xdd\x8a\x3a\xed\x9c\x2e\xae\xbc\x1a\x8c\x7f\xdf\x23\xf5\xed\xcc\x09\x28\xe8\x7f\x2b\x8b\x4a\x38\x89\x1c\x78\x3b\xaa\x5f\x6c\xed\xf1\xc8\x75\xfb\xe0\x0a\x3d\xf7\x00\x28\x8c\x94\x9a\x1e\x5c\xb2\x35\x14\x07\x7f\x01\x95\xb8\xeb\x93\xc5\x46\x37\x23\x58\xee\x12\x6b\x2f\xd7\x9a\x03\x48\xf5\x48\x96\x7a\x21\xb9\x58\xfc\x4f\x21\xa9\xad\x54\x47\x50\xfd\xa1\x27\x3c\xb0\xc0\x67\x00\xc0\x8a\xaa\x3a\xba\x08\x75\x34\x83\x26\x5a\xa4\x35\x83\xda\x8a\xc4\x46\xf3\x08\x09\xc0\x0e\x75\x95\xa5\x56\x3c\x65\x5e\xc5\xf4\x42\x6a\x6c\x50\x68\x31\xa2\xfe\x5e\xb2\x82\xa6\xd1\x7e\x31\xed\xe0\x90\x69\xef\xce\x00\xa7\x18\x60\x65\xc5\x76\x5b\x92\xce\xa0\x8b\x8d\x5a\xf5\x29\x38\x40\x6a\x66\x1b\xac\x40\x17\x5b\xb3\x6f\xaf\xb3\x1f\x32\xaf\xef\x33\x2a\x1e\x79\xb5\xbf\xfb\xeb\xbb\xd3\xcb\x5f\xed\x6e\xc3\x6c\x51\xe9\xd8\x2f\xe0\xc1\x97\xbb\xd1\x70\xb6\x1b\x5a\x32\xd8\xc7\x6a\xf6\x31\xcc\x0b\xc3\xcb\xf6\x2c\x66\xb2\xab\x6a\x82\x5d\x6b\x59\xf0\x63\xcc\x68\x16\x2e\x6e\xd7\x76\x56\xd4\x47\x1e\x4c\x68\x83\x09\xad\xf1\x18\x06\x13\xda\xef\xd3\x84\x16\x10\x88\xde\x96\xb4\x1d\x8a\x53\x7d\xf6\xb7\xaf\xd9\xbc\xd9\x14\x0a\xd3\x76\xf1\xda\xab\xf0\xe1\x7a\x93\x70\xfc\x8a\x8a\xf4\xb8\x66\x3e\x8a\x1b\x3d\x20\xd6\x63\xc7\x64\xc2\xee\x93\xac\x4c\x6d\xcf\x5a\xc1\xee\xc2\x60\xcb\x21\x6f\xfc\x57\xe6\x9c\xb7\xe5\x8c\x55\xb9\x5d\xaa\x26\x5c\x3d\x07\x23\xfd\xcf\x72\xc6\xce\xaa\xf9\xce\xc2\xf9\xb6\xf9\x6a\xdb\xb3\xbb\x6c\xb6\x75\x27\xdb\x5c\xb7\xed\xe1\x81\x09\x0f\x4c\x78\x60\xc2\xff\x76\x4c\xb8\x8d\x9a\xec\xf2\xe4\x5a\x5b\x83\x6d\x00\x07\x99\x29\x01\x11\xa9\x6b\xa6\xfd\x59\x73\x30\x44\x1f\x25\xd8\xcd\x86\x66\x61\x6c\x34\xe1\x66\xb6\x2d\x52\xd6\x3c\x2d\x69\xd6\xd1\x9f\x32\x98\x76\x6f\x13\x76\x57\xcb\xc9\x86\x46\x93\x0d\x4b\xae\x77\x9d\xac\xd6\xd5\xd8\xe6\xf1\xad\xb5\x88\x43\x6a\x21\xa8\xea\x47\x90\xf6\xa7\x25\xe4\x94\x6b\xe9\xd4\xef\x86\x11\x7a\x34\x0c\x35\x64\x4a\x24\x3c\x63\xc5\x84\x15\x5c\x36\x67\xb1\x6e\x13\x87\xab\xad\x17\x5d\x7c\x6c\x8e\x7f\x69\x69\xfe\x05\x79\xfe\x6e\x0a\xde\x98\xfe\xe6\x3e\x3e\x5b\xce\x95\x1b\xa3\x9a\x82\xac\x10\xfa\x65\xbe\x58\xc5\x9c\x32\xee\xd3\x9d\xf9\xda\x95\xf7\xda\x50\x7a\x6c\x07\x02\x97\x32\x6d\x3f\x69\xf3\xfb\x6f\xe3\x90\x97\x41\x35\xb8\xbe\x07\x1c\x56\x90\xab\xfc\xcf\x6a\x23\x12\x67\x49\x07\x0e\x09\xf5\x0c\x83\x9e\xfb\x2d\xa7\x7b\xee\xbc\x8c\x0f\xdd\x69\xcf\xdd\x12\x1b\x3d\x7e\x56\x30\xda\x50\x13\xb6\x61\xcf\x87\xa7\xfe\xb5\xea\x64\x4b\x2d\x57\x54\xf3\xa4\x6a\x77\x24\x3b\xfb\x6a\xd7\xa1\x02\xaa\x0e\x5b\xb3\x62\x63\x3d\x10\x15\x32\x3b\x98\xb4\xa1\x34\xe9\xdd\xe8\xb5\x4f\x9b\xd7\x8c\xd1\xdb\x6f\x0b\x9a\xb0\x3d\xef\xfb\xbb\xfa\x7b\x5b\xd7\xbd\x9e\xb3\xe7\x70\xbe\x6d\x4f\x60\x38\xc6\xe6\xd5\xd0\x1d\x8f\x86\xae\xa6\x2a\xff\xd9\x2c\xd7\xf0\xf0\x6b\xc4\x93\x48\x3a\x72\x7d\x48\xeb\x0f\xbe\x98\x90\x05\x2d\x66\x74\x61\x96\x93\x65\x2c\xc1\x54\xcb\x0a\xf0\x9f\x3e\x96\x8c\xfc\x4f\x24\x9d\x04\xee\x3f\x34\xe3\x6b\xbb\x7e\xf5\xdd\x5e\xfb\x57\xc2\x30\x16\xdb\xd5\x4c\x92\x44\xe6\x9b\x9e\x1d\xa6\x81\xa2\x56\x5d\x65\x82\x0a\x8f\x2a\xdc\xa5\x25\xa8\xcf\xcb\x25\xb0\xfc\x5b\x1f\x3e\x61\x2b\x44\xb7\x70\x0a\x5b\xe0\xf1\xb7\xc1\x2b\xfe\xe7\x61\x75\xd7\x51\xd7\xbb\x13\xf6\x39\xf2\x7a\x67\xc2\xb6\xa3\xb7\x63\x37\x2d\xdf\xf6\x1a\x0c\x51\x63\xc0\x81\x7f\x05\x0e\xb8\xb2\xbd\x1d\x52\x54\xdd\x07\xbb\xf5\x4e\x1b\x1e\xb8\xf1\x9b\xf6\xc0\xb6\x24\xb1\x01\x13\xfe\x35\x98\xd0\x9e\x79\x30\x2b\x17\xb6\xca\xe8\xa4\x47\xf0\xda\xf9\xd6\xf3\xbb\x6c\xa1\xd0\x58\x6a\xa2\x58\x33\xb2\x62\x2b\x59\xc4\x0b\x1f\x19\x74\xca\x4b\x5f\xc2\x95\x18\x49\x67\xd7\xf3\x8b\x3f\x6f\xb9\x6d\xdb\xcb\x7c\x7c\xf6\xba\x09\x02\x0d\x51\x8d\x4c\x27\xe9\x77\x9f\x9d\xc9\x55\x4e\x41\xe2\x6a\x44\x9a\x3a\xb2\xbc\x8d\xbe\xb6\x85\x32\x33\xa6\xef\x8c\x44\x68\xe6\x58\x7f\x16\xd7\xf4\xdd\x00\xde\x24\x54\x09\x8e\xe1\x75\x08\xe5\xc0\x57\x51\x7c\x69\xc3\x93\x25\xa3\x99\x5e\x9e\x2d\x59\x3c\x27\xb5\xbe\xb5\xbf\x04\x0f\x7b\x02\x20\x0b\xb7\x14\xe5\x5b\x08\x1b\x1d\x01\x47\x8e\x6e\x0d\x07\xe8\x25\xe4\xb4\xad\x3d\x93\x8b\x6b\xa3\x89\x70\xbd\xb9\x4e\x0a\xc6\x62\xd5\x57\xb6\xe4\xfe\xed\x37\xdc\xb1\x64\x72\x41\x94\xfd\x85\xd0\x99\x5c\x33\x5b\xf9\x22\x93\x8b\x86\x52\x6f\x0c\x83\x4e\xac\x61\x55\xe9\x54\x96\x3a\x3c\x8c\x0b\x31\x97\xfb\xee\x28\x2f\xe4\xca\x08\x93\xa5\x7a\xcf\x74\xc1\x13\xd5\xe7\xea\x1d\x4e\x62\x6f\xb9\x9d\xdd\x9c\x4d\xec\xe5\x73\xd1\xd6\xd5\xe3\xb1\x8d\xad\x70\x08\xbc\xa8\x85\xef\x44\xcf\x05\xf6\xa0\xef\xc0\xc0\xaf\x5e\x7d\xf5\x79\xf3\xa6\xa3\x17\xad\x39\x7c\xa2\xc9\xd6\xd5\x68\x4c\xac\x5c\x3b\x0d\xa0\x6a\x35\x27\xc2\xdb\x81\x59\xd7\x9e\xab\xf9\x36\x62\x85\xb7\xca\x61\x60\x3b\x24\x17\xfa\x10\xda\x93\xcc\xcb\x0c\x1d\x82\xe9\x0a\x2c\x93\x12\xd2\xa6\x8d\x26\x07\x04\x10\x4b\x14\xd1\x44\x97\x74\x27\x28\x07\x47\xc4\xb3\xba\xa3\xbe\x5e\xb4\x2b\xb7\x6e\x23\x2d\x57\x32\xc5\xc8\xf7\x99\x11\xc5\xd7\xbc\x90\x10\x03\x4e\xd6\xb4\xe0\x70\x11\x77\xd6\x8b\x61\x88\xb7\xe5\x8c\x8d\x42\xe3\x67\x5e\xc8\x84\xa9\x6d\x4b\x47\x5b\xb7\x9e\x6a\xb6\xef\x68\xd4\xf4\xb9\x67\x5a\x5c\x13\xf7\xaa\x1d\xdb\xdb\xfa\xac\xdb\x05\xea\x23\x00\x68\x88\xae\x8c\x02\x01\x4b\x7b\x89\x79\x56\x62\xb9\x7a\xf0\x02\x94\x42\x70\xb1\x40\x04\xd9\xb3\xde\x50\x11\xbe\xdb\xe9\xb5\x0d\x1f\xde\xda\xd8\x7c\x6e\x54\xfd\x35\xab\x61\x05\x57\x6e\x82\xd8\x06\x79\xd3\x41\xcb\xf4\xc8\x96\x06\x5f\xb1\x62\xe1\x9c\x1d\xa7\x93\x8b\xca\xd7\x61\x24\x92\x38\x4b\x6e\xc0\xb2\x08\x5c\x3a\xa4\xb0\x76\xab\xf9\x0e\x70\x9e\xd2\x72\x4e\xba\xac\xe7\x3d\x96\x4f\x7a\x58\xd1\x77\x36\xb1\x9f\x25\xbd\x4d\x64\x7c\x4a\x71\xb9\xe7\x6e\xc9\x7e\x62\xf3\xce\xe6\xfb\x8b\xce\x5d\x56\xc8\xba\x64\xdd\x4b\x7c\xee\x1a\xb2\x5d\xba\x26\x4f\x6a\xa9\x6c\x31\xc4\x93\xe7\x32\xc6\x93\x27\x30\xb2\x90\xfe\x78\xd2\xd3\x30\xbf\xb3\xdd\x3d\x8c\xf3\x5d\x27\x5a\xd9\xee\x9f\xc6\x40\xbf\xc7\xee\xc9\x3e\x86\xfa\x1d\x18\xf4\x33\xd6\x77\x0f\x0a\xa2\xc9\x93\x1b\xec\x49\xef\xab\x40\x7a\x5e\x07\xb2\x97\xf1\x9e\x3c\xdc\x80\xdf\xb5\xb1\xea\x1a\xed\x69\xc4\xef\x1a\x38\x22\x28\x77\x1a\xf2\xbb\xc6\xec\xb0\xf3\x93\x3d\x8e\x69\x20\xea\x9d\x20\xea\xe5\x1e\xd8\x05\xce\xd3\xb9\x08\xc8\x93\xba\x09\xfa\x6f\xbd\xcf\x05\x6e\x75\x19\xec\x00\xe5\x29\xdd\x06\xe4\xd7\xe5\x6a\xc3\x45\x79\x02\x6c\xe9\xe5\x75\x20\xcf\xe6\x79\x20\xcf\xe4\x7d\x20\x03\x1a\xfd\xaa\x68\xd4\xd3\x71\x41\x9e\xd3\x79\x41\x9e\xcb\x81\x41\x06\x64\xfa\x15\x91\xa9\xeb\x89\x1e\xfe\x0f\xf2\x5c\x3e\x10\xf2\xf4\x7e\x10\xd2\xed\x0b\x21\x7d\xda\x91\xf4\xf6\x89\xec\x00\xe7\xa9\xfc\x22\xe4\x69\x7d\x23\xa4\x07\x4e\x75\xf8\x48\x76\xb7\xfa\x44\x7e\x12\xb2\xa7\xaf\xa4\xcf\x5e\xfa\xf8\x4c\x76\x37\xb4\xb7\xdf\xa4\x69\x3b\x99\x5c\xa8\x47\xf8\x4e\xfa\xec\xb0\xaf\x0f\x65\x77\x97\x4f\xea\x47\x21\x8f\xf5\xa5\x34\x0d\xda\xe4\x62\x21\xdd\xf7\xb7\xa5\x7f\x67\x8b\xbb\x85\xb4\x92\xcb\x21\x31\x27\x48\xcc\xb1\x59\xe7\xa0\xcc\xf0\x67\x29\x9e\x7a\x89\x33\xa0\x42\x85\x3f\x54\xb9\x37\xb5\x1f\x77\x93\x6d\xb6\x56\x67\x4f\xc1\xa7\xd7\x84\x3f\xc3\xd0\x36\x9f\xc6\x1b\xb0\x41\x26\x1a\x52\x6a\x86\x94\x9a\x21\xa5\xe6\xf7\x95\x52\xd3\xe6\xd0\x5d\x14\x4c\x75\x46\x7e\xdc\xb8\x5e\xc5\x06\xfd\x19\xe4\x94\xe2\x8b\xb6\x91\x37\xc1\xe6\x46\xe6\x0f\xef\xc3\x8c\x71\x28\xea\xde\xc6\xba\x1d\x64\x45\x75\xb2\x24\x49\xc1\x35\x2b\x38\x85\x4b\x42\x49\x22\x8b\x82\xa9\xdc\xd0\x73\xb1\x20\x56\xce\xd3\x12\x7b\x2c\xef\x95\x6b\x5a\xdb\xc3\xf4\xe0\x94\x5c\x99\x05\x32\x91\xd0\x5c\x95\x70\x6f\xab\x15\xc5\x96\xd2\x60\x70\xa7\xd6\x6e\x4b\xbe\x96\x7a\xb9\xd5\x66\x39\x68\x1d\x6d\x1b\xdb\x8b\x74\xa7\x9d\x74\x83\xc0\xe0\x5b\xa6\xdb\xb6\xce\x23\xa2\x58\x4e\x0b\x6c\xdf\x53\x6a\x42\xc3\x9c\x5e\x7c\x04\x2a\xd9\x99\x55\x70\x01\xe7\xd1\xb0\x60\x91\xba\xf3\x0a\x01\xcf\xc5\x62\x0c\xcd\xf9\xb1\x4b\x35\xb4\xb7\x37\x8a\x49\x1d\x12\x4b\xda\x34\x2a\x11\x6c\x01\x8b\xb3\x84\xd7\xa8\x23\x6c\xce\xef\x5d\xab\xa8\x5f\x7e\xfa\xf9\x52\xea\x5f\x7e\xfa\x79\x4c\x4e\xb3\xcc\x16\x9c\x0f\xc7\x8e\x8f\x6b\xeb\x32\x51\x44\xa7\x55\xa9\xb0\x43\x18\xd5\x5c\x41\xd0\x03\x16\x39\xb1\x1b\xd1\x12\xc7\x1c\x93\x53\x60\x65\xbb\x15\x7f\x2d\x6c\x01\x35\xa9\x70\xe8\x69\x15\x32\xbb\x65\x68\xe3\x63\x36\x63\xfe\xb0\xbb\x01\xbe\x80\x83\x37\x43\x15\x60\x1f\x5f\x22\xf4\xa1\x2a\x31\xe8\x03\x97\x18\xaf\x22\xd5\xa9\xf3\x23\xba\x35\xca\x83\xdd\x1a\x71\x50\xd3\xa6\x71\x94\x2d\x45\xb6\x2a\x57\x55\x0b\x49\xd8\x42\x0d\x10\x85\xe1\x5a\xb6\xa8\xe2\xb5\x9a\x3a\xc4\x50\x42\x1d\xbb\xc5\x3d\x81\x41\x42\x17\x7c\x4b\xc1\x9c\x86\x9d\x4d\x0f\x2e\xb7\x5f\x76\x4d\x90\x72\x8c\x5a\xb1\xa5\x8f\x9a\x7a\xb2\x57\x1f\x0f\x18\xea\x49\x00\x61\xf7\x86\x81\x29\xa0\x0e\x1f\x44\xb6\x21\xba\xa0\xf3\x39\x4f\x10\x52\xae\x7a\x57\x97\xd5\x1f\x78\xdc\x0b\x83\x42\xe0\x8c\x42\x3a\xa5\x5f\x06\x2e\xbd\xa0\x89\x17\xce\xdd\x5c\x44\x6e\x0b\x64\xca\x57\x9e\x83\xb3\x34\xec\x0f\xca\x2b\x01\x22\xef\xc0\xa6\x7d\x50\xa4\x91\x12\x3c\x1b\x1e\x04\x46\xb9\x43\xa1\x2c\x75\x61\x47\x8a\xae\xf0\x2a\x60\xc5\x9e\xf6\x41\xa1\xc2\x95\x33\xc2\x05\x5b\x46\x5c\x2b\xfc\xba\xc9\x6c\x83\x8b\x76\x33\x77\x00\xd5\x6d\xdb\xc1\xcb\x25\xf8\x98\x75\x21\x15\xfc\x46\x16\x75\x09\xfa\xa8\x91\x03\xb8\x0f\x94\x1d\xdd\x05\x1b\xe1\xab\x3c\xe3\x4c\x55\xba\x62\x88\x6c\xd0\x94\xb1\xeb\xc0\xc0\x4c\x04\x1e\x42\xb1\x68\x84\x09\x0f\xe0\xdb\x2b\x82\xc4\x37\x16\xad\xed\xb3\x71\xfb\x87\x8b\x4c\xce\x68\xf6\xe2\x65\x87\x51\xee\xd7\x01\xc0\xb7\xb0\x18\xbb\x44\xa3\x3b\xcb\xa2\x16\x3b\x00\xdb\x68\x1f\xd4\xec\xb1\x36\x4c\x75\xd0\x5d\x67\xd9\xb1\xda\x70\x8b\x18\xb4\xa7\x5c\x37\xce\xad\x43\xa3\x50\x58\x90\xd0\x78\x15\xb1\xea\x53\x5d\xd9\x06\xc6\xe1\xe7\xee\x65\x12\x15\x4c\xb7\x1b\x95\xeb\x21\x28\x4c\xab\x66\xc2\x68\x84\x79\xe8\xa5\xa2\xba\x5d\xec\x8e\x05\xc2\x11\x02\xaf\x00\xc5\x29\x4e\x17\x3d\xe9\xeb\x80\x76\x9d\x2e\xd6\xaa\x3a\x1a\xc9\x41\xf8\x36\xdf\xd8\xc0\x17\x8b\x28\xb6\x27\x74\x36\x4b\x91\xc1\xbc\x3d\x3d\xc7\x2d\xf5\x7f\xab\x8f\x90\xfa\x72\xbf\x33\xc1\x17\x9c\x41\x6a\x4b\xf8\x72\x3b\x36\x8f\x74\xb0\x17\x73\x8e\xbf\x39\x58\x4c\x64\xb1\x27\x30\xe0\x8d\x0e\x68\xc0\x33\x7d\xc0\x41\xae\xa1\x79\x28\x60\xa9\x92\x2b\x06\x8d\x4b\x65\x22\x33\x45\x96\x74\x8d\xb6\x7b\x75\x84\x61\x21\x1b\xfc\xab\x83\xd0\x16\x2c\x28\x51\xcd\xb5\x33\xbe\x29\x67\x3b\x84\xd1\xad\x44\x65\x09\xb9\x51\x4f\x3a\xa9\xa2\xed\x96\x0b\x45\xee\x6e\xce\x26\xae\xcc\xea\xc7\xf3\x49\x63\x0d\x4f\xfc\xf4\x39\x55\x2a\x36\x1f\xe6\x1d\xcf\x8c\xba\xdd\x04\xbb\x0f\xf7\x09\x1c\xca\xa9\xd6\xac\x10\x27\xe4\xff\x8c\xff\xa3\xfd\xc9\xfb\xd1\xad\x8f\xa0\x18\x71\xa1\x47\xb2\x18\xe1\x0c\x4d\x1d\xc9\xab\x4f\x5f\x84\xdc\x5f\xb8\xbc\xac\x5e\xea\x40\xcb\x7e\xf2\x95\xc5\x4c\x72\xcd\x02\xe6\x82\x54\xd8\x28\x18\xaa\x9c\xe9\x8c\x19\x59\x19\xd5\x2d\x3b\x57\xfb\x98\x5e\x5a\x6a\x45\x95\x7e\x67\x96\xef\x77\x65\xa7\x07\xfe\xc6\x76\xb1\x95\x6e\x66\xdb\x83\xad\x2c\x41\x5f\xb6\x56\xa7\x17\x81\x12\xf2\xb2\x03\x0d\xbd\x95\x1f\x45\x4d\xe5\x2a\x1b\xeb\x25\x53\x8c\x14\x54\x2c\x98\x3a\x76\x46\x3b\xa8\x80\xdc\x5a\x78\x17\x3f\xb5\x82\x5c\xf6\xea\x80\x53\x08\xa1\xac\x1c\x04\xac\x05\xcc\x4e\xd3\x21\x2b\xcf\xf1\x0c\x50\x80\xeb\x4b\xc1\x3a\x29\x00\x3e\xba\x17\x05\xeb\xd8\x7b\x45\xde\xea\x14\xec\x97\x9f\x7e\xbe\x39\x9b\xfc\xf2\xd3\xcf\x06\x10\xbf\xfc\xf4\xf3\xc7\x73\xf3\x47\x87\xbc\x33\xd0\x31\xf8\xf4\xa2\x63\xea\x01\x1a\x72\xb7\x62\xdc\x6a\xe3\xab\x3e\x51\xc5\x98\xbc\x50\x8c\x39\xe3\x18\x90\x31\xba\xca\x33\x46\xd4\x46\x68\x7a\x1f\xab\xbc\x1a\x7e\xa6\xd3\x56\xbd\xda\xca\x8f\x4d\x7a\x73\xfb\xd8\xce\x26\x16\xa8\xd5\xb2\xd8\x55\x97\xcd\x55\xbb\x94\x9a\xc1\xdc\x06\x7b\x3a\x80\x60\xf3\x61\x9c\xbb\xa0\x83\x23\x20\x78\x02\x4e\xd2\x3e\xfa\x8c\x65\xf2\xee\xe5\x51\x7d\xc9\x01\xb0\x11\xaa\x84\x6b\xc5\xb2\xb9\x73\x3b\x77\xc0\x01\x0d\x61\x60\xe0\xbc\x59\x32\xa2\xef\x24\xe0\x1a\xd4\x55\x72\xbf\x21\x71\x30\x0c\x68\x53\x15\x2b\xef\x38\xbb\x0f\xc2\xed\xde\x05\x6d\x55\x86\x57\x16\x68\x48\xb8\x1b\x34\x2b\xd8\xe7\xbb\xf9\xc1\xdd\x52\x66\xf6\x90\x4e\xe0\x88\xa6\xd3\x8a\x19\xff\xd9\xd0\x96\x3f\x2c\xa9\x7a\xb1\xda\xfc\x08\xc1\x94\x2f\x0d\xcd\xb1\xe4\xbd\xeb\x32\xdb\xca\xfb\xce\xfe\x00\x28\x86\xab\xc3\x48\x97\x2a\xd1\x26\x35\xb3\xf6\xc4\x36\x18\x2f\x95\x10\xd0\x01\xf4\x19\x7d\x49\x33\x96\x99\xc5\xba\x75\x82\xf1\xd4\x6e\xa7\x37\x52\xc0\x76\x9b\x76\xbb\xbb\x21\xb3\x82\xa6\xe6\x21\xd5\xa7\x7d\xaf\x7e\x3b\xed\x5b\xe9\xba\xdc\x02\x30\x0e\x13\x9f\x50\x84\xb2\xe6\x83\x0c\x48\xaa\x6d\x07\x00\xde\x61\xbf\x8f\xee\xa5\x0b\x29\x46\x36\x28\xc9\x7a\xc0\xc8\xdd\x92\x15\xcc\xda\x42\xe6\xb2\x58\xb1\xd0\x30\x01\x31\x50\x38\x7a\x0f\x43\xdd\x2e\x60\x82\x0a\x42\x4f\xa0\xb8\xd7\x63\x27\xf7\x90\xb7\xea\xe1\x93\xbf\x9e\xdc\xb5\x45\x8e\xdb\xc7\x8c\x98\x39\x29\xc9\x65\xea\x92\xdc\xd0\xe9\xe1\x49\x73\x8f\x40\x4f\x1f\xea\xd9\x8a\x6d\xbd\xb3\x3a\x42\x17\x7c\xf3\x67\x37\xe3\xeb\xf1\xe0\x26\x0f\x01\x79\xf7\x90\x4d\xd6\xe5\x08\xd8\x7b\x41\x9b\x04\xc1\xb5\x77\x4b\xa9\xd0\x14\x69\xb6\x6f\xc5\x3e\x23\xf4\x76\xa6\x4b\xf4\x11\xea\xc8\x5e\x69\x28\x3d\x25\x24\xd2\x57\x4a\x22\xbb\xf7\xab\x53\x4e\xfa\xf7\x3d\xe9\x9a\x7e\x54\x59\xda\x90\xea\xfb\xb6\x02\x0d\xed\xbb\xea\x9f\xca\xf5\x00\x1e\x85\xeb\xd0\x93\x50\xe9\x1f\xb6\xd6\x3f\xdb\x98\xef\xbb\x07\x3d\xbd\x3c\x3f\xec\x91\xa5\xb3\x9f\x15\xab\x2b\xa7\xc9\x42\x71\x2f\x9d\xd8\x52\xe9\x36\x7a\xd1\x4f\xda\xc6\x37\xd1\x25\xec\xe9\x65\x50\xf4\xd2\x4d\x04\x61\xa4\x55\x08\x69\x0f\x6f\x4c\xab\xb0\xbd\x8d\x5e\x7d\xa5\xed\x88\x0b\xcb\xc1\xef\x85\x7a\xb9\x2d\x76\x63\x00\x8d\x59\x4d\x97\x7d\xec\x18\x56\x05\xad\xc9\xdd\x4a\x0e\x15\x68\xb4\x56\x4b\x76\xf0\x4e\x7c\x20\x88\x07\x46\x17\x2c\xea\xde\x2c\x73\x73\x1c\xb2\x1e\x85\x22\xfb\xd1\xae\x17\xa1\x03\xcc\x97\xcc\x88\xbd\xce\xc0\x2b\x8b\x6d\xde\x8d\x4b\x47\xf3\x89\x01\x84\xb3\x7e\x76\x78\x28\x0d\x3e\x99\x03\x0c\xf7\x88\xb6\x22\x0f\x05\x29\x5c\xe8\x80\x0d\xe5\x68\x17\x59\xf6\x62\x9b\xfb\x73\x4d\xbf\xcc\x2a\x2b\x1a\xdd\xf0\xfd\x13\xa6\x88\xdb\x5b\xe0\x77\x7f\x22\x22\xd0\x2f\xf9\xbb\x61\x6b\x98\x02\xbe\xbb\x3f\xfc\x3e\x5e\xb2\x76\xf7\x83\x54\xd6\xee\x10\x6e\x72\xc6\xe6\xda\xb5\x3f\xf4\x3c\x04\x6e\x4f\x0f\xc3\x0c\x09\x2f\x22\xf4\x5e\x31\x6a\xf9\xa1\xaa\x56\xf6\xab\x52\xd0\xee\x67\x96\x5a\xc7\x3a\xd2\xe1\xa7\x9e\x55\x7c\x73\x33\xa9\x7c\xf4\x8d\x81\x0b\x06\x4b\xcc\xa3\xcd\x4b\xf7\x11\xe6\x8f\x8a\x59\x58\x31\xbd\x94\xe9\x1e\x9c\xe1\x3d\xbe\xf0\xb4\x52\x3b\x6e\x19\x89\x3a\xee\x3b\x08\x8e\x33\x63\x62\x3b\x27\xd6\x59\x15\xd4\xc9\x75\x2c\xc5\x51\xdc\x6a\x5f\xb0\xf1\x62\x4c\xbe\x7d\x7b\x73\x44\x26\x1f\x6f\x8e\x08\xd3\xc9\xf8\x25\x79\x5f\x66\x9a\xe7\x5d\xbe\x0d\x0b\x22\xe0\xfb\x1f\xae\x0e\x8d\x1a\xb6\x80\xb4\xc9\xdf\x96\xaf\x2a\xa7\x7a\xb9\xc7\x39\x1e\x4e\xcc\xf3\xcf\x71\x8c\x5d\x27\xd8\x4d\x51\xc2\x13\x84\x65\x8e\xfd\x51\xe1\x36\xdd\x59\xf4\x3d\x0c\x42\xd8\x78\x71\x42\x46\x84\xdd\xd3\x44\x9f\x90\xe3\xb9\x94\x64\x64\xc3\xc2\x4e\xc8\xf1\x8c\x16\xe4\xf2\xc3\xcd\xdb\x13\x0c\x39\x63\x42\x17\x1b\xb2\xea\x12\xcf\x3f\x5c\xbe\xfb\xdf\x96\x72\x6e\x08\xe3\x60\x7a\xa1\x64\x7a\x00\x93\xa0\xff\xcb\xfc\x89\xb3\x4c\x0f\x5c\x40\xd8\x4d\xd7\xf6\xd7\x34\xe3\x29\xf5\x46\x3e\x48\xb5\xc0\xee\x66\x3a\xd6\xce\xac\xfa\xf4\xc1\xb9\xad\x8c\x90\x9b\x9b\x89\x81\x70\xc0\x00\xa8\x40\xc0\x1b\x40\xf7\xe7\x55\x17\x1a\x22\x62\x67\xcc\x01\xc2\xda\x0f\xe7\xb2\x58\x9d\x38\xb0\x4f\xcb\x57\xaf\x3e\x4b\xcc\xc0\xf0\x2f\x76\x62\xcb\x07\xf5\x32\x78\x21\xaa\xc1\xaa\x60\x38\x43\x30\x0a\x7f\x84\xd5\xd0\x23\x0b\xef\x47\xcd\x80\x63\x74\x84\x97\xec\x51\x81\x01\x01\xf0\xb4\x6a\xa4\xdd\xfa\x53\x0e\xda\xb7\x44\x42\x0f\x82\xd4\x3d\x14\x4f\x56\x3d\x79\xe6\xc5\xd9\xfb\x49\xdf\xa8\x0f\x20\x46\xcd\x6b\x0f\xa9\x54\xd0\x91\xce\xac\xd6\x66\x5d\x62\x5f\x3d\x98\xd2\x2a\x18\xb6\x9f\x68\x8b\x7e\x85\x31\xf9\xbb\x32\x2d\x9f\xd7\x7d\x52\xbe\xb3\xa1\xf7\x94\x9b\x79\xda\x44\x5b\xf0\xa1\x9b\x87\xd6\x6f\x5a\xdc\xe8\xbd\x30\x31\x69\x2f\xf5\xb2\xcd\xe7\x41\x32\x91\x22\x84\x12\x00\x25\xc1\xfe\x9e\x7b\x28\x6b\x90\xa6\x64\x00\x8c\x71\xf8\x10\x96\x0a\xbd\x53\x43\x58\x59\x8f\x25\xb8\x23\x35\x4b\x96\x82\x27\xbb\x65\xc8\xea\x1f\x30\x8b\xa2\xd9\x9f\xaf\x72\x19\x54\xc7\xbe\x35\x42\x79\x76\xa8\x08\xcf\x35\x66\xb6\xcd\x79\xc1\xee\x68\x96\x75\x2c\x15\xa9\x85\x35\xca\x96\x0a\x83\xa5\x98\x98\x4b\xcc\x10\xb0\x61\x79\xdd\x57\xa3\xd3\x77\x07\x8f\x3d\xfe\x30\xcc\x30\x63\x8c\x1f\x63\xf7\xe0\xb0\xea\x72\x7d\xe1\x19\xc8\x39\xf9\x12\xe3\xba\x61\x87\x30\xd6\xdb\x64\x29\xc9\x15\x32\x6d\xdb\x9e\x30\xe7\x62\xa1\xda\x7d\x5f\xbd\xf6\xdb\x83\x18\xe4\xf1\x04\x9b\x06\x80\x5c\x4c\x5c\xa2\xcd\xa3\x83\xc1\x6a\xc6\x2d\x94\xc7\x43\x28\x4f\x9c\x47\xac\x11\x0a\x3d\x20\xd0\x90\x2a\xd1\xb0\xb9\xf7\xf6\xe9\x20\x94\xd7\x17\xaf\x83\x0c\x90\x62\x55\x75\xf7\x8a\xa5\xad\xd4\x37\xf7\x28\xa2\x01\xc6\x08\x6c\x7b\xd4\xde\x0b\xa0\x6f\x79\xbd\xea\xd3\x97\x2d\xd5\x7b\x8c\x56\xeb\xb1\x29\x3e\xe8\xad\xbb\x65\x1b\x8b\xda\x39\xe5\xb6\x78\x5e\xfb\xf4\x46\x65\x25\xec\x5e\x17\xb4\x06\x53\x3a\x93\xa5\xee\xc1\x48\x9e\x4a\x73\x14\x52\x9b\xdb\xd7\x0f\x33\x2e\xf1\xe1\x8e\x28\x1e\x78\xa4\x3d\x9a\x6e\x60\x18\x03\xc3\xf8\x7d\x33\x0c\x21\xb5\x13\xab\x1a\xc1\xd2\x1e\x6d\xd3\x33\xce\xa6\x5f\x84\xcd\x4e\x10\xa8\x13\xf9\x3a\xe2\x40\xed\x63\xcd\x00\xeb\xb8\xc7\x3d\x42\x7a\x1e\x16\xcc\x93\xff\x56\x81\x3b\x3d\x08\x61\xfb\x84\xbc\x7f\xc7\xb1\x05\x16\xde\x50\x12\x70\x30\x19\x03\xd6\xf3\xa2\xcd\x32\x6f\x23\x72\xed\x39\xbf\x85\xf4\xa2\x2b\xc8\x8d\x73\x99\x5e\x68\x36\x7f\x31\x63\x09\x2d\x95\x8d\x83\xeb\x70\x25\xf8\x25\x26\xac\x80\x31\x7c\x2c\xdd\x4b\x34\xc5\xbf\xb7\x29\x5f\xb5\xc8\xc0\x2e\x16\x8b\x21\x83\x27\x55\xd4\xdb\x51\x15\xf3\x06\xff\x34\xb7\x3d\xfc\xf7\xfa\x8d\xfb\xeb\xfa\xec\x06\x7e\x69\x1e\x1c\x47\x7a\xc7\x35\xb3\xe1\x74\x54\x38\xa4\x70\x8e\x58\x08\x29\x24\x9f\x8e\x5e\x7f\xf1\x45\x8b\x99\xff\xf9\x50\x1d\x83\x2f\xfa\x71\xe0\x6b\x0c\xdb\xec\x97\x7d\x46\xb4\x6c\x51\x1a\x71\xa4\x21\xf1\x6c\x48\x3c\xeb\x76\x75\x0e\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x35\xed\x78\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x2c\xb6\x8b\x81\x8e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x56\xff\x0c\x89\x67\x43\xe2\x99\xff\x0c\x89\x67\x43\xe2\xd9\x90\x78\x16\x1d\x74\x48\x3c\x0b\x60\x31\x24\x9e\x0d\x89\x67\x43\xe2\x59\xfd\xf3\x6b\x26\x9e\xb5\x34\x4e\x20\x64\x64\x2b\xf4\xc6\x7e\xeb\xd3\x80\x3f\x2a\x27\xd8\xbb\xf1\x80\xc2\xdc\xf5\x5b\x35\x54\xe6\x1e\x2a\x73\x0f\x95\xb9\x87\xca\xdc\xb1\xe5\x0d\x95\xb9\x87\x00\xa9\x21\x40\x6a\x08\x90\x1a\x02\xa4\x86\x00\xa9\x21\x40\xaa\xfa\x0c\x01\x52\xd5\x67\x08\x90\x1a\x02\xa4\x7e\x53\x81\x05\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\x3b\x0f\xff\xce\xe8\xd8\x10\x20\x35\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\xc1\x67\x08\x90\x1a\x02\xa4\xfc\x67\x08\x90\x1a\x02\xa4\x86\x00\xa9\xe8\xa0\x43\x80\x54\x00\x8b\x21\x40\x6a\x08\x90\x1a\x02\xa4\xea\x9f\xa1\x32\xf7\x50\x99\x7b\xa8\xcc\x5d\xfb\x0c\x95\xb9\x87\xca\xdc\x43\x65\xee\x5e\x33\x0c\x95\xb9\x87\xca\xdc\x43\x65\xee\xa1\xd0\xea\x50\x68\x75\xa8\xcc\x3d\x54\xe6\x1e\x2a\x73\x37\xaf\x7f\xa8\xcc\x3d\x30\x8c\x81\x61\x0c\x95\xb9\x87\xca\xdc\xb5\xcf\x50\x99\x7b\xa8\xcc\x0d\x9f\xa1\x32\x77\xc3\x67\xa8\xcc\x3d\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\x59\xed\x33\x24\x9e\x0d\x89\x67\xbf\xa9\x84\x8d\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x9d\x87\x7f\x67\x74\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\xe0\x33\x24\x9e\x0d\x89\x67\xfe\x33\x24\x9e\x0d\x89\x67\x43\xe2\x59\x74\xd0\x21\xf1\x2c\x80\xc5\x90\x78\x36\x24\x9e\x0d\x89\x67\xf5\xcf\xbf\x77\x65\x6e\x28\xb7\xdd\x55\x97\xfb\x83\x79\xa8\x85\x7e\xd7\x0f\x5d\xe2\xd3\xd1\x75\x62\x78\x1d\xd6\x44\x06\x03\x89\x19\x14\xbc\x89\xe9\x18\x6d\x26\xde\xda\xbb\xe4\x0b\xa3\x82\x4e\x0f\x60\xbc\xe9\x01\xb0\x4b\xfb\x6c\x6c\x68\x3a\x37\x0a\x94\x06\x01\x0d\x06\xc8\xe4\x1d\x2b\x70\x35\x18\xae\x18\x2c\x4e\x11\xb9\xe2\x5a\x1b\xba\xcb\x5d\xa6\x4b\x6c\xd0\x44\x0a\xc5\xb1\x20\x39\xda\xf5\xa6\x07\x5c\xcc\xb9\xe0\x9a\x4d\x0f\xc8\x88\x40\x90\x5c\xb0\x1d\x47\xd5\xed\x3a\x49\x46\x95\x1e\x13\xbf\xb3\x28\x48\xcc\x5a\x79\xca\x84\xe6\x09\xcd\xec\x02\xb7\xc7\xe1\x82\xd0\x2c\x5f\x52\x51\xae\x58\x11\x3c\x07\xb5\xc0\x63\xa3\x5a\x5a\x6e\xcd\x50\x18\x15\x12\x75\x9f\x20\x6e\x88\x72\x35\xdb\xb5\x10\xb6\x88\x8d\x5b\x4c\xfe\x26\x34\xcf\x20\xa2\x04\x46\x9a\x52\x59\x9d\x93\x27\xb7\xf8\x1f\x59\x46\xf1\xdf\x2c\x79\x4b\xe5\x0e\x80\x6b\xd3\x32\x02\xb0\x68\xe9\x78\x5e\xb3\xd9\xa0\x5a\x87\x11\x1d\xb2\x4c\xde\x21\x29\x40\xcb\x91\xb7\xa5\xa0\x60\xf7\x67\x30\x2d\xe0\x65\xff\x31\xe3\x9a\x15\xd4\xe8\xf5\xb1\x71\xa7\x53\x32\xc2\xa4\x24\x83\x26\xab\x9c\x16\x5c\x49\x71\x44\x20\x33\xd1\xd9\x04\xec\x80\x73\x29\xc9\x8c\x16\xbf\xfc\xf4\x73\x35\xd5\x1f\xf6\x9a\xaa\x9a\xcb\xf0\x74\xf6\xf7\x92\x66\x7f\xc2\x18\x5a\x27\xa3\xf2\xb9\x15\x4e\xb9\x82\x67\x9c\x9d\xdd\x4f\x18\xbf\x91\xff\x65\x56\x41\x5d\xfc\xd7\xcc\xfd\x23\x81\x7f\x8c\xc7\x63\xf2\xcf\x60\x6e\x5d\x94\xcc\x25\xc1\xf8\x38\x52\x1c\xfd\xaf\x24\x1e\xb7\x6e\x5d\x0b\x8d\x93\x54\xeb\x33\x8b\xe6\xa2\x75\x41\xb1\x09\xf6\x5c\x23\x4c\xd3\xb4\xa8\xd8\xf8\xc1\x3a\x97\x54\xbd\x80\x91\x7e\x34\xec\xe3\x65\x35\xe9\x8d\x9f\x93\xea\xea\x14\x82\x13\xf8\x03\xa0\x61\x94\xaa\xdb\x21\xbc\xe1\x51\xce\xe1\x59\xb0\x3e\xc1\xff\xcb\x57\xaf\x5e\xbf\xc1\xff\xe2\x2f\xfe\x9d\xeb\xa5\x2c\xf4\x28\xe1\x45\x52\x72\x0d\x72\x93\x7d\x29\x36\xd1\x7f\xff\x77\xeb\xdb\x12\x66\x7c\x81\xcf\xbc\xf4\x0f\xe5\xb4\x60\x56\xe6\x5e\x14\xb2\xcc\x8d\xcc\x3d\x9d\x6a\x9a\x65\x2f\xa2\x5e\x26\x5b\x90\x1e\x63\x4d\x3c\x45\x70\xa3\x39\x5c\xa5\x59\x16\x18\x91\xe0\x0a\xbe\x43\x1c\x40\x2d\x29\xae\x00\x51\x73\x79\x91\x92\xb8\x98\xcb\x90\x28\xaa\x23\x32\x3a\x22\x3f\x02\x1c\x8e\xc7\xe4\x1a\x6e\x16\xb1\x37\xab\x71\xd0\x95\x2c\x18\xc9\x8d\x80\xaf\x14\x5f\x33\x32\xc3\x6c\x81\x8d\x33\x5d\x5a\x93\x32\x61\x2a\xa1\x39\x23\xc9\x92\x16\x34\xd1\xac\xb0\xcb\x7e\x8b\x41\xd7\x51\xd4\x7f\x01\xa4\x7d\x45\x53\x36\x2a\x73\x44\x0b\xf5\xd2\x13\x1c\x48\x51\x43\xf2\x70\xc7\x66\x46\x33\x60\x48\x20\xc2\xf3\x4e\x59\x9e\xc9\xcd\x8a\x89\x28\xb9\xc4\xb7\xf3\x42\xa6\x16\x41\x61\x4c\x73\x87\x0c\xcd\x29\xa4\xd0\x4c\xa4\x1e\xc1\x69\x72\x8b\x7f\xfe\xd3\x3c\x5a\x8d\x4c\xfe\xf0\xe7\x06\xbc\x4f\xd9\xda\x0e\xfc\x07\xb2\x85\xfb\x31\x29\xba\x4d\x52\xaa\x1b\xf9\x5a\x5c\xcf\x2d\x16\xbe\x76\x7b\xc4\x1c\x63\x51\x2b\x72\x1f\xdb\x94\xe3\x44\x88\x99\xd6\x50\x80\x0d\x35\xa4\x70\x8b\x74\x36\x80\x98\x0b\xb9\x6d\x8f\xe0\x44\xe8\xc1\x2b\xc1\xd7\xc0\x45\xca\x13\x50\x29\xef\x96\x90\xf0\x1c\x0a\xa8\x61\x84\x95\xd5\x5e\xa2\xb4\xc9\xdc\x36\x69\x5b\x6e\x1c\xd9\xbf\x66\x52\x2f\xc7\x04\x83\x1e\x81\x57\xdc\xe7\x46\xf8\xd0\xd9\x26\xd0\x91\x5e\x40\xbb\x90\x68\x34\x6b\x40\x37\x05\x49\x0a\x66\xf3\x2b\x94\xbd\xd3\xb2\x20\x82\x67\x2f\x8f\x5c\x8e\x44\xca\xe6\xb4\xcc\xb4\x22\xb8\x2d\x03\xba\x22\x6d\x10\x95\xb5\x24\x77\x86\x42\x5e\x58\x85\xcc\x2c\xe2\xad\xfd\xa7\xb9\x85\x96\x5e\xfa\xae\x19\x18\xbb\x07\x26\x73\x3b\x4d\x6c\x54\xae\xf0\x4e\x8d\xc8\xdf\xac\xbc\x63\x96\xe2\xe6\xf8\xe1\xc8\x32\x03\x23\x3d\x82\x33\xc0\x4d\x89\x9d\x4d\x5e\x70\x91\x64\x65\xe3\x8a\x97\x8c\x24\xd4\x48\x94\x30\x40\x35\x0c\x41\xe6\x2b\xa4\xdf\x0c\x0c\xf7\x32\xb2\x92\xb7\x8d\x1d\x53\xb6\xd7\x56\x5b\x98\x21\x44\xdb\xc3\x37\xef\x33\x8a\x1e\xdb\x6b\xd8\x99\x10\x2c\x53\x91\xd3\xb0\x9a\x72\x54\x14\x11\x88\x5a\x75\x19\xbe\x60\xd4\xdc\xa3\xe4\x96\xd0\x05\xe5\xe2\xc8\x62\x03\xba\x33\xb2\x3b\xba\x51\x36\x8a\x3d\x8a\xc5\x2e\xf2\x00\x43\x0e\x8e\x88\x60\x6b\x56\xd4\xf0\x2d\xaa\xb5\xf7\x6c\xc8\x53\x41\x81\x30\x60\x15\xde\x41\x97\x4b\xa5\xf8\x2c\x73\x13\x57\x31\x55\xe6\x85\xeb\x9c\x25\x71\x3d\x0e\xf7\xd6\x1c\x65\xd6\xae\x31\x36\x2a\x63\x71\x1d\x6e\xf7\x5b\x60\x15\x69\xe8\x3f\x57\x5a\x16\x74\xc1\xdc\x57\x4a\x53\x5d\x22\x60\xd0\x95\xc4\xd2\xcb\xc0\xc8\x7f\xcb\x45\x6a\xe8\x90\x03\x69\x9e\x95\x05\xcd\xaa\x6f\x12\x29\xd0\xa3\xab\x4e\xc8\xdf\x7e\x30\xdf\x98\xf1\x59\x6a\x33\x34\xed\xb7\x53\x31\x1a\x8d\xa6\x82\xe6\xdc\x25\x7a\x12\x9a\x73\x76\xaf\x99\x80\xa7\xc6\xb7\x5f\xaa\x31\x97\xc7\xeb\x4f\xa7\x02\x67\x3c\x2b\x95\x96\xab\x2b\x86\x2e\xaa\x73\x06\x6a\x14\xd0\xe9\x5a\x3a\x25\x18\x56\x88\xc0\xf0\x55\xc5\xb4\x1a\x27\x45\x3a\xce\x0b\x69\x20\x90\x00\xd1\x19\xcb\x62\x31\x15\x86\x9a\xc1\x1b\x20\x98\x9c\x90\x86\xc7\xea\x1e\x0e\x5c\x4a\x15\x63\x8b\xdf\x66\x5c\xe9\xff\xdc\xfa\xe5\x1d\x57\xba\x0e\xa0\x60\x4d\x16\xee\x5c\x2c\xca\x8c\x16\xe1\x4f\x00\xaf\x44\x9a\x43\xf3\x56\x11\xd0\xd0\xd6\x0e\x7c\xe6\x8f\x91\xdd\xa6\x81\x0e\x8c\x94\x2c\xd9\xaa\x4a\x27\x95\x39\x13\xa7\x93\x8b\xef\x3e\xbb\xae\x7f\xbf\x1b\xc4\xea\x42\x85\x6d\x38\x56\x35\xe5\x88\xfd\xbd\xe4\x6b\x9a\x19\x82\x6a\xf1\x7a\x3b\xbe\x38\x40\xde\x06\xb3\x57\x70\xba\x75\x5c\xad\x57\x9d\x30\x4b\xb5\xde\x7e\x8c\x8c\xc7\xc5\xd8\x1d\xb3\xd4\x6e\x0f\xd7\x01\xd4\xc2\x92\x7a\x1a\xb3\x67\xc8\x39\x70\x77\xc0\xf8\x31\x88\x00\xac\x50\x4e\xf9\x4b\xa4\x58\xb3\x42\x93\x82\x25\x72\x21\xf8\x3f\xfc\xe0\xca\xc5\x1f\x40\xbf\xad\x1d\x46\xc1\x85\x66\x85\x11\x16\xe0\xaa\xa3\xb5\xd5\xa8\xfd\x05\x33\xd3\x90\x52\x04\x03\xba\xc8\xa7\xf7\x46\x34\xe4\x62\x2e\x4f\xa0\x1e\x90\x3a\x39\x3e\x5e\x70\xed\x10\x3b\x91\xab\x55\x29\xb8\xde\x1c\x83\x67\x94\xcf\x4a\x2d\x0b\x75\x9c\xb2\x35\xcb\x8e\x15\x5f\x8c\x68\x91\x2c\xb9\x66\x89\x2e\x0b\x76\x4c\x73\x3e\x82\xb5\x0b\xb8\x59\xe3\x55\xfa\x49\x61\x6f\x82\x3a\x8c\xd1\x81\x5d\xf2\x01\xa8\xdb\x76\x0c\x06\x83\x6d\x12\x2d\xca\xbe\xc8\xc6\x3d\xb4\x5d\xe8\xc7\xd5\xdb\xeb\x1b\xe2\x66\x8f\x26\x1c\x23\xf0\xab\x37\x55\x75\x0e\x06\x68\x5c\xcc\x9d\xbc\x02\xc6\xe8\x50\x6d\x47\x96\x99\xf1\x88\xc8\xaa\xca\xd9\x8a\x6b\x15\x14\x92\x91\x63\x72\xe6\xad\xd4\x65\x9e\x52\xcd\xd2\x31\xb9\x10\xe4\x8c\xae\x58\x76\x46\x15\x7b\xf6\x53\x00\xa1\x6d\x64\x60\xdb\xf7\x1c\x1a\x92\xbf\x9b\x4c\x70\x9e\x4c\x35\x1c\x5b\x75\x1f\x0d\xc7\xa9\x67\x22\xb9\x64\xb5\x2a\x3d\x9c\xee\xd0\xae\xea\xe3\x8e\x74\x8b\x29\xb5\x98\xb4\x1b\x62\xe6\x77\x9a\xf2\xb9\xb0\xbe\x8b\x89\xa7\x74\xa8\xeb\xce\x58\x26\x0d\x56\x49\x6b\x53\x61\x31\x47\x68\x33\x9f\xfe\x1f\xc1\x29\x81\x4f\xc2\x7f\x3e\xb1\xe9\x66\x27\x04\x19\xd4\xb1\x66\xab\x1c\xe8\xd5\x31\x7e\x01\xd1\x72\x55\xa4\x45\xa1\x46\xc5\x8c\x26\xe3\x0d\x5d\x65\x86\xe3\xfe\xd7\x7f\xf1\x39\x61\x7f\x27\xe3\xab\xaf\x4f\xcf\xce\xa4\x98\xf3\x05\x99\x1e\x98\x47\xa6\x07\xff\xfc\xa7\x19\xff\x02\x84\x59\x46\x28\x49\xb2\x52\x69\x56\x14\x32\x63\xbe\x4d\xdc\xf6\xe8\x60\xb7\x92\x82\x09\x7d\x64\x5e\x86\x46\x73\x40\x43\xb4\x23\xa6\x0d\xcb\x72\x9a\x52\x15\x88\x60\x59\x3c\x4e\x7a\x25\x33\x56\x17\x0d\x60\x1b\xb4\xd4\x4b\x59\xf0\x7f\x60\xf0\x55\x20\x1f\x44\xf8\x7f\xc3\xc4\x53\x01\xa2\x29\x3c\xf8\x09\xb9\x94\x29\x5a\x0b\xc8\x9d\x8d\xb1\xd2\x92\xac\xa4\xe0\x10\x47\x2c\x0b\x92\xb2\x8c\xe1\x4d\x47\xa6\x4b\x73\xfe\xad\x11\x16\xcc\xc9\x98\x43\xfc\x01\xcf\xd5\x53\x62\x8f\xa4\x23\x22\xcc\xd8\xf8\xe7\x9a\x15\xb3\xf0\xa7\xbb\xd0\xef\x30\x82\xcb\x51\xfd\xb5\xc0\x7b\xf9\x09\x99\xb8\x1a\x63\xc1\xda\xaa\xd2\x4f\xec\x9e\x2b\x0d\x3d\x18\xa9\x22\x39\x2d\xec\xf5\x3a\x7d\x4f\xaa\xdd\xee\xbf\xe8\x5c\xa6\x0d\x6b\x5e\x30\xdd\xb4\x62\xbf\x9d\x4f\x70\x01\x7e\x60\x9b\x8d\x26\x78\x0e\x4d\x2c\x53\xa3\x04\x09\x04\x8c\xcd\x82\xcb\x98\xb6\x3e\xe8\xed\x65\xc6\x85\xb1\xb6\xb5\xf3\x3c\x97\x32\x53\xe1\x17\x86\xf9\x14\x6b\xac\x0e\x11\xdf\x96\xdb\xc9\xe3\xa7\x9f\x65\x32\xb9\xa5\x73\x14\x4a\x59\x6d\x19\x74\x05\x3f\x6e\x7d\xb7\xa4\x22\xcd\x9a\x50\xa4\x05\xdc\xa0\x52\xb3\xea\x6f\x64\x7b\xd5\xdf\x08\xd5\xe8\xf1\xec\x5c\xc3\x15\x15\x74\xc1\x14\x59\x4a\xa5\x83\xa0\xac\x27\x01\x48\x6d\xcc\x67\xdc\xe5\x27\xe4\x92\xb1\x14\x2c\x07\x46\xf5\xd4\xd2\x3e\xeb\x28\x58\x50\xcc\xe3\xa9\xb6\x16\x19\xb9\xc7\x06\x9b\xb7\xf4\x09\xb8\x6f\xcf\xaa\x83\x41\xda\x5c\x16\xde\x76\x82\xe6\x03\xae\xcd\x88\x8a\x18\x21\x28\x81\x47\x9e\x66\x3f\x06\x2f\x02\xb4\x48\xc2\xd9\xa3\x3b\xfb\x04\x15\x76\xb3\x0e\x79\x27\x82\xb5\xec\x6c\xfb\x13\xbb\x6d\x42\x9d\x09\x86\xf0\x39\x11\x52\x30\x24\x61\xaa\x09\x3e\x9f\xb8\x63\x44\x1e\xdb\x84\x09\x9f\x20\x7e\x03\x4d\x4c\x96\xb5\x94\x00\x8f\xfa\xc0\x3b\x77\x18\xcc\xd7\x5c\xa0\xd5\xe6\x99\xf8\x8c\xcc\xd8\x15\xc3\x10\x7b\x77\x3e\x2d\xe3\x9b\xc7\x22\x3c\xb0\x73\x1a\x55\x82\xbc\x62\x8e\x66\x64\x07\xa8\x1b\x3d\x7b\x8c\x11\xba\xed\x91\x46\xa8\x8d\xd2\x6c\x65\x21\xd7\x5b\xf8\x30\x94\x3d\x14\x38\xba\xc4\x89\xe0\x35\x72\x4e\xd9\x4a\x8a\x6b\xd6\x25\x49\xc0\xc3\xbf\x96\xf4\x60\x26\xab\x4b\x0c\x46\x98\x3d\xbb\xbc\x30\x92\xdc\x82\x0b\x22\x80\xf2\x68\x69\x30\x1e\x98\xe7\x11\xb2\x37\xd4\x0f\xc3\x04\xd5\x87\x73\xe2\x2d\x61\xc2\xe9\xfe\x38\x70\x2b\xd9\xf9\x84\xb8\xcc\xdf\xeb\x8c\x3b\x7e\x0c\x16\xec\x79\x15\x41\x63\xdb\x41\x5b\xb1\xdc\x99\xe4\x5c\xad\xa3\x4f\x5c\xed\x9a\x95\x0b\x5f\xdf\xde\x45\xca\x55\x22\xd7\xac\xd8\x38\x44\x6e\xdb\x95\xe7\x07\xb0\x9e\xbd\xa4\xa3\xbd\xa0\xb7\x13\x62\x35\xf2\xa1\x67\x71\x72\xf6\xd1\xda\xf5\xdd\x6e\xbc\x29\xff\x62\x82\xce\x2b\x9a\xae\x8d\x0e\xa4\x2a\x40\xb4\xae\xb6\x61\xd4\x9b\x4d\xbe\xa4\x6a\x1c\x97\xf6\xc8\xd9\xc5\xf9\x15\xa1\xa5\x96\xa3\x94\x19\x8d\x13\xbc\x79\x02\x6e\x24\x4d\x57\x16\xd9\x2a\x36\x87\x54\x97\xac\x68\xfe\x00\xfc\xc2\x97\xcd\xbb\xad\x28\xb4\xbf\xc8\x7b\x1c\xd2\xeb\x6d\x30\x1b\x4e\x6d\xd1\x2f\xc9\x18\x05\x23\x83\x11\xc2\xad\x4e\xfa\x51\xd0\x35\xe5\x19\x9d\x19\x22\x91\xd1\x45\x00\xa8\x3c\x84\xf3\x27\xce\x79\x00\xea\x92\xc2\x6c\xae\xa4\xce\x33\x83\x12\x5e\x1c\x85\xce\xb0\x76\xd9\x38\xce\x86\xbf\xdf\xe6\x25\x06\xce\x41\x88\x60\x98\x14\xcf\x1b\xae\xb5\xbd\x49\x5c\x2c\xfa\xdc\x08\xfb\x74\x5e\x0b\xf0\xe8\x79\x25\x2c\x82\xcd\x36\x0e\x1c\x66\xe1\xce\xa6\x5e\xed\xff\xd1\xc4\x67\x8b\xda\x04\xb7\xc9\x39\xba\xda\x85\x6b\xb2\x2d\x87\x6e\x51\xd1\xdc\x25\x5e\xc8\xd4\xa1\xcf\xc3\xd6\xdc\x82\x7b\x01\x06\x79\xec\xb1\x9a\x9e\x22\x6b\x5a\x70\x59\x2a\x72\x76\x75\x8e\xb7\x1d\x71\xe9\x89\xa4\x45\xac\x11\x31\x67\x19\xbf\xc7\x71\x03\x38\x06\xdf\xd6\xe5\x2d\x50\x29\x16\x79\xce\x58\xa1\xb6\x87\x9a\x2d\xf2\x9d\x81\xfc\x77\xbb\xc3\xf4\x52\x8c\x9a\x34\x15\x9c\x31\x8a\xa5\x3b\x3f\x2b\x16\x12\xdc\xc6\x77\xa2\x4f\x37\x8a\xd4\x0d\xaa\x44\xab\xca\x85\x07\x03\xe4\x08\x10\xe2\x01\x5a\xd6\xdd\x2e\xb6\x94\x4a\x7b\x61\x56\xa4\x5e\x3c\x35\xb4\x07\x10\x47\x0a\x23\xab\x16\xba\xcc\x9f\x4b\xa3\x6d\xc5\x96\xde\x4a\x49\x9b\x1e\x12\xee\x75\x7b\x83\x91\x5d\x91\xc6\x6d\x91\x36\xde\xd3\xf3\x78\x22\x0b\xeb\x47\xf0\x6d\xf0\x9a\x99\xe1\x49\x0d\x37\xfd\xf0\xe5\x06\x7c\x91\x2e\x24\x44\x0a\x94\xbb\x20\xce\xd8\xc5\x67\x02\x91\x29\xf3\x45\x41\x53\x9b\x2f\xb7\x7e\x3d\x7e\x83\x52\x63\x82\x35\x75\x3e\x21\x33\x46\x0a\xb6\x92\x6b\x96\xda\xd8\x44\xf7\x82\x2c\xcc\x0e\xe7\x05\x53\x4b\xc2\x85\xd2\x34\xcb\x9e\x54\xbd\x6d\xa1\x25\x75\x92\xb4\x0f\x66\xc5\xa1\x52\x03\x88\x3d\x63\xc3\x19\xb4\x34\x8f\x9a\x13\x45\x9b\x12\xcd\x32\x99\x3c\xed\x26\x7f\x7b\xf6\x9a\xa7\xa0\x18\x74\x55\x63\x0d\x8d\x9a\xc1\xd7\x66\x87\xa4\xda\x7f\xbd\xa8\x26\x60\x33\x88\x61\xb3\x0d\xdc\x33\x3c\xa0\x42\x96\x86\xf8\x2d\x16\x85\xcb\x80\x7d\xc6\xb3\x68\x14\x82\xac\xfc\x80\xc8\x02\xd8\xb1\xe2\x0b\x4b\x05\x6a\x0a\x59\x0a\x3a\x25\xb8\x80\x23\xe8\x97\x50\x61\x83\x76\x3f\xf1\xf7\x0c\x4c\x13\xda\x5e\x34\x23\x9c\xc2\xdd\x84\x0a\x75\xd5\x35\x23\xa5\x32\x3f\x19\xa6\x34\x32\x58\x99\xc1\x22\xa2\xa0\xa0\x79\xae\x5a\x77\x5e\x2d\xb1\xe5\xbc\x22\xae\xf2\x76\x8d\xb6\xd9\xd6\xd1\xa9\xeb\x3e\x87\xd5\x02\x87\xde\xdf\x52\x81\xef\x35\x5b\x27\xfe\xeb\xbf\x98\x48\xff\xf9\xcf\xbd\xec\x13\xde\x34\x01\x65\x29\x56\xff\x1f\x7b\x6f\xbb\xdc\xc8\x8d\x2c\x0a\xfe\xdf\xa7\xc0\x91\x4f\x84\xba\xef\x15\xa9\xfe\xb2\xc6\xd6\xc4\xc4\x86\x5a\x52\xdb\x8c\x51\x4b\xbc\x92\xba\xdb\x13\xe6\xdc\x0e\xb0\x0a\x24\xb1\x2a\x02\x35\x85\x2a\x4a\x1c\xcf\xd9\xd8\x77\xd8\x37\xdc\x27\xd9\x40\x26\x50\x85\x2a\x02\x55\x45\xa9\xdb\xf6\x1c\x93\x11\x33\x56\x93\xf8\x4c\x24\x12\xf9\x9d\x54\xf0\x19\x53\xb9\x3d\x5f\xb5\xa1\x6a\x30\xe6\x34\x96\x1d\x10\xaa\xc8\x3d\x4b\xa0\xb3\x09\x8c\xad\x78\x58\xf4\x7e\xb1\x42\xb4\x91\xcc\xa4\xd0\x6d\x21\xd2\x66\x49\x35\x74\xa0\x91\x6e\xc1\x32\x94\x48\xb8\xa8\x85\x6e\xd8\x37\xbc\xd4\x68\x94\x5a\x91\xa6\xa3\x44\xaa\x7a\xa9\x2e\xc2\xb0\x23\xc6\x9f\xd0\x5a\xaa\xbe\x53\x03\x9a\xa6\xcd\x23\xb3\xa6\xc7\x86\x23\x37\xb8\x61\x5e\xb8\xfd\x43\x23\x10\x43\xee\x6e\xf2\x8c\xe6\x6c\xbe\x3e\x36\x46\xa8\xe1\x87\xda\xd7\xfa\x10\x7f\xf9\x85\xe4\xf2\x6f\x74\x99\x34\x7f\x24\xff\x22\x5c\xc4\x4c\xe4\xe4\x0d\xb6\x63\x89\x62\xfa\x2f\x52\x1a\xed\xae\x65\x92\x70\x31\xff\xe0\x90\xd6\xcc\xfd\xaa\x5c\xe5\x92\x3e\x38\x42\xe6\x31\x79\xe9\x60\x11\x21\x16\x63\xec\x36\x9b\x86\xda\xa4\xbe\xe5\xf0\xa6\x09\x08\xa9\xd7\x54\x44\x0b\x96\x0d\xac\x15\x16\x6d\xa1\x95\x14\x8a\xd9\x1d\xa2\x05\x8b\x8b\x84\x65\x43\xf0\x45\x1d\x56\xf9\x2e\xc0\x3c\x9d\x71\x70\xeb\x1f\xa4\x32\xae\x22\xcb\xe2\xca\x6c\xbe\x7a\x3d\x7c\xf9\x7a\xf8\x06\x7c\x10\x89\x9d\xda\x9f\xa4\x1b\x71\xfe\x80\x50\x30\xb9\x82\x6f\x29\x20\xb1\x99\xe2\x24\x8e\xa5\x50\x98\x3c\x42\x26\xcc\x10\x54\xc8\x9f\x70\xe0\x0e\xb2\xa4\x68\xbd\x65\xe0\xfb\x08\xc1\x91\x76\x95\x84\xc6\xf1\x00\x7c\xd8\x85\x2a\x40\xb8\x37\x1a\x6b\xb7\x7f\x9a\x71\x99\xf1\x7c\x6d\x77\x0e\x21\x96\xc2\x44\x82\xa0\x79\xdf\xb5\x1f\xa1\xa8\xe2\x06\x29\x7c\xa3\xc9\x34\xcf\x09\x38\x79\x81\x3e\x9c\xad\x78\x94\xd7\x82\x19\xfb\x43\xf5\x98\xec\x1b\xbb\x7d\xcd\xd0\xae\x4f\xd2\xe3\x65\x5a\x1f\x47\xaa\x63\x92\x70\x51\x3c\xd8\x06\xbf\xfc\x62\x92\x97\xfe\xe7\xdd\x01\xf9\xcf\x15\x39\xfe\x0b\x19\x5e\x3a\x23\x11\x8b\xb6\xa6\xf1\x7f\xde\x91\xff\xfa\xaf\x63\x32\xd9\xd3\x7f\xaf\xf4\xaf\x7b\xce\x50\x4c\xc4\x4e\x07\xfd\xde\x18\xfd\x43\x3d\xf7\x49\x75\x5a\xf5\xd3\x7e\x4f\xef\x18\x51\x45\x56\x27\x68\x00\x30\x0b\x1e\xf0\x5a\xa5\x49\x82\x4c\xaf\x03\xbf\x81\xc9\x31\x70\x4c\x2e\xe5\x8d\x69\x5c\xfd\x0a\x0e\x46\x19\xd5\xa0\x21\xe7\x35\x2d\x3e\xce\x9b\xdd\xb5\xe2\x07\xf2\x12\xac\x3a\xff\xda\xc4\x77\x6c\x7d\xec\x41\xca\x7e\xb3\xbb\xeb\x3e\x7f\x60\x51\x91\xf7\x5a\x76\x97\x61\xdc\x20\x55\xed\xb9\xba\xf4\x91\x5b\x1c\xac\x24\x28\x06\x20\x5c\xf0\x25\xff\x27\x23\xb1\xbc\x17\x39\x5f\x32\x12\xe3\xed\xa0\x96\x4a\xb9\xac\xbd\xb5\x39\xff\x99\xe4\x2c\x49\xdc\xd7\x21\x97\x24\x96\x50\x42\x08\x54\xb2\xd5\x04\xb6\xcb\x64\xaf\xf2\x71\xa9\x63\x6a\x2c\x23\x75\x18\x49\x11\xb1\x34\x57\x87\x36\xe9\xa2\x3a\x04\xad\x49\x2a\xe3\xc3\x6f\x6c\x8c\x2a\x97\x62\x20\x67\xfa\x66\x54\xf8\xe0\xfc\xf6\x43\x46\x23\x36\x66\x19\x97\xf1\x0d\x8b\xa4\x88\xd5\x31\x79\xb1\x41\xf2\xaa\x2c\xc9\xa8\x47\xb3\x0d\xec\xdd\x3f\x4d\xa8\x52\x08\xc0\x5f\x7e\x21\x43\xe4\xe5\xf4\x45\x19\x37\x1b\x90\x7f\x95\x76\xa3\xc9\x1e\x3e\x5e\x68\x67\xb0\x38\x35\xd9\x73\xee\x88\x66\x20\x4f\xed\x8b\xbd\x49\xfb\xaa\xd7\xdc\x4a\x17\xaa\x2e\x85\x35\x78\x3a\xd0\xb2\xe2\x01\x6b\xce\x7a\xe8\x8e\x37\xca\x0d\x07\x69\xcd\xd8\xe8\x19\x6b\x33\xd0\x6f\x4a\x67\xe0\x5f\xcd\x67\x64\x2d\x0b\x4c\x02\x42\x93\x8c\xd1\x78\xed\x0e\x6a\x16\x03\x4a\xe3\x42\xb1\xc0\xe4\xd6\xf9\xcf\xb4\x86\x9f\x5d\x2c\xe7\x4b\x70\x51\xf9\xe5\x97\xe1\xe9\xe5\x68\xa4\xff\xe1\x92\x1d\x88\x36\x5a\x52\xcd\x5e\xfc\x3c\xd9\x3b\x94\x69\x7e\x18\x09\x7e\x38\xe5\xe2\xd0\x99\x6e\xb2\x77\x40\x26\x7b\x03\x33\x45\xc9\xc3\xe2\x87\x89\xd5\xbb\x4c\x2e\x6b\x2e\x39\x56\xa5\xfc\x9e\xa6\x96\x81\x74\x3f\xdf\x90\x13\x08\x9d\xfa\xeb\x87\xb7\xe7\xd7\x97\xe7\xb7\xe7\x37\x9f\x6f\xce\xaf\x3f\x8e\x4e\xcf\x3f\xff\x78\x75\x73\x0b\x2f\x80\xe7\xb7\xf1\xd5\xf5\xad\x89\x9c\x93\x2b\x96\x65\x3c\x8e\x19\xd2\x0f\xf6\x76\xfc\x8e\x2c\xad\x84\xef\x7e\x10\x38\x4e\xde\x28\xab\xfa\x1f\x58\x1d\x52\xb3\x87\x8d\x04\xd8\xcc\x29\xc5\xc4\xaa\xb1\x15\x0b\x7c\x67\xb1\x97\x57\x67\xe7\x9f\x2f\x4f\xde\x9f\x37\xc7\x05\xff\xb9\x0d\x48\xe1\x07\xdc\x7f\x7d\x90\x2a\x7f\x1c\xd3\x7c\x71\x0c\x37\x69\xa8\x31\x1e\x22\xf0\xbc\x4b\x39\x3d\xb9\x18\x9d\x5e\x7d\xbe\x3c\xbf\xfd\x74\x75\xfd\xd7\xd1\xe5\x0f\x9f\xdf\x9e\x9c\xfe\xf5\xfc\xf2\x6c\x9b\xf5\x94\xa7\xf7\x57\xb6\x0e\x2d\xab\xc6\x61\xd6\x8d\xbe\xee\x07\x28\x38\xb6\xfa\x6c\xa2\x46\xdc\x66\x2b\x99\x14\x4b\xf6\xde\x97\xac\x65\x40\x96\xfa\x6b\xdc\xf9\xe1\x8a\x66\x87\x09\x9f\x02\x7a\x5a\xa5\xa1\xff\xb0\xab\x7b\x3b\x10\x2c\x1f\xc4\x3c\x6b\x1b\x57\xb7\x76\xf1\xde\x3f\x66\x24\xf8\x60\xca\x45\x73\x30\xc5\xa2\x02\x28\x94\x14\x39\x7b\x68\xd6\xf0\x4a\x33\xbe\xe2\x09\x9b\xd7\xbd\xc6\x88\x8f\x02\xd5\x44\x0e\x2d\x49\x4c\xb9\xa0\x59\x2d\xc8\x13\x0d\xa1\xfa\xb7\x86\x64\x31\xe3\x09\x84\x57\x80\x6c\x21\xea\x97\xc0\x62\x85\x19\x7f\x10\x09\xfe\x45\x88\x83\x19\x6f\x47\x0a\x9c\x8d\x5c\x9a\xf8\x7b\x7b\x84\xee\xf1\xe8\xb7\x03\x54\x3f\xc3\xc0\xad\xbd\x1c\x7d\x3e\xbd\xba\x7c\x17\xa6\x1c\x9a\x31\x7c\xf9\x62\x60\x94\x28\x7a\x6c\xd0\x2c\xed\x35\x57\x61\xcd\x29\x0d\x24\x81\xd8\x1f\x38\xb3\x10\xaa\x34\x97\x63\x28\x08\x2c\x6b\xf4\xc3\x6f\x4a\x3d\x04\xff\x6c\xb6\xf3\xd9\xd7\xf4\x1b\x72\xc3\xd0\x55\x58\x5f\x66\x48\x83\x50\x46\x61\x81\xa7\xe2\x77\x0a\x25\x6c\xfd\x53\x60\xc7\xbf\x03\x0a\xfe\x0d\x9c\xdb\xfb\xdb\x0f\xc4\x30\x9d\x2b\x9a\x71\x2d\x99\x86\xcf\xe8\xfd\xed\x87\xdf\xf2\x60\x56\x2c\x5f\x7c\x5e\xe6\x45\x73\x1f\xe3\x8c\xad\x98\x30\x25\xf7\x2a\x22\x07\x5c\x95\x4a\x18\x83\xc0\xcf\x99\xd4\xad\x9a\xa5\x39\xed\xee\x6e\x2e\xce\xcf\x37\xea\xdb\x96\x17\x61\x46\x13\xc5\xea\xb8\xdf\xfb\x21\x79\x12\xc1\xf7\x0e\xc6\xf2\xc8\x3e\x4b\xc3\x8d\xf8\xf9\x6a\x38\xcf\x63\xf4\xf8\xf7\xe3\x24\x8e\x35\x67\xf9\x2e\x61\x0f\xe4\x23\x6c\x9d\x9c\x65\x7c\x05\x9e\xf4\xd4\x9a\xa6\x74\x8b\x94\x65\xa0\x2f\xf8\x20\xf8\x03\x39\x93\x4b\xca\x05\xb9\x91\xd1\x1d\xa6\x14\x85\x28\x58\x72\xc6\xef\xa8\xca\xeb\x8f\x0d\xf8\x14\x80\x3b\x7c\x44\x73\x93\x04\xe1\x1d\x4b\xf8\x03\x10\x5c\x37\x1f\xc0\xcd\x5a\x44\xe4\x64\x3c\xf2\x3c\x3b\xb3\x84\x3d\xac\x64\x32\x88\x61\x69\xfe\x97\x47\x6f\xe1\xa3\x4c\x46\xcb\x79\xfd\xed\x09\x1e\xa8\x7f\xf0\x81\x3e\x8a\x3a\xfc\x36\x0e\x6a\x73\x19\x4f\x7c\xc0\xb5\x88\xe1\x20\xf8\x12\x53\xc7\x61\xe2\xca\x88\x29\x45\xb3\x35\xd0\x7f\x94\x55\x14\x68\xa4\xab\x62\x0a\xfa\xa5\x82\x52\x6e\x69\x42\x45\x6d\x70\xc8\x04\x31\x4d\x67\x84\xe6\xe4\x50\xad\xd5\xe1\x4c\x1d\xc2\x3f\x45\x4c\x22\x88\x50\x7a\x05\x3f\x65\x85\xe5\xd3\x0f\xf1\xeb\xa1\x4d\xb0\x67\x34\x8a\x3c\xe7\x34\xe1\xaa\x0a\xbb\x44\x31\xb8\xae\x40\xd1\x82\x8b\xca\xb5\xb0\x2c\xb3\x9c\xcc\xa8\x5a\x80\x84\x02\x8b\x10\x92\xcc\x28\x4f\x8a\x0c\x3d\xb5\x58\x96\xc9\x4c\x1d\x68\xec\x10\x32\x27\x31\x57\x59\x91\x82\xb7\x93\x13\xdd\x29\x6c\xa1\xac\xe6\x3b\x6c\x4f\x6e\xb2\x07\x90\x1a\x4c\xd3\xd9\x4c\xd5\xaf\x71\x85\x17\x5a\x02\xec\x60\x49\x5c\x79\x1b\x45\x14\xbd\x63\xf3\xa7\xde\xd3\x00\xf7\xd4\x60\x53\x7a\x93\x0a\x84\xbc\xff\x46\xab\xb5\x1a\x6c\xfe\xf6\x0d\x79\xcb\x63\x9e\xa1\xbf\x0e\x4d\x30\x9a\xd1\x58\xb5\xa0\xf6\x17\xa8\x60\xca\x5c\x14\x82\xdd\xe3\x84\xe4\x9e\x91\x25\xbd\x63\xcd\x03\x4f\x33\x99\x52\x93\x04\x54\x96\x4f\xdc\xe6\xac\x4a\x5a\x95\x19\x91\x45\x9e\xf0\x95\x89\x9a\xaa\x23\xe8\x06\x4b\x84\x9b\x35\x73\x80\x36\xb9\xb6\xfc\x2e\x7e\xbc\x42\x3f\x3f\x8c\x56\x34\x1b\x64\x85\x18\xf8\xdb\x7c\x11\x58\x6d\xdc\x80\xdf\x15\xc8\xbe\x21\x80\x65\xe4\x30\xcd\x64\x74\x58\xa9\x15\x4c\xea\x9a\x42\x15\x34\x49\xd6\x26\x04\x1d\x26\x4e\x33\x39\xcf\xe8\x12\xf6\xa6\xf1\x5a\x77\x1c\x92\x51\xbe\xef\x12\x0f\x58\x83\x50\x28\x24\xac\x0f\x9a\x73\xda\x4b\x0e\xf6\xba\xea\x8a\x1c\x60\x40\x83\x5e\x4f\x26\x65\x5e\x12\x92\x99\x0a\x40\x52\xbf\x0f\x79\xae\x59\xc5\xd3\xdb\x8b\xb7\x76\x69\x5a\x6c\xc9\xf4\x7e\x93\x66\x61\xa2\x3a\x82\xd8\xd5\xfb\x51\x23\xf4\x6b\xc6\x68\x7c\x25\x92\xf5\x26\xcb\xfd\x38\x52\x1d\xf9\x15\x40\xd7\x05\x18\xfd\x3c\xa6\x9d\x92\x3d\x76\x74\x6d\xc0\x29\x37\xca\xfc\x7e\xe3\xea\x8f\x2c\x64\x1a\x8e\x93\x9a\x5c\x83\x99\x54\xd9\x51\xdd\xfe\x1a\x11\x3c\xc4\xd1\xa3\x44\x24\x7d\x08\xe3\x1f\x5b\xf8\xfa\xa0\x98\x7b\x62\x27\xe3\x91\xb5\xcb\x4d\x69\x74\xa7\xf9\x4d\xfd\xd2\x82\xc7\x48\x80\xe3\x3c\x3b\xb9\x3d\xb9\xb9\xbd\xba\x3e\xff\x7c\xfb\xb7\x71\x58\x06\xab\xb6\xb0\x29\x7b\x7d\xa2\x3c\x2f\x1d\x9a\xbb\xe6\xfb\x74\x32\xba\xfd\xfc\xee\xea\xfa\x73\x39\x71\x70\x4e\x00\xc0\xc6\x6c\x5a\xe8\xd9\x5a\xce\xd1\xc2\xcd\x6f\x23\xdb\x2c\xa4\x54\xac\x3c\x11\x26\xac\x5e\x33\x24\x82\xfe\x7b\xe9\xb1\x60\x8b\x68\xb0\xc5\x7a\xe1\x5a\xe0\x86\x3c\x5c\x33\x64\xf6\x9c\x14\x29\xfa\xf7\xc0\xa6\x2f\x3e\xdc\xdc\x9e\x5f\x77\x60\xe0\x77\xea\x60\x3a\x4f\x37\x11\xe2\xa4\xf2\x16\x46\xfe\xf2\x87\xb1\x53\xed\x27\x00\xe7\x51\x58\xca\xa2\x45\x2e\x71\xb8\xcd\xb9\xce\x05\x30\x78\xa3\x71\xb3\x7f\xe3\xfc\x46\xe3\x8f\x6f\xc6\x57\x57\x17\x9f\x37\x5b\x3a\x33\x9d\x40\x56\x87\xe0\x2c\x32\x23\x67\x5c\xc1\x9f\x1f\x7f\xba\x38\xb9\xb4\x08\x6f\x8d\x01\xa3\x31\x49\xa5\x4c\xda\x31\xa9\x5c\x09\x0c\x11\x5c\xca\xa5\x16\x4a\xfd\x97\x4d\x8b\xe6\x70\xbb\x0b\x21\x58\x42\x62\x06\x4e\xe1\xe0\x43\xcf\x67\x84\xa7\x3c\x05\x16\x1b\xd6\x1c\xfb\xd7\xf2\xee\xfc\x62\xf4\x93\x86\xc5\xe5\x68\xdc\x2e\xbc\xe7\x4d\xaf\x84\x4a\xa4\x1b\xcb\x58\xc3\x43\x73\xde\x9a\xdf\x7e\x5b\xc4\x73\x86\x74\xa7\x8a\x1a\xaa\x84\xbb\xbf\x7e\xa7\x4a\xcc\xd4\x18\xa2\x22\x6a\x7e\x07\x4b\xe9\x6f\xa7\x25\xa8\x81\x74\x61\x8f\xb6\x06\xdc\xc0\x89\x22\x14\xa1\xfd\xef\x54\x03\xd2\xdc\xdb\x27\x9e\xb1\x79\x41\xb3\x78\x8b\xfd\x7d\x1a\x5d\x9f\xff\xf0\xe1\xe4\xfa\xec\x77\xba\xc7\xdb\xda\x0d\x5c\xbd\x81\x3b\x58\x69\x3a\x1d\x17\xd8\x46\x94\xd7\x10\x30\x78\x34\x2e\xab\x2b\x36\x47\x8e\x16\x52\x69\x8e\x02\xfd\x1a\xb4\x5c\x40\xc5\x9c\x0d\xc9\xe9\x82\x8a\x39\x26\x1e\xb0\x65\x64\x8c\x37\x64\xcd\x25\x0b\x46\x5d\xd0\xd5\xc6\xb8\x42\x1a\x8b\xb0\x29\x44\x63\xd2\x40\xcc\x68\x92\xd8\xc4\x9e\x83\x81\x71\xbb\x19\x44\x3c\x6e\x72\xff\x3e\x2f\x8e\x73\x27\x23\x12\xcb\x37\x88\xcd\xe9\xe8\xec\xfa\xb0\xfa\xf2\xa8\xfc\x72\x22\x7e\xf9\x65\x40\xd0\xd2\xfc\x2c\x61\x82\xfc\xa7\x9e\x50\x3d\x27\xaf\x48\x9d\xaf\x0b\x13\x32\x1c\xc6\x83\x18\xc6\x89\x60\xc6\x33\x95\x9b\x71\x6b\xee\x04\xa1\x61\x8f\x7a\x0d\x9b\xd0\xe6\xa8\x7a\x27\x2c\x51\xec\x4b\xad\x7c\x68\xe8\x95\x6e\xe6\xcc\xe0\x1a\xd2\xed\x81\xd8\x77\x01\xb4\xec\x89\x9c\x03\x7a\x28\x89\x51\x8c\x79\xa2\xbf\x52\xe0\x65\x15\x7a\xff\xcc\xd2\xce\x46\x37\x27\x6f\x2f\xce\x3f\xbf\x1b\x5d\x9c\x7f\xbe\xb8\xfa\xe1\x87\xd1\xa5\x5f\xe7\xdd\xce\x8f\xa1\x86\xac\x4a\x5f\x21\x51\xdc\xb3\xd7\x04\x73\xae\xea\xaf\x4f\x4e\x4f\xcf\xc7\xb7\xad\xf7\xff\xec\xfc\xdd\xc9\x87\x8b\xdb\xf3\xcb\xb3\xf1\xd5\xe8\xf2\xf6\xf6\x4a\xf3\xe4\x27\xa7\xb7\xa3\xab\xf0\xeb\x85\xc3\x6e\xae\x6d\x13\x6f\x6f\x4c\x2a\xba\xb8\xa0\x89\xca\x69\x74\xf7\x08\x84\xb4\xaf\xd9\xc7\xa3\x9b\x0f\x63\x2d\x15\x6c\x05\xb1\x8a\x03\x39\x0a\xf4\x73\x18\x90\x5e\x98\x7b\x79\x72\xfb\xf9\xea\xc3\xed\x0f\x57\x7d\x0e\x2f\x88\xb4\x15\x52\x8d\xc6\xab\x23\x4d\xc6\x2a\xc1\xa2\xf5\xc0\xfa\x00\xa2\xd4\x5c\x07\x31\x7a\xf3\xa8\x20\xbb\x11\xc6\x19\x68\x12\x83\x93\x5d\x5c\xfd\xa0\x71\x75\x7c\x72\xfb\x23\x6a\xe3\x04\x33\xd1\x65\x78\x1f\x00\x11\xed\x85\xc8\x25\x5c\x90\xb6\xc5\x3b\xe3\x05\x17\xaf\x27\xe9\x83\x5b\xa1\x05\xdf\x9c\x7f\x3c\xbf\x1e\xdd\xfe\xed\xe6\x6f\x37\xb8\x66\x43\xc3\x81\xd0\x97\x11\xc1\x62\x26\x5b\x77\xa2\xd6\x2a\x91\xf3\x8e\xbd\x38\x53\x05\xb7\xd3\x76\x85\x9d\xf9\x26\x7b\xf7\x34\x13\x5c\xcc\x7b\x5d\x2b\xef\x7e\x4f\xaf\xcf\xcf\x2f\xf5\x58\x9f\x70\xa4\xcd\x1d\xf7\xdd\x0e\x8c\x14\xdc\xd1\x27\xff\x42\xeb\xc3\xfd\x78\x7e\x72\x71\xfb\xe3\xf9\xa5\xa6\x77\x7e\x69\x2a\x4c\xe3\xda\x36\x3c\x1a\xdf\xea\x21\x6f\x8c\x9c\x06\x1c\x68\x91\x63\x20\x5a\x75\x93\x4d\x56\x52\x31\x03\x0d\xb1\x6a\xbf\x4f\xb5\x01\x5b\xe5\x94\xfa\x52\x1f\xab\xd6\xf7\xf9\x65\xdb\xef\x31\xcd\xd0\x06\x37\x15\xa5\xc5\x31\x79\xf5\xed\x8b\x9a\xd3\x4d\xc2\x67\x2c\x5a\x47\x49\x33\xf3\x79\x9a\xb1\x9b\x5c\xa6\x1b\x83\xb0\x87\x8d\xb4\x3e\xc4\xd1\x75\x6f\xfe\x32\x20\xae\x8f\x4e\x53\x57\x64\xdb\x0c\xd4\xa2\xc8\x63\x79\x2f\xea\x6b\x5b\x31\xc1\x94\x1a\x67\x72\xda\x5c\x9f\x77\x1d\xa1\x55\x74\xaf\x61\x40\x06\x70\x7b\x07\x7a\x4e\xcf\x8f\x53\x9e\xc5\x9e\xdf\xd2\xba\x47\xd9\xcb\x17\xf5\x9f\x8d\x55\xe3\x8c\x25\x74\x1d\x6c\x64\x8c\x16\xb7\x8b\x8c\xa9\x85\x4c\xe2\x63\xd2\x78\x64\x72\xbe\x64\xb2\xc8\x03\x03\x64\x8c\xc6\xfc\xd7\x86\x52\xc3\x03\xac\x0e\x26\xcf\x8f\x1d\x70\x6a\xdf\x61\x8b\x11\xe4\x1b\xa8\xfc\xbc\xa4\x1c\xf4\x9b\x9a\x5c\x39\xf1\x99\x27\xe3\x91\x66\xf0\x41\xb5\x41\x93\xcd\x07\xf1\x0b\x5a\x47\x49\x4d\x1f\x8c\x2f\x67\xcb\x6c\x09\x9f\x1e\x2e\x65\x5c\x78\x12\xe8\xe2\x34\x09\x9f\x0e\x02\x0d\xc2\x6a\xe7\xe6\x2c\x59\x21\x0e\x1f\x90\x76\x0d\x13\xa9\xd9\x26\xdf\x54\xa6\xc5\xc0\xd7\x62\x8b\x2d\x3d\xdd\xc8\xb2\xe5\x64\xe0\x61\xd5\x31\x99\x06\xe3\xa3\x26\xc3\x21\x50\x37\xae\xd6\x62\x43\xf7\xef\xdb\xb9\xbe\x30\x74\xbe\x91\xff\x0d\x51\xb4\x54\x37\x1f\x90\x7b\x06\xf6\x11\xa3\x96\x06\xc6\xa1\xb4\x76\x58\x5b\x6b\x65\x89\x6d\x9a\xd9\x94\x04\xa3\x12\xb4\xc6\x84\xb1\xcd\xe9\x20\x75\x75\x4e\xd0\xd2\x23\xb3\x4d\xd3\x07\x6e\x0e\x2d\x9a\x2d\xfb\xaa\x26\xf5\x0f\xa0\xaf\x42\x22\xe7\xbe\xab\xb0\x71\x56\x72\x5e\x1a\x6c\xea\x6e\x5d\x24\x88\xd1\x78\xeb\xeb\xb6\x10\x1b\x37\xee\x06\xc6\x54\xbf\x0f\xda\x2f\x8f\xbe\xe2\xb0\xa6\x06\x69\x6a\xb9\x92\x83\x4e\xc4\x6d\x1f\x34\x74\x29\x06\x9d\x38\xda\x3d\xae\x0f\xff\x07\x1d\x77\xba\x7d\xd4\x76\x7a\x81\x11\x2b\xef\x78\xc2\xae\xb2\xd3\x5a\x6c\x60\x35\xef\xa6\xa5\xb9\x7d\x46\x83\x62\xbe\x89\xce\x2c\xfa\x86\x67\xdb\xc0\xe0\x5e\x93\x6d\xe0\x73\x63\x3e\x17\xdf\x96\x95\x49\xb4\x66\xe6\x34\x77\xb7\x50\x8e\x91\x13\x5d\x04\xea\xae\xdc\x41\x33\xa6\x07\x6b\x7d\x66\xc6\xf6\x0d\xd5\x5b\x57\x69\x3b\xac\xf7\xdc\xe9\xa5\xcf\xd1\x25\xe0\x2e\xd4\x3e\x95\xd7\x09\x69\xd0\xfe\x26\xb6\x8f\x18\x78\x6b\xab\x5d\x98\x84\x21\xfa\x3d\x4f\xe4\xdc\x07\xb1\x00\x01\xea\x71\x75\x02\xe4\xc8\xda\xc0\x4d\x22\xee\x92\x82\x82\x5c\xd0\xf4\xb1\x77\x43\x7b\x8d\x8b\x4d\xcd\xe6\x0a\xc8\x01\x99\xe3\x1a\x61\x99\xce\x40\x75\x3f\xfd\x32\x8e\xda\x09\xa1\x76\x47\xb4\x51\x9e\xca\x26\x34\x75\x1d\xe9\xc3\xce\x00\x83\x5e\xce\xc6\x3d\x09\x8e\xd7\xa5\xb9\x3a\x34\xa3\x4f\x0d\x7b\x72\x79\x88\xab\xff\x95\x0d\xac\xa7\x93\x38\x90\x4d\xea\xeb\x79\x98\x37\x2f\xcb\xa6\x7b\xda\xe6\x4a\x3b\xdc\xb8\xb6\x5d\xb2\x51\x62\x59\xb7\xb2\x31\x70\xad\x67\x3c\xdb\x50\xf3\xe0\x7e\x2a\x07\xb4\xb2\x25\xc6\x15\x06\x94\x43\x06\x0a\x85\x82\xa3\xd3\x92\x80\x13\x5c\x03\x7f\x26\x2c\x1f\x98\x38\xd0\x43\x7c\x6e\x0f\xa1\x59\x09\xb0\xff\xbb\x88\x55\xa9\xff\x21\x65\xc8\x6a\x57\xd8\x91\x1b\xf3\x59\xc5\xf5\x36\xa3\x66\x1f\x1f\x04\xba\x6d\x00\x6d\x33\x75\x58\x19\x4c\x7b\xc3\x98\x9b\x5c\x77\x51\x4c\x87\x91\x5c\x1e\xd6\xa2\xc0\x0f\x37\x13\x8f\x79\x63\x5a\x4d\xe4\xab\x53\xb8\x62\x9b\xb4\x6b\x8f\x8e\x78\xf5\xa4\x56\xb3\xf1\x80\x68\xf7\xa8\xe5\x3d\xb5\x85\xe3\x30\x90\x07\x12\x79\x27\x0c\x74\xbd\x2b\x86\x57\x41\x18\x53\x4f\xc6\xd2\x84\x47\x54\x41\xac\xe9\xa3\x22\x69\x7d\x9b\x54\x55\x3c\x6d\x75\x35\xae\x59\x95\x6b\xa0\x2b\x94\xb5\x13\x8c\x84\xb4\x81\x92\xf4\x89\x86\x0d\x0d\x0b\xae\xac\xf8\xe2\xdb\x78\x31\x28\x45\x97\xdd\x35\xc2\x05\x53\x59\xc5\x74\xfa\x63\x5a\x7f\xf5\x38\x4f\x4b\x6b\x6e\xab\xa0\x4b\x87\x60\xd4\x43\x31\x9d\x88\x66\xb7\x79\x19\xce\x7c\x14\x20\x3b\xa1\x80\x4e\xbf\x26\xce\x69\x6d\x8d\xe4\xc1\xac\xbb\x92\x60\x9e\xf3\x84\x81\x13\x5c\x56\x88\x50\x00\xe8\x2e\x7c\xb4\x57\xf8\xa8\x4b\xd2\xb1\xcd\x93\x43\x49\x43\xb7\x66\x23\xac\xf4\x29\xb1\x96\x8d\x7c\xa3\xbd\xc2\x2e\x4b\x2b\xa9\x2f\xf2\xd2\xeb\x74\x37\xe8\x47\x66\x48\x3d\x2c\xa9\x6a\xe0\x77\x79\xdb\x50\x5d\x19\x3f\x23\x74\xb0\x74\xf1\x3d\x97\x1a\xc5\x03\x72\xbb\xd1\x86\x7f\x3e\xbd\xba\xbc\xbd\xbe\xba\xb8\x38\xbf\x0e\x99\x0d\x36\x35\x78\x5b\x39\x90\xdd\x79\x4b\x73\x7e\x49\x9d\xac\x66\x4d\x40\xe3\xb8\x60\xd1\xdd\xa0\x9e\x30\xb5\x6a\x36\x68\x78\xaa\xfe\x77\xd3\xb9\xf6\x84\x42\xd6\x09\x85\x5f\x89\x3b\xdb\x86\x79\x69\x72\x6a\xbf\x92\x9f\x90\xbb\x45\x14\x2f\x0e\x57\x2f\xa7\x2c\xa7\xe5\x76\xc7\x32\xae\xe6\xc3\xe9\x7e\x7b\x86\xcd\x93\xe5\xe3\x0b\x71\x5e\x3d\x19\x65\x96\x47\xf1\x40\x69\x76\x2c\xb7\x4c\x72\xcf\x9e\xf9\x5a\xb3\x31\x3d\xbb\x98\x24\x5d\x6c\x10\x51\x41\x13\xd3\x6b\xef\xe0\xff\x20\x84\xd8\x40\x89\xd5\xeb\xe1\xab\x37\xc3\x97\x7b\xc7\xc4\x18\xa0\x8d\x17\xc7\xf1\x5f\x88\x4a\x13\x0e\x55\x6a\xc8\x64\xef\x60\xb2\x47\x5c\x17\x0c\x82\xe5\x00\x4c\x92\xa5\x5b\x33\x65\xe5\x7b\x6a\x7e\x30\xa3\xf7\xde\x9d\xc9\xab\x58\xcb\xc1\x73\x6a\x7d\x97\x08\x57\x65\x7d\xb5\x72\x6b\x50\x7a\x3d\x99\x81\x8c\xc8\x62\x3b\xaf\xeb\xfb\x53\xa5\xff\xb5\x03\x6d\x5e\xcd\x30\x42\x56\x8e\x50\x21\x34\x2c\xfb\x7d\x83\xe9\x5b\xf5\x32\x8d\xa1\x1a\xb9\x53\x38\xb2\xcf\xe6\x45\xff\x6c\xc3\x5d\x2a\xc3\xf9\x37\xe4\xb4\xdc\x4d\xc0\x17\xb6\xee\x64\xaa\xbb\x4f\x79\x16\xfb\xbb\xbf\xbf\xfd\x60\xd3\x03\xe8\x7b\x6d\x73\x39\x60\x85\x9a\x19\x8d\x4c\x95\x78\x74\x3a\x43\xa6\xec\x1b\xf2\x76\x6d\xdf\xf3\x03\x18\x80\x2b\x37\xd1\xac\x2d\x1f\xce\x6a\x8e\x4d\x79\xe9\x76\x85\x05\xf2\x8c\xeb\x94\xa9\xb6\x62\xe3\x36\xcc\x04\x7f\x93\x05\x4a\x45\xe8\x1d\xce\x9a\x79\x6c\xa7\x6b\x92\x66\x72\xc5\x63\xcc\x7b\x21\xa4\x18\xfc\x93\x65\xc6\x1b\x60\x58\xf1\xd5\x7a\x71\x96\x2d\xe6\x33\x22\x18\x7e\xf5\xc2\xb0\x1a\xd6\x31\xcd\x38\x0d\xbd\xbf\xfd\xb0\xe1\x2c\xd4\x60\xa8\xdd\x1e\x2f\xdf\xbc\x79\xb1\xe1\x88\x11\x8a\x9f\xb5\x89\x05\x43\x61\xb4\xd0\x0d\x78\x2f\x0c\x01\xf9\xc6\x56\x01\xb3\xb5\xa2\x4d\x18\x6e\x59\x8a\xb7\xc8\xe5\x92\x02\xe7\x94\xac\x49\x2a\x4d\x51\x04\x03\xbf\x00\x33\x07\xb6\x6e\xa5\xf8\x5c\x7c\xe6\xe9\xea\x68\xb2\x57\xd9\xe9\x35\x78\x4a\x4f\x9e\x66\x32\x44\x45\x66\xb2\x40\x77\xe5\xcd\x50\xda\x63\xf2\xaf\x01\x92\xbc\x5f\x2c\xe5\x9b\xec\x09\x28\xf0\x6b\x9c\x8d\xb5\xc0\x34\x30\x9d\x34\x71\x28\x5b\x45\xc2\x5e\x2c\x6c\xfb\x62\xf8\x7a\xf8\xb2\xd6\xc2\xe8\x41\xf4\xcf\x3f\x57\x2f\xed\x2f\xee\xa3\x3b\xd9\x03\x77\x68\x18\xc0\x68\xde\xf7\x0e\xea\x0d\x12\x39\xff\x9c\xb0\x15\x4b\xb0\x15\xb8\x4b\xf8\xda\xcc\x78\xc2\x3e\xa7\x34\x5f\x60\x3b\x8f\x56\x52\xff\x6f\x98\xc8\xf9\x46\xf7\xd2\x59\xff\x73\xb5\x1a\xd7\xd3\xbf\xd1\x5c\x9f\x79\x05\xa3\xcf\x9f\x7d\xd1\xc3\x9f\x3f\x6f\x74\x5b\xe6\x85\xee\xf1\xf9\xb3\x89\xdd\xfd\xfc\xb9\xd1\x00\x93\x6d\x1c\x6b\x08\xf5\x76\xc6\xf2\x81\xd0\x66\xed\xd8\x6c\x59\xe1\xcf\x1b\x17\x7f\x5a\x5b\xd6\x30\xad\x45\x37\xd6\xb2\x92\x80\xbf\xd3\x7f\x35\xf6\x8f\x6c\x85\x81\x40\x78\xe8\xbb\xef\x1a\xbe\xe2\xcd\x71\xdc\xa3\xf3\x8e\x65\x8a\x1c\x68\x6a\xef\x1c\x21\x86\xba\x7f\xb6\x7e\x50\xfa\x04\x6b\xb3\x54\xff\x70\x27\x0c\xa2\x73\x2a\xb3\x7c\x49\xd3\x0d\x34\x50\x82\xe6\xba\x85\x06\x68\xe3\xa7\x88\xa6\x74\xca\x13\xcc\x7c\x08\x4b\x87\x51\xde\xd3\x34\xe5\x62\xae\x6c\xaf\x6d\x57\x32\xa5\x22\xbe\xe7\xb1\xbe\x19\xdd\x13\x3a\x8d\x37\x67\xb3\x7f\x9a\x80\xca\x1e\xea\xc2\xbb\x38\x1e\x44\x59\x5c\x63\x7d\xbe\x56\xa1\xbf\x8d\x64\xa5\x5f\xa1\xdc\xdf\xdb\x1f\xc6\xb5\x8a\x1c\xf8\x5b\x55\xf4\xaf\xf9\xfb\x66\xe9\xbf\x40\x4a\xd5\xaa\x00\x60\xb3\x81\xfe\xdd\xa4\x69\x66\x1f\xc4\x9d\x90\xf7\xe2\x9d\x7e\x85\x95\x63\x68\x37\x65\x02\x0d\xdb\x36\xf9\x3a\x35\x02\x9b\x7b\xab\x17\x18\xab\x3f\x3b\x58\x42\x77\x0d\x51\x28\x99\x2c\xf2\xba\x6e\x66\x57\x23\x70\x57\x23\xd0\x3d\x82\x5d\x8d\xc0\x5f\xad\x46\x60\xf3\x12\x6f\x56\x0a\xac\x57\xb0\xd5\x17\xb8\x76\xb5\xfb\x97\x04\xa4\xea\xb2\x58\x4e\x59\x67\x69\xee\xfd\x93\x1b\x6c\x68\x4b\x8f\x5a\x7d\xe3\xc9\x0d\x11\xf8\x83\x75\x0b\xa0\x86\xe1\xfe\xf9\x0c\x9b\x78\xc3\x5b\x8e\xde\x7c\xfb\xf2\xd5\xdf\xf7\x37\x7f\xc2\xb4\xe0\xc7\xfa\x76\xbe\x7e\xb5\xf9\x33\x82\x54\x5f\xdd\x39\xdb\xf0\xbf\xb1\x27\xef\xdb\x68\x63\x3f\xa7\x55\x53\xbc\x1f\xb6\xe6\x21\xc2\xd2\x60\x90\x85\x33\x26\xbc\x64\x9b\x1e\x3f\x00\xc2\x6c\xca\xf3\x8c\x66\x6b\x53\xce\x1e\x22\x8a\x28\x3a\x27\x63\x6c\xf1\x56\x45\x12\xbd\xcb\x5c\x57\xc7\xaf\x72\x2a\x62\x9a\xc5\x44\x66\x24\xa1\xd9\x9c\x35\x97\xeb\x1b\x94\xc0\x16\xf4\x4d\xf3\x44\x9e\xe2\xa7\x05\x49\xf0\x03\xcf\x93\xff\xa7\x66\x8d\x4b\xba\x64\x64\xce\x57\x4c\x38\x49\x4a\xec\xf2\xbc\x93\x93\xce\xea\x90\xa4\xd4\xd0\xf6\x5a\xc2\x47\xa0\x73\x90\x25\x7b\x0a\x39\x9f\x10\xaf\x34\xd7\x4c\x8f\x85\x98\xec\x69\xf0\x99\x7f\x1c\x2f\x97\x93\xbd\xe0\xb2\x08\x38\xb2\x95\x50\xaf\x76\xa3\x45\xfa\x6a\x38\x1c\xff\xc0\x94\xfe\xd2\xdf\x4f\xf6\x34\xd0\xc3\xc3\x4e\xf6\xa0\x23\xcd\x18\x79\x79\x44\xa6\x3c\x37\x17\x69\x08\x13\x36\x8f\xd6\x99\x0d\xd6\x1b\x1e\xd7\xb7\x92\x83\x72\x36\x11\x6b\x31\x67\x69\x26\x7e\xfd\xaa\x36\xf1\x27\xdd\xc5\x5b\x5b\xdc\x2e\x19\xb6\x85\xd9\x10\x4e\x6e\x08\x92\x84\xd0\xe0\x29\xcb\x06\x27\x37\x36\xc8\x96\x7b\x52\x35\xd8\x4f\x4a\x73\xfd\x16\x1f\x93\xff\xfd\x6c\x32\x89\xff\xe7\xf3\x63\xfc\xcf\x7f\xfe\xab\xfe\x6f\xfb\xf5\x63\x31\x28\x44\x8f\xdd\x5f\x3d\xf5\x47\x91\x77\x64\x62\x2c\x33\x1f\x31\xab\xe1\xdd\x45\xd9\xd2\x12\x4a\x88\xe1\xc1\xb3\xd0\xb4\x25\xcd\x64\x2e\x23\x99\x58\xee\x05\x87\xf6\x42\xe6\xcc\xd6\xda\xcf\x25\x79\xf9\xa7\xef\x37\x9b\x2c\xe9\x03\x5f\x16\xcb\x63\x72\xf4\xed\xb7\xaf\xbf\xf5\xfc\xce\x05\xfe\xfe\x72\x4b\x42\x9a\xc8\xf9\x0d\x5b\xb1\x8c\xe7\xeb\x9b\x28\x63\xac\xc9\xeb\x6d\x6c\x7b\xff\xa2\xd9\xc3\x6e\x3f\x91\x73\xa2\xcc\x2f\x84\x4e\xe5\xca\x5a\x7e\x12\x39\xf7\x56\xc9\xd7\x98\xa3\x98\x28\x2b\x89\xa9\x3c\x96\x45\xee\x3c\x27\x64\x74\xf9\xee\xca\xf7\x74\xb4\x1d\xbf\x7e\x92\xde\x33\xb5\x78\x4f\x1f\xae\x19\x04\x3d\xde\xf2\x00\x39\xab\x97\xc3\xe5\x4b\x56\x69\xe0\x21\x03\xb4\x9c\xe5\xf7\x26\xd5\xb1\x1e\x07\xbe\x84\x1c\xa7\xb9\x1c\x2c\x99\x5a\x90\x94\x31\xbd\x04\x35\x24\x50\x3b\xdf\x8f\xad\x46\x73\xc4\xe2\x83\x32\x0d\x69\xa9\x45\x8d\x6d\x66\x84\x79\x46\x23\x36\x2b\x92\x72\x2e\x63\x9f\x69\x1d\x59\xf3\x4e\xb5\xd1\x19\x79\x3b\xba\x3e\x2b\x5f\x6c\x39\x23\x2f\x5f\xbd\x50\x56\x7f\x6b\xbc\xb8\x50\x69\x68\xaa\x59\x6c\x7e\xc0\x7d\x62\xca\x20\x5a\xa8\x11\xdb\xbd\x21\x72\x58\x87\x0a\xcc\xae\x81\x8a\x47\xef\x51\x13\xcc\xef\x72\x69\xce\x26\x18\x9b\xdd\xff\x78\xc7\x54\xa9\x7b\x99\xf9\x02\x32\x1a\x07\x7b\x65\x92\x57\xe0\xa5\x34\xdd\xe0\x2c\x67\x85\x31\x91\x6f\x1e\xa8\x7f\x13\x75\xf8\x3d\x0a\x54\xe1\x37\xdb\xc2\x6f\x2b\x50\x75\xbe\xe5\x68\xec\x68\x09\x3f\xde\x80\x17\x7a\x5d\x68\x4e\xe9\x8e\xad\x41\x20\x33\x83\x58\xb7\x41\xf0\x37\x48\x65\xbc\xaf\x2a\xdd\x7c\x98\xe0\x77\x2d\x90\x98\xd8\xe6\xf0\xaf\x9e\xba\xd5\x66\x65\x40\x35\x70\x6d\xb9\x34\x86\x24\x90\x4a\x86\x84\xbc\x47\x8e\xa0\x6d\x58\x42\xa8\xe6\x34\x78\x6c\x07\xb9\x63\x4d\x67\xf2\xfa\xa7\x9b\x71\x21\x5d\xec\xd3\xc6\x76\xf6\xdd\x5c\x95\x19\x9b\xb1\x8c\x89\xdc\x2b\xf9\xb4\x65\x8e\x96\x2b\x96\xad\x38\xbb\x3f\x34\x25\xce\x06\xf7\x3c\x5f\x0c\xf0\x01\x54\x87\x70\x4c\x87\xdf\xc0\x7f\xda\x16\x76\x7b\x75\x76\x75\x4c\x4e\xe2\x98\xc8\x7c\x81\x8c\xbe\xa6\x49\x80\xf1\x6a\xe8\x68\x04\x0e\x40\x20\x3d\x20\x05\x8f\xff\x4f\x0f\x7d\xde\x16\x62\x65\x7e\x99\xde\x50\xbb\x01\xb2\xb7\xd6\xcf\x2d\xac\x54\x03\xef\x06\x0f\x51\x66\xc0\xfe\x6a\x14\x59\xf6\xc1\x01\xd4\x5a\xb4\xb0\x6f\x76\x17\x53\x29\x13\x16\x22\x9b\xa4\x34\xbc\xb4\x6c\x02\xbc\x60\xda\x79\x9a\x10\xcf\xd2\xfe\xbb\xbe\x92\xb7\xd2\xd2\x0c\x4c\xd5\xe1\x5b\x48\x03\xf3\x7c\xbd\x34\x35\x53\x25\x5c\x4b\x12\x89\x41\xa2\xbe\xd8\x36\x02\x84\x75\x59\xa7\x55\xee\x2b\x9e\x67\x05\x0b\xbf\xe2\x01\xa8\xa6\x19\x9b\xf1\x87\x13\xb7\xba\x63\xa7\xa8\x37\xf6\xf4\xa9\xc4\x29\xf0\xd9\x85\x16\xf5\xa2\x91\xbe\x1d\xb5\xc9\xd8\xa4\xbf\x50\xe7\x59\x50\xf5\xf6\xab\xfa\x32\x1c\x4a\xe9\xc7\x10\x9b\xbf\xa2\x7c\xf1\xa1\x2e\xe5\xe3\x24\xbc\x88\xc7\x3e\x45\x80\x67\x0b\x60\x74\x06\x7b\x26\xf0\x72\xd5\xc8\x96\xad\x9d\xb2\x6a\x1f\xf1\x13\x44\xbe\x76\x91\xde\xb7\x32\x47\xb0\x37\x3e\xe5\x56\xb4\x67\x1c\x90\xb7\x92\xa9\x3a\x28\x9f\xc9\xf8\x6e\x49\x81\x7e\xe8\x26\x7b\x9a\xc4\xa8\xa1\x33\x0b\x8a\x92\xbd\x64\x70\x82\xaa\xcc\x4e\x51\xb4\x45\xe2\x6c\x97\xcd\xda\x45\xd1\x76\x89\x33\x3c\x72\x97\x28\xda\x29\x71\xb6\x2d\xba\x43\x14\xed\x14\x38\x7b\x8d\xdd\x5f\x12\x0d\x5f\x61\xfc\xf4\x79\xb9\x5a\x04\x49\xf2\x14\x29\xd4\xf8\x2c\x18\x03\xc2\x68\xdc\x49\xf9\x6e\x9a\x1d\x00\x18\x90\xfd\x5a\xdf\x5f\x2c\x9b\x86\xfa\x5a\xbc\xc7\x66\x06\x2f\xed\x33\x8e\x47\x76\x14\x13\x07\x02\xca\xd9\x99\x2b\x6f\x18\x9f\x0f\xb0\xa3\x97\x24\x40\x4f\xea\x47\x5e\x5c\x44\x59\xae\x09\x5c\x48\xc5\xba\x36\x9d\x49\xfc\x92\x2f\xd8\xf2\xf1\x44\xb7\x09\x0b\xac\xa8\x56\xa9\xb3\x1d\xb7\x70\x2d\xea\x69\x3a\x6a\x9b\xfa\xcf\xb9\x02\xe1\x57\x20\xb6\x5f\x4d\x93\x61\x4e\xf8\xfc\x01\x6d\x1f\xfd\x91\xc8\xe9\xe1\xc7\x22\x99\x39\x59\x38\x7c\x6b\x36\x03\x11\x3b\x92\x3e\xdb\xa1\x9b\x12\xb0\xd9\xa0\xcc\x3f\x64\x24\x2a\xaf\xb6\xa0\x7c\x64\xb0\xa0\x07\x5b\xc3\xea\x0c\xca\x48\x61\x79\x68\xc5\xcc\x42\x9f\x8c\x41\xd5\xea\x3a\x51\xc8\x7f\xba\xce\xfe\xff\xbd\x91\xe8\x42\xd2\xf8\x2d\x4d\xb4\xfc\xba\x05\x35\x6a\xf4\x7a\x22\x32\xb9\xa3\x05\x11\xca\x14\x29\x76\xdb\x0e\x47\x62\x9e\x31\xe5\x1d\xbb\x89\x77\xbf\x01\x92\xd5\x81\xf4\x48\x44\x6b\xc0\xe6\xdf\x12\xd9\xfc\xdd\x36\xbf\xc5\xaa\x63\x6e\x28\xb5\xca\x65\x06\x4e\xea\xf8\x15\xe2\x00\x2c\x9f\x46\x5a\x3a\x66\xf1\xe5\x86\xe7\x40\x95\x71\xc6\x7a\x02\xd8\x6f\x22\x29\x62\x8e\x31\x1e\xe4\x67\x70\xad\x00\x67\xa4\xf8\xa3\x35\xe1\xc3\xb7\xc6\x79\xe2\xeb\xfb\x50\x40\x55\xd7\xaf\xe3\x3a\x31\x66\x56\x1f\x5c\xf3\x98\xd0\x5f\x7b\x1d\x25\x9c\x02\xb3\x35\xff\x88\xd4\x8c\xf3\x5b\xb9\x45\xec\xfc\x17\x76\xfe\x0b\xee\x11\xec\xfc\x17\x7e\x4d\xff\x05\x4d\x2e\x36\xdd\x16\xac\xbb\xac\xe3\x7f\x64\x1b\x97\xa7\xf7\xe5\x7d\x17\x6e\x17\xac\x92\x1d\xad\x4e\x55\x93\x27\xcf\x33\xf8\x14\xf7\x83\x3b\xc6\xd2\x2b\x2c\xfa\x99\x5c\xb2\x87\xfc\x47\x4f\x1e\x29\xaf\x15\x42\xdf\x73\xdd\x19\x16\x66\xca\x86\x26\x44\xb0\x87\x7c\x21\x53\x63\x59\x80\x90\x7a\x74\x27\xf0\xf2\xc1\x8e\xd5\x0c\x60\x4a\x34\x50\x35\x8e\xa3\x63\x78\xe9\x86\xec\x28\x9a\x50\x4f\x9e\x80\x47\xb9\xee\xe2\x1b\x57\x8f\xa2\x4a\x55\x5f\x61\xf2\x43\x4f\xf6\xf4\xe2\x88\x5e\x9d\x5e\xf7\x9f\xb5\x88\x2e\x54\xce\x68\xac\xc1\xeb\xfc\xaa\x58\x32\xfb\xf3\x64\xef\x99\x31\x80\x3c\xf7\x4d\x61\xec\x07\xa5\x2b\xf5\x34\xa3\x22\x5a\xd8\x73\xba\xd4\x53\x4b\x61\x7c\xec\x87\xd1\x6c\xee\xb5\xd5\xb7\x6a\x0d\x97\x5d\x46\xbf\x2d\x4d\x7e\xc6\xfc\xe6\x48\xbd\x5e\x8e\xe7\xb1\x66\xbd\x86\x05\xcf\x3f\x76\x87\x51\x2f\x04\xa1\xb0\xf9\xac\xcf\x2d\x2a\x73\x97\x97\x99\xb3\x2d\x01\x36\x52\xbf\x29\x6a\x62\xec\x7f\xf9\x82\x7a\xf5\xa8\x5c\x91\x9c\x66\x73\x96\xdb\x4a\x2b\x5c\xe1\x7d\x24\xa3\xaa\x28\x23\x00\x81\xe5\xf8\xae\x09\x59\x0b\xfd\x0d\x0c\x5a\xb7\x7a\x1a\xbf\x7e\xb0\xef\x69\x02\xa3\xac\x05\xcb\x46\xc0\x5a\xcc\xab\xca\x38\x6f\x0b\x33\x4f\x28\xb2\x17\x76\x65\x41\x59\xab\xad\xc5\xf9\xc1\xa4\x67\xb8\x00\x08\x4d\x2f\x21\xc1\xc5\xbc\xc5\xc6\x6b\x41\x04\xe0\x29\x2f\x09\xd2\x09\xeb\xf2\xc2\x96\x69\xee\x33\x5b\xb5\x6e\xa9\x58\x9e\xa0\x40\x71\x21\x23\x9a\x58\x97\xaf\x4e\xc9\xee\x3d\xfa\x21\x58\x47\x30\x39\x23\x98\xe7\xa3\xf4\x0d\x33\x5b\xb5\x7a\xa3\x7b\x50\xa6\x86\xf0\xfa\xe4\x06\x72\x38\x98\xb8\xe1\x88\xf1\x15\xb3\x45\x1a\x8c\xad\x1a\x93\x84\xe0\xd1\x26\x52\xa6\x9a\xc7\x34\x0f\xa0\x97\x36\x8a\x32\x1a\xc6\x4a\x74\x36\x25\x38\x9d\x2a\x99\x14\x39\x4b\xd6\xa6\x1e\x90\xa2\x1b\x99\xa3\xc8\x13\x9f\x85\x34\x6c\x93\xee\x69\x91\xb6\xef\x15\x17\x73\x45\xe6\x4c\xb0\x8c\x3a\x57\xc7\xb7\xe5\x8e\x47\x95\x74\x8b\x7b\x3d\x2c\xc4\x5f\xcd\x3e\xdc\xc3\x3a\xdc\x6e\x1b\xfe\x4a\x96\xe1\xad\xec\xc2\x7d\x34\xc5\x1d\x36\xe1\x3f\x8c\x45\xb8\x0f\xac\x7a\x58\x83\xbf\x8e\x2d\xb8\xd3\x12\xdc\xc3\x0e\xdc\x61\x05\x6e\xb1\x00\xf7\xd1\x9b\xf8\x7f\xd5\x14\x63\x34\xee\xf3\xac\x57\x25\x28\x5c\xee\x98\xcc\xa4\xa1\xd5\xd3\x35\x88\xaf\x96\x3e\xa5\x32\xf3\x3e\xeb\x86\xfc\xe7\x12\xbb\x6b\xcc\x82\x17\x1d\x3c\xe0\x44\xe9\x3d\x0c\x8e\xa1\x07\xd6\x0a\x56\xd9\x0b\x27\x7b\x3f\x4f\x8a\x17\x2f\x5e\x47\xa3\xf1\xea\x08\xfe\x62\x7f\x3f\x86\xb9\xbc\xce\x8e\x60\x34\x2b\x3b\xbc\xc1\x0e\xc7\xf8\x05\xf4\x82\x2f\xd0\x3a\x05\xd9\xef\x61\x2d\xb5\x4d\x38\x8b\xb2\xdc\x46\xe8\xfd\x28\x5f\x66\x00\x96\x88\x49\xe9\x0f\x3d\x65\x89\xd4\x74\x19\x18\x6f\x13\x5b\x03\xb4\x0e\x0a\xf2\x55\xfe\x80\x7e\x22\x0b\xe4\xb1\xe9\x16\x64\xd8\x97\x7b\x66\x18\x6e\x9a\xe3\x72\x0d\x64\xb7\x7c\xd5\x75\x97\x47\x33\x2a\xfa\xa9\xcd\x4b\x7e\xa5\x76\xb2\xc8\xab\x86\x5e\x20\x97\x3d\x19\x03\x26\xd6\xc1\x86\xb4\xa2\xc1\xae\xa0\xaf\x6d\xbd\x0c\x53\x7d\x23\x9a\xdf\x9c\xb2\xfc\x9e\x31\x61\xdc\x0b\x35\xa3\x01\xf0\xc6\x64\xd6\x46\x9c\x71\xd7\x0d\xb9\x27\x4b\x2e\xdc\x7f\xc2\xa6\x3e\x82\x99\x81\xcf\xc8\x54\xe6\x0b\xc2\x44\xac\x90\x33\xd3\x1c\xd6\xdb\x1f\xc6\x9a\xa8\x0c\x75\xd3\x13\x73\x5f\xda\xd9\x74\xbd\x24\x1c\xfb\xa8\xff\xd8\x47\x1b\x63\x0f\x89\xbe\xa6\xbe\x09\xcc\x36\x2b\x27\xfc\x48\x82\x0b\xba\x55\x61\x38\x60\xd8\x57\xb5\x89\xec\x41\x78\xd7\x6d\x0e\x7f\x9e\xc8\x29\x4d\xaa\x2c\xd8\x33\x53\x8f\xad\xbc\x2e\x5b\x62\x22\xf2\x22\x66\x7b\x9d\xa8\x68\x76\x5f\x79\x9d\x68\x68\x2e\xe4\xfd\x46\xc0\x39\x2a\x7d\x0c\x05\xf3\x6d\xa7\x9b\x87\xda\x64\x98\x4a\xf7\xdb\xb0\x41\x7f\xb2\xf7\x41\x31\xa8\xf5\x35\x9e\xec\x91\x25\xa3\x42\xd5\xd7\x56\xb2\x3d\x1a\xf9\x8d\xbc\x5d\x5b\xec\x50\x0f\x72\xe9\xc9\xd9\x8e\x1f\x1c\x52\xc3\xba\x75\xcb\x5b\x9d\xc2\x4e\xa1\xee\x51\xa8\x27\x32\xba\xa3\x33\x6c\xc3\xbe\x8a\x5e\x5d\xcf\x70\x82\x33\xac\x37\xb4\xeb\xee\x8f\x1e\x1d\x7b\x7d\x75\x1b\xaa\x76\xe7\xe7\xf5\x4e\xe1\x6e\x56\xb9\x53\xb8\xef\x14\xee\x7f\x20\x85\xbb\x4b\x41\x7a\xaa\xdd\x37\x29\x52\xf5\xd9\x5e\x17\x1f\xb0\x0d\xb7\x71\x03\x31\x4b\x58\xde\xed\x8f\x7a\x86\xcd\x08\x17\x31\x14\xba\x56\xb6\xe0\x2c\x57\x48\xfb\x88\x25\x7e\x1a\x6f\xa7\x0c\x2a\x49\x62\x1f\xaf\x74\xee\x78\xeb\xbb\x78\x3e\x43\x27\xbe\x94\xe6\x1c\xa2\xed\xd7\xc8\xbf\xcb\x24\x06\xae\x20\x61\x54\x99\xa9\xbd\x2f\x35\x57\x39\xbd\x63\x22\x59\x93\x3c\x63\x76\x79\x38\x0b\xad\x66\xf9\x32\x6a\xd9\x56\x16\x2b\xaf\xb2\x48\xf6\xeb\x13\x10\x4d\x07\x70\xa4\xcd\xef\x0c\x60\x9b\x5f\xfb\x52\xae\xc1\x4a\x76\xbc\x47\x98\xf7\xd8\x4c\x91\x59\xe5\xae\x1a\xcc\x99\x80\xec\x98\xd3\x82\x6b\x0c\x84\x09\xec\xf4\xcf\x80\x32\x81\x2d\xc5\x96\xf4\xbe\xe5\x4b\xa6\x72\xba\x4c\x8f\x89\x28\x92\x64\xd2\xc8\x9b\x04\x62\x10\xc0\xec\xab\x70\x37\xa8\xfc\xd7\x9c\xf0\x8d\x93\xc6\xad\x62\x70\x9a\xbf\x6f\xf2\x38\x9b\xcb\x6c\xb2\x39\xcd\x16\x3b\x4e\xc7\xac\x72\xc7\xe9\xec\x38\x9d\x3f\x0e\xa7\xd3\x24\x25\xfd\x98\x1d\x3f\x81\xaa\x3e\x8f\xe0\x77\x12\xaa\x54\x8f\x34\x03\xd8\x8c\xc4\x2c\x4a\xa8\xb5\xb9\x03\x10\xf5\xc5\xd5\xe7\x94\x2d\xcb\xbc\x65\x4b\x29\x78\xc0\xb8\x89\x1a\x0c\xae\x5c\x05\x23\x5e\x4b\xb0\xa7\xa1\xc7\x24\x2a\xbf\xf8\xca\x3a\x3c\x6a\x8c\x94\x59\x1e\xd0\xa9\xd3\xa9\x2c\x72\x12\xb1\x4c\x83\x4e\x63\x1b\x44\xf8\xd4\x57\xb5\x95\x1f\x63\xbb\x12\xbf\xc5\x9d\xf4\xd1\xd6\x67\x6e\x00\xea\x35\x3e\xcf\xfc\x90\x84\x46\xc6\x21\x74\x3b\xd6\x0a\x6f\xdc\xb8\x96\x80\xb4\x63\xd5\x1f\x36\xbb\x94\x61\xe1\xf0\x25\xa1\xb9\x71\xbd\xef\x42\x51\xfd\xa9\x74\xe5\xe5\xed\xc7\x94\xd2\xe4\x85\x5b\x8f\xaf\x39\x14\xc9\xd8\x2c\x63\x6a\xe1\x65\x87\xad\xed\x16\x47\xb4\xcb\xe2\x0a\xdc\x5a\x63\xfa\x65\x8d\xa1\xc1\x5b\x5f\xf1\x73\x01\x48\x6e\xdc\x7b\xdc\x99\xfb\x80\xca\x29\xf2\x8d\xc8\x79\x6a\x4c\x6e\x76\xda\xd8\xcb\xa5\x44\x8b\x1e\x5e\x41\xc1\x58\xcc\xd0\xe2\x6a\x2e\x90\xe2\x1a\x93\x38\xa8\x3c\x0d\xc8\xc9\x74\x6d\xc6\xdd\xc2\x51\x69\xce\x44\x67\xe6\x80\x13\xdd\x88\x2c\x64\x12\x2b\xec\x60\x17\x21\x2b\xfb\xe9\xf6\x66\xdc\x29\xcf\xe2\x8f\x6f\xfa\x18\x70\xdf\x8e\xae\xcf\x3e\xbe\x71\xbd\x8c\x2b\xfe\xa0\x0e\xdb\x02\xc8\x84\x1e\xf9\xcd\xe3\x0d\xb8\x09\x55\xf9\x5b\x29\xc3\x61\xf8\x9e\x25\x5e\x38\x7d\x0c\xa4\xca\x64\x38\xe0\x75\xe0\xfc\x1e\x1e\x92\xe0\x33\x8c\xee\x44\x79\x42\x64\x91\xa7\x85\x4f\x95\x6d\x3f\x7d\xac\x93\x7a\xea\x6b\x56\x0b\x10\xdc\x76\x67\x9e\xee\xa1\x4d\xda\xa6\xbf\xc1\x46\xc1\x11\x23\x1b\x9d\xf5\xdd\xd9\x35\xb4\x27\xa3\xb3\x32\x3f\x10\xac\xe7\x69\x8b\x08\x49\xb9\xde\x15\x40\xe2\x4f\x4b\x12\x6c\xba\xa4\x33\xca\x96\xde\xf7\x6d\x9b\x65\xac\xbc\xdc\x7e\x70\x21\x96\xeb\x77\x96\x11\xc3\x32\x9e\xb2\x8a\xae\xf8\x60\x20\x00\x47\xbd\x09\xc0\xd1\x76\x04\xe0\x68\x47\x00\x9c\xed\xec\x08\x80\x67\x67\x3b\x02\xf0\x5b\x12\x80\xb6\x5f\xa7\xf3\x4e\xff\x64\xbd\x44\x44\x41\xe0\x9b\xf5\x3f\x83\xbc\x73\xc7\x9d\x47\x03\xf5\xb9\xca\xe9\x34\xe1\x6a\xc1\x7a\xb2\x25\xfa\xf0\x72\x99\xd3\xc4\xf1\x2e\x04\x5b\x3d\xab\x46\xd2\x3b\x21\x8a\x29\xd4\xc7\xb5\x81\x29\xe0\xa2\xe7\x5f\x5f\x2f\xaa\x19\x58\xdf\xd1\x57\x5a\xdf\xa5\xcc\xbf\x1c\x08\x85\x14\x83\x5f\x65\x99\x4f\x83\xe4\xd7\x58\x26\x44\x2d\xf5\x03\xdf\x18\x9b\xba\x0f\x23\x40\xcf\x3a\x16\xab\x7e\x8c\x3a\xe9\x8c\x2e\x0f\x08\x3c\xe0\x97\x50\x57\x71\x94\x6f\x70\xb9\x86\x30\x05\xe9\x5e\x55\xcf\x74\x3c\x41\x7f\xb2\xc0\x0e\x02\x5e\x65\xf7\x0b\xa9\x58\xa5\x82\x27\xf7\x8c\x50\xbf\x57\x4e\xf5\x29\x15\x19\x5f\x20\x0f\x0f\xc8\x74\x5b\xa4\x94\xe1\xe8\xc9\x5e\x3e\x21\x19\xc9\x18\x55\x52\xc0\x3b\x6c\xf2\xbe\xb7\x3d\x67\xbd\xd7\xd5\xf1\xa4\x35\xd7\x05\xab\x31\xca\x04\xa0\xcb\x78\x23\x70\x9c\x2f\xb0\x1e\x68\xd5\x7b\x39\xb7\xeb\x94\x39\x26\xba\xca\xe9\xd2\xba\xcd\xd5\x02\x21\xda\x4f\x7b\xc5\x69\x89\xb2\x83\xdc\x54\xb2\x5a\x32\xb5\x38\xd0\xd0\xd7\xbf\x32\x51\x16\x3f\xb0\x4e\x4a\x6d\x09\x2c\x08\x16\x8e\x19\xd8\x37\x0c\x6e\x94\x51\x99\x3f\x15\x50\x5d\xfc\x77\x67\x3a\x08\xa4\x44\xbd\x28\x24\x52\xa2\xa3\x06\x25\x3a\xda\x51\xa2\x8e\x1d\xec\x28\xd1\x76\xeb\xda\x51\x22\xf3\xf9\x23\x51\xa2\x16\x17\xf5\x81\x8f\x79\xef\xd7\xec\x28\xdc\xac\xc9\xca\xf6\x6e\xe9\x19\xb3\x6d\xef\xfa\x76\xa0\x22\xbe\xd3\xd7\xe4\xa2\x6a\x8a\xa6\xc1\xdc\xda\xd5\x37\xed\x82\xa0\x0f\xc9\xa0\x85\x0f\xda\x10\xaf\xb9\xa1\x89\x37\xa6\x42\xb8\xb0\x95\x05\x0f\xf4\xcb\xe5\x04\xc1\xe0\xa8\xeb\x77\xa7\xaf\x5f\xbf\xfe\x1e\xf4\xef\x98\xcf\x19\x42\xd8\x3e\xdc\x9e\xb6\x28\xe9\xf5\x1c\x03\xff\x22\x45\x91\x98\x8a\x5b\x6e\x01\xfa\x26\x50\xfd\x48\x87\xf1\x58\x5d\xf0\x04\xd9\xdf\xda\xa1\x94\xe9\x44\xc0\x58\x6f\x0d\xd0\xc6\x76\xd3\x2e\x0b\x3f\x49\x05\x8e\xb3\xf6\xe3\xf5\xaf\x4d\xdb\x0d\x66\xdf\x2c\xfd\x2b\x3d\xac\x30\x6d\xdb\xcb\x1a\x0e\xfc\xed\x03\xa0\x5e\x60\x2a\x17\x98\x73\x01\xfa\xa7\xfe\x24\xf7\xac\xea\x54\x06\x28\xe9\x05\x7f\x01\xda\x3f\xa7\x39\xbb\xa7\x5b\xe4\x01\xfd\x01\x3b\x94\x3e\xdf\xce\x86\xbe\xc0\x72\xca\xaa\x5d\x5b\x30\x1f\xb6\x8b\x6f\x49\x4f\x5f\x51\xc2\x68\x26\x58\xfc\x2e\x93\xcb\xfe\x6b\xba\xa8\x3a\x55\x58\xe7\x5a\xa3\x33\x36\xa7\x59\xdc\x3a\x31\x41\x22\x97\x99\xa8\x55\x38\x70\x1b\xbc\x1e\xf2\xbd\xb3\x9f\x5e\xa8\x48\xfa\x71\x7a\x1b\x9b\x1b\xcd\x8c\x7f\x3c\x72\x02\xaa\x4a\x9a\x2b\x33\xfb\xe6\x1e\x90\x50\x5a\x2f\xf7\xd3\x60\x1a\x51\xf3\x69\xa2\x76\x99\xc8\x49\xa1\x9c\xbd\xb7\x6e\x98\xf4\x3e\x4f\x52\xc6\x49\xdc\x76\xb1\x3d\x1b\x3b\x87\x0d\xdb\x30\x47\xf4\x57\xc1\x13\xa2\xe6\x78\xb8\xb2\xf8\xd2\xbd\x79\x08\x8b\xfc\x52\x7b\xea\xe6\x4d\xc8\x53\x19\x3d\xee\x1c\x52\xe5\x09\x0a\x3a\xe7\x80\x2b\x80\xb3\x57\x99\xdd\x23\xbe\x13\x48\xe6\xfd\x9b\x33\x63\xe5\xab\xd5\x4b\x2e\x34\xaf\xd6\xa6\x60\xb8\x7b\xb5\x5a\x36\xb2\x7b\xb5\x5a\x16\xb4\x7b\xb5\x36\x3f\xbb\x57\x6b\xf7\x6a\x85\x5a\xed\x5e\xad\xd6\xee\xff\x96\x9e\xff\x5f\x2b\xdc\xd0\xe4\x9b\x71\x28\xd7\x57\x71\xca\x37\xe9\x6b\xab\x59\xf0\x57\xc7\x2d\x7f\xa3\x85\xc7\x31\x7f\x73\xad\xe6\x5c\x2a\xcf\xfc\x8d\x26\x93\xdf\x4b\x35\xc4\xcd\x1d\x36\xea\x21\x9a\x2c\xc3\x65\xee\x29\xbf\xef\xeb\xce\xdf\x7f\xe7\xef\xef\x1e\xc1\xce\xdf\xff\xd7\xf3\xf7\xdf\xb8\xc1\x6d\xc5\x10\xb1\xeb\xd4\xf3\xc2\x85\xf3\x7c\xb5\x39\xf9\x03\x89\xf5\xdf\xf1\xcd\x95\xba\x8d\xad\x39\x64\x55\x79\xfc\x18\x45\xa7\x09\x5e\x2c\x57\xe3\x7b\x66\x35\x11\x28\x84\x68\xf1\xa3\xf7\x3f\xe3\x66\xc8\x1f\x3e\x78\xbd\xb3\x7c\x70\xd5\x4d\xed\x5a\xe1\x6f\xc3\x87\x05\x17\xd7\x63\xfa\x00\x07\xe8\x9b\x1e\x98\x21\x73\x68\x4e\x70\xc4\x93\x56\x51\x16\x0a\xbf\x66\x34\xf6\x89\x60\x75\x21\xb0\xd6\xda\xa6\xcf\x23\x71\x01\x24\x42\xf1\xb9\x80\x58\x12\x91\x57\xe3\x92\x25\x9f\xd7\xca\x02\x37\xd6\x26\xa1\x1b\x4d\x4c\xed\xc3\x54\x0a\x10\xc8\x55\x11\x2d\x08\x55\xe4\x1d\x4b\xf8\x83\x49\xa4\x51\xa6\xbf\xb9\xa7\x5c\xdf\xf2\x99\x0c\xe4\x27\x89\x22\xa6\x94\xa5\x50\xe5\x4a\xb6\xcd\x83\xb8\xa2\x19\xa7\xdd\x9e\xe8\x1f\xb1\x59\x15\xb4\x82\x11\x0a\xa6\xb7\x83\xcb\x4e\xad\x0f\x88\x3b\xd9\x25\xa2\x78\x22\x67\x38\xd3\xb8\xf1\xd5\xeb\x63\x03\x06\xb6\x56\xc8\xde\x6c\xb1\xc9\x19\x7a\xd6\xda\xe4\x0c\x37\x9b\xfc\x6e\x38\x43\xbc\x85\x5b\x95\xca\x86\x2e\x3b\xae\x70\xc7\x15\xee\xb8\xc2\xdf\x9a\x2b\xdc\xa4\x4f\x5d\x25\xb2\xf1\xbe\x3f\xb6\x48\x76\x92\xc8\xfb\xd1\x78\x34\x1e\xd3\xe8\x8e\xe5\xea\x5d\x26\x97\x9f\x64\x76\x97\x48\xda\x1d\x03\xb8\x7f\xd2\xd6\xdb\xc6\xfc\x57\x8e\x2a\xb0\x52\x1f\x13\x60\x2a\xea\xc4\x84\x92\xac\x48\x20\x45\x71\x9c\xc9\x94\xe8\xa1\x09\x13\x11\x4d\x55\x91\x80\xeb\x42\x9e\xd1\x99\x96\x66\xb1\xb2\x8f\x9d\xca\x37\x66\x55\x8e\x0d\xc8\xef\xd6\xf5\xd8\x00\x32\x1f\x7f\xba\x38\xb9\x7c\x3c\x68\x82\xdd\xbf\x00\x6c\x60\xec\xdf\x0c\x38\xf7\xea\x26\x8b\xce\x54\x7e\xba\x60\xd1\x5d\x27\x30\x6e\x58\x6e\xf4\x9f\x03\x47\xd7\x3e\x88\x74\x67\x22\x05\x39\xf9\x74\x43\xce\x4f\x5f\x95\x11\xae\x6a\x48\x4e\x0c\xbf\xe3\x5b\xfd\xaa\x5e\x01\x1b\x8b\x94\x4c\xf6\xce\xe4\xa5\xcc\x17\xfa\x7a\x42\x89\x2e\x2c\xef\x67\x6b\x90\x9d\x61\x04\xe9\x64\xaf\xa3\x7a\x7b\x39\x88\x0f\x26\x4c\x14\x3e\xa5\xfe\xa0\xea\xe5\xfb\xd1\x2c\xc4\xd7\xcd\x2c\x6a\x2b\x29\x60\x9a\xce\x4e\xa5\x10\x2c\x82\x58\xa0\xaa\x12\x0a\x17\xf3\xbe\x75\x10\xdf\x8e\xdf\x75\x0c\x81\x4e\x3e\x5c\x90\xb7\xe3\x77\x64\x29\x63\x7f\xe9\x6c\x3f\x16\xe3\x31\x26\x49\xc9\x6d\xe8\x89\xf4\x79\xe7\x7c\xc9\x88\xc6\x49\x32\xb5\xb5\x6a\x82\xe9\xff\x4c\x37\x4f\x1f\xf4\x28\x42\x8f\xae\xd2\x84\xb3\x90\x0a\xa2\x85\x35\xc3\x3e\x85\x5b\xe2\x1b\x34\x63\x34\x5a\xb8\x65\x74\x4c\xb9\x1f\x65\x6a\xc8\x13\xbe\x4c\x33\xc8\xbf\x6c\xe2\x98\x41\x34\x17\x11\x20\x58\x2a\xe3\x41\x2e\x07\x6d\x85\xc4\xca\xad\x2a\xdc\x18\x26\x65\x36\xae\x8c\x4e\x18\x33\x86\xdd\xea\xb5\xc7\x6c\x5a\x60\x3d\xfd\xb4\xc8\x52\xa9\x34\xea\xb7\x23\xe8\xa3\x8a\x4b\x4e\xd3\x99\x16\x07\x47\x33\x1a\xb1\xb1\xa9\x48\xde\x81\x24\x6f\xc7\xef\x9a\x5d\x90\x9b\xc8\x18\xf0\xc0\x84\x3d\x68\x76\x00\xd8\x3c\x10\xf9\x2c\x32\x78\x89\x18\x88\x59\xa5\xb1\xce\x8a\x8a\x86\x8b\xa3\x79\xae\xcf\x45\xa3\x5a\x9a\xc9\x79\x46\x97\xc0\xbe\x71\x41\x64\x16\x43\xda\x55\x2f\xb4\x69\x1e\x2d\x4a\x9a\x97\xcb\xc3\x92\xf9\x10\x2c\xd7\xd4\x6f\x68\x32\x22\x09\xc6\x62\x18\x70\x89\x3d\x16\xcc\x59\x89\x17\xc4\x7a\x3b\xb6\xd8\x9b\x21\xa3\x15\x71\x85\xa4\x04\x72\xc5\xb2\x66\x61\xb7\x1e\x83\x2e\xa8\x88\xf5\xf9\x8b\x48\x2e\x81\xff\x2a\x57\x0f\xa6\x62\xf4\x25\xc3\x6c\x9f\x06\x31\x61\x53\xb2\xc8\x15\xf7\x97\x22\x75\xb5\x3f\x84\x8c\x4a\xb1\x5b\x73\x51\xd5\x7e\xcb\x5d\x38\x47\xf0\xac\x50\x05\x4d\x12\xaf\x89\x5e\xcb\x21\x31\x28\x89\x86\xc3\xe1\xf3\x2d\xb3\x09\x68\x64\x43\x44\xff\x20\xd2\x8c\xaf\x78\xc2\xe6\xfd\x88\x92\xa7\xdb\x01\xe1\x33\x5b\x63\xf5\xc0\xa2\x0d\x33\x11\x9c\x77\xfa\x1e\x27\xc3\xc2\x69\xff\x79\x9a\xce\x3e\x9b\x7b\xe6\x7d\x3c\xd4\x5a\x45\x79\xe2\xde\x46\xb7\x3b\xa4\xa5\x95\x33\x8d\x8b\x16\x7d\x98\x50\x45\x59\xa5\xda\x6d\xeb\x1b\xbd\x50\x9a\x2b\x8e\x90\x8b\x45\xdd\x86\xc1\xa4\xfd\x7d\x85\xc4\x94\xa6\x78\xc4\xa6\x11\x17\x4a\x4b\x30\xf9\x82\xf1\x8c\xc8\x7b\xaf\x05\x7a\xf3\x66\xe8\x53\x64\xa6\x50\x57\x35\xc1\x93\x8b\xd0\x4e\xd3\xd9\x16\x6f\xc8\xb9\x3d\x96\xea\x88\xcc\x09\x01\xd3\x62\x4b\x6a\xe8\xd5\x6b\x0e\x39\x4d\xa8\xf0\x5b\x65\x9f\xca\x8e\xc0\xb2\x67\x32\x8b\xd8\xf5\xf8\x5d\xbf\x95\xdb\xd6\x84\xe1\x9f\x80\xcb\x51\x4e\xf4\x57\x52\x40\x25\x05\xe7\xae\x68\x30\x77\x1e\x0c\xda\xe8\x13\x63\xa0\xbe\x37\xf9\x64\xcd\x4b\x32\x70\x46\x93\x99\x71\xa8\xf6\xe2\x27\x96\x35\x19\x92\xb1\x54\x8a\x6b\xfc\x34\xec\x3e\xcd\x98\x65\x18\x62\x3d\xc4\x0d\x2c\xd8\x3d\x72\xfc\x26\x0c\xbd\xe0\x75\x3d\x7f\xc8\x6f\xa5\x2d\x23\x29\x85\x58\xd2\xac\x9b\xa9\xd3\x60\xf4\xf4\xab\x31\x0d\xf6\x51\x20\x94\xbc\x7e\x35\xe5\xfe\x04\x73\xba\x93\xcd\xbe\x6b\x2a\xcb\x3b\x2f\x29\x52\x40\x2a\x08\xb3\xc5\x05\x51\x9c\xc4\xac\xd4\x90\x24\xd9\x0f\x46\x58\x95\x29\xab\x00\x73\x98\x7c\x32\x85\x4d\x65\x0b\x0b\x5b\xc8\x7b\x92\x22\x87\x8e\x02\x15\xbe\x64\x66\x76\xaf\xc6\x32\x33\x46\xed\xd8\x29\xdf\x89\x0c\x88\x4d\xe3\x6b\x5c\x10\x20\x27\xb2\x3e\xf6\x34\xb3\x05\x41\xae\xc7\xef\xbc\x6f\x99\xe6\x84\xdd\xa3\x7c\x11\x3e\xc5\x40\xe8\x1f\x1e\x23\x40\xc8\x9c\xc8\xfb\x1e\xc9\x67\xcc\x29\x36\xbb\x79\x0f\x51\xc1\xde\x9c\xa3\xf1\xed\xc4\x7d\xaf\x6a\x86\x48\xa8\x4a\x60\x1e\xb5\x67\xa6\x62\x82\x7d\xed\x9c\x92\xa8\xde\x3a\x3a\x1a\xe4\xc6\x25\x40\x8b\x39\xd2\x26\x7f\x2e\x65\x1c\xfd\xf4\xcd\x00\x79\x72\x49\x26\x7b\xb7\x85\x10\x2c\x99\xec\x61\xb2\xf1\xa9\xf4\x5f\x5e\xa3\x78\x80\x15\x64\x4c\xa5\x52\x68\x82\x65\x5e\x64\x7d\x73\x61\x14\x9c\xb0\x91\x71\x1a\xe6\x0b\xdc\x5e\x5c\xc2\xd9\xcd\xb5\x16\x43\xb0\x1f\xce\xe3\x1b\x7a\x5a\xe4\xa6\x4d\x7d\xfe\x80\xed\x04\xbc\x5c\x62\x9e\xb1\x28\x4f\xd6\xde\x5c\xd8\x7a\x65\xc2\xce\x6f\xce\xaf\x6a\xe2\x7d\xeb\x21\xc3\x78\x9a\x32\x9a\x29\xb7\x12\xd2\x68\x6c\x35\x0c\x1c\x0b\x4a\x42\xcb\x3f\x5b\x9d\x1d\x30\xe0\x8a\x50\xdf\x90\x29\xcb\x96\x5c\x29\xbe\x62\xe4\xe2\x95\xc3\x8e\x55\xf8\x8d\x27\xf4\x08\x52\xa5\x99\xf7\x71\x26\x1f\xd6\xe7\x46\xc3\x74\x93\x68\x94\xea\xf9\x6a\xbd\x1d\xbf\x6b\x1f\xc0\x8f\xf8\x7e\x96\xd6\x11\x79\xf6\x15\x61\xcb\x29\x8b\x35\x7a\xde\x15\x53\x36\x48\xf5\x0c\x46\x69\xaf\x48\x7d\xaa\xb0\x4b\x4b\xd7\x23\x57\xae\x7d\x94\xe6\x7a\xb9\xea\x54\x37\x2c\xd2\x2d\xde\xec\x8e\x21\x6a\x6f\x39\xc2\xc2\x4b\xb3\x01\x3c\xce\x5b\x9f\x66\x12\x0d\x25\xc9\x9a\x44\x7a\x44\x52\x60\xcd\xaf\x22\x55\x79\xc6\xe8\xd2\x95\xba\x2a\x08\xed\xef\xfb\x33\xec\x9b\xb5\x91\x68\x41\x39\x08\x53\x37\xf5\x22\x37\xe5\x0a\x67\x2e\xb8\x4d\xf6\x76\x63\x60\xfc\x5a\x82\x54\x09\xc1\xf7\x5c\xdc\xac\x45\x84\x39\xb0\xb6\x82\x7d\xad\xe7\x41\x80\xd8\xe6\x7e\xc1\x78\xc9\x05\x64\xb5\x02\xc1\xd8\xd6\x0b\x40\x65\x69\xa9\xf4\x2e\xb9\xad\x4a\xbb\xbf\xef\xa0\xa8\x6f\xd8\x0a\x8c\x43\x42\x2e\xe4\x3d\xcb\x2c\xdf\x31\xd7\xd7\x38\x63\x71\x11\x31\x2d\x97\xe4\x83\x22\x05\xad\xba\x88\x74\xd3\x1f\xf9\x7c\x51\xb6\xf5\x53\x59\xdd\xd3\x5a\x25\xc6\x1f\x48\xa1\xe8\x9c\x41\xb2\x0c\x2d\x9e\x80\x4f\x58\x4a\x96\x32\x43\x72\x5e\xa3\x12\x2f\xd5\x23\x28\xc4\x85\x9c\x5f\xb0\x15\xf3\x55\x53\xd9\x38\x11\xdb\xb6\x06\x75\x92\xc8\x39\x49\xe0\x6b\x9b\xce\xc2\x61\xf3\x02\xb4\xa0\x54\x96\x54\xb0\x5f\x22\x39\xbe\xb2\xfa\xa9\xab\xd9\x0c\x35\x53\x23\x31\x93\xfa\x2f\x54\x4c\xb1\x69\x31\x9f\xec\x85\x35\x21\x89\x9c\x23\xf3\xc7\x96\x3c\xcf\xab\xe7\x48\x4f\x96\x67\x34\x62\x24\xe5\x29\x3b\xb0\x96\x54\xcd\x31\x82\x54\x80\xca\x97\xe5\x32\x50\x49\x7e\xb2\x97\x47\x84\x3d\xb0\x48\xc3\x0c\xf5\x10\x35\xe5\x18\xb9\x9a\xcd\xfe\x3e\xdc\x1e\xfc\xef\x69\x7a\xc3\xff\x09\xec\xa0\x5e\x5d\x2f\x3e\xb2\xd9\xa7\x92\xf0\x14\xff\x67\xe5\xa7\x1b\xd9\xdf\xfd\x6c\x64\x6a\x25\xb6\x25\x4d\x4b\xed\x20\x56\xf8\x67\x42\x16\xf3\x85\x86\xdc\x42\x26\x50\xb8\x82\x89\x3c\x43\xa7\x64\xd0\x09\x21\xf1\x6a\x57\xea\x0c\x09\xf9\x44\x33\x4d\x5a\x8e\x31\x24\xb5\x8c\x97\xd3\x8b\xb4\x86\xfd\x72\x0f\x7a\x15\x91\xbf\x6a\x4e\x44\xf5\x23\x1b\x73\x95\x15\x00\x85\x30\x98\xc3\xcc\x9e\x81\xd9\x68\x7c\xc3\xf2\x4e\x75\x74\x05\x63\x6c\xef\x01\x30\x4f\xe1\x3b\x0b\x46\x16\x70\xc8\xb5\x8d\xb6\x05\xb0\x35\x08\xf9\x8f\x2e\x8f\x16\xc8\x1f\xb3\x15\xcb\xd6\x26\xdd\xa3\x5e\x94\x70\x7c\x67\x0f\x1d\xdd\xb1\xe9\x03\x51\x82\x86\xbf\xf0\x32\x22\x32\xe1\x40\xa6\x6c\xf5\x97\xca\x59\x61\xb2\x47\x93\xe4\xd9\xf3\xc9\x9e\x3e\x24\xcd\x7f\x41\x1d\x10\x61\xf6\x63\x8b\xbb\x49\x2f\x97\xa7\xf7\xc6\x35\x1f\x2b\x05\x33\x1b\x4d\x59\x56\x19\xbd\xb8\x55\x89\x51\xc5\xc2\xda\x93\xee\xb3\x9d\xdd\x04\xe2\x95\x43\x87\x8b\x1d\x7c\xa7\x3b\xc3\xc8\xea\xf2\x78\xbd\xcf\x6e\xd5\x68\xdb\xe3\x8d\x59\x48\x29\xfa\x0c\x24\xa3\xff\x59\xf1\xea\xcf\x41\xbe\x06\x81\xe9\xf1\xa0\xb9\x3c\xb9\xb5\x19\xde\x3d\xe0\xe9\x3f\xc8\x5b\x2d\xfa\x6d\x18\x52\x5b\x40\x5c\xf5\xf1\x40\x59\xd0\x9c\x4c\xf5\xdd\x67\x60\x4f\x4e\xc3\x59\xda\x8d\x62\xa0\x99\x14\xc6\x62\x90\x2d\x07\xa8\x89\x99\x54\x9a\xd7\x87\x07\x32\x5f\xf8\xe9\x49\x93\x08\x55\x03\x5a\x91\xeb\x49\x90\x7e\x97\x49\x91\x6f\x0b\x25\xdb\x29\x00\xa6\x99\xfe\x59\xef\x37\x48\xcb\xed\x00\xef\x69\xea\xb8\xe3\xf4\xc3\xc7\x90\x9c\xa3\x45\xce\x83\x4a\x93\x60\x2a\x37\x01\x06\x43\x19\x2a\x2e\xf0\x1f\x56\x7b\xf0\x68\xa8\x41\x00\x51\x7f\x78\x61\xbc\x91\xff\xd5\x33\x91\x4e\xad\x37\xb7\x6a\xd3\x05\xaa\x3a\xc5\xb2\x97\xd2\x2b\x74\x8b\x58\x5f\x53\x2a\xe2\x59\x91\x20\x72\x22\xd5\xd3\x1d\xe1\x52\x3f\xab\xc6\x8e\x40\x21\xce\x73\x45\xe4\xbd\xd0\x72\x3c\x09\xb0\x1d\x28\xf9\x82\xa4\xff\x08\xe8\x8e\x6f\x2e\x4f\x6e\xc7\x32\xf3\xbe\x78\x54\xac\xaf\x7c\x05\x1d\x07\x5d\x39\x93\x06\x1d\x11\x04\x1b\xfc\x4a\xb5\x8c\xea\xcc\x32\x2a\xe6\xcc\x98\x5e\xc1\xda\x71\x0f\xdf\xc5\x72\xe9\x57\xb1\xa7\x3c\xba\x23\xd4\xa0\x1d\x5c\xdb\x8c\x19\x77\x0d\xf4\xc4\x80\x5f\x22\x99\x24\x5c\x01\xf3\x01\x04\xa1\x3c\x5d\xbf\xa9\xb8\x54\x47\xb1\x74\xc1\x96\x2c\xa3\x89\x59\x17\xb5\x09\x65\x51\x0b\xf5\xee\x94\x1c\xbd\xf8\xf6\x88\x3c\x7b\xf9\xe2\xd5\x9b\xff\xef\xff\xf9\x7f\x8f\xbe\xfd\xf6\xf5\xb7\xcf\x43\x67\x96\x42\x4d\x46\x3a\x4d\xd6\x35\xcd\x4e\x73\x12\x55\xa6\xc1\xd3\x6c\xa7\x14\x44\xa6\x2c\xa3\xa1\x24\xcd\x6a\xad\x72\xb6\x54\x43\x72\xc1\x45\xf1\xa0\xbb\x2a\xf2\xfa\xd5\x9f\x8e\xbe\xd3\xcb\x79\xf1\xfd\xf7\xdf\x1f\x68\x38\x26\x0c\xeb\x30\x96\x74\xb0\xd4\x4e\x9c\x5c\x9e\xf8\x86\xb5\xbb\xc4\x6d\xbf\xf9\xfe\xe5\xb7\xaf\xec\xfe\x6c\x3a\x02\x2d\x23\x62\x49\x54\x9a\xf1\x64\xad\x0f\x21\x93\xd3\x84\x2d\xf1\x1c\xfc\x45\xdf\x70\x3c\x8d\xe5\x09\x4d\x55\xc5\x61\x97\x7b\xac\x36\xf4\xb6\xac\x81\x66\xe3\x94\x74\xdf\x90\x5e\x8b\x8b\x28\x29\x14\x5f\x31\x97\xf7\x7e\xf5\xe2\xc5\x8b\x17\xc7\xaf\xbe\xff\xfe\xfb\xef\x7d\x12\x50\x6a\x4c\x78\xe4\x7f\x0f\xff\xc7\xe6\xaf\x0f\x83\xaa\x4c\xe6\x80\x8b\x7c\x20\xb3\x01\xa2\xb6\x3f\x1d\x82\xbe\x57\xc0\x27\x81\x28\xd2\x5f\x93\xb2\xd9\x09\x05\x21\x3d\x87\x55\x0e\x64\x2c\x92\x59\xac\x91\x2f\xa7\x3c\x60\x91\x71\xe3\xdc\x30\x75\x77\x29\x73\xc1\x0c\xa5\xe8\x75\x60\x6e\x96\x66\xd8\xa6\x8c\xb0\x07\xba\x0c\x95\xaf\xac\x24\x20\xb0\x8d\x0c\xb4\x8c\x63\x84\xa1\x41\xc2\x85\x7e\x79\x65\xb2\xad\x06\x06\xb4\x11\x23\xb0\xd7\xf4\xd2\xad\x9e\xd6\xdb\x87\xcc\xe5\x0b\x29\xef\x5c\x7b\x56\x40\x29\x92\xcb\x74\x80\x52\x69\x43\x3d\xa2\x6f\x1c\x5a\x91\x34\x1a\x1a\x37\x11\xe3\x8a\x9d\xcb\xd4\x60\xa1\x5f\xed\x4c\xc1\xc8\x0a\x65\x30\xd3\x94\x89\x78\x73\x84\xa9\xcc\x73\xb9\x1c\x5a\x3b\x95\x61\x5c\x14\x9d\x31\x5b\x3d\xcf\x7b\xbb\x6d\x7a\x69\x53\xbf\xd8\xb5\x82\xe9\xd1\x8d\x5a\x1f\x63\xc2\xa6\xeb\x94\x2a\x05\xbe\x5e\x33\xb2\x96\x05\x51\xf7\x3c\xf7\x3f\xe2\xb9\x34\x0b\x35\xda\x92\x29\x23\x0a\xeb\xd1\x99\xe5\x62\xd5\x56\x9c\xc2\x16\xc1\x46\x28\xa1\xeb\xb2\xf7\x1a\x82\x9a\x0e\xec\xfc\xd3\x35\x99\xd1\x24\x41\xc9\x2e\xb3\xaf\x9b\x93\xcd\x03\x46\x3e\xc0\x69\xee\x39\x12\x23\xdf\x98\xa6\xb9\xc1\x60\xd0\x91\x4d\x99\xb3\xd3\xea\xae\x23\x60\xb7\x55\x74\x94\x6a\x86\xb3\x8c\xaf\x58\x67\xf5\xcb\xb3\x7a\x73\x32\xe3\x09\x13\x4e\xd5\xdd\x92\x25\xaa\xd4\x17\x31\xb4\x0c\x1c\x42\xa1\x50\xb5\x81\x14\x19\x14\x71\x1f\x14\x1b\x19\xb7\xca\xe6\x6c\xc6\xb0\x93\x4b\xb4\xef\x6d\x69\x4f\x2e\x97\xf4\x49\xcb\x7c\xb1\x84\xd4\xb0\xb2\xe8\x74\xf6\xde\x3f\x0b\x74\xb4\x48\x9c\x31\x1a\x73\xc1\x94\x3a\x4c\xf8\x8a\xe9\x3f\x6c\xb9\xfa\x80\x69\x37\xae\xeb\xd3\x9e\x59\x37\xd2\xe7\x1b\x60\x1b\x92\x91\x88\x32\x46\x95\x89\xc6\x0d\x56\x5a\xe4\x88\xf1\xec\x21\x65\x19\x67\x1a\x05\x55\x5a\x64\x5c\x16\x0a\x92\x43\x66\xe0\xbb\x0f\x0a\x63\x31\xd0\xab\x24\xe6\x3a\x01\xa5\x0d\x3a\x8d\x71\x45\x0a\x11\x6b\x3e\x8d\xd1\xd5\x1a\xfc\x67\x86\xe4\x8c\x95\x2b\xb2\x39\x77\x73\x49\xe6\x2c\x47\x6f\x66\xb4\xab\x60\xf1\x58\x33\x99\x6f\x68\xb3\x16\x5c\x18\x48\x25\xff\x28\x78\x74\x97\xac\x5d\x9c\xfe\xfe\xc5\xd6\x9a\x3b\xd0\x40\x19\xfb\xe6\x85\x9c\x9f\x65\x32\x4d\xf5\x93\xb5\x25\x8d\x86\x61\xde\xb3\xa5\xcc\xd6\xe3\x4c\x6a\x34\x1f\xd3\x7c\x11\x1c\xa5\x65\x2d\x37\x7c\x09\x7e\x75\xa7\x34\x89\x7e\xc8\x68\xba\xf8\x91\x8a\xf9\xc9\x2c\xf7\x5e\xb6\xde\xa3\x95\x38\xf9\xf8\xd1\x00\xc6\xd6\xa4\x70\x2b\x7f\x94\x2a\x3f\x89\x02\x09\x02\x1a\x17\x22\xdc\xd7\x7d\x9c\xc0\x51\x45\x53\x59\x15\x70\xbd\x29\xdd\x56\x74\xd3\xb9\xb4\xd4\x9c\x56\x7e\x26\x95\xff\xaf\xac\xcc\xa3\x3c\x57\x2c\x99\x91\x67\x74\x16\x88\x0e\x82\x17\xcb\x8c\xbd\xe0\x86\xb1\x2e\x87\x62\x68\x85\x42\x92\xfa\x7c\x48\xde\xae\xcb\xfa\xad\x48\x6d\x7d\x43\x42\x1d\x35\xe5\x77\x8d\xac\xc4\x6d\xdf\x32\x81\x85\xf0\xcb\xdb\xe5\x03\x3c\xd9\x3b\xbb\xbe\x1a\x4f\xf6\x40\x7f\xa8\x99\x74\xf3\x80\xdd\x53\x63\xa0\x4e\x12\x79\x4f\x94\x5c\x42\x4e\x3b\x9a\x24\x6d\xf6\x3d\x58\x9b\x0b\x38\xbd\x9a\x03\xa4\x9c\x90\xe2\x8d\x66\x74\xc9\x8c\x2d\xf5\xfa\xfc\xf6\xc3\xf5\xa5\x1e\xf5\xe4\xf4\xf4\x7c\x7c\x3b\xd4\xf4\xd7\x37\xaa\x69\x68\xe8\x0c\x54\xe5\x5d\xcb\x02\x5c\x4d\xea\xcf\xa4\xb3\xa9\xd1\xe5\xf8\xc3\xed\x64\x0f\x5f\xce\x3f\xb7\x3c\x6f\xf0\xae\x59\xce\x20\xb7\x4f\x7b\x93\xf7\xa0\x39\x8e\x64\x8a\x3f\x4f\xf6\x70\x4d\xfe\xca\xb0\xd6\x18\x6f\x4e\xa4\xb1\x18\x22\x0d\x5f\xb1\xa0\x0a\x42\x90\xb0\x82\x5e\x9a\x49\x1b\x46\xd4\x26\xd2\xfa\x51\x09\x40\x67\xc0\x08\x6f\x9b\x28\x03\x67\x68\x92\x58\x2b\x9e\x5d\x58\xf0\xe4\x4a\x05\x17\x01\xfc\xf6\xad\x29\xb4\x00\xdf\x98\x15\x31\xd5\xa4\x70\x7b\x6a\xba\xe2\x11\xaa\x15\xc6\x99\xcc\x65\x24\x3b\xed\x21\x20\x5f\xba\x01\x1b\x18\xb9\x9f\x9a\xee\x84\xc6\xc6\xf8\x6e\xd8\xf1\x25\x8b\x5b\xd4\x7e\xa8\x91\x38\xd0\x0c\x95\xbd\xa4\x80\xc4\x96\x13\xba\xbe\x1d\x5f\x5f\xdd\x7e\x7e\x7b\x75\x75\x8b\x6f\x59\xc2\x66\x39\x99\x26\x54\xdc\x6d\xab\x17\x70\xf6\x7a\xb3\x4d\x19\x66\x57\x11\x07\x99\xd0\xea\xb5\x87\xad\x2d\x5c\x0a\x67\xc7\x7e\x91\x53\xcf\x6f\x76\x5c\x23\x4b\xf9\x46\x59\x64\xcc\xf8\x60\x77\x7a\x40\x12\x46\x57\x01\x01\xb9\x12\x08\x40\xc1\xb2\x90\xd2\x3c\xdd\x8d\x11\x35\x5f\xb2\x2d\x47\x15\x80\xd8\x68\xbc\xf2\x65\xe5\x69\x83\xda\xd1\x1f\x08\x6a\xc8\x9c\x94\x56\xaa\x91\x80\x0a\x3b\x21\x17\xf8\x56\x36\xc5\x12\x82\x6b\x9b\x74\xf5\x8c\x25\xde\xac\x3a\x6d\x0b\xda\x18\x24\x2c\xbb\xb7\x2f\xc6\x30\xff\x97\x32\x66\x50\xc1\xb0\x0b\x07\xce\xdd\x0e\xa7\xa3\xb3\x6b\xdd\x09\x95\x57\x89\xfe\x4b\xce\x88\xfe\x76\x1f\x34\x20\x76\xf4\x81\x66\x1b\x8d\x38\x0e\xc5\x0e\xfd\x96\x54\x2d\xe0\x2f\xe9\xda\x9e\x97\xd1\x17\xda\xf7\x1b\x3c\xac\xf4\x1b\x06\x0f\x4c\xe9\xa0\x63\x7e\xf5\xab\xc5\x6c\xe8\x24\x01\x8b\x4c\x59\x4f\xcb\xa7\x13\xff\x0a\x25\xc0\x66\x94\x27\x5a\x5a\x1e\x89\xa9\x2c\x44\xac\x39\xae\x90\x02\xb3\xce\xac\xbd\x0b\x74\xac\xc3\xf9\xc3\xd9\xf8\xf0\xf6\x74\x8c\xce\x54\x21\x35\xae\x3e\x0c\xe3\xc0\xea\xf8\x6c\x20\x73\xe2\xf3\x45\x06\x36\xa8\x64\x8e\xbc\x52\x80\x20\x3c\xcb\x98\x4a\x4d\x59\x36\x9b\xe4\x86\x45\x45\xc6\xf3\x75\xf9\xb2\x5a\x6a\x51\x28\x36\x2b\xe0\x4a\xd2\x95\xe4\x7e\x7d\x73\x14\x41\xf1\x33\x78\x73\xa3\x02\xbc\x20\x89\x9c\xcd\x8c\xad\x08\xf9\x31\xbd\xda\x2c\x63\x51\xde\x08\x78\x22\xef\xfc\x29\x65\xa6\x34\xba\x1b\xd4\x8a\xdf\x1e\xd8\xc4\x34\xe5\xc3\x66\x8b\xfe\x9b\xaa\xfc\xf1\x81\xe6\x2f\x0c\x31\x0a\xc5\x41\x4f\xf6\xf2\x28\x9d\xec\x01\xc3\x47\x01\xbe\xfe\x61\x1c\x40\xbb\x2c\xa8\x77\xff\x18\xe7\xa3\xa9\x93\x26\x88\xb7\x95\x83\x32\x3a\xa3\x02\x16\x20\x28\xe0\xb0\x0f\x4a\x5d\x68\x50\xb8\x14\x52\x80\x07\x64\xa9\xaa\x31\x62\x9f\xf1\x84\x54\x6a\x61\x7d\x94\x35\x96\x9c\xfd\x78\x3a\xae\x79\x10\x47\xe9\xf1\xab\x57\xde\xc0\x8f\x22\x4e\x8f\x8f\xbe\x3b\x80\x26\x2f\xff\xf4\x3d\xfe\xf1\xea\x75\xf5\xd7\x77\x2f\xf0\xaf\xa3\x37\x6f\x5e\x9b\xbf\x8e\x8e\x8e\xca\xbf\xfe\xe4\xe3\x67\xc2\x97\xaf\x9e\x2a\x5c\x9f\xdb\x58\xa2\x2e\x2a\x92\xcb\xa9\x93\xe9\xcc\x9e\xe9\x01\x41\x4b\x8f\x45\xfe\x40\xfa\xa0\x71\xc9\xdb\x88\x18\xf5\xed\xd6\xec\x59\x9e\xa2\xb7\x67\x67\xba\x2c\xc1\xfc\x3e\x47\xa4\x57\xb6\x22\xbd\x92\x8e\xee\x2d\xf5\x1f\x48\x09\x85\x47\x2f\xa1\x25\x61\x32\x21\x03\x58\x5f\xe0\x17\x33\x73\x98\x82\xb6\x57\x73\x69\xa5\xa0\x57\x45\xfe\x48\x12\xba\xd1\xf3\x0b\xd3\x50\x59\xe4\x73\xe9\xd2\x50\x10\x08\xba\xa9\x68\x2e\x77\x54\xf4\x57\xa5\xa2\xd2\x20\xc2\x97\x21\xa3\x12\x54\x24\x2c\x8f\xe2\xfd\x7d\x28\x50\x20\x62\x9a\xc5\xc6\xaf\x39\x97\x26\x72\x24\x58\x59\x1d\xd1\x28\x96\x0c\xb7\x3c\x67\xb9\x3e\x30\x38\x2c\x54\x05\xe4\x51\x5c\x8b\x31\xd2\x00\xd0\xc7\xa9\x09\x75\xc8\x56\x77\x76\x79\xd3\xa4\xe1\xdb\x10\x68\xef\x41\x19\x9a\x7d\x00\x64\xff\xdb\xd7\xf8\xdf\x1d\x0d\xdf\xd1\x70\xef\xaf\x7e\x1a\xce\x68\x5e\x64\xec\x8c\xe5\x2c\xca\xaf\x56\x2c\xcb\x78\xb7\x01\xed\x9d\xaf\x53\x99\xc8\x26\x97\x60\x8e\xcd\xac\x39\xda\x4c\xe1\xc7\xbd\xdc\xba\xf0\x7d\xac\x82\x69\x4a\xfc\x20\x5c\x10\x8a\xe6\x41\xa2\x58\x4a\x33\x88\xa6\x86\xd7\x01\xc8\xa5\xf0\x6a\x16\x55\x4a\x23\xa6\x0e\xc0\x0c\x99\x26\xec\xcf\x64\xb2\x77\x73\x79\x72\xfb\xae\x48\x92\xf5\x35\x18\xfe\xff\x02\x96\xd0\xf7\x27\x37\xff\xcb\xfd\x12\x4c\x20\x07\xd7\x0c\x72\xb1\xdc\x14\x29\x90\x8b\x0b\x19\xdd\xfd\x65\xb2\xe7\xc5\xd4\xc9\x1e\x58\x6d\x4d\x20\x33\x26\x13\xd9\x43\x9a\x88\xa1\x4b\xce\xee\x0f\x08\x5b\xa6\x39\x58\x0c\xa4\x71\x17\x0d\xbb\xe6\x6a\x20\xd0\x22\x97\x03\x84\xcf\xd6\x02\xf1\x2c\x91\x60\xfa\x1e\x8d\x3b\x9f\xe2\x77\x55\xd3\xaa\x44\x45\x65\x08\x45\x8f\xf8\x86\x43\xf9\x3c\xa3\x5e\x12\x6f\xa7\x75\x8a\x9f\x78\x85\xb9\x60\xb4\xb6\x11\x93\x7d\x3f\x9d\x05\x23\x07\xdb\x00\x31\x67\x82\x65\x3c\xfa\xe9\x6c\xdc\xd7\x13\xff\x87\x66\x0f\xe3\xd2\xae\x88\xf9\x85\xfc\x74\x36\x26\x4a\x5a\xe7\x46\x12\xd1\xcc\x1f\xca\x0f\x1c\x49\x2c\xc5\xfe\x7e\x4e\x14\x62\x13\xf4\x95\xb3\x19\xa8\x1c\x65\x66\x4c\x52\x60\x31\x85\xd8\x44\x78\xf1\x7e\x3a\x1b\x23\x63\x11\xb0\x1f\x81\x27\x3d\xd3\x97\x82\x89\x98\xc5\x95\x45\x57\x3f\x58\x30\x5b\x9a\xc9\x95\xbe\x7c\x53\x96\x83\xbe\xb3\x0a\x97\x0e\xac\x53\x94\x3a\xe6\xe1\x93\x43\xfe\x16\x8c\x26\xf9\xe2\x91\x0a\x0f\xec\xac\xb9\xc1\x2d\x35\x2e\xd8\x71\xec\xa7\xed\xad\x54\xbd\x0c\xff\x3b\x7f\x88\x92\xa2\x87\xf3\xc0\xa8\xd1\x01\x59\x56\x20\x52\x83\x06\x91\x82\xca\xe6\x9d\xb1\xc7\xb5\x90\x6b\x66\x06\x05\xd5\xab\xa9\xce\xae\xaf\xd4\x4c\x66\x0d\xbe\x75\x18\xf2\x39\xab\xf3\x42\xb5\x28\x59\x93\x06\x60\x2e\xa4\xfe\xaa\x8a\xfc\xd8\xdf\x27\xa3\xf1\xc7\x1b\x12\x17\xcb\xa5\xd7\x29\xaa\xdc\x86\x75\xf5\xb0\xc4\xde\x5a\x5a\x93\x35\x99\xae\x6b\xc1\x0a\x75\x8b\x8b\x57\xeb\x6f\xf6\xba\x2c\x92\x9c\xa7\x89\x13\xfd\x8d\x19\xa4\x48\xa1\xd0\xed\x41\xff\xc7\xc6\x5b\x62\xd4\x54\xc2\x37\x73\x07\x11\xc8\x5d\x93\x9a\xba\x1f\x1b\xc1\xf0\x0a\xb8\x68\xdf\x0f\xb0\x4e\x60\x4e\xee\x33\x9a\x86\x94\x97\x08\x4e\x78\x77\xf6\xf7\x0f\xf7\xf7\x71\x38\xf3\xc8\x90\x05\x28\x3e\x6d\x68\xc6\xfe\xfe\xe1\xff\xd6\xb0\x38\x3c\x58\xb1\x7c\xf1\x72\xdf\x73\x89\x4c\x02\x11\x0b\x83\x46\x5c\x2b\x9c\xd6\x94\xcd\xb9\xb0\x33\xea\xe1\xf6\xf7\x4d\xfd\x7d\x25\x43\xee\x0d\x15\x08\xf7\xf7\xcd\xdc\xee\x9d\x86\x03\xe2\xe9\x4a\xb5\xc4\x31\xfa\x6f\x58\x39\xf0\x38\x63\x33\xfe\xd0\xff\x9a\x60\x7b\xab\x99\xae\x1f\x31\x78\xb0\x95\xa9\xe9\xca\x0a\xfb\x5e\x68\x6d\xda\x06\x21\x1e\x1f\xe4\x08\xfd\xea\x14\x5c\x2d\xd0\x40\xb2\xf4\x88\x79\xad\xb0\x52\x43\x72\x29\x73\xa0\x11\x84\x89\x15\xcf\xa4\x58\x82\x31\x5f\x9a\x3a\x4e\x54\x90\xa9\x7e\x94\x97\x2c\xa7\x09\x62\xa0\xcc\xa2\x05\x53\x79\x46\x73\xe9\x2f\x40\x56\xbe\xa6\x68\x5f\xa1\xa9\x66\x6c\x33\x4e\x73\x96\xac\xeb\xb8\x23\x8b\xcc\x8d\xc2\x02\x95\x8f\x8c\xee\x02\x89\x1a\x35\x19\x33\xc9\xcf\x8c\x09\x52\x9f\x75\x44\x13\xbe\xbf\xef\xa6\xcd\xd2\xa3\x5e\xa5\x4c\xdc\xe4\x34\xba\x73\xbb\x79\xef\x8d\xf5\x96\xdc\xdf\xcf\x69\x6a\x07\x72\x31\x47\x4f\xf0\x68\x9c\xb9\x66\xb3\x8c\xa9\x05\xe0\xc4\x8a\x76\x5a\xbc\x46\x81\x7e\x4e\xd8\x36\x97\xa0\x36\x46\x62\x14\x74\xb7\xc8\x98\x8a\xa8\x50\x18\x8d\x5c\xbb\x5f\x92\xac\x58\xc6\x67\x6b\x13\xdf\x8f\x75\xc3\x40\x94\xc4\x3e\xc6\x97\xcd\x4b\x5f\x6d\xac\xf7\x74\x6d\x83\xc2\x2b\xd4\x5e\x61\x12\xc6\x17\x5b\x72\x6c\x3c\xe5\xbd\x83\x05\x47\xe3\x51\xc9\x9c\x58\x46\xbb\xe9\xba\x56\xa5\x61\x43\x1c\xf4\x2b\x4f\x30\x8f\x53\x75\x25\x65\x15\x32\x3d\x24\x57\x29\x1a\x5a\xab\x04\x92\x9a\x1b\xcd\x96\xc6\x0c\xe9\xe7\x4f\xa6\x54\x3f\x0a\x66\x1c\xf6\x80\x37\x53\xf3\x83\xa9\x94\x49\x8d\xbb\x10\x3c\x21\xcf\x0a\xa1\x58\xfe\x7c\x6b\x1e\x43\x43\xeb\xfd\xed\x87\x5e\x90\x7a\x7f\xfb\xc1\xa2\x8d\xfe\x13\xa2\x9d\x73\xbb\x42\x63\xc4\x40\x93\xd7\x90\xdc\x30\xbf\xcb\x98\x81\xa2\xde\x8a\x1e\xc3\x89\x83\x7b\xf3\x66\xfb\x80\x70\x0c\xe8\xd9\xf2\x4a\xec\x8f\x7c\xbd\x5a\x2f\x04\xc9\x18\x66\x72\xf2\xcb\x18\x89\xe3\xaf\x88\xe1\x25\x75\xcd\x08\x11\xd2\xd0\x3f\x63\x30\x07\xd3\xbe\xab\xc6\xf2\x22\x40\x26\xef\xca\x2a\x64\xa5\x53\xa1\x06\x2d\x78\x4e\xbc\xa8\x65\xdb\xb1\xd3\x67\xb8\xab\x8e\x0c\x50\x8f\xf0\x5d\xb2\x33\xf4\x8c\x26\x19\xd5\x9b\x97\x82\xa8\x4d\x47\x3a\x35\xdf\x6b\xbe\xce\xae\x5d\xbf\xe2\x5e\x40\x30\x34\x65\xd6\xd4\x53\x60\x2e\x9d\x53\xaf\x67\x41\x9f\x7d\xbc\xe3\x49\xce\x32\x48\x61\x16\xf4\x2c\xea\x33\x8e\x96\x6a\xdf\x85\x5d\xb0\x9a\x98\xb7\xd9\xc9\x22\x9e\x26\xac\x6e\x35\x13\x3b\x81\x0f\x22\x89\x8c\xee\xc0\xbf\x71\x48\xfe\xa6\x19\x2e\xba\x86\x0c\x40\x68\x0e\x06\x2f\x6e\x78\x28\x8d\xfe\xb2\x6c\x6d\x65\x1e\x7f\x81\x3a\x9e\x3b\x0a\xbe\x72\x35\xcf\x66\xce\xf3\xea\x7a\xd8\x2c\x69\x9a\x32\xcc\x28\x25\x72\x59\x7a\x0c\x06\xde\xef\x9c\x72\xc1\x32\x7d\xad\x28\x89\xf9\x6c\xc6\x32\x26\x72\x92\xd2\x7c\xf1\xdc\x25\x65\x87\x59\x21\x0e\x1f\x8c\x00\xa5\xd7\xfd\x58\x34\xd5\x10\x1e\x67\x72\xca\xb6\xa0\x0a\x81\x9e\x65\x20\x13\x5f\xb2\xa6\x72\xdc\xcb\x5e\x61\x36\x60\x8c\x5a\xa6\x79\xce\x96\x29\xea\x4a\x69\x04\xea\xaa\xba\x27\x12\x1c\x0e\x9f\x99\x7c\x59\x42\x7a\xd9\x2b\xba\xa2\x1c\x8a\xfd\x0d\xeb\x71\xcb\x4b\x7a\x67\xc3\x8e\xc1\x4d\xd1\xa4\x58\xe0\x2b\x23\xf5\xd8\xd3\x0f\xc8\xbf\x11\x46\x1f\xb1\xf8\x00\x92\x34\x68\x91\x19\x86\x39\x1d\x7f\x70\x0f\xe5\xdb\x17\xcb\x47\x93\x0b\x0d\xcd\xbe\xbe\xac\xa3\xcd\x3e\x6d\xb0\x07\x40\x7b\x95\x27\x26\xaa\xa8\x06\x63\x08\x45\x7e\x71\xe0\x10\x4d\xd0\x9c\x17\xd6\x7b\xb5\x54\x2e\x05\x39\x20\x10\x6b\xd4\x82\x7a\x4f\x10\xae\x17\xba\xd3\x25\x49\x9d\xd8\x1b\x19\xc4\xff\x72\x68\xf1\x43\x1f\xa2\x3d\xa9\x21\xf9\xa4\x0f\xce\xc4\xf7\x57\xc9\xe6\xb8\x16\x6c\xaa\x8b\x74\x10\x0e\xe2\xb0\x59\x2b\xf4\x88\xfa\x3a\x99\x5c\x1a\x32\x5b\x5b\xca\xe2\x24\x92\x5b\xca\xc2\x94\xac\x34\xbe\x68\xe8\x3c\x70\x28\xa4\x3f\x15\x97\xcc\x6c\x8b\x99\x4d\xc9\x89\x0b\xaa\x25\x76\x51\x25\x63\xf7\x58\xb4\x79\x4f\xb5\x98\xfa\x74\xea\xfc\x9e\x66\x77\xef\xa9\xea\x8e\xd0\x1e\x35\x3a\x58\xc4\x5b\xea\xbf\x5d\xdd\x02\x04\xd9\x2a\x4d\x2c\x7d\xf0\x19\x8d\x6f\x11\x29\xf4\x38\x64\xaa\x49\x2a\xd4\xb4\xb1\xc9\x1d\xa6\x0c\xd2\x04\xe9\x5f\xc8\x82\x3d\xd0\x98\x45\x7c\x59\x85\x47\x86\x72\x30\xd1\x9c\x24\x8c\xaa\x9c\x7c\x87\x63\x2a\x96\x1f\x80\xc9\x06\xb3\x30\x41\xc0\x48\x42\xd5\xc2\x3a\x74\xae\x0d\x06\x2e\xed\x2a\xfc\xe2\x8f\xf5\x62\x02\x83\x1c\x84\xf6\xd4\x8e\xf1\x61\x36\x7b\x01\x1f\xdf\x29\xda\x0a\xa5\x5c\xe4\xaf\x5f\x6d\xcd\xb6\x21\xb0\x2f\x4f\x6e\xaf\x8c\x59\xb1\x94\x53\xf0\x5d\x7e\xe4\x71\x8f\xa5\xca\x3f\x65\x3c\x67\xe0\xb0\xb4\x35\xe9\xf7\x77\x6f\x72\x86\xe0\xf9\x18\xa4\x12\x9a\xb3\x8b\xf5\xc9\x50\x72\xaf\x87\xda\xcc\x57\x51\x26\x8f\x8f\x16\x2c\x46\x67\x52\xc8\xfc\x94\x51\xf0\xd6\x0f\x19\x27\xdd\x5c\x81\x98\x4c\x09\xd3\xde\xc1\x24\xf7\x14\x5f\xf6\x28\x91\xd3\x29\xcb\x50\xa2\xa2\xa2\x46\x87\xc2\x91\xba\xca\xc9\x3c\x22\xa3\xa8\xc8\xf4\x83\x64\x7b\xd3\x34\x4d\xb8\x65\x4d\x5c\x5c\x29\xb5\xa4\x01\x71\x31\x65\x51\xbe\x49\x29\x87\x4f\xca\x7d\x61\x87\xda\x9e\xe5\xf7\xf6\x7b\x84\x14\x6c\xe4\x00\x9b\x3e\x08\xa4\x7d\xe3\x5d\xec\x1c\x71\x3b\xfb\x1f\xc2\x9b\x9a\x61\x7b\x1b\xf6\xbf\x25\x8f\x41\x29\x10\xa0\x5a\x26\x77\x58\x68\x7c\x27\x6d\xe4\x06\x70\xd4\xc0\x5c\x80\x92\x26\xa0\x14\x33\xb1\x47\x38\x68\x29\xa7\x2b\xb0\xdd\x82\x62\x89\x66\x60\x7c\xd6\x63\x53\x13\xf7\x68\x7c\x15\xa7\xc5\x3c\xf8\x10\x6a\xfc\x9d\xf1\x07\xb4\x53\x99\xf6\xb6\xfa\xc6\x9b\xe1\xcb\x97\xa5\x0e\x54\xbf\xbe\xa8\xcb\x5c\xe9\xef\x21\xcf\x5c\xc6\x68\xc0\xd9\x7e\x6d\x98\x63\xeb\xab\x5e\xfa\x99\xe7\xf2\x80\x50\xb2\x70\x12\xbb\x60\x68\x48\x3d\x8f\x8b\x6f\x48\x48\xed\x52\x43\xe2\xc7\xc8\x52\xab\x23\x63\x15\xeb\x94\xa3\xc6\x65\xd3\x50\x6c\x9d\xb5\xaa\x58\xcb\x48\xa0\xf2\x18\x38\xb2\x3e\xe3\x33\xdb\x0e\x69\x04\x6a\x5b\x06\x90\xab\xc3\xa2\x6f\x38\x6a\x39\xa0\x44\xb8\x2b\xa6\xec\x52\xc6\x6c\x2c\xb3\xfc\x1a\xc2\x64\x3b\x2f\xe4\x5f\x37\xba\x40\xec\xb6\x2a\xb5\xfd\xb0\x15\x37\xe6\x36\xb0\x2d\x13\xc6\x4e\xaa\x74\x6b\xc3\x7a\xcc\xd6\xac\x54\xb8\xe8\x77\xdb\x49\xa5\x14\x2c\xd2\x02\x4f\x23\x4f\x57\xca\xa4\xb7\x41\x30\x17\xc8\xc8\x31\xc5\xec\xb2\x00\xa1\xd0\x4a\x51\xe5\xc6\x6b\xf3\xcd\x37\x8e\x1d\x2e\xf6\xbc\x86\x28\xd8\xd7\xaf\xfe\x74\xf4\x27\x6f\x26\x9a\xb0\xb3\x41\x28\x14\xbc\x47\x30\x78\x77\x38\x78\x57\xfc\xed\xf6\x11\xb8\xad\xa6\xf3\x44\xce\x21\xc6\xf6\x9d\x09\xd9\xbb\x66\x73\xd6\xa9\x17\xbf\xf0\x75\x72\x2f\x89\xa6\xe4\xc6\xc5\x36\xd2\xd8\xa1\x79\xf4\x00\xed\x45\x6f\x5b\x9e\x11\x18\x11\xb2\x23\xc9\x22\x4f\xb5\x00\x22\xc0\xaa\x10\x5b\x22\x9f\xc8\xb9\xc5\x30\xc8\x5a\x14\x72\xd2\x81\xc9\x8c\x6d\x1d\x2c\x30\xf0\x12\x54\xe9\x6a\xe7\x7c\xc5\x84\x2f\xd1\x70\x19\x30\x1d\xb3\x38\x9c\x0d\x61\x06\x6c\x12\x3e\xd9\xf0\x42\x23\x3e\x9a\xe5\x43\x08\x2d\xac\x74\x3b\xc2\x94\xc8\x79\x6f\x5d\xc6\x45\xd5\xd6\x3e\xa3\xb3\x22\x49\x40\xa6\xb7\x4c\x0f\xde\x9c\x44\xce\xed\xb3\xe5\xdb\x0a\xf0\xb1\xce\x63\x06\xa2\x54\x22\x21\x65\x74\x4d\x37\xb0\xa2\xd9\x61\x22\xe7\x87\xae\x04\x32\x4c\xa4\x37\x8d\x79\xc7\x2e\x7b\x5a\x5e\x2e\x6c\xcb\x4a\x49\x33\xaf\x19\x5a\x1c\xd2\x00\x02\x77\xa6\xc5\xe9\xd0\x95\xba\xb8\xfa\xc1\x3e\xe2\x75\x63\x40\x24\x07\x18\x79\xf3\x88\x9d\xdc\xb0\x15\xcb\x78\xbe\xd6\x67\xd1\x67\x3f\x6e\x7b\x77\x57\xca\x7c\x4f\xe8\x54\x82\xfa\x40\xdf\x1e\x8d\x42\x5e\xda\x93\x31\xcc\xd3\x68\x2b\x90\xc8\xb9\x51\x47\x55\x1b\x1b\x89\x99\x7c\xc2\x7e\x6e\xa2\x8c\xb1\xee\x70\xbf\x8b\x66\x8f\x2f\xb6\x27\x95\xc7\xb2\xc8\xbf\xe4\x8e\xd6\xdd\xcf\xe2\x45\xad\xf9\x97\xdb\xcb\x5a\x39\x97\x90\x5c\x4a\x93\x36\x4f\x48\x7b\xd1\xe0\x31\x33\xad\x5a\x55\xc7\x8f\x01\xc2\x92\x3e\x80\xce\xfd\x86\xff\xd3\x87\xa3\xad\xaf\x95\xad\x3d\x72\x12\xc7\x9d\x11\xe0\xfb\xef\x9d\xc6\x55\x00\x4f\x55\x53\x37\x23\xb1\x5c\x52\x2e\x88\x13\x17\x1e\x62\x2a\x6c\xd5\xdd\x88\x0a\x42\x85\xd2\x8c\xf1\xc7\xf7\xe4\x1f\x05\x83\x04\x31\x1a\x7a\x51\x22\x8b\x78\xc0\x05\xcf\xcb\x55\x42\x29\x97\xd2\x54\xe8\x77\x35\x5c\x80\xe6\x2d\x43\x5d\x5d\x5c\x46\x01\x2e\x69\xb4\xe0\x82\x95\xaa\x1f\x21\x57\x74\x40\x53\x4e\x9e\x61\x92\xb0\x0f\xd3\x42\xe4\x85\x77\x48\xdb\x74\x60\x97\xf1\x7c\x48\x4e\xac\x03\xe7\x0c\x09\xec\xb3\x88\x2a\x06\x71\x8c\x42\xf1\x9c\xaf\xd8\x73\xb2\x64\x54\x84\x75\x53\x35\xeb\x17\xf8\xab\xb2\x9c\x14\x29\x68\x17\x2e\x4f\x6e\x31\x81\x82\x55\xb5\xd9\x89\x81\xfa\x77\x60\xd0\xcb\x57\x7f\x1a\xbe\x18\xbe\x18\xbe\xdc\x1a\x8d\xcc\x24\x01\xdf\x14\x3f\x2a\x58\x0f\x4c\x10\xf3\xf4\xdf\x46\x09\x56\xae\x18\xcf\x1a\xfd\x84\x02\x15\x20\x96\x53\xc8\xb7\x02\x8f\x39\x66\xb5\x1e\xd6\x30\x4d\x73\xd5\x1a\x42\xfb\xfb\xfa\x66\xed\xef\x3f\x3f\x70\x3c\xf8\x02\x92\x19\x80\xb2\x04\xe4\x01\xda\xd9\x5f\x1e\x7d\x3f\x7c\xf5\xed\x9b\xa1\xf9\xef\xf1\x77\x20\xe5\xb9\x73\x1d\xbb\xfb\xf2\x4a\xf4\x23\x01\x79\x64\x20\x31\x9b\xa9\x15\xed\x1c\xa2\x35\x13\x4c\x99\xb1\x14\xc4\x0e\x81\xfb\xee\x4f\x7f\xfa\xb6\x25\x1f\x62\xe8\x86\xe6\xc5\x36\x45\x17\xde\xdf\x7e\xf8\x35\x0a\x2e\x80\xe5\xb9\xa6\x32\xa1\x49\x04\xe1\xe9\xa5\x0e\xd4\x6f\xac\x78\x7f\xfb\xa1\x9e\x88\xa8\x2a\x33\xd0\x56\x62\xe0\x69\xf5\x04\x04\xcd\xad\x26\xac\x67\x64\xa7\xa3\x3b\x33\x3d\x1c\x1b\x9b\x26\x59\xf5\x58\x45\xe0\x4e\x8c\xfb\x5a\x28\x5b\x11\xb2\xca\x1a\x25\xe1\x5a\xdb\x54\xce\x82\x50\x77\x7d\x60\x7f\x2e\x93\x99\x9b\x30\xc5\x10\x21\x2d\xf3\x22\x37\x62\x1f\xdd\x10\x45\xc0\x80\x6a\xc1\x46\xc7\x54\x82\xd8\x4f\x43\x6b\x59\xac\xed\x22\xa4\x20\xcf\x38\x38\xf0\x59\x61\xad\xd2\x3d\xbd\x3f\xb9\xf9\x5f\x1f\xce\xaf\x4f\xce\xce\x49\x4e\xb3\x39\xcb\x3d\x59\xb8\x3b\x4e\xa8\x94\x55\x7f\xb3\xc4\x5c\x26\x25\x17\x2c\xc2\x39\xee\x2a\x37\x97\x11\x9c\x55\x79\x3e\x1a\xc0\x21\x1b\x09\x7a\x92\x53\xc8\x41\x81\x08\x12\xc3\x01\x97\xa1\x1e\x97\x27\xb7\xc6\x1e\x01\xde\x05\xae\xf2\xc8\x6f\xa7\x5d\xd0\x15\x97\x59\x99\xa2\xcf\xf8\x75\x2a\x74\x9b\x09\x06\xa4\x7e\xd9\x54\x4f\x82\xe5\x09\x17\x2d\x46\xa7\x36\x78\x43\xb8\x83\x5e\xee\x35\x9b\xf7\xc9\x36\x71\x55\x6f\x6f\x1f\x1a\x37\xed\x4c\x86\xbf\xc0\x81\xe8\xf7\x31\xcb\xb9\xa6\x43\x5e\xb1\x1c\x29\xd8\x94\x25\x52\xcc\xb1\x58\xdc\x48\xdf\x3e\xf0\xea\x1b\x98\x81\x50\x21\x78\x58\xf9\x23\xc5\x2c\x4d\xe4\x7a\xc9\x44\x1e\xe6\x37\x6c\xbc\x40\xe9\xc5\x12\x43\xc6\x86\x85\xbc\xaf\xf2\x5b\xe2\xe4\xcf\x30\x49\x5b\xa5\xd1\x5c\xca\x98\x25\xde\x91\x91\x2f\x41\x31\x2c\x9a\x41\x19\x7b\x4c\x66\x51\xba\x7d\xe9\x1b\x09\x63\x47\x72\x99\x16\x26\x7d\xfb\x73\x53\x8b\xb0\xf0\xfb\x1d\x56\x22\xf2\xcf\x28\x1b\xfd\xbd\x3a\x95\xcf\x06\x06\xc8\xda\x38\x9b\x81\x14\xa9\x45\x9e\x49\x31\xd4\xdf\x7a\x57\x6b\x96\x82\x19\xe4\xab\x47\xef\x7c\x99\xe6\xeb\x6d\x59\x11\x8c\x5a\x82\x04\xd7\x34\x5f\xf4\x94\x26\xc7\x9e\x4e\xae\xab\xff\x74\x6d\xcb\xcb\x42\xe9\xd9\x65\x21\x78\x44\xfd\x09\xed\x4d\xce\x25\x7c\xc2\x31\x10\xc7\x66\x37\xb2\xe9\x30\x0f\x48\xc2\xef\x18\x39\x71\xd4\xf7\x09\x5d\xb3\xac\x5f\x42\x86\xc7\x41\x25\x93\x4b\x96\x2f\x58\xa1\x7e\x90\xef\x59\x9e\xf1\xa8\x6f\xd2\xfa\xfd\x71\xb0\xab\xd5\x0b\x28\xf2\x83\xd4\xcc\x31\x98\x82\x97\xd8\xc4\xcf\xae\x25\x09\x46\x42\x58\x07\x5b\x8d\x4b\xd5\xf8\xb6\xb6\x06\x04\x25\x55\xa9\x1b\x0e\x90\x02\x2a\xe6\x45\xca\x32\xad\x13\x72\x06\xa8\x28\x56\x8d\x44\xa4\x66\x51\x26\xc3\x10\x8b\x0f\xb0\x5d\xe0\xb9\x75\x56\x84\xb9\x8b\x9e\x58\xd7\xa6\x02\xfe\xa3\x41\xdf\x00\xbc\x55\x2c\x37\xe0\xd7\x02\x7b\x23\x37\x71\x61\x0d\xd7\x65\xc1\x0a\xbd\xa5\xa7\x7b\xc4\x6f\xec\x31\xe0\xdf\xde\xb1\xc1\x1f\xa5\x2a\x65\x02\x34\x86\xdb\xd4\x6a\x55\x53\x2f\x69\x32\x07\x6c\xb6\x69\x13\x55\x72\x11\x03\xad\xae\x76\xc7\x9e\x76\x7b\xcc\x32\x7b\xc9\x39\x1b\x9b\x73\x05\x1e\x1b\xf1\xf9\xc5\x37\xf8\xfd\x8b\xef\x5b\xc4\xb7\x00\xb3\x53\x6d\x70\x8c\x76\xb0\x47\x23\xaa\xb7\x7f\x45\x28\xac\x97\xdd\x8e\x4a\xb4\xdc\xa0\x4f\x3c\x63\x3f\x14\x34\x8b\x1f\x7d\x0a\x81\x11\xaa\x73\xb8\xe7\x5a\xae\xa3\x99\x3f\x01\xb2\x81\xc3\x63\x4f\xc2\x2f\x12\xe2\xe1\x3c\xf2\x24\x7c\x43\xda\xc3\xf9\xe2\x27\x91\xb1\xa5\x5c\x31\x9b\x66\x04\x12\xd5\x74\x0a\x7d\x9f\xea\xb1\x64\xa6\x4a\xd0\x8a\xd5\x33\xcd\xd8\x3a\x7c\x2b\x16\xf2\x27\x9b\x32\xe6\xe6\xae\x29\x39\x8f\xa1\x09\x0e\x43\x89\xce\xa6\x32\xc2\xa8\xe4\x92\xc1\x70\x1c\x02\x42\x41\xcf\xe0\xd7\x44\xe3\xb8\x99\x01\xc7\x06\x79\xdb\xda\x26\x4e\xe6\x24\x93\x15\x85\x51\xff\xa0\xf7\x0c\xd7\x62\xf6\x6b\x17\x93\xac\x4d\xce\x26\x33\xc3\xd6\x67\x60\xb2\xca\xf4\x76\x24\xb8\x6e\xf6\xa8\x45\x63\xe8\x7f\x6f\x78\x0e\x07\x43\xee\x8d\xc3\x65\x5e\xa8\xca\xff\x4a\x73\xdc\x10\x35\x09\xee\x6a\x35\x6f\xb5\xf7\x86\x87\x17\x52\x0c\xfe\xc9\x32\xaf\x62\x89\x3b\xda\x47\x47\x30\x50\x75\x93\xe3\xd6\x06\xeb\x12\x4e\xb7\xb7\x17\xfd\x41\x74\x7b\x7b\xe1\xfa\xef\x0d\x72\x89\xe9\x1d\xad\xa7\x3f\xc8\xa0\x48\xaa\x07\xf7\x81\xda\x8f\x06\x3e\x06\x8a\x4f\xcc\xbf\x08\x48\xb2\xad\xeb\xc8\xb5\xa7\xd3\x13\x9c\xc5\x9d\x74\xe7\xdb\xba\x8d\x90\x05\xf5\x6b\xfb\x1f\xeb\x36\x82\xd9\xcf\xac\x87\x48\xbb\x40\xf0\x58\x70\x63\xf2\xad\x7e\x50\xbe\xb1\xc6\x5a\x37\x78\x36\xb3\x66\xc4\x39\x43\xbf\x3b\x5b\x77\xce\x8f\xff\x65\x9e\xe5\x21\x19\x10\x5b\x8c\x7a\x34\x56\xc7\xa8\x06\xf3\xa6\x45\x8c\xa4\x50\x79\x56\xf8\xe2\xbd\x49\x49\xbb\x06\x06\xa6\xa3\xf1\xc9\xfb\xba\x1f\xcd\x00\x86\xd6\xdf\xc3\x59\xd6\x46\xb4\xdd\x1f\x05\xba\xb5\x88\x6c\xb0\x6e\x17\x00\xaf\x9b\x1d\x90\x5c\xd6\x12\x43\x60\x1a\x6f\x29\x94\x55\x04\xfa\x55\x43\x46\x01\x87\xc8\x91\x23\xed\xb9\xa9\xb8\x78\x78\x75\x0a\xe1\x54\x25\x19\x18\x69\x74\x29\x63\x2c\x07\xbc\x35\x19\xd6\x53\x81\xe3\x64\x48\xbd\x56\x4f\xf4\xcb\xd2\x8c\x45\x14\xfd\x56\xc9\x8c\xae\x50\xe5\x74\x5d\x1f\x45\x0d\xcb\x04\xc5\x2d\x65\x8d\x68\x6c\xb3\x20\x1a\x67\x25\x67\xdb\x68\xe5\x59\x51\x4c\x55\x5b\x15\x2f\x6e\x4c\xe4\x25\x5b\x35\xdd\x1c\x17\x31\x16\x45\x9b\x35\x21\xab\x6a\x85\x78\x0d\xbf\x5d\x78\xd3\x07\x77\x24\x73\x58\x52\x9f\x02\x82\xf4\xc9\xc4\xb0\xe4\x3e\x45\x57\x8f\xae\x2d\xf9\x17\x06\x7a\x41\xde\xaf\x7d\xc1\x07\x6d\x39\x17\x1a\xc8\xd1\xc9\x23\x35\x0e\xbd\xff\x09\x7b\xf5\x2c\xa1\x43\xaf\x69\xdb\x31\x0e\x6a\x86\x63\xea\xd3\x66\x0f\xc6\x47\xc8\xff\x02\x78\x4f\xbc\x42\x6b\x65\xc8\x61\x35\xdb\xfe\x81\x13\x9e\xb6\xf1\xe3\x56\x49\xde\x3a\x73\x82\x84\x11\xa9\x57\x52\x8f\x30\x32\xf5\xe8\xde\x91\xd0\xc3\x8b\x52\x41\xa4\x7a\x42\x2a\x0f\xa3\x43\xbb\x90\x32\x1d\x63\x72\xf7\x3e\xca\xe0\x4f\x28\x7d\xa0\x3f\x1a\x98\x9d\x57\x1a\xd2\x8a\x81\x2a\xb4\x62\x7b\x0f\x6c\xc6\xf8\xb6\x97\x2c\x91\x32\x55\x4e\x45\x51\x28\x38\x82\x4a\xe4\x8c\x99\x28\x1e\x8d\x37\x98\x7e\xd4\x64\x92\x26\x10\x95\xad\xb7\x1b\xf4\xea\x32\x99\x67\x31\xa3\x42\x99\x94\xe7\xec\xf2\xe4\x76\x7f\x3f\x6e\x06\x9e\x7f\x10\x50\xea\xb7\xaa\xf8\x69\x53\x47\xec\x79\x65\x25\x2e\xca\xea\x05\x8a\x61\x15\x2a\x5b\x23\x16\xb7\x13\x49\x91\x73\x81\x6f\xc8\xd4\xe4\x68\xab\x65\x8a\xf7\x8d\xfa\x98\xdc\xb0\x8a\xc7\x2c\xa2\xd9\x49\x14\xb1\xc4\xbc\x7a\x7d\xe5\xdb\x9b\x60\xd7\x52\x21\x86\x99\xcc\x97\xc0\x72\xd9\xa9\x02\x8c\x59\x39\xc6\x93\x75\x5f\xe0\x78\xda\x23\x0d\x66\x7d\x37\x1f\x7c\xbd\x2c\x3b\x4d\xa8\x90\x62\xbd\xd4\xaf\x9b\xa1\x47\xc6\xe7\xd6\x6b\xca\x43\xb9\xd9\xad\x65\x0b\x35\x7c\x30\x5b\xae\xc6\x39\x54\xd7\x0f\x65\x36\x1f\x92\x0b\x39\x57\xe4\x1e\x4b\xc9\x69\xf6\x3d\x2f\xb2\x40\x19\x0b\xe3\x84\x8a\x25\x13\xad\x31\xde\x89\xe9\x86\x34\x5c\x14\x4a\x1b\xf0\x19\x8f\xa8\xc8\xab\xe4\x61\xab\x22\x11\x2c\xa3\x98\xaf\xcb\x37\xf8\x82\x2a\x14\x76\x63\xae\xa0\x7e\x4f\xe5\xc8\x67\xdd\x8b\xe5\xcc\x6e\x1e\x2b\x35\x14\xaa\x13\x23\x1f\x25\xef\xd7\xcf\x6f\x24\x78\xce\x69\x12\x4a\x89\xda\x76\x88\x6e\xd7\x7a\x51\x47\x5b\x37\x33\xd6\x3f\xf9\xe5\xfe\x99\x2c\xf9\xe9\x25\xbd\x63\x68\x7b\xd7\x03\x37\x9c\x52\xb7\x66\xf6\x9b\xdb\xeb\x29\x5d\x35\xb7\x66\xe4\xab\xda\xb6\x36\x44\xeb\xb0\xe9\x0c\xf7\xe4\x91\x16\xbf\x3b\x7a\xf3\xa8\x4d\x85\xea\x3d\x74\x6d\x2c\x5c\x29\x02\xd3\xca\x39\xf5\x63\xca\x42\xf2\xc1\x38\x9d\x8d\xba\x15\x56\x75\x83\x94\x75\xce\x23\x2c\x0e\x8d\x69\x97\xca\x6c\x72\x09\x2d\x84\x1f\x58\x6e\xa9\xf1\x66\x59\x07\xbc\xe1\x95\xf9\xc9\xa4\xd3\xcb\x81\x03\xc1\xcc\x59\xd3\x62\xb6\x2d\x8b\xbf\x7a\x48\x68\x6f\x12\xfc\xf1\xa7\x8b\x93\xcb\xbe\x71\xf9\xe0\xfd\x1f\xf2\x3f\x80\x91\xea\xb1\xe9\xc0\xf2\xe1\xf7\x46\x7e\x01\x3f\xd3\xb6\x18\x7d\x3f\x17\xc7\xd5\xaf\x14\xa3\x0f\xb0\xeb\x13\xa4\x0f\xbb\x6a\x8d\xd2\x87\x1c\xe0\x2e\x50\x7c\x5b\x73\x62\xf8\x5b\x03\xf6\x5f\x6e\x1f\xb0\x6f\xb7\xf2\xb1\x33\x07\x77\xb9\x99\x8f\x47\xad\xdb\x39\xfa\x52\xdb\x79\xfd\xfd\x23\xb7\xf3\x98\x54\x49\xd0\xf1\xe3\xe5\x68\xdb\x7e\xa5\x46\xbd\xef\x55\xfa\xd4\xe8\xb0\x19\x44\x52\xb6\x70\x38\x54\x1f\x18\xf5\xb5\x01\xf4\x79\xc6\x44\x44\x53\x55\x24\x36\x43\xd9\xea\x4d\xe9\x8c\x23\x91\x80\xe0\x97\x50\x9e\x25\x81\xd8\x74\xb8\x67\x3e\xa7\x28\xf2\x64\xbe\xa8\x09\x92\x1e\xa8\xd5\x04\xca\xc7\xa3\x27\x83\xe5\xc8\x03\x96\x23\x1f\x58\x8e\x7e\x6d\xb0\xfc\x28\x55\x7e\x2e\xa2\x6c\x9d\x6e\xc3\x05\x7f\x6a\xed\xde\x02\x2e\x2f\x17\x26\x55\x3e\xc8\xe5\xc0\xa4\x11\xb2\x83\x39\x90\x7d\xba\x69\xb8\xdc\x6f\x19\x49\x7a\x49\x97\xdd\x7a\xc7\x4f\xde\x6e\x0d\xfd\x0d\xb8\xf3\x18\x47\xba\x40\x18\x52\x49\x5c\x1d\xbc\xb1\x23\xba\x9b\x2b\x97\x39\x7c\x4c\x16\x20\xff\x26\xb7\xc1\xf8\x46\xc7\x47\x6f\xf4\xa8\x73\xa3\xf3\xc1\xea\xe8\x69\x9b\xfc\x2b\x63\xe9\x49\xc2\x57\x5b\x9c\x62\xd9\xa5\xc2\xd0\x6a\x9d\x63\xcd\xf1\xab\x9c\x89\x5c\x37\xa3\xc1\xea\x4f\x58\xaf\x1a\x74\x9e\x75\x0b\x8c\x13\x1b\xfd\xe8\x4d\x5d\xc0\x0a\xb8\x98\xf7\xb2\xee\x7f\xf2\x76\x6b\x94\x72\xb7\x3f\xa1\xa9\x3f\xe4\xf1\x37\x5d\x37\x10\xb4\x96\xe2\xe1\xe5\x77\xaf\xb6\x7f\xfe\xfc\x9b\xda\x06\x1d\x1b\x1d\xdb\x36\xe6\xdb\x93\x2d\xc6\x59\x47\xc8\xe6\xc6\xb6\xf7\x54\x28\x37\xd6\x87\xeb\xfa\xe4\x34\xae\x6f\x40\x7f\xe1\x32\x5e\xad\x44\xd2\xb9\x45\x5d\x8c\xd7\x23\x32\x25\xb9\x3b\xda\xe6\x80\x90\x01\x6b\xd9\xd5\xd1\x17\xdb\xd5\x53\x10\xf0\x1a\xd5\x4c\xd7\x45\xc2\xc6\x19\x97\x99\xbf\x66\x76\x60\x8f\x9e\xce\xf5\x1d\xa7\xf6\xdb\x60\xfa\xec\x8a\x66\x42\x87\x8a\xe6\x58\xfd\x57\x56\xd4\x09\x88\xbf\xe8\x69\xfb\x66\x8d\xed\x0a\xad\x64\x37\xa9\x94\x33\x7f\xf1\xb8\xba\xcb\x80\xb7\xd7\xe6\x03\x9e\xca\xb8\x4c\x9c\x1a\xa2\xfb\x46\x5f\x87\x43\xa1\xff\x22\x38\x9b\x0b\x99\xa3\x8e\x0b\xb8\x73\x51\x15\x2b\xc1\x74\x14\xc6\xb3\xdc\x37\xaa\x13\x9c\x63\x3d\x96\xc1\xb1\x61\xc1\x78\xe6\xf8\x0b\xb8\x79\xe2\x8c\xd5\x0d\x1d\x93\xbd\xb6\x17\xab\xad\x3c\x11\xeb\xc9\xde\x41\xb5\xb3\x8c\xfd\xa3\x60\x10\xa6\xbb\x36\x41\x7c\x5b\x7a\xe9\x3f\xc4\xbd\x33\xcb\x79\xb2\xde\xfe\x74\x36\xae\x6b\x04\x35\xb6\xa8\x82\xa3\xd5\xa0\xc0\x82\x3b\xa1\xf2\xb1\xa6\x80\x49\xcc\xc4\x7a\x33\x86\xf0\x51\xfa\xa8\x87\x38\xdd\xd6\x14\xfe\xd3\xd9\xf8\xcb\x66\x4d\x83\x04\xc0\x8f\x4a\x98\x66\xec\xdc\xbe\x81\x2b\xd3\xf7\xdb\xf1\x3b\xb2\xa4\x29\x04\x7e\xd1\x3c\xa7\xd1\x02\xeb\xa8\x81\x61\xc8\x6f\x12\xff\xe9\xcc\x9b\x4a\x61\x33\xad\xda\xf6\x06\x71\xbf\x35\x62\xf3\x5b\xd0\x81\xc6\xae\x73\xbb\xca\x65\x46\xe7\xcc\x7e\x85\x3e\x11\x70\x5a\xb6\xee\x8f\xe6\xe6\xac\x41\xe7\x8e\x8b\xf8\x98\x4c\xf6\x6c\xed\xb9\x34\x29\x32\x9a\x54\xdf\x94\x95\xdf\xd4\x31\xf9\xf9\xef\xfa\x1b\x70\x38\x89\x3f\xa2\x42\xd4\x7c\x3b\x11\x83\xc1\x60\x22\x68\xca\xcd\xf7\xc7\x84\xa6\x9c\x3d\xe4\x4c\x60\x0a\xd8\xbb\xef\xd4\x90\xcb\xc3\xd5\xcb\x89\xc0\x19\x4f\x0b\x95\xcb\xe5\x35\xc3\xdb\x7e\xc6\x66\x5c\x70\x4c\x92\x69\x63\xad\x60\x81\x9a\xc7\x3c\x36\x61\x54\x46\x02\x02\xfb\x31\x67\x6a\x18\x65\xf1\x70\x43\x99\x3c\x11\x9a\x49\x85\xbe\xf3\x4c\x16\xe9\x31\x09\x34\xc3\xb1\xeb\x60\xf8\x01\xe6\xb9\xc4\x79\xd0\x01\x1b\x7f\xd6\xcc\xc5\x5f\x43\x4d\x2e\xca\x9c\xb8\x16\x78\xde\xf5\x9a\xd3\xe1\x02\x82\x97\x7c\x8d\x60\xb2\x34\x63\x70\xa6\x1f\xc4\x9d\x90\xf7\xe2\x1d\x67\x49\xac\x8c\x9c\x03\xe0\x8f\xa4\xc6\x81\x53\xd4\xaa\xeb\x6f\x56\xf6\x28\xf4\x3f\x06\x06\x64\x1a\xd2\x30\x5f\xb4\x60\x4b\x5a\x5e\x56\x99\x32\x71\x32\x1e\x7d\x7c\x7d\x53\xff\x3e\x68\xea\x73\x8e\xb4\x8e\xa0\xf5\xcb\xae\xc7\x34\x2a\x72\xb7\x62\x9e\x59\x1a\x8b\xcd\x3a\xd0\xa8\x0d\x3e\x76\xb0\x4f\x91\x7b\x33\xa3\xca\x99\x96\x7f\x11\xcd\xf5\xcd\xcb\xf4\x38\x4e\x6e\xcd\x15\xcb\x30\x17\xf7\x5c\xf0\x7f\x96\x83\x97\xc1\x91\x09\xcd\xd9\x66\xb8\x40\xa9\x19\x75\x72\xb5\x2e\xe9\xda\x98\xc0\x48\x21\x9c\x01\x31\x63\xda\x90\xbc\x97\x10\xde\x30\x93\xc7\x64\x91\xe7\xa9\x3a\x3e\x3c\x9c\xf3\xdc\x62\xb3\xd1\x7b\xe6\xeb\x43\x78\x20\xf9\xb4\xc8\x65\xa6\x0e\x63\xb6\x62\xc9\xa1\xe2\xf3\x01\xcd\xa2\x05\xcf\x59\x94\x17\x19\x3b\xa4\x29\x1f\xc0\xda\xc1\x3e\xa8\x86\xcb\xf8\x9b\xcc\xa0\xbf\xda\xf7\x5d\xfe\x4d\xb2\x00\x58\xda\x76\x0c\x1a\x47\x4d\xcd\x7c\xe8\x6c\x62\x1f\x4a\x68\xdb\x94\xa9\xd7\xe7\x37\xb7\xc4\xce\xee\xcd\x0e\x86\xc0\xaf\x7a\xaa\xea\x1c\x34\xd0\xb8\x98\x31\x93\x0f\x06\x62\x11\x73\xb7\x2e\x29\xa4\x06\x03\x3f\xcc\xe6\xa8\xaa\x98\x2e\xc1\x29\x07\x1f\x57\x8c\x5a\x39\x05\x9e\x00\x12\x37\xa6\x31\xcd\xa1\xec\xb5\x20\xa7\x74\xc9\x92\x53\xaa\xd8\x57\x3f\x05\x0d\x6d\x35\xd0\xb0\xed\x7b\x0e\x35\x12\xd5\x6c\xbe\x69\x41\x2e\x29\x52\xf5\x69\x31\xac\xd3\x34\x4d\xd6\x57\xe2\x9d\xcc\xee\x69\xd6\xc9\x3b\x9c\xd4\x5a\xa3\xf3\x08\x78\x05\x60\x61\xf0\x04\xed\x65\x4e\x5d\x53\x6e\x8b\x6c\x7a\xa5\x59\xe0\x33\x60\x24\x9b\x7e\x64\x4b\x46\x21\x96\x97\x32\xbf\xd5\xcc\x49\xa7\x63\x4e\xd9\xd2\x59\x75\xc9\x60\x1a\xd3\x33\xc4\xf7\x54\xc9\x67\x60\x1f\x7e\x9e\xc7\xdd\x9a\x25\x15\x73\x59\x15\x2d\x37\xbe\x73\x04\xac\x17\xfb\x60\x5d\x16\xe8\x49\x4c\x80\x97\xe2\x62\xee\x35\x53\x83\x61\x9a\x2a\xe3\x0e\x12\xd9\x5a\x87\x68\x43\xb9\xcd\x6c\x62\x74\x1f\x84\x09\x0d\x24\x00\x86\x14\x1c\xb1\x35\xb0\x69\x0e\xb3\x5a\x9a\x77\x61\x58\xcb\xc5\xc0\xc4\x30\xd6\x01\xb1\xbd\x31\x3f\x64\x75\x63\x50\x36\xc7\x38\x01\x4f\x19\x31\xcc\xe3\xb6\x67\x8b\x35\x5a\xbb\xce\xf5\x16\x92\x74\xc7\x60\x3d\x35\xae\x2e\xa6\xb8\xab\x61\x45\xc9\x39\x8d\x16\x18\x11\x6e\x32\x02\xfa\x59\x3e\xdb\x1b\xf7\x6d\x42\xbd\xa2\x8c\xe7\x2c\xe3\x14\x13\xb2\x3b\xa1\xf1\x90\xb1\x3e\xb2\x82\x05\xa0\xfe\x56\xae\x2e\xb5\x3d\x4c\xf6\x4e\x88\x96\xf0\x48\xa5\xa6\x75\x5d\x77\x7c\x4b\xf1\x72\x97\xa4\xac\x83\x4c\xde\xca\x7c\x61\x12\x02\xca\x6c\x80\xb6\xa0\xd2\x34\x3d\x36\xe7\x25\xdc\xef\xb0\x5a\xb7\x17\x36\xc0\x63\xb2\x0c\xca\xa3\x23\xe6\x0d\x9c\x42\x2d\xb2\xc8\x31\xc5\x96\x4d\x8f\x84\x4d\xb4\x04\x31\x95\x50\xed\x0a\xce\x23\xb0\x60\x11\x97\xc5\x78\x1d\xc0\x83\xd9\x6b\x32\x11\x78\x78\xa9\xc4\xb4\x00\x4d\x48\x04\x7c\x4e\xf5\x61\x0a\x36\x87\xc5\x19\x96\xe0\xc0\x08\x55\x36\x52\x7e\x32\x99\xec\x5d\xca\x5c\xff\x67\x48\x4e\x92\xc4\x64\x39\x70\x47\xf7\x8f\xac\x7b\x43\xd4\x31\x20\x54\x59\xea\x88\xe6\x5c\x41\x29\x1b\xcc\x2d\x66\xb6\x92\x4b\x1c\x73\x48\x4e\x4c\x71\x83\x00\x74\x01\x39\xa9\xb0\x08\x6a\x12\x02\x98\x4d\x6b\x10\xc1\x76\xf4\x3f\x1c\xcf\x00\x8a\x83\x87\xe1\x0a\xd0\xf7\x2f\xd1\xd2\x90\x6a\x89\x81\x6a\xd0\x5d\x1e\x59\x34\x94\x01\x13\x3f\xdd\x85\x9a\x62\xa6\x72\x53\x7d\x2a\x38\x4a\xc3\xc3\xb2\xec\x50\x5e\x68\xcf\xf1\x19\x7f\x24\x7d\x31\x43\xc3\x82\x6a\xc4\x99\x9f\xe8\x57\x3a\xf7\x47\x1f\xf6\x02\x06\x21\x86\xcd\x4f\x69\xc4\x6e\xcc\xe5\x6b\x69\xbb\x41\x06\x2e\x9b\x9d\x4d\xfc\xb9\xb4\x06\xe0\x99\xe6\xcf\x83\x69\x31\xaa\x4f\x09\x18\x5a\x12\x01\x27\x7f\x81\xc9\x11\x55\x2b\x23\x2f\x33\x3e\xd7\x70\x08\x51\x00\xfb\x01\xfe\xeb\x99\x46\x21\x30\x40\x23\xa5\xca\x9f\x3b\x4e\xcb\xe6\x8a\x40\x6e\x17\x98\xdb\xff\x78\x78\x40\x56\x95\xa7\x36\x0f\xb1\x89\xf0\x06\x44\xde\x80\x4d\xfb\xa0\x48\x25\x51\x50\x2f\x41\xa0\x5f\x28\x14\x18\x4a\xcb\xb8\xa2\x4b\x66\xd2\x5c\xe4\x01\xa5\x4d\xf5\x81\x94\x56\x3e\x3f\x6d\xeb\xfb\xe6\x30\x10\x53\x97\x02\x77\x00\xd5\x6e\xdb\xc2\xcb\x65\x40\x90\x0e\xbe\x93\x19\xa9\x89\x81\x07\xc1\x37\xc0\x7e\xb0\x12\x95\x07\xa5\x96\x26\x25\x97\x8d\xbb\x73\x91\x2d\xe1\x4b\xde\x79\x60\xa0\x4a\x4b\xd0\x93\x2f\x08\x13\xee\xc0\xb7\x3c\xe1\x8e\x33\xc3\x8b\x5c\xdb\x67\x70\xfb\xfb\x28\xd1\x3e\x7b\xee\xad\xba\x52\x7d\x7e\x1d\x00\xd4\x04\xf5\x1b\xfd\x6e\x67\x04\xcd\x93\x08\x0f\xd8\x46\xfb\xa0\x7a\x8f\x1e\x79\xff\x00\x3c\x62\xda\xcf\xb2\x63\xb5\xee\x16\x9d\x84\x6c\xbe\x5a\x2b\x51\x26\x15\xf0\x7c\x7d\xaf\x6c\xe0\xe1\x28\xe7\xee\x7c\x00\x08\xe6\x45\x68\xa3\xa9\xcd\x4c\x13\xcc\x54\x10\xf5\x12\x46\x2d\x68\xe6\x19\x8f\xb0\xd2\x49\xfb\x36\xec\x13\x58\xa6\xaa\x5b\x63\x24\x81\x97\x2e\x96\xa4\xaf\x03\xda\x75\xba\xe8\x16\x49\x83\x7c\x25\xa2\xcc\x75\x8d\x69\xf6\x54\x31\xd5\xdb\x0f\xbe\x3a\xa4\x95\x8f\x74\xe6\xed\x05\xe9\x56\xd7\xe2\xea\x23\x64\x7e\xb9\xdd\x99\x60\x87\x32\xc9\x44\x9d\xfd\xb2\x3b\xd6\x4d\x3a\x9e\x17\x7d\x8e\xbf\x3b\x58\x84\xca\xdd\x56\x9f\x26\x30\xca\x32\xb7\x2d\xd0\x18\x87\x82\xef\xaa\x0f\x82\x83\xdc\x40\xf1\x37\xc0\x52\x25\x97\x55\xd5\x57\x85\x91\x94\xa6\x90\x2a\x24\x46\x5e\x87\xcb\xe8\x56\x9f\x46\xf9\xc5\xbc\x9e\x99\xbd\x2c\xe9\x89\x1c\x95\x21\xe4\x5a\x40\xe9\xa4\x8a\xf0\x86\x19\x13\xc7\xed\xe9\xd8\x16\x4d\xfc\x70\x36\x0e\x14\x57\xb4\x9f\x3e\xa7\x1a\xce\x2a\x5a\x7d\x7a\xe4\x17\xdd\x6c\xdc\x8d\x28\xdd\x39\x47\xab\xcf\xf6\xd9\x47\xab\x4f\x5f\x84\xdc\x9e\xb9\xbc\xac\x3a\x75\xa0\x65\x3f\xfe\xca\x60\x26\x58\x4e\xcb\x81\x91\x0a\xa3\xed\x68\x9a\x27\x2c\xe7\x65\x9e\x51\x9c\xab\x7d\xcc\x92\x5b\x6a\x45\x95\x7e\x67\x96\x6e\x77\x65\x27\x7b\x55\x61\xea\x8e\x67\xa5\xfb\xb1\xed\xf1\xac\x80\xcd\xc8\xa6\xb5\x7a\xe6\x08\x21\x9e\xd4\x4f\xcd\x6d\x39\xe9\x5a\x99\x22\x26\xd3\xbe\x9b\xfd\xf7\xd0\x2a\x94\x6f\xcb\x0c\xda\xed\xa3\xd6\xca\x71\x9b\xab\x03\x96\x29\x84\xb2\xb2\x10\x30\xda\xd9\x96\x00\xa2\xea\x63\xd3\x3d\x21\x03\xd7\x97\x82\x75\x52\x00\x93\x43\x6a\x1b\x0a\xd6\xb1\xf7\x8a\xbc\x35\x28\xd8\x04\x69\xd8\xc4\x50\xb1\x09\xd2\xb1\x89\xa6\x64\xad\x3c\xcf\x8e\x96\xc1\xa7\x17\x2d\x53\x8f\x90\x92\xbb\x85\xe3\x56\x4d\x5f\xf5\xf1\x0a\xc7\xe4\x99\x62\xcc\xaa\xc8\x80\x94\x61\x7d\x21\xb5\x16\x39\x7d\xf0\x3b\x44\x56\x9f\xc9\xa4\x55\xb6\x36\x3c\x64\x48\x76\x6e\x1f\xdb\x6a\xc6\x1c\xd1\x5a\x66\x9b\x22\xb3\xbe\x6e\x97\x32\x47\x6b\xf5\x71\xa0\xa0\x92\x03\x04\x13\x83\x68\xcd\x59\x1d\xaf\x02\x82\xc7\x79\x4d\xda\x47\x9f\xb2\x44\xde\x3f\x3f\xa8\x2f\xd9\x01\x36\x42\x95\xf0\x5c\xb1\xa4\x4c\xff\xde\x01\x07\x54\x86\x81\x9a\xf3\x76\xc1\x48\x7e\x2f\x01\xd7\x20\x86\xd5\xfe\x86\x04\x42\x3f\x42\xeb\xaa\xa6\x53\xc7\xd9\x5d\x09\xbb\x7b\x65\xd6\x5b\xa9\x5f\x99\x23\x25\x99\xca\x90\xa0\x5a\x30\xed\xbb\xdf\x84\xfb\x85\x4c\xcc\x21\x1d\xc3\x11\x4d\x26\xd5\x83\xfc\x17\xa0\x2e\xff\xb1\xa0\xea\xd9\x72\xfd\x39\xa1\x53\x96\x3c\x07\xba\x63\x88\x7c\xd7\x75\x76\x02\xe7\xf4\xbe\x01\xc9\x70\x7d\xe8\x70\x30\x30\x2e\x35\x09\x8b\xf5\xbc\x3d\xf1\xcd\x0d\xc4\xb3\x69\xc8\x09\x2c\x0e\x96\x6b\x57\x8a\x4a\x54\xb3\xa5\xde\x88\x81\x5b\x0e\xee\x78\x73\x53\x7a\x15\xa1\x84\xe6\xd5\xa7\x7d\xbf\xe5\x96\xba\xb6\xd3\x75\xc9\x05\x60\x1e\x9b\xcd\x58\x64\x12\x1a\x19\x55\x42\x02\xa4\xd5\xe4\x26\x01\x07\x88\x72\x27\xdd\x8b\x17\x52\x0c\x6c\xf0\x2d\x5a\x6a\x31\xc9\x80\xd1\x8b\x40\x58\xbc\xab\xa4\x80\xf8\x36\x1c\xbd\x87\xd2\x6e\x13\x34\x55\x91\xe1\x2f\x21\xc4\x9b\x60\xd0\x93\x28\x92\x85\xd8\x86\xf7\xba\xa9\x77\xfc\xd5\x78\xb0\x06\x59\x6e\x1f\xd3\xa3\xf2\xa4\x24\x95\x71\x99\x13\x19\x18\xba\x92\x44\x1b\x60\x74\x90\x5e\xdc\x71\x2b\xb6\xf5\x52\x3a\x13\x52\xf7\x2f\x09\x7f\xea\x32\x01\x24\xff\x7f\x32\xb8\xc9\x63\x40\xde\x3d\x64\x48\xd3\xec\x01\x7b\x2f\x68\x93\x0a\xe2\x9a\x1a\x2b\xe3\x52\xce\x4b\x55\xa5\x66\x80\x3b\x6e\x7e\x3f\xe6\x8e\x6c\xa1\x82\x20\x7d\x39\x25\xd2\x97\x5b\x22\x9b\xf7\xab\x93\x5f\xfa\xef\x7b\xd2\x35\x59\xa9\xd2\xba\x21\xdd\xb7\xf0\x1c\x92\x51\x87\xe4\xa1\x3f\x95\x19\x02\xac\x0b\x37\xae\x55\xa1\x92\x45\x72\x53\xdc\x30\x68\x8f\xaf\x7f\x4e\x2e\xcf\xf6\xbd\xb6\xf1\xfa\x67\x3b\x8d\x56\x28\xad\x80\xfd\xd8\x3c\x9c\xdb\x71\xdd\xd8\xe7\xc9\x5c\x37\xf6\x44\x03\x71\x49\x2f\x9d\xc2\xd8\x76\x22\xa8\xab\x54\xc2\xd5\xeb\x2d\xe1\x0c\xda\xc9\x74\x37\xd1\xab\x2f\xd7\xed\x31\x67\x59\xf8\x3d\x53\xcf\x9b\xec\xb7\x29\xca\x2d\xda\xac\x8e\x04\x74\x65\x87\xb0\x2a\x48\xfb\x6a\x57\xb2\xaf\x08\x86\x3b\x83\xc4\x6c\xe1\x1d\x95\x0e\x4b\x25\x30\xba\x60\x51\xb7\x6c\xe9\x9b\x63\x91\xf5\xc0\x65\xdd\x0f\x36\x2d\x0a\x1d\x60\xbe\x64\x9a\xfd\xb5\xca\x5e\x99\x35\xdf\x6e\x5c\xfa\xd8\x04\xf0\xc7\xa5\x26\xb4\xc3\x5a\xa9\xf1\x49\x1f\xa0\xbb\x47\xd4\x1b\x95\x50\x90\xc2\x3a\x12\x18\xc7\x8e\x76\x96\x65\xab\x67\x73\xfb\x57\xd3\x17\x9b\x04\x26\xf9\x0a\x8f\xbb\xaf\xbe\xd9\x9b\x63\x83\xff\x42\x44\xc0\xb1\xcf\x3c\x82\x21\xd0\xdd\x3c\xfb\xc3\xef\xc3\x75\x29\xea\x1f\xa4\xb2\x66\x87\x70\x93\x13\x36\xcb\xd1\x8e\x55\xb9\x30\xe1\xed\xe9\xa1\xa4\x21\xee\x45\x2c\x3d\x8e\xf6\x55\xb5\xb2\x5f\x95\x82\x76\xb7\x59\xe4\x79\xda\xcf\x9f\xe1\xc7\xdb\xdb\x71\x65\xaf\x0f\x3a\x31\x68\x2c\xd1\x4d\xc3\x4b\xb7\x5e\x8e\x4f\xf3\x5f\x58\xb2\x7c\x21\xe3\x2d\x5e\x86\xf7\xd8\xe1\xcb\x72\xed\xb8\x65\x24\xea\xb8\x6f\xc7\x89\x53\x8f\x89\xd5\x41\x35\x3e\x76\x0f\x0a\xb1\x5a\x31\x8e\x62\x57\xfb\x8c\x0d\xe7\x43\xf2\xc3\xf9\xed\x01\x19\x7f\xb8\x3d\x20\x2c\x8f\x86\xcf\xc9\xfb\x22\xc9\x79\xda\x65\xe7\x30\x20\x82\x77\xff\xea\x7a\x5f\x8b\x61\x73\xf0\x23\xfc\x7d\xd9\xad\x52\x9a\x2f\xb6\x38\xc7\xfd\xb1\x6e\xff\x35\x8e\xb1\xeb\x04\xbb\x29\x8a\x7b\x82\xb0\xcc\x61\x79\x54\xb8\x4d\x7b\x16\x7d\x0f\x83\x10\x36\x9c\x1f\x93\x01\x61\x0f\x34\xca\x8f\xc9\xe1\x4c\x4a\x32\x30\x4e\x62\xc7\xe4\x70\x4a\x33\x72\x79\x75\x7b\x7e\x8c\x0e\x68\x4c\xe4\xd9\x9a\x2c\xbb\xd8\xf3\xab\xcb\x8b\xbf\x19\xca\xb9\x26\x8c\x63\x89\x52\x32\xd9\x83\x49\x50\x8b\xac\xff\x89\xb3\x58\x5d\xc7\x30\x54\x46\xad\xfa\xac\x68\xc2\x63\x5a\x2a\xfb\xb0\xc0\xaa\x66\x9f\x78\xee\x4b\xde\x57\x7d\xfa\xe0\x5c\x1d\x09\x34\x88\xa1\x6c\x5a\xad\x60\x07\x00\xde\x16\x4f\xeb\xf7\x56\x8d\x72\xf0\xdc\x9e\x32\x0b\x08\xa3\x47\x9c\xc9\x6c\x79\x6c\xc1\x3e\x29\x5e\xbc\x78\x1d\xe9\x81\xe1\x2f\x76\x6c\x53\xad\xf6\x51\x7b\x21\xaa\xc1\xaa\x60\x38\x4d\x30\xb2\xf2\x08\xab\xa1\x07\x06\xde\x4f\x9a\x01\xc7\xe8\x70\x35\xe9\xcd\x74\x10\x03\x80\x2f\x2b\x46\xa6\xa1\x54\xff\x8f\x1f\xb4\x9f\x38\xd1\x8b\x20\x75\x0f\xc5\xa3\x65\xcf\x37\x73\x74\xfa\x7e\xdc\xd7\x03\x04\x88\x51\x78\xed\x2e\x95\xa2\x16\xeb\x23\x58\xad\xc9\x36\x13\x03\x8d\x82\x29\xcb\x22\x99\x60\x59\x6b\x91\xaf\x9c\xa2\xc5\x35\x9e\x96\xcf\xea\xf6\x29\x5c\x34\x77\xd2\x98\xe9\x79\xda\x58\x5b\xb0\xa7\xeb\x46\xab\xa3\x16\x3d\x65\x2f\x4c\xd4\x5b\xdb\xe2\x9d\x07\xce\x44\x0a\x17\x4a\x00\x94\x08\x8a\x56\x6c\x23\xac\x41\xfa\x77\x0d\x60\x8c\x17\x01\x17\x55\x48\xcb\xec\xc2\xaa\x8a\xb0\xa4\x24\x67\xd1\x42\xf0\x88\x76\x78\x25\x81\x5a\x14\xd5\xff\x7c\x99\x4a\x55\x39\xd2\x61\xd9\xde\x7d\x55\xd5\xdc\x99\xf1\x8c\xdd\xd3\xc4\x5f\x3d\xa4\xfa\x20\xb5\x30\x4a\x59\xac\xdc\x23\x09\x13\x33\x89\x91\x2c\xc6\x45\xaf\xfb\x6a\x74\xda\xf0\xa0\xd9\xd3\x0f\x43\x0f\x33\x24\x6e\x8e\xb2\x2e\x13\x58\x59\x8a\xed\x3b\xf4\xf2\x86\x1d\xc2\x58\xe7\xd1\x42\x92\x6b\x13\x98\xfa\x8c\x0f\xd9\x90\xa4\x5c\xcc\x55\xbb\x0d\xac\xd7\x7e\x7b\x10\x83\xd4\x1f\x08\x16\x00\xc8\x68\x6c\x03\xc2\x9e\xec\x18\x56\x53\x6e\x21\x3f\xee\x42\x79\x6c\x2d\x63\x41\x28\xf4\xc9\x44\xe9\x0f\xe9\x09\x6c\xce\xd6\x55\x73\xdc\x7a\xab\xc4\xa1\x4e\x5a\xe1\xb2\x6a\x76\xfb\xe6\x9e\x44\x34\xaa\x88\xea\xf6\x47\xae\x5a\xe1\xb8\xef\xab\xd8\xf7\x59\xaa\x47\x24\x55\xeb\x31\xa1\x68\x68\xb5\xbb\x63\x26\x24\x9e\xa4\x94\x67\xe1\x52\x82\xd5\x47\x8b\xac\xa6\xd6\xbd\x0b\x53\x3a\x95\x45\xde\xe3\x21\xf9\x52\x92\xa3\x90\xb9\xbe\x7d\xfd\x30\xe3\x12\x1b\x77\x78\xf4\x40\x93\x76\xcf\xba\xdd\x83\xb1\x7b\x30\xfe\xbd\x1f\x0c\x21\x73\xcb\x56\x05\xc1\xd2\xee\x75\xd3\xd3\xdf\xa6\x9f\xa7\xcd\x86\x43\xa8\x65\xf9\x3a\x7c\x42\x4d\xb3\x30\xc0\x3a\xee\x71\x0f\xd7\x9e\xc7\x39\xf5\xa4\xbf\x57\xe0\x4e\xf6\x5c\xd8\x7e\xc1\xb7\x7f\xc3\xb0\x05\x1a\x5e\x97\x13\xb0\x30\x19\x02\xd6\xf3\xac\x4d\x33\x6f\xbc\x73\xcd\x39\x9f\x43\xa8\xd1\x35\x44\xca\xd9\xa8\x2f\x54\x9b\x3f\x9b\xb2\x88\x16\xca\xf8\xc4\x75\x98\x12\xca\x25\x46\x2c\x83\x31\x4a\xbf\xba\xe7\xa8\x8a\xb7\x85\x39\x6a\x5e\x82\x5d\x4f\x2c\xba\x0f\x1e\xbb\x1e\x70\x07\xae\xff\x1b\xfe\x03\x24\x95\xda\xbf\x56\x47\xd5\xbf\x6f\x4e\x6f\xf1\xd7\xf0\x34\x66\xc4\x0b\x9e\x33\xeb\x64\x07\x75\x51\x01\x41\xac\x51\x16\x6b\x47\xbe\x1c\xbc\xfa\xf6\xdb\x16\x95\xff\xd7\x43\x7b\x15\xaa\x11\x81\x9f\xba\xa1\xb5\xac\x11\xd1\x23\x2a\x2d\x50\x7e\xd7\x9d\x75\x17\x90\xb6\x0b\x48\xeb\x61\xf6\xdc\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\xd0\x8e\x77\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x42\x3b\xd9\xd1\xb2\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xe1\x67\x17\x90\xb6\x0b\x48\x6b\x7e\x76\x01\x69\xbb\x80\xb4\xf2\xb3\x0b\x48\xdb\x05\xa4\xed\x02\xd2\xbc\x83\xee\x02\xd2\x1c\x58\xec\x02\xd2\x76\x01\x69\xbb\x80\xb4\xfa\xe7\xd7\x0c\x48\xeb\x28\x5e\x8e\x59\x7c\x7d\xbf\x3d\xba\x4c\xb9\xb9\x1b\x8f\x48\xdf\x5d\xbf\x55\xbb\xfc\xdd\xbb\xfc\xdd\xbb\xfc\xdd\xbb\xfc\xdd\xfe\xe5\xed\xf2\x77\xef\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\x6a\xe7\x2e\x55\x7d\x76\xee\x52\xd5\x67\xe7\x2e\xb5\x73\x97\xfa\x5d\xb9\x18\xec\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\x94\xb7\xf1\xbf\x19\x2d\xdb\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\x6a\xe7\x2e\xe5\xf9\xec\xdc\xa5\x76\xee\x52\xe5\x67\xe7\x2e\xb5\x73\x97\xda\xb9\x4b\x79\x07\xdd\xb9\x4b\x39\xb0\xd8\xb9\x4b\xed\xdc\xa5\x76\xee\x52\xf5\xcf\x2e\x7f\xf7\x2e\x7f\xf7\x2e\x7f\x77\xed\xb3\xcb\xdf\xbd\xcb\xdf\xbd\xcb\xdf\xdd\x6b\x86\x5d\xfe\xee\x5d\xfe\xee\x5d\xfe\xee\x5d\x3a\xd6\x5d\x3a\xd6\x5d\xfe\xee\x5d\xfe\xee\x5d\xfe\xee\xf0\xfa\x77\xf9\xbb\x77\x0f\xc6\xee\xc1\xd8\xe5\xef\xde\xe5\xef\xae\x7d\x76\xf9\xbb\x77\xf9\xbb\x1b\x9f\x5d\xfe\xee\xb0\x00\xb9\xcb\xdf\xbd\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\xcd\xfd\xec\x02\xd2\x76\x01\x69\xbf\xab\x20\x8e\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xf3\x36\xfe\x37\xa3\x65\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x3c\x9f\x5d\x40\xda\x2e\x20\xad\xfc\xec\x02\xd2\x76\x01\x69\xbb\x80\x34\xef\xa0\xbb\x80\x34\x07\x16\xbb\x80\xb4\x5d\x40\xda\x2e\x20\xad\xfe\xf9\xef\x9d\xbf\xbb\x8f\xdb\x81\xff\xa8\xdb\xb9\x83\x19\x7a\x89\x54\x12\xbb\x6f\xd5\x85\x42\x59\x04\xe9\xa3\x79\xb6\x31\x09\xb6\x14\x35\x5b\x61\x60\x4b\xfe\x53\x81\x44\xe3\x5d\xfb\xb8\xd2\x8d\x5a\xde\xa4\x3a\x22\x4b\x6c\xed\xdd\x05\xba\x12\x62\x2e\x68\x50\xfe\xe8\x41\xc1\x5a\x1a\x0f\x51\x1f\x54\x6a\xb3\x17\x7c\xae\x85\xeb\xc9\x1e\x8c\x37\xd9\x03\x16\xc0\xb4\xf5\x0d\x4d\x67\x5a\x28\xcc\x81\xe9\x84\x01\x12\x79\xcf\x32\x5c\x0d\xba\x66\x3a\x8b\x53\x44\x2e\x79\x9e\xeb\xb7\x84\xdb\xa8\x1e\xdf\xa0\x91\x14\x8a\x63\x2a\x76\xd4\x5b\x4e\xf6\xb8\x98\x71\xc1\x73\x36\xd9\x23\x03\x02\x0e\x81\xce\x76\xec\x4b\x65\xd6\x49\x12\xaa\xf2\x21\x29\x77\xe6\x05\x89\x5e\x2b\x8f\x99\xc8\x79\x44\x13\xb3\xc0\xe6\x38\x5c\x10\x9a\xa4\x0b\x2a\x8a\x25\xcb\x9c\x76\x80\x00\xbe\x51\xcd\xfb\x64\x54\x6c\xe8\xf5\xe2\x95\xb9\x11\x39\x44\xb1\x9c\x6e\x6a\x3f\xd3\x8c\x9d\x5d\x9e\xdc\x76\xa1\xc7\x18\x9b\x11\x2e\x62\x1e\xa1\x66\xa7\x8c\x40\x59\xd8\xf4\xea\x75\xaa\x42\xa6\x6c\x26\xfd\xac\x1b\x15\x6b\xa2\x87\x0b\xae\x75\x2a\x65\xc2\x36\x1d\x33\x5a\xf8\xf6\x06\x97\x75\xeb\xea\xc9\x10\xab\x1d\x6d\x99\xbd\x68\x29\x8f\xee\xf0\xff\x64\xe1\x25\x40\x7a\x6f\x0d\xad\x87\x83\x09\x26\x5e\xc6\x39\xc3\x5c\x5a\xa6\x23\xac\xbb\xa9\xd6\xa1\x79\xb7\x24\x91\xf7\x08\x35\x54\xe1\x95\x4a\x2d\xe4\xac\xff\x82\xfa\x1d\xbc\xd8\x9f\x13\x9e\xb3\x8c\x82\x6a\xc5\x37\xf2\x64\x42\x06\x18\x2f\xa6\xb1\x7a\x99\xd2\x8c\x2b\x29\x0e\x08\x04\x8d\x5a\xbd\x8c\x1d\x72\x26\x25\x99\xd2\x0c\x94\x45\xe5\x74\xff\xb1\xe5\x74\xd5\x7c\x9a\xb5\x62\xff\x28\x68\xf2\x67\x74\x71\xb6\xa2\x02\x9f\x19\x19\x81\x2b\x68\x63\x4d\x1f\xe5\x94\x7e\x22\xf2\x0b\xac\x83\x56\x8e\x79\xd3\xea\xcf\x08\xff\x1c\x0e\x87\xe4\xbf\x9c\x15\xe4\x59\xc1\x6c\xa4\x52\xe9\xec\x8b\x73\xfc\x44\xfc\xc1\x05\xc6\xe6\xd3\x31\x55\xb5\x56\xbd\x01\x2e\x7a\x2c\xce\x37\xd9\x96\xeb\x85\xc9\xda\x16\xe8\x3f\x12\x67\xcd\x0b\xaa\x9e\xc1\x78\x9f\xf5\xd3\xf1\xbc\x9a\xfa\xb6\x9c\x99\xe6\xd5\xe9\x38\x27\xf3\x1f\x80\xa4\xde\x47\xd7\x0c\x51\xea\x87\xe5\x0c\xda\x82\x7a\x10\xfe\x5b\xbc\x78\xf1\xea\x08\xff\x1f\x7f\x29\xfb\xdc\x2c\x64\x96\x0f\x22\x9e\x45\x05\xcf\x81\xad\x35\x9d\x7c\x13\xfd\xeb\x5f\xad\xbd\xc1\x90\x94\x3f\xc3\x36\xcf\xcb\x46\x29\xcd\x98\x11\x89\xe6\x99\x2c\x52\x2d\x12\x4d\x26\x39\x4d\x92\x67\x5e\x83\xa0\xa9\x29\x80\x6e\x41\x25\xbd\xb0\xa3\x59\x1c\xa6\x49\xe2\xe8\xf8\xe0\x82\x5e\x20\x3e\xa0\x10\x1b\x20\x72\xfa\x6a\x23\x9d\xb1\xae\xb2\x2e\x7d\x57\x07\x64\x70\x40\x3e\x03\x1c\x0e\x87\xe4\x06\xae\x1c\x31\x57\x2e\x38\xe8\x52\x66\x8c\xa4\x5a\xfe\x52\x8a\xaf\x18\x99\x62\x90\xc7\xda\xea\x97\x8d\xe6\x9f\x30\x15\xd1\x94\x91\x68\x41\x33\x1a\xe5\x2c\x33\xcb\x3e\x47\x5f\x79\xef\x65\x78\x06\xaf\xd4\x92\xc6\x6c\x50\xa4\x88\x16\xea\x79\x49\x8e\x20\xb2\xd0\x90\x8e\x7b\x36\xd5\x92\x1b\x33\xc4\xc3\x3d\xf1\x98\xa5\x89\x5c\x2f\x99\xf0\x92\x53\xd3\x3f\xcd\x64\x6c\x91\x14\xc6\xd5\x77\x0a\x68\x52\x26\x45\xce\x44\xec\xa0\x3a\x8d\xee\xcc\x17\xff\xa5\x9b\x57\xe3\x93\xff\xf8\x4b\xe8\x06\xc4\x6c\x65\x87\xff\x0f\xd2\xb8\x05\x3e\x52\xd6\xc6\x3c\xd5\xb5\xb1\x7d\xb9\xc2\x1b\x6f\xaf\xaf\xc6\x1a\x9a\x45\x5a\x65\xcd\xb6\x0c\x22\x58\x7d\x7a\xbc\xa9\x60\x1c\xaa\x38\x80\xfb\x05\x44\xac\xd7\xde\x7c\xc7\x2d\xce\x88\x99\x5e\x3a\xa5\xef\x9d\x34\x15\x54\x0e\xcc\xbf\xa6\x32\x5f\x0c\x09\x7a\xaa\xc2\x6b\xf2\x90\x6a\x8e\x2a\x4f\xd6\x8e\x30\xfb\x0c\xaa\xbf\x78\x5d\x90\x1d\x3a\x2a\x48\x94\x31\x13\x20\xa3\xcc\xed\x96\x19\x11\x3c\x79\x7e\x60\x83\x5c\x62\x36\xa3\x45\x92\x2b\x82\xdb\xd2\xa0\xcb\xe2\x80\x4c\x93\x4b\x72\xaf\x69\xe5\xc8\x48\xce\x7a\x11\xe7\x8e\x10\x0d\x7c\xab\xa5\x9f\x65\x21\x14\x74\xbb\x0c\xc5\xc9\x9b\xf9\x09\x57\x78\xc7\x06\xe4\x67\xc3\xca\xe9\x05\xd9\x99\xfe\x7e\x60\x9e\x08\xcd\x18\x83\xf5\xa6\x36\xb1\xf7\x1e\x73\x11\x25\x45\x6c\x0d\x9c\x11\xd5\xcc\x32\x0c\x50\x0d\x43\xf0\x91\x16\xb2\xdc\x12\x0c\xf7\x3c\xe4\x5d\x59\x5f\xdc\xb9\x7f\x6d\x35\x88\x68\xc2\x54\x0d\xef\x15\xee\xa0\x5d\x70\xeb\x07\x9d\x13\xfa\x06\x05\xdd\x62\xe8\x98\x90\x06\x7e\x32\x8a\x45\x47\x3c\xc9\x18\xd5\xb7\x29\xba\x23\x74\x4e\xb9\xf0\xa2\x2c\xa2\x09\x1a\xa4\x92\x7b\xba\x56\x1b\xf1\x09\xe8\x2d\x72\x40\x04\x5b\xb1\xac\x86\x75\x5e\x25\x4b\xcf\x2a\x4b\x15\x14\x08\x83\xa7\xa3\xb4\xab\xa6\x52\x29\x3e\x4d\xec\xc4\x95\x3b\x9c\xee\x70\x93\xb2\xc8\x2f\x76\xe3\x46\xc2\x0e\x82\xed\x02\x7e\x50\x76\xf6\x8b\xdc\x9b\xdf\xc2\xcb\x11\xbb\x6e\x0f\x2a\x97\x19\x9d\x33\xfb\x95\xca\x69\x5e\x20\x60\xd0\xf2\xc7\xe2\x4b\xc7\x26\x73\xc7\x45\xac\xa9\x91\x05\x69\x9a\x14\x19\x4d\xaa\x6f\x22\x29\xd0\x10\xaf\x8e\xc9\xcf\x7f\xd7\xdf\xe8\xf1\x59\x6c\x02\x6d\xcd\xb7\x13\x31\x18\x0c\xca\xff\xd0\x94\xdb\xb0\x5d\x42\x53\xce\x1e\x72\x26\xa0\xf1\xf0\xee\x3b\x35\xe4\xf2\x70\xf5\x72\x22\x70\xe2\xd3\x42\xe5\x72\x79\xcd\xd0\xb0\x78\xc6\x40\x50\x04\xa2\x5d\x0b\x8e\x05\x75\x18\x41\xd7\x6a\x81\x6e\xc8\x8a\xe5\x6a\x18\x65\xf1\x30\xcd\xa4\x06\x47\x04\x74\x68\x28\xb3\xf9\x44\x68\x02\x07\xfd\x80\x6b\x39\x26\x81\x66\x75\xeb\x14\x2e\xa8\xe9\x31\x8d\xbf\x25\x5c\xe5\x7f\xf5\xfe\x7e\xc1\x55\x5e\x87\xdc\xc6\x2a\xcd\xb1\x70\x31\x2f\x12\x9a\x6d\x36\xd0\xbf\x03\xb5\xcb\x56\xec\x83\xb8\x13\xf2\x5e\xbc\xd3\xe8\xa4\x8e\xc9\x8c\x26\x0a\x8e\x55\x45\x52\x9f\xfc\x69\x52\xa8\x1c\xa5\xce\x95\x3d\x00\xfd\x8f\x81\x81\x90\x06\x2c\x4c\x16\x2d\xd8\xb2\x8a\x2b\x96\x29\x13\x27\xe3\xd1\xc7\xd7\x37\xf5\xef\x1b\x77\x63\xc3\x5b\xbc\x16\xaf\x01\x5e\x07\x34\x9b\xf2\x3c\xa3\xd9\x9a\x8c\xc6\x44\x15\xd3\x81\xdd\xc6\xe1\xe9\xe8\xec\xba\x46\x98\x50\xcf\xb1\xd0\xa4\x0c\xb9\x1f\x90\x71\x41\x40\x43\x5a\x95\x4b\x0c\x1d\x34\x2e\x1e\x4b\xb2\xe2\xd4\x71\xb6\x43\x37\x0a\xec\xea\x8e\x2b\x67\x9b\x0b\xb5\x96\xf8\x52\xa9\xe3\xde\xc5\x80\xd2\xd5\xc1\xd2\xfa\xd5\xab\xe7\x42\xd1\x70\x33\x3e\x27\x18\xa3\x81\xd4\xc2\x80\x9f\xc5\x06\xd6\x48\x2e\x80\xf8\x99\x97\x8b\xfa\xb4\x69\x1a\x84\xc2\x5c\xe0\x21\xf0\x35\x2c\x53\x56\xf2\x8d\xa4\x58\xb1\x2c\x27\x19\x8b\xe4\x5c\xf0\x7f\x96\x83\x2b\xeb\x05\x03\x35\xe1\x36\x78\x41\x2e\x72\x96\x69\x0e\x08\x28\x17\xea\xfa\x97\x74\x4d\x32\xa6\xa7\x21\x85\x70\x06\xb4\x3e\x78\xef\x35\xe7\xcb\xc5\x4c\x1e\x43\x96\x2a\x75\x7c\x78\x38\xe7\xb9\xbd\xa0\x91\x5c\x2e\x0b\xc1\xf3\xf5\x21\xd8\xe5\xf9\xb4\xd0\x47\x72\x18\xb3\x15\x4b\x0e\x15\x9f\x0f\x68\x16\x2d\x78\xce\xa2\xbc\xc8\xd8\x21\x4d\xf9\x00\xd6\x2e\x80\x50\x0c\x97\xf1\x37\x99\xb9\xd1\x6a\xdf\x47\xd6\x36\xa9\x21\x5c\xbe\xb6\x63\xd0\xb7\xcf\x84\x76\x23\x6b\x8f\xbc\x49\x09\x6d\xfb\x3e\x5f\x9f\xdf\xdc\x12\x3b\xbb\x37\x0c\x1e\x81\x5f\xf5\x54\xd5\x39\x68\xa0\x71\x31\xb3\x4c\x18\x98\x42\x5c\x9d\x05\x72\x00\x09\xf7\xf0\xe3\xaa\x98\x2e\x79\xae\x9c\xf4\x46\x72\x48\x4e\x4b\x1b\x49\x91\xc6\x34\x67\xf1\x90\x8c\x04\x39\xa5\x4b\x96\x9c\x52\xc5\xbe\xfa\x29\x00\x27\x3a\xd0\xb0\xed\x7b\x0e\x81\x94\x04\x21\x05\x70\x49\x68\x03\xc7\xd6\xbc\xa8\xfa\x19\xad\x47\xc6\xd9\x40\xca\x2a\x75\x01\x25\x4d\xea\x5b\x7d\xec\xc1\x36\x5e\xda\x16\xb3\x4a\x20\x86\x63\xa3\x7c\xa4\x75\x33\x1d\x8d\x89\x25\x69\x48\xc1\xa6\x2c\x91\x1a\xb7\xa4\x51\x2b\x31\x9f\x31\x3e\xcc\x7c\xfc\x91\x9e\xff\xaf\xf5\xee\x2f\xa4\xaa\x9c\xa5\xbe\xc2\x9b\xef\x46\x44\x35\xdf\x7b\xf7\xb7\xcd\xb7\xbe\xb6\xb2\xe6\x3b\xef\xfe\xf8\x5b\xbe\xf1\xbb\xf7\x6f\xf7\xfe\xb9\x47\xb0\x7b\xff\x7e\xb5\xf7\xcf\xa5\x1e\xfd\xde\xbe\x4d\x5a\x54\x7d\xb6\x7f\xfd\xd8\x43\x0a\xae\x21\xa3\x71\x1f\x85\x94\x3e\x69\xd3\xa1\x1e\x20\xf8\x6c\x34\x5e\xbd\x81\x6b\x35\x1a\xaf\x8e\x9e\x5b\xd1\xd8\xa2\x85\x57\xee\x1d\xa1\x9e\x7d\xa4\xef\xe6\x8c\x46\x0c\xcc\x69\x93\xc9\x5e\xc3\x72\x51\x2a\x90\x40\x15\x90\x48\x79\x67\x35\x78\xdc\xf6\xf4\x2a\x6e\xad\x87\x8e\x13\xb8\x38\x1a\xd7\x7c\xe6\x30\xd6\x1a\x6c\x6a\x46\x35\x01\x44\x84\xe6\x43\xf0\x43\xf7\xbe\xd6\x93\x49\x0e\xfa\x8c\x42\x6d\x38\xb4\x37\x42\xf8\x21\x66\xb2\xf4\xfd\x90\x99\xd1\xbe\xf9\x06\x6d\x56\x5c\x9e\x4c\xf4\x78\xa6\xd4\x72\xb9\x7f\x43\xfc\x54\x7d\x56\x2e\xfc\x09\x02\x4a\x81\xcc\x3d\xa7\x21\x04\xeb\xea\x67\xa7\xe6\x5e\x8c\x8e\x0d\xe7\x15\x2a\xa0\xb6\xc2\x37\x2c\x57\xa8\x1a\xc5\x14\x52\x34\x27\x69\x91\xa5\x52\xdf\xd4\x67\xa3\x99\xf1\x66\x5a\xb0\xea\x68\xf4\x3c\xd6\x5d\xb1\xdd\x27\xca\xaa\x09\x25\xc3\xe3\x4f\x18\xcd\x44\x79\x6c\xe6\x04\xab\x71\xf5\x02\x0a\x05\xaa\xec\xa0\x1f\xc6\x64\x92\xdb\xe3\x18\x7a\x15\xd1\x5f\x9c\x2b\x23\xd5\x0a\x2f\xfd\x0e\x3a\x8d\x2b\x75\x8e\x59\x2f\x35\xde\xff\x0f\xd4\xc2\x1b\x13\x49\xe5\x9a\x53\x66\x12\xb9\xe0\xa2\x78\x68\xc7\xfa\xd2\x48\x5c\x22\xf4\x9f\x01\xf5\x96\x69\xbe\x1e\x92\x6a\x1a\xd7\xae\x8c\x46\x56\xae\x5a\x29\x8b\xfe\xcc\xe5\x8a\x65\x02\xcd\x33\xa5\xcb\x9a\x3c\xa8\xdc\xd4\x16\x99\x2c\xe6\xe8\x8a\x60\xb5\xad\x86\x55\x6e\x8f\xa4\x37\x87\x0b\x78\xa9\x1b\x96\x79\x04\xb0\xfe\x76\x8c\x64\x01\x70\xf2\xcf\x84\xe9\xfd\xe3\xc5\x8e\x35\x92\xac\xf0\x22\xfa\x33\x4b\x54\x0e\x40\x2b\x28\x89\xbe\xae\xc0\x77\x40\x5c\xbd\xad\x54\x18\x7e\x70\x98\x4b\x70\x67\xd7\x6b\xb1\xaa\x0b\xbf\x37\x40\x22\x23\x9a\x94\xb1\xe8\x46\xd7\x39\x9a\x91\x1a\x3d\xb3\xb4\xcc\x39\xdf\x5e\xa0\x86\x8b\x64\xe1\x5d\x73\x0f\x84\xed\x03\x3d\xd1\x7b\x37\xbc\x16\x40\xce\x01\xbf\x97\xc8\x58\x34\xaa\xee\x50\x09\xeb\xda\x9a\x01\x05\x07\xe4\x5e\x93\xb9\x3a\x71\xf6\xd3\x03\x54\xbc\x0e\x6a\xc7\xef\x99\xac\x0c\x1f\xac\x74\xb8\xfa\x66\x7b\x07\x15\x2e\x31\x82\xcc\xb7\x19\xf8\x36\x1c\x78\x56\x55\x2e\xe1\x80\x50\xa0\x1a\x9b\xec\x1f\x31\xa6\x67\xf7\xed\x2a\x0b\x9e\x57\x79\xc1\x30\x02\x4a\x0b\x25\x19\x66\xcc\x33\xb3\x28\xf2\x4c\x15\x7e\x0a\x43\x15\x1c\x2d\xcb\x17\x2f\xf4\x7f\x9f\x9b\xf0\x1d\xb0\x09\xb2\x98\xe8\x75\xff\x99\xf0\x9c\x70\x25\xf6\xf3\x4a\x81\xdc\xfd\x92\x13\xbc\xcc\x69\x26\x35\xf7\xe2\xa0\x00\xc2\xd8\xa1\x0a\x75\x3c\xac\x56\xed\x7d\x73\x6d\x8c\xd5\x31\xee\x15\x42\x1a\x81\xfb\xc1\xb0\x47\x34\x29\x69\x8e\x6b\x99\x26\x6c\xa9\x71\x0d\x49\x7d\x45\x38\xdc\x45\xab\x3f\xfb\x4f\x8f\xe7\x9c\x26\xc9\x9a\xfc\x5f\x1a\xc6\x69\xc6\x06\xe0\xca\x52\x1a\x68\xc6\xfa\x90\x98\xc9\x4f\x5c\x92\xfd\xa8\x58\x86\x64\x02\xfd\xb1\xe5\xe8\x91\xc1\x37\x65\xef\xa5\xf0\x6a\xfa\xdb\x88\xb7\xf0\x27\xa7\xdb\x10\xf7\x75\x3b\xe3\x68\x0f\x7e\x44\xb3\xb5\x7d\xf0\xcd\x8a\xa1\x01\xd7\xe2\xb3\xf0\x02\xbb\x6d\x11\xa1\x20\xdf\x86\x21\x42\x3f\xf6\x35\x7e\xd0\x71\xb8\xc5\xbb\x6b\xe2\x4f\x6d\xb2\x62\xaf\xf3\xee\x94\xa1\x16\x95\x89\x08\xbd\x9e\x4a\x76\xc3\x1c\xb8\xf1\x4b\xdd\xe2\x75\xec\xf4\x52\x6d\xf5\x4e\xed\xf6\x68\xd4\xdb\xea\xe8\xde\x1a\x5c\xfa\x7b\x4a\x42\xf6\xb5\x72\x4e\x75\xf8\x6a\x8a\x00\xc1\x1e\x00\x70\x03\xbf\xb4\x64\x95\x7b\xb4\x87\x67\x8a\x6c\x6c\x27\xba\x9f\x54\x81\xdc\x78\xe1\x38\xbc\x73\x33\x87\x3b\xc6\x91\xcc\x22\xc2\xb9\x3a\xab\xc0\x0e\xfd\xd4\x96\x32\x08\xe6\x68\x37\xcb\x71\x9c\x24\xad\x48\x80\xde\x7f\xa1\x41\x31\x32\x22\x4d\x19\xcd\x4a\xbf\x3b\x08\xbc\x21\xe5\xba\x2a\xd3\xb4\x1d\xd9\xfa\x4f\x56\xfc\xfa\x20\xe8\x5d\xd8\xb8\x95\x3b\x1d\xe2\xaf\xac\x43\xe4\x29\x5d\x4e\x13\x19\xdd\x7d\x0d\x05\xe2\x68\x7c\xf2\xfe\xad\x1e\xbc\xa9\x3d\x2c\x7f\xd8\x54\x1d\x56\x0b\x6a\xea\x0d\xcb\x5f\x76\x4a\x43\xb3\xca\x9d\xd2\x70\xa7\x34\xfc\xe3\x28\x0d\x4b\xa2\xd1\x4b\x63\x28\x9a\xd4\xa7\xfa\x6c\xaf\x2f\xd4\x62\x88\x86\x5d\xe7\x6b\x6e\xda\x59\x49\x0f\xc8\x95\x71\x27\xe2\x0a\xff\x69\xa5\x41\x0c\x98\x63\xb9\x57\x2d\xc4\xf3\xd2\x71\xdf\x29\x0d\x42\x26\x7b\x5a\xe6\x3d\xc6\xf2\x1d\xfa\x4f\xe0\x77\xc0\x8d\x74\xb2\x07\x03\x82\x77\x26\xcb\x0f\x9c\x09\x03\x02\xac\x6e\x09\xfb\xc2\x62\x34\x20\x4d\x6f\xc9\xd0\xd3\x44\x8b\x61\xa1\x74\xe7\x75\xc8\xe8\x77\x18\x28\x56\xd5\x87\x70\x31\x28\x4c\x8c\x85\x65\x2e\x60\xc5\x43\x22\x78\x02\x75\x65\x02\x91\x0e\x4b\x46\x91\x7b\xa9\x46\x23\x70\xc7\x18\x43\x65\x9f\x90\x62\xe0\x8c\xa1\x65\x64\x2e\x62\xf6\x40\xf8\x41\x48\x53\x60\x7e\x2f\x23\x4f\xb8\x26\x82\x06\xf8\xce\x34\x1b\x8b\x05\x0a\x19\x18\x13\xe9\x8a\x19\x13\x27\xb0\x23\x2a\x25\x23\x0e\xa9\x3b\x68\x8e\xd7\x91\x95\x6a\xda\x93\xf2\x1b\x2f\xa3\xa7\x41\xf9\x08\x46\xa9\x85\xaf\xff\x86\xdc\x5e\x9d\x5d\x1d\x63\x06\x22\x51\x24\x09\x9d\x22\xb3\xb8\xa4\xa2\x00\xa1\x96\xc6\x31\xf0\x8c\x43\xf2\x89\xd9\x27\x06\xe9\x10\x29\x53\x14\x64\x83\xb9\x3f\x25\xe7\x37\x1a\xc3\x16\x54\xc4\x09\x23\x3f\xff\xfd\x7f\x68\xe2\x87\x97\x2d\x59\x9b\x5c\x22\x5e\xb1\xdd\x2e\x24\x24\x0d\xb4\xb0\xdf\x15\x4c\x3b\x11\xd3\x81\x3e\xf8\xcd\xd2\x12\x53\x4b\x9f\x1e\x4b\xc8\x9c\x53\xf3\xad\x17\x3c\x9b\xeb\xf8\x5d\x51\x81\x21\xb9\x95\x64\xa6\x1f\x1e\xe7\xbc\x51\x23\x82\xd1\x77\x55\x47\x2f\x45\xd0\x17\xa5\xe6\xc3\x5f\xc7\xcb\x7d\x65\xea\x30\x59\x14\x72\x96\x11\x0c\x55\xa7\x1e\xc4\x64\xa8\x01\x29\xb9\xfd\xed\xb1\xad\x53\x4c\x46\x4c\xf8\xcc\xfd\x42\x1c\xe9\x25\x2b\x2b\xa6\xd9\x67\x9a\xf9\x48\xb2\xd9\xdc\x76\x35\x16\xfa\x08\xb5\x5d\x81\x84\x8f\x96\x16\x23\x1e\x77\x3a\x7b\xdf\x5a\x4c\xda\x57\xe4\x74\x74\x76\xbd\x25\xad\x8e\x59\xc2\x72\xaf\xdc\x5c\x9b\xe5\x0c\x9b\x99\xbb\x50\x32\x83\x26\x52\xaa\x74\x10\xbf\x97\xd9\x1d\xcd\x64\xa1\xd1\xd9\x29\x14\x10\x50\x6b\x6a\xbc\x72\x42\xc6\x4f\xc6\x23\x74\x15\x9e\xae\x71\x59\x48\x57\x13\x8c\x7c\xc9\x58\x5e\x64\x82\x40\x3d\x8f\x59\xc2\xfd\x90\x66\x59\x26\x33\x1b\xd6\x52\x3d\xab\x53\xc6\x84\xc3\x1e\xe5\x96\x52\xd9\x88\x6c\x96\x97\x14\x6d\xfb\xa0\xb0\x7f\x14\x4c\x44\xec\x12\xe2\xdb\xbc\x60\x04\xdd\xff\x31\x79\xd1\x01\x62\x4d\x40\xb5\xa0\x07\xc6\x2a\x1c\xd4\x44\xcd\xa1\xb6\x98\x2b\xbb\x05\x8c\x37\xcf\xb9\x5f\xa7\x51\x6d\x9d\x2b\x72\x9f\xf1\x3c\x67\xc2\x88\xfb\xb5\xf7\x0a\x5c\x89\x95\x34\x93\xa2\x58\x8e\xd3\xfa\x89\x2e\xac\xc4\x65\x60\x88\x89\x47\xd3\x0b\x01\x4d\x45\xae\x4a\xcf\x77\x93\xf3\x39\x63\x09\xa3\x2a\x70\x75\x80\x17\x3b\x20\x29\x55\x8e\xf9\xb0\xbe\x71\xe7\x39\x04\x2a\x5a\x27\x6e\xde\x41\x93\x44\xde\x2b\x52\x28\x57\x61\x0c\x7e\xd5\x2a\x27\x94\x64\x14\x73\x8d\x9b\x6c\x59\xfa\x8d\x66\x42\x15\x06\x00\x23\x6f\xa5\xc8\x05\x05\x7d\x35\x20\x11\x6e\x48\xbf\xce\x22\x26\x19\x1b\x98\xc5\x68\x29\x0a\x72\xe3\x41\x38\x22\xb6\xb1\x6c\xba\x07\xa3\xb0\x50\x0a\x3c\xbd\x47\x6f\x42\x08\x17\x78\x97\xeb\x08\xf7\x4e\x66\x15\x49\xf7\x60\x5f\x6f\x6a\xd7\xb1\xa4\x4e\x66\xa1\x51\x38\x23\x75\x78\x3a\x16\x97\x7c\x93\x93\x86\x01\x51\x08\x82\x4a\x9e\x84\x75\x15\x3a\x0c\x5d\x62\x62\x2d\xa7\x41\x1c\x21\x55\xa4\xeb\x1d\x5b\xdb\x44\x16\xa9\x3a\x20\x0a\xe5\xe0\x3b\x06\xde\xf9\x11\x55\xb9\xa9\x73\x06\x04\x34\x48\x20\xfc\xf4\x1d\x33\xb2\x9c\xf4\x14\x14\x6e\x6a\xad\x6d\x8c\x6d\x29\xb1\xe8\xf5\xc4\x5a\xa6\x44\xa8\x6a\x1c\x14\x5e\x7b\x77\x22\xc5\x9c\x65\x48\x96\x8d\xf5\x10\x0b\xc8\x7c\x50\x38\xdc\xa9\x14\x33\x3e\x6f\xce\xa7\x2f\x09\xa3\x3e\xc7\xfc\x56\x1a\x58\x88\xf2\xa4\xbb\x36\xf8\xa1\x6a\x6a\xe3\x91\x32\x8c\x7e\xb6\xfa\x4e\x97\x51\x42\x4d\x7e\x20\xd8\x42\x73\xf5\x75\x56\xea\x0b\xf2\xbe\xc1\x47\x39\xa0\x68\x1e\xb8\xeb\xde\xf8\x29\xc0\xb7\x0f\xe0\x81\x6f\x7e\x57\xc7\x98\xe6\xaf\x0e\xac\x77\xea\xcb\x56\xf5\x65\x04\x28\xfe\xb5\xf4\x97\x78\x81\x7c\x0a\x4c\xfc\xc5\xaf\xc1\x34\x6b\xf2\xa9\x30\xa3\x72\xc0\x9d\x0e\x73\xa7\xc3\xdc\xe9\x30\xff\x70\x3a\x4c\xa4\x1b\x5b\x28\x31\x5d\x12\x54\x7d\x1e\xa1\xc5\x2c\x72\x69\x98\x48\x06\x6c\x86\xef\xc5\x6c\x65\x00\x96\xf4\x01\x3b\x8e\x59\xf6\x23\x68\x22\xbb\xf8\xc3\x7a\x7b\x50\x85\x0a\x29\x06\xff\x64\x99\x3c\xb0\x8a\xb1\x25\x7d\x70\x18\x40\xd7\xf8\xd3\x58\x1a\x64\x2d\xa3\x02\x52\x61\x94\x9a\x4b\x90\x91\x02\xca\xcb\x25\x7d\xe0\xcb\x62\x79\x4c\x5e\xbd\x7c\xf3\xa7\x37\xdf\xbd\x3e\x7a\xf3\x27\x4f\x23\x2e\xb0\x91\x47\x70\x6b\xe7\xd0\xbb\x58\xbe\x16\x58\x86\xd9\x8b\x8d\x43\xda\x86\x6f\xd8\x31\x07\x0d\xe6\x00\x75\x4d\x5f\x8b\x39\xf8\x11\x46\xf7\x31\x07\xf8\x8b\x9f\x39\x30\x6b\xf2\x31\x07\x8b\x72\xc0\x1d\x73\xb0\x63\x0e\x76\xcc\xc1\x1f\x8e\x39\x40\xba\xb1\x05\x73\xe0\x92\xa0\xea\xb3\x3d\x73\x00\xcf\xee\x53\x14\x4b\xbd\x04\x6d\xbf\xee\x24\xac\x9b\x6e\xe5\x46\x90\x58\x8e\xce\x82\xfd\x7c\x9a\xf0\xe0\xc3\xeb\xb1\x95\x0e\xca\x29\x76\xaf\x6c\xcb\x2b\x9b\x4a\x99\x7c\x9d\x17\x76\x2c\xad\x5b\x9e\xfb\xba\xea\x6f\x7d\x2f\x2b\xac\x63\xf3\x55\x4d\xcd\x20\xbb\x17\x75\xf7\xa2\xee\x5e\xd4\x3f\xd8\x8b\xaa\x69\x45\xef\xd7\x54\x37\x7e\x8c\x5c\x8d\x29\xd8\x3e\xa8\x1e\xde\x06\x65\x53\xeb\x36\xa1\x30\xe7\x13\xaa\xff\x89\xa6\x55\xa5\xe7\x8f\x0d\x39\x83\x9c\xa3\xbe\x27\x17\x9c\x7d\xca\xa4\x55\x36\xe2\xe9\xa0\x4a\x3a\x95\x4b\xf2\xf3\x64\xef\xb6\x10\x82\x25\x90\xeb\x6c\xef\x93\x89\x98\x98\xec\xfd\x1d\xf6\x3d\xa5\xd1\xdd\x00\xb2\x38\xe6\x7c\xca\x93\x0d\x81\x92\x7c\x9d\x78\x31\x78\x6c\x6f\xf8\x3f\x7b\x05\x25\xa0\x39\x48\xf1\x7f\x82\xbc\x5f\x28\x8c\x24\xa9\x22\xfc\x08\x55\x8a\xcf\xc5\x52\x5f\xa6\x60\x6d\x08\x93\x3e\x4c\x26\x43\x72\xe6\x80\xe7\xd5\x91\x19\xcc\x04\x72\xbe\x7c\xf5\xca\x7e\x71\x14\x34\x8f\x04\x98\x9c\xbe\x56\x7c\x38\xe4\xc7\x98\xf0\xb9\xa2\xd3\x84\xbd\xfd\x61\x7c\xfe\x10\x88\x15\xa8\x13\xad\x33\xec\x40\x18\x34\xd7\x24\x2a\x93\x45\x99\x62\x1d\x20\x32\x1a\x13\x8d\xf5\xfb\xc6\xa9\x80\xc8\x95\xdf\x43\xe8\xed\x0f\xe3\x21\xf9\xf9\xcc\xda\xb8\xe1\xd1\xfc\xbb\xa7\x96\x6b\x2b\xc3\x66\x36\xd0\x69\x3c\x02\x93\xb2\x6d\x0c\x5a\xa2\xac\xa8\x22\x42\x35\xd7\x5b\xb9\x0b\xe0\xd9\x57\xc1\x9e\xbe\xc5\x57\xdb\x05\x04\xd8\x72\xd5\x3c\xe5\x69\x37\xa8\x4b\x6b\xdd\xb1\x21\xde\x90\x75\x8f\x63\x8d\xf2\x2a\x7a\xf4\x64\x3c\x5a\xbd\x84\x5b\x77\x4f\xb3\xd8\xbb\xda\xda\x6d\xd4\x8f\x43\x6e\x5e\x17\x77\x54\xd8\x3a\x12\x93\x83\xfa\x4f\x5e\x00\x60\xc8\x2c\xbe\xd2\xfa\x02\xe9\x45\x0d\x3d\xc7\xd7\xe1\xbb\xc3\x44\xe8\xfc\xfc\x67\x68\xda\x57\x47\xa8\x61\x49\x72\xa0\x47\x7a\x4f\x2e\xa5\xf3\x8f\x09\xf1\x60\x31\x4b\xf8\x8a\x65\x55\x95\x21\xfd\x55\x59\x83\x4f\x35\x72\x8d\x7b\x4f\x98\x74\x9d\x32\x81\xb4\x97\xde\x28\xa9\x8d\xbd\xdd\x02\xb1\x1e\x8d\xa1\x03\x24\x64\x02\xfb\xb1\x70\x72\xb5\x4d\xf6\x30\x7d\x9b\xad\xa9\x09\x95\x7a\x07\x58\x3d\x76\xb2\x37\x24\xe4\x24\xb4\x5f\x3d\x66\x63\x84\xca\x87\xa3\x50\x66\xe6\x0a\x86\xfa\x6c\xf5\xb5\x06\x1c\x09\x56\x4d\x77\xe0\x55\x8f\x61\xdf\x80\x1d\x21\x27\xce\x1a\xea\xeb\x0e\x8d\x0e\x0b\xb4\x88\xde\x5c\xe0\xbd\xcd\x84\xe7\xae\x01\xe3\xc8\xf4\xed\x08\x8d\x49\xab\x4a\x60\xa6\xea\xae\xe5\x42\x6d\xad\x08\x3d\xb8\xb0\x27\x50\x05\xdf\xb6\x56\x50\x7c\xc6\x67\xf5\x67\xf3\xb9\x5e\x45\x05\xeb\x56\xd4\x69\x7f\xe8\xfc\xb2\xad\xc6\xf8\xf7\x3d\xa2\xef\x4e\x2d\x7f\x82\xf6\xc1\x22\xab\x78\x13\xcf\x81\xb7\xa3\xfa\xa8\xb1\xc7\x03\x5b\xe6\x84\x2b\xf4\x2c\x00\x40\xa1\x27\xd7\x64\xef\x92\xad\x20\x2b\xfa\x33\x48\x41\x5e\x9f\xcc\x37\xba\x1e\xc1\xd0\x66\x5f\x7d\xbd\xd6\x30\x44\x9a\x0f\x64\x91\xcf\x25\x17\xf3\x3f\x0a\x49\x6d\xa5\x3a\x82\xe6\x57\x3d\xe1\x81\x19\x4b\x1d\x00\x56\x54\xd5\xd2\x45\x48\x0c\xea\x54\x0f\x23\xad\xa1\xdc\x86\x23\xd6\x82\x87\x4b\x00\x36\xa8\xab\x2c\x72\xc5\x63\x56\x4a\x98\x25\x8f\xea\x1b\x14\x6a\xab\xa8\x7f\x14\x2c\xa3\xb1\xb7\x50\x4e\x3b\x38\x64\xdc\xbb\x24\xc2\x09\x3a\x80\x19\xae\xdd\xe4\xd0\xd3\xe8\x62\xbc\x6a\xcb\x50\x61\x20\x35\xd3\x35\xa6\xcc\xf3\xad\xb9\xac\x2b\xb4\x1d\x32\xaf\x1e\x12\x2a\x9e\x78\xb5\x3f\xfe\x74\x71\x72\xf9\xab\xdd\x6d\x98\xcd\xcb\x1c\x97\x0b\x78\xf4\xe5\x0e\xea\xd5\x36\x5d\x5f\x76\xea\x33\x5c\xb2\x16\xce\x6b\xd1\x13\x75\x4f\xfa\xe1\x5d\x31\x65\xd3\x82\x27\x31\xcb\x60\x02\x3b\xfd\x33\x90\xc0\x21\xd3\xb8\x75\xc3\xbc\xe5\x4b\xa6\x72\xba\x4c\x8f\xc1\x6b\xde\xd5\xce\xa1\xd6\x0b\xe7\xf9\x2a\x4a\xba\xeb\x6a\x82\x4d\x5d\x9d\xf3\xa3\x4f\x65\xe7\x2e\x6e\x53\x73\x97\xd5\x47\xde\x29\xf0\x76\x0a\xbc\x9d\x02\xef\x0f\xa6\xc0\x73\x08\x48\x6f\x3d\xde\x06\x45\xaa\x3e\xdb\x6b\xf7\x0c\xd1\x89\x21\x91\x6f\xd7\x53\x7f\xed\x36\xae\x17\x6a\xc7\xaf\xa8\x88\x0f\x6b\xca\x2b\xbf\xc6\x02\x5c\x5d\x36\xf4\x1d\xec\x21\x4a\x8a\xd8\x54\x0c\x16\xec\xde\xf5\x45\xdd\x45\xce\xff\xca\x76\x2f\xfd\x3a\x57\x0f\xb6\xaa\xf1\x76\x5f\xe3\xa1\xfd\x6b\x31\x65\xa7\xd5\x7c\xa7\xee\x7c\xcd\x77\xb7\xad\xed\xe6\x33\xdc\xba\x93\xe6\xab\xdc\xd6\x78\xf7\x48\x9b\x55\xee\x1e\xe9\xdd\x23\xfd\xc7\x79\xa4\xdb\xa8\xcd\xe6\x9b\x5d\x2b\x23\xd1\x04\xb0\x13\xd8\xe3\x10\x99\xba\xe0\xdc\xff\xe9\x76\x86\xe8\x23\xa3\xdb\xd9\x50\x6b\x8d\x85\x3d\xec\xcc\xa6\x24\xcd\x8a\xc7\x05\x4d\x3a\xea\x86\x3a\xd3\x6e\xfe\xdc\xa1\x61\xef\x2a\x05\x1a\x28\x00\x1a\x58\x72\xbd\x1a\x68\xb5\xae\x60\xf9\xcd\x73\xa3\xb0\x87\xc8\x4c\xd0\x24\x1c\x40\xd4\x64\x2e\x21\x24\x3f\x97\x56\x3b\x10\x18\xa1\x47\x21\x57\x4d\xa6\x44\xc4\x13\x96\x8d\x59\xc6\x65\x38\x08\xb8\x49\x1c\xae\x1b\x1d\xad\xfb\x70\x8a\xff\xca\xa5\xfe\x0b\xd2\x24\xd8\x29\x78\x30\x7a\xd0\x7e\xca\x60\x43\x9b\x90\x8d\xe6\x14\x78\x09\xd7\xd8\xf5\xed\xd2\x67\xe9\xb2\x9f\xee\xc0\xe1\xae\xb0\xe1\x40\x72\xb6\x0d\x08\x5c\xca\xb8\xfd\xa4\xf5\xef\xbf\x8f\x43\x5e\x38\xf9\xf2\xfa\x1e\xb0\x9b\x63\xaf\xb2\x8e\xab\xb5\x88\xac\xa2\x1f\x5e\x48\xc8\xfa\x58\xa5\x3d\x6f\x3b\xdd\x33\x6b\x42\x7c\xec\x4e\x7b\xee\x96\x18\xe7\xfa\xd3\x8c\xd1\x40\x06\xdd\xc0\x9e\xf7\x4f\xca\x6e\xd5\xc9\x16\xb9\x5c\xd2\x9c\x47\x55\x79\x29\xd9\x59\xef\xbc\x0e\x15\x10\x85\xd8\x8a\x65\xeb\xff\x9f\xbd\x7f\x5f\x6e\x23\xb7\x16\x46\xf1\xff\x7f\x4f\x81\x2d\xef\x2a\xd9\xdf\x27\x52\xbe\xcc\x38\x33\x4a\xa5\x7e\x25\x4b\xb2\x87\x15\x59\xe2\x27\xc9\xf6\xe4\x84\xd9\x2e\xb0\x1b\x24\x51\x6a\x02\xbd\x1b\x68\x4a\xcc\x24\x55\xe7\x1d\xce\x1b\x9e\x27\x39\x85\xb5\x80\x6e\x74\x13\x7d\xa1\x24\xcf\x4c\x76\xc8\xaa\x64\x2c\x12\xd7\x85\x85\x85\x75\x5f\xd6\x40\x52\x22\xb3\x83\x49\x1b\x4a\x93\xde\x05\x78\xfb\x94\xdf\x4d\x18\xbd\xfd\x90\xd1\x88\x6d\x79\xdf\xcf\xab\xfd\x6a\xd7\xbd\x1a\xf2\xe8\x70\xbe\x6d\x4f\xa0\xd7\xc6\xa2\xe2\x50\x97\x90\xfa\x96\xb0\x32\x7c\xdc\x2c\xd7\xbc\xe1\xd7\x88\x27\x81\xa0\x80\xea\x90\xd6\xc6\x3e\x1a\x93\x39\xcd\xa6\x74\x6e\x96\x93\x24\x2c\xc2\x48\xd5\x12\xf0\xaf\x1e\x4b\x46\xfe\x1d\x49\x27\x81\xfb\x0f\x65\x10\xdb\xae\x5f\x75\xb7\xd7\x45\x17\xdf\xc9\xc6\x56\x91\x93\x24\x92\xe9\xba\x67\xe5\x6f\xa0\xa8\x65\x95\x1e\x2f\x07\xa6\xf2\x77\x69\x09\xea\xb7\x7d\x25\x30\x41\x5e\x9f\x77\xc2\xe6\xd3\x6e\x79\x29\x6c\x0a\xcc\xdf\xc7\x5b\xf1\xef\x87\xd5\x5d\x47\x5d\xad\x06\xd9\xe7\xc8\xab\x95\x20\xdb\x8e\xde\x8e\xdd\xb4\x7c\x5b\xdb\xd1\x47\x8d\x1d\x0e\xfc\x16\x38\xe0\x52\x1b\x77\x70\x51\x55\x13\x71\xad\x4f\x1b\x1e\xb8\xf1\x9b\xf6\xc0\x6a\x9c\xd8\x0e\x13\x7e\x1b\x4c\x68\x8f\x9b\x98\xe6\x73\x9b\x87\x75\xdc\xc3\x21\xf0\xb4\xd6\x7e\xf3\x59\xc8\x34\x66\xea\xc8\x56\x8c\x2c\xd9\x52\x66\xe1\xbc\x51\x06\x9d\xd2\xbc\x48\x72\x4b\x0c\xa7\xb3\x69\x98\xc6\x9f\x6b\x56\xe5\xf6\x2c\x29\x6f\x5e\x37\x41\xa0\xc1\xe7\x92\xe9\x28\xfe\xfc\xe6\x44\x2e\x53\x0a\x1c\x57\x23\xd2\x54\x91\xe5\x2c\xd8\xad\x86\x32\x53\xa6\xef\x0c\x47\x68\xe6\x58\xbd\x09\x4b\xfa\x6e\x80\x42\x25\x54\x32\x8e\xfe\x75\xf0\xf9\xc0\x97\x41\x7c\x69\xc3\x93\x05\xa3\x89\x5e\x9c\x2c\x58\x38\x64\xb7\xba\xb5\x9f\xbc\xc6\x05\x01\x90\x99\x5b\x8a\x2a\x8a\x37\x1b\x19\x01\x47\x0e\x6e\x0d\x07\xe8\xc5\xe4\xb4\xad\x3d\x91\xf3\x6b\x23\x89\x70\xbd\xbe\x8e\x32\xc6\x42\xc9\x6b\x6a\x7c\x7f\xbd\x87\x3b\x96\x44\xce\x89\xb2\xbf\x10\x3a\x95\x2b\x66\x13\x87\x24\x72\xde\x90\x29\x8f\xa1\x4f\x8c\x55\xac\x2a\x1d\xcb\x5c\xfb\x87\x31\x12\x33\xb9\xed\x8e\xd2\x4c\x2e\x0d\x33\x99\xab\x8f\x4c\x67\x3c\x52\x7d\xae\xde\xfe\x38\xd4\xcb\xed\xec\xe6\x64\x6c\x2f\x9f\xf3\x05\x2f\x9b\x87\x36\xb6\xc4\x21\xf0\xa2\x66\x4e\xb3\x3c\xe5\x22\x06\x8d\x64\x07\x06\xfe\xf8\xf2\xc7\xef\x9a\x37\x1d\xbc\x68\xcd\xde\x1d\x4d\xba\xae\x46\x65\x62\x69\xfa\x69\x00\x55\xab\x3a\x11\x7a\x7b\x6a\x5d\x7b\xae\xe6\xdb\x80\x16\xde\x0a\x87\x9e\xee\x90\x8c\xf4\x3e\x14\x73\x99\xe5\x09\x1a\x0c\xe3\x25\x68\x26\x25\x44\x95\x1b\x49\x0e\x08\x20\x66\x78\xa2\x91\xce\xe9\x86\xcf\x10\x8e\x88\x67\x75\x47\x8b\x8c\xda\x2e\x21\xbd\x75\x04\x5d\xca\x18\xfd\xf2\xa7\x86\x15\x5f\xf1\x4c\x82\x87\x3a\x59\xd1\x8c\xc3\x45\xdc\x58\x2f\x7a\x49\xde\xe6\x53\x36\xf0\x95\x9f\x69\x26\x23\xa6\xea\x9a\x8e\xb6\xea\x46\xe5\x6c\x9f\x69\x50\xf5\xb9\x65\x50\x5f\xd3\xeb\x55\x39\xb6\xb3\xea\xac\xf5\x14\xfe\x01\x00\x34\x38\x7f\x06\x81\x80\x99\xd1\xc4\x2c\xc9\x31\xa1\x3f\x58\x01\x72\x21\xb8\x98\x23\x82\x6c\x99\xae\x29\xf3\xfb\x76\x5a\x75\xfd\xc6\xb5\x8d\xcd\x66\x46\xd4\x5f\xb1\x0a\x56\x70\xe5\x26\x08\x6d\x90\x37\x1d\xb4\x8c\x0f\x6c\xf2\xf4\x25\xcb\xe6\xce\xd8\x71\x3c\x1e\x95\xb6\x0e\xc3\x91\x84\x9f\xe4\x06\x2c\x0b\xc0\xa5\x83\x0b\x6b\xd7\x9a\x6f\x00\xe7\x29\x35\xe7\xa4\x4b\x7b\xde\x63\xf9\xa4\x87\x16\x7d\x63\x13\xdb\x69\xd2\xdb\x58\xc6\xa7\x64\x97\x7b\xee\x96\x6c\xc7\x36\x6f\x6c\xbe\x3f\xeb\xdc\xa5\x85\xac\x72\xd6\xbd\xd8\xe7\xae\x21\xdb\xb9\x6b\xf2\xa4\x9a\xca\x16\x45\x3c\xf9\x56\xca\x78\xf2\x04\x4a\x16\xd2\x1f\x4f\x7a\x2a\xe6\x37\xb6\xbb\x85\x72\xbe\xeb\x44\x4b\xdd\xfd\xd3\x28\xe8\xb7\xd8\x3d\xd9\x46\x51\xbf\x01\x83\x7e\xca\xfa\xee\x41\x81\x35\x79\x72\x85\x3d\xe9\x7d\x15\x48\xcf\xeb\x40\xb6\x52\xde\x93\x87\x2b\xf0\xbb\x36\x56\x5e\xa3\x2d\x95\xf8\x5d\x03\x07\x18\xe5\x4e\x45\x7e\xd7\x98\x1d\x7a\x7e\xb2\xc5\x31\xed\x88\x7a\x27\x88\x7a\x99\x07\x36\x81\xf3\x74\x26\x02\xf2\xa4\x66\x82\xfe\x5b\xef\x73\x81\x5b\x4d\x06\x1b\x40\x79\x4a\xb3\x01\xf9\x75\x5f\xb5\xdd\x45\x79\x02\x6c\xe9\x65\x75\x20\xdf\xcc\xf2\x40\xbe\x91\xf5\x81\xec\xd0\xe8\x57\x45\xa3\x9e\x86\x0b\xf2\x2d\x8d\x17\xe4\x5b\x19\x30\xc8\x0e\x99\x7e\x45\x64\xea\x6a\xd1\xc3\xfe\x41\xbe\x95\x0d\x84\x3c\xbd\x1d\x84\x74\xdb\x42\x48\x9f\x6a\x2e\xbd\x6d\x22\x1b\xc0\x79\x2a\xbb\x08\x79\x5a\xdb\x08\xe9\x81\x53\x1d\x36\x92\xcd\xad\x3e\x91\x9d\x84\x6c\x69\x2b\xe9\xb3\x97\x3e\x36\x93\xcd\x0d\x6d\x6d\x37\x69\xda\x4e\x22\xe7\xea\x11\xb6\x93\x3e\x3b\xec\x6b\x43\xd9\xdc\xe5\x93\xda\x51\xc8\x63\x6d\x29\x4d\x83\x36\x99\x58\x48\xf7\xfd\x6d\xa9\x70\xda\x62\x6e\x21\xad\xe4\x72\x17\xb8\xe3\x05\xee\xd8\xa0\x78\x10\x66\xf8\x37\x49\x0d\x7b\x81\x33\xa0\x40\x85\x3f\x94\xb1\x39\x95\x1f\x37\x83\x71\x6a\xab\xb3\xa7\x50\x84\xdf\xf8\x3f\xc3\xd0\x3d\xe3\x6d\x0a\x05\x37\xf0\x4c\xbb\x90\x9b\x5d\xc8\xcd\x2e\xe4\xe6\x5f\x2b\xe4\xa6\xcd\xe0\x3b\xcf\x98\xea\xf4\x0c\xb9\x71\xd5\x9e\x0d\xfa\x33\x88\x49\xc5\x8e\xb6\x14\x3a\xc1\xda\x51\xe6\x8f\xc2\xc6\x19\x7a\xc1\xa8\xeb\x8d\x69\x47\xc8\x92\xea\x68\x41\xa2\x8c\x6b\x96\x71\x0a\x97\x84\x92\x48\x66\x19\x53\xa9\xa1\xf7\x62\x4e\x2c\x1f\xa8\x25\x56\xa9\xde\x2a\x56\xb5\xb2\x87\xc9\xde\x31\xb9\x32\x0b\x64\x22\xa2\xa9\xca\xe1\xde\x96\x2b\x0a\x2d\xa5\x41\x21\x4f\xad\x5e\x97\xbc\x93\x7a\x51\x2b\x54\xed\x15\xdf\x46\x8d\x97\x19\xa8\x5e\x90\xbb\x81\xa1\x28\x8a\xce\xdb\xc2\xd8\x03\xa2\x58\x4a\x33\xac\x8e\x94\x6b\x42\xfd\x98\x60\x6c\x02\x79\xf8\xcc\x2a\xb8\x80\xf3\x68\x58\xb0\x88\xdd\x79\xf9\x80\xe7\x62\x3e\x24\x93\x89\xb0\x75\xbe\xa5\xe2\x60\x8d\xae\x41\x62\x41\x9b\x46\x25\x82\xcd\x61\x71\x96\xf0\x1a\x71\x85\xcd\xf8\xbd\xab\xc4\x35\x99\x4c\xf6\x2e\xa4\x36\xff\x19\x92\xe3\x24\xb1\x19\xfb\xfd\xd1\xc3\x23\xdb\xc4\x52\x14\x11\x6a\x99\x2b\x2c\xc1\x46\x35\x57\xe0\x16\x81\x59\x5a\xec\x56\xb4\xc4\x31\x87\xe4\x18\x1e\xbb\xcd\x8c\xc6\x16\xba\x80\x9c\x54\x38\x04\xb5\x22\x9b\xdd\x34\xd4\x49\x32\xdb\x31\x7f\xd8\xfd\xc0\xcb\x80\x83\x37\xc3\x15\xa0\x1f\x5e\x22\x14\xfa\xca\xd1\x2d\x04\x97\x18\x4e\x83\xd5\xa9\x15\x40\x84\x6b\xe4\x18\xbb\x65\x66\x2f\x29\x4f\xe3\x28\x35\x51\xb7\xcc\xb7\x55\x71\x5a\xa8\x21\x07\x30\xcb\x70\x31\x5b\x84\xf5\x4a\x52\x20\x62\x68\xa1\x0e\xdd\xe3\x9e\xc0\x20\xbe\x91\xbe\x25\xe3\x4f\xc3\xce\x26\x7b\x17\xf5\xce\xae\xca\x54\x8a\x7e\x2d\x36\x77\x53\x53\x5d\xfb\xf2\x53\x00\x86\x16\x44\x80\xb0\x7b\xf3\x84\x29\xa0\x0f\x97\x22\x59\x13\x9d\xd1\xd9\x8c\x47\x08\x29\x97\x7e\xac\xcb\x2e\x00\xaf\xdc\x73\x83\x42\x60\xae\x42\x4a\xa5\x5f\x78\x46\x3f\xaf\x4a\x1a\xce\xdd\x9c\x05\xaf\x06\x32\x55\xa4\xce\x83\xb3\x34\x0f\x20\xe4\x87\x02\x44\xde\x80\x4d\xfb\xa0\x48\x25\x25\xd8\x3e\x0a\x10\x18\xf1\x0f\xd9\xb2\xd8\x39\x26\x29\xba\xc4\xab\x80\x29\x87\xda\x07\x85\x14\x5d\x4e\x4d\xe7\x6d\x19\x71\x2d\x2b\xd6\x4d\xa6\x6b\x5c\xb4\x9b\xb9\x03\xa8\x6e\xdb\x0e\x5e\x2e\x04\xc8\xac\x0b\xe9\xe0\x7b\x99\x55\x79\xec\x83\xc6\x37\xc0\x7d\x20\x6d\xea\x26\xd8\x08\x5f\xa6\x09\x67\xaa\x94\x26\x7d\x64\x83\xaa\x97\x5d\x07\x06\x8a\x24\xb0\x21\x8a\x79\x23\x4c\xb8\x07\xdf\x5e\x3e\x26\x45\xe5\xd6\xca\x3e\x1b\xb7\xbf\x3f\x4f\xe4\x94\x26\xcf\x5f\x74\xa8\xed\x7e\x1d\x00\x7c\x80\xc5\xd8\x25\x1a\xe9\x5a\x66\x15\xef\x02\xd8\x46\xfb\xa0\x66\x8f\x95\x61\xca\x83\xee\x3a\xcb\x8e\xd5\xfa\x5b\x44\xb7\x3e\xe5\xca\x9d\xd6\x0e\x8d\x42\x66\x44\x42\xc3\x69\xd0\xca\x4f\x79\x65\x1b\x1e\x8e\x62\xee\x5e\x4a\x53\xc1\x74\xbb\xda\xb9\xea\xa4\xc2\xb4\x6a\x26\x8c\x86\x9d\x87\x5a\x32\xaa\xdb\x08\xef\x9e\x40\x38\x42\x78\x2b\x40\x74\x0a\xd3\xc5\x82\xf4\x75\x40\xbb\x4a\x17\x2b\x69\x29\x0d\xe7\x20\x8a\x3a\xea\x58\x21\x19\xb3\x40\xb6\x87\x7c\x36\xf3\x91\xde\xbc\x3d\x6d\xcb\x2d\xf9\x8b\xcb\x8f\x90\xfa\x62\xbb\x33\xc1\x0e\x4e\x65\x55\x63\xbf\xdc\x8e\x4d\x93\x8e\xe7\xc5\x9c\xe3\xef\x0e\x16\x63\x99\x6d\x09\x0c\xe8\xd1\x01\x0d\x68\xd3\x07\x1c\xe4\x1a\xaa\xb3\x02\x96\x2a\xb9\x64\x50\x19\x56\x46\x32\x51\x64\x41\x57\xa8\xdd\x57\x07\xe8\x38\xb2\xc6\xbf\x3a\x08\x6d\xc6\xbc\x14\xdb\x5c\x3b\xf5\x9c\x72\xda\x45\x18\xdd\x72\x54\x96\x90\x1b\x01\xa5\x93\x2a\xda\x72\xc4\x90\xa5\xef\xe6\x64\xec\xf2\xc4\x7e\x3a\x1d\x37\x26\x21\xc5\x4f\x9f\x53\xa5\x62\x7d\x39\xeb\x68\x33\xe8\x36\x24\x6c\x36\xee\xe3\x5a\x94\x52\xad\x59\x26\x8e\xc8\x7f\x0d\xff\x57\x7b\xcb\xfb\xc1\x6d\xe1\x63\x31\xe0\x42\x0f\x64\x36\xc0\x19\x9a\x4a\xbe\x97\x9f\xbe\x08\xb9\x3d\x73\x79\x51\x76\xea\x40\xcb\x7e\xfc\x95\xc5\x4c\x72\xcd\xbc\xc7\x05\xa9\xb0\x11\x30\x54\x3e\xd5\x09\x33\xbc\x32\x0a\x5c\x76\xae\xf6\x31\x0b\x6e\xa9\x15\x55\xfa\x9d\x59\xba\xdd\x95\x9d\xec\x15\x37\xb6\xeb\x59\xe9\x7e\x6c\x7b\x3c\x2b\x0b\x90\x98\xad\xde\xe9\xb9\x27\x84\xbc\xe8\x40\xc3\xc2\x0e\x80\xac\xa6\x72\xa9\x99\xf5\x82\x29\x46\x32\x2a\xe6\x4c\x1d\x3a\xb5\x1d\xa4\x70\x6e\xcd\x1c\x8c\x9f\x4a\x4a\x2f\x7b\x75\xc0\x6c\x84\x50\x56\x0e\x02\x56\x07\x66\xa7\xe9\xe0\x95\x67\x78\x06\xc8\xc0\xf5\xa5\x60\x9d\x14\x00\x9b\x6e\x45\xc1\x3a\xf6\x5e\x92\xb7\x1a\x05\x9b\x20\x0d\x9b\x58\x2a\x36\x41\x3a\x36\x31\x94\xac\x95\xe7\xd9\xd1\x32\xf8\xf4\xa2\x65\xea\x01\x52\x72\xb7\x70\xdc\xaa\xe9\x2b\x3f\x41\xe1\x98\x3c\x57\x8c\x39\x15\x19\x90\x32\xba\x4c\x13\x46\xd4\x5a\x68\x7a\x1f\x4a\x1f\xeb\x7f\x26\x93\x56\xd9\xda\xf2\x90\x4d\xb2\x73\xfb\xd8\x4e\x33\xe6\x89\xd6\x32\xdb\x14\x99\xcd\x75\xbb\x90\x9a\xc1\xdc\x06\x7b\x3a\x80\x60\xa3\x66\x9c\xd1\xa0\xe3\x55\x40\xf0\x78\xaf\x49\xfb\xe8\x53\x96\xc8\xbb\x17\x07\xd5\x25\x7b\xc0\x46\xa8\x12\xae\x15\x4b\x66\xce\x38\xdd\x01\x07\x54\x86\x81\x9a\xf3\x66\xc1\x88\xbe\x93\x80\x6b\x90\x7d\xc9\xfd\x86\x04\xc2\x3c\x42\xeb\x32\xe3\x7a\xc7\xd9\x5d\x0a\xb7\x7b\xe7\xda\x55\xaa\x5f\x99\x27\x25\xe1\x6e\x50\xb5\x60\xdb\x77\xbf\x09\x77\x0b\x99\xd8\x43\x3a\x82\x23\x9a\x4c\xca\x07\xf9\x4f\x40\x5d\xfe\x63\x41\xd5\xf3\xe5\xfa\x2b\xf8\x5c\xbe\x00\xba\x63\x89\x7c\xd7\x75\xb6\x05\x04\x9c\x16\x02\x90\x0c\xd7\x87\x1e\x31\x65\x40\x4e\x6c\xe6\xed\x89\x6f\x30\x5e\x2c\xc1\xf1\x03\xa8\x34\xda\x94\xa6\x2c\x81\xe5\xba\x95\xa2\x12\xd5\x6e\xa9\x37\x62\xe0\x96\x1b\x77\xbc\xb9\x29\xb3\x8a\xa6\x32\x28\xe5\xa7\x7d\xbf\xc5\x96\xba\xb6\xd3\x75\xc9\x05\x60\x1e\x86\x49\x21\x3b\x65\x55\x09\x09\x90\x56\x5b\xdb\x00\x6c\xc9\xc5\x4e\xba\x17\x2f\xa4\x18\x58\x17\x26\x6b\x0f\x23\x77\x0b\x96\x31\xab\x17\x99\xc9\x6c\xc9\x7c\x25\x05\x78\x4c\xe1\xe8\x3d\x94\x76\x9b\xa0\xf1\xf2\x0d\x3d\x81\x10\x5f\xf5\xb4\xdc\x82\xf7\xaa\x3a\x5b\xfe\x7a\x3c\x58\x8d\x2c\xb7\x8f\x19\x50\x79\x52\x92\xca\xd8\x85\xc4\xa1\x09\xa4\x20\xd1\x3d\xdc\x42\x0b\xc7\xd0\x56\x6c\xeb\x1d\x03\xe2\x1b\xec\x9b\x3f\x9b\xf1\x61\x8f\x07\x37\x79\x08\xc8\xbb\x87\x6c\xd2\x34\x07\xc0\xde\x0b\xda\xc4\x73\xc5\xbd\x5b\x48\x85\x6a\x49\xb3\x7d\xcb\x02\x1a\x06\xb8\x33\xb8\xa2\x0f\x73\x47\xb6\x0a\x5a\xe9\xc9\x29\x91\xbe\xdc\x12\xd9\xbc\x5f\x9d\xfc\xd2\xff\xdc\x93\xae\xc8\x4a\xa5\xd6\x0d\xe9\x7e\x51\x23\xa1\xa1\x14\x59\xf5\x53\x9a\x21\xc0\xba\x70\xed\x5b\x15\x4a\x59\xc4\x16\x2e\x60\x6b\xf3\x7d\xf7\xa0\xc7\x17\xa7\xfb\x3d\x62\x7a\xb6\xd3\x68\x75\x45\x40\x59\x28\x6e\x25\x1f\x5b\x2a\xdd\x46\x2f\xfa\x71\xdd\xd8\x13\x0d\xc4\x05\xbd\xf4\x52\x64\xba\x89\xc0\xe9\xb4\x74\x38\xed\x61\x99\x69\x65\xba\xeb\xe8\xd5\x97\xeb\x0e\x98\xb3\x1c\xfc\x9e\xab\x17\x75\xf6\x1b\xdd\x69\xcc\x6a\xba\x74\x65\x87\xb0\x2a\xa8\xf3\xee\x56\xb2\xaf\x40\xba\xb5\x12\xb3\x83\x77\x54\xb8\x85\x14\xc0\xe8\x82\x45\xd5\xb2\x65\x6e\x8e\x43\xd6\x03\x9f\x75\x3f\xd8\xb4\x28\x74\x80\xf9\x82\x19\xf6\xd7\x29\x7b\x65\x56\x7f\xbb\x71\xe9\xa8\x4a\x31\x80\x70\x9a\xd0\x0e\x6b\xa5\xc1\x27\x73\x80\xfe\x1e\x51\x6f\x54\x40\x41\x0a\xe7\x48\x60\x1d\x3b\xda\x59\x96\xad\x9e\xcd\xed\x5f\xcd\x62\x99\x65\x0c\x35\x9a\xe4\xfb\x87\x57\x11\xb7\x37\xcf\x06\xff\x44\x44\xa0\x5f\xa8\x78\xc3\xd6\x30\x60\x7c\x73\x7f\xf8\x7d\x38\xc1\xed\xe6\x07\xa9\xac\xdd\x21\xdc\xe4\x84\xcd\xb4\x2b\xe5\x58\xbc\x21\x70\x7b\x7a\x28\x69\x88\x7f\x11\xa1\x90\x8c\x11\xcf\xf7\x55\xb9\xb2\x5f\x95\x82\x76\xb7\x59\x68\x1d\x2a\xaf\x87\x9f\x6a\x0c\xf2\xcd\xcd\xb8\xb4\xd7\x37\x3a\x31\x18\x2c\x31\x4d\x9b\x97\x5e\xf8\xa3\x3f\xca\x7f\x61\xc9\xf4\x42\xc6\x5b\xbc\x0c\x1f\xb1\xc3\xd3\x72\xed\xb8\x65\x24\xea\xb8\x6f\xcf\x55\xce\x8c\x89\xb5\xa9\x58\x67\x0e\x51\xc7\xd7\xb1\x18\x47\x71\xab\x7d\xce\x86\xf3\x21\xf9\x70\x76\x73\x40\xc6\x9f\x6e\x0e\x08\xd3\xd1\xf0\x05\xf9\x98\x27\x9a\xa7\x5d\x76\x0e\x0b\x22\x78\xf7\x2f\xaf\xf6\x8d\x18\x36\x87\x20\xcb\xdf\x97\xdd\x2a\xa5\x7a\xb1\xc5\x39\xee\x8f\x4d\xfb\x6f\x71\x8c\x5d\x27\xd8\x4d\x51\xfc\x13\x84\x65\x0e\x8b\xa3\xc2\x6d\xba\xb3\xe8\x7b\x18\x84\xb0\xe1\xfc\x88\x0c\x08\xbb\xa7\x91\x3e\x22\x87\x33\x29\xc9\xc0\x3a\x89\x1d\x91\xc3\x29\xcd\xc8\xc5\xe5\xcd\xd9\x11\x3a\xa0\x31\xa1\xb3\x35\x59\x76\xb1\xe7\x97\x17\xe7\x7f\xb1\x94\x73\x4d\x18\x07\x05\x0c\x25\x93\x3d\x98\x04\xb5\xc8\xe6\x4f\x9c\xc5\xe9\x3a\x86\xe4\xa6\x6b\xfb\x2b\x9a\xf0\x98\x16\xca\x3e\x08\xcc\xc0\x52\x6d\x3a\x54\x9b\xad\xfc\xf4\xc1\xb9\x5a\xfc\xc8\xcd\xcd\xd8\x40\xd8\x7b\x00\xa8\x40\xc0\x1b\x40\xf7\x7f\xab\x46\x1a\xfc\x63\xa7\xcc\x01\xc2\xea\x11\x67\x32\x5b\x1e\x39\xb0\x4f\xf2\x97\x2f\xdf\x44\x66\x60\xf8\x17\x3b\xb2\xc9\x86\x7a\xa9\xbd\x10\xd5\x60\x55\x30\x9c\x21\x18\x59\x71\x84\xe5\xd0\x03\x0b\xef\x47\xcd\x80\x63\x74\xb8\x9a\x6c\x91\xaf\x01\x01\xf0\xb4\x62\xa4\xdd\xfa\x53\x0e\xda\x37\xa1\x42\x0f\x82\xd4\x3d\x14\x8f\x96\x3d\xdf\xcc\xd1\xc9\xc7\x71\x5f\x0f\x10\x20\x46\xcd\x6b\xf7\xa9\x94\x57\x5e\xcf\xac\xd6\xc6\x68\x62\x91\x40\x98\xd2\x0a\x18\xb6\x38\x6a\x8b\x7c\x85\x1e\xfa\x9b\x3c\x2d\x9f\x55\xed\x53\x45\x99\xc6\xc2\x6a\x6e\xe6\x69\x63\x6d\xc1\x9e\x6e\x1a\xad\xde\xb6\xe8\x29\x7b\x61\x62\xd4\x9e\x18\xa6\xfe\xce\x03\x67\x22\x85\x0f\x25\x00\x4a\x84\xc5\x4a\xb7\x10\xd6\x20\xa8\xc9\x00\x18\xbd\xf2\xc1\x45\x15\x0a\xc1\xfa\xb0\xb2\xd6\x4b\x30\x4d\x6a\x16\x2d\x04\x8f\x36\x93\x96\x55\x3f\xa0\x16\x45\xf5\x3f\x5f\xa6\xd2\xcb\xa5\x7d\x6b\x98\xf2\x64\x5f\x11\x9e\x6a\x8c\x83\x9b\xf1\x8c\xdd\xd1\x24\xe9\x58\x2a\x52\x0b\xab\x94\xcd\x15\x3a\x4e\x31\x31\x93\x18\x2f\x60\x5d\xf4\xba\xaf\x46\xa7\x0d\x0f\x9a\x3d\xfe\x30\xcc\x30\x43\xf4\x25\x63\xf7\x60\xb8\xea\x32\x81\xe1\x19\xc8\x19\xf9\x01\xbd\xbc\x61\x87\x30\xd6\x59\xb4\x90\xe4\x0a\x1f\x6d\x5b\x6b\x31\xe5\x62\xae\xda\x6d\x60\xbd\xf6\xdb\x83\x18\xa4\xe1\x70\x9b\x06\x80\x8c\xc6\x2e\xec\xe6\xd1\x8e\x61\x15\xe5\x16\xf2\xe3\x3e\x94\xc7\xce\x32\xd6\x08\x85\x1e\x10\x68\x08\x9c\x68\xd8\xdc\x47\xdb\xda\x73\xeb\x2d\x52\xdd\x41\x3c\x48\xb6\x2c\x6b\x85\x85\x82\x58\xaa\x9b\x7b\x14\xd1\xd8\xac\xef\xd8\xd0\xae\x6f\x32\xbe\xf2\xd3\xf7\x59\xaa\x16\x4c\x2d\xd7\x63\x03\x7e\xd0\x6a\x77\xcb\xd6\x16\xb5\x53\xca\x6d\xaa\xbd\xf6\xe9\x8d\xc8\x4a\xd8\xbd\xce\x68\x05\xa6\x74\x2a\x73\xdd\xe3\x21\x79\x2a\xc9\x51\x48\x6d\x6e\x5f\x3f\xcc\xb8\xc0\xc6\x1d\x1e\x3d\xd0\xa4\xdd\xb3\x6e\xf7\x60\xec\x1e\x8c\x7f\xed\x07\x43\x48\xed\xd8\xaa\x46\xb0\xb4\x7b\xdd\xf4\xf4\xb7\xe9\xe7\x69\xb3\xe1\x10\xea\x58\xbe\x0e\x9f\x50\xdb\xac\x19\x60\x1d\xf7\xb8\x87\x6b\xcf\xc3\x9c\x7a\xd2\xdf\x2b\x70\x27\x7b\x3e\x6c\x9f\xf0\xed\xdf\x30\x6c\x81\x86\xd7\xe7\x04\x1c\x4c\x86\x80\xf5\x3c\x6b\xd3\xcc\x5b\xef\x5c\x7b\xce\x67\x10\x6a\x74\x05\x91\x72\x2e\xea\x0b\xd5\xe6\xcf\xa7\x2c\xa2\xb9\xb2\x3e\x71\x1d\xa6\x84\x62\x89\x11\xcb\x60\x8c\xc2\xaf\xee\x05\xaa\xe2\x3f\xda\xf0\xaf\x8a\x97\x60\xd7\x13\x8b\xee\x83\x47\xbe\x07\xdc\x81\xef\xff\x86\x7f\x80\xa4\x52\xf9\x6b\xf5\xb6\xfc\xfb\xfa\xe4\x06\x7f\x6d\x9e\xc6\x8e\x78\xce\x35\x73\x4e\x76\x54\x38\x04\x71\x46\x59\x70\x35\x24\xaf\x06\xaf\xbf\xff\xbe\x45\xe5\xff\xed\xd0\x1e\x1d\x31\xfa\xbd\xc6\xd7\xe8\xce\xd9\x2f\x2a\x8d\x68\xd9\x22\x40\xe2\x48\xbb\x80\xb4\x5d\x40\x5a\xb7\xd9\x73\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x9a\x76\xbc\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\xd6\xb4\x93\x1d\x2d\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\x1a\x7e\x76\x01\x69\xbb\x80\xb4\xfa\x67\x17\x90\xb6\x0b\x48\x2b\x3e\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x2d\x38\xe8\x2e\x20\xcd\x83\xc5\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xab\x7e\x7e\xcd\x80\xb4\x96\xf2\x0b\x84\x0c\x6c\x16\xdf\xd0\x6f\x7d\xca\xf8\x07\xf9\x04\x7b\x37\x1e\x90\xbe\xbb\x7a\xab\x76\xf9\xbb\x77\xf9\xbb\x77\xf9\xbb\x77\xf9\xbb\xc3\xcb\xdb\xe5\xef\xde\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\xaa\xfc\xec\xdc\xa5\xca\xcf\xce\x5d\x6a\xe7\x2e\xf5\xbb\x72\x31\xd8\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x60\xe3\x7f\x31\x5a\xb6\x73\x97\xda\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\x2a\xf0\xd9\xb9\x4b\xed\xdc\xa5\x8a\xcf\xce\x5d\x6a\xe7\x2e\xb5\x73\x97\x0a\x0e\xba\x73\x97\xf2\x60\xb1\x73\x97\xda\xb9\x4b\xed\xdc\xa5\xaa\x9f\x5d\xfe\xee\x5d\xfe\xee\x5d\xfe\xee\xca\x67\x97\xbf\x7b\x97\xbf\x7b\x97\xbf\xbb\xd7\x0c\xbb\xfc\xdd\xbb\xfc\xdd\xbb\xfc\xdd\xbb\x74\xac\xbb\x74\xac\xbb\xfc\xdd\xbb\xfc\xdd\xbb\xfc\xdd\xcd\xeb\xdf\xe5\xef\xde\x3d\x18\xbb\x07\x63\x97\xbf\x7b\x97\xbf\xbb\xf2\xd9\xe5\xef\xde\xe5\xef\xae\x7d\x76\xf9\xbb\x9b\x05\xc8\x5d\xfe\xee\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xfe\x67\x17\x90\xb6\x0b\x48\xfb\x5d\x05\x71\xec\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\x5a\xb0\xf1\xbf\x18\x2d\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\x16\xf8\xec\x02\xd2\x76\x01\x69\xc5\x67\x17\x90\xb6\x0b\x48\xdb\x05\xa4\x05\x07\xdd\x05\xa4\x79\xb0\xd8\x05\xa4\xed\x02\xd2\x76\x01\x69\xd5\xcf\xff\xec\xfc\xdd\x90\x94\xbb\x2b\x7b\xf7\xa5\x69\xd4\x42\xbf\xab\x87\x2e\xb1\x75\x70\x9d\xe8\x76\x87\x79\x93\x41\x51\x62\x06\x05\xcb\x62\x3c\x44\xdd\x49\xa1\xf9\x5d\xf0\xb9\x11\x44\x27\x7b\x30\xde\x64\x0f\x9e\x4b\xdb\x36\x34\x34\x9d\x19\x01\x4a\x03\x83\x06\x03\x24\xf2\x8e\x65\xb8\x1a\x74\x63\xf4\x16\xa7\x88\x5c\x72\xad\x0d\xdd\xe5\x2e\x02\x26\x34\x68\x24\x85\xe2\x98\xb6\x1c\x75\x7c\x93\x3d\x2e\x66\x5c\x70\xcd\x26\x7b\x64\x40\xc0\x79\xce\xdb\x8e\xa3\xea\x76\x9d\x24\xa1\x4a\x0f\x49\xb1\xb3\x20\x48\xcc\x5a\x79\xcc\x84\xe6\x11\x4d\xec\x02\xeb\xe3\x70\x41\x68\x92\x2e\xa8\xc8\x97\x2c\xf3\xda\x41\xc6\xf0\xd0\xa8\x96\x96\x5b\x75\x14\x7a\x88\x04\xe5\x53\xc4\x0d\x91\x2f\xa7\x9b\x9a\xc2\x16\xb6\xb1\xf6\xc8\xdf\xf8\x6a\x1a\x44\x14\x4f\x59\x93\x2b\x2b\x73\xf2\xe8\x16\xff\x4f\xe6\x41\xfc\x37\x4b\xae\x09\xdd\x1e\x70\x6d\xb8\x86\x07\x16\x2d\xdd\x9b\xd7\xac\x3a\x28\xd7\x61\x58\x87\x24\x91\x77\x48\x0a\x50\x83\x54\xe8\x54\x90\xb1\xfb\x13\xaa\x17\xf0\xb6\x7f\x4d\xb8\x66\x19\x05\xc9\x3e\x34\xf2\x64\x42\x06\x18\xae\x64\x10\x65\x99\xd2\x8c\x2b\x29\x0e\x08\xc4\x2c\x3a\xb5\x80\x1b\x72\x26\x25\x99\xd2\x0c\x74\x15\xc5\x74\xff\xb1\xe5\x74\xe5\x7c\xe6\x65\x67\xff\x9d\xd3\xe4\x8f\xe8\x61\xeb\x38\x55\x3e\xb3\x2c\x2a\x57\xd0\xc6\x69\xde\x8b\x29\xc3\xf7\xf2\x17\x58\x07\x2d\xfd\xc2\xa6\xe5\x3f\x23\xfc\xe7\x70\x38\x24\xff\xf4\x56\xa0\xb3\x9c\xb9\x40\x99\xc2\xd7\x14\xe7\xf8\x99\x84\x7d\xdb\xad\xc9\xa1\x63\xaa\x72\xad\x66\x03\x5c\xf4\x58\x5c\x68\xb2\x2d\xd7\x0b\x93\xb5\x2d\x30\x7c\x24\xde\x9a\x17\x54\x3d\x87\xf1\xbe\x9a\xc7\xe5\x45\x39\xf5\x4d\x31\x33\xd5\xe5\xe9\x78\x27\xf3\x1f\x80\xa4\x41\x9a\x6f\x87\x28\xd4\x93\x72\x06\x6d\x41\x3b\x05\xff\xcd\x5f\xbe\x7c\xfd\x16\xff\x1f\x7f\x29\xfa\x5c\x2f\x64\xa6\x07\x11\xcf\xa2\x9c\x6b\xe0\xaa\x6c\xa7\xd0\x44\xff\xf8\x47\x6b\x6f\xb0\x63\xe8\xe7\xd8\xe6\x45\xd1\x28\xa5\x19\xb3\x1c\xf9\x3c\x93\x79\x6a\x38\xf2\xc9\x44\xd3\x24\x79\x1e\xb4\x47\xd9\x94\xf6\xe8\x95\x52\xd0\x0b\x37\x9a\xc3\x61\x9a\x24\x9e\x8a\x09\x2e\xe8\x39\xe2\x03\xca\x50\x61\xf1\x88\x9a\xab\x8d\x74\xc6\x79\x6a\xfa\x24\x53\x1d\x90\xc1\x01\xf9\x0a\x70\x38\x1c\x92\x6b\xb8\x72\xc4\x5e\xb9\xc6\x41\x97\x32\x63\x24\x35\xec\xbf\x52\x7c\xc5\xc8\x14\x63\x0c\xd6\x4e\xbd\x69\x15\xcf\x84\xa9\x88\xa6\x8c\x44\x0b\x9a\xd1\x48\xb3\xcc\x2e\xfb\x0c\x5d\xb5\x83\x97\xe1\x39\x10\xfe\x25\x8d\xd9\x20\x4f\x11\x2d\xd4\x8b\x82\x1c\x41\x60\x9b\x25\x1d\x77\x6c\x6a\x04\x07\x66\x89\x87\x7f\xe2\x31\x4b\x13\xb9\x5e\x32\x11\x24\xa7\xb6\x7f\x9a\xc9\xd8\x21\x29\x8c\x6b\xee\x14\xd0\xa4\x4c\x0a\xcd\x44\xec\xa1\x3a\x8d\x6e\xed\x17\xff\x34\xcd\xcb\xf1\xc9\x7f\xfc\xa9\xe9\x06\xc4\x6c\xe5\x86\xff\x0f\x52\xbb\x05\x21\x52\xd6\xc6\x51\x55\x95\x81\x2d\xe6\xea\x16\x4d\x60\xbb\xde\x62\x86\xfe\xab\xe5\xb3\x10\xda\x96\x7b\xb1\x10\x47\xad\x42\x01\xcb\x73\x48\xe1\x16\xe9\x74\x05\x21\xb3\x73\xdb\x1e\xc1\xe8\xd0\xe3\x4d\x05\xdb\x04\x17\x31\x8f\x40\xf4\xbc\x5b\x40\xc0\xb4\xcf\xc8\xfa\x5e\x59\x56\xca\x09\xd2\x29\x73\xef\xa4\x2d\xe0\x71\x60\xff\x9a\x4a\xbd\x18\x12\x74\x94\x84\xd7\xe4\x3e\x35\x4c\x8a\x4e\xd6\x9e\x2c\xf5\x1c\x8a\x8f\x04\x3d\x60\x3d\x3a\x2a\x48\x94\x31\x1b\x9f\xa1\xec\xed\x96\x19\x11\x3c\x79\x71\xe0\x62\x2c\x62\x36\xa3\x79\xa2\x15\xc1\x6d\x19\xd0\x65\x71\x03\x4b\xad\x25\xb9\x33\xb4\x72\x64\x05\x37\xb3\x88\x33\xfb\x4f\x73\x1f\x2d\xe5\x2c\x2a\x70\xa0\xbf\x1f\xa8\xd6\xed\x34\xa1\x51\xb9\xc2\xdb\x35\x20\x7f\xb5\x7c\x91\x59\x8a\x9b\xe3\x6f\x07\xf6\x71\x30\x5c\x26\x98\x0d\xdc\x94\x58\x27\xe5\x39\x17\x51\x92\x37\xae\x78\xc1\x48\x44\x0d\xe7\x09\x03\x94\xc3\x10\x7c\x9e\x85\x2c\x36\x03\xc3\xbd\x08\xac\xe4\xac\xb1\xfe\x4a\x7d\x6d\x95\x85\x19\x92\x54\x1f\xbe\x79\x9f\x41\xf4\xa8\xaf\x61\x63\x42\xd0\x60\x05\x4e\xc3\x4a\xd4\x41\xba\x20\x10\xb5\xaa\xbc\x7e\xc6\xa8\xb9\x47\xd1\x2d\xa1\x73\xca\xc5\x81\xc5\x06\x34\x7b\x24\x77\x74\xad\xac\x17\x7c\x10\x8b\x9d\xb7\x02\xba\x29\x1c\x10\xc1\x56\x2c\xab\xe0\x5b\x50\xba\xef\x59\xde\xa7\x84\x02\x61\xf0\x68\x14\x06\xbd\x54\x2a\xc5\xa7\x89\x9b\xb8\xf4\xc3\x32\x1d\xae\x53\x16\x85\xe5\x3d\xdc\x5b\xb3\x67\x5a\xbb\x64\xd9\x28\xb4\x85\x65\xbd\xcd\x6f\xe1\xcd\x88\x7d\x7b\xbb\xd2\x32\xa3\x73\xe6\xbe\x52\x9a\xea\x1c\x01\x83\x26\x27\x16\x5f\x78\xc6\x80\x5b\x2e\x62\x43\x87\x1c\x48\xd3\x24\xcf\x68\x52\x7e\x13\x49\x81\x16\x60\x75\x44\xfe\xfa\x37\xf3\x8d\x19\x9f\xc5\x36\xc2\xd3\x7e\x3b\x11\x83\xc1\x60\x22\x68\xca\x5d\xa0\x28\xa1\x29\x67\xf7\x9a\x09\x68\x35\xbc\xfd\x41\x0d\xb9\x3c\x5c\xbd\x9a\x08\x9c\xf1\x24\x57\x5a\x2e\xaf\x18\x9a\xb2\x4e\x19\x88\x5b\x40\xa7\x2b\xe1\x98\xa0\x80\x21\x02\x5d\x5e\x15\xd3\x6a\x18\x65\xf1\x30\xcd\xa4\x81\x40\x04\x44\x67\x28\xb3\xf9\x44\x18\x6a\x06\x3d\x80\x45\x39\x22\x0d\xcd\xaa\x96\x10\x5c\x4a\xe9\x97\x8b\xdf\x26\x5c\xe9\x3f\xd7\x7e\x39\xe7\x4a\x57\x01\xe4\xad\xc9\xc2\x9d\x8b\x79\x9e\xd0\xcc\xff\xc9\xfc\x02\x84\x2c\x5b\xb1\x4f\xe2\x56\xc8\x3b\xf1\xde\x60\x8a\x3a\x22\x33\x9a\x28\x38\x31\x15\x49\x73\xa8\x85\x76\x05\x24\xbd\x95\x03\xaf\xf9\x63\x60\xc1\x60\xa0\x07\x33\x45\x0b\xb6\x2c\xc3\x55\x65\xca\xc4\xf1\x78\xf4\xf9\xcd\x75\xf5\xfb\x4d\xc7\x58\xe7\x7e\x6c\x5d\xbc\xca\x29\x07\xec\xbf\x73\xbe\xa2\x89\x21\xb8\x16\xef\xeb\x3e\xcb\x1e\x72\x37\xa8\xcf\xbc\xd3\xaf\xe2\x72\x35\xab\x85\x59\xaa\xf5\x1e\x40\x6f\x7b\x5c\x8c\xdd\x31\x8b\xed\xf6\x70\x1d\x40\x4d\xec\x53\x40\x43\x7a\x11\x39\x83\xd7\x1f\x6e\xc4\x10\x58\x04\x96\x29\x27\x44\x46\x52\xac\x58\xa6\x49\xc6\x22\x39\x17\xfc\xef\xc5\xe0\xca\xf9\x33\x40\x75\xaf\x8d\x87\x84\x0b\xcd\x32\xc3\x4c\x00\x29\x40\xad\xed\x92\xae\x49\xc6\xcc\x34\x24\x17\xde\x80\xce\x9b\xea\xa3\x61\x22\xb9\x98\xc9\x23\xc8\x37\xa4\x8e\x0e\x0f\xe7\x5c\x3b\xc4\x8f\xe4\x72\x99\x0b\xae\xd7\x87\x60\x61\xe5\xd3\x5c\xcb\x4c\x1d\xc6\x6c\xc5\x92\x43\xc5\xe7\x03\x9a\x45\x0b\xae\x59\xa4\xf3\x8c\x1d\xd2\x94\x0f\x60\xed\x02\x6e\xde\x70\x19\x3f\xcb\xec\x4d\x51\xfb\x21\x3a\xb1\x49\x5e\x00\xb5\xdb\x8e\xc1\x60\xb8\x0d\xd2\x45\x2e\x19\x9f\xf9\x02\xda\xce\x95\xe4\xea\xec\xfa\x86\xb8\xd9\x83\x01\xcd\x08\xfc\xb2\xa7\x2a\xcf\xc1\x00\x8d\x8b\x99\xe3\x67\x40\xa9\xed\x8b\xff\xf8\xa4\x26\x3c\xc0\xda\xaa\x7c\xba\xe4\x5a\x79\x89\x6a\xe4\x90\x9c\x14\xda\xee\x3c\x8d\xa9\x66\xf1\x90\x8c\x04\x39\xa1\x4b\x96\x9c\x50\xc5\xbe\xf9\x29\x00\x53\x37\x30\xb0\xed\x7b\x0e\x0d\xc1\xe5\x4d\xaa\xbc\x82\x8c\x35\x1c\x5b\x79\x1f\xcd\x8b\x54\x8d\x6e\x72\xc1\x70\x65\xf8\x39\xdd\xa0\x6d\xe5\xc7\x1d\x69\xed\xd1\x6a\x51\x8d\x37\xf8\xe1\x6f\x94\x00\x74\xae\x82\xa3\x71\x41\x09\x51\x2a\x9e\xb2\x44\x1a\xac\x92\x56\x37\xc3\x42\x06\xd5\xe6\x77\xfc\xdf\xe2\x25\x85\x77\x14\xfe\xef\x99\x0d\x61\x3b\x22\xf8\x80\x1d\x6a\xb6\x4c\x81\x5e\x1d\xe2\x17\xe0\x7d\x57\x7a\x6c\x64\x6a\x90\x4d\x69\x34\x5c\xd3\x65\x62\x5e\xe4\x5f\x7e\xe1\x33\xc2\xfe\x9b\x0c\xaf\xde\x1d\x9f\x9c\x48\x31\xe3\x73\x32\xd9\x33\x4d\x26\x7b\xff\xfc\xa7\x19\x7f\x04\xcc\x2e\x23\x94\x44\x49\xae\x34\xcb\x32\x99\xb0\xa2\x24\x5d\x7d\x74\xd0\x7e\x49\xc1\x84\x3e\x30\x9d\xa1\xa8\x1d\xd0\x10\xed\x88\x69\xc3\xb2\x9c\x24\x55\x3a\x34\x58\x16\x00\x27\xbd\x92\x09\xab\xb2\x0e\xb0\x0d\x9a\xeb\x85\xcc\xf8\xdf\xd1\x99\xcb\xe3\x1f\x02\xfc\x41\xc3\xc4\x13\x01\xac\x2b\x34\x7c\x46\x2e\x64\x8c\x7a\x05\x72\x67\x7d\xb6\xb4\x24\x4b\x29\x38\xf8\x26\xcb\x8c\xc4\x2c\x61\x78\xd3\xf1\xd1\xa5\x29\xff\x60\x98\x09\x73\x32\xe6\x10\xff\x86\xe7\x5a\x50\xe2\x02\x49\x07\x44\x98\xb1\xf1\xcf\x15\xcb\xa6\xfe\x4f\x77\xbe\xfd\x62\x00\x97\xa3\xfc\x6b\x8e\xf7\xf2\x19\x19\xbb\x1c\x66\xde\xda\xca\xd4\x52\xec\x9e\x2b\x0d\x15\x1f\xa9\x22\x29\xcd\xec\xf5\x3a\xfe\x48\xca\xdd\x6e\xbf\xe8\x54\xc6\x0d\x6b\x9e\x33\xdd\xb4\xe2\x62\x3b\xcf\x70\x01\xc5\xc0\x36\xc2\x4d\xf0\x14\x4a\x66\x82\x36\x1b\xeb\x73\x2a\x30\x62\x19\x10\x21\xd2\x24\x32\xba\xb5\xf4\x5b\x1d\x98\x1d\xdd\x31\x23\x18\x28\x92\xb2\x8c\xcb\x98\x47\x44\x67\x7c\x3e\x67\x59\xf8\x20\xc2\x9c\x5d\xdb\x46\xb9\x65\xc1\x30\x33\x45\x78\xcb\x6e\x97\x8f\x9f\x0d\xf6\x47\x67\xc8\xd0\x96\x5a\x21\xb3\x0c\xba\x84\x1f\x6b\xdf\x2d\xa8\x88\x93\x26\xf4\x69\x39\x0a\x10\xc7\x59\xf9\x37\x82\xb4\xfc\x1b\xf0\x99\x05\x8f\x6e\x2c\x65\xb2\x79\x17\x28\xb7\x1a\x35\xb2\xa4\x29\xa8\xf9\xe4\x0c\xb7\x83\x69\x05\xc6\x24\x35\xfd\x9e\xec\x54\x60\xb4\xf6\xe3\xd8\x58\xf9\x06\x71\x59\x52\x41\xe7\x4c\x91\x85\x54\xda\x73\x59\x7b\x92\x25\x56\xc6\xfc\x86\xe7\xf3\x8c\x5c\x30\x16\x83\xbe\xc4\x08\xdc\x5a\xda\xb6\x8e\x2e\x7b\x29\x50\x9e\x6a\x6b\x81\x91\x9f\x7c\x83\xde\xb1\xfd\x39\x9f\xb2\x93\xf2\xd4\xf0\x39\xca\xb3\x42\x9d\x84\x1a\x15\xae\xcd\x74\x8a\x18\xbe\x2f\x82\x26\x4f\xb3\x59\x83\x34\x1e\xce\x44\xfe\xec\xc1\x6d\x3f\x43\x1d\x86\x59\x87\xbc\x13\xde\x5a\x36\x60\xf2\xcc\x42\x81\x50\xa7\x95\x22\x7c\x46\x84\x14\x0c\xa9\xb6\x6a\x02\xd7\x33\x77\xc6\xc8\x56\x34\x41\xf1\x19\x42\x11\x9e\x81\x68\x51\x89\xac\x28\x00\x0c\xec\xc2\xc6\x9b\xfa\x8e\x0b\x54\x64\x7d\xa3\xa7\x55\x26\xec\x8a\x61\x94\x82\x3b\x9f\x96\xf1\x4d\xb3\xc0\xb3\xdf\x39\x8d\xca\x81\x45\x33\x47\x33\xb0\x03\x54\xf5\xc0\x3d\xc6\xf0\x3d\x1e\x90\x80\xa8\xb5\xd2\x6c\x69\x21\xd7\x9b\xdf\x32\x4f\x98\xcf\x63\x75\x71\x50\x5e\x37\x72\x4a\xd9\x52\x8a\x6b\xd6\xc5\x3c\x41\xe3\x5f\x8b\x61\x32\x93\x55\x99\xa4\x4f\xca\x16\x25\x46\x5d\x6f\xe9\xab\x5a\xba\xcc\xc9\x5b\x26\x94\x35\x94\xe7\x5e\x96\x9e\x93\x8b\x91\xe1\x79\xe7\x68\x7b\xdc\x8a\x13\xa9\xee\x57\x1d\xc2\x1c\xd5\xe6\x17\x15\x07\xd6\x41\x75\x07\x21\xba\x55\xde\xb6\x67\x20\x95\x94\xcb\x23\x02\x88\xad\x96\xe6\x1e\x03\x17\x74\x80\x0c\x1c\x0a\xfa\x7e\xf4\xf2\xc3\x59\xaa\x1a\x57\xe8\x94\x38\x38\x70\x2b\xa5\x7d\x46\x5c\x58\xf8\x75\xc2\x1d\x63\x95\xbb\x73\xb1\xc8\x6f\xab\x88\x5b\xf9\xca\xe9\x5e\x5d\x52\xac\x67\x2e\xc9\xd1\xd2\xc5\x35\xd4\x77\x11\x73\x15\xc9\x15\xcb\xd6\xee\x7a\xb6\xed\xaa\x78\x02\x61\x3d\x5b\xb1\xb9\x5b\x41\x6f\xc3\xe7\xae\xc0\x8c\x06\x22\xfd\xc9\x1a\x70\xdc\x6e\x0a\x64\x1d\x8d\xd1\x5e\x49\xe3\x95\x11\x66\x55\x09\x88\xd6\xd5\x36\x8c\x7a\xb3\x4e\x17\x54\x0d\xc3\x6c\x3b\x39\x19\x9d\x5e\x11\x9a\x6b\x39\x88\x99\x66\x58\x86\x5e\x0a\xa0\x33\x34\x5e\x5a\x64\x2b\x5f\x76\x7c\x4b\x0c\x87\xf5\x00\xfc\xc2\xce\xa6\x6f\x2b\x0a\x6d\x2f\xbb\x1c\xfa\xaf\x50\x1d\xcc\x86\x39\x71\x64\x21\x61\x14\xb4\x45\x46\x9a\xb2\xca\x85\x4f\x82\xae\x28\x4f\xe8\xd4\x90\xbe\x84\xce\x3d\x40\xa5\x3e\x9c\x9f\x39\x2b\x11\xc8\xbd\x0a\x43\xfd\xa2\x2a\x27\xe0\xe5\x7a\x33\x17\x15\x65\x86\x22\xa9\xdc\x30\xf4\x4a\x3e\x23\x5f\xea\x2f\xa4\x81\xb3\xe7\x33\xea\x67\x4c\xe0\x0d\xd7\xda\xde\x24\x2e\xe6\x7d\x6e\x84\x6d\x9d\x56\x3c\x7e\x7a\x5e\x09\x8b\x60\xd3\xb5\x03\x87\x59\xb8\x33\x9e\x94\xfb\x7f\x34\xf1\xa9\x51\x9b\x00\x9d\xdd\x92\xf5\xae\x51\xd1\xd4\xc5\xe2\xc8\xd8\xa1\xcf\xc3\xd6\xdc\x82\x7b\x1e\x06\x15\xd8\x63\x45\x76\x45\x56\x34\xe3\x32\x57\xe4\xe4\xea\x14\x6f\x3b\xe2\xd2\x13\x31\xc8\x98\x40\x64\xc6\x12\x7e\x8f\xe3\x7a\x70\xf4\xbe\xad\x72\x91\x20\xff\xcd\xd3\x94\xb1\x4c\xd5\x87\x9a\xce\xd3\x8d\x81\x8a\xef\x36\x87\xa9\x88\x47\x4d\x52\x6c\x93\x58\x89\x33\x06\xb1\x74\xe3\x67\xc5\x7c\x82\xdb\xd8\x27\xd8\xba\x51\x8a\x68\x90\x9e\x5a\xe5\x63\x3c\x18\x20\x47\x80\x10\x0f\x10\x89\xef\x36\xb1\x25\x57\xba\x60\xd1\x45\x5c\x30\xdd\x86\xf6\x00\xe2\x48\x61\x38\xf0\x4c\xe7\xe9\xb7\x90\x6b\x3b\xb1\xa5\xb7\x1c\xd6\x2c\x6c\x55\xf7\x5a\xdf\x60\x60\x57\xa4\x71\x5b\xa4\xed\xed\xe9\x79\x3c\x81\x85\xf5\x23\xf8\xd6\x9b\xd1\xcc\xf0\xa4\x1a\xb8\x7e\xf8\x72\x03\x46\x67\xe7\x05\x24\x05\xf2\x5d\xe0\x78\xee\x1c\x76\x81\xc8\xe4\xe9\x3c\xa3\xb1\x0d\xa3\x5c\xbd\x1e\xbe\x45\xae\x31\xc2\x84\x4b\xcf\x0c\x57\x9c\xb1\xa5\x5c\xb1\xd8\x3a\xab\xba\x0e\x32\x33\x3b\x9c\x65\x4c\x2d\x08\x17\x4a\xd3\x24\x79\x52\x89\xbe\x85\x96\x54\x49\xd2\x36\x98\x15\x86\x4a\x05\x20\xf6\x8c\xcd\xcb\xa0\xa5\x69\x6a\x4e\x14\x95\x83\x34\x49\x64\xf4\xb4\x9b\xfc\xfd\x29\xd7\x36\x1e\x46\x44\x07\x10\x21\x81\x81\x31\x1c\xa0\x95\x97\x80\x47\x32\x4c\x60\x4d\x67\x30\x29\x14\xaa\x15\xcd\xc8\x53\x11\x24\xba\xac\xbc\x3c\xad\x60\xf0\xe5\xa6\x77\xa0\xaa\x2d\xc1\x5d\x4d\xf6\x0a\x97\x07\x76\x34\x5d\xc3\xb5\x46\x7c\xc8\x64\x6e\xb6\x36\x9f\x67\x2e\x12\xfb\x1b\x1e\x7d\x23\xcf\x65\x4f\x05\x71\x13\x90\x71\xc9\xe7\x96\xe8\x54\xe4\xbf\x18\x04\x73\x70\x2d\x08\x60\x7b\x44\x85\x75\x1a\x7f\x56\x5c\x6b\xd0\xef\x68\x7b\xaf\x0d\x2f\x0c\xa4\x00\xb2\x25\x96\xb7\x9a\xe4\xca\xfc\x64\xde\xc0\x81\xb9\x04\x09\x2c\x22\x08\x0a\x9a\xa6\xaa\x75\xe7\xe5\x12\x5b\xce\x2f\xe0\x82\xd1\xae\x16\x68\x56\x18\x75\x2a\x0c\xbe\x85\xea\x07\x87\xde\x5e\xdd\xe3\x34\x00\x4d\x2a\x9e\x5f\x7e\x61\x22\xfe\xe7\x3f\xb7\x52\xf2\x14\xfa\x1d\x48\x91\xb2\xa4\x82\xcf\x98\xd2\xee\x7c\xd5\x86\xbe\xc6\x9a\x61\x59\x56\x98\x33\x40\xc9\xa3\x6a\x7a\x11\xf4\xaa\x72\x32\xbb\x15\x04\xcd\x2d\x7f\x86\x91\x5e\x4b\x6a\xa0\x03\x8d\x4c\x0b\x96\xa1\x00\x04\x1a\x79\x4f\x9c\xb1\x2c\x43\xa1\x16\x2a\x54\x4b\x75\x07\x9c\x54\xf5\xd2\xff\x34\xc3\x8e\x58\x8f\x55\x67\xe1\xfc\x41\x0d\x68\x9a\xd6\x8f\xcc\x99\xac\x6b\x81\x04\xe0\xe8\x7b\xee\xf7\x6f\x1a\x81\x58\xea\x7a\xad\x33\xaa\xd9\x7c\x7d\x64\x8d\x97\xc3\x4f\x95\xaf\xcd\x21\xfe\xf2\x0b\xd1\xf2\x2f\x74\x99\xd4\x7f\x24\xff\x20\x5c\xc4\x4c\x68\xf2\x1d\xb6\x63\x89\x62\xe6\x5f\xa4\x30\xf6\x5e\xc9\x24\xe1\x62\xfe\xc9\xa3\xe4\x99\xff\x55\xb1\xca\x25\xbd\xf7\x64\xda\x23\xf2\xca\xc3\x22\x42\x1c\xc6\xb8\x6d\xd6\x0d\xfc\x49\x75\xcb\xcd\x9b\x26\x20\x13\x5f\x51\x11\x2d\x58\x36\x70\xd6\x7b\xb4\xa1\x97\x42\x2f\x66\x19\x89\x16\x2c\xce\x13\x96\x0d\xc1\xdb\x79\x58\xe6\x5d\x01\xb7\x86\x8c\x43\x58\xc9\x20\x95\x71\x19\xd9\x18\x97\xee\x16\xab\x37\xc3\x57\x6f\x86\xdf\x81\x6f\x2b\x71\x53\x87\x93\xc7\x23\xce\x1f\x10\x0a\xa6\x7a\xf0\x5e\x06\x24\xb6\x53\x1c\xc7\xb1\x14\x0a\x93\x98\xc8\x84\x59\x82\x0a\x79\x3c\x0e\xfc\x41\x96\x14\xad\xfe\x0c\x7c\x6a\x21\x38\xd7\xad\x92\xd0\x38\x1e\x40\x04\x85\x50\x39\xe8\x12\xac\xda\xdf\xef\x9f\x66\x5c\x66\x5c\xaf\xdd\xce\x21\xc4\x57\xd8\x48\x24\x74\x0b\xf1\xed\x8e\xd6\xc5\x2a\xf6\x87\xe0\x33\x33\x30\x38\x0f\x82\x51\x81\xad\x78\xa4\x2b\xc1\xb4\xfd\xa1\x7a\x44\xf6\xad\xbf\x47\xc5\x41\xc3\x9c\x64\xc0\x7b\xb9\x3a\x8e\x54\x47\x24\xe1\x22\xbf\x77\x0d\x7e\xf9\xc5\x26\xd2\xfd\xcf\xdb\x03\xf2\x9f\x2b\x72\xf4\x27\x32\xbc\xf0\x46\x22\x0e\x6d\x6d\xe3\xff\xbc\x25\xff\xfc\xe7\x11\x99\xec\x99\x7f\xaf\xcc\xaf\x7b\xde\x50\x4c\xc4\x5e\x07\xf3\xde\x58\x75\x47\x35\x07\x4f\x79\x5a\xd5\xd3\xfe\x48\x6f\x19\x51\x79\x56\x25\x68\x00\x30\x07\x1e\xf0\x86\xa6\x49\x82\x3c\xb6\x07\xbf\x81\xcd\x71\x71\x44\x2e\xe4\xb5\x6d\x5c\xfe\x0a\x8e\x69\x19\x35\xa0\x21\x67\x15\x53\x08\xce\x9b\xdd\xb6\xe2\x07\xf2\x12\xac\x3c\xff\xca\xc4\xb7\x6c\x7d\x14\x40\xca\x7e\xb3\xfb\xeb\x3e\xbb\x67\x51\xae\x7b\x2d\xbb\xcb\xa1\xc2\x22\x55\xe5\xb9\xba\x08\x91\x5b\x1c\xac\x20\x28\x16\x20\x5c\xf0\x25\xff\x3b\x23\xb1\xbc\x13\x9a\x2f\x19\x89\xf1\x76\x50\x47\xa5\x7c\x49\xc2\xf9\x2a\xfc\x91\x68\x96\x24\xfe\xeb\xa0\x25\x89\x25\x94\xb6\x02\x0d\x70\x39\x81\xeb\x32\xd9\x2b\x7d\xa3\xaa\x98\x1a\xcb\x48\x1d\x46\x52\x44\x2c\xd5\xea\xd0\x25\x00\x55\x87\xa0\xa4\x49\x65\x7c\xf8\xcc\xc5\x48\x73\x29\x06\x72\x66\x6e\x46\x89\x0f\xde\x6f\x1f\x32\x1a\xb1\x31\x58\xf3\xaf\x59\x24\x45\xac\x8e\xc8\xcb\x0d\x92\x57\x66\xef\x46\xb5\x9d\x6b\xe0\xee\xfe\x49\x42\x95\x42\x00\xfe\xf2\x0b\x19\x22\x2f\x67\x2e\xca\xb8\xde\x80\xfc\xa3\x30\xbe\x4d\xf6\xf0\xf1\x42\x63\x8d\xc3\xa9\xc9\x9e\x77\x47\x0c\x03\x79\xe2\x5e\xec\x4d\xda\x57\xbe\xe6\x4e\x98\x51\x55\xa1\xaf\xc6\xd3\x01\x3f\x8f\x07\x6c\x38\xed\xa1\x3f\xde\x48\x5b\x0e\xd2\xca\x0b\xb6\xe8\x90\xab\x8c\xb0\x29\x0c\x82\xdf\x3e\x9f\x91\xb5\xcc\x31\x0d\x0d\x4d\x32\x46\xe3\xb5\x3f\xa8\x5d\x0c\xc8\x14\xb9\x62\x0d\x93\x3b\xa7\x51\xdb\x1a\x7e\xf6\xb1\x9c\x2f\xc1\xb5\xe9\x97\x5f\x86\x27\x17\xa3\x91\xf9\xc3\x27\x3b\xf6\xf7\x71\x9e\x24\xe8\x00\x7d\x44\x46\x33\xc8\x9c\x0f\x2e\x7e\x7e\xc3\x48\x2e\x97\xd4\xf0\x21\x7f\x9d\xec\x1d\xca\x54\x1f\x46\x82\x1f\x4e\xb9\x38\xf4\xd6\x05\x91\x27\x7b\x03\xbb\x96\x82\xd9\xc5\x0f\x13\xab\xf7\x99\x5c\x56\x7c\xbe\x9c\xaa\xfb\x23\x4d\x1d\xa7\xe9\x7f\x9e\x91\x63\x88\xf1\xfb\xf3\xa7\x77\x67\x57\x17\x67\x37\x67\xd7\x5f\xaf\xcf\xae\x3e\x8f\x4e\xce\xbe\xfe\x74\x79\x7d\x03\x4f\x45\xe0\xb7\xf1\xe5\xd5\x8d\x95\xc4\xe4\x8a\x65\x19\x8f\x63\x86\x84\x86\xbd\x1b\xbf\x27\x4b\xa7\x79\xf0\x3f\x08\x45\x2f\xd1\x99\x33\x49\x0c\x9c\x6e\xab\xde\xc3\x85\xa2\x6c\x26\x41\x63\x62\x55\xdb\x8a\x3b\x25\x6f\xb1\x17\x97\xa7\x67\x5f\x2f\x8e\x3f\x9e\xd5\xc7\x05\x07\xcd\x0d\x48\xe1\x07\xfc\xcf\x43\x90\x2a\x7e\x1c\x53\xbd\x38\x82\x2b\x37\x34\x57\x03\x42\x45\x83\x4b\x39\x39\x3e\x1f\x9d\x5c\x7e\xbd\x38\xbb\xf9\x72\x79\xf5\xe7\xd1\xc5\x87\xaf\xef\x8e\x4f\xfe\x7c\x76\x71\xba\xcd\x7a\x8a\xd3\xfb\x33\x5b\x37\x2d\xab\xc2\x8a\x56\x4d\xec\xfe\x07\x48\x3d\xb6\xfa\xea\x22\x97\xbc\x66\x2b\x99\xe4\x4b\xf6\x31\x94\x55\x68\x40\x96\xe6\x6b\xdc\xf9\xe1\x8a\x66\x87\x09\x9f\x02\x7a\x3a\x65\x66\xf8\xb0\xcb\x0b\x3e\x10\x4c\x0f\x62\x9e\xb5\x8d\x6b\x5a\xfb\x78\x1f\x1e\x33\x12\x7c\x30\xe5\xa2\x3e\x98\x62\x51\x0e\xa4\x4c\x0a\xcd\xee\xeb\x45\xe8\xd2\x8c\xaf\x78\xc2\xe6\x55\xb7\x44\x12\x22\x55\x15\xd9\xc4\x88\x1c\x53\x2e\x68\x56\x89\x46\x46\xb3\xb3\xf9\xad\x26\x82\xcc\x78\x02\xf1\x3d\x20\x84\x88\xea\x25\x70\x58\x61\xc7\x1f\x44\x82\xff\xba\x54\xc4\x4e\xbc\xa3\x19\xde\x46\x2e\x6c\x46\x09\x77\xd6\xfe\x39\x16\xda\xa5\x61\xc3\xf5\xbe\x18\x7d\x3d\xb9\xbc\x78\xdf\x4c\x62\x0c\xab\xf9\xea\xe5\xc0\xaa\x65\xcc\xd8\xa0\x1a\xdb\xab\xaf\xc2\xa9\xbd\x6a\xd8\x04\x51\x6a\x70\x66\x4d\x38\x55\x5f\x8e\x25\x35\xb0\xac\xd1\x87\xdf\x94\xcc\x08\xfe\xd5\x6e\xe7\x6b\xa8\xe9\x33\x72\xcd\xd0\x69\xdd\xdc\x7a\x48\xec\x51\xc4\x0b\x82\xcf\xec\x0f\x0a\x65\x76\xf3\x53\xc3\x8e\x7f\x07\xa4\xfe\x19\x9c\xdb\xc7\x9b\x4f\xc4\xb2\xb1\x2b\x9a\x71\x23\xeb\x36\x9f\xd1\xc7\x9b\x4f\xbf\xe5\xc1\xac\x98\x5e\x7c\x5d\xea\xbc\xbe\x8f\x71\xc6\x56\x4c\xd8\xe2\x92\x25\x35\x04\x3e\x4d\x25\x8c\x81\x17\xe3\x4c\x9a\x56\xf5\x22\xb4\x6e\x77\xd7\xe7\x67\x67\x1b\x95\x9c\x8b\x8b\x80\x61\x3a\x7b\x0f\x7a\x71\x1e\xf5\x32\x04\x07\x63\x3a\x72\xef\xd7\x70\x23\x23\x44\x39\x5c\xe0\xd5\x7a\xe4\x43\x63\x78\x66\x0f\xbe\x4b\xcc\xc5\x87\x19\x41\x23\xa6\x14\xcd\xd6\x40\x7e\x90\xf9\x56\xa0\x62\x2d\x5d\x83\x0c\xa1\x84\x9a\x79\x69\x42\x45\x65\x70\x48\xad\x31\x4d\x67\x84\x6a\x72\xa8\xd6\xea\x70\xa6\x0e\xe1\x4f\x11\x93\x08\x42\xb9\x5e\xc3\x4f\x59\xee\xf8\xc9\x43\xfc\x7a\xe8\x32\x16\x5a\x15\x19\xd7\x9c\x26\x5c\x95\xf1\xa9\x28\xd7\x55\x35\x02\x86\x13\x57\xda\x48\x7f\x32\xd3\x64\x46\xd5\x02\x58\x6e\x58\x84\x90\x64\x46\x79\x62\x24\x61\x20\xee\x59\x26\x33\x75\x80\x9e\xcb\x9a\xc4\x5c\x65\x79\x0a\xde\x42\x5e\x18\xac\x70\x15\xc9\xea\xcf\x80\xc3\xad\xc9\x1e\x40\x6a\x30\x4d\x67\x33\x55\xc5\xa2\xf2\xe5\x34\x22\xcd\x53\x3d\x9d\xbe\xa4\x89\x3c\xb7\x01\x8d\xfd\xa7\xd9\xfc\x00\x37\x5f\x7b\x4e\x7b\xa3\x34\x1e\x51\x18\xf3\xd4\x5a\x0d\x36\x7f\x7b\x46\xde\xf1\x98\x67\xe8\x18\x43\x13\x8c\x0f\xb5\xe6\x23\xa8\xc6\x06\xca\x87\x22\x0b\x88\x60\x77\x38\x21\xb9\x63\x64\x49\x6f\x59\x1d\x33\xd2\x4c\xa6\xd4\xa6\x61\x95\x05\x29\xde\x9c\x55\x49\xa7\x2c\x22\x32\xd7\x09\x5f\xd9\x38\xb3\x2a\x26\x6f\x3c\xdd\xb8\x59\x3b\x07\xe8\x51\x2b\xcb\xef\x62\x30\x4b\x3c\x0d\xc3\x68\x45\xb3\x41\x96\x8b\x41\xb8\xcd\x93\xc0\x6a\xe3\xaa\xfc\xae\x40\xf6\x8c\x00\x96\x91\xc3\x34\x93\xd1\x61\x29\x50\xdb\xa4\x41\xb9\xca\x69\x92\xac\x6d\x50\x3f\x4c\x9c\x66\x72\x9e\xd1\x25\xec\xcd\xe0\xb5\xe9\x38\x24\x23\xbd\xef\x53\x19\x58\x83\x50\xc8\xf5\xae\x0f\xea\x73\x3a\x6a\x00\x96\xaa\xf2\x8a\x1c\x60\x08\x88\x59\x4f\x26\xa5\x2e\x28\xce\x4c\x35\x40\x52\x4b\x42\xb5\x36\x2c\xcd\xc9\xcd\xf9\x3b\xb7\x34\xc3\x87\x67\x66\xbf\x49\xbd\x3c\x54\x15\x41\xdc\xea\xc3\xa8\xd1\xf4\xab\x91\xff\x2f\x45\xb2\xde\x64\x0d\x1f\x46\xd3\xa3\xb0\xea\xe3\x2a\x07\x73\x57\xc0\xa8\x51\xb0\x71\x9e\x96\x09\x38\xba\x5a\xe1\xe5\x67\xbe\xe6\xc4\x41\xa6\xe6\xa1\x68\xe8\x3a\x18\x08\x95\x1b\xd5\xef\x6f\x10\x21\x40\x45\x03\xea\x33\xf2\xa4\x14\xf4\xdf\x5b\x9a\xf8\xa4\x98\x7f\xb4\xc7\xe3\x91\x33\x5d\x19\x71\xdb\x30\x50\xe6\xed\x06\x1f\x8e\x06\x16\xea\xf4\xf8\xe6\xf8\xfa\xe6\xf2\xea\xec\xeb\xcd\x5f\xc6\xcd\x42\x45\xb9\x85\x4d\x61\xe2\x0b\xe5\xba\x70\x9c\xee\x9a\xef\xcb\xf1\xe8\xe6\xeb\xfb\xcb\xab\xaf\xc5\xc4\x8d\x73\x02\x00\x36\x66\x33\x5c\xfc\xd6\x8c\xbb\xe1\xd6\x7f\x1b\x66\x7d\x21\xa5\x62\xc5\x89\x30\xe1\x54\x7f\x4d\x32\xd5\xbf\x96\x06\x07\xb6\x88\x36\x4d\x2c\xf5\x6e\x24\x48\x48\x95\x36\x43\xf6\xd1\xcb\x4f\x63\x7e\x6f\xd8\xf4\xf9\xa7\xeb\x9b\xb3\xab\x0e\x0c\xfc\x41\x1d\x4c\xe7\xe9\x26\x42\x1c\x97\xfe\xbb\xc8\xb1\x7e\x18\x7b\xc5\x99\x1a\xe0\x3c\x6a\x16\x1b\x68\xae\x25\x0e\xb7\x39\xd7\x99\x00\x96\x71\x34\xae\xf7\xaf\x9d\xdf\x68\xfc\xf9\xbb\xf1\xe5\xe5\xf9\xd7\xcd\x96\xde\x4c\xc7\x90\x50\xa3\x71\x16\x99\x91\x53\xae\xe0\x9f\x9f\x7f\x3e\x3f\xbe\x70\x08\xef\xf4\xe5\x36\xa8\xab\x1d\x93\x8a\x95\xc0\x10\x8d\x4b\xb9\x30\x52\xd6\x23\x56\xb2\x7a\xdb\x7b\x39\x6f\x1f\xbe\x1c\x73\xf7\x8d\xe8\x0b\xc4\x26\x17\x82\x25\x24\x66\xe0\x35\x0e\x4e\xf6\x7c\x46\x78\xca\x53\x90\x21\x60\xe1\x71\x78\x2d\xef\xcf\xce\x47\x3f\x9b\xa3\xb9\x18\x8d\x7f\xa7\xc2\x71\x65\xa7\x0b\x07\xf6\xca\x9e\x1b\x00\x8d\x9b\x83\xf6\xff\x22\x7b\xfb\xc2\x33\x36\xcf\x69\x16\x6f\xb1\xbf\x2f\xa3\xab\xb3\x0f\x9f\x8e\xaf\x4e\x7f\xa7\x7b\xbc\xa9\xde\x8e\xef\xe0\x6a\x78\xee\x63\xa5\xeb\x6a\x2d\xe6\x6c\x08\x81\x09\xa3\x71\x51\x32\xb3\x3e\x72\xb4\x90\xca\xf0\x1d\xe8\x20\x60\xc4\x0c\x2a\xe6\x6c\x48\x4e\x16\x54\xcc\x31\xf3\x83\xab\x0d\x64\xbd\x18\x2b\xbe\x4d\x30\xea\x82\xae\x36\xc6\x15\xd2\x9a\x56\x6d\x75\x21\x9b\x87\x63\x46\x93\xc4\x65\x68\x1d\x0c\xac\xff\xca\x20\xe2\x71\x5d\x98\x08\xb9\x43\x9c\x79\x29\xab\x98\xde\x20\x49\x27\xa3\xd3\xab\xc3\x3a\x61\x30\x5f\x4e\xc4\x2f\xbf\x0c\x08\x9a\x6c\x9f\x27\x4c\x90\xff\x34\x13\xaa\x17\xe4\x35\xa9\xb2\x89\xcd\xe4\x0e\x87\x09\x20\x86\xb5\xc6\xcf\x78\xa6\xb4\x1d\xb7\x62\x97\x6f\x1a\xf6\x6d\xaf\x61\x13\x5a\x1f\xd5\xec\x84\x25\x8a\x3d\xd5\xca\x87\xf6\xbd\x35\xcd\xbc\x19\x7c\x8b\xb4\x3b\x10\x47\xb3\x41\xb9\x9c\xc8\x39\xa0\x87\x92\x18\x53\xa9\x13\xf3\x95\x02\x77\xa5\xa6\x57\xd2\x2e\xed\x74\x74\x7d\xfc\xee\xfc\xec\xeb\xfb\xd1\xf9\xd9\xd7\xf3\xcb\x0f\x1f\x46\x17\x61\x55\x6f\x3b\xd7\xf6\x9e\x25\xfc\xde\xcb\x1f\x22\x51\x7a\x74\xd7\x04\x93\xe7\x9a\xaf\x8f\x4f\x4e\xce\xc6\x37\xad\xf7\xff\xf4\xec\xfd\xf1\xa7\xf3\x9b\xb3\x8b\xd3\xf1\xe5\xe8\xe2\xe6\xe6\xd2\x70\xee\xc7\x27\x37\xa3\xcb\xe6\x47\x05\x87\xdd\x5c\xdb\x26\xde\x5e\xdb\xac\x81\x71\x4e\x13\xa5\x69\x74\xfb\x00\x84\x74\x8f\xcc\xe7\xb7\xd7\x9f\xc6\x46\x76\xd8\x0a\x62\x25\x9f\xf2\xb6\xa1\x9f\xc7\xa6\xf4\xc2\xdc\x8b\xe3\x9b\xaf\x97\x9f\x6e\x3e\x5c\xf6\x39\xbc\x46\xa4\x2d\x91\x0a\xde\x7c\x29\x3c\xf1\xa3\xf5\xc0\xfa\x00\xa2\x50\xd8\x36\x62\xf4\xe6\x51\x41\xfa\x29\x8c\x0f\x30\x24\x06\x27\x3b\xbf\xfc\x60\x70\x75\x7c\x7c\xf3\x13\x6a\x01\x05\xb3\x51\x61\x78\x1f\x00\x11\xdd\x85\xd0\x12\x2e\x48\xdb\xe2\xbd\xf1\x1a\x17\x6f\x26\xe9\x83\x5b\x4d\x0b\xbe\x3e\xfb\x7c\x76\x35\xba\xf9\xcb\xf5\x5f\xae\x71\xcd\x96\x86\x03\xa1\x2f\xe2\x93\xc5\x4c\xb6\xee\x44\xad\x55\x22\xe7\x1d\x7b\xf1\xa6\x6a\xdc\x4e\xdb\x15\xf6\xe6\x9b\xec\xdd\xd1\x4c\x70\x31\xef\x75\xad\x82\xfb\x3d\xb9\x3a\x3b\xbb\x30\x63\x7d\xc1\x91\x36\x77\xdc\x77\x3b\x30\x52\xe3\x8e\xbe\x84\x17\x5a\x1d\xee\xa7\xb3\xe3\xf3\x9b\x9f\xce\x2e\x0c\xbd\x0b\xcb\x5c\xcd\x34\xae\x6d\xc3\xa3\xf1\x8d\x19\xf2\xda\x4a\x73\xa0\x8d\xca\x35\x06\x90\x95\x37\xd9\x26\x90\x15\x33\xd0\x4c\xab\xf6\xfb\x54\x19\xb0\x55\x9a\xa9\x2e\xf5\xa1\xe6\x84\x90\x83\xb3\xfb\x1e\xf3\x3c\x6d\x70\x53\x51\x9a\x1f\x91\xd7\xdf\xbf\xac\x78\xaf\x24\x7c\xc6\xa2\x75\x94\xd4\x53\xd8\xa7\x19\xbb\xd6\x32\xdd\x18\x84\xdd\x6f\xe4\x55\x22\x9e\xea\x7c\xf3\x97\x01\xf1\x7d\x58\xea\xaa\x27\xd7\x66\xa0\x16\xb9\x8e\xe5\x9d\xa8\xae\x6d\xc5\x04\x53\x6a\x9c\xc9\x69\x7d\x7d\xc1\x75\x34\xad\xa2\x7b\x0d\x03\x32\x80\xdb\x3b\x30\x73\x06\x7e\x9c\xf2\x2c\x0e\xfc\x96\x56\x5d\xb3\x5e\xbd\xac\xfe\x6c\xad\x29\xa7\x2c\xa1\xeb\xc6\x46\xd6\x58\x72\xb3\xc8\x98\x5a\xc8\x24\x3e\x22\xb5\x47\x46\xf3\x25\x93\xb9\x6e\x18\x20\x63\x34\xe6\xbf\x36\x94\x6a\xae\x54\x55\x30\x05\x7e\xec\x80\x53\xfb\x0e\x5b\x6c\x2a\xcf\xa0\x9c\xb7\xcb\xb7\x62\xc8\x95\x17\x3e\x72\x3c\x1e\x19\x06\x1f\x14\x20\x34\xd9\x7c\x10\x9f\xd0\x28\x48\x2a\xea\xe5\x22\x23\x61\xd3\x6c\x09\x9f\x1e\x2e\x65\x9c\x07\x72\x1d\xe3\x34\x09\x9f\x0e\x1a\x1a\x34\x6b\xb1\xeb\xb3\x64\xb9\x38\xbc\x47\xda\x35\x4c\xa4\x61\x9b\x42\x53\xd9\x16\x83\x50\x8b\x2d\xb6\xf4\x78\x9b\xcd\x96\x93\x81\x07\x52\xc7\x64\x06\x8c\x0f\x9a\x0c\x87\x40\x55\xbb\x5a\x8b\x0d\x53\x42\x68\xe7\xe6\xc2\xd0\xf9\x46\x02\x3e\x44\xd1\x42\x29\x7d\x40\xee\x82\x81\x4c\x4b\x5b\x46\x09\x6d\xbc\xa5\x05\xb8\x6e\xb5\x53\x12\x6c\x54\xd0\x1a\x33\xfa\xd6\xa7\x83\x2c\xe3\x9a\xa0\xe1\x48\x66\x9b\x96\x14\xdc\x1c\x5a\x52\x5b\xf6\x55\x4e\x1a\x1e\xc0\x5c\x85\x44\xce\x43\x57\x61\xe3\xac\xe4\xbc\xb0\xff\x54\xdd\x9e\x48\x23\x46\xe3\xad\xaf\x9a\x56\x5c\xbc\xb7\x1f\x61\x52\xfe\x3e\x68\xbf\x3c\xe6\x8a\xc3\x9a\x6a\xa4\xa9\xe5\x4a\x0e\x3a\x11\xb7\x7d\xd0\xa6\x4b\x31\xe8\xc4\xd1\xee\x71\x43\xf8\x3f\xe8\xb8\xd3\xed\xa3\xb6\xd3\x0b\x0c\xfd\x78\xcf\x13\x76\x99\x9d\x54\x62\xfa\xca\x79\x37\x0d\xd7\xed\x33\x5a\x14\x0b\x4d\x74\xea\xd0\xb7\x79\xb6\x0d\x0c\xee\x35\xd9\x06\x3e\xd7\xe6\xf3\xf1\x6d\x59\x5a\x58\x2b\x56\xd3\x5a\xd2\x16\xcf\x35\xa1\xea\x13\xdd\x68\x15\x0d\x60\x6d\xc8\x6a\xd9\xbe\xa1\x6a\xeb\x32\xdd\x86\x73\x1a\x3b\xb9\x18\x85\x6c\x80\x61\x2f\x99\xf6\xa9\x82\xbe\x37\x83\xf6\x37\xb1\x7d\xc4\x86\xb7\xb6\xdc\x85\x4d\xf4\x61\xde\xf3\x44\xce\x43\x10\x6b\x20\x40\x3d\xae\x4e\x03\x39\x72\x26\x75\x9b\x29\xbd\xa0\xa0\x20\x17\xd4\x9d\xd5\xfd\x90\x5c\xeb\xda\x53\x31\xe1\x02\x72\xdc\x2d\x98\xa8\xc7\x37\x7a\x03\x55\x1d\xde\x8b\xf8\x67\x2f\xf4\xd9\x1f\xd1\x85\x4b\x2a\x97\x51\xd6\xf7\x48\x6f\xf6\x2d\x18\xf4\x72\xc6\xed\x49\x70\x82\x2e\xbf\xe5\xa1\x59\x7d\x6a\xca\x32\x08\xa1\xfa\x24\xf8\x3d\x39\x95\x86\x3f\x23\xd7\xb2\x56\x41\xb5\xfd\x95\x6d\x58\x4f\x27\x71\x20\x9b\xd4\xd7\x7b\x98\x21\x74\xb1\x2b\xfc\xc4\x8f\xfd\x2b\xe3\x3b\xeb\xd1\x93\x0f\x0f\x06\xdc\x36\x90\xb2\x9e\x87\xab\x08\xaa\xbc\x66\xcc\x4f\xce\xbb\xc8\xa7\xc3\x48\x2e\x0f\x2b\xd1\xc0\x87\x9b\x59\xbc\x82\xb1\x8d\x36\x02\xd2\x2b\x90\xb1\x4d\x0e\xb3\x07\x47\x3e\x06\xf2\x94\xb9\xb8\x30\x54\xdb\x57\xf2\xa6\xba\x02\x76\x18\xd0\x01\x89\xc2\x13\x06\xaa\xca\x15\x43\xb2\x27\xac\xa5\x22\x63\x69\xc2\x23\xaa\x20\xe6\xf0\x41\x11\x95\xa1\x4d\xaa\x32\xae\xb2\x44\xc6\x2b\x56\x46\x7a\x77\x85\x34\x76\x82\x91\x90\x36\x50\x92\x3e\x51\x91\x4d\xc3\x3e\x23\xc7\xb1\x75\xf2\x71\x71\x43\x90\xab\x32\xbb\xad\x85\x8d\xa5\xb2\x8c\xed\x0b\xc7\x36\xfe\xea\xf1\x7e\x56\xdf\x3b\xbc\x29\x83\xef\x3c\x65\x68\x35\x24\xcf\x8b\x6c\xf5\x9b\x17\x61\xad\x6f\x31\xac\x75\x43\xa5\xda\x14\xd8\x17\x56\x24\x79\xad\x9d\xfd\xb5\x31\x6b\xaf\x24\x98\x27\x3d\x61\xe0\x12\x96\xe5\xa2\x29\x10\xf0\xdf\x35\x8c\x10\xba\x63\x56\x40\x99\xb0\x1a\x3e\x61\x34\xb7\x3f\x54\xdb\x36\x3b\x06\xb3\x07\x33\xa8\x39\xd0\x86\xc7\xb4\x9a\x6f\x0f\x49\x1e\x1d\xba\xd8\x74\x3b\x37\xc2\x18\x1f\x13\xdb\x57\x4b\x12\xda\x2b\xcc\xaf\x30\x26\x86\x22\xfd\x82\xae\x6e\x83\x7e\xe4\x8c\x54\xa3\x5b\xca\x06\x8f\x74\x34\xdb\x50\x05\x59\xef\x1e\xf4\x7f\xf4\x2f\xa0\x96\xe6\xce\x35\xc8\xc1\x56\xbb\xfc\xf5\xe4\xf2\xe2\xe6\xea\xf2\xfc\xfc\xec\xaa\x49\x0d\xbf\xa9\x11\xdb\xca\x6d\xeb\x36\x58\xb3\xf4\x29\x75\x9c\xb9\xca\x50\x83\xb7\x60\xd1\xed\xa0\x9a\x0e\xb5\x6c\x36\xa8\x39\x92\xfe\x4f\xd3\x61\xf6\x84\x42\xd6\x09\x85\x5f\x89\x5d\xdc\x86\x9b\xaa\xb3\x8e\xd5\xb4\x1a\xc8\x87\x18\xda\x3d\x96\x31\x39\x45\x4f\x7b\x2e\x05\x79\x97\xc7\x73\x86\x5e\x81\xe5\xfd\x03\x21\x0b\x5d\x2f\x7f\x50\x85\xdf\xd8\x71\xae\xa5\x8a\xa8\xfd\x1d\x42\xfd\xab\x5b\x44\x76\xdd\xe3\x19\xc7\x32\x2e\xa7\xc2\x99\x7e\x7b\xe6\x31\x90\x79\xe2\x89\xb8\xc0\xbd\x83\xff\x1f\x21\xc4\xc5\x07\xac\xde\x0c\x5f\x7f\x3f\x7c\xb9\x77\x44\xac\xa1\xd4\x7a\x1b\x1c\xfd\x89\xa8\x34\xe1\x50\xee\x86\x4c\xf6\x0e\x26\x7b\xc4\x77\x15\x20\x58\x37\xc0\x66\xd5\xb9\xb1\x5c\x63\xe9\x49\x69\x7f\xb0\xa3\xf7\x96\x14\x6c\xde\xbe\x4a\xd2\x95\x13\xe7\x63\x43\xb8\x2a\x0a\xb5\xb9\xfc\x56\xc0\x45\xb3\x64\x36\x80\x14\x73\xb1\x9b\xd7\xf7\x51\x29\x93\xe6\xba\x81\x36\x51\xbe\xf9\xb4\x4b\x87\x9d\xa6\x33\x2e\xfa\x3d\xc3\xf4\xa0\x66\x99\xd6\xa0\x8a\x6c\xa8\x36\xdf\x7e\xb5\x4f\xea\x57\x17\x0e\x52\x1a\x78\x9f\x91\x93\x62\x37\x0d\x9e\x9d\x55\x97\x49\xd3\x7d\xca\xb3\x38\xdc\xfd\xe3\xcd\x27\x17\x0f\x6e\xee\x8b\x0b\xde\xc7\x52\x36\x33\x1a\xd9\xb2\xf4\xe8\x1c\x85\xdc\xd7\x33\xf2\x6e\xed\x1e\xd4\x03\x18\x80\x2b\x3f\x91\xa9\xab\x57\xce\x2a\x0e\x38\xba\x70\x0f\xc2\x4a\x7b\xd6\xc5\xc7\x96\x65\x71\xe1\x0a\x76\x82\xbf\xc8\x1c\xc5\x1f\xf4\x75\x66\xf5\x3c\xa9\xd3\x35\x49\x33\xb9\xe2\x31\x26\x3a\x10\x52\x0c\xfe\xce\x32\x6b\xb5\x1e\x96\x0c\xb4\x59\x9c\xe3\x7f\xf9\x8c\x08\x86\x5f\xbd\xb4\x6f\xbd\x73\xa0\xb2\xce\x2d\x1f\x6f\x3e\x6d\x38\xb5\xd4\x38\x67\xbf\xc7\xab\xef\xbe\x7b\xb9\xe1\x30\xd0\x14\xde\xe8\x12\xd7\x35\x45\x39\x42\x37\x60\x7e\x30\xf2\xe1\x99\x2b\x27\xe6\x8a\x53\xdb\x28\xc9\xa2\xf6\x6f\xae\xe5\x92\x02\xeb\x92\xac\x49\x2a\x6d\xf5\x04\x0b\xbf\x06\x6e\x0a\x6c\xb2\x4a\xf1\xb9\xf8\xca\xd3\xd5\xdb\xc9\x5e\x69\x4f\x36\xe0\x29\x3c\x4e\xea\xc9\xf6\x14\x99\xc9\x1c\x9d\x6f\x37\x23\x1d\x8f\xc8\x3f\x06\x48\x4f\x7e\x71\x64\x65\xb2\x27\xa0\xa2\xb0\x75\x9d\x35\x92\xd1\xc0\x76\xf2\x6a\xa5\x4e\xf6\x22\xe1\x2e\x16\xb6\x7d\x39\x7c\x33\x7c\x55\x69\x61\x13\x20\x99\x9f\xff\x5a\xbe\x60\xbf\xf8\x8f\xd9\x64\x0f\x9c\x7b\x61\x00\xab\x21\xae\xd6\x63\x9d\xec\x25\x72\xfe\x35\x61\x2b\x96\x60\x2b\x30\xeb\x87\xda\xcc\x78\xc2\xbe\xa6\x54\x2f\xb0\x5d\x40\x7b\x66\xfe\x37\x4c\xe4\x7c\xa3\x7b\xe1\x7a\xfe\xb5\x5c\x8d\xef\xb7\x5e\x6b\x6e\xce\xbc\x84\xd1\xd7\xaf\xa1\xe0\xce\xaf\x5f\x37\xba\x2d\x75\x6e\x7a\x7c\xfd\x6a\x43\x2b\xbf\x7e\xad\x35\xc0\xa4\x09\x47\x06\x42\xbd\x9d\x86\x42\x20\x74\xd9\x17\x36\x5b\x96\xf8\xf3\x9d\x8f\x3f\xad\x2d\x2b\x98\xd6\xe2\xe0\xd3\xb2\x92\x06\xbf\x9c\x7f\xd6\xf6\x8f\xcf\xb5\x85\x40\xf3\xd0\xb7\x3f\xd4\x3c\x9f\xeb\xe3\xf8\x47\x17\x1c\xcb\x96\x06\x30\xd4\xde\x3b\x42\x8c\x44\xfe\xea\xfc\x75\xcc\x09\x56\x66\x29\xff\xf0\x27\x6c\x44\xe7\x54\x66\x7a\x49\xd3\x0d\x34\x50\x82\x6a\xd3\xc2\x00\xb4\xf6\x53\x44\x53\x3a\xe5\x09\xa6\xba\x83\xa5\xc3\x28\x1f\xb1\x30\x87\x72\xbd\xb6\x5d\xc9\x94\x8a\xf8\x8e\xc7\xe6\x66\x74\x4f\xe8\x35\xde\x9c\xcd\xfd\xd3\xc6\x11\xf6\xd0\x0b\xde\xc6\xf1\x20\xca\x62\xa7\x08\xfc\xa6\x15\x03\x37\x92\x61\x7e\x83\xba\x81\xef\x3e\x8c\x37\xb2\x35\xfa\xd5\x03\xeb\xbf\x6f\xd6\x10\x6c\x48\xd9\x59\x56\x12\xac\x37\x98\xf4\xaf\x27\x68\xd9\xb6\xc9\xb7\x29\x26\x58\xdf\x5b\xb5\x12\x59\xf5\xd9\xc1\x5a\xbc\x6b\x88\xa9\xc8\x64\xae\xab\x4a\x98\x5d\x31\xc1\x5d\x31\x41\xff\x08\x76\xc5\x04\x7f\xb5\x62\x82\xf5\x4b\xbc\x59\x52\xb0\x5a\x0a\xd7\x5c\xe0\xca\xd5\xee\x5f\x3b\x90\xaa\x8b\x7c\x39\x65\x9d\x35\xbe\xf7\x8f\xaf\xb1\xa1\xab\x51\xea\x14\x7e\xc7\xd7\x44\xe0\x0f\xce\x7c\x4d\x2d\xc3\xfd\xd7\x53\x6c\x12\x0c\xc3\x78\xfb\xdd\xf7\xaf\x5e\xff\x6d\x7f\xf3\x27\x4c\x3b\x7d\x64\x6e\xe7\x9b\xd7\x9b\x3f\x23\x48\xcd\xd5\x9d\xb3\x0d\x3f\x91\x29\x17\xf1\x47\x19\xd7\x35\x3e\x9b\xf0\xb5\xed\x42\xe5\xbd\x25\x3c\x14\x36\xf6\xd3\x02\x56\xa0\x54\x14\xac\x0e\x6d\x75\xe7\x36\x20\x8d\x29\xf2\xfc\x42\x0a\xf6\x02\xb3\x4a\x27\x6b\x3f\x79\xf6\x3e\x98\x9c\xa4\xe0\x68\xf4\x75\x7d\x42\xa3\x5e\x18\x08\x9a\x63\x1f\xbe\xfb\x30\x1e\x8e\xc6\xab\x9f\x8f\xb1\xb1\x19\x3e\x66\xa3\xf1\x8b\x21\xb1\xe0\x25\x53\xb6\xa0\x2b\x2e\x73\x3c\x1a\xb7\xfe\xd0\xa8\x81\x2d\x6d\xac\x7f\xcb\x6a\xea\xee\xb2\x85\x70\xab\x06\xf5\x93\xb2\x29\x92\x24\x57\x8f\x12\x97\x64\x2f\xad\x43\x6d\x4c\x2a\xc9\x36\x9d\x81\xcc\x87\x66\x53\xae\x33\x9a\xad\xf1\xf5\xc7\x60\x23\x8a\x7e\xcb\x18\xc5\xbc\x55\x01\xcb\xe0\x32\xd7\xe5\x8d\x53\x9a\x8a\x98\x66\xb1\x39\xd4\x84\x66\x73\x56\x5f\x6e\x68\x50\x02\x5b\x30\xc4\x2d\x10\xba\x8a\x9f\x96\x7b\x89\x1f\xe0\x08\xc2\x3f\xd5\xeb\x8f\xd2\x25\x23\x73\xbe\x62\x02\xf5\x31\x95\xe5\x05\x27\x27\x9d\x95\x3b\x49\xa1\x6c\xee\xb5\x84\xcf\xf0\xb4\x40\x26\xea\x29\x64\x41\xc2\xab\x6c\x04\x15\x7a\x24\xc4\x64\xcf\x80\xcf\xfe\x71\xb4\x5c\x4e\xf6\x1a\x97\x45\xc0\xc7\xad\x80\x7a\xb9\x9b\x5c\x31\x6f\x38\x1c\xff\xc0\xd6\x28\x33\xdf\x4f\xf6\x0c\xd0\x9b\x87\x9d\xec\x41\x47\x9a\x31\xf2\xea\x2d\x99\x72\x6d\x69\xd7\x10\x26\xac\x1f\xad\x37\x1b\xac\xb7\x79\xdc\xd0\x4a\x0e\x8a\xd9\x44\x6c\x24\xcb\xa5\x9d\xf8\xcd\xeb\xca\xc4\x5f\x4c\x97\x60\x5d\x78\xb7\x64\xd8\x16\xe6\x5d\x38\xbe\x26\x48\x85\x9b\x06\x4f\x59\x36\x38\xbe\x76\x51\xba\x3c\x90\x14\xc2\x7d\x52\xaa\x0d\xfb\x73\x44\xfe\xeb\xf9\x64\x12\xff\xef\x17\x47\xf8\x9f\xff\xfc\x47\xf5\x6f\xf7\xf5\x43\x31\xa8\xe9\x09\xf4\x7f\x0d\xd4\x86\x25\x84\xcf\x85\xcc\x58\x3c\x2a\xd4\x64\x5d\xe4\x65\x54\xef\xe0\x51\x77\x4c\xca\x81\xea\x22\x4f\xf1\xa6\x17\x34\xb0\x28\x52\xe6\x21\x9f\x32\xc2\xee\xa1\x92\x98\xf5\xbd\x41\xcb\xc2\xdc\x05\xa6\x3e\x80\xd6\x3c\xb0\x58\x2e\xb1\x64\x7d\x2c\xb3\xd0\x83\x5a\x81\xc4\x79\xd1\xd2\x3d\xd6\x10\xef\x84\xc8\x69\x88\x6d\x9a\x49\x2d\x23\x99\x38\x0e\x1a\x87\x0e\xa2\x8a\x7d\x64\x00\x1a\xaf\xfe\xf0\xe3\x66\x93\x25\xbd\xe7\xcb\x7c\x79\x44\xde\x7e\xff\xfd\x9b\xef\x03\xbf\x73\x81\xbf\xbf\xda\xf2\x31\x4f\xe4\xfc\x9a\xad\x58\xc6\xf5\xfa\x3a\xca\x18\xab\xcb\x1b\x1b\xdb\xde\x3f\xaf\xf7\x70\xdb\x4f\xe4\x9c\x28\xfb\x0b\xa1\x53\xb9\x72\x56\xbd\x44\xce\x83\xcf\xaf\xb9\x4a\x8a\x89\xa2\x06\x9c\xd2\xb1\xcc\xb5\xc7\xd2\x90\xd1\xc5\xfb\xcb\x10\xfb\xd2\x76\xbc\x86\x07\xf8\xc8\xd4\xe2\x23\xbd\xbf\x62\x10\x20\x7a\xc3\x1b\xe8\x7b\xb5\x76\x33\x5f\xb2\xd2\xba\x02\x69\xa7\xe5\x4c\xdf\xd9\xfc\xca\x66\x1c\xf8\x12\x4c\xd4\x5a\x0e\x96\x4c\x2d\x48\xca\x98\x59\x82\x1a\x12\x43\x61\x82\xdc\x00\x71\xda\x4b\x16\x1f\x14\xb9\x4f\x0b\x4d\x7e\xec\x72\x4d\xcc\x33\x1a\xb1\x59\x9e\x14\x73\x59\xdb\x5b\xeb\xc8\x86\x7f\xaf\x8c\xce\xc8\xbb\xd1\xd5\x69\xc1\x35\xca\x19\x79\xf5\xfa\xa5\x72\x36\x04\xeb\xf1\x86\x8a\x6b\x5b\xb1\x63\xf3\x03\xfc\xd4\x94\x41\x64\x55\x2d\x46\x7d\x43\xec\x75\xde\x3b\x98\xd8\x04\x95\xdf\xc1\xa3\x26\x98\x5a\xe7\xc2\x9e\x4d\x63\x78\x79\xff\xe3\x1d\x53\xa5\xee\x64\x16\x0a\x5e\xa9\x1d\xec\xa5\x4d\x07\x82\x97\xd2\x76\x83\xb3\x9c\xe5\xd6\x1f\x63\xf3\x40\xc3\x9b\xa8\xc2\xef\x41\xa0\x6a\x66\x62\x1c\xfc\xb6\x02\x55\x27\x73\xa3\x58\x94\x31\xdd\x12\xaa\xbd\x01\x2f\x74\xf1\x31\xac\xe3\x2d\x5b\x83\x52\xc0\x0e\xe2\x5c\x2c\xc1\xb9\x25\x95\xf1\xbe\x2a\xed\x43\xcd\x2f\x60\xd7\x02\x89\x8d\x03\x6f\xfe\x35\x50\x64\xdd\xae\x0c\xa8\x06\xae\x4d\x4b\x6b\x29\x04\xc9\x78\x48\xc8\x47\x64\x91\xda\x86\x25\x84\x1a\xd6\x8b\xc7\x6e\x90\x5b\x56\x77\xbc\xaf\x7e\xba\x39\x39\xd2\xc5\x4f\x6e\x6c\x67\xdf\x4f\x67\x99\xb1\x19\xcb\x98\xd0\x41\xe9\xbb\x2d\x5d\xb5\x5c\xb1\x6c\xc5\xd9\xdd\xa1\x2d\xe3\x36\xb8\xe3\x7a\x31\x40\x8e\x40\x1d\xc2\x31\x1d\x3e\x83\xff\xb4\x2d\xec\xe6\xf2\xf4\xf2\x88\x1c\xc7\x31\x91\x20\xa7\xe5\x0a\x68\x12\x60\xbc\x1a\x7a\x5a\xa9\x03\x50\x8a\x1c\x90\x9c\xc7\xff\xff\x00\x7d\xde\x16\x62\x45\xc6\x9e\xde\x50\xbb\x06\xb2\xb7\x2e\x25\xca\x05\x23\xd7\x78\x88\x32\x03\x79\xc0\xa0\xc8\xb2\x0f\x0e\xa0\xe6\xac\x85\x9f\x75\xbb\x98\x4a\x99\xb0\x26\xb2\x49\x0a\xe3\x5f\xcb\x26\xc0\xcd\xa9\x9d\xc9\x6b\x62\xe2\xda\x7f\x37\x57\xf2\x46\x3a\x9a\x81\x29\x47\x42\x0b\xa9\x61\x5e\xa8\x97\xa1\x66\xa5\xa4\x5e\x90\x48\x57\xc4\x3c\xb4\x32\x43\x58\x97\x55\x5a\xe5\xbf\xe2\x3a\xcb\x59\xf3\x2b\xde\x00\xd5\x34\x63\x33\x7e\x7f\xec\x57\xb0\xec\x64\x4e\xc7\x81\x3e\xa5\x7c\x09\xfe\xcd\xd0\xa2\x5a\x18\x33\xb4\xa3\x36\x3d\x0f\xe9\x2f\xe5\x06\x16\x54\xbe\xfd\xaa\xba\x0c\x8f\x52\x86\x31\xc4\xe5\xfa\x28\x5e\x7c\xa8\xbd\xf9\x30\x91\x37\xe2\x71\x48\x19\x15\xd8\x02\x38\x3e\x80\x4d\x1d\x78\xb9\x72\x64\xc7\xd6\x4e\x59\xb9\x8f\xf8\x11\x32\x70\xbb\x8e\x23\xb4\x32\x4f\xd3\x61\xfd\xef\x9d\xae\x83\x71\x40\xde\x52\xc8\xec\xa0\x7c\x36\xcd\xbc\x23\x05\xe6\xa1\x9b\xec\x19\x12\xa3\x86\xde\x2c\x28\x5b\xf7\x52\x4a\x10\x54\xa7\x77\xca\xe6\x2d\x22\x78\xbb\xb0\xda\x2e\x9b\xb7\x8b\xe0\xcd\x23\x77\xc9\xe6\x9d\x22\x78\xdb\xa2\x3b\x64\xf3\x4e\x09\xbc\xd7\xd8\xfd\x45\xf3\xe6\x2b\x8c\x9f\x3e\x2f\x57\x8b\x20\x49\x1e\x23\x96\x5b\xbf\x19\x6b\xc4\x1a\x8d\x3b\x29\xdf\x75\xbd\x03\x00\x03\x12\x64\x9b\xfb\x8b\xa5\xe1\xd0\x66\x80\xf7\xd8\xce\x10\xa4\x7d\xd6\xa9\xcc\x8d\x62\x63\x66\xc0\x40\x30\xf3\xe5\x0d\xeb\x77\x04\xbe\x1c\x05\x09\x30\x93\x86\x91\x17\x17\x51\xd4\x88\x02\x7f\x65\xb1\xae\x4c\x67\x93\xe4\xe8\x05\x5b\x3e\x9c\xe8\xd6\x61\x81\x65\xdc\x4a\x93\x8a\x17\x83\x60\x44\x3d\x43\x47\x5d\xd3\xf0\x39\x97\x20\xfc\x06\xc4\xf6\x9b\xa9\x76\xec\x09\x9f\xdd\xa3\xfd\xad\x3f\x12\x79\x3d\xc2\x58\x24\x33\x2f\x63\x49\x68\xcd\x76\x20\xe2\x46\x32\x67\x3b\xf4\x93\x2c\xd6\x1b\x14\xb9\x9a\xac\x44\x15\xd4\x16\x14\x8f\x0c\x56\x11\x61\x6b\x58\x9d\x45\x19\x29\x1c\x0f\xad\x98\x5d\xe8\xa3\x31\xa8\x5c\x5d\x27\x0a\x85\x4f\xd7\xdb\xff\xbf\x36\x12\x9d\x4b\x1a\xbf\xa3\x89\x91\x5f\xb7\xa0\x46\xb5\x5e\x8f\x44\x26\x7f\xb4\x46\x84\xb2\x85\x98\xfd\xb6\xc3\x91\x98\x37\x19\x80\xea\x78\xf7\x1b\x20\x59\x15\x48\x0f\x44\xb4\x1a\x6c\xfe\x25\x91\x2d\xdc\x6d\xf3\x5b\x2c\x75\xe6\x87\x9d\x2b\x2d\x33\x88\x54\xc0\xaf\x10\x07\x60\xf9\x34\x32\xd2\x31\x8b\x2f\x36\xbc\x57\xca\xec\x3c\xce\x1b\xc5\x7d\x13\x49\x11\x73\x0c\x28\x22\x7f\x05\xf7\x1e\x70\x88\x8b\x3f\x3b\x37\x12\xf8\xd6\x3a\xf0\x6c\xed\xf6\xf3\x0d\x3d\x7e\xa0\xc6\xed\xb7\x71\xf4\x19\x33\xa7\x39\xae\xf8\xf7\x98\xaf\x83\x6e\x3d\x5e\xb9\xdd\x8a\x37\x4f\x6a\xc7\xf9\xad\x9c\x78\x76\xde\x36\x3b\x6f\x1b\xff\x08\x76\xde\x36\xbf\xa6\xb7\x8d\x21\x17\x9b\x4e\x36\xce\xb9\xdb\xf3\x96\x73\x8d\x8b\xd3\x7b\x7a\x4f\x9b\x9b\x05\x2b\xa5\x4c\xa7\x7d\x35\xe4\x29\xf0\x60\x3e\xc6\x59\xe6\x96\xb1\xf4\x12\x6b\x92\x26\x17\xec\x5e\xff\x14\xc8\xce\x15\xb4\x57\x98\x7b\x6e\x3a\xc3\xc2\x6c\x55\xd3\x84\x08\x76\xaf\x17\x32\xb5\x36\x08\x34\x96\x82\x75\x34\xc8\x31\x7b\xf6\x35\x80\x29\x31\x40\x35\x38\x8e\x61\x0c\x85\xd3\xbc\xa7\x92\x42\x8d\x7a\x02\xf1\x0f\xa6\x4b\x68\x5c\x33\x8a\x2a\x94\x82\xb9\xcd\xcd\x3d\xd9\x33\x8b\x23\x66\x75\x66\xdd\x7f\x34\xc2\xbc\x50\x9a\xd1\xd8\x80\xd7\xfb\x55\xb1\x64\xf6\xc7\xc9\xde\x73\x6b\x2a\x79\x11\x9a\xc2\x5a\x1a\x0a\xc7\xff\x69\x46\x45\xb4\x70\xe7\x74\x61\xa6\x96\xc2\x46\x84\x0c\xa3\xd9\x3c\xe8\xe6\xd0\xaa\x5f\x5c\x76\x99\x07\xb7\x34\x0e\x5a\x43\x9d\x27\x1f\x07\x79\xa3\x87\x1a\x00\x6b\xb6\xbe\xf0\xd8\x1d\xe6\xbf\x26\x08\x35\x1b\xda\xfa\xdc\xa2\x22\x6f\x7c\x91\xb5\xdc\x11\x60\xab\x1f\xb0\x25\x6a\xac\xa5\xb0\xc9\x1b\x80\x2b\xa2\x69\x36\x67\xda\xd5\xcd\xe1\x0a\xef\x23\x19\x95\x35\x23\x01\x08\x4c\xe3\xbb\x26\x64\x25\x22\xbd\x61\xd0\xaa\x7d\xd4\x46\xa1\x80\x25\xd0\x10\x18\xe5\x6c\x5d\x2e\x30\xdb\x61\x5e\x59\x65\x7a\x5b\x98\x05\x22\xe4\x83\xb0\x2b\xea\xdd\x3a\xbd\x2e\xce\x0f\xc6\x3f\xcb\x05\x40\xc6\x84\x02\x12\x5c\xcc\x5b\xac\xc1\x0e\x44\x00\x9e\xe2\x92\x20\x9d\x70\xde\x42\x6c\x99\xea\x90\x81\xab\x75\x4b\xf9\xf2\x18\x45\x8f\x73\x19\xd1\xc4\x39\x28\x76\xca\x80\x1f\xd1\x63\xc1\xb9\x2d\xca\x19\xc1\xec\x29\x85\x27\xa3\xdd\xaa\xd3\x30\xdd\x81\xda\xb5\x09\xaf\x8f\xaf\x21\x3f\x88\x0d\x67\x8f\x18\x5f\x31\x57\x49\xc3\x5a\xb5\x31\xf5\x0a\x1e\x6d\x22\x65\x6a\x78\x4c\xfb\x00\x06\x69\xa3\x28\x62\xb7\x9c\xec\xe7\xf2\x9f\xd3\xa9\x92\x49\xae\x59\xb2\xb6\xd5\x9d\x14\xdd\xc8\xc7\x45\x1e\xf9\x2c\xa4\xcd\xd6\xeb\x9e\xb6\x6b\xf7\x5e\x71\x31\x57\x64\xce\x04\xcb\xa8\x77\x75\x42\x5b\xee\x78\x54\x49\xb7\x60\xd8\xc3\x96\xfc\xcd\x2c\xc9\x3d\xec\xc8\xed\x56\xe4\x6f\x64\x43\xde\xca\x82\xdc\x47\xa7\xdc\x61\x3d\xfe\xb7\xb1\x1d\xf7\x81\x55\x0f\xbb\xf1\xb7\xb1\x1a\x77\xda\x8c\x7b\x58\x8c\x3b\xec\xc5\x2d\xb6\xe2\x3e\x1a\x96\xf0\xaf\x86\x62\x8c\xc6\x7d\x9e\xf5\xd2\x73\xda\xe7\x8e\xc9\x4c\x5a\x5a\x3d\x5d\x83\xf8\xea\xe8\x53\x2a\xb3\xb0\x93\x1f\x92\x7f\x2d\xb1\xbb\xc1\x2c\x78\xd1\xc1\x57\x4e\x14\xbe\xee\xe0\x53\x7b\xe0\xec\x65\xa5\x65\x71\xb2\xf7\xd7\x49\xfe\xf2\xe5\x9b\x68\x34\x5e\xbd\x85\x7f\xb1\xbf\x1d\xc1\x5c\x41\x3f\x51\x30\xaf\x15\x1d\xbe\xc3\x0e\x47\xf8\x05\xf4\x82\x2f\xd0\x8e\x05\x35\x05\x60\x2d\x95\x4d\x78\x8b\x72\xdc\x46\xd3\xfb\x51\xbc\xcc\x00\x2c\x11\x93\xc2\x7b\x7f\xca\x12\x69\xe8\x32\x30\xde\x56\x25\x04\xb4\xce\xec\xdf\xf3\x1c\x0c\x13\x59\x20\x8f\x75\x07\x22\xcb\xbe\xdc\x31\xcb\x70\x53\x8d\xcb\xb5\x90\xdd\xf2\x55\x37\x5d\x1e\xcc\xa8\x98\xa7\x56\x17\xfc\x4a\xe5\x64\x91\x57\x6d\x7a\x81\x7c\xf6\x64\x0c\x98\x58\x05\x1b\xd2\x8a\x1a\xbb\x82\x6e\xca\xd5\x5a\x59\xd5\x8d\x18\x7e\x73\xca\xf4\x1d\x63\xc2\x3a\x22\x1a\x46\x03\xe0\x8d\x29\xc2\xad\x38\xe3\xaf\x1b\x32\x7a\x16\x5c\x78\xf8\x84\x6d\xd5\x09\x3b\x03\x9f\x91\xa9\xd4\x0b\xc2\x44\xac\x90\x33\x33\x1c\xd6\xbb\x0f\x63\x08\x20\x30\x4d\x5d\xf0\x40\x3b\x9b\x6e\x96\x84\x63\xbf\xed\x3f\xf6\xdb\x8d\xb1\x87\xc4\x5c\xd3\xd0\x04\x76\x9b\x65\xc8\x48\x24\xc1\x7b\xdf\xa9\x30\x3c\x30\xec\xab\xca\x44\xee\x20\x82\xeb\xb6\x87\x3f\x4f\xe4\x94\x26\x65\x6e\xf1\x99\x2d\x9a\x57\x5c\x97\x2d\x31\x31\x33\x27\x4b\xa7\x09\x7b\x17\x7a\xbc\x2b\x88\x68\xde\x16\x2a\x08\xbb\xa7\x91\xb6\x65\x2b\x0f\xdf\xbc\x3e\x00\xa5\x3f\x8f\x90\x1d\x24\x5a\xde\xd1\x2c\x2e\xae\x65\x98\xa5\x94\x59\x6c\x89\x12\x32\x89\xb6\xef\x2c\xc1\xf8\xd2\x21\xb9\x2a\x57\x55\xd5\x56\xb4\x44\x93\x58\x32\x39\xa7\x9a\xdd\xd1\xb5\xf3\x97\x30\xeb\x28\xb2\x03\xd2\x68\x01\xa4\x73\x4b\x18\x21\xbf\x66\x51\xa0\xf3\xba\x5a\x0c\x29\x7d\x78\x0c\xc6\x2d\xe4\xdd\x46\x0a\x09\x54\x8c\xb5\xec\xa8\x9b\xcf\xdc\x64\x2a\x0b\x67\xe6\x66\xf7\x88\xc9\xde\x27\xc5\x30\xc0\x66\xb2\x47\x96\x8c\x0a\x55\x5d\x5b\xc1\x1a\x1a\x02\x61\x75\x12\x95\xc5\x0e\xcd\x20\x17\x81\x6a\x01\xf8\xc1\x21\x0d\x3e\xb6\x6e\x79\xcb\x53\xd0\x3a\xb9\xb6\x79\xdf\x3b\x1f\xd0\x9b\x73\xd7\xd4\x3a\x44\x59\x21\x1f\xe0\x97\x80\xfa\xf5\xe6\xe6\xbc\xc8\x23\x4f\x96\x2c\x5a\x50\xc1\xd5\x32\xb4\x9d\xe7\x1f\x6e\xae\x3f\xbe\x28\x1d\x70\x34\x32\xd5\x73\x83\x94\x9a\xa8\x54\xca\x19\x8b\x49\x4a\x21\x55\xa3\x39\x19\xf0\xea\x87\x28\x1d\x2b\x2a\x05\x29\xa7\x6d\x0f\x4f\x12\x25\x6a\x49\x31\xbf\xcc\x02\xae\x58\x8a\x24\xd3\x2c\x12\x83\x5b\x80\x29\xc0\x6c\x15\x4e\x77\xdc\x24\xc6\x9b\xd3\x2b\xa4\xbe\x85\x4c\x15\x79\xce\xe2\x39\x53\x2f\x2a\x54\x1a\xcd\x15\x5b\xc9\x4d\x3b\x13\xd1\xa3\x4c\x44\x89\x8c\x6e\xe9\x0c\xdb\xb0\x6f\x62\x29\x32\x33\x1c\xe3\x0c\xeb\x0d\x7b\x91\xff\x63\xc0\x6a\x54\x5d\xdd\x86\xf1\xc8\xfb\x79\xbd\x33\x21\xd9\x55\xee\x4c\x48\x3b\x13\xd2\xbf\x91\x09\xc9\xa7\x20\x3d\x0d\x49\x9b\x14\xa9\xfc\x6c\x6f\x5d\x6a\xf0\x8b\x68\xe3\x1a\x62\x96\x30\xdd\xed\x8b\x7d\x8a\xcd\x2a\xd1\x74\x50\xe7\x9a\x2b\xa4\x7d\xc4\x11\x3f\x83\xb7\x53\x86\xe1\x71\xd0\x27\xa8\x6f\xf2\x22\x55\x7c\x3c\x9f\xa1\x03\x6b\x4a\x35\x87\x6c\x27\x6b\x7c\xfe\x65\x12\x03\x0f\x97\x30\xaa\x5a\x22\xf6\x96\x5c\x69\x7a\xcb\x44\xb2\x26\x3a\x63\x6e\x79\x38\x0b\x2d\x67\x79\x1a\x43\x43\x2b\x43\xac\xcb\x74\xbd\xfd\xfa\x34\x28\x5b\x06\x70\xa4\xf5\xef\x2c\x60\xeb\x5f\x87\x52\x49\xc2\x4a\x76\x5c\xca\x53\x70\x29\x9b\x59\x8b\xcb\x14\x7e\x83\x39\x13\x90\x13\x76\x9a\x73\x83\xab\x30\x81\x9b\xfe\x39\xd0\x30\xb0\x23\x42\x32\x45\x2e\xc5\x0d\x5f\x32\xa5\xe9\x32\x3d\x22\x22\x4f\x92\x49\x2d\xc3\x1d\xa8\x00\x00\xba\xdf\x84\x0f\x42\xc3\x97\x91\x70\xae\xbd\x44\x96\x25\x2b\x54\xff\x7d\x93\x1b\xda\x5c\x66\x9d\x21\xaa\xb7\xd8\xf1\x44\x76\x95\x3b\x9e\x68\xc7\x13\xfd\xfb\xf0\x44\x75\x52\xd2\x8f\x2d\x0a\x13\xa8\xf2\xf3\x00\xce\x28\xa1\x4a\xf5\xc8\x4e\x82\xcd\x48\xcc\xa2\x84\x3a\x7f\x13\x00\xa2\xb9\xb8\xe6\x9c\xb2\x65\x91\x61\x72\x29\x05\x6f\x30\xec\xa3\x66\x8a\x2b\x5f\xb9\x8e\xd7\x12\x6c\xc9\xe8\x57\x8c\x8a\x5f\xbe\x72\x6e\xc1\x06\x23\x65\xa6\x1b\xec\x49\x74\x2a\x73\x4d\x22\x96\x19\xd0\x19\x6c\x83\x38\xb8\xea\xaa\x7e\x9d\x1c\x04\x0f\xf6\xbc\xe0\x16\xa0\x41\xc7\x8b\x59\x18\x92\xd0\xc8\xba\x4d\x6f\xc7\x84\xe1\x8d\x1b\x57\x52\x30\x77\xac\xfa\xd3\x66\x97\x22\x79\x02\x7c\x49\xa8\xb6\x7a\xae\x2e\x14\x35\x9f\xd2\x4e\x54\xdc\x7e\xcc\xf2\x4f\x5e\xfa\x15\x3e\xeb\x43\x91\x8c\xcd\x32\xa6\x16\x41\xc6\xd9\xf9\x2d\xe0\x88\x6e\x59\x5c\x81\xf3\x77\x4c\x9f\xd6\x11\xa0\xf1\xd6\x97\x9c\x5f\x03\x24\x37\xee\x3d\xee\xcc\x7f\x40\xe5\x14\x39\x4c\xe4\x51\x0d\x26\xd7\x3b\x6d\xec\xe5\x42\xa2\x35\x1b\xaf\xa0\x60\x2c\x66\xe8\x6d\x60\x2f\x90\xe2\x06\x93\x38\xa8\xfb\x2d\xc8\xc9\x74\x6d\xc7\xdd\xc2\x49\x6f\xce\x44\x67\x7e\x8d\x63\xd3\x88\x2c\x64\x12\x2b\xec\xe0\x16\xe1\xe5\x7a\xda\xde\x85\x61\xca\xb3\xf8\xf3\x77\x7d\x9c\x17\xde\x8d\xae\x4e\x3f\x7f\xe7\xfb\xe2\x97\xfc\x41\x15\xb6\x39\x90\x09\x33\xf2\x77\x0f\x77\x5e\x48\xa8\xd2\xef\xa4\x6c\x4e\x56\x11\x58\xe2\xb9\xd7\xc7\x42\xaa\x48\x5b\x06\x1e\x37\xde\xef\xcd\x43\x12\x7c\x86\xd1\x95\x4e\x27\x44\xe6\x3a\xcd\x43\x66\x1c\xf7\xe9\x63\x99\x37\x53\x5f\xb1\x4a\x18\xed\xb6\x3b\x0b\x74\x6f\xda\xa4\x6b\xfa\x1b\x6c\x14\x2c\x47\xd9\xe8\xb4\xef\xce\xae\xa0\x3d\x19\x9d\x16\x99\xdc\x60\x3d\x8f\x5b\x44\x93\x3c\x1c\x5c\x01\xa4\x68\x76\x24\xc1\x25\xb6\x3b\xa5\x6c\x19\x7c\xdf\xb6\x59\xc6\x2a\xc8\xed\x37\x2e\xc4\x71\xfd\xde\x32\x62\x58\xc6\x63\x56\xd1\x15\x45\x0f\x04\xe0\x6d\x6f\x02\xf0\x76\x3b\x02\xf0\x76\x47\x00\xbc\xed\xec\x08\x40\x60\x67\x3b\x02\xf0\x5b\x12\x80\xb6\x5f\xa7\xf3\x4e\xdf\x7c\xb3\x44\x44\x41\xe0\x9b\xcd\x9f\x8d\xbc\x73\xc7\x9d\x47\x13\xe9\x99\xd2\x74\x9a\x70\xb5\x60\x3d\xd9\x12\x73\x78\x5a\x6a\x9a\x78\x36\x56\xf0\x53\x61\xe5\x48\x66\x27\x44\x31\x85\xfa\xb8\x36\x30\x35\xb8\xa7\x86\xd7\xd7\x8b\x6a\x36\xac\xef\xed\x37\x5a\xdf\x85\xd4\x4f\x07\x42\x21\xc5\xe0\x57\x59\xe6\xe3\x20\xf9\x2d\x96\x09\xd6\xf8\x7e\xe0\x1b\x63\x53\xff\x61\x04\xe8\x39\xa7\x7a\xd5\x8f\x51\x27\x9d\x39\x18\x1a\x04\x1e\xf0\x37\xa9\xaa\x38\x8a\x37\xb8\x58\x43\x33\x05\xe9\x5e\x55\xcf\xa4\x55\x8d\xbe\x94\x0d\x3b\x68\xf0\xa8\xbc\x5b\x48\xc5\x4a\x65\x3d\xb9\x63\x84\x86\x3d\xd2\xca\x4f\xa1\xc8\x78\x82\x6c\x55\x20\xd3\x6d\x91\x78\x89\x63\x14\x47\xf1\x84\x64\x24\x63\x54\x49\x01\xef\xb0\xad\xd0\xd1\xf6\x9c\xf5\x5e\x57\xc7\x93\x56\x5f\x17\xac\xc6\x2a\x13\x80\x2e\xe3\x8d\xc0\x71\x9e\x60\x3d\xd0\xaa\xf7\x72\x6e\xd6\x69\x30\xf1\x71\xe1\x32\x5a\x09\x02\x6a\x3f\xed\x15\xa7\x05\xca\x0e\xb4\x2d\x2e\xb8\x64\x6a\x71\x60\xa0\x6f\x7e\x65\xa2\x28\x53\xe3\x1c\xf4\xda\xd2\xbc\x10\x2c\x9d\x35\x70\x6f\x18\xdc\x28\xab\x32\x7f\x2c\xa0\xba\xf8\xef\xce\xa4\x29\x48\x89\x7a\x51\x48\xa4\x44\x6f\x6b\x94\xe8\xed\x8e\x12\x75\xec\x60\x47\x89\xb6\x5b\xd7\x8e\x12\xd9\xcf\xbf\x13\x25\x6a\x09\xcf\x18\x84\x98\xf7\x7e\xcd\xde\x36\x37\xab\xb3\xb2\xbd\x5b\x06\xc6\x6c\xdb\xbb\xb9\x1d\xa8\x88\xef\xf4\x4a\x39\x2f\x9b\xa2\x69\x50\x3b\xbb\xfa\xa6\x5d\x10\xf4\x21\x19\xb4\x08\x41\x1b\x62\x95\x37\x34\xf1\xd6\x54\x08\x17\xb6\xb4\xe0\x81\x7e\xb9\x98\xa0\x31\x30\xf0\xea\xfd\xc9\x9b\x37\x6f\x7e\x04\xfd\x3b\xa6\x81\x87\xf0\xcd\x4f\x37\x27\x2d\x4a\x7a\x33\xc7\x20\xbc\x48\x91\x27\xb6\xf0\x60\xe9\x92\xb1\x09\xd4\x06\x37\x76\x88\x45\xec\x82\x27\xc8\xfe\xce\x0e\xa5\x6c\x27\x02\xc6\x7a\x67\x80\xb6\xb6\x9b\x76\x59\xf8\x51\x2a\x70\x9c\xb5\x1f\xaf\x7f\x65\xdb\x6e\x30\xfb\x76\xe9\xdf\xe8\x61\x85\x69\xdb\x5e\xd6\xe6\xa0\xf7\x3e\x00\xea\x05\xa6\x62\x81\x9a\x0b\xd0\x3f\xf5\x27\xb9\xa7\x65\xa7\x22\x38\xcf\x2c\xf8\x09\x68\xbf\x8d\x2e\xe8\xbf\x96\x0f\x36\x1c\xc1\xf9\xf2\x7b\x1b\x7a\x82\xe5\x14\x69\xde\xb7\x60\x3e\x5c\x97\xd0\x92\x1e\xbf\xa2\x84\xd1\x4c\xb0\xf8\x7d\x26\x97\xfd\xd7\x74\x5e\x76\x2a\xb1\xce\xb7\x46\x67\x6c\x4e\xb3\xb8\x75\x62\x82\x44\x2e\xb3\x11\xdb\x18\x51\x62\x13\x37\x34\x79\xe9\xb9\x4f\x2f\x54\x24\xfd\x38\xbd\x8d\xcd\x8d\x66\x36\xee\x01\x39\x01\x55\xa6\x96\xc6\x42\x25\xe6\xcd\x3d\x20\x4d\xc9\xef\xfc\x4f\x8d\x69\x44\xcd\xa7\x8d\x58\x67\x42\x93\x5c\x79\x7b\x6f\xdd\x30\xe9\x7d\x9e\xa4\x88\x7f\xb9\xe9\x62\x7b\x36\x76\x0e\x1b\x76\x21\xbe\xe8\xaf\x82\x27\x44\xed\xf1\x70\xe5\xf0\xa5\x7b\xf3\x10\x12\xfc\x54\x7b\xea\xe6\x4d\xc8\x63\x19\x3d\xee\x1d\x52\xe9\x33\x0a\x3a\xe7\x06\x57\x00\x6f\xaf\x32\xbb\x43\x7c\x27\x90\xf2\xfe\x37\x67\xc6\x8a\x57\xab\x97\x5c\x68\x5f\xad\x4d\xc1\x70\xf7\x6a\xb5\x6c\x64\xf7\x6a\xb5\x2c\x68\xf7\x6a\x6d\x7e\x76\xaf\xd6\xee\xd5\x6a\x6a\xb5\x7b\xb5\x5a\xbb\xff\x4b\xc6\x08\xfc\xf6\x21\x8c\x36\x2b\x93\x47\xe3\xbe\x89\xfb\xbe\x4d\x07\x5d\xce\x82\xbf\x7a\x0e\xfc\x1b\x2d\x02\x2e\xfc\x9b\x6b\xb5\x27\x58\xfa\xf0\x6f\x34\x99\xfc\x5e\x2a\xdc\x6e\xee\xb0\x56\xe3\xd6\x66\xed\x2e\x32\xb4\x85\xbd\x64\x77\x91\x01\xbb\xc8\x00\xff\x08\x76\x91\x01\xbf\x5e\x64\xc0\xc6\x0d\x6e\x2b\x70\x8b\x5d\xa7\xa1\xb4\x07\x8d\xd9\xf0\xda\xc2\x01\x80\xc4\x86\xef\xf8\xe6\x4a\xfd\xc6\xce\x70\xb2\x2a\x7d\x83\xac\x4a\xd4\x06\x44\x16\xab\x09\x3d\xc8\x86\x08\xe4\x42\xb4\x78\xdc\x37\x14\x58\xc5\x21\x3f\x7c\x0a\xfa\x71\x85\xe0\x6a\x9a\xba\xb5\xc2\xbf\x2d\xc7\xd6\xb8\xb8\x1e\xd3\x37\xf0\x8a\xa1\xe9\x81\x6d\xb2\x87\xe6\x85\x51\x3c\x6a\x15\x06\xf9\xe0\xf9\xbf\x62\x34\xee\xcc\x71\x71\x5a\x69\xed\x92\x4c\x92\x38\x07\x12\xa1\xf8\x5c\x40\xd4\x89\xd0\xe5\xb8\x64\xc9\xe7\x95\x52\xef\xb5\xb5\x49\xe8\x46\x13\x5b\x5c\x35\x95\x02\x44\x77\x95\x47\x0b\x42\x15\x79\xcf\x12\x7e\x6f\xd3\xcd\x14\x49\xa2\xee\x28\x37\xb7\x7c\x26\x1b\xb2\xf8\x44\x11\x53\xca\x51\xa8\x62\x25\xdb\x66\x0b\x5d\xd1\x8c\xd3\x6e\x9f\xf5\xcf\xd8\xac\x0c\x6f\xc1\x58\x06\xdb\xdb\xc3\x65\xaf\x76\x0e\x44\xa8\x6c\x15\x7a\xf1\x2f\xc9\x3c\xfe\x6e\x78\xc8\x99\xc1\xa2\x8a\x63\xe9\xb7\xe0\x21\x01\x57\x2b\x09\xbc\xea\x3c\xe4\x66\x8b\x4d\x1e\x32\xb0\xd6\x3a\x0f\xb9\xd9\xe4\x77\xc3\x43\xe2\x7d\xad\x96\x41\xac\x32\x91\x95\x9f\x66\x32\xc3\x2e\x3b\xfe\x71\xc7\x3f\xee\xf8\xc7\xdf\x9a\x7f\xdc\xa4\x4f\x6d\xfc\xa3\xf9\x0b\xef\x7b\x5b\xe9\xbc\xb6\x98\xb0\x24\x91\x77\xa3\xf1\x68\x3c\xc6\xbc\x54\xef\x33\xb9\xfc\x22\xb3\xdb\x44\xd2\xee\xb8\xc2\xfd\xe3\xb6\xde\x2e\x8f\x40\xe9\xfc\x02\x2b\x0d\xb1\x0b\xb6\x96\x55\x4c\x28\xc9\xf2\x04\x52\x7e\xc7\x99\x4c\x89\x19\x9a\x30\x11\xd1\x54\xe5\x09\xb8\x43\xe8\x8c\xce\x8c\xdc\x8b\x35\xb5\xdc\x54\xa1\x31\xcb\x42\x88\x40\x7e\xb7\xae\x84\x08\x90\xf9\xfc\xf3\xf9\xf1\xc5\xc3\x41\xd3\xd8\xfd\x09\x60\x03\x63\xff\x66\xc0\xb9\x53\xd7\x59\x74\xaa\xf4\xc9\x82\x45\xb7\x9d\xc0\xb8\x66\xda\xea\x54\x07\x9e\xfe\x7e\x10\x99\xce\x44\x0a\x72\xfc\xe5\x9a\x9c\x9d\xbc\x2e\xa2\x66\xd5\x90\x1c\x5b\xce\x28\xb4\xfa\x55\xb5\x18\x3f\x96\x07\x9a\xec\x9d\xca\x0b\xa9\x17\xe6\x7a\x42\x71\x3c\x2c\xac\xe9\xaa\xff\x9d\x62\x54\xea\x64\xcf\x2b\x91\x19\x1a\xbb\x18\x24\x04\x13\x26\xf2\x90\xa1\x60\x50\xf6\x0a\xfd\x68\x17\x12\xea\x66\x17\xb5\x95\xbc\x30\x4d\x67\x27\x52\x08\x16\x41\x7c\x51\x59\x83\x88\x8b\x79\xdf\x0a\xa4\xef\xc6\xef\x3b\x86\x40\xc7\x21\x2e\xc8\xbb\xf1\x7b\xb2\x94\x71\xb8\x8a\x7f\x18\x8b\xf1\x18\x93\xa4\xe0\x36\xcc\x44\xe6\xbc\x35\x5f\x32\x62\x70\x92\x4c\x5d\x95\xa8\xc6\x74\x9a\xb6\x5b\xa0\x0f\x7a\x29\xa1\x97\x58\x61\x16\x5a\x48\xa5\x6d\x51\x7b\x08\x3e\xd6\x32\x34\x28\xa4\x82\xf4\x0b\x58\xd9\x42\x5b\x0a\xfd\x98\x34\xe1\xcb\x34\x83\x7c\xe6\x36\x36\x1a\x84\x78\x11\x01\x82\xa5\x32\x1e\x68\x39\x68\x2b\xe1\x57\x6c\x55\xe1\xc6\x30\xc9\xb9\x75\x8f\xf4\x42\xa3\x31\x94\xd7\xac\x3d\x66\xd3\x7c\x3e\x37\x4f\x71\x9a\x67\xa9\x54\x06\xf5\xdb\x11\xf4\x41\x65\x5d\xa7\xe9\xcc\x08\x8e\xa3\x19\x8d\xd8\x98\x6a\xc3\xfc\x74\xc6\xdc\x8c\xdf\xd7\xbb\x20\x37\x91\x31\xe0\x81\x09\xbb\x37\xec\x00\xb0\x79\x20\x1c\x3a\x64\x08\x12\x31\x10\xc8\x0a\x03\xa0\x13\x2a\x2d\x17\x47\xb5\x36\xe7\x62\x50\x2d\xcd\xe4\x3c\xa3\x4b\x60\xdf\xb8\x28\x32\x86\x06\xa1\x4d\x75\xb4\x28\x68\x9e\x96\x87\x05\xf3\x21\x98\x36\xd4\x6f\x68\xf3\x31\x09\xc6\x62\x18\x70\x89\x3d\x16\xcc\x5b\x49\x10\xc4\x66\x3b\xae\xcc\xa2\x25\xa3\x25\x71\x85\x44\x07\x72\xc5\xb2\x7a\x49\xc5\x1e\x83\x2e\xa8\x88\xcd\xf9\x8b\x48\x2e\x81\xff\x2a\x56\x0f\xe6\x67\xf4\x4f\xc3\xec\xb9\x16\x31\x61\x53\x32\xd7\x8a\x87\x8b\x00\xfb\x7a\x22\x42\x46\x85\x80\x6e\xb8\xa8\x72\xbf\xc5\x2e\xbc\x23\x78\x9e\xab\x9c\x26\x49\xd0\xec\x6f\xe4\x90\x18\x64\xc5\xe1\x70\xf8\x62\xcb\x0c\x05\x06\xd9\x10\xd1\x3f\x89\x34\xe3\x2b\x9e\xb0\x79\x3f\xa2\x14\xe8\x76\x40\xf8\xcc\x55\x37\x3e\x70\x68\xc3\x6c\x54\xe8\xad\xb9\xc7\xc9\x30\xf7\xda\x7f\x9d\xa6\xb3\xaf\xf6\x9e\x05\x1f\x0f\xb5\x56\x91\x4e\xfc\xdb\xe8\x77\x87\x34\xcf\x72\x66\x70\xd1\xa1\x0f\x13\x2a\x2f\xea\xc3\xfb\x6d\x43\xa3\xe7\xca\x70\xc5\x11\x72\xb1\xa8\x05\xb1\x98\xb4\xbf\xaf\x90\x98\xd2\x14\x8f\xd8\x36\xe2\x42\x19\x09\x46\x2f\x18\xcf\x88\xbc\x0b\x5a\xb5\x37\x6f\x86\x39\x45\x66\x4b\xe4\x95\x13\x3c\xba\xfc\xf3\x34\x9d\x6d\xf1\x86\x9c\xb9\x63\x29\x8f\xc8\x9e\x10\x30\x2d\xae\x44\x8d\x59\xbd\xe1\x90\xd3\x84\x8a\xb0\xa5\xf7\xb1\xec\x08\x2c\x7b\x26\xb3\x88\x5d\x8d\xdf\xf7\x5b\xb9\x6b\x4d\x18\xfe\x13\x70\x39\xd2\xc4\x7c\x25\x05\x54\x26\x81\x37\xa5\xfd\x52\x03\xf8\x2b\xa7\x83\xc6\xff\xc4\x5a\xbe\xef\x6c\x92\x66\xfb\x9c\x0c\xbc\xeb\x27\x33\xeb\xa9\x1d\x44\x52\xac\x15\x34\x24\x63\xa9\x14\x37\x48\x6a\x79\x7e\x9a\x31\xc7\x35\xc4\x07\xe4\x1a\xd7\x2c\x33\x72\x2e\xa5\x91\x8e\x5a\x5f\x0e\x6c\xdd\x0c\xdc\xc6\xdb\x7c\x76\xaf\x6f\xa4\xab\xef\x2a\x85\x58\xd2\xac\x9b\xe7\x33\x50\x0e\xf4\xab\xf0\x14\xee\xcd\x20\x94\xbc\x79\x3d\xe5\xe1\xec\x77\xa6\x93\x4b\x76\xad\x98\x26\xa8\xce\x70\x0f\x2d\x12\x48\x48\x9e\x6b\x45\x7a\x94\x36\x31\x09\x3c\xe4\x24\x0f\x03\x18\x56\x65\xab\x98\xc0\x1c\x36\x85\x4d\xee\xb2\x22\xc3\xc2\x16\xf2\xae\x48\xd9\x2b\x67\xc5\x43\x67\x67\x0f\xaa\x3e\x33\x6b\x47\x8f\xbd\xba\xba\x88\x4b\x2e\x23\xb4\xf5\x7a\x80\x14\xe4\x06\x21\xd2\xcc\xd5\xdf\xb9\x1a\xbf\x0f\x3e\x75\x86\x51\xf6\x2f\xf7\xcb\xe6\x53\x6c\x88\x36\xc4\x63\x04\x08\xd9\x13\xf9\xd8\x23\xdf\x8d\x3d\xc5\x7a\xb7\xe0\x21\x2a\xd8\x9b\x77\x34\xa1\x9d\xf8\xcf\x59\xc5\xa2\x09\x45\x40\xec\x9b\xf7\xdc\x16\x28\x71\x8f\xa1\x57\xab\x38\x58\xb6\xca\x80\xdc\x7a\x21\x18\x29\x48\xba\x5c\xeb\x85\x08\x64\x5e\xc6\x19\x20\x8f\x96\x64\xb2\x77\x93\x0b\xc1\x92\xc9\x1e\xe6\xf6\x9f\x4a\x1d\xcc\x71\x6f\xf5\x12\xb0\x82\x8c\xa9\x54\x0a\x43\xcf\xec\x83\x6d\xee\x34\x8c\x82\x13\xd6\x12\xbc\xc3\x7c\x0d\xf7\x1a\x97\x70\x7a\x7d\x65\xa4\x14\xec\x87\xf3\x84\x86\x9e\xe6\xda\xb6\xa9\xce\xdf\x60\x84\x01\xc7\x9a\x98\x67\x2c\xd2\xc9\x3a\x98\x7a\xde\xac\x4c\xb8\xf9\xed\xf9\x95\x4d\x82\xac\x00\x24\xf4\x4f\x53\x46\x33\xe5\x17\x1e\x1b\x8d\x9d\x02\x82\x63\xa5\x57\x68\xf9\x47\xa7\xd2\x03\xfe\x5c\x11\x1a\x1a\x32\x65\xd9\x92\x2b\xc5\x57\x8c\x9c\xbf\xf6\xb8\xb5\x12\xbf\xf1\x84\x1e\x40\xaa\x7e\x92\x4a\x1b\x52\xa3\x33\x1a\xdd\xbe\x5b\xa7\xb4\x3b\x73\xbb\xc1\xf1\x40\x37\x72\x52\x17\x6e\x8c\x78\x81\x3f\x9d\x73\x91\x07\x85\xf5\xc8\x8d\xe1\xdf\x10\xac\xe3\x5f\x88\xfe\x3e\x7b\x57\x7f\xb0\x43\x63\x0e\x2a\xb3\x96\x53\x3c\xe4\x95\x34\xa2\xcf\x38\x93\xf7\xeb\x33\xab\x9f\xbb\x4e\xcc\x32\x7a\xbe\xf9\xef\xc6\xef\xdb\x07\x08\xd3\x85\xb0\x40\xe0\x09\x8c\xfb\x8a\xb0\xe5\x94\xc5\xe6\xf6\xde\xe6\x53\x36\x48\xcd\x0c\xd6\x38\xa2\x48\x75\xaa\x66\x27\xa3\xde\x9b\x1f\xa5\x1a\x92\xc3\x9f\x98\x86\x79\xba\x05\xc7\xd3\x31\x44\x85\x13\x42\x58\x04\x9f\x34\x00\x8f\xc7\x29\xa5\x99\x44\x83\x54\xb2\x26\x91\x19\x91\xe4\x58\x81\x30\x4f\x95\xce\x18\x5d\xfa\x32\x6b\x09\xa1\xfd\xfd\x70\xbd\x0f\xbb\x36\x12\x2d\x28\x07\x51\xf4\xba\x5a\x72\xab\x58\xe1\xcc\x07\xb7\xad\x25\x61\x0d\xb9\xdf\x4a\x0c\x2d\x20\xf8\x91\x8b\xeb\xb5\x88\x30\x2b\xd9\x56\xb0\xaf\xf4\x3c\x68\x78\x8b\x74\x58\xad\xb0\xe4\x02\xf2\x8c\x81\x5a\xc1\xe5\xc5\x47\x55\x73\x61\x32\x28\x78\xd5\xd2\x36\xb2\xef\xa1\x68\x68\xd8\x12\x8c\x43\x42\xce\xe5\x1d\xcb\x1c\xc3\x36\x37\x54\x2e\x63\x71\x1e\x31\x73\xed\xf5\x20\x4f\xc1\x26\x21\x22\xd3\xf4\x27\x3e\x5f\x14\x6d\xc3\x8f\x90\xe9\xe9\x6c\x3a\xe3\x4f\x24\x57\x74\xce\x20\x7d\x89\x11\xee\xc0\x4b\x2f\x25\x4b\x99\xe1\x6b\x57\x21\xa2\xaf\xd4\x03\x08\xe8\xf9\x9b\x2d\x95\x04\xd5\x0e\xed\x2a\x02\x64\xb1\x82\xe8\x24\xc1\x46\x67\x5f\x3e\x12\x33\xe4\x04\x12\x7e\x6b\x64\x1c\x33\x1e\xcd\x62\x88\x76\xbc\x4f\xa8\x20\xcf\xf9\x90\x0d\x0f\xc8\xf9\x1b\xd7\xb2\xa9\x9c\x25\x8d\x6d\x54\xad\x96\x21\x8d\x86\xe1\xff\x80\xb3\x3c\x70\x33\x7b\x1c\xba\x90\x41\x86\x14\x92\xdd\xfa\x19\xd8\x0e\xb6\x55\x18\x04\x79\x98\xba\x0e\x61\x3b\x85\x41\x0b\x8f\xab\x1a\x99\xae\xed\xe5\xfa\x73\x39\x3f\x67\x2b\x16\xaa\xfc\xb5\x71\x5f\x5d\xdb\xca\x9d\x24\x89\x9c\x93\x04\xbe\x76\xe9\x67\x3c\xe9\xa9\xe1\xa5\x28\x14\x91\xe5\xcd\x5c\x22\x2f\x73\xe9\x74\xbf\x97\xb3\x19\x6a\x7d\x47\x62\x26\xcd\xbf\x50\xe9\xcb\xa6\xf9\x7c\xb2\xd7\xac\x65\x4c\xe4\x1c\x65\x2a\xb6\xe4\x5a\x97\xbc\x9c\x99\xcc\x3c\xb2\x8c\xa4\x3c\x65\x07\xce\x9f\xc1\x08\x62\x20\xf2\xa1\x62\x73\xb9\x6c\x80\xfc\x64\x4f\x47\x84\xdd\xb3\xc8\xc0\x0c\x75\x7c\x15\xc5\x33\xb9\x9c\xcd\xfe\x36\xdc\xfe\x72\x7e\xa4\xe9\x35\xff\x3b\x2b\x38\x95\x3e\xc7\x50\xef\x53\x6a\x4f\x14\xff\x7b\xe9\x57\x5f\xb0\x15\x61\x19\x2c\x75\xda\x90\x25\x4d\x0b\xcd\x7b\x42\xb3\xb9\x79\x4d\x64\x3e\x5f\x18\xc8\x2d\x64\x82\xa5\x82\x84\xce\x30\x88\x00\xf4\xad\xf8\xb4\xb5\x2b\x4c\x87\x84\x7c\xa1\x99\x79\x78\x8e\x30\x84\xbc\x88\x6f\x35\x8b\x74\xee\x35\xc5\x1e\xcc\x2a\xa2\x70\x85\xb7\x88\x1a\x0e\x35\xe6\x2a\xcb\x01\x0a\xcd\x60\x6e\x96\x94\x2c\xcc\x46\xe3\x6b\xa6\x3b\xf9\xc7\x12\xc6\xd8\x3e\x00\x60\x9e\xc2\x77\x0e\x8c\xac\xc1\x81\xde\x35\xda\x16\xc0\xce\xd8\x1a\x3e\x3a\x6d\xab\x1f\x11\xb6\x62\xd9\xda\xa6\x67\x35\x8b\x12\x9e\xaf\xfb\xa1\x67\x97\xb1\x7d\x20\xaa\xd7\x32\xe7\x41\x2e\x5e\x26\x1c\x1e\x31\x57\xa9\xac\x74\x19\x9a\xec\xd1\x24\x79\xfe\x62\xb2\x07\x35\x98\x32\xa6\xa0\x66\x95\xb0\xfb\x71\x85\x48\x65\x50\x44\x32\x7b\xe3\x46\x08\x94\x82\xd9\x8d\xa6\x2c\x2b\x0d\xca\xdc\xa9\x9b\xa9\x62\xcd\x9a\xc9\xee\xb3\x9d\x5d\x37\xe4\x17\x68\x3a\x5c\xec\x10\x3a\xdd\x19\x66\x42\x28\x8e\x37\xf8\x16\x95\x8d\xb6\x3d\x5e\x7c\xe2\x42\x83\x3e\x07\xb5\xc2\xff\x2e\x85\x8b\x17\xa0\xbb\x02\x6d\xc3\xc3\x41\x73\x71\x7c\xe3\x6a\x37\x04\xc0\xd3\x7f\x90\x77\x34\xba\x65\x1b\x4e\x0a\x2d\x20\x2e\xfb\x04\xa0\x2c\xa8\x26\x53\x73\xf7\x19\xf8\x6a\xa4\xcd\xf5\x17\xac\xbe\xad\x9e\xc4\xc9\x61\x90\x2b\x5d\x6b\x88\x99\x54\x46\x50\x06\xf6\x49\x2f\xc2\xf4\xa4\x4e\x84\xca\x01\x0b\x21\xee\x31\x40\x7a\x9f\x49\xa1\xb7\x85\x92\xeb\xd4\x00\xa6\x99\xf9\xd9\xec\xb7\x91\x96\xbb\x01\x3e\xd2\xd4\x73\x8a\xeb\x87\x8f\x4d\x4a\x02\xc3\x8b\x1c\x94\x6a\x38\x5b\x65\x10\x30\x18\x4a\x26\x72\x81\x7f\x38\xd5\xdb\x83\xa1\x06\x01\x7f\xfd\xe1\x85\xf1\x81\xe1\x57\xcf\x46\x26\xb6\xde\xdc\xb2\x4d\x17\xa8\xaa\x14\xcb\x5d\xca\x20\xb7\x27\x62\x73\x4d\xa9\x88\x67\x79\x82\xc8\x89\x54\xcf\x74\x84\x4b\xfd\xbc\x1c\x3b\x02\xde\x91\x6b\x45\xe4\x9d\x20\xa3\x71\x23\xc3\x67\x59\xd8\xd1\x58\x3d\x84\x30\x8e\xaf\x2f\x8e\x6f\xc6\x86\xa1\x0c\xc0\x96\x8a\xf5\x65\xa8\xf8\xf0\xa0\x2b\xc7\xd9\xa0\x23\xe2\x67\x83\x5f\x29\x97\x51\x9e\x59\x46\xc5\x9c\x59\xb7\x06\xb0\x24\xde\xc1\x77\xb1\x5c\x86\xcd\x57\x29\x8f\x6e\x09\xb5\x68\x07\xd7\x36\x63\xd6\x15\x0a\xbd\x9c\xe0\x97\x48\x26\x09\x57\xc0\x7c\x00\x41\x28\x4e\xb7\x49\xd3\x6f\x5f\x4c\x96\x2e\xd8\x92\x65\x34\xb1\xeb\xa2\x2e\x01\x34\xaa\x70\xdf\x9f\x90\xb7\x2f\xbf\x7f\x4b\x9e\xbf\x7a\xf9\xfa\xbb\xff\xf7\xff\xfe\x7f\xde\x7e\xff\xfd\x9b\xef\x5f\x34\x9d\x59\x0a\xf5\x83\xe9\x34\x59\x57\x38\xf4\xfa\x24\xaa\x48\x5b\x69\xd8\x4e\x29\x88\x4c\x59\x46\x9b\x92\xaa\xab\xb5\xd2\x6c\xa9\x86\x56\x65\x94\x2b\xa6\xc8\x9b\xd7\x7f\x78\xfb\x83\x59\xce\xcb\x1f\x7f\xfc\xf1\xc0\xc0\x31\x61\x58\x33\xb8\xa0\x83\x85\x6a\xef\xf8\xe2\x38\x34\xac\xdb\x25\x6e\xfb\xbb\x1f\x5f\x7d\xff\xda\xed\xcf\xa5\x0f\x11\x52\xdb\xf2\xdd\x34\xe3\xc9\xda\x1c\x42\x26\xa7\x09\x5b\xe2\x39\x84\x0b\x94\xe2\x78\x06\xcb\x13\x9a\xaa\x92\xc3\x2e\xf6\x58\x6e\xe8\x5d\x51\xaf\xd3\xc5\x15\x9a\xbe\x4d\x4a\x61\x2e\x8c\xa4\xc3\x57\xbe\x65\x84\xbc\x7e\xf9\xf2\xe5\xcb\xa3\xd7\x3f\xfe\xf8\xe3\x8f\x21\xf9\x38\xb5\x92\x2f\xf9\xaf\xe1\xff\xda\xfc\xf5\x7e\x50\x96\x74\x1e\x70\xa1\x07\x32\x1b\x20\x6a\x87\x15\x78\xe6\x5e\x01\x9f\x04\xa2\x48\x7f\x3d\xdb\x66\x27\x14\x84\xcc\x1c\x4e\x75\x94\xb1\x48\x66\xb1\x41\x3e\x4d\x79\x83\xb5\xd3\x8f\x4b\xc5\x54\xfb\x85\xcc\x05\x33\x14\xa2\xd7\x81\xbd\x59\xb6\x68\x26\xbb\xa7\xcb\xa6\x52\xcb\xa5\x04\x04\x12\xef\xc0\xc8\x38\x56\x18\x1a\x24\x5c\x98\x97\x57\x26\xdb\xea\xe7\x40\x57\x35\x02\x5b\x68\x2f\xc3\xc4\x49\xb5\x7d\x93\x2b\xca\x42\xca\x5b\xdf\x56\xdc\xa0\x32\xd3\x32\x1d\xa0\x54\x5a\x53\x9e\x41\x5d\x47\x98\xc5\xa0\xa1\x75\xc1\xb2\x01\x11\x5a\xa6\x16\x0b\xc3\x36\x1b\x0a\x0e\x0c\x50\xb2\x39\x4d\x99\x88\x37\x47\x98\x4a\xad\xe5\x72\xe8\x6c\xc0\x96\x71\x51\x74\xc6\x5c\xa5\xd7\xe0\xed\x76\xe9\xe0\x6d\x19\x55\xdf\xc2\x6c\x46\xb7\x02\x3f\xc6\x70\xa2\xee\x18\xfc\x28\x67\x64\x2d\x73\xa2\xee\xb8\x0e\x3f\xe2\x5a\xda\x85\x5a\x5d\xda\x94\x11\x85\x75\x41\xed\x72\xb1\xc2\x38\x4e\x61\x69\xa1\x85\x12\x06\x10\x04\xaf\x21\x28\x71\xc1\x87\x66\xba\x26\x33\x9a\x24\x28\xd9\x65\xee\x75\xf3\xb2\xef\xc0\xc8\x07\x38\xcd\x1d\x47\x62\x14\x1a\xd3\x36\xb7\x18\x0c\x1a\xd4\x29\xf3\x76\x5a\xde\x75\x04\xec\xb6\x6a\xb0\x42\xcd\x70\x9a\xf1\x15\xeb\xac\xd4\x7c\x5a\x6d\x4e\x66\x3c\x61\xc2\xab\x10\x5f\xb0\x44\xa5\xfa\x22\x86\x96\x0d\x87\x90\x2b\x54\x6d\x20\x45\x06\x35\xed\x27\xc5\x46\xd6\x65\xb9\x3e\x9b\xb5\x8a\x6a\x89\xb6\xf3\x2d\x75\x3a\xc5\x92\xbe\x18\x99\x2f\x96\x90\xca\x59\xe6\x9d\x21\x17\x93\xbd\xd3\x86\x9e\x0e\x8b\x33\x46\x63\x2e\x98\x52\x87\x09\x5f\x31\xf3\x0f\x50\xba\xca\x3c\x88\xd3\x2e\xd4\xb8\x30\x08\x3c\x77\x2e\xda\x2f\x36\xc0\x36\x24\x23\x11\x65\x8c\x2a\x1b\x3d\xdf\x5c\x15\x15\x31\x9e\xdd\xa7\x2c\xe3\xcc\xa0\xa0\x4a\xf3\x8c\xcb\x5c\x41\x32\xd7\x0c\x22\x68\xc0\x9c\x20\x06\x66\x91\xc4\x5e\x27\xa0\xb4\x8d\x0e\x99\x5c\x91\x5c\xc4\x86\x4f\x63\x74\xb5\x06\xdf\xb4\x21\x39\x65\xc5\x8a\x5c\x8e\x6c\x2d\xc9\x9c\x69\x8c\x14\x40\xa3\x24\x16\x3a\xb7\x93\x85\x86\xb6\x6b\xc1\x85\x81\x54\xf2\xdf\x39\x8f\x6e\x93\xb5\x8f\xd3\x3f\xbe\x54\x7f\x23\x93\x89\x20\xa7\x2c\xcd\x58\x04\x09\xc5\xcc\xe0\x09\x8d\xc2\xf4\x1a\x8a\x06\xdb\x2a\xb8\x3c\x22\x3f\x31\x9a\xe8\x85\x3d\xad\xcb\x15\xcb\x32\x1e\x1b\x21\x26\x50\xd3\xb7\xbd\xc2\xde\x34\x9f\x5b\x57\x84\x73\x39\x3f\xcd\x24\x14\x71\x6e\x94\x18\x1b\xe8\x3e\x0c\xf3\x91\x2d\x65\xb6\x1e\x67\xd2\x5c\x9d\x31\xd5\x8b\xc6\x51\x5a\xd6\x72\xcd\x97\xe0\x07\x7b\x42\x93\xe8\x43\x46\xd3\xc5\x4f\x54\xcc\x8f\x67\x3a\x78\x81\x7b\x8f\x56\xa0\xf9\xc3\x47\x83\x73\x73\x46\xac\x1b\xf9\x93\x54\xfa\x38\x6a\x48\x12\x52\x7d\xe4\x4e\x9b\xfb\xfa\x0f\x1e\xe8\x89\x0d\xe5\x56\x0d\xae\x72\x85\xd6\xd8\x34\x9d\x4b\xf7\x42\xd0\x52\x59\x5d\xfa\xeb\xcb\xd2\x5f\x81\x6b\xc5\x92\x19\x79\x4e\x67\x0d\x71\x7f\xf0\x0a\xda\xb1\x17\xdc\x32\xeb\xc5\x50\x0c\xcd\xc2\x48\xa6\x5f\x0c\xc9\xbb\x75\x51\xbf\x1c\x29\x78\x10\x59\x13\x19\x99\x17\x3b\xe4\xca\x5c\x8a\xf0\xa1\x65\x62\x45\xe5\xa0\x0c\x5f\x3c\xea\x93\xbd\xd3\xab\xcb\xf1\x64\x0f\x74\x92\x86\xf1\xb7\x8f\xe2\x1d\xb5\x1e\x23\x49\x22\xef\x88\x92\x4b\xc8\x6b\x49\x93\xa4\xcd\xe0\x0e\x6b\xf3\x01\x67\x56\x73\x80\xd4\x18\xd2\x3c\xd2\x8c\x2e\x99\x75\x6e\xb8\x3a\xbb\xf9\x74\x75\x61\x46\x3d\x3e\x39\x39\x1b\xdf\x0c\x0d\x4d\x0f\x8d\x6a\x1b\x5a\xda\x05\x55\xe9\xd7\x32\x07\xd7\xb0\xea\xd3\xeb\x6d\x6a\x74\x31\xfe\x74\x33\xd9\xc3\xd7\xf8\x8f\x2d\x4f\x26\xbc\x95\x8e\xdb\xd0\x8e\x5d\xa8\xf3\x33\x54\xe3\x48\x07\xe8\x20\x31\xd9\xc3\x35\x85\xab\x7e\x3b\xef\x18\x7b\x22\xb5\xc5\x10\x69\x79\x95\x05\x55\x10\x5c\x88\xf5\x36\xd3\x4c\xba\x00\xc1\x36\x31\x39\x8c\x4a\x00\x3a\x0b\x46\x78\x2f\x45\x11\x12\x47\x93\xc4\xd9\x8d\xdd\xc2\x1a\x4f\xce\xb3\xc8\x1b\xfc\x0e\xad\xa9\x69\x01\xa1\x31\x4b\x02\x6d\x48\xe1\xd6\x2c\x07\xe8\xf8\x40\x55\x31\xce\xa4\x96\x91\xec\xb4\xb1\x80\xcc\xea\x07\x58\x61\xf6\x8e\xd4\x76\x27\x34\xb6\xde\x30\x96\xc5\x5f\xb2\xb8\x45\x95\x88\x5a\x8e\x03\xf3\x58\xb8\x4b\x0a\x48\xec\xb8\xab\xab\x9b\xf1\xd5\xe5\xcd\xd7\x77\x97\x97\x37\xf8\x3e\x26\x6c\xa6\xc9\x34\xa1\xe2\x76\x5b\x5d\x83\xb7\xd7\xeb\x6d\x4a\xec\xfb\xca\x3d\xc8\x86\x58\xad\x2b\xef\x9c\x53\xa4\xf0\x76\x1c\x16\x63\xcd\xfc\x76\xc7\x15\xb2\xa4\x37\x4a\xde\x63\xd6\x17\xb7\xd3\x03\x92\x30\xba\x6a\x10\xba\x4b\x21\x03\x94\x36\x0b\x29\x2d\x3b\x50\x1b\xd1\xb0\x3a\xdb\x72\x69\x0d\x10\x1b\x8d\x57\xa1\xcc\x5c\x6d\x50\x7b\xfb\x6f\x04\x35\x64\x4e\x0a\xcb\xd7\x48\x40\x95\xad\xa6\x90\x95\x56\x36\xc5\x11\x82\x2b\x97\x78\xf9\x94\x25\xc1\xcc\x5a\x6d\x0b\xda\x18\xa4\x59\x1f\xd0\xbe\x18\x2b\x50\x5c\xc8\x98\x41\x15\xd3\x2e\x1c\x38\xf3\x3b\x9c\x8c\x4e\xaf\x4c\x27\x54\x88\x81\xd5\x5d\xce\x88\xf9\x76\x1f\xb4\x2a\x6e\xf4\x81\x61\x45\xad\x88\x0f\x05\x4f\xc3\xd6\x59\x1e\x2d\x20\x0a\xd0\xc5\x0f\xa2\x0e\xd2\xbd\xdf\xe0\xf2\x68\xde\x30\x78\x60\x0a\x8f\x39\xfb\x6b\x58\xd5\xe6\x82\xa2\x09\x58\x79\x8a\x9a\x7a\x21\x3d\xfb\x37\x28\x03\x38\xa3\x3c\x31\x12\xf8\x48\x4c\x65\x2e\x62\xc3\x71\x35\x29\x45\xab\xcc\xda\xfb\x86\x8e\x55\x38\x7f\x3a\x1d\x1f\xde\x9c\x8c\xd1\xbb\xb1\x49\x35\x6c\x0e\xc3\x3a\x00\x78\x5e\x42\xc8\x9c\x84\x5c\x01\x80\x0d\x2a\x98\xa3\xa0\x64\x21\x08\xcf\x32\xa6\x52\x5b\x9a\xd1\x25\xba\x62\x51\x9e\x71\xbd\x2e\x5e\x56\x47\x2d\x72\xc5\x66\x39\x5c\x49\xba\x92\x3c\xac\xc3\x8e\x22\x28\x80\x08\x6f\x6e\x94\x83\xc3\x32\x91\xb3\x99\xb5\x3f\x21\x3f\x66\x56\x9b\x65\x2c\xd2\xb5\x00\x45\xf2\x3e\x9c\x56\x6a\x4a\xa3\xdb\x41\xa5\x54\xf6\x81\x4b\x4e\x55\x3c\x6c\x56\xcd\x68\x73\xe0\x80\xd7\x95\x76\xc4\xa8\xc9\xb9\x64\xb2\xa7\xa3\x74\xb2\x07\x0c\x1f\x05\xf8\x86\x87\xf1\x00\xed\xb3\xa0\xc1\xfd\x63\x5c\x9e\xa1\x4e\x86\x20\xde\x94\x01\x05\x14\x98\x2c\xc0\x02\x04\x05\x1c\xf6\x41\xa1\x5f\x6d\x14\x58\x85\x14\xe0\x92\x5c\xa8\x7f\xac\x28\x69\x5d\x93\x95\x5a\xb8\x98\x02\x83\x25\xa7\x3f\x9d\x8c\x2b\x0e\x84\x51\x7a\xf4\xfa\x75\x30\x50\x2b\x8f\xd3\xa3\xb7\x3f\x1c\x40\x93\x57\x7f\xf8\x11\xff\xf1\xfa\x4d\xf9\xaf\x1f\x5e\xe2\xbf\xde\x7e\xf7\xdd\x1b\xfb\xaf\xb7\x6f\xdf\x16\xff\xfa\x43\x88\x9f\x69\xbe\x7c\xd5\x72\x01\xe6\xdc\xc6\x12\xf5\x5b\x91\x5c\x4e\xbd\x6c\x87\xee\x4c\x0f\x08\x5a\x8f\x1c\xf2\x37\xa4\x10\x1b\x17\xbc\x8d\x88\x51\x87\xef\x4c\xa9\xc5\x29\x06\x7b\x76\xa6\xcc\x13\x2c\xec\xe5\x46\x7a\x65\x2c\x33\x2b\xe9\xe8\xde\x52\x03\x86\x14\x50\x78\xf0\x12\x5a\x92\xa6\x13\x32\x80\xf5\x35\xfc\x62\x67\x6e\xa6\xa0\xed\x15\x9d\x5a\x29\xe8\x65\xae\x1f\x48\x42\x37\x7a\x3e\x31\x0d\x95\xb9\x9e\x4b\x9f\x86\x82\x40\xd0\x4d\x45\xb5\xdc\x51\xd1\x5f\x95\x8a\x4a\x8b\x08\x4f\x43\x46\x25\xa8\x48\x98\x8e\xe2\xfd\x7d\x28\x52\x22\x62\x9a\xc5\x36\xd0\x40\x4b\x1b\xe9\x05\x38\x13\x1a\x16\xd1\x28\x96\xe8\x1a\x08\xca\xbd\x28\xd7\x70\x58\xa8\x0a\xd0\x51\x5c\x89\x09\x34\x00\x30\xc7\x69\x08\x75\x93\xfd\xef\xf4\xe2\xba\x4e\xc3\xb7\x21\xd0\xc1\x83\xb2\x34\xfb\x00\xc8\xfe\xf7\x6f\xf0\xbf\x3b\x1a\xbe\xa3\xe1\xc1\x5f\xc3\x34\x9c\x51\x9d\x67\xec\x94\x69\x16\x15\x4a\xe2\x2e\xfa\xfd\x3e\xd4\xa9\x48\x51\xa5\x25\x98\x78\xe1\x3b\x3b\x3c\x89\xa1\x69\x43\x24\xd5\x94\x9a\x6e\x52\x10\x9a\x6b\x39\xc0\xa6\x2c\x26\x69\x42\x35\xd4\x9e\x88\x68\x4a\x81\xba\x71\x88\x9a\xfe\x5c\x46\xc8\x15\x98\x14\x36\x89\x12\x8a\xf6\x4a\xa2\x58\x4a\x33\x70\xe6\x85\xa7\x05\x68\xad\x90\x44\xa5\x34\x62\xea\x00\x8c\xa0\x69\xc2\xfe\x48\x26\x7b\xd7\x17\xc7\x37\xef\xf3\x24\x59\x5f\x81\xdb\xc1\x9f\xc0\x0e\xfb\xf1\xf8\xfa\xff\xf8\x5f\x82\x01\xe6\xe0\x8a\x41\x3e\xa6\xeb\x3c\x05\xc2\x72\x2e\xa3\xdb\x3f\x81\x0f\xea\x64\x0f\x2c\xc4\x41\x2d\x1a\xb8\xab\x62\x9e\xa0\x3d\x24\x9f\x18\x95\x68\xe8\x9c\x05\xd6\x01\x61\xcb\x54\x83\xc1\x42\x5a\x6f\x55\x2f\x28\xb0\x02\xa3\x2d\x05\x65\x3b\xc1\x07\xda\xa3\x96\xc6\x7b\xaf\xad\x7f\xb4\x18\x53\x60\x16\xe7\xe8\xb7\x66\xd1\x62\x90\x66\x6c\xc5\xd9\x5d\x8b\x4a\xd2\x4e\xae\x86\xc1\x03\x6c\x3e\xad\xa0\x34\xda\x7c\x80\x2d\x29\x0f\xbe\xc8\xec\x96\x66\xe6\x99\xf9\x93\x0b\x34\xfe\x79\xfd\x7f\xfd\xc9\x9e\x46\xab\x9f\x59\x6d\xf7\x6e\x2f\xd6\xdb\x3d\x63\xf0\x50\xcc\x0c\x8a\x98\x6b\x1a\xe7\x91\x4d\x10\x4d\xe3\x90\x12\xb1\xf5\x8c\x12\x09\xae\x10\xa3\x71\xf7\x11\x95\x4d\xcb\x12\x43\xa5\x61\x1c\xe3\x67\x6a\xe1\x27\xf3\x8c\x06\x9f\x67\x21\xc5\xe0\x32\x65\xe2\x5a\xd3\xe8\xb6\x58\x84\x57\xca\x0a\xae\xde\xf3\xa2\xc9\x20\x66\x19\x5f\xb1\xb8\x68\x1a\x1a\x14\x5c\x98\x0c\xce\x26\x77\x74\xad\x3c\xbd\xd3\x41\x2d\x7c\x16\x34\x90\x2e\x16\x36\xe0\xe2\xdf\x98\x8f\xc3\x2a\x56\x42\x3f\x9d\x36\xc6\x86\xb7\x81\xdf\x1a\xcf\x7e\x3e\x1d\xf7\x8d\x16\xfa\x50\xef\x61\x91\x44\x11\xfb\x0b\xf9\xf9\x74\x4c\x94\x74\x2e\xb6\x24\xa2\x59\x38\x59\x0b\x20\x53\x2c\xc5\xfe\xbe\x26\x0a\xa9\x0a\xf4\x95\xb3\x19\x28\xa9\xcd\x9d\x43\x5b\xf0\x52\xc6\x0c\xa2\xcf\x81\x47\xfa\xf9\x74\x8c\xac\x68\x83\x15\x13\xa2\x7d\x98\xb9\x5b\x4c\xc4\x2c\x2e\xfd\x0a\x0c\x8b\x03\xb3\xa5\x99\x5c\x19\x72\x3d\x65\x1a\x34\xe4\x65\x42\x8c\x86\x75\x8a\xc2\x2a\x31\x7c\x74\x50\xf7\x02\xec\x94\x0f\x54\x91\x61\x67\x23\x3f\x6c\xa9\xa3\xc3\x8e\xe3\x30\x37\xd0\xca\x07\x2c\x82\x76\xd5\x2e\x3c\x09\x5b\x63\x9d\xc4\x5f\xe4\xaa\x10\x34\x21\x77\xd6\xd0\xee\xec\xe8\x61\x45\xcf\x0c\xd2\x7a\xaf\x78\x9c\xd3\x84\xa8\x7c\xea\x65\x74\xc4\xfc\x28\xf6\x11\x8e\x99\x18\x92\xba\xa4\xd2\x90\xec\xdb\xe0\x27\x78\xaf\x00\x95\x74\x2f\x15\x49\xa5\xe2\xe0\xda\xbf\x47\xea\x36\x7e\xe5\x9c\xb4\x05\x91\x51\x94\x87\xb3\x86\x0a\x92\xd2\x4c\xf3\x28\x4f\x68\x96\xac\xcd\x81\x30\xa5\xcc\x32\x4a\xd3\x0c\xb8\x57\x43\xe0\x13\xd6\x4b\x53\x3a\xa3\x5c\xb0\x78\x48\x9a\x64\x9f\x52\x4c\xc4\xb8\x83\x2a\x0c\x0e\x88\x62\xac\x70\x32\x48\xe4\x7c\x3b\xad\x62\x37\x13\x4a\x5b\x8a\x6d\xf7\xa8\xa2\xdc\xe8\x7d\xd1\x6f\x84\x0e\x26\xd2\xac\x2e\xfc\x4b\x8b\x6b\xc6\x83\x79\xc8\x22\x96\xe9\xec\x3e\x4a\xf2\x1e\x3e\x5d\xa3\x5a\x07\x94\xfa\xe1\xf1\x1f\xd4\x58\x35\x40\xf3\xce\x74\x2b\x95\x2c\x33\xcc\x0e\x0a\xd6\xab\xa5\x14\x5c\x4b\x48\x8b\x37\x93\x59\x4d\xf4\x1f\x36\xb9\x02\x57\xc5\xc9\x4a\x62\x10\x9b\xf9\x68\x2e\xa4\xf9\xaa\x0c\xd7\xdc\xdf\x27\xa3\xf1\xe7\x6b\x12\xe7\xcb\x65\xd0\x57\xb5\xd8\x86\xf3\xc0\x73\x6c\x85\xbb\xf7\xc9\x9a\x4c\xd7\x95\x08\xc3\xaa\xd1\x3a\x34\xa8\xdb\xeb\x32\x4f\x34\x4f\x13\x2f\xe1\x0d\x26\xcd\x24\xb9\x42\x6f\x34\xf3\x1f\x97\x5d\x02\x23\xc1\x9b\x78\x2b\xfb\xf2\xa8\x40\x70\x9f\x02\x45\x44\xe8\x07\x58\x27\xc8\x77\x77\x19\x4d\x9b\xec\x3f\x08\x4e\x60\xde\xf6\xf7\x0f\xf7\xf7\x71\x38\xcb\xbc\x91\x05\xd8\x8e\x1c\xaf\xbb\xbf\x7f\xf8\x5f\x06\x16\x87\x07\x2b\xa6\x17\xaf\xf6\x03\xaf\x8a\xcd\x99\xe6\x60\x80\xda\xd8\x6a\x58\xdd\x94\xcd\xb9\x70\x33\x9a\xe1\xf6\xf7\xd1\x27\x3b\x51\xb2\xc9\xeb\xac\x04\xe1\xfe\xbe\x9d\xdb\x7f\xe4\xe0\x80\x78\xba\x52\x2d\xb9\x19\xc2\x17\xb7\x18\x78\x9c\xb1\x19\xbf\xef\x7f\x4d\xb0\xbd\x33\xee\x55\x8f\x18\x1c\x8b\x8b\xbc\xbd\x31\x13\xda\xf0\xd3\x61\x1b\xce\xa6\x7b\x05\xc4\xa8\x83\x2a\xc6\xb0\x5e\x39\x57\x0b\xb4\x31\x2f\x03\x9a\xb2\x56\x58\xa9\x21\xb9\x90\x1a\x1e\x4d\xc2\xc4\x8a\x67\x52\x2c\xe1\x2d\x92\xb6\x1c\x26\x15\x64\x6a\x78\xc1\x25\xd3\x34\x41\x0c\x94\x59\xb4\x60\x86\xd0\x6b\x19\xae\xe3\x5a\x30\xb5\xc8\x20\xd2\xd4\x90\xe5\x8c\x53\xcd\x92\x75\x15\x77\x64\x9e\xf9\xa1\xd3\xa0\x35\x97\xd1\x6d\x43\x16\x6b\xf3\xae\xdb\x7c\xaf\xd6\x8b\xc3\x9c\x75\x44\x13\xbe\xbf\xef\x67\x0a\x35\xa3\x96\x4c\xb1\xd7\x2d\x78\x6f\x9c\x13\xfb\xfe\xbe\xa6\xa9\x1b\xc8\xc7\x1c\x33\xc1\x83\x71\xe6\x8a\xcd\x32\xa6\x16\x80\x13\x2b\xda\xe9\x34\x30\x6a\xe8\xe7\x25\xa9\xe1\x12\x2c\x6f\x48\x8c\x1a\xbd\xe0\x32\xa6\x22\x2a\x14\x66\x58\xa9\xdc\x2f\x49\x56\x2c\xe3\xb3\xb5\x4d\x69\x84\xe5\x57\x41\x1b\x87\x7d\xac\x8b\x71\x90\xbe\x5a\xde\xdc\x10\x3c\xcb\xf6\x97\xa8\xbd\xc2\x0c\xd5\x2f\xb7\x14\x9c\x78\xca\x7b\x47\xf8\x8f\xc6\xa3\x82\x5b\x97\x05\x2f\x56\xf5\x28\x2e\x33\xcf\x22\x0e\x86\xf5\xcf\x98\xba\xb2\xbc\x92\xb2\x4c\x03\x33\x24\x97\x29\xfa\xaa\x94\xd9\xb5\x8d\xe0\x9e\x2d\xad\x27\x47\x98\x61\x2f\xb4\x21\xe8\x52\x8a\x37\xd3\x08\x62\xa9\x94\x49\x85\xdd\x16\x3c\x21\xcf\x73\xa1\x98\x7e\xb1\x35\xd3\x6d\xa0\xf5\xf1\xe6\x53\x2f\x48\x7d\xbc\xf9\xe4\xd0\xc6\xfc\x13\x32\xb8\x68\xb7\xc2\x4a\x20\xf7\x90\x5c\xb3\xb0\x27\xaf\x85\xa2\xd9\x8a\x19\xc3\x0b\x5e\xff\xee\xbb\xed\x93\xdc\x60\x9c\xe5\x96\x57\x62\x7f\x14\xea\xd5\x7a\x21\x48\xc6\x30\x79\x65\xd8\xfa\x90\x78\x6e\xe4\x18\xf5\x57\x55\x2e\x13\x21\x2d\xfd\xb3\x3e\x47\xe0\x1d\xe5\x5b\x02\x82\x08\x90\xc9\xdb\xa2\x98\x6b\xe1\xeb\x6d\x40\x0b\xce\x67\x2f\x2b\x09\x06\xdd\xf4\x19\xee\xaa\x23\x33\xd4\x8f\x2f\xb7\x4e\x15\xe0\x66\xe8\x19\xe4\x37\xaa\x36\x2f\x14\x3c\x2e\x57\xfb\xd4\x7e\x6f\xf8\x3a\xb7\x76\xf3\x8a\x07\x01\xc1\xd0\x1b\xa4\xa2\xe1\xe7\x8a\x1c\xe7\x5a\x6e\x4d\x1c\x70\xae\xf7\x3c\xd1\x2c\x83\x9c\xad\x8d\xae\x99\x7d\xc6\x39\x97\xd1\xed\xfb\x66\x1f\xd6\x3a\xde\x6d\x76\x72\x68\x67\xc8\xaa\x5f\x12\xce\x4d\x10\x82\x47\x22\xa3\x5b\x70\x3a\x1f\x92\xbf\x18\x76\x8b\xae\x21\xe5\x21\xfa\xd3\x40\x68\x0d\x3c\x93\xd6\x00\x54\xb4\x76\x2a\x80\x70\x95\x5f\xae\x3d\x0b\x49\xb1\x9a\xe7\x33\xef\x71\xf5\x5d\x14\x97\x34\x4d\x19\xa6\xd0\x14\x5a\x16\x49\x33\x1a\x5e\x6f\x6d\x64\xb8\xcc\x5c\x2a\x4a\x62\x3e\x9b\xb1\x8c\x09\x4d\x52\xaa\x17\x2f\x7c\x42\x76\x98\xe5\xe2\xf0\xde\xea\x13\xcc\xba\x1f\x8a\xa4\x06\xc2\xe3\x4c\x4e\xd9\x16\x34\xa1\xa1\x67\x11\x5d\xca\x97\xac\x6e\x5d\x0c\x32\x57\x58\x28\x01\x13\x8d\x50\xad\xd9\x32\x45\x49\x9c\x46\x20\xaa\x55\x5d\x39\xe1\x70\xf8\xcc\x26\x08\x6d\x48\x40\x41\x57\x94\x43\xc5\xe4\x61\x35\xd5\xc8\x92\xde\xba\x4c\x21\xe0\x3b\x6e\x93\x46\x19\x19\x18\x63\x87\xec\xe9\x37\xa8\x83\x22\x0c\x09\x65\xf1\x01\xa4\x9d\xca\x15\xc3\x61\x4e\xc6\x9f\xfc\x43\xf9\xfe\xe5\xf2\xc1\xc4\xc2\x40\xb3\x67\x80\x41\xe5\x04\x6a\xa1\x05\x21\xd8\x03\xa0\x43\x3b\x73\xa1\x9e\x15\x18\x43\x7e\x88\x97\x07\x1e\xc9\x04\xd3\x63\xee\x42\x0a\x0a\x95\x7b\x23\xff\x03\x42\x8d\x5a\xd0\xe0\x09\xc2\xf5\x42\x7f\xe4\x24\xa9\x92\x7a\x2b\x81\x84\xdf\x0d\x23\x7c\x98\x43\x74\x27\x35\x24\x5f\xcc\xc1\xd9\x94\x3c\x65\x76\x5d\x6e\xc4\x9a\xf2\x22\x1d\x34\x47\xd6\xb9\x3c\x5c\x66\x44\x73\x9d\x6c\x76\x30\x99\xad\x1d\x65\xf1\x32\xe7\x2e\x65\x6e\xeb\x7e\x5b\x67\x5e\x5b\x2c\x42\xc8\x70\xee\x51\x99\xb9\x16\x33\x97\x83\x1c\x17\x54\x49\x55\xa7\x0a\xb6\xee\xa1\x68\xf3\x91\x1a\x21\xf5\xf1\xd4\xf9\x23\xcd\x6e\x3f\x52\xd5\x9d\x36\x63\x54\xeb\xe0\x10\x6f\x69\xfe\xed\x6b\x16\x20\xf3\x81\x32\xc4\x32\xac\xe7\xbe\x41\xa4\x30\xe3\x90\xa9\x21\xa9\x50\x18\xd0\xe5\x63\x9a\x32\x48\x7c\x68\x7e\x21\x0b\x76\x4f\x63\x16\xf1\x65\x19\xb3\x6e\x10\x28\x88\x27\x9a\x24\x8c\x2a\x4d\x7e\xc0\x31\x15\xd3\x07\x60\xf3\xc6\x8c\x93\x10\xc5\x97\x50\xb5\x70\x1e\xf1\x6b\x8b\x81\x4b\xb7\x8a\x06\x65\x9c\x75\x03\x05\x8f\x06\x88\xb7\xac\x1c\xe3\xfd\x6c\xf6\x12\x3e\xa1\x53\x74\x65\xde\xb9\xd0\x6f\x5e\x6f\xcd\xb4\x21\xb0\x2f\x8e\x6f\x2e\xad\x5f\x46\x21\xa5\xe0\xbb\xfc\xc0\xe3\x1e\x4b\xa5\xbf\x64\x5c\x33\xf0\xf8\xdc\x9a\xf4\x87\xbb\xd7\xf9\x42\x70\x1d\x6f\xa4\x12\x86\xaf\x8b\xcd\xc9\x50\x72\x67\x86\xda\x4c\x31\x55\xd4\xd5\x89\x16\x2c\x46\x6f\x7c\xc8\x65\x99\x51\x30\x13\x85\x25\x01\xcc\x2f\xe7\x92\x23\x63\x7a\x48\xcc\xf3\x0b\x93\xdc\x51\x7c\xd9\xa3\x44\x4e\xa7\x2c\x43\x79\x8a\x8a\x0a\x1d\x6a\x36\x6b\x29\x2f\x59\x18\xe8\x6e\xcd\x83\xe4\x7a\xd3\x34\x4d\xb8\x63\x4d\x7c\x5c\x29\x8c\x06\x0d\xc2\x62\xca\x22\xbd\x49\x29\x87\x8f\x4a\x57\xe5\x86\xda\x9e\xe1\x0f\xf6\x7b\x80\x0c\x6c\xa5\x00\x97\x10\x11\x64\x7d\x1b\x9e\xe1\x1d\x71\x3b\xf3\xdf\x84\x37\x15\xcf\xa0\x6d\x98\xff\x96\xe4\x32\x85\x38\x80\x4a\x19\xed\x31\xd0\xf8\x4e\xba\x70\x3a\xf0\xe0\x06\xe6\x02\x54\x34\x0d\x2a\x31\x1b\x10\x8a\x83\x16\x52\xba\x02\xe7\x17\x50\x2b\x59\x83\x81\x19\x9b\xda\x60\x74\xeb\xec\x3d\xcd\xe7\x8d\x0f\xa1\xc1\xdf\x19\xbf\x47\xeb\xaf\x6d\xef\x0a\x93\x7d\x37\x7c\xf5\xaa\xd0\x80\x9a\xd7\x17\x35\x99\x2b\xf3\x3d\xe4\xd4\x85\xec\x5c\x41\xfd\xce\xda\x32\xc7\x2e\xd8\xa7\x08\xd4\xd1\xf2\x80\x50\xb2\xf0\x72\xb1\x61\xbc\x5e\x35\xf5\x5a\x68\x48\xc8\xc6\x56\x41\xe2\x87\x48\x52\xab\xb7\xd6\x59\xa0\x53\x8a\x1a\x17\x4d\x9b\x02\x9e\x9d\x91\xd1\x19\x0a\x1b\x2c\x3a\x10\x09\xf0\x9c\xcf\x5c\x3b\xa4\x11\xa8\x6b\x19\x40\x02\x25\x87\xbe\xcd\xa9\x24\x1a\x54\x08\xb7\xf9\x94\x5d\xc8\x98\x8d\x65\xa6\xaf\x20\x77\x41\xe7\x85\xfc\xf3\x46\x17\x48\xa8\xa1\x0a\x5d\x3f\x6c\xc5\x4f\x84\xd0\xb0\x2d\x9b\x5b\x84\x94\x09\x64\x87\xd5\x40\xda\x59\xa1\x6e\x31\xef\xb6\x97\xfd\xb0\xb1\x7e\x1d\x3c\x8d\x3c\x5d\x29\x9b\x73\x0c\xc1\x9c\x23\x23\xc7\x14\x73\xcb\x02\x84\x42\x1b\x45\x99\xed\xb7\x2d\xb8\xc9\x7a\xc6\xf9\xd8\xf3\x06\x52\x13\xbc\x79\xfd\x87\xb7\x7f\x08\xa6\x07\x6b\x36\x4c\x35\xe5\xe7\xe8\x91\xa1\xa3\x3b\x47\x47\x57\x52\x84\xed\xd3\x22\xb4\xda\x8d\x12\x39\x87\xc4\x07\xef\x6d\x1c\xf5\x15\x9b\xb3\x4e\xad\xf8\x79\xa8\x93\x7f\x49\x0c\x25\xb7\x31\x0a\x11\x24\x65\xe5\x0d\xe2\xb4\x0b\x57\xe0\x19\x81\x11\x21\x65\x9d\xcc\x75\x6a\x04\x10\x01\x36\x85\xd8\x11\x79\x30\x20\x22\x86\x41\x2a\xb9\x26\x2f\x47\x98\xcc\xba\xa7\x80\xfd\x05\x5e\x82\x32\x3f\xff\x9c\xaf\x98\x08\xa5\x4d\x2c\xb2\x58\xc4\x60\xf3\x6c\xb0\x4b\xcd\x80\x4d\xc2\x27\x1b\x5e\x68\xc4\x47\xbb\x7c\xc8\x6b\xd0\x60\xea\x6c\x3b\xf8\x44\xce\x7b\xeb\x32\xce\xcb\xb6\xee\x19\x9d\xe5\x49\x02\x32\xbd\x63\x7a\xf0\xe6\x24\x72\xee\x9e\xad\xd0\x56\x80\x8f\xf5\x1e\x33\x10\xa5\x12\x09\x35\x32\x2a\xba\x81\x15\xcd\x0e\x13\x39\x3f\xf4\x25\x90\x61\x22\x83\x75\x5b\x3a\x76\xd9\xd3\xee\x72\xee\x5a\x96\x4a\x9a\x79\xc5\xcc\xe2\x91\x06\x10\xb8\x33\x23\x4e\x37\x5d\xa9\xf3\xcb\x0f\xee\x11\xaf\x9a\x02\x22\x39\xc0\xd0\xc5\x07\xec\xe4\x9a\xad\x58\xc6\xf5\xda\x9c\x45\x9f\xfd\xf8\xed\xfd\x5d\x29\xfb\x3d\xa1\x53\x09\xea\x03\x73\x7b\x0c\x0a\x05\x69\x4f\xc6\x30\xf3\xb4\x2b\xb9\x26\xe7\x56\x1d\x55\x6e\x6c\x24\x66\xf2\x11\xfb\xb9\x8e\x32\xc6\xba\xe3\xa5\xcf\xeb\x3d\x9e\x6c\x4f\x4a\xc7\x32\xd7\x4f\xb9\xa3\x75\xf7\xb3\x78\x5e\x69\xfe\x74\x7b\x59\x2b\xef\x12\x92\x0b\x69\x33\xdd\x0a\xe9\x2e\x1a\x3c\x66\xb6\x55\xab\xe2\xf8\x21\x40\x58\xd2\x7b\xd0\xb8\x5f\xf3\xbf\x87\x70\xb4\xf5\xb5\x72\xc5\xd6\x8e\xe3\xb8\x33\x2d\xc7\xfe\x47\xaf\x71\x19\x01\x59\x44\x14\xca\x8c\xc4\x72\x49\xb9\x20\x5e\xb2\x8e\x26\xa6\x02\x19\x61\x74\x68\xa1\x42\x19\xc6\xf8\xf3\x47\xf2\xdf\x39\x83\xac\x5d\x06\x7a\x51\x22\xf3\x78\xc0\x05\xd7\xc5\x2a\xa1\x76\x5d\x61\x28\x0c\xfb\x6a\x2f\x40\xf3\x96\xa1\xae\x2e\x2e\xc2\xa8\x97\x34\x5a\x70\xc1\x0a\xd5\x8f\x90\x2b\x3a\xa0\x29\x27\xcf\x31\x73\xe3\xa7\x69\x2e\x74\x1e\x1c\xd2\x35\x1d\xb8\x65\xbc\x18\x92\x63\xe7\x01\x3f\x43\x02\xfb\x3c\xa2\x8a\x41\x20\xb8\x40\x17\x9e\x17\x64\xc9\xa8\x68\xd6\x4d\x55\x6c\x5f\xe0\xf0\xcf\x34\xc9\x53\xd0\x2e\x5c\x1c\xdf\x60\x56\x1b\xa7\x6a\x73\x13\x03\xf5\xef\xc0\xa0\x57\xaf\xff\x30\x7c\x39\x7c\x39\x7c\xb5\x35\x1a\xd9\x49\x1a\x5c\xb5\xc2\xa8\xe0\x5c\xd8\x41\xcc\x33\xff\xb6\x4a\xb0\x62\xc5\x78\xd6\xe8\x36\xd7\x50\xf2\x6a\x39\x85\x24\x58\xf0\x98\x63\x05\x8f\x61\x05\xd3\x0c\x57\x6d\x20\xb4\xbf\x6f\x6e\xd6\xfe\xfe\x8b\x03\xcf\x53\xb4\x41\x32\x03\x50\x16\x80\x3c\x40\x2b\xfb\xab\xb7\x3f\x0e\x5f\x7f\xff\xdd\xd0\xfe\xf7\xe8\x07\x90\xf2\xfc\xb9\x8e\xfc\x7d\x05\x25\xfa\x91\x80\xe4\x5e\x90\x2d\x53\x59\x7f\xca\xf2\x10\x9d\x99\x60\xca\xac\xa5\x20\xf6\x08\xdc\x0f\x7f\xf8\xc3\xf7\x2d\x49\x6a\x9b\x6e\xa8\xce\xb7\x49\x20\xfd\xf1\xe6\xd3\xaf\x51\x61\x0a\xec\xce\x15\x95\x09\x4d\x22\xc8\xef\x51\xe8\x40\xc3\xc6\x8a\x8f\x37\x9f\xaa\xd9\xe1\xca\xba\x4a\x6d\x35\x95\x1e\x57\x40\x49\x50\xed\x34\x61\x3d\x43\xe3\x3d\xdd\x99\xed\xe1\x59\xd8\xa8\xa8\x07\x7b\x03\x77\x62\xbd\x39\x9b\x52\xc8\x21\xab\x6c\x50\x12\xae\xb5\x2b\x4e\x21\x08\xf5\xd7\x07\xd6\xe7\xa2\x3c\x8b\x8d\xf3\x6e\x22\xa4\x45\xa5\x87\x5a\xf0\xb8\x1f\xe3\x0d\x18\x50\x2e\xd8\xea\x98\x0a\x10\x87\x69\x68\xa5\x2e\x87\x5b\x84\x14\xe4\x39\x07\x7f\x56\x27\xac\x95\xba\xa7\x8f\xc7\xd7\xff\xe7\xd3\xd9\xd5\xf1\xe9\x19\xd1\x34\x9b\x33\x1d\x70\x2e\xee\x38\xa1\x42\x56\xfd\xcd\xb2\x25\xda\x3c\x89\xb0\x08\xef\xb8\xcb\x84\x89\x56\x70\x56\xc5\xf9\x18\x00\x37\xd9\x48\x30\x14\x87\x42\x12\x1f\x44\x90\x18\x0e\xb8\x88\x95\xbb\x38\xbe\xb1\xf6\x08\xf0\x2d\xf0\x95\x47\x61\x2b\xed\x82\xae\xb8\xcc\x8a\xbc\xa9\xd6\xcd\x59\xa1\xd3\x4c\x63\x44\xff\xd3\xe6\xdf\x13\x4c\x27\x5c\xb4\x18\x9d\xda\xe0\x0d\xf1\x62\x66\xb9\x57\x6c\xde\x27\x5d\xcf\x65\xb5\xbd\x7b\x68\xfc\x5c\x60\x19\xfe\x82\xf1\x01\x9e\xfb\x6b\xf3\x9b\x3b\x65\x89\x14\x73\xac\x8e\x3b\x32\xb7\x0f\x7c\xfa\x06\x76\x20\x54\x08\x1e\x96\xde\x48\x31\x4b\x13\xb9\x5e\x32\xa1\x9b\xf9\x0d\x17\x70\x55\xf8\xb0\xc4\x90\xf2\x66\x21\xef\xca\xa4\xc3\x38\xf9\x73\xcc\x9c\x59\x6a\x34\x97\x32\x66\x49\x70\x64\xe4\x4b\x50\x0c\x8b\x66\x73\x62\x79\x01\xcf\xe9\xcb\xdc\x48\x18\x3b\x92\xcb\x34\xb7\x05\x69\x5e\xd8\xe2\xcb\x79\xd8\xeb\xb0\x14\x91\xff\x8a\xb2\xd1\xdf\xca\x53\xf9\x6a\x61\x80\xac\x8d\xb7\x19\xc8\x5b\x9d\xeb\x4c\x8a\xa1\xf9\x36\xb8\x5a\xbb\x14\xac\x89\x53\x3e\x7a\x67\xcb\x54\xaf\xb7\x65\x45\x30\xec\x13\x6a\x52\x50\xbd\xe8\x29\x4d\x8e\x03\x9d\xfc\x90\x92\xe9\xda\x55\xde\x87\xaa\xfc\xcb\x5c\xf0\x88\x86\x4b\xf4\xd8\x44\x78\xf8\x84\x63\x24\xa3\x4b\x39\xe7\x72\x14\x1f\x60\x29\x85\x63\x4f\x7d\x9f\xd0\x35\xcb\xfa\x65\xb4\x79\x18\x54\x32\xb9\x64\x7a\xc1\x72\xf5\x41\x7e\x64\x3a\xe3\x51\xdf\x3a\x33\xfb\xe3\xc6\xae\x4e\x2f\xa0\xc8\x07\x69\x98\x63\x30\x05\x2f\xb1\x49\x98\x5d\x4b\x12\x8c\x30\x73\xee\xb5\x06\x97\xca\xf1\x5d\xb5\x30\x88\xea\x2c\x73\xdf\x1c\x20\x05\x54\x2c\xec\x11\xed\x72\xed\x21\x67\x80\x8a\x62\x55\xcb\x0e\x6d\x17\x65\xd3\xbe\x61\x6c\x4b\x9c\x47\x0d\xcf\xad\xb7\x22\x4c\x28\xf7\xc8\x42\x7e\x25\xf0\x1f\x0c\xfa\x1a\xe0\x9d\x62\xb9\x06\xbf\x16\xd8\x5b\xb9\x89\x0b\x67\xb8\x2e\x4a\x70\x99\x2d\x3d\x3e\x40\x64\x63\x8f\x0d\xe1\x1e\x1d\x1b\xfc\x49\xaa\x42\x26\x40\x63\xb8\xcb\x77\x59\x36\x0d\x92\x26\x7b\xc0\x76\x9b\x2e\x7b\x30\x17\x31\xd0\xea\x72\x77\xec\x71\xb7\xc7\x2e\xb3\x97\x9c\xb3\xb1\x39\x5f\xe0\x71\x21\xf3\x4f\xbe\xc1\x1f\x5f\xfe\xd8\x22\xbe\x35\x30\x3b\xe5\x06\xc7\x68\x07\x7b\x30\xa2\x06\xfb\x97\x84\xc2\xf9\xd8\xed\xa8\x44\xcb\x0d\xfa\xc2\x33\xf6\x21\xa7\x59\xfc\xe0\x53\x68\x18\xa1\x3c\x87\xa2\x8c\x4f\x1b\xae\x3d\xf4\x24\xc2\x22\x21\x1e\xce\x03\x4f\x22\x34\xa4\x3b\x9c\x27\x3f\x89\x8c\x2d\xe5\x8a\xb9\x3c\x4d\x90\xe9\xab\x53\xe8\xfb\x52\x0d\xe8\xb4\x75\x0f\x57\xac\x9a\xaa\xcb\xd5\x11\x5a\xb1\x26\x7f\xb2\x29\x63\x7e\xf2\xaf\x82\xf3\x18\xda\x58\x49\x94\xe8\x5c\x2e\x38\x4c\xeb\x50\x30\x18\x9e\x43\x40\x53\xd6\x08\xf0\x6b\xa2\x71\x5c\x4f\x21\xe6\x62\xcf\x5c\x39\x32\x2f\xf5\x9c\x4d\x2b\xc5\x68\x78\xd0\x3b\x86\x6b\xb1\xfb\x75\x8b\x49\xd6\x36\xe9\x9d\x9d\x61\xeb\x33\xb0\x69\xb9\x7a\x3b\x12\x5c\xd5\x7b\x54\x62\x31\xcc\xdf\x1b\x7e\xc3\x8d\x39\x4b\xac\xc3\xa5\xce\x55\xe9\x7f\x65\x38\x6e\x08\x26\x07\x77\xb5\x8a\xb7\xda\x47\xcb\xc3\x0b\x29\x06\x7f\x67\x59\x50\xb1\xc4\x3d\xed\xa3\x27\x18\xa8\xaa\xc9\x71\x6b\x83\x75\x01\xa7\x9b\x9b\xf3\xfe\x20\xba\xb9\x39\xf7\xfd\xf7\x06\x5a\x62\xce\x5d\xe7\xe7\x0f\x32\x28\x92\xea\xc1\x5d\x43\xb1\x6b\x0b\x1f\x0b\xc5\x7a\x52\xdc\x6d\xb7\x61\x90\x64\x5b\xd7\x91\xab\x40\xa7\x47\xb8\x8a\x7b\x35\x28\xb6\x75\x1b\x21\x0b\x1a\xd6\xf6\x3f\xd4\x6d\x04\xd3\x47\x3a\x0f\x91\x76\x81\xe0\xa1\xe0\xc6\xec\x85\xfd\xa0\x7c\xed\x8c\xb5\x7e\x04\x7b\xe6\xcc\x88\x73\x86\x7e\x77\xae\x92\x6e\x18\xff\x8b\xe4\xf7\x43\x32\x20\x5f\xac\xc2\x6e\x34\x56\x47\xa8\x06\x0b\xe6\x95\xc5\x28\xd3\x3c\x14\xec\x48\x0a\xda\x35\xb0\x30\x1d\x8d\x8f\x3f\x56\xfd\x68\x06\x30\xb4\xf9\x1e\xce\xb2\x32\xa2\xeb\xfe\x20\xd0\xad\x45\xe4\x62\xd7\xbb\x00\x78\x55\xef\x80\xe4\xb2\x92\x59\x07\x6b\x2b\x48\xa1\x9c\x22\x30\xac\x1a\xb2\x0a\x38\x44\x0e\x8d\xb4\xe7\xba\xe4\xe2\xe1\xd5\xc9\x85\x57\x2a\x6a\x60\xa5\x51\xa8\x7c\x2a\x45\xd2\x9c\xe8\xa0\x89\x0c\x9b\xa9\xc0\x71\xb2\x49\xbd\x56\xcd\xbe\x5e\x64\xc1\x06\xfd\x03\x5d\xa1\xca\xe9\xaa\x3a\x8a\x1a\x16\x59\xe3\x5b\x6a\xcd\xb9\x6a\x81\x34\xb1\xce\x4a\xde\xb6\xd1\xca\xb3\xa2\x98\x3f\x3c\xcd\xb3\x54\x42\xf2\x83\xda\x44\x41\xb2\x55\xd1\xcd\x71\x11\x63\x1d\xd3\x59\x1d\xb2\xaa\x52\x48\xd0\xf2\xdb\x79\x30\xa7\x7b\x47\x20\xf2\x92\x86\x14\x10\xa4\x4f\x2a\x9b\x25\x0f\x29\xba\x7a\x74\x6d\x89\x3d\x1e\x98\x05\x05\xbf\x0e\x05\x1f\xb4\x05\x1c\xd7\x90\xa3\x93\x47\xaa\x1d\x7a\xff\x13\x0e\xea\x59\x9a\x0e\xbd\xa2\x6d\xc7\x28\xa8\x19\x8e\x69\x4e\x9b\xdd\x5b\x1f\xa1\xf0\x0b\x10\x3c\xf1\x12\xad\x95\x25\x87\xe5\x6c\xfb\x07\x5e\x70\xda\xc6\x8f\x4f\x1b\xcf\xde\x8c\x48\xbd\xb2\x22\x35\x23\x53\x8f\xee\x1d\xc1\xec\x41\x94\x6a\x44\xaa\x47\xc4\xb1\x5b\x1d\xda\xb9\x94\xe9\x18\x2b\x6e\xf4\x51\x06\x7f\x41\xe9\x03\xfd\xd1\xc0\xec\xbc\x32\x90\x56\x0c\x54\xa1\x25\xdb\x7b\xe0\xca\x78\xb4\xbd\x64\x89\x94\xa9\xf2\x6a\xa4\x43\x0a\x95\x4a\x92\x19\xf4\xdf\xc6\xfc\xcd\x36\x15\x3f\x81\x98\x6c\xb3\xdd\x46\xaf\x2e\x9b\xba\x1b\x13\x8c\x14\x59\xcd\x4e\x2f\x8e\x6f\xf6\xf7\xe3\x7a\xd8\xf9\x27\x01\x79\x59\xca\x1a\xe6\x2e\x93\xca\x5e\x50\x56\xe2\xa2\x28\x29\xa3\x18\x96\x06\x74\x55\xef\x71\x3b\x91\x14\x9a\x0b\x7c\x43\xa6\x36\xc9\x65\xa5\x7c\x47\x68\xd4\x87\x24\xd7\x56\x3c\x66\x11\xcd\x8e\xa3\x88\x25\xf6\xd5\xeb\x2b\xdf\x5e\x37\x76\x2d\x14\x62\x58\x5e\x62\x09\x2c\x97\x9b\xaa\x81\x31\x2b\xc6\x78\xb4\xee\x0b\x1c\x4f\x7b\xe4\x11\xae\xee\xe6\x53\xa8\x97\x63\xa7\x09\x15\x52\xac\x97\xe6\x75\xb3\xf4\xc8\xfa\xdc\x06\x4d\x79\x28\x37\xfb\xd5\xf9\xa1\xb0\x1a\xa6\x1b\x37\x38\x87\xea\xfa\xa1\xcc\xe6\x43\x72\x2e\xe7\x8a\xdc\x61\x7d\x4f\xc3\xbe\xeb\x3c\x6b\xa8\x2d\x64\x9d\x50\xb1\xca\xb1\x33\xc6\x7b\x11\xdd\x90\xc7\x90\x42\xbd\x19\x3e\xe3\x11\x15\xba\xcc\xbe\xb8\xca\x13\xc1\x32\x4c\x09\x16\x8c\xa0\x5c\x50\x85\xc2\x6e\xcc\x15\x14\x55\x2b\x1d\xf9\x9c\x7b\xb1\x9c\xb9\xcd\x63\xf9\x9c\x5c\x75\x62\xe4\x83\xe4\xfd\xea\xf9\x8d\x04\xd7\x9c\x26\x4d\x39\xa5\xdb\x0e\xd1\xef\x5a\xad\xb4\xeb\x4a\x5d\xc7\xe6\xa7\xb0\xdc\x3f\x93\x05\x3f\xbd\xa4\xb7\x0c\x6d\xef\x66\xe0\x9a\x53\xea\xd6\xcc\x7e\x7d\x7b\x3d\xa5\xab\xfa\xd6\xac\x7c\x55\xd9\xd6\x86\x68\xdd\x6c\x3a\xc3\x3d\x05\xa4\xc5\x1f\xde\x7e\xf7\xa0\x4d\x35\x15\xe1\xe9\xda\x58\x73\xf9\x1e\xcc\xcb\xe9\x15\xf5\x02\x46\xdd\x48\x10\x8d\x71\x3a\x1b\xc5\x84\x9c\xea\x06\x29\xeb\x9c\x47\x43\x42\x46\x33\x24\x2c\x65\x3a\xce\x84\xe6\x22\x0c\x2c\x0c\x38\x09\x97\x28\xc2\x1b\x5e\x9a\x9f\x6c\x3e\x52\x8d\xf5\xac\x21\xf5\xe0\x34\x9f\x6d\xcb\xe2\x43\x11\xef\xbe\x44\xeb\xf3\xcf\xe7\xc7\x17\x7d\xa3\xf2\xc1\xfb\xbf\xc9\xff\x00\x46\xaa\x46\xa6\x03\xcb\x07\xc5\x04\xf0\x47\x2b\xc4\x80\xb3\xe9\x66\x98\x7e\x68\xd0\x5a\xe8\xfe\xaf\x14\xa7\x0f\x10\xec\x13\xa8\x0f\xdb\x6a\x8d\xd4\xf7\x76\x8f\xa0\x09\xef\xb2\x88\xe3\x6f\x0d\xda\x7f\xb5\x7d\xd0\xbe\xdb\xca\xe7\xce\x52\x06\xc5\x66\x3e\xbf\x6d\xdd\xce\xdb\xa7\xda\xce\x9b\x1f\x1f\xb8\x9d\x87\xe4\x0f\x83\x8e\x9f\x2f\x46\xdb\xf6\x2b\xf4\xea\x7d\x2f\xd4\x97\x5a\x87\xcd\x50\x92\xa2\x85\xc7\xa7\x86\xc0\x58\x5c\x9e\xe7\x4c\x44\x34\x55\x79\xe2\xd2\x03\xae\xbe\x2b\x5c\x72\xb0\xf2\xbd\xc0\x2f\xa1\x72\x56\x02\x11\xea\x70\xd1\x42\xae\x51\xe4\xd1\xdc\x51\x1d\x24\x3d\x50\xab\x0e\x94\xcf\x6f\x1f\x0d\x96\xb7\x01\xb0\xbc\x0d\x81\xe5\xed\xaf\x0d\x96\x9f\xa4\xd2\x67\x22\xca\xd6\xe9\x36\xbc\xf0\x97\xd6\xee\x2d\xe0\x0a\xf2\x62\x52\xe9\x81\x96\x03\x9b\x4a\xc8\x0d\xe6\x41\xf6\xf1\x06\xe2\x62\xbf\x45\x3c\xe9\x45\x38\x3d\x5b\xc3\x3e\x2b\xdd\x6a\x5a\x1c\x70\xea\xb1\xee\x74\x0d\xc1\x48\x05\x71\xf5\xf0\xc6\x8d\xe8\x6f\xae\x58\xe6\xf0\x21\x99\x80\xc2\x9b\xdc\x06\xe3\x6b\x1d\x1f\xbc\xd1\xb7\x9d\x1b\x9d\x0f\x56\x6f\x1f\xb7\xc9\x3f\x33\x96\x1e\x27\x7c\xb5\xc5\x29\x16\x5d\x4a\x0c\x2d\xd7\x39\x36\x7c\xbf\xd2\x4c\x68\xd3\x8c\x36\x16\xe6\x4b\x51\x89\x7c\xcd\x74\xcd\x0e\xe3\x45\x48\x3f\x78\x53\xe7\xb0\x02\x2e\xe6\xbd\x6c\xfc\x5f\x82\xdd\xaa\x4c\x72\xe2\x7e\x42\x83\x7f\x93\xdf\xdf\x74\x5d\x43\xd0\x4a\xa2\x87\x57\x3f\xbc\xde\xfe\xf9\x0b\x6f\x6a\x1b\x74\xac\x75\x6c\xdb\x58\x68\x4f\xae\x4e\x72\x15\x21\xeb\x1b\xdb\xde\x5f\xa1\xd8\x58\x1f\xae\xeb\x8b\xd7\xb8\xba\x01\xf3\x85\xcf\x78\xb5\x12\x49\xef\x16\x75\x31\x5e\x0f\xc8\x96\xe4\xef\x68\x9b\x03\x42\x06\xac\x65\x57\x6f\x9f\x6c\x57\x8f\x41\xc0\x2b\x54\x36\x5d\xe5\x09\x1b\x67\x5c\x66\x5c\x77\xcb\xd6\x5f\x5a\x3a\x57\x77\x9c\xba\x6f\x1b\xab\x10\x94\x34\x13\x3a\x94\x34\xc7\x69\xc1\xb2\xbc\x4a\x40\xc2\xf5\xa8\xdb\x37\x6b\x2d\x58\x68\x2b\xbb\x4e\xa5\x9c\x85\x6b\x70\x56\x1d\x07\x82\xbd\x36\x1f\xf0\x54\xc6\x45\x36\xe1\x26\xba\x6f\xb5\x76\x38\x14\x7a\x31\x82\xcb\xb9\x90\x1a\x35\x5d\xc0\x9d\x8b\xb2\xe6\x13\x26\xa5\xb0\xfe\xe5\xa1\x51\xbd\x10\x1d\xe7\xb7\x0c\xee\x0d\x0b\xc6\x33\xcf\x6b\xc0\xcf\x15\x67\x6d\x6f\xe8\x9e\x1c\xb4\xc0\x38\x9d\xe5\xb1\x58\x4f\xf6\x0e\xca\x9d\x65\xec\xbf\x73\x06\xc1\xba\x6b\x1b\xca\xb7\xa5\xaf\xfe\x7d\xdc\x3b\xbb\x5c\x20\x15\xf4\xcf\xa7\xe3\xaa\x5e\xd0\x60\x8b\xca\x39\xda\x0e\x72\xac\x5b\xd6\x94\xc6\xde\xd6\x81\x8a\x99\x58\x6f\x46\x12\x3e\x48\x2b\x75\x1f\xa7\xdb\x1a\xc4\x7f\x3e\x1d\x3f\x6d\xe6\x34\xc8\x8a\xfd\xa0\xa4\x69\xd6\xda\x1d\x1a\xb8\x34\x80\xbf\x1b\xbf\x27\x4b\x9a\x42\xf8\x17\xd5\x9a\x46\x0b\x2c\x47\x09\xe6\xa1\xb0\x61\xfc\xe7\xd3\x60\x42\x85\xcd\xd4\x6a\xdb\x9b\xc5\xc3\x36\x89\xcd\x6f\x41\x13\x1a\xfb\x2e\xee\x4a\xcb\x8c\xce\x99\xfb\x0a\x3d\x23\xe0\xb4\x5c\xf9\x34\xc3\xcd\x39\xb3\xce\x2d\x17\xf1\x11\x99\xec\xb9\xe2\x03\x69\x92\x67\x34\x29\xbf\x29\x0a\x68\xaa\x23\xf2\xd7\xbf\x99\x6f\xc0\xed\x24\xfe\x8c\x6a\x51\xfb\xed\x44\x0c\x06\x83\x89\x78\x46\xac\x19\xdf\x65\xff\xd1\x6c\x99\x26\x54\x33\x75\x78\x1b\xc7\x83\x28\x8b\xd5\x70\x4d\x97\xc9\x44\xd0\x94\xdb\x11\x8e\x08\x4d\x39\xbb\xd7\x4c\x60\xc2\xd8\xdb\x1f\xd4\x90\xcb\xc3\xd5\xab\x89\xc0\xb5\x9d\xe4\x4a\xcb\xe5\x15\x43\xba\x70\xca\x66\x5c\x70\x4c\xa9\xe9\x62\xb3\x60\x2b\x90\x5f\xd9\x86\x5d\x59\x59\x09\xec\xcd\x9c\xa9\x61\x94\xc5\xc3\x0d\xe5\xf3\x44\x18\x76\x16\xfa\xce\x33\x99\xa7\x47\xa4\xa1\x19\x8e\x5d\x05\xd8\x07\x98\xe7\x02\xe7\x41\x87\x6d\xfc\xd9\xb0\x21\x7f\x6e\x6a\x72\x5e\x64\xd0\x75\x60\x0e\xae\xd7\x9e\x23\x17\x10\xec\x14\x6a\x04\x93\xa5\x19\x83\xd3\xff\x24\x6e\x85\xbc\x13\xef\x39\x4b\x62\x65\x25\x22\x38\xa8\x48\x1a\x6c\x39\x41\x2d\xbc\xf9\x66\xe5\x0e\xcd\xfc\x31\xb0\x20\x33\x90\x86\xf9\xa2\x05\x5b\xd2\xe2\x5a\xcb\x94\x89\xe3\xf1\xe8\xf3\x9b\xeb\xea\xf7\x8d\xa6\x41\xef\x48\xab\xa8\x5c\x25\x0b\x66\x4c\xab\x52\xf7\x4b\x94\xda\xa5\xb1\xd8\xae\xa3\x48\xf2\x9f\x31\xd8\xa7\xd0\xc1\x3c\xaa\x72\x66\x24\x65\xbc\x10\xe6\x8e\x66\x66\x1c\x2f\x13\xe7\x8a\x65\x98\xca\x7e\x2e\xf8\xdf\x8b\xc1\x8b\x60\x4a\xc0\xcd\x0d\x66\xb1\xd0\xa4\x7a\x99\x5d\x97\x74\x6d\x4d\x66\x24\x17\xde\x80\x98\x61\x6d\x48\x3e\x4a\x08\x87\x98\xc9\x23\xb2\xd0\x3a\x55\x47\x87\x87\x73\xae\x1d\x36\x5b\x3d\xa9\x5e\x1f\xc2\x53\xca\xa7\xb9\x96\x99\x3a\x8c\xd9\x8a\x25\x87\x8a\xcf\x07\x34\x8b\x16\x5c\xb3\x48\xe7\x19\x3b\xa4\x29\x1f\xc0\xda\xc1\x9e\xa8\x86\xcb\xf8\x59\x66\xd1\x5f\xed\x87\xc8\xc4\x26\x01\x01\x2c\x6d\x3b\x06\x83\xa3\x18\x53\x87\x9d\x6d\xac\x44\x01\x6d\x97\x60\xf5\xea\xec\xfa\x86\xb8\xd9\x83\xd9\xc4\x10\xf8\x65\x4f\x55\x9e\x83\x01\x1a\x17\x33\x66\xf3\xc7\x40\xec\xa2\xf6\x0b\x41\x43\x2a\x31\xf0\xdb\xac\x8f\xaa\xf2\xe9\x12\x9c\x78\xf0\x19\xc6\x28\x97\x13\xe0\x1e\x20\xcd\x63\x1a\x53\xcd\x62\x08\x7c\x39\xa1\x4b\x96\x9c\x50\xc5\xbe\xf9\x29\x18\x68\xab\x81\x81\x6d\xdf\x73\xa8\x90\xa8\x7a\xf3\x4d\x8b\x73\x41\x91\xca\x4f\x8b\x21\x9e\xa6\x69\xb2\xbe\x14\xef\x65\x76\x47\xb3\xff\x8f\xbd\x7f\x6f\x8e\x1b\x37\x16\x87\xe1\xff\xdf\x4f\x81\xc8\xa7\xca\xf6\xef\xd5\x8c\xbc\x97\xf8\xe4\x28\x95\x7a\x4a\x96\xe4\xcd\x54\x6c\x79\x4a\x92\x77\x93\xda\xd9\x9f\x0b\x43\x62\x66\xf0\x88\x03\x30\x04\x28\x69\xb2\xc9\x77\x7f\x0a\xdd\x00\x09\x92\xe0\x65\x64\xc9\xbb\x7b\x96\xac\x4a\xd6\x1a\x82\x40\xa3\xd1\x68\x34\xfa\xda\x2b\x65\x9c\x54\x5a\xa3\xb3\x09\x78\x11\x68\x89\x3d\xa1\xd3\x49\x59\x48\x9a\xbb\xaa\xc6\xc1\x7b\x2f\x48\x24\xd0\x93\x4b\x57\xb2\xa7\x48\x11\xcb\x0b\xa9\xaf\x8d\x18\xd3\xeb\xc8\x53\xb4\xf4\xa0\x2e\x44\x51\x6b\xaa\x86\x78\xa0\x32\x59\x0d\xcc\x23\x2c\x1d\xf9\x53\x73\xac\x62\x6d\xf8\x41\x26\xf3\xf5\xa6\xf0\xb5\x23\x60\xed\x78\x0e\xd6\x68\x81\x9e\xc7\x04\xa4\x2e\x2e\xd6\x41\xb3\x36\x18\xb2\xa9\xb2\xee\x23\x91\x2b\x2e\x8b\x36\x97\xeb\xcc\xa5\x51\x0f\x61\x98\xd0\x96\x74\xc1\x90\xb2\x23\x76\x06\x39\x23\x8b\x96\xa0\x05\x01\xc3\xe2\x59\x16\x27\x56\x04\x6f\xb9\xe0\xd7\xc6\x87\x2c\x70\x0c\xea\x94\x59\xa7\xe1\x25\x23\x56\xcc\xdc\x77\x6d\xb1\x28\x76\xdf\xba\x5e\x43\x4a\xef\x18\xac\xad\xd6\x35\xc6\x56\xd3\xb6\x42\x2b\x39\xa7\xd1\x06\x23\xc8\x6d\x06\xc1\xb0\x70\xe8\xbe\xc6\x79\xdb\xd0\xb0\x28\xe3\x9a\x65\x9c\x62\xfa\x76\x2f\x94\x1e\xf2\xdb\x47\xee\x0a\x02\xa4\xbf\x97\x6b\x4c\x65\x0e\x8b\x83\x13\x62\xee\x82\xa4\x54\xe8\xfa\xae\x3e\x21\x50\x82\x72\x28\x29\x0a\xcf\x93\x37\x52\x6f\x6c\x02\x41\x99\x4d\xd0\x6a\x54\x98\xb2\xe7\x76\xbd\x84\xff\x5b\x26\x5b\x73\xd6\x80\x34\xca\x32\x26\x22\x47\x79\x13\xaf\x5c\x92\xcc\x35\xa6\xe4\x72\xe9\x94\xb0\x89\xb9\x6b\x2c\x25\x94\x17\x84\xf5\x68\x01\x58\xc4\x45\xf5\x73\x0f\xf1\x60\x21\x5b\x2c\x04\x2e\x9e\xab\x04\x52\xc7\x44\x8b\x8f\xaa\x59\x4c\xc1\xd6\x00\x9c\x15\x09\x0e\xed\xf5\xcb\x45\xd6\x2f\x16\x8b\x83\x0b\xa9\xcd\x7f\xa6\xe4\x24\x49\x6c\x56\x04\xbf\xf7\x70\xcf\xe6\x6b\x88\x52\x06\x82\x2a\x6a\xcb\x51\xcd\x15\x14\x94\xc2\x5c\x64\x76\x2a\x5a\x62\x9f\x53\x72\x62\x4b\x21\xb4\x60\x17\x88\x93\x0a\x47\xa0\x36\x81\x80\x9d\xb4\x41\x11\x4c\xc7\xfc\xe1\x79\x12\x50\xec\xbc\x1d\xaf\x80\xfd\x30\x88\x8e\x87\x94\x20\xb6\x94\xdf\xef\xf3\xe0\xa2\x6d\x19\x33\xf1\xe9\xaf\x49\x12\x33\xa5\x6d\xb9\xbf\xd6\x5e\x6a\x1e\x99\xc5\x07\xc5\x86\x0e\x2c\x9f\xf5\x5f\x32\x1b\xb3\xad\x5b\x50\xa2\x78\xe3\x13\x73\x4a\xeb\x70\xb4\xe2\x20\x64\x10\x5b\xa2\x05\x0a\x84\x5d\xd9\xcd\xd7\xd1\xb6\xc1\x06\x2e\xea\x1f\xdb\x78\x75\xe9\x6c\xc5\x2b\x23\x9f\xb7\xa6\xd1\x28\x9f\x02\x31\xb4\x60\x02\x5e\xbe\x03\x9b\x53\xaa\x28\xf1\x6c\x30\x25\x33\xbe\x36\x78\x68\xe3\x00\xee\x01\xf9\xeb\x85\x21\x21\xb0\x4b\x23\xa7\xd2\x2f\x3d\x27\x67\xbb\x45\x20\x17\x0c\x8c\x1d\x3e\x3c\x02\x28\xb3\x31\x20\x4b\xe6\x0e\x62\x1b\x11\x0e\x84\xdc\xc0\x4d\x77\xa7\xc8\x25\xf1\x4a\x5f\xa0\x80\x42\x51\xc0\x15\x64\xd8\x70\xf9\x25\xe9\x96\xd9\xb4\x18\xba\x45\xbd\x53\x3e\x90\x02\x2b\xe4\xd7\xed\x7c\xe5\x3c\x01\x62\xe9\x73\xe0\x1e\xa4\xba\x69\x3b\x7c\xf9\x02\x08\xf2\xc1\xb7\x32\x23\x95\x6b\xe0\x61\xeb\x19\xe0\x1e\xac\xe7\x17\x20\xa9\xad\x4d\xe1\xe5\xe2\xf4\x7c\x62\x4b\xf8\x96\xf7\x2e\x18\x28\xdd\x12\xf4\xfc\x6b\xc5\x09\xf7\xf0\x5b\xac\x70\xcf\x9a\xe1\x46\xae\xcc\xb3\x75\xfa\xcf\xf1\x46\xfb\xe2\x65\xb0\x46\x4b\xf9\x7c\x19\x04\x54\x2e\xea\x57\xe6\xdc\xce\x08\x1a\x32\x11\x1f\x30\x8d\xee\x4e\xcd\x1c\x03\xf7\xfd\x43\xf0\xa0\xe9\x5e\xcb\x1e\x68\xfd\x29\x7a\x09\xdc\x42\x95\x59\xa2\x4c\x2a\x90\xf9\x86\x6e\xd9\x96\x83\xa3\x18\xbb\xf7\x00\x20\x98\x47\xa1\x8b\xa7\xd6\x33\x53\x30\x5b\xb2\x39\xc8\x18\xcd\x45\x53\x67\x3c\xc2\xba\x28\xdd\xd3\x70\x47\x60\x91\xda\x6e\x87\x91\x07\x41\xbe\x58\xb0\xbe\x1e\x6c\x57\xf9\xa2\x5f\xcb\x10\xf2\x9b\x88\x22\x37\x36\xa6\xe5\x53\xf9\xd2\x4c\xbf\xf5\xd4\x21\x9d\x72\xa4\x37\xee\x20\x4c\x77\xba\x22\x97\x8f\x90\xfa\x62\xbf\x35\xc1\x0f\x8a\xa4\x14\x55\xf1\xcb\xcd\xd8\x34\xe9\x39\x5e\xcc\x3a\xfe\xea\x70\xd1\x56\x5f\xbc\x7c\xea\xc8\x28\xea\x8a\x77\x60\x63\xde\x16\xac\x57\x3e\x88\x0e\x72\x05\xb5\x13\x81\x4a\x95\xdc\x96\x65\xb6\x15\x46\x5e\xda\xca\xd5\x90\x48\x79\xd7\x5e\xb7\xbc\x7c\x6a\x45\x50\x75\x35\x93\x7b\x51\x43\x19\x25\x2a\xcb\xc8\xcd\x05\xa5\x97\x2b\xc2\x19\x66\x8d\x21\xd7\xa7\xf3\xc5\x01\x96\x9e\xfd\x78\x36\x6f\x29\x75\xea\x9e\x21\xab\xda\x9e\x85\xb4\x7c\x06\xe4\x23\x6d\x36\xee\x27\x94\xfe\x1c\xa5\xe5\xb3\x7f\xb6\xd2\xf2\x19\x4a\x90\xfb\x0b\x97\x17\xe5\x47\x3d\x64\x39\x4c\xbe\xb2\x94\x09\x36\xd6\xa2\x63\xe4\xc2\x68\x65\x5a\xea\x84\x69\x5e\xe4\x25\xc5\xb1\xba\xfb\x2c\xa4\xa5\x4e\x52\x19\xb6\x66\xe9\x7e\x5b\x76\x71\x50\xec\xd8\xbe\x63\xa5\xff\xb0\x1d\x70\xac\x80\x75\xc9\xa5\xc1\x7a\xe1\x5d\x42\x02\xa9\xa2\xea\xd3\xf2\xd2\xbb\x32\x45\x6c\x66\x7e\x3f\x5b\xf0\x91\x53\x28\x5f\x17\x19\xb7\xbb\x7b\xe5\xfe\xf5\xdd\x6e\x1d\xb0\x61\x21\x96\x95\xc3\x80\xd5\xce\x76\x04\x1c\x95\x8f\x4b\x0f\x85\x02\xdc\x50\x0e\xd6\xcb\x01\x6c\xce\xa9\x7d\x38\x58\xcf\xdc\x4b\xf6\x56\xe3\x60\x0b\xe4\x61\x0b\xcb\xc5\x16\xc8\xc7\x16\x86\x93\x75\xca\x3c\x23\x2f\x83\x67\x10\x2f\x53\x0f\xb8\x25\xf7\x5f\x8e\x3b\x35\x7d\xe5\x13\xbc\x1c\x93\x17\x8a\x31\xa7\x22\x03\x56\x86\xf5\x88\xd4\x4e\x68\x7a\x1f\x76\x9d\x2c\x9f\xc5\xa2\xf3\x6e\x6d\x65\xc8\xb6\xbb\x73\x77\xdf\x4e\x33\xe6\x5d\xad\x65\xd6\xbc\x32\x9b\xed\x76\x21\x35\xda\xb5\x8f\x5b\x0a\x30\x79\x48\xb0\x31\x8b\xce\x9c\xd5\x73\x2a\x20\x7a\xbc\xd3\xa4\xbb\xf7\x25\x4b\xe4\xdd\xcb\xc3\x2a\xc8\x1e\xb2\x11\xab\x84\x6b\xc5\x92\x22\x5d\x7c\x0f\x1e\x50\x19\x26\xb1\xc0\x30\x23\xfa\x4e\x02\xad\x41\xcc\xab\x7b\x87\x0c\xc2\x1c\x42\xbb\xb2\x06\x54\xcf\xda\x7d\x10\x6e\xf6\xca\xc2\x5b\xaa\x5f\x99\x77\x4b\xb2\x75\x24\x41\xb5\x60\xdb\xf7\x9f\x09\x77\x1b\x99\xd8\x45\x3a\x86\x25\x5a\x2c\xca\x03\xf9\x2f\xc0\x5d\xfe\xb0\xa1\xea\xc5\x76\xf7\x29\xa1\x4b\x96\xbc\x04\xbe\x63\x99\x7c\xdf\x76\xf6\x02\xed\xcc\xbc\x81\xc8\x10\x3e\x74\x4d\x98\x58\xe7\x9b\x84\xc5\x66\xdc\x81\xf4\xe6\x07\xee\xb9\xb4\xe5\x04\x80\x03\x70\x1d\xa4\xa8\x44\xb5\x53\x1a\x4c\x18\x38\xe5\xd6\x19\x37\x27\x05\xb5\xee\x5b\x12\xa0\x97\x4f\xf7\x7c\x8b\x29\xf5\x4d\xa7\x6f\x93\x0b\xa0\x3c\xb6\x5a\xb1\xc8\x26\x40\xb2\xaa\x84\x04\x58\xab\xcd\x65\x02\xae\x12\xc5\x4c\xfa\x81\x17\x52\x4c\x5c\xb0\x2e\x5a\x6a\x31\x29\x81\xd5\x8b\x40\x18\xbd\xaf\xa4\x80\x78\x38\xec\x7d\x80\xd2\xae\x89\x9a\xb2\x24\xf1\x63\x5c\xe2\x6d\xf0\xe8\x49\x14\xc9\x5c\xec\x23\x7b\x5d\x55\x3f\xfc\x62\x32\x58\x8d\x2d\x77\xf7\x19\x50\x79\x52\x92\xca\xb8\xc8\xa1\x0c\x02\x5d\xc1\xa2\x2d\x32\x7a\x58\x2f\xce\xb8\x93\xda\x06\x29\x9d\x09\xa9\xfa\x97\xb4\x3f\xd5\x3b\x01\x14\x0b\xf8\x6c\x74\x93\x87\xa0\xbc\xbf\xcb\x36\x4d\x73\x00\xed\x83\xb0\x4d\x4a\x8c\x1b\x6e\xac\xac\xf3\x39\x2f\x54\x95\x46\x00\xee\xd9\xf9\xc3\x84\x3b\xb2\x87\x0a\x82\x0c\x95\x94\xc8\x50\x69\x89\x34\xf7\x57\xaf\xbc\xf4\xbf\x77\xa5\x2b\x77\xa5\x52\xeb\x86\x7c\xdf\xe1\x73\x4a\x66\x3d\x37\x0f\xf3\x94\x66\x08\xb0\x2e\x5c\xf9\x56\x85\xf2\x2e\xa2\x6d\x31\xc4\x56\x7b\x7c\xf5\x39\xb9\x38\x7b\x1e\xb4\x8d\x57\x9f\xfd\x34\x5a\x6d\x69\x08\xdc\xe3\xf2\x76\xee\x27\x75\xe3\x37\x9f\x2d\x75\xe3\x97\x68\x20\x2e\xf8\xa5\x57\x46\xdb\x0d\x04\x75\x98\x0a\xbc\x06\xbd\x25\xbc\x4e\x7b\x85\xee\x3a\x79\x0d\x95\xba\x03\xe6\x2c\x87\xbf\x17\xea\x65\x5d\xfc\xb6\x25\xbc\x45\x97\xd5\x91\x80\xae\xec\x08\xa0\x82\x34\xb1\x0e\x92\xe7\x8a\x60\x78\x34\xdc\x98\x1d\xbe\xa3\xc2\x61\xa9\x40\x46\x1f\x2e\xaa\x96\x2d\xb3\x73\x1c\xb1\x1e\xfa\xa2\xfb\x61\xd3\xa2\xd0\x83\xe6\x0b\x66\xc4\x5f\xa7\xec\x95\x59\xfd\xec\x46\xd0\xe7\x36\xe0\x3f\x2e\x34\xa1\x3d\xd6\x4a\x43\x4f\x66\x01\xfd\x39\xa2\xde\xa8\xc0\x82\x14\xce\x91\xc0\x3a\x76\x74\x8b\x2c\x7b\x1d\x9b\xfb\x9f\x9a\xa1\x28\x26\x30\xc9\x97\x74\xdc\xbf\xf5\xed\xdc\x3c\x1b\xfc\x23\x31\x01\xcf\x3e\xf3\x00\x81\xc0\x7c\x16\x98\x1f\xfe\xde\x5e\xc7\xa2\xfa\x20\x97\xb5\x33\x84\x9d\x9c\xb0\x95\x46\x3b\x56\xe9\xc2\x84\xbb\x67\x80\x92\x86\xf8\x1b\xb1\xf0\x38\x7a\xae\x4a\xc8\xbe\x28\x07\xed\x6f\xb3\xd1\x3a\x1d\xe6\xcf\xf0\xd7\xeb\xeb\x79\x69\xaf\x6f\x75\x62\x30\x54\x62\x9a\xb6\x83\xee\xbc\x1c\x3f\xcf\x7f\x61\xcb\xf4\x46\xc6\x7b\x9c\x0c\xef\xf1\x83\xc7\x95\xda\x71\xca\xc8\xd4\x71\xde\x9e\x13\xa7\xe9\x13\xab\x89\x1a\x7a\xec\xef\x14\xa2\xba\x62\xec\xc5\x41\xfb\x82\x4d\xd7\x53\xf2\xdd\xf9\xf5\x21\x99\x7f\xbc\x3e\x24\x4c\x47\xd3\x97\xe4\x7d\x9e\x68\x9e\xf6\xd9\x39\x2c\x8a\xe0\xdc\xff\x70\xf9\xdc\x5c\xc3\xd6\xe0\x47\xf8\xeb\xb2\x5b\xa5\x54\x6f\xf6\x58\xc7\xe7\x73\xd3\xfe\x29\x96\xb1\x6f\x05\xfb\x39\x8a\xbf\x82\x00\xe6\xb4\x58\x2a\x9c\xa6\x5b\x8b\xa1\x8b\x41\x08\x9b\xae\x8f\xc9\x84\xb0\x7b\x1a\xe9\x63\x72\xb4\x92\x92\x4c\xac\x93\xd8\x31\x39\x5a\xd2\x8c\x5c\x7c\xb8\x3e\x3f\x46\x07\x34\x26\x74\xb6\x23\xdb\x3e\xf1\xfc\xc3\xc5\xbb\x7f\x58\xce\xb9\x23\x8c\x63\x49\x53\xb2\x38\x80\x41\x50\x8b\x6c\xfe\xc4\x51\x9c\xae\x63\xda\x56\x76\xad\x7c\x6e\x69\xc2\x63\x5a\x28\xfb\xb0\x20\xab\x11\x9f\xb8\x0e\x25\xfb\x2b\x9f\x21\x34\x57\x25\x02\x83\x62\x28\xb3\x56\x29\xf0\x01\x88\x77\xc5\xd6\x86\x9d\x55\x33\x0d\x9e\xdb\x4b\xe6\x10\x61\xf5\x88\x2b\x99\x6d\x8f\x1d\xda\x17\xf9\xab\x57\xdf\x44\xa6\x63\xf8\x17\x3b\x76\xa9\x59\x87\xa8\xbd\x90\xd4\x00\x2a\xe8\xce\x30\x8c\xac\x58\xc2\xb2\xeb\x89\xc5\xf7\x67\x8d\x80\x7d\xf4\xb8\x9a\x0c\x16\x3a\x88\x45\xc0\xe3\x5e\x23\xd3\xb6\xd2\x00\x0f\xef\x74\xd8\x75\x62\x10\x43\xea\xef\x8a\x47\xdb\x81\x67\xe6\xec\xf4\xfd\x7c\xa8\x07\x08\x30\xa3\x76\xd8\x7d\x2e\x45\x1d\xd5\x47\x00\xad\xcd\x4e\x13\x03\x8f\x82\x21\x8b\xa2\x9a\x60\x59\xeb\xb8\x5f\x79\x45\x8e\x2b\x32\x2d\x5f\x55\xed\x53\x08\x34\xf7\xd2\x9e\x99\x71\xba\x44\x5b\xb0\xa7\x9b\x46\xb7\xaf\x3b\xf4\x94\x83\x28\xd1\x4c\x6d\x8f\x73\x1e\x24\x13\x29\x7c\x2c\x01\x52\x22\x28\x72\xb1\xcf\x65\x0d\xd2\xc5\x1b\x04\x63\xbc\x08\xb8\xa8\x42\x1a\x67\x1f\x57\x65\x2c\x26\x25\x9a\x45\x1b\xc1\x23\xda\xe3\x95\x04\x6a\x51\x54\xff\xf3\x6d\x2a\x55\xe9\x48\x87\x65\x7e\x9f\xab\xb2\x46\xcf\x8a\x67\xec\x8e\x26\xe1\x6a\x23\xe5\x83\xdc\xc2\x2a\x65\xb1\xd2\x8f\x24\x4c\xac\x24\x46\xb2\x58\x17\xbd\xfe\xad\xd1\x6b\xc3\x83\x66\x9f\xbf\x18\xa6\x9b\x29\xf1\x73\x9a\xf5\x99\xc0\x8a\xd2\x6d\x7f\x42\x2f\x6f\x98\x21\xf4\x75\x1e\x6d\x24\xb9\xb4\x21\xac\x2f\xf8\x94\x4d\x49\xca\xc5\x5a\x75\xdb\xc0\x06\xcd\x77\x00\x33\x48\xc3\x81\x60\x2d\x08\x99\xcd\x5d\x40\xd8\x67\x3b\x86\x55\x94\x5b\x28\x8f\xfb\x58\x9e\x3b\xcb\x58\x2b\x16\x86\x64\xae\x0c\x87\xf4\xb4\x4c\xce\xd5\x61\xf3\xdc\x7a\xcb\x44\xa3\x5e\x1a\xe2\xa2\xca\x76\xf7\xe4\x3e\x8b\x69\x94\xb1\xd7\xdd\x87\x5c\x09\xe1\x7c\xe8\xa9\x38\xf4\x58\xaa\x46\x24\x95\xf0\xd8\x50\x34\xb4\xda\xdd\x30\x1b\x3c\x4f\x52\xca\xb3\xf6\xd2\x83\xe5\x63\xae\xac\xb6\x36\xbe\x8f\x53\xba\x94\xb9\x1e\x70\x90\x3c\xd6\xcd\x51\x48\x6d\x76\xdf\x30\xca\xb8\xc0\xc6\x3d\x1e\x3d\xd0\xa4\xdb\xb3\x6e\x3c\x30\xc6\x03\xe3\xb7\x7d\x60\x08\xa9\x9d\x58\xd5\x8a\x96\x6e\xaf\x9b\x81\xfe\x36\xc3\x3c\x6d\x1a\x0e\xa1\x4e\xe4\xeb\xf1\x09\xb5\xcd\xda\x11\xd6\xb3\x8f\x07\xb8\xf6\x3c\xcc\xa9\x27\xfd\xb5\x22\x77\x71\xe0\xe3\xf6\x11\xcf\xfe\x86\x61\x0b\x34\xbc\xbe\x24\xe0\x70\x32\x05\xaa\xe7\x59\x97\x66\xde\x7a\xe7\xda\x75\x3e\x87\x50\xa3\x4b\x88\x94\x73\x51\x5f\xa8\x36\x7f\xb1\x64\x11\xcd\x95\xf5\x89\xeb\x31\x25\x14\x20\x46\x2c\x83\x3e\x0a\xbf\xba\x97\xa8\x8a\x77\x85\x3c\x2a\x5e\x82\x7d\x47\x2c\xba\x0f\x1e\xfb\x1e\x70\x87\xbe\xff\x1b\xfe\x01\x37\x95\xca\x5f\xb7\xaf\xcb\xbf\xaf\x4e\xaf\xf1\x6d\xfb\x30\xb6\xc7\x77\x5c\x33\xe7\x64\x07\x75\x54\x81\x40\x9c\x51\x16\x6b\x4d\x7e\x35\xf9\xfa\x8f\x7f\xec\x50\xf9\x3f\x1d\xd9\xab\xb6\x9a\x12\xf8\x54\x0d\xad\x45\x4d\x89\x01\x51\x69\x2d\xe5\x7a\xfd\x51\xc7\x80\xb4\x31\x20\x6d\x80\xd9\x73\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\xad\x6d\xc6\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x6d\x33\x19\x79\xd9\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x86\xcf\x18\x90\x36\x06\xa4\xd5\x9f\x31\x20\x6d\x0c\x48\x2b\x9e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x82\x9d\x8e\x01\x69\x1e\x2e\xc6\x80\xb4\x31\x20\x6d\x0c\x48\xab\x3e\x5f\x32\x20\xad\xa7\xd8\x39\x66\xf1\x0d\xbd\x7b\x70\x59\x73\xbb\x37\x1e\x90\xbe\xbb\xba\xab\xc6\xfc\xdd\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x3b\x0c\xde\x98\xbf\x7b\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\xca\x67\x74\x97\x2a\x9f\xd1\x5d\x6a\x74\x97\xfa\x55\xb9\x18\x8c\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x05\x1b\xff\xc6\x78\xd9\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\x81\x67\x74\x97\x1a\xdd\xa5\x8a\x67\x74\x97\x1a\xdd\xa5\x46\x77\xa9\x60\xa7\xa3\xbb\x94\x87\x8b\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\xaa\xcf\x98\xbf\x7b\xcc\xdf\x3d\xe6\xef\xae\x3c\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\xd0\x08\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\x4c\xc7\x3a\xa6\x63\x1d\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\xed\xf0\x8f\xf9\xbb\xc7\x03\x63\x3c\x30\xc6\xfc\xdd\x63\xfe\xee\xca\x33\xe6\xef\x1e\xf3\x77\xd7\x9e\x31\x7f\x77\xfb\x05\x72\xcc\xdf\x3d\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\x9a\xff\x8c\x01\x69\x63\x40\xda\xaf\x2a\x88\x63\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x2d\xd8\xf8\x37\xc6\xcb\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x0b\x3c\x63\x40\xda\x18\x90\x56\x3c\x63\x40\xda\x18\x90\x36\x06\xa4\x05\x3b\x1d\x03\xd2\x3c\x5c\x8c\x01\x69\x63\x40\xda\x18\x90\x56\x7d\xfe\x77\xe7\xef\x1e\xe2\x76\x10\x5e\xea\x6e\xe9\x60\x85\x5e\x22\xe5\x8d\x3d\x04\x75\xae\xf0\x2e\x82\xfc\xd1\x1e\xdb\x98\x04\x5b\x8a\x8a\xad\xb0\x65\x4a\xe1\x55\x81\x44\xe3\x7d\xf3\xf8\x60\x1a\x75\x9c\x49\x55\x42\x96\xd8\x3a\x38\x0b\x74\x25\xc4\x5c\xd0\xa0\xfc\x31\x9d\x82\xb5\x34\x9e\xa2\x3e\xa8\xd0\x66\x6f\xf8\xda\x5c\xae\x17\x07\xd0\xdf\xe2\x00\x44\x00\xdb\x36\xd4\x35\x5d\x99\x4b\xa1\x06\xa1\x13\x3a\x48\xe4\x1d\xcb\x10\x1a\x74\xcd\xf4\x80\x53\x44\x6e\xb9\xd6\xe6\x2c\xe1\x2e\xaa\x27\xd4\x69\x24\x85\xe2\x98\x8a\x1d\xf5\x96\x8b\x03\x2e\x56\x5c\x70\xcd\x16\x07\x64\x42\xc0\x21\xd0\x9b\x8e\x3b\xa9\x2c\x9c\x24\xa1\x4a\x4f\x49\x31\xb3\x20\x4a\x0c\xac\x3c\x66\x42\xf3\x88\x26\x16\xc0\x7a\x3f\x5c\x10\x9a\xa4\x1b\x2a\xf2\x2d\xcb\xbc\x76\x40\x00\xa1\x5e\xed\xf9\x64\x55\x6c\xe8\xf5\x12\xbc\x73\x23\x71\x88\x7c\xbb\x6c\x6a\x3f\xd3\x8c\x9d\x5d\x9c\x5c\xf7\x91\xc7\x1c\x9b\x11\x2e\x62\x1e\xa1\x66\xa7\x88\x40\xd9\xb8\xf4\xea\x55\xae\x42\x96\x6c\x25\xc3\xa2\x1b\x15\x3b\x62\xba\x6b\x85\x75\x29\x65\xc2\x9a\x8e\x19\x1d\x72\x7b\x4d\xca\xba\xf6\xf5\x64\x48\xd5\x9e\xb6\xcc\x6d\xb4\x94\x47\x37\xf8\x7f\x32\x0f\x32\x20\x33\xb7\x9a\xd6\xc3\xa3\x04\x1b\x2f\xe3\xad\xa1\x96\x4e\xe8\x68\xd7\xdd\x94\x70\x18\xd9\x2d\x49\xe4\x1d\x62\x0d\x55\x78\x85\x52\x0b\x25\xeb\xbf\xa0\x7e\x07\x37\xf6\xa7\x84\x6b\x96\x51\x50\xad\x84\x7a\x5e\x2c\xc8\x04\xe3\xc5\x0c\x55\x6f\x53\x9a\x71\x25\xc5\x21\x81\xa0\x51\xa7\x97\x71\x5d\xae\xa4\x24\x4b\x9a\x81\xb2\xa8\x18\xee\x0f\x7b\x0e\x57\x8e\x67\x44\x2b\xf6\xcf\x9c\x26\x7f\x46\x17\x67\x77\x55\xe0\x2b\x7b\x47\xe0\x0a\xda\x38\xd3\x47\x31\x64\x98\x89\xfc\x0c\x70\xd0\xd2\x31\x6f\x59\xfe\x33\xc2\x7f\x4e\xa7\x53\xf2\x1f\x0f\x02\x9d\xe5\xcc\x45\x2a\x15\xce\xbe\x38\xc6\xdf\x49\x38\xb8\xc0\xda\x7c\x7a\x86\x2a\x61\x35\x13\xe0\x62\x00\x70\xa1\xc1\xf6\x84\x17\x06\xeb\x02\x30\xbc\x24\x1e\xcc\x1b\xaa\x5e\x40\x7f\x9f\xcc\xd1\xf1\xb2\x1c\xfa\xba\x18\x99\xea\x72\x75\xbc\x95\xf9\x03\x10\x69\xf0\xd0\xb5\x5d\x14\xfa\x61\xb9\x82\xb6\xa0\x1e\x84\xff\xe6\xaf\x5e\x7d\xfd\x1a\xff\x1f\xdf\x14\xdf\x5c\x6d\x64\xa6\x27\x11\xcf\xa2\x9c\x6b\x10\x6b\xed\x47\xa1\x81\xfe\xfd\xef\xce\xaf\xc1\x90\xa4\x5f\x60\x9b\x97\x45\xa3\x94\x66\xcc\x5e\x89\xd6\x99\xcc\x53\x73\x25\x5a\x2c\x34\x4d\x92\x17\x41\x83\xa0\xad\x29\x80\x6e\x41\x05\xbf\x70\xbd\x39\x1a\xa6\x49\xe2\xe9\xf8\x60\x83\xbe\x43\x7a\xc0\x4b\x6c\x0b\x93\x33\x5b\x1b\xf9\x8c\x73\x95\xf5\xf9\xbb\x3a\x24\x93\x43\xf2\x09\xf0\x70\x34\x25\x57\xb0\xe5\x88\xdd\x72\xad\x9d\x6e\x65\xc6\x48\x6a\xee\x5f\x4a\xf1\x5b\x46\x96\x18\xe4\xb1\x73\xfa\x65\xab\xf9\x27\x4c\x45\x34\x65\x24\xda\xd0\x8c\x46\x9a\x65\x16\xec\x73\xf4\x95\x0f\x6e\x86\x17\x70\x4a\x6d\x69\xcc\x26\x79\x8a\x64\xa1\x5e\x16\xec\x08\x22\x0b\x2d\xeb\xb8\x63\x4b\x73\x73\x63\x96\x79\xf8\x2b\x1e\xb3\x34\x91\xbb\x2d\x13\x41\x76\x6a\xbf\x4f\x33\x19\x3b\x22\x85\x7e\xcd\x9e\x02\x9e\x94\x49\xa1\x99\x88\x3d\x52\xa7\xd1\x8d\xfd\xe1\x3f\xa6\x79\xd9\x3f\xf9\xc3\x5f\xda\x76\x40\xcc\x6e\x5d\xf7\x7f\x20\xb5\x5d\x10\x62\x65\x5d\xc2\x53\x55\x1b\x3b\x54\x2a\xbc\x0a\x7e\xf5\x64\xa2\xa1\x05\xd2\x29\x6b\xf6\x15\x10\xc1\xea\x33\xe0\x4c\x05\xe3\x50\x29\x01\xdc\x6d\x20\x62\xbd\x72\xe6\x7b\x6e\x71\xf6\x9a\x19\xe4\x53\x66\xdf\x49\x5b\x41\xe5\xd0\xfe\xb5\x94\x7a\x33\x25\xe8\xa9\x0a\xa7\xc9\x7d\x6a\x24\x2a\x9d\xec\xbc\xcb\xec\x0b\xa8\xfe\x12\x74\x41\xf6\xf8\xa8\x20\x51\xc6\x6c\x80\x8c\xb2\xbb\x5b\x66\x44\xf0\xe4\xe5\xa1\x0b\x72\x89\xd9\x8a\xe6\x89\x56\x04\xa7\x65\x50\x97\xc5\x2d\x77\x1a\x2d\xc9\x9d\xe1\x95\x33\x7b\x73\x36\x40\x9c\x7b\x97\x68\x90\x5b\x1d\xff\x2c\x0a\xa1\xa0\xdb\x65\x5b\x9c\xbc\x1d\x9f\x70\x85\x7b\x6c\x42\x7e\xb4\xa2\x9c\x01\xc8\x8d\xf4\xd3\xa1\x3d\x22\x8c\x60\x0c\xd6\x9b\xca\xc0\xc1\x7d\xcc\x45\x94\xe4\xb1\x33\x70\x46\xd4\x08\xcb\xd0\x41\xd9\x0d\xc1\x43\x5a\xc8\x62\x4a\xd0\xdd\xcb\x36\xef\xca\x2a\x70\xe7\x61\xd8\x2a\x18\x31\x8c\xa9\xec\x3e\x78\xb9\x83\x76\xad\x53\x3f\xec\x1d\x30\xd4\x29\xe8\x16\xdb\x96\x09\x79\xe0\x0f\x56\xb1\xe8\x5d\x4f\x32\x46\xcd\x6e\x8a\x6e\x08\x5d\x53\x2e\x82\x24\x8b\x64\x82\x06\xa9\xe4\x8e\xee\x54\x23\x3e\x01\xbd\x45\x0e\x89\x60\xb7\x2c\xab\x50\x5d\x50\xc9\x32\xb0\xca\x52\x89\x05\xc2\xe0\xe8\x28\xec\xaa\xa9\x54\x8a\x2f\x13\x37\x70\xe9\x0e\x67\x3e\xb8\x4a\x59\x14\xbe\x76\xe3\x44\xda\x1d\x04\xbb\x2f\xf8\xad\x77\xe7\xf0\x95\xbb\xf9\x2b\x9c\x1c\xb1\xef\xf6\xa0\xb4\xcc\xe8\x9a\xb9\x9f\x94\xa6\x3a\x47\xc4\xa0\xe5\x8f\xc5\x17\x9e\x4d\xe6\x86\x8b\xd8\x70\x23\x87\xd2\x34\xc9\x33\x9a\x94\xbf\x44\x52\xa0\x21\x5e\x1d\x93\x1f\x7f\x32\xbf\x98\xfe\x59\x6c\x03\x6d\xed\xaf\x0b\x31\x99\x4c\x8a\xff\x3c\xb3\x31\x10\xc7\x24\x02\xe6\x70\xa4\xd9\x36\x85\x72\x56\x47\x37\x71\x3c\x89\xb2\x58\x4d\x77\x74\x9b\x2c\x04\x4d\xb9\x0b\xf0\x25\x34\xe5\xec\x5e\x33\x01\xdd\x4e\x6f\xfe\xa4\xa6\x5c\x1e\xdd\x7e\xb5\x10\x08\xe2\x69\xae\xb4\xdc\x5e\x32\x34\x41\x9e\x31\xb8\x52\x02\x7b\xaf\x84\xd1\x82\xe2\x8c\xa0\x13\xb6\x40\x87\x65\xc5\xb4\x9a\x46\x59\x3c\x4d\x33\x69\x10\x87\x40\x4d\x65\xb6\x5e\x08\xc3\x0a\xe1\x3b\x90\x6f\x8e\x49\x4b\xb3\xaa\x1d\x0b\x01\xaa\xfb\x56\xe3\xbb\x84\x2b\xfd\xb7\xe0\xfb\x77\x5c\xe9\x2a\x8e\x1b\x50\xda\x05\xe4\x62\x9d\x27\x34\x6b\x36\x30\xef\x81\x2f\x66\xb7\xec\xa3\xb8\x11\xf2\x4e\xbc\x35\x84\xa7\x8e\xc9\x8a\x26\x0a\x08\x40\x45\xd2\xd0\xc8\x69\x92\x2b\x8d\xf7\xd3\x5b\xb7\x54\xe6\x8f\x89\xc5\x90\x41\x2c\x0c\x16\x6d\xd8\xb6\x8c\x40\x96\x29\x13\x27\xf3\xd9\xf7\xdf\x5c\x55\x7f\xaf\xed\xa2\x86\x5f\x79\x25\xb2\x03\xfc\x13\x68\xb6\xe4\x3a\xa3\xd9\x8e\xcc\xe6\x44\xe5\xcb\x89\x9b\xc6\xd1\xe9\xec\xec\xb2\xc2\xc2\x50\x23\xb2\x31\x4c\x0f\xe5\x24\xb8\x0d\xc3\x55\x0e\xb9\x9a\x96\x18\x64\x68\x9d\x41\xb6\xe4\x96\x53\xcf\x2d\x0f\x1d\x2e\xf0\x53\xbf\x5f\xb9\x6a\x02\xea\x6c\xf6\x85\xfa\xc7\xdf\xb5\x2d\xea\x59\x8f\x4a\xab\x9b\xb4\x9a\x35\xc5\xe0\xcd\x7a\xa7\x60\x34\x07\xf2\x15\x8b\x7e\x16\x5b\x5c\x23\x63\x01\x36\x69\xcf\x38\x1a\xd2\xbb\x19\x14\x0a\xbb\xd5\xa7\x20\x01\xb1\x4c\xb9\x3b\x72\x24\xc5\x2d\xcb\x34\xc9\x58\x24\xd7\x82\xff\xab\xe8\x5c\x39\x7f\x19\xd8\x6e\x0d\xa9\x91\x0b\xcd\x32\x23\x2b\x01\x8f\x43\xab\xc0\x96\xee\x48\xc6\xcc\x30\x24\x17\x5e\x87\xce\x5b\xef\xbd\x91\x91\xb9\x58\xc9\x63\xc8\x67\xa5\x8e\x8f\x8e\xd6\x5c\xbb\x0d\x1a\xc9\xed\x36\x17\x5c\xef\x8e\xc0\x82\xcf\x97\xb9\x59\x92\xa3\x98\xdd\xb2\xe4\x48\xf1\xf5\x84\x66\xd1\x86\x6b\x16\xe9\x3c\x63\x47\x34\xe5\x13\x80\x5d\x00\x4b\x99\x6e\xe3\x67\x99\xdd\xd1\xea\x79\x88\x01\x36\xf9\x26\x6c\xbe\xae\x65\x30\xbb\xcf\x06\x81\xe3\x25\x00\xa5\x98\x02\xdb\xee\x24\xbf\x3c\xbf\xba\x26\x6e\xf4\x60\xc0\x3c\x22\xbf\xfc\x52\x95\xeb\x60\x90\xc6\xc5\xca\x89\x6b\x60\x34\xf1\xb5\x1b\x28\x2b\x24\x3c\x20\xb9\xab\x7c\xb9\xe5\x5a\x79\x89\x90\xe4\x94\x9c\x16\xd6\x94\x3c\x8d\xa9\x66\xf1\x94\xcc\x04\x39\xa5\x5b\x96\x9c\x52\xc5\x9e\x7c\x15\x40\x66\x9d\x18\xdc\x0e\x5d\x87\x96\xe4\x05\x6d\xaa\xe2\x82\xd1\xb6\x2c\x5b\x7d\xa3\x9a\x03\xb7\x1a\x43\xe7\x42\x2e\xcb\x24\x07\x94\xd4\xb9\x6f\xf9\xb8\x85\xad\x9d\xc9\x1d\x06\x98\x96\x68\x8f\x46\xa1\x49\xe7\x90\x3a\x9b\x13\xc7\xd2\x90\x83\x2d\x59\x22\x0d\x6d\x49\xab\x80\x62\x21\xb3\x7d\xbb\x98\xf2\x7b\x12\x14\x7e\x79\x09\x61\x23\x55\xe9\x80\xf5\x04\xd2\x81\x1f\x65\x55\x97\x0c\xfc\x77\x4d\xa9\xa0\x02\x59\x5d\x22\xf0\x5f\xfe\x92\xd2\xc0\x78\x52\x8e\x27\xa5\xbf\x04\xe3\x49\xf9\xc5\x4e\x4a\x9f\x7b\x0c\x3b\x25\x9b\xbc\xa8\x7c\xf6\x3f\x27\xd9\x7d\x0a\xee\x26\xb3\xf9\x10\x25\x97\x59\x69\xfb\x41\x35\xe8\xf0\xc5\x6c\x7e\xfb\x2d\x6c\xab\xd9\xfc\xf6\xf5\x4b\x77\xdd\x76\x64\x11\xbc\x4b\xcf\x50\x77\x3f\x33\x7b\x73\x45\x23\x06\x26\xba\xc5\xe2\xa0\x66\x0d\x29\x94\x52\xa0\x5e\x48\xa4\xbc\x71\x5a\x41\xee\xbe\x0c\x2a\x83\x9d\xd7\x8f\x17\x0c\x39\x9b\x57\xfc\xf0\x30\x7e\x1b\xec\x74\x56\xdd\x01\x4c\x84\xea\x29\xf8\xb6\x07\xcf\xf5\xc5\x42\x83\x8e\x24\x57\x0d\x27\xf9\x5a\x5a\x00\x88\xc3\x2c\xfc\x49\x64\x66\x35\x7a\xa1\x4e\xeb\x55\x9c\x17\x0b\xd3\x9f\x2d\xdf\x5c\xcc\xdf\x32\x3f\x55\x1d\x95\x8b\x70\xd2\x81\xe2\xea\xe6\xaf\xd3\x14\x02\x80\xcd\xb1\x53\x71\x59\x46\x67\x89\xf3\x92\x14\x50\x03\x12\xea\x96\x2b\x54\xb7\x62\x5a\x2a\xaa\x49\x9a\x67\xa9\x34\x3b\xf5\xc5\x6c\x65\x3d\xa4\x36\xac\x5c\x1a\x33\x8e\x73\x81\xec\xf6\xb3\x72\xaa\x47\xc9\x70\xf9\x13\x46\x33\x51\x2c\x9b\x5d\xc1\xb2\x5f\x03\x40\xae\x40\x3d\xde\xea\xdb\xb1\x58\x68\xb7\x1c\xd3\xa0\x72\xfb\xd1\xe5\x37\x52\x42\x78\x11\x76\xfa\xa9\x6d\xa9\x73\xcc\xa4\x69\xe8\xfe\xff\xa0\x66\xdf\x9a\x5d\x4a\x77\x9f\x22\x3b\xc9\x3b\x2e\xf2\xfb\x6e\xaa\x2f\x0c\xcf\x05\x41\xff\x19\x48\x6f\x9b\xea\xdd\x94\x94\xc3\xf8\xb6\x6a\x34\xdc\x72\xd5\xc9\x59\xcc\xb3\x96\xb7\x2c\x13\x68\xf2\x29\xdc\xe0\xe4\x61\xe9\xfa\xb6\xc9\x64\xbe\x46\xf7\x06\xa7\xc1\xb5\x42\x75\x77\x74\xbe\x5d\x5c\xa0\x4b\xd3\xb0\xc8\x4d\x80\x35\xbd\x63\x64\x0b\x40\x93\x7f\x26\xcc\xcc\x1f\x37\x76\x6c\x88\xe4\x16\x37\x62\x38\x5b\x45\xe9\x54\x74\x0b\x65\xd6\x77\x25\xfa\x0e\x89\xaf\x0b\x96\x0a\x43\x1a\x8e\xb4\x04\x17\x79\x03\x8b\x53\x72\x84\x3d\x0c\x12\x19\xd1\xa4\x88\x6f\xb7\xfa\xd3\xd9\x8a\x54\xf8\x99\xe3\x65\xde\xfa\x0e\x42\x35\x6c\x24\x87\xef\x8a\xcb\x21\x4c\x1f\xf8\x89\x99\xbb\x95\xb5\x00\x73\x1e\xfa\x83\x4c\xc6\x91\x51\xb9\x87\x0a\x5c\x57\x60\x06\x12\x9c\x90\x3b\xc3\xe6\xaa\xcc\x39\xcc\x0f\x50\x99\x3b\xa9\x2c\x7f\x60\xb0\x22\x24\xb1\xd4\x0b\x9b\x9d\x1d\xec\x54\xf8\xcc\x08\xb2\xe9\x66\xe0\x2f\x71\x18\x80\xaa\x00\xe1\x90\x50\xe0\x1a\x4d\xf1\x8f\x58\x73\xb6\x7f\x76\x15\x45\xd4\xcb\x5c\x63\x18\x55\x65\x2e\x25\x19\x66\xe1\xb3\xa3\x28\xf2\x42\xe5\x61\x0e\x43\x15\x2c\x2d\xd3\x9b\x57\xe6\xbf\x2f\x6d\x48\x10\xd8\x19\x59\x4c\x0c\xdc\x7f\x26\x5c\x13\xae\xc4\x73\x5d\x2a\xa5\xfb\x4f\x72\x82\x9b\x39\xcd\xa4\x91\x5e\x3c\x12\x40\x1c\x7b\x5c\xa1\x4a\x87\x25\xd4\xc1\x33\xd7\xc5\x6d\x1d\xe3\x5c\x21\x4c\x12\xa4\x1f\x0c\xa5\x44\x33\x95\x91\xb8\xb6\x69\xc2\xb6\x86\xd6\x90\xd5\x97\x8c\xc3\x07\x5a\xfd\x39\xbc\x7a\x5c\x73\x9a\x24\x3b\xf2\xff\x1a\x1c\xa7\x19\x9b\x80\x7b\x4c\x61\xf4\x99\x9b\x45\x62\x36\xe7\x71\xc1\xf6\xa3\x7c\xdb\x76\x27\x30\x8f\x2b\x71\x8f\x02\xbe\x2d\xa5\x2f\x45\xd0\x7a\xd0\xc5\xbc\x45\x38\xe1\x5d\x43\x31\x60\xda\x59\xe7\x7d\xf0\x4d\x5a\xed\xdc\x81\x6f\x21\x86\x06\xdc\x5c\xb4\x45\x10\xd9\x5d\x40\xb4\x05\x0e\xd7\x8c\x1b\xe6\xb0\xaf\xc8\x83\x9e\x13\x2f\xee\x5d\x1b\xd3\xea\x12\x20\x07\x1d\x82\x97\x0c\xf5\xad\x4c\x44\xe8\x49\x55\x88\x1b\x76\xc1\xad\xaf\xeb\x1e\xa7\x63\xaf\xe7\x6b\xa7\xc7\x6b\xbf\x97\xa4\x99\x56\xcf\xe7\x9d\x01\xab\xbf\xa6\xc4\x66\x4f\x95\xc7\xaa\xc7\xff\x53\xb4\x30\xec\x09\x20\xb7\xe5\x4d\x47\xa6\xba\x07\x7b\x8d\xa6\x28\xc6\xf6\x92\xfb\x49\x19\x1c\x8e\x1b\x8e\xc3\x39\xb7\xf2\xa4\x63\xec\xc9\x02\xd1\x9e\xff\xb3\x0c\x16\x31\x47\x6d\x71\x07\xc1\xbc\xef\x16\x1c\xcf\xf1\xd2\x5d\x09\xd0\xa3\xb0\xad\x53\x8c\xb6\x48\x53\x46\xb3\xc2\x97\x0f\x82\x79\x48\x01\x57\x69\xee\x76\x3d\x3b\x9f\xcc\x52\x5e\x9f\xb4\x7a\x2c\xd6\x76\xe5\xa8\x6d\xfc\xd5\x6a\x1b\x79\x4a\xb7\xcb\x44\x46\x37\x4f\xa1\x6a\x9c\xcd\x4f\xde\xbf\x31\x9d\xd7\xf5\x8c\xc5\x8b\xa6\x92\xb1\x04\xa8\xae\x61\x2c\xde\x8c\xea\x45\x0b\xe5\xa8\x5e\x1c\xd5\x8b\xbf\x1f\xf5\x62\xc1\x34\x06\xe9\x16\x45\x9d\xfb\x94\xcf\xfe\x9a\x45\x73\x61\x31\xb8\xeb\x3d\xf7\x6d\x3b\x77\x27\x04\x76\x65\x9d\x99\xb8\xc2\x3f\xdd\xbd\x11\xc3\xf5\x98\x0e\x2a\x90\xb8\x2e\xc2\x06\xbc\xc2\x24\x64\x71\x60\x6e\xc7\xc7\x58\x3c\xc4\xfc\x13\x24\x23\x70\x62\x5d\x1c\x40\x87\xe0\x1b\xca\xf4\xa1\x37\x60\xcb\x55\xd7\xb4\x84\x79\x61\x29\x1c\xb8\x77\xef\x29\xfa\xd3\xc4\x5c\xd8\xda\x92\xad\x57\x31\x63\x4e\x6c\xe0\x58\xe5\x37\x84\x8b\x49\x6e\x23\x3c\x9c\x18\x02\x10\x4f\x89\xe0\x09\x54\xb5\x69\x89\xb3\xd8\x32\x8a\x72\x4e\xd9\x1b\x81\x3d\xc6\x18\xaa\x05\x85\x14\x13\xaf\x0f\x73\x9b\xe6\x22\x66\xf7\x84\x1f\xb6\xe9\x14\xec\xfb\x22\xee\x85\x1b\x26\x68\x91\xef\x0d\xd3\x00\x16\x38\x64\x4b\x9f\xc8\x57\x6c\x9f\x38\x80\xeb\x51\x29\x19\x71\x48\x1c\x42\x35\x6e\x47\x56\x28\x74\x4f\x8a\x5f\x82\x22\xa1\x41\xe5\x03\x44\xaa\x8e\x1b\xc0\x33\x72\xfd\xe1\xec\xc3\x31\xe6\x3f\x12\x79\x92\xd0\x25\x8a\x95\x5b\x2a\x72\xb8\xfe\xd2\x38\x06\xe9\x72\x4a\x7e\x60\xee\x88\x41\x3e\x44\x8a\x04\x09\xd9\x64\x1d\x4e\x08\xfa\xcc\x50\xd8\x86\x8a\x38\x61\xe4\xc7\x9f\xfe\x8f\x61\x7e\xb8\xd9\x92\x9d\xcd\x64\x12\xbc\xe0\x3b\x40\xda\xee\x0d\x1d\x82\x7a\x89\xd3\x5e\xc2\xf4\xb0\x0f\x5e\xbb\xb4\xa0\xd4\xc2\x4f\xc8\x31\x32\x6f\xd5\x42\xf0\x82\x5f\x75\x95\xbe\x4b\x2e\x30\x25\xd7\x92\xac\xcc\xc1\xe3\xad\x37\xea\x4e\x30\xf6\xaf\xfc\x30\xc8\x11\xcc\x46\xa9\x44\x10\x54\xe9\xf2\xb9\xb2\x55\xa0\x1c\x09\x79\x60\xb4\x06\xca\xd3\x00\x61\x32\xd4\x95\x14\xf7\x82\xfd\xa9\xad\xf7\x42\x8d\x94\xf0\x89\x87\xaf\x7b\x64\xd0\xad\x5a\x31\x23\x68\xd3\x2c\xc4\x92\xed\xe4\xf6\xab\xf0\x30\xe4\xfa\xdb\x17\xc6\xf8\xe0\x7b\x65\xc4\xe3\x5e\x57\xf3\x6b\x47\x49\xcf\x15\x39\x9d\x9d\x5d\xee\xc9\xab\x63\x96\x30\x1d\xbc\x61\x57\x46\x39\xc3\x66\x76\x2f\x14\xc2\xa0\x8d\xd3\x2a\xdc\xd3\xef\x64\x76\x43\x33\x99\x1b\x72\xf6\xca\x14\xb4\x28\x40\x0d\x5d\x79\x01\xeb\x27\xf3\x19\x3a\x2a\x2f\x77\x08\x16\xf2\xd5\x04\xe3\x6e\x32\xa6\xf3\x4c\x10\xa8\x26\xb2\x4a\x78\x18\xd3\x2c\xcb\x64\xe6\x82\x6a\xca\x63\x75\xc9\x98\xf0\xc4\x23\xed\x38\x95\x8b\x07\x67\xba\xe0\x68\xfb\x87\xa4\xfd\x33\x67\x22\x62\x17\x10\x5d\x17\x44\x23\x58\x09\x8e\xc9\xab\x1e\x14\x1b\x06\x6a\xae\x84\x60\xd6\xc2\x4e\x6d\xcc\x1e\xea\x95\xb9\x72\x53\xc0\x68\x77\xcd\xc3\xda\x8f\x72\xea\x5c\x91\xbb\x8c\x6b\xcd\x84\x55\x0c\x54\xce\x2b\x70\x64\x56\xd2\x0e\x8a\x17\x78\x1c\x36\xcc\x74\x01\x12\x5f\x80\x21\x36\x1a\xce\x00\x02\x3a\x0d\xad\x0a\xbf\x7b\x9b\x71\x3a\x63\x09\xa3\xaa\x65\xeb\x80\x2c\x76\x48\x52\xaa\x3c\x43\x63\x75\xe2\xde\x71\x08\x5c\xb4\xca\xdc\x82\x9d\x26\x89\xbc\x53\x24\x57\xbe\x6a\x19\xbc\xba\x95\x26\x94\x64\x14\x33\x9d\xdb\x5c\x5d\xe6\x8c\x66\x42\xe5\x16\x01\xb3\x60\x9d\xca\x0d\x05\xcd\x36\x10\x11\x4e\xc8\x9c\xce\x22\x26\x19\x9b\x58\x60\xcc\x2d\x0a\x32\xf3\x41\x30\x24\xb6\x71\x62\x7a\x80\xa2\xb0\x4c\x0b\x1c\xbd\xaf\xbf\x6d\x23\xb8\x96\x73\xb9\x4a\x70\x6f\x65\x56\xb2\xf4\x00\xf5\x0d\xe6\x76\x3d\x20\xf5\x0a\x0b\xb5\xb2\x1d\xa9\x27\xd3\xb1\xb8\x90\x9b\xbc\x24\x10\x48\x42\x10\xd2\xf2\x59\x54\x57\x92\xc3\xd4\x67\x26\xce\xc6\xda\x4a\x23\xa4\x8c\xb3\xbd\x61\x3b\x97\x46\x23\x55\x87\x44\xe1\x3d\xf8\x86\x41\x6c\x40\x44\x95\xb6\x55\xd6\x80\x81\xb6\x32\x88\x30\x7f\xc7\x7c\x30\x27\x03\x2f\x0a\x57\x95\xd6\x2e\xc2\xb7\xb8\xb1\x18\x78\x62\x73\xa7\x44\xac\x1a\x1a\x14\x41\xcb\x78\x22\xc5\x9a\x65\xc8\x96\xad\x9d\x11\xcb\xd7\x7c\x54\xd8\xdd\xa9\x14\x2b\xbe\xae\x8f\x67\x36\x09\xa3\xa1\xb0\x80\x4e\x1e\x98\x8b\x62\xa5\xfb\x26\xf8\xb1\x6c\xea\xa2\xa1\x32\x8c\xbd\x76\x9a\x51\x5f\x50\x42\x9d\x7f\x4b\xa8\x87\x91\xea\xab\xa2\xd4\x23\xca\xbe\xad\x87\x72\x8b\x4a\x7a\xe2\xc3\xdd\x78\xd5\x22\xb7\x4f\xe0\x80\xaf\xff\x56\xa5\x98\xfa\x5b\x0f\xd7\xa3\xa2\xf3\x91\x14\x9d\x11\x6c\x86\xa7\xd2\x74\xe2\x56\x0b\xa9\x3a\xf1\x4d\x58\xd7\x69\x61\x0a\x29\x3b\xa3\xa2\xc3\x51\xdb\x39\x6a\x3b\x47\x6d\xe7\xef\x4e\xdb\x89\x7c\x63\x0f\x75\xa7\xcf\x82\xca\xe7\x01\xfa\xce\x5c\x4b\x2b\x6e\x32\x10\x48\x42\x67\x6b\xa7\xa8\xb0\xa5\xf7\xf8\xe1\x9c\x65\x7f\x05\x9d\x65\x9f\x24\x59\x6d\x0f\x4a\x53\x21\xc5\xe4\x5f\x2c\x93\x87\x4e\x85\xb6\xa5\xf7\x9e\xa8\xe8\x9b\x89\x6a\xa0\x41\x76\x35\x2a\x20\x65\x47\xa1\xe3\x84\xdb\x54\x8b\x9a\x73\x4b\xef\xf9\x36\xdf\x1e\x93\xaf\xbf\xfa\xf6\xbf\xbf\xfd\xd3\x37\xaf\xbf\xfd\xef\x40\x23\x2e\xb0\x51\xe0\x8a\xd7\x2d\xcb\xf7\x09\x87\x1d\xb8\x6c\x17\x44\x1a\x8b\xb4\x8f\x84\x31\x8a\x11\x0f\x16\x23\x50\x7f\xf5\x54\x62\xc4\x5f\xa1\xf7\x90\x18\x81\x6f\xc2\x62\x84\x85\x29\x24\x46\x6c\x8a\x0e\x47\x31\x62\x14\x23\x46\x31\xe2\x77\x27\x46\x20\xdf\xd8\x43\x8c\xf0\x59\x50\xf9\xec\x2f\x46\xc0\x01\xfd\x39\xca\xaa\x41\x97\xf7\xb0\x3e\xa6\x5d\xdf\xdd\x29\xb7\x20\xb3\x9c\x9d\xb5\x7e\x17\xd2\xae\xb7\x1e\xd1\x01\xfb\xeb\xa4\x18\x62\x3c\x8f\x1f\xe5\x3c\x4e\xa5\x4c\x9e\xe6\x2c\x9e\x4b\xe7\x3e\xe8\x9f\xc3\xe6\xd7\xd0\x19\x0c\x70\x34\xcf\xdf\xd4\x76\x32\x9e\xbd\xe3\xd9\x3b\x9e\xbd\xbf\xb3\xb3\xd7\xf0\x8a\xc1\xe7\xae\x69\xfc\x90\xbb\x3a\xa6\x9f\xfb\xa8\x06\xf8\x3a\x14\x4d\x9d\xd3\x86\xc2\x7c\x57\x68\x7c\x20\x86\x57\x15\x7e\x47\x2e\x34\x0e\xf2\xad\x86\x0e\x67\x70\x35\x2a\x12\x76\xb9\xc8\xac\xc3\x32\xe1\x96\x96\xe4\xc7\xc5\xc1\x75\x2e\x04\x4b\x20\xcf\xdb\xc1\x0f\x36\xb2\x63\x71\xf0\x13\xcc\x7b\x49\xa3\x9b\x09\x64\xb0\xd4\x7c\xc9\x93\xc6\x25\x95\x3c\x4d\x5c\x1b\x1c\xcb\x57\xfc\x5f\x83\x82\x27\xd0\x18\xa5\xf8\xbf\x40\x87\x90\x2b\x8c\x78\x29\x23\x11\x09\x55\x8a\xaf\xc5\xd6\x6c\xa6\xd6\xba\x18\x36\x75\x9a\x4c\xa6\xe4\xcc\x43\xcf\xd7\xaf\x6d\x67\x36\xe0\xf4\xab\xaf\xbf\x76\x3f\xbc\x6e\x35\xce\xb4\x88\x43\x43\x7d\x08\x60\x91\x1f\xe2\x40\xc0\x15\x5d\x26\xec\xcd\x77\xf3\xf3\xfb\x96\x98\x86\x2a\xd3\x3a\xc3\x0f\x08\x83\xe6\x86\x45\x65\x32\x2f\xd2\xcb\x03\x46\x66\x73\x62\xa8\xfe\xb9\x75\x69\x20\xf2\x36\xec\x9f\xf4\xe6\xbb\xf9\x94\xfc\x78\xe6\x2c\xec\x70\x68\xfe\x14\xa8\x63\xdb\x29\xda\xd9\x09\xf4\x9a\xae\xc0\xa0\xed\x1a\x83\xe6\x29\xcb\xcb\xc8\x55\x23\x1f\x97\xce\x0a\xb8\xf6\x65\x50\x6a\x08\xf8\x72\xba\x40\x00\x7b\x42\xcd\x53\x9e\xf6\xa3\xba\xb0\x15\x1e\x5b\xe6\x0d\x19\x07\x39\xd6\x67\x2f\xa3\x5c\x4f\xe6\xb3\xdb\xaf\x60\xd7\xdd\xd1\x2c\x0e\x42\x5b\xd9\x8d\xe6\x70\xd0\xf6\x74\xf1\x7b\x85\xa9\x23\x33\x39\xac\xbe\x0a\x22\x00\x43\x7b\xf1\x94\x36\x1b\xc8\x00\x35\x0d\x2c\x5f\x8f\xe7\x10\x13\x6d\xeb\x17\x5e\x43\xdb\xbe\x5c\x42\x83\x4b\xa2\x81\x1f\x99\x39\xf9\x9c\x2e\xdc\x27\xc4\xad\xc5\x2c\xe1\xb7\x2c\x2b\x2b\x2c\x99\x9f\x8a\xfa\x83\xaa\x96\x67\x3d\xb8\xc2\xa4\x6f\x95\x09\xa4\xfc\x0c\x46\x73\x35\xe6\x76\x0d\xcc\x7a\x36\x87\x0f\x20\xc5\x14\x58\xaf\x85\x97\xa7\x6e\x71\x80\xa9\xeb\x5c\x3d\x51\xa8\x52\x3c\xc1\xca\xb9\x8b\x83\x29\x21\x27\x6d\xf3\x35\x7d\xd6\x7a\x28\x3d\x48\x72\x65\x47\x2e\x71\x68\xd6\xd6\x6c\x6b\xa0\x91\xd6\x8a\xf1\x1e\xbe\xaa\xb1\xf6\x0d\xdc\x11\x72\xe2\xc1\x50\x85\xbb\xad\x77\x00\xd0\x11\x7a\x1d\xc0\x3b\x97\x05\xd0\x87\x01\xe3\xdd\xcc\xee\x68\xeb\x93\x96\x55\xd0\x6c\xc5\x61\x27\x85\xba\x3a\x19\xa6\x73\xe1\x56\xa0\x0c\x12\xee\xac\x1e\xf9\x82\xaf\xaa\xc7\xe6\x4b\x03\x45\x89\xeb\x4e\xd2\xe9\x3e\xe8\xc2\xb7\x60\x43\xf1\xef\x07\x44\x09\x9e\x3a\xf9\x04\x6d\x8e\x79\x56\xca\x26\x81\x05\xef\x26\xf5\x59\x6d\x8e\x87\xae\xc4\x0b\x57\xe8\xd7\x00\x88\x42\x3f\xb2\xc5\xc1\x05\xbb\x85\x8c\xf0\x2f\x20\xfd\x7a\x75\xb0\x50\xef\xa6\x07\xcb\x9b\x43\xb5\x05\x3b\xc3\x25\xa9\x9e\xc8\x5c\xaf\x25\x17\xeb\xdf\x0b\x4b\xed\xe4\x3a\x82\xea\x0f\x03\xf1\x81\xd9\x5a\xcb\xf6\x25\x53\x75\x6c\x11\x72\xa2\x7a\x85\xd3\x48\x67\xc4\xb9\x15\x88\xcd\xbd\xc3\xdf\xff\x0d\xe6\x2a\x73\xad\x78\xcc\x8a\x0b\x66\x21\xa2\x86\x3a\x85\xb2\x32\xea\x9f\x39\xcb\x68\x1c\xac\x11\xd4\x8d\x0d\x19\x0f\xae\x06\x71\x82\xde\x67\x56\x68\xb7\x49\x01\x0d\xb5\x58\x97\xde\x22\xa2\x19\x38\xcd\x72\x87\x39\x00\x43\x30\x17\x25\x95\xf6\xa3\xe5\xdb\xfb\x84\x8a\xcf\xdc\xd9\xdf\xff\xfd\xdd\xc9\xc5\x17\xdb\xda\x30\x5a\x50\x36\x2e\x00\x78\xf0\xde\x6e\x55\xc0\x35\xfd\x6e\x46\x3d\xdb\x9e\x7a\x36\xb8\xc5\x57\x82\x3c\xaa\x0e\xff\xd3\x9b\x7c\xc9\x96\x39\x4f\x62\x96\xc1\x00\x6e\xf8\x17\x70\x55\x87\x74\xec\xce\x5b\xf4\x9a\x6f\x99\xd2\x74\x9b\x1e\x83\x73\xbf\xaf\xc6\x43\xf5\x18\x8e\xf3\x24\xda\xbc\xcb\x72\x80\xa6\x52\xcf\x7b\x19\xd2\xed\xf9\xc0\x35\x55\x7c\x59\xb5\xe7\x51\xd3\x37\x6a\xfa\x46\x4d\xdf\xef\x4c\xd3\xe7\x31\x90\xc1\x0a\xbf\x06\x47\x2a\x9f\xfd\xd5\x80\x96\xe9\xc4\x90\xc3\xb8\x4f\x28\xb8\xf4\x1b\x57\xab\xd9\xe3\x4f\x54\xc4\x47\x15\x2d\x57\x58\xb5\x01\x7e\x36\x0d\xc5\x08\xbb\x8f\x92\x3c\xb6\x65\x95\x05\xbb\xf3\x5d\x66\xc7\x54\x00\x2d\x47\xfc\x53\x19\xc8\xcc\xe9\x5c\x1e\xd8\xaa\x22\x05\x3e\xc5\x41\xfb\xb7\x7c\xc9\x4e\xcb\xf1\x4e\xfd\xf1\xea\xe7\x6e\x57\xdb\xe6\x31\xdc\x39\x93\xfa\xa9\xdc\xd5\x78\x3c\xa4\x2d\x94\xe3\x21\x3d\x1e\xd2\xbf\x9f\x43\xba\x8b\xdb\x34\xcf\xec\x4a\xad\x8d\x3a\x82\xbd\xf8\x23\x8f\xc9\x54\xaf\xd8\xc3\x8f\x6e\xaf\x8b\x21\xb7\x79\x37\x1a\xaa\xb7\xb1\xfa\x89\x1b\xd9\xd6\xed\xb9\xe5\x71\x4e\x93\x9e\xe2\xaa\xde\xb0\xcd\xd7\x3d\xaa\xf8\xbe\x7a\xa9\x2d\x55\x52\x5b\x40\xae\x96\x4c\x2d\xe1\x6a\xad\x51\x7a\x6e\x35\xfb\x10\x40\x0a\x3a\x87\x43\x08\xee\xd4\x12\x32\x07\x68\xe9\xf4\x08\x2d\x3d\x0c\xa8\x76\x6b\xd8\x94\x88\x78\xc2\xb2\x39\xcb\xb8\x6c\x8f\x55\xae\x33\x87\xcb\xda\x87\xce\x77\x39\xc5\xbf\xb4\x34\xff\x82\x6c\x0e\x6e\x08\xde\x1a\xe4\xe8\x9e\x22\x26\xd2\x65\x98\xa3\x9a\x82\x2c\xe1\x5b\xc5\xfe\xb8\x0d\x99\xc4\xdc\xd3\x1f\xdf\xdc\x17\xdd\xdc\x92\x6d\xae\x81\x81\x0b\x19\x77\xaf\xb4\x79\xff\xeb\x58\xe4\x8d\x97\x00\x70\xe8\x02\xfb\x49\x03\x4b\x33\xba\xda\x89\xc8\x59\x04\xe0\x84\x84\x34\x96\x65\x1e\xf7\xae\xd5\x3d\x73\xb6\xc6\x87\xce\x74\xe0\x6c\x89\xf5\xec\x3f\xcd\x18\x6d\x49\x09\xdc\x32\xe7\xe7\x27\xc5\x67\xe5\xca\xe6\x5a\x6e\xa9\xe6\x51\x59\x83\x4b\xf6\x16\x85\xaf\x62\x05\xae\x42\xec\x96\x65\x3b\x6b\x49\x29\x89\xd9\xe1\xa4\x8b\xa4\xc9\xe0\x2a\xc5\x43\x6a\x14\x27\x8c\xde\x7c\x97\xd1\x88\xed\xb9\xdf\xdf\x55\xbf\xab\x6d\xf7\x6a\x64\xa6\xa3\xf9\xae\x39\x81\x06\x1c\x2b\xaf\x43\xf1\x46\xea\x9b\xcc\xca\x28\x77\x03\xae\x39\xc3\xaf\x90\x4e\x02\x11\x09\xd5\x2e\xad\x31\x7e\x36\x27\x6b\x9a\x2d\xe9\xda\x80\x93\x24\x2c\xc2\x80\xda\x12\xf1\x5f\x7d\x2e\x1b\xf9\x3d\xb2\x4e\x02\xfb\x1f\x6a\x45\x76\x6d\xbf\xea\x6c\xaf\x8a\x4f\x7c\x6f\x1c\x5b\x6a\x4f\x92\x48\xa6\xbb\x81\xe5\xd1\x81\xa3\x96\x05\x8a\xbc\xa4\x9e\xca\x9f\xa5\x65\xa8\x4f\x7b\x4a\x60\xc6\xbf\x21\xe7\x84\x4d\x10\xde\x71\x52\xd8\x9c\x9e\xbf\x8e\xb3\xe2\xf7\x47\xd5\x7d\x4b\x5d\x2d\x99\x39\x64\xc9\xab\xe5\x32\xbb\x96\xde\xf6\xdd\x06\xbe\x2d\x80\xe9\x93\xc6\x48\x03\xbf\x04\x0d\xb8\x5c\xcd\x3d\x52\x54\xd5\x96\x5c\xfb\xa6\x8b\x0e\x5c\xff\x6d\x73\x60\x35\x49\x6c\xa4\x84\x5f\x86\x12\xba\x43\x31\x96\xf9\xda\x26\x96\x9d\x0f\xf0\x1c\x3c\xab\xb5\x6f\x1e\x0b\x99\xc6\x84\x22\xd9\x2d\x23\x5b\xb6\x95\x59\x38\xbd\x95\x21\xa7\x34\x2f\xb2\xf6\x12\x23\xe9\x34\x4d\xd8\xf8\xba\x66\x7f\xee\x4e\xe6\xf2\xcd\xd7\x6d\x18\x68\x71\xce\x64\x3a\x8a\xbf\xff\xe6\x54\x6e\x53\x0a\x12\x57\x2b\xd1\x54\x89\xe5\x3c\xf8\x59\x8d\x64\x96\x4c\xdf\x19\x89\xd0\x8c\x71\xfb\x4d\xf8\xa6\xef\x3a\x28\x54\x42\xa5\xe0\xe8\x6f\x07\x5f\x0e\x7c\x15\xa4\x97\x2e\x3a\xd9\x30\x9a\xe8\xcd\xe9\x86\x85\xe3\x85\xab\x53\xfb\xab\xd7\xb8\x60\x00\x32\x73\xa0\xa8\xa2\xc2\xb5\xb9\x23\x60\xcf\xc1\xa9\x61\x07\x83\x84\x9c\x2e\xd8\x13\xb9\xbe\x32\x37\x11\xae\x77\x57\x51\xc6\x58\x28\xc7\x4e\x4d\xee\xaf\x7f\xe1\x96\x25\x91\x6b\xa2\xec\x1b\x42\x97\xf2\x96\xd9\xfc\x26\x89\x5c\xb7\x24\xf4\x63\xe8\x3d\x63\x15\xab\x4a\xc7\x32\xd7\xfe\x62\xcc\xc4\x4a\xee\x3b\xa3\x34\x93\x5b\x23\x4c\xe6\xea\x3d\xd3\x19\x8f\xd4\x90\xad\xf7\x7c\x1e\xfa\xca\xcd\xec\xfa\x74\x6e\x37\x9f\x73\x1a\x2f\x9b\x87\x26\xb6\xc5\x2e\x70\xa3\x66\x4e\xb3\xbc\xe4\x22\x06\x8d\x64\x0f\x05\xfe\xcf\xab\xff\xf9\xb6\x7d\xd2\xc1\x8d\xd6\xee\x07\xd2\xa6\xeb\x6a\x55\x26\x96\xa6\x9f\x16\x54\x75\xaa\x13\xe1\x6b\x4f\xad\x6b\xd7\xd5\xfc\x1a\xd0\xc2\xdb\xcb\xa1\xa7\x3b\x24\x33\xfd\x1c\xaa\xd3\xac\xf2\x04\x0d\x86\xf1\x16\x34\x93\x12\x42\xda\xcd\x4d\x0e\x18\x20\x26\xa2\xa2\x91\xce\x69\xc3\xbb\x08\x7b\xc4\xb5\xba\xa3\x45\x8a\x70\x97\x61\xdf\x7a\x8c\x6e\x65\x8c\x0e\xfc\x4b\x23\x8a\xdf\xf2\x4c\x82\x2b\x3b\xb9\xa5\x19\x87\x8d\xd8\x80\x17\xdd\x29\x6f\xf2\x25\x9b\xf8\xca\xcf\x34\x93\x11\x53\x75\x4d\x47\x57\xb9\xa6\x72\xb4\xef\x69\x50\xf5\xb9\x67\x9c\x60\xdb\xe9\x55\x59\xb6\xf3\xea\xa8\xf5\x9a\x04\x01\x04\xb4\x78\x89\x06\x91\x80\x09\xdc\xc4\x2a\xc9\xb1\x42\x01\x58\x01\x72\x21\xb8\x58\x23\x81\xec\x99\x55\x2a\xf3\xbf\xed\xb5\xea\xfa\x8d\x6b\x13\x5b\xad\xcc\x55\xff\x96\x55\xa8\x82\x2b\x37\x40\x68\x82\xbc\x6d\xa1\x65\x7c\x68\xb3\xc1\x6f\x59\xb6\x76\xc6\x8e\x93\xf9\xac\xb4\x75\x18\x89\x24\x7c\x24\xb7\x50\x59\x00\x2f\x3d\x52\x58\xb7\xd6\xbc\x81\x9c\xc7\xd4\x9c\x93\x3e\xed\xf9\x00\xf0\xc9\x00\x2d\x7a\x63\x12\xfb\x69\xd2\xbb\x44\xc6\xc7\x14\x97\x07\xce\x96\xec\x27\x36\x37\x26\x3f\x5c\x74\xee\xd3\x42\x56\x25\xeb\x41\xe2\x73\x5f\x97\xdd\xd2\x35\x79\x54\x4d\x65\x87\x22\x9e\x3c\x95\x32\x9e\x3c\x82\x92\x85\x0c\xa7\x93\x81\x8a\xf9\xc6\x74\xf7\x50\xce\xf7\xad\x68\xa9\xbb\x7f\x1c\x05\xfd\x1e\xb3\x27\xfb\x28\xea\x1b\x38\x18\xa6\xac\xef\xef\x14\x44\x93\x47\x57\xd8\x93\xc1\x5b\x81\x0c\xdc\x0e\x64\x2f\xe5\x3d\x79\xb8\x02\xbf\x6f\x62\xe5\x36\xda\x53\x89\xdf\xd7\x71\x40\x50\xee\x55\xe4\xf7\xf5\xd9\xa3\xe7\x27\x7b\x2c\xd3\xc8\xd4\x7b\x51\x34\xc8\x3c\xd0\x44\xce\xe3\x99\x08\xc8\xa3\x9a\x09\x86\x4f\x7d\xc8\x06\xee\x34\x19\x34\x90\xf2\x98\x66\x03\xf2\x65\x4f\xb5\x71\xa3\x3c\x02\xb5\x0c\xb2\x3a\x90\x27\xb3\x3c\x90\x27\xb2\x3e\x90\x91\x8c\xbe\x28\x19\x0d\x34\x5c\x90\xa7\x34\x5e\x90\xa7\x32\x60\x90\x91\x98\xbe\x20\x31\xf5\xb5\x18\x60\xff\x20\x4f\x65\x03\x21\x8f\x6f\x07\x21\xfd\xb6\x10\x32\xa4\xe8\xcc\x60\x9b\x48\x03\x39\x8f\x65\x17\x21\x8f\x6b\x1b\x21\x03\x68\xaa\xc7\x46\xd2\x9c\xea\x23\xd9\x49\xc8\x9e\xb6\x92\x21\x73\x19\x62\x33\x69\x4e\x68\x6f\xbb\x49\xdb\x74\x12\xb9\x56\x9f\x61\x3b\x19\x32\xc3\xa1\x36\x94\xe6\x2c\x1f\xd5\x8e\x42\x3e\xd7\x96\xd2\xd6\x69\x9b\x89\x85\xf4\xef\xdf\x8e\x92\xad\x1d\xe6\x16\xd2\xc9\x2e\xc7\xc0\x1d\x2f\x70\xc7\x86\xcf\xc3\x65\x86\x3f\x49\xb6\xd9\x0b\x1c\x01\x2f\x54\xf8\xa2\x8c\xcd\xa9\xbc\x6c\x06\xe3\xd4\xa0\xb3\xab\x50\x84\xdf\xf8\xaf\xa1\xeb\x81\xf1\x36\x85\x82\x1b\x64\xa6\x31\xe4\x66\x0c\xb9\x19\x43\x6e\x7e\x5b\x21\x37\x5d\x06\xdf\x75\xc6\x54\xaf\x67\xc8\xb5\x2b\x5f\x6d\xc8\x9f\x41\x4c\x2a\x7e\x68\x6b\xbb\x13\x2c\x71\x65\xfe\x28\x6c\x9c\xa1\x13\x8c\xba\xaf\x31\x41\x09\xd9\x52\x1d\x6d\x48\x94\x71\xcd\x32\x4e\x61\x93\x50\x12\xc9\x2c\x63\x2a\x35\xfc\x5e\xac\x89\x95\x03\xb5\xc4\xb2\xdb\x7b\xc5\xaa\x56\xe6\xb0\x38\x38\x21\x97\x06\x40\x26\x22\x9a\xaa\x1c\xf6\x6d\x09\x51\x08\x94\x16\x85\x3c\xb5\x7a\x5d\xf2\x46\xea\x4d\xad\xf2\xb6\x57\x4d\x1c\x35\x5e\xa6\xa3\x7a\x85\xf1\x16\x81\xa2\xa8\xa2\x6f\x2b\x7d\x4f\x88\x62\x29\xcd\xb0\x88\x53\xae\x09\xf5\x63\x82\xb1\x09\x24\xec\x33\x50\x70\x01\xeb\xd1\x02\xb0\x88\xdd\x7a\xf9\x88\xe7\x62\x3d\x25\x8b\x85\xb0\x85\xcb\xa5\xe2\x60\x8d\xae\x61\x62\x43\xdb\x7a\x25\x82\xad\x01\x38\xcb\x78\xcd\x75\x85\xad\xf8\xbd\x2b\x18\xb6\x58\x2c\x0e\x2e\xa4\x36\xff\x99\x92\x93\x24\xb1\xe5\x02\xfc\xde\xc3\x3d\xdb\x0c\x54\x14\x09\x6a\x9b\x2b\xac\x14\x47\x35\x57\xe0\x16\x81\xf9\x5c\xec\x54\xb4\xc4\x3e\xa7\xe4\x04\x0e\xbb\x66\x92\x64\x8b\x5d\x20\x4e\x2a\x1c\x81\xda\x2b\x9b\x9d\x34\x94\x73\x32\xd3\x31\x7f\xd8\xf9\xc0\xc9\x80\x9d\xb7\xe3\x15\xb0\x1f\x06\x11\xea\x91\xe5\xe8\x16\x82\x20\x86\xf3\x65\xf5\x6a\x05\x90\xe0\x5a\x25\xc6\xfe\x3b\xb3\x97\xbe\xa7\xb5\x97\xda\x55\xb7\x4c\xcc\x55\x71\x5a\xa8\x11\x07\x08\xcb\xb0\x31\x3b\x2e\xeb\x95\xf4\x41\xc4\xf0\x42\x1d\xda\xc7\x03\x91\x41\x7c\x23\x7d\x47\x6e\xa0\x96\x99\x2d\x0e\x2e\xea\x1f\xbb\x62\x58\x29\xfa\xb5\xd8\x24\x4f\x6d\x85\xfa\xcb\xa7\x40\x0c\x2d\x98\x00\x61\xf7\xe6\x08\x53\xc0\x1f\x3e\x88\x64\x47\x74\x46\x57\x2b\x1e\x21\xa6\x5c\x9e\xb2\x3e\xbb\x00\x9c\x72\x2f\x0c\x09\x81\xb9\x0a\x39\x95\x7e\xe9\x19\xfd\xbc\x62\x6e\x38\x76\x7b\xba\xbc\x1a\xca\x54\x91\x63\x0f\xd6\xd2\x1c\x80\x90\x48\x0a\x08\xb9\x81\x9b\xee\x4e\x91\x4b\x4a\xb0\x7d\x14\x28\x30\xd7\x3f\x14\xcb\x62\xe7\x98\xa4\xe8\x16\xb7\x02\x26\x27\xea\xee\x14\x72\x79\x39\x35\x9d\x37\x65\xa4\xb5\xac\x80\x9b\x2c\x77\x08\xb4\x1b\xb9\x07\xa9\x6e\xda\x0e\x5f\x2e\x04\xc8\xc0\x85\x7c\xf0\xad\xcc\xaa\x32\xf6\x61\xeb\x19\xe0\x1e\xc8\xaf\xda\x44\x1b\xe1\xdb\x34\xe1\x4c\x95\xb7\x49\x9f\xd8\xa0\x38\x67\xdf\x82\x81\x22\x09\x6c\x88\x62\xdd\x8a\x13\xee\xe1\x77\x90\x8f\x49\x51\x60\xb6\x32\xcf\xd6\xe9\x3f\x5f\x27\x72\x49\x93\x17\x2f\x7b\xd4\x76\x5f\x06\x01\xdf\x01\x30\x16\x44\x73\xbb\x96\x59\xc5\xbb\x00\xa6\xd1\xdd\xa9\x99\x63\xa5\x9b\x72\xa1\xfb\xd6\xb2\x07\x5a\x7f\x8a\xe8\xd6\xa7\x5c\x55\xd6\xda\xa2\x51\x48\xa1\x48\x68\x38\x61\x5a\xf9\x94\x5b\xb6\xe5\xe0\x28\xc6\x1e\xa4\x34\x15\x4c\x77\xab\x9d\xab\x4e\x2a\x4c\xab\x76\xc6\x68\xc4\x79\x28\x64\xa3\xfa\x8d\xf0\xee\x08\x84\x25\x84\xb3\x02\xae\x4e\x61\xbe\x58\xb0\xbe\x1e\x6c\x57\xf9\x62\x25\x7f\xa5\x91\x1c\x44\x51\xee\x1d\x0b\x39\x63\xba\xc8\xee\x90\xcf\x76\x39\xd2\x1b\x77\xa0\x6d\xb9\x23\xd1\x71\xf9\x08\xa9\x2f\xf6\x5b\x13\xfc\xc0\xa9\xac\x6a\xe2\x97\x9b\xb1\x69\xd2\x73\xbc\x98\x75\xfc\xd5\xe1\x62\x2e\xb3\x3d\x91\x01\x5f\xf4\x60\x03\xda\x0c\x41\x07\xb9\x82\x22\xb2\x40\xa5\x4a\x6e\x19\x14\xb0\x95\x91\x4c\x14\xd9\xd0\x5b\xd4\xee\xab\x43\x74\x1c\xd9\xe1\x5f\x3d\x8c\x36\x63\x5e\x2e\x6e\xae\x9d\x7a\x4e\x39\xed\x22\xf4\x6e\x25\x2a\xcb\xc8\xcd\x05\xa5\x97\x2b\xda\xaa\xc9\x90\xcf\xef\xfa\x74\xee\x12\xca\x7e\x3c\x9b\xb7\x66\x2b\xc5\x67\xc8\xaa\x52\xb1\xfb\xb0\xea\x69\x33\xe9\x37\x24\x34\x1b\x0f\x71\x2d\x4a\xa9\xd6\x2c\x13\xc7\xe4\xff\x4e\xff\x4f\x77\xcb\xfb\xc9\x4d\xe1\x63\x31\xe1\x42\x4f\x64\x36\xc1\x11\xda\x2a\xd3\x97\xcf\x50\x82\xdc\x5f\xb8\xbc\x28\x3f\xea\x21\xcb\x61\xf2\x95\xa5\x4c\x72\xc5\xbc\xc3\x05\xb9\xb0\xb9\x60\xa8\x7c\xa9\x13\x66\x64\x65\xbc\x70\xd9\xb1\xba\xfb\x2c\xa4\xa5\x4e\x52\x19\xb6\x66\xe9\x7e\x5b\x76\x71\x50\xec\xd8\xbe\x63\xa5\xff\xb0\x1d\x70\xac\x6c\xe0\xc6\x6c\xf5\x4e\x2f\xbc\x4b\xc8\xcb\x1e\x32\x2c\xec\x00\x28\x6a\x2a\x97\xc3\x59\x6f\x98\x62\x24\xa3\x62\xcd\xd4\x91\x53\xdb\x41\xae\xe7\xce\x14\xc3\xf8\x54\x52\x7a\xd9\xad\x03\x66\x23\xc4\xb2\x72\x18\xb0\x3a\x30\x3b\x4c\x8f\xac\xbc\xc2\x35\x40\x01\x6e\x28\x07\xeb\xe5\x00\xd8\x74\x2f\x0e\xd6\x33\xf7\x92\xbd\xd5\x38\xd8\x02\x79\xd8\xc2\x72\xb1\x05\xf2\xb1\x85\xe1\x64\x9d\x32\xcf\xc8\xcb\xe0\x19\xc4\xcb\xd4\x03\x6e\xc9\xfd\x97\xe3\x4e\x4d\x5f\xf9\x04\x2f\xc7\xe4\x85\x62\xcc\xa9\xc8\x80\x95\xd1\x6d\x9a\x30\xa2\x76\x42\xd3\xfb\x50\xa2\x59\xff\x59\x2c\x3a\xef\xd6\x56\x86\x6c\xbb\x3b\x77\xf7\xed\x34\x63\xde\xd5\x5a\x66\xcd\x2b\xb3\xd9\x6e\x17\x52\x33\x18\xdb\x50\x4f\x0f\x12\x6c\xd4\x8c\x33\x1a\xf4\x9c\x0a\x88\x1e\xef\x34\xe9\xee\x7d\xc9\x12\x79\xf7\xf2\xb0\x0a\xb2\x87\x6c\xc4\x2a\xe1\x5a\xb1\x64\xe5\x8c\xd3\x3d\x78\x40\x65\x18\xa8\x39\xaf\x37\x8c\xe8\x3b\x09\xb4\x06\xd9\x97\xdc\x3b\x64\x10\xe6\x10\xda\x95\xa9\xd9\x7b\xd6\xee\x83\x70\xb3\x77\xae\x5d\xa5\xfa\x95\x79\xb7\x24\x9c\x0d\xaa\x16\x6c\xfb\xfe\x33\xe1\x6e\x23\x13\xbb\x48\xc7\xb0\x44\x8b\x45\x79\x20\xff\x05\xb8\xcb\x1f\x36\x54\xbd\xd8\xee\x3e\x81\xcf\xe5\x4b\xe0\x3b\x96\xc9\xf7\x6d\x67\x5b\x69\xc0\x69\x21\x80\xc8\x10\x3e\xf4\x88\x29\x03\x72\x62\x33\xee\x40\x7a\x83\xfe\x62\x09\x8e\x1f\xc0\xa5\xd1\xa6\xb4\x64\x09\x80\xeb\x20\x45\x25\xaa\x9d\xd2\x60\xc2\xc0\x29\xb7\xce\xb8\x39\x29\x03\x45\x5b\xbd\x94\xf2\xe9\x9e\x6f\x31\xa5\xbe\xe9\xf4\x6d\x72\x01\x94\x87\x61\x52\x28\x4e\x59\x55\x42\x02\xac\xd5\x16\x41\x00\x5b\x72\x31\x93\x7e\xe0\x85\x14\x13\xeb\xc2\x64\xed\x61\xe4\x6e\xc3\x32\x66\xf5\x22\x2b\x99\x6d\x99\xaf\xa4\x00\x8f\x29\xec\x7d\x80\xd2\xae\x89\x1a\x2f\xdf\xd0\x23\x5c\xe2\xab\x9e\x96\x7b\xc8\x5e\x55\x67\xcb\x2f\x27\x83\xd5\xd8\x72\x77\x9f\x01\x95\x27\x25\xa9\x8c\x5d\x48\x1c\x9a\x40\x0a\x16\x3d\xc0\x2d\xb4\x70\x0c\xed\xa4\xb6\xc1\x31\x20\xbe\xc1\xbe\xfd\x69\xc6\x87\x7d\x3e\xba\xc9\x43\x50\xde\xdf\x65\x9b\xa6\x39\x80\xf6\x41\xd8\x26\x9e\x2b\xee\xdd\x46\x2a\x54\x4b\x9a\xe9\x5b\x11\xd0\x08\xc0\xbd\xc1\x15\x43\x84\x3b\xb2\x57\xd0\xca\x40\x49\x89\x0c\x95\x96\x48\x73\x7f\xf5\xca\x4b\xff\x7b\x57\xba\x72\x57\x2a\xb5\x6e\xc8\xf7\x8b\x6a\x0a\x2d\x35\xcb\xaa\x4f\x69\x86\x00\xeb\xc2\x95\x6f\x55\x28\xef\x22\xb6\xc4\x01\xdb\x99\xdf\xfb\x3b\x3d\xb9\x38\x7b\x3e\x20\xa6\x67\x3f\x8d\x56\x5f\x04\x94\xc5\xe2\x5e\xf7\x63\xcb\xa5\xbb\xf8\xc5\x30\xa9\x1b\xbf\x44\x03\x71\xc1\x2f\xbd\x14\x99\x6e\x20\x70\x3a\x2d\x1d\x4e\x07\x58\x66\x3a\x85\xee\x3a\x79\x0d\x95\xba\x03\xe6\x2c\x87\xbf\x17\xea\x65\x5d\xfc\x46\x77\x1a\x03\x4d\x9f\xae\xec\x08\xa0\x82\x22\xf3\x0e\x92\xe7\x0a\x6e\xb7\xf6\xc6\xec\xf0\x1d\x15\x6e\x21\x05\x32\xfa\x70\x51\xb5\x6c\x99\x9d\xe3\x88\xf5\xd0\x17\xdd\x0f\x9b\x16\x85\x1e\x34\x5f\x30\x23\xfe\x3a\x65\xaf\xcc\xea\x67\x37\x82\x8e\xaa\x14\x83\x08\xa7\x09\xed\xb1\x56\x1a\x7a\x32\x0b\xe8\xcf\x11\xf5\x46\x05\x16\xa4\x70\x8e\x04\xd6\xb1\xa3\x5b\x64\xd9\xeb\xd8\xdc\xff\xd4\x2c\xc0\x2c\x63\xa8\xd1\x24\x3f\x3c\xbc\x8a\xb8\xb9\x79\x36\xf8\x47\x62\x02\xc3\x42\xc5\x5b\xa6\x86\x01\xe3\xcd\xf9\xe1\xef\xe1\x04\xb7\xcd\x07\xb9\xac\x9d\x21\xec\xe4\x84\xad\xb4\xab\xf9\x58\x9c\x21\xb0\x7b\x06\x28\x69\x88\xbf\x11\xa1\xe4\x8c\xb9\x9e\x3f\x57\x25\x64\x5f\x94\x83\xf6\xb7\xd9\x68\x1d\xaa\xc3\x87\x4f\x35\x06\xf9\xfa\x7a\x5e\xda\xeb\x5b\x9d\x18\x0c\x95\x98\xa6\xed\xa0\x17\xfe\xe8\x9f\xe5\xbf\xb0\x65\x7a\x23\xe3\x3d\x4e\x86\xf7\xf8\xc1\xe3\x4a\xed\x38\x65\x64\xea\x38\x6f\xcf\x55\xce\xf4\x89\x45\xac\x58\x6f\x0e\x51\x27\xd7\xb1\x18\x7b\x71\xd0\xbe\x60\xd3\xf5\x94\x7c\x77\x7e\x7d\x48\xe6\x1f\xaf\x0f\x09\xd3\xd1\xf4\x25\x79\x9f\x27\x9a\xa7\x7d\x76\x0e\x8b\x22\x38\xf7\x3f\x5c\x3e\x37\xd7\xb0\x35\x04\x59\xfe\xba\xec\x56\x29\xd5\x9b\x3d\xd6\xf1\xf9\xdc\xb4\x7f\x8a\x65\xec\x5b\xc1\x7e\x8e\xe2\xaf\x20\x80\x39\x2d\x96\x0a\xa7\xe9\xd6\x62\xe8\x62\x10\xc2\xa6\xeb\x63\x32\x21\xec\x9e\x46\xfa\x98\x1c\xad\xa4\x24\x13\xeb\x24\x76\x4c\x8e\x96\x34\x23\x17\x1f\xae\xcf\x8f\xd1\x01\x8d\x09\x9d\xed\xc8\xb6\x4f\x3c\xff\x70\xf1\xee\x1f\x96\x73\xee\x08\xe3\xa0\x80\xa1\x64\x71\x00\x83\xa0\x16\xd9\xfc\x89\xa3\x38\x5d\xc7\x94\x5c\xf7\x4d\xff\x96\x26\x3c\xa6\x85\xb2\x0f\x02\x33\xb0\xa6\x9b\x0e\x15\x71\x2b\x9f\x21\x34\x57\x8b\x1f\xb9\xbe\x9e\x1b\x0c\x7b\x07\x00\x15\x88\x78\x83\xe8\xe1\x67\xd5\x4c\x83\x7f\xec\x92\x39\x44\x58\x3d\xe2\x4a\x66\xdb\x63\x87\xf6\x45\xfe\xea\xd5\x37\x91\xe9\x18\xfe\xc5\x8e\x6d\xb2\xa1\x41\x6a\x2f\x24\x35\x80\x0a\xba\x33\x0c\x23\x2b\x96\xb0\xec\x7a\x62\xf1\xfd\x59\x23\x60\x1f\x3d\xae\x26\x7b\xe4\x6b\x40\x04\x3c\xee\x35\xd2\x4e\xfd\x31\x3b\x1d\x9a\x50\x61\x00\x43\xea\xef\x8a\x47\xdb\x81\x67\xe6\xec\xf4\xfd\x7c\xa8\x07\x08\x30\xa3\x76\xd8\x7d\x2e\xe5\x15\xe2\x33\xd0\xda\x18\x4d\x2c\x27\x08\x43\xda\x0b\x86\xad\xa2\xda\x71\xbf\x42\x0f\xfd\xa6\x4c\xcb\x57\x55\xfb\x54\x51\xcf\xb1\xb0\x9a\x9b\x71\xba\x44\x5b\xb0\xa7\x9b\x46\xb7\xaf\x3b\xf4\x94\x83\x28\x31\xea\x4e\x0c\x53\x3f\xe7\x41\x32\x91\xc2\xc7\x12\x20\x25\xc2\xaa\xa6\x7b\x5c\xd6\x20\xa8\xc9\x20\x18\xbd\xf2\xc1\x45\x15\x2a\xc6\xfa\xb8\xb2\xd6\x4b\x30\x4d\x6a\x16\x6d\x04\x8f\x9a\x49\xcb\xaa\x0f\xa8\x45\x51\xfd\xcf\xb7\xa9\xf4\x72\x69\xdf\x18\xa1\x3c\x79\xae\x08\x4f\x35\xc6\xc1\xad\x78\xc6\xee\x68\x92\xf4\x80\x8a\xdc\xc2\x2a\x65\x73\x85\x8e\x53\x4c\xac\x24\xc6\x0b\x58\x17\xbd\xfe\xad\xd1\x6b\xc3\x83\x66\x9f\xbf\x18\xa6\x9b\x29\xfa\x92\xb1\x7b\x30\x5c\xf5\x99\xc0\x70\x0d\xe4\x8a\xfc\x09\xbd\xbc\x61\x86\xd0\xd7\x79\xb4\x91\xe4\x12\x0f\x6d\x5b\x95\x31\xe5\x62\xad\xba\x6d\x60\x83\xe6\x3b\x80\x19\xa4\xe1\x70\x9b\x16\x84\xcc\xe6\x2e\xec\xe6\xb3\x1d\xc3\x2a\xca\x2d\x94\xc7\x7d\x2c\xcf\x9d\x65\xac\x15\x0b\x03\x30\xd0\x12\x38\xd1\x32\xb9\xf7\xb6\xb5\xe7\xd6\x5b\xa4\xba\x83\x78\x90\x6c\x5b\xd6\x0a\x0b\x05\xb1\x54\x27\xf7\x59\x4c\xa3\x59\xdf\xb1\xa5\xdd\xd0\x64\x7c\xe5\x33\xf4\x58\xaa\x96\x56\x2d\xe1\xb1\x01\x3f\x68\xb5\xbb\x61\x3b\x4b\xda\x29\xe5\x36\xd5\x5e\xf7\xf0\xe6\xca\x4a\xd8\xbd\xce\x68\x05\xa7\x74\x29\x73\x3d\xe0\x20\x79\xac\x9b\xa3\x90\xda\xec\xbe\x61\x94\x71\x81\x8d\x7b\x3c\x7a\xa0\x49\xb7\x67\xdd\x78\x60\x8c\x07\xc6\x6f\xfb\xc0\x10\x52\x3b\xb1\xaa\x15\x2d\xdd\x5e\x37\x03\xfd\x6d\x86\x79\xda\x34\x1c\x42\x9d\xc8\xd7\xe3\x13\x6a\x9b\xb5\x23\xac\x67\x1f\x0f\x70\xed\x79\x98\x53\x4f\xfa\x6b\x45\xee\xe2\xc0\xc7\xed\x23\x9e\xfd\x0d\xc3\x16\x68\x78\x7d\x49\xc0\xe1\x64\x0a\x54\xcf\xb3\x2e\xcd\xbc\xf5\xce\xb5\xeb\x7c\x0e\xa1\x46\x97\x10\x29\xe7\xa2\xbe\x50\x6d\xfe\x62\xc9\x22\x9a\x2b\xeb\x13\xd7\x63\x4a\x28\x40\x8c\x58\x06\x7d\x14\x7e\x75\x2f\x51\x15\xff\xde\x86\x7f\x55\xbc\x04\xfb\x8e\x58\x74\x1f\x3c\xf6\x3d\xe0\x0e\x7d\xff\x37\xfc\x03\x6e\x2a\x95\xbf\x6e\x5f\x97\x7f\x5f\x9d\x5e\xe3\xdb\xf6\x61\x6c\x8f\xef\xb8\x66\xce\xc9\x8e\x0a\x47\x20\xce\x28\x0b\xae\x86\xe4\xab\xc9\xd7\x7f\xfc\x63\x87\xca\xff\xe9\xc8\x1e\x1d\x31\x86\x9d\xc6\x58\x75\x7b\x60\x54\x1a\xd1\xb2\xe3\x02\x89\x3d\x8d\x01\x69\x63\x40\x5a\xbf\xd9\x73\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\xad\x6d\xc6\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x6d\x33\x19\x79\xd9\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x86\xcf\x18\x90\x36\x06\xa4\xd5\x9f\x31\x20\x6d\x0c\x48\x2b\x9e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x82\x9d\x8e\x01\x69\x1e\x2e\xc6\x80\xb4\x31\x20\x6d\x0c\x48\xab\x3e\x5f\x32\x20\xad\xa3\xfc\x02\x21\x13\x9b\xc5\x37\xf4\x6e\x48\x19\xff\xa0\x9c\x60\xf7\xc6\x03\xd2\x77\x57\x77\xd5\x98\xbf\x7b\xcc\xdf\x3d\xe6\xef\x1e\xf3\x77\x87\xc1\x1b\xf3\x77\x8f\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\x54\xf9\x8c\xee\x52\xe5\x33\xba\x4b\x8d\xee\x52\xbf\x2a\x17\x83\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\x60\xe3\xdf\x18\x2f\x1b\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x2a\xf0\x8c\xee\x52\xa3\xbb\x54\xf1\x8c\xee\x52\xa3\xbb\xd4\xe8\x2e\x15\xec\x74\x74\x97\xf2\x70\x31\xba\x4b\x8d\xee\x52\xa3\xbb\x54\xf5\x19\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\x95\x67\xcc\xdf\x3d\xe6\xef\x1e\xf3\x77\x0f\x1a\x61\xcc\xdf\x3d\xe6\xef\x1e\xf3\x77\x8f\xe9\x58\xc7\x74\xac\x63\xfe\xee\x31\x7f\xf7\x98\xbf\xbb\x1d\xfe\x31\x7f\xf7\x78\x60\x8c\x07\xc6\x98\xbf\x7b\xcc\xdf\x5d\x79\xc6\xfc\xdd\x63\xfe\xee\xda\x33\xe6\xef\x6e\xbf\x40\x8e\xf9\xbb\xc7\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\xf3\x9f\x31\x20\x6d\x0c\x48\xfb\x55\x05\x71\x8c\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x05\x1b\xff\xc6\x78\xd9\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x81\x67\x0c\x48\x1b\x03\xd2\x8a\x67\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x60\xa7\x63\x40\x9a\x87\x8b\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xaa\xcf\xff\xee\xfc\xdd\x90\x94\xbb\x2f\x7b\xf7\x07\xd3\xa8\x83\x7f\x57\x17\x5d\x62\xeb\x20\x9c\xe8\x76\x87\x79\x93\x41\x51\x62\x3a\x05\xcb\x62\x3c\x45\xdd\x49\xa1\xf9\xdd\xf0\xb5\xb9\x88\x2e\x0e\xa0\xbf\xc5\x01\x1c\x97\xb6\x6d\xa8\x6b\xba\x32\x17\x28\x0d\x02\x1a\x74\x90\xc8\x3b\x96\x21\x34\xe8\xc6\xe8\x01\xa7\x88\xdc\x72\xad\x0d\xdf\xe5\x2e\x02\x26\xd4\x69\x24\x85\xe2\x98\xb6\x1c\x75\x7c\x8b\x03\x2e\x56\x5c\x70\xcd\x16\x07\x64\x42\xc0\x79\xce\x9b\x8e\xe3\xea\x16\x4e\x92\x50\xa5\xa7\xa4\x98\x59\x10\x25\x06\x56\x1e\x33\xa1\x79\x44\x13\x0b\x60\xbd\x1f\x2e\x08\x4d\xd2\x0d\x15\xf9\x96\x65\x5e\x3b\xc8\x18\x1e\xea\xd5\xf2\x72\xab\x8e\x42\x0f\x91\xe0\xfd\x14\x69\x43\xe4\xdb\x65\x53\x53\xd8\x21\x36\xd6\x0e\xf9\x6b\x5f\x4d\x83\x84\xe2\x29\x6b\x72\x65\xef\x9c\x3c\xba\xc1\xff\x93\x79\x90\xfe\x0d\xc8\xb5\x4b\xb7\x87\x5c\x1b\xae\xe1\xa1\x45\x4b\x77\xe6\xb5\xab\x0e\x4a\x38\x8c\xe8\x90\x24\xf2\x0e\x59\x01\x6a\x90\x0a\x9d\x0a\x0a\x76\x7f\x41\xf5\x02\xee\xf6\x4f\x09\xd7\x2c\xa3\x70\xb3\x0f\xf5\xbc\x58\x90\x09\x86\x2b\x19\x42\xd9\xa6\x34\xe3\x4a\x8a\x43\x02\x31\x8b\x4e\x2d\xe0\xba\x5c\x49\x49\x96\x34\x03\x5d\x45\x31\xdc\x1f\xf6\x1c\xae\x1c\xcf\x9c\xec\xec\x9f\x39\x4d\xfe\x8c\x1e\xb6\x4e\x52\xe5\x2b\x2b\xa2\x72\x05\x6d\x9c\xe6\xbd\x18\x32\xbc\x2f\x7f\x06\x38\x68\xe9\x17\xb6\x2c\xff\x19\xe1\x3f\xa7\xd3\x29\xf9\x8f\x07\x81\xce\x72\xe6\x02\x65\x0a\x5f\x53\x1c\xe3\xef\x24\xec\xdb\x6e\x4d\x0e\x3d\x43\x95\xb0\x9a\x09\x70\x31\x00\xb8\xd0\x60\x7b\xc2\x0b\x83\x75\x01\x18\x5e\x12\x0f\xe6\x0d\x55\x2f\xa0\xbf\x4f\xe6\x70\x79\x59\x0e\x7d\x5d\x8c\x4c\x75\xb9\x3a\xde\xca\xfc\x01\x88\x34\xc8\xf3\x6d\x17\x85\x7a\x52\xae\xa0\x2d\x68\xa7\xe0\xbf\xf9\xab\x57\x5f\xbf\xc6\xff\xc7\x37\xc5\x37\x57\x1b\x99\xe9\x49\xc4\xb3\x28\xe7\x1a\xa4\x2a\xfb\x51\x68\xa0\x7f\xff\xbb\xf3\x6b\xb0\x63\xe8\x17\xd8\xe6\x65\xd1\x28\xa5\x19\xb3\x12\xf9\x3a\x93\x79\x6a\x24\xf2\xc5\x42\xd3\x24\x79\x11\xb4\x47\xd9\x94\xf6\xe8\x95\x52\xf0\x0b\xd7\x9b\xa3\x61\x9a\x24\x9e\x8a\x09\x36\xe8\x3b\xa4\x07\xbc\x43\x85\xaf\x47\xd4\x6c\x6d\xe4\x33\xce\x53\xd3\x67\x99\xea\x90\x4c\x0e\xc9\x27\xc0\xc3\xd1\x94\x5c\xc1\x96\x23\x76\xcb\xb5\x76\xba\x95\x19\x23\xa9\x11\xff\x95\xe2\xb7\x8c\x2c\x31\xc6\x60\xe7\xd4\x9b\x56\xf1\x4c\x98\x8a\x68\xca\x48\xb4\xa1\x19\x8d\x34\xcb\x2c\xd8\xe7\xe8\xaa\x1d\xdc\x0c\x2f\x80\xf1\x6f\x69\xcc\x26\x79\x8a\x64\xa1\x5e\x16\xec\x08\x02\xdb\x2c\xeb\xb8\x63\x4b\x73\x71\x60\x96\x79\xf8\x2b\x1e\xb3\x34\x91\xbb\x2d\x13\x41\x76\x6a\xbf\x4f\x33\x19\x3b\x22\x85\x7e\xcd\x9e\x02\x9e\x94\x49\xa1\x99\x88\x3d\x52\xa7\xd1\x8d\xfd\xe1\x3f\xa6\x79\xd9\x3f\xf9\xc3\x5f\xda\x76\x40\xcc\x6e\x5d\xf7\x7f\x20\xb5\x5d\x10\x62\x65\x5d\x12\x55\x55\x19\xd8\x61\xae\xee\xd0\x04\x76\xeb\x2d\x56\xe8\xbf\x5a\x1e\x0b\xa1\x69\xb9\x13\x0b\x69\xd4\x2a\x14\xb0\x3c\x87\x14\x0e\x48\xa7\x2b\x08\x99\x9d\xbb\xe6\x08\x46\x87\x01\x67\x2a\xd8\x26\xb8\x88\x79\x04\x57\xcf\xbb\x0d\x04\x4c\xfb\x82\xac\xef\x95\x65\x6f\x39\x41\x3e\x65\xf6\x9d\xb4\x05\x3c\x0e\xed\x5f\x4b\xa9\x37\x53\x82\x8e\x92\x70\x9a\xdc\xa7\x46\x48\xd1\xc9\xce\xbb\x4b\xbd\x80\xe2\x23\x41\x0f\x58\x8f\x8f\x0a\x12\x65\xcc\xc6\x67\x28\xbb\xbb\x65\x46\x04\x4f\x5e\x1e\xba\x18\x8b\x98\xad\x68\x9e\x68\x45\x70\x5a\x06\x75\x59\xdc\x22\x52\x6b\x49\xee\x0c\xaf\x9c\xd9\x8b\x9b\x01\xe2\xdc\xfe\xd3\xec\x47\xcb\x39\x8b\x0a\x1c\xe8\xef\x07\xaa\x75\x3b\x4c\xa8\x57\xae\x70\x77\x4d\xc8\x8f\x56\x2e\x32\xa0\xb8\x31\x7e\x3a\xb4\x87\x83\x91\x32\xc1\x6c\xe0\x86\xc4\x3a\x29\x2f\xb8\x88\x92\xbc\x15\xe2\x0d\x23\x11\x35\x92\x27\x74\x50\x76\x43\xf0\x78\x16\xb2\x98\x0c\x74\xf7\x32\x00\xc9\x79\x6b\xfd\x95\x3a\x6c\x15\xc0\x0c\x4b\xaa\x77\xdf\x3e\xcf\x20\x79\xd4\x61\x68\x0c\x08\x1a\xac\xc0\x6a\xd8\x1b\x75\x90\x2f\x08\x24\xad\xaa\xac\x9f\x31\x6a\xf6\x51\x74\x43\xe8\x9a\x72\x71\x68\xa9\x01\xcd\x1e\xc9\x1d\xdd\x29\xeb\x05\x1f\xa4\x62\xe7\xad\x80\x6e\x0a\x87\x44\xb0\x5b\x96\x55\xe8\x2d\x78\xbb\x1f\x58\xde\xa7\xc4\x02\x61\x70\x68\x14\x06\xbd\x54\x2a\xc5\x97\x89\x1b\xb8\xf4\xc3\x32\x1f\x5c\xa5\x2c\x0a\xdf\xf7\x70\x6e\xed\x9e\x69\xdd\x37\xcb\xd6\x4b\x5b\xf8\xae\xd7\xfc\x15\xce\x8c\xd8\xb7\xb7\x2b\x2d\x33\xba\x66\xee\x27\xa5\xa9\xce\x11\x31\x68\x72\x62\xf1\x85\x67\x0c\xb8\xe1\x22\x36\x7c\xc8\xa1\x34\x4d\xf2\x8c\x26\xe5\x2f\x91\x14\x68\x01\x56\xc7\xe4\xc7\x9f\xcc\x2f\xa6\x7f\x16\xdb\x08\x4f\xfb\xeb\x42\x4c\x26\x93\x85\xa0\x29\x77\x81\xa2\x84\xa6\x9c\xdd\x6b\x26\xa0\xd5\xf4\xe6\x4f\x6a\xca\xe5\xd1\xed\x57\x0b\x81\x23\x9e\xe6\x4a\xcb\xed\x25\x43\x53\xd6\x19\x83\xeb\x16\xf0\xe9\x4a\x38\x26\x28\x60\x88\x40\x97\x57\xc5\xb4\x9a\x46\x59\x3c\x4d\x33\x69\x30\x10\x01\xd3\x99\xca\x6c\xbd\x10\x86\x9b\xc1\x17\x20\xa2\x1c\x93\x96\x66\x55\x4b\x08\x82\x52\xfa\xe5\xe2\xaf\x09\x57\xfa\x6f\xb5\x37\xef\xb8\xd2\x55\x04\x79\x30\x59\xbc\x73\xb1\xce\x13\x9a\xf9\xaf\xcc\x1b\x60\x64\xd9\x2d\xfb\x28\x6e\x84\xbc\x13\x6f\x0d\xa5\xa8\x63\xb2\xa2\x89\x82\x15\x53\x91\x34\x8b\x5a\x68\x57\xe0\xa6\x77\xeb\xd0\x6b\xfe\x98\x58\x34\x18\xec\xc1\x48\xd1\x86\x6d\xcb\x70\x55\x99\x32\x71\x32\x9f\x7d\xff\xcd\x55\xf5\xf7\xa6\x63\xac\x73\x3f\xb6\x2e\x5e\xe5\x90\x13\xf6\xcf\x9c\xdf\xd2\xc4\x30\x5c\x4b\xf7\x75\x9f\x65\x8f\xb8\x5b\xd4\x67\xde\xea\x57\x69\xb9\x9a\xd5\xc2\x80\x6a\xbd\x07\xd0\xdb\x1e\x81\xb1\x33\x66\xb1\x9d\x1e\xc2\x01\xdc\xc4\x1e\x05\x34\xa4\x17\x91\x2b\x38\xfd\x61\x47\x4c\x41\x44\x60\x99\x72\x97\xc8\x48\x8a\x5b\x96\x69\x92\xb1\x48\xae\x05\xff\x57\xd1\xb9\x72\xfe\x0c\x50\xdd\xab\x71\x90\x70\xa1\x59\x66\x84\x09\x60\x05\xa8\xb5\xdd\xd2\x1d\xc9\x98\x19\x86\xe4\xc2\xeb\xd0\x79\x53\xbd\x37\x42\x24\x17\x2b\x79\x0c\xf9\x86\xd4\xf1\xd1\xd1\x9a\x6b\x47\xf8\x91\xdc\x6e\x73\xc1\xf5\xee\x08\x2c\xac\x7c\x99\x6b\x99\xa9\xa3\x98\xdd\xb2\xe4\x48\xf1\xf5\x84\x66\xd1\x86\x6b\x16\xe9\x3c\x63\x47\x34\xe5\x13\x80\x5d\xc0\xce\x9b\x6e\xe3\x67\x99\xdd\x29\xea\x79\x88\x4f\x34\xd9\x0b\x90\x76\xd7\x32\x18\x0a\xb7\x41\xba\x28\x25\xe3\x31\x5f\x60\xdb\xb9\x92\x5c\x9e\x5f\x5d\x13\x37\x7a\x30\xa0\x19\x91\x5f\x7e\xa9\xca\x75\x30\x48\xe3\x62\xe5\xe4\x19\x50\x6a\xfb\xd7\x7f\x3c\x52\x13\x1e\x10\x6d\x55\xbe\xdc\x72\xad\xbc\x44\x35\x72\x4a\x4e\x0b\x6d\x77\x9e\xc6\x54\xb3\x78\x4a\x66\x82\x9c\xd2\x2d\x4b\x4e\xa9\x62\x4f\xbe\x0a\x20\xd4\x4d\x0c\x6e\x87\xae\x43\x4b\x70\x79\x9b\x2a\xaf\x60\x63\x2d\xcb\x56\xee\x47\x73\x22\x55\xa3\x9b\x5c\x30\x5c\x19\x7e\x4e\x1b\xbc\xad\x7c\xdc\x92\xd6\x0e\xad\x0e\xd5\x78\x8b\x1f\x7e\xa3\x04\xa0\x73\x15\x9c\xcd\x0b\x4e\x88\xb7\xe2\x25\x4b\xa4\xa1\x2a\x69\x75\x33\x2c\x64\x50\x6d\x3f\xc7\x7f\x17\x27\x29\x9c\xa3\xf0\x7f\xcf\x6c\x08\xdb\x31\xc1\x03\xec\x48\xb3\x6d\x0a\xfc\xea\x08\x7f\x00\xef\xbb\xd2\x63\x23\x53\x93\x6c\x49\xa3\xe9\x8e\x6e\x13\x73\x22\xff\xfc\x33\x5f\x11\xf6\x4f\x32\xbd\x7c\x73\x72\x7a\x2a\xc5\x8a\xaf\xc9\xe2\xc0\x34\x59\x1c\xfc\xe7\x3f\xa6\xff\x19\x08\xbb\x8c\x50\x12\x25\xb9\xd2\x2c\xcb\x64\xc2\x8a\x92\x74\xf5\xde\x41\xfb\x25\x05\x13\xfa\xd0\x7c\x0c\x45\xed\x80\x87\x68\xc7\x4c\x5b\xc0\x72\x37\xa9\xd2\xa1\xc1\x8a\x00\x38\xe8\xa5\x4c\x58\x55\x74\x80\x69\xd0\x5c\x6f\x64\xc6\xff\x85\xce\x5c\x9e\xfc\x10\x90\x0f\x5a\x06\x5e\x08\x10\x5d\xa1\xe1\x33\x72\x21\x63\xd4\x2b\x90\x3b\xeb\xb3\xa5\x25\xd9\x4a\xc1\xc1\x37\x59\x66\x24\x66\x09\xc3\x9d\x8e\x87\x2e\x4d\xf9\x77\x46\x98\x30\x2b\x63\x16\xf1\x27\x5c\xd7\x82\x13\x17\x44\x3a\x21\xc2\xf4\x8d\x7f\xde\xb2\x6c\xe9\xbf\xba\xf3\xed\x17\x13\xd8\x1c\xe5\x5f\x6b\xdc\x97\xcf\xc8\xdc\xe5\x30\xf3\x60\x2b\x53\x4b\xb1\x7b\xae\x34\x54\x7c\xa4\x8a\xa4\x34\xb3\xdb\xeb\xe4\x3d\x29\x67\xbb\x3f\xd0\xa9\x8c\x5b\x60\x5e\x33\xdd\x06\x71\x31\x9d\x67\x08\x40\xd1\xb1\x8d\x70\x13\x3c\x85\x92\x99\xa0\xcd\xc6\xfa\x9c\x0a\x8c\x58\x06\x45\x48\x34\x89\x8c\x6e\x2c\xff\x56\x87\x66\x46\x77\xcc\x5c\x0c\x14\x49\x59\xc6\x65\xcc\x23\xa2\x33\xbe\x5e\xb3\x2c\xbc\x10\x61\xc9\xae\x6b\xa2\xdc\x8a\x60\x98\x99\x22\x3c\x65\x37\xcb\xcf\x1f\x0d\xe6\x47\x57\x28\xd0\x96\x5a\x21\x03\x06\xdd\xc2\xcb\xda\x6f\x1b\x2a\xe2\xa4\x8d\x7c\x3a\x96\x02\xae\xe3\xac\xfc\x1b\x51\x5a\xfe\x0d\xf4\xcc\x82\x4b\x37\x97\x32\x69\xee\x05\xca\xad\x46\x8d\x6c\x69\x0a\x6a\x3e\xb9\xc2\xe9\x60\x5a\x81\x39\x49\xcd\x77\x8f\xb6\x2a\xd0\x5b\xf7\x72\x34\x20\x6f\x30\x97\x2d\x15\x74\xcd\x14\xd9\x48\xa5\x3d\x97\xb5\x47\x01\xb1\xd2\xe7\x13\xae\xcf\x33\x72\xc1\x58\x0c\xfa\x12\x73\xe1\xd6\xd2\xb6\x75\x7c\xd9\x4b\x81\xf2\x58\x53\x0b\xf4\xfc\xe8\x13\xf4\x96\xed\x6f\xf9\x92\x9d\x96\xab\x86\xc7\x51\x9e\x15\xea\x24\xd4\xa8\x70\x6d\x86\x53\xc4\xc8\x7d\x11\x34\x79\x9c\xc9\x1a\xa2\xf1\x68\x26\xf2\x47\x0f\x4e\xfb\x19\xea\x30\x0c\x1c\xf2\x4e\x78\xb0\x34\x70\xf2\xcc\x62\x81\x50\xa7\x95\x22\x7c\x45\x84\x14\x0c\xb9\xb6\x6a\x43\xd7\x33\xb7\xc6\x28\x56\xb4\x61\xf1\x19\x62\x11\x8e\x81\x68\x53\x89\xac\x28\x10\x0c\xe2\x42\xe3\x4c\x7d\xc3\x05\x2a\xb2\x9e\xe8\x68\x95\x09\xbb\x64\x18\xa5\xe0\xd6\xa7\xa3\x7f\xd3\x2c\x70\xec\xf7\x0e\xa3\x72\x10\xd1\xcc\xd2\x4c\x6c\x07\x55\x3d\xf0\x80\x3e\x7c\x8f\x07\x64\x20\x6a\xa7\x34\xdb\x5a\xcc\x0d\x96\xb7\xcc\x11\xe6\xcb\x58\x7d\x12\x94\xf7\x19\x39\xa3\x6c\x2b\xc5\x15\xeb\x13\x9e\xa0\xf1\x97\x12\x98\xcc\x60\x55\x21\xe9\xa3\xb2\x45\x89\x51\xd7\x5b\xfa\xaa\x96\x2e\x73\xf2\x86\x09\x65\x0d\xe5\xb9\x97\xa5\xe7\xf4\x62\x66\x64\xde\x35\xda\x1e\xf7\x92\x44\xaa\xf3\x55\x47\x30\x46\xb5\xf9\x45\xc5\x81\x75\x52\x9d\x41\x88\x6f\x95\xbb\xed\x19\xdc\x4a\x4a\xf0\x88\x00\x66\xab\xa5\xd9\xc7\x20\x05\x1d\xa2\x00\x87\x17\x7d\x3f\x7a\xf9\xe1\x22\x55\x4d\x2a\x74\x4a\x1c\xec\xb8\x93\xd3\x3e\x23\x2e\x2c\xfc\x2a\xe1\x4e\xb0\xca\xdd\xba\x58\xe2\xb7\x55\xc4\xed\xfd\xca\xe9\x5e\x5d\x52\xac\x67\x2e\xc9\xd1\xd6\xc5\x35\xd4\x67\x11\x73\x15\xc9\x5b\x96\xed\xdc\xf6\xec\x9a\x55\x71\x04\x02\x3c\x7b\x89\xb9\x7b\x61\xaf\xe1\x73\x57\x50\x46\x0b\x93\xfe\x68\x0d\x38\x6e\x36\x05\xb1\xce\xe6\x68\xaf\xa4\xf1\xad\xb9\xcc\xaa\x12\x11\x9d\xd0\xb6\xf4\x7a\xbd\x4b\x37\x54\x4d\xc3\x62\x3b\x39\x9d\x9d\x5d\x12\x9a\x6b\x39\x89\x99\x66\x58\x86\x5e\x0a\xe0\x33\x34\xde\x5a\x62\x2b\x4f\x76\x3c\x4b\x8c\x84\xf5\x00\xfa\xc2\x8f\xcd\xb7\x9d\x24\xb4\xff\xdd\xe5\xc8\x3f\x85\xea\x68\x36\xc2\x89\x63\x0b\x09\xa3\xa0\x2d\x32\xb7\x29\xab\x5c\xf8\x28\xe8\x2d\xe5\x09\x5d\x1a\xd6\x97\xd0\xb5\x87\xa8\xd4\xc7\xf3\x33\x67\x25\x82\x7b\xaf\xc2\x50\xbf\xa8\x2a\x09\x78\xb9\xde\xcc\x46\xc5\x3b\x43\x91\x54\x6e\x1a\x3a\x25\x9f\x91\x1f\xea\x27\xa4\xc1\xb3\xe7\x33\xea\x67\x4c\xe0\x2d\xdb\xda\xee\x24\x2e\xd6\x43\x76\x84\x6d\x9d\x56\x3c\x7e\x06\x6e\x09\x4b\x60\xcb\x9d\x43\x87\x01\xdc\x19\x4f\xca\xf9\x7f\x36\xf3\xa9\x71\x9b\x00\x9f\xdd\x53\xf4\xae\x71\xd1\xd4\xc5\xe2\xc8\xd8\x91\xcf\xc3\x60\xee\xa0\x3d\x8f\x82\x0a\xea\xb1\x57\x76\x45\x6e\x69\xc6\x65\xae\xc8\xe9\xe5\x19\xee\x76\xa4\xa5\x47\x12\x90\x31\x81\xc8\x8a\x25\xfc\x1e\xfb\xf5\xf0\xe8\xfd\x5a\x95\x22\xe1\xfe\xb7\x4e\x53\xc6\x32\x55\xef\x6a\xb9\x4e\x1b\x1d\x15\xbf\x35\xbb\xa9\x5c\x8f\xda\x6e\xb1\x6d\xd7\x4a\x1c\x31\x48\xa5\x8d\xd7\x8a\xf9\x0c\xb7\xf5\x9b\x60\xeb\xd6\x5b\x44\xcb\xed\xa9\xf3\x7e\x8c\x0b\x03\xec\x08\x08\xe2\x01\x57\xe2\xbb\x26\xb5\xe4\x4a\x17\x22\xba\x88\x0b\xa1\xdb\xf0\x1e\x20\x1c\x29\x8c\x04\x9e\xe9\x3c\x7d\x8a\x7b\x6d\x2f\xb5\x0c\xbe\x87\xb5\x5f\xb6\xaa\x73\xad\x4f\x30\x30\x2b\xd2\x3a\x2d\xd2\x75\xf6\x0c\x5c\x9e\x00\x60\xc3\x18\xbe\xf5\x66\x34\x23\x3c\xaa\x06\x6e\x18\xbd\x5c\x83\xd1\xd9\x79\x01\x49\x81\x72\x17\x38\x9e\x3b\x87\x5d\x60\x32\x79\xba\xce\x68\x6c\xc3\x28\x6f\xbf\x9e\xbe\x46\xa9\x31\xc2\x84\x4b\xcf\x8c\x54\x9c\xb1\xad\xbc\x65\xb1\x75\x56\x75\x1f\xc8\xcc\xcc\x70\x95\x31\xb5\x21\x5c\x28\x4d\x93\xe4\x51\x6f\xf4\x1d\xbc\xa4\xca\x92\xf6\xa1\xac\x30\x56\x2a\x08\xb1\x6b\x6c\x4e\x06\x2d\x4d\x53\xb3\xa2\xa8\x1c\xa4\x49\x22\xa3\xc7\x9d\xe4\xaf\x4f\xb9\xd6\x38\x18\x91\x1c\xe0\x0a\x09\x02\x8c\x91\x00\xed\x7d\x09\x64\x24\x23\x04\xd6\x74\x06\x8b\x42\xa1\x5a\xd1\x8c\x3c\x16\x43\xa2\xdb\xca\xc9\xd3\x89\x06\xff\xde\xf4\x06\x54\xb5\x25\xba\xab\xc9\x5e\x61\xf3\xc0\x8c\x96\x3b\xd8\xd6\x48\x0f\x99\xcc\xcd\xd4\xd6\xeb\xcc\x45\x62\x3f\xe1\xd2\xb7\xca\x5c\x76\x55\x90\x36\x81\x18\xb7\x7c\x6d\x99\x4e\xe5\xfe\x17\xc3\xc5\x1c\x5c\x0b\x02\xd4\x1e\x51\x61\x9d\xc6\x9f\x15\xdb\x1a\xf4\x3b\xda\xee\x6b\x23\x0b\x03\x2b\x80\x6c\x89\xe5\xae\x26\xb9\x32\xaf\xcc\x19\x38\x31\x9b\x20\x01\x20\x82\xa8\xa0\x69\xaa\x3a\x67\x5e\x82\xd8\xb1\x7e\x01\x17\x8c\x6e\xb5\x40\xbb\xc2\xa8\x57\x61\xf0\x14\xaa\x1f\xec\x7a\x7f\x75\x8f\xd3\x00\xb4\xa9\x78\x7e\xfe\x99\x89\xf8\x3f\xff\xd9\x4b\xc9\x53\xe8\x77\x20\x45\xca\x96\x0a\xbe\x62\x4a\xbb\xf5\x55\x0d\x7d\x8d\x35\xc3\xb2\xac\x30\x67\x80\x92\x47\xd5\xf4\x22\xe8\x55\xe5\xee\xec\xf6\x22\x68\x76\xf9\x33\x8c\xf4\xda\x52\x83\x1d\x68\x64\x5a\xb0\x0c\x2f\x40\xa0\x91\xf7\xae\x33\x56\x64\x28\xd4\x42\x85\x6a\xa9\xee\x80\x93\xaa\x41\xfa\x9f\x76\xdc\x11\xeb\xb1\xea\x2c\x9c\x7f\x52\x13\x9a\xa6\xf5\x25\x73\x26\xeb\x5a\x20\x01\x38\xfa\xbe\xf3\xbf\x6f\xeb\x81\x58\xee\x7a\xa5\x33\xaa\xd9\x7a\x77\x6c\x8d\x97\xd3\x8f\x95\x9f\xcd\x22\xfe\xfc\x33\xd1\xf2\x1f\x74\x9b\xd4\x5f\x92\x7f\x13\x2e\x62\x26\x34\xf9\x16\xdb\xb1\x44\x31\xf3\x2f\x52\x18\x7b\x2f\x65\x92\x70\xb1\xfe\xe8\x71\xf2\xcc\xff\xa9\x80\x72\x4b\xef\xbd\x3b\xed\x31\xf9\xca\xa3\x22\x42\x1c\xc5\xb8\x69\xd6\x0d\xfc\x49\x75\xca\xed\x93\x26\x70\x27\xbe\xa4\x22\xda\xb0\x6c\xe2\xac\xf7\x68\x43\x2f\x2f\xbd\x98\x65\x24\xda\xb0\x38\x4f\x58\x36\x05\x6f\xe7\x69\x99\x77\x05\xdc\x1a\x32\x0e\x61\x25\x93\x54\xc6\x65\x64\x63\x5c\xba\x5b\xdc\x7e\x33\xfd\xea\x9b\xe9\xb7\xe0\xdb\x4a\xdc\xd0\xe1\xe4\xf1\x48\xf3\x87\x84\x82\xa9\x1e\xbc\x97\x81\x88\xed\x10\x27\x71\x2c\x85\xc2\x24\x26\x32\x61\x96\xa1\x42\x1e\x8f\x43\xbf\x93\x2d\x45\xab\x3f\x03\x9f\x5a\x08\xce\x75\x50\x12\x1a\xc7\x13\x88\xa0\x10\x2a\x07\x5d\x82\x55\xfb\xfb\xdf\xa7\x19\x97\x19\xd7\x3b\x37\x73\x08\xf1\x15\x36\x12\x09\xdd\x42\x7c\xbb\xa3\x75\xb1\x8a\xfd\x2e\xf8\xca\x74\x0c\xce\x83\x60\x54\x60\xb7\x3c\xd2\x95\x60\xda\xe1\x58\x3d\x26\xcf\xad\xbf\x47\xc5\x41\xc3\xac\x64\xc0\x7b\xb9\xda\x8f\x54\xc7\x24\xe1\x22\xbf\x77\x0d\x7e\xfe\xd9\x26\xd2\xfd\xaf\x9b\x43\xf2\x5f\xb7\xe4\xf8\x2f\x64\x7a\xe1\xf5\x44\x1c\xd9\xda\xc6\xff\x75\x43\xfe\xf3\x9f\x63\xb2\x38\x30\xff\xbe\x35\x6f\x0f\xbc\xae\x98\x88\xbd\x0f\xcc\x79\x63\xd5\x1d\xd5\x1c\x3c\xe5\x6a\x55\x57\xfb\x3d\xbd\x61\x44\xe5\x59\x95\xa1\x01\xc2\x1c\x7a\xc0\x1b\x9a\x26\x09\xca\xd8\x1e\xfe\x26\x36\xc7\xc5\x31\xb9\x90\x57\xb6\x71\xf9\x16\x1c\xd3\x32\x6a\x50\x43\xce\x2b\xa6\x10\x1c\x37\xbb\xe9\xa4\x0f\x94\x25\x58\xb9\xfe\x95\x81\x6f\xd8\xee\x38\x40\x94\xc3\x46\xf7\xe1\x3e\xbf\x67\x51\xae\x07\x81\xdd\xe7\x50\x61\x89\xaa\x72\x5c\x5d\x84\xd8\x2d\x76\x56\x30\x14\x8b\x10\x2e\xf8\x96\xff\x8b\x91\x58\xde\x09\xcd\xb7\x8c\xc4\xb8\x3b\xa8\xe3\x52\xfe\x4d\xc2\xf9\x2a\xfc\x99\x68\x96\x24\xfe\xe9\xa0\x25\x89\x25\x94\xb6\x02\x0d\x70\x39\x80\xfb\x64\x71\x50\xfa\x46\x55\x29\x35\x96\x91\x3a\x8a\xa4\x88\x58\xaa\xd5\x91\x4b\x00\xaa\x8e\x40\x49\x93\xca\xf8\xe8\x99\x8b\x91\xe6\x52\x4c\xe4\xca\xec\x8c\x92\x1e\xbc\x77\xdf\x65\x34\x62\x73\xb0\xe6\x5f\xb1\x48\x8a\x58\x1d\x93\x57\x0d\x96\x57\x66\xef\x46\xb5\x9d\x6b\xe0\xf6\xfe\x69\x42\x95\x42\x04\xfe\xfc\x33\x99\xa2\x2c\x67\x36\xca\xbc\xde\x80\xfc\xbb\x30\xbe\x2d\x0e\xf0\xf0\x42\x63\x8d\xa3\xa9\xc5\x81\xb7\x47\x8c\x00\x79\xea\x4e\xec\x26\xef\x2b\x4f\x73\x77\x99\x51\xd5\x4b\x5f\x4d\xa6\x03\x79\x1e\x17\xd8\x48\xda\x53\xbf\xbf\x99\xb6\x12\xa4\xbd\x2f\xd8\xa2\x43\xae\x32\x42\xf3\x32\x08\x7e\xfb\x7c\x45\x76\x32\xc7\x34\x34\x34\xc9\x18\x8d\x77\x7e\xa7\x16\x18\xb8\x53\xe4\x8a\xb5\x0c\xee\x9c\x46\x6d\x6b\x78\xed\x53\x39\xdf\x82\x6b\xd3\xcf\x3f\x4f\x4f\x2f\x66\x33\xf3\x87\xcf\x76\xec\xfb\x79\x9e\x24\xe8\x00\x7d\x4c\x66\x2b\xc8\x9c\x0f\x2e\x7e\x7e\xc3\x48\x6e\xb7\xd4\xc8\x21\x3f\x2e\x0e\x8e\x64\xaa\x8f\x22\xc1\x8f\x96\x5c\x1c\x79\x70\x41\xe4\xc9\xc1\xc4\xc2\x52\x08\xbb\xf8\x30\x71\xfb\x36\x93\xdb\x8a\xcf\x97\x53\x75\xbf\xa7\xa9\x93\x34\xfd\xe7\x19\x39\x81\x18\xbf\xbf\x7d\x7c\x73\x7e\x79\x71\x7e\x7d\x7e\xf5\xe9\xea\xfc\xf2\xfb\xd9\xe9\xf9\xa7\xbf\x7e\xb8\xba\x86\xa3\x22\xf0\x6e\xfe\xe1\xf2\xda\xde\xc4\xe4\x2d\xcb\x32\x1e\xc7\x0c\x19\x0d\x7b\x33\x7f\x4b\xb6\x4e\xf3\xe0\x3f\x88\x45\x2f\xd1\x99\x33\x49\x4c\x9c\x6e\xab\xfe\x85\x0b\x45\x69\x26\x41\x63\xe2\xb6\x36\x15\xb7\x4a\x1e\xb0\x17\x1f\xce\xce\x3f\x5d\x9c\xbc\x3f\xaf\xf7\x0b\x0e\x9a\x0d\x4c\xe1\x03\xfe\xe7\x21\x4c\x15\x2f\xe7\x54\x6f\x8e\x61\xcb\x4d\xcd\xd6\x80\x50\xd1\x20\x28\xa7\x27\xef\x66\xa7\x1f\x3e\x5d\x9c\x5f\xff\xf0\xe1\xf2\x6f\xb3\x8b\xef\x3e\xbd\x39\x39\xfd\xdb\xf9\xc5\xd9\x3e\xf0\x14\xab\xf7\x37\xb6\x6b\x03\xab\x22\x8a\x56\x4d\xec\xfe\x03\xac\x1e\x5b\x7d\x72\x91\x4b\x5e\xb3\x5b\x99\xe4\x5b\xf6\x3e\x94\x55\x68\x42\xb6\xe6\x67\x9c\xf9\xd1\x2d\xcd\x8e\x12\xbe\x04\xf2\x74\xca\xcc\xf0\x62\x97\x1b\x7c\x22\x98\x9e\xc4\x3c\xeb\xea\xd7\xb4\xf6\xe9\x3e\xdc\x67\x24\xf8\x64\xc9\x45\xbd\x33\xc5\xa2\x1c\x58\x99\x14\x9a\xdd\xd7\x8b\xd0\xa5\x19\xbf\xe5\x09\x5b\x57\xdd\x12\x49\x88\x55\x55\xee\x26\xe6\xca\xb1\xe4\x82\x66\x95\x68\x64\x34\x3b\x9b\x77\xb5\x2b\xc8\x8a\x27\x10\xdf\x03\x97\x10\x51\xdd\x04\x8e\x2a\x6c\xff\x93\x48\xf0\x2f\xcb\x45\xec\xc0\x23\xcf\xf0\x26\x72\x61\x33\x4a\xb8\xb5\xf6\xd7\xb1\xd0\x2e\x4d\x5b\xb6\xf7\xc5\xec\xd3\xe9\x87\x8b\xb7\xed\x2c\xc6\x88\x9a\x5f\xbd\x9a\x58\xb5\x8c\xe9\x1b\x54\x63\x07\x75\x28\x9c\xda\xab\x46\x4d\x10\xa5\x06\x6b\xd6\x46\x53\x75\x70\x2c\xab\x01\xb0\x66\xdf\xfd\xa2\x6c\x46\xf0\x4f\x76\x3a\x9f\x42\x4d\x9f\x91\x2b\x86\x4e\xeb\x66\xd7\x43\x62\x8f\x22\x5e\x10\x7c\x66\xff\xa4\xf0\xce\x6e\x5e\xb5\xcc\xf8\x57\xc0\xea\x9f\xc1\xba\xbd\xbf\xfe\x48\xac\x18\x7b\x4b\x33\x6e\xee\xba\xed\x6b\xf4\xfe\xfa\xe3\x2f\xb9\x30\xb7\x4c\x6f\x3e\x6d\x75\x5e\x9f\xc7\x3c\x63\xb7\x4c\xd8\xe2\x92\x25\x37\x04\x39\x4d\x25\x8c\x81\x17\xe3\x4a\x9a\x56\xf5\x22\xb4\x6e\x76\x57\xef\xce\xcf\x1b\x95\x9c\x8b\x8d\x80\x61\x3a\x07\x0f\x3a\x71\x3e\xeb\x64\x08\x76\xc6\x74\xe4\xce\xaf\x69\x23\x23\x44\xd9\x5d\xe0\xd4\xfa\xcc\x83\xc6\xc8\xcc\x1e\x7e\xb7\x98\x8b\x0f\x33\x82\x46\x4c\x29\x9a\xed\x80\xfd\xa0\xf0\xad\x40\xc5\x5a\xba\x06\x19\x46\x09\x35\xf3\xd2\x84\x8a\x4a\xe7\x90\x5a\x63\x99\xae\x08\xd5\xe4\x48\xed\xd4\xd1\x4a\x1d\xc1\x9f\x22\x26\x11\x84\x72\x7d\x0d\xaf\xb2\xdc\xc9\x93\x47\xf8\xf3\xd4\x65\x2c\xb4\x2a\x32\xae\x39\x4d\xb8\x2a\xe3\x53\xf1\x5e\x57\xd5\x08\x18\x49\x5c\x69\x73\xfb\x93\x99\x26\x2b\xaa\x36\x20\x72\x03\x10\x42\x92\x15\xe5\x89\xb9\x09\x03\x73\xcf\x32\x99\xa9\x43\xf4\x5c\xd6\x24\xe6\x2a\xcb\x53\xf0\x16\xf2\xc2\x60\x85\xab\x48\x56\x3f\x06\x1c\x6d\x2d\x0e\x00\x53\x93\x65\xba\x5a\xa9\x2a\x15\x95\x27\xa7\xb9\xd2\x3c\xd6\xd1\xe9\xdf\x34\x51\xe6\x36\xa8\xb1\xff\x34\x93\x9f\xe0\xe4\x6b\xc7\xe9\x60\x92\xc6\x25\x0a\x53\x9e\xda\xa9\x49\xf3\xdd\x33\xf2\x86\xc7\x3c\x43\xc7\x18\x9a\x60\x7c\xa8\x35\x1f\x41\x35\x36\x50\x3e\x14\x59\x40\x04\xbb\xc3\x01\xc9\x1d\x23\x5b\x7a\xc3\xea\x94\x91\x66\x32\xa5\x36\x0d\xab\x2c\x58\x71\x73\x54\x25\x9d\xb2\x88\xc8\x5c\x27\xfc\xd6\xc6\x99\x55\x29\xb9\x71\x74\xe3\x64\xed\x18\xa0\x47\xad\x80\xdf\x27\x60\x96\x74\x1a\xc6\xd1\x2d\xcd\x26\x59\x2e\x26\xe1\x36\x8f\x82\xab\xc6\x56\xf9\x55\xa1\xec\x19\x01\x2a\x23\x47\x69\x26\xa3\xa3\xf2\x42\x6d\x93\x06\xe5\x2a\xa7\x49\xb2\xb3\x41\xfd\x30\x70\x9a\xc9\x75\x46\xb7\x30\x37\x43\xd7\xe6\xc3\x29\x99\xe9\xe7\x3e\x97\x01\x18\x84\x42\xa9\x77\x77\x58\x1f\xd3\x71\x03\xb0\x54\x95\x5b\xe4\x10\x43\x40\x0c\x3c\x99\x94\xba\xe0\x38\x2b\xd5\x82\x49\x2d\x09\xd5\xda\x88\x34\xa7\xd7\xef\xde\x38\xd0\x8c\x1c\x9e\x99\xf9\x26\xf5\xf2\x50\x55\x02\x71\xd0\x87\x49\xa3\xed\xad\xb9\xff\x7f\x10\xc9\xae\x29\x1a\x3e\x8c\xa7\x47\x61\xd5\xc7\x65\x0e\xe6\xae\x80\x51\xa3\x10\xe3\x3c\x2d\x13\x48\x74\xb5\xc2\xcb\xcf\x7c\xcd\x89\xc3\x4c\xcd\x43\xd1\xf0\x75\x30\x10\x2a\xd7\xab\xff\xbd\x21\x84\x00\x17\x0d\xa8\xcf\xc8\xa3\x72\xd0\xdf\xf7\x6d\xe2\xa3\x62\xfe\xd2\x9e\xcc\x67\xce\x74\x65\xae\xdb\x46\x80\x32\x67\x37\xf8\x70\xb4\x88\x50\x67\x27\xd7\x27\x57\xd7\x1f\x2e\xcf\x3f\x5d\xff\x63\xde\x7e\xa9\x28\xa7\xd0\xbc\x4c\xfc\x40\xb9\x2e\x1c\xa7\xfb\xc6\xfb\xe1\x64\x76\xfd\xe9\xed\x87\xcb\x4f\xc5\xc0\xad\x63\x02\x02\x1a\xa3\x19\x29\x7e\x6f\xc1\xdd\x48\xeb\xbf\x8c\xb0\xbe\x91\x52\xb1\x62\x45\x98\x70\xaa\xbf\xb6\x3b\xd5\x6f\x4b\x83\x03\x53\x44\x9b\x26\x96\x7a\x37\x37\x48\x48\x95\xb6\x42\xf1\xd1\xcb\x4f\x63\xde\xb7\x4c\xfa\xdd\xc7\xab\xeb\xf3\xcb\x1e\x0a\xfc\x93\x3a\x5c\xae\xd3\x26\x41\x9c\x94\xfe\xbb\x28\xb1\x7e\x37\xf7\x8a\x33\xb5\xe0\x79\xd6\x7e\x6d\xa0\xb9\x96\xd8\x5d\x73\xac\x73\x01\x22\xe3\x6c\x5e\xff\xbe\xb6\x7e\xb3\xf9\xf7\xdf\xce\x3f\x7c\x78\xf7\xa9\xd9\xd2\x1b\xe9\x04\x12\x6a\xb4\x8e\x22\x33\x72\xc6\x15\xfc\xf3\xfb\xbf\xbf\x3b\xb9\x70\x04\xef\xf4\xe5\x36\xa8\xab\x9b\x92\x0a\x48\xa0\x8b\x56\x50\x2e\xcc\x2d\xeb\x33\x20\xb9\x7d\x3d\x18\x9c\xd7\x0f\x07\xc7\xec\x7d\x73\xf5\x05\x66\x93\x0b\xc1\x12\x12\x33\xf0\x1a\x07\x27\x7b\xbe\x22\x3c\xe5\x29\xdc\x21\x00\xf0\x38\x0c\xcb\xdb\xf3\x77\xb3\xbf\x9b\xa5\xb9\x98\xcd\x7f\xa5\x97\xe3\xca\x4c\x37\x0e\xed\x95\x39\xb7\x20\x1a\x27\x07\xed\x7f\x23\x73\xfb\x81\x67\x6c\x9d\xd3\x2c\xde\x63\x7e\x3f\xcc\x2e\xcf\xbf\xfb\x78\x72\x79\xf6\x2b\x9d\xe3\x75\x75\x77\x7c\x0b\x5b\xc3\x73\x1f\x2b\x5d\x57\x6b\x31\x67\x53\x08\x4c\x98\xcd\x8b\x92\x99\xf5\x9e\xa3\x8d\x54\x46\xee\x40\x07\x01\x73\xcd\xa0\x62\xcd\xa6\xe4\x74\x43\xc5\x1a\x33\x3f\xb8\xda\x40\xd6\x8b\xb1\xe2\xdb\x04\xbd\x6e\xe8\x6d\xa3\x5f\x21\xad\x69\xd5\x56\x17\xb2\x79\x38\x56\x34\x49\x5c\x86\xd6\xc9\xc4\xfa\xaf\x4c\x22\x1e\xd7\x2f\x13\x21\x77\x88\x73\x2f\x65\x15\xd3\x0d\x96\x74\x3a\x3b\xbb\x3c\xaa\x33\x06\xf3\xe3\x42\xfc\xfc\xf3\x84\xa0\xc9\xf6\x45\xc2\x04\xf9\x2f\x33\xa0\x7a\x49\xbe\x26\x55\x31\xb1\x9d\xdd\x61\x37\x01\xc2\xb0\xd6\xf8\x15\xcf\x94\xb6\xfd\x56\xec\xf2\x6d\xdd\xbe\x1e\xd4\x6d\x42\xeb\xbd\x9a\x99\xb0\x44\xb1\xc7\x82\x7c\x6a\xcf\x5b\xd3\xcc\x1b\xc1\xb7\x48\xbb\x05\x71\x3c\x1b\x94\xcb\x89\x5c\x03\x79\x28\x89\x31\x95\x3a\x31\x3f\x29\x70\x57\x6a\x3b\x25\x2d\x68\x67\xb3\xab\x93\x37\xef\xce\x3f\xbd\x9d\xbd\x3b\xff\xf4\xee\xc3\x77\xdf\xcd\x2e\xc2\xaa\xde\x6e\xa9\xed\x2d\x4b\xf8\xbd\x97\x3f\x44\xe2\xed\xd1\x6d\x13\x4c\x9e\x6b\x7e\x3e\x39\x3d\x3d\x9f\x5f\x77\xee\xff\xb3\xf3\xb7\x27\x1f\xdf\x5d\x9f\x5f\x9c\xcd\x3f\xcc\x2e\xae\xaf\x3f\x18\xc9\xfd\xe4\xf4\x7a\xf6\xa1\xfd\x50\xc1\x6e\x9b\xb0\x35\xe9\xf6\xca\x66\x0d\x8c\x73\x9a\x28\x4d\xa3\x9b\x07\x10\xa4\x3b\x64\xbe\x7f\x7d\xf5\x71\x6e\xee\x0e\x7b\x61\xac\x94\x53\x5e\xb7\x7c\xe7\x89\x29\x83\x28\xf7\xe2\xe4\xfa\xd3\x87\x8f\xd7\xdf\x7d\x18\xb2\x78\xad\x44\x5b\x12\x15\x9c\xf9\x52\x78\xd7\x8f\xce\x05\x1b\x82\x88\x42\x61\xdb\x4a\xd1\xcd\xa5\x82\xf4\x53\x18\x1f\x60\x58\x0c\x0e\xf6\xee\xc3\x77\x86\x56\xe7\x27\xd7\x7f\x45\x2d\xa0\x60\x36\x2a\x0c\xf7\x03\x10\xa2\xdb\x10\x5a\xc2\x06\xe9\x02\xde\xeb\xaf\x15\x78\x33\xc8\x10\xda\x6a\x03\xf8\xea\xfc\xfb\xf3\xcb\xd9\xf5\x3f\xae\xfe\x71\x85\x30\x5b\x1e\x0e\x8c\xbe\x88\x4f\x16\x2b\xd9\x39\x13\xb5\x53\x89\x5c\xf7\xcc\xc5\x1b\xaa\x75\x3a\x5d\x5b\xd8\x1b\x6f\x71\x70\x47\x33\xc1\xc5\x7a\xd0\xb6\x0a\xce\xf7\xf4\xf2\xfc\xfc\xc2\xf4\xf5\x03\xf6\xd4\x9c\xf1\xd0\xe9\x40\x4f\xad\x33\xfa\x21\x0c\x68\xb5\xbb\xbf\x9e\x9f\xbc\xbb\xfe\xeb\xf9\x85\xe1\x77\xe1\x3b\x57\x3b\x8f\xeb\x9a\xf0\x6c\x7e\x6d\xba\xbc\xb2\xb7\x39\xd0\x46\xe5\x1a\x03\xc8\xca\x9d\x6c\x13\xc8\x8a\x15\x68\xa6\x55\xf7\x7e\xaa\x74\xd8\x79\x9b\xa9\x82\xfa\x50\x73\x42\xc8\xc1\xd9\xfd\x8e\x79\x9e\x1a\xd2\x54\x94\xe6\xc7\xe4\xeb\x3f\xbe\xaa\x78\xaf\x24\x7c\xc5\xa2\x5d\x94\xd4\x53\xd8\xa7\x19\xbb\xd2\x32\x6d\x74\xc2\xee\x1b\x79\x95\x88\xa7\x3a\x6f\xbe\x99\x10\xdf\x87\xa5\xae\x7a\x72\x6d\x26\x6a\x93\xeb\x58\xde\x89\x2a\x6c\xb7\x4c\x30\xa5\xe6\x99\x5c\xd6\xe1\x0b\xc2\xd1\x06\x45\x3f\x0c\x13\x32\x81\xdd\x3b\x31\x63\x06\x5e\x2e\x79\x16\x07\xde\xa5\x55\xd7\xac\xaf\x5e\x55\x5f\x5b\x6b\xca\x19\x4b\xe8\xae\xb5\x91\x35\x96\x5c\x6f\x32\xa6\x36\x32\x89\x8f\x49\xed\x90\xd1\x7c\xcb\x64\xae\x5b\x3a\xc8\x18\x8d\xf9\x97\xc6\x52\xcd\x95\xaa\x8a\xa6\xc0\xcb\x1e\x3c\x75\xcf\xb0\xc3\xa6\xf2\x0c\xca\x79\xbb\x7c\x2b\x86\x5d\x79\xe1\x23\x27\xf3\x99\x11\xf0\x41\x01\x42\x93\xe6\x81\xf8\x88\x46\x41\x52\x51\x2f\x17\x19\x09\xdb\x46\x4b\xf8\xf2\x68\x2b\xe3\x3c\x90\xeb\x18\x87\x49\xf8\x72\xd2\xd2\xa0\x5d\x8b\x5d\x1f\x25\xcb\xc5\xd1\x3d\xf2\xae\x69\x22\x8d\xd8\x14\x1a\xca\xb6\x98\x84\x5a\xec\x31\xa5\xcf\xb7\xd9\xec\x39\x18\x78\x20\xf5\x0c\x66\xd0\xf8\xa0\xc1\xb0\x0b\x54\xb5\xab\x9d\x68\x98\x12\x42\x33\x37\x1b\x86\xae\x1b\x09\xf8\x90\x44\x0b\xa5\xf4\x21\xb9\x0b\x06\x32\x6d\x6d\x19\x25\xb4\xf1\x96\x16\xe0\xba\xd5\x4e\x49\xb0\x51\x41\x6b\xcc\xe8\x5b\x1f\x0e\xb2\x8c\x6b\x82\x86\x23\x99\x35\x2d\x29\x38\x39\xb4\xa4\x76\xcc\xab\x1c\x34\xdc\x81\xd9\x0a\x89\x5c\x87\xb6\x42\x63\xad\xe4\xba\xb0\xff\x54\xdd\x9e\x48\x2b\x45\xe3\xae\xaf\x9a\x56\x5c\xbc\xb7\x1f\x61\x52\xbe\x9f\x74\x6f\x1e\xb3\xc5\x01\xa6\x1a\x6b\xea\xd8\x92\x93\x5e\xc2\xed\xee\xb4\x6d\x53\x4c\x7a\x69\xb4\xbf\xdf\x10\xfd\x4f\x7a\xf6\x74\x77\xaf\xdd\xfc\x02\x43\x3f\xde\xf2\x84\x7d\xc8\x4e\x2b\x31\x7d\xe5\xb8\x4d\xc3\x75\xf7\x88\x96\xc4\x42\x03\x9d\x39\xf2\x6d\x1f\xad\x41\xc1\x83\x06\x6b\xd0\x73\x6d\x3c\x9f\xde\xb6\xa5\x85\xb5\x62\x35\xad\x25\x6d\xf1\x5c\x13\xaa\x3e\xd1\xad\x56\xd1\x00\xd5\x86\xac\x96\xdd\x13\xaa\xb6\x2e\xd3\x6d\x38\xa7\xb1\xd3\x8b\x59\xc8\x06\x18\xf6\x92\xe9\x1e\x2a\xe8\x7b\x33\xe9\x3e\x13\xbb\x7b\x6c\x39\x6b\xcb\x59\xd8\x44\x1f\xe6\x3c\x4f\xe4\x3a\x84\xb1\x16\x06\x34\x60\xeb\xb4\xb0\x23\x67\x52\xb7\x99\xd2\x0b\x0e\x0a\xf7\x82\xba\xb3\xba\x1f\x92\x6b\x5d\x7b\x2a\x26\x5c\x20\x8e\xbb\x0d\x13\xf5\xf8\x46\xaf\xa3\xaa\xc3\x7b\x11\xff\xec\x85\x3e\xfb\x3d\xba\x70\x49\xe5\x32\xca\xfa\x1e\xe9\xed\xbe\x05\x93\x41\xce\xb8\x03\x19\x4e\xd0\xe5\xb7\x5c\x34\xab\x4f\x4d\x59\x06\x21\x54\x1f\x05\xbf\x27\x67\xd2\xc8\x67\xe4\x4a\xd6\x2a\xa8\x76\x9f\xb2\x2d\xf0\xf4\x32\x07\xd2\xe4\xbe\xde\xc1\x0c\xa1\x8b\x7d\xe1\x27\x7e\xec\x5f\x19\xdf\x59\x8f\x9e\x7c\x78\x30\xe0\xbe\x81\x94\xf5\x3c\x5c\x45\x50\xe5\x15\x63\x7e\x72\xde\x4d\xbe\x9c\x46\x72\x7b\x54\x89\x06\x3e\x6a\x66\xf1\x0a\xc6\x36\xda\x08\x48\xaf\x40\xc6\x3e\x39\xcc\x1e\x1c\xf9\x18\xc8\x53\xe6\xe2\xc2\x50\x6d\x5f\xc9\x9b\xea\x0a\xd8\x61\x40\x07\x24\x0a\x4f\x18\xa8\x2a\x6f\x19\xb2\x3d\x61\x2d\x15\x19\x4b\x13\x1e\x51\x05\x31\x87\x0f\x8a\xa8\x0c\x4d\x52\x95\x71\x95\x25\x31\x5e\xb2\x32\xd2\xbb\x2f\xa4\xb1\x17\x8d\x84\x74\xa1\x92\x0c\x89\x8a\x6c\xeb\xf6\x19\x39\x89\xad\x93\x8f\x8b\x1b\x82\x5c\x95\xd9\x4d\x2d\x6c\x2c\x95\x65\x6c\x5f\x38\xb6\xf1\x8b\xc7\xfb\x59\x7d\xef\xf4\xba\x0c\xbe\xf3\x94\xa1\xd5\x90\x3c\x2f\xb2\xd5\x6f\x5e\x84\xb5\xbe\xc6\xb0\xd6\x86\x4a\xb5\x2d\xb0\x2f\xac\x48\xf2\x5a\x3b\xfb\x6b\x6b\xd6\x5e\x49\x30\x4f\x7a\xc2\xc0\x25\x2c\xcb\x45\x5b\x20\xe0\xef\x35\x8c\x10\x3e\xc7\xac\x80\x32\x61\x35\x7a\xc2\x68\x6e\xbf\xab\xae\x69\xf6\x74\x66\x17\x66\x52\x73\xa0\x0d\xf7\x69\x35\xdf\x1e\x91\x7c\x76\xe8\x62\xdb\xee\x6c\x84\x31\x7e\x4e\x6c\x5f\x2d\x49\xe8\xa0\x30\xbf\xc2\x98\x18\x8a\xf4\x0b\xba\xba\x4d\x86\xb1\x33\x52\x8d\x6e\x29\x1b\x7c\xa6\xa3\x59\x43\x15\x64\xbd\x7b\xd0\xff\xd1\xdf\x80\x5a\x9a\x3d\xd7\x72\x0f\xb6\xda\xe5\x4f\xa7\x1f\x2e\xae\x2f\x3f\xbc\x7b\x77\x7e\xd9\xa6\x86\x6f\x6a\xc4\xf6\x72\xdb\xba\x09\xd6\x2c\x7d\x4c\x1d\x67\xae\x32\xd4\xe0\x6d\x58\x74\x33\xa9\xa6\x43\x2d\x9b\x4d\x6a\x8e\xa4\xff\xdb\x74\x98\x03\xb1\x90\xf5\x62\xe1\x0b\x89\x8b\xfb\x48\x53\x75\xd1\xb1\x9a\x56\x03\xe5\x10\xc3\xbb\xe7\x32\x26\x67\xe8\x69\xcf\xa5\x20\x6f\xf2\x78\xcd\xd0\x2b\xb0\xdc\x7f\x70\xc9\x42\xd7\xcb\x3f\xa9\xc2\x6f\xec\x24\xd7\x52\x45\xd4\xbe\x87\x50\xff\xea\x14\x51\x5c\xf7\x64\xc6\xb9\x8c\xcb\xa1\x70\xa4\x5f\x5e\x78\x0c\x64\x9e\x78\x24\x29\xf0\xe0\xf0\xff\x47\x08\x71\xf1\x01\xb7\xdf\x4c\xbf\x7e\x3d\xfd\x6a\x92\x21\xb7\xfe\xfa\xe0\x98\x58\x8b\xa9\x75\x3b\x38\xfe\x0b\x51\x69\xc2\xa1\xee\x0d\x59\x1c\x1c\x2e\x0e\x88\xef\x33\x40\xb0\x80\x80\x4d\xaf\x73\x6d\xc5\xc7\xd2\xa5\xd2\xbe\xb0\xc3\x0c\xbe\x32\xd8\x04\x7e\x95\xec\x2b\xa7\xce\xd9\x86\x70\x55\x54\x6c\x73\x89\xae\x40\x9c\x66\xc9\x6a\x02\xb9\xe6\x62\x37\xae\xef\xac\x52\x66\xcf\x75\x1d\x35\x69\xbf\x7d\xd9\x4b\xcf\x9d\xb6\xc5\x2e\xbe\x7b\x86\x79\x42\x0d\x98\xd6\xb2\x8a\xf2\xa8\x36\xbf\x7e\xb2\x67\xeb\x27\x17\x17\x52\x5a\x7a\x9f\x91\xd3\x62\x36\x2d\x2e\x9e\x55\xdf\x49\xf3\xf9\x92\x67\x71\xf8\xf3\xf7\xd7\x1f\x5d\x60\xb8\xd9\x38\x2e\x8a\x1f\x6b\xda\xac\x68\x64\xeb\xd3\xa3\x97\x14\x8a\x61\xcf\xc8\x9b\x9d\x3b\x59\x0f\xa1\x03\xae\xfc\x8c\xa6\xae\x70\x39\xab\x78\xe2\xe8\xc2\x4f\x08\x4b\xee\x59\x5f\x1f\x5b\x9f\xc5\xc5\x2d\xd8\x01\xfe\x21\x73\xbc\x07\xa1\xd3\x33\xab\x27\x4c\x5d\xee\x48\x9a\xc9\x5b\x1e\x63\xc6\x03\x21\xc5\xe4\x5f\x2c\xb3\xe6\xeb\x69\x29\x49\x1b\xe0\x9c\x20\xcc\x57\x44\x30\xfc\xe9\x95\x3d\xf4\x9d\x27\x95\xf5\x72\x79\x7f\xfd\xb1\xe1\xdd\x52\x13\xa1\xfd\x2f\xbe\xfa\xf6\xdb\x57\x0d\xcf\x81\xb6\x38\x47\x97\xc1\xae\x2d\xdc\x11\x3e\x03\x29\x08\x43\x20\x9e\xb9\xba\x62\xae\x4a\xb5\x0d\x97\x2c\x8a\x00\xe7\x5a\x6e\x29\xc8\x30\xc9\x8e\xa4\xd2\x96\x51\xb0\xf8\x6b\x11\xab\xc0\x38\xab\x14\x5f\x8b\x4f\x3c\xbd\x7d\xbd\x38\x28\x0d\xcb\x06\x3d\x85\xeb\x49\x3d\xeb\x9e\x22\x2b\x99\xa3\x17\x6e\x33\xe4\xf1\x98\xfc\x7b\x82\x8c\xe5\x67\xc7\x5f\x16\x07\x02\x4a\x0b\x5b\x1f\x5a\x73\x45\x9a\xd8\x8f\xbc\xa2\xa9\x8b\x83\x48\xb8\x8d\x85\x6d\x5f\x4d\xbf\x99\x7e\x55\x69\x61\x33\x21\x99\xd7\x3f\x96\x47\xd9\xcf\xfe\xa9\xb6\x38\x00\x2f\x5f\xe8\xc0\xaa\x8a\xab\x85\x59\x17\x07\x89\x5c\x7f\x4a\xd8\x2d\x4b\xb0\x15\xd8\xf7\x43\x6d\x56\x3c\x61\x9f\x52\xaa\x37\xd8\x2e\xa0\x46\x33\xff\x9b\x26\x72\xdd\xf8\xbc\xf0\x41\xff\x54\x42\xe3\x3b\xb0\xd7\x9a\x9b\x35\x2f\x71\xf4\xe9\x53\x28\xca\xf3\xd3\xa7\xc6\x67\x5b\x9d\x9b\x2f\x3e\x7d\xb2\x31\x96\x9f\x3e\xd5\x1a\x60\xf6\x84\x63\x83\xa1\xc1\xde\x43\x21\x14\xba\x34\x0c\xcd\x96\x25\xfd\x7c\xeb\xd3\x4f\x67\xcb\x0a\xa5\x75\x78\xfa\x74\x40\xd2\xe2\xa0\xf3\x9f\xda\xfc\xf1\xdc\xb6\x18\x68\xef\xfa\xe6\x4f\x35\x17\xe8\x7a\x3f\xfe\xd2\x05\xfb\xb2\x35\x02\x0c\xb7\xf7\x96\x10\x43\x92\x3f\x39\xc7\x1d\xb3\x82\x95\x51\xca\x3f\xfc\x01\x5b\xc9\x39\x95\x99\xde\xd2\xb4\x41\x06\x4a\x50\x6d\x5a\x18\x84\xd6\x5e\x45\x34\xa5\x4b\x9e\x60\xce\x3b\x00\x1d\x7a\x79\x8f\x15\x3a\x94\xfb\x6a\x5f\x48\x96\x54\xc4\x77\x3c\x36\x3b\xa3\x7f\x40\xaf\x71\x73\x34\xf7\x4f\x1b\x50\x38\x40\x41\x78\x13\xc7\x93\x28\x8b\x9d\x46\xf0\x49\x4b\x07\x36\xb2\x62\x3e\x41\x01\xc1\x37\xdf\xcd\x1b\x69\x1b\xfd\x32\x82\xf5\xf7\xcd\x62\x82\x2d\xb9\x3b\xcb\x92\x82\xf5\x06\x8b\xe1\x85\x05\xad\xd8\xb6\x78\x9a\xaa\x82\xf5\xb9\x55\x4b\x92\x55\x8f\x1d\x2c\xca\xbb\x83\xe0\x8a\x4c\xe6\xba\xaa\x8d\x19\xab\x0a\x8e\x55\x05\xfd\x25\x18\xab\x0a\x7e\xb1\xaa\x82\xf5\x4d\xdc\xac\x2d\x58\xad\x89\x6b\x36\x70\x65\x6b\x0f\x2f\x22\x48\xd5\x45\xbe\x5d\xb2\xde\x62\xdf\xcf\x4f\xae\xb0\xa1\x2b\x56\xea\x34\x7f\x27\x57\x44\xe0\x0b\x67\xc7\xa6\x56\xe0\xfe\xf1\x0c\x9b\x04\xe3\x31\x5e\x7f\xfb\xc7\xaf\xbe\xfe\xe9\x79\xf3\x15\xe6\x9f\x3e\x36\xbb\xf3\x9b\xaf\x9b\xaf\x11\xa5\x66\xeb\xae\x59\xc3\x61\x64\xc9\x45\xfc\x5e\xc6\x75\xd5\x4f\x13\xbf\xb6\x5d\xa8\xce\xb7\x84\x83\xc2\x06\x81\x5a\xc4\x0a\xbc\x15\x05\xcb\x44\x5b\x25\xba\x8d\x4c\x63\x8a\xbc\xb8\x90\x82\xbd\xc4\xf4\xd2\xc9\xce\xcf\xa2\xfd\x1c\x6c\x4f\x52\x70\xb4\xfe\xba\x6f\x42\xbd\x5e\x18\x0c\x9a\x65\x9f\xbe\xf9\x6e\x3e\x9d\xcd\x6f\xff\x7e\x82\x8d\x4d\xf7\x31\x9b\xcd\x5f\x4e\x89\x45\x2f\x59\xb2\x0d\xbd\xe5\x32\xc7\xa5\x71\xf0\x87\x7a\x0d\x4c\xa9\x01\xff\x9e\x65\xd5\xdd\x66\x0b\xd1\x56\x0d\xeb\xa7\x65\x53\x64\x49\xae\x30\x25\x82\x64\x37\xad\x23\x6d\xcc\x2e\xc9\x9a\x5e\x41\xe6\xa1\xd9\x92\xeb\x8c\x66\x3b\x3c\xfd\x31\xea\x88\xa2\x03\x33\x86\x33\xef\x55\xc9\x32\x08\xe6\xae\xdc\x71\x4a\x53\x11\xd3\x2c\x36\x8b\x9a\xd0\x6c\xcd\xea\xe0\x86\x3a\x25\x30\x05\xc3\xdc\x02\x31\xac\xf8\x74\xec\x4b\x7c\x40\x22\x08\xbf\xaa\x17\x22\xa5\x5b\x46\xd6\xfc\x96\x09\xd4\xc7\x54\xc0\x0b\x0e\x4e\x7a\x4b\x78\x92\x42\xeb\x3c\x08\x84\xef\xe1\x68\x81\x94\xd4\x4b\x48\x87\x84\x5b\xd9\x5c\x54\xe8\xb1\x10\x8b\x03\x83\x3e\xfb\xc7\xf1\x76\xbb\x38\x68\x05\x8b\x80\xb3\x5b\x81\xf5\x72\x36\xb9\x62\x5e\x77\xd8\xff\xa1\x2d\x56\x66\x7e\x5f\x1c\x18\xa4\xb7\x77\xbb\x38\x80\x0f\x69\xc6\xc8\x57\xaf\xc9\x92\x6b\xcb\xbb\xa6\x30\x60\x7d\x69\xbd\xd1\x00\xde\xf6\x7e\x43\x90\x1c\x16\xa3\x89\xd8\xdc\x2c\xb7\x76\xe0\x6f\xbe\xae\x0c\xfc\x83\xf9\x24\x58\x20\xde\x81\x0c\xd3\xc2\x04\x0c\x27\x57\x04\xb9\x70\x5b\xe7\x29\xcb\x26\x27\x57\x2e\x5c\x97\x07\xb2\x43\xb8\x27\xa5\xda\x88\x3f\xc7\xe4\xff\xbe\x58\x2c\xe2\xff\xff\xcb\x63\xfc\xcf\x7f\xfd\xbb\xfa\xb7\xfb\xf9\xa1\x14\xd4\x76\x04\xfa\x6f\x03\x45\x62\x09\xe1\x6b\x21\x33\x16\xcf\x0a\x35\x59\x1f\x7b\x99\xd5\x3f\xf0\xb8\x3b\x66\xe7\x40\x75\x91\xa7\x78\xd3\x1b\x1a\x00\x8a\x94\x09\xc9\x97\x8c\xb0\x7b\x28\x29\x66\x9d\x70\xd0\xc4\xb0\x76\x11\xaa\x0f\xe0\x35\x0f\xac\x9a\x4b\x2c\x5b\x9f\xcb\x2c\x74\xa0\x56\x30\xf1\xae\x68\xe9\x0e\x6b\x08\x7c\x42\xe2\x34\xcc\x36\xcd\xa4\x96\x91\x4c\x9c\x04\x8d\x5d\x07\x49\xc5\x1e\x32\x80\x8d\xaf\xfe\xfb\x7f\x9a\x4d\xb6\xf4\x9e\x6f\xf3\xed\x31\x79\xfd\xc7\x3f\x7e\xf3\xc7\xc0\x7b\x2e\xf0\xfd\x57\x7b\x1e\xe6\x89\x5c\x5f\xb1\x5b\x96\x71\xbd\xbb\x8a\x32\xc6\xea\xf7\x8d\xc6\xb4\x9f\xbf\xab\x7f\xe1\xa6\x9f\xc8\x35\x51\xf6\x0d\xa1\x4b\x79\xeb\xcc\x7b\x89\x5c\x07\x8f\x5f\xb3\x95\x14\x13\x45\x31\x38\xa5\x63\x99\x6b\x4f\xa4\x21\xb3\x8b\xb7\x1f\x42\xe2\x4b\xd7\xf2\x1a\x19\xe0\x3d\x53\x9b\xf7\xf4\xfe\x92\x41\xa4\xe8\x35\x6f\xe1\xef\xd5\x22\xce\x7c\xcb\x4a\x33\x0b\xe4\x9f\x96\x2b\x7d\x67\x13\x2d\x9b\x7e\xe0\x47\xb0\x55\x6b\x39\xd9\x32\xb5\x21\x29\x63\x06\x04\x35\x25\x86\xc3\x04\xa5\x01\xe2\xb4\x97\x2c\x3e\x2c\x92\xa0\x16\x9a\xfc\xd8\x25\x9d\x58\x67\x34\x62\xab\x3c\x29\xc6\xb2\x46\xb8\xce\x9e\x8d\xfc\x5e\xe9\x9d\x91\x37\xb3\xcb\xb3\x42\x6a\x94\x2b\xf2\xd5\xd7\xaf\x94\xb3\x21\x58\xd7\x37\x54\x5c\xdb\xd2\x1d\xcd\x07\xe4\xa9\x25\x83\x10\xab\x5a\xb0\x7a\xe3\xda\xeb\xdc\x78\x30\xc3\x09\x2a\xbf\x83\x4b\x4d\x30\xc7\xce\x85\x5d\x9b\xd6\x38\xf3\xe1\xcb\x3b\xa7\x4a\xdd\xc9\x2c\x14\xc5\x52\x5b\xd8\x0f\x36\x2f\x08\x6e\x4a\xfb\x19\xac\xe5\x2a\xb7\x8e\x19\xcd\x05\x0d\x4f\xa2\x8a\xbf\x07\xa1\xaa\x5d\x88\x71\xf8\xdb\x0b\x55\xbd\xc2\x8d\x62\x51\xc6\x74\x47\xcc\x76\x03\x5f\xe8\xeb\x63\x44\xc7\x1b\xb6\x03\xa5\x80\xed\xc4\xf9\x5a\x82\x97\x4b\x2a\xe3\xe7\xaa\xb4\x0f\xb5\x9f\x80\x7d\x00\x12\x1b\x10\xde\xfe\x36\x50\x6d\xdd\x42\x06\x5c\x03\x61\xd3\xd2\x9a\x0c\xe1\x66\x3c\x25\xe4\x3d\x8a\x48\x5d\xdd\x12\x42\x8d\xe8\xc5\x63\xd7\xc9\x0d\xab\x7b\xe0\x57\x9f\x7e\x49\x8e\xf4\xc9\x93\x8d\xe9\x3c\xf7\xf3\x5a\x66\x6c\xc5\x32\x26\x74\xf0\xf6\xdd\x95\xb7\x5a\xde\xb2\xec\x96\xb3\xbb\x23\x5b\xcf\x6d\x72\xc7\xf5\x66\x82\x12\x81\x3a\x82\x65\x3a\x7a\x06\xff\xe9\x02\xec\xfa\xc3\xd9\x87\x63\x72\x12\xc7\x44\xc2\x3d\x2d\x57\xc0\x93\x80\xe2\xd5\xd4\xd3\x4a\x1d\x82\x52\xe4\x90\xe4\x3c\xfe\x7f\x02\xfc\x79\x5f\x8c\x15\xa9\x7b\x06\x63\xed\x0a\xd8\xde\xae\xbc\x51\x6e\x18\xb9\xc2\x45\x94\x19\xdc\x07\x0c\x89\x6c\x87\xd0\x00\x6a\xce\x3a\xe4\x59\x37\x8b\xa5\x94\x09\x6b\x63\x9b\xa4\x30\xfe\x75\x4c\x02\xfc\x9d\xba\x85\xbc\x36\x21\xae\xfb\xbd\xd9\x92\xd7\xd2\xf1\x0c\xcc\x3d\x12\x02\xa4\x46\x79\xa1\xaf\x0c\x37\x2b\x6f\xea\x05\x8b\x74\xd5\xcc\x43\x90\x19\xc6\xba\xad\xf2\x2a\xff\x14\xd7\x59\xce\xda\x4f\xf1\x16\xac\xa6\x19\x5b\xf1\xfb\x13\xbf\x94\x65\xaf\x70\x3a\x0f\x7c\x53\xde\x2f\xc1\xd1\x19\x5a\x54\x2b\x64\x86\x66\xd4\xa5\xe7\x21\xc3\x6f\xb9\x01\x80\xca\xb3\x5f\x55\xc1\xf0\x38\x65\x98\x42\x5c\xd2\x8f\xe2\xc4\x87\x22\x9c\x0f\xbb\xf2\x46\x3c\x0e\x29\xa3\x02\x53\x00\xc7\x07\xb0\xa9\x83\x2c\x57\xf6\xec\xc4\xda\x25\x2b\xe7\x11\x7f\xc6\x1d\xb8\x5b\xc7\x11\x82\xcc\xd3\x74\x58\x47\x7c\xa7\xeb\x60\x1c\x88\xb7\xbc\x64\xf6\x70\x3e\x9b\x6f\xde\xb1\x02\x73\xd0\x2d\x0e\x0c\x8b\x51\x53\x6f\x14\xbc\x5b\x0f\x52\x4a\x10\x54\xa7\xf7\xde\xcd\x3b\xae\xe0\xdd\x97\xd5\xee\xbb\x79\xf7\x15\xbc\xbd\xe7\xbe\xbb\x79\xef\x15\xbc\x0b\xe8\x9e\xbb\x79\xef\x0d\x7c\x50\xdf\xc3\xaf\xe6\xed\x5b\x18\x9f\x21\x27\x57\xc7\x45\x92\x7c\xce\xb5\xdc\xfa\xcd\x58\x23\xd6\x6c\xde\xcb\xf9\xae\xea\x1f\x00\x32\x20\x53\xb6\xd9\xbf\x58\x23\x0e\x6d\x06\xb8\x8f\xed\x08\x41\xde\x67\xbd\xcb\x5c\x2f\x36\x78\x06\x0c\x04\x2b\xff\xbe\x61\xfd\x8e\xc0\x97\xa3\x60\x01\x66\xd0\x30\xf1\x22\x10\x45\xb1\x28\x70\x5c\x16\xbb\xca\x70\x36\x5b\x8e\xde\xb0\xed\xc3\x99\x6e\x1d\x17\x58\xcf\xad\x34\xa9\x78\xc1\x08\xe6\xaa\x67\xf8\xa8\x6b\x1a\x5e\xe7\x12\x85\x4f\xc0\x6c\x9f\x4c\xb5\x63\x57\xf8\xfc\x1e\xed\x6f\xc3\x89\xc8\xfb\x22\x4c\x45\x32\xf3\x52\x97\x84\x60\xb6\x1d\x11\xd7\x93\x59\xdb\xa9\x9f\x6d\xb1\xde\xa0\x48\xda\x64\x6f\x54\x41\x6d\x41\x71\xc8\x60\x39\x11\xb6\x03\xe8\x2c\xc9\x48\xe1\x64\x68\xc5\x2c\xa0\x9f\x4d\x41\x25\x74\xbd\x24\x14\x5e\x5d\x6f\xfe\xbf\x6d\x22\x7a\x27\x69\xfc\x86\x26\xe6\xfe\xba\x07\x37\xaa\x7d\xf5\x99\xc4\xe4\xf7\xd6\x4a\x50\xb6\x22\xb3\xdf\x76\x3a\x13\xeb\x36\x03\x50\x9d\xee\x7e\x01\x22\xab\x22\xe9\x81\x84\x56\xc3\xcd\x6f\x92\xd8\xc2\x9f\x35\x7f\xc5\x9a\x67\x7e\xfc\xb9\xd2\x32\x83\x90\x05\xfc\x09\x69\x00\xc0\xa7\x91\xb9\x1d\xb3\xf8\xa2\xe1\xbd\x52\xa6\xe9\x71\xde\x28\xee\x97\x48\x8a\x98\x63\x64\x11\xf9\x11\xdc\x7b\xc0\x21\x2e\xfe\xde\xb9\x91\xc0\xaf\xd6\x81\x67\x6f\xb7\x9f\xc7\xf7\xf8\x69\x46\x7d\x95\x2e\xd0\x93\x35\x13\x10\x53\xb3\xcc\x79\x12\xb3\x0c\x06\x70\xc3\xbf\x00\x5b\xfd\x4b\x98\xb3\x4d\xee\x7e\xcd\xb7\x4c\x69\xba\x4d\x8f\x89\xc8\x13\xf0\xe0\x2c\x1c\x8a\x56\x3c\xd1\x2c\x7b\x22\x4f\xa2\xb7\xd0\x39\xfe\x58\x71\x21\xc2\x17\x41\xdf\x21\x0b\x90\xa5\x01\xdf\x69\x68\x55\xf4\xf6\x54\xde\x40\xa3\xdb\xce\xe8\xb6\xe3\x2f\xc1\xe8\xb6\xf3\x25\xdd\x76\x90\x29\x34\xfd\x75\x20\x5d\xa8\xa1\x54\xc8\xb0\x87\x5c\x80\x64\x79\x02\x3e\x3c\x75\xec\x3a\x97\x1e\xec\x6c\xb8\x2f\x0f\xbb\x4f\x65\xa6\xbf\xff\xb6\x4f\x08\xba\xde\x30\x22\xb3\x98\x65\xa8\x52\x33\xdb\x14\xe0\x2b\xe0\xb7\x90\xd1\x08\x08\x4d\x0a\xdb\x73\xcb\xa9\x6a\xf3\xc7\x6b\x49\x28\x58\x29\x1e\x2e\x78\x14\x00\x5c\xe6\x09\xfb\xfe\xdb\x82\x05\x51\x40\x87\x87\x35\x83\x5c\xc5\x55\x1b\x44\xa4\x14\x4e\x60\x62\xa5\xd0\x01\x6b\x40\x5d\x57\x36\x3b\x25\xaa\xaf\xb8\xfa\x0c\xad\x15\xf6\xf4\x60\xc1\xe4\x33\xe5\x1a\x1b\x84\xf4\xc1\x85\xc6\x3e\xb4\x9f\x4e\x3d\xf1\xc4\x4e\x32\xfc\xce\xc0\x1f\x7e\x53\x01\xed\x51\xaf\x00\x96\xde\x5f\x3f\x8c\xde\x5f\xff\xda\xe8\xfd\xf5\x23\xd1\xfb\xeb\x91\xde\x07\xf6\xf3\x1b\xa3\x77\xbe\x7d\x2a\xfe\x8e\x3d\x77\xd3\x3b\x56\xd5\x1f\x39\x7c\xe8\xe5\x48\xf1\x4f\x4a\xf1\x4f\xc0\xe1\x7f\x21\x8a\x1f\x79\xfc\xf0\xcf\x7f\x87\x14\xff\xdb\xd2\x34\xfd\xe2\x0a\xa6\x42\x03\x64\xb6\xe8\x13\xe9\x7f\xe6\x2c\xa8\xfd\x31\x3f\x07\x75\x3f\x00\x4a\x40\xf3\x93\xda\x7e\x7e\xa9\x28\xb1\x51\x2f\x34\xea\x85\xfc\x25\x18\xf5\x42\x5f\x52\x2f\x64\xd8\x45\x53\x2b\xe4\xb2\x07\x78\xe1\x98\xae\x71\xb1\x7a\x8f\x1f\xca\x65\x84\xa5\xc2\x8d\xc1\xb9\xf7\xb5\x08\x39\x9f\x13\x8d\x65\xb5\xe0\x0f\x90\xdd\x0a\x99\x49\x11\x9a\xa6\x09\x77\x75\xe1\xb8\x42\x4f\xd9\x7d\x05\xb2\x07\xfb\xdc\xdf\x30\x96\x7e\xc8\xf8\x9a\x0b\x9a\x5c\xb0\x7b\xfd\xd7\x40\x2a\xfb\xa0\x4f\xaf\x61\x55\xe6\x63\xc0\xad\xb4\x3d\x10\xc1\xee\xf5\x46\xa6\xd6\x4f\x17\x03\x0a\x40\xd4\x0c\x01\xed\xfb\xa0\xa3\xb0\x68\xe8\xc2\x6c\x53\x4c\xf5\x51\x24\x96\xf0\xdc\xb6\xd0\xeb\x34\x81\x1c\x21\xe6\x93\x50\xbf\xa6\x17\x55\x38\xce\xe5\xb6\x90\xdd\xe2\xc0\x00\x47\x0c\x74\x06\xee\x3f\x2f\x0e\xc0\x2f\x98\xd1\xd8\x2c\x88\xf7\x56\xb1\x64\xf5\xe7\xc5\xc1\x0b\xeb\x4e\xfc\x32\x34\x84\xf5\xc6\x2d\x92\x63\x2c\x21\xaf\x8d\x23\xb5\x0b\x33\xb4\x14\x36\x6b\xca\x34\x5a\xad\x83\xa1\x40\x9d\x3e\x78\xdb\x3e\x17\xfa\x3d\x1d\xe8\xad\x33\xbb\xe7\x43\x12\xa4\xa3\x87\x3a\xc9\xd7\xfc\xe1\xc3\x7d\xf7\xb8\xc8\xb7\x61\xa8\xdd\x19\x7d\xc8\xce\x2b\x8a\x2c\x16\x25\xfe\xdc\x19\x62\x7d\x68\x6c\x3d\x67\xeb\x4d\xdf\x16\x31\xc3\x15\xd1\x34\x5b\x33\xed\x8a\x4c\x73\x85\xdb\x94\xcc\x56\x05\xda\x00\x09\x4c\xe3\xd1\x2c\x64\x25\x7d\x63\x4b\xa7\xd5\x18\x82\x1a\x0f\xb0\xa4\xae\xca\x2c\x86\x8e\xf2\xac\xe7\xce\x03\x70\x16\x48\x27\x19\xc4\x9d\x6b\x57\xf8\x3e\xe2\xf8\xe0\x20\x6f\x05\x19\x48\x2f\x5a\x60\x82\x8b\x75\x47\xc4\x84\x43\x11\xa0\xa7\xd8\x24\xc8\x27\x5c\x44\x1d\xdb\xa6\x3a\xe4\x04\xde\x39\xa5\x7c\x7b\x82\xe6\xf9\x77\x32\xa2\x89\x0b\xe2\xed\x65\xca\xef\x31\xaa\xc7\x85\xf6\xca\x15\xc1\x54\xc3\x45\xb4\xaf\x9d\xaa\xf3\xc2\xba\x03\xd7\xc4\x36\xba\x3e\xb9\x82\x64\xba\x36\xf7\x63\xc4\xf8\x2d\x73\x65\x67\x6d\xe4\x07\xe6\x29\xc6\xa5\x4d\xa4\x4c\x8d\x98\x6c\xcf\xf0\x20\x6f\x14\x45\x7e\x23\xe7\x1f\xe1\x8a\x05\xd2\xa5\x92\x49\xae\x59\xb2\xb3\xa5\xd0\x15\x6d\x24\xaf\x27\x9f\x79\xb2\xa5\xed\x11\x1e\x03\xe3\x3b\xdc\x91\xcb\xc5\x5a\x91\x35\x13\xe6\x26\x59\x6e\x9d\xd0\x94\x7b\xe4\x02\xd2\x7f\xa3\x1f\x10\x6f\xf1\x64\xd1\x16\x03\x62\x2d\xba\x23\x2d\x9e\x28\xce\x62\xaf\x28\x8b\x21\x7e\x97\x3d\x11\x16\xbf\x9b\xf8\x8a\x21\xb8\x1a\x10\x5b\xf1\x34\x91\x15\xbd\x71\x15\x03\xa2\x2a\x7a\x62\x2a\x3a\xe2\x29\x86\xe8\x86\xc2\x6f\x0d\xc7\x98\xcd\x87\x1c\xeb\x65\x76\x01\x5f\xc0\x27\x2b\x69\x79\xf5\x72\x07\x37\x70\xc7\x9f\x52\x99\x85\x03\x61\x91\xfd\x6b\x89\x9f\x1b\xca\x82\x13\x1d\xe2\x49\x45\x91\x0f\x02\xe2\xce\x0f\x9d\x4f\x79\xe9\x7d\xbf\x38\xf8\x71\x91\xbf\x7a\xf5\x4d\x34\x9b\xdf\xbe\x86\x7f\xb1\x9f\x8e\x61\xac\x60\x2c\x35\xb8\xa0\x17\x1f\x7c\x8b\x1f\x1c\xe3\x0f\xf0\x15\xfc\x80\xbe\xde\xa0\xf6\x07\x58\x2a\x93\xf0\x80\x72\xd2\x46\xdb\xf9\x51\x9c\xcc\x80\x2c\x11\x93\x22\xc3\xc5\x92\x25\xd2\xf0\x65\x10\xbc\xad\x56\x0b\x78\x9d\x99\xbf\x17\x5d\x1b\x66\xb2\xc0\x1e\xeb\x41\x76\x56\x7c\xb9\x63\x56\xe0\xa6\x1a\xc1\xb5\x98\xdd\xf3\x54\x37\x9f\x3c\x58\x50\x31\x47\xad\x2e\xe4\x95\xca\xca\xa2\xac\xda\x76\x02\xf9\xe2\xc9\x1c\x28\xb1\x8a\x36\xe4\x15\x35\x71\x05\x43\xf9\xab\x85\xe5\xab\x13\x31\xf2\xe6\x92\xe9\x3b\xc6\x84\x0d\xd6\x35\x82\x06\xe0\x1b\xeb\xe9\xd9\xeb\x8c\x0f\x37\x94\xbf\x29\xa4\xf0\xf0\x0a\xdb\x12\xad\x76\x04\xbe\x22\x4b\xa9\x37\x84\x89\x58\xa1\x64\x66\x24\xac\x37\xdf\xcd\x21\xc9\x86\x69\xea\x12\x6c\x74\x8b\xe9\xa0\x6b\x17\xa8\x82\x1f\xdc\xf7\xeb\x46\xdf\x53\x62\xb6\x69\x58\x5f\x0d\xd3\x2c\xd3\xaa\x44\x72\xcb\x3c\x2d\x8c\x87\x86\xe7\xaa\x32\x90\x5b\x88\x20\xdc\x76\xf1\xd7\x89\x5c\xd2\xa4\x2c\xc4\xb7\x42\x5a\x2c\xb7\xcb\x9e\x94\x98\x99\x95\xa5\xcb\x84\xbd\x09\x1d\xde\x15\x42\x34\x67\x0b\x15\x84\xdd\xd3\x48\x1f\x12\x3e\x65\x53\x72\xf4\xcd\xd7\x87\xe0\x18\xcb\x23\x14\x07\x89\x96\x77\x34\x8b\x8b\x6d\x19\x16\x29\x41\x5b\x00\xa4\x8b\x42\xa2\xfd\x76\x95\x60\x0e\xb6\x29\xb9\x2c\xa1\xaa\x2a\x5c\x3a\x32\xae\x58\x36\xb9\xa6\x9a\xdd\xd1\x9d\x8b\x29\x32\x70\x14\xa5\x34\x68\xb4\x01\xd6\xb9\x27\x8e\x50\x5e\xb3\x24\xd0\xbb\x5d\x2d\x85\x94\x71\x6e\x86\xe2\x36\xf2\xae\x91\x66\x15\x75\x7b\x1d\x33\xea\x97\x33\x9b\x42\x65\x11\xf0\xdf\x1e\x42\xb4\x38\xf8\xa8\x18\x26\xa1\x59\x1c\x90\x2d\xa3\x42\x55\x61\x2b\x44\x43\xc3\x20\xac\x4e\xa2\x02\xec\xd4\x74\x72\x11\x28\xad\x89\x0f\x76\x69\xe8\xb1\x73\xca\x7b\xae\x82\xd6\xc9\x95\x2d\x92\xd8\x7b\x80\x5e\xbf\x73\x4d\x6d\xd0\xa0\xbd\xe4\x03\xfe\x12\xd0\x20\x5f\x5f\xbf\x2b\x8a\x2e\x92\x2d\x8b\x36\x54\x70\xb5\x0d\x4d\xe7\xc5\x77\xd7\x57\xef\x5f\x96\x41\x6a\x1a\x85\xea\xb5\x21\x4a\x4d\x54\x2a\xe5\x8a\xc5\x24\xa5\x50\xd7\xc4\xac\x0c\x64\xbe\x80\x4c\x36\xf6\xaa\x14\xe4\x9c\xb6\x3d\x1c\x49\x94\xa8\x2d\xc5\x64\xcc\x1b\xd8\x62\x29\xb2\x4c\x03\x24\x26\x80\x01\xa1\x00\x33\xba\x3a\xf5\x77\xdb\x35\xde\xac\x5e\x71\xeb\xdb\xc8\x54\x91\x17\x2c\x5e\x33\xf5\xb2\xc2\xa5\xd1\xe2\xb2\xd7\xbd\xe9\xb7\x65\xdc\xfa\xf5\xb8\x51\x5b\x2b\x57\x22\xa3\x1b\xba\xc2\x36\xec\x49\x8c\x5d\x66\x84\x13\x1c\xc1\x8a\xae\x9e\xc9\xcb\x7f\x19\x30\x7c\x55\xa1\x5b\xd4\xed\x5f\xde\x6b\xe8\x7a\xb4\x82\x8d\x56\xb0\xd1\x0a\xf6\xfb\xb2\x82\xf9\x1c\x64\xa0\x2d\xac\xc9\x91\xca\x67\x7f\x03\x59\x8b\x3f\x4a\x97\xd4\x10\xb3\x84\xe9\xfe\x7c\x05\x67\xd8\xac\x92\x71\x8a\x6a\xa4\x1c\xeb\xa3\x63\x67\x61\xe8\x76\xc9\x30\x85\x14\x7c\x13\xd4\x37\x79\xd9\x5c\x7c\x3a\x5f\x61\x90\x77\x4a\x35\x87\x8c\xc0\x3b\x3c\xfe\x65\x12\x83\x0c\x97\x30\xaa\x3a\xb2\x5a\x6d\xb9\xd2\xf4\x86\x89\x64\x47\x74\xc6\x1c\x78\x38\x0a\x2d\x47\x79\x1c\x43\x43\xa7\x40\xac\xcb\xda\x56\xc3\xbe\x69\x51\xb6\x84\x5c\x74\x26\x0e\xb1\xf5\x9f\x43\x75\x57\x00\x92\x51\x4a\xf9\xcd\x04\x7b\xe1\xb4\x40\x05\x00\xd8\x7d\x12\x39\x08\x0d\x5f\xe6\x86\x73\xe5\x55\x7d\x29\x45\xa1\xfa\xfb\xa6\x34\xd4\x04\xb3\x2e\x10\xd5\x5b\x8c\x32\x91\x85\x72\x94\x89\x46\x99\xe8\xf7\x23\x13\xd5\x59\xc9\x30\xb1\x28\xcc\xa0\xca\xe7\x01\x92\x51\x42\x95\x1a\x90\xc1\x17\x9b\x91\x98\x45\x09\x75\xfe\x26\x80\x44\xb3\x71\xcd\x3a\x65\xdb\xa2\x0a\xcb\x56\x0a\xde\x62\xd8\x2f\x9c\x93\x3d\xe5\x3a\x6e\x4b\xb0\x25\x63\xec\x3d\x2a\x7e\xf9\xad\x0b\x9d\x37\x14\xd9\xee\xb2\x4d\x97\x32\xd7\x24\x62\x99\x41\x9d\xa1\x36\xc8\x15\x55\x85\xea\xcb\xf8\x0c\x3d\xd8\xf3\x82\x5b\x84\x06\x1d\x2f\x56\x61\x4c\x42\x23\x9b\x5a\x60\x3f\x21\x0c\x77\xdc\xbc\x52\xaf\xac\x07\xea\x8f\xcd\x4f\x8a\x04\xa3\xf0\x23\xa1\xda\xea\xb9\xfa\x48\xd4\x3c\xa5\x9d\xa8\xd8\xfd\x58\x12\x93\xbc\x32\xff\x67\x8b\x36\x35\xba\x22\x19\x5b\x65\x4c\x6d\x82\x82\xb3\xf3\x5b\xc0\x1e\x1d\x58\x5c\x41\x82\x84\x98\x3e\xae\x23\x40\xeb\xae\x2f\x25\xbf\x16\x4c\x36\xf6\x3d\xce\xcc\x3f\x40\xe5\x12\x25\x4c\x94\x51\x0d\x25\xd7\x3f\x6a\xcc\xe5\x42\xa2\x35\x1b\xb7\xa0\x60\x2c\x66\xe8\x6d\x60\x37\x90\xe2\x86\x92\x38\xa8\xfb\x2d\xca\xc9\x72\x67\xfb\xdd\xc3\xcf\x70\xcd\x44\x6f\x0e\xda\x13\xd3\x88\x6c\x64\x12\x2b\xfc\xc0\x01\xe1\xe5\x43\xdf\xdf\x85\x61\xc9\xb3\x38\x18\xff\xd4\x18\xff\xcd\xec\xf2\xec\xfb\x6f\xfd\x7c\x15\xa5\x7c\x50\xc5\x6d\x0e\x6c\xc2\xf4\xfc\xed\xc3\x9d\x17\x12\xaa\xf4\x1b\x29\xdb\x13\xba\x06\x40\x7c\xe7\x7d\x63\x31\x55\xa4\xf6\x07\x8f\x1b\xef\x7d\x7b\x97\x04\x8f\x61\x74\xa5\xd3\x09\x91\xb9\x4e\xf3\x90\x19\xc7\x3d\x43\x2c\xf3\x66\xe8\x4b\x56\x49\x35\xb7\xef\xcc\x02\x9f\xb7\x4d\xd2\x35\xfd\x05\x26\x0a\x96\xa3\x6c\x76\x36\x74\x66\x97\xd0\x9e\xcc\xce\x8a\x6a\x07\x00\xcf\xe7\x01\xd1\x76\x1f\x0e\x42\x00\x65\xcc\x1c\x4b\x70\x91\xe2\x67\x94\x6d\x83\xe7\xdb\x3e\x60\xdc\x06\xa5\xfd\x56\x40\x9c\xd4\xef\x81\x11\x03\x18\x9f\x03\x45\x5f\xa6\x49\x60\x00\xa1\x70\xb0\x06\x78\xc0\x00\x5e\xef\xc7\x00\x5e\x8f\x0c\xc0\x9b\xce\xc8\x00\x02\x33\x1b\x19\xc0\x2f\xc9\x00\xba\xde\x2e\xd7\xbd\xbe\xf9\x06\x44\x24\x41\x90\x9b\xcd\x9f\xad\xb2\x73\xcf\x9e\x47\x13\xe9\xb9\xd2\x74\x99\x70\xb5\x61\x03\xc5\x12\xb3\x78\x5a\x6a\x9a\x78\x36\x56\xf0\x53\x61\x65\x4f\x66\x26\x44\x31\x85\xfa\xb8\x2e\x34\xb5\xb8\xa7\x86\xe1\x1b\xc4\x35\x5b\xe0\x7b\xfd\x44\xf0\x5d\x48\xfd\x78\x28\x14\x52\x4c\xbe\x08\x98\x9f\x87\xc9\xa7\x00\x13\xac\xf1\xc3\xd0\x37\xc7\xa6\xfe\xc1\xe8\x92\x03\x60\x37\xc3\x04\x75\xd2\x9b\xa7\xb4\xe5\xc2\x03\xfe\x26\x55\x15\x47\x71\x06\x17\x30\xb4\x73\x90\x7e\xa8\x06\x26\x76\x6f\xf5\xa5\x6c\x99\x41\x8b\x47\xe5\xdd\x46\x2a\x56\x2a\xeb\xc9\x1d\x23\x34\xec\x91\x56\x3e\x85\x22\xe3\x11\x32\xba\xc3\x9d\x6e\xf8\x2c\xae\x38\x46\x71\x14\x47\x48\x46\x32\x46\x95\x14\x70\x0e\xdb\x2a\xb6\x5d\xc7\xd9\x60\xb8\x7a\x8e\xb4\x3a\x5c\x00\x8d\x55\x26\x00\x5f\xc6\x1d\x81\xfd\x3c\x02\x3c\xd0\x6a\x30\x38\xd7\xbb\x34\x58\x1c\xac\x70\x19\xad\x04\x01\x75\xaf\xf6\x2d\xa7\x05\xc9\x4e\xb4\x9c\xc0\xd1\xb3\x65\x6a\x73\x68\xb0\x6f\xde\x32\x51\x94\x72\x76\x0e\x7a\x5d\xa9\x90\x09\xd6\x99\x9f\xb8\x33\x0c\x76\x94\x55\x99\x7f\x2e\xa2\xfa\xe4\xef\xde\xc4\xc2\xc8\x89\x06\x71\x48\xe4\x44\xaf\x6b\x9c\xe8\xf5\xc8\x89\x7a\x66\x30\x72\xa2\xfd\xe0\x1a\x39\x91\x7d\x7e\x4f\x9c\xa8\x23\x3c\x63\x12\x12\xde\x87\x35\x7b\xdd\xde\xac\x2e\xca\x0e\x6e\x19\xe8\xb3\x6b\xee\x66\x77\xa0\x22\xbe\xd7\x2b\xe5\x5d\xd9\x14\x4d\x83\xda\xd9\xd5\x9b\x76\x41\xd0\x87\x64\xd0\x22\x84\x6d\x88\x55\x6e\x68\xe2\xad\xa9\x10\x36\x6c\x69\xc1\x03\xfd\x72\x31\x40\x6b\x60\xe0\xe5\xdb\xd3\x6f\xbe\xf9\xe6\x7f\x40\xff\x8e\xa5\x12\x21\x7c\xf3\xe3\xf5\x69\x87\x92\xde\x8c\x31\x09\x03\x29\xf2\x24\xa1\xcb\x84\xf9\x2e\x19\x4d\xa4\xb6\xb8\xb1\x43\x2c\x62\x1f\x3e\x2f\x31\x2d\x10\x32\x4d\xe5\xb2\x04\x81\xb1\xde\x19\xa0\xad\xed\xa6\xfb\x2e\xfc\x59\x2a\x70\x1c\x75\x98\xac\x7f\x69\xdb\x36\x84\x7d\x0b\xfa\x13\x1d\xac\x30\x6c\xd7\xc9\xda\x1e\xf4\x3e\x04\x41\x83\xd0\x54\x00\xa8\xb9\xa0\x9d\x79\x8c\x1a\x13\x39\x2b\x3f\x2a\x82\xf3\x0c\xc0\x8f\xc0\xfb\x6d\x74\xc1\x70\x58\xbe\xb3\xe1\x08\xce\x97\xdf\x9b\xd0\x23\x80\x53\x94\x42\xdc\x43\xf8\x70\x9f\x84\x40\xfa\x7c\x88\x12\x46\x33\xc1\xe2\xb7\x99\xdc\x0e\x87\xe9\x5d\xf9\x51\x49\x75\xbe\x35\x3a\x63\x6b\x9a\xc5\x9d\x03\x13\x64\x72\x99\x8d\xd8\xc6\x88\x12\x9b\xb8\xa1\xcd\x4b\xcf\x3d\x83\x48\x91\x0c\x93\xf4\x1a\x93\x9b\xad\x6c\xdc\x03\x4a\x02\xaa\x2c\xbf\x86\xc5\x7c\xcd\x99\x7b\x48\xda\x0a\x44\xf8\x4f\x4d\x68\x44\xcd\xa7\x8d\x58\x67\x42\x93\x5c\x79\x73\xef\x9c\x30\x19\xbc\x9e\xa4\x88\x7f\xb9\xee\x13\x7b\x1a\x33\x87\x09\xbb\x10\x5f\xf4\x57\xc1\x15\xa2\x76\x79\xb8\x72\xf4\xd2\x3f\x79\x08\x09\x7e\xac\x39\xf5\xcb\x26\xe4\x73\x05\x3d\xee\x2d\x52\xe9\x33\x0a\x3a\xe7\x16\x57\x00\x6f\xae\x32\xbb\x43\x7a\x27\x50\x16\xf2\x17\x17\xc6\x8a\x53\x6b\xd0\xbd\xd0\x9e\x5a\xcd\x8b\xe1\x78\x6a\x75\x4c\x64\x3c\xb5\x3a\x00\x1a\x4f\xad\xe6\x33\x9e\x5a\xe3\xa9\xd5\xd6\x6a\x3c\xb5\x3a\x3f\xff\x4d\xc6\x08\xfc\xf2\x21\x8c\x36\x2b\x93\xc7\xe3\x9e\xc4\x7d\xdf\x96\x4c\x2b\x47\xc1\xb7\x9e\x03\x7f\xa3\x45\xc0\x85\xbf\x09\xab\x5d\xc1\xd2\x87\xbf\xd1\x64\xf1\x0b\x7a\xf1\xd7\x1c\x75\xeb\x33\xac\x0a\x36\xae\xb2\x5d\x91\xa1\x2d\xec\x25\x3b\x46\x06\x8c\x91\x01\xfe\x12\x8c\x91\x01\x5f\x2e\x32\xa0\xb1\x83\x9b\xb1\x01\x48\x91\x66\x67\xe0\xa7\xcb\x50\xda\x83\xd6\x6c\x78\x5d\xe1\x00\xc0\x62\xc3\x7b\xbc\x09\xa9\xdf\xd8\x19\x4e\x6e\x4b\xdf\x20\xab\x12\xb5\x01\x91\x05\x34\xa1\x03\xd9\x30\x81\x5c\x88\x0e\x8f\xfb\xf0\x81\x6f\xbb\xfc\xee\x63\xd0\x8f\x2b\x84\x57\xd3\xd4\xc1\x0a\xff\xb6\x12\x5b\x2b\x70\x03\x86\x6f\x91\x15\x43\xc3\x83\xd8\x64\x17\xcd\x0b\xa3\xf8\x2c\x28\x0c\xf1\xc1\xf1\x7f\xc9\x68\xdc\x9b\xe3\xe2\xac\xd2\xda\x25\x99\x24\x71\x0e\x2c\x42\xf1\xb5\x80\xa8\x13\xa1\xcb\x7e\xc9\x96\xaf\x33\xff\x28\xac\xc1\x26\xe1\x33\x9a\x60\xda\x8e\x6d\x2a\x05\x5c\xdd\x55\x1e\x6d\x08\x55\xe4\x2d\x4b\xf8\xbd\x4d\x37\x53\x24\x89\xba\xa3\xdc\xec\xf2\x95\x6c\xc9\xe2\x13\x45\x4c\x29\xc7\xa1\x0a\x48\xf6\xcd\x16\x7a\x4b\x33\x4e\xfb\x7d\xd6\xbf\xc7\x66\x65\x78\x0b\xc6\x32\xd8\xaf\x3d\x5a\xf6\xea\x4b\x43\x84\xca\x5e\xa1\x17\xbf\x49\xe1\xf1\x57\x23\x43\xae\x0c\x15\x55\x1c\x4b\x9f\x42\x86\x04\x5a\xad\x24\xf0\xaa\xcb\x90\xcd\x16\x4d\x19\x32\x00\x6b\x5d\x86\x6c\x36\xf9\xd5\xc8\x90\xb8\x5f\x2b\x53\xac\x09\x91\x95\x57\x2b\x99\xe1\x27\xa3\xfc\x38\xca\x8f\xa3\xfc\xf8\x4b\xcb\x8f\x4d\xfe\xd4\x25\x3f\x9a\xbf\x70\xbf\x57\x36\xf5\x1e\x31\x61\x49\x22\xef\x66\xf3\xd9\x7c\x8e\x79\xa9\xde\x66\x72\xfb\x83\xcc\x6e\x12\x49\xfb\xe3\x0a\x9f\x9f\x74\x7d\xed\xf2\x08\x94\xce\x2f\x00\x69\x48\x5c\xb0\xf5\xde\x63\x42\xb1\xa2\x8e\x96\x24\xce\x64\x4a\x4c\xd7\x84\x89\x88\xa6\x2a\x4f\xc0\x1d\x42\x67\x74\x65\xee\xbd\x58\x77\xde\x0d\x15\xea\xf3\x47\x9b\x10\xcd\xb2\xdf\x9f\x02\x39\x4f\x3b\x65\x0f\xc0\xcc\xf7\x7f\x7f\x77\x72\xf1\x70\xd4\xb4\x7e\xfe\x08\xb8\x81\xbe\x7f\x31\xe4\xdc\xa9\xab\x2c\x3a\x53\xfa\x74\xc3\xa2\x9b\x5e\x64\x5c\x31\x6d\x75\xaa\x13\x4f\x7f\x3f\x89\xcc\xc7\x44\x0a\x72\xf2\xc3\x15\x39\x3f\xfd\xba\x88\x9a\x55\x53\x72\x62\x25\xa3\x10\xf4\xc8\xc8\x5c\xbe\x4a\x5b\x42\x7b\x71\x70\x26\x2f\xa4\xde\x98\xed\x79\x70\x48\x16\x07\xe7\x90\x01\x6e\x71\x80\xe9\x49\xcf\x30\x2a\x75\x71\x30\x2d\x27\x1f\xea\xbb\xe8\x24\x84\x13\x26\xf2\x90\xa1\x60\x52\x7e\x15\x7a\x69\x01\x09\x7d\x66\x81\xda\xeb\xbe\xb0\x4c\x57\xa7\x52\x08\x16\x41\x7c\x51\x59\xa7\x9b\x8b\x35\x8e\xd4\xeb\x5f\xf4\xfc\xcd\xfc\x6d\x4f\x17\xe8\x38\xc4\x05\x79\x33\x7f\x4b\xb6\x32\x66\xc1\xe4\x94\x61\x2a\xc6\x65\x4c\x92\x42\xda\x30\x03\x99\xf5\xd6\x7c\xcb\x88\xa1\x49\xb2\x74\x95\xd4\x5b\xd3\x69\xda\xcf\x02\xdf\xa0\x97\x12\x7a\x89\x15\x66\xa1\x8d\x54\x10\x81\x6c\x44\xfb\x25\xec\x92\x50\xa7\x90\x0a\xd2\x2f\xf2\x6e\x8b\xd1\x2b\xf4\x63\xd2\x84\x6f\xd3\x0c\xf2\x99\xdb\xd8\x68\xb8\xc4\x8b\x08\x08\x2c\x95\xf1\x44\xcb\x89\xfd\xa4\x03\x66\x38\x4b\x08\xd6\xc7\x10\xc9\xce\xb9\x47\x7a\xa1\xd1\x18\xca\x6b\x60\x8f\xd9\x32\x5f\xaf\xcd\x51\x9c\xe6\x59\x2a\x95\x21\xfd\x6e\x02\x35\x77\x88\xbd\xf7\xeb\x32\x5d\x9d\x5d\x5d\x7e\x48\xb5\xcc\xf5\xe9\xec\xec\xb2\x97\x7f\xbd\x99\xbf\xad\x7e\x80\x92\x84\x91\xa3\xe1\x3e\x05\x3f\xe1\x35\x8b\x66\x8c\xb0\xfb\x28\xc9\xe3\xf0\x6e\x05\x6e\x74\x76\x75\x39\x25\xd7\x98\xb2\xf4\xd0\x0a\x04\x36\xeb\xbf\x54\xcc\xf5\x07\xac\x0e\xae\x8e\x0c\x43\x7d\xc0\x61\x2b\x78\xc1\x04\x9b\xc5\x9b\xf9\xdb\xf3\x7b\x94\xe4\x6c\xed\xfb\xf7\x90\xee\x97\x42\xc6\x5b\x83\xf1\xeb\x5c\x08\x96\x7c\x99\x04\x02\x06\xc9\x54\xd3\xd9\x8a\x46\x6c\x4e\xb5\x81\x6b\x08\x9a\x6b\x9f\x20\xa2\x33\x06\x17\x0d\xc2\xee\x8d\xcc\x05\xb2\x34\xdc\xc0\xdd\x8e\x0b\x9e\x14\xb0\x1c\x85\x95\xd5\xdd\xdc\xad\xa8\x4c\xb5\x36\xc4\x6f\xf6\x73\x9a\xc9\x75\x46\xb7\x20\x23\x73\x51\xa4\x65\x0d\x92\x34\xd5\xd1\xa6\x38\x58\xb4\x3c\x2a\x24\x3c\xc1\xb4\x39\x62\xa6\x36\xe9\x95\x60\x2c\x86\x0e\xb7\xf8\xc5\x86\x79\x90\x04\xd1\x6c\xa6\x63\xef\xe5\xee\xac\x2a\x4f\x30\xc8\x26\x21\x6f\x59\x66\x56\xfa\x8e\x19\xba\x30\x9b\x74\x37\xa4\xd3\x0d\x15\xb1\xd9\x64\x22\x92\x5b\x10\x72\x0b\xe8\x4b\x9a\xb2\x29\x8a\xed\xee\x87\x49\xc9\x5c\x2b\x5e\x4f\x35\xe5\xba\x2d\x95\x71\x84\xcc\x0a\x2d\x88\x11\x55\xcb\xf9\x16\xb3\xf0\x96\xe0\x45\xae\x72\x9a\x24\x41\xdf\x0a\x73\xd9\x8b\xe1\x42\x3e\x9d\x4e\x5f\xee\x99\x06\xc2\x10\x1b\x72\x93\x8f\x22\xcd\xf8\x2d\x4f\xd8\x7a\x18\xe7\x0f\x7c\x76\x68\x36\x13\x66\x4c\x8d\x0f\x1d\xd9\x30\x1b\x7a\x7b\x63\x98\x65\x32\xcd\xbd\xf6\x9f\x96\xe9\xea\x93\x65\x66\xc1\x3d\xaf\x76\x2a\xd2\x89\xcf\xf2\xfc\xcf\x21\x97\xb6\x84\xed\xeb\xc8\x87\x09\x65\x0b\xe1\x50\x5d\x69\x1b\xea\x3d\x57\xe6\xea\x11\xe1\x55\x01\xf9\x85\xa5\xa4\xe7\xcf\x15\x9e\x58\x34\xc5\x25\xb6\x8d\xb8\x50\xe6\x9a\xa8\x37\x8c\x67\x44\xde\x05\x5d\x07\x9a\x3b\xc3\xac\x22\xcb\x6c\xfa\xf0\x62\x00\x4f\x80\x78\x30\x33\xde\xe3\xa0\x3e\x77\xcb\x52\x2e\x91\x5d\x21\x60\x97\xae\x0e\x90\x81\xde\x5c\x43\xd2\x84\x8a\xb0\x39\xfd\x73\x65\x3e\x00\x7b\x25\xb3\x88\x5d\xce\xdf\x0e\x83\xdc\xb5\x26\x0c\xff\x09\xb4\x1c\x69\x62\x7e\x92\x02\xca\xbf\xc0\xc1\xdd\xbd\xa9\x01\xfd\x95\xd5\x41\x0f\x8b\xc4\xba\x17\xdc\xd9\x4c\xd8\xf6\xcc\x9e\x78\xdb\x4f\x66\xd6\x1d\x3e\x48\xa4\x58\x90\x69\x4a\xe6\x52\x29\x6e\x88\xd4\x5e\xac\xcc\x89\x66\x77\x49\x7c\x48\xae\x10\x66\x99\x91\x77\x52\x9a\x2b\x68\xe7\xf1\x0c\x6d\xda\x71\xdb\xba\x99\xcf\xef\xf5\xb5\xb4\x87\x98\x91\xcd\xb6\x34\xeb\x97\xab\xf1\xfc\x6b\x7c\x57\x91\xdb\xdc\x91\x41\x28\xf9\xe6\xeb\x25\x0f\x67\x18\x34\x1f\xb9\x84\xe2\x50\xcb\x4b\xf8\xc2\x8c\x2d\xa8\x2a\x08\xb3\x87\xad\x3d\xc0\x31\xd1\x3e\xe4\x7d\x0f\xe3\x17\xa0\xb2\x95\x62\x60\x0c\x9b\x26\x28\x77\x99\xa7\x01\xb0\x8d\xbc\x2b\xd2\x22\xcb\x55\x71\xce\xd9\xd1\x83\xa7\x7f\x66\x7d\x15\x62\x20\x0e\x5b\xd6\x04\x48\xc9\x65\xdd\xb6\x9e\x25\x90\xe6\xdd\xd0\x43\x9a\xb9\x1a\x47\x97\xf3\xb7\xc1\x93\xce\x5c\x46\xfc\xbd\xfd\xaa\x7d\x15\x5b\x22\x3a\x71\x19\xeb\xe2\xc8\xc0\x55\x6c\x48\x31\xa1\x45\x54\x30\x37\x6f\x69\x5a\x05\x2e\x7b\x9a\x55\xac\xc6\x50\x68\xc5\x1e\x79\x2f\x6c\x11\x18\x77\x16\xba\x36\xb3\xb9\x0a\x96\x06\x33\x28\xb7\x9e\x1e\xe6\xa6\x29\x5d\x3e\xfb\xe2\x9a\x69\x0e\xc6\x95\x13\xbb\x16\x07\x28\x78\x2d\x0e\xb0\x7e\xc2\x52\xea\x60\x1d\x01\xab\xfb\x01\x08\x32\xa6\x52\x29\x0c\x3b\xb3\xe7\xb5\xd9\xd2\xd0\x0b\x0e\x58\x4b\xa2\x0f\xe3\xb5\x6c\x6b\x04\xe1\xec\xea\xd2\xdc\x04\xf1\x3b\x1c\x27\xd4\xf5\x32\xd7\xb6\x4d\x75\xfc\x16\x43\x17\x38\x2f\xc5\x3c\x63\x91\x4e\x76\xc1\xf4\xfe\x06\x32\xe1\xc6\xb7\xeb\x57\x36\x09\x4a\x02\x50\x34\x21\x4d\x19\xcd\x94\x5f\xdc\x6d\x36\x77\x4a\x1e\x2e\xd6\xe0\x4d\x65\x5a\xfe\xd9\xa9\x4d\xe1\x0e\xa4\x08\x0d\x75\x99\xb2\x6c\xcb\x95\xe2\xb7\x8c\xbc\xfb\xda\x13\xd6\x4a\xfa\xc6\x15\x7a\x00\xab\xfa\xab\x54\xda\xb0\x1a\x9d\xd1\xe8\xe6\xcd\x2e\xa5\xfd\xd9\xf1\x0d\x8d\x07\x3e\x23\xa7\xf5\x0b\xa4\xb9\xc2\xe1\xab\x77\x5c\xe4\x41\x85\x48\xe4\xfa\xf0\x77\x08\x5c\xa6\x0a\x5a\xac\x48\x77\xf5\xf3\x3a\xd4\xe7\xa4\x32\x6a\x39\xc4\x43\x0e\x49\x73\xbd\x9c\x67\xf2\x7e\x77\x6e\x75\xa0\x57\x89\x01\x63\xe0\x91\xff\x66\xfe\xb6\xbb\x83\x30\x5f\x08\xdf\x07\xbc\x4b\xf9\x73\x45\xd8\x76\xc9\x62\xb3\x7b\x6f\xf2\x25\x9b\xa4\x66\x04\x6b\x80\x52\xa4\x3a\x54\xbb\x23\xd7\xe0\xc9\xcf\x52\x0d\x09\xf8\x4f\x4d\xc3\x3c\xdd\x43\xe0\xe9\xe9\xa2\x22\x08\x21\x2e\x82\x47\x1a\xa0\xc7\x13\x94\xd2\x4c\xa2\xd1\x2f\xd9\x91\xc8\xf4\x48\x72\xac\xf2\x98\xa7\x4a\x67\x8c\x6e\x7d\xbd\x40\x89\xa1\xe7\xcf\xc3\x35\x55\x2c\x6c\x24\xda\x50\x0e\xd7\xfd\xab\x6a\x59\xb3\x02\xc2\x95\x8f\x6e\x5b\xaf\xc3\x1a\xcb\x9f\xea\xaa\x5f\x60\xf0\x3d\x17\x57\x3b\x11\x61\xe6\xb7\xbd\x70\x5f\xf9\xf2\xb0\xe5\x2c\xd2\x61\xd5\xcd\x96\x0b\xc8\xe5\x06\xaa\x1b\x57\x7b\x00\xd5\xf9\x85\x59\xa6\x10\x55\x4b\xfb\xd3\x73\x8f\x44\x43\xdd\x96\x68\x9c\x1a\x31\xeb\x8e\x65\x4e\x5e\x5b\x1b\x2e\x97\xb1\x38\x8f\xb0\x14\xe9\x24\x4f\xc1\xee\x23\x22\xd3\xf4\xaf\x7c\xbd\x29\xda\x86\x0f\x21\xf3\xa5\xb3\x9b\xcd\x3f\x92\x5c\xd1\x35\x83\x14\x31\xe6\x6e\x07\x9e\x90\x29\xd9\xca\x0c\x4f\xbb\x0a\x13\xfd\x4a\x3d\x80\x81\xbe\xfb\x66\x4f\x1d\x41\xf5\x83\x6e\x0d\x01\x8a\x58\x41\x72\x92\xa8\xbf\xc1\x93\x8f\xc4\x0c\x25\x81\x84\xdf\x98\x2b\x8e\xe9\x8f\x66\x31\x44\x94\xde\x27\x54\x90\x17\x7c\xca\xa6\x87\xe4\xdd\x37\xae\x65\x5b\xc9\x50\x1a\xdb\xc8\x65\x2d\x43\x0a\x0d\x4f\xef\x63\x47\xf6\x04\x74\x21\x83\x02\x29\x24\x14\xf6\xb3\xdc\x1d\xee\xab\x2f\x68\x51\x1a\x55\x55\x08\xfb\xe9\x0b\x3a\x64\x5c\xd5\x2a\x74\xed\x7f\xad\x7f\x27\xd7\xef\xd8\x2d\x0b\x55\x57\x6b\xec\x57\xd7\xb6\xb2\x27\x49\x22\xd7\x24\x81\x9f\x5d\x8a\x1f\xef\xf2\xd4\x72\x52\x14\xca\xde\x72\x67\x6e\x51\x96\xf9\xe0\xf4\xeb\x1f\x56\x2b\xd4\xac\xcf\xc4\x4a\x9a\x7f\xa1\x62\x9d\x2d\xf3\xf5\xe2\xa0\x5d\x93\x9b\xc8\x35\x5e\xa9\xd8\x96\x6b\x5d\xca\x72\x66\x30\x73\xc8\x32\x92\xf2\x94\x1d\x3a\x9f\x11\x73\x0f\x83\x1b\x1f\x2a\x8f\xb7\xdb\x16\xcc\x2f\x0e\x74\x44\xd8\x3d\x8b\x0c\xce\x50\x8f\x5a\x51\xee\x93\x0f\xab\xd5\x4f\xd3\xfd\x37\xe7\x7b\x9a\x5e\xf1\x7f\xb1\x42\x52\x19\xb2\x0c\xf5\x6f\x4a\xe5\x89\xe2\xff\x2a\x63\x17\x0a\xb1\x22\x7c\x07\x4b\x9d\x32\x64\x4b\xd3\xc2\xba\x91\xd0\x6c\x6d\x4e\x13\x99\xaf\x37\x06\x73\x1b\x99\x60\x39\x26\xa1\x33\x0c\xd4\x00\x9d\x36\x1e\x6d\xdd\x4a\xe9\x29\x21\x3f\xd0\xcc\x1c\x3c\xc7\x18\xa6\x5f\xc4\x10\x1b\x20\x9d\x0b\x53\x31\x07\x03\x45\x14\xae\xa2\x17\x51\x23\xa1\xc6\x5c\x65\x39\x60\xa1\x1d\xcd\xed\x37\x25\x8b\xb3\xd9\xfc\x8a\xe9\x21\xea\xe8\x4a\xfb\x00\x82\x79\x0a\xbf\x39\x34\xb2\x96\x20\x05\xd7\x68\x5f\x04\x3b\x83\x76\x78\xe9\xb4\xad\x30\x45\xd8\x2d\xcb\x76\x36\x05\xae\x01\x4a\x78\xf1\x04\x47\x9e\xed\xcb\x7e\x03\x2a\x70\x2b\x9c\x07\xa5\x78\x99\x70\x38\xc4\x5c\x35\xb8\xd2\x2d\x6b\x71\x40\x93\xe4\xc5\xff\xc7\xde\xbb\x2f\xb7\x71\x63\x8d\x83\xaf\x82\x91\xbf\x2a\xc9\xdf\x8a\x94\xed\x24\x9e\x44\x53\xf3\x87\x22\xc9\x0e\x77\x6c\x99\x3f\x49\x8e\x33\x3b\xcc\xcf\x05\x76\x83\x24\x56\x4d\xa0\xa7\x81\xa6\xcc\xc9\x4c\xd5\xbe\xc3\xbe\xe1\x3e\xc9\x16\xce\x01\xba\xd1\x4d\xf4\x85\xb2\x9c\xc9\x7c\x69\xfe\x91\x58\x64\x37\x2e\x07\x07\xe7\x7e\x79\x3a\x3b\x80\x3e\x57\x19\x53\xd0\x17\x4c\xd8\xfd\xb8\x66\xaf\x32\xa8\x22\x99\xbd\x71\xa3\x04\x4a\xc1\xec\x46\x53\x96\x95\x4e\x7b\xee\xac\xcd\x54\xb1\x66\xc3\x64\xf7\xd9\x2e\x6e\x1a\x6a\x38\x34\x1d\x2e\xbe\x10\x3a\xdd\x05\x56\x9b\x28\x8e\x37\xc8\x8b\xca\x87\xf6\x3d\x5e\x64\x71\xa1\x41\x8f\xc0\xac\xf0\x7f\x94\xca\xc5\x53\x30\x5d\x81\xb5\xe1\xe1\xa0\xb9\x3a\xbb\x75\xfd\x31\x02\xe0\xe9\x3f\xc8\xf7\x34\xba\x63\x3b\x81\x20\x2d\x20\x2e\xdf\x09\x40\x59\x50\x4d\xe6\xe6\xee\x33\x88\x87\x49\x9b\x7b\x5c\x58\x73\x5b\xbd\x50\x96\xc3\x20\xd7\x1e\xd8\x10\x33\xa9\x8c\xa2\x0c\xe2\x93\x5e\x85\xe9\x49\x9d\x08\x95\x03\x16\x4a\xdc\xe7\x00\xe9\x55\x26\x85\xde\x17\x4a\xee\xa5\x06\x30\x2d\xcc\xcf\x66\xbf\x8d\xb4\xdc\x0d\xf0\x96\xa6\x5e\xe0\x61\x3f\x7c\x6c\x32\x12\x18\x59\xe4\xb8\x34\xc3\xd9\x4e\x8e\x80\xc1\xd0\x96\x92\x0b\xfc\xc3\x99\xde\x1e\x0c\x35\x48\xaa\xec\x0f\x2f\xcc\xc1\x0c\x73\x3d\x9b\xfd\xd9\x7a\x73\xcb\x67\xba\x40\x55\xa5\x58\xee\x52\x06\xa5\x3d\x11\x9b\x6b\x4a\x45\xbc\xc8\x13\x44\x4e\xa4\x7a\xe6\x45\xb8\xd4\x47\xe5\xd8\x11\xc8\x8e\x5c\x2b\x22\xef\x05\x99\x4c\x1b\x05\x3e\x2b\xc2\x4e\xa6\xea\x21\x84\x71\x7a\x73\x75\x76\x3b\x35\x02\x65\x00\xb6\x54\x6c\xdf\x85\x1a\x3c\x8f\xba\xea\xc8\x8d\x3a\x7c\x96\x3b\xf2\x4a\xb9\x8c\xf2\xcc\x32\x2a\x96\xcc\x86\x8e\x80\x23\xf1\x1e\xbe\x8b\xe5\x3a\xec\xbd\x4a\x79\x74\x47\xa8\x45\x3b\xb8\xb6\x19\xb3\xe1\x66\x18\x49\x06\xbf\x44\x32\x49\xb8\x02\xe1\x03\x08\x42\x71\xba\x4d\x86\x7e\xcb\x31\x59\xba\x62\x6b\x96\xd1\xc4\xae\x8b\xba\x22\xdb\x68\xc2\x7d\x75\x4e\x5e\x3e\xfb\xe6\x25\x39\x7a\xfe\xec\xc5\xd7\xff\xdf\xff\xf3\xff\xbe\xfc\xe6\x9b\xaf\xbe\x79\xda\x74\x66\x29\xf4\x68\xa6\xf3\x64\x5b\x91\xd0\xeb\x93\xa8\xa2\x34\xa8\x11\x3b\xa5\x20\x32\x65\x19\x6d\x2a\x5c\xaf\xb6\x4a\xb3\xb5\x1a\x5b\x93\x51\xae\x98\x22\x5f\xbd\xf8\xe3\xcb\x6f\xcd\x72\x9e\x7d\xf7\xdd\x77\xc7\x06\x8e\x09\xc3\xbe\xcc\x05\x1d\x2c\x4c\x7b\x67\x57\x67\xa1\x61\xdd\x2e\x71\xdb\x5f\x7f\xf7\xfc\x9b\x17\x6e\x7f\xae\x44\x8b\x90\xda\xb6\x48\xa7\x19\x4f\xb6\xe6\x10\x32\x39\x4f\xd8\x1a\xcf\x21\xdc\x04\x16\xc7\x33\x58\x9e\xd0\x54\x95\x12\x76\xb1\xc7\x72\x43\xdf\x17\x3d\x51\x5d\xee\xa6\x79\xb7\xc9\x28\xcc\x85\xd1\x74\xf8\xc6\x77\x8c\x90\x17\xcf\x9e\x3d\x7b\x76\xfa\xe2\xbb\xef\xbe\xfb\x2e\xa4\x1f\xa7\x56\xf3\x25\xff\x7b\xfc\xdf\xbb\xbf\x7e\x1a\x95\x6d\xb3\x47\x5c\xe8\x91\xcc\x46\x88\xda\x61\x03\x9e\xb9\x57\x20\x27\x81\x2a\xd2\xdf\xce\xb6\xfb\x12\x2a\x42\x66\x0e\x67\x3a\xca\x58\x24\xb3\xd8\x20\x9f\xa6\xbc\xc1\xd9\xe9\xe7\xfe\x62\x3b\x83\x42\xe7\x82\x19\x0a\xd5\xeb\xd8\xde\x2c\xdb\x98\x94\x7d\xa2\xeb\xa6\x76\xd6\xa5\x06\x04\x1a\xef\xc8\xe8\x38\x56\x19\x1a\x25\x5c\x18\xce\x2b\x43\x61\x0d\xad\xa6\x21\xb0\x55\x4d\xc0\x15\xda\xcb\x31\x71\x5e\x7d\xbe\x29\xdc\x67\x25\xe5\x9d\xef\x2a\x6e\x30\x99\x69\x99\x8e\x50\x2b\xad\x19\xcf\xa0\x77\x26\xcc\x62\xd0\xd0\x86\xb9\xd9\xa4\x13\x2d\x53\x8b\x85\x61\x9f\x0d\x85\xf8\x05\x68\x8b\x9d\xa6\x4c\xc4\xbb\x23\xcc\xa5\xd6\x72\x3d\x76\x2e\x60\x2b\xb8\x28\xba\x60\xae\x9b\x6e\xf0\x76\xbb\x92\xfb\xb6\x55\xad\xef\x60\x36\xa3\x5b\x85\x1f\xf3\x64\xd1\x76\x0c\xb1\xaa\x0b\xb2\x95\x39\x51\xf7\x5c\x87\x99\xb8\x96\x76\xa1\xd6\x96\x36\x67\x44\x61\xef\x55\xbb\x5c\xec\xe2\x8e\x53\x58\x5a\x68\xa1\x84\x49\x1a\xc1\x6b\x08\x46\x5c\x88\x53\x9a\x6f\xc9\x82\x26\x09\x6a\x76\x99\xe3\x6e\x5e\x85\x23\x18\xf9\x18\xa7\xb9\xe7\x48\x8c\x42\x63\xda\xc7\x2d\x06\x83\x05\x75\xce\xbc\x9d\x96\x77\x1d\x01\xbb\xaf\x19\xac\x30\x33\x5c\x64\x7c\xc3\x3a\xbb\x61\x5f\x54\x1f\x27\x0b\x9e\x30\xe1\x75\xe1\x2f\x44\xa2\xd2\x7c\x11\xc3\x93\x0d\x87\x90\x2b\x34\x6d\x20\x45\x06\x33\xed\x7b\xc5\x26\x36\x2c\xbc\x3e\x1b\x2f\xe2\x89\xc0\x75\xbe\xa7\x4d\xa7\x58\xd2\x07\xa3\xf3\xc5\x12\xca\x65\xcb\xbc\x33\xad\x65\x76\x70\xd1\xf0\xa6\xc3\xe2\x8c\xd1\x98\x0b\xa6\xd4\x49\xc2\x37\xcc\xfc\x03\x8c\xae\x32\x0f\xe2\xb4\x4b\xe7\x2e\x1c\x02\x47\x2e\x0c\xfe\xe9\x0e\xd8\xc6\x64\x22\xa2\x8c\x51\x65\x2b\x14\x34\x77\x9e\x45\x8c\x67\x9f\x52\x96\x71\x66\x50\x50\xa5\x79\xc6\x65\xae\xa0\x60\x6e\x06\x59\x4a\xe0\x4e\x10\x23\xb3\x48\x62\xaf\x13\x50\xda\xc6\xa0\x57\xae\x48\x2e\x62\x23\xa7\x31\xba\xd9\x42\xfc\xdf\x98\x5c\xb0\x62\x45\xae\x0e\xb9\x96\x64\xc9\x34\x66\x63\xa0\x53\x12\x9b\xc9\xdb\xc9\x42\x43\xdb\xb5\xe0\xc2\x40\x2b\xf9\x7b\xce\xa3\xbb\x64\xeb\xe3\xf4\x77\xcf\xd4\xcf\x64\x36\x13\xe4\x82\xa5\x19\x8b\xa0\x68\x9b\x19\x3c\xa1\x51\x98\x5e\x43\x63\x66\xdb\x69\x98\x47\xe4\x07\x46\x13\xbd\xb2\xa7\xf5\x6e\xc3\xb2\x8c\xc7\x46\x89\x09\xf4\x4d\x6e\xef\x62\x38\xcf\x97\x36\x12\xe1\x8d\x5c\x5e\x64\x12\x1a\x65\x37\x6a\x8c\x0d\x74\x1f\x86\x79\xcb\xd6\x32\xdb\x4e\x33\x69\xae\xce\x94\xea\x55\xe3\x28\x2d\x6b\xb9\xe1\x6b\x88\x35\x3e\xa7\x49\xf4\x3a\xa3\xe9\xea\x07\x2a\x96\x67\x0b\x1d\xbc\xc0\xbd\x47\x2b\xd0\xfc\xe1\xa3\xc1\xb9\x39\x27\xd6\xad\xfc\x41\x2a\x7d\x16\x35\x14\x62\xa9\x32\xb9\x8b\xe6\x77\x7d\x86\x07\x76\x62\x43\xb9\x55\x43\xa4\x5c\x61\x35\x36\x8f\x2e\xa5\xe3\x10\xb4\x34\x56\x97\x39\x11\xb2\x8c\x57\xe0\x5a\xb1\x64\x41\x8e\xe8\xa2\x21\xb7\x12\xb8\xa0\x1d\x7b\xc5\xad\xb0\x5e\x0c\xc5\xd0\x2d\x8c\x64\xfa\xe9\x98\x7c\xbf\x2d\x7a\xc4\x23\x05\x0f\x22\x6b\x22\x23\xc3\xb1\x43\xe1\xe2\xa5\x0a\x1f\x5a\x26\x76\xad\x0e\xea\xf0\x05\x53\x9f\x1d\x5c\x5c\xbf\x9b\xce\x0e\xc0\x26\x69\x04\x7f\xcb\x14\xef\xa9\x8d\x18\x49\x12\x79\x4f\x94\x5c\x43\xed\x50\x9a\x24\x6d\x0e\x77\x58\x9b\x0f\x38\xb3\x9a\x63\xa4\xc6\x50\x4a\x93\x66\x74\xcd\x6c\x70\xc3\xf5\xe5\xed\xfb\xeb\x2b\x33\xea\xd9\xf9\xf9\xe5\xf4\x76\x6c\x68\x7a\x68\x54\xfb\xa0\xa5\x5d\xd0\xf9\x7f\x2b\x73\x88\x0c\xab\xb2\x5e\x6f\x53\x93\xab\xe9\xfb\xdb\xd9\x01\x72\xe3\x3f\xb5\xb0\x4c\xe0\x95\x4e\xda\xd0\x4e\x5c\xa8\xcb\x33\x54\xe3\x48\xc7\x18\x20\x31\x3b\xc0\x35\x85\x3b\xab\xbb\xe8\x18\x7b\x22\xb5\xc5\x10\x69\x65\x95\x15\x55\x90\xc0\x89\x3d\x4d\xd3\x4c\xba\x24\xcc\x36\x35\x39\x8c\x4a\x00\x3a\x0b\x46\xe0\x97\xa2\x48\x3b\xa4\x49\xe2\xfc\xc6\x6e\x61\x8d\x27\xe7\x79\xe4\x0d\x7e\x87\xd6\xd4\xb4\x80\xd0\x98\x25\x81\x36\xa4\x70\x6f\x91\x03\x6c\x7c\x60\xaa\x98\x66\x52\xcb\x48\x76\xfa\x58\x40\x67\xf5\x93\xd8\xb0\x42\x4a\x6a\x5f\x27\x34\xb6\xd1\x30\x56\xc4\x5f\xb3\xb8\xc5\x94\x88\x56\x8e\x63\xc3\x2c\xdc\x25\x05\x24\x76\xd2\xd5\xf5\xed\xf4\xfa\xdd\xed\xc7\xef\xdf\xbd\xbb\x45\xfe\x98\xb0\x85\x26\xf3\x84\x8a\xbb\x7d\x6d\x0d\xde\x5e\x31\xf3\xf3\x0c\xcb\xf1\xf4\xda\xb0\x95\x2e\xa0\xe2\x64\xb5\x77\xbf\x0b\x4e\x91\xc2\xdb\x71\x58\x8d\x35\xf3\xdb\x1d\x57\xc8\x92\x57\x5f\xc7\x0d\x0a\x95\x75\xdc\x4e\x8f\x49\xc2\xe8\xa6\x41\xe9\x2e\x95\x0c\x30\xda\xac\xa4\xb4\xe2\x40\x6d\x44\x23\xea\xec\x2b\xa5\x35\x40\x6c\x32\xdd\x84\xaa\x9f\xb5\x41\xed\xe5\xef\x08\x6a\x28\x9c\x14\x9e\xaf\x89\x80\x4e\x66\x4d\x69\x41\xad\x62\x8a\x23\x04\xd7\xae\xb8\xf5\x05\x4b\x82\xd5\xcb\xda\x16\xb4\x33\x48\xb3\x3d\xa0\x7d\x31\x56\xa1\xb8\x92\x31\x83\x4e\xb1\x5d\x38\x70\xe9\xbf\x70\x3e\xb9\xb8\x36\x2f\xed\x66\x4d\x1c\x82\x55\xc5\x8d\x3e\x32\xa2\xa8\x55\xf1\xa1\xa9\x6c\xd8\x3b\xcb\xa3\x15\x64\x5a\xba\x1c\x4d\xb4\x41\x3a\xfe\x0d\x21\x8f\x86\x87\x01\x83\x29\x22\xe6\xec\xaf\x61\x53\x9b\x4b\x3c\x27\xe0\xe5\x29\xfa\x16\x86\xec\xec\x5f\x20\x53\x62\x41\x79\x62\x34\xf0\x89\x98\xcb\x5c\xc4\x46\xe2\x6a\x32\x8a\x56\x85\xb5\x57\x0d\x2f\x56\xe1\xfc\xfe\x62\x7a\x72\x7b\x3e\x25\xcd\xd9\x23\x22\xb6\x29\x27\xc0\x88\xbd\x28\x21\x14\x4e\x42\xa1\x00\x20\x06\x15\xc2\x51\x50\xb3\x10\x84\x67\x19\x53\xa9\x6d\x7f\xe9\x8a\x89\xb1\x28\xcf\xb8\xde\x16\x9c\xd5\x51\x8b\x5c\xb1\x45\x0e\x57\x92\x6e\x24\x0f\xdb\xb0\xa3\x08\x9a\x4c\x02\xcf\x8d\x72\x88\x57\x26\x72\xb1\xb0\xfe\x27\x94\xc7\xcc\x6a\xb3\x8c\x45\xba\x96\x04\x4a\x5e\x85\x4b\x77\xcd\x69\x74\x37\xaa\xb4\x23\x3f\x76\x05\xc0\x0a\xc6\x66\xcd\x8c\xb6\xce\x10\x44\x5d\x69\x47\x8c\x9a\x82\x4b\x66\x07\x3a\x4a\x67\x07\x20\xf0\x51\x80\x6f\x78\x18\x0f\xd0\xbe\x08\x1a\xdc\x3f\xe6\x3e\x66\x90\x11\x34\x26\xb7\x65\x3e\x01\x05\x21\x0b\xb0\x00\x41\x01\x87\x7d\x5c\xd8\x57\x1b\x15\x56\x21\x05\x84\x24\x17\xe6\x1f\xab\x4a\xda\xd0\x64\xa5\x56\x2e\xa5\xc0\x60\xc9\xc5\x0f\xe7\xd3\x4a\x00\x61\x94\x9e\xbe\x78\x11\x4c\x86\xcb\xe3\xf4\xf4\xe5\xb7\xc7\xf0\xc8\xf3\x3f\x7e\x87\xff\x78\xf1\x55\xf9\xaf\x6f\x9f\xe1\xbf\x5e\x7e\xfd\xf5\x57\xf6\x5f\x2f\x5f\xbe\x2c\xfe\xf5\xc7\x90\x3c\xd3\x7c\xf9\xaa\x2d\x19\xcc\xb9\x4d\x25\xda\xb7\x22\xb9\x9e\x7b\x15\x25\xdd\x99\x1e\x13\xf4\x1e\x39\xe4\x6f\x28\xd3\x36\x2d\x64\x1b\x11\xa3\x0d\xdf\xb9\x52\x8b\x53\x0c\xbe\xd9\x59\x96\x50\xb0\x70\x94\x1b\xe9\x55\x15\xce\xac\xa4\xe3\xf5\x96\x3e\x3b\xa4\x80\xc2\x83\x97\xd0\x52\x98\x9e\x90\x11\xac\xaf\xe1\x17\x3b\x73\x33\x05\x6d\xef\x9a\xd5\x4a\x41\xdf\xe5\xfa\x81\x24\x74\xe7\xcd\x47\xa6\xa1\x32\xd7\x4b\xe9\xd3\x50\x50\x08\xba\xa9\xa8\x96\x03\x15\xfd\x55\xa9\xa8\xb4\x88\xf0\x38\x64\x54\x82\x89\x84\xe9\x28\x3e\x3c\x84\x46\x30\x22\xa6\x59\x6c\x13\x0d\xb4\xb4\x89\x5e\x80\x33\xa1\x61\x11\x8d\x62\x89\xa1\x81\x60\xdc\x8b\x72\x0d\x87\x85\xa6\x00\x1d\xc5\x95\x94\x40\x03\x00\x73\x9c\x86\x50\x37\xf9\xff\x2e\xae\x6e\xea\x34\x7c\x1f\x02\x1d\x3c\x28\x4b\xb3\x8f\x81\xec\x7f\xf3\x15\xfe\x7f\xa0\xe1\x03\x0d\x0f\xfe\x1a\xa6\xe1\x8c\xea\x3c\x63\x17\x4c\xb3\xa8\x30\x12\x77\xd1\xef\x57\xa1\x97\x8a\x32\x60\x5a\x82\x8b\x17\xbe\xb3\xc3\x93\x18\x1e\x6d\xc8\xa4\x9a\x53\xf3\x9a\x14\x84\xe6\x5a\x8e\xf0\x51\x16\x93\x34\xa1\x1a\xfa\x7b\x44\x34\xa5\x40\xdd\x38\x64\xa6\xff\x58\x26\xc8\x15\x98\x14\x76\x89\x12\x8a\xfe\x4a\xa2\x58\x4a\x33\x08\xe6\x05\xd6\x02\xb4\x56\x48\xa2\x52\x1a\x31\x75\x0c\x4e\xd0\x34\x61\x7f\x22\xb3\x83\x9b\xab\xb3\xdb\x57\x79\x92\x6c\xaf\x21\xec\xe0\xcf\xe0\x87\x7d\x7b\x76\xf3\xbf\xfc\x2f\xc1\x01\x73\x7c\xcd\xa0\xe6\xd5\x4d\x9e\x02\x61\x79\x23\xa3\xbb\x3f\x43\x0c\xea\xec\x00\x3c\xc4\x41\x2b\x1a\x84\xab\x62\x2d\xa6\x03\x24\x9f\x98\x94\x68\xe8\x9c\x05\xd6\x31\x61\xeb\x54\x83\xc3\x42\xda\x68\x55\x2f\x27\xb0\x02\xa3\x3d\x15\x65\x3b\xc1\x6b\xda\xa3\x5f\xc9\x2b\xef\x59\xff\x68\x31\xa7\xc0\x2c\xce\xd1\x6f\xcd\xa2\xd5\x28\xcd\xd8\x86\xb3\xfb\x16\x93\xa4\x9d\x5c\x8d\x83\x07\xd8\x7c\x5a\x41\x6d\xb4\xf9\x00\x5b\xca\x4a\x7c\x90\xd9\x1d\xcd\x0c\x9b\xf9\xb3\xcb\x33\xfe\x69\xfb\x7f\xfd\xd9\x9e\x46\x6b\x9c\x59\x6d\xf7\x6e\x2f\x36\xda\x3d\x63\xc0\x28\x16\x06\x45\xcc\x35\x8d\xf3\xc8\x16\xe1\xa6\x71\xc8\x88\xd8\x7a\x46\x89\x84\x50\x88\xc9\xb4\xfb\x88\xca\x47\xcb\x36\x4e\xa5\x63\x1c\xf3\x67\x6a\xe9\x27\xcb\x8c\x06\xd9\xb3\x90\x62\xf4\x2e\x65\xe2\x46\xd3\xe8\xae\x58\x84\xd7\x2e\x0c\xae\xde\x51\xf1\xc8\x28\x66\x19\xdf\xb0\xb8\x78\x34\x34\x28\x84\x30\x19\x9c\x4d\xee\xe9\x56\x79\x76\xa7\xe3\x5a\xf6\x2c\x58\x20\x5d\x2a\x6c\x20\xc4\xbf\xb1\xe6\x89\x35\xac\x84\x7e\xba\x68\x4c\x0d\x6f\x03\xbf\x75\x9e\xfd\x74\x31\xed\x9b\x2d\xf4\xba\xfe\x86\x45\x12\x45\xec\x2f\xe4\xa7\x8b\x29\x51\xd2\x85\xd8\x92\x88\x66\xe1\x82\x38\x80\x4c\xb1\x14\x87\x87\x9a\x28\xa4\x2a\xf0\xae\x5c\x2c\xc0\x48\x6d\xee\x1c\xfa\x82\xd7\x32\x66\x90\x7c\x0e\x32\xd2\x4f\x17\x53\x14\x45\x1b\xbc\x98\x90\xed\xc3\xcc\xdd\x62\x22\x66\x71\x19\x57\x60\x44\x1c\x98\x2d\xcd\xe4\xc6\x90\xeb\x39\xd3\x60\x21\x2f\x8b\x8e\x34\xac\x53\x14\x5e\x89\xf1\x67\xe7\x74\xaf\xc0\x4f\xf9\x40\x13\x19\xbe\x6c\xf4\x87\x3d\x6d\x74\xf8\xe2\x34\x2c\x0d\xb4\xca\x01\xab\xa0\x5f\xb5\x0b\x4f\xc2\xde\x58\xa7\xf1\x17\xa5\x2a\x04\x4d\xc8\xbd\x75\xb4\x3b\x3f\x7a\xd8\xd0\xb3\x80\xd2\xe9\x1b\x1e\xe7\x34\x21\x2a\x9f\x7b\x55\x33\xb1\x06\x8d\x65\xc2\x31\x13\x63\x52\xd7\x54\x1a\x0a\xaa\x1b\xfc\x84\xe8\x15\xa0\x92\x8e\x53\x91\x54\x2a\x0e\xa1\xfd\x07\xa4\xee\xe3\x57\x2e\x48\x5b\x10\x19\x45\x79\xb8\x32\xab\x20\x29\xcd\x34\x8f\xf2\x84\x66\xc9\xd6\x1c\x08\x53\xca\x2c\xa3\x74\xcd\x40\x78\x35\x24\x3e\x61\x4f\x3a\xa5\x33\xca\x05\x8b\xc7\xa4\x49\xf7\x29\xd5\x44\xcc\x3b\xa8\xc2\xe0\x98\x28\xc6\x8a\x20\x83\x44\x2e\xf7\xb3\x2a\x76\x0b\xa1\xb4\xa5\xa1\x79\x8f\x4e\xd5\x8d\xd1\x17\xfd\x46\xe8\x10\x22\xcd\xea\xc2\xbf\xb4\x84\x66\x3c\x58\x86\x2c\x72\x99\x2e\xb1\x02\x4f\x27\xc9\x9c\xd4\x5e\x40\xad\x1f\x98\xff\xa8\x26\xaa\x01\x9a\x77\x56\x5b\xa9\x14\x99\xb1\x75\x80\xd0\x7b\xb5\x96\x82\x6b\x09\xa5\x07\x17\x32\xab\xa9\xfe\xe3\xa6\x50\xe0\xaa\x3a\x59\xa9\x0b\x62\xab\x4b\x2d\x85\x34\x5f\x95\xe9\x9a\x87\x87\x64\x32\xfd\xf1\x86\xc4\xf9\x7a\x1d\x8c\x55\x2d\xb6\xe1\x22\xf0\x9c\x58\xe1\xee\x7d\xb2\x25\xf3\x6d\x25\xc3\xb0\xea\xb4\x0e\x0d\xea\xf6\xba\xce\x13\xcd\xd3\xc4\xab\x77\x83\x85\x49\x49\xae\x30\x1a\xcd\xfc\xcf\x15\x97\xc0\x4c\xf0\x26\xd9\xca\x72\x1e\x15\x48\xee\x53\x60\x88\x08\xfd\x00\xeb\x04\xfd\xee\x3e\xa3\x69\x93\xff\x07\xc1\x09\xc2\xdb\xe1\xe1\xc9\xe1\x21\x0e\x67\x85\x37\xb2\x02\xdf\x91\x93\x75\x0f\x0f\x4f\xfe\xb7\x81\xc5\xc9\xf1\x86\xe9\xd5\xf3\xc3\x00\x57\xb1\x75\xe9\x1c\x0c\xd0\x1a\x5b\x4d\xab\x9b\xb3\x25\x17\x6e\x46\x33\xdc\xe1\x21\xc6\x64\x27\x4a\x36\x45\x9d\x95\x20\x3c\x3c\xb4\x73\xfb\x4c\x0e\x0e\x88\xa7\x1b\xd5\x52\x9b\x21\x7c\x71\x8b\x81\xa7\x19\x5b\xf0\x4f\xfd\xaf\x09\x3e\xef\x9c\x7b\xd5\x23\x86\xc0\xe2\xa2\x36\x72\xcc\x84\x36\xf2\x74\xd8\x87\xb3\x1b\x5e\x01\x39\xea\x60\x8a\x31\xa2\x57\xce\xd5\x0a\x7d\xcc\xeb\x80\xa5\xac\x15\x56\x6a\x4c\xae\xa4\x06\xa6\x49\x98\xd8\xf0\x4c\x8a\x35\xf0\x22\x69\x5b\x8e\x52\x41\xe6\x46\x16\x5c\x33\x4d\x13\xc4\x40\x99\x45\x2b\x66\x08\xbd\x96\xe1\x5e\xb9\x85\x50\x8b\x02\x22\x4d\x0d\x59\xce\x38\xd5\x2c\xd9\x56\x71\x47\xe6\x99\x9f\x3a\x0d\x56\x73\x19\xdd\x35\x54\x0a\x37\x7c\xdd\xd6\xd4\xb5\x51\x1c\xe6\xac\x23\x9a\xf0\xc3\x43\xbf\x1a\xab\x19\xb5\x14\x8a\xbd\xd7\x82\xf7\xc6\x05\xb1\x1f\x1e\x6a\x9a\xba\x81\x7c\xcc\x31\x13\x3c\x18\x67\xae\xd9\x22\x63\x6a\x05\x38\xb1\xa1\x9d\x41\x03\x93\x86\xf7\xbc\x1a\x35\x5c\x82\xe7\x0d\x89\x51\x63\x14\x5c\xc6\x54\x44\x85\xc2\x0a\x2b\x95\xfb\x25\xc9\x86\x65\x7c\xb1\xb5\x15\x8d\xb0\xc5\x2d\x58\xe3\xf0\x1d\x1b\x62\x1c\xa4\xaf\x56\x36\x37\x04\xcf\x8a\xfd\x25\x6a\x6f\xb0\x0a\xf8\xb3\x3d\x15\x27\x9e\xf2\xde\x19\xfe\x93\xe9\xa4\x90\xd6\x65\x21\x8b\x55\x23\x8a\xcb\xea\xbe\x88\x83\x61\xfb\x33\x96\x07\x2d\xaf\xa4\x2c\xcb\xc0\x8c\xc9\xbb\x14\x63\x55\xca\x0a\xe6\x46\x71\xcf\xd6\x36\x92\x23\x2c\xb0\x17\xd6\x10\x0c\x29\xc5\x9b\x69\x14\xb1\x54\xca\xa4\x22\x6e\x0b\x9e\x90\xa3\x5c\x28\xa6\x9f\xee\x2d\x74\x1b\x68\xbd\xbd\x7d\xdf\x0b\x52\x6f\x6f\xdf\x3b\xb4\x31\xff\x84\x0a\x2e\xda\xad\xb0\x92\xc8\x3d\x26\x37\x2c\x1c\xc9\x6b\xa1\x68\xb6\x62\xc6\xf0\x92\xd7\xbf\xfe\x7a\xff\x22\x37\x98\x67\xb9\xe7\x95\x38\x9c\x84\xde\x6a\xbd\x10\x24\x63\x58\x20\x34\xec\x7d\x48\xbc\x30\x72\xcc\xfa\xab\x1a\x97\x89\x90\x96\xfe\xd9\x98\x23\x88\x8e\xf2\x3d\x01\x41\x04\xc8\xe4\x5d\xd1\x30\xb7\x88\xf5\x36\xa0\x85\xe0\xb3\x67\x95\x22\x8e\x6e\xfa\x0c\x77\xd5\x51\x18\xea\xbb\x67\x7b\x97\x0a\x70\x33\xf4\x4c\xf2\x9b\x54\x1f\x2f\x0c\x3c\xae\x50\xe3\xdc\x7e\x6f\xe4\x3a\xb7\x76\xc3\xc5\x83\x80\x60\x18\x0d\x52\xb1\xf0\x73\x45\xce\x72\x2d\xf7\x26\x0e\x38\xd7\x2b\x9e\x68\x96\x41\x5d\xdc\xc6\xd0\xcc\xfe\xe3\x5c\x30\xb1\xed\x17\xe1\x39\x69\x78\xaf\x31\xba\xb3\x2d\x1e\xd1\x15\xc9\x8a\x99\xe0\x48\x43\x9d\x69\xc1\xf9\xa5\x76\x22\x30\x6b\xe1\x96\x8d\x36\x35\x4f\xb1\xef\x8c\xa1\xcc\x15\x83\x90\xc1\xff\xf3\xf2\xfc\xb6\x78\x2a\xcc\x6f\x95\x66\x34\x86\x97\x81\x2f\x14\x6c\x9d\x43\xb6\xe0\x8a\xb5\x74\x65\x68\x3f\x87\x37\x32\xba\x7b\xd5\x1c\x4b\x5c\xbf\xff\xbb\x2f\xb9\xeb\x6f\xd8\x9b\xf6\xda\x1f\xba\x09\x42\xfb\x31\xa0\x84\xe0\xff\x31\xf9\xab\x11\x7b\xe9\x16\x2a\x4f\x62\x5c\x13\xa4\x38\x81\xb8\x62\x1d\x71\xc5\xd3\xce\x14\x13\xee\x68\xcd\xb5\xe7\xa9\x2a\x56\x73\xb4\xf0\x84\x1c\x3f\x54\x74\x6d\x30\x05\xcb\xc5\x0a\x2d\x8b\xe2\x25\x0d\x52\x94\x36\xba\x74\x66\x88\x1b\x25\x31\x5f\x2c\x58\xc6\x84\x26\x29\xd5\xab\xa7\x3e\x43\x39\xc9\x72\x71\xf2\xc9\xda\x75\xcc\xba\x1f\x4a\x2c\x0c\x84\xa7\x99\x9c\xb3\x3d\x68\x73\xc3\x9b\x45\x96\x2f\x5f\xb3\xba\x97\x37\x88\xc6\xd8\x14\x04\x0b\xbe\x50\xad\xd9\x3a\x45\x8b\x08\x8d\x40\x65\xae\x86\xd4\xc2\xe1\xf0\x85\x2d\x86\xdb\x50\x08\x84\x6e\x28\x87\xee\xe0\xe3\x6a\xc9\x97\x35\xbd\x73\x15\x5b\x20\x86\xdf\x16\xef\xe2\x1b\xab\x7b\xba\xd3\x6f\x30\xcb\x45\x98\x9a\xcb\xe2\x63\x28\xff\x65\xae\x13\x0c\x73\x3e\x7d\xef\x1f\xca\x37\xcf\xd6\x0f\x26\xda\x06\x9a\x3d\x13\x3d\x2a\x27\x50\x4b\xf1\x08\xc1\x1e\x00\x1d\xda\x99\x4b\xb9\xad\xc0\x18\xea\x74\x3c\x3b\xf6\x58\x17\xb8\x80\x73\x97\xda\x51\xb8\x3e\x1a\xe5\x50\x50\x2e\xd5\x8a\x06\x4f\x10\xae\x17\x12\xb0\x24\xa9\xb2\x5c\xab\x09\x86\xf9\xb7\x51\x02\xcd\x21\xba\x93\x1a\x93\x0f\xe6\xe0\x6c\x69\xa4\xb2\x92\x34\x37\xea\x65\x79\x91\x8e\x9b\x33\x1c\x5d\x3d\x34\x33\xa2\xb9\x4e\xb6\x4a\x9b\xcc\xb6\x8e\xb2\x78\x55\xa2\xd7\x32\xb7\x3d\xee\x6d\x50\xb5\x6d\x8c\x22\x64\xb8\x04\xac\xcc\xdc\x13\x0b\x57\x6f\x1f\x17\x54\x29\x19\xa8\x0a\xf1\xfa\xa1\x68\xf3\x96\x8a\x65\xc2\x3e\x9f\x4b\xbe\xa5\xd9\xdd\x5b\xaa\xba\xcb\x97\x4c\x6a\x2f\x38\xc4\x5b\x9b\x7f\xfb\x16\x1e\xa8\x40\xa1\x0c\xb1\x0c\xfb\x1b\x6e\x11\x29\xcc\x38\x64\x6e\x48\x2a\x34\xc1\x74\x75\xb1\xe6\x0c\x0a\x50\x9a\x5f\xc8\x8a\x7d\xa2\x31\x8b\xf8\xba\xac\x1d\x60\x10\x28\x88\x27\x9a\x24\x8c\x2a\x4d\xbe\xc5\x31\x15\xd3\xc7\x10\x7b\x80\x85\x3f\x21\x9b\x32\xa1\x6a\xe5\x58\xe8\xd6\x62\xe0\xda\xad\xa2\xc1\x28\x6a\xc3\x71\x21\xb2\x04\xf2\x5e\x2b\xc7\xf8\x69\xb1\x78\x06\x9f\xd0\x29\x62\xb2\x27\xc8\xc7\x5f\xbd\xd8\x5b\x78\x46\x60\x5f\x9d\xdd\xbe\xb3\xf1\x31\x85\xb6\x88\xf2\xc9\x03\x8f\x7b\x2a\x95\xfe\x90\x71\xcd\x20\xf2\x76\x6f\xd2\x1f\x7e\xbd\x2e\x9f\x43\x08\x7f\x23\x95\x30\xf2\x75\x6c\x4e\x86\x92\x7b\x33\xd4\x6e\xa9\xaf\xa2\x87\x54\xb4\x62\x31\x66\x45\x40\x4d\xd1\x8c\x82\xbb\x2e\xac\x91\x61\x9d\x3f\x57\xa3\x1a\xcb\x74\x62\xb9\x65\x98\xe4\x9e\x22\x67\x8f\x12\x39\x9f\xb3\x0c\x65\x32\x2a\x2a\x74\xa8\xd9\xbd\xa8\xbc\xa2\x6d\x60\x43\x37\x0c\xc9\xbd\x4d\xd3\x34\xe1\x4e\x34\xf1\x71\xa5\x70\xde\x34\x28\xed\x29\x8b\xf4\x2e\xa5\x1c\x7f\x56\xd9\x30\x37\xd4\xfe\x8a\x57\xf0\xbd\x07\xd8\x22\xac\x36\xe6\x0a\x53\x82\xcd\xc5\xa6\xc9\x78\x47\xdc\xae\x84\x35\xe1\x4d\x25\x42\x6b\x1f\x25\xac\xa5\xc8\x4f\xa1\x96\xa1\x71\x4c\x7b\x8a\x0c\xf2\x49\x97\xd6\x08\x91\xf4\x20\x5c\x80\xa9\xac\xc1\x34\x69\x13\x73\x71\xd0\xc2\x5a\xa2\x20\x08\x09\xcc\x7b\xd6\x71\x63\xc6\xa6\xb6\x28\x80\x0d\xba\x9f\xe7\xcb\x46\x46\x68\xf0\x77\xc1\x3f\xa1\x17\xde\x3e\xef\x9a\xf0\x7d\x3d\x7e\xfe\xbc\x10\xfd\x0d\xf7\x45\x8b\xf2\xc6\x7c\x0f\xa5\x8d\xa1\x4a\x5a\xd0\xce\xb6\xb5\xc2\xb1\x53\x18\x8a\x84\x29\x2d\x8f\x09\x25\x2b\xaf\x26\x1e\xe6\x4d\x56\x4b\xe0\x85\x86\x84\xaa\x78\x15\x24\x7e\x88\x46\xbb\x79\x69\x83\x36\x3a\xd5\xb6\x69\xf1\x68\x53\xe2\xb9\x73\xf6\x3a\x87\x6d\x83\x67\x0d\x32\x32\x8e\xf8\xc2\x3d\x87\x34\x02\x6d\x5e\x23\x28\x64\xe5\xd0\xb7\xb9\xa4\x47\x83\x29\xe7\x2e\x9f\xb3\x2b\x19\xb3\xa9\xcc\xf4\x35\xd4\x90\xe8\xbc\x90\x7f\xd9\x79\x05\x0a\x9b\xa8\xc2\xe7\x02\x5b\xf1\x0b\x52\x34\x6c\xcb\xd6\x78\x21\x65\x21\xdf\x71\x35\xa1\x79\x51\x98\xbd\x0c\xdf\xf6\xaa\x50\x36\xf6\x6a\x04\xd6\xc8\xd3\x8d\xb2\xb5\xdf\x10\xcc\x39\x0a\x72\x4c\x31\xb7\x2c\x40\x28\xf4\x15\x95\x55\x97\xdb\x92\xcc\xac\xee\xeb\x63\xcf\x57\x50\x22\xe2\xab\x17\x7f\x7c\xf9\xc7\x60\x99\xb6\x66\x07\x61\x53\x9d\x94\x1e\x95\x52\xba\x6b\xa5\x74\x15\xa7\xd8\xbf\x3c\x45\xab\xff\x2e\x91\x4b\x28\x40\xf1\xca\xe6\xb3\x5f\xb3\x25\xeb\xf4\x4e\xbc\x09\xbd\xe4\x5f\x12\x43\xc9\x6d\xae\x48\x04\xc5\x71\x79\x83\x3a\xed\xd2\x46\x78\x46\x60\x44\x28\x1d\x28\x73\x9d\x1a\x05\x44\x60\x4f\x0f\x47\xe4\xc1\x91\x8b\x18\x06\x25\xfd\x9a\xa2\x4d\x61\x32\x1b\x26\x04\x7e\x30\xe0\x04\x65\x9b\x84\x25\xdf\x30\x11\x2a\x5f\x59\x54\x13\x89\xc1\xf7\xdc\xe0\x1f\x5c\x80\x98\x84\x2c\x1b\x38\x34\xe2\xa3\x5d\x3e\xd4\x97\x68\x70\x39\xb7\x1d\x7c\x22\x97\xbd\x6d\x19\x6f\xca\x67\x1d\x1b\x5d\xe4\x49\x02\x3a\xbd\x13\x7a\xf0\xe6\x24\x72\xe9\xd8\x56\x68\x2b\x20\xc7\x7a\xcc\x0c\x54\xa9\x44\x42\x3f\x98\x8a\x6d\x60\x43\xb3\x93\x44\x2e\x4f\x7c\x0d\x64\x9c\xc8\x60\x8f\xa2\x8e\x5d\xf6\xf4\x7f\xbd\x71\x4f\x96\x46\x9a\x65\xc5\xdd\xe5\x91\x06\x50\xb8\x33\xa3\x4e\x37\x5d\xa9\x37\xef\x5e\x3b\x26\x5e\x75\xc9\x44\x72\x84\x29\xa4\x0f\xd8\xc9\x0d\xdb\xb0\x8c\xeb\xad\x39\x8b\x3e\xfb\xf1\x9f\xf7\x77\xa5\xec\xf7\x84\xce\x25\x98\x0f\xcc\xed\x31\x28\x14\xa4\x3d\x19\xc3\x0a\xe0\xae\xbd\xa0\x5c\x5a\x73\x54\xb9\xb1\x89\x58\xc8\xcf\xd8\xcf\x4d\x94\x31\xd6\x9d\xb7\xfe\xa6\xfe\xc6\xa3\xed\x49\xe9\x58\xe6\xfa\x31\x77\xb4\xed\x66\x8b\x6f\x2a\x8f\x3f\xde\x5e\xb6\xca\xbb\x84\xe4\x4a\xda\x8a\xc3\x42\xba\x8b\x06\xcc\xcc\x3e\xd5\x6a\xc0\x7f\x08\x10\xd6\xf4\x13\x78\x3e\x6e\xf8\x3f\x42\x38\xda\xca\xad\x5c\x63\xc1\xb3\x38\xee\x2c\x8f\x72\xf8\xd6\x7b\xb8\xcc\x44\x2d\x32\x3b\x65\x46\x62\xb9\xa6\x5c\x10\xaf\x68\x4a\x93\x50\x81\x82\x30\x06\x16\x51\xa1\x8c\x60\xfc\xe3\x5b\xf2\xf7\x9c\x41\xf5\x34\x03\xbd\x28\x91\x79\x3c\xe2\x82\xeb\x62\x95\xd0\xa7\xb1\x70\xd8\x86\x63\xe6\x57\x60\x79\xcb\xd0\x56\x17\x17\xe9\xec\x6b\x1a\xad\xb8\x60\x85\xe9\x47\xc8\x0d\x1d\xd1\x94\x93\x23\xac\xa0\xf9\x7e\x9e\x0b\x9d\x07\x87\x74\x8f\x8e\xdc\x32\x9e\x8e\xc9\x99\xcb\x44\x58\x20\x81\x3d\x8a\xa8\x62\x90\x90\x2f\x30\x94\xea\x29\x59\x33\x2a\x9a\x6d\x53\x15\x1f\x24\x24\x5e\x30\x4d\xf2\x14\xac\x0b\x57\x67\xb7\x58\x5d\xc8\x99\xda\xdc\xc4\x40\xfd\x3b\x30\xe8\xf9\x8b\x3f\x8e\x9f\x8d\x9f\x8d\x9f\xef\x8d\x46\x76\x92\x86\x90\xb9\x30\x2a\xb8\x54\x02\x50\xf3\xcc\xbf\xad\x11\xac\x58\x31\x9e\x35\x86\x2f\x36\xb4\x77\x5b\xcf\xa1\x18\x19\x30\x73\x6c\xa4\x32\xae\x60\x9a\x91\xaa\x0d\x84\x0e\x0f\xcd\xcd\x3a\x3c\x7c\x7a\xec\x45\xec\x36\x68\x66\x00\xca\x02\x90\xc7\x18\xed\xf0\xfc\xe5\x77\xe3\x17\xdf\x7c\x3d\xb6\xff\x3f\xfd\x16\xb4\x3c\x7f\xae\x53\x7f\x5f\x41\x8d\x7e\x22\xa0\xc8\x1a\x54\x2d\x55\x36\xae\xb5\x3c\x44\xe7\x26\x98\x33\xeb\x29\x88\x3d\x02\xf7\xed\x1f\xff\xf8\x4d\x4b\xb1\xe0\xa6\x1b\xaa\xf3\x7d\x0a\x79\xbf\xbd\x7d\xff\x6b\x34\xfa\x02\xff\x7f\xc5\x64\x42\x93\x08\xea\xac\x14\x36\xd0\xb0\xb3\xe2\xed\xed\xfb\x6a\x95\xbe\xb2\xbd\x55\x5b\x6b\xab\xcf\xeb\x63\x25\xa8\x76\x96\xb0\x9e\x25\x0a\x3c\xdb\x99\x7d\xc3\xf3\x74\x52\x51\x4f\xba\x07\xe9\xc4\x46\xd5\x36\x95\xf2\x43\x51\xd9\xa0\x24\x5c\x6b\xd7\x24\x44\x10\xea\xaf\x0f\xa2\x00\x0a\x0f\xa0\xcd\xb7\x6f\x22\xa4\x45\xc7\x8d\x5a\x12\xbf\x9f\x6b\x0f\x18\x50\x2e\xd8\xda\x98\x0a\x10\x87\x69\x68\xa5\x3f\x8a\x5b\x84\x14\xe4\x88\x83\x4f\xcf\x29\x6b\xa5\xed\xe9\xed\xd9\xcd\xff\x7a\x7f\x79\x7d\x76\x71\x49\x34\xcd\x96\x4c\x07\x82\xbc\x3b\x4e\xa8\xd0\x55\xff\x6d\x55\x2b\x6d\xbd\x4a\x58\x84\x77\xdc\x65\xe1\x4a\xab\x38\xab\xe2\x7c\x0c\x80\x9b\x7c\x24\x98\x12\x45\xa1\x98\x12\x22\x48\x0c\x07\x5c\xe4\x2c\x5e\x9d\xdd\x5a\x7f\x04\xc4\x78\xf8\xc6\xa3\xa0\x95\x92\xad\xe8\x86\xcb\xac\xa8\x5f\x6b\x7d\xc2\x0a\x83\x97\x1a\x2b\x2b\x3c\x6e\x1d\x44\xc1\x74\xc2\x45\x8b\xd3\xa9\x0d\xde\x90\xb7\x67\x96\x7b\xcd\x96\x7d\xca\x26\xbd\xab\x3e\xef\x18\x8d\x5f\x93\x2d\xc3\x5f\x30\x4f\xc3\x0b\x43\x6e\xe6\xb9\x73\x96\x48\xb1\xc4\x4e\xd0\x13\x73\xfb\x20\xb6\x72\x64\x07\x42\x83\xe0\x49\x19\x15\x16\xb3\x34\x91\xdb\x35\x13\xba\x59\xde\x70\x89\x6f\x85\xe3\x3b\x86\xd2\x43\x2b\x79\x5f\x16\x7f\xc6\xc9\x8f\xb0\x82\x69\x69\xd1\x5c\xcb\x98\x25\xc1\x91\x51\x2e\x41\x35\x2c\x5a\x2c\x89\x95\x05\xbc\xe0\x3b\x73\x23\x61\xec\x48\xae\xd3\xdc\x36\x06\x7a\x6a\x1b\x8d\xe7\xe1\xe8\xcf\x52\x45\xfe\x1b\xea\x46\x3f\x97\xa7\xf2\xd1\xc2\x00\x45\x1b\x6f\x33\x50\x3f\x3c\xd7\x99\x14\x63\xf3\x6d\x70\xb5\x76\x29\xd8\x9b\xa8\x64\x7a\x97\xeb\x54\x6f\xf7\x15\x45\x30\xcc\x01\x7a\x83\x50\xbd\xea\xa9\x4d\x4e\x03\x2f\xf9\xa9\x3d\xf3\xad\x3d\x03\xa8\xc4\x0b\x2d\xbc\x23\x1a\x6e\x95\x64\x0b\x12\x22\x0b\xc7\x8c\x52\x57\xfa\xcf\xd5\x8a\x3e\xc6\x96\x16\x67\x9e\xf9\x3e\xa1\x5b\x96\xf5\xab\x2c\xf4\x30\xa8\x64\x72\xcd\xf4\x8a\xe5\xea\xb5\x7c\xcb\x74\xc6\xa3\xbe\xfd\x7e\x0e\xa7\x8d\xaf\x3a\xbb\x80\x22\xaf\xa5\x11\x8e\xc1\x15\xbc\xc6\x47\xc2\xe2\x5a\x92\x60\xa6\x9f\x0b\x73\x36\xb8\x54\x8e\xef\xba\xb6\x41\x76\x6d\x59\x83\xe8\x18\x29\xa0\x62\xe1\xc8\x74\x57\xf3\x10\x25\x03\x34\x14\xab\x5a\x95\x6e\xbb\x28\x5b\x7e\x0f\x73\x8c\xe2\x3c\x6a\x60\xb7\xde\x8a\xb0\xb0\xdf\x67\xf6\x53\x2c\x81\xff\x60\xd0\xd7\x00\xef\x0c\xcb\x35\xf8\xb5\xc0\xde\xea\x4d\x5c\x38\xc7\x75\xd1\x0a\xcd\x6c\xe9\xf3\x13\x75\x76\xf6\xd8\x90\x76\xd3\xb1\xc1\x1f\xa4\x2a\x74\x02\x74\x86\xbb\xba\xa3\xe5\xa3\x41\xd2\x64\x0f\xd8\x6e\xd3\x55\x71\xe6\x22\x06\x5a\x5d\xee\x8e\x7d\xde\xed\xb1\xcb\xec\xa5\xe7\xec\x6c\xce\x57\x78\x5c\xe9\x82\x47\xdf\xe0\x77\xcf\xbe\x6b\x51\xdf\x1a\x84\x9d\x72\x83\x53\xf4\x83\x3d\x18\x51\x83\xef\x97\x84\xc2\xc5\x3a\x0e\x54\xa2\xe5\x06\x7d\xe0\x19\x7b\x9d\xd3\x2c\x7e\xf0\x29\x34\x8c\x50\x9e\x43\xd1\x4e\xa9\x0d\xd7\x1e\x7a\x12\x61\x95\x10\x0f\xe7\x81\x27\x11\x1a\xd2\x1d\xce\xa3\x9f\x44\xc6\xd6\x72\xc3\x5c\xbd\x2c\xa8\xb8\xd6\xa9\xf4\x7d\xa8\x26\xd6\xda\xfe\x93\x1b\x56\x2d\x99\xe6\xfa\x39\x6d\x58\x53\x3c\xd9\x9c\x31\xbf\x08\x5b\x21\x79\x8c\x6d\xce\x2a\x6a\x74\xae\x26\x1f\x96\xd7\x28\x04\x0c\x2f\x20\xa0\xa9\x7a\x07\xc4\x35\xd1\x38\xae\x97\x72\x73\x39\x80\xae\x2d\x9c\x57\x02\xd0\x96\xf7\x62\x34\x3c\xe8\x3d\xc3\xb5\xd8\xfd\xba\xc5\x24\x5b\x5b\x7c\xd0\xce\xb0\xf7\x19\xd8\xf2\x68\xbd\x03\x09\xae\xeb\x6f\x54\x72\x62\xcc\xdf\x3b\xf1\xdb\x8d\xb5\x63\x6c\xc0\xa5\xce\x55\x19\x7f\x65\x24\x6e\x48\xea\x87\x70\xb5\x4a\xb4\xda\x5b\x2b\xc3\x0b\x29\x46\xff\x60\x59\xd0\xb0\xc4\x3d\xeb\xa3\xa7\x18\xa8\xaa\xcb\x71\x6f\x87\x75\x01\xa7\xdb\xdb\x37\xfd\x41\x74\x7b\xfb\xc6\x8f\xdf\x1b\x69\x89\xb5\x8f\x5d\xbe\x05\xe8\xa0\x48\xaa\x47\xf7\x0d\x3d\xc7\x2d\x7c\x2c\x14\xeb\xc5\x89\xf7\xdd\x86\x41\x92\x7d\x43\x47\xae\x03\x2f\x7d\x46\xc8\xbe\xd7\x0b\x64\xdf\xb0\x11\xb2\xa2\x61\x6b\xff\x43\xc3\x46\xb0\x8c\xa7\x8b\x10\x69\x57\x08\x1e\x0a\x6e\xac\x22\xd9\x0f\xca\x37\xce\x59\xeb\x57\x12\xc8\x9c\x1b\x71\xc9\x30\xee\xce\x75\x34\x0e\xe3\x7f\xd1\x84\x60\x4c\x46\xe4\x83\x35\xd8\x4d\xa6\xea\x14\xcd\x60\xc1\xfa\xbe\x98\xed\x9b\x87\x92\x4e\x49\x41\xbb\x46\x16\xa6\x93\xe9\xd9\xdb\x6a\x1c\xcd\x08\x86\x36\xdf\xc3\x59\x56\x46\x74\xaf\x3f\x08\x74\x5b\x11\xb9\x1a\x02\x5d\x00\xbc\xae\xbf\x80\xe4\xb2\x52\xe1\x08\x7b\x5c\x48\xa1\x9c\x21\x30\x6c\x1a\xb2\x06\x38\x44\x0e\x8d\xb4\xe7\xa6\x94\xe2\x81\xeb\xe4\xc2\x6b\xd9\x35\xb2\xda\x28\x74\xa0\x95\x22\x69\x2e\x38\xd1\x44\x86\xcd\x54\x10\x38\xd9\x64\x5e\xab\x56\xc1\x2f\xaa\x91\x83\xfd\x81\x6e\xd0\xe4\x74\x5d\x1d\x45\x8d\x8b\xea\xfd\x2d\x3d\xff\x5c\xd7\x46\x9a\xd8\x60\x25\x6f\xdb\xe8\xe5\xd9\x50\xac\xe3\x9e\xe6\x59\x2a\xa1\x08\x45\x6d\xa2\x20\xd9\xaa\xd8\xe6\xb8\x88\xb1\x9f\xec\xa2\x0e\x59\x55\x69\xe8\x68\xe5\xed\x3c\x58\x5b\xbf\x23\x21\x7c\x4d\x43\x06\x08\xd2\xa7\xa4\xd0\x9a\x87\x0c\x5d\x3d\x5e\x6d\xc9\x01\x1f\x99\x05\x05\xbf\x0e\x25\x1f\xb4\x25\x7e\xd7\x90\xa3\x53\x46\xaa\x1d\x7a\xff\x13\x0e\xda\x59\x9a\x0e\xbd\x62\x6d\xc7\x6c\xb4\x05\x8e\x69\x4e\x9b\x7d\xb2\x31\x42\x61\x0e\x10\x3c\xf1\x12\xad\x95\x25\x87\xe5\x6c\x87\xc7\x5e\x92\xe0\xce\x8f\x8f\x5b\x57\xa0\x19\x91\x7a\x55\xa7\x6a\x46\xa6\x1e\xaf\x77\x14\x15\x08\xa2\x54\x23\x52\x7d\x46\x3d\x01\x6b\x43\x7b\x23\x65\x3a\xc5\xce\x27\x7d\x8c\xc1\x1f\x50\xfb\xc0\x78\x34\x70\x3b\x6f\x0c\xa4\x15\x03\x53\x68\x29\xf6\x1e\xbb\x76\x2a\x6d\x9c\x2c\x91\x32\x55\x5e\xaf\x7a\x28\x65\x53\x29\xf6\x83\xf1\xdb\x58\x47\xdb\xb6\x44\x20\x90\x1b\x6f\xb6\xdb\x18\xd5\x65\x4b\xa8\x63\xa1\x97\xa2\xba\xdc\xc5\xd5\xd9\xed\xe1\x61\x5c\x4f\xff\x7f\x2f\xa0\x3e\x4e\xd9\x4b\xde\x55\xb4\x39\x08\xea\x4a\x5c\x14\xad\x7d\x14\xc3\x16\x8d\x76\x87\x76\x3b\x91\x14\x9a\x0b\xe4\x21\x73\x5b\x6c\xb4\xd2\x46\x25\x34\xea\x43\x8a\x9c\x2b\x1e\xb3\x88\x66\x67\x51\xc4\x12\xcb\xf5\xfa\xea\xb7\x37\x8d\xaf\x16\x06\x31\x6c\xf3\xb1\x06\x91\xcb\x4d\xd5\x20\x98\x15\x63\x7c\xb6\xed\x0b\x02\x4f\x7b\xd4\x73\xae\xee\xe6\x7d\xe8\x2d\x27\x4e\x13\x2a\xa4\xd8\xae\x0d\x77\xb3\xf4\xc8\xc6\xdc\x06\x5d\x79\xa8\x37\x53\x11\xbb\xa6\xbe\xd8\xe0\x0e\xcb\xbe\x1b\x9c\x43\x73\xfd\x58\x66\xcb\x31\x79\x23\x97\x8a\xdc\x63\x9f\x55\x23\xbe\xeb\x3c\x6b\xe8\xf1\x64\x83\x50\xb1\xdb\xb4\x73\xc6\x7b\x99\xf5\x50\x4f\x92\x42\xdf\x1f\xbe\xe0\x11\x15\xba\xac\x82\xb9\xc9\x13\xc1\x32\x2c\xcd\x16\xcc\x64\x5d\x51\x85\xca\x6e\xcc\x15\x34\xb7\x2b\x03\xf9\x5c\x78\xb1\x5c\x14\x19\x8a\xd0\xc6\x28\x57\x9d\x18\xf9\x20\x7d\xbf\x7a\x7e\x13\xc1\x35\xa7\x49\x53\x6d\xef\xb6\x43\xf4\x5f\xad\x76\x3c\x76\x2d\xc7\x63\xf3\x53\x58\xef\x5f\xc8\x42\x9e\x5e\xd3\x3b\x86\xbe\x77\x33\x70\x2d\x28\x75\x6f\x61\xbf\xbe\xbd\x9e\xda\x55\x7d\x6b\x56\xbf\xaa\x6c\x6b\x47\xb5\x6e\x76\x9d\xe1\x9e\x02\xda\xe2\xb7\x2f\xbf\x7e\xd0\xa6\x9a\x9a\x21\x75\x6d\xac\xb9\x8d\x12\xd6\x47\xf5\x9a\xab\x81\xa0\x6e\x34\x88\xc6\x3c\x9d\x9d\xa6\x4e\xce\x74\x83\x94\x75\xc9\xa3\x31\x21\x93\x05\x12\x96\xb2\x2c\x6a\x42\x73\x11\x06\x16\x26\x9c\x84\x5b\x45\xe1\x0d\x2f\xdd\x4f\xb6\x2e\xac\xc6\xbe\xe2\x50\x02\x72\x9e\x2f\xf6\x15\xf1\xa1\x99\x7a\x5f\xa2\xf5\xe3\x4f\x6f\xce\xae\xfa\x56\x47\x80\xe8\xff\xa6\xf8\x03\x18\xa9\x5a\x21\x00\x44\x3e\x68\xea\x80\x3f\x5a\x25\x06\x82\x4d\x77\xcb\x25\x84\x06\xad\x95\x50\xf8\x95\xea\x25\x00\x04\xfb\x14\x4c\x80\x6d\xb5\x56\x4c\xf0\x76\x8f\xa0\x09\xef\xb2\xa8\xa7\xd0\x5a\x3c\xe1\xf9\xfe\xc5\x13\xdc\x56\x7e\xec\x6c\x29\x51\x6c\xe6\xc7\x97\xad\xdb\x79\xf9\x58\xdb\xf9\xea\xbb\x07\x6e\xe7\x21\x75\xdc\xe0\xc5\x1f\xaf\x26\xfb\xbe\x57\xd8\xd5\xfb\x5e\xa8\x0f\xb5\x17\x76\x53\x49\x8a\x27\x3c\x39\x35\x04\xc6\xe2\xf2\x1c\x31\x11\xd1\x54\xe5\x89\x2b\xd3\xb8\xf9\xba\x08\xc9\x91\x48\x46\xf0\x4b\xe8\x60\x96\xd0\xa2\x44\x40\x28\x34\x8a\x7c\xb6\x74\x54\x07\x49\x0f\xd4\xaa\x03\xe5\xc7\x97\x9f\x0d\x96\x97\x01\xb0\xbc\x0c\x81\xe5\xe5\xaf\x0d\x96\x1f\xa4\xd2\x97\x22\xca\xb6\xe9\x3e\xb2\xf0\x87\xd6\xd7\x5b\xc0\x15\x94\xc5\xa4\xd2\x23\x2d\x47\xb6\xa4\x93\x1b\xcc\x83\xec\xe7\x3b\x88\x8b\xfd\x16\xf9\xa4\x57\xe1\x32\x79\x0d\xfb\xac\xbc\x56\xb3\xe2\x40\x50\x8f\x0d\xa7\x6b\x48\x46\x2a\x88\xab\x87\x37\x6e\x44\x7f\x73\xc5\x32\xc7\x0f\xa9\xc8\x14\xde\xe4\x3e\x18\x5f\x7b\xf1\xc1\x1b\x7d\xd9\xb9\xd1\xe5\x68\xf3\xf2\xf3\x36\xf9\x17\xc6\xd2\xb3\x84\x6f\xf6\x38\xc5\xe2\x95\x12\x43\xcb\x75\x4e\x8d\xdc\xaf\x34\x13\xda\x3c\x46\x1b\x1b\x24\xa6\x68\x44\xbe\x61\xba\xe6\x87\xf1\x32\xa4\x1f\xbc\xa9\x37\xb0\x02\x2e\x96\xbd\x7c\xfc\x1f\x82\xaf\x55\x85\xe4\xc4\xfd\x84\x0e\xff\xa6\xb8\xbf\xf9\xb6\x86\xa0\x95\x42\x0f\xcf\xbf\x7d\xb1\x3f\xfb\x0b\x6f\x6a\x1f\x74\xac\xbd\xd8\xb6\xb1\xd0\x9e\x5c\xbf\xea\x2a\x42\xd6\x37\xb6\x7f\xbc\x42\xb1\xb1\x3e\x52\xd7\x07\xef\xe1\xea\x06\xcc\x17\xbe\xe0\xd5\x4a\x24\xbd\x5b\xd4\x25\x78\x3d\xa0\x6a\x95\xbf\xa3\x7d\x0e\x08\x05\xb0\x96\x5d\xbd\x7c\xb4\x5d\x7d\x0e\x02\x5e\xa3\xb1\xe9\x3a\x4f\xd8\x34\xe3\x32\xe3\xba\x5b\xb7\xfe\xd0\xf2\x72\x75\xc7\xa9\xfb\xb6\xb1\x1b\x44\x49\x33\xe1\x85\x92\xe6\x38\x2b\x58\x96\x57\x09\x48\xb8\x2f\x78\xfb\x66\xad\x07\x0b\x7d\x65\x37\xa9\x94\x8b\x70\x2f\xd4\x6a\xe0\x40\xf0\xad\x5d\x06\x9e\xca\xb8\xa8\xea\xdc\x44\xf7\xad\xd5\x0e\x87\xc2\x28\x46\x08\x39\x17\x52\xa3\xa5\x0b\xa4\x73\x51\xf6\xde\xc2\xa2\x14\x36\xbe\x3c\x34\xaa\x97\xa2\xe3\xe2\x96\x21\xbc\x61\xc5\x78\xe6\x45\x0d\xf8\x35\xfb\xac\xef\x0d\xc3\x93\x83\x1e\x18\x67\xb3\x3c\x13\xdb\xd9\xc1\x71\xb9\xb3\x8c\xfd\x3d\x67\x90\xac\xbb\xb5\xa9\x7c\x7b\xc6\xea\x7f\x8a\x7b\x57\xf9\x0b\x94\xe4\xfe\xe9\x62\x5a\xb5\x0b\x1a\x6c\x51\x39\x47\xdf\x41\x8e\xfd\xe3\x9a\xda\x09\xd8\x7e\x5c\x31\x13\xdb\xdd\x4c\xc2\x07\x59\xa5\x3e\xc5\xe9\xbe\x0e\xf1\x9f\x2e\xa6\x8f\x5b\xc1\x0e\xaa\x93\x3f\xa8\x78\x9d\xf5\x76\x87\x06\x2e\x1d\xe0\xdf\x4f\x5f\x91\x35\x4d\x21\xfd\x8b\x6a\x4d\xa3\x15\xb6\x05\x05\xf7\x50\xd8\x31\xfe\xd3\x45\xb0\xa0\xc2\x6e\x89\xbb\xfd\xdd\xe2\x61\x9f\xc4\xee\xb7\x60\x09\x8d\xfd\x10\x77\xa5\x65\x46\x97\xcc\x7d\x85\x91\x11\x70\x5a\xae\x8d\x9d\x91\xe6\x9c\x5b\xe7\x8e\x8b\xf8\x94\xcc\x0e\x5c\x13\x88\x34\xc9\x33\x9a\x94\xdf\x14\x8d\x4c\xd5\x29\xf9\xdb\xcf\xe6\x1b\x08\x3b\x89\x7f\x44\xb3\xa8\xfd\x76\x26\x46\xa3\xd1\x4c\x3c\x21\xd6\x8d\xef\xaa\xff\x68\xb6\x4e\x13\xaa\x99\x3a\xb9\x8b\xe3\x51\x94\xc5\x6a\xbc\xa5\xeb\x64\x26\x68\xca\xed\x08\xa7\x84\xa6\x9c\x7d\xd2\x4c\x60\xe1\xde\xbb\x6f\xd5\x98\xcb\x93\xcd\xf3\x99\xc0\xb5\x9d\xe7\x4a\xcb\xf5\x35\x43\xba\x70\xc1\x16\x5c\x70\x2c\xe0\xe6\x72\xb3\x60\x2b\x50\xe7\xda\xa6\x5d\x59\x5d\x09\xfc\xcd\x9c\xa9\x71\x94\xc5\xe3\x1d\xe3\xf3\x4c\x18\x71\x16\xde\x5d\x66\x32\x4f\x4f\x49\xc3\x63\x38\x76\x15\x60\xaf\x61\x9e\x2b\x9c\x07\x03\xb6\xf1\x67\x23\x86\xfc\xa5\xe9\x91\x37\x45\x25\x63\x07\xe6\xe0\x7a\xed\x39\x72\x01\xc9\x4e\xa1\x87\x60\xb2\x34\x63\x70\xfa\xef\xc5\x9d\x90\xf7\xe2\x15\x67\x49\xac\xac\x46\x04\x07\x15\x49\x83\x2d\xe7\x68\x85\x37\xdf\x6c\xdc\xa1\x99\x3f\x46\x16\x64\x06\xd2\x30\x5f\xb4\x62\x6b\x5a\x5c\x6b\x99\x32\x71\x36\x9d\xfc\xf8\xd5\x4d\xf5\xfb\x46\xd7\xa0\x77\xa4\x55\x54\xae\x92\x05\x33\xa6\x35\xa9\xfb\xad\x62\xed\xd2\x58\x6c\xd7\x51\x34\x5b\xc8\x18\xec\x53\xe8\x60\x3d\x5b\xb9\x30\x9a\x32\x5e\x08\x73\x47\x33\x33\x8e\x57\x11\x75\xc3\x32\x6c\x29\xb0\x14\xfc\x1f\xc5\xe0\x45\x32\x25\xe0\xe6\x8e\xb0\x58\x58\x52\xbd\x0a\xbb\x6b\xba\xb5\x2e\x33\x92\x0b\x6f\x40\xac\xb0\x36\x26\x6f\x25\xa4\x43\x2c\xe4\x29\x59\x69\x9d\xaa\xd3\x93\x93\x25\xd7\x0e\x9b\xad\x9d\x54\x6f\x4f\x80\x95\xf2\x79\xae\x65\xa6\x4e\x62\xb6\x61\xc9\x89\xe2\xcb\x11\xcd\xa2\x15\xd7\x2c\xd2\x79\xc6\x4e\x68\xca\x47\xb0\x76\xf0\x27\xaa\xf1\x3a\x7e\x92\x59\xf4\x57\x87\x21\x32\xb1\x4b\x40\x00\x4b\xdb\x8e\xc1\xe0\x28\xe6\xd4\xe1\xcb\x36\x57\xa2\x80\xb6\x2b\x74\x7b\x7d\x79\x73\x4b\xdc\xec\xc1\x6a\x62\x08\xfc\xf2\x4d\x55\x9e\x83\x01\x1a\x17\x0b\x66\xeb\xc7\x40\xee\xa2\xf6\x1b\x72\x43\x29\x31\x88\xdb\xac\x8f\xaa\xf2\xf9\x1a\x82\x78\x90\x0d\x63\x96\xcb\x39\x48\x0f\x50\x6e\x33\x8d\xa9\x66\x31\x24\xbe\x9c\xd3\x35\x4b\xce\xa9\x62\x5f\xfc\x14\x0c\xb4\xd5\xc8\xc0\xb6\xef\x39\x54\x48\x54\xfd\xf1\x5d\x8f\x73\x41\x91\xca\x4f\x8b\x23\x9e\xa6\x69\xb2\x7d\x27\x5e\xc9\xec\x9e\x66\x9d\x52\xc6\x59\xe5\x69\x0c\x36\x81\x28\x02\x2d\x71\x24\x0c\x3a\x29\x1b\x7a\x73\xd7\x5d\x3a\xa8\xf7\x82\x44\x02\x23\xb9\x72\x25\x7b\x8a\x14\xb1\xbc\x92\xfa\xd6\x88\x31\x9d\x81\x3c\xc5\x93\xde\xaa\x0b\x51\xd4\xba\xaa\x21\x1f\xa8\x2c\x56\x03\xfb\x08\x4b\x47\xfe\xd6\x1c\xa9\x58\x1a\x7a\x90\xc9\x7c\xb9\x2a\x62\xed\x08\x78\x3b\x0e\xc1\x1b\x2d\x30\xf2\x98\x80\xd4\xc5\xc5\x32\xe8\xd6\x06\x47\x36\x55\x36\x7c\x24\x72\x4d\x7e\xd1\xe7\x72\x9b\xb9\x72\xf6\x21\x08\x13\xda\x50\xb6\x19\x4a\x76\xc4\xce\x21\x67\x64\xd1\x72\x69\xc1\x85\x61\x13\x33\x0b\x13\x2b\x82\x37\x28\xf8\xb5\xf9\xa1\x0a\x1c\x83\x7e\x71\x36\x68\x78\xce\x88\x15\x33\xf7\x3d\x5b\x6c\x4e\xde\x75\xae\xb7\x50\x5a\x3d\x06\x6f\xab\x0d\x8d\xb1\x5d\xcd\xad\xd0\x4a\x2e\x69\xb4\xc2\x0c\x72\x5b\x41\x30\x2c\x1c\xba\xb7\x71\xdf\x36\x35\x2c\xca\xb8\x66\x19\xa7\x58\x46\xdf\x4b\xa5\x87\x3e\x03\x91\x53\x41\x00\xf5\xf7\x0a\x8d\xa9\xec\x61\x76\x70\x46\x8c\x2e\x48\x4a\x83\xae\x1f\xea\x13\x5a\x4a\x50\x0e\x25\x45\xf1\x5a\xf2\xbd\xd4\x2b\x5b\x40\x50\x66\x23\xf4\x1a\x15\xae\xec\xa9\x3d\x2f\xe1\x7f\x97\xc9\xc6\x9a\x35\x20\x8d\xb2\x8c\x89\xc8\x61\xde\xc8\x6b\x5b\x25\x73\x8d\x25\xb9\x5c\x39\x25\x7c\xc4\xe8\x1a\x73\x09\x6d\x1e\xe1\x3c\x1a\x16\x2c\xe2\xa2\x0b\xbd\x07\x78\xf0\x90\xcd\x66\x02\x0f\xcf\x75\x64\xa9\x43\xa2\x21\x46\xd5\x1c\xa6\x60\x4b\x58\x9c\x15\x09\x8e\xad\xfa\xe5\x32\xeb\x67\xb3\xd9\xc1\x95\xd4\xe6\x7f\x63\x72\x96\x24\xb6\x2a\x82\x3f\x7a\x78\x64\xf3\x36\x64\x29\x03\x42\x15\x3d\xfe\xa8\xe6\x0a\x1a\x7b\x61\x2d\x32\xbb\x15\x2d\x71\xcc\x31\x39\xb3\x2d\x29\x1a\xa0\x0b\xc8\x89\xb5\x82\x0d\x82\xda\x02\x02\x76\xd3\x06\x44\xb0\x1d\xf3\x87\x17\x49\x40\x71\xf0\x66\xb8\x02\xf4\xc3\x4b\x74\x34\xa4\x5c\x62\xb8\x81\x5b\x67\x04\x17\x6d\xaa\x98\x89\x9f\xee\xde\x30\x31\x53\xda\xb6\x5d\x6c\x1c\xa5\x16\x91\x59\xbc\x50\x5c\xe8\xc0\xf1\xd9\xf8\x25\x73\x31\x9b\x86\x05\x23\x8a\x37\x3f\x31\x5c\x5a\x87\xb3\x15\x7b\x01\x83\xd8\x56\x39\xd0\xa8\xed\xc6\x5e\xbe\x96\x67\x77\xc8\xc0\x55\xfd\x65\x9b\xaf\x2e\x9d\xaf\x78\x61\xe4\xf3\xc6\x32\x1a\xe5\xa7\x00\x0c\x2d\x88\x80\x57\xef\xc0\xd6\x94\x2a\x5a\x6d\x1b\x48\xc9\x8c\x2f\x0d\x1c\x9a\x28\x80\xfb\x80\xfc\x75\x64\x50\x08\xfc\xd2\x48\xa9\xf4\x53\x2f\xc8\xd9\x5e\x11\xa8\x05\x03\x73\x87\x99\x47\x00\x64\x36\x07\x64\xce\x1c\x23\xb6\x19\xe1\x80\xc8\x3b\xb0\x69\x1f\x14\xa9\x24\xaa\xf4\x05\x08\x28\x34\x67\x5c\x40\x85\x0d\x57\x5f\x92\xae\x99\x2d\x8b\xa1\x1b\xcc\x3b\xe5\x07\x4a\x60\x85\xe2\xba\x5d\xac\x9c\x27\x40\xcc\x7d\x0a\xdc\x01\x54\xb7\x6d\x07\x2f\x5f\x00\x41\x3a\xf8\x4a\x66\xa4\xa2\x06\x1e\x37\xf2\x00\xf7\xc1\xbe\x8a\x01\x94\x5a\xdb\x12\x5e\x2e\x4f\xcf\x47\xb6\x84\xaf\x79\xe7\x81\x81\xd1\x2d\xc1\xc8\xbf\x46\x98\x70\x0f\xbe\xc5\x09\x77\x9c\x19\x5e\xe4\xca\x3e\x1b\xb7\x7f\x88\x1a\xed\xd1\xd3\x60\xaf\x9c\xf2\xf3\xeb\x00\xa0\xa2\xa8\xdf\x18\xbe\x9d\x11\x74\x64\x22\x3c\x60\x1b\xed\x83\x9a\x3d\x06\xf4\xfd\x63\x88\xa0\x69\x3f\xcb\x8e\xd5\xfa\x5b\xf4\x0a\xb8\x85\x3a\xe4\x44\x99\x54\x20\xf3\xf5\xbd\xb2\x0d\x8c\xa3\x98\xbb\x93\x01\x10\xac\xa3\xd0\x46\x53\xeb\x95\x29\x98\x6d\x9d\x1d\x24\x8c\x46\xd1\xd4\x19\x8f\xb0\x3f\x4d\xfb\x36\x1c\x0b\x2c\x4a\xdb\x6d\xbd\x66\x04\x75\xba\x58\x90\xbe\x0e\x68\x57\xe9\xa2\xdf\x53\x12\xea\x9b\x88\xa2\x36\x36\x96\xe5\x53\xf9\xdc\x6c\xbf\x91\xeb\x90\x56\x39\xd2\x9b\xb7\x17\xa4\x5b\x43\x91\xcb\x8f\x90\xfa\x6a\xbf\x33\xc1\x17\x8a\xa2\x14\x55\xf1\xcb\xed\xd8\x3c\xd2\xc1\x5e\xcc\x39\xfe\xe6\x60\xd1\xd4\xe7\xbd\xfc\xd4\x81\x51\xf4\x77\x6f\x81\xc6\xb4\x29\x59\xaf\xfc\x20\x38\xc8\x0d\xf4\xb0\x04\x2c\x55\x72\x5d\xb6\x3b\x57\x98\x79\x69\x3b\x88\x43\x21\xe5\x6d\x73\xff\xf8\xf2\x53\x6b\x46\xab\xab\x95\xdc\x8b\x5e\xd6\x28\x51\x59\x42\x6e\x14\x94\x4e\xaa\x08\x3c\xcc\x3a\x43\x6e\xcf\xa7\xb3\x03\x6c\x01\xfc\xfe\x62\xda\xd0\x72\xd6\x7d\xfa\x9c\x6a\x73\x15\xd2\xf2\xd3\xa3\x1e\xe9\xee\xc3\xdd\x88\xd2\x5d\xa3\xb4\xfc\xec\x5f\xad\xb4\xfc\xf4\x45\xc8\xfd\x85\xcb\xab\xf2\xa5\x0e\xb4\xec\x27\x5f\x59\xcc\x04\x1f\x6b\x31\x30\x52\x61\xf4\x32\xcd\x75\xc2\x34\x2f\xea\x92\xe2\x5c\xed\x63\x16\xd2\x52\x2b\xaa\xf4\x3b\xb3\x74\xbf\x2b\x3b\x3b\x28\x6e\x6c\x17\x5b\xe9\x66\xb6\x3d\xd8\x0a\x78\x97\x5c\x19\xac\x23\x4f\x09\x09\x94\x8a\xaa\x6f\xcb\x2b\xef\xca\x14\xb1\x95\xf9\xfd\x6a\xc1\x27\xce\xa0\x7c\x5b\x54\xdc\x6e\x1f\x95\xfb\xea\xbb\xbd\x3a\xe0\xc3\x42\x28\x2b\x07\x01\x6b\x9d\x6d\x49\x38\x2a\x3f\xae\x3c\x14\x0a\x70\x7d\x29\x58\x27\x05\xb0\x35\xa7\xf6\xa1\x60\x1d\x7b\x2f\xc9\x5b\x8d\x82\xcd\x90\x86\xcd\x2c\x15\x9b\x21\x1d\x9b\x19\x4a\xd6\x2a\xf3\x0c\xb4\x0c\x3e\xbd\x68\x99\x7a\x80\x96\xdc\xad\x1c\xb7\x5a\xfa\xca\x4f\x50\x39\x26\x47\x8a\x31\x67\x22\x03\x52\x86\xfd\x88\xd4\x56\x68\xfa\x29\x1c\x3a\x59\x7e\x66\xb3\x56\xdd\xda\xca\x90\x4d\xba\x73\xfb\xd8\xce\x32\xe6\xa9\xd6\x32\xdb\x55\x99\xcd\x75\xbb\x92\x1a\xfd\xda\xa7\x0d\x0d\x98\x3c\x20\xd8\x9c\x45\xe7\xce\xea\xe0\x0a\x08\x1e\x8f\x9b\xb4\x8f\x3e\x67\x89\xbc\x7f\x7a\x5c\x5d\xb2\x07\x6c\x84\x2a\xe1\x5a\xb1\xa4\x28\x17\xdf\x01\x07\x34\x86\x49\x6c\xf4\xcc\x88\xbe\x97\x80\x6b\x90\xf3\xea\x7e\x43\x02\x61\x98\xd0\xb6\xec\x01\xd5\x71\x76\xef\x84\xdb\xbd\xb2\xeb\x2d\xcd\xaf\xcc\xd3\x92\x6c\x3f\x4f\x30\x2d\xd8\xe7\xbb\x79\xc2\xfd\x4a\x26\xf6\x90\x4e\xe1\x88\x66\xb3\x92\x21\xff\x19\xa8\xcb\x1f\x56\x54\x1d\xad\xb7\x1f\x13\x3a\x67\xc9\x53\xa0\x3b\x96\xc8\x77\x5d\x67\x2f\xd1\xce\xec\x1b\x90\x0c\xd7\x87\xa1\x09\x23\x1b\x7c\x93\xb0\xd8\xcc\xdb\x13\xdf\xfc\xc4\x3d\x57\xb6\x9c\xc0\xe2\x60\xb9\x6e\xa5\x68\x44\xb5\x5b\xea\x8d\x18\xb8\xe5\xc6\x1d\xef\x6e\xca\xac\xa2\xa9\x00\x7a\xf9\x69\xdf\x6f\xb1\xa5\xae\xed\x74\x5d\x72\x01\x98\xc7\x16\x0b\x16\xd9\x02\x48\xd6\x94\x90\x00\x69\xb5\xb5\x4c\x20\x54\xa2\xd8\x49\xf7\xe2\x85\x14\x23\x97\xac\x8b\x9e\x5a\x2c\x4a\x60\xed\x22\x90\x46\xef\x1b\x29\x20\x1f\x0e\x47\xef\x61\xb4\xdb\x05\x4d\xd9\x1a\xfa\x31\x94\x78\x9b\x3c\x7a\x16\x45\x32\x17\xfb\xc8\x5e\x37\xd5\x17\x7f\x35\x19\xac\x46\x96\xdb\xc7\x0c\x98\x3c\x29\x49\x65\x5c\xd4\x50\x06\x81\xae\x20\xd1\x16\x18\x1d\xa4\x17\x77\xdc\x8a\x6d\xbd\x8c\xce\x84\x54\xe3\x4b\x9a\x3f\x55\x9d\x00\x9a\x05\x7c\x36\xb8\xc9\x43\x40\xde\x3d\x64\x93\xa5\x39\x00\xf6\x5e\xd0\x26\x25\xc4\x0d\x35\x56\x36\xf8\x9c\x17\xa6\x4a\x23\x00\x77\xdc\xfc\x7e\xc2\x1d\xd9\xc3\x04\x41\xfa\x4a\x4a\xa4\xaf\xb4\x44\x76\xef\x57\xa7\xbc\xf4\x3f\xf7\xa4\x2b\xba\x52\x69\x75\x43\xba\xef\xe0\x39\x26\x93\x0e\xcd\xc3\x7c\x4a\x37\x04\x78\x17\x6e\x7c\xaf\x42\xa9\x8b\x68\xdb\x0c\xb1\xd1\x1f\x5f\xfd\x9c\x5d\x5d\x1c\x06\x7d\xe3\xd5\xcf\x7e\x16\xad\xa6\x32\x04\xee\xe3\xea\x76\xee\x27\x75\xe3\x3b\x9f\x2d\x75\xe3\x9b\xe8\x20\x2e\xe8\xa5\xd7\xce\xdc\x4d\x04\x7d\x98\x0a\xb8\x06\xa3\x25\xbc\x41\x3b\x85\xee\x3a\x7a\xf5\x95\xba\x03\xee\x2c\x07\xbf\x23\xf5\xb4\x2e\x7e\xdb\x56\xea\xa2\xcd\xeb\x48\xc0\x56\x76\x02\xab\x82\x32\xb1\x6e\x25\x87\x8a\x60\x7a\x34\x68\xcc\x0e\xde\x51\x11\xb0\x54\x00\xa3\x0b\x16\x55\xcf\x96\xb9\x39\x0e\x59\x8f\x7d\xd1\xfd\x78\xd7\xa3\xd0\x01\xe6\x2b\x66\xc4\x5f\x67\xec\x95\x59\x9d\x77\xe3\xd2\xa7\x36\xe1\x3f\x2e\x2c\xa1\x1d\xde\x4a\x83\x4f\xe6\x00\xfd\x3d\xa2\xdd\xa8\x80\x82\x14\x2e\x90\xc0\x06\x76\xb4\x8b\x2c\x7b\xb1\xcd\xfd\xb9\x66\x28\x8b\x09\x5c\xf2\x25\x1e\x77\x5f\x7d\xbb\x37\xcf\x07\xff\x48\x44\xc0\xf3\xcf\x3c\x40\x20\x30\xaf\x05\xf6\x87\xdf\x37\xf7\xb1\xa8\x7e\x90\xca\xda\x1d\xc2\x4d\x4e\xd8\x42\xa3\x1f\xab\x0c\x61\xc2\xdb\xd3\xc3\x48\x43\xfc\x8b\x58\x44\x1c\x1d\xaa\x72\x65\xbf\x2a\x05\xed\x7e\x66\xa5\x75\xda\x2f\x9e\xe1\x87\xdb\xdb\x69\xe9\xaf\x6f\x0c\x62\x30\x58\x62\x1e\x6d\x5e\xba\x8b\x72\xfc\xbc\xf8\x85\x35\xd3\x2b\x19\xef\xc1\x19\xde\xe2\x0b\x8f\x2b\xb5\xe3\x96\x91\xa8\xe3\xbe\xbd\x20\x4e\x33\x26\x76\x13\x35\xf8\xd8\x3d\x28\x64\x75\xc5\x38\x8a\x5b\xed\x11\x1b\x2f\xc7\xe4\xf5\xe5\xed\x31\x99\xbe\xbf\x3d\x26\x4c\x47\xe3\xa7\xe4\x6d\x9e\x68\x9e\x76\xf9\x39\x2c\x88\x80\xef\xbf\xbb\x3e\x34\x6a\xd8\x12\xe2\x08\x7f\x5b\x7e\xab\x94\xea\xd5\x1e\xe7\x78\x38\x35\xcf\x7f\x89\x63\xec\x3a\xc1\x6e\x8a\xe2\x9f\x20\x2c\x73\x5c\x1c\x15\x6e\xd3\x9d\x45\xdf\xc3\x20\x84\x8d\x97\xa7\x64\x44\xd8\x27\x1a\xe9\x53\x72\xb2\x90\x92\x8c\x6c\x90\xd8\x29\x39\x99\xd3\x8c\x5c\xbd\xbb\xbd\x3c\xc5\x00\x34\x26\x74\xb6\x25\xeb\x2e\xf1\xfc\xdd\xd5\x9b\xbf\x5a\xca\xb9\x25\x8c\x63\x4b\x53\x32\x3b\x80\x49\xd0\x8a\x6c\xfe\xc4\x59\x9c\xad\x63\xdc\xd4\x76\xad\xfc\x6c\x68\xc2\x63\x5a\x18\xfb\xb0\x21\xab\x11\x9f\xb8\x0e\x15\xfb\x2b\x3f\x7d\x70\xae\x8a\x04\x06\xc4\xd0\x66\xad\xd2\xe0\x03\x00\xef\x9a\xad\xf5\xe3\x55\x13\x0d\x91\xdb\x73\xe6\x00\x61\xed\x88\x0b\x99\xad\x4f\x1d\xd8\x67\xf9\xb3\x67\x5f\x45\x66\x60\xf8\x17\x3b\x75\xa5\x59\xfb\x98\xbd\x10\xd5\x60\x55\x30\x9c\x21\x18\x59\x71\x84\xe5\xd0\x23\x0b\xef\xcf\x9a\x01\xc7\xe8\x08\x35\xe9\x2d\x74\x10\x0b\x80\xc7\x55\x23\xd3\xa6\xd6\x00\x0f\x1f\xb4\x9f\x3a\xd1\x8b\x20\x75\x0f\xc5\xa3\x75\x4f\x9e\x39\x39\x7f\x3b\xed\x1b\x01\x02\xc4\xa8\x79\xed\x3e\x95\xa2\x0e\xeb\x23\x58\xad\xad\x4e\x13\x03\x8d\x82\x29\x8b\xa6\x9a\xe0\x59\x6b\xd1\xaf\xbc\x26\xc7\x15\x99\x96\x2f\xaa\xfe\x29\x5c\x34\xf7\xca\x9e\x99\x79\xda\x44\x5b\xf0\xa7\x9b\x87\x36\x2f\x5b\xec\x94\xbd\x30\xd1\x6c\x6d\x0f\x3e\x0f\x92\x89\x14\x3e\x94\x00\x28\x11\x34\xb9\xd8\x47\x59\x83\x72\xf1\x06\xc0\x98\x2f\x02\x21\xaa\x50\xc6\xd9\x87\x55\x99\x8b\x49\x89\x66\xd1\x4a\xf0\x88\x76\x44\x25\x81\x59\x14\xcd\xff\x7c\x9d\x4a\x55\x06\xd2\x61\x9b\xdf\x43\x55\xf6\xe8\x59\xf0\x8c\xdd\xd3\x24\xdc\x6d\xa4\xfc\x20\xb5\xb0\x46\x59\xec\xf4\x23\x09\x13\x0b\x89\x99\x2c\x36\x44\xaf\xfb\x6a\x74\xfa\xf0\xe0\xb1\xcf\x3f\x0c\x33\xcc\x98\xf8\x35\xcd\xba\x5c\x60\x45\xeb\xb6\x6f\x31\xca\x1b\x76\x08\x63\x5d\x46\x2b\x49\xae\x6d\x0a\xeb\x11\x1f\xb3\x31\x49\xb9\x58\xaa\x76\x1f\x58\xaf\xfd\xf6\x20\x06\x69\x38\x11\xac\x01\x20\x93\xa9\x4b\x08\xfb\xec\xc0\xb0\x8a\x71\x0b\xe5\x71\x1f\xca\x53\xe7\x19\x6b\x84\x42\x9f\xca\x95\xe1\x94\x9e\x86\xcd\xb9\x3e\x6c\x5e\x58\x6f\x59\x68\xd4\x2b\x43\x5c\x74\xd9\x6e\xdf\xdc\x67\x11\x8d\x32\xf7\xba\x9d\xc9\x95\x2b\x9c\xf6\xe5\x8a\x7d\xd9\x52\x35\x23\xa9\x5c\x8f\x4d\x45\x43\xaf\xdd\x1d\xb3\xc9\xf3\x24\xa5\x3c\x6b\x6e\x3d\x58\x7e\x8c\xca\x6a\x7b\xe3\xfb\x30\xa5\x73\x99\xeb\x1e\x8c\xe4\xb1\x34\x47\x21\xb5\xb9\x7d\xfd\x30\xe3\x0a\x1f\xee\x88\xe8\x81\x47\xda\x23\xeb\x06\x86\x31\x30\x8c\xff\x6c\x86\x21\xa4\x76\x62\x55\x23\x58\xda\xa3\x6e\x7a\xc6\xdb\xf4\x8b\xb4\xd9\x09\x08\x75\x22\x5f\x47\x4c\xa8\x7d\xac\x19\x60\x1d\xf7\xb8\x47\x68\xcf\xc3\x82\x7a\xd2\xdf\x2a\x70\x67\x07\x3e\x6c\x1f\x91\xf7\xef\x38\xb6\xc0\xc2\xeb\x4b\x02\x0e\x26\x63\xc0\x7a\x9e\xb5\x59\xe6\x6d\x74\xae\x3d\xe7\x4b\x48\x35\xba\x86\x4c\x39\x97\xf5\x85\x66\xf3\xa3\x39\x8b\x68\xae\x6c\x4c\x5c\x87\x2b\xa1\x58\x62\xc4\x32\x18\xa3\x88\xab\x7b\x8a\xa6\x78\xd7\xc8\xa3\x12\x25\xd8\xc5\x62\x31\x7c\xf0\xd4\x8f\x80\x3b\xf6\xe3\xdf\xf0\x0f\xd0\x54\x2a\x7f\x6d\x5e\x96\x7f\xdf\x9c\xdf\xe2\xaf\xcd\xd3\xd8\x11\xdf\x70\xcd\x5c\x90\x1d\xf4\x51\x05\x04\x71\x4e\x59\xec\x35\xf9\x7c\xf4\xe2\x9b\x6f\x5a\x4c\xfe\x5f\x0e\xed\x55\x53\x4f\x09\xfc\x54\x1d\xad\x45\x4f\x89\x1e\x59\x69\x0d\xed\x7a\xfd\x59\x87\x84\xb4\x21\x21\xad\x87\xdb\x73\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\xad\x69\xc7\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x4d\x3b\x19\x68\xd9\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x86\x9f\x21\x21\x6d\x48\x48\xab\x7f\x86\x84\xb4\x21\x21\xad\xf8\x0c\x09\x69\x43\x42\xda\x90\x90\x16\x1c\x74\x48\x48\xf3\x60\x31\x24\xa4\x0d\x09\x69\x43\x42\x5a\xf5\xf3\x6b\x26\xa4\x75\x34\x3b\xc7\x2a\xbe\xa1\xdf\x1e\xdc\xd6\xdc\xde\x8d\x07\x94\xef\xae\xde\xaa\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\x0e\x2f\x6f\xa8\xdf\x3d\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\xe5\x67\x08\x97\x2a\x3f\x43\xb8\xd4\x10\x2e\xf5\x9b\x0a\x31\x18\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x0a\x3e\xfc\x1f\x46\xcb\x86\x70\xa9\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x0a\x7c\x86\x70\xa9\x21\x5c\xaa\xf8\x0c\xe1\x52\x43\xb8\xd4\x10\x2e\x15\x1c\x74\x08\x97\xf2\x60\x31\x84\x4b\x0d\xe1\x52\x43\xb8\x54\xf5\x33\xd4\xef\x1e\xea\x77\x0f\xf5\xbb\x2b\x9f\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\xdd\x6b\x86\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\x3d\x94\x63\x1d\xca\xb1\x0e\xf5\xbb\x87\xfa\xdd\x43\xfd\xee\xe6\xf5\x0f\xf5\xbb\x07\x86\x31\x30\x8c\xa1\x7e\xf7\x50\xbf\xbb\xf2\x19\xea\x77\x0f\xf5\xbb\x6b\x9f\xa1\x7e\x77\xb3\x02\x39\xd4\xef\x1e\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\xcd\xff\x0c\x09\x69\x43\x42\xda\x6f\x2a\x89\x63\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x2d\xf8\xf0\x7f\x18\x2d\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x2d\xf0\x19\x12\xd2\x86\x84\xb4\xe2\x33\x24\xa4\x0d\x09\x69\x43\x42\x5a\x70\xd0\x21\x21\xcd\x83\xc5\x90\x90\x36\x24\xa4\x0d\x09\x69\xd5\xcf\xff\xec\xfa\xdd\x7d\xc2\x0e\xc2\x47\xdd\x2e\x1d\x2c\x30\x4a\xa4\xd4\xd8\x43\xab\xce\x15\xea\x22\x48\x1f\x2d\xdb\xc6\x22\xd8\x52\x54\x7c\x85\x0d\x5b\x0a\x9f\x0a\x14\x1a\xef\xda\xc7\x3b\xf3\x50\x0b\x4f\xaa\x22\xb2\xc4\xa7\x83\xbb\xc0\x50\x42\xac\x05\x0d\xc6\x1f\x33\x28\x78\x4b\xe3\x31\xda\x83\x0a\x6b\xf6\x8a\x2f\x8d\x72\x3d\x3b\x80\xf1\x66\x07\x20\x02\xd8\x67\x43\x43\xd3\x85\x51\x0a\x35\x08\x9d\x30\x40\x22\xef\x59\x86\xab\xc1\xd0\x4c\x6f\x71\x8a\xc8\x35\xd7\xda\xf0\x12\xee\xb2\x7a\x42\x83\x46\x52\x28\x8e\xa5\xd8\xd1\x6e\x39\x3b\xe0\x62\xc1\x05\xd7\x6c\x76\x40\x46\x04\x02\x02\xbd\xed\x38\x4e\x65\xd7\x49\x12\xaa\xf4\x98\x14\x3b\x0b\x82\xc4\xac\x95\xc7\x4c\x68\x1e\xd1\xc4\x2e\xb0\x3e\x0e\x17\x84\x26\xe9\x8a\x8a\x7c\xcd\x32\xef\x39\x40\x80\xd0\xa8\x96\x3f\x59\x13\x1b\x46\xbd\x04\x75\x6e\x44\x0e\x91\xaf\xe7\xbb\xd6\xcf\x34\x63\x17\x57\x67\xb7\x5d\xe8\x31\xc5\xc7\x08\x17\x31\x8f\xd0\xb2\x53\x64\xa0\xac\x5c\x79\xf5\x2a\x55\x21\x73\xb6\x90\x61\xd1\x8d\x8a\x2d\x31\xc3\x35\xae\x75\x2e\x65\xc2\x76\x03\x33\x5a\xe4\xf6\x9a\x94\x75\xeb\xdb\xc9\x10\xab\x3d\x6b\x99\xbb\x68\x29\x8f\xee\xf0\x3f\x32\x0f\x12\x20\xb3\xb7\x9a\xd5\xc3\xc3\x04\x9b\x2f\xe3\x9d\xa1\x96\x4e\xe8\x68\xb6\xdd\x94\xeb\x30\xb2\x5b\x92\xc8\x7b\x84\x1a\x9a\xf0\x0a\xa3\x16\x4a\xd6\x7f\x46\xfb\x0e\x5e\xec\x8f\x09\xd7\x2c\xa3\x60\x5a\x09\x8d\x3c\x9b\x91\x11\xe6\x8b\x19\xac\x5e\xa7\x34\xe3\x4a\x8a\x63\x02\x49\xa3\xce\x2e\xe3\x86\x5c\x48\x49\xe6\x34\x03\x63\x51\x31\xdd\x1f\xf6\x9c\xae\x9c\xcf\x88\x56\xec\xef\x39\x4d\xfe\x84\x21\xce\x4e\x55\xe0\x0b\xab\x23\x70\x05\xcf\x38\xd7\x47\x31\x65\x98\x88\xfc\x02\xeb\xa0\x65\x60\xde\xbc\xfc\x67\x84\xff\x1c\x8f\xc7\xe4\x5f\xde\x0a\x74\x96\x33\x97\xa9\x54\x04\xfb\xe2\x1c\x3f\x91\x70\x72\x81\xf5\xf9\x74\x4c\x55\xae\xd5\x6c\x80\x8b\x1e\x8b\x0b\x4d\xb6\xe7\x7a\x61\xb2\xb6\x05\x86\x8f\xc4\x5b\xf3\x8a\xaa\x23\x18\xef\xa3\x61\x1d\x4f\xcb\xa9\x6f\x8b\x99\xa9\x2e\x4f\xc7\x3b\x99\x3f\x00\x92\x06\x99\xae\x1d\xa2\xb0\x0f\xcb\x05\x3c\x0b\xe6\x41\xf8\x7f\xfe\xec\xd9\x8b\x97\xf8\x5f\xfc\xa5\x78\xe7\x66\x25\x33\x3d\x8a\x78\x16\xe5\x5c\x83\x58\x6b\x5f\x0a\x4d\xf4\xcf\x7f\xb6\xbe\x0d\x8e\x24\x7d\x84\xcf\x3c\x2d\x1e\x4a\x69\xc6\xac\x4a\xb4\xcc\x64\x9e\x1a\x95\x68\x36\xd3\x34\x49\x8e\x82\x0e\x41\xdb\x53\x00\xc3\x82\x0a\x7a\xe1\x46\x73\x38\x4c\x93\xc4\xb3\xf1\xc1\x05\x7d\x83\xf8\x80\x4a\x6c\x03\x91\x33\x57\x1b\xe9\x8c\x0b\x95\xf5\xe9\xbb\x3a\x26\xa3\x63\xf2\x11\xe0\x70\x32\x26\x37\x70\xe5\x88\xbd\x72\x8d\x83\xae\x65\xc6\x48\x6a\xf4\x2f\xa5\xf8\x86\x91\x39\x26\x79\x6c\x9d\x7d\xd9\x5a\xfe\x09\x53\x11\x4d\x19\x89\x56\x34\xa3\x91\x66\x99\x5d\xf6\x25\xc6\xca\x07\x2f\xc3\x11\x70\xa9\x35\x8d\xd9\x28\x4f\x11\x2d\xd4\xd3\x82\x1c\x41\x66\xa1\x25\x1d\xf7\x6c\x6e\x34\x37\x66\x89\x87\x7f\xe2\x31\x4b\x13\xb9\x5d\x33\x11\x24\xa7\xf6\xfd\x34\x93\xb1\x43\x52\x18\xd7\xdc\x29\xa0\x49\x99\x14\x9a\x89\xd8\x43\x75\x1a\xdd\xd9\x2f\xfe\x65\x1e\x2f\xc7\x27\x7f\xf8\x73\xd3\x0d\x88\xd9\xc6\x0d\xff\x07\x52\xbb\x05\x21\x52\xd6\x26\x3c\x55\xad\xb1\x7d\xa5\xc2\x9b\xe0\x5b\x5f\x4c\x34\xb4\x8b\x74\xc6\x9a\x7d\x05\x44\xf0\xfa\xf4\xe0\xa9\xe0\x1c\x2a\x25\x80\xfb\x15\x64\xac\x57\x78\xbe\x17\x16\x67\xd5\xcc\x20\x9d\x32\xf7\x4e\xda\x0e\x2a\xc7\xf6\xaf\xb9\xd4\xab\x31\xc1\x48\x55\xe0\x26\x9f\x52\x23\x51\xe9\x64\xeb\x29\xb3\x47\xd0\xfd\x25\x18\x82\xec\xd1\x51\x41\xa2\x8c\xd9\x04\x19\x65\x6f\xb7\xcc\x88\xe0\xc9\xd3\x63\x97\xe4\x12\xb3\x05\xcd\x13\xad\x08\x6e\xcb\x80\x2e\x8b\x1b\x74\x1a\x2d\xc9\xbd\xa1\x95\x13\xab\x39\x9b\x45\x5c\x7a\x4a\x34\xc8\xad\x8e\x7e\x16\x8d\x50\x30\xec\xb2\x29\x4f\xde\xce\x4f\xb8\xc2\x3b\x36\x22\x7f\xb3\xa2\x9c\x59\x90\x9b\xe9\xe7\x63\xcb\x22\x8c\x60\x0c\xde\x9b\xca\xc4\xc1\x7b\xcc\x45\x94\xe4\xb1\x73\x70\x46\xd4\x08\xcb\x30\x40\x39\x0c\x41\x26\x2d\x64\xb1\x25\x18\xee\x69\x53\x74\x65\x75\x71\x97\xe1\xb5\x55\x20\x62\x08\x53\x39\x7c\x50\xb9\x83\xe7\x1a\xb7\x7e\xdc\x39\x61\x68\x50\xb0\x2d\x36\x1d\x13\xd2\xc0\x0f\xd6\xb0\xe8\xa9\x27\x19\xa3\xe6\x36\x45\x77\x84\x2e\x29\x17\x41\x94\x45\x34\x41\x87\x54\x72\x4f\xb7\x6a\x27\x3f\x01\xa3\x45\x8e\x89\x60\x1b\x96\x55\xb0\x2e\x68\x64\xe9\xd9\x65\xa9\x84\x02\x61\xc0\x3a\x0a\xbf\x6a\x2a\x95\xe2\xf3\xc4\x4d\x5c\x86\xc3\x99\x17\x6e\x52\x16\x85\xd5\x6e\xdc\x48\x73\x80\x60\xbb\x82\xdf\xa8\x3b\x87\x55\xee\xdd\x6f\x81\x73\xc4\x7e\xd8\x83\xd2\x32\xa3\x4b\xe6\xbe\x52\x9a\xea\x1c\x01\x83\x9e\x3f\x16\x5f\x79\x3e\x99\x3b\x2e\x62\x43\x8d\x1c\x48\xd3\x24\xcf\x68\x52\x7e\x13\x49\x81\x8e\x78\x75\x4a\xfe\xf6\xb3\xf9\xc6\x8c\xcf\x62\x9b\x68\x6b\xbf\x9d\x89\xd1\x68\x54\xfc\xef\x89\xcd\x81\x38\x25\x11\x10\x87\x13\xcd\xd6\x29\xb4\xb3\x3a\xb9\x8b\xe3\x51\x94\xc5\x6a\xbc\xa5\xeb\x64\x26\x68\xca\x5d\x82\x2f\xa1\x29\x67\x9f\x34\x13\x30\xec\xf8\xee\x5b\x35\xe6\xf2\x64\xf3\x7c\x26\x70\x89\xe7\xb9\xd2\x72\x7d\xcd\xd0\x05\x79\xc1\x40\xa5\x04\xf2\x5e\x49\xa3\x05\xc3\x19\xc1\x20\x6c\x81\x01\xcb\x8a\x69\x35\x8e\xb2\x78\x9c\x66\xd2\x00\x0e\x17\x35\x96\xd9\x72\x26\x0c\x29\x84\xf7\x40\xbe\x39\x25\x0d\x8f\x55\xfd\x58\xb8\xa0\x7a\x6c\x35\xfe\x96\x70\xa5\xff\x12\xfc\xfd\x0d\x57\xba\x0a\xe3\x9d\x55\xda\x03\xe4\x62\x99\x27\x34\xdb\x7d\xc0\xfc\x0e\x74\x31\xdb\xb0\xf7\xe2\x4e\xc8\x7b\xf1\xca\x20\x9e\x3a\x25\x0b\x9a\x28\x40\x00\x15\x49\x83\x23\xe7\x49\xae\x34\xea\xa7\x1b\x77\x54\xe6\x8f\x91\x85\x90\x01\x2c\x4c\x16\xad\xd8\xba\xcc\x40\x96\x29\x13\x67\xd3\xc9\x8f\x5f\xdd\x54\xbf\xaf\xdd\xa2\x9d\xb8\xf2\x4a\x66\x07\xc4\x27\xd0\x6c\xce\x75\x46\xb3\x2d\x99\x4c\x89\xca\xe7\x23\xb7\x8d\x93\xf3\xc9\xc5\x75\x85\x84\xa1\x45\x64\x65\x88\x1e\xca\x49\xa0\x0d\x83\x2a\x87\x54\x4d\x4b\x4c\x32\xb4\xc1\x20\x6b\xb2\xe1\xd4\x0b\xcb\xc3\x80\x0b\x7c\xd5\x1f\x57\x2e\x76\x17\xea\x7c\xf6\x85\xf9\xc7\xbf\xb5\x0d\xe6\x59\x0f\x4b\xab\x97\xb4\x5a\x35\xc5\xc0\xcd\x46\xa7\x60\x36\x07\xd2\x15\x0b\x7e\x16\x5b\x58\x23\x61\x01\x32\x69\x79\x1c\x0d\xd9\xdd\x0c\x08\x85\xbd\xea\x63\x90\x80\x58\xa6\x9c\x8e\x1c\x49\xb1\x61\x99\x26\x19\x8b\xe4\x52\xf0\x7f\x14\x83\x2b\x17\x2f\x03\xd7\x6d\x47\x6a\xe4\x42\xb3\xcc\xc8\x4a\x40\xe3\xd0\x2b\xb0\xa6\x5b\x92\x31\x33\x0d\xc9\x85\x37\xa0\x8b\xd6\x7b\x6b\x64\x64\x2e\x16\xf2\x14\xea\x59\xa9\xd3\x93\x93\x25\xd7\xee\x82\x46\x72\xbd\xce\x05\xd7\xdb\x13\xf0\xe0\xf3\x79\x6e\x8e\xe4\x24\x66\x1b\x96\x9c\x28\xbe\x1c\xd1\x2c\x5a\x71\xcd\x22\x9d\x67\xec\x84\xa6\x7c\x04\x6b\x17\x40\x52\xc6\xeb\xf8\x49\x66\x6f\xb4\x3a\x0c\x11\xc0\x5d\xba\x09\x97\xaf\xed\x18\xcc\xed\xb3\x49\xe0\xa8\x04\xa0\x14\x53\x40\xdb\x71\xf2\xeb\xcb\x9b\x5b\xe2\x66\x0f\x26\xcc\x23\xf0\xcb\x37\x55\x79\x0e\x06\x68\x5c\x2c\x9c\xb8\x06\x4e\x13\xdf\xba\x81\xb2\x42\xc2\x03\x92\xbb\xca\xe7\x6b\xae\x95\x57\x08\x49\x8e\xc9\x79\xe1\x4d\xc9\xd3\x98\x6a\x16\x8f\xc9\x44\x90\x73\xba\x66\xc9\x39\x55\xec\x8b\x9f\x02\xc8\xac\x23\x03\xdb\xbe\xe7\xd0\x50\xbc\xa0\xc9\x54\x5c\x10\xda\x86\x63\xab\x5f\x54\xc3\x70\xab\x39\x74\x2e\xe5\xb2\x2c\x72\x40\x49\x9d\xfa\x96\x1f\x77\xb0\x35\x9e\xdc\xe2\x80\x69\xc8\xf6\xd8\x69\x34\xe9\x02\x52\x27\x53\xe2\x48\x1a\x52\xb0\x39\x4b\xa4\xc1\x2d\x69\x0d\x50\x2c\xe4\xb6\x6f\x16\x53\x7e\x4f\x82\xc2\xbf\x5f\x42\x58\x49\x55\x06\x60\x7d\x01\xe9\xc0\xcf\xb2\xaa\x4b\x06\xfe\x6f\xbb\x52\x41\x65\x65\x75\x89\xc0\xff\xf1\xdf\x29\x0d\x0c\x9c\x72\xe0\x94\xfe\x11\x0c\x9c\xf2\x57\xe3\x94\x3e\xf5\xe8\xc7\x25\x77\x69\x51\xf9\xd9\x9f\x4f\xb2\x4f\x29\x84\x9b\x4c\xa6\x7d\x8c\x5c\xe6\xa4\xed\x0b\xd5\xa4\xc3\xa3\xc9\x74\xf3\x35\x5c\xab\xc9\x74\xf3\xf2\xa9\x53\xb7\x1d\x5a\x04\x75\xe9\x09\xda\xee\x27\xe6\x6e\x2e\x68\xc4\xc0\x45\x37\x9b\x1d\xd4\xbc\x21\x85\x51\x0a\xcc\x0b\x89\x94\x77\xce\x2a\xc8\xdd\x9b\x41\x63\xb0\x8b\xfa\xf1\x92\x21\x27\xd3\x4a\x1c\x1e\xe6\x6f\x83\x9f\xce\x9a\x3b\x80\x88\x50\x3d\x86\xd8\xf6\x20\x5f\x9f\xcd\x34\xd8\x48\x72\xb5\x13\x24\x5f\x2b\x0b\x00\x79\x98\x45\x3c\x89\xcc\xac\x45\x2f\x34\x68\xbd\x8b\xf3\x6c\x66\xc6\xb3\xed\x9b\x8b\xfd\x5b\xe2\xa7\xaa\xb3\x72\x11\x2e\x3a\x50\xa8\x6e\xfe\x39\x8d\x21\x01\xd8\xb0\x9d\x4a\xc8\x32\x06\x4b\x5c\x96\xa8\x80\x16\x90\xd0\xb0\x5c\xa1\xb9\x15\xcb\x52\x51\x4d\xd2\x3c\x4b\xa5\xb9\xa9\x47\x93\x85\x8d\x90\x5a\xb1\xf2\x68\xcc\x3c\x2e\x04\xb2\x3d\xce\xca\x99\x1e\x25\xc3\xe3\x4f\x18\xcd\x44\x71\x6c\xf6\x04\xcb\x71\xcd\x02\x72\x05\xe6\xf1\xc6\xd8\x8e\xd9\x4c\xbb\xe3\x18\x07\x8d\xdb\x8f\x2e\xbf\x91\x72\x85\x57\xe1\xa0\x9f\xda\x95\xba\xc4\x4a\x9a\x06\xef\xff\x1b\x2d\xfb\xd6\xed\x52\x86\xfb\x14\xd5\x49\xde\x70\x91\x7f\x6a\xc7\xfa\xc2\xf1\x5c\x20\xf4\x9f\x00\xf5\xd6\xa9\xde\x8e\x49\x39\x8d\xef\xab\x46\xc7\x2d\x57\xad\x94\xc5\x7c\x96\x72\xc3\x32\x81\x2e\x9f\x22\x0c\x4e\x1e\x97\xa1\x6f\xab\x4c\xe6\x4b\x0c\x6f\x70\x16\x5c\x2b\x54\xb7\x67\xe7\xdb\xc3\x05\xbc\x34\x0f\x16\xb5\x09\xb0\xa7\x77\x8c\x64\x01\x70\xf2\x4f\x84\x99\xfd\xe3\xc5\x8e\x0d\x92\x6c\xf0\x22\x86\xab\x55\x94\x41\x45\x1b\x68\xb3\xbe\x2d\xc1\x77\x4c\x7c\x5b\xb0\x54\x98\xd2\x70\xa2\x25\x84\xc8\x9b\xb5\x38\x23\x47\x38\xc2\x20\x91\x11\x4d\x8a\xfc\x76\x6b\x3f\x9d\x2c\x48\x85\x9e\x39\x5a\xe6\x9d\x6f\x2f\x50\xc3\x45\x72\xf0\xae\x84\x1c\xc2\xf6\x81\x9e\x98\xbd\x5b\x59\x0b\x20\xe7\x81\x3f\x48\x64\x1c\x1a\x95\x77\xa8\x80\x75\x65\xcd\x80\x82\x23\x72\x6f\xc8\x5c\x95\x38\x87\xe9\x01\x1a\x73\x47\x95\xe3\x0f\x4c\x56\xa4\x24\x96\x76\x61\x73\xb3\x83\x83\x0a\x9f\x18\x41\x35\xdd\x0c\xe2\x25\x8e\x03\xab\x2a\x96\x70\x4c\x28\x50\x8d\x5d\xf1\x8f\x58\x77\xb6\xcf\xbb\x8a\x26\xea\x65\xad\x31\xcc\xaa\x32\x4a\x49\x86\x55\xf8\xec\x2c\x8a\x1c\xa9\x3c\x4c\x61\xa8\x82\xa3\x65\x7a\xf5\xcc\xfc\xff\xa9\x4d\x09\x02\x3f\x23\x8b\x89\x59\xf7\x9f\x08\xd7\x84\x2b\x71\xa8\x4b\xa3\x74\x37\x27\x27\x78\x99\xd3\x4c\x1a\xe9\xc5\x43\x01\x84\xb1\x47\x15\xaa\x78\x58\xae\x3a\xc8\x73\x5d\xde\xd6\x29\xee\x15\xd2\x24\x41\xfa\xc1\x54\x4a\x74\x53\x19\x89\x6b\x9d\x26\x6c\x6d\x70\x0d\x49\x7d\x49\x38\xfc\x45\xab\x3f\x85\x4f\x8f\x6b\x4e\x93\x64\x4b\xfe\x6f\x03\xe3\x34\x63\x23\x08\x8f\x29\x9c\x3e\x53\x73\x48\xcc\xd6\x3c\x2e\xc8\x7e\x94\xaf\x9b\x74\x02\xf3\x71\x2d\xee\x51\xc0\xb7\xad\xf4\xa5\x08\x7a\x0f\xda\x88\xb7\x08\x17\xbc\xdb\x31\x0c\x98\xe7\x6c\xf0\x3e\xc4\x26\x2d\xb6\x8e\xe1\xdb\x15\xc3\x03\xdc\x28\xda\x22\x08\xec\xb6\x45\x34\x25\x0e\xd7\x9c\x1b\x86\xd9\x57\xe4\x41\x2f\x88\x17\xef\xae\xcd\x69\x75\x05\x90\x83\x01\xc1\x73\x86\xf6\x56\x26\x22\x8c\xa4\x2a\xc4\x0d\x7b\xe0\x36\xd6\x75\x0f\xee\xd8\x19\xf9\xda\x1a\xf1\xda\x1d\x25\x69\xb6\xd5\xf1\x7a\x6b\xc2\xea\x6f\xa9\xb0\xd9\x97\xaa\x63\xd5\x11\xff\x29\x1a\x08\xf6\x08\x80\xdb\xf0\x4b\x4b\xa5\xba\x07\x47\x8d\xa6\x28\xc6\x76\xa2\xfb\x59\x99\x1c\x8e\x17\x8e\x03\x9f\x5b\x78\xd2\x31\x8e\x64\x17\xd1\x5c\xff\xb3\x4c\x16\x31\xac\xb6\xd0\x41\xb0\xee\xbb\x5d\x8e\x17\x78\xe9\x54\x02\x8c\x28\x6c\x1a\x14\xb3\x2d\xd2\x94\xd1\xac\x88\xe5\x83\x64\x1e\x52\xac\xab\x74\x77\xbb\x91\x5d\x4c\x66\x29\xaf\x8f\x1a\x23\x16\x6b\xb7\x72\xb0\x36\xfe\x66\xad\x8d\x3c\xa5\xeb\x79\x22\xa3\xbb\x2f\x61\x6a\x9c\x4c\xcf\xde\x7e\x6f\x06\xaf\xdb\x19\x8b\x1f\x76\x8d\x8c\xe5\x82\xea\x16\xc6\xe2\x97\xc1\xbc\x68\x57\x39\x98\x17\x07\xf3\xe2\xef\xc7\xbc\x58\x10\x8d\x5e\xb6\x45\x51\xa7\x3e\xe5\x67\x7f\xcb\xa2\x51\x58\x0c\xec\x3a\xf9\xbe\x7d\xce\xe9\x84\x40\xae\x6c\x30\x13\x57\xf8\xa7\xd3\x1b\x31\x5d\x8f\xe9\xa0\x01\x89\xeb\x22\x6d\xc0\x6b\x4c\x42\x66\x07\x46\x3b\x3e\xc5\xe6\x21\xe6\x9f\x20\x19\x41\x10\xeb\xec\x00\x06\x84\xd8\x50\xa6\x8f\xbd\x09\x1b\x54\x5d\xf3\x24\xec\x0b\x5b\xe1\x80\xde\xbd\xa7\xe8\x4f\x13\xa3\xb0\x35\x15\x5b\xaf\x42\xc6\x70\x6c\xa0\x58\xe5\x3b\x84\x8b\x51\x6e\x33\x3c\x9c\x18\x02\x2b\x1e\x13\xc1\x13\xe8\x6a\xd3\x90\x67\xb1\x66\x14\xe5\x9c\x72\x34\x02\x77\x8c\x31\x34\x0b\x0a\x29\x46\xde\x18\x46\x9b\xe6\x22\x66\x9f\x08\x3f\x6e\xb2\x29\xd8\xdf\x8b\xbc\x17\x6e\x88\xa0\x05\xbe\x37\xcd\xce\x62\x81\x42\x36\x8c\x89\x74\xc5\x8e\x89\x13\xb8\x11\x95\x92\x11\x87\xc2\x21\x54\xe3\x75\x64\x85\x41\xf7\xac\xf8\x26\x28\x12\x1a\x50\x3e\x40\xa4\x6a\xd1\x00\x9e\x90\xdb\x77\x17\xef\x4e\xb1\xfe\x91\xc8\x93\x84\xce\x51\xac\x5c\x53\x91\x83\xfa\x4b\xe3\x18\xa4\xcb\x31\xf9\xc0\x1c\x8b\x41\x3a\x44\x8a\x02\x09\xd9\x68\x19\x2e\x08\xfa\xc4\x60\xd8\x8a\x8a\x38\x61\xe4\x6f\x3f\xff\xb7\x21\x7e\x78\xd9\x92\xad\xad\x64\x12\x54\xf0\xdd\x42\x9a\xf4\x86\x16\x41\xbd\x84\x69\x27\x62\x7a\xd0\x87\xa8\x5d\x5a\x60\x6a\x11\x27\xe4\x08\x99\x77\x6a\xa1\xf5\x42\x5c\x75\x15\xbf\x4b\x2a\x30\x26\xb7\x92\x2c\x0c\xe3\xf1\xce\x1b\x6d\x27\x98\xfb\x57\xbe\x18\xa4\x08\xe6\xa2\x54\x32\x08\xaa\x78\x79\xa8\x6c\x17\x28\x87\x42\xde\x32\x1a\x13\xe5\x69\x00\x31\x19\xda\x4a\x0a\xbd\x60\x7f\x6c\xeb\x54\xa8\x11\x13\x3e\xf2\xb0\xba\x47\x7a\x69\xd5\x8a\x19\x41\x9b\x66\x21\x92\x6c\x37\xb7\x5f\x87\x87\x3e\xea\x6f\x57\x1a\xe3\x83\xf5\xca\x88\xc7\x9d\xa1\xe6\xb7\x0e\x93\x0e\x15\x39\x9f\x5c\x5c\xef\x49\xab\x63\x96\x30\x1d\xd4\xb0\x2b\xb3\x5c\xe0\x63\xf6\x2e\x14\xc2\xa0\xcd\xd3\x2a\xc2\xd3\xef\x65\x76\x47\x33\x99\x1b\x74\xf6\xda\x14\x34\x18\x40\x0d\x5e\x79\x09\xeb\x67\xd3\x09\x06\x2a\xcf\xb7\xb8\x2c\xa4\xab\x09\xe6\xdd\x64\x4c\xe7\x99\x20\xd0\x4d\x64\x91\xf0\x30\xa4\x59\x96\xc9\xcc\x25\xd5\x94\x6c\x75\xce\x98\xf0\xc4\x23\xed\x28\x95\xcb\x07\x67\xba\xa0\x68\xfb\xa7\xa4\xfd\x3d\x67\x22\x62\x57\x90\x5d\x17\x04\x23\x78\x09\x4e\xc9\xb3\x0e\x10\x1b\x02\x6a\x54\x42\x70\x6b\xe1\xa0\x36\x67\x0f\xed\xca\x5c\xb9\x2d\x60\xb6\xbb\xe6\x61\xeb\x47\xb9\x75\xae\xc8\x7d\xc6\xb5\x66\xc2\x1a\x06\x2a\xfc\x0a\x02\x99\x95\xb4\x93\xa2\x02\x8f\xd3\x86\x89\x2e\xac\xc4\x17\x60\x88\xcd\x86\x33\x0b\x01\x9b\x86\x56\x45\xdc\xbd\xad\x38\x9d\xb1\x84\x51\xd5\x70\x75\x40\x16\x3b\x26\x29\x55\x9e\xa3\xb1\xba\x71\x8f\x1d\x02\x15\xad\x12\xb7\xe0\xa0\x49\x22\xef\x15\xc9\x95\x6f\x5a\x86\xa8\x6e\xa5\x09\x25\x19\xc5\x4a\xe7\xb6\x56\x97\xe1\xd1\x4c\xa8\xdc\x02\x60\x12\xec\x53\xb9\xa2\x60\xd9\x06\x24\xc2\x0d\x19\xee\x2c\x62\x92\xb1\x91\x5d\x8c\xd1\xa2\xa0\x32\x1f\x24\x43\xe2\x33\x4e\x4c\x0f\x60\x14\xb6\x69\x01\xd6\xfb\xf2\xeb\x26\x84\x6b\xe0\xcb\x55\x84\x7b\x25\xb3\x92\xa4\x07\xb0\xaf\x37\xb5\xeb\x58\x52\xa7\xb0\x50\x6b\xdb\x91\x7a\x32\x1d\x8b\x0b\xb9\xc9\x2b\x02\x81\x28\x04\x29\x2d\x9f\x85\x75\x25\x3a\x8c\x7d\x62\xe2\x7c\xac\x8d\x38\x42\xca\x3c\xdb\x3b\xb6\x75\x65\x34\x52\x75\x4c\x14\xea\xc1\x77\x0c\x72\x03\x22\xaa\xb4\xed\xb2\x06\x04\xb4\x91\x40\x84\xe9\x3b\xd6\x83\x39\xeb\xa9\x28\xdc\x54\x9e\x76\x19\xbe\x85\xc6\x62\xd6\x13\x1b\x9d\x12\xa1\x6a\x70\x50\x04\x3d\xe3\x89\x14\x4b\x96\x21\x59\xb6\x7e\x46\x6c\x5f\xf3\x5e\xe1\x70\xe7\x52\x2c\xf8\xb2\x3e\x9f\xb9\x24\x8c\x86\xd2\x02\x5a\x69\x60\x2e\x8a\x93\xee\xda\xe0\xfb\xf2\x51\x97\x0d\x95\x61\xee\xb5\xb3\x8c\xfa\x82\x12\xda\xfc\x1b\x52\x3d\x8c\x54\x5f\x15\xa5\x1e\x51\xf6\x6d\x64\xca\x0d\x26\xe9\x91\xbf\xee\x9d\x9f\x1a\xe4\xf6\x11\x30\xf8\xfa\x77\x55\x8c\xa9\xff\xea\xc1\x7a\x30\x74\x3e\x92\xa1\x33\x82\xcb\xf0\xa5\x2c\x9d\x78\xd5\x42\xa6\x4e\xfc\x25\x6c\xeb\xb4\x6b\x0a\x19\x3b\xa3\x62\xc0\xc1\xda\x39\x58\x3b\x07\x6b\xe7\xef\xce\xda\x89\x74\x63\x0f\x73\xa7\x4f\x82\xca\xcf\x03\xec\x9d\xb9\x96\x56\xdc\x64\x20\x90\x84\x78\x6b\xab\xa8\xb0\xa6\x9f\xf0\xc5\x29\xcb\x7e\x00\x9b\x65\x97\x24\x59\x7d\x1e\x8c\xa6\x42\x8a\xd1\x3f\x58\x26\x8f\x9d\x09\x6d\x4d\x3f\x79\xa2\xa2\xef\x26\xaa\x2d\x0d\xaa\xab\x51\x01\x25\x3b\x0a\x1b\x27\x68\x53\x0d\x66\xce\x35\xfd\xc4\xd7\xf9\xfa\x94\xbc\x78\xfe\xf5\x1f\xbf\xfe\xf6\xab\x97\x5f\xff\x31\xf0\x10\x17\xf8\x50\x40\xc5\x6b\x97\xe5\xbb\x84\xc3\x16\x58\x36\x0b\x22\x3b\x87\xb4\x8f\x84\x31\x88\x11\x0f\x16\x23\xd0\x7e\xf5\xa5\xc4\x88\x1f\x60\xf4\x90\x18\x81\xbf\x84\xc5\x08\xbb\xa6\x90\x18\xb1\x2a\x06\x1c\xc4\x88\x41\x8c\x18\xc4\x88\xdf\x9d\x18\x81\x74\x63\x0f\x31\xc2\x27\x41\xe5\x67\x7f\x31\x02\x18\xf4\xe7\x18\xab\x7a\x29\xef\x61\x7b\x4c\xb3\xbd\xbb\x55\x6e\x41\x62\x39\xb9\x68\x7c\x2f\x64\x5d\x6f\x64\xd1\x01\xff\xeb\xa8\x98\x62\xe0\xc7\x8f\xc2\x8f\x53\x29\x93\x2f\xc3\x8b\xa7\xd2\x85\x0f\xfa\x7c\xd8\x7c\x1b\xe2\xc1\xb0\x8e\x5d\xfe\x9b\xda\x41\x06\xde\x3b\xf0\xde\x81\xf7\xfe\xce\x78\xaf\xa1\x15\xbd\xf9\xae\x79\xf8\x21\xba\x3a\x96\x9f\x7b\xaf\x7a\xc4\x3a\x14\x8f\xba\xa0\x0d\x85\xf5\xae\xd0\xf9\x40\x0c\xad\x2a\xe2\x8e\x5c\x6a\x1c\xd4\x5b\x0d\x31\x67\x08\x35\x2a\x0a\x76\xb9\xcc\xac\xe3\xb2\xe0\x96\x96\xe4\x6f\xb3\x83\xdb\x5c\x08\x96\x40\x9d\xb7\x83\x0f\x36\xb3\x63\x76\xf0\x33\xec\x7b\x4e\xa3\xbb\x11\x54\xb0\xd4\x7c\xce\x93\x1d\x25\x95\x7c\x99\xbc\x36\x60\xcb\x37\xfc\x1f\xbd\x92\x27\xd0\x19\xa5\xf8\x3f\xc0\x86\x90\x2b\xcc\x78\x29\x33\x11\x09\x55\x8a\x2f\xc5\xda\x5c\xa6\xc6\xbe\x18\xb6\x74\x9a\x4c\xc6\xe4\xc2\x03\xcf\x8b\x97\x76\x30\x9b\x70\xfa\xfc\xc5\x0b\xf7\xc5\xcb\x46\xe7\x4c\x83\x38\xd4\x37\x86\x00\x0e\xf9\x21\x01\x04\x5c\xd1\x79\xc2\xbe\x7f\x3d\xbd\xfc\xd4\x90\xd3\x50\x25\x5a\x17\xf8\x02\x61\xf0\xb8\x21\x51\x99\xcc\x8b\xf2\xf2\x00\x91\xc9\x94\x18\xac\x3f\xb4\x21\x0d\x44\x6e\xc2\xf1\x49\xdf\xbf\x9e\x8e\xc9\xdf\x2e\x9c\x87\x1d\x98\xe6\xcf\x81\x3e\xb6\xad\xa2\x9d\xdd\x40\xa7\xeb\x0a\x1c\xda\xee\x61\xb0\x3c\x65\x79\x99\xb9\x6a\xe4\xe3\x32\x58\x01\xcf\xbe\x4c\x4a\x0d\x2d\xbe\xdc\x2e\x20\xc0\x9e\xab\xe6\x29\x4f\xbb\x41\x5d\xf8\x0a\x4f\x2d\xf1\x86\x8a\x83\x1c\xfb\xb3\x97\x59\xae\x67\xd3\xc9\xe6\x39\xdc\xba\x7b\x9a\xc5\xc1\xd5\x56\x6e\xa3\x61\x0e\xda\x72\x17\x7f\x54\xd8\x3a\x12\x93\xe3\xea\x4f\x41\x00\x60\x6a\x2f\x72\x69\x73\x81\xcc\xa2\xc6\x81\xe3\xeb\x88\x1c\x62\xa2\xe9\xfc\xc2\x67\x68\x9f\x2f\x8f\xd0\xc0\x92\x68\xa0\x47\x66\x4f\x3e\xa5\x0b\x8f\x09\x79\x6b\x31\x4b\xf8\x86\x65\x65\x87\x25\xf3\x55\xd1\x7f\x50\xd5\xea\xac\x07\x4f\x98\x74\x9d\x32\x81\x92\x9f\xc1\x6c\xae\x9d\xbd\xdd\x02\xb1\x9e\x4c\xe1\x05\x28\x31\x05\xde\x6b\xe1\xd5\xa9\x9b\x1d\x60\xe9\x3a\xd7\x4f\x14\xba\x14\x8f\xb0\x73\xee\xec\x60\x4c\xc8\x59\xd3\x7e\xcd\x98\xb5\x11\xca\x08\x92\x5c\xd9\x99\x4b\x18\x9a\xb3\x35\xd7\x1a\x70\xa4\xb1\x63\xbc\x07\xaf\x6a\xae\xfd\x0e\xec\x08\x39\xf3\xd6\x50\x5d\x77\xd3\xe8\xb0\x40\x87\xe8\xf5\x05\xde\xbb\x2a\x80\xfe\x1a\x30\xdf\xcd\xdc\x8e\xa6\x31\x69\xd9\x05\xcd\x76\x1c\x76\x52\xa8\xeb\x93\x61\x06\x17\xee\x04\xca\x24\xe1\xd6\xee\x91\x47\x7c\x51\x65\x9b\x4f\xcd\x2a\x4a\x58\xb7\xa2\x4e\x3b\xa3\x0b\x6b\xc1\x06\xe3\xdf\xf6\xc8\x12\x3c\x77\xf2\x09\xfa\x1c\xf3\xac\x94\x4d\x02\x07\xde\x8e\xea\x93\xda\x1e\x8f\x5d\x8b\x17\xae\x30\xae\x01\x00\x85\x71\x64\xb3\x83\x2b\xb6\x81\x8a\xf0\x47\x50\x7e\xbd\x3a\x59\x68\x74\x33\x82\xa5\xcd\xa1\xde\x82\xad\xe9\x92\x54\x8f\x64\xae\x97\x92\x8b\xe5\xef\x85\xa4\xb6\x52\x1d\x41\xf5\xbb\x9e\xf0\xc0\x6a\xad\xe5\xf3\x25\x51\x75\x64\x11\x6a\xa2\x7a\x8d\xd3\x48\x6b\xc6\xb9\x15\x88\x8d\xde\xe1\xdf\xff\x1d\xe2\x2a\x73\xad\x78\xcc\x0a\x05\xb3\x10\x51\x43\x83\x42\x5b\x19\xf5\xf7\x9c\x65\x34\x0e\xf6\x08\x6a\x87\x86\x8c\x7b\x77\x83\x38\xc3\xe8\x33\x2b\xb4\xdb\xa2\x80\x06\x5b\x6c\x48\x6f\x91\xd1\x0c\x94\x66\xbe\xc5\x1a\x80\xa1\x35\x17\x2d\x95\xf6\xc3\xe5\xcd\xa7\x84\x8a\xcf\xbc\xd9\x3f\xfe\xf4\xe6\xec\xea\x57\xbb\xda\x30\x5b\x50\x36\x2e\x16\xf0\xe0\xbb\xdd\x68\x80\xdb\x8d\xbb\x19\xec\x6c\x7b\xda\xd9\x40\x8b\xaf\x24\x79\x54\x03\xfe\xc7\x77\xf9\x9c\xcd\x73\x9e\xc4\x2c\x83\x09\xdc\xf4\x47\xa0\xaa\x43\x39\x76\x17\x2d\x7a\xcb\xd7\x4c\x69\xba\x4e\x4f\x21\xb8\xdf\x37\xe3\xa1\x79\x0c\xe7\xf9\x22\xd6\xbc\xeb\x72\x82\x5d\xa3\x9e\xf7\x63\xc8\xb6\xe7\x2f\x6e\xd7\xc4\x97\x55\x47\x1e\x2c\x7d\x83\xa5\x6f\xb0\xf4\xfd\xce\x2c\x7d\x1e\x01\xe9\x6d\xf0\xdb\xa1\x48\xe5\x67\x7f\x33\xa0\x25\x3a\x31\xd4\x30\xee\x12\x0a\xae\xfd\x87\xab\xdd\xec\xf1\x2b\x2a\xe2\x93\x8a\x95\x2b\x6c\xda\x80\x38\x9b\x1d\xc3\x08\xfb\x14\x25\x79\x6c\xdb\x2a\x0b\x76\xef\x87\xcc\x0e\xa5\x00\x1a\x58\xfc\x97\x72\x90\x19\xee\x5c\x32\x6c\x55\x91\x02\xbf\x04\xa3\xfd\x4b\x3e\x67\xe7\xe5\x7c\xe7\xfe\x7c\x75\xbe\xdb\xf6\xec\x2e\x1b\x6e\xdd\x49\x9d\x2b\xb7\x3d\x3c\x30\x69\xbb\xca\x81\x49\x0f\x4c\xfa\xf7\xc3\xa4\xdb\xa8\xcd\x2e\xcf\xae\xf4\xda\xa8\x03\xd8\xcb\x3f\xf2\x88\x4c\x55\xc5\xee\xcf\xba\xbd\x21\xfa\x68\xf3\x6e\x36\x34\x6f\x63\xf7\x13\x37\xb3\xed\xdb\xb3\xe1\x71\x4e\x93\x8e\xe6\xaa\xde\xb4\xbb\x3f\x77\x98\xe2\xbb\xfa\xa5\x36\x74\x49\x6d\x58\x72\xb5\x65\x6a\xb9\xae\xc6\x1e\xa5\x97\xd6\xb2\x0f\x09\xa4\x60\x73\x38\x86\xe4\x4e\x2d\xa1\x72\x80\x96\xce\x8e\xd0\x30\x42\x8f\x6e\xb7\x86\x4c\x89\x88\x27\x2c\x9b\xb2\x8c\xcb\xe6\x5c\xe5\x3a\x71\xb8\xae\xbd\xe8\x62\x97\x53\xfc\x4b\x4b\xf3\x2f\xa8\xe6\xe0\xa6\xe0\x8d\x49\x8e\xee\x53\xe4\x44\xba\x0a\x73\x54\x53\x90\x25\x7c\xaf\xd8\x37\xeb\x90\x4b\xcc\x7d\xba\xf3\x9b\xbb\xb2\x9b\x1b\xaa\xcd\xed\x40\xe0\x4a\xc6\xed\x27\x6d\x7e\xff\x6d\x1c\xf2\xca\x2b\x00\xd8\xf7\x80\xfd\xa2\x81\xa5\x1b\x5d\x6d\x45\xe4\x3c\x02\xc0\x21\xa1\x8c\x65\x59\xc7\xbd\xed\x74\x2f\x9c\xaf\xf1\xa1\x3b\xed\xb9\x5b\x62\x23\xfb\xcf\x33\x46\x1b\x4a\x02\x37\xec\xf9\xf0\xac\x78\xad\x3c\xd9\x5c\xcb\x35\xd5\x3c\x2a\x7b\x70\xc9\xce\xa6\xf0\x55\xa8\x80\x2a\xc4\x36\x2c\xdb\x5a\x4f\x4a\x89\xcc\x0e\x26\x6d\x28\x4d\x7a\x77\x29\xee\xd3\xa3\x38\x61\xf4\xee\x75\x46\x23\xb6\xe7\x7d\x7f\x53\x7d\xaf\x76\xdd\xab\x99\x99\x0e\xe7\xdb\xf6\x04\x16\x70\xec\xbc\x0e\xcd\x1b\xa9\xef\x32\x2b\xb3\xdc\xcd\x72\x0d\x0f\xbf\x41\x3c\x09\x64\x24\x54\x87\xb4\xce\xf8\xc9\x94\x2c\x69\x36\xa7\x4b\xb3\x9c\x24\x61\x11\x26\xd4\x96\x80\x7f\xfe\xb9\x64\xe4\xf7\x48\x3a\x09\xdc\x7f\xe8\x15\xd9\x76\xfd\xaa\xbb\xbd\x29\x5e\xf1\xa3\x71\x6c\xab\x3d\x49\x22\x99\x6e\x7b\xb6\x47\x07\x8a\x5a\x36\x28\xf2\x8a\x7a\x2a\x7f\x97\x96\xa0\x7e\x59\x2e\x81\x15\xff\xfa\xf0\x09\x5b\x20\xbc\x85\x53\xd8\x9a\x9e\xbf\x0d\x5e\xf1\xfb\xc3\xea\xae\xa3\xae\xb6\xcc\xec\x73\xe4\xd5\x76\x99\x6d\x47\x6f\xc7\x6e\x5a\xbe\x6d\x80\xe9\xa3\xc6\x80\x03\xff\x0e\x1c\x70\xb5\x9a\x3b\xa4\xa8\xaa\x2f\xb9\xf6\x4e\x1b\x1e\xb8\xf1\x9b\xf6\xc0\x6a\x92\xd8\x80\x09\xff\x1e\x4c\x68\x4f\xc5\x98\xe7\x4b\x5b\x58\x76\xda\x23\x72\xf0\xa2\xf6\xfc\x2e\x5b\xc8\x34\x16\x14\xc9\x36\x8c\xac\xd9\x5a\x66\xe1\xf2\x56\x06\x9d\xd2\xbc\xa8\xda\x4b\x8c\xa4\xb3\xeb\xc2\xc6\x9f\x6b\xfe\xe7\xf6\x62\x2e\x5f\xbd\x68\x82\x40\x43\x70\x26\xd3\x51\xfc\xe3\x57\xe7\x72\x9d\x52\x90\xb8\x1a\x91\xa6\x8a\x2c\x97\xc1\xd7\x6a\x28\x33\x67\xfa\xde\x48\x84\x66\x8e\xcd\x57\x61\x4d\xdf\x0d\x50\x98\x84\x4a\xc1\xd1\xbf\x0e\xbe\x1c\xf8\x2c\x88\x2f\x6d\x78\xb2\x62\x34\xd1\xab\xf3\x15\x0b\xe7\x0b\x57\xb7\xf6\x83\xf7\x70\x41\x00\x64\xe6\x96\xa2\x8a\x0e\xd7\x46\x47\xc0\x91\x83\x5b\xc3\x01\x7a\x09\x39\x6d\x6b\x4f\xe4\xf2\xc6\x68\x22\x5c\x6f\x6f\xa2\x8c\xb1\x50\x8d\x9d\x9a\xdc\x5f\x7f\xc3\x1d\x4b\x22\x97\x44\xd9\x5f\x08\x9d\xcb\x0d\xb3\xf5\x4d\x12\xb9\x6c\x28\xe8\xc7\x30\x7a\xc6\x1a\x56\x95\x8e\x65\xae\xfd\xc3\x98\x88\x85\xdc\x77\x47\x69\x26\xd7\x46\x98\xcc\xd5\x5b\xa6\x33\x1e\xa9\x3e\x57\xef\x70\x1a\x7a\xcb\xed\xec\xf6\x7c\x6a\x2f\x9f\x0b\x1a\x2f\x1f\x0f\x6d\x6c\x8d\x43\xe0\x45\xcd\x9c\x65\x79\xce\x45\x0c\x16\xc9\x0e\x0c\xfc\xee\xd9\x77\x5f\x37\x6f\x3a\x78\xd1\x9a\xe3\x40\x9a\x6c\x5d\x8d\xc6\xc4\xd2\xf5\xd3\x00\xaa\x56\x73\x22\xbc\xed\x99\x75\xed\xb9\x9a\x6f\x03\x56\x78\xab\x1c\x7a\xb6\x43\x32\xd1\x87\xd0\x9d\x66\x91\x27\xe8\x30\x8c\xd7\x60\x99\x94\x90\xd2\x6e\x34\x39\x20\x80\x58\x88\x8a\x46\x3a\xa7\x3b\xd1\x45\x38\x22\x9e\xd5\x3d\x2d\x4a\x84\xbb\x0a\xfb\x36\x62\x74\x2d\x63\x0c\xe0\x9f\x1b\x51\x7c\xc3\x33\x09\xa1\xec\x64\x43\x33\x0e\x17\x71\x67\xbd\x18\x4e\x79\x97\xcf\xd9\xc8\x37\x7e\xa6\x99\x8c\x98\xaa\x5b\x3a\xda\xda\x35\x95\xb3\xfd\x48\x83\xa6\xcf\x3d\xf3\x04\x9b\xb8\x57\xe5\xd8\x2e\xab\xb3\xd6\x7b\x12\x04\x00\xd0\x10\x25\x1a\x04\x02\x16\x70\x13\x8b\x24\xc7\x0e\x05\xe0\x05\xc8\x85\xe0\x62\x89\x08\xb2\x67\x55\xa9\xcc\x7f\xb7\xd3\xab\xeb\x3f\x5c\xdb\xd8\x62\x61\x54\xfd\x0d\xab\x60\x05\x57\x6e\x82\xd0\x06\x79\xd3\x41\xcb\xf8\xd8\x56\x83\x5f\xb3\x6c\xe9\x9c\x1d\x67\xd3\x49\xe9\xeb\x30\x12\x49\x98\x25\x37\x60\x59\x00\x2e\x1d\x52\x58\xbb\xd5\x7c\x07\x38\x8f\x69\x39\x27\x5d\xd6\xf3\x1e\xcb\x27\x3d\xac\xe8\x3b\x9b\xd8\xcf\x92\xde\x26\x32\x3e\xa6\xb8\xdc\x73\xb7\x64\x3f\xb1\x79\x67\xf3\xfd\x45\xe7\x2e\x2b\x64\x55\xb2\xee\x25\x3e\x77\x0d\xd9\x2e\x5d\x93\x47\xb5\x54\xb6\x18\xe2\xc9\x97\x32\xc6\x93\x47\x30\xb2\x90\xfe\x78\xd2\xd3\x30\xbf\xb3\xdd\x3d\x8c\xf3\x5d\x27\x5a\xda\xee\x1f\xc7\x40\xbf\xc7\xee\xc9\x3e\x86\xfa\x1d\x18\xf4\x33\xd6\x77\x0f\x0a\xa2\xc9\xa3\x1b\xec\x49\xef\xab\x40\x7a\x5e\x07\xb2\x97\xf1\x9e\x3c\xdc\x80\xdf\xb5\xb1\xf2\x1a\xed\x69\xc4\xef\x1a\x38\x20\x28\x77\x1a\xf2\xbb\xc6\xec\xb0\xf3\x93\x3d\x8e\x69\x20\xea\x9d\x20\xea\xe5\x1e\xd8\x05\xce\xe3\xb9\x08\xc8\xa3\xba\x09\xfa\x6f\xbd\xcf\x05\x6e\x75\x19\xec\x00\xe5\x31\xdd\x06\xe4\xd7\xe5\x6a\xc3\x45\x79\x04\x6c\xe9\xe5\x75\x20\x5f\xcc\xf3\x40\xbe\x90\xf7\x81\x0c\x68\xf4\xab\xa2\x51\x4f\xc7\x05\xf9\x92\xce\x0b\xf2\xa5\x1c\x18\x64\x40\xa6\x5f\x11\x99\xba\x9e\xe8\xe1\xff\x20\x5f\xca\x07\x42\x1e\xdf\x0f\x42\xba\x7d\x21\xa4\x4f\xd3\x99\xde\x3e\x91\x1d\xe0\x3c\x96\x5f\x84\x3c\xae\x6f\x84\xf4\xc0\xa9\x0e\x1f\xc9\xee\x56\x1f\xc9\x4f\x42\xf6\xf4\x95\xf4\xd9\x4b\x1f\x9f\xc9\xee\x86\xf6\xf6\x9b\x34\x6d\x27\x91\x4b\xf5\x19\xbe\x93\x3e\x3b\xec\xeb\x43\xd9\xdd\xe5\xa3\xfa\x51\xc8\xe7\xfa\x52\x9a\x06\x6d\x72\xb1\x90\xee\xfb\xdb\xd2\xb2\xb5\xc5\xdd\x42\x5a\xc9\xe5\x90\xb8\xe3\x25\xee\xd8\xf4\x79\x50\x66\xf8\x17\xa9\x36\x7b\x85\x33\xa0\x42\x85\x3f\x94\xb9\x39\x95\x1f\x77\x93\x71\x6a\xab\xb3\xa7\x50\xa4\xdf\xf8\x3f\xc3\xd0\x3d\xf3\x6d\x0a\x03\x37\xc8\x4c\x43\xca\xcd\x90\x72\x33\xa4\xdc\xfc\x67\xa5\xdc\xb4\x39\x7c\x97\x19\x53\x9d\x91\x21\xb7\xae\x7d\xb5\x41\x7f\x06\x39\xa9\xf8\xa2\xed\xed\x4e\xb0\xc5\x95\xf9\xa3\xf0\x71\x86\x38\x18\x75\x6f\x63\x81\x12\xb2\xa6\x3a\x5a\x91\x28\xe3\x9a\x65\x9c\xc2\x25\xa1\x24\x92\x59\xc6\x54\x6a\xe8\xbd\x58\x12\x2b\x07\x6a\x89\x6d\xb7\xf7\xca\x55\xad\xec\x61\x76\x70\x46\xae\xcd\x02\x99\x88\x68\xaa\x72\xb8\xb7\xe5\x8a\x42\x4b\x69\x30\xc8\x53\x6b\xd7\x25\xdf\x4b\xbd\xaa\x75\xde\xf6\xba\x89\xa3\xc5\xcb\x0c\x54\xef\x30\xde\x20\x50\x14\x5d\xf4\x6d\xa7\xef\x11\x51\x2c\xa5\x19\x36\x71\xca\x35\xa1\x7e\x4e\x30\x3e\x02\x05\xfb\xcc\x2a\xb8\x80\xf3\x68\x58\xb0\x88\xdd\x79\xf9\x80\xe7\x62\x39\x26\xb3\x99\xb0\x8d\xcb\xa5\xe2\xe0\x8d\xae\x41\x62\x45\x9b\x46\x25\x82\x2d\x61\x71\x96\xf0\x1a\x75\x85\x2d\xf8\x27\xd7\x30\x6c\x36\x9b\x1d\x5c\x49\x6d\xfe\x37\x26\x67\x49\x62\xdb\x05\xf8\xa3\x87\x47\xb6\x15\xa8\x28\x22\xd4\x3a\x57\xd8\x29\x8e\x6a\xae\x20\x2c\x02\xeb\xb9\xd8\xad\x68\x89\x63\x8e\xc9\x19\x30\xbb\xdd\x22\xc9\x16\xba\x80\x9c\x54\x38\x04\xb5\x2a\x9b\xdd\x34\xb4\x73\x32\xdb\x31\x7f\xd8\xfd\x00\x67\xc0\xc1\x9b\xe1\x0a\xd0\x0f\x2f\x11\xfa\x91\xe5\x18\x16\x82\x4b\x0c\xd7\xcb\xea\xb4\x0a\x20\xc2\x35\x4a\x8c\xdd\x3a\xb3\x57\xbe\xa7\x71\x94\x9a\xaa\x5b\x16\xe6\xaa\x04\x2d\xd4\x90\x03\x84\x65\xb8\x98\x2d\xca\x7a\xa5\x7c\x10\x31\xb4\x50\x87\xee\x71\x4f\x60\x10\xdf\x49\xdf\x52\x1b\xa8\x61\x67\xb3\x83\xab\xfa\xcb\xae\x19\x56\x8a\x71\x2d\xb6\xc8\x53\x53\xa3\xfe\xf2\x53\x00\x86\x16\x44\x80\xb0\x4f\x86\x85\x29\xa0\x0f\xef\x44\xb2\x25\x3a\xa3\x8b\x05\x8f\x10\x52\xae\x4e\x59\x97\x5f\x00\xb8\xdc\x91\x41\x21\x70\x57\x21\xa5\xd2\x4f\x3d\xa7\x9f\xd7\xcc\x0d\xe7\x6e\x2e\x97\x57\x03\x99\x2a\x6a\xec\xc1\x59\x1a\x06\x08\x85\xa4\x00\x91\x77\x60\xd3\x3e\x28\x52\x49\x09\xbe\x8f\x02\x04\x46\xfd\x43\xb1\x2c\x76\x81\x49\x8a\xae\xf1\x2a\x60\x71\xa2\xf6\x41\xa1\x96\x97\x33\xd3\x79\x5b\x46\x5c\xcb\x8a\x75\x93\xf9\x16\x17\xed\x66\xee\x00\xaa\xdb\xb6\x83\x97\x4b\x01\x32\xeb\x42\x3a\xf8\x4a\x66\x55\x19\xfb\xb8\x91\x07\xb8\x0f\xd4\x57\xdd\x05\x1b\xe1\xeb\x34\xe1\x4c\x95\xda\xa4\x8f\x6c\xd0\x9c\xb3\xeb\xc0\xc0\x90\x04\x3e\x44\xb1\x6c\x84\x09\xf7\xe0\xdb\x2b\xc6\xa4\x68\x30\x5b\xd9\x67\xe3\xf6\x0f\x97\x89\x9c\xd3\xe4\xe8\x69\x87\xd9\xee\xd7\x01\xc0\x6b\x58\x8c\x5d\xa2\xd1\xae\x65\x56\x89\x2e\x80\x6d\xb4\x0f\x6a\xf6\x58\x19\xa6\x3c\xe8\xae\xb3\xec\x58\xad\xbf\x45\x0c\xeb\x53\xae\x2b\x6b\xed\xd0\x28\x94\x50\x24\x34\x5c\x30\xad\xfc\x94\x57\xb6\x81\x71\x14\x73\xf7\x32\x9a\x0a\xa6\xdb\xcd\xce\xd5\x20\x15\xa6\x55\x33\x61\x34\xe2\x3c\x34\xb2\x51\xdd\x4e\x78\xc7\x02\xe1\x08\x81\x57\x80\xea\x14\xa6\x8b\x05\xe9\xeb\x80\x76\x95\x2e\x56\xea\x57\x1a\xc9\x41\x14\xed\xde\xb1\x91\x33\x96\x8b\x6c\x4f\xf9\x6c\x96\x23\xbd\x79\x7b\xfa\x96\x5b\x0a\x1d\x97\x1f\x21\xf5\xd5\x7e\x67\x82\x2f\x38\x93\x55\x4d\xfc\x72\x3b\x36\x8f\x74\xb0\x17\x73\x8e\xbf\x39\x58\x4c\x65\xb6\x27\x30\xe0\x8d\x0e\x68\xc0\x33\x7d\xc0\x41\x6e\xa0\x89\x2c\x60\xa9\x92\x6b\x06\x0d\x6c\x65\x24\x13\x45\x56\x74\x83\xd6\x7d\x75\x8c\x81\x23\x5b\xfc\xab\x83\xd0\x66\xcc\xab\xc5\xcd\xb5\x33\xcf\x29\x67\x5d\x84\xd1\xad\x44\x65\x09\xb9\x51\x50\x3a\xa9\xa2\xed\x9a\x0c\xf5\xfc\x6e\xcf\xa7\xae\xa0\xec\xfb\x8b\x69\x63\xb5\x52\xfc\xf4\x39\x55\x2a\xb6\xef\x16\x1d\xcf\x8c\xba\x1d\x09\xbb\x0f\xf7\x09\x2d\x4a\xa9\xd6\x2c\x13\xa7\xe4\x7f\x8f\xff\xbb\xfd\xc9\x4f\xa3\xbb\x22\xc6\x62\xc4\x85\x1e\xc9\x6c\x84\x33\x34\x75\xa6\x2f\x3f\x7d\x11\x72\x7f\xe1\xf2\xaa\x7c\xa9\x03\x2d\xfb\xc9\x57\x16\x33\xc9\x0d\xf3\x98\x0b\x52\x61\xa3\x60\xa8\x7c\xae\x13\x66\x64\x65\x54\xb8\xec\x5c\xed\x63\x16\xd2\x52\x2b\xaa\xf4\x3b\xb3\x74\xbf\x2b\x3b\x3b\x28\x6e\x6c\x17\x5b\xe9\x66\xb6\x3d\xd8\xca\x0a\x34\x66\x6b\x77\x3a\xf2\x94\x90\xa7\x1d\x68\x58\xf8\x01\x50\xd4\x54\xae\x86\xb3\x5e\x31\xc5\x48\x46\xc5\x92\xa9\x13\x67\xb6\x83\x5a\xcf\xad\x25\x86\xf1\x53\x29\xe9\x65\xaf\x0e\xb8\x8d\x10\xca\xca\x41\xc0\xda\xc0\xec\x34\x1d\xb2\xf2\x02\xcf\x00\x05\xb8\xbe\x14\xac\x93\x02\xe0\xa3\x7b\x51\xb0\x8e\xbd\x97\xe4\xad\x46\xc1\x66\x48\xc3\x66\x96\x8a\xcd\x90\x8e\xcd\x0c\x25\x6b\x95\x79\x06\x5a\x06\x9f\x5e\xb4\x4c\x3d\x40\x4b\xee\x56\x8e\x5b\x2d\x7d\xe5\x27\xa8\x1c\x93\x23\xc5\x98\x33\x91\x01\x29\xa3\xeb\x34\x61\x44\x6d\x85\xa6\x9f\x42\x85\x66\xfd\xcf\x6c\xd6\xaa\x5b\x5b\x19\xb2\x49\x77\x6e\x1f\xdb\x59\xc6\x3c\xd5\x5a\x66\xbb\x2a\xb3\xb9\x6e\x57\x52\x33\x98\xdb\x60\x4f\x07\x10\x6c\xd6\x8c\x73\x1a\x74\x70\x05\x04\x8f\xc7\x4d\xda\x47\x9f\xb3\x44\xde\x3f\x3d\xae\x2e\xd9\x03\x36\x42\x95\x70\xad\x58\xb2\x70\xce\xe9\x0e\x38\xa0\x31\x0c\xcc\x9c\xb7\x2b\x46\xf4\xbd\x04\x5c\x83\xea\x4b\xee\x37\x24\x10\x86\x09\x6d\xcb\xd2\xec\x1d\x67\xf7\x4e\xb8\xdd\xbb\xd0\xae\xd2\xfc\xca\x3c\x2d\x09\x77\x83\xa6\x05\xfb\x7c\x37\x4f\xb8\x5f\xc9\xc4\x1e\xd2\x29\x1c\xd1\x6c\x56\x32\xe4\x3f\x03\x75\xf9\xc3\x8a\xaa\xa3\xf5\xf6\x23\xc4\x5c\x3e\x05\xba\x63\x89\x7c\xd7\x75\xb6\x9d\x06\x9c\x15\x02\x90\x0c\xd7\x87\x11\x31\x65\x42\x4e\x6c\xe6\xed\x89\x6f\x30\x5e\x2c\x21\xf0\x03\xa8\x34\xfa\x94\xe6\x2c\x81\xe5\xba\x95\xa2\x11\xd5\x6e\xa9\x37\x62\xe0\x96\x1b\x77\xbc\xbb\x29\xb3\x8a\xa6\x7e\x29\xe5\xa7\x7d\xbf\xc5\x96\xba\xb6\xd3\x75\xc9\x05\x60\x1e\xa6\x49\xa1\x38\x65\x4d\x09\x09\x90\x56\xdb\x04\x01\x7c\xc9\xc5\x4e\xba\x17\x2f\xa4\x18\xd9\x10\x26\xeb\x0f\x23\xf7\x2b\x96\x31\x6b\x17\x59\xc8\x6c\xcd\x7c\x23\x05\x44\x4c\xe1\xe8\x3d\x8c\x76\xbb\xa0\xf1\xea\x0d\x3d\x82\x12\x5f\x8d\xb4\xdc\x43\xf6\xaa\x06\x5b\xfe\x7a\x32\x58\x8d\x2c\xb7\x8f\x19\x30\x79\x52\x92\xca\xd8\xa5\xc4\xa1\x0b\xa4\x20\xd1\x3d\xc2\x42\x8b\xc0\xd0\x56\x6c\xeb\x9d\x03\xe2\x3b\xec\x9b\x3f\xbb\xf9\x61\x9f\x0f\x6e\xf2\x10\x90\x77\x0f\xd9\x64\x69\x0e\x80\xbd\x17\xb4\x89\x17\x8a\x7b\xbf\x92\x0a\xcd\x92\x66\xfb\x56\x04\x34\x02\x70\x67\x72\x45\x1f\xe1\x8e\xec\x95\xb4\xd2\x53\x52\x22\x7d\xa5\x25\xb2\x7b\xbf\x3a\xe5\xa5\xff\xb9\x27\x5d\xd1\x95\x4a\xab\x1b\xd2\xfd\xa2\x9b\x42\x43\xcf\xb2\xea\xa7\x74\x43\x80\x77\xe1\xc6\xf7\x2a\x94\xba\x88\x6d\x71\xc0\xb6\xe6\xfb\xee\x41\xcf\xae\x2e\x0e\x7b\xe4\xf4\xec\x67\xd1\xea\xca\x80\xb2\x50\xdc\x4b\x3f\xb6\x54\xba\x8d\x5e\xf4\x93\xba\xf1\x4d\x74\x10\x17\xf4\xd2\x2b\x91\xe9\x26\x82\xa0\xd3\x32\xe0\xb4\x87\x67\xa6\x55\xe8\xae\xa3\x57\x5f\xa9\x3b\xe0\xce\x72\xf0\x3b\x52\x4f\xeb\xe2\x37\x86\xd3\x98\xd5\x74\xd9\xca\x4e\x60\x55\xd0\x64\xde\xad\xe4\x50\x81\x76\x6b\x35\x66\x07\xef\xa8\x08\x0b\x29\x80\xd1\x05\x8b\xaa\x67\xcb\xdc\x1c\x87\xac\xc7\xbe\xe8\x7e\xbc\xeb\x51\xe8\x00\xf3\x15\x33\xe2\xaf\x33\xf6\xca\xac\xce\xbb\x71\xe9\x68\x4a\x31\x80\x70\x96\xd0\x0e\x6f\xa5\xc1\x27\x73\x80\xfe\x1e\xd1\x6e\x54\x40\x41\x0a\x17\x48\x60\x03\x3b\xda\x45\x96\xbd\xd8\xe6\xfe\x5c\xb3\x58\x66\x99\x43\x8d\x2e\xf9\xfe\xe9\x55\xc4\xed\xcd\xf3\xc1\x3f\x12\x11\xe8\x97\x2a\xde\xb0\x35\x4c\x18\xdf\xdd\x1f\x7e\x1f\x2e\x70\xbb\xfb\x41\x2a\x6b\x77\x08\x37\x39\x61\x0b\xed\x7a\x3e\x16\x3c\x04\x6e\x4f\x0f\x23\x0d\xf1\x2f\x22\xb4\x9c\x31\xea\xf9\xa1\x2a\x57\xf6\xab\x52\xd0\xee\x67\x56\x5a\x87\xfa\xf0\xe1\xa7\x9a\x83\x7c\x7b\x3b\x2d\xfd\xf5\x8d\x41\x0c\x06\x4b\xcc\xa3\xcd\x4b\x2f\xe2\xd1\x3f\x2b\x7e\x61\xcd\xf4\x4a\xc6\x7b\x70\x86\xb7\xf8\xc2\xe3\x4a\xed\xb8\x65\x24\xea\xb8\x6f\x2f\x54\xce\x8c\x89\x4d\xac\x58\x67\x0d\x51\x27\xd7\xb1\x18\x47\x71\xab\x3d\x62\xe3\xe5\x98\xbc\xbe\xbc\x3d\x26\xd3\xf7\xb7\xc7\x84\xe9\x68\xfc\x94\xbc\xcd\x13\xcd\xd3\x2e\x3f\x87\x05\x11\xf0\xfd\x77\xd7\x87\x46\x0d\x5b\x42\x92\xe5\x6f\xcb\x6f\x95\x52\xbd\xda\xe3\x1c\x0f\xa7\xe6\xf9\x2f\x71\x8c\x5d\x27\xd8\x4d\x51\xfc\x13\x84\x65\x8e\x8b\xa3\xc2\x6d\xba\xb3\xe8\x7b\x18\x84\xb0\xf1\xf2\x94\x8c\x08\xfb\x44\x23\x7d\x4a\x4e\x16\x52\x92\x91\x0d\x12\x3b\x25\x27\x73\x9a\x91\xab\x77\xb7\x97\xa7\x18\x80\xc6\x84\xce\xb6\x64\xdd\x25\x9e\xbf\xbb\x7a\xf3\x57\x4b\x39\xb7\x84\x71\x30\xc0\x50\x32\x3b\x80\x49\xd0\x8a\x6c\xfe\xc4\x59\x9c\xad\x63\x4c\x6e\xbb\xb6\xbf\xa1\x09\x8f\x69\x61\xec\x83\xc4\x0c\xec\xe9\xa6\x43\x4d\xdc\xca\x4f\x1f\x9c\xab\xe5\x8f\xdc\xde\x4e\x0d\x84\x3d\x06\x40\x05\x02\xde\x00\xba\x3f\xaf\x9a\x68\x88\x8f\x9d\x33\x07\x08\x6b\x47\x5c\xc8\x6c\x7d\xea\xc0\x3e\xcb\x9f\x3d\xfb\x2a\x32\x03\xc3\xbf\xd8\xa9\x2d\x36\xd4\xcb\xec\x85\xa8\x06\xab\x82\xe1\x0c\xc1\xc8\x8a\x23\x2c\x87\x1e\x59\x78\x7f\xd6\x0c\x38\x46\x47\xa8\xc9\x1e\xf5\x1a\x10\x00\x8f\xab\x46\xda\xad\x3f\xe6\xa0\x7d\x0b\x2a\xf4\x20\x48\xdd\x43\xf1\x68\xdd\x93\x67\x4e\xce\xdf\x4e\xfb\x46\x80\x00\x31\x6a\x5e\xbb\x4f\xa5\xbc\x46\x7c\x66\xb5\x36\x47\x13\xdb\x09\xc2\x94\x56\xc1\xb0\x5d\x54\x5b\xf4\x2b\x8c\xd0\xdf\x95\x69\xf9\xa2\xea\x9f\x2a\xfa\x39\x16\x5e\x73\x33\x4f\x9b\x68\x0b\xfe\x74\xf3\xd0\xe6\x65\x8b\x9d\xb2\x17\x26\x46\xed\x85\x61\xea\x7c\x1e\x24\x13\x29\x7c\x28\x01\x50\x22\xec\x6a\xba\x87\xb2\x06\x49\x4d\x06\xc0\x18\x95\x0f\x21\xaa\xd0\x31\xd6\x87\x95\xf5\x5e\x82\x6b\x52\xb3\x68\x25\x78\xb4\x5b\xb4\xac\xfa\x01\xb3\x28\x9a\xff\xf9\x3a\x95\x5e\x2d\xed\x3b\x23\x94\x27\x87\x8a\xf0\x54\x63\x1e\xdc\x82\x67\xec\x9e\x26\x49\xc7\x52\x91\x5a\x58\xa3\x6c\xae\x30\x70\x8a\x89\x85\xc4\x7c\x01\x1b\xa2\xd7\x7d\x35\x3a\x7d\x78\xf0\xd8\xe7\x1f\x86\x19\x66\x8c\xb1\x64\xec\x13\x38\xae\xba\x5c\x60\x78\x06\x72\x41\xbe\xc5\x28\x6f\xd8\x21\x8c\x75\x19\xad\x24\xb9\x46\xa6\x6d\xbb\x32\xa6\x5c\x2c\x55\xbb\x0f\xac\xd7\x7e\x7b\x10\x83\x34\x9c\x6e\xd3\x00\x90\xc9\xd4\xa5\xdd\x7c\x76\x60\x58\xc5\xb8\x85\xf2\xb8\x0f\xe5\xa9\xf3\x8c\x35\x42\xa1\x07\x04\x1a\x12\x27\x1a\x36\xf7\xd6\x3e\xed\x85\xf5\x16\xa5\xee\x20\x1f\x24\x5b\x97\xbd\xc2\x42\x49\x2c\xd5\xcd\x7d\x16\xd1\xd8\xed\xef\xd8\xf0\x5c\xdf\x62\x7c\xe5\xa7\x2f\x5b\xaa\xb6\x56\x2d\xd7\x63\x13\x7e\xd0\x6b\x77\xc7\xb6\x16\xb5\x53\xca\x6d\xa9\xbd\xf6\xe9\x8d\xca\x4a\xd8\x27\x9d\xd1\x0a\x4c\xe9\x5c\xe6\xba\x07\x23\x79\x2c\xcd\x51\x48\x6d\x6e\x5f\x3f\xcc\xb8\xc2\x87\x3b\x22\x7a\xe0\x91\xf6\xc8\xba\x81\x61\x0c\x0c\xe3\x3f\x9b\x61\x08\xa9\x9d\x58\xd5\x08\x96\xf6\xa8\x9b\x9e\xf1\x36\xfd\x22\x6d\x76\x02\x42\x9d\xc8\xd7\x11\x13\x6a\x1f\x6b\x06\x58\xc7\x3d\xee\x11\xda\xf3\xb0\xa0\x9e\xf4\xb7\x0a\xdc\xd9\x81\x0f\xdb\x47\xe4\xfd\x3b\x8e\x2d\xb0\xf0\xfa\x92\x80\x83\xc9\x18\xb0\x9e\x67\x6d\x96\x79\x1b\x9d\x6b\xcf\xf9\x12\x52\x8d\xae\x21\x53\xce\x65\x7d\xa1\xd9\xfc\x68\xce\x22\x9a\x2b\x1b\x13\xd7\xe1\x4a\x28\x96\x18\xb1\x0c\xc6\x28\xe2\xea\x9e\xa2\x29\xfe\xad\x4d\xff\xaa\x44\x09\x76\xb1\x58\x0c\x1f\x3c\xf5\x23\xe0\x8e\xfd\xf8\x37\xfc\x03\x34\x95\xca\x5f\x9b\x97\xe5\xdf\x37\xe7\xb7\xf8\x6b\xf3\x34\x76\xc4\x37\x5c\x33\x17\x64\x47\x85\x43\x10\xe7\x94\x85\x50\x43\xf2\x7c\xf4\xe2\x9b\x6f\x5a\x4c\xfe\x5f\x0e\xed\x31\x10\xa3\x1f\x37\xc6\xae\xdb\x3d\xb3\xd2\x88\x96\x2d\x0a\x24\x8e\x34\x24\xa4\x0d\x09\x69\xdd\x6e\xcf\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xa6\x1d\x0f\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x35\xed\x64\xa0\x65\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\x1a\x7e\x86\x84\xb4\x21\x21\xad\xfe\x19\x12\xd2\x86\x84\xb4\xe2\x33\x24\xa4\x0d\x09\x69\x43\x42\x5a\x70\xd0\x21\x21\xcd\x83\xc5\x90\x90\x36\x24\xa4\x0d\x09\x69\xd5\xcf\xaf\x99\x90\xd6\xd2\x7e\x81\x90\x91\xad\xe2\x1b\xfa\xad\x4f\x1b\xff\xa0\x9c\x60\xef\xc6\x03\xca\x77\x57\x6f\xd5\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\x1e\xea\x77\x87\x97\x37\xd4\xef\x1e\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\xf2\x33\x84\x4b\x95\x9f\x21\x5c\x6a\x08\x97\xfa\x4d\x85\x18\x0c\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x05\x1f\xfe\x0f\xa3\x65\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x05\x3e\x43\xb8\xd4\x10\x2e\x55\x7c\x86\x70\xa9\x21\x5c\x6a\x08\x97\x0a\x0e\x3a\x84\x4b\x79\xb0\x18\xc2\xa5\x86\x70\xa9\x21\x5c\xaa\xfa\x19\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\x95\xcf\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\xee\x35\xc3\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\x1e\xca\xb1\x0e\xe5\x58\x87\xfa\xdd\x43\xfd\xee\xa1\x7e\x77\xf3\xfa\x87\xfa\xdd\x03\xc3\x18\x18\xc6\x50\xbf\x7b\xa8\xdf\x5d\xf9\x0c\xf5\xbb\x87\xfa\xdd\xb5\xcf\x50\xbf\xbb\x59\x81\x1c\xea\x77\x0f\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\xe6\x7f\x86\x84\xb4\x21\x21\xed\x37\x95\xc4\x31\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x16\x7c\xf8\x3f\x8c\x96\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x16\xf8\x0c\x09\x69\x43\x42\x5a\xf1\x19\x12\xd2\x86\x84\xb4\x21\x21\x2d\x38\xe8\x90\x90\xe6\xc1\x62\x48\x48\x1b\x12\xd2\x86\x84\xb4\xea\xe7\x7f\x76\xfd\x6e\x28\xca\xdd\x55\xbd\xfb\x9d\x79\xa8\x85\x7e\x57\x0f\x5d\xe2\xd3\xc1\x75\x62\xd8\x1d\xd6\x4d\x06\x43\x89\x19\x14\x3c\x8b\xf1\x18\x6d\x27\x85\xe5\x77\xc5\x97\x46\x11\x9d\x1d\xc0\x78\xb3\x03\x60\x97\xf6\xd9\xd0\xd0\x74\x61\x14\x28\x0d\x02\x1a\x0c\x90\xc8\x7b\x96\xe1\x6a\x30\x8c\xd1\x5b\x9c\x22\x72\xcd\xb5\x36\x74\x97\xbb\x0c\x98\xd0\xa0\x91\x14\x8a\x63\xd9\x72\xb4\xf1\xcd\x0e\xb8\x58\x70\xc1\x35\x9b\x1d\x90\x11\x81\xe0\x39\x6f\x3b\x8e\xaa\xdb\x75\x92\x84\x2a\x3d\x26\xc5\xce\x82\x20\x31\x6b\xe5\x31\x13\x9a\x47\x34\xb1\x0b\xac\x8f\xc3\x05\xa1\x49\xba\xa2\x22\x5f\xb3\xcc\x7b\x0e\x2a\x86\x87\x46\xb5\xb4\xdc\x9a\xa3\x30\x42\x24\xa8\x9f\x22\x6e\x88\x7c\x3d\xdf\xb5\x14\xb6\x88\x8d\x35\x26\x7f\xeb\x9b\x69\x10\x51\x3c\x63\x4d\xae\xac\xce\xc9\xa3\x3b\xfc\x8f\xcc\x83\xf8\x6f\x96\x5c\x53\xba\x3d\xe0\xda\x74\x0d\x0f\x2c\x5a\x3a\x9e\xd7\x6c\x3a\x28\xd7\x61\x44\x87\x24\x91\xf7\x48\x0a\xd0\x82\x54\xd8\x54\x50\xb0\xfb\x33\x9a\x17\xf0\xb6\x7f\x4c\xb8\x66\x19\x05\xcd\x3e\x34\xf2\x6c\x46\x46\x98\xae\x64\x10\x65\x9d\xd2\x8c\x2b\x29\x8e\x09\xe4\x2c\x3a\xb3\x80\x1b\x72\x21\x25\x99\xd3\x0c\x6c\x15\xc5\x74\x7f\xd8\x73\xba\x72\x3e\xc3\xd9\xd9\xdf\x73\x9a\xfc\x09\x23\x6c\x9d\xa4\xca\x17\x56\x44\xe5\x0a\x9e\x71\x96\xf7\x62\xca\xf0\xbd\xfc\x05\xd6\x41\xcb\xb8\xb0\x79\xf9\xcf\x08\xff\x39\x1e\x8f\xc9\xbf\xbc\x15\xe8\x2c\x67\x2e\x51\xa6\x88\x35\xc5\x39\x7e\x22\xe1\xd8\x76\xeb\x72\xe8\x98\xaa\x5c\xab\xd9\x00\x17\x3d\x16\x17\x9a\x6c\xcf\xf5\xc2\x64\x6d\x0b\x0c\x1f\x89\xb7\xe6\x15\x55\x47\x30\xde\x47\xc3\x5c\x9e\x96\x53\xdf\x16\x33\x53\x5d\x9e\x8e\x77\x32\x7f\x00\x24\x0d\xd2\x7c\x3b\x44\x61\x9e\x94\x0b\x78\x16\xac\x53\xf0\xff\xfc\xd9\xb3\x17\x2f\xf1\xbf\xf8\x4b\xf1\xce\xcd\x4a\x66\x7a\x14\xf1\x2c\xca\xb9\x06\xa9\xca\xbe\x14\x9a\xe8\x9f\xff\x6c\x7d\x1b\xfc\x18\xfa\x08\x9f\x79\x5a\x3c\x94\xd2\x8c\x59\x89\x7c\x99\xc9\x3c\x35\x12\xf9\x6c\xa6\x69\x92\x1c\x05\xfd\x51\xb6\xa4\x3d\x46\xa5\x14\xf4\xc2\x8d\xe6\x70\x98\x26\x89\x67\x62\x82\x0b\xfa\x06\xf1\x01\x75\xa8\xb0\x7a\x44\xcd\xd5\x46\x3a\xe3\x22\x35\x7d\x92\xa9\x8e\xc9\xe8\x98\x7c\x04\x38\x9c\x8c\xc9\x0d\x5c\x39\x62\xaf\x5c\xe3\xa0\x6b\x99\x31\x92\x1a\xf1\x5f\x29\xbe\x61\x64\x8e\x39\x06\x5b\x67\xde\xb4\x86\x67\xc2\x54\x44\x53\x46\xa2\x15\xcd\x68\xa4\x59\x66\x97\x7d\x89\xa1\xda\xc1\xcb\x70\x04\x84\x7f\x4d\x63\x36\xca\x53\x44\x0b\xf5\xb4\x20\x47\x90\xd8\x66\x49\xc7\x3d\x9b\x1b\xc5\x81\x59\xe2\xe1\x9f\x78\xcc\xd2\x44\x6e\xd7\x4c\x04\xc9\xa9\x7d\x3f\xcd\x64\xec\x90\x14\xc6\x35\x77\x0a\x68\x52\x26\x85\x66\x22\xf6\x50\x9d\x46\x77\xf6\x8b\x7f\x99\xc7\xcb\xf1\xc9\x1f\xfe\xdc\x74\x03\x62\xb6\x71\xc3\xff\x81\xd4\x6e\x41\x88\x94\xb5\x49\x54\x55\x63\x60\x8b\xbb\xba\xc5\x12\xd8\x6e\xb7\x58\x60\xfc\x6a\xc9\x16\x42\xdb\x72\x1c\x0b\x71\xd4\x1a\x14\xb0\x3d\x87\x14\x6e\x91\xce\x56\x10\x72\x3b\xb7\xed\x11\x9c\x0e\x3d\x78\x2a\xf8\x26\xb8\x88\x79\x04\xaa\xe7\xfd\x0a\x12\xa6\x7d\x41\xd6\x8f\xca\xb2\x5a\x4e\x90\x4e\x99\x7b\x27\x6d\x03\x8f\x63\xfb\xd7\x5c\xea\xd5\x98\x60\xa0\x24\x70\x93\x4f\xa9\x11\x52\x74\xb2\xf5\x74\xa9\x23\x68\x3e\x12\x8c\x80\xf5\xe8\xa8\x20\x51\xc6\x6c\x7e\x86\xb2\xb7\x5b\x66\x44\xf0\xe4\xe9\xb1\xcb\xb1\x88\xd9\x82\xe6\x89\x56\x04\xb7\x65\x40\x97\xc5\x0d\x22\xb5\x96\xe4\xde\xd0\xca\x89\x55\xdc\xcc\x22\x2e\xed\x3f\xcd\x7d\xb4\x94\xb3\xe8\xc0\x81\xf1\x7e\x60\x5a\xb7\xd3\x84\x46\xe5\x0a\x6f\xd7\x88\xfc\xcd\xca\x45\x66\x29\x6e\x8e\x9f\x8f\x2d\x73\x30\x52\x26\xb8\x0d\xdc\x94\xd8\x27\xe5\x88\x8b\x28\xc9\x1b\x57\xbc\x62\x24\xa2\x46\xf2\x84\x01\xca\x61\x08\xb2\x67\x21\x8b\xcd\xc0\x70\x4f\x03\x2b\xb9\x6c\xec\xbf\x52\x5f\x5b\x65\x61\x86\x24\xd5\x87\x6f\xde\x67\x10\x3d\xea\x6b\xd8\x99\x10\x2c\x58\x81\xd3\xb0\x1a\x75\x90\x2e\x08\x44\xad\xaa\xac\x9f\x31\x6a\xee\x51\x74\x47\xe8\x92\x72\x71\x6c\xb1\x01\xdd\x1e\xc9\x3d\xdd\x2a\x1b\x05\x1f\xc4\x62\x17\xad\x80\x61\x0a\xc7\x44\xb0\x0d\xcb\x2a\xf8\x16\xd4\xee\x7b\xb6\xf7\x29\xa1\x40\x18\x30\x8d\xc2\xa1\x97\x4a\xa5\xf8\x3c\x71\x13\x97\x71\x58\xe6\x85\x9b\x94\x45\x61\x7d\x0f\xf7\xd6\x1c\x99\xd6\xae\x59\x36\x2a\x6d\x61\x5d\x6f\xf7\x5b\xe0\x19\xb1\xef\x6f\x57\x5a\x66\x74\xc9\xdc\x57\x4a\x53\x9d\x23\x60\xd0\xe5\xc4\xe2\x2b\xcf\x19\x70\xc7\x45\x6c\xe8\x90\x03\x69\x9a\xe4\x19\x4d\xca\x6f\x22\x29\xd0\x03\xac\x4e\xc9\xdf\x7e\x36\xdf\x98\xf1\x59\x6c\x33\x3c\xed\xb7\x33\x31\x1a\x8d\x66\x82\xa6\xdc\x25\x8a\x12\x9a\x72\xf6\x49\x33\x01\x4f\x8d\xef\xbe\x55\x63\x2e\x4f\x36\xcf\x67\x02\x67\x3c\xcf\x95\x96\xeb\x6b\x86\xae\xac\x0b\x06\xea\x16\xd0\xe9\x4a\x3a\x26\x18\x60\x88\xc0\x90\x57\xc5\xb4\x1a\x47\x59\x3c\x4e\x33\x69\x20\x10\x01\xd1\x19\xcb\x6c\x39\x13\x86\x9a\xc1\x1b\x20\xa2\x9c\x92\x86\xc7\xaa\x9e\x10\x5c\x4a\x19\x97\x8b\xdf\x26\x5c\xe9\xbf\xd4\x7e\x79\xc3\x95\xae\x02\xc8\x5b\x93\x85\x3b\x17\xcb\x3c\xa1\x99\xff\x93\xf9\x05\x08\x59\xb6\x61\xef\xc5\x9d\x90\xf7\xe2\x95\xc1\x14\x75\x4a\x16\x34\x51\x70\x62\x2a\x92\xe6\x50\x0b\xeb\x0a\x68\x7a\x1b\x07\x5e\xf3\xc7\xc8\x82\xc1\x40\x0f\x66\x8a\x56\x6c\x5d\xa6\xab\xca\x94\x89\xb3\xe9\xe4\xc7\xaf\x6e\xaa\xdf\xef\x06\xc6\xba\xf0\x63\x1b\xe2\x55\x4e\x39\x62\x7f\xcf\xf9\x86\x26\x86\xe0\x5a\xbc\xaf\xc7\x2c\x7b\xc8\xdd\x60\x3e\xf3\x4e\xbf\x8a\xcb\xd5\xaa\x16\x66\xa9\x36\x7a\x00\xa3\xed\x71\x31\x76\xc7\x2c\xb6\xdb\xc3\x75\x00\x35\xb1\xac\x80\x86\xec\x22\x72\x01\xdc\x1f\x6e\xc4\x18\x44\x04\x96\x29\xa7\x44\x46\x52\x6c\x58\xa6\x49\xc6\x22\xb9\x14\xfc\x1f\xc5\xe0\xca\xc5\x33\x40\x77\xaf\x1d\x46\xc2\x85\x66\x99\x11\x26\x80\x14\xa0\xd5\x76\x4d\xb7\x24\x63\x66\x1a\x92\x0b\x6f\x40\x17\x4d\xf5\xd6\x08\x91\x5c\x2c\xe4\x29\xd4\x1b\x52\xa7\x27\x27\x4b\xae\x1d\xe2\x47\x72\xbd\xce\x05\xd7\xdb\x13\xf0\xb0\xf2\x79\xae\x65\xa6\x4e\x62\xb6\x61\xc9\x89\xe2\xcb\x11\xcd\xa2\x15\xd7\x2c\xd2\x79\xc6\x4e\x68\xca\x47\xb0\x76\x01\x37\x6f\xbc\x8e\x9f\x64\xf6\xa6\xa8\xc3\x10\x9d\xd8\x25\x2f\x80\xda\x6d\xc7\x60\x30\xdc\x26\xe9\xa2\x94\x8c\x6c\xbe\x80\xb6\x0b\x25\xb9\xbe\xbc\xb9\x25\x6e\xf6\x60\x42\x33\x02\xbf\x7c\x53\x95\xe7\x60\x80\xc6\xc5\xc2\xc9\x33\x60\xd4\xf6\xd5\x7f\x64\xa9\x09\x0f\x88\xb6\x2a\x9f\xaf\xb9\x56\x5e\xa1\x1a\x39\x26\xe7\x85\xb5\x3b\x4f\x63\xaa\x59\x3c\x26\x13\x41\xce\xe9\x9a\x25\xe7\x54\xb1\x2f\x7e\x0a\x20\xd4\x8d\x0c\x6c\xfb\x9e\x43\x43\x72\x79\x93\x29\xaf\x20\x63\x0d\xc7\x56\xde\x47\xc3\x91\xaa\xd9\x4d\x2e\x19\xae\x4c\x3f\xa7\x3b\xb4\xad\xfc\xb8\x23\xad\x31\xad\x16\xd3\x78\x43\x1c\xfe\x4e\x0b\x40\x17\x2a\x38\x99\x16\x94\x10\xb5\xe2\x39\x4b\xa4\xc1\x2a\x69\x6d\x33\x2c\xe4\x50\x6d\xe6\xe3\xbf\x0b\x4e\x0a\x7c\x14\xfe\xf3\xc4\xa6\xb0\x9d\x12\x64\x60\x27\x9a\xad\x53\xa0\x57\x27\xf8\xc5\x48\xc8\x98\x8d\xb2\x39\x8d\xc6\x5b\xba\x4e\xcc\x1b\xe7\x57\x13\x12\x25\xb9\xd2\x2c\x23\x99\x4c\x58\xc1\x6d\xf1\xbb\x6b\xf8\xca\xe7\xd2\xf0\x36\xcd\xf5\x4a\x66\xfc\x1f\x18\x37\xe5\xb1\xea\x00\x2b\xb6\x53\x47\x82\x8f\xd2\x24\x5f\x72\x31\x13\x20\x1f\x5a\x46\x45\x53\xfe\xda\x30\x60\xb3\x1b\xb3\xf1\x9f\x11\x16\x05\xf5\x2a\x0e\x76\x64\x94\x2d\x55\xfe\x65\xf6\xe2\xff\x59\xa4\x90\xe0\x77\x1b\x96\xcd\xfd\x97\x97\x88\xd0\x7b\x4f\x78\x82\x87\x18\x1e\x34\x75\xae\x86\xfa\xb0\x61\x61\xa2\x6d\xae\x79\x22\xa3\x3b\xba\x40\xa9\xc6\xdf\x18\x4f\xe9\x1a\x7e\xac\x7d\xb7\xa2\x22\x4e\xfc\x07\xed\x31\x7a\xd5\x0f\x2a\x6f\xa4\x52\x26\x95\x2f\x50\xca\xd8\x7d\x90\xae\x23\x29\x16\x7c\xd9\x0e\x48\xfc\x23\xe1\xca\xfb\x0b\xd4\x3d\x56\xfe\x8d\x24\xb7\xfc\x3b\x66\x09\x33\x7f\xf7\xc4\xd6\xbb\x7c\xce\xca\xf8\xa2\x4c\xf9\x98\x3b\x13\xbf\xfc\xc2\x17\x84\xfd\x9d\x8c\xaf\xbf\x3f\x3b\x3f\x87\x15\x93\xd9\x81\x79\x64\x76\xf0\xaf\x7f\x99\xf1\x27\xa0\x9a\x31\x42\x1d\x68\x0c\x82\x17\x0d\x14\xeb\xa3\x83\xad\x56\x0a\x26\xf4\xb1\x79\x19\x5a\x30\x02\xc7\xd3\x8e\xf5\x37\x2c\xcb\xe9\xfd\x65\xf8\xcd\x17\xba\x42\xf5\x89\xfd\x8b\xf4\x84\x5c\x99\xfb\x00\x6a\xd9\xbd\x8d\x30\xd4\x92\xac\xa5\xe0\x10\x49\x2f\x33\x84\x3e\xf0\xa5\xbd\x2f\x82\x77\xd7\xea\xe8\x70\xef\x7b\xdb\xea\x08\x61\x71\xe5\x09\x99\xba\x8a\x7b\xde\xda\xca\x42\x68\xec\x13\x57\x1a\xfa\x93\x52\x45\x52\x9a\x59\x66\x70\xf6\x96\x94\xbb\xdd\x7f\xd1\x25\xb9\xd8\x03\x85\x8b\xed\x3c\xc1\x05\x14\x03\xdb\x7c\x4c\xc1\x53\x68\xf0\x0a\xbe\x17\xec\x26\xab\xc0\xe5\x6a\x40\x84\x48\x63\xee\xaa\x45\x7d\x75\x6c\x76\x74\xcf\x8c\x1a\xab\x48\xca\x32\x2e\x63\x1e\x11\x9d\xf1\xe5\x92\x65\xe1\x83\xd8\x9f\x74\x84\xae\x72\x7d\xcb\x6e\x97\xff\x6e\x42\xf5\x05\xa8\x49\xe0\xe8\xa6\x86\xd6\xed\xdc\x05\xca\xad\xfd\x97\xac\x69\x0a\x46\x69\xb9\xc0\xed\x60\x11\x8c\x29\x01\x1a\xf9\x68\xa7\xe2\x51\xdc\xa6\xe3\xd8\x59\xf9\x0e\x71\x59\x53\x41\x97\x4c\x91\x95\x54\xda\x0b\xb0\x7c\x94\x25\x56\xc6\xfc\x82\xe7\xf3\x84\x5c\x31\x16\x83\x75\x8f\x29\x80\x35\x3e\x1b\x62\x59\x8f\xb4\xb5\x46\x66\xf8\x88\x1b\xf4\x8e\xed\x2f\xf9\x9c\x9d\x97\xa7\x86\xec\x28\xcf\x0a\xe3\x27\xda\xff\xb8\x36\xd3\x29\x62\xb4\x14\xe4\xb1\x8f\xb3\x59\x83\x34\x1e\xce\x44\xfe\xec\xc1\x6d\x3f\x41\x8b\x9b\x59\x87\xbc\x17\xde\x5a\x76\x60\xf2\xc4\x42\x81\x50\x67\x43\x25\x7c\x41\x84\x14\x0c\xa9\xb6\x6a\x02\xd7\x13\x77\xc6\xbe\xfc\xb4\x0b\xc5\x27\x08\x45\x60\x03\xd1\xaa\x92\x07\x54\x00\x18\xc4\x85\x1d\x9e\xfa\x3d\x17\x68\x76\xfd\x42\xac\x55\x26\xec\x9a\x61\x4e\x8d\x3b\x9f\x96\xf1\xcd\x63\x01\xb6\xdf\x39\x8d\xca\x41\xa1\x30\x47\x33\xb2\x03\x54\xbd\x16\x3d\xc6\xf0\xe3\x73\x90\x80\xa8\xad\xd2\x6c\x6d\x21\xf7\x19\xda\x41\xbb\x04\xe5\xbd\x46\x2e\x28\x5b\x4b\x71\xc3\xba\x84\x27\x78\xf8\xd7\x12\x98\xcc\x64\x55\x21\xe9\xbd\xb2\x2d\xb4\xd1\x33\x51\x46\x56\x97\x01\x9e\xf2\x8e\x09\x65\xc3\x3a\x72\xaf\xa6\x94\xd1\x94\x9c\x02\xb3\xa7\x24\x52\xdd\xaf\x3a\x81\x39\xaa\x8f\x5f\x55\xc2\xad\x47\x21\xad\x29\x44\xbd\xca\x3b\xf7\x04\x34\xe9\x72\x91\x44\x00\xc9\xd5\xd2\xdc\x66\x90\x85\x8e\x51\x8c\x43\xe3\x94\x9f\x71\xff\xef\xd0\xc3\x9e\x10\x57\xca\xe0\x26\xe1\x4e\xbc\xca\xdd\xe9\xd8\x2b\x60\x3b\xdf\x5b\x9b\x80\xf3\x17\xb8\x42\x6e\x4f\x5c\x61\xae\xb5\xcb\xc5\xa9\xef\x22\xe6\x2a\x92\x1b\x96\x6d\xdd\x25\x6d\xdb\x55\xc1\x08\x61\x3d\x7b\x09\xbb\x7b\x41\x6f\x27\x4e\xb4\xc0\x8f\x06\x52\xfd\xde\x3a\x1d\xdd\x6e\x0a\x94\x9d\x4c\xd1\xc7\x4e\xe3\x0d\xcb\x34\x57\x25\x20\x5a\x57\xdb\x30\xea\xed\x36\x5d\x51\x35\x0e\x0b\xef\xe4\x7c\x72\x71\x4d\x68\xae\xe5\x28\x66\x9a\x45\x18\x74\x20\x80\xda\xd0\x78\x6d\x91\xad\xe4\xef\xc8\x51\x8c\x9c\xf5\x00\xfc\xc2\x97\xcd\xbb\xad\x28\xb4\xbf\x06\xd3\xa2\xcb\xa3\x88\xe2\x88\x43\xc2\x28\x58\x38\x8d\x4e\x65\x0d\x62\xef\x05\xdd\x50\x9e\xd0\xb9\x21\x80\x09\x5d\x7a\x80\x4a\x7d\x38\x3f\x71\x9e\x4d\xb0\xd5\x28\x4c\x4f\x8d\xaa\xf2\x80\x57\x9f\xd0\x5c\x54\xd4\x1c\x8a\x42\x88\xe3\x10\xaf\x7c\x42\x3e\xd4\xf9\xa4\x81\xb3\x17\xe7\xec\x57\xf9\xe0\x0d\xd7\xda\xde\x24\x2e\x96\x7d\x6e\x84\x7d\x3a\xad\x44\xa9\xf5\xbc\x12\x16\xc1\xe6\x5b\x07\x0e\xb3\x70\xe7\xf0\x2b\xf7\xff\xd9\xc4\xa7\x46\x6d\x02\xd4\x76\x4f\x01\xbc\x46\x45\x53\x97\x3f\x56\x9a\x82\x1e\xb6\xe6\x7e\x76\xa4\x02\x7b\xac\xe2\xae\xc8\x86\x66\x5c\xe6\x8a\x9c\x5f\x5f\xe0\x6d\x47\x5c\x7a\x24\x31\x19\x8b\xde\x2c\x58\xc2\x3f\x55\x8c\x3e\xe6\x37\xef\xdb\xaa\x2c\x09\x5a\xe0\x32\x4d\x19\xcb\xaa\xdf\x2c\x78\xa2\x2b\xdf\xe1\xf0\xf3\x65\xba\x33\x78\xf1\xdd\xee\xd0\x7b\x99\xaa\xea\x0a\x27\xce\x18\xc4\xdc\x9d\x9f\x15\xf3\x89\x70\xe3\x3b\xc1\xa7\x5b\x8d\x6d\x01\xbd\xaa\x55\x73\xc6\xc3\x02\x12\x05\x48\xf2\x00\x65\xf9\x7e\x17\x83\x72\xa5\x0b\xe1\x5d\xc4\x85\x38\x6e\xe8\x11\x20\x93\x14\x46\x36\xcf\x74\x9e\x7e\x09\x8d\xb7\x13\x83\x7a\x6b\x68\xcd\x6a\x58\x75\xaf\xf5\x0d\x06\x76\x45\x1a\xb7\x45\xda\xf8\x51\xcf\xe3\x09\x2c\xac\x1f\x13\xb0\x51\xb9\x66\x86\x47\xb5\xcd\xf5\xc3\x97\x5b\x08\x9e\x70\xd1\x6c\x52\xa0\x2c\x06\x09\x14\x2e\xf0\x1c\x08\x4f\x9e\x2e\x33\x1a\xdb\x74\xe0\xcd\x8b\xf1\x4b\x94\x24\x23\x2c\x1c\xf6\xc4\xc8\xcb\x19\x5b\xcb\x0d\x8b\x6d\xd0\xb5\x7b\x41\x66\x66\x87\x8b\x8c\xa9\x15\xe1\x42\x69\x9a\x24\x8f\xaa\xeb\xb7\xd0\x92\x2a\x99\xda\x07\xb3\xc2\x50\xa9\x00\xc4\x9e\xb1\xe1\x16\x5a\x9a\x47\xcd\x89\xa2\xd9\x90\x26\x89\x8c\x1e\x77\x93\xbf\x3d\xb3\xdb\x0e\xb3\x44\x74\x00\xe5\x12\x84\x1a\x23\x15\x5a\x4d\x0a\xe4\x26\x23\x18\xd6\xac\x09\xb3\xc2\xd4\x5a\xb1\x99\x3c\x16\x41\xda\xc7\x97\xe1\xeb\x52\xdf\x83\x11\xb7\x04\x77\xb5\x68\x31\x5c\x1e\xd8\xd1\x7c\x0b\xd7\x1a\xf1\x21\x93\xb9\xd9\xda\x72\x99\xb9\x8a\x02\x5f\xf0\xe8\x1b\xe5\x30\x7b\x2a\x88\x9b\x80\x8c\x6b\xbe\xb4\x44\xa7\xa2\x13\xc6\xa0\xb2\x43\x88\x4c\x00\xdb\x23\x2a\x6c\xf2\xc3\x93\xe2\x5a\x83\xe5\x47\xdb\x7b\x6d\xe4\x63\x20\x05\x50\xf5\xb3\xbc\xd5\x24\x57\xe6\x27\xc3\x03\x47\xe6\x12\x24\xb0\x88\x20\x28\x68\x9a\xaa\xd6\x9d\x97\x4b\x6c\x39\xbf\x40\x28\x51\xbb\xc1\xa0\xd9\x94\xd4\x69\x4a\xf8\x12\x46\x21\x1c\x7a\x7f\x43\x10\xbe\xd7\x6c\xfc\xf9\xe5\x17\x26\xe2\x7f\xfd\xeb\xc1\xe6\x9f\x2f\x0b\xd0\x8a\x3f\xf8\x4b\x80\xd5\x9f\x60\x7f\xe0\x56\x0d\x2f\xad\xf6\xb5\x7e\x90\x2d\x6c\x6a\x50\x44\x69\x4d\x05\x5f\x30\xa5\xdd\xcd\x51\x3b\x36\x32\x1b\xa8\xc1\xb2\xc2\x85\x04\x86\x35\x55\xb3\x45\x61\xdc\xa5\xb3\x90\x58\xb5\xdb\xd0\xcf\x27\x98\x0b\xba\xa6\xe0\xda\x37\x0f\x99\x27\x58\x86\xea\x26\x78\x41\x3c\xe5\xd1\x0a\x63\x85\x29\xae\x30\xe7\xd5\x43\xf4\x52\xd5\xcb\xe6\xd6\x0c\x32\x62\x63\xda\x5d\x0c\xc4\xb7\x6a\x44\xd3\xb4\x7e\x19\x5c\x50\x4b\x2d\xd5\x08\x52\x01\xde\xf8\xef\x37\x8d\x40\x2c\xdf\xba\xd1\x19\xd5\x6c\xb9\x3d\xb5\x0e\xe3\xf1\xfb\xca\xd7\xe6\x7a\xfc\xf2\x0b\xd1\xf2\xaf\x74\x9d\xd4\x7f\x24\xff\x24\x5c\xc4\x4c\x68\xf2\x35\x3e\xc7\x12\xc5\xcc\xbf\x48\x11\x0e\x72\x2d\x93\x84\x8b\xe5\x7b\x8f\x47\x66\xfe\x57\xc5\x2a\xd7\xf4\x93\x67\x41\x38\x25\xcf\xbd\xfb\x49\x88\xc3\x18\xb7\xcd\x7a\x08\x50\x52\xdd\x72\xf3\xa6\x09\x58\x20\xae\xa9\x88\x56\x2c\x1b\xb9\xf8\x1e\x8c\xb2\x29\x4d\x0c\x58\x87\x28\x5a\xb1\x38\x4f\x58\x36\x86\x7c\x88\x71\x59\x99\x09\x02\x9f\x32\x0e\x89\x67\xa3\x54\xc6\x65\xee\x73\x5c\x06\x64\x6d\xbe\x1a\x3f\xff\x6a\xfc\x35\x44\xbf\x13\x37\x75\xb8\xbd\x04\xe2\xfc\x31\xa1\x10\xcc\x03\xf9\x0d\x80\xc4\x76\x8a\xb3\x38\x96\x42\x61\x99\x23\x99\x30\xcb\xaa\xa0\xd2\xcf\xb1\x3f\xc8\x9a\x62\x5c\x10\x83\xa8\x7b\x48\xdf\x77\xab\x24\x34\x8e\x47\x90\x63\x25\x54\x0e\x96\x1b\xeb\x6a\xf1\xdf\x4f\x33\x2e\x33\xae\xb7\x6e\xe7\x50\x04\x40\xd8\x5c\x45\x0c\x1c\xf3\x7d\xbd\x36\x08\x33\xf6\x87\xe0\x0b\x33\x30\x84\x17\x83\x23\x87\x6d\x78\xa4\x2b\xe9\xf6\xfd\xa1\x7a\x4a\x0e\x6d\x44\x58\x25\x84\xcb\x9c\x64\x20\xbf\xa1\x3a\x8e\x54\xa7\x24\xe1\x22\xff\xe4\x1e\xf8\xe5\x17\x5b\x6a\xfb\xbf\xee\x8e\xc9\x7f\x6d\xc8\xe9\x9f\xc9\xf8\xca\x1b\x89\x38\xb4\xb5\x0f\xff\xd7\x1d\xf9\xd7\xbf\x4e\xc9\xec\xc0\xfc\x7b\x63\x7e\x3d\xf0\x86\x62\x22\xf6\x5e\x30\x9c\xdc\x1a\x97\xaa\x55\xba\xca\xd3\xaa\x9e\xf6\x5b\x7a\xc7\x88\xca\xb3\x2a\x41\x03\x80\x39\xf0\x40\xbe\x04\x4d\x12\xd4\x5e\x3c\xf8\x8d\x6c\x15\x9c\x53\x72\x25\x6f\xec\xc3\xe5\xaf\x10\xba\x9a\x51\x03\x1a\x72\x59\x71\x3f\xe1\xbc\xd9\x5d\x2b\x7e\xa0\x94\xc6\xca\xf3\xaf\x4c\x7c\xc7\xb6\xa7\x01\xa4\xec\x37\xbb\xbf\xee\xcb\x4f\x2c\xca\x75\xaf\x65\x77\x05\xb1\x58\xa4\xaa\xf0\xaa\xab\x10\xb9\xc5\xc1\x0a\x82\x62\x01\xc2\x05\x5f\xf3\x7f\x30\x12\xcb\x7b\xa1\xf9\x9a\x91\x18\x6f\x07\x75\x54\xca\xd7\xd1\x5c\x7c\xc8\x9f\x88\x66\x49\xe2\x73\x07\x2d\x49\x2c\xa1\xf9\x1d\xd8\xdb\xcb\x09\xdc\x2b\xb3\x83\x32\x7a\xb2\x8a\xa9\xb1\x8c\xd4\x49\x24\x45\xc4\x52\xad\x4e\x5c\x89\x60\x75\x02\x26\xb1\x54\xc6\x27\x4f\x5c\x15\x05\x2e\xc5\x48\x2e\xcc\xcd\x28\xf1\xc1\xfb\xed\x75\x46\x23\x36\x85\x08\x8a\x1b\x16\x49\x11\xab\x53\xf2\x6c\x87\xe4\x95\xf5\xfd\xd1\x48\xea\x1e\x70\x77\xff\x3c\xa1\x4a\x21\x00\x7f\xf9\x85\x8c\x51\x4a\x36\x17\x65\x5a\x7f\x80\xfc\xb3\x70\x78\xce\x0e\x90\x79\xa1\x84\xe4\x70\x6a\x76\xe0\xdd\x11\x23\x9a\x9f\x3b\x8e\xbd\x4b\xfb\x4a\x6e\xee\xd4\x44\x55\x55\xa7\x6b\xd2\x32\x68\x4a\x78\xc0\x46\x87\x19\xfb\xe3\x4d\xb4\x95\xcd\xad\x26\x66\xdb\x92\xb9\xde\x29\xbb\x6a\x36\x64\xf6\xf0\x05\xd9\xca\x1c\x0b\x55\xd1\x24\x63\x34\xde\xfa\x83\xda\xc5\x80\xb6\x96\x2b\xd6\x30\xb9\x0b\x2b\xb7\x4f\xc3\xcf\x3e\x96\xf3\x35\x04\x3f\xfe\xf2\xcb\xf8\xfc\x6a\x32\x31\x7f\xf8\x64\xc7\xfe\x3e\xcd\x93\x04\x53\x24\x4e\xc9\x64\x01\xbd\x35\x20\x08\xd8\x7f\x30\x92\xeb\x35\x35\x72\xc8\xdf\x66\x07\x27\x32\xd5\x27\x91\xe0\x27\x73\x2e\x4e\xbc\x75\x41\x6e\xda\xc1\xc8\xae\xa5\x50\x23\xf0\xc3\xc4\xe6\x55\x26\xd7\x95\xa8\x50\xe7\x58\x78\x4b\x53\x27\x6c\xfa\x9f\x27\xe4\x0c\xb2\x80\xff\xf2\xfe\xfb\xcb\xeb\xab\xcb\xdb\xcb\x9b\x8f\x37\x97\xd7\x3f\x4e\xce\x2f\x3f\xfe\xf0\xee\xe6\x16\x58\x45\xe0\xb7\xe9\xbb\xeb\x5b\xab\xe3\xca\x0d\xcb\x32\x1e\xc7\x0c\x09\x0d\xfb\x7e\xfa\x8a\xac\x9d\x4d\xc7\xff\x20\x14\xbd\x52\x88\xce\x01\x34\x72\x56\xc3\xfa\x1b\x2e\x59\x6d\xb7\x4c\x22\x13\x9b\xda\x56\xdc\x29\x79\x8b\xbd\x7a\x77\x71\xf9\xf1\xea\xec\xed\x65\x7d\x5c\x08\xe1\xde\x81\x14\x7e\x20\x43\x25\x04\xa9\xe2\xc7\x29\xd5\xab\x53\xb8\x72\x63\x73\x35\x20\x99\x3c\xb8\x94\xf3\xb3\x37\x93\xf3\x77\x1f\xaf\x2e\x6f\x3f\xbc\xbb\xfe\xcb\xe4\xea\xf5\xc7\xef\xcf\xce\xff\x72\x79\x75\xb1\xcf\x7a\x8a\xd3\xfb\x0b\xdb\x36\x2d\xab\x2a\xc3\x57\xc2\x1a\xfc\x0f\x90\x7a\x7c\xea\xa3\xcb\x6d\xf4\x1e\xdb\xc8\x24\x5f\xb3\xb7\xa1\xba\x63\x23\xb2\x36\x5f\xe3\xce\x4f\x36\x34\x3b\x49\xf8\x1c\xd0\xd3\x99\x89\xc3\x87\x5d\x5e\xf0\x91\x60\x7a\x14\xf3\xac\x6d\x5c\xf3\xb4\x8f\xf7\xe1\x31\x8d\x8e\x32\xe7\xa2\x3e\x98\x62\x51\x0e\xa4\x4c\x0a\xcd\x3e\xd5\xdb\x54\xa6\x19\xdf\xf0\x84\x2d\xab\x81\xcb\x24\x44\xaa\x2a\xba\x89\x51\x39\xe6\x5c\xd0\xac\x52\xaf\x00\x5d\xfd\xe6\xb7\x9a\x0a\xb2\xe0\x09\x64\x00\x82\x12\x22\xaa\x97\xc0\x61\x85\x1d\xdf\xe8\x5a\xbf\x2e\x15\xb1\x13\x0f\x34\xc3\xdb\xc8\x95\xad\x39\xe3\xce\xda\x3f\xc7\xc2\x6e\x37\x6e\xb8\xde\x57\x93\x8f\xe7\xef\xae\x5e\x35\x93\x18\x23\x6a\x3e\x7f\x36\xb2\x06\x2f\x33\x36\x18\x1d\x0f\xea\xab\x70\x06\xc5\x1a\x36\x41\x1e\x2b\x9c\x59\x13\x4e\xd5\x97\x63\x49\x0d\x2c\x6b\xf2\xfa\xdf\x4a\x66\x04\xff\x68\xb7\xf3\x31\xf4\xe8\x13\x72\xc3\x30\xad\xc5\xdc\x7a\x28\xfd\x53\x64\x14\x43\x9c\xf2\xb7\x0a\x75\x76\xf3\x53\xc3\x8e\x7f\x03\xa4\x1e\x53\x09\xde\xde\xbe\x27\x56\x8c\xdd\xd0\x8c\x1b\x5d\xb7\xf9\x8c\xde\xde\xbe\xff\x77\x1e\xcc\x86\xe9\xd5\xc7\xb5\xce\xeb\xfb\x98\x66\x6c\xc3\x84\x6d\x3f\x5b\x52\x43\x90\xd3\x54\xc2\x18\x44\x8e\x2e\xa4\x79\xaa\xde\xa6\xda\xed\xee\xe6\xcd\xe5\xe5\x4e\xaf\xf7\xe2\x22\x60\x22\xdf\xc1\x83\x38\xce\x67\x71\x86\xe0\x60\x4c\x47\x8e\x7f\x8d\x77\x6a\xc6\x94\xc3\x05\xb8\xd6\x67\x32\x1a\x23\x33\x7b\xf0\x5d\x63\xb5\x4e\xac\x19\x1c\x31\xa5\x68\xb6\x05\xf2\x83\xc2\xb7\x02\xe3\x75\x19\x8e\x65\x08\x25\x74\xd5\x4c\x13\x2a\x2a\x83\x43\xf1\x9d\x79\xba\x20\x54\x93\x13\xb5\x55\x27\x0b\x75\x02\x7f\x8a\x98\x44\x90\xec\xf9\x02\x7e\xca\x72\x27\x4f\x9e\xe0\xd7\x63\x57\xd3\xd4\x9a\xc8\xb8\xe6\x34\xe1\xaa\xcc\x60\x47\xbd\xae\x6a\x11\x30\x92\xb8\xd2\x46\xfb\x93\x99\x26\x0b\xaa\x56\x20\x72\xc3\x22\x84\x24\x0b\xca\x13\xa3\x09\x03\x71\xcf\x32\x99\xa9\x63\x8c\x16\xd7\x24\xe6\x2a\xcb\x53\x88\xcd\xf2\x12\xe5\x85\xeb\x59\x58\x67\x03\x0e\xb7\x66\x07\x00\xa9\xd1\x3c\x5d\x2c\x54\x15\x8b\x4a\xce\x69\x54\x9a\xc7\x62\x9d\xbe\xa6\x89\x32\xb7\x01\x8d\xfd\xa7\xd9\xfc\x08\x37\x5f\x63\xa7\xbd\x51\x1a\x8f\x28\x8c\x79\x6a\xab\x46\xbb\xbf\x3d\x21\xdf\xf3\x98\x67\x18\x86\x44\x13\xcc\x20\xb7\x8e\x39\xe8\xd7\x08\xc6\x87\xa2\x4e\x90\x60\xf7\x38\x21\xb9\x67\x64\x4d\xef\x58\x1d\x33\xd2\x4c\xa6\xd4\x16\x6a\x96\x05\x29\xde\x9d\x55\x49\x67\x2c\x22\x32\xd7\x09\xdf\xd8\x4c\xd4\x2a\x26\xef\xb0\x6e\xdc\xac\x9d\x03\xec\xa8\x95\xe5\x77\x09\x98\x25\x9e\x86\x61\xb4\xa1\xd9\x28\xcb\xc5\x28\xfc\xcc\xa3\xc0\x6a\xe7\xaa\xfc\xa6\x40\xf6\x84\x00\x96\x91\x93\x34\x93\xd1\x49\xa9\x50\xdb\xb2\x62\xb9\xca\x69\x92\x6c\x6d\xd9\x0f\x98\x38\xcd\xe4\x32\xa3\x6b\xd8\x9b\xc1\x6b\xf3\xe2\x98\x4c\xf4\xa1\x4f\x65\x60\x0d\x42\xa1\xd4\xbb\x3d\xae\xcf\xe9\xa8\x01\xf8\x00\xcb\x2b\x72\x8c\x69\x37\x66\x3d\x99\x94\xba\xa0\x38\x0b\xd5\x00\x49\x2d\x09\xd5\xda\x88\x34\xe7\xb7\x6f\xbe\x77\x4b\x33\x72\x78\x66\xf6\x9b\xd4\x1b\xc8\x55\x11\xc4\xad\x3e\x8c\x1a\x4d\xbf\x1a\xfd\xff\x9d\x48\xb6\xbb\xa2\xe1\xc3\x68\x7a\x14\x36\x7d\x5c\xe7\xe0\x48\x0c\x38\x35\x0a\x31\xce\xb3\x32\x81\x44\x57\x6b\xcd\xfe\xc4\xb7\x9c\x38\xc8\xd4\xe2\x41\x0d\x5d\x07\xd7\xab\x72\xa3\xfa\xef\x1b\x44\x08\x50\xd1\x80\xf9\x8c\x3c\x2a\x05\xfd\x7d\x6b\x13\xef\x15\xf3\x8f\xf6\x6c\x3a\x71\xae\x2b\xa3\x6e\x1b\x01\xca\xf0\x6e\x88\x8e\x69\x10\xa1\x2e\xce\x6e\xcf\x6e\x6e\xdf\x5d\x5f\x7e\xbc\xfd\xeb\xb4\x59\xa9\x28\xb7\xb0\xab\x4c\x7c\xa0\x5c\x17\xc1\xea\x5d\xf3\x7d\x38\x9b\xdc\x7e\x7c\xf5\xee\xfa\x63\x31\x71\xe3\x9c\x00\x80\x9d\xd9\x8c\x14\xbf\xb7\xe0\x6e\xa4\xf5\x7f\x8f\xb0\xbe\x92\x52\xb1\xe2\x44\x98\x70\xa6\xbf\x26\x9d\xea\x3f\xcb\x82\x03\x5b\xb4\x69\xcd\x50\xdb\xca\x68\x90\x50\x4c\x71\x81\xe2\xa3\x57\xc1\xca\xfc\xde\xb0\xe9\x37\xef\x6f\x6e\x2f\xaf\x3b\x30\xf0\x5b\x75\x3c\x5f\xa6\xbb\x08\x71\x56\x46\x4b\xa3\xc4\xfa\x7a\xea\xb5\x6f\x6b\x80\xf3\xa4\x59\x6d\xa0\xb9\x96\x38\xdc\xee\x5c\x97\x02\x44\xc6\xc9\xb4\xfe\x7e\xed\xfc\x26\xd3\x1f\xbf\x9e\xbe\x7b\xf7\xe6\xe3\xee\x93\xde\x4c\x67\x50\x72\xa7\x71\x16\x99\x91\x0b\xae\xe0\x9f\x3f\xfe\xf4\xe6\xec\xca\x21\xbc\xb3\x97\xdb\x44\xba\x76\x4c\x2a\x56\x02\x43\x34\x2e\xe5\xca\x68\x59\x9f\xb1\x92\xcd\xcb\xde\xcb\x79\xf9\xf0\xe5\x98\xbb\x6f\x54\x5f\x20\x36\xb9\x10\x2c\x21\x31\x83\x18\x7d\x48\x69\xe0\x0b\xc2\x53\x9e\x82\x0e\x01\x0b\x8f\xc3\x6b\x79\x75\xf9\x66\xf2\x93\x39\x9a\xab\xc9\xf4\x37\xaa\x1c\x57\x76\xba\x72\x60\xaf\xec\xb9\x01\xd0\xb8\x39\x78\xfe\x3f\x64\x6f\x1f\x78\xc6\x96\x39\xcd\xe2\x3d\xf6\xf7\x61\x72\x7d\xf9\xfa\xfd\xd9\xf5\xc5\x6f\x74\x8f\xb7\xd5\xdb\xf1\x35\x5c\x0d\x2f\x30\xaf\x0c\x0a\xae\xe5\xf9\x8d\x21\x0d\x64\x32\x2d\x9a\xea\xd6\x47\x8e\x56\x52\x19\xb9\x03\x03\x04\x8c\x9a\x41\xc5\x92\x8d\xc9\xf9\x8a\x8a\x25\xd6\x86\x71\xdd\xc3\x6c\x7c\x68\x25\x6a\x0c\x46\x5d\xd1\xcd\xce\xb8\x42\x5a\xd7\xaa\xed\x3f\x66\x2b\xf5\x2c\x68\x92\xb8\x1a\xce\xa3\x91\x8d\x5f\x19\x45\x3c\xae\x2b\x13\xa1\x70\x88\x4b\xaf\xa8\x1d\xd3\x3b\x24\xe9\x7c\x72\x71\x7d\x52\x27\x0c\xe6\xcb\x99\xf8\xe5\x97\x11\x41\x97\xed\x51\xc2\x04\xf9\x2f\x33\xa1\x7a\x4a\x5e\x90\xaa\x98\xd8\x4c\xee\x70\x98\x00\x62\x58\x6f\xfc\x82\x67\x4a\xdb\x71\x2b\x7e\xf9\xa6\x61\x5f\xf6\x1a\x36\xa1\xf5\x51\xcd\x4e\x58\xa2\xd8\x63\xad\x7c\x6c\xf9\xad\x79\xcc\x9b\xc1\xf7\x48\xbb\x03\x71\x34\x1b\x8c\xcb\x89\x5c\x02\x7a\x28\x89\x79\xac\x3a\x31\x5f\x29\x08\x57\x6a\xe2\x92\x76\x69\x17\x93\x9b\xb3\xef\xdf\x5c\x7e\x7c\x35\x79\x73\xf9\xf1\xcd\xbb\xd7\xaf\x27\x57\x61\x53\x6f\xbb\xd4\xf6\x8a\x25\xfc\x93\x57\x61\x48\xa2\xf6\xe8\xae\x09\x96\xd7\x36\x5f\x9f\x9d\x9f\x5f\x4e\x6f\x5b\xef\xff\xc5\xe5\xab\xb3\xf7\x6f\x6e\x2f\xaf\x2e\xa6\xef\x26\x57\xb7\xb7\xef\x8c\xe4\x7e\x76\x7e\x3b\x79\xd7\xcc\x54\x70\xd8\xdd\xb5\xed\xe2\xed\x8d\xad\x2b\x1a\xe7\x34\x51\x9a\x46\x77\x0f\x40\x48\xc7\x64\x7e\x7c\x79\xf3\x7e\x6a\x74\x87\xbd\x20\x56\xca\x29\x2f\x1b\xde\xf3\xc4\x94\x5e\x98\x7b\x75\x76\xfb\xf1\xdd\xfb\xdb\xd7\xef\xfa\x1c\x5e\x23\xd2\x96\x48\x05\x3c\x5f\x0a\x4f\xfd\x68\x3d\xb0\x3e\x80\x28\x0c\xb6\x8d\x18\xbd\x7b\x54\x50\xa0\x0e\x33\x2f\x0c\x89\xc1\xc9\xde\xbc\x7b\x6d\x70\x75\x7a\x76\xfb\x03\x5a\x01\x05\xb3\x39\x78\x78\x1f\x00\x11\xdd\x85\xd0\x12\x2e\x48\xdb\xe2\xbd\xf1\x1a\x17\x6f\x26\xe9\x83\x5b\x4d\x0b\xbe\xb9\xfc\xf1\xf2\x7a\x72\xfb\xd7\x9b\xbf\xde\xe0\x9a\x2d\x0d\x07\x42\x5f\xe4\x84\x8b\x85\x6c\xdd\x89\xda\xaa\x44\x2e\x3b\xf6\xe2\x4d\xd5\xb8\x9d\xb6\x2b\xec\xcd\x37\x3b\xb8\xa7\x99\xe0\x62\xd9\xeb\x5a\x05\xf7\x7b\x7e\x7d\x79\x79\x65\xc6\xfa\x80\x23\xed\xee\xb8\xef\x76\x60\xa4\xc6\x1d\x7d\x08\x2f\xb4\x3a\xdc\x0f\x97\x67\x6f\x6e\x7f\xb8\xbc\x32\xf4\x2e\xac\x73\x35\xd3\xb8\xb6\x0d\x4f\xa6\xb7\x66\xc8\x1b\xab\xcd\x81\x35\x2a\xd7\x98\xae\x57\xde\x64\x5b\x62\x5a\x2c\xc0\x32\xad\xda\xef\x53\x65\xc0\x56\x6d\xa6\xba\xd4\x87\xba\x13\x42\xa1\xe3\xee\x7b\xac\x04\xb7\x23\x4d\x45\x69\x7e\x4a\x5e\x7c\xf3\xac\x12\xbd\x92\xf0\x05\x8b\xb6\x51\x52\x6f\x72\x91\x66\xec\x46\xcb\x74\x67\x10\xf6\x69\xa7\xf2\x1a\xf1\x4c\xe7\xbb\xbf\x8c\x88\x1f\xc3\x52\x37\x3d\xb9\x67\x46\x6a\x95\xeb\xf8\xff\x67\xef\x5f\x97\xe3\xc6\xad\xbd\x71\xf8\xfb\x7b\x15\x88\xfc\x54\xd9\xde\xaf\xba\x65\x8d\x67\x9c\x19\xa5\xf2\x41\x23\x69\x66\xba\x62\xcb\xbd\x25\xd9\x93\x5d\x51\xb6\x8c\x26\xd1\xdd\x7c\xc4\x26\xb8\x79\x68\xa9\x93\xcc\x53\x73\x19\x3b\x55\xc9\xcd\xcd\x95\xfc\x0b\x6b\x01\x24\x48\x02\x24\xbb\x75\xb2\x64\xb0\x2a\x19\xb9\x09\xe2\xb0\x00\x2c\x2c\xac\xc3\x6f\xf1\xab\xa8\xda\xb7\x25\x8b\x58\x9a\x8e\x13\x3e\xa9\xf7\xcf\xd8\x0f\x5b\x2f\xba\xfb\x30\x20\x03\xd8\xbd\x03\xd1\xa6\xe1\xe5\x24\x48\x7c\xc3\xbb\xb8\xea\x9a\xb5\xfb\xaa\xfa\x5a\x5a\x53\x0e\x59\x48\x57\xd6\x42\xd2\x58\x72\x36\x4f\x58\x3a\xe7\xa1\xbf\x47\x6a\x87\x4c\x16\x2c\x18\xcf\x33\x4b\x05\x09\xa3\x7e\x70\xdf\x54\xaa\xb9\x52\x55\xc9\x64\x78\xd9\x41\xa7\xf6\x11\xb6\xd8\x54\x9e\x41\xc2\x7f\x85\x71\x23\xd8\x95\x16\x98\xb3\x3f\x1e\x09\x01\x1f\x14\x20\x34\x6c\x1e\x88\xb7\x68\x14\x24\x15\xf5\x72\x81\x59\x6a\x6b\x2d\x0c\x26\x3b\x0b\xee\xe7\x06\x34\x74\x6c\x26\x0c\x26\x03\x4b\x01\xbb\x16\xbb\xde\x4a\x92\x47\x3b\xd7\xc8\xbb\x86\x21\x17\x62\x93\xa9\x29\x59\x62\x60\x2a\xb1\xc6\x90\x6e\x6e\xb3\x59\xb3\x31\xf0\x40\xea\x68\x4c\x90\x71\xa3\xc6\xb0\x0a\x54\xb5\xa7\xab\xa8\x61\x4a\x30\x8d\x5c\x6c\x18\x3a\x6b\x40\x74\xe2\x12\x2d\x94\xd2\xdb\xe4\xca\x18\x22\xb6\x90\x89\xd6\xd0\xc6\x5b\x5a\x80\xeb\x56\xbb\x94\x83\x8d\x0a\x4a\x23\xe6\x77\xbd\x39\xc8\x43\x90\x11\x34\x1c\xf1\xa4\x69\x49\xc1\xc1\xa1\x25\xb5\x65\x5c\x65\xa3\xe6\x0a\xc4\x56\x08\xf9\xcc\xb4\x15\x1a\x73\xc5\x67\x85\xfd\xa7\xea\xf6\x44\xac\x2b\x1a\x77\x7d\xd5\xb4\xa2\xa2\xeb\xf5\x08\x93\xf2\xfd\xa0\x7d\xf3\x88\x2d\x0e\x7d\xaa\xb1\xa6\x96\x2d\x39\xe8\x5c\xb8\xed\x95\xda\x36\xc5\xa0\x73\x8d\x76\xd7\x6b\x5a\xff\x83\x8e\x3d\xdd\x5e\x6b\x3b\xbf\xc0\xd0\x8f\x1f\x82\x90\xbd\x4f\x0e\x2a\xd1\x92\x65\xbb\x4d\xc3\x75\x7b\x8b\x72\x89\x99\x1a\x3a\x54\xcb\xd7\xde\x5a\x63\x05\xf7\x6a\xac\xb1\x9e\x6b\xed\xe9\xeb\x6d\x51\x5a\x58\x2b\x56\xd3\x1a\x50\x8e\xe6\x9a\x50\xf5\x89\xb6\x5a\x45\x0d\xab\xd6\x64\xb5\x6c\x1f\x50\xb5\x74\x09\x6e\xa2\x9c\xc6\x0e\x8e\x47\x26\x1b\xa0\xd9\x4b\xa6\xbd\x29\xa3\xef\xcd\xa0\xfd\x4c\x6c\xaf\xd1\x72\xd6\x96\xa3\x90\xb0\x2a\xe2\x3c\x0f\xf9\xcc\x44\x31\x0b\x03\xea\xb1\x75\x2c\xec\x48\x99\xd4\x65\x2e\x85\x82\x83\xc2\xbd\xa0\xee\xac\xae\x07\x3b\x4b\xd7\x9e\x8a\x09\x17\x16\xc7\xd5\x9c\x45\xf5\xc8\x51\xad\xa2\xaa\xc3\x7b\x11\x59\xae\x05\x95\xeb\x35\xaa\x40\xd4\x54\x61\x4e\xeb\x1e\xe9\x76\xdf\x82\x41\x2f\x67\xdc\x9e\x0c\xc7\xe8\xf2\x5b\x4e\x9a\xd4\xa7\xc6\x2c\x81\x10\xaa\x0f\x51\x70\x4d\x0e\xb9\x90\xcf\xc8\x29\xaf\xe5\x58\x6e\x3f\x65\x2d\xfd\xe9\x64\x0e\xa4\xc9\x7d\xb5\x83\x19\x42\x17\xbb\xc2\x4f\xf4\xd8\xbf\x32\xd0\xb3\x1e\x3a\xb9\x79\x30\x60\x35\x44\xf5\xae\x7b\xd3\x2f\xa6\x73\xdd\xb0\xd9\x3a\x1e\x5b\x11\xe8\x79\xca\x98\x0e\x29\x3e\xcf\x27\x43\x8f\x2f\x76\x2a\xb1\xdf\x3b\x4d\x34\x37\x63\xbc\xa5\x8c\xca\xd4\xd2\xfa\xac\x83\x65\xb7\x71\x34\xa6\x01\xaf\x4e\xc5\xaa\xa1\x29\xa1\x82\x9f\xab\xd2\x6e\x62\x90\x09\xa4\x37\x08\x19\xa8\x4f\x97\x0c\x59\x71\x24\xad\x27\x09\x8b\xc3\xc0\xa3\x29\xc4\x41\x6e\x14\xe5\x69\x1a\x64\x5a\xc6\x7a\x96\x1b\xe4\x84\x95\x71\xfd\x5d\x61\x96\x9d\x64\x24\xa4\x8d\x94\xa4\x4f\xa4\xa6\xad\xda\x67\x64\xdf\x97\x8e\x47\x2a\x96\x09\x30\x4b\x93\xcb\x5a\x28\x5b\xcc\xcb\x78\x43\x73\xbc\xe5\xbd\xc7\x20\x4a\x1d\xf4\xf0\xac\x0c\x08\xd4\x14\xb4\xd5\x30\x41\x2d\xda\x56\x2f\x5e\x84\xda\xbe\xc1\x50\xdb\x86\x9a\xd7\x16\x6c\x68\x56\x6e\x69\xa5\x95\x4d\xd8\x8a\xde\xcc\x09\x66\x77\x08\x19\xb8\xa9\x25\x79\x64\x0b\x4e\xfc\x52\x43\x1b\xe1\x73\x84\x07\xe0\x21\xab\xad\x27\x8c\x30\xd7\xab\x6a\x1b\x66\x47\x65\x72\x62\x06\x35\xa7\x5e\x73\x9d\x52\x1b\xaf\x2d\x92\x1b\x87\x53\xda\x76\x67\x23\xb4\xf2\x26\xf1\x86\x35\xb0\xd8\x5e\xa1\x87\x85\x81\xd3\x14\x7d\x68\x74\xbf\x1b\xf4\x63\x67\xa4\x1a\x71\x53\x16\xb8\xa1\xf3\x5b\x43\x3d\x25\x3d\x8e\xd0\x27\x53\xdf\x80\x19\x17\x7b\xce\x72\x37\x97\x1a\xef\x8b\x83\xf7\xc7\x67\x27\xef\xdf\xbe\x3d\x3a\xb1\x99\x06\x9a\x5a\xba\xb5\x5c\xc9\x2e\x8d\x99\x96\x6f\x53\xef\x9a\xa7\x09\x6a\x15\xe7\xcc\xbb\x1c\x54\x61\x71\xcb\x62\x83\x9a\x73\xeb\x53\xd3\xab\xf6\xa4\x42\xd2\x49\x85\x7b\x12\x1a\xd7\x91\xa6\xea\xa2\x63\x15\xea\x03\xe5\x10\xc1\xbb\xc7\xdc\x27\x87\xe8\xfd\x1f\xf0\x88\x7c\x9f\xfb\x33\x86\x9e\x8a\xe5\xfe\x83\x8b\x1f\xba\x83\x7e\x9b\x16\xbe\x6c\xfb\x79\xc6\x53\x8f\xca\xf7\x00\x3f\x50\x1d\x22\x5e\x21\x34\x99\x71\xcc\xfd\xb2\x29\x6c\xe9\xe1\x85\x47\x03\x1a\xc6\x2d\x49\x81\x5b\xdb\xff\x3f\x42\xc8\x96\x47\x23\x1a\x0e\x96\xbb\xc3\xdd\xd7\x5b\x7b\x64\xeb\xe6\xd9\x22\x3e\x0b\xac\xe3\x09\xcb\x68\x1b\xf8\x4a\x15\xeb\xf8\x51\xe1\x01\x3f\x69\x08\x5d\x87\x54\xeb\x90\x6a\x1d\x52\xed\x67\x83\x54\x7b\x3b\xa8\xb4\x77\x80\x34\xbb\x2e\xa8\xac\xc3\x87\x25\xfd\xf0\x61\x9f\x00\x0c\x6b\x12\x7c\x71\x30\xac\x6b\xc1\x3a\x4a\xd9\xe8\x0b\xc1\x76\x1c\xac\xd7\x45\x28\x59\x36\x82\xb5\xec\xc9\x25\x2b\x2f\x2b\x3f\x84\x14\x9c\xdc\x2b\xc3\x79\x46\xc4\x75\x5f\xe1\xbe\x19\xb4\xd9\x1e\x4f\x18\x4f\x77\xa6\xf8\xf1\xce\x24\xe4\x13\xa9\x11\xda\x39\xe4\x5e\xbe\x50\x59\x58\x51\xd1\x2d\x8b\x49\x94\xc9\x45\x78\x47\xd2\xb0\x6c\xc6\x96\x68\xb0\x5c\x69\xa5\x3b\xe1\x46\x09\xc4\x36\xa9\xb4\x85\x4f\x58\x58\xc3\xc6\xad\xf4\x39\xc8\xe5\xe4\x8b\x5d\x02\xcc\x6f\xda\x5c\x05\xe5\xad\x26\xa2\x61\x6d\xe1\x9a\xee\x33\x6b\x27\xe6\x69\xbb\xd6\x88\x6b\x5c\x39\x9d\xb7\xba\x45\x8b\x6a\xd7\xda\x9e\x32\xfa\xb8\x03\x11\xb4\xa0\xa7\xc2\x88\xee\x4d\xce\xbb\xe5\x77\x82\x9c\xc5\x5d\xf1\x0e\x18\xde\x2d\x13\xf3\x16\xb9\x5c\xa1\x9b\x81\xac\xa7\x40\x7b\x95\x54\x7a\xf9\x7a\xb8\x3b\xdc\x15\xbf\x2b\x06\xe7\x73\x2f\x6d\x9e\x7e\x3b\xa2\xe0\x4e\xc2\x42\x46\x53\x96\x3e\x2b\x3f\xab\x43\xba\x82\x22\x01\xc3\x5d\xa7\x3c\x0c\xf9\x95\xb8\xa1\x15\xe9\x25\xf5\x54\xdd\xcf\x08\xd1\x11\xb3\xf7\xca\x3a\x8b\xdf\xbd\x28\xa8\xfe\x5c\xe1\xb8\x7b\xcb\x57\xc3\xef\xc4\xab\xaa\xd2\xe9\x40\x85\x13\x91\x20\x45\xfb\x7b\x91\x94\x25\x4f\xc0\x38\xc7\xc2\xe9\x00\x44\x4a\x5f\x52\x43\x17\x09\xca\x6d\xad\xea\x69\x2a\xd2\xec\xeb\xab\x88\x4c\xb2\xcd\x6b\xf1\x19\x5e\x62\x20\x79\xf6\x94\x7a\xa5\x1b\x09\xee\x0d\xe5\x6b\x40\xce\xf3\x57\xaf\x5e\x7b\x03\xf8\x0f\x02\x0d\x10\x99\x98\xd9\x2b\xef\x66\xcf\xc8\x68\x4a\x42\x36\xcd\xc8\x24\xa4\xd1\xe5\xb6\x20\x7f\x24\xb1\x06\x54\xfd\x41\xaa\xc2\x94\x4a\xd7\x01\x41\xf7\xe7\x29\xd6\xa0\xd4\xee\x10\x4e\x0e\xb5\x42\x4f\x2e\x82\x29\x0c\x02\xc3\x5c\xc4\x2f\x23\x55\x25\x46\xba\xc8\x7b\xef\x9c\x65\x73\x96\x08\x41\x2b\xe2\x19\x9a\xef\xd2\xff\xc9\x19\x48\x5f\x59\x42\xa7\xd3\x00\xfc\x65\x7c\x96\x66\x12\xd5\x30\x85\x92\x18\xc6\x84\x95\x28\x23\x8f\xbc\x24\x40\x27\xca\x6a\x74\x27\xef\xea\x2d\xb0\x8a\x98\xa4\xc4\x5b\x1b\x70\x12\x81\xef\xc0\x78\x81\x5b\xf0\x99\x4c\x4b\x8e\x1e\x1f\x81\xca\x4f\xa7\x82\xbd\xc0\x17\x5c\x88\xc9\x1e\x40\x29\xc4\x5c\x66\xc1\x44\x1a\x35\x10\x8e\xf6\xc8\x3f\x06\x78\xd4\xfc\x5d\x9d\x38\xe7\x5b\x62\x35\x9c\x6f\xc9\x90\xd9\x41\xcc\xfd\x81\xfc\xe8\x7c\x6b\xbb\x2c\xe5\x45\x6a\x99\x61\xd9\x57\xc3\xd7\xc3\x57\x95\x12\x12\xf8\x58\xbc\xfe\xcb\x79\xa1\x25\xfe\xfb\xb9\xa6\x30\x3e\xdf\x82\xa0\x5e\xa8\x40\x32\x26\x51\x83\xb2\x53\xbe\x3b\xfb\x40\x94\x99\x31\x98\x92\x88\xe1\x4f\xaf\x6a\x51\x25\xe7\x5b\x8b\x2c\x17\x95\xfc\xfd\xef\xe2\xfd\x2f\xbf\x6c\x57\x22\x40\x8c\xc1\x20\xe7\x5b\x21\x9f\x5d\x84\x6c\xc9\x42\x6c\xfe\xe7\xfd\x93\xe3\xd1\xf1\x8f\xda\x08\xb0\x58\x11\x8f\x7e\x51\x76\x55\x0f\x66\xaf\x15\x17\xb3\x56\x12\xf0\xe2\xc2\x84\xf8\x74\x71\xd1\xf8\x0c\x81\x12\xf7\xaa\xd4\xa9\xd2\xa7\x74\x86\xa9\x7d\x2d\x8a\xa5\xf9\x24\x62\x19\x16\xcc\x53\x36\xe6\xfe\x41\xe0\xd7\x02\x60\x7f\xa9\xb5\x89\xba\x13\x43\xab\xd5\x76\x2f\xbf\x4d\xdb\xeb\xd1\xa9\x61\xac\x4b\xa6\x3d\x14\xcc\x66\x4b\x6e\x4e\x30\xad\x4d\x67\xf5\xb8\x39\x6d\x8a\xf4\x56\xac\x6b\x26\xe6\x49\xb6\xa0\x71\x83\x9c\x69\x44\x81\x18\x62\x0b\xd6\x5e\x79\x34\xa6\x93\x20\x44\x84\x7e\xe8\x2f\xd4\xf2\x0e\x33\x8d\xa6\xea\x2b\xbd\x27\xea\x4f\x79\xa7\xfa\x45\x6d\x69\x25\x89\x1b\xb7\xf4\x10\x3d\xb3\x20\x01\xad\x94\x24\x94\xcc\x56\x75\x79\x8a\x58\x06\xac\x78\xf8\x7f\x53\xc1\xb2\xff\xd1\xd8\x8f\xc7\x6a\xf7\x99\xe3\xf7\xb4\x1d\xf7\xbd\x0c\xb0\xaf\x4e\xc3\xf9\xd6\x59\x41\xb0\xbf\xff\x7d\x28\x7b\x2d\xcb\x0e\xc5\x3b\x7d\x1a\x7e\x29\x06\x29\x93\x12\xf6\x40\x42\xdf\xe9\x81\x84\x5e\xe6\xe0\x78\x08\x40\x74\x76\x9d\xb1\x08\x0e\xf3\x6e\x39\xb6\xed\x44\xb4\x9b\x52\xe0\xc3\x0d\xf1\xd0\x65\xa3\x5f\x0a\x12\xba\x06\x0c\xe4\x80\xc8\x6f\xec\x04\x24\x13\x8e\xac\x34\xfa\x89\x9d\xb2\xdf\xfc\x99\x14\x88\x52\x87\x30\xe6\xd3\x62\x58\xa3\x59\xc4\x8b\x9f\x11\x16\x5b\x6c\x9b\x2a\x2b\xd7\xbd\x8d\xce\x58\xb2\x68\x86\x6b\x0d\x70\xa1\x1f\x5d\xc7\x09\x4b\xd3\xda\xa4\x96\x85\xc0\xb3\x44\x6c\xc2\x61\xdd\x53\xa9\x59\x5a\x77\x78\x39\xe6\xd9\xa8\x01\xa4\x47\x94\x6b\x80\xa9\x2d\x6c\xef\x2a\x88\x7c\x7e\x55\x54\x6e\xc0\x49\xc7\x8d\xa6\x03\xb1\x97\xd2\x82\xd1\xc9\xea\x6e\x70\xdc\x6b\xde\x2b\x7d\x70\xdb\x85\xfc\xfd\xd4\xdd\x9a\x36\x42\x6c\x37\x3b\x0f\x69\xac\xe7\x0b\x82\x5d\xef\x8f\x7a\x5e\x85\x12\x2e\xcf\xec\xcf\x03\x51\xb8\x02\x14\xac\xd5\x31\x4c\xe7\x4d\x8c\xe0\x86\x63\xd3\x3d\x21\xe7\x46\x34\x7c\x3a\xc0\xb9\x55\x3d\x41\xfd\xf9\xb2\x70\x73\x1d\xde\xac\xa9\xba\x5a\x60\x46\x37\xc2\xe0\x4e\x5f\x84\xc1\xcf\x1d\x62\xd0\xe1\xe9\x3d\x42\x3c\xbd\x43\x1e\x3d\xcf\x24\xba\x17\xf9\xfe\xc7\xf1\xad\xc0\xe8\xd9\xe1\x3b\xee\x11\xdb\x0e\x85\x9b\x46\x0f\x50\x26\xd8\x16\x17\xe7\x14\x05\x83\x6d\x42\x15\xe4\x2a\xc2\x7f\x24\x4c\xdc\xcc\xc2\x40\xdc\x63\xc2\x50\xe1\x1a\xa7\x24\xcd\x1a\x71\x4a\x66\x0c\x89\x93\xa3\x1f\x4e\x8e\x4e\x7f\x1a\x1d\x9f\x1d\x9d\x7c\xdc\x7f\x6b\xed\xe6\x9b\x57\xcd\xfe\x1d\x73\x0d\x6c\x4f\xa2\xba\xae\x8f\xb9\x67\x3e\x68\xbf\x2c\x00\xad\x8d\xf0\xa0\x76\xbf\xfb\x6a\xb8\xfb\xe6\xdb\xe1\xab\xe1\xab\x9d\xdd\x37\x4d\x32\x3a\x08\x28\xd2\x07\x02\xea\x3e\x40\x8d\x2c\x13\x73\x7f\x58\x44\xe6\x26\x21\x47\xdd\xdd\xa1\x06\x49\x04\xc9\x26\x50\x51\xe6\xf3\xdc\x02\x5d\xf5\x59\x21\xfb\x3c\x3c\x5c\x8e\x3d\x34\x42\x5c\x4a\x7f\x64\xf5\x3e\x69\x08\x03\xf8\x69\xe3\x35\x4f\xb2\x3d\xf2\xdd\xab\xef\xbe\xab\xbf\x11\xbb\x71\x8f\x80\x95\xa2\x89\x33\x7e\x0f\x21\x12\xad\x21\x10\x1d\xa3\x2d\xbe\xbd\x8f\xe1\xf6\x16\xec\x1d\xf0\xca\x67\x0b\xbc\xd2\xd0\x9e\x24\xe2\x96\xa3\xac\x3c\xa5\xe5\x1a\x2d\x08\x60\xa1\x1b\x2c\x66\x09\x69\xe0\x20\x3f\x43\xdf\x76\x19\x9e\x2f\x0e\x58\x28\x6c\x42\x10\xd0\xdd\xb3\x2c\xaa\x13\x21\x07\x4a\x23\xcf\x68\x31\xb3\x69\x50\x88\xcc\xb5\x34\x09\x22\xe5\xa3\xe0\xcb\x5c\x11\x83\x20\x1e\x2c\x68\xfa\x3f\xea\x9f\xb5\xfe\x97\x49\xf8\xf1\xd9\x9c\xc1\xd9\x73\xa2\x8d\xdf\x1f\xde\xd9\x25\x5f\xd9\x2a\x86\x91\x35\x0f\x9a\x6a\xfe\x74\xbc\x7f\x70\xf7\x7d\x00\x43\x93\xe5\xe8\x79\xbb\x7f\x7c\x7c\xf4\xf6\xf0\x62\xf4\xc3\x9a\x3d\xb9\x6d\x2d\x4f\xe9\x5f\xd1\xd5\xd3\xf1\xc5\xbb\xfd\xd3\xff\x7c\xc0\xbe\x96\x6e\x18\xbd\x38\xee\x3a\x9c\xb0\x8b\x0f\xb6\x30\xa6\x41\xd5\x9d\x6d\xe0\x4d\x6b\x23\xd0\x7b\xc1\x32\xaf\xe2\x89\x59\x00\xce\x74\x63\x0c\xed\x38\x8c\xa1\xcf\x04\x63\xa8\x9c\x19\x39\x8b\x86\x59\xb1\xac\x86\x62\x47\xd4\x6d\x70\x2d\xbb\xe0\x71\xc3\xe9\x18\xdc\xc8\xd7\x0c\x03\xed\x30\xdd\x6b\x0e\x0d\x07\x32\x9a\x22\x0c\xd1\x18\x90\xa7\x19\x5f\x9c\x48\x69\x1b\xf0\x55\x03\xe9\xf4\x55\x44\x70\xa1\x37\x22\xd8\x43\x34\x5d\x63\x19\xfd\xa4\xd2\x77\xd4\x71\x41\x82\xd2\xf3\xc0\xe6\x13\x6a\x69\xbd\x36\x4a\xb5\x5e\x9a\xa1\x18\x43\x73\x08\x80\xe6\x8c\xe0\x71\xb1\x48\xa5\x2e\x4a\xfc\x32\x43\x5f\x4d\xcb\x87\x44\x79\x3e\xe2\x14\x48\x92\x2a\x97\x07\xe8\x34\xdc\xc3\x0f\xf4\x6e\xe0\xdb\x38\xcc\x13\x1a\x1a\xbb\x89\x05\x84\x50\x94\x87\x34\x31\x15\x29\x66\xe8\x8e\x48\x28\x31\xb8\xea\xe1\x0f\x0f\x41\xbf\xef\x7f\x1c\xb7\x50\xcf\x12\xa1\x51\xd2\xae\x5e\xe0\xfc\x9e\x68\x27\x23\x83\x1e\x82\x62\xa3\xf1\x98\xf3\xb0\x4a\xa7\x4a\xa0\x52\x49\x1d\xfc\xf9\xbe\x68\x52\x89\xf7\x7a\x08\xca\xfc\xc4\xd3\xec\xa8\x92\x0d\x48\xd1\xc7\x10\x8a\x56\x52\x49\x7f\x79\x5f\xb4\x32\xc4\x8a\x3d\x04\xc5\x64\x5d\xa3\xb2\x1b\x55\xba\x59\x43\xda\x4a\xea\x35\x8b\xdc\x17\x0d\x8d\xf1\x8c\x0f\x41\xc5\x1f\xa1\x23\x7a\x90\xf0\xaa\x4a\xc6\x96\xc8\xcb\x92\x90\xcd\x42\xab\x07\xa1\x64\xca\x1e\x66\xf7\x56\xa8\x78\xca\xb2\x16\x12\x96\xd1\xa9\x16\xf2\xa5\xec\xde\x76\xf2\x86\xeb\xef\x58\x09\x67\xfe\xad\x10\xaf\x65\xf1\x75\x2c\xbb\xda\x82\x6b\xc0\x51\x7c\xe3\xe0\x28\x1c\x1c\x85\x83\xa3\x20\x0e\x8e\xc2\xc1\x51\x38\x38\x8a\x5b\x84\xa3\x08\x62\xba\x98\x84\xdc\xbb\xbc\x5b\x88\x0a\x63\x69\x87\x5b\xe1\x70\x2b\x1c\x6e\x85\xc3\xad\x70\xb8\x15\x0e\xb7\xc2\xe1\x56\x38\xdc\x0a\x87\x5b\xe1\x70\x2b\x1c\x6e\x85\xc3\xad\x70\xb8\x15\x0e\xb7\xc2\xe1\x56\x34\xea\x72\xb8\x15\x0e\xb7\xc2\xe1\x56\x38\xdc\x0a\x87\x5b\xe1\x70\x2b\x1c\x6e\x85\xc3\xad\xb8\x17\xdc\x8a\x9b\xa4\xc6\xd1\x18\x54\x23\x11\x8e\x03\xbb\x70\x60\x17\x0e\xec\xc2\x81\x5d\x38\xb0\x0b\x07\x76\xf1\x94\xc0\x2e\x0e\x0a\xa5\x23\xd0\x82\xd0\xd9\x2c\x61\x33\x29\x5a\xab\xad\x27\x8e\x7f\x71\xef\xb4\x74\xe3\xc3\xe9\xd1\xc5\xf8\xfd\x61\x7b\xa4\xbc\x39\x28\xdd\x61\x6d\x38\xac\x8d\xa2\x07\x0e\x6b\xc3\x61\x6d\x38\xac\x8d\x6a\x9f\x1c\xd6\x86\xc3\xda\x70\x58\x1b\x0e\x6b\xa3\x3a\x5a\x87\xb5\xe1\xb0\x36\x1c\xd6\x86\xc3\xda\x70\x58\x1b\xd5\xc7\x61\x6d\xd4\x7b\xe1\xb0\x36\x1c\xd6\x86\x7c\x1c\xd6\x86\xc3\xda\xa8\x62\x6d\x48\x97\xc4\x53\xa8\x4c\x29\x37\x77\x94\x8d\x3f\xdd\xb9\xf4\xfd\x81\x97\xf8\xe9\x70\x45\x17\xa1\x83\xe6\x70\xd0\x1c\x0e\x9a\xc3\x41\x73\x38\x68\x0e\x07\xcd\xe1\xa0\x39\x1c\x34\x87\x83\xe6\x78\x14\xd0\x1c\xf7\x4a\xb4\x75\x96\xda\xdd\x10\xac\xb1\xce\x5a\x56\x98\xbe\xb6\x9a\x08\x26\x83\x52\x1d\x84\x60\x26\x32\x2e\xe9\x4c\x8a\xc7\x1f\x77\x77\xbf\x19\x17\x45\xba\xb1\x4e\xee\xf8\xce\xd0\x25\xcb\x63\x4c\x27\xbd\x61\x50\xa7\x83\x41\x71\x30\x28\x0e\x06\xc5\xc1\xa0\x38\x18\x94\xe2\x9d\x83\x41\xe9\x80\x41\x81\xb1\x89\xbe\xca\x90\x05\xeb\x1e\x71\xf8\x28\x0e\x1f\xe5\xa9\xe1\xa3\x3c\x42\xe0\x8e\x4d\x30\x3b\xd6\x38\x8f\x6e\x43\x06\xbb\x19\x4a\xc7\x8d\xa5\xa0\xcf\x0a\x9e\xe3\x29\x21\x73\xf4\x1f\xb3\x03\xd6\x38\x5f\x13\x58\xa3\xeb\x82\x28\x5d\xdb\xa5\xdc\x84\x37\xc5\x47\x07\x57\x21\xee\x40\xa2\x93\x3e\xfa\xff\xa1\x7b\x6e\x26\x7e\xbd\x90\xf2\xee\x05\x56\xae\x3b\x0e\x3a\x98\x8b\x1b\xc3\x5c\x94\x61\x04\xe2\xcb\x77\x67\x1f\x44\x0b\x79\xca\x7a\x83\x3a\x2c\x59\x36\xbf\x58\x64\xb9\x1c\x1e\xe0\x39\x9c\x6f\x35\x01\x1d\xc2\x94\x19\xbe\xd8\xfd\xfa\x9b\x57\xb5\xd2\xe7\x5f\x0c\xfc\xc6\xee\x2d\xc1\x6f\xe8\x05\x3e\x2b\x94\x0c\x09\xf3\x71\x71\x71\x70\x3c\xba\x78\x77\xf6\xe1\xe2\xa2\x1f\x8c\x46\x6f\x20\x0d\x07\xa5\x71\xc7\x50\x1a\x7d\x7a\x32\xa1\x91\x7f\x15\xf8\xd9\xbc\xd1\x17\x43\x83\x5a\x61\x07\xdc\x41\x34\xe0\x8e\xee\x03\x1e\x38\x5c\xe5\x78\xb7\x61\x7c\x88\xd3\xaf\x1d\xdd\xe3\x81\x60\x3d\x68\x1c\xa7\xad\x92\x6f\x9b\xb8\xe0\xb0\x3c\x1c\x96\xc7\x67\x86\xe5\x61\xc4\x9a\x20\xa4\x0e\x93\xb1\x47\xc2\x20\xca\xaf\x55\x01\x07\x68\xe1\x00\x2d\x54\x29\x07\x68\x61\x05\xb4\x50\x2c\xe0\x20\xa4\x69\x7a\xac\xdd\x90\xe1\x24\x1c\xa8\x05\xa0\x8a\x6f\x8a\x7f\xe1\x80\x2f\x1c\xf0\x85\x03\xbe\x80\x69\x13\xf7\x7a\xc9\xa9\x96\x34\x09\x84\xec\x61\x9f\xa2\x77\x67\x1f\x1e\x70\x5e\x94\x12\xa1\x3e\x0c\x87\xdf\x61\xaa\xce\xe0\x38\xbf\x69\x44\xd5\x33\xb2\xef\xfb\xe2\x00\xfe\x21\x64\xd7\xe4\x23\x0c\x9d\x1c\x26\x81\x10\xb3\x40\x38\x43\x4e\x23\x4a\xc4\x2c\x11\x9c\x9f\x7c\x88\x82\x6b\x72\xc8\x17\x34\x88\xc8\x29\xf7\x2e\x19\x28\xb7\x68\x18\xf2\x2b\x72\x18\x5c\x8a\x1b\x46\x85\xf5\x82\x8e\x52\xe9\xe7\x18\xca\xa0\x18\x94\xcd\xb1\x15\x46\xd0\xbd\x8a\x9c\xae\x22\x8f\xec\x8f\x4d\x11\x08\xd3\x90\x5d\x2f\x79\x38\xf0\xa1\x6b\x66\x3e\x2c\x86\xf0\x91\x37\x23\xd8\x5a\xc2\x78\x4c\x95\x0f\x9a\x71\x99\x8d\x89\x6a\x76\x63\xb3\x09\x68\x87\x5e\xa9\x5c\xfc\x1c\xe8\x4a\xb5\x37\x0e\x74\x65\xbd\xd6\x1c\xe8\x8a\x03\x5d\x71\xa0\x2b\x9f\x01\xe8\xca\xb3\x35\x60\x57\x9e\x39\xe0\x15\x07\xbc\xf2\x68\x80\x57\xca\x59\xd7\xc6\x78\xbe\x15\x44\x53\xde\x0e\x94\xe2\x70\x57\xe0\x69\xc3\x5d\x61\xd7\x9a\xa2\xb2\xa8\x45\xea\x18\xea\xbf\x0f\x08\x80\x34\x58\x04\x36\x2c\x31\x80\xa5\x31\x10\x6d\xd6\xc6\xe9\x30\x57\x8a\xc7\x61\xae\x3c\x7e\xcc\x15\xa2\xf1\x07\xbc\xfe\xa4\xab\xc8\xab\x7f\x6e\x1a\xb9\xd8\x38\x74\xc6\xa2\x4c\xbf\x1c\x39\x00\x17\x07\xe0\x72\xf3\x3e\x38\x00\x17\x07\xe0\x72\x3b\x00\x2e\x11\x35\x81\x84\x38\xe8\x16\x07\xdd\xf2\x19\x43\xb7\x34\x47\x21\xaf\xfb\x76\x25\xb3\x61\x49\x9a\x4f\x73\x4b\x47\x70\xee\x0e\x83\x04\x0c\xea\xab\xe6\x04\x92\xe6\x9a\x35\x0a\x00\x75\xba\x37\x35\xe7\xa6\x89\x6f\xd5\x30\xaf\xdb\x65\xe5\xcc\x29\x35\xde\x63\xf0\xfd\x39\x0c\x92\x5a\x66\x2e\x35\x9e\x52\x37\x5e\x94\x34\x38\x72\x36\xa8\x90\xa7\xb0\xc3\xc4\xcd\x43\xb3\x18\xc3\x9f\x21\xcb\x06\xd2\xe3\x68\x07\xd9\xd3\x0e\x14\x2b\x08\xf6\xff\x72\x3f\x2d\xfc\x40\x49\x1f\xbf\xe7\xfb\x01\xb9\xf9\x62\x30\x6e\xee\x18\xa5\x45\x85\xbd\x3d\x0c\x50\xcb\xfe\xbb\xef\x4b\xe6\x5c\x62\xb5\x54\x63\xf1\x74\xb8\x16\xf9\xe6\x3e\x68\x53\x0b\xb1\x7b\x10\xec\x1f\xd1\x05\x95\x81\xa8\x4a\x24\x63\x00\xa0\x06\xfb\xa3\xbd\x5e\xdd\xd7\x4a\x9a\xd3\xc8\x0f\x1f\x86\x52\x62\x29\xfd\x04\xcd\x37\xd7\x92\xec\x96\x69\x31\xcd\xe5\x27\xf7\x43\x1f\x19\xa1\xfa\x50\xf4\x39\xd0\x24\x0f\x9d\x3e\x95\xc0\xd9\x2a\x7d\x94\xb0\x72\x0f\xbb\x4d\x86\x04\x3e\x10\xc4\xd6\x98\xa9\xd3\x5e\x43\xd6\xd2\x62\x14\x2b\x80\x5a\x31\x14\xbe\x17\x9a\x3c\xfc\xd9\x76\xeb\xf8\x63\xf7\xb1\xd7\x1e\x13\xf6\xd8\xdd\xd3\xe3\x69\xe0\x8e\xdd\x3d\x9d\x9e\x36\xe6\xd8\xdd\xd3\xef\x4b\xc0\x1b\xbb\x67\x2a\x3e\x19\xac\xb1\xbb\xa7\xdb\x13\xc3\x19\xbb\x37\x82\x3d\x51\x8c\x31\xa9\x87\x7c\xbd\xfb\xfa\xeb\x1e\x70\x63\x07\x45\x61\x07\x3c\xe6\x80\xc7\x3e\x4f\xe0\xb1\x67\xe0\x28\x75\x30\x3a\x3c\x81\xf8\xe8\x81\xcf\x32\xe6\x29\xa4\x1a\xb1\x84\xa8\xbf\x90\xf3\x43\x3d\x8f\xa5\x69\x89\x2a\x40\x16\x34\xde\x60\x4a\xf0\x63\xf1\xed\xed\x51\xdd\x21\xa2\x39\x44\x34\x87\x88\xe6\x10\xd1\xaa\x2f\x1c\x22\x9a\x43\x44\xeb\xc1\x10\x1c\x22\x9a\x43\x44\xeb\x3e\x8f\x1c\x22\x9a\x43\x44\x73\x88\x68\x0e\x11\xcd\x21\xa2\x39\x44\x34\x87\x88\x26\x4f\x14\x87\x88\xe6\x10\xd1\x1c\x22\x9a\x43\x44\x23\x0e\x11\xcd\x21\xa2\x39\x44\xb4\xa2\x12\x87\x88\xe6\x10\xd1\x1c\x22\x9a\x43\x44\x73\x88\x68\xc5\xe3\x10\xd1\x1c\x22\x9a\x71\xc0\x0e\x11\x4d\x3e\x0e\x11\xcd\x21\xa2\x39\x44\xb4\xd6\x09\x70\x88\x68\x0e\x11\xcd\x21\xa2\x39\x44\x34\x87\x88\xe6\x10\xd1\x1c\x22\x9a\xa9\x4f\x0e\x11\xcd\x21\xa2\x39\x44\x34\x87\x88\xe6\x10\xd1\x1c\x22\x9a\x43\x44\x73\x88\x68\xd5\xc7\x21\xa2\xe9\x8f\x43\x44\x73\x88\x68\x0e\x11\xcd\x21\xa2\x11\x87\x88\xe6\x10\xd1\xb4\xf1\x38\x44\x34\x87\x19\xe3\xf0\x87\x1c\x02\xda\x67\x80\x80\xe6\xd0\x63\x1c\x96\xe3\x43\x62\x39\x3a\xf4\x1d\x87\xbe\xf3\x70\xe8\x3b\x0e\x63\xcc\x21\xae\x3a\x8c\x4c\x87\xb1\xda\xa4\xcf\x7d\x62\xac\x3a\xdc\x47\x87\x88\xf6\x25\x23\xa2\x01\x89\x9a\xb0\x68\xc3\xdd\xaf\x10\x03\xad\xcb\xd5\xff\x19\x19\x45\x5e\x98\xfb\x8c\x50\x75\x0b\x48\x78\xc8\x0a\x57\x2e\xcd\xec\x5a\x46\x4e\x6d\x43\xbc\x56\xe4\x93\x49\x10\xf9\x24\xc8\x4a\x3c\x82\xb2\x70\x15\x0a\xc8\x84\x4a\xd0\x3f\x34\x5f\xce\xaf\xc3\x2f\x7b\x64\xf8\x65\x0e\x26\xcc\xc1\x84\x39\x98\x30\x07\x13\xf6\x60\x30\x61\x0e\x0d\xcc\xa1\x81\x3d\x75\x34\xb0\x35\x85\xa8\x35\x41\x8e\x34\xa7\xbb\xbb\xc0\x38\x92\x55\xaf\x05\x74\x54\xf1\x03\xbc\x0f\xb8\xa3\xc7\x0a\xba\x66\x17\x9b\x3b\x90\xd7\xca\x95\x56\x7a\xc6\xde\x18\x80\xad\x6f\xa5\x37\xc3\x61\x5b\xab\x95\xc7\x02\xc7\xd6\x76\xff\x79\x94\x98\x6c\x1a\x3d\xe5\x01\xd4\x9f\x9c\x77\xcb\xef\x1c\xa8\x5b\x54\x00\xa7\x13\x49\x67\xb2\x7c\x3d\xdc\x1d\xee\x8a\xdf\x15\x83\xf3\xb9\x97\x36\x4f\xbf\x1d\x51\x70\x27\x61\x21\xa3\x29\x4b\x9f\x95\x9f\xd5\x21\x61\x40\xe3\x80\x21\x72\x53\x1e\x86\xfc\x4a\x5c\xe5\x3c\xbe\x88\x79\xc4\xa2\x4c\x29\x4d\x04\x89\x9e\x11\xa2\xdc\x2b\x44\x3f\xf7\xca\x3a\x8b\xdf\xbd\x28\xa8\xfe\x5c\xe1\xb8\x7b\xcb\x57\xc3\xef\xc4\xab\x62\xe9\x3d\x32\xf8\x39\x07\x23\x77\x33\x18\xb9\x2f\x01\xae\xed\xd5\x2d\xc1\xb5\xf5\x04\xd6\x2b\x6b\x91\x30\x6a\x0a\x5d\x6f\xbb\x09\xae\xa7\x23\x84\x90\xcf\x0f\x07\xce\x02\xf3\xd6\x13\xe4\xcd\x41\xbc\xdd\x29\xc4\x9b\xfa\xf3\x4b\x04\x5d\xeb\x44\x52\x2b\xce\xc4\x0e\x3c\x35\x29\x5f\x3d\x10\xac\x5a\x69\xae\xe9\x96\x63\xdb\x4e\x44\x87\xb0\xe6\x10\xd6\x3e\x33\x84\x35\xe5\x6a\xa8\xd1\x4f\xec\x94\xfd\xe6\xcf\x18\x3b\x19\x24\xcc\x3f\x84\x31\x9f\x16\xc3\x1a\xcd\x22\x5e\xfc\x8c\x08\x5e\x62\xdb\x54\x59\xb9\x8e\xb2\x76\xc6\x92\x45\x33\x02\x73\x80\x0b\xfd\xe8\x3a\x4e\x58\x9a\xd6\x26\xb5\x2c\x04\xd1\x25\x62\x13\x0e\xeb\x30\x70\xcd\xd2\x3a\x7a\xd8\x31\xcf\x46\x0d\x44\x18\xa2\x82\x62\x4c\x6d\x61\x7b\x57\x41\xe4\xf3\xab\xa2\x72\x07\x2e\xe7\xc0\xe5\x54\x29\x07\x2e\x67\x05\x97\xdb\x14\x2d\xae\x3c\xe8\x1d\x68\x9c\x03\x8d\x6b\x96\xfa\xb2\x40\xe3\x1c\xda\x9a\xa9\xba\x5a\xac\x5b\x3b\x64\x97\xe1\x86\xe1\x80\xbb\xaa\xbd\x71\xc0\x5d\xeb\xb5\xe6\x80\xbb\x1c\x70\x97\x03\xee\xfa\x0c\x80\xbb\xfa\xc3\x76\x39\xd0\x2e\x07\xda\xf5\x58\x40\xbb\x8e\x22\xf3\x30\xd3\xcc\xe7\x79\xd6\xb7\x49\x87\xda\xb5\x09\x96\x95\xfa\xb4\xf1\xfa\x0e\xa0\xac\x1c\x72\x97\x7a\x1c\x72\xd7\x23\x41\xee\x72\x60\x5b\xf0\x38\xb0\xad\x1b\xf6\xc1\x81\x6d\x39\xb0\xad\xdb\x01\xdb\x2a\xd4\x3b\x0e\x72\xcb\x41\x6e\x3d\x2e\xc8\x2d\x83\xeb\x7b\x99\xc0\xb7\xee\x4d\xb9\x89\xbb\x81\xe6\x84\x71\x20\x23\x40\xc2\x10\x6d\x11\x96\xf0\x52\xa5\x8e\x10\xa7\x33\x7a\x50\x82\x39\x46\x53\x75\x96\xa1\x5d\x64\x81\xbb\xee\x73\x01\x92\xfa\x72\xf0\x58\x1c\x16\xd7\x06\x58\x5c\xf7\x43\xbb\xc7\x15\xcb\x7f\x3f\x34\x79\x1a\x18\x2b\xf7\x43\xab\xa7\x8d\xc6\x75\x3f\x34\xfc\x12\x10\xa5\x1e\x80\x92\x4f\x06\x55\xea\x7e\x68\xf7\xc4\x50\x4c\xee\x95\x68\x8f\x17\xc9\xa4\x01\x62\xf2\x06\x11\x4c\x7a\xa6\xa0\x96\x41\xf7\x95\x24\xd4\x8f\x27\xc8\x67\x15\xcf\xa9\xe8\xa4\x8f\x56\x13\x34\x6a\x66\xe2\xd7\x0b\xe9\x29\x77\x81\x95\xeb\xe6\x96\xa7\x12\x1c\xe4\x42\x83\xee\x30\x34\x68\xd7\x85\x06\xdd\x6e\x68\x50\xef\xe0\xa0\xfb\x08\x0f\x32\x34\x79\xf9\x6d\x7a\x41\xf3\x6c\x7e\x91\xf1\x4b\x16\xa9\x31\x9f\x1e\x9d\x7c\x1c\x1d\x1c\xed\x1f\x1c\xbc\xff\x70\x7c\x76\x71\xf6\xfe\x4f\x47\xc7\x62\xcc\x6d\x1d\x69\x8d\x2f\x72\xd1\x45\x8f\x34\xba\xc8\x29\x9d\x9c\xd2\xc9\x29\x9d\x9c\xd2\xc9\x29\x9d\x9c\xd2\xc9\x29\x9d\x9c\xd2\xc9\x29\x9d\x9c\xd2\xe9\x8b\x55\x3a\x75\x05\x2b\x76\x89\xca\x88\xd3\x05\x62\xf2\x23\xc1\xd2\xed\x81\xf3\xe6\xb0\x74\x9b\x8d\x38\x2c\xdd\x62\xa6\x1c\x96\x6e\x63\x2e\x1d\x96\x6e\xad\xcf\x0e\x4b\xd7\x61\xe9\x3a\x2c\x5d\x87\xa5\xfb\xc8\xb0\x74\x1f\x21\xc8\xeb\x26\xf8\xae\x6b\x1c\x3b\xb7\x21\x6a\xdd\x0c\xd1\xf5\xc6\xc2\xce\x67\x05\xe5\xda\x31\x5d\x8f\x00\xbf\xf5\xb6\x81\x95\xfb\x53\xee\xf1\x43\x57\x3f\x04\x9c\x6b\x4f\xff\x09\x38\x88\x2a\xde\x13\x36\xe0\x39\xb1\x33\xda\x21\xe7\x1e\x08\x6b\x8e\xc6\x71\x6a\xbf\xe1\x3a\x80\x39\xd5\x3f\x07\x30\xe7\x00\xe6\xb4\x4f\x1d\xc0\xdc\x67\x03\x30\x77\x86\xbf\x33\x74\x23\x42\x80\x07\x92\x72\xb5\xd2\x0b\x94\x09\xb5\xb6\x40\x3f\x43\x33\x0c\x4e\x09\x16\xcc\x82\xde\xf6\x05\xa0\xce\x15\xed\xa2\xbb\xcf\x40\x9c\xf8\xf5\x1d\xc7\xa3\x2c\xe1\x61\x1c\xd2\x3a\x5e\x41\x59\xe9\xf9\x96\xac\xb6\xf2\x5e\xf5\xe8\x7c\x4b\xa3\xe5\xd6\x1a\x4d\xb3\xcc\xf3\x37\x6f\x52\x91\x41\x5b\x58\x0e\x62\xef\x46\x10\x7b\x8a\xff\x1f\x84\x34\x4d\x8f\x35\xe9\x09\xc4\xa0\x81\x5a\xed\xaa\xf8\xa6\x88\x7c\x0e\x8a\xcf\x41\xf1\x39\x28\x3e\x07\xc5\x67\xac\xae\x11\x03\xfb\x8c\xec\xfb\xbe\x38\x6c\x7f\x08\xd9\x35\xf9\x08\x03\x20\x87\x49\x20\x44\x4c\x10\x4c\x71\xa3\x89\x12\x31\x4b\x04\xe3\x23\x1f\xa2\xe0\x9a\x1c\xf2\x05\x0d\x22\x72\xca\xbd\x4b\x06\xe6\x43\x1a\x86\xfc\x8a\x1c\x06\x97\xe2\x76\x55\xe1\x3c\xe0\xfe\xae\x5c\xbf\x19\xca\xdf\x88\x92\xc4\xb1\x15\x46\xd0\xf4\x4c\x4e\x57\x91\x47\xf6\xc7\xa6\x90\xe0\x69\xc8\xae\x97\x3c\x1c\xf8\xd0\x35\x33\x1b\x12\x43\xf8\xc8\x9b\x90\x12\x2d\x71\xf5\xa6\xca\x07\x4d\xa0\x94\x06\xb9\xab\xdd\x68\x47\x34\xac\x5c\x5d\x1d\x96\x61\xb5\x37\x0e\xcb\x70\xbd\xd6\x1c\x96\xa1\xc3\x32\xfc\xec\xb0\x0c\xef\x00\xd7\xcf\x81\xf3\x39\x70\x3e\x07\xce\xe7\xc0\xf9\xf4\xcf\x1c\x38\x5f\xf1\x38\x70\xbe\xc7\x0f\xce\x47\x34\x1e\x81\x02\x7d\xba\x8a\xbc\xfa\xe7\xa6\x91\x0b\x71\x8b\xce\x58\x94\xb5\x28\x85\x1c\xd2\x9f\x43\xfa\x73\x48\x7f\x0e\xe9\xef\xc1\x90\xfe\x22\x6a\x42\x93\x73\x18\x7f\x0e\xe3\xef\x33\xc6\xf8\x6b\x8e\x42\xfa\x8f\xda\x95\x9f\x86\x25\x69\x3e\xcd\x2d\x1d\xc1\xb9\x3b\x0c\x12\xb0\xf4\xae\x9a\x13\x48\x9a\x6b\xd6\x28\x00\xd4\xe9\xde\xd4\xe8\x9a\x26\xbe\x55\xf3\xb9\x6e\x97\x15\x5e\x83\xd4\xc4\x8e\xc1\x1f\xe7\x30\x48\x6a\x38\x0d\x6a\x3c\xa5\xce\xb6\x28\x59\xe0\x34\x84\x29\xb3\x7c\xb5\x93\xa7\xb0\xc3\xd8\x35\xf3\x34\x43\x1e\xfc\x19\xb2\x6c\x20\xbd\x80\x76\x90\x3d\xed\x40\xb1\x82\x60\xff\x2f\xf7\xd3\x02\x09\x82\xfc\xf2\x8b\x31\x64\xe9\x76\x61\x1d\x1b\x18\x33\xbf\x77\x18\x33\x0e\x63\xc6\x61\xcc\x38\x8c\x19\x87\x31\x63\x6a\xd9\x61\xcc\xe8\xaf\x1c\xc6\x8c\xc3\x98\x71\x18\x33\x0e\x63\xc6\x61\xcc\x38\x8c\x19\x87\x31\xe3\x30\x66\x1c\xc6\x8c\xc3\x98\x71\x18\x33\x0e\x63\xc6\x61\xcc\x38\x8c\x19\x87\x31\xe3\x30\x66\x1c\xc6\x8c\x61\x10\x0e\x63\xa6\x7c\xe7\x30\x66\x3a\x30\x66\x60\x6c\xa2\xaf\x32\xf4\xd5\xba\x47\x1c\xf8\x8c\x03\x9f\x71\xe0\x33\x0e\x7c\xc6\x81\xcf\x38\xf0\x19\x07\x3e\xf3\xd9\xd1\xd6\x81\xcf\x38\xf0\x19\x07\x3e\xe3\xc0\x67\x1c\xf8\x8c\x03\x9f\x71\xe0\x33\x0e\x7c\xc6\x81\xcf\x38\xf0\x19\x07\x3e\xe3\xc0\x67\x1c\xf8\x8c\x03\x9f\x71\xe0\x33\x0e\x7c\xa6\x49\x7a\x07\x3e\xb3\x5e\x6b\x0e\x7c\xc6\x81\xcf\x38\xf0\x19\x07\x3e\xe3\xc0\x67\x4c\x0d\x3b\xf0\x99\x8a\x76\xce\x81\xcf\x38\xf0\x19\x07\x3e\xe3\xc0\x67\x1c\xf8\x0c\x3e\x0e\x7c\xa6\xb3\x0f\x0e\x7c\xc6\x81\xcf\x38\xf0\x19\x07\x3e\x03\x8f\x03\x9f\x71\xe0\x33\x0e\x7c\xe6\xf6\xc1\x67\x06\xa5\x20\x82\x38\x34\xcf\x10\x21\xe6\x4c\x7a\xc1\x7c\xdc\xdd\xfd\xfd\xb8\x28\xd2\x33\x92\xe8\xee\x06\xb0\x46\xa0\xd2\xdd\x04\x0f\xb9\xb8\x21\x17\x37\xe4\xe2\x86\x5c\xdc\x90\x8b\x1b\x72\x71\x43\x2e\x6e\xc8\xc5\x0d\xb9\xb8\x21\x17\x37\x64\x3a\x8f\x5c\xdc\xd0\x3d\xc4\x0d\xe1\x3d\xe6\x51\x45\x0f\xdd\x69\xc4\x0f\x28\x41\xd4\x35\xe5\x0e\x42\x7e\x9e\x4e\xb4\x8f\x83\x51\x7d\xb4\x30\xaa\xe7\x0f\x07\xa4\x5a\xba\x77\x89\x2f\xdf\x9d\x7d\x10\x2d\xe4\x29\xeb\x0d\x1b\xba\x64\xd9\xfc\x62\x91\xe5\x72\x78\x80\x18\x2a\xaa\xaf\x43\x86\x96\x1a\x27\xfd\x8b\xdd\xaf\xbf\x79\x55\x2b\x7d\xee\x00\x5e\xd7\x04\x78\xd5\x0b\x7c\x56\x38\xac\x12\x48\xf6\xe2\xe2\xe0\x78\x74\xf1\xee\xec\xc3\xc5\xc5\x23\x04\x6a\x6d\xab\xa7\x15\x67\xf5\x29\x20\xad\xf6\xe9\xc9\x84\x46\xfe\x55\xe0\x67\xf3\x46\x5f\x0c\x0d\x6a\x85\x1d\xae\xab\xfc\x8f\x0b\xe7\x75\xe1\xbc\x2e\x9c\xf7\x31\x86\xf3\x1a\xc3\x4d\x09\xa9\x47\xca\xee\x91\x30\x88\xf2\x6b\x55\xe0\xd1\xc7\xb4\xbe\xa3\x97\x8c\xa4\x42\x68\x44\x5e\x03\xe4\x55\xc4\x04\xdf\x79\x21\x99\xc1\x3d\xa6\x62\x9b\xfe\xa2\xc2\x57\x5d\x44\xa7\x8b\xe8\x74\x11\x9d\x2e\xa2\xf3\x91\x44\x74\x8a\x69\x13\xf7\x7a\xc9\xa9\x96\x34\x09\x84\xec\x61\x9f\xa2\x77\x67\x1f\x1e\x70\x5e\x94\x12\xa1\x3e\x0c\x17\x98\x6a\xaa\xce\xe0\xb8\xb5\xa9\x2f\xaf\x0b\x69\xbd\x85\x90\xd6\xcd\x27\xc0\x05\xc3\xba\x60\x58\x17\x0c\xeb\x82\x61\xbf\xd4\x60\x58\x94\x31\x95\xa1\x65\x34\x5e\x7e\x4d\x62\xce\x43\xcd\x97\xb8\x74\x1f\x01\x73\x05\x8f\x18\x61\x70\x31\x1b\x92\x31\xf7\xc1\x77\x4f\x6a\xff\xeb\x35\x4b\xdb\x0e\xc8\x0a\x60\x2c\x80\x1b\xf6\x90\x1c\xcc\x69\x84\x91\x8d\xe2\x47\xe8\x9a\x74\x71\xd0\x8d\x65\x58\xeb\x9c\x2e\x1b\xf5\x46\x5c\xde\x20\x87\x78\x13\x49\xe7\x3c\x0f\x7d\x32\x15\x73\x82\xb6\x1b\x32\x18\x48\x0d\xda\xc0\x0b\xfc\xba\x60\xf2\x6c\x8d\x10\xe0\x67\xfd\x83\x80\xb5\x98\x51\x71\x49\x50\xe1\x9b\x29\x07\xfd\x85\x97\x85\xe2\xa7\x14\xd4\x7e\xb6\x40\x59\x17\x3f\xdc\xba\x89\x5c\xfc\x30\x69\xdf\xcb\xe5\xac\x6b\x63\x3c\xdf\x0a\xa2\x29\x6f\x8f\xf7\x75\xe1\xc3\xf0\xb4\x85\x0f\xb3\x6b\x4d\x51\x59\xd4\x22\x75\x0c\xf5\xdf\x07\x04\xc2\x03\x2d\x02\x1b\x96\x18\xc0\xd2\x18\x88\x36\x6b\xe3\x74\xa1\xc3\xc5\xe3\x42\x87\x5d\xe8\xb0\x0b\x1d\x76\xa1\xc3\x2e\x74\xb8\xbd\xa7\x2e\x74\xd8\x85\x0e\xbb\xd0\x61\x17\x3a\xec\x42\x87\x5d\xe8\x70\x5b\xe8\xf0\x83\x27\xbb\x96\xd3\xf1\xf4\x73\x5d\xdf\x71\xb6\x66\x15\xf6\xf6\x30\x09\x9b\xf7\xdf\x7d\x5f\x32\xe7\x32\x67\x73\x35\x16\x4f\x4f\xdb\x2c\xdf\xdc\x07\x6d\x6a\x21\x76\x0f\x92\x03\x5c\x74\x41\x25\x21\xa8\x12\xc9\x18\x00\xa8\xa5\xff\xd6\x5e\xaf\xee\x6b\x25\xcd\x69\xe4\x87\x0f\x43\x29\xb1\x94\x7e\x82\xe6\x9b\x6b\x49\x76\xcb\xb4\x98\xe6\xf2\x93\xfb\xa1\x8f\x8c\x50\x7d\x28\xfa\x1c\x68\x92\x87\x4e\x9f\x4a\xe0\x6c\x95\x3e\x4a\x58\xb9\x87\xdd\x26\x43\x02\x1f\x28\xd5\xfe\x98\xa9\xd3\x5e\xcb\xb0\xaf\xc5\x28\x56\x12\xeb\xc7\x50\xf8\x5e\x68\xf2\xf0\x67\xdb\xf7\x3f\x8e\x5b\x4e\x36\x4b\x90\x67\x85\x5c\x0f\x70\xaa\x41\x60\xf1\xc3\xec\xb3\x31\xe7\x61\x7d\x8f\x69\x71\xce\xfa\xfe\x8a\xa1\xe8\xdd\xd3\xa3\x12\x43\xfe\x10\x54\xf9\x89\xa7\xd9\x91\xec\x40\x95\x36\x86\xf0\xf6\x92\x42\xfa\xcb\xfb\xa0\x93\x21\xc4\xfc\x21\xa8\x25\xeb\x1a\x95\xdd\xa8\xd2\xcc\x1a\x09\x5f\x52\xae\x59\xe4\x3e\xe8\x67\x04\x4c\x78\xf0\x8c\xf9\xa6\xd4\xef\x2d\xd0\x0e\x96\xc4\xf9\x2a\x0d\xfc\x3d\x53\x71\x9d\x44\xf0\x77\x46\xc1\x46\x2e\x78\x0b\xf4\x85\x85\x74\x90\x17\xfe\xee\xe9\xb6\xe1\xba\xbb\x9b\xf4\xf9\xa6\x45\xd7\xb1\xdc\xee\x7d\xa1\x6d\xb0\xc4\xee\x86\x58\x8d\xf5\xd5\xb2\xb2\xf4\x35\xd5\x8a\x31\x26\xf5\x90\xaf\x77\x5f\x7f\xdd\x03\x6e\xec\xa0\x28\xec\x80\xc7\x1c\xf0\xd8\xe7\x09\x3c\xf6\x0c\x1c\xa5\x0e\x46\x87\x27\x10\x1f\x3d\xf0\x59\xc6\x3c\x85\x54\x23\x96\x10\xf5\x17\x72\x7e\xa8\xe7\xb1\x34\x2d\x51\x05\xc8\x82\xc6\x1b\x4c\x09\x7e\x2c\xbe\xbd\x3d\xaa\x3b\x44\x34\x87\x88\xe6\x10\xd1\x1c\x22\x5a\xf5\x85\x43\x44\x73\x88\x68\x3d\x18\x82\x43\x44\x73\x88\x68\xdd\xe7\x91\x43\x44\x73\x88\x68\x0e\x11\xcd\x21\xa2\x39\x44\x34\x87\x88\xe6\x10\xd1\xe4\x89\xe2\x10\xd1\x1c\x22\x9a\x43\x44\x73\x88\x68\xc4\x21\xa2\x39\x44\x34\x87\x88\x56\x54\xe2\x10\xd1\x1c\x22\x9a\x43\x44\x73\x88\x68\x37\x40\x44\x7b\x46\x4e\x68\xe4\x89\x1b\x11\x08\xf4\xe2\xf6\x83\x96\x21\x55\xc0\x00\x99\xf6\xf7\xbf\x13\xbc\x61\x8d\xeb\xef\xc8\x3f\x8a\xeb\xd9\xf9\x96\x11\x59\x6d\x4b\xdb\x33\x0e\x5e\xcd\xc1\xab\x39\x78\xb5\xc6\xe3\xe0\xd5\x1c\xbc\x9a\x83\x57\x33\xf3\x61\x07\xaf\x26\x3f\x77\xf0\x6a\x0e\x5e\xcd\xc1\xab\x99\x89\xe3\xe0\xd5\x1c\xbc\x9a\x83\x57\x6b\xdd\x4d\x0e\x5e\xcd\xd4\x05\x07\xaf\x56\x6b\xd8\xc1\xab\x95\xef\x1c\xbc\x5a\xb5\x90\x83\x57\x2b\x1f\x07\xaf\xe6\xe0\xd5\x1c\xbc\x9a\x7a\x1c\xbc\x9a\x83\x57\xbb\x83\xbe\x3a\x78\xb5\x6a\x8b\x0e\x5e\xcd\xc1\xab\x39\x78\xb5\xe6\xdc\x39\x78\x35\x07\xaf\xe6\x00\x68\x1c\x98\x91\x83\x53\x7b\x18\x38\x35\x07\x45\xe3\x80\x21\x1f\x12\x18\xd2\x41\xf9\x38\x28\x9f\x87\x83\xf2\x71\x80\x65\x0e\xbe\xd5\x01\x6e\x3a\xc0\xd6\x26\x7d\xee\x13\xb0\xd5\x81\x48\x3a\x78\x35\x07\xaf\x56\xc2\xab\x7d\x8b\x38\x6a\x5d\xe1\x02\x05\xa6\xc8\x09\x87\x4d\x7c\x03\x9c\x08\x49\xfc\x5e\x48\x65\xeb\xc1\x2f\xf4\x83\x13\x23\xb7\x86\xf7\xd0\x09\x3c\x54\x62\xb2\xdc\x2e\xe8\x45\xeb\x10\x48\x15\xf3\x68\xad\x96\xdb\xa0\xd2\x6e\x05\x8f\xed\x8e\x51\x3c\x5a\xe8\x93\x6b\x61\x6f\xad\x53\x7e\x07\x28\x5e\x9b\xac\xbc\x27\x80\x36\xd5\x81\x2c\x65\x7d\xb1\x09\x52\x94\xe5\xca\xd3\x05\xba\xb3\xfe\x82\x91\xa7\x8c\x0e\xd1\x93\x20\x4f\xfc\x9c\xc1\x79\xec\x4c\xb7\x03\xa1\xa7\x1c\x7f\xe9\xf4\x74\x63\xa0\x9e\xbe\x95\xde\x0c\xaf\x67\xad\x56\x7a\xc3\xf6\x3c\x38\x70\x4f\xdb\xf9\xf9\xd8\xd0\x7b\x4c\x34\x45\x6e\xb7\x06\x49\xd7\x24\x9c\x83\x00\x3a\x5f\x13\x02\xa8\x80\xd9\x25\x92\xce\x64\xf9\x7a\xb8\x3b\xdc\x15\xbf\x2b\x36\xe7\x73\x2f\x6d\x9e\x57\x3b\xa2\xe0\x4e\xc2\x42\x46\x53\x96\x3e\x2b\x3f\xab\x03\x08\x78\x61\xee\x33\x8c\x81\x98\xf2\x30\xe4\x57\x41\x34\x23\x1e\x5f\xc4\x3c\x62\x51\xa6\xa4\x62\x41\xa2\x67\x84\x28\xfb\x99\xe8\xe7\x5e\x59\x67\xf1\xbb\x17\x05\xd5\x9f\x2b\x7c\x77\x6f\xf9\x6a\xf8\x9d\x78\x55\x98\xe5\x6a\x60\x45\x1e\x8d\xc8\x84\x7d\xde\x80\x45\x0e\x78\xe8\x66\xc0\x43\x9b\x01\xfc\x9c\xdf\x07\x2e\xcf\xab\xa7\x8e\xcb\x63\x81\xdd\xe9\x09\xba\x73\xcb\x90\x3b\x0d\xc0\x9d\x46\x73\x97\xdf\xa6\x17\x82\x8b\x5e\x64\xfc\x92\x45\x6a\xac\xa7\x47\x27\x1f\x47\x07\x47\xfb\x07\x07\xef\x3f\x1c\x9f\x5d\x9c\xbd\xff\xd3\xd1\xb1\x18\x6b\x5b\x27\x5a\xf1\x7a\x64\x43\x71\x70\x91\x70\x2e\x47\xa7\x98\x6b\x85\xb4\xb2\xe5\x8b\x9f\xde\x9f\x9e\x5d\x5c\xec\x19\xdf\x8d\xdf\x9f\x9c\x35\x28\xff\x14\x10\x81\xd4\x9f\x4f\x1a\xa3\x67\x5b\xff\xe0\xe3\xf1\x08\x2a\x69\x94\xfe\x78\x3c\xfa\xe5\x97\x4a\xd1\x31\x4f\x32\x73\x59\xf1\xa6\x74\x74\xf9\x45\x23\x5e\x21\x7f\xb5\x42\xfa\x14\xc7\x6d\x07\xb0\x8f\x14\xdd\x1e\x08\xdf\xa7\x54\xf5\x75\x8b\xc9\x6d\x07\xad\x83\xfa\xb9\x0f\xa8\x9f\x1b\xc3\xdf\x28\xd7\x0d\xad\x4e\xb1\x7a\xf6\x9b\x3f\x63\x2c\x4a\x90\x30\xff\x10\xc0\x4a\x4e\x0b\x9c\x96\xd1\x2c\xe2\xc5\xcf\x08\xaf\x22\x96\x52\x95\x6d\xea\x10\x38\x67\x2c\x59\x34\x23\x5a\x06\x38\xf9\x47\xd7\x71\xc2\xd2\xb4\x36\xd0\xb2\x10\x78\xeb\x8a\x85\x39\xac\x63\xf4\x34\x4b\xeb\xd0\x2e\xc7\x3c\x1b\x35\x22\xec\x89\x72\x32\x36\xb5\x85\xed\x5d\x05\x91\xcf\xaf\x8a\xca\x1f\x0d\xf2\x4f\x27\x2c\x8d\x0d\x1a\xe8\x0c\x7f\x67\x18\xde\x88\x91\x8a\x24\xe5\x4a\x3c\x2c\xc2\x25\xd5\xe2\x83\x30\x31\x9a\x41\x48\x69\x16\x2c\x98\x05\x77\xe7\x0b\xc0\x0b\x2a\xda\x45\xb1\x6e\x20\xae\xba\xf5\x2d\xc9\xa3\x2c\xe1\x61\x1c\xd2\x7a\xd0\x5d\x59\xe9\xf9\x96\xac\xb6\xf2\x5e\xf5\xe8\x7c\x4b\xa3\xe5\xd6\x1a\x4d\xb3\xcc\xf3\x37\x6f\x52\x91\xa1\x28\xf0\x05\xc1\x18\xb5\x83\x2c\x18\xce\x75\x07\xb5\x50\xed\xcd\x2d\x40\x2d\x7c\x29\x21\xb0\x47\x91\x79\x98\x69\xe6\xf3\x3c\xeb\xdb\xe4\x46\x31\xb0\x5f\x20\x68\xc2\x67\x14\xf1\xfe\xb9\xe3\x37\x94\x51\xef\x1f\xdf\x90\x34\x8f\xc5\x2d\x53\x74\x16\x3c\x39\xef\x2a\xf0\xfd\x7e\x11\x4e\xee\x06\xa2\xe2\xc1\xa1\x50\x3e\x5f\x2c\x85\xa7\x1f\x75\xdf\x11\x8b\xae\x3e\x6d\xbc\xb6\x84\xa2\x3f\xb5\xd0\xfa\xc7\x14\x3b\xff\x54\xc2\xd9\x3b\xf0\x2f\x4b\xf5\xd3\xe3\x87\xc1\xdc\x00\xd0\x12\xac\x6e\x0e\xd1\xb2\xd9\xe9\x07\x47\xa5\x7c\x84\xb0\x8a\x0e\xec\x01\x1e\x07\xf6\x70\xc3\x3e\x38\xb0\x87\x07\x06\x7b\xc0\xba\x93\xbc\xc6\x4b\x6a\x18\x10\xa6\x6f\x6e\x86\xdc\x40\x7a\xe0\x11\x34\xba\xd1\x82\x3f\x60\x11\x0a\xda\x01\x22\x0a\x05\x97\x83\x89\xe0\x0d\x0a\x3d\x0d\xfc\x84\x56\xd0\x89\xda\xca\xee\xc4\xbf\x68\xd6\x70\x8b\xb0\x15\xf7\x8d\xce\x01\x7e\x5b\x32\xd5\x69\x18\xa2\x88\x6c\x09\x76\x50\x2a\x03\x71\x56\x6b\xde\xfe\xa8\xc6\x1d\x40\x3a\xce\x05\xee\x22\x69\x30\xbe\xa3\x28\x8b\x2f\x22\xd2\xf7\xae\x89\xf8\x94\x71\x1e\xee\x87\x76\x8f\x2b\x4e\xec\x7e\x68\xf2\xb4\xd1\x0b\xee\x87\x86\x5f\x42\x04\xfe\xfd\x50\xf2\x89\x45\x2e\x3e\xc0\xf2\x7b\x32\xd0\x05\xf7\x43\xbb\xa7\x01\x5f\x60\xa4\x55\x99\x18\xb9\x1e\x77\xb0\x89\xf7\x5c\x35\xc2\xf4\xf5\x70\xf7\xcd\xf0\x15\x06\x99\xaa\x28\x82\x33\xe9\x56\x56\x42\xf2\xe3\xef\xb2\x30\x71\x49\x87\x9f\x7e\xd2\xe1\x07\xf0\xfc\xff\x3c\x13\x0e\xdf\x20\xdd\xb0\xcb\x36\xdc\x2b\xaa\x41\x14\x9b\x06\x21\xbb\x10\x17\x69\x2c\x8a\x9a\x11\x3e\xdb\x29\x23\x86\xc4\xff\x86\x21\x9f\xb9\x64\xc5\xd5\x76\x1f\x2c\x59\x31\x92\x0e\x6d\x4c\x17\xca\x0d\xaa\x11\x62\x51\xfe\xe3\x33\x8a\x52\x78\xe8\xbc\xc5\x4f\x2e\x22\x42\x95\xef\x9f\xb5\xb8\x86\xa8\xd9\x17\x19\x64\x4d\xd1\xb0\xe9\xd9\x2e\x9d\x64\x43\x96\x0c\x66\x2c\x02\x37\xd6\x49\x1e\x84\x3e\x4b\xa0\x01\xd5\xfc\x0b\x5f\xf0\xad\x97\xc0\x7a\x13\x06\x35\x9c\x05\x0b\x96\x66\x74\x11\xef\x91\x28\x0f\xc3\x9b\x28\x72\xba\x64\xcd\xbe\x7a\x9a\x30\x48\xb3\x3f\x19\xdf\xbf\x2d\xc2\xaf\x6f\xa0\xcb\x31\x89\xc9\x5a\xa4\xa7\xa6\xff\xde\x95\x95\x79\x73\xb6\x28\xc3\x0f\x78\xcc\xa2\xfd\xf1\xe8\xe3\xeb\xd3\xea\xef\x44\x48\x0c\x5e\x12\xc4\xe0\xcb\xdf\xe8\xbb\x5a\xe2\x45\x62\x3d\xed\x15\x98\x2a\xa3\x95\xf8\x06\x44\x9a\xaa\x6b\x76\x9c\xf0\x98\x25\x62\x5f\x56\x54\xb4\xda\xba\xaa\xb2\xb5\x4a\x37\x9e\x8b\xae\xca\xf8\x59\x5f\x2c\x28\x19\xef\x2a\x47\xcc\x7c\x39\x3c\xcc\x7c\x19\xa4\x24\x61\x71\xc2\x52\x05\x0a\x50\x67\x98\x7c\x4a\x68\x44\x38\x84\x0e\x0f\x41\x70\x67\x49\x91\x8f\xc7\xe3\xd1\x92\x25\x19\x49\x98\xc7\x67\x51\xf0\xb7\xa2\xf2\x54\xc5\x52\xc3\x2e\xc9\xea\x95\x82\xdc\x07\xa2\xb8\x90\x24\xb6\xc1\x65\x62\x41\x57\x24\x61\xa2\x19\x92\x47\x5a\x85\x28\x6c\x08\x4e\x92\x08\x81\x71\xca\xf7\x74\xcc\x03\xb5\xa5\xa4\xd4\x99\xad\xd0\x7d\x3c\x98\xe4\x19\x4f\xd2\x1d\x58\xfe\x3b\x69\x30\x1b\xd0\xc4\x9b\x07\x19\xf3\xb2\x3c\x61\x3b\x34\x0e\x06\xd0\xf7\x08\x17\xfa\xc2\x7f\x56\xf8\x39\x3d\x3f\x37\x28\xbc\xd3\x2c\x81\xd0\xed\xf2\x77\x58\xcf\x6d\xd3\x20\x16\xb4\x10\x6b\xa9\xfc\x58\x66\x41\x2a\xa8\xad\xa4\xdc\x93\xa3\xd3\xb3\xc2\xcb\x0a\x66\xa4\x31\x05\x40\xfc\xf2\xcb\xb4\x9c\x07\x41\xb4\x20\x9a\x42\x8a\xbf\x20\x55\x79\x98\x98\xe6\xc5\x26\x96\x5e\x18\x54\xe0\x95\xf1\x49\xf3\xc9\x02\x53\x4c\xa3\x23\x17\xc9\xf8\x50\x5c\x54\x84\xe0\x3b\x61\x32\x7e\xc8\x1f\x92\x91\xb8\x36\x2d\x58\x78\x40\x53\x76\xe7\xb3\x20\xa8\x9d\x0e\x04\x6d\xfb\xce\x43\x23\x58\x48\x2f\x8e\x94\xd3\xdf\x54\x22\x7b\x0c\xd3\x56\xdf\xc4\xa7\x31\xf3\xaa\x1b\x59\x0a\xbf\x32\x6f\xac\xd8\xc0\xd5\x23\xaf\x5a\xb9\x65\x2b\x8b\x87\xa6\xc7\xf9\x62\xc2\x12\x83\xa5\xb6\xb6\xa1\x4f\xb1\xa0\x58\x4d\x99\x96\xca\x6b\xff\x94\x44\xf8\x42\xdd\xce\xa8\x94\xd8\xff\x72\x88\x45\x8c\x46\xe0\x37\x5f\x7f\xb3\xfb\xd5\x5f\x9f\x37\x5f\xa1\x9a\x72\x4f\xec\xce\xd7\x5f\x35\x5f\x23\x49\xc5\xd6\x9d\xb1\xa4\xfe\x5a\xcd\xbc\x69\xa0\xb5\xf1\x1c\x94\x45\x71\x7f\x08\xf6\x2f\xe8\x89\xb4\x94\x2b\x48\xd1\x19\xd3\xa1\xb3\xba\x07\x8a\x24\x61\x32\x09\xb2\x84\x26\x2b\x3c\x6a\xd0\x0d\x96\xa2\x8b\x32\xc6\x03\x0c\x9b\x9f\x05\x19\x33\x84\x56\x59\xbb\xb9\x2a\xa7\x3f\xcd\x68\xe4\xd3\xc4\x17\x37\xc9\x90\x26\x33\x56\xef\xae\xa9\x52\x02\x43\x10\x3b\x2d\x6a\xe6\x00\xc4\xa7\x65\x91\xe0\x03\xc7\x93\xf9\x55\xad\xd7\x90\xd3\x78\x16\x2c\x59\xa4\xe5\x04\x55\xdd\x33\x36\x4e\x5a\x36\x57\xf9\xa0\x07\x58\xaf\x2e\x7c\x04\x3e\xb7\xc8\x53\xe0\x23\x7c\x2a\xd7\x15\xf9\x44\xe9\x5e\x14\x7d\x12\xc4\xc3\x3f\xf7\x16\x8b\x4f\xd6\x2e\x11\xf2\x03\x4f\x4a\x8a\x97\x23\xc9\x53\x56\x54\x85\x35\x6f\x93\xab\x39\x4b\xe0\xd7\x4f\x82\xd8\xf6\x2a\x3f\x89\x8f\x68\xc2\xc8\xee\x1b\x32\x09\x32\xb9\x7d\x86\xd0\x54\x7d\x42\xcb\x76\x44\x3f\xed\x75\x36\xfb\xb0\x2d\xdb\x89\x7c\xf2\x69\xb1\xc0\x06\x5f\x7f\x55\x69\xf0\x67\x51\xb8\x71\x73\xd2\x3a\x2a\x86\x22\x36\x47\x24\x76\x39\x6e\x7f\x53\xb5\x31\x4b\x06\xfb\xa7\x2a\x2a\x20\x68\x24\xe8\x2d\x9f\x98\x66\xe2\xcc\xdd\x23\xff\xfd\xe2\xfc\xdc\xff\xff\xbf\xdc\xc3\xff\xfc\x9f\x7f\x54\xff\xad\x7e\xde\x74\xa5\xd8\xf8\xae\xfe\x96\x26\x09\x5d\xd5\x5f\x0a\x26\xc0\xa2\x31\x4f\x4c\x4c\xab\xb2\xbe\xde\x16\x25\x15\x43\x04\x3f\x7b\xa4\xbf\xe0\x21\x71\xc2\x33\xee\xf1\x50\x49\x29\x58\xb5\x91\x32\x92\x4f\x82\xb8\xb2\xfb\xfb\x46\x52\x2b\x08\x5c\x0d\x16\xf9\x62\x8f\xbc\xf9\xe6\x9b\xd7\xdf\x18\xde\x07\x11\xbe\xdf\x5d\x93\x61\x86\x7c\x76\xca\x96\x2c\x09\xb2\xd5\xa9\x97\x30\x56\x97\xe9\x1a\xc3\x7e\xfe\xb6\xfe\x85\x1a\x7e\xc8\x67\x24\x95\x6f\x08\x9d\xf0\x25\x93\x21\x11\x21\x9f\x19\x23\x3e\xc5\xca\x49\x19\xfa\xb8\x8b\x0a\x30\x70\x46\x3b\x36\xc8\xe8\xf8\x87\xf7\xa6\x23\xa2\x6d\xfa\xc5\xd1\x73\xc6\x8f\xb9\xcf\xde\xb1\x74\x8e\x41\x3a\xcd\xb4\x69\xf5\x51\x1d\x9b\xbe\x22\x29\xcb\x52\x31\xa3\xa0\xb7\x9b\xe6\x61\x88\x01\xdb\x19\x27\xa6\x44\x6b\xe2\x11\x13\xbf\x60\xe9\x5c\x10\x05\xa3\x73\x7c\x7d\x40\xe2\x32\x6b\x1f\xd0\x84\xf3\x90\xd1\x86\xec\x1b\x27\x6c\x1a\x5c\xef\xfb\x42\xc6\x0d\x52\xb6\x60\x4d\xb7\xca\xc6\x80\xc6\x86\x6f\xca\x13\x04\x52\x6f\x40\x09\x42\xf5\x22\xa6\x11\xb5\x89\x15\xa4\xff\x39\x66\xe8\x50\xa9\xa7\x4e\xab\xdd\xd0\x4e\x22\x33\x03\x50\x71\x26\xa0\x0e\x9c\x06\xcc\x98\xb6\x57\x11\xaf\xe3\x50\xf3\x02\xdf\x24\xfb\x18\x86\x20\xda\x80\xa6\x71\x59\x97\x35\xab\x1d\x3e\x61\xe5\x38\xea\xe1\x28\xe5\xd3\x7d\xca\xb5\x4b\x31\xa6\x9e\x69\xb2\x8c\xc4\xf3\x51\xd2\x0c\x0b\x60\xf1\x96\x07\x0a\x88\x28\x76\x96\x4f\xc3\x84\x51\x7f\x25\xef\x6c\x3e\x09\x22\xf2\x49\x48\x9f\xe9\x50\x6b\x04\x4e\xcf\x5e\x42\x07\xc1\xbb\x5b\xeb\xd9\xdb\x72\xc4\xb6\x1e\x4d\x2d\x67\x6f\xdb\x11\x6b\xaf\xb3\xfd\xec\x6d\x3d\x62\x5b\x3a\xda\x7a\xf6\xb6\x9f\xb0\x3d\x6a\xed\x7f\xf4\xda\x37\x2a\x3e\xdd\xeb\xb2\xf5\xe4\x24\x37\x39\x76\xa5\x05\x48\x79\x3b\x8c\x3b\xf9\xdb\x69\xfd\x03\x20\x06\xf8\x7c\x89\x5d\x8a\xe0\xdd\x78\x11\xc5\xdd\x2a\x5b\x30\x72\x38\x19\xdc\xa8\x6a\x91\xce\xdb\x70\xeb\x9c\x96\x3c\x66\x5b\xb9\x89\x81\x85\xa1\xd8\xe8\xa2\x51\xf3\x42\xc5\x4e\x14\xc8\x21\x10\x1a\x1f\xad\x2a\xcd\xc9\x24\xc2\xd9\x9c\x2d\x36\x67\xad\x75\x5a\x00\xa0\xb9\x76\x4f\x17\x77\xff\x20\x9a\x85\x38\xb2\x2b\xc1\x2d\x55\x51\xf3\x3c\x97\x24\xbc\x03\x96\x7a\x67\xa2\x9b\x9c\xe1\xa3\x6b\x54\xea\xf4\x5f\x44\xda\x17\xe6\x55\xc4\x13\x2d\xaa\xda\xd4\x67\x59\x11\x51\x35\x89\xb9\x1d\xea\x91\xd8\xf5\x02\x45\x2e\x6b\xf0\x35\xac\x27\xb4\xc6\xa7\x3c\x4a\x48\x00\xb7\xfc\x15\xf4\x4e\x2e\x19\x1e\x31\x79\xf9\x4f\x99\xec\xe8\x8d\x57\x50\xd9\xbb\xce\x25\x64\x9e\x5d\x6d\xfc\x8f\x72\x11\x99\x3f\x6b\xfe\x2a\x96\x5a\x35\x08\x22\xcd\x78\x02\x51\x1b\xf8\x13\xc2\x6b\xa2\xd2\xdc\xf3\x58\x9c\x31\xff\xb8\xa1\x85\x2e\x03\x50\x95\x56\x59\xfd\xe2\xf1\xc8\x47\x47\xd5\x3d\xf2\x17\x30\x74\x80\x49\xce\xff\xa8\xd4\xc5\xf0\x2b\x68\xf9\x1f\xb9\xaa\xbf\x5f\x8e\xa9\x8d\x34\xfc\x65\x0a\xa9\x8a\x62\x5f\xfc\x6c\xd4\xe7\xb7\x67\x97\xba\x3b\xed\xbd\x53\xb3\x3b\x35\xbb\x3e\x05\x4e\xcd\x7e\x9f\x6a\x76\xc1\x0e\x9a\xda\x75\x29\xf4\x79\x9a\x99\x4c\x15\x2e\x66\xef\xf6\x55\xec\x67\x73\x56\xde\x02\x94\x6a\x5f\xb0\x1f\xc3\x09\x7a\x13\x2d\xf9\x25\x63\xf1\xfb\x24\x98\x05\x11\x0d\x8f\xd9\x75\xf6\x13\xaf\xc7\x75\x34\xba\xf6\x3e\x56\xce\x39\xe2\x63\xe8\x18\x97\x35\x90\x88\x5d\x67\x73\x1e\x63\x4c\x9c\xb8\x1d\x45\x52\xeb\xdd\xa5\xf4\x01\x9a\x12\x41\x54\xb1\xc6\x33\xd8\x24\xca\x81\x49\x57\x0e\xc0\x8c\x00\xe2\x16\xf3\xc5\x27\xa6\x7a\x45\x2d\x69\xa1\x9e\xc9\x51\x2e\x27\xe7\x5b\xa2\x73\x44\xf4\x4e\xf4\xfb\x0f\xe7\x5b\xe0\x5c\xc4\xa8\x2f\xc8\xab\xbd\x4d\x59\x38\xfd\xc3\xf9\xd6\x0b\x69\xd4\x78\x69\x6a\x02\x05\xf5\x62\x6d\x90\x49\x42\x23\x6f\xae\xe6\xe9\x58\x34\xcd\x23\x72\xbe\x35\x09\x12\x7f\xe8\x4d\x67\xe7\x5b\x86\x79\x6b\xd5\xf4\x00\xc4\x6f\x8f\x45\x02\xc3\x14\xc7\x4d\x01\xc4\xa2\xf8\x8b\xbc\xa2\x48\x5c\x41\x71\xa9\x06\x36\x43\x8d\xaa\x9d\x20\x85\xd5\x25\xbe\x15\x52\x25\x72\x15\x58\x6f\xe2\xe2\x03\xff\x0a\xd0\x05\x2d\x65\xd9\x76\xed\xfc\x48\x09\x35\xd5\x89\x0e\xab\x50\xcb\x36\x09\x86\x6c\x48\x28\xfc\x03\x3a\x01\x7f\xe1\xad\x87\xb0\x25\x4b\x56\x05\x00\x62\x15\x47\xc6\x4a\x37\xbb\xca\xaf\x01\xdd\x66\x21\x5f\x81\xdc\xa6\x74\x48\x00\xff\x8c\xbd\x93\xe7\xdc\x9c\x2e\x59\x49\x8b\x20\x9a\x0d\x89\xb8\xad\x1b\x21\xe9\x14\x91\x24\x81\xe4\x32\xc0\x9d\xa0\x6c\x0f\x6c\x11\x67\xab\x35\x87\x24\x5a\x1e\x8d\xfb\xac\x05\x0d\x07\x45\xe3\x18\x12\x57\x5a\xda\xe3\x22\xc2\xe1\x0b\x31\x31\x3c\x31\xae\x05\x69\xc2\xcb\x38\x7e\x2e\xa6\x08\x56\x01\x28\xb5\xa3\xc2\xf0\x07\x36\x9d\x6d\xa5\xcf\x29\xf5\x5e\x9f\xfe\x82\x3e\x98\xa3\xf1\xf2\x0d\xba\x61\xfe\x75\x4f\x7c\x6a\xb4\x58\xf0\x84\x7c\x2a\x8a\x7f\x8d\xc5\xf7\xf0\x07\xe8\x1e\xfc\x00\xfa\x16\x22\x0a\x40\x3f\x2a\x03\xd0\x3a\xa4\x56\xa7\x91\xd7\x80\xd1\x4e\xce\x23\x10\x2a\xf2\x49\x61\xc6\x9c\xb0\x90\x47\xb3\x14\x19\x91\x0e\x0e\x06\xcb\xb3\x54\xef\x9b\x6a\x4e\x19\x20\xea\xd4\xcd\xb4\xd2\xa7\xf4\x8a\x49\x06\x24\x56\xbc\xe8\xae\xa4\xea\x06\x6b\x60\xe3\x65\x9d\xb0\x05\xcf\x8a\xd5\x5d\x99\x55\x58\xcc\x46\xd9\x83\x20\x53\x28\x16\xf3\x18\x56\x61\x95\x6c\xb0\xb6\xd3\xda\xe2\x46\x33\x59\x15\xf1\xac\x3a\x10\xc1\x64\x26\x2c\xbb\x62\xd2\xe7\x16\xdc\xf6\x70\xfb\x8b\xea\x0b\xf6\xae\xf7\x7b\x5b\x50\xb2\x38\x07\xcc\x33\x0c\x2b\xa4\x68\x21\x98\x92\x09\x17\xcc\x25\xf2\x53\xdc\xc7\x62\x3f\x7e\xff\xe3\x58\x1c\xf1\x43\x51\x74\x5f\xee\x95\x52\xad\x63\x5b\x39\x58\xf7\x9b\xfe\x75\xbf\x69\xd4\x0d\x28\x72\xc6\x8e\xcb\x61\x96\xb6\x73\x8f\x83\xe5\x58\x89\x74\x1a\x19\x7e\xfb\xf5\x9f\x69\xa5\x29\x35\x15\xc6\x9e\xcb\xe9\x97\x6c\x58\xd9\xe8\x41\x81\x40\x33\x6d\xc3\xac\xb5\x16\x15\x9e\x68\x23\xc2\x5f\x49\x36\xf5\xdf\x91\x7d\xb9\xcb\xf5\x43\x5e\xae\xd7\x4c\x56\xbc\xc1\x1d\xbb\x99\x8b\x58\xbb\x69\xeb\x2f\x0d\xf7\xed\xb5\x92\x15\xbb\xcb\xb7\xbb\x7c\xbb\xcb\xf7\x53\xbb\x7c\xeb\x1c\xa2\xe7\x15\xbc\xc9\x71\xca\x67\xfd\x7b\xb9\x45\xc5\xdc\x26\x93\x01\xd0\x6d\xb7\x3f\xc1\x21\x16\x23\x41\xe4\x8b\x11\xa8\x0b\x06\xac\x1c\xe0\x6d\x05\x9c\xb7\x58\xb7\x13\x06\xd0\xac\xf8\x8d\x51\x5b\x0e\xb1\x5e\x78\xab\xd0\xd7\xf9\x14\xcd\xb0\x31\xcd\x02\x70\xa1\x5f\xa1\xec\xca\xc5\xc1\x41\x54\x1e\x1a\xeb\xf5\x6f\x11\xa4\x19\xbd\x64\x51\xb8\x22\x99\x38\x4d\xe4\xc2\x86\x56\x68\xd9\xca\x06\x97\xb1\x35\x89\x0a\xa8\x98\x6b\x7d\x63\x15\x48\xc4\x94\xd6\x7f\x93\x84\xad\xff\xdc\x74\xe1\x18\x98\xf0\x39\x9d\xd8\x72\xaf\x62\xcb\x26\x71\xf7\xeb\x8b\x2e\xb6\xb0\xfa\x52\x7e\x69\x96\x68\x0a\x31\x1b\x06\xdf\xdf\x53\x20\x40\x73\x04\xb5\x50\x00\x69\x87\x2e\xf4\x59\x5a\x27\x5d\x14\x80\x93\x90\x9c\x84\xf4\xd0\x12\x52\x73\x07\xb7\xc5\x01\xe0\xa7\x13\xc3\xf9\xaa\xed\xf6\x35\x84\x23\x60\xa1\xe6\x3d\xde\xec\xa9\x5e\x58\x39\x84\xca\x4d\x2e\xfa\x26\xd5\xd2\x52\x08\x2a\x7a\x63\xd1\x3f\x25\x79\x14\x19\x0d\xfb\x6d\x42\x84\xac\xf2\xc7\x0f\xa3\xc3\xce\xde\x96\x45\x55\x5f\xe1\x6f\xa9\x3f\xb5\x76\xae\x47\xf3\x67\xa2\x48\xbf\xe6\x45\x51\x35\x69\x92\x2d\x02\xbc\xfa\x4d\x7a\x51\x44\xef\x9e\x30\xea\xaf\x3a\xa5\xd4\x4a\xe9\x02\x41\x40\xe6\x86\x48\x83\x59\x04\x02\x78\x94\x95\xf5\x92\x45\x30\xab\xa5\xc2\xad\xf4\x8d\xc3\x67\x34\x94\x6e\xff\x98\xd0\x30\x25\x69\xee\xcd\x85\x4c\x89\xe0\xd6\xa8\x8a\x2a\xd4\xc7\x57\x34\x10\xbb\x7c\xca\x2d\x3a\x3e\xcf\x63\x69\x11\x8d\x6f\x83\x16\x27\x5d\xb6\x95\x25\x4d\x02\x1a\x75\xba\x75\x7f\xc4\x62\xc4\x67\x5e\x48\x13\x96\x4a\xf7\x31\xf9\xb5\xb6\x96\x35\x9f\x4f\x2f\x0b\x96\xf6\xfe\x98\x66\xca\x09\x95\xf7\x2a\x54\x6e\x02\xb0\xb6\xbe\x50\x69\xc3\x4f\x2b\x85\xca\x66\x89\xa6\x50\xb9\x21\xca\xda\x3d\x09\x95\xb8\x81\xd7\x0a\x30\xad\xa7\x1d\x70\x02\xa5\x13\x28\xf5\x29\x70\x02\xe5\xbd\x09\x94\x4d\xfe\xd3\x15\x58\x8a\xfb\x7d\xd3\xd0\xd2\xab\xf4\x34\xf1\x0e\xd3\xec\x60\xce\xbc\xcb\xce\x18\x9c\x53\x96\x11\x5c\x28\x03\x0d\x03\x67\xe0\x89\x8f\x09\x8f\xc8\xfe\xcf\xa7\xe4\xe8\xe0\xab\xc2\xaf\x21\x1d\x92\x7d\x79\xe6\x99\xe4\x86\x65\x35\x00\x10\xfd\x65\xcf\xb7\x0e\xf9\x31\xcf\xe6\x90\x54\x67\x9b\x9c\x6f\xc9\x50\x9f\xf3\x2d\xc2\x13\xf1\x56\xa2\x13\x9d\x6f\x75\x84\xaf\x16\xd5\x98\xc2\x79\x58\x94\x9b\xb0\x91\x07\xe5\x57\xa6\x97\xd8\x15\xe3\x67\xd8\xab\xf5\x64\xc1\x49\x3c\x3d\xe0\x51\xc4\xbc\x4c\x9c\x8b\x6f\x39\xf5\xbf\xa7\x21\x8d\xbc\x20\x9a\xf5\x8d\x8a\xfa\x7e\xfc\x43\x47\x15\xe8\xee\x13\x44\xe4\xfb\xf1\x0f\x80\x99\x6a\x34\x4a\xca\x23\xbd\x8c\xa5\xc2\x65\x55\x4d\xbb\x89\x0d\x89\x19\x87\x0c\x65\x21\xa7\x3e\x99\x40\x73\x2c\xb1\x1b\x52\xe5\x67\x86\x6f\xe0\x26\x21\xf5\x84\x85\x59\x1c\xb0\xa1\x32\x0e\x62\xdb\x04\x72\xad\x9b\x2a\x4d\xea\x29\xc1\xa4\x6f\x79\x2a\x83\x68\x49\xb0\x88\x13\xbe\x94\x67\x4f\xcc\x12\xb8\xa0\x45\x1e\x2c\xb1\x98\xfb\x83\x8c\x0f\xda\x02\x0e\x8a\xa1\xa6\x38\x30\x74\x03\x4f\x18\x4d\xd1\xc7\x4a\x62\x64\x41\x4b\xe8\x7f\xee\xb3\x49\x8e\x01\xc5\x71\x9e\xc4\x3c\x15\x8b\xbf\x7d\x81\x6e\x14\x6a\x36\x89\xa7\xe2\x52\x30\x9a\x52\x8f\x8d\x65\xa8\x66\x8f\x45\x52\xff\x06\x4f\x86\x84\x81\xbc\x42\x58\x91\x27\x12\x25\x7f\xb5\x1a\x4c\xbd\x46\x69\xbb\x00\xe4\x52\x37\x06\x79\x22\xd3\x2c\x13\x13\x23\xd6\x5a\x91\x83\x0d\xf0\xa2\x08\x4f\x7c\xf0\x5e\x31\x92\x9b\x66\xde\x5c\x43\xd8\xda\x29\x0e\x12\x85\xa2\x25\x15\xec\x11\x63\x7e\x8a\xc0\x5c\xf0\x85\x0e\x0d\x66\xbe\xee\x88\xe1\xa8\xa8\x10\x99\xd2\xae\x68\x68\x1a\xf2\xab\x94\xf0\x25\x4b\xea\x11\x20\x3d\x2a\x9d\xd3\xc8\x17\x0b\x20\xf2\xf8\x02\xce\xd2\x12\x1f\x2c\xe2\x3e\x8b\x79\x92\xa5\xd2\x71\x42\xae\x4c\x18\x14\xcf\xb3\x34\x30\x47\x26\xea\x4a\x00\x42\x46\xc5\xed\x4b\x9c\x88\xe5\x78\x8b\x51\x68\x53\xf0\x22\x4f\x73\x1a\x86\xc6\x88\x1f\x21\x53\xfa\xa0\x2b\x18\x0e\x87\x2f\xf5\x50\xc7\xff\x7e\xc1\xa2\xe1\x7f\xfc\x83\x65\xf3\xe1\x7f\xfc\x23\xcb\xa3\xf0\xd5\xff\x79\xb9\x6e\x2c\xa7\x58\x8e\xb8\x15\x3e\x44\x5a\xf2\x81\x3e\x2b\xb2\xf9\xd9\x36\x09\xa6\x2a\x26\x73\x5b\xad\x2b\x96\xe1\x1e\xbe\x14\x3b\x3d\x1c\xe6\x5a\xf9\x8b\x49\x3c\xbd\x50\x68\x75\xa6\xb1\xa7\xab\xd4\xcb\x42\x7d\xbf\xea\x9f\x83\x0b\x10\x9f\x8a\xc5\xaa\xd6\x17\x8b\x52\xe9\xcf\x48\xb3\x4a\x59\x53\xed\x79\x2a\x44\x20\x0f\x45\x16\xbc\x03\xcb\xa5\xf6\xfc\x79\x8a\xec\x96\xc6\xb8\x06\x64\xa1\x20\x4a\x85\xb8\x0a\x30\x05\x84\x5f\x19\xfd\xd5\x9a\x5b\x47\x4c\x33\x93\x71\x25\x65\x03\x37\x0e\x5a\x9d\xc4\xd3\x35\x4e\x99\x23\x35\x2d\xe5\x14\xc9\x19\x82\x28\x19\xe5\xce\x29\x7a\x2f\xc4\x21\x48\xca\x69\x34\x94\x95\xbd\x06\xd8\xfc\x8d\xba\x2d\x83\x58\x64\x50\xcc\xbb\x1e\x3e\x99\x30\x84\xe6\x67\x95\x73\xb1\x3c\x04\xe7\xfc\x4a\x3f\x02\x4c\xc3\xd0\x37\x73\x45\x59\x9f\xf1\x72\xc7\xbf\x00\xef\xa9\x92\x15\x68\x81\x65\x46\xff\x55\x9a\x30\x71\x96\x5c\xd1\xc4\x47\x9c\x48\xe9\x64\x54\x24\xe3\x14\x7c\x61\x0a\xbe\x6d\x19\x27\xe7\x5b\x67\x39\x64\x26\xd9\x42\xa7\xb6\x09\xcf\x8c\xce\x5d\x52\xc2\xc6\xe4\x97\x2c\x8d\x79\x94\x96\x70\x86\x41\x4a\x32\xa8\x05\x1b\xac\x79\x36\x41\x7b\xc6\x9d\xa5\xba\x70\x78\x7a\x22\xc4\x34\xfc\x0e\xdb\x31\x55\x3d\xc9\x33\x59\xa6\xda\xbe\x45\xbf\x08\xfe\xc7\x7e\x90\x30\x2f\x0b\x57\x46\x9f\x2b\xd1\xb3\x48\xb5\x2f\xe7\xaf\x2c\x62\x64\x84\xe0\xc9\x16\xc7\x8c\x26\xa9\xee\x81\x3c\x1a\x2b\x51\x3a\x88\x66\x98\xad\x8e\xfb\xec\x0f\xea\x72\x0a\xe2\x89\xc5\x95\x36\x66\xc9\x22\x48\xd3\x60\xc9\xc8\xdb\xaf\xb4\xb3\xaa\x5c\xe3\x38\x43\x1b\x70\x55\x21\xda\x8c\x13\x7e\xbd\x52\x10\xab\xa7\xa1\x58\x52\x3d\x77\xec\xf7\xe3\x1f\xda\x2b\x30\x2f\x7c\xf3\x79\xaf\x09\x84\xcf\x53\xc2\x16\x13\xe6\x8b\xe5\x09\x38\xa2\xb1\x68\x41\x2a\xb6\x52\x52\x6d\x4a\xe2\x68\xae\xab\x06\xd4\x07\x3f\x92\x69\x19\x0f\x44\xc1\x3c\x5e\x83\x5f\x75\x54\x51\xe1\x63\x48\x0b\xd3\xe0\x91\x3c\x1a\x9f\x8b\x13\x8e\xca\xc4\x70\x45\x3c\x51\x23\xc9\xd1\xd7\x3e\x8f\xd3\x2c\x61\x74\xa1\xcb\xa4\x25\x85\x9e\x3f\x37\x7b\x72\xaa\xac\x93\xde\x5c\xdc\xee\x86\x84\x9c\xe2\x91\x2f\x83\x0e\xcb\x1e\x4e\x75\x72\x4b\x1f\x41\xa9\x84\xbf\x2b\x31\xb3\xa0\xe0\xbb\x20\x3a\x5d\x45\x1e\x26\xd5\x5c\x8b\xf6\x95\x2f\xb7\x2d\xcc\x36\x33\x5f\x1b\x24\x60\x06\xa4\xc1\x2e\xfc\x52\x51\x2b\x50\x68\x77\x8a\x93\xa6\x54\x63\x3d\xd7\x96\xa8\xa9\xda\x92\x8c\x43\x42\xde\xf2\x2b\x96\xa8\xfb\xf4\x4c\x6c\xe3\x84\xf9\xb9\x87\xb8\x12\x83\x3c\x06\xf5\x51\xe4\x89\xa2\x3f\x05\xb3\x79\x51\xd6\xcc\x65\xc5\x97\x4a\xfd\x36\xfe\x40\xf2\x94\xce\x18\x99\xac\xc8\x44\xc8\x6e\x98\xc1\x99\x2c\x78\x82\xec\xbc\xc2\x25\x76\xd3\x0d\x38\xc4\x5b\x3e\x7b\xcb\x96\x2c\xec\x33\x23\xaa\x6c\x85\xea\x80\x07\x02\x78\xa5\x05\x48\x95\x26\x7b\x58\x78\x41\x71\x95\x2c\x69\xbf\x40\x76\xfc\x5e\xdd\xdf\xdf\x4f\xa7\x78\x73\x1f\x45\x53\x2e\xfe\xc2\x7b\xbb\xb8\x1f\x89\x4b\xbb\xed\x9e\x08\xf9\x61\xc5\x09\xc8\x16\x41\x96\x95\xc7\x91\x68\x2c\x4b\xa8\xc7\x48\x1c\xc4\x6c\x5b\x59\x1b\x84\x34\x27\x63\x22\x98\xca\xb4\x65\xaa\xf6\x53\xe6\x11\x76\xcd\x3c\x41\x32\xbc\xa4\x7d\xd2\x45\xa7\xf7\xd3\xe9\x5f\x87\x6b\x12\x1f\x76\xeb\x08\x64\xb9\x5e\xb2\xc7\x41\xb5\xbc\xed\xb2\x3d\xe7\xfc\x52\x97\x75\x7f\xfb\xf5\x9f\x16\x13\x4e\x3c\xc0\x69\xab\xf1\x0f\xb1\xd8\x50\xc4\x94\x99\xc3\x73\xcc\x26\x0f\x86\x2b\x1e\xcb\x59\x36\x5e\xc0\xc4\xf7\x62\x9e\x26\x2b\x38\x22\x23\xbf\x59\xc3\x84\x67\x19\x5f\x0c\x95\x10\x2b\xcd\x72\x29\x9d\x16\x40\x63\x46\x41\x21\x10\x97\xee\x20\x23\x71\xc2\x96\x60\x69\x42\x09\x16\x7c\xa6\x45\xf5\xf2\x5e\x84\x1e\x56\x93\x55\x4c\xd3\x54\xc6\xf5\xaf\x78\x4e\xd2\xab\x20\x33\xbb\xac\x67\x5c\xf6\x54\xf2\x93\x09\x23\x29\xe2\x28\xcb\xfe\x72\x20\x2d\x36\x21\xe3\x57\x24\x99\xd0\x00\x66\xb3\x64\xc5\x18\x92\x33\x59\x09\x01\x35\x44\x35\x69\xc2\xf3\xd9\x5c\x2d\x48\x79\x9d\x84\x9a\xb7\xb1\x99\x2b\x09\x33\x60\xaa\xb3\x92\xba\xa6\x00\x3f\x2e\x47\x5a\xae\x45\xa4\xec\xba\xac\xa0\xd8\x88\x87\x49\xb0\x34\x86\xb0\xb5\xbb\xcb\x4d\xf2\x99\xbc\x8b\xbd\xe5\xb3\xc3\x84\x03\x8c\xac\xb5\x16\xcb\x79\x01\xd5\xbc\x63\x0b\x9e\xac\xc6\x09\x9f\x06\x21\x33\x24\x0e\xea\xd5\x97\xd3\x60\x01\x38\xd0\x07\x34\xf4\x7e\x4c\x68\x3c\xff\x89\x46\xb3\xfd\x69\xb6\xd9\xc8\x54\x6d\x87\x8a\x48\x9b\xd7\x06\x93\xa4\x24\x9c\x33\xfe\x13\x4f\xb3\x7d\xb8\x1f\x74\xee\xff\x43\xfb\xb7\x3a\x2f\x00\xa5\x82\x58\xd2\xa9\x45\x4d\x52\xa8\x18\x44\xd1\x19\x57\x5b\x87\x96\x3a\x01\x3d\x29\x71\xa1\x4c\x0b\xb2\x94\x85\x53\xf2\x82\x4e\x2d\x06\x7d\xe0\x0f\xb2\xee\x79\x20\xef\xdb\x45\x55\x0c\x85\x62\x5c\xbf\x2f\x87\xe4\xfb\x55\x11\xb4\x70\x60\xcc\x96\x4a\x0a\x64\x8d\x52\xd3\x02\x30\x1f\xf5\x5e\xa6\xa6\x6e\x02\x4f\x6f\x2e\x30\xa2\x8b\x4b\xbf\xfd\xfa\xaf\xc3\x93\xf7\xe3\xdf\x7e\xfd\xb7\xcc\xb6\x5c\xf0\x8b\x2b\x2a\x03\x17\xc3\x90\x5f\x91\x94\x2f\x18\xc1\x64\x8f\x6d\x17\x0e\xe8\x5d\x3d\x9f\xf3\x36\xde\x71\x20\x38\x89\x26\x74\xc1\xe4\xe5\xee\xe4\xe8\xec\xc3\xc9\xb1\xa8\x55\xa6\x77\x26\x1f\xcc\xe0\x22\xb2\x60\x80\x1d\x83\x70\x94\x15\xcf\xe1\xde\x5f\xe5\x4a\xfa\xb0\x46\xc7\xe3\x0f\x67\x62\x5c\xc0\xaa\xfe\xd0\xc2\x4f\x80\x91\x28\x5e\x9c\x29\x5e\x5a\xe7\xf6\x34\xc3\x9a\x64\xdc\xd3\x6f\xbf\xfe\x0b\xbb\xf5\xdb\xaf\xff\x36\x5e\x68\xa8\x77\xc9\xca\x79\x69\x74\x88\x70\xc9\xcd\xe7\x34\x05\xef\x01\x74\xa2\x8d\x13\xae\x3c\x00\xd4\x24\x9b\x6a\x37\x2f\x29\x20\xa0\x24\x26\xdc\xcb\xa2\xc2\xe6\x0d\xc0\xf0\xc8\x93\x55\xd7\xac\xf3\x57\xdc\x91\x09\xac\x73\x53\x9f\x6c\x1d\x68\x57\x53\x08\x96\xb8\x36\x4f\x66\xcb\xc0\x63\x27\x3c\xcf\x84\x20\x0c\x20\x73\xdd\x91\x82\x41\x5a\x31\x98\x42\x84\x6e\x89\x51\x47\x7d\xa9\x13\x90\x02\xda\x82\xf9\xb2\x19\xa3\x34\x0a\xe1\xbd\xdb\xe2\x14\x53\x9b\x15\x96\xb2\x3a\x7e\x4e\xce\xc6\x27\xef\xcf\x2e\xbe\x7f\xff\xfe\x0c\xa5\xba\x32\xed\x82\xf5\xbe\x66\x89\x55\xd6\xc6\x8a\xe8\xd7\x32\xc8\xaa\xd7\x80\x95\x14\x81\xd6\x47\x15\x26\x29\x6f\xe7\x3c\x5a\x67\xb0\x15\xce\x64\xa8\x34\x48\x2b\xb9\x25\x42\x46\x97\xd2\x06\x6a\xbc\x27\x80\x08\x06\x4e\x32\x73\xce\xa5\xaa\xa0\x56\x63\x6e\x06\x11\x6b\x5d\x18\x78\xd2\x1e\xf0\x28\x12\x32\xed\xe5\x28\x5a\xd2\x30\xf0\x6d\xe6\xb7\xd6\x33\x57\xad\xe6\x13\x50\x36\x07\xd1\x0c\x72\x95\xaf\x79\xae\x35\x2a\xb1\xdf\xb1\xdb\x3b\x23\x95\x6b\xc7\xdc\x67\xe9\xdb\x20\xed\x74\xe3\x39\xd2\x3f\x38\x18\x1d\x9e\x88\x8f\xaa\x38\xaf\xe2\xd7\xe7\x60\xe8\x54\xb5\x0f\x22\xae\xb2\x59\x0e\x20\x00\xd1\x6e\xa1\x58\xd0\x95\x9a\x2f\xd4\x42\x15\x87\x11\x8d\x8a\x08\x62\xa6\x29\xbf\xe4\x5b\x0b\xd4\x8f\x34\x63\x0a\x06\xeb\x95\x11\xdc\xeb\x21\xfa\xb4\x63\xe2\xb4\x00\x27\x4d\x69\x10\x0a\x41\x7b\x14\x4d\x78\x1e\xf9\x42\x7c\x18\xf3\xa4\x1b\x63\xf0\xf9\x0f\x96\x0f\x91\xce\x70\x6b\x1a\xf8\x2c\x0c\x16\x81\x18\x9b\xa4\xbb\xa9\xeb\x1f\x0e\xc7\x3b\x67\x07\x63\xa9\xcb\x84\x73\x45\xd3\x8a\xe0\x69\x6b\x32\x85\xc0\xc9\x5e\xcb\x05\x54\x7d\x78\x44\x82\x24\x61\x69\xcc\x40\xaf\xa2\xae\xa2\x2a\xcf\x71\x71\x48\x28\x76\x91\xa7\x6c\x9a\xc3\xc6\xa4\x4b\x1e\x18\xcf\x19\xea\x79\x10\x75\x0f\xc7\x87\x97\x23\x6c\x01\x9f\x4e\x09\xc5\xfe\x80\x88\x21\x7a\x9b\x24\xcc\xcb\xea\x99\x08\x8e\x6c\x31\xb2\x3c\xd1\xe3\xa9\x4b\x64\x43\x9a\x92\xcc\x8b\xb5\xf0\xe8\x01\x46\x8c\xca\x64\x37\x3c\x21\xb9\x6f\x7d\x6d\x3c\x7c\x7e\xe0\x98\xb7\x7a\x50\x09\x1d\xd9\x96\x28\x53\xe5\x99\xa0\x82\x45\x4b\x00\xb4\x20\x53\x2c\xd0\xe6\xfd\xf7\xdb\xaf\xff\xca\xbc\xf8\xb7\x5f\xff\x3d\x24\x67\xa5\x5d\x84\x82\x30\x01\x8b\x04\x69\x04\x13\xbd\x5d\x28\x49\xd1\x54\x1f\x71\x8b\x52\xff\x4c\x43\x9b\xc6\xa2\xb0\x24\x52\x92\xa6\x73\x65\x1a\x11\xdb\xee\xf0\xa7\x83\x71\xc5\x70\xe1\xc5\x7b\x5f\x7d\x65\xb4\x48\x0b\x9a\xbd\xf9\x76\x1b\x8a\xec\xfe\xfe\x3b\xfc\xe3\xab\xd7\xe5\x5f\xdf\xbe\xc2\xbf\xde\x7c\xfd\xf5\x6b\xf9\xd7\x9b\x37\x6f\x8a\xbf\x7e\x6f\x3a\xb3\x7b\x43\x61\xf2\x8c\x2b\xe0\x58\x8f\x2f\x26\xd2\xd3\x01\x8c\xc7\xc5\x81\x1c\xf9\x40\xa5\x6d\xab\xe2\x9d\x14\xbe\x0d\x65\xbc\xb1\x71\x65\x75\x21\x6d\xc5\x66\xb4\x5b\x39\xa7\x6d\x87\x73\xd1\x80\x4d\x06\xd1\xeb\xb0\xa3\x75\x59\xa2\x79\xf0\x19\x58\x21\x0b\x06\x45\xcb\x76\x76\xb8\x01\x8e\x9c\x62\x87\xef\xf3\x6c\x43\x7e\xd8\xf8\xd2\xce\x10\x8d\x3c\x6b\xda\x8b\x21\xf2\x3c\x9b\x71\x9d\x21\x82\xa0\x2a\xb6\x57\x9b\x74\x8c\x56\xbf\xf5\x59\xa2\x4d\x49\x22\xb8\xe4\xcd\x58\xa2\xa9\x66\xc1\x25\x9f\x3e\x4b\xe4\x72\x9d\xdc\x0e\x4f\xe4\x70\xb7\x67\x99\xe7\x83\xf6\xab\x00\x54\x95\x6b\x88\x4b\xf3\xb3\xb6\x9a\x8c\x9c\x4a\x5c\xfc\xc5\x18\x67\x2c\x13\x53\x09\xd3\x88\x57\xd8\xcc\xf3\x2b\x9e\x0c\x62\x15\x8a\x89\x16\x6c\x17\xf9\xef\xf1\x69\xc7\x6d\x67\x63\x76\x6b\x65\xe2\xdf\xbc\xde\x46\x66\xee\x38\x72\xa5\x81\x27\xc5\x91\x19\xcd\xf2\x84\x1d\xb2\x8c\x79\xd9\xfb\x25\x4b\x92\xa0\x5b\x2f\xfe\x83\xe9\x23\x3d\x4b\x22\x57\xbf\x41\x3e\x28\x2c\x6d\x5e\x29\x19\x93\x6a\xa0\x8f\x32\x19\x44\xa2\x73\xa3\x20\x52\xbc\x9d\xa4\x2c\xa6\x09\x2d\x84\x5d\x60\x7b\x91\x51\x83\x05\xd9\x12\xd3\x6d\xc2\xae\xe9\x22\x0e\xd9\x1f\xc8\xf9\xd6\xe9\xf1\xfe\xd9\x0f\x79\x18\xae\x4e\x68\xe4\xf3\xc5\x1f\x21\x39\xd7\xbb\xfd\xd3\xff\xd4\x7f\x04\xaf\x86\xed\x13\x06\x6e\xfa\xa7\x79\x0c\x9b\xfb\x2d\xf7\x2e\xff\x68\x44\x9b\x22\x25\x9e\x16\x98\x49\xe0\xf3\xf3\x2d\x3c\x46\xa6\x1c\x7d\x72\x8b\xd1\x6f\x23\x9a\x8b\x28\xca\xa5\x95\xc4\x6e\x91\x02\xa4\xdc\x3c\xe3\x03\xa4\xcf\xda\x77\xd5\x19\x8b\x58\x12\x78\x7f\x3e\x1c\xf7\xb5\xbb\xfe\x58\xff\x42\x1a\x30\x53\x22\xdf\x90\x3f\x1f\x8e\x49\xca\xcb\x24\x60\x34\xf1\xed\x2e\x56\x3e\x8f\x9e\x3f\xcf\x48\x8a\x44\x84\x6f\xf9\x74\x0a\x9a\x1c\x9e\x10\x1f\xd4\xdd\xa0\xfd\x47\x4c\x6d\xc1\x97\xff\x7c\x38\xc6\x73\xd1\xa8\x3f\x94\x76\x53\x26\xd6\x02\x8b\x7c\xe6\x97\xe6\x09\xc1\x55\xa1\xb5\x38\xe1\x4b\xb1\xe6\x26\x2c\x03\x35\x52\xe9\x3a\x68\xe9\x67\x54\x28\xf0\x86\x37\x76\x6e\x99\x33\x1a\x66\x2d\x90\xf8\x3d\x3e\x16\x22\xcd\x9a\x3a\x00\xfc\xd0\x92\x52\xa1\x95\x99\x15\x3e\x68\x47\xd7\x5e\x98\xf7\x30\x85\x8d\x6a\x1f\xe8\x72\x57\x6d\x6f\xf2\x69\x1f\x37\xbc\x8a\xf7\x21\x93\x95\x82\x46\x6b\xc1\xa3\x20\xe3\x45\x14\x7e\xf5\x26\x3a\xb4\x59\x21\xab\x27\x76\xc5\x1f\x4c\xba\xc4\xce\x22\x2e\x7e\x2a\xed\xfc\xcf\x9f\x93\xd1\xf8\xe3\x29\xf1\xf3\xc5\xc2\xe8\x82\x57\x0c\x63\x5b\x79\x4f\x4a\x1e\xa7\xe2\x10\xc2\x15\x99\xac\x2a\xa6\xe9\xaa\x3a\xdb\x28\x2e\xca\xb1\x2e\xf2\x30\x0b\xe2\x50\xcf\x91\x8a\x39\x6e\x30\x3f\x6a\x01\x0b\x2c\x43\x1d\xc0\xee\x6b\x11\x6b\xe5\x46\x4b\x0d\x7e\xa1\x29\x62\xc0\x1b\x5e\x40\x3f\xe1\x54\xbd\x4a\x68\x6c\x33\x2f\x20\x39\x81\xdd\x3e\x7f\xbe\xf3\xfc\x39\x56\x27\x79\x2b\x99\xa3\x2a\x4e\x1a\xe2\x9f\x3f\xdf\xf9\x6f\x41\x8b\x9d\xed\x25\xcb\xe6\xbb\xcf\x0d\x9b\x88\x20\x7f\x54\x34\xc0\xdb\x6b\xe1\x0e\x09\xb3\x35\x61\xb3\x20\x52\x2d\x8a\xea\x9e\x3f\x47\xd0\xa8\x30\xe5\x36\xa5\x5f\x49\xc2\xe7\xcf\x65\xdb\xfa\x9e\x86\x09\x0a\xe2\x65\xfa\x6a\x5d\x7d\x70\x51\x31\x26\x59\xe8\xbf\x4d\xb0\xbc\x52\x93\x56\xa7\x58\xa6\x9d\x90\xc1\x7a\x0a\x5e\xde\xac\x12\x6b\x9a\x5e\xc0\x35\x15\xa4\x5d\x71\x17\xc8\x83\x74\x8e\x7a\xe7\x45\x79\x4b\x21\xac\x92\xde\xd9\x32\xa4\x74\x48\x8e\x79\x06\x3c\x82\xb0\x68\x19\x24\x3c\xc2\x64\x16\x68\x80\x05\x0e\x39\x11\x67\xd1\x82\x65\x34\xdc\x96\xc8\x94\xde\x9c\xa5\x59\x42\x33\x9e\x18\x3b\xec\x69\x79\x71\x05\x8b\x88\x85\x44\x96\x04\x34\x63\xe1\xaa\xba\x76\x78\xae\x63\x7f\xa3\x94\xcb\xbd\x4b\x4b\xe8\xaa\x60\x63\x32\x66\x4b\xda\x77\x18\xf9\xed\xd7\xff\xf5\x68\x18\xfc\xf6\xeb\x3f\xf5\x78\x20\x51\xef\xfb\x98\x45\xa7\x19\xf5\x2e\xf5\x0f\x8d\x3b\x47\x79\xa9\xfe\xf6\xeb\xff\x66\x34\x2e\xaa\xd2\x57\x8f\x68\x63\xe3\x75\x73\xc2\xa6\x09\x4b\xe7\xb0\x2e\x96\xb4\xd3\x98\x30\xb2\x7c\x57\x24\xc2\x01\x8f\x1c\x42\x33\xc9\x90\xac\x97\x8d\x84\xa5\x1e\x8d\x52\x09\x06\xa7\xef\x31\x4e\x96\x2c\x09\xa6\x2b\xe9\xcd\x0a\xb8\x1c\x98\x02\x18\xbf\x91\x69\x2e\x8c\x3c\x56\xba\xec\x0a\xa6\x97\x4a\x54\xd1\x62\x79\x2f\x31\x34\xf5\xd5\x9a\xc2\x4a\x10\x07\x2d\xee\x61\xad\xe7\xa6\xf8\xf4\xdd\xd9\x87\xee\x4d\x39\x1e\x8d\xdf\x9d\x7d\x50\x34\x94\xc9\x9a\xc5\x2a\xe2\x91\xa6\x4b\x96\x86\x8a\x21\x39\x65\x66\x7f\x00\xb9\xb4\xc5\xa8\x45\x1d\x9a\x1b\xd0\xd7\x5f\xb7\x70\x16\xdb\x11\x1c\x8b\xc5\xb7\xe6\xfa\x78\x3e\x32\x7d\xd5\xba\x3a\x48\xc2\x30\xd0\xc7\x2c\x6b\x86\x9a\x37\x0a\xac\x85\xfa\x7d\x36\xe2\x92\x21\x48\xc3\x1c\x98\x10\x75\xb5\x84\xa9\xda\x49\xc2\x2f\x59\xd4\x70\x19\x01\x30\x5a\x58\x25\x95\x58\x0c\xd5\x7e\x82\xc3\xea\x88\x0f\xfa\xee\xd5\xda\x5e\x57\xaa\x05\x99\x0e\xb6\x73\x17\x56\x8b\x17\x37\x12\x15\xb2\x3c\x91\xbf\x0b\x49\x47\xf5\x5d\x9c\x6b\x46\x4a\x60\x6a\xf5\x61\x45\xad\x00\x26\xad\x19\x35\x9a\x30\xfb\x8c\xe3\x87\x20\xcc\x58\xb2\x1f\x86\xfc\xca\xea\xca\xd0\xa7\x1e\x71\xbd\xf9\xc1\xee\xf3\x51\x5f\x7a\xcd\x8f\xca\x0c\x55\x5e\x71\xad\xd7\x4d\xe3\x26\x8a\x00\x48\xd3\x34\x08\xd9\x90\xfc\x97\x10\x41\xe8\x0a\xc2\x43\xd0\x64\x47\xa3\x99\x3c\x3a\xa4\x82\xa8\x28\xad\x6e\x01\x81\xd9\xc5\x20\xd3\xf4\x32\x45\x6f\x5e\x4c\xb5\x03\x47\x37\xe8\x2f\x68\x1c\x33\x8c\x37\x8a\x32\x8e\x1b\xc5\xe6\xb6\x55\x24\x32\x16\x1b\x8b\x12\x3f\x98\x4e\x59\x02\xb9\x94\x68\x36\xaf\x04\x66\xec\x24\x79\xb4\x73\x2d\xef\x14\xa2\xe3\x9b\xae\x53\x41\xe2\x71\xc2\x27\x6c\x0d\xbe\x60\xf9\x52\xcd\x10\xb8\x63\xd6\xd4\x9d\x46\x89\x03\x21\x03\xd0\x6d\x93\x66\x99\xb8\xb7\x22\x92\xab\x07\x8a\x8b\xaa\xe7\x03\xcc\x4e\x30\x95\xe1\x54\x11\x37\x4a\x1c\x74\x49\x83\x50\x94\x1f\x56\x1d\x37\x17\xf4\x52\xf9\x5d\x82\x7b\xa5\xf4\x31\x0f\x96\xf2\x22\xa0\xa6\xdf\x72\x25\x14\xf3\x02\x97\xc1\x6d\xf0\x52\x17\xb7\x48\xa8\xe6\x60\xfc\x41\x9f\x94\x6f\x5e\x2d\x36\xe6\x17\x82\x9a\x67\xc1\x82\xf1\xbc\xd3\x2c\x5a\x99\x01\xf9\x4d\x1b\xed\x81\xd0\xa6\x91\xa9\x78\xba\x0a\x8d\xc1\x17\xf3\xd5\xb6\xc6\x35\x41\xe5\x89\x1a\xcd\x20\x2d\xd5\x0c\x56\x81\x00\x24\xfd\x74\x4e\x8d\x33\x08\xfb\x0b\x1d\x78\xc2\xb0\xca\xee\x5b\x50\xce\x50\x22\x17\x93\xa8\x66\x6a\x88\x00\xb8\xd2\xc1\xb9\x8c\x45\x14\xf7\x72\x5a\x6e\xa4\x6d\x2b\x44\x6e\xe1\xb6\x2f\x6a\x14\xdb\x49\x06\x13\xf0\x64\xa5\x58\x8b\x16\x67\xb8\xa8\xe7\x1e\xd7\xb0\x86\x8d\xea\xff\x44\x95\x98\xaa\xe0\x5b\x99\xa2\x5c\x5b\x2f\xaf\xd2\x42\xce\xd9\x74\xd9\xbc\xa3\xe2\xe6\x76\x73\xf6\xfc\x8e\x26\x97\xef\x68\xda\x1d\xdf\x3b\xaa\x7d\xa0\x16\xde\x42\xfc\xad\x5f\xb7\x01\x0b\x38\x15\xdc\xd2\x44\x9f\xd1\xf8\x0c\x17\x85\xa8\x87\x4c\x04\x4f\x15\x77\x8a\xa1\xf2\x6e\x9f\x88\x59\x94\xc9\xb6\xe6\xec\x9a\xfa\xcc\x0b\x16\x34\x54\x40\xbb\x62\x01\x19\xd7\x49\x46\x42\x46\xd3\x8c\x7c\x8b\x75\x02\x08\x72\x24\xc3\x86\xf1\x44\xf5\x42\x9a\xce\x95\x0b\xd9\x4a\xae\xc0\x85\xea\x85\xf9\x46\xa0\x5c\x4d\xc0\xc4\xb2\x4a\x33\xb6\xa8\x4c\xe3\xf5\x74\xfa\x0a\x9e\xdb\xce\x84\xab\x66\xe7\x78\xff\xec\xbd\x34\x14\x15\x62\x3b\x1e\xcc\x1b\x4e\xf7\x98\xa7\xd9\xcf\x49\x90\x31\xf0\x2a\x59\x9b\xf5\x9b\x3f\xaf\xcb\x86\xe0\x63\x65\xe5\x12\x42\xb6\xf3\xc5\xcc\x50\x72\x25\xaa\x6a\x3a\xec\x17\x08\x33\xde\x9c\xf9\xe8\xba\x16\x11\x76\x9d\x25\x94\x24\xcc\xec\x3e\x36\xc1\x8b\x58\x11\x49\x4a\x30\xee\x1c\x82\x22\xa1\x91\x2b\x8a\x47\xbb\x17\xf2\xc9\x84\x25\x0a\x5a\xbd\xc2\x87\xec\xe0\x8d\xa9\x16\x7a\xc1\x3d\x2f\x4f\xc4\x81\xa4\xbe\xa6\x71\x1c\x2a\xa4\xcb\xca\x5a\x41\xc5\xe1\x6f\xbf\xfe\xd3\xc8\xda\xa4\x11\xaf\xc9\x2a\x87\x37\xf2\xfe\x57\x55\xad\x2f\xf5\x1b\xbf\xdb\xe0\x56\x28\xaf\x02\x2a\x80\x0a\xee\xbf\x2a\x49\x40\x39\xc7\xed\x37\x00\xdb\xc2\xa9\xd8\x2a\xd7\xba\x01\xc8\x9e\x98\xbb\x2c\xef\x04\xa8\xab\xc8\x34\x29\x1a\x4f\xca\x20\x95\x4a\x2a\x21\x54\x83\x78\x01\x9a\x8b\xc2\x93\xbc\xa5\xd2\xe2\xe2\x9a\x22\x2a\xe7\x15\x4f\x2e\x69\x02\x76\x43\x44\x45\x7d\x1b\x44\xf9\xb5\x72\x29\x9b\xe4\x33\xa4\xc7\x15\x35\x7b\x33\x06\xd7\x68\xb3\x90\xe5\x15\x48\xd7\xd7\xc3\xdd\xdd\x42\x31\x28\xce\x5f\x54\xf0\x2d\xc5\xef\xe2\x48\x9a\x25\x8c\x5a\x1c\x7c\x57\x52\x3e\x56\xde\xb1\x85\x67\x6b\xc6\xb7\x09\x25\x73\x2d\xb6\x05\xa3\x0e\xab\xa1\x2c\x46\xcb\x5e\x4a\x67\x15\xf5\xc6\xee\x26\xd7\xa9\xe5\x1b\x69\x21\x59\xf7\xce\x7e\x99\x4f\xd8\x31\xf7\xd9\x98\x27\xd9\x89\x10\xf6\xbb\x6d\xff\x7f\x6a\x7c\x42\xe6\x3c\xf4\xd3\x42\xdb\x0c\x46\x86\x04\xdf\x80\x7a\x76\x6a\x4e\x45\x29\xc3\x3b\x49\x19\xdc\x39\x24\xef\x05\xd7\xc8\x65\x26\x38\x94\x0a\xd0\xea\xa2\x47\x81\xd9\x61\xd3\xe0\x1c\x0a\xe2\x65\x2a\x83\x69\x90\xf4\x39\x4a\x4d\x2c\x65\xaa\x5b\x30\x77\xa8\x25\x47\x01\x86\x46\x7e\xab\xcb\xad\xf4\x3c\xd0\x27\xea\xb5\x38\xcc\xf6\x5e\x7f\xf5\xfb\x37\xbf\x37\x46\xbe\xd8\x2d\xb2\x34\x5a\xbd\x9f\x5a\x0c\x8e\x9d\x36\xcf\x41\xa7\x49\xb3\xcc\x3c\x3d\xfc\x0f\xd3\xfb\xeb\xc1\x65\xa1\xe7\x1b\x04\x51\x36\xe0\xc9\x00\x6b\xd3\xe1\xb7\x2a\xa3\x6f\x49\x23\xcd\x67\xbd\x6f\xac\x6f\xcb\xb2\x8a\x55\x42\xaa\x61\x71\x71\x53\x27\x1b\xce\x58\xc8\x67\x8a\x33\x99\x46\x00\xc2\x8a\xc6\xaf\x40\x5e\x0e\x39\xc0\x46\x54\x2e\x80\x4b\x9a\xec\x84\x7c\xb6\xa3\x8b\x99\xc3\x90\x1b\xa1\x4c\xda\xc8\x1a\xf2\x59\x4f\x8d\xf3\x5b\x55\x52\x4f\x16\xad\x2b\x98\xb5\x25\x89\x09\x84\xc4\x9d\xc9\x36\x95\x6f\xdf\xff\xa8\xf8\x74\x55\x01\xea\xf1\x01\x3a\x72\x6f\x30\x12\x95\xd4\x5a\xcc\x45\x9f\xf1\xe8\xe5\x6f\x2d\x05\xb6\xa8\x00\x95\x0e\x5a\x12\xec\x68\xca\x6f\x30\x9e\xcf\x31\xad\xf7\x0d\x47\xb4\xea\x66\xc7\x6f\x2b\xc5\x6f\x6f\x2c\xab\x54\xdb\x84\xe4\x98\xcb\xe0\xd0\x88\xab\x8d\x06\x4c\x54\x96\x6a\x55\x10\x6e\x42\x84\x05\xbd\x06\xd5\xea\x69\xf0\x37\x3b\x5e\xb6\x85\x4b\x2a\x28\xa9\x7d\xdf\x08\x7a\x5e\x25\xdf\x3b\xad\xb0\x22\x9e\x9e\x68\x28\x21\x3e\x5f\xd0\x20\x42\x4b\x91\x3d\xf2\x0f\xf0\x0b\x65\xee\x27\x8f\x46\x84\x46\xa9\x90\x7d\x3e\xbe\x23\xff\x93\xb3\x24\x60\x08\x6e\xe3\x85\x3c\xf7\x07\x41\x14\x64\x45\x2f\x01\x99\xab\x30\x90\x18\xbd\x7f\x40\xc4\x00\x97\xb2\x34\xe6\x91\x5f\x84\x95\x2c\xa8\x37\x0f\x22\x56\xdc\xef\x23\xbe\xa4\x03\x1a\x07\xe4\x05\x4f\xc4\x41\xf8\x61\x92\x47\x59\x6e\xac\x52\x15\x1d\xa8\x6e\xbc\x1c\x92\x7d\xe5\x5e\x35\x45\x06\xfb\xc2\xa3\x29\xe4\xd6\x62\x51\x1a\x64\xc1\x92\xbd\x24\x0b\x46\x23\xbb\x02\xa2\x62\x43\x96\xd9\x57\x48\x1e\xc3\x15\xf2\x78\xff\x0c\xa3\x20\x95\x3e\x45\x35\x0c\xdc\xbf\x63\x05\xed\x7e\xf5\xfb\xe1\xab\xe1\xab\xe1\xee\xda\xcb\x48\x36\x62\xb1\xc9\x9b\x97\x82\x72\x8f\x02\x51\x5e\xfc\x2d\x35\x1d\x45\x8f\x71\xae\xd1\x3f\xc2\x82\x02\xb5\x98\x40\x4e\x71\xb8\x41\x63\x86\x9a\x61\x65\xa5\xbd\x08\xa6\x40\xa1\xdf\x7e\xfd\x5f\xb1\xb5\x7e\xfb\xf5\x9f\x2f\xb7\x75\x97\x9d\x94\x19\x29\x2c\x88\x59\x90\x72\x1b\x2d\x8c\xbb\x6f\xbe\x1b\x7e\xf5\xcd\xd7\x43\xf9\xdf\xbd\x6f\x41\x94\xd7\x5b\xdb\xd3\x47\x66\xbc\xb8\x8d\x22\xb2\x10\x62\x90\x27\x61\xf4\xcb\x6b\x9c\xe8\xa4\x52\x07\x4f\x98\xd4\x08\xfb\x1a\x8b\xfb\xf6\xf7\xbf\xff\xa6\x25\xf2\xd7\xb2\x47\x23\x9a\xa9\xcb\x7a\xcf\x30\x17\xed\x7a\x5f\xcf\x3e\x04\x77\xde\x5a\xcc\x0b\x9c\xad\xd2\xe9\xc4\x72\xb8\xca\xa8\x06\x41\x4e\x58\x94\x0a\x6e\x23\x22\x54\xef\x1f\x89\x39\x0f\x8b\xa4\x42\x1d\xe1\x2e\x05\x76\x45\x2d\x86\x46\x0f\x75\x91\x59\xd0\x0b\x16\x13\x55\x6d\xd2\x66\x0e\x50\x41\x1a\x51\x9d\xe0\x11\x79\x11\x80\xdb\x8d\x12\x71\xcb\xdb\xf1\xbb\xfd\xd3\xff\xfc\x70\x74\xb2\x7f\x78\x44\x32\x9a\xcc\x98\x29\xd3\x5f\x6b\x76\x03\x9a\x15\x12\xbe\x61\x6e\x6c\x32\x6c\xa7\x04\xdb\x25\xbf\xd6\x27\xbd\xe8\x84\x36\xdd\x10\xd6\x05\xbf\xc9\xeb\x46\x5a\xcc\x8f\x20\xb0\x4d\x8d\x0b\x9b\x79\x41\x21\x30\x17\x17\x88\x0f\x13\x5c\xf8\x17\x1f\xef\x9f\x49\x95\x69\x1e\x29\xab\x76\x4b\x4c\xf6\x84\xcd\xe9\x32\xe0\x45\x02\x4b\xe5\x8d\x95\xa2\xa9\xdb\x1a\xd8\xd4\x2e\xa0\xaf\x2b\x9e\x47\x2c\x0b\x83\xa8\x45\x2f\xde\x46\x6f\x70\xa5\x15\xdd\x3d\x61\xb3\x3e\x21\xb8\xef\xab\xe5\x15\x9b\xd4\x0e\x47\x92\xe0\x1b\x98\x10\xc1\xdd\x93\x2c\xf0\xf2\x90\x1a\x2f\x33\x78\x62\x94\xf9\xe9\xe0\x30\xa4\xe8\x8b\x33\x90\x15\xa1\xca\x62\xa7\xf4\x21\x28\xb3\x27\xda\x4f\x4b\xe5\x9e\x5a\xf8\x3f\xf8\x10\xc4\x3a\xe7\x57\xb0\x12\x00\xf5\x0e\x1b\x7f\x31\x67\x09\xd3\x75\x2e\xe2\xe6\x18\xda\x32\x8e\x05\x11\xde\x4a\x87\xde\x74\xa6\x32\x90\x69\xce\x1a\x62\x47\x42\xdd\x1e\x5f\xc4\xb9\x84\xd8\x79\x29\x81\x51\x73\xb3\xb7\x50\x09\x49\xf6\x17\x94\xec\xff\x5a\xce\xca\x85\xa4\x01\x1e\xcc\xda\x60\x84\x40\xc2\xf2\x2c\xe1\xd1\x50\xfc\x6a\xec\xad\xec\x0a\xa2\xfc\x94\x0c\xfb\x68\x11\x67\xab\x75\x0f\x52\x74\x95\x07\x10\x12\x9a\xcd\x7b\xde\x85\xc6\x86\x8f\xf4\x43\x6e\xb2\x52\x30\xd9\x00\xa1\xbd\xc8\x23\x48\x21\x63\xbc\xd3\x62\xd4\x3f\x1e\x3f\xe8\xe3\xad\x32\xb0\x2b\x94\xa8\x6d\x12\x06\x97\x8c\xec\x6b\x1a\xc6\x90\xae\x58\xd2\x2f\x3a\x75\x33\xaa\x24\x7c\xc1\xb2\x39\xcb\xd3\x1f\xf9\x3b\x96\x25\x81\xd7\x17\x58\xe8\xf9\xd8\xfa\xa9\xba\xd5\xa6\xe4\x47\x2e\x44\x3b\xb0\x56\x2d\xb0\x88\x59\xd8\x08\x43\x74\xdb\x55\x6e\x71\x62\x2d\x95\xf5\x4b\xdc\x58\xf4\x77\x2f\xe3\x58\xb7\x91\x03\x5a\x04\x8d\x8c\xa3\xe7\xa5\x0c\x8e\x40\x4d\x96\xdc\xeb\x45\xd2\x5e\xd9\x29\x92\x40\xcc\x23\xf3\xb7\xb1\x9c\xe5\xb8\xd5\x7a\x14\x72\xea\xdf\x18\x77\xad\x24\xfe\xc6\xa4\xaf\x11\x5e\x39\xd9\xd6\xe8\xd7\x42\x7b\x29\xf5\x07\x91\xb2\xad\x15\xa0\x62\x62\x48\x37\xf7\x63\x6d\x8c\xd1\xe2\x95\xda\x31\xc0\x9f\x78\x5a\x48\xb4\x68\xaf\x53\xe0\x1e\x65\x51\x23\x6b\x92\x13\x2c\x87\xa9\x22\x54\x82\xc8\x07\x5e\x5d\x8e\x8e\xdd\x6c\xf7\xc8\x6e\xf6\x92\xd2\x1b\x83\xd3\xc5\x75\x15\x49\x74\xeb\x03\xfc\xee\xd5\x77\x2d\x97\x0f\x8b\xb0\x53\x0e\x70\x8c\x9a\xfa\x8d\x17\xaa\xf1\xfb\x92\x51\x28\x57\x20\xc7\x25\x1a\x3b\x28\x61\x0b\xbe\x64\x2a\x48\x1a\xa2\xeb\x3b\xaf\x1a\x3f\x4b\x38\x21\xc4\x5d\x53\xf8\x81\x4b\x26\x3d\xd2\x64\x9c\xbc\x82\x2f\x5d\x32\x9b\xa3\xc5\x84\xb1\x4a\xe4\xbd\x3a\xef\x86\x12\xe6\x18\xef\x11\x0a\x4d\x00\x63\xdd\x8a\x63\x4d\xb3\x94\xd9\xe2\xad\xc0\xe0\x4f\x7d\xbf\xda\xaf\x32\x9e\x4d\xa1\x9e\x69\xe0\x05\x32\xa6\x5b\x5c\xe3\x4d\x95\x5e\x31\xec\x8b\x1c\xaf\xea\x4c\xb8\x92\xb0\x09\xb2\x85\xb5\xe7\x40\xc6\xc4\xf7\x36\xb0\x9d\xd4\xbf\xa8\x78\xee\x8a\x7f\x37\x9c\xea\xe0\x1a\x60\xb4\x08\xa0\x2b\x52\x96\xa7\xa5\x63\x42\x99\xe5\x83\x27\x15\xd3\xd7\x90\xbc\x93\x92\x63\xc4\xa3\xc1\xdf\x58\x62\xd4\x3f\x07\x9a\xc6\x46\x13\x47\xd3\xaa\x79\x60\x6d\x3b\x4e\x41\xa7\xb3\xb3\xb7\xfd\x49\x74\x76\xf6\x56\x77\x6c\x19\x64\x7c\x10\x06\x4b\x56\x78\x84\xc2\xcd\x07\x19\xc4\xe0\xca\x02\x99\x2b\xe9\x23\xa9\x58\x65\x7c\xeb\x0f\x43\x2c\x92\x75\x4d\xaa\xb0\x33\x93\x5b\xf3\xa3\x2c\x80\x3f\xd6\x37\xa7\x92\xb9\xd9\x9e\xb8\xb9\x39\x15\x11\x48\x94\xe5\xb4\x5d\x0e\xdd\x94\xde\x08\x19\xd2\x8f\xcc\x58\xb6\xbc\x4e\x80\x25\x22\x51\xb6\x97\x19\x43\x8f\x14\xa8\xd7\x6a\x65\x2b\x13\xa8\x91\x01\xf9\x59\x5a\xce\x46\xe3\x74\x0f\xb5\x2f\x46\x88\x22\x8f\x47\x69\x96\xe4\xa6\x98\xb8\x12\x7c\x64\x20\x89\x3a\x1a\xef\xbf\xab\xda\x97\x07\x50\xb5\xf8\x1d\x26\xb3\x52\xa3\xfa\x7c\x13\xd2\x81\x93\x8d\x4d\xcf\x61\x48\xfe\x54\xc2\x0a\x53\x5f\xe1\xeb\x48\xd3\x34\xce\xb4\xd4\xc0\x88\x8d\xb7\xa4\x49\xc0\xcd\xb2\x87\x06\x6f\x7e\x52\xed\x46\x4d\xd3\x01\xa9\x35\xcb\x44\x05\x7a\x1b\xe6\xa5\x5f\x42\x75\x4b\x81\x26\x4f\x4d\xa1\xb5\x1d\xc1\x99\x0b\x6a\xba\xe1\x91\x3e\x71\x99\x8b\xc0\xa4\x49\xe8\xf1\x69\x4b\x34\xe6\x40\x74\xc8\xf8\xb3\xc9\x03\xb5\x2d\x02\x33\x0d\x7c\xe6\xd1\x64\xdf\xf3\x58\xc8\x30\x16\xa1\xaf\x44\x76\x6a\xfd\xb4\xb8\x3c\xb0\x6b\xc1\xae\x16\xc0\x28\x54\x53\x16\x76\x52\xd4\x71\xe3\x7b\x02\x78\x11\xf4\x80\x9e\xa9\x8e\xe6\x83\xe9\x2b\x75\x08\x10\x1a\xf1\x68\xb5\xe0\xb9\x42\x1a\x54\x0e\x14\x46\xb5\x27\x4a\x7b\x3a\x36\x73\x1a\xfc\x8d\x49\x98\xa5\x6a\x4a\xa1\x21\x79\xcb\x67\x29\xb9\xa2\x49\x14\x44\x33\x71\xe8\x64\x79\x12\x99\xb5\x76\x93\x15\x82\xc2\x02\x04\xa8\x52\xbb\x6b\x51\x2b\x10\xb7\x4e\x2b\x09\xbc\x8a\xe8\xfe\x65\x1e\x46\x2c\xa1\x18\xe0\x6e\xaa\x7c\x4e\x53\x14\xd1\xfc\x20\xf5\xf8\x92\x49\xbd\x4a\x66\x4c\xe8\x86\xb8\x8a\x79\x15\x69\xd0\xb8\xfd\x36\x91\x52\xab\xf3\x37\x8a\x82\x2c\xa0\xa1\x0d\x86\xa8\x6d\x12\xf5\x4f\xab\x20\xa5\x0a\x07\xd6\x17\xaf\xcc\xd2\xea\x94\x17\x87\xc0\x82\x5e\x32\xcc\x6c\x20\x2a\xae\xb9\x3d\xac\x7d\x42\xd5\x87\xd7\x53\x26\xa8\x0f\x4d\x4a\x05\x95\x61\x35\x04\x42\xbb\x9a\x11\xc7\x64\x90\x71\xbe\x7d\xf3\xf5\x46\x83\x42\xa7\xee\x88\x86\x87\x3d\xa1\x23\x6d\x09\xdb\xae\x43\xda\xc2\x82\xba\xbf\xed\x13\x75\xf3\xf1\xcf\x6f\xf7\x8f\x3f\xbf\xb0\x1b\xe8\xff\x26\x21\xb3\xf0\xe1\xc7\xe3\xd1\xba\xdf\x5d\x05\x09\x9b\xe5\x34\xf1\xfb\x72\xc9\x9f\x6b\x1f\x34\x61\x67\x8b\x12\xda\xa5\xeb\x4e\x30\xfb\x8b\xbe\x17\x0e\xae\xc7\x74\xd1\x2d\xf4\xfd\x6c\xfc\xac\x26\x65\x80\x0a\x5f\x1a\xcf\x2c\x0e\x5b\xa2\x98\x36\x56\x55\x99\xbe\x95\xae\x66\x43\xa9\xc4\x5e\x73\x37\x15\x43\x7b\x1b\xa4\x19\x13\x27\x43\x2f\x6d\xd0\xcf\xc6\xcf\x6a\xf0\xcc\xea\x15\xaa\x86\x6c\x16\xa2\xc9\xaa\x1c\x5c\x25\x60\x61\xf7\xdb\xaf\xd6\x5f\xd7\xc5\x78\xfa\xec\xcd\x9f\xb5\xc2\xd5\xbe\x8b\x1f\xe4\xf6\x34\x51\xde\x34\x8e\x53\xc6\x5a\x37\xe9\x4d\x06\x73\x82\x57\x82\x93\x3c\x64\xe3\x24\xe0\xe2\x9c\xed\x3f\x38\xc3\xc7\xd5\xc1\xc6\xea\x57\x30\x77\x58\x94\x1e\x72\x7d\xd6\x48\x22\xef\x2a\x70\x0b\xab\x5c\x5f\xbf\x5b\x7b\xb0\xd7\x7e\x6f\x7c\x7c\x03\x40\xc3\x9f\x0f\xc7\x55\xd1\x4e\xf4\x35\xcd\x83\x4c\xa6\x4d\x01\xb4\x42\xf3\x02\x2c\x70\xdf\x7c\x16\xad\x9a\x6e\x5f\x1b\x09\x16\xd7\x7e\xbc\xee\x4d\xfc\xcf\x87\xe3\xdb\x8d\x67\x04\xac\x8a\x8d\x42\x19\xe5\x35\xdb\x78\x0c\x35\x13\xc4\xf0\x44\xa6\x4d\x42\x24\x55\xb8\xa2\x99\x2f\xe4\x7f\x3e\x1c\x1b\xaf\xa0\x8d\x78\xc7\xf5\xaf\xe3\x2e\xdf\xe9\xbd\xe6\x3b\x45\xdf\x1a\x69\x78\x07\x43\x5f\xc0\xee\x22\xe3\xe9\x8f\xd0\xce\x31\xb6\x83\x76\x4d\x7c\x5d\xa6\x3c\x35\x14\x69\xe6\x3c\x35\xf6\x57\xce\x7f\x91\xf5\xb4\x59\x08\x1a\xbb\xab\xb4\xa7\x2e\x4d\xa9\x4b\x53\xaa\x4f\x81\x4b\x53\x7a\x97\x69\x4a\xdb\xb2\x88\xc6\x71\xb8\x7a\x1f\xfd\x80\x99\xab\xba\x0e\xea\xfd\x4a\x69\xd4\x12\xaa\xa4\x2e\x50\x13\x6a\x0b\x4b\x84\xf4\x40\x01\x75\x9b\xce\x3e\x94\x54\xa0\x26\x15\xeb\xb0\xa6\xa8\xe1\xf3\x63\x9e\x9d\x09\xf1\xa6\xab\xe7\x87\x45\x49\xad\xd7\xea\x32\xa5\xa0\xd3\xc1\x2d\x06\x8d\x57\xc5\x38\xcc\x52\x93\x3e\x34\xc5\x2a\x66\xbc\xcc\x36\x21\x95\xff\x04\x6e\xe8\xcf\x53\x2d\x23\x19\xe4\x43\xb9\x0c\xa2\x99\xd1\xdd\x47\xa5\x72\x47\xd5\xae\xa7\xa0\xa6\x31\x77\xd8\x59\xa2\x50\x80\x4c\x14\x26\xd4\x92\xe1\x3d\x8e\xc3\x40\x0c\x0a\x75\x2d\x34\x5a\x69\x5d\x33\x76\x0c\xc1\xf8\x24\x4d\xc0\x44\xd8\xa2\x29\xab\xb4\x0f\xf1\x9a\x88\x21\x29\xad\x98\x13\x46\xa4\xf8\xb9\xee\xdc\x22\xce\x7b\x37\x12\x39\xc3\xa0\x42\x4c\xfc\x03\x80\xd3\x08\x10\x2f\x85\x59\x44\xbb\x04\x37\x60\x95\x89\xd7\x48\x25\xf5\x35\x8e\x5b\x7a\x48\x79\x49\x90\xb1\x24\xa0\x88\x3e\xa4\xf9\x43\x03\x3c\x93\x24\x9b\x5c\xfa\x6b\xc1\x49\x57\xc6\x70\xbe\xb5\x4f\xc4\x0d\x85\xb0\xc8\xa3\x71\x0a\x49\x2f\xd2\xb2\x47\xa6\xae\x18\xe5\x53\x52\x64\x54\x20\xdf\xf3\x6c\x2e\x43\x7d\x79\x32\x98\xd0\x14\xc8\x23\xb5\x94\x63\x39\x5f\x91\xfe\x1b\x66\xfe\x30\xd2\x06\xa4\x54\x96\xb0\xc8\x53\x2b\x6f\xa0\x81\xf1\xf1\x3c\xc3\xd0\x39\x15\x8b\x25\x33\xc3\xf0\x04\xa0\x1c\x55\x66\x36\x4b\x87\x23\xbf\x00\xf4\xd7\x08\x0f\x31\x35\xe7\xe7\x91\x82\x2a\x45\x5f\xf0\x3a\x25\x2c\x46\x33\x31\x99\x11\x9b\x41\xe7\xa4\x48\xb0\x2d\xc3\x61\x94\x7b\xf4\x6f\xbf\xfe\xfb\x98\x67\x80\x1a\xba\x1f\x86\xd2\xb1\x5d\xaf\xdb\x5c\xaf\xf8\x16\x5c\x75\x61\x39\x15\x70\x94\x34\x0b\x52\x00\x2b\xc4\x88\x41\x39\x10\x95\xe9\x74\x48\xf6\x25\x8e\x97\x85\xb6\xb0\x34\x69\x91\xe9\x5d\xfa\x80\xcb\x21\x0b\x02\xc1\x60\xc4\x3f\x34\x15\x31\xc5\xca\xed\x54\x05\xda\x9b\xbb\xa8\x38\x48\xd9\x45\x25\xd1\x57\x9f\x4e\x24\x4d\x6a\x8b\x6c\xc7\xa7\x2b\x68\x0c\xb6\x81\xca\x44\x6d\xad\xa5\xca\xc6\xcb\x0f\xaa\x89\xb5\x6b\x4b\x03\x3d\x41\xc5\xb6\xb4\x55\x0b\x17\x7b\xad\x7d\x22\xce\xe8\xcc\xec\xb2\xd7\x8b\x18\x44\x26\x6c\x05\xf0\xc9\x53\xb9\xf5\x5a\xca\x36\x98\xc0\x71\xfd\x63\xe9\xb4\xcd\x63\x69\xef\x9b\x06\x2c\xf4\xad\x91\x10\xe5\x53\x10\x86\x16\x2c\x40\x43\x7d\x93\x01\x8f\x95\x84\x34\x3c\x09\x66\x82\x0e\xb6\xfd\xaf\x1e\x90\xbe\x5e\x88\x25\xc4\x92\x05\x7e\x40\x68\xf6\x52\x33\xb9\xca\x2d\x82\x98\xc7\x21\x40\x57\xb6\x57\x59\x90\xac\x4c\x70\x21\x8f\x61\xe9\x16\x0d\x0b\xb9\x41\x9b\xf6\x4a\xc5\x06\x28\xa8\x28\xce\x25\xbc\x26\xf8\x45\xfc\x37\x5d\x30\x19\xcf\x00\xb9\x55\x20\x70\xbc\x2d\x16\xb3\x7c\x34\xeb\x32\xac\xb1\x84\xe9\x62\xc3\x44\xe7\xbb\xe5\x88\xfa\x91\x42\x13\x3b\x90\xfb\xfd\xc0\x13\x52\xb9\xdc\x6d\x43\xa4\x3d\xc0\x88\xae\x49\x91\x60\x21\xa4\x80\xb4\x74\x52\xd3\x17\x99\xc2\xcc\x06\xdd\x3c\xb8\x6c\x81\xa3\x7f\xdb\xe6\x21\x66\x64\xba\x40\xa3\x6f\x31\xb3\x00\x29\x3d\x67\xd5\xa1\x58\x37\x1a\x3e\x96\xe1\x7f\xc2\x7b\xea\x8b\x97\x9f\x9a\x04\x50\x63\x6c\xaf\x78\x3d\x02\x54\x6f\xd8\xa7\x66\x97\xb4\xf2\xe1\x09\xf9\x89\xa7\x45\xb6\xa8\x72\x16\x0d\x17\xf5\x72\x2e\xdb\xeb\xb4\x8e\xb3\x3a\x0a\x14\xf3\x40\x12\x5f\x77\x21\x53\x2f\xe1\x29\x48\x7a\xda\x6e\xb4\x9c\x09\x05\x19\x3b\x79\x3b\xc1\x38\x81\x36\x76\x59\x8f\xbc\x60\x12\xcc\xdd\xc8\xf3\xc4\x0d\x32\x4b\x02\x2f\xb3\xa6\x9d\x2c\x1f\x75\xba\xc1\x14\xca\x8b\x09\xb7\xb1\xbc\x82\xab\x75\x2c\x9c\x2a\xcb\x2b\x03\xf6\x50\x12\x07\xcc\x12\xf4\x96\x98\x05\x4b\x16\x89\xdb\xa7\x18\x7e\xeb\x3a\xb7\x0b\x88\x5a\xbb\xbd\x28\xdd\x1a\x30\x5d\x3e\x11\xcf\x8e\xd7\x9b\x13\xfc\xa0\x08\xba\xa8\xca\x55\x6a\xc4\xc7\x16\xe4\x86\xf2\x81\x79\xfc\xec\x68\x61\xcb\x3c\x50\x3e\x75\x62\x14\x19\x07\x5a\xa8\x31\xb6\xb9\x05\x96\x0f\x92\x83\x9c\x02\x84\x31\xac\x52\xc8\x77\xa6\x00\xbe\x53\xf4\xf1\x94\xa0\xf5\x80\x65\xb2\x22\x56\x6f\xc3\xf2\xa9\x61\x67\x67\x55\x30\x25\x95\xce\x4a\x0a\x4b\x92\x57\x8b\x9b\x47\x07\xd5\x39\x9e\x61\x2a\x73\xf5\xc1\x58\x21\x5e\x7f\x38\x1c\x5b\x90\xb1\xd5\xd3\x67\x56\xed\xd8\x04\xe5\xd3\x03\xa5\xa0\x59\xb8\x7b\xa1\x74\x23\x17\x94\xcf\xfa\x18\x06\xe5\xd3\x77\x41\xae\x2f\x37\x1e\x97\x1f\x75\x2c\xcb\x7e\x82\x82\x5c\x99\x60\xd2\x2b\x2a\x46\x2e\x8c\x66\xa5\x49\x16\xb2\x0c\x80\x10\x01\x80\x1d\xdb\x6a\xaf\xb3\x10\x88\x5a\x97\x4a\xbf\x39\x8b\xd7\xdb\xb2\xe7\x5b\x65\x8e\x90\x8e\x63\xa5\x4b\x6e\x60\x7d\x8e\x15\x30\x27\xa9\x30\xcf\x17\xda\xfd\xc2\x98\x34\xbe\x3a\x2c\xac\x01\xa5\xc9\x94\x48\x70\x2c\x1d\x43\x64\x47\x69\x8a\xcf\x0a\xc8\x9b\x0e\xa9\x4f\xbf\x97\xcb\xad\x03\x46\x2b\xa4\x72\xaa\x28\x20\xd5\xae\xb2\x99\x0e\x19\x67\xaa\x80\x53\x84\x70\xd3\x97\x83\x75\x72\x00\x95\x6a\x7f\x0d\x0e\xd6\x31\xf6\x92\xbd\xd5\x38\xd8\x39\xf2\xb0\x73\xc9\xc5\xce\x91\x8f\x9d\x0b\x4e\xd6\x2a\xf3\x38\x5e\x06\x4f\x2f\x5e\x96\x6e\x70\x01\xee\xbe\xf7\xb6\xaa\xf0\xca\xc7\x78\xef\x25\x2f\x52\xc6\x94\xee\x0b\x58\x19\x62\x82\xa6\xab\x28\xa3\xd7\x2f\x3b\xef\x23\xad\xd7\x66\x29\x43\xda\xae\xc5\xed\x75\x2b\x95\x97\x76\x6b\xe6\x49\xf3\x36\x2c\xb6\xdb\x31\xcf\xd0\x90\xbd\x67\x01\x41\xd5\x88\x20\x1d\x85\x95\x9d\xaa\xe3\x54\x40\xf2\x68\xa7\x49\xc7\x5d\x95\x85\xfc\xea\xe5\x76\xb5\xcb\x1a\xb1\x91\xaa\x2a\x31\xac\x42\xa7\xef\x50\x05\x80\x9e\x0b\xf4\x97\x67\x73\x46\xb2\x2b\x0e\x6b\x0d\xbc\x90\xd5\x3b\x64\x10\xe2\x10\x5a\x95\x30\xac\x1d\x73\xf7\x3e\x52\xa3\x97\x19\x2b\x35\xbd\x2a\xd3\x6e\xaf\xdb\x25\x62\x98\x2a\xdf\x7d\x26\x5c\xcd\x79\x28\x27\x69\x0f\xa6\xe8\xfc\xbc\x3c\x90\xff\x08\xdc\xe5\x77\x73\x9a\xbe\x58\xac\x2e\x42\x3a\x61\xe1\x4b\xe0\x3b\x92\xc9\x77\x6d\x67\x99\xd1\x55\x29\x1a\x60\x91\x61\xff\xd0\x17\x61\x50\x98\xb7\x7d\xd1\x6e\xcf\xf5\x26\x13\x74\x80\x8a\xbe\x48\xa6\x08\x9d\x23\xbf\xfd\xfa\x2f\xd5\x51\xd0\x8e\xca\x01\xf5\x5e\x16\x38\x60\xeb\x78\x9b\x43\x12\x7d\x10\xc3\x6a\xaf\xb6\x7d\xb4\xc5\x80\xda\x07\xd3\xad\x70\x10\xab\x8e\x4d\xa7\xcc\x93\xc1\x7d\x52\x53\x10\x02\x5b\x95\x11\x53\x95\x8c\xb6\x3d\xba\x1e\xf1\x68\xa0\x3c\xe3\xd1\xfc\x8a\x91\x0f\x52\x27\x32\xe5\xc9\x82\xd5\x75\x10\x2d\xf9\x72\xcb\x07\x16\x43\x93\x30\x65\x9a\x8c\xdb\xb8\xc0\xcb\x40\xe7\x7d\xcf\xe3\x79\xb4\x8e\xdc\x75\x5a\xfd\xf0\xde\xe4\xaf\x1a\x4b\x6e\xaf\xd3\xa0\xc9\xa4\x24\xe6\x7e\x81\x6e\x03\xc2\x5c\xc1\x9e\x25\x31\x3a\xd8\x2e\x8e\xb8\x75\xb5\xf5\xd2\x25\x13\x52\x75\x0a\xb1\x3f\xd5\xfb\x00\x24\x10\xb9\x31\xb9\xc9\x26\x24\xef\xae\xd2\xa6\x40\x36\x90\xbd\x17\xb5\x49\x49\x71\xc1\x89\x53\xe9\x53\x1a\x14\x9a\x48\x21\xfc\x76\xec\xfc\x7e\x82\x1d\x59\x43\xfd\x40\xfa\x4a\x49\xa4\xaf\xa4\x44\x9a\xfb\xab\x53\x56\x7a\xba\x33\x5d\xb9\x27\x95\x1a\x37\xe4\xfa\x8a\x9e\x43\x32\xea\xb8\x75\x88\xa7\xb4\x2e\x34\x8d\x06\xe5\x3d\x24\x93\x58\xe4\x56\x23\x7b\xf5\xd9\x3f\x3e\x7c\x6e\x71\xc7\xd6\x9f\xf5\xb4\x59\xb6\xd4\x6e\x7d\xcb\xcc\xb3\x2c\xee\x67\x64\xfb\xe9\xec\x6c\x5c\x1a\x91\xac\x96\x35\xb1\x3c\x44\x51\x7b\xd7\x95\xe3\xcd\xcd\x8c\x6a\x0b\x96\xcd\xb9\xbf\xc6\xd9\xf3\x0e\x3f\xb8\xdd\x33\x07\x87\x0c\x9b\x43\x8e\x5b\xf3\x2b\x12\x75\x22\x14\x35\xb3\x24\x61\xae\x56\x0a\xee\xe1\x3e\xd6\xa2\x7a\xfb\x82\x0d\x67\x43\xf2\xe3\xd1\xd9\x36\x19\x7f\x38\xdb\x26\x2c\xf3\x86\x2f\xc9\x3b\x99\x22\xaa\xe3\x06\x21\xeb\x10\xab\xf6\xfd\xc9\x73\x21\x44\xcc\xc0\xb5\xe5\xf3\xd2\xb8\xc6\x34\x9b\xaf\x31\x8f\xcf\xc7\xa2\xfc\x5d\x4c\x63\xd7\x0c\x76\x5b\x18\xf4\x19\x84\x6e\x0e\x8b\xa9\xc2\x61\xaa\xb9\xe8\x3b\x19\x84\xb0\xe1\x6c\x8f\x0c\x08\xbb\xa6\x5e\xb6\x47\x76\xa6\x9c\x43\xca\x47\x80\xbd\x21\x3b\x13\x9a\x90\xe3\xf7\x67\x47\x7b\xe8\x13\xc1\xa2\x2c\x59\x91\x45\xd7\xe1\xf2\xfe\xf8\xed\x7f\x49\x3e\xb6\x22\x2c\x40\x3c\x6c\xf2\x09\xda\xf8\x04\xde\xcb\xe4\x13\x36\xf1\x49\x79\x2b\x58\x92\xab\x95\x0f\x64\xbd\xa7\xc5\x15\x15\x91\xbc\xc5\x85\x3a\xc8\x4c\xb1\xb0\xe5\xd3\x67\xbd\x55\x17\x80\x20\x2f\x40\xb7\x56\x60\xd7\x80\xe8\x0a\xc0\x55\x3a\x30\x74\xb0\xda\x51\x06\x8e\x84\x13\xa6\x88\x20\x6f\xbf\x42\xfc\xde\x53\x24\x97\x39\x6d\x69\x36\xc7\x64\xb6\x7b\x45\x3a\xfa\x1e\x97\x35\x5c\x66\xd0\x2b\xa8\x2e\x84\x4c\x8f\x6a\xfa\xca\xaa\x07\xf8\xd3\xcd\x5a\xc0\x3a\x5a\x89\xbd\x86\x94\x49\x24\x01\x6e\x57\x00\x8a\x6d\x80\x4d\x9b\x57\xda\xe7\x20\x24\xfd\x98\x51\x77\x55\x81\xb7\xe8\x79\x5e\x8e\x0e\xde\x8d\xfb\xda\x2d\x81\x11\xd9\xfb\xae\x73\x28\xaa\x56\xbd\x07\xbd\xc5\x48\x57\xee\x03\x7f\x82\x26\x0b\x80\x68\x6b\xd6\x4c\x7c\x74\x74\xfc\x4a\xaa\x67\x99\x5f\xa7\xd0\xaa\x62\xa7\x83\xb4\xb4\xf5\x88\x76\xda\xee\x91\x60\x05\x12\x85\x96\x6f\x5a\x0c\x41\xbd\x56\xa2\x18\xda\x1a\x67\x3c\x48\x25\x3c\xd2\xa9\x04\x44\xf1\x00\x7a\x8c\x8c\xa6\x5a\x1e\xe9\xee\xe3\xe1\x4c\x10\x18\xdd\x97\xc1\x67\x0a\x60\x4e\x2a\xa9\x86\x0b\x84\x13\x4a\x32\xe6\xcd\xa3\xc0\xa3\xc6\xe4\x39\xe5\x03\x17\x7a\x54\x5a\x05\x8b\x98\xa7\xa5\x63\x29\xa2\xc3\x03\x84\x43\x81\x9d\x38\x0d\x12\x76\x45\x43\x33\x0a\x5c\xf9\x20\xbf\x90\x0a\x05\x44\x60\xe4\x84\x45\x65\xb6\x59\xf0\x1e\xe9\xde\x1c\x9d\xba\x67\x28\x76\xf3\xe9\x10\xd5\x0c\x89\x1e\x3f\xdd\xa5\xba\x2d\x00\x61\xbf\x45\xb7\x43\x18\x21\xd4\x75\xe4\xcd\x39\x39\xc1\x23\x9b\xbc\x08\x86\x6c\x48\xe2\x20\x9a\xa5\xed\xba\xdb\x5e\xe3\xed\xc1\x0e\x62\x73\x64\x82\x85\x20\xa3\xb1\x8a\x50\xb8\xb1\x43\x43\xe5\x62\x86\xd2\xb8\x4e\xe5\xb1\xd2\xe8\x5a\xa9\xd0\x83\x02\x16\x1f\x73\xcb\xe0\x14\xb6\xab\xe6\x69\x56\xa2\x52\x68\x38\x1d\x45\x7a\x86\xf6\xc1\xdd\x88\x6d\x34\x43\x7e\x2c\xe5\x8a\x1e\x8e\xfb\x9e\x8b\x7d\x0f\xa6\xaa\x8b\x7c\xd9\x1f\x19\x1b\x81\xda\xe6\x4b\x26\x63\x0c\x49\x4c\x83\xc4\x0e\x68\x5c\x3e\xe2\x52\x2b\xd3\xaa\xe8\x34\xa5\x13\x9e\x67\x3d\x8e\x92\xdb\xba\x37\x46\x3c\x13\xbb\xaf\xdf\xca\x38\xc6\xc2\x1d\x96\x68\x28\xd2\xee\x11\xe2\x8e\x0c\x77\x64\x3c\xf6\x23\x23\xe2\x99\x12\xad\xac\x64\x69\xb7\x17\xf7\xb4\x14\xf7\xb3\x11\x37\x5c\x99\x94\xd8\xd7\xe1\xcd\x24\x8b\xd9\x09\xd6\xb1\x93\x7b\x18\xa5\x37\x33\x47\xc7\x9f\x2b\x71\xcf\xb7\x74\xda\xde\xe2\xe9\xdf\x50\xcb\x42\x24\x80\x2e\x0b\x28\x9a\x0c\x61\xd5\x07\x49\x9b\x6b\x8e\xf4\x2b\x93\xf3\x7c\x04\xfe\xef\x27\x10\xbc\xa1\x42\x11\xd0\x77\xe6\xc5\x84\x79\x34\x4f\xa5\x37\x47\x87\x63\x70\xd1\x45\x8f\x25\x50\x47\xe1\x11\xf2\x12\xcd\x89\x0a\xec\xae\xe2\xdf\xd2\x75\xc8\xa2\xe3\xcb\x9e\xee\xbb\xb1\xad\x7b\x6e\xe0\x3f\xe0\xb6\x52\xf9\xd7\xf2\x4d\xf9\xef\xd3\x83\x33\x7c\x6b\x6f\x46\xd6\xf8\x36\xc8\x98\x72\x0f\xa1\x91\x5a\x20\xca\xa4\x80\x28\xe0\xbb\x83\xaf\xbe\xf9\xa6\xc5\xc6\x76\x77\xcb\x3e\xb5\xc1\xae\xe1\x53\x35\x13\x14\xb0\x6b\x3d\x42\x25\x2c\x99\x6f\xf4\x56\x5d\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\xb8\x28\x09\xf3\x88\x5d\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\xb8\x28\x09\x17\x25\xe1\xa2\x24\x6c\x23\x71\xbc\xcc\x45\x49\xb8\x28\x09\x17\x25\xe1\xa2\x24\x5c\x94\x84\x8b\x92\x70\x51\x12\xcd\xc7\x45\x49\xb8\x28\x89\xe2\x71\x51\x12\x2e\x4a\xe2\xee\xa3\x24\x5a\x72\xc1\x88\x3b\x06\xe2\x9d\x99\xde\xb5\x57\xdc\xb2\xca\x25\x3a\xde\x06\x30\x87\xf2\x4b\x87\x73\xe8\x70\x0e\x1d\xce\xa1\xc3\x39\xb4\xb3\x46\x87\x73\xe8\x2c\xf8\xce\x82\xef\x2c\xf8\xce\x82\xef\x2c\xf8\xce\x82\x5f\x3e\xce\x82\xaf\x3d\xce\x82\xef\x2c\xf8\xf2\x71\x16\x7c\x67\xc1\x77\x16\x7c\x67\xc1\x77\xbc\xcc\x59\xf0\x9d\x05\xdf\x59\xf0\x9d\x05\xbf\xf9\x38\x0b\x7e\xfd\x71\x16\x7c\x67\xc1\xaf\x3f\xce\x82\xef\x2c\xf8\xc5\xe3\x2c\xf8\xce\x82\xef\x70\x0e\x1d\xce\xa1\xc3\x39\x74\x38\x87\x0e\xe7\xd0\xe1\x1c\xf6\x69\xc1\xe1\x1c\x3a\x9c\x43\x87\x73\xe8\x40\xab\x1c\x68\x95\xc3\x39\x74\x38\x87\x0e\xe7\xb0\xad\xff\x0e\xe7\xd0\x1d\x19\xee\xc8\x70\x38\x87\x0e\xe7\xb0\xf6\x38\x9c\x43\x87\x73\x58\x7b\x1c\xce\xa1\xfd\x12\xe9\x70\x0e\x5d\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\xb4\x8c\xd8\x45\x49\xb8\x28\x09\x17\x25\xe1\xa2\x24\x5c\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x36\x12\xc7\xcb\x5c\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\xb8\x28\x09\x17\x25\xd1\x7c\x5c\x94\x84\x8b\x92\x28\x1e\x17\x25\xe1\xa2\x24\x9e\x22\xce\x61\x1f\x5b\x58\x93\x73\x75\xdb\xbf\xa6\x68\xba\x2c\x65\x4d\x53\xaf\xf3\x54\xd7\xe6\xcb\x45\x87\x60\x81\x3c\xaa\x68\xb9\x2d\x43\x32\xcf\x0a\x00\x32\x76\x8d\xe3\xbd\x28\xd4\xb2\x2f\x4b\x8f\xef\x4c\x61\x3c\x5a\x84\x79\xf4\x6f\x41\xd4\x3c\xb8\xb6\x88\x4a\x41\xcf\xef\x0f\xf1\x26\x53\xe8\x61\xe6\xc1\x4c\x88\x85\xe7\x5b\x50\xdf\xf9\x16\x2c\x60\x59\xd6\x54\x35\x9d\x0a\x91\x26\x03\x96\x09\x15\x84\xfc\x8a\x25\xd8\x1b\xf4\x18\xd2\x3a\x97\x12\xbe\x08\xb2\x8c\xf9\xdb\xe2\x46\x8e\xee\xe6\xa6\x4a\x3d\x1e\xa5\x01\x42\x56\xe2\x8d\xfb\x7c\x2b\x88\xa6\x41\x14\x64\xec\x7c\x8b\x0c\x08\x78\xa9\x68\xc3\x51\x57\x1c\xd9\x4f\x12\xd2\x34\x1b\x92\x62\x64\x46\x92\x88\xbe\x06\x3e\x8b\xb2\xc0\xa3\xa1\xec\x60\xbd\x9e\x20\x22\x34\x8c\xe7\x34\xca\x17\x2c\xd1\xca\xc1\x02\x30\xd5\x2a\xcd\x82\xf2\x72\x88\xa6\x58\xa3\x62\x13\x17\x47\x94\x2f\x26\xcd\x7b\x7b\x9c\xb0\xc3\xe3\xfd\xb3\xae\xe5\x31\xc6\x62\x24\x88\xfc\xc0\xc3\x3b\x49\xe1\x1a\x3d\x57\x30\x94\x70\x7a\x05\xa9\x22\xd4\x84\x4d\xb9\x99\xf1\xd0\x68\x45\x44\x75\xd6\xbe\x4e\x38\x0f\x59\x13\x55\xb3\xe5\xd4\xa9\xdd\xca\xcf\xf4\x1b\x1e\xae\x6a\xed\x9e\xa7\x36\x5a\x1c\x78\x97\xf8\x7f\x3c\x37\x32\x20\x31\xb6\x9a\xc4\xae\xad\x04\xe9\xc8\xad\xcd\x61\xc6\xa5\x82\xa9\xe5\xde\x51\xf6\x23\x25\x53\x1e\x86\xfc\x0a\xa9\x86\x97\xcf\xe2\x3a\x86\xe7\xc2\x1f\xf1\x6e\x82\x1b\xfb\x22\x0c\x32\x96\xd0\x50\xfc\x62\xaa\xf9\xfc\x9c\x0c\x30\x90\x41\xac\xea\x45\x4c\x93\x20\xe5\xd1\x36\x81\x48\x26\x75\xa9\x50\x55\x4e\x39\x27\x13\x9a\xc0\x45\xa7\x68\xee\x77\x6b\x36\x57\xb6\x27\xae\x44\xec\x7f\x72\x1a\xfe\x01\x3d\xef\xd4\x41\x17\x4c\xe5\x09\x17\xa4\x50\x46\x29\xed\x8a\x26\xcd\x4c\xe4\xef\xd0\x0f\x5a\x7a\x8b\x4c\xca\x3f\x3d\xfc\x73\x38\x1c\x92\x5f\xb4\x1e\x64\x49\xce\x94\x0b\x7d\xe1\x81\x86\x6d\xfc\x99\x98\x7d\x5e\xa5\xb6\xb2\xa3\xa9\xb2\xaf\x62\x00\x41\xd4\xa3\x73\xa6\xc6\xd6\xec\x2f\x34\xd6\xd6\x41\xf3\x94\x68\x7d\x16\x17\x5a\xa8\xef\x42\x1c\x1d\x2f\xcb\xa6\xcf\x8a\x96\x69\x56\xce\x8e\x36\x33\xbf\x83\x45\x6a\x3c\x74\x65\x15\x85\x66\x83\x4f\xa1\x2c\x5c\x6d\xe1\xbf\xf9\xab\x57\x5f\xbd\xc1\xff\xc7\x37\xc5\x37\xa7\x73\x9e\x64\x03\x2f\x48\xbc\x3c\xc8\x40\x70\x91\x1f\x99\x1a\xfa\xc7\x3f\x5a\xbf\x06\x15\x68\xf6\x02\xcb\xbc\x2c\x0a\xc5\x34\x61\x11\x82\xdd\xce\x12\x9e\xc7\x42\x5a\x3b\x3f\xcf\x68\x18\xbe\x30\xaa\xb2\x25\xfa\x2a\x3a\x27\x14\xfc\x42\xd5\xa6\xd6\x30\x0d\x43\xed\x86\x0a\x1b\xf4\x2d\xae\x07\x14\xc1\x2c\x4c\x4e\x6c\x6d\xe4\x33\xca\x7f\x4b\xe7\xef\xe9\x36\x19\x6c\x93\x0b\xa0\xc3\xce\x90\x9c\xc2\x96\x23\x72\xcb\x59\x2b\x5d\xf0\x84\x91\x58\x08\xa7\x69\x1a\x2c\x19\x99\xa0\xef\xf1\x4a\x69\x46\xa4\xce\x8a\xb0\xd4\xa3\x31\x23\xde\x9c\x26\xd4\xcb\x58\x22\xbb\x7d\x84\x0e\x9c\xc6\xcd\xf0\x02\x4e\xa9\x05\xf5\xd9\x20\x8f\x71\x59\xa4\x2f\x0b\x76\x04\x21\x2f\x92\x75\x5c\xb1\x89\x90\x7e\x99\x64\x1e\xfa\x8c\xfb\x2c\x0e\xf9\x6a\xc1\x22\x23\x3b\x95\xdf\xc7\x09\xf7\xd5\x22\x85\x7a\xc5\x9e\x02\x9e\x94\xf0\x28\x63\x91\xaf\x2d\x75\xea\x5d\xca\x1f\x7e\x11\xc5\xcb\xfa\xc9\xef\xfe\x68\xdb\x01\x3e\x5b\xaa\xea\x7f\x47\x6a\xbb\xc0\xc4\xca\xda\x84\xa7\xaa\x2e\xa1\xaf\x54\x78\x6a\xfc\xea\xce\x44\x43\xd9\x49\x75\xd5\x58\x57\x40\x04\x7d\x65\x8f\x33\x15\xd4\x9a\xa5\x04\x70\x35\x87\x30\xca\xca\x99\xaf\x39\x74\x48\xa0\x69\x23\x9f\x12\xfb\x8e\x4b\xa4\xe9\x6d\xf9\x2f\x71\xa9\x19\x12\x74\x9f\x82\xd3\xe4\x3a\x16\x12\x55\x16\xae\xb4\x3b\xcd\x0b\x40\xc9\x36\xfa\xc5\x69\x7c\x34\x22\x5e\xc2\xa4\xdf\x76\x2a\x77\x37\x4f\x48\x14\x84\x2f\xb7\x95\xe7\xb5\xcf\xa6\x34\x0f\xb3\x94\xe0\xb0\x04\xe9\x12\xdf\x72\xa7\xc9\x38\xb9\x12\xbc\x72\x24\xb1\xcc\x45\x27\x8e\x34\x58\x73\x90\x5b\x15\xff\x2c\x20\xa3\xc1\x61\x88\xd8\x02\x38\x65\xfb\x24\x48\x71\x8f\x0d\xc8\x5f\xa4\x28\x27\x3a\xa4\x5a\xfa\xeb\xb6\x3c\x22\x84\x60\x0c\x9a\xc7\x4a\xc3\xc6\x7d\x1c\x44\x5e\x98\xfb\x4a\x35\xef\x51\x21\x2c\x43\x05\x65\x35\x04\x0f\xe9\x88\x17\x43\x82\xea\x5e\x8a\x9e\x98\xef\x5a\x7a\xe7\x8e\xcc\x7d\xab\x50\x44\x30\xa6\xb2\x7a\xe3\xe5\x0e\xca\x59\x87\xbe\xdd\xd9\xa0\xa9\x52\xb8\x19\xdb\xa6\x09\x79\xe0\xcf\xf2\x5a\xac\x5d\x4f\x12\x46\xc5\x6e\xf2\x2e\x09\x9d\xd1\x20\x32\x2e\x59\x5c\x26\xa8\x4e\x0d\xaf\xe8\x2a\x6d\x38\xcd\xa2\x9d\x73\x9b\x44\x6c\xc9\x92\xca\xaa\x33\x6a\x35\x7b\xa2\xd1\x97\x54\x20\x0c\x8e\x8e\xc2\x22\x10\xf3\x34\x0d\x26\xa1\x6a\xb8\x74\xe4\x10\x1f\x9c\xc6\xcc\x33\x5f\xbb\x71\x20\x76\xd7\x96\xf6\x0b\xbe\xf5\xee\x6c\xbe\x72\x37\x7f\x85\x93\xc3\xd7\x0d\x76\x69\xc6\x13\x3a\x63\xea\xa7\x34\xa3\x59\x8e\x84\x41\xbd\x35\xf3\x8f\x35\x8d\xe2\x65\x10\xf9\x82\x1b\x29\x92\xc6\x61\x9e\xd0\xb0\xfc\xc5\xe3\x11\x9a\x90\xd2\x3d\xf2\x97\xbf\x8a\x5f\x44\xfd\xcc\x97\xf1\x5f\xf2\xd7\xc1\x60\x20\xff\x8f\xc6\x81\x8a\x24\x23\x34\x0e\xd8\x75\xc6\x22\x28\x38\xbc\xfc\x36\x1d\x06\x7c\x67\xb9\x7b\x1e\x61\xa3\x07\x79\x9a\xf1\xc5\x09\x43\x95\xf8\x21\x83\x4b\x22\x30\xec\x4a\xbc\x56\x33\x04\xaa\xd0\x74\x27\x83\x19\x8b\x86\x97\xf9\x84\x4d\xf2\x20\x14\xb7\x56\xd1\x80\x6a\xfe\x85\xcf\x96\x2c\x04\x41\x45\xf1\xaf\xb3\x60\xc1\xd2\x8c\x2e\x62\x71\x7f\x0b\xc1\xe9\x5f\x1c\x63\x7b\x04\x5d\x0a\x23\xf4\xcd\x4b\x59\x96\x0e\xbd\xc4\x1f\xc6\x09\x17\x94\xf6\x80\xc5\x0d\x79\x32\x3b\x8f\x04\xef\x84\x6e\x80\x40\xb4\x47\x2c\xc5\xaa\x6a\x5b\x1c\xaf\xd9\x8d\x30\x0c\xd2\xec\x4f\xc6\xf7\x6f\x83\x34\xab\x4e\x4a\xa3\x97\x72\xc6\x83\x68\x96\x87\x34\x69\x16\x80\xf9\xf2\xb8\x58\x34\x07\x61\x9e\x66\x78\x61\x5d\xaa\xb9\x13\xff\x18\x48\x0a\x88\x79\x81\xca\xbc\x39\x5b\x94\x91\x72\x3c\x66\xd1\xfe\x78\xf4\xf1\xf5\x69\xf5\xf7\xda\xb6\xaa\xf7\xbd\xea\x7f\x0c\xa6\x36\x9a\x4c\x82\x2c\xa1\xc9\x8a\x8c\xc6\x24\xcd\x27\x03\xd5\xcd\x9d\x83\xd1\xe1\x49\x85\xa7\xa1\x8a\x64\x2e\xb8\x20\x0a\x4e\x70\x3d\x86\xbb\x1d\xb2\xb9\x8c\x63\x28\x8c\xb4\x6b\x2e\xc8\x32\xa0\x9a\x87\x09\xda\x0e\xf1\x53\xbd\x5e\x3e\x6d\x76\x54\x19\xa0\x0a\x7d\x90\xbe\x8d\x2d\x4a\x7a\x6d\x91\x57\x77\x6d\x35\xbe\x5f\xd0\x4d\x1a\x5a\xd1\xf7\x18\x19\x8d\x24\x3f\xf3\x25\xad\x91\xd3\x00\xdf\x94\x87\x1e\x35\x29\xe2\x04\x09\x23\xb9\xf7\x87\x20\x12\xb1\x24\x55\x97\x66\x8f\x47\x4b\x96\x64\x24\x61\x1e\x9f\x45\xc1\xdf\x8a\xca\x53\x65\xfa\x85\xb4\x1b\x0d\x31\x32\x88\x32\x96\x08\xe1\x09\x98\xde\x36\xf0\xf8\x05\x5d\x91\x84\x89\x66\x48\x1e\x69\x15\x2a\xc7\x93\x77\x42\x68\x0e\xa2\x29\xdf\x03\xd4\x95\x74\x6f\x67\x67\x16\x64\x6a\x7f\x7b\x7c\xb1\xc8\xa3\x20\x5b\xed\xc0\x36\x0d\x26\xb9\x98\x92\x1d\xd8\x8b\x3b\x69\x30\x1b\xd0\xc4\x9b\x07\x19\xf3\xb2\x3c\x61\x3b\x34\x0e\x06\xd0\xf7\x08\x36\xf8\x70\xe1\x3f\x4b\x24\x43\x48\x9f\x9b\x38\x62\x93\x91\xc2\xe6\x6a\x9b\x06\xb1\xbb\x64\xb0\x22\xde\x0a\x50\xac\x29\xa8\xad\x8e\xf6\x93\xa3\xd3\x33\xa2\x5a\x37\x06\x76\x22\xf1\xcb\x2f\xd3\x72\x1e\x04\xd1\x82\x68\xaa\xe4\x37\xd0\x7c\xeb\xea\x0e\x14\x1e\xc2\xc0\x20\xca\xa7\xf9\x64\x11\x64\xa9\x06\xd7\xc1\x87\xe4\x00\xd8\x9e\x38\x14\xf3\xd8\xa7\x19\xf3\x87\x64\x14\x91\x03\xba\x60\xe1\x01\x4d\xd9\x9d\xcf\x02\x08\xb1\x03\x41\xdb\xbe\xf3\x60\x09\xb2\xb5\xe9\x8e\x0b\x46\x6a\x99\xb6\xfa\x46\x15\x27\x70\x35\xd2\x43\x05\x06\x95\xc1\xb8\x94\xd8\x9d\xb4\xd5\xc4\xd6\x0e\xe9\x16\x33\x9c\xc5\x71\xb9\x91\xa1\x47\xf9\x56\x8d\xc6\x44\xb1\x34\xe4\x60\x13\x16\x72\xb1\xb6\xb8\xd4\x48\x31\x93\x15\xca\x2e\xb7\x38\xc9\xe1\x31\x48\x0e\x73\x9e\x96\x5e\x08\x77\x20\x35\xe8\xb1\x04\x75\x89\x41\x7f\xd7\x94\x16\x2a\x3d\xab\x4b\x0a\xfa\xcb\xbb\x94\x12\xdc\x09\xea\x4e\x50\x7d\x0a\xdc\x09\x7a\x6f\x27\xa8\xce\x1d\xfa\x9d\x9e\x4d\x5e\x53\x3e\xeb\x9f\x9f\xec\x3a\x86\x80\xb7\xd1\xb8\x8f\x36\x4c\xcc\xb4\xfc\xa0\x1a\x57\xf3\x62\x34\x5e\x7e\x0d\xdb\x6a\x34\x5e\xbe\x79\xa9\xee\xe5\x6a\x59\x18\x2f\xdd\x23\x54\xf2\x8f\xc4\xde\x9c\x52\x8f\x81\x2d\xef\xfc\x7c\xab\x66\x36\x29\xb4\x57\xa0\x87\x08\x39\xbf\x54\xea\xc3\x40\x7d\x69\xd4\x1a\x2b\x67\x20\x2d\xde\x67\x34\xae\xb8\x9b\x60\x1e\x3b\x30\xe8\x49\xbd\x08\x30\x11\x9a\x0d\xc1\x7d\xd3\x78\xde\x9f\x9f\x67\xa0\x4c\xc9\xd3\x86\x1f\x68\x2d\xa8\x15\x42\x8d\x8a\x54\x80\x3c\x91\xaa\x3f\x53\xa5\xf5\xb4\x78\xe7\xe7\xa2\x3e\x99\x0f\xaf\x18\xbf\x64\x7e\x69\xb5\xd5\x20\x32\x87\xcc\x16\x57\x3a\x7d\x9e\x86\x10\xe3\x26\x8e\x95\x8a\x5f\x1e\xfa\x53\x1e\x95\x4b\x01\x55\x25\xa6\x6a\x83\x14\xf5\xb2\x08\xab\x42\x33\x12\xe7\x49\xcc\xc5\x4e\x7d\x31\x9a\x4a\x6c\xc2\x39\x2b\xa7\x46\xb4\xa3\x3c\x7d\xda\xa1\x2d\x94\x8e\x92\x33\x9c\xfe\x90\xd1\x24\x2a\xa6\x4d\xce\x60\x59\xaf\xe8\x40\x9e\x82\x1e\xdd\xea\x63\x7e\x7e\x9e\xa9\xe9\x18\x1a\xb5\xe0\xb7\x2e\xd7\x91\xb2\x87\x62\x39\x77\x6f\xa9\x23\xc4\x82\x13\xeb\xfe\x3f\xd0\x04\x20\xed\x33\x40\xb4\x6a\x6c\xfd\xdb\x20\xca\xaf\xdb\x57\x7d\x61\xa1\x2e\x16\xf4\x1f\x60\xe9\x2d\xe2\x6c\x35\x24\x65\x33\xba\x51\x1b\x2d\xbc\x41\xda\xca\x59\xc4\x33\xe3\x4b\x96\x44\x68\x1b\x2a\xdc\x8d\xf8\xb6\xf4\x76\x15\xdd\x4e\x78\x3e\x43\x3f\x08\xa5\xea\x95\xc2\x76\x79\x73\x37\xaa\xc6\x71\x72\x61\x5d\x8a\x82\x05\xe4\x88\xe8\xea\x31\xf7\x91\x2d\xc0\x9a\xfc\x03\x61\x62\xfc\xb8\xb1\x7d\xb1\x48\x96\xb8\x11\xcd\xb1\xd6\x65\x68\xeb\x12\xf2\x56\xae\x4a\xf2\x6d\x13\x5d\x69\xcc\x53\xf4\xda\xdd\xc9\x38\x78\x82\x8a\xbe\x28\xe5\x87\xd9\x15\x21\xe4\x1e\x0d\x8b\x10\x4e\xa9\x68\x1d\x4d\x49\x85\x9f\x29\x5e\xa6\xcd\x6f\x2f\x52\xc3\x46\x52\xf4\xae\xb8\x76\xc1\xf0\x81\x9f\x88\xb1\x4b\x59\x0b\x28\xa7\x91\xdf\xc8\x64\xd4\x32\x2a\xf7\x50\x41\xeb\x4a\x9f\x61\x09\x0e\xc8\x95\x60\x73\x55\xe6\x6c\xe6\x07\xa8\xf5\x1d\x54\xa6\xdf\xd0\x58\x11\x75\x53\x2a\x90\xc5\xce\x36\x56\x1a\xe9\xcc\x08\xf0\x20\x13\x70\xac\xd8\x36\xf4\xaa\xe8\xc2\x36\xa1\xc0\x35\x9a\xe2\x1f\x91\x76\x6f\xfd\xec\x2a\xf2\x52\x96\x58\x39\x18\x38\x20\xee\x34\x09\xa2\x48\xc9\x56\x52\xf2\x22\xcd\xcd\x1c\x86\xa6\xe4\xb7\x5f\xff\xc5\xb2\xf9\xab\xdf\x7e\xfd\xf7\x4b\xe9\xf3\x0e\xe6\x48\xe6\x13\xd1\xeb\x3f\x90\x20\x23\x41\x1a\x3d\xcf\x4a\xdd\x75\xf7\x39\x4e\x70\x2b\xc7\x09\x17\xb2\x8b\xb6\x00\x90\xc2\x1a\x4f\xa8\xae\xc2\xb2\xcf\xc6\x13\x57\x05\x26\xec\xe1\x48\x21\x0e\x08\x64\x1f\x8c\x15\x42\x6b\x96\x90\xb7\x16\x71\xc8\x16\x62\xa5\x21\xa3\x2f\xd9\x86\xde\xe9\xf4\x0f\xe6\xb9\x0b\xb2\x80\x86\xe1\x8a\xfc\x5f\x41\xe1\x38\x61\x03\xf0\xa2\x29\x6c\x43\x63\x31\x45\x4c\x62\x76\x16\x4c\xdf\xcb\x17\xb6\x1b\x81\x78\x54\xce\x50\x14\xef\x65\x6e\x52\x1e\x19\x8d\x0c\x6d\xac\x3b\x32\xc3\x35\x35\xd4\x05\xa2\x9c\xf4\x50\x05\x17\xa6\xe9\x4a\x1d\xf7\xb2\xc7\x50\x20\x10\xd7\xef\xc8\x48\xec\xb6\x4e\xd8\x22\xe3\x6a\x36\x10\x71\xd4\x57\xa4\x41\x75\x5e\x3f\x4f\xe5\xce\x95\x41\x5b\x0a\xc0\xd3\xe8\xbf\x3a\x61\x65\xea\x5c\x70\xb8\x2a\x84\x0d\x39\xe1\x68\x26\x5a\xe7\x6c\xec\xf4\x8a\x8e\xcc\x47\x5f\x37\x65\x4a\xfa\x74\x7c\xde\x1a\x91\xf5\x39\x81\xf2\xdc\x15\x06\x4b\x87\x9b\x68\x64\x61\xd7\x03\x20\xae\xe5\x4d\x0b\xca\xd2\xc6\xce\xa5\xb1\x4c\xea\xdc\xb5\xdc\xf7\xcb\xe8\x47\xdc\x70\x01\x9c\x72\xd3\x46\x7a\x68\xd9\x09\x3b\x7a\x5d\xe9\x11\x2d\x0e\xda\xe2\x06\x22\xf3\x38\xcb\x4a\x4a\xff\x4c\x75\x21\x40\xc7\x43\x5b\xa5\xe8\x52\x1c\xc7\x8c\x26\x85\xcb\x1f\x78\xac\x93\xa2\x5f\xa5\x55\x5c\xd5\xac\x5c\x37\x59\x2d\x0d\x76\xeb\x15\x20\xb6\x81\x6e\x38\x1d\xe4\xe3\xd6\x41\x06\x31\x5d\x4c\x42\xee\x5d\xde\x85\x02\x72\x34\xde\x7f\xf7\xbd\xa8\xbc\xae\x7d\x2c\x5e\x34\x55\x8f\x65\x87\xea\x7a\xc7\xe2\x8d\x53\x3a\x3a\xa5\xa3\x53\x3a\x3e\x39\xa5\x63\xc1\x14\x7a\x69\x1c\xa3\x3a\x77\x29\x9f\xf5\xf5\x8d\xe2\x22\x23\x68\x67\x38\xc8\xda\x8e\x31\x1a\x8a\x8b\x8e\x0d\x62\xb7\xeb\x68\x6c\x91\xe4\x9e\x91\xb3\xf7\x87\xef\xf7\x10\xa8\x41\x30\x6c\x3a\x41\xf1\x60\x41\xa3\x1c\xae\x31\xd4\xf7\x41\x4a\x18\x92\x9f\x99\x62\x09\xb8\x6e\x6a\xa7\x84\xb9\xfa\x8c\x93\x39\x8d\xfc\x90\x91\xbf\xfc\xf5\x3f\xc4\x62\x45\xe2\x84\x2b\x19\x72\x6d\xbc\xa8\xa9\x8e\xd8\xe4\xbf\x16\x81\x8b\x66\xb8\x24\x8d\x22\xd7\x0d\x64\x7a\x1c\xc4\x45\x60\x96\x38\x49\x2f\xc1\x3e\x65\xe2\xac\xa7\x89\x69\xf6\x65\xef\xd7\x83\x48\xee\x23\x81\x77\x05\x5c\x6d\x2c\xda\x7a\x81\x6f\x72\x8a\x6d\xeb\x93\xcf\x42\x96\x19\x85\xf6\xf6\x18\x10\x08\x0f\xdc\xef\xda\x3a\x96\xaf\xf3\x48\xee\x1e\x63\xc3\x1b\xef\x1d\x2b\x65\x2c\x57\x93\x81\xbe\x89\x1b\xaf\x8a\x55\x5b\x7f\x23\xa8\x5c\xff\x4d\x92\xb1\xfe\x73\x95\x4c\xf5\xb7\x1a\x19\x9c\x1c\xfc\xc0\x72\xb0\xc7\xa3\x69\x30\xbb\x2b\x41\xf8\x00\x6a\x37\x49\xc2\xf8\xc6\x2c\x0a\xcb\x3e\x99\x64\x61\xaf\xa8\xd0\x09\xc3\x4e\x18\xb6\x4e\x83\x13\x86\x1f\xab\x30\x8c\x7c\x61\x0d\x69\x58\x67\x31\xe5\xb3\x81\x38\x9c\x67\x7c\x5f\x1e\x4b\x20\x61\x9b\x8e\xe2\x3b\x93\x0d\xec\x27\x75\xa3\x5b\xeb\x9c\xb5\xee\x40\xbd\xf7\x03\x15\xa5\xf3\xbb\x3a\x50\x7f\x82\xda\x4d\x07\x2a\xbe\x31\x1f\xa8\xb2\x4f\xa6\x03\x75\x5e\x54\xe8\x0e\x54\x77\xa0\x5a\xa7\xc1\x1d\xa8\x8f\xf5\x40\x45\xbe\xb0\xc6\x81\xaa\xb3\x98\xf2\x59\xff\x40\x05\xb5\xb5\xe1\x14\xec\xad\x58\xe8\x75\xeb\x35\x6b\x0b\x90\xab\x8d\x0e\xd7\x52\x0a\x58\xcf\xe0\x49\x53\xe1\x36\x28\x9a\x70\x07\xee\x83\x1e\xb8\x31\xe7\xe1\xdd\x1c\xb6\x63\xae\x0c\xb0\xfa\x41\x2b\x7e\x35\x1d\xb2\xd0\x8f\xe6\x01\x1b\xcb\x4a\xdc\xe1\xea\x0e\x57\xeb\x34\xb8\xc3\xf5\x71\x1e\xae\x82\x17\xf4\x3e\x58\x45\xe1\x4d\x4f\xd1\xd3\xe0\x6f\xbd\x7c\xa5\xa0\x30\x49\x83\xbf\x01\x2a\x5d\x9e\xa2\x83\x5b\xe9\x76\x4c\x68\x9a\x06\xb3\x68\x21\x56\x86\x15\xeb\x51\x02\x2a\xf0\x70\x48\x0e\x15\x4a\x41\xc6\xc9\x57\x6f\x64\x65\xd2\xbb\x7c\x77\xf7\x2b\xf5\xc3\x1b\xab\xd7\x95\xe5\xf0\xb6\xe8\xeb\x1b\xe3\x11\xbd\x20\x07\xa3\xc3\x93\x35\xdd\xba\xfc\x20\xa5\x93\xd0\xa8\x64\xaf\xb4\x01\xfe\xe3\xaa\x30\xe0\x97\x26\x79\xe9\xe5\x2d\x84\x21\x74\x75\x17\x0b\x1d\x49\x57\x3a\x70\x9b\x48\x27\x37\x95\xa2\xdf\x9a\xfa\x83\x20\x0e\x4c\x39\x86\xab\xbc\xe2\x50\x6c\x6d\xb4\x20\xc8\x8d\xac\xd2\xf4\x82\xa3\x6a\xe1\x11\xbe\x3f\x1e\x2d\x77\x01\x55\xe0\x8a\x26\xbe\xb1\xb7\x00\xd2\x94\x05\x93\x20\x0c\xb2\x95\x60\x14\x99\xe4\x34\x7a\xad\x30\x74\xc4\x92\xd9\xae\xbe\x32\x12\x00\xdd\xe0\x91\x63\x63\x06\xf5\x70\x65\xca\x03\xde\x61\xe4\x62\x91\x6d\xfe\xcc\x73\x28\xcb\x97\x53\x28\x68\x49\xb2\x3c\x8a\x58\x28\xc6\xa4\xd0\xce\x72\x8b\xcf\x0f\x41\x2f\x4f\x9f\x85\xc1\x92\x25\x25\xe4\xae\xf8\xa9\x80\xa3\xd7\x32\x35\xd9\x67\x98\x74\xcd\x32\x01\x1c\x1d\x6b\xaa\xca\xc6\x1e\x18\x8d\x47\x63\xf8\x40\x66\x76\x26\x1e\x8d\x34\xf0\x87\xf3\x2d\xc4\x83\x50\xe9\x25\x20\x2f\xcd\x00\x13\xa9\x9c\x6f\x0d\x09\xd9\xb7\x8d\x77\x21\xb3\x47\x6b\x35\x48\x7c\x89\x14\x79\x07\xb4\x5c\xd2\x50\xcc\x6d\xc2\x73\x5c\x23\xd6\xdc\x60\x1a\xbd\xaa\x71\x29\x0d\xda\x11\xb2\xaf\xf5\xa1\xda\x6f\x5b\xed\xd0\x41\xb5\xd0\xeb\x1d\xbc\x52\xd0\x1a\x7a\x1f\xd0\x3b\x54\xec\x0e\x5b\x9d\xb4\x04\xc5\x96\x09\x68\x94\x44\xa2\xb0\x3b\x45\xe5\x91\x9a\x81\xd2\xa1\xbe\x35\x99\xc0\x8b\x60\x8a\x90\x48\xca\xa9\xf9\xa5\xe8\x45\x49\xeb\xd6\xa5\xd3\xee\x40\x66\xbe\xf2\x88\x15\xff\xae\x87\x4f\xed\x81\x3a\xab\xd0\x94\x92\x27\xe5\x39\x65\x98\xf0\xf6\xa5\x3e\xaa\x8d\x71\x5b\xa1\x7e\x62\xa6\x53\x49\x28\xc4\x0e\x3a\xdf\x3a\x66\x4b\x80\x59\xc4\xcc\x9b\xd5\xc6\x4c\xb5\x8b\x1a\x24\x6f\x36\x41\xcd\xb7\x3a\x17\xd3\x6c\xc0\xf3\x6c\xc6\x83\x68\xf6\xa5\xb0\xd4\x56\xae\x13\xd1\xec\x7d\x4f\x7a\x20\x04\x92\x46\xc0\x92\xab\x2a\xbe\x08\x48\x43\x1a\x98\x36\x69\x0d\xcf\x90\xd2\x91\x10\x42\x75\x06\xd0\xe0\xae\x3c\xcf\xd2\xc0\x67\xc5\x6d\x03\x0a\x89\x1d\x6f\xaa\x14\x50\xfe\xd3\xff\xc9\x59\x42\x7d\x23\x6e\x6c\x3b\x39\xb8\xdf\x1b\x63\x75\x5f\x4c\x55\xaa\x24\x38\x89\xac\x21\x96\x8b\x8c\x1e\x28\x02\x00\x80\xd5\x4c\x56\x08\xa4\x61\xea\x73\x01\xb3\xbb\xde\x62\x5e\x5e\x87\x34\xba\xe1\xd6\xfe\xf8\xe7\xb7\xfb\xc7\xf7\xb6\xb7\xa1\x35\xa3\x6c\x59\x74\x60\xe3\xcd\x6d\xd5\xd2\x34\xdd\x13\x9c\x32\xe6\x5e\x95\x31\xa2\x8e\xb2\xda\xb4\xb2\x08\xef\x42\x45\xf3\xa7\x7c\xc2\x0e\xca\xf6\x0e\xf4\xf6\xea\x8a\x9b\xb6\xb2\x4d\x75\x4e\xeb\x48\xea\x4a\x9e\xb6\xc2\x4e\xf5\xe3\x54\x3f\x4e\xf5\xf3\xe4\x54\x3f\x6d\xdc\xa4\xa9\x10\xaa\x00\xe4\xd5\x09\xfc\xa7\x22\xde\x48\x63\xc9\xb5\x13\xbc\xbf\xb6\x48\xab\xa2\x8f\xb0\xa0\x5a\xc3\xeb\x33\x42\x16\xaa\x96\x25\xd8\xe6\x32\xf0\x73\x1a\x6a\xdd\xb4\x49\x78\xb2\xae\xb5\xaf\xfa\x45\x5c\x70\x9f\x0b\x71\x81\x77\x6f\xeb\xb2\x8a\xd7\xc6\x42\x65\xbf\xac\x89\x05\x8e\xa4\xe6\x60\xb2\x52\x22\xcd\xb6\x4a\x7a\x16\x05\x28\xa3\xa2\x98\x62\xa9\xa1\x47\x5e\x12\xc1\xa6\x22\x2f\x08\x59\x32\x66\x49\xc0\xed\x6e\xbb\x75\xe6\x70\x52\xfb\x50\x25\x2b\x8c\xf1\x5f\x19\x17\x7f\x4d\x79\xb2\x28\x9a\x08\xac\x61\x9b\xea\x01\x98\x5d\x2d\x7a\x52\xec\x0a\x90\x46\x86\xe4\x2f\x52\xdd\xb7\x47\xbe\x59\xfc\xd5\x70\xc1\x50\x4f\xb7\xab\x6f\x97\xa3\xaf\x25\xf6\xb3\x41\x81\x63\x21\x51\xb7\xcd\xb4\x78\xff\x79\x4c\xf2\x5c\x0b\xc7\xed\x3b\xc1\x7a\x08\xaf\x1a\x06\x20\xb1\x7b\x4a\xe3\x00\x27\x24\x84\x94\x6b\x39\x8a\x5a\x66\xf7\x50\xe9\x32\x37\x1d\x69\xcf\xd1\x12\xe9\x30\x75\x20\x64\x42\x7b\x80\xa9\x61\xcc\xcf\xf7\x8b\xcf\xca\x99\xcd\x33\xbe\xa0\x59\xe0\x95\xc0\xb9\xbc\x33\x0f\x49\x95\x2a\x70\xa1\x11\x77\x90\x95\xd4\xd4\x94\x8b\x59\xd1\xa4\x6d\x49\x93\xde\xa9\x45\xfa\x24\x16\xf9\xf2\x36\x3c\x81\x55\x0b\xb0\xe4\x6d\x8b\xa6\x3a\xda\xd3\xe2\x93\x72\xf1\x17\xa8\xce\x9c\x78\x3c\x5e\x75\x9c\x3b\xea\x01\x3e\x50\x42\x5f\x6a\x81\xe1\xa9\x3e\x4a\xc9\x06\xee\x96\xb7\x61\xd4\x68\x1f\xee\x26\x21\x66\x5a\xf8\x9b\x8c\x0b\xff\x3c\x38\xdc\x97\xb7\xaa\xbb\xa6\xba\x8a\xce\xde\x67\xca\xab\xc8\xec\x6d\x53\xdf\x91\xe0\x49\xa5\x75\xd2\x96\x86\x5b\x03\x0f\xb1\x06\x14\xde\x47\xc7\xd9\x5f\xd5\xb0\xd6\xbe\x69\x5b\x07\xaa\x7e\xdb\x18\x58\x4d\x7e\x70\x2b\xe1\x61\x56\x42\xdb\x5b\x96\x79\xfe\xc7\xd7\x07\x7c\x11\x63\xce\x30\x2b\xc5\xaa\x94\x3a\x32\x7e\x56\xa3\xd7\x84\x65\x57\x8c\x45\xd0\xc6\xf2\xb5\xd5\x26\x01\x15\x14\xb7\x78\xb0\x4c\x08\x52\xbf\xd2\xd7\x82\x46\xab\xdd\x57\x46\x62\xb5\x11\x69\xce\x68\x98\xcd\x0f\xe6\xcc\xec\x39\x5f\x1d\xda\x4f\x5a\xe1\x62\xf5\xf3\x44\x75\x25\x2d\x32\x89\x08\xb1\x0e\x6b\x36\x0e\x0d\x2b\xe8\x75\xc2\xb7\xf5\x3d\xe4\xb3\x53\x21\x3c\x06\xd9\xea\xd4\x4b\x18\xab\xab\xce\x9a\x03\x78\x5b\xff\x42\x4d\x4b\xc8\x67\x24\x95\x6f\x08\x9d\xf0\x25\x93\xa0\x30\x21\x9f\x19\x65\x18\x00\x2a\x62\x51\x61\x74\x4c\x33\x9f\xe7\x99\x3e\x19\xa3\x68\xca\xd7\x1b\x91\x5d\x47\x6e\xbb\xa8\x5b\x35\x21\xa5\xe6\xdb\x42\x8a\x56\x5d\x08\x7c\xad\xe9\xa4\xe4\x08\xc5\xaf\x06\x15\x22\xa8\xa1\x2a\x8a\x0f\x32\xca\x9e\x03\xcc\xdd\x34\x0f\xd1\xdc\xe2\x2f\x40\xad\x02\xa9\xd2\x20\x40\x18\xd2\x92\x60\x0a\x5b\xea\x65\x39\x6d\x58\x5e\xb0\x46\x04\xbd\xba\xa2\x05\xda\x88\x02\xeb\x91\xe6\xf4\x05\xf7\x31\xc7\xc7\x44\x48\x64\xcb\x20\xe1\xe0\x26\x43\x96\x34\x09\x60\x49\x36\xfa\x8b\xb6\xe6\xcb\x7c\xc2\x06\xba\xe6\x26\x4e\xb8\xc7\xd2\xfa\x35\xad\x0d\xf7\xb1\x6c\xed\x23\x35\xea\x6d\xd6\xf4\x98\xb5\x31\xb1\xca\xb4\x1d\x55\x5b\xad\xc3\x1b\x19\x08\x60\x31\xa1\x1b\x89\x00\xc4\x0e\xa2\x69\x98\x23\xd8\x11\x66\x95\x87\xfc\x95\xb8\x40\xac\x26\x1f\x33\x07\x4d\xf4\x6f\xbb\x36\x67\xa5\xa1\xda\xc0\x20\x53\x71\xb0\x64\x95\x55\x11\xa4\xaa\x01\xd3\x00\x03\xdb\x44\x73\x7f\x5b\x02\xcb\x2c\x58\x32\x53\x9a\xda\xfd\xf1\xa8\x54\xd4\x8a\x83\xc9\xb8\xe9\x23\xcb\x2a\x33\xd0\xa5\xe3\x30\x6e\x57\xf9\x35\x88\x73\x9b\x6a\x3f\xd2\xa5\xfa\xeb\xd1\x7d\xd2\x43\x05\xd8\x18\xc4\x7a\x6a\xc0\x36\xc9\xe1\x36\xa5\xa6\x9e\xa3\x25\xeb\x49\x4f\x8d\xc1\xf7\x97\xa0\xba\x54\x28\x55\x01\xab\x97\x14\xd5\x55\x65\xbb\x90\x45\x6e\x55\xcd\xd2\xa2\x45\x24\x77\xa5\x49\x24\xb7\x70\xd7\x26\xfd\xd7\x49\x4f\xad\x62\x63\xb8\x6b\x68\x16\xbb\x66\x54\x4b\x3d\x77\x2b\xda\xc5\x35\x46\x4f\xd6\xd1\x32\x36\x68\xd0\x4f\xd3\xd8\x5d\x29\x88\x26\xb7\xae\x6d\x24\x6b\xe5\xc6\xee\xb3\x1d\x88\xe3\x2b\x7d\x88\xd9\x4b\x51\xd9\x24\xce\xed\x29\x2b\xc9\xad\x2a\x2c\xfb\x0f\xbd\xcf\x1a\x6a\x55\x5e\x36\x88\x72\x9b\x0a\x4c\x72\xbf\x8c\xd5\x6d\x94\x5b\x58\x2d\xbd\xf4\x9f\xe4\xce\x74\xa0\xe4\x8e\xf4\xa0\xc4\x2d\xa3\x7b\x5d\x46\x3d\x55\xa8\xe4\x2e\xd5\xa8\xe4\xae\x54\xa9\xc4\x2d\xa6\x7b\x5c\x4c\x5d\x25\x7a\x6b\x62\xc9\x5d\x69\x63\xc9\xed\x6a\x64\xfb\x10\xaf\x43\x33\xdb\x1c\xea\x2d\x69\x67\xc9\x9a\x1a\xda\x3e\x63\xe9\xa3\xa9\x6d\x0e\x68\x6d\x6d\xad\x6d\x38\x21\x9f\xa5\x37\xd0\xd8\x76\x8f\xb0\x05\x4c\xba\x45\x7b\x4b\x5a\x97\xbe\x73\x83\xbe\x57\x37\x68\x19\x0b\x01\xa2\x6f\x70\x27\x40\x30\x32\x6b\x1f\x8a\xdf\xf8\xa2\xf4\x74\xae\xbc\x6c\xba\x36\xd7\x7a\x27\xe7\xb9\x70\x66\xd6\x5f\x43\xd5\xd2\x7b\xb9\xd0\xb8\xc1\x09\xea\x1c\x98\x9d\x03\xb3\x73\x60\x7e\x5c\x0e\xcc\x6d\x16\x28\x48\x87\xd5\x27\x20\x1b\xa0\xf9\xc5\xf2\xc7\x84\x56\xac\x92\xde\x1c\x71\xfd\xc5\x3f\x0a\xa3\x8b\xd1\xf6\xa1\xbe\xc6\x68\xb2\x7a\xb2\x2e\xc8\x04\x46\x3c\x9e\x24\x2c\x8d\xc5\x89\x11\xcd\x88\x14\x96\x54\x4a\xa5\xb5\x20\xf9\x6b\x59\x9e\xf6\xc9\x89\xe8\x20\x8b\x3c\x1a\xa7\x39\xec\xdb\xb2\x47\xa6\xae\x58\x34\x84\xd8\xa5\x21\x21\xdf\xf3\x6c\x5e\xcb\x2a\xd0\xc8\x22\x26\x2a\xaa\x67\x4f\xb0\xe8\x88\x8a\x0c\x21\x32\x8b\xc1\x80\xa4\x2c\xa6\x89\x58\xa4\x84\xe7\x19\xa1\xa2\xbb\x2a\x41\x03\x16\x11\x52\x18\x64\x9e\x0f\xec\xe9\xee\x09\xf4\x41\xce\x97\x4e\xf8\x20\x9a\x61\xbe\x24\x4c\xca\x00\xd9\x5c\x96\xac\x4e\x89\x39\xb5\xd5\x4a\x22\x36\x83\xce\x49\xc6\xbb\x4d\xe2\x84\x4d\x83\x6b\xe6\xe3\xd5\xe1\xb7\x5f\xff\x7d\xcc\xb3\xdf\x7e\xfd\xf7\x90\xec\x87\x21\x6c\xd4\x6a\xdd\xe6\x7a\x65\xb4\x30\xc5\xe5\x54\x64\x08\xa2\x59\x90\x82\x95\x16\x43\xef\xe4\x40\x32\x8e\x75\x0e\xc9\x3e\x1c\x65\x4d\xf4\x22\x49\x5b\x58\x9a\x34\x52\xcb\x53\xe5\xb1\xc7\x21\x0b\x02\xc1\x60\xc4\x3f\xe4\x68\x30\xed\x97\x35\xab\x19\x52\x15\x68\x6f\xee\xa2\x68\x00\x5a\x2d\xba\x68\x8e\x6d\xee\xbc\x21\xe2\x72\xb3\xde\xb4\xba\xef\x4f\x5a\xa4\xa5\xb5\x96\xca\x56\x39\xd4\x82\xa8\x2b\x36\xd4\xda\xd2\x00\x0b\x2a\x6c\xcb\x96\x8b\x5b\x25\xd2\x93\x08\x4e\x98\x99\x76\x71\x4f\x62\x10\xdd\x66\xd8\x12\xc6\x69\x19\xd9\xf9\xd6\x71\xfd\x63\x38\xc1\x22\xc2\x63\x34\xb3\xcb\x80\x5c\x5b\x0a\x92\xf2\xa9\xa4\x6d\x97\x55\xb1\x6b\x71\x80\xa5\xc0\x1d\x20\xb9\x53\x25\x69\x98\x8a\x29\xef\xd2\x11\xc3\x19\xf7\x42\x2c\x21\x96\x2c\xf0\x03\x42\xb3\x97\x9a\x0d\xa2\x08\xa8\x57\x49\x4d\xec\xd0\x06\x35\x92\xa5\x05\x1e\x02\xcc\xa5\x38\xfe\x20\xe8\x17\x16\x72\x83\x36\xed\x95\x8a\x0d\x50\x50\x51\xdc\x8c\x50\x18\xf3\x95\x7f\x44\x4a\x17\xb8\x05\x64\xfc\x28\x84\x54\xf7\xd1\xc6\x68\x96\x27\xb9\xc6\x92\xa2\xbf\x64\xb2\xc2\xce\x16\x39\xec\x8b\x11\xf5\x23\x85\x4c\x6a\x27\xfa\x85\xdc\xef\x07\x9e\x54\x25\x67\x21\xad\xc9\x7c\x6a\x6b\x52\x24\x58\xc4\x61\x50\x66\xf3\x63\x44\x5f\x64\x61\xb0\x08\x64\xd0\x2c\xf6\x54\x1c\x6f\x82\x26\xed\x75\x16\x59\xc5\x4a\x9a\x04\x1a\x7d\xcb\x88\x17\x8a\x7b\xb4\x32\x94\x0e\x63\x9c\x65\xf8\x9f\x66\x90\x51\xfc\xc5\xcb\x4f\x4d\x02\xa8\x31\x76\x28\x75\xd6\x22\x40\x23\x83\x79\x7b\xe5\x3c\xa9\x18\x39\xcb\x59\xac\x54\x53\x9f\xcb\xf6\x3a\xad\xe3\xac\x8e\x02\x1d\x88\x40\xf6\x5f\x77\x21\x53\x80\xb9\x80\xb4\x8d\xe5\x6e\xb4\x9c\x09\x05\x19\x7b\xe9\xc6\x2c\xd9\xd7\xcb\xa7\x6a\x0e\x67\x59\x6a\xe7\x79\x42\x4e\x07\x50\xd9\xd4\x96\xc1\xb0\x7c\xd4\xe9\x06\x53\x58\x26\x7c\x32\xb3\xbc\x82\xab\x75\x2c\x9c\x2a\xcb\xab\xc0\x88\x40\x2e\xd7\x22\x8d\xec\x2c\x58\xb2\x48\xa2\x76\xb4\x47\xc6\xd8\x05\x44\xad\xdd\x9e\x26\xc4\x96\x4c\x04\xe5\x13\xf1\xec\x78\xbd\x39\xc1\x0f\x94\x6a\xaa\x26\x57\xa9\x11\x8b\x22\x1d\x27\x87\x98\xc7\xcf\x8e\x16\x63\x4b\xa6\xbd\xf2\xa9\x13\x03\xd3\xee\xb5\x53\x03\xca\xf4\x21\x07\x39\x0d\x84\x4c\xcd\x8b\x64\x8b\x2a\xc5\x5a\x4a\xe6\x74\xc9\x54\xfe\xbe\x60\x0a\xab\x2b\xee\xae\x16\x94\x80\x0a\x1b\x81\x04\x99\xd2\xdc\x61\x77\xc7\xb2\x76\x29\x2c\x49\x5e\x2d\x6e\x1e\x1d\x54\xe7\x78\x86\x65\x88\xaa\x70\x76\x30\x56\xb8\x3e\x1f\x0e\xc7\x56\xd0\x18\x7c\xfa\xcc\x6a\x7b\xba\x3d\x7c\x7a\x26\xdd\xab\x16\xee\xe3\xc4\xd0\x27\x01\x1f\x3e\x9b\xa4\xe1\x53\x4f\xdf\x05\xb9\xbe\xdc\x78\x5c\x7e\xd4\xb1\x2c\xfb\x09\x0a\x72\x65\x92\x53\xa6\x1d\x2e\xc8\x85\xc5\xdd\x21\xcd\x27\x59\xc8\x84\x18\x8c\x37\x29\xd9\x56\x7b\x9d\x85\x40\xd4\xba\x54\xfa\xcd\x99\x2d\x39\xa6\x85\x3c\xe7\x5b\xc5\x8e\xed\x3a\x56\xba\xe4\x06\xd6\xe7\x58\x99\xc3\x55\x58\x2a\x94\x5e\x68\xf7\x8b\x97\x1d\xcb\x90\x27\x19\xd6\x80\xd2\xa4\x9e\x06\x37\x65\x24\xa1\xd1\x8c\xa5\x3b\x4a\x1f\x07\x90\x5b\xad\x48\x4f\xf8\x04\xfa\xbd\x5c\x6e\x1d\x30\x9a\x20\x95\x53\x45\x01\xa9\xdc\x92\xcd\x74\xc8\x38\x53\x9c\x03\x14\x6e\xfa\x72\xb0\x4e\x0e\x80\x45\xd7\xe2\x60\x1d\x63\x2f\xd9\x5b\x8d\x83\x9d\x23\x0f\x3b\x97\x5c\xec\x1c\xf9\xd8\xb9\xe0\x64\xad\x32\x8f\xe3\x65\xf0\xf4\xe2\x65\xe9\x06\x17\xe0\xee\x7b\x6f\xab\x0a\xaf\x7c\x8c\xf7\x5e\xf2\x22\x65\x4c\xe9\xbe\x80\x95\xd1\x45\x1c\x32\x92\xae\xa2\x8c\x5e\x9b\xe0\x7e\xf4\xe7\xfc\xbc\xf5\xda\x2c\x65\x48\xdb\xb5\xb8\xbd\x6e\xa5\xf2\xaa\xa4\x02\x6d\xde\x86\x55\x76\x66\x68\x5b\xac\x9e\x0e\x22\x48\xff\x7c\x65\x0d\xe8\x38\x15\x90\x3c\xda\x69\xd2\x71\x57\x65\x21\xbf\x7a\xb9\x5d\xed\xb2\x46\x6c\xa4\xaa\xcc\x61\xa6\x4c\xb3\x1d\x74\x40\x3d\x17\xe8\x2f\xcf\xe6\x8c\x64\x57\x1c\xd6\x1a\x80\x54\xa8\x77\x32\x85\xf6\x24\x0b\x57\x25\x42\x5e\xc7\xdc\xbd\x8f\xd4\xe8\x95\x07\x4f\xa9\x57\x65\xda\xed\x15\x47\xc3\xc1\x7b\x4e\x96\xef\x3e\x13\xae\xe6\x3c\x94\x93\xb4\x07\x53\x74\x7e\x5e\x1e\xc8\x7f\x04\xee\xf2\xbb\x39\x4d\x5f\x2c\x56\x17\xe0\x5a\xf7\x12\xf8\x8e\x64\xf2\x5d\xdb\x59\x02\x3e\x2a\x45\x03\x26\xd2\x87\xfe\xa1\xe3\x43\xe9\xfa\xef\x8b\x76\x7b\xae\x37\xa8\xcf\xe7\x80\xa4\x05\x5c\x1a\x8d\x45\x13\x16\x92\xdf\x7e\xfd\x97\xea\x28\x68\x47\xe5\x80\x7a\x2f\x0b\x1c\xb0\x75\xbc\xcd\x21\x89\x3e\xd8\x30\x5f\xcb\xa7\x7d\xb4\xc5\x80\xda\x07\xd3\xad\x70\x38\x2b\x82\x31\x50\x94\x92\x9a\x82\x10\xd8\xaa\xc4\xa1\x04\x13\x73\x31\x8e\xee\xae\x47\x3c\x1a\x48\x2f\x15\x69\xe4\x22\x57\x73\x96\x30\xa9\x13\x99\xf2\x64\xc1\xea\x3a\x08\x59\x7b\x0f\x5d\x5c\x93\x30\x1a\x24\xc3\x2d\x5c\xe0\xab\xce\x74\x6b\xc8\x5d\x55\x7f\xba\xfb\x93\xbf\x6a\x2c\xb9\xbd\x4e\x83\x26\x93\x92\x98\xfb\x2a\xf0\x06\xed\x1a\x05\x7b\xee\xe1\xf9\x57\xf8\xfe\xb5\xae\xb6\xde\x9e\xe6\xba\x95\xdd\xfe\x34\xa3\x50\x6e\x4e\x6e\xb2\x09\xc9\xbb\xab\xb4\x29\x90\x0d\x64\xef\x45\x6d\xa2\x79\x5b\x5e\xcd\x79\xaa\x92\xf2\x17\x9a\x48\x48\xc2\xdd\x55\x47\x1f\xc1\x8e\xac\xe5\x1a\xdf\x53\x4a\x22\x7d\x25\x25\xd2\xdc\x5f\x9d\xb2\xd2\xd3\x9d\xe9\xca\x3d\xa9\xd4\xb8\x21\xd7\x2f\xf0\x2c\xc9\xa8\x13\xae\x85\x68\xd6\x85\xa6\xd1\xa0\xbc\x87\x48\x90\x49\xb6\x12\xbf\x77\x57\xba\x7f\x7c\xf8\xdc\x08\xff\x59\x7d\xd6\xd3\x66\xb5\xbb\xab\x76\x97\x99\x67\x99\x09\xc8\x1b\x9f\x6a\x9c\xce\xd9\xd9\xb8\x34\x22\x59\x2d\x6b\x62\x79\x88\xa2\xf6\xae\x17\x7e\x84\x37\x32\xaa\x2d\x58\x36\xe7\xfe\x1a\x67\xcf\x3b\xfc\xe0\x76\xcf\x1c\x1c\x32\x6c\x0e\x39\x6e\xcd\x7b\x43\xd4\x89\x28\xb8\xac\x13\x24\x48\x71\x25\xe6\x63\x2d\xaa\xb7\x2f\xd8\x70\x36\x24\x3f\x1e\x9d\x6d\x93\xf1\x87\xb3\x6d\xc2\x32\x6f\xf8\x92\xbc\xcb\xc3\x2c\x88\xbb\x34\x74\x92\x44\xb0\x6a\xdf\x9f\x3c\x17\x42\xc4\x0c\xa2\x40\x3e\x2f\x8d\x6b\x4c\xb3\xf9\x1a\xf3\xf8\x7c\x2c\xca\xdf\xc5\x34\x76\xcd\x60\xb7\x85\x41\x9f\x41\xe8\xe6\xb0\x98\x2a\x1c\xa6\x9a\x8b\xbe\x93\x41\x08\x1b\xce\xf6\xc8\x80\xb0\x6b\xea\x65\x7b\x64\x67\xca\x39\x19\x48\xbf\x85\x3d\xb2\x33\xa1\x09\x39\x7e\x7f\x76\xb4\x87\x3e\x11\x2c\xca\x92\x15\x59\x74\x1d\x2e\xef\x8f\xdf\xfe\x97\xe4\x63\x2b\xc2\x02\xb8\x3a\x50\xf2\x09\xda\xf8\x44\xc0\x5d\xe1\x13\x36\xf1\x49\x79\x2b\x9c\x75\x0d\x7d\x49\xc3\xc0\xa7\xc5\x15\x15\x9c\x69\x11\x10\x3a\x33\x21\x40\x97\x4f\x9f\xf5\x56\xf3\xf9\x3d\x3b\x1b\x0b\xea\x16\xac\x18\x96\x02\x10\x5d\x10\x59\x73\x60\xe8\x60\xb5\xa3\x0c\xdc\xb5\x26\x4c\x11\x41\xde\x7e\x85\xf8\xbd\xa7\x48\x7e\x9e\xbf\x7a\xf5\xda\x13\x15\xc3\x5f\x6c\x4f\x06\xe3\xf7\xba\xac\xe1\x32\x83\x5e\x41\x75\x82\x59\x24\xc5\xf4\x95\x55\x0f\xf0\xa7\x9b\xb5\x80\x75\x74\xb8\xaf\xaf\x11\xcf\x88\x04\xb8\x5d\x01\x48\x0e\xfd\x36\x2b\xed\x1b\x70\xd8\x83\x19\x75\x57\x15\x78\x8b\x9e\xe7\xe5\xe8\xe0\xdd\xb8\xaf\xdd\x12\x18\x91\xbd\xef\x3a\x87\xd2\x40\xbc\x45\x6f\x65\x00\x09\x42\x91\x43\x93\x52\x36\x93\x29\x18\x5a\x2e\x71\xe8\x30\x0a\x67\xd7\xa4\xa2\x5e\x9d\x56\xb5\xaa\x05\x18\x7c\x61\xeb\x11\xed\xb4\xdd\x23\xc1\x0a\x24\x0a\x2d\xdf\xb4\x18\x82\x7a\xad\x44\xaf\x3d\x70\xba\x7e\xc6\x83\x54\xc2\x23\x9d\x4a\x40\x14\x0f\x53\x22\x8c\xa6\x1a\x48\x78\xf7\xf1\x70\x26\x08\x8c\x4e\xa2\xe0\x33\x05\xe9\x26\x74\x5a\x49\x9d\x3b\x28\xd4\x33\xe6\xcd\xa3\xc0\x6b\x82\x7a\x54\x1f\xb8\xd0\xa3\xd2\x2a\x58\xc4\x3c\x45\x0f\x11\x40\x6d\x60\x49\xc4\xc2\xdf\x7e\xfd\x67\x4a\x82\x38\xc3\xe8\x85\x69\x90\xb0\x2b\x1a\x86\x1d\x9d\x45\x7e\x21\x15\x0a\x79\x8a\x06\x7f\x16\x4d\x39\x3a\xb0\x4a\xef\x91\xee\xcd\xd1\xa9\x7b\x86\x62\x37\x9f\x0e\x51\xcd\x90\x80\x0f\x04\xbb\x06\x85\x6b\x97\xea\x16\x67\x81\x4f\xc9\xb7\xe8\x76\x08\x23\x84\xba\x8e\xbc\x39\x27\x27\x78\x64\x4b\x4c\xf7\x38\x88\x66\x69\xbb\xee\xb6\xd7\x78\x7b\xb0\x83\xd8\xec\xff\x6d\x21\xc8\x68\xac\xfc\xc0\x6f\xec\xd0\x50\xb9\x98\xa1\x34\xae\x53\x79\xac\x34\xba\x56\x2a\xf4\xa0\x80\xc5\x93\xd7\x32\xb8\x77\xb2\xb4\xe6\x69\x56\x80\xc1\x80\x83\x72\xb2\x28\x41\xfe\x4d\x5e\xd5\xd5\xc1\xdd\x88\x6d\x34\xa3\x27\x2c\xe5\xfa\xc2\xd5\x94\x4f\xdf\x83\xa9\x9a\x98\xa1\xec\x8f\xf4\x40\x47\x6d\xf3\x25\x5b\xc9\xa5\x1d\xd3\x40\x82\xd1\xb4\x37\x2f\x2e\xb5\x84\x5d\x67\x09\xad\xd0\x94\x4e\x78\x9e\xf5\x38\x4a\x6e\xeb\xde\x18\xf1\x4c\xec\xbe\x7e\x2b\xe3\x18\x0b\x77\x58\xa2\xa1\x48\xbb\x47\x88\x3b\x32\xdc\x91\xf1\xd8\x8f\x8c\x88\x67\x4a\xb4\xb2\x92\xa5\xdd\x5e\xdc\xd3\x52\xdc\xcf\x46\xdc\x70\x65\x52\x62\x5f\x87\x37\x93\x2c\x66\x27\x58\xc7\x4e\xee\x61\x94\xde\xcc\x1c\x1d\x7f\xae\xc4\x3d\xdf\xd2\x69\x7b\x8b\xa7\x7f\x43\x2d\x0b\x91\x00\xba\x2c\xa0\x68\x32\x84\x55\x1f\x24\x6d\xae\x39\xd2\xaf\x4c\xce\xf3\x11\xf8\xbf\x9f\x40\xf0\x86\x0a\x45\x40\xdf\x99\x17\x13\xe6\xd1\x3c\x95\xde\x1c\x1d\x8e\xc1\x45\x17\x3d\x96\x40\x1d\x85\x47\xc8\x4b\x34\x27\xbe\x93\x31\x09\x15\xff\x96\xae\x43\x16\x1d\x5f\xf6\x74\xdf\x8d\x6d\xdd\x73\x03\xff\x01\xb7\x95\xca\xbf\x96\x6f\xca\x7f\x9f\x1e\x9c\xe1\x5b\x7b\x33\xb2\xc6\xb7\x41\xc6\x94\x7b\x08\x8d\xd4\x02\x51\x26\x05\x70\x92\x21\xbb\x83\xaf\xbe\xf9\xa6\xc5\xc6\x76\x77\xcb\x1e\xcd\x88\xfd\xce\xe3\x53\x74\x44\xea\x17\x2a\xd1\x92\x40\x4f\xb5\xea\xa2\x24\x5c\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\x98\x47\xec\xa2\x24\x5c\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\xb8\x28\x09\x17\x25\x61\x1b\x89\xe3\x65\x2e\x4a\xc2\x45\x49\xb8\x28\x09\x17\x25\xe1\xa2\x24\x5c\x94\x84\x8b\x92\x68\x3e\x2e\x4a\xc2\x45\x49\x14\x8f\x8b\x92\x70\x51\x12\x77\x1f\x25\xd1\x02\x74\x2b\xee\x18\x88\x77\x66\x7a\xd7\x27\x0d\x9f\x71\x95\x4b\x74\xbc\x0d\x60\x0e\xe5\x97\x0e\xe7\xd0\xe1\x1c\x3a\x9c\x43\x87\x73\x68\x67\x8d\x0e\xe7\xd0\x59\xf0\x9d\x05\xdf\x59\xf0\x9d\x05\xdf\x59\xf0\x9d\x05\xbf\x7c\x9c\x05\x5f\x7b\x9c\x05\xdf\x59\xf0\xe5\xe3\x2c\xf8\xce\x82\xef\x2c\xf8\xce\x82\xef\x78\x99\xb3\xe0\x3b\x0b\xbe\xb3\xe0\x3b\x0b\x7e\xf3\x71\x16\xfc\xfa\xe3\x2c\xf8\xce\x82\x5f\x7f\x9c\x05\xdf\x59\xf0\x8b\xc7\x59\xf0\x9d\x05\xdf\xe1\x1c\x3a\x9c\x43\x87\x73\xe8\x70\x0e\x1d\xce\xa1\xc3\x39\xec\xd3\x82\xc3\x39\x74\x38\x87\x0e\xe7\xd0\x81\x56\x39\xd0\x2a\x87\x73\xe8\x70\x0e\x1d\xce\x61\x5b\xff\x1d\xce\xa1\x3b\x32\xdc\x91\xe1\x70\x0e\x1d\xce\x61\xed\x71\x38\x87\x0e\xe7\xb0\xf6\x38\x9c\x43\xfb\x25\xd2\xe1\x1c\xba\x28\x09\x17\x25\xe1\xa2\x24\x5c\x94\x84\x8b\x92\x68\x19\xb1\x8b\x92\x70\x51\x12\x2e\x4a\xc2\x45\x49\xb8\x28\x09\x17\x25\xe1\xa2\x24\x5c\x94\x84\x6d\x24\x8e\x97\xb9\x28\x09\x17\x25\xe1\xa2\x24\x5c\x94\x84\x8b\x92\x70\x51\x12\x2e\x4a\xa2\xf9\xb8\x28\x09\x17\x25\x51\x3c\x2e\x4a\xc2\x45\x49\x3c\x45\x9c\x43\x00\x2f\xec\x42\x39\x7c\x2f\x0a\xb5\xac\xe1\xd2\x3b\x3a\x53\x78\x88\x16\xc1\x17\x7d\x41\x10\x61\x0e\x44\x7c\x51\x29\xe8\xc4\xfd\x21\x4a\xfd\x85\xce\x62\x1e\xcc\x84\x08\x75\xbe\x05\xf5\x9d\x6f\xc1\x64\xcb\xb2\xa6\xaa\xe9\x54\x1c\xff\x19\xb0\x17\xa8\x20\xe4\x57\x2c\xc1\xde\xa0\x77\x8d\xd6\xb9\x94\xf0\x45\x90\x65\xcc\xdf\x16\xb7\x57\x74\xcd\x36\x55\xea\xf1\x28\x0d\x10\xde\x11\x6f\xa7\xe7\x5b\x41\x34\x0d\xa2\x20\x63\xe7\x5b\x64\x40\xc0\xa3\x43\x1b\x8e\xba\x0e\xc8\x7e\x92\x90\xa6\xd9\x90\x14\x23\x33\x92\x44\xf4\x35\xf0\x59\x94\x05\x1e\xfd\xff\xd8\xfb\xd7\xe5\xc8\x6d\x6b\x61\x18\xfe\xff\x5d\x05\xa2\xd9\x55\x33\xb3\x3f\x75\x6b\xc6\x87\x89\x23\x57\xea\x2d\x59\xd2\xd8\x5d\xd1\x48\xfd\x48\x3d\x76\x52\x91\xb7\x06\x4d\xa2\xbb\xf1\x88\x0d\x30\x04\xd9\x52\xc7\xf1\x5b\xbe\x8c\xbd\xab\x92\x9b\xf3\x95\xbc\x85\xb5\x00\x12\x24\xc1\x43\x6b\x24\x27\xce\x26\x7f\xd8\xa3\x26\x88\xc3\x02\xb0\xce\x87\xc8\x4c\xb0\xda\x0f\x17\x84\x46\xf1\x8a\x8a\x6c\xcd\x12\xa7\x1d\x64\x56\xf4\xf5\x6a\x4c\x68\x46\x90\x42\xb3\xa5\x57\x09\x88\x67\x43\x64\xeb\x79\x5d\xc6\x6d\x41\x7a\x15\xa1\x70\xe6\x0a\x18\x78\x50\x1c\x31\x23\x53\x86\x63\xe2\xc1\x2d\xfe\x47\x66\xde\xf3\xaf\xa7\x5c\x61\x18\x1d\xe0\x1a\x3f\x62\x07\x2c\xa9\x34\xfa\x8d\x16\xb6\xb7\x98\x87\x22\x0b\x19\x45\xf2\x0e\x5c\x02\x8d\xec\x93\x4b\x03\x88\x96\x7e\x8f\xac\x31\xde\xf6\x9b\x88\xa7\x2c\xa1\x91\xfe\xc5\xd7\xf3\xf5\x35\x19\xa1\x1f\xbd\x3e\x28\xeb\x98\x26\x5c\x49\xb1\x4f\x20\x90\xc6\xf2\xb4\xb6\xcb\x85\x94\x64\x4e\x13\xe0\xb3\xf3\xe1\x7e\xb3\xe3\x70\xc5\x78\x9a\x23\x67\x7f\xc9\x68\xf4\x25\x3a\x7e\x59\x3c\xcb\x17\x06\xc1\x72\x05\x6d\xac\xce\x28\x1f\xd2\x7f\x2f\x7f\x80\x79\xd0\xc2\x59\x61\x5e\xfc\x33\xc0\x7f\x8e\xc7\x63\xf2\xa3\x33\x83\x34\xc9\x98\xf5\xe0\xce\x1d\xa0\x70\x8c\x3f\x12\xbf\xcb\xa5\x51\x96\x75\x0c\x55\xcc\x55\x2f\x80\x8b\x1e\x93\xf3\x0d\xb6\xe3\x7c\x61\xb0\xb6\x09\xfa\xb7\xc4\x99\xb3\x96\xa7\xa0\xbf\x1b\xcd\xdd\xbc\x2c\x86\x9e\xe5\x23\xd3\xb4\xd8\x1d\x67\x67\x7e\x03\x87\xd4\x8b\xf3\x4d\x17\xb9\x60\x2d\x17\xd0\x16\x24\x2b\xf8\x7f\xf6\xea\xd5\x27\x6f\xf0\xbf\xf8\x26\xff\xe6\x6a\x25\x93\x74\x14\xf0\x24\xc8\x78\x0a\x74\xd3\x7c\xe4\x1b\xe8\x6f\x7f\x6b\xfd\x1a\x34\x70\xe9\x0b\x6c\xf3\x32\x6f\x14\xd3\x84\x09\xcc\xb5\xba\x4c\x64\x16\x6b\x66\xe1\xfa\x3a\xa5\x51\xf4\xc2\xab\x49\x35\xc9\x3f\xd1\x36\x9e\xe3\x0b\xdb\x9b\x3d\xc3\x34\x8a\x1c\x01\x09\x2e\xe8\x19\x9e\x07\xe4\x00\xfc\xc4\x9d\xea\xab\x8d\x78\xc6\xba\x0f\xb9\x28\x53\xed\x93\xd1\x3e\xb9\x01\x38\x1c\x8c\xc9\x15\x5c\x39\x62\xae\x5c\x63\xa7\x6b\x99\x30\x12\x6b\xde\x48\x29\xbe\x61\x64\x8e\xae\xaf\x5b\x2b\x98\x1b\x95\x09\x61\x2a\xa0\x31\x23\xc1\x8a\x26\x34\x48\x59\x62\xa6\x7d\x8a\xfe\x83\xde\xcb\xf0\x02\x10\xff\x9a\x86\x6c\x94\xc5\x78\x2c\xd4\xcb\x1c\x1d\x41\xc4\x85\x41\x1d\x77\x6c\xae\x99\x2f\x66\x90\x87\xbb\xe3\x21\x8b\x23\xb9\x5d\x33\xe1\x45\xa7\xe6\xfb\x38\x91\xa1\x3d\xa4\xd0\xaf\xbe\x53\x80\x93\x12\x29\xb4\x80\xee\x1c\x75\x2d\xd3\xe2\x0f\x3f\xea\xe6\x45\xff\xe4\x37\xbf\x6f\xba\x01\x21\xdb\xd8\xee\x7f\x43\x2a\xb7\xc0\x87\xca\xda\x38\xaa\xb2\x28\xdb\x62\x68\x69\x91\x63\xdb\xb9\xee\x05\x3a\x55\x15\x64\xc1\xb7\x2c\x4b\xb1\xf0\x8c\x1a\x76\x18\xd3\x18\x4b\x61\x27\x69\x39\x5d\x9f\xc1\xa4\x6d\x8d\xa0\x2e\xeb\x41\x53\x41\xab\xc6\x45\xc8\x03\xe0\xcb\xef\x56\x10\xc5\x87\xd4\xcb\x90\x44\xc7\x9f\xc0\xe4\x39\xf6\xe2\x29\x7d\xef\xa4\x49\x74\xbc\x6f\xfe\xd2\x3c\xf5\x98\xa0\xf7\x0e\x50\x93\xfb\x58\x33\x29\x69\xb4\x75\x58\xea\x17\x90\xa4\xd9\xeb\x96\xe5\xe0\x51\x41\x82\x84\x19\xb7\x61\x65\x6e\xb7\x4c\x88\xe0\xd1\xcb\x7d\xeb\xf8\x1b\xb2\x05\xcd\xa2\x54\x11\x5c\x96\x06\x5d\x12\x36\xb0\xd4\xa9\x24\x77\x1a\x57\x4e\x4c\x2a\x6d\x3d\x89\x53\xf3\x4f\x7d\x1f\x0d\xe6\xcc\x73\x15\x83\xa7\x0a\xaa\x23\xcd\x30\xbe\x5e\xb9\xc2\xdb\x35\x22\x7f\x36\x7c\x91\x9e\x8a\x1d\xe3\xfb\x7d\x43\x1c\x34\x97\x09\x2a\x2f\x3b\x24\xe6\x93\x7e\xc1\x45\x10\x65\x8d\x33\x5e\x31\x12\x50\xcd\x79\x42\x07\x45\x37\x04\xc9\xb3\x90\xf9\x62\xa0\xbb\x97\x9e\x99\x9c\x36\xe6\xa9\xae\xce\xad\x34\x31\x8d\x92\xaa\xdd\x37\xaf\xd3\x7b\x3c\xaa\x73\xa8\x0d\x08\xf2\x97\x67\x37\x30\xc7\xb9\x1f\x2f\x08\x3c\x5a\x65\x5e\x3f\x61\x54\xdf\xa3\xe0\x96\xd0\x25\xe5\x62\xdf\x9c\x06\x54\xda\x45\x77\x74\xab\x8c\x6b\xa6\xf7\x14\x5b\x3b\x1b\x1a\xd8\xf6\x89\x60\x1b\x96\x94\xce\x9b\x57\x9d\xd6\x33\x0d\x7a\x01\x05\xc2\x80\x68\xe4\xaa\xe8\x58\x2a\xc5\xe7\x91\x1d\xb8\xf0\x20\xd0\x1f\x5c\xc5\x2c\xf0\xcb\x7b\xb8\xb6\x66\x9f\x8a\x76\xc9\xb2\x51\x68\xf3\xcb\x7a\xf5\x5f\x81\x66\x84\xae\xa5\x48\xa5\x32\xa1\x4b\x66\x7f\x52\x29\x4d\x33\x04\x0c\x2a\x4c\x59\x78\xee\xa8\xb2\x6e\xb9\x08\x35\x1e\xb2\x20\x8d\xa3\x2c\xa1\x51\xf1\x4b\x20\x05\xda\x2e\xd4\x21\xf9\xf3\xf7\xfa\x17\xdd\x3f\x0b\x4d\xe0\x91\xf9\x75\x34\x1a\x99\xff\xd0\x98\xdb\x10\x26\x42\x63\xce\xee\x53\x26\xa0\xe1\xf8\xf6\x0b\x35\xe6\xf2\x60\xf3\xfa\x5a\xe0\xa0\xc7\x99\x4a\xe5\xfa\x92\xa1\x2e\xf6\x84\x81\xc4\x05\xa8\xba\x14\x28\x54\x8f\xbd\xc9\x55\xac\xc9\x68\xc9\xc4\xf8\x36\x9b\xb3\x79\xc6\x23\x2d\x02\xea\x01\xec\xf0\x2f\x42\xb6\x61\x11\xb0\x28\x16\x73\xcd\xf8\x9a\xa9\x94\xae\x63\x2d\x0c\x45\xe0\x6d\xae\x09\xd8\x21\x11\xe8\x0e\xa6\x58\xaa\xc6\x41\x12\x8e\xe3\x44\x6a\x18\x07\x80\xd6\xc6\x32\x59\x5e\x0b\x8d\x2f\x61\x02\xc0\x04\x1d\x92\x86\x66\x65\x4d\x21\xae\xb4\xea\xb3\x16\x71\x95\xfe\xa1\xf2\xe6\x8c\xab\xb4\xbc\x05\xce\x9c\xcc\xce\x72\xb1\xcc\x22\x9a\xb8\xaf\x60\x47\x02\xa9\x8f\x45\xee\x9d\x06\xb2\xe2\xc6\x6e\x90\xfe\x63\x64\x96\xa9\x81\x0f\x3d\x05\x2b\xb6\x2e\xe2\xb0\x64\xcc\xc4\xd1\x74\xf2\xed\xa7\x57\xe5\xdf\xeb\x4e\x61\x66\xb2\xd6\xbd\xa1\x18\x72\xc4\xfe\x92\xf1\x0d\x8d\x34\xca\x36\x37\xa7\xea\xaf\xe7\x5c\x8f\x06\xad\xab\x73\x78\xca\xb7\xa1\x1c\xb0\xad\xa7\x6a\x2c\x67\xe8\x4c\x8a\x93\x31\x2b\x66\xa1\x59\x1e\xce\x03\xf0\x91\x21\x26\xd4\xa7\x59\x91\x0b\xe0\x1f\xe0\x4e\x8d\x81\xc9\x60\x89\xb2\x62\x68\x20\xc5\x86\x25\x29\x49\x58\x20\x97\x82\xff\x35\xef\x5c\x59\x5b\x1e\xd4\x51\xa8\x91\x22\x2e\x52\x96\x68\x76\x04\x90\xc9\x3e\xa0\xd3\x35\xdd\x92\x84\xe9\x61\x48\x26\x9c\x0e\xad\x27\xc1\x3b\xcd\x86\x72\xb1\x90\x87\x90\x46\x43\x1d\x1e\x1c\x2c\x79\x6a\xef\x4d\x20\xd7\xeb\x4c\xf0\x74\x7b\x00\xc7\x9f\xcf\xb3\x54\x26\xea\x00\xce\xf8\x81\xe2\xcb\x11\x4d\x82\x15\x4f\x59\x90\x66\x09\x3b\xa0\x31\x1f\xc1\xdc\x05\x5c\x9c\xf1\x3a\x7c\x96\x98\x8b\xa6\x9e\xfb\x30\x4d\x1d\x41\xc1\xd1\x6d\xdb\x06\x7d\x82\x4d\xf4\x19\xf2\xd9\xc8\x28\xe4\xd0\xb6\x66\xd4\xcb\xd3\xab\x19\xb1\xa3\x7b\x23\xf5\x10\xf8\xc5\x97\xaa\xd8\x07\x0d\x34\x2e\x16\x96\x23\x02\x55\xa6\xab\x40\x40\xa2\x1c\x71\x0f\x73\xac\xb2\xf9\x9a\xa7\xca\xc9\xbf\x20\xc7\xe4\x18\xd0\x89\xa6\x3f\x59\x1c\xd2\x94\x85\x63\x32\x11\xe4\x98\xae\x59\x74\x4c\x15\x7b\xf2\x5d\x00\xb6\x70\xa4\x61\xdb\x77\x1f\x1a\xa2\x26\x9b\x94\x81\x39\x9a\x6a\xd8\xb6\xe2\x3e\x6a\x9a\x56\x76\xda\xb7\x31\x1e\x45\x5c\x25\xad\xe1\xae\xe2\xb1\x5b\x5a\x21\x7b\x2d\x16\x95\x06\x1f\xd4\x5a\xb1\x15\xeb\x26\x33\x99\xe6\x98\x0e\xe5\xea\x39\x8b\xa4\x3e\x55\xd2\x68\x77\x98\xcf\xa0\xd0\xcc\x09\xfc\x2f\xa3\xc5\xcf\x4c\x64\xc6\x21\x41\x02\x75\x90\xb2\x75\x0c\xf8\xea\x00\x7f\x00\xcf\x93\xc2\x62\x99\xa8\x51\x32\xa7\xc1\x78\x4b\xd7\xd1\xb5\xf8\xe1\x07\xbe\x20\xec\x2f\x64\x7c\xf9\xd5\xd1\xf1\xb1\x14\x0b\xbe\x24\xd7\x7b\xba\xc1\xf5\xde\x8f\x3f\xea\xde\x27\xc0\x2c\x33\x42\x49\x10\x65\x2a\x65\x49\x22\x23\x96\x17\xff\xa8\xf6\x0d\xda\x33\x29\x98\x48\xf7\xf5\xc7\x50\x3e\x04\x30\x48\x6a\x51\x69\xc3\xa4\xac\x24\x56\x98\xf3\x0c\xff\x80\x83\x5e\xca\x88\x95\xf9\x0e\x58\x04\xcd\xd2\x95\x4c\xf8\x5f\xd1\x8d\xc1\x61\x3e\x4a\xf7\x09\xc9\x62\xc3\xc0\xd7\x02\x58\x5f\x68\xf8\x8c\x9c\xcb\x10\xf5\x12\xe4\xce\x78\x2b\xa4\x92\xac\xa5\xe0\xe0\x95\x27\x13\x12\xb2\x88\xe1\x3d\x47\x92\x4b\x63\xfe\xb5\x66\x15\xf4\xbe\xe8\x2d\xfc\x1e\x77\x35\xc7\xc3\xf9\x11\x1d\x11\xa1\xfb\xc6\x3f\x37\x2c\x99\xbb\xaf\xee\x5c\xf7\xaa\x11\x5c\x8d\xe2\xaf\x25\xde\xca\x67\x64\x6a\x13\xf3\xfc\x25\x63\x09\x37\x0a\x92\x3c\x67\x0a\xbb\xe7\x2a\x65\xc2\x5c\xd5\x9d\x66\x16\xcb\xb0\x61\x62\xf9\xd8\x93\xe9\xd1\xbb\xe2\x5b\x13\x86\x21\x78\x0c\x25\x86\x42\x2d\x2c\x09\x5c\xa0\x09\xff\x88\x58\x6a\x2c\x32\xd5\x99\xf8\x59\xaa\xb6\xe9\xf1\x38\x96\x32\x6a\x98\xa1\x85\xd5\xc7\x0f\x33\x8f\x64\x70\x4b\x17\xc8\xa1\x16\x9a\x1e\x3d\x3e\x5d\xc3\xcb\xca\x6f\x2b\x2a\xc2\xa8\x69\x4b\x97\x2c\x6d\xda\x50\x60\x54\x59\xf1\x37\x12\xa9\xe2\x6f\x84\x1e\xc2\xbd\x76\x4f\xd6\x54\xd0\x25\x53\x64\x25\x55\xea\xf8\x1e\x3c\x0a\x04\x4a\x7d\x3e\xe9\xb2\xce\x19\x0b\x41\x75\xa0\x65\xcf\x54\x9a\xb6\x16\xc5\x38\x41\xea\x8f\xb5\x34\x4f\xcf\x3d\x16\xd8\xbc\xa4\x67\xe4\x0f\xd9\x9c\x1d\x17\x1b\x83\xc8\x33\x4b\x72\xe5\x09\xea\x0f\x78\xaa\x7b\x54\x44\xf3\x28\x01\x34\x79\x9c\xf5\xe8\x73\xe1\x1c\x8b\xc0\x1d\xdd\xbb\xb2\x67\x28\xb1\xeb\x79\xc8\x3b\xe1\xcc\xa5\xb6\xec\x67\x66\xd9\x84\x5a\x1d\x0c\xe1\x0b\x22\xa4\x60\x88\x63\x54\x13\x7c\x9e\xd9\x6d\x44\x12\xd8\x74\x12\x9e\x21\xba\x03\xa4\x15\xac\x4a\x1e\xb0\x39\x26\x04\xd2\x56\xa3\x00\x5f\x71\x81\x6a\x9b\x27\x22\x04\x32\x62\x97\x0c\xbd\x49\xed\xfe\xb4\xf4\xaf\x9b\x79\x88\x54\xe7\x30\x2a\x03\x76\x42\x6f\xcd\xc8\x74\x50\xd6\x7a\xf6\xe8\xc3\x89\xe3\x3b\x44\x1c\xa1\xb6\x2a\x65\xeb\x32\x67\x70\x49\x45\xb0\x62\xc9\xc8\xb2\x7c\x87\xe4\x18\xe0\xed\x12\x62\x8d\xb4\xdd\x05\xa0\x43\x87\xa6\x2c\xa8\xed\x83\xea\x6b\x34\xb8\xbd\xa3\x49\x88\xe4\x9d\xa6\x7c\xce\x23\x9e\x6e\xfb\x30\x1f\xba\x7b\x97\xe1\xe8\x62\x28\xdc\x59\x9d\x50\xb6\x96\xe2\x8a\x75\xf1\x12\xd0\xf8\x17\xe2\x1f\xca\xec\x82\xe6\x63\x8f\xcf\x27\x9a\x89\x5b\x72\x41\x04\x60\xb5\x54\xea\xdb\x04\x44\x75\x1f\x69\x22\x8a\x86\x6e\xac\xd7\xc3\x29\x74\x85\x93\xb0\x62\x3f\x76\xdc\x8a\xd2\x76\x1a\xb0\xe6\xda\x38\xb2\x10\x6e\xc0\x2e\xef\x8d\x9e\x3d\xe4\x2a\x90\x1b\x96\xe4\xaa\xf5\xc9\x14\xcd\x4a\x34\xd4\x42\x36\x57\x6c\xed\x7a\x90\xb6\xf2\x3e\x9e\x5e\x67\xdb\x78\x45\xd5\xd8\xcf\x1d\x91\xe3\xc9\xc9\x25\xa1\x59\x2a\x47\x21\xd3\xf2\x19\xd8\xd9\x04\x5c\x10\x1a\xae\xcd\xfe\x14\x54\x07\x91\x20\x59\xd3\xf8\x01\x5b\x82\x1f\xeb\x6f\x1f\x0f\xea\xb0\xb1\x07\x2e\xfa\xac\x82\x59\x13\x4e\x53\x7c\x2f\x88\x18\x05\x91\x5c\x33\xad\x46\x82\x7b\x2f\xe8\x86\xf2\x88\xce\xf5\x95\x8a\xe8\xd2\x01\x54\xec\xc2\xf9\x99\x55\xe6\x83\x70\xa1\x30\x96\x20\x28\x93\x30\x27\x53\x0c\x47\xe6\xce\x55\xd3\x8d\xfd\x54\xf1\xbb\x2a\x6a\xd7\x70\xfe\x43\xee\xfb\x5e\x8a\x2f\xe5\x0d\x37\xc1\x88\x83\x5c\x2c\x2d\xa6\x6d\x85\x19\xb6\x8e\x4b\x8e\x19\x3d\x19\x6c\x73\xc0\xe6\x5b\x0b\x0e\x3d\x71\xab\xe3\x2e\xd6\xff\xd1\xf7\xb5\x72\x41\x9d\xdb\x64\x0d\x4f\xed\xcc\x6d\x65\x11\x35\xc4\x13\x5b\x77\x5f\x19\xda\xe3\xf3\xb0\x39\xb7\x9c\x3d\xe7\x04\xe5\xa7\xc7\x48\x46\x8a\x6c\x68\xc2\x65\xa6\xc8\xf1\xe5\x09\xde\x76\x3c\x4b\x8f\xc4\xbc\x61\x10\xf2\x82\x45\xfc\x1e\xfb\x75\xe0\xe8\xfc\x5a\x66\x7f\x80\xa5\x5f\xc6\x31\x33\x04\xd3\xed\x6a\xbe\x8c\x6b\x1d\xe5\xbf\xd5\xbb\x29\x09\x20\x4d\x12\x01\xf6\xec\x3d\x8d\xb5\xd7\x8a\xb9\x88\xb5\xf1\x1b\x6f\xeb\x46\x4e\xb6\x81\x83\x6f\x14\x6d\x76\x60\xed\xef\xea\x3b\x9f\xa9\x34\xe7\x13\x45\x98\x73\x7e\x1a\x8f\xc0\x21\x90\x42\xb3\x81\x49\x9a\xc5\x4f\x21\x05\x76\xee\x7c\x6f\x7e\xbf\x8d\xc5\xdf\x09\x47\x1a\x3f\x2d\x8d\x27\x1f\x55\x37\xd0\x6f\x5b\x66\x60\x4e\xb3\xfe\x0d\x52\xa0\x1c\x0e\xbe\xa5\xd6\x15\x11\xee\x65\x16\x2f\x13\x1a\x9a\xd0\x86\xcd\x27\xe3\x37\xc8\x9b\x04\x58\x07\xf8\x19\x99\x33\x92\xb0\xb5\xdc\xb0\xd0\xb8\xe1\xd9\x0f\x64\xa2\x57\xb8\x48\x98\x5a\x11\x2e\x54\x4a\xa3\xe8\x51\x05\xb4\x96\xeb\x57\xbe\xc5\x7d\x37\xd0\xf0\xc0\x6f\x23\x2a\x04\x8b\xca\x8c\xe0\x33\x32\xcd\xc0\x7b\x1f\xc0\xe0\xa8\x80\x57\xd9\x7c\x1c\xc8\xf5\x41\x20\x13\x26\xd5\xc1\x02\x3f\x3e\x98\x47\x72\x7e\xb0\xa6\xba\x83\x83\x13\x19\x64\x6b\x6b\x67\x38\x00\xde\xdb\x34\x33\x7c\xae\x66\x73\x1f\x9b\xf9\x34\x23\xb8\xdc\xe7\xe3\x6a\x78\x1e\xeb\xb4\x36\x1c\xd0\x47\xe5\x82\x72\x4a\x64\xb6\x58\x8b\x85\x18\xdc\x51\xdf\xeb\x42\x54\x10\x34\xaa\xc8\x59\x3e\x21\xe1\xb1\x44\x4c\x41\xa3\x51\xb1\x69\x8f\x2a\x58\xe6\xdd\xee\x24\x48\x0a\x1a\x75\x8a\x8d\x1d\x12\xa3\x0b\x56\xb8\x38\xae\xfc\xd5\x25\x31\xa2\xc0\xd8\x1f\xaa\xcd\x3b\xd3\x08\xef\x5c\x42\x7b\x02\x39\xfe\x71\xa1\xfd\xc3\x0f\x4c\x84\x3f\xfe\xd8\x5b\x85\x0f\x44\xc5\x0a\xd0\x10\x8c\xbc\xa6\x82\x2f\x98\x4a\x2d\x2e\x56\xce\x29\x37\xe6\x1e\x96\xec\x13\xaa\xc8\x1d\x8b\xe0\x33\x13\x00\x55\x70\x8d\xca\x94\x04\x07\x1e\xc3\xca\x42\x52\xe8\xb6\x8c\x42\x2a\x69\x0d\x0c\x68\xa4\x5b\xb0\x04\x65\x00\x28\x5b\xee\x70\xf4\x86\xd2\xe6\x97\x29\x97\xda\xab\x7e\x02\xb1\x6a\xbd\x2e\x6d\xf0\x22\xc6\xab\xce\xda\x50\xbe\x50\x23\x1a\xc7\xf9\x87\xb9\x39\xac\xe2\xe6\x0c\x6e\x88\x67\xee\x97\xf5\x6f\x89\x21\x18\x57\x69\x42\x53\xb6\xdc\x1e\x1a\xa3\xc8\xf8\x7d\xe9\x67\xbd\x59\x3f\xfc\x40\x52\xf9\x27\xba\x8e\xaa\x2f\xc9\xdf\x08\x17\x21\x13\x29\xf9\x0c\xdb\xb1\x48\x31\xfd\x2f\x92\x9b\x90\x2e\x65\x14\x71\xb1\x7c\xef\x68\xc2\x12\xf7\xa7\x7c\x7e\x6b\x7a\xef\x08\x71\x87\xe4\xb5\x73\x5a\x08\xb1\x27\xc3\x2e\xb0\x6a\x36\x8c\xca\x8b\xf5\x2d\xb7\x62\x3d\xd4\x7b\xea\x71\xce\x2b\xc2\x95\xf5\x85\x94\xea\x90\x44\x5c\x64\xf7\xb6\x81\xe6\x33\x8d\x28\x67\xed\x5e\x08\xb5\x73\xa7\x3b\x0b\x81\x86\x41\x7e\xf8\xc1\x24\x40\xfb\x8f\xdb\x7d\xf2\x1f\x1b\x72\xf8\xfb\xf2\xe7\xa4\xf8\x1e\x1a\xff\xc7\x2d\xf9\xf1\xc7\x43\x72\xbd\xa7\xff\xbd\xd1\x6f\xf7\x9c\xae\x98\x08\x89\x01\xbe\x05\x16\x40\x5f\x46\x2c\xa9\x25\x75\x7d\x46\xde\xd1\x5b\x46\x54\x96\xd8\x3b\x03\x4a\x5a\x15\xac\x58\x98\x45\xe8\x1a\x08\xe9\x79\x34\x25\x72\xac\x8f\x23\x13\xae\x78\x48\xce\xe5\x95\x69\x5c\xbc\x05\x1f\x8b\x84\xea\x35\x92\xd3\x92\xa6\x14\x47\x4c\x6e\x8d\x0f\x52\x88\x71\x38\x41\xc2\x31\x52\x80\x86\xe1\xc8\xd8\x62\x13\x66\x26\xa1\xa5\x5f\x77\xe0\x5b\xb6\x3d\x24\xc7\xe6\x8b\xa3\x30\x94\x42\x5d\x54\x32\x46\x35\x8f\xee\xce\xfb\xf4\x9e\x05\x59\xda\x6b\xda\x5d\xd6\x41\x6c\x55\x76\xf4\x3c\x2f\xdf\x68\xec\xa6\xb4\x25\xcf\xc8\x3b\x2e\xf8\x9a\xff\x95\x91\x50\xde\x89\x94\xaf\x19\x09\x33\xd0\x64\x50\x7b\x29\x5c\xb6\xd3\x9a\xdc\xbe\x24\x29\x8b\x22\x17\xf5\xa4\x92\x84\x92\x50\x72\xbd\x07\x29\x48\x8b\x01\xec\x27\xd7\x7b\x85\x81\xbf\x7c\xa2\x43\x19\xa8\x83\x40\x8a\x80\xc5\xa9\x3a\xb0\x19\x9c\xd4\x01\x08\xc1\xb1\x0c\x0f\x9e\xd9\x38\x2a\x2e\xc5\x48\x2e\x46\xfa\x45\xbe\x21\xce\xbb\xaf\x13\x1a\xb0\x29\x4b\xb8\x0c\xaf\x58\x20\x45\xa8\x0e\xc9\xab\x62\x26\x86\xa0\x16\x99\x15\x51\x2d\x62\x1b\xc4\x09\x97\x09\x4f\xb7\xc7\x11\x55\x0a\x41\xf7\xc3\x0f\x64\x7c\x4c\x21\xbb\x70\xe5\x1d\xf9\x5b\xae\x90\xbf\xde\x43\xd4\x88\xfa\x55\x7b\x90\xae\xf7\x9c\x3b\xa3\x65\xbd\x63\x4b\x09\xca\x87\x1f\x28\x48\x4e\x25\xca\x24\x44\xd3\x87\x39\x17\x34\x29\x05\xb9\xa0\xfa\x55\xbf\xab\xd0\x8b\x05\x8f\xc0\x6d\x14\x28\x46\x2e\xfb\xd8\x53\x87\xe8\xdd\xf4\x3f\x0a\x04\x77\x4f\x1d\x5f\x83\xd5\xfc\x87\x1f\xc6\xc7\xe7\x93\x89\xfe\xc3\xbd\xf0\x10\x88\xb1\xa6\x9a\xa2\xfc\xf9\x7a\xef\x40\xc6\xe9\x41\x20\xf8\xc1\x9c\x8b\x03\xd3\x5f\xce\x43\xe2\xc3\xc4\xe6\x6d\x22\xd7\x25\x9f\x00\xab\xa5\x7b\x47\x63\xcb\x10\xb8\xcf\x33\x72\x04\x51\x24\x7f\x78\xff\xd5\xe9\xe5\xf9\xe9\xec\xf4\xea\xe6\xea\xf4\xf2\xdb\xc9\xf1\xe9\xcd\x37\x17\x57\x33\x58\xb3\xe7\xdd\xf4\xe2\x72\x66\x82\x88\xe4\x86\x25\x09\x0f\x43\x86\xb7\x97\x7d\x35\x7d\x4b\xd6\x65\x28\xe0\x83\x90\x70\x92\x40\x58\x6d\xea\xc8\x8a\xeb\xd5\x2f\xac\xb3\x73\x3d\x41\x04\x13\x9b\xca\x52\x9e\x81\x93\x96\xf5\xc9\xd2\xdb\xe4\x6e\x8f\x66\xcd\x40\x48\xaa\xcc\xca\xee\xcf\xf1\xf9\xe4\xe6\xf8\xe2\xfc\xed\xcd\xf9\xd1\xbb\xd3\xea\x34\xc0\xdf\x47\x63\xdd\xd7\xaf\x46\x70\xab\xc7\xba\x6b\x60\xf3\xf7\xaa\x93\xb0\x5a\xa9\xca\x19\x01\x97\x66\xd8\xb2\xa6\x93\x52\x9d\xcd\xf9\xe9\xec\xbb\x8b\xcb\x3f\xc0\xac\x26\x5f\x7b\xa7\x54\xdb\x6b\x7b\x68\xcc\x7e\xff\x81\x6d\x7d\x5b\x5e\xec\x85\xe1\x19\x4b\x76\x30\xf7\x01\x84\x1b\x08\x7e\x63\x56\x73\xe3\x6b\xfa\x8c\x5c\x31\x74\x4f\xd2\x14\x11\x4c\x27\xb9\x6f\x39\xf8\x47\x7c\xa1\x90\x6b\xd2\xaf\x1a\x16\xec\x9c\xb0\xf3\x8b\x93\xd3\xe6\x5d\x68\x58\x32\xb8\xa5\x36\xad\x15\x5e\x4e\x69\xba\x3a\x04\x14\x34\xd6\x93\x81\x08\xb2\xca\x32\xf4\xb6\xbd\x9b\xbd\x27\x06\xcb\x6f\x68\xc2\x35\xff\xd1\xbc\x45\xef\x66\xef\xff\x89\xfb\xb2\x61\xe9\xea\x66\x9d\x66\xd5\x65\x4c\x13\xb6\x61\xc2\x14\xc8\x28\x30\x1c\x48\x2b\x2a\x62\x0c\xe2\x5a\x16\x52\xb7\xaa\x16\xd1\xb1\x8b\xbb\x3a\x3b\x3d\xad\x55\xa2\xca\x6f\xc1\x82\x46\x8a\x95\x4f\xfe\x46\x46\xd9\x9a\xbd\xf3\x05\xec\x8f\xc8\x5a\xff\x8c\xf0\x3f\xd0\x47\xc4\x45\x64\x7e\x1c\x11\x08\x3e\x9a\x73\x31\x0a\x79\xd2\xd9\x19\x4b\x03\xe8\x4c\xb0\x74\x5c\x0b\x1e\x2c\xba\x13\x2c\xad\x76\xa7\x58\x90\x01\x71\x91\x22\x65\xf7\xd5\x8a\x2d\x71\xc2\x37\x3c\x62\xcb\xb2\xa3\x13\x82\xf8\x28\x0c\x35\xf3\xf2\x36\x62\xf7\xe4\x5b\x58\x3a\x39\x49\xf8\x06\x9c\xf7\xa8\xd5\x09\xea\x16\x31\x4b\x34\xd5\x24\xef\x05\xbf\x27\x27\x72\x4d\xb9\x20\x57\x32\xb8\xc5\xac\x40\x10\xe4\x43\x4e\xf8\xad\x96\x32\x4a\x94\x06\x0c\x33\xe0\x81\x17\xd0\xd4\x44\x80\xbe\x65\x11\xbf\x07\x6c\xeb\x06\x43\x5e\x6d\x45\x40\x8e\xa6\x13\x0f\xcd\x59\x44\xec\x7e\x23\xa3\x51\x08\x53\xf3\x93\x1d\xbd\x84\x6f\x65\x34\x59\x2f\xcb\x84\xa7\x71\x43\xfd\x9d\x8f\xf4\x56\x94\xe1\x57\xdb\xa8\xfa\x34\x1e\xb6\x01\x81\x9f\xa0\x5f\x66\x42\x55\x85\xbf\x1c\xd7\x3a\x0c\x13\xa0\xdd\x4a\x8d\x97\x67\xce\x27\x71\x22\x97\x09\x5d\xab\x1c\x83\xdb\xe0\x14\x11\x92\x44\x66\x29\xa4\xc9\x82\x5e\xdd\xef\xf5\x0a\x3d\x5b\xe0\xc8\xae\x7e\xf8\x6b\x66\xdf\x43\xf7\xff\x77\x13\xf2\xf7\x8a\xb9\x3b\x76\x34\x9d\x58\xc9\x7d\x4e\x83\x5b\x8d\xbe\xb4\xc0\x07\x2a\xe9\x06\x04\x76\x72\x34\x3b\xba\x9a\x5d\x5c\x9e\xde\xcc\xfe\x34\x6d\xa6\xe7\xc5\x12\xea\x84\xdc\x3a\xb3\x30\xdc\x75\x42\x97\xcb\xc4\xc6\x2d\xe6\xf4\x2d\x36\x06\xd7\x86\x69\xbc\xbf\xd2\x00\x3e\xb9\xd1\x4d\x1a\x27\x01\x10\xa9\x0d\xff\x1d\xe5\x69\xee\x11\xd0\xb5\xdc\xef\x8e\x26\xb3\x9b\xb7\x17\x97\x37\xf9\xba\x77\x1c\x4d\x53\xf0\x9d\x89\xb6\xa6\xd4\xff\x14\x42\x7d\x22\xc5\xf3\x94\x30\x01\x26\xde\xaf\xbe\x9e\x36\x71\x51\x47\x67\x93\xe3\x0b\xcb\x48\x4d\xce\xbf\xbe\xf9\xea\xe8\xf8\x0f\xa7\xe7\x27\x8d\xc0\x11\x52\x78\x80\x63\x54\x62\x58\x37\x4a\x33\x72\x10\xde\xbe\xc0\xcc\xc9\x4e\x4c\xa1\x7e\xdf\x30\x93\xb3\xf7\x57\xb3\xd3\xcb\x8e\xc3\xf8\x85\xda\x47\x99\xb1\x36\x03\x94\xad\xf6\x09\x17\x1a\x67\x6a\x01\x6b\x9f\xd0\xd4\xe4\x1f\x00\x1b\x10\x49\xd8\xc8\x86\xcf\x69\x26\x33\x2f\x6b\xa1\x52\x9a\x36\xcc\xea\xed\xe9\xd9\xe4\x8f\x37\x93\xe9\xec\xe8\xab\xb3\xd3\xab\xcb\xd3\xb7\x97\xa7\x57\xdf\x4c\xce\x67\xa7\x97\xdf\x1e\x9d\x35\x4e\xf3\xcd\xab\xfa\xfc\xce\xa5\x93\x9b\x16\x5c\x0c\x6a\xa9\x28\xec\xa0\x93\x66\xbe\xc2\xcf\x4c\x5b\x71\x6f\x32\xdd\x7c\x46\x62\x29\xa3\x82\x97\x77\x0c\x6c\x15\xf7\xac\x31\xb8\x42\x4c\xa6\x79\x3a\xec\x6a\xcf\xc1\x4a\x2a\x8d\xe7\xd0\xcd\x9e\x2b\x54\xc3\x8c\x51\xd5\x8b\x0e\xfd\x36\xdd\xa1\x31\x02\xb9\x06\x1f\xec\x75\x45\x37\xb5\x7e\x85\x34\x6a\x06\x93\x30\xd1\x84\x57\x2c\xf4\x9e\x98\x3c\xe5\x1f\x46\x23\xa3\x2f\x1c\x05\x3c\x4c\x3e\x8c\xab\x7d\x54\xce\xef\x64\xfa\xed\x67\xd3\x8b\x8b\x33\x0f\x16\x79\x56\x12\x4e\x7e\xf7\xc9\xf8\xf5\x9b\x2f\xc6\xaf\xc6\xaf\x0e\x5e\xbf\xa9\x03\xf3\x84\x2b\xf4\x89\xd0\xf2\x50\x24\x97\xb0\x4c\x25\xc9\x07\xf0\xa3\x4b\x23\xfd\x9b\xfa\x00\x7a\xce\x6a\x14\x5c\x65\x46\x27\x93\x2b\x7d\x64\x6e\xde\x4e\xce\x4e\x6f\xce\x2e\xbe\xfe\x7a\x72\xee\x17\x50\xda\x11\x0e\x32\x34\x45\x80\x83\x04\x2a\x9a\x6f\x38\xe6\x07\xd1\x3f\x1f\x1d\x1f\x9f\x4e\x67\x0d\x73\xc2\x53\x7c\x72\xfa\xf6\xe8\xfd\xd9\xec\xf4\xfc\x64\x7a\x31\x39\x9f\xcd\x2e\x34\xcd\x3b\x3a\x9e\x4d\x2e\xce\x1b\x67\x86\xdd\x36\x03\x6a\x32\xdd\xbc\xd1\x47\xac\x20\x45\xad\x53\x98\x4c\xbf\x7d\x73\xf5\x7e\xaa\x09\xea\x2e\xac\xb3\xa3\x21\x71\x4c\x0e\x10\x25\x86\x66\x65\xa5\x41\x05\x23\x9c\x5d\x7c\xad\x41\x3e\x3d\x9a\x7d\xa3\xc1\x02\xe7\x1d\x1d\x83\x70\x63\x01\x9e\x76\x67\x53\x09\x3b\xdd\x36\x63\xa7\xbf\x1d\x51\x62\xff\x09\x5f\x9d\x7e\x7b\x7a\x39\x99\xfd\xe9\xea\x4f\x57\x38\x67\x73\xa9\xe0\xe6\xe5\xbe\x95\x62\x21\x5b\x57\xa2\xb6\x2a\x92\xcb\x8e\xb5\x38\x43\xed\x80\x63\x8a\x93\xe8\x8c\x77\xbd\x77\x47\x13\xc1\xc5\xb2\xcf\xd2\xaf\xbc\xeb\x3d\xbe\x3c\x3d\x3d\xd7\x7d\x7d\x87\x3d\xd5\x57\xdc\x77\x39\xd0\x53\xe3\x8a\xbe\xf3\x4f\xb4\xdc\xdd\x37\xa7\x47\x67\xb3\x6f\x4e\xcf\xf5\xb5\x6d\x26\x7f\xfe\xab\xda\xb6\x60\x4b\x3c\x0c\x61\x05\xa1\x26\x4b\xd1\xfe\xa5\xff\xe1\xb8\xa0\x2d\x88\x58\x20\x4d\xea\x43\x8d\xba\x28\xb5\xee\xbc\x3c\xd5\x87\x4a\x73\x3e\xfb\xab\xfd\x1d\xe3\xa9\x6a\xbc\x4a\x10\x67\x87\xe4\x93\xcf\x5f\x95\x52\xbd\x45\x7c\xc3\x04\x53\x6a\x9a\xc8\x79\xb5\x9e\x08\xbb\xaf\xc5\x2a\x15\xba\xbd\xea\xef\x23\x02\x1a\xbe\x06\xd1\x01\x5b\x8c\xe0\x86\x8c\xf4\x98\x95\x75\x96\xb5\xb0\xaf\x5f\x95\x5f\x83\xf3\x0b\x8d\x4e\x58\x44\xb7\x8d\x8d\x16\x94\x47\x59\xc2\x66\xab\x84\xa9\x95\x8c\xc2\x43\xf2\xa6\x0c\x2e\x1a\xf2\xa6\x95\xae\xd2\x34\xfe\x9a\xd5\xab\x9f\xc6\x28\x08\xe6\xdf\xd6\xde\xcb\x24\x3d\x24\xbf\x7b\xf5\xbb\xdf\x55\xdf\x68\x9a\x70\x48\x22\x19\xd0\xa8\x2e\x64\xb6\x2e\xb7\xb7\x52\x22\xe2\xf3\x83\xb5\x0c\x33\x4f\x6e\x0b\x3c\x9b\x11\x9f\x8f\x1a\x1a\xe8\x15\x5d\x88\x68\xeb\xcb\x61\x5b\x1e\x25\xc9\xc4\xc1\x3d\xde\x80\x71\x24\x83\x5b\xff\x50\xa6\xc5\xc8\xd7\xa2\x18\x0b\xe9\x48\xcb\x60\x1b\x9a\xc0\x80\xd6\x72\xeb\x1b\x6a\x43\x93\x51\x92\x89\x91\xbf\xcd\x8e\x83\x69\x18\x76\x0d\xa6\xc1\xf8\xa0\xc1\xb0\x0b\x14\xc4\xd5\x56\xd4\x22\xd4\x7d\x2b\xd7\x17\x87\x2e\x6b\xe1\x92\xcf\xb0\x14\x9a\x95\x6d\xf7\xc9\x1d\x03\x86\xd5\xc8\xc0\x40\x7e\x20\xde\x29\x33\x31\x97\xba\xa5\x26\xa4\x68\x6c\xd0\x6c\xf7\x81\xda\xaa\x83\x85\x3a\x98\xc7\x0b\xcd\x3f\xdd\x31\xd3\x1a\x33\x38\x54\x87\x83\xac\x32\x29\x09\x79\x02\x16\xbd\x6a\x11\x12\xbb\x38\xb5\x55\x8b\xda\xe1\x72\xd7\x65\x06\xad\x8b\xfd\x5f\x71\xec\x1b\xd3\x82\xac\x19\x15\x18\x44\x08\x59\x0f\xf2\xc9\x75\x2f\x85\xa7\xc8\xd6\xc6\x89\x8c\xe9\x52\xb3\xd7\xc6\x6f\xa4\xa2\xdb\xb0\xe3\x9a\x1c\x64\xc0\xb3\x71\x45\x6e\x85\xbc\x13\x2e\xe8\x68\x5a\x1a\x2c\xd2\x7b\xbc\xc5\xb4\x76\xe5\x29\x07\x54\x80\xfa\x01\x73\x98\xd5\x46\x42\x20\x98\x49\x81\x1d\xbd\xf4\xb9\xab\x85\xa9\x18\x75\x92\x4c\xa8\xdc\x21\x26\x53\x36\x4e\x17\xcd\xea\x50\x2a\x63\xb4\x5e\xa2\xa3\x06\x13\xa1\xdb\x11\xd0\xaf\x48\x23\x1d\x88\xee\xad\xd7\xd5\x18\x39\x4a\x90\xc2\xc9\xa5\x98\xb4\x63\xd8\xd1\x22\x9d\xf1\xc0\xaa\xa9\xd9\x0a\xfb\x0e\x31\x06\x1e\x8d\xfa\x4d\x7f\x21\xe4\xb1\xd9\x1b\x8d\x78\x3c\x5a\x53\xf5\x17\xfb\x67\x65\xfe\xd7\x7b\xe4\xfb\xc7\x21\x84\x75\x5d\x8c\x5d\xe6\xf4\xe2\xe4\xc9\x74\xf2\xd6\x80\x3f\x16\x35\x51\xbf\x3a\xfc\xd5\xf4\xe8\xf8\xe9\xe7\x00\xde\x17\x0d\x4c\xca\xd9\xd1\xf9\xf9\xe9\xd9\xc9\xcd\xe4\xed\x8e\x33\x79\x6c\xa3\x8c\x6e\x74\xc3\x17\x3d\x66\x3a\xbd\x79\x77\x74\xf5\x7f\xfe\x89\x73\xd5\x67\x37\x63\x09\x2d\x33\x32\x2d\x1a\xe6\xfe\x54\xb3\x8b\x66\xb6\xd0\x95\x51\xd9\x95\x6c\x14\x2c\x2a\x2b\x70\x67\xc1\xd2\xa0\xe4\xe6\x98\xa3\x61\x5c\x45\x59\x13\x6d\xfd\xe9\xd1\x54\x58\xc7\x19\x0d\xdc\x84\x46\xa4\x30\x5c\xe5\xc2\xb6\xf0\x28\xa3\x4e\x4a\xde\xde\x69\x13\x97\x30\xea\x24\xda\xdd\xfd\xfa\x18\x82\x51\xc7\x86\xb5\xf7\xda\x7e\x14\xd0\xc7\xe8\x2d\x8f\xd8\x45\x72\x5c\xf2\x87\x6d\x21\xb2\xed\x03\x7a\x49\x2e\x8e\x73\x62\xc9\x79\x7d\xb0\xe2\x00\x98\xc3\xe2\x35\xcd\x78\x0f\x5d\x7e\xf1\x0e\x7d\xc7\xdc\x7f\xd9\x8a\x00\x21\x6b\x60\x3e\x3e\xf7\x59\x83\x1a\x6c\x6a\xed\x10\xf0\x5a\xea\x46\xed\x66\xb5\xf6\x1e\x1b\xcc\x75\xc5\x2a\x8c\x6a\xaf\xd9\x72\xe6\x39\xff\x7e\xce\xb0\x61\x22\x9d\x1b\x48\xea\x17\xc4\xc3\x4c\xd6\xe1\x5e\x37\x07\xfa\x36\xbe\xd5\x6c\xb6\xeb\x94\x7f\xf8\x61\xa4\xb9\x3c\x6b\xc6\x9b\x82\x53\xe3\x09\x2f\xfb\x8d\x15\xeb\x29\x0c\x7e\x79\x4b\xf4\x17\x1b\x11\x16\x29\xd6\xf0\xd5\x41\xa6\xe0\x3a\x6b\x29\xd6\x71\x21\x82\x7f\x46\x2c\x1d\x19\x57\xca\x03\xc4\x85\x07\xd0\x2c\x07\xd8\xff\x9b\x85\xca\x8c\x60\xbc\xd3\xc0\xdf\xb3\xcb\xad\xca\x75\x9b\x2c\x5c\x61\xab\xce\xa6\x0f\xf1\xa3\xdc\xd5\xef\xb4\x1a\x78\x9a\xfb\xa0\x5e\x31\xe6\x73\x9b\x2f\xb9\xfc\x1f\xd4\xc3\x56\xbd\x0e\xa1\xc6\x6d\xd4\xc9\x7f\xb8\x4b\xd0\xee\x43\x9c\x46\x9b\x02\x73\xad\x5f\x24\x2a\xdf\x4b\x69\x2d\xa8\x29\x5a\x09\x25\x0f\x28\x64\x69\x8a\x18\xa8\x69\x37\x0c\x2f\x81\xcd\xbc\x90\xb0\x38\xe2\x01\x55\xe0\xba\xb9\xab\x4b\x6a\xe3\x22\x55\xe1\x9e\x5a\x5c\x8a\x4b\x56\x04\x3f\x74\x79\x86\x76\x82\x91\x90\x36\x50\x92\x0e\xe7\xd2\x96\x6e\x3f\xca\xdd\xd4\x5e\xf2\x59\xe1\xc7\x49\x9a\xbc\x3b\x1d\xff\x5c\xb7\x79\xee\x9c\xfb\xa6\xe1\xbe\x37\xf9\x88\xfa\x95\x7f\x4e\x6b\x6b\x30\x6c\xcc\x69\x22\x09\xe6\x90\x8a\x58\x0a\xb5\x95\x32\xd1\xe4\x59\x5a\xf6\x48\x2d\xdc\xea\x07\xbf\xd4\xd2\x87\x2e\x2e\xc5\x36\x1f\xe3\xa3\xda\x7a\x17\x6a\x5e\xab\x0f\x75\xe5\xd4\xa3\x54\x92\x45\xf4\x72\xed\xcc\x0d\x65\x3e\xef\x4e\xaf\x23\xc8\xa8\xdf\x2d\x27\x65\x19\xbd\x68\xe0\x77\xc6\xa8\xb9\x28\x1c\xaf\x24\xa4\x66\x07\x0b\xac\x7b\xde\x53\xa9\x8f\x78\x83\x92\xc7\x28\xe0\x6f\x8e\x2f\xce\x67\x97\x17\x67\x67\xa7\x97\x4d\x96\x8a\xba\xda\x77\x27\xd7\x06\xc7\xb1\xc1\x69\xd0\xaa\xb9\xdd\x55\x47\xad\x99\x02\xd0\x53\xaf\x58\x70\x3b\x2a\xa7\xbb\x28\x9a\x8d\x92\xa7\x27\xf8\x3b\x53\xc5\x5d\x59\x00\x96\x06\xe1\x48\x69\x42\x93\x5a\xf2\xdf\xf3\xcb\x74\x1b\xaf\x68\xdf\x4f\xac\xc3\x89\xf1\x31\xc5\xaf\xf6\xf6\xff\x7f\x84\x90\x3d\xe4\xfd\x37\x9f\x8e\x5f\xbf\x19\x7f\xbe\x77\x48\xf6\x74\x57\xa0\x5a\x22\x33\xd3\x43\xe1\xc0\x81\xbf\x9b\xc6\xbd\xe7\x6a\xc2\x95\x4b\x21\x36\xc7\x56\x20\x21\x5c\xe5\x69\x84\xf3\x89\x62\xd1\xb3\x05\x70\xb1\x2c\x34\xc3\xba\x76\xf2\x22\xba\xcc\xf6\x53\xdf\xe8\xe6\x50\xa6\x5c\xd0\x69\xda\xc7\xfc\xb3\x67\x98\x13\x41\x4f\xd2\x98\x10\x51\x8d\x08\xe0\xbf\x31\x88\xef\x06\x3b\x77\x4d\x9a\xc8\xe4\x40\x0e\xc3\x05\x0d\x18\xae\xd0\x4a\xee\x80\xf3\x41\xbb\x09\x19\xbd\x03\x9b\xd8\x1b\x7e\x2a\xbc\xf3\x6c\x6c\x3c\x28\x44\x23\xb6\x48\xc9\x3c\xa2\xe2\x76\x3f\x2f\xe0\xe1\xf4\xcf\x95\x75\x3c\x28\xb4\x91\xfa\xa6\x3f\x57\xd8\x83\xc5\x7f\xe0\x71\x04\xbd\x3a\x7a\x1e\x0c\xfb\x40\x7d\xe2\xc4\x76\x69\x23\x40\x9e\x91\xef\x4c\x42\x65\x99\x40\x02\xe4\x54\x3a\x7a\x97\xa2\xa4\x8a\x24\x4e\x7d\x48\x4c\x13\x8f\x6e\x09\xd8\x89\xa5\x81\xc6\xf7\x0d\xa6\x50\x74\x53\xb6\x11\xba\x2e\x52\xfa\xbb\x77\xb3\xf7\x90\xc6\x48\x39\x72\x89\xfe\xcd\x72\x1c\x7c\x41\x04\xc3\x9f\x5e\x19\x2c\x6e\x5d\x58\xcd\xd2\xde\xcd\xde\xe3\x7a\x0c\x89\xf3\xf0\x2a\xee\x17\xaf\x3f\xfb\xfc\x55\xa5\x75\xb3\x07\xb6\x0d\x57\x6e\x72\xc4\x86\xcf\x80\xac\xa1\xf8\xf0\xcc\xa6\xc7\x05\xad\x3e\xb7\x99\x8b\x8a\x5a\x16\x59\x2a\xd7\x14\x88\x52\xb4\x25\xb1\x34\x59\xc0\x70\xd3\x6a\x1e\xd3\x87\xe4\x6f\x23\x44\x8e\x3f\x58\x1c\x79\xbd\x07\xfa\xce\x3d\xe3\xfa\xa3\x85\xdd\x91\xf9\xc8\xc9\xcf\x7f\xbd\x17\x08\x7b\x5f\xb0\xed\xab\xf1\xa7\xe3\xd7\xa5\x16\x46\xfe\xd2\xaf\xff\x5c\x60\xe0\x1f\x5c\x64\x7c\xbd\x07\xce\x49\xd0\x81\x51\xca\x94\x6b\x00\x5c\xef\x45\x72\x79\x13\xb1\x0d\x8b\xb0\xd5\x77\x47\x97\xe7\x93\xf3\xaf\xbd\xcd\x16\x3c\x62\x37\x5a\x36\xc4\xa6\xa8\xee\x91\x4b\x83\x48\x40\xbc\x0f\x04\x1f\x47\x72\x59\xfb\x3c\xf7\x64\xbb\x29\x26\xe4\x7a\xe1\x55\x9a\xeb\xad\x29\xc0\x74\x73\xe3\xf3\x13\xbf\xb9\xa9\x7d\xb6\x4e\x33\xfd\xc5\xcd\x8d\xf1\xd2\xbe\xb9\xa9\x34\xe0\x31\x5d\xeb\x16\x3f\x54\x29\x96\x0b\x28\x7d\xd1\x47\x60\x78\xf4\x14\x4c\xb8\xde\x43\x0d\x3c\x36\xcd\x14\x9b\xca\xf0\x98\x87\x49\xd9\x28\xfd\x63\x65\x5c\x54\x54\x74\x8e\x7c\xfb\x85\x6a\xef\xc7\x05\x99\xb7\x2f\x93\x1b\x4b\x23\x50\x07\x74\x18\x4b\x70\x63\x9d\x3e\x34\xe4\x4a\xa3\x14\x7f\xb8\x03\x36\x9e\xa4\x58\x26\xe9\x9a\xc6\x35\xf0\x2b\x41\x01\x2e\x1a\x57\x54\x5e\x05\x34\xa6\x90\x39\x89\xdb\xa9\x43\x2f\xef\x68\x1c\x73\xb1\x54\xf6\xab\x5d\x67\x32\xa7\x22\xbc\xe3\xa1\x3e\x91\xdd\x03\x3a\x8d\xeb\xa3\xd9\x7f\x1a\x93\x8a\xc1\x29\x36\x82\xde\x8b\x53\xc6\x04\xb4\xd8\x50\xd8\xc6\x98\xcc\xac\xd1\x29\x67\x51\x01\x2f\x08\x96\x02\x55\x1b\xff\x5f\xa5\xa9\xdf\xdf\x6a\x18\xe1\xdc\xde\x7f\x8b\xeb\x91\xfd\x3d\x9e\x9c\x5c\x6a\xc4\xe8\xdc\xf9\xaf\x8c\xcd\xaa\xbc\xfb\x98\x66\x3f\xff\xdc\xcc\xda\xb4\x1d\xeb\x77\x6e\xc4\xe0\x8f\xf9\x12\xbb\x38\x84\xdb\x30\x1c\x05\x49\x58\x62\x7e\x7e\xa5\x09\xb0\x6b\x39\x16\x9e\x20\x0d\xf6\x57\x5f\x4f\x4b\xa9\xf0\xf0\x5d\x91\x0c\xbb\xfa\xbe\x9e\x12\xbb\x21\x13\x44\x91\x18\xbb\xda\xe0\xba\x48\x8f\x6d\x0e\xcd\xf5\xd3\xe4\xc6\xae\xce\xbd\x9c\x58\xb7\x4c\x6b\xb1\x38\xc5\x56\x7f\x03\x2c\x4d\x59\x6e\x1e\x72\x63\x0f\xb9\xb1\xdd\x2d\x18\x72\x63\xff\x62\xb9\xb1\xab\x97\xb8\x9e\x21\xbb\x5c\x1b\x42\x5f\xe0\x32\xc9\x2b\x77\xde\x92\x0a\x9b\xaa\x73\xa8\xc6\xe6\x31\x22\x57\x2e\xf4\x15\x36\xb4\x29\xf7\xad\x2c\x74\x74\x65\xea\xb9\xe5\xd2\x19\x35\x1c\xfb\x9f\x4f\xb0\x89\xd7\x3e\xfd\xe6\xb3\xcf\x5f\x7f\xf2\xfd\xf3\xfa\x2b\xcc\x56\x04\x95\xd0\x3f\xfd\xa4\xfe\xba\xb5\x4c\xba\xdd\x79\x7f\x15\xd5\xd2\x7a\x8e\x8b\xa6\xe5\x92\xf8\x08\x4b\x73\x82\x2c\x9c\x29\x66\x6f\xa9\x86\xbb\x19\x10\x26\x73\x9e\x26\x34\xd9\x9a\x92\x51\x10\x15\x42\xd1\x57\x15\x23\x92\x76\x4a\x0e\xee\x9d\xe6\xb6\xd8\x7e\x95\x52\x11\xd2\x24\xd4\x92\x64\x44\x93\x25\xab\x4e\xd7\xd7\x29\x81\x25\xe8\x9b\xe6\x09\x18\xc1\xa7\xb3\x02\x2d\x90\x27\xff\x2b\x4f\xc1\x59\x53\x80\xb3\x88\x94\xb3\xd3\x6b\xac\x81\xd9\x5d\xfb\x12\xb5\x67\xbd\xa6\xf0\x2d\xe0\x39\x48\x01\x36\x87\xa8\x63\x3c\x57\xe4\x03\xa5\x87\x42\x7c\xd0\xc0\xc3\x7f\x1e\xae\xd7\x55\x17\x7f\xf7\x79\x2b\x93\x02\xe2\xc5\x4a\x32\xc5\xf2\xae\xb0\xe7\x7d\x93\x4d\xf7\x03\xa5\x1f\x34\xb0\x9b\xbb\xfc\xa0\x3f\xa2\x09\x23\xaf\xdf\x90\x39\x4f\xcd\xf5\x19\xc3\x50\xd5\x0d\x2d\xc6\xd1\xf3\x6c\xee\xb3\x3e\x87\x7d\x33\x8e\x08\xc9\x87\xf5\x1a\x07\xfc\xf4\x93\xd2\x80\xdf\xe9\xc6\xde\x1a\x3d\x66\xa2\x7a\x29\x58\xd6\xea\xe8\x8a\xe0\xf5\xf7\x75\x1b\xb3\x64\x74\x74\x65\xe3\x6e\x78\x2d\x6c\xb5\x78\x62\x28\x9b\x2d\x0e\xc9\x7f\xbd\xb8\xbe\x0e\xff\xff\x2f\x0f\xf1\x7f\xff\xf1\xb7\xf2\xdf\xf6\xe7\x87\x9e\x94\x07\x17\x28\x8d\x20\x3f\xf9\x54\x26\x3e\xa4\x55\x3a\x5f\x67\x79\x4b\x8b\x10\xa1\x34\x1b\xc2\x5f\xe3\x90\x38\x91\xa9\x0c\x64\x64\xb9\x14\xec\xda\x0b\x99\x13\x5b\xad\x2a\x95\xe4\xf5\x6f\x6b\x1e\xb6\x90\x70\x85\xaf\xb3\xf5\x21\x79\xf3\xf9\xe7\x9f\x7e\xee\x79\xcf\x05\xbe\x7f\xbd\x23\xc2\x8c\xe4\xf2\x8a\x6d\x58\xc2\xd3\xed\x55\x90\x30\x56\xe5\xe9\x6a\xcb\x7e\x7e\x56\xfd\xc2\x2e\x3f\x92\x4b\xa2\xcc\x1b\x42\xe7\x72\x63\xb5\xef\x91\x5c\x7a\xeb\x4c\x41\x39\x5d\x26\xf2\x4c\xb9\x2a\x0d\x65\x96\x3a\x64\x83\x4c\xce\xdf\x5e\xf8\x48\x44\xdb\xf6\x6b\xd2\x33\x93\xe7\x32\x64\xef\x98\x5a\x9d\x42\x0c\x9a\xaf\xc2\x6d\x79\x55\xe7\xbe\xaf\x88\x62\x69\x51\x08\x6d\x91\x19\xa3\x16\x86\x49\xd4\xbd\xbe\xf5\xa3\x37\x7e\x0d\xe9\xe7\x94\x89\x7f\x0b\xdd\x05\x69\x61\xb6\x79\x41\x73\x29\x23\x46\x6b\xbc\x6f\x9c\xb0\x05\xbf\x3f\x72\x53\xd3\x76\x52\xb7\xa9\xe7\x9b\x82\x82\x80\xef\x06\xb4\x28\x67\xbc\xf5\xad\xa8\x8d\xad\x20\x3b\x94\xbb\xaa\x4f\xa8\xd0\x53\xab\xf2\x34\x1c\x4a\xe4\x47\x00\x36\xec\xb2\xa8\x1c\xe7\x89\xf1\xb4\xc0\xeb\x20\x6a\x01\x0f\x9b\xcb\x6c\x97\x49\xf1\xe4\xe4\x12\x86\xc6\x63\x5d\xf4\xec\x96\x8a\xb5\xeb\x68\xae\xf4\xdc\x4d\xe5\xda\xb9\x18\xdf\xcc\x1c\x5e\xc6\x38\xeb\x5a\x6e\x86\x71\x38\xbc\x05\x41\x01\x16\xa5\x19\xe5\x5b\x37\x60\x94\xd9\xa0\x14\xf0\x07\xcd\x7d\xaa\xb1\x33\x08\x50\xcf\x5e\x4c\x07\x41\xd9\xad\x95\xf6\xb6\x90\xd8\x56\xd2\xd4\x42\x7b\xdb\x48\x6c\x73\x9f\xed\xb4\xb7\x95\xc4\xb6\x4c\xb4\x95\xf6\xb6\x53\xd8\x1e\xbd\xf6\x27\xbd\x5d\x05\xed\xfb\x54\x1e\xef\x28\x60\xff\x60\xb2\x6b\x2c\x40\x46\x33\x32\x99\x76\xe2\xb7\xab\xea\x07\x00\x0c\x48\x2c\xa3\x6f\x29\xe6\xbd\x45\x41\x14\x6f\x6b\x4b\x3d\x79\x63\xc3\x26\xb6\x17\xe3\x57\x0e\x52\xe7\xa2\xc0\x31\x79\x6d\x49\x2c\x1f\x68\x2f\x3a\x16\x09\xf4\xf5\x8b\x93\xc8\xf3\xdb\x81\xdf\x82\xd8\x96\x86\x33\x11\xa7\xe9\x8a\xad\x1f\x8e\x5a\xab\xb0\xf8\x4a\x8f\xeb\xc8\xe9\x8e\x2b\x90\x29\x5a\x9b\x37\xf5\xef\x73\x01\xc2\x27\x40\xa9\x4f\xc6\xba\x99\x1d\x3e\xbd\x47\xa5\x4e\xff\x43\xe4\x7c\xe1\x3f\x45\x32\x71\x42\x4c\x7d\x73\x36\x1d\x11\xdb\x93\xde\xdb\xb1\x9b\x21\xa1\xda\x20\x0f\x7c\x06\x7f\x2d\x7f\x31\xf8\x82\x94\x98\xea\x98\x5b\xac\xf9\x83\x47\xc6\xd4\x8e\xc6\x0a\x95\x38\xd1\x8f\x3e\x41\xc5\xec\x3a\x8f\x90\x7f\x77\x9d\xf5\xff\x2a\x0f\xd1\xaf\xb5\xbe\xd6\xaf\x57\xd5\x0f\x39\x93\x9f\x46\xc3\x3f\x65\x56\xdc\x29\x29\xf6\xf5\xcf\x5e\x7d\xbe\x93\xbe\xb9\xa4\xc6\x8f\x4d\x3f\x4f\xa5\xbd\x1f\xd4\xec\x83\x9a\xdd\xdd\x82\x41\xcd\xfe\x4b\xaa\xd9\x35\x3a\xe8\x57\x7f\xd2\x34\x7e\x40\xb5\xc9\xbe\x2a\xf6\xd9\x8a\x15\x52\x80\x55\xed\x6b\xf4\xe3\xa1\xa0\x1f\xa3\x25\xbf\x65\x2c\xbe\x48\xf8\x92\x0b\x1a\x9d\xb3\xfb\xf4\x1b\x59\x8d\x67\xa9\x4d\xed\x22\xb6\xce\x39\xfa\x63\x98\x98\x34\x3d\x10\xc1\xee\xd3\x95\x8c\x4d\xc1\x7b\xa8\xb2\x87\x5a\xef\x2e\xa5\x0f\xc0\x94\x68\xa0\xea\x33\x9e\xc2\x25\xb1\x0e\x4c\xae\x72\x00\x76\x04\xfc\xb1\x59\xa8\x3f\xf1\xf5\xab\x7b\x51\xb9\x7a\x26\x43\xbe\x9c\x5c\xef\xe9\xc9\x11\x3d\x3b\x3d\xef\x2f\xaf\xf7\xc0\xb9\x88\xd1\x50\x83\xd7\x79\xab\x58\xb4\xf8\xf2\x7a\xef\x85\x31\x6a\xbc\xf4\x0d\x61\x0a\xc0\xe7\xae\xb5\xf3\x84\x8a\x60\x65\xf7\xe9\x5c\x0f\x2d\x05\xb9\xde\x9b\xf3\x24\x1c\x07\x8b\xe5\xf5\x5e\x63\xa5\xfe\x06\x4d\x8f\x9e\x7e\x9f\x43\x92\x27\x7e\xca\x53\x1d\x59\xfc\x62\x44\x14\x93\x04\x1b\x3d\xfe\x21\xd4\xd7\xbb\x20\x05\xa7\x4b\x7f\x0b\x09\xec\xb0\xd4\x3f\x6c\xc7\xc4\x90\x0b\x8e\x2e\x68\x8a\xa5\xfb\x15\xfa\xa1\x08\xf5\xf5\x89\x25\x44\xa0\x97\x7d\xc2\xc7\x6c\x0c\x49\xf6\x6c\xe2\x3d\xa0\xb1\x38\x18\xdb\xb0\x64\x9b\x67\xeb\x2e\x67\x6a\x6a\x84\x5b\xb3\xca\xcf\xe3\xaf\xef\x05\x5f\x9e\xb8\xd9\xea\x90\xb0\x20\x24\xcc\xce\xd0\x39\x08\x9f\xc8\x61\xc1\xc5\x72\x4c\xa0\xb8\xbc\x97\xd1\x34\x40\x32\x00\x32\xc7\x00\x6f\x82\xb5\x3d\x40\xc5\xf8\x1d\x97\x14\x53\xa5\xee\x64\xd2\xa5\xb8\xf4\x4d\xe9\xc2\xa4\x72\x43\x25\xb4\xe9\x27\x5f\xae\x59\x92\x22\x4b\x26\xa0\xe6\x3c\x58\xec\x7c\x84\x88\xa0\x3a\xb3\x0d\xe7\x91\x6e\x46\x1e\xbd\x72\x5b\xe2\x54\xbd\xfb\xa3\x09\xe9\x2d\xdb\x02\x3f\x62\xba\xb0\xa7\x04\x4e\x4c\x2c\xc3\xe7\xaa\x70\x3b\x6d\xd0\x79\x74\xca\x18\x18\xff\xda\xac\x12\xe9\x02\xb5\x7d\xf4\x9d\x34\xd3\x45\x5c\x05\x13\x4e\xa5\xc1\x5a\x40\xa9\xc7\x84\xbc\xc3\x03\xd1\xd6\x13\xd5\x8c\x03\x0f\x6d\x17\xb7\xcc\x77\x70\xec\xd3\x47\x63\xd3\x6a\xb3\xeb\xbf\xc2\xeb\x3d\x37\x79\x6f\xc2\x16\x2c\xd1\xf7\xd4\xc7\x21\xb4\xe5\xb0\x96\x1b\x2d\x69\xb2\xbb\x03\x53\x3b\x6b\xa4\x51\xc1\x08\x09\xb7\x3a\x80\xfd\x3c\x78\xd6\xa1\xa1\x24\x64\x76\x71\x72\x71\x48\x8e\xc2\x90\x48\x50\x6e\x66\x8a\x2d\xb2\x08\x6f\x9d\x1a\x3b\x9c\xf3\x3e\x30\x6e\xfb\x24\xe3\xe1\xff\x53\xcd\x9b\xb3\x2b\x20\xf3\x0c\x89\x1f\x0f\xcc\x2b\xa0\x20\xdb\xdc\xb2\xa0\x41\x7a\x85\x1b\x2e\x13\xb0\xd1\xea\xc3\xb4\xee\x3e\x2d\x46\x49\xdb\xb5\xb0\x06\x6a\x83\x8f\xad\xbc\xd3\x38\x63\x08\x9f\xf1\xbf\xec\x23\x66\xfb\xdf\x6a\x34\x34\x99\xf6\xa1\x75\x4e\xde\x3a\x87\x23\x22\x0b\x69\x74\x59\xf3\x2d\x88\x2c\x16\xe9\xc5\x32\xf1\xd2\x3a\xe3\xa2\x90\x4a\xfc\x5c\x9f\x3b\xa0\x72\x60\xb4\x13\xb9\x63\x03\xd8\xac\xf7\xad\xbe\xba\xd0\xeb\x7f\xf8\x33\xfa\x98\x4f\xa6\x9b\x37\xe8\x66\xfe\xfd\xa1\xfe\xd4\x6b\x91\x95\x09\xf9\x90\x37\xff\x0c\x9b\x1f\xe2\x0f\x30\x3d\xf8\x01\xf4\xc9\x90\x34\x0f\xe6\x51\x5a\x80\x33\x21\x4b\x7d\xbd\xbc\x14\x38\x25\x18\x3a\x05\x80\x12\x21\xc9\xdd\x34\xb0\x44\xb9\x42\x46\xcb\x78\x0c\x02\xf2\x04\xf2\x5b\x98\x2f\xfd\x58\x1b\xf0\x6d\xd5\x0d\xc5\xf8\xcc\xdf\x31\xc3\x60\x69\x8a\xae\xa7\x6b\xa0\xba\x2b\x8d\xd3\xac\xf7\x43\xc9\x76\xc2\xd6\x32\xcd\xa9\x77\x69\x57\x81\x58\x37\x92\x34\x97\x58\x4f\xe1\x14\x96\xc1\x86\x58\xa4\x42\xbc\xd1\x0d\xa0\x9c\x53\xb6\xbc\x10\xcd\x44\xcd\x59\x7a\xc7\x4c\x4c\x01\xb8\x25\xdb\x82\x84\x61\xc1\xbe\xba\xf3\x86\xdc\x36\x39\x9f\xeb\xdf\x61\x93\x56\xd1\x8c\xc0\x17\x64\x2e\x35\xf3\x24\x42\x85\x7c\x8a\xe6\x37\xbe\xfa\x7a\xaa\x51\xca\x58\x37\x3d\x32\x77\xa5\x50\x5b\x37\x9d\x1c\xec\xfb\x4d\xff\xbe\xdf\xd4\xfa\x1e\x03\xe9\xf3\x0d\x60\x96\x59\xf8\x06\x05\x12\x3c\x63\xac\xc8\xea\x80\xe1\xe7\x9f\xfe\x47\x95\x86\xb2\x5b\xe1\x9d\xb9\xd9\x7e\xc3\x66\x3a\xb5\x7f\xe1\x34\x16\x17\x66\xa7\xb3\xd8\x80\x03\x47\xb9\xe4\x56\xfd\x1d\xd1\xd7\xa0\x3c\xfc\x67\x2a\x0f\xcb\xe5\x02\x9f\x42\x87\xa8\x47\x38\xc2\x11\xb6\x35\x4d\xa2\xfb\xd2\xa3\x4f\xf4\x15\x33\x74\xd4\x8a\xce\xeb\xed\xa0\x5c\x1c\x94\x8b\x83\x72\xf1\xdf\x4f\xb9\xe8\x62\x88\x9e\x2a\xc6\x3a\xc6\x29\x9e\xdd\xf5\x8e\x0d\x26\xb4\x36\x9e\x0c\x8a\x12\x75\xfb\x4b\x9d\x60\x33\xc2\x45\x08\x05\x10\x8c\x02\x05\x4e\x0e\xe0\x36\x62\x91\x9b\x3e\xb7\x73\x06\x29\xe1\xf1\x1b\xaf\x3c\x0b\xb1\xac\xa8\x35\x71\xcf\x39\x16\xe9\x75\xaa\xb9\x23\xef\x2a\x35\xe1\x20\x09\x8b\x18\x55\x66\x68\x5f\xa7\x6b\xae\x52\x7a\xcb\x44\xb4\x25\xa9\xa6\x26\xe6\x60\xc3\x28\xb4\x18\xe5\x01\xca\xa6\x1d\x81\x0a\x29\xbe\x77\xfa\xa6\x91\x21\xd1\x5b\x5a\xfd\xcd\x00\xb6\xfa\xb3\x2f\x42\xdd\x93\x6c\x7c\x60\x5b\x7e\x51\xb6\xc5\x53\xf3\xf7\x09\x58\x17\xeb\xe0\x51\x8c\x52\xe5\x5f\xea\x2d\xea\x4c\x4c\x63\x7d\xe2\x82\x91\xa9\x37\x79\x4a\x6e\xa6\xec\xf4\x56\x5b\x41\x25\xd4\xc9\xf8\xd9\xe4\xfa\xfa\x6a\xb1\x74\x7c\x06\x0e\x69\xe0\x90\xdc\x2d\x18\x38\xa4\x5f\x8c\x43\xaa\xdf\xe0\xb6\x38\x27\xfc\x74\xee\xa1\xaf\xce\x6d\xdf\x81\x39\x02\x14\xea\xbf\xe3\xf5\x99\xba\x8d\xad\xc3\xbb\xb9\xe4\x7a\x6e\xc6\xec\x66\x98\xa0\x7c\x36\x0d\xfa\xa7\x24\x13\xc2\xab\x69\x6e\x63\x22\x4c\x97\x5f\xbf\x9f\x9c\x74\xce\xb6\x68\x6a\xe7\x0a\xff\x36\xfa\xd3\xc6\xc9\xf5\x18\x7e\xa6\x9b\xf4\x1b\x5e\x37\xb5\x9b\x66\xd0\x22\x14\x68\xf9\x98\x59\xe4\xd9\x09\x2e\x19\x0d\x7d\x96\x9b\x32\x97\x5a\x6a\x9d\x67\x48\x31\x75\x3c\x15\x5f\x0a\x60\xc0\x45\x5a\xf4\x4b\xd6\x7c\x59\xa9\xed\x5e\x9a\x9b\x84\xcf\x68\x64\xc2\x9a\x62\x29\xc0\x14\xaa\xb2\x60\xa5\x79\x4a\xac\x53\x80\xaa\xa8\x5c\x7d\x7c\x47\xb9\xbe\xe5\x0b\xd9\xa0\xe3\x0b\x02\xa6\xf2\x6c\x23\x4d\x95\x84\x48\x97\x36\x1f\xaa\xe1\x89\xce\xb0\x95\x6f\xb1\x19\x09\x59\x10\xd1\x84\x29\xe3\x1e\x6b\xbe\x76\xce\xb2\xe3\xd3\x0e\x09\xe4\x76\x62\x93\x07\xa6\xf2\x17\x65\x2a\xa1\xd8\xc0\x93\x47\xcd\xc3\xe1\x6e\x8d\x9b\xaf\xb7\xa8\x33\x95\x9e\xb9\x56\x99\xca\x7a\x93\x5f\x8c\xa9\xc4\x0b\xbc\x53\x00\x3d\x7c\x32\x30\x94\x03\x43\x39\x30\x94\xff\x6c\x86\xb2\x8e\x7f\xba\x02\xe7\xf1\xbe\x3f\x34\x74\x3e\x8a\xe4\xdd\x64\x3a\x99\x4e\x29\xe4\x3d\x7e\x9b\xc8\xf5\x77\xb6\x4a\xf7\x03\x3c\x77\xae\xf7\x8e\xda\x7a\xb4\x94\xa3\x08\x49\x84\xd9\xfb\x7a\x32\x21\x2a\x21\xa1\x24\xc9\xb0\x60\x46\x98\xc8\x98\xe8\xae\x09\x13\x01\x8d\x15\xa6\xc3\xca\x13\x8f\x61\xa8\x8c\x1d\xca\xd7\x67\x11\xc5\x08\xa9\xda\xbf\xf7\x39\x54\xb4\x72\x28\x00\xae\x6f\xff\x78\x76\x74\xfe\xb8\xf0\x6a\xec\xf2\x11\x00\x06\x7d\xff\xf3\x20\x76\xa7\xae\x92\xe0\x44\xa5\xc7\x2b\x16\xdc\x76\x06\xb1\x5e\xb1\x94\x20\x26\x1a\x39\x49\xe4\x46\x90\x00\x92\x48\x41\x8e\xbe\xbb\x22\xa7\xc7\x9f\xe4\x8e\x81\x6a\x4c\x8e\x0c\x53\xe5\x9b\xfe\xa6\x1c\x41\x8f\x01\x27\xd7\x7b\x27\xf2\x5c\xa6\x2b\xa8\x68\xb5\x4f\xae\xf7\x4c\xac\xec\xf5\x1e\x91\x89\x7e\x6b\xd2\xfb\x5d\xef\x75\xe4\x7f\xc8\xbb\xf1\xc5\xc3\x32\x91\xf9\xea\x1e\x8c\x8a\xaf\x7c\x2f\x71\x2a\xde\xcf\x70\x56\xbb\x09\x1b\xf3\x78\x71\x2c\x85\x60\x41\xaa\x19\xaf\x33\x49\xc3\xaf\x68\x44\x45\xc0\xc5\xb2\x6f\x58\xf1\x57\xd3\xb7\x1d\x5d\xa0\xbf\x2c\x17\x24\x2f\x78\xe3\x03\x96\xff\x20\x97\x8b\xe2\x07\x38\x90\xde\xf1\x94\xaf\x19\xd1\xc7\x92\xcc\x61\x38\x96\x34\x5b\xea\xcd\x67\x9e\x6f\x40\x54\x35\x8a\xe8\xdc\xef\x02\x92\x2b\x96\x4a\xf1\xf8\x3a\x4d\xaa\x45\x7d\x6d\x01\x5a\x93\x85\x82\xf0\x75\x9c\xc8\x8d\x61\x6e\x62\x96\x80\x06\x40\x04\x70\xc4\x62\x19\x8e\x52\x39\x6a\x8b\xd8\xcb\x97\xaa\x70\x61\x18\x47\x95\x30\xaa\xd0\x49\xd9\xd6\xa9\xe3\xe0\x12\xa0\xe7\x1e\xb2\x79\x86\x19\x39\xe2\x2c\x89\xa5\xd2\x87\xbf\xfd\x80\x3e\x28\x56\x7b\x1e\x2f\xb4\xd4\x39\x59\xd0\x80\x4d\x4d\xae\x83\x1e\x87\xa4\xfa\x0d\xb2\x1e\x09\x03\x86\x98\xb0\x7b\xcd\x3b\x00\x4f\x88\xe5\xab\xcd\x69\xf0\x22\x32\x10\xe7\xf2\x8c\x96\x56\x24\x35\x2c\x1f\x4d\x53\xbd\x31\xfa\xac\xe5\x65\x94\x21\xe1\x22\x91\x49\x08\xee\x51\x5e\x70\xd3\x34\x58\x39\x29\x2a\x0f\x72\x4e\xc5\xa6\xa1\x34\x16\x1c\xc1\x58\xa8\x30\xb3\x25\x7c\xe1\xe6\xd6\xf4\xcb\xd3\x7a\x39\x36\xac\xd2\xa0\xd2\x02\xc1\x46\xf2\x4e\x61\x3d\xed\x4a\x08\x65\x8f\x4e\x57\x54\x84\xfa\x00\x88\x40\xae\x81\x59\x2b\x12\x6c\x0a\x19\xb2\x58\x26\xa9\x32\x9e\x39\xe6\x64\xc2\xa2\x64\x96\x2a\xee\x0f\xed\x77\xb5\x4c\x84\x4c\x72\xf1\x5e\xb3\x5c\xc5\x7a\xf3\x55\x38\x5b\xf0\x22\x53\x19\x8d\x22\xaf\x13\x9d\x16\x5a\x42\x50\x46\x8d\xc7\xe3\x97\x6e\xae\x80\xff\x7a\xc1\xc4\xf8\x3f\xff\xc6\xd2\xd5\xf8\x3f\xff\x96\x66\x22\x7a\xf5\x1f\x2f\x77\x4d\x86\xa0\x8f\x23\x5e\x85\xf7\xc2\x29\x2c\xd4\xe7\x44\xd6\x3f\x83\x7a\x55\x26\xa9\xc1\xbe\x3d\x57\xcc\xd4\xb1\xbf\xd5\x37\x3d\x1a\x67\x4e\xfb\x9b\x79\xbc\xb8\xb1\xe9\x5e\x7d\x6b\x57\x5b\x15\xa4\x91\x7b\x5f\xdd\xcf\xc1\xc7\x4c\x2e\xf4\x61\xb5\xe7\x8b\x09\x65\x02\x02\x68\x5a\x6a\xeb\xeb\x3d\x53\x26\x29\xbe\xde\x20\x54\xb2\x98\xa3\xf6\xfc\xb9\x42\x74\x4b\x63\x3c\x03\xa6\x11\x17\x4a\xcb\x43\x90\xe7\x87\xc8\x3b\xaf\xc3\x64\xfd\xea\xe8\x6d\x66\x26\x30\xb3\x18\xe0\xa3\xb3\x3e\xcc\xe3\xc5\x0e\x54\xe6\xd4\x6e\x4b\xb1\x45\x66\x87\x80\xb3\xb1\xf1\x10\x7a\xf6\x9a\xdf\x8e\x23\x2a\xfc\x5e\xd3\x55\x9e\xe5\x21\xd3\x36\x51\xa0\x26\xaa\xf4\x5d\x8f\xa0\x06\x58\x42\xfd\xb3\x12\x5d\x2c\x88\xe0\x4a\xde\xb9\x24\xc0\xb7\x0c\xf7\x32\x97\xac\x41\xe0\x94\x6d\x6e\xfc\x0b\xe3\x4b\x6e\x51\x81\x13\x99\xed\x0d\x00\xa1\x09\xd3\xb4\xe4\x8e\x26\x21\x26\x5a\x36\x5e\x6c\x39\x13\xa8\xf1\xc2\x02\x9c\x27\xa1\x44\xe9\x2c\x83\xaa\x63\x7b\xe8\x35\x39\x97\xa9\xd7\x7b\xd0\x88\x70\x58\xbf\x9e\xa9\x58\x0a\x55\xe4\x03\xe6\x8a\xa4\xd0\x0b\x0e\x58\x71\x9d\x83\xf1\xbc\x37\xcb\x4e\xe1\xe4\xea\x52\xb3\x69\xf8\x1d\x8e\xe3\xeb\x7a\x9e\xa5\xa6\x4d\x79\xfc\x06\x05\xb6\x2a\x0a\xe6\x45\x5b\xaf\x53\x9f\x9e\x99\xb0\xe3\x9b\xfd\x2b\x9a\x78\x11\x21\xb8\x4a\xc6\x31\xa3\x98\xa4\xdd\x1e\xd9\xc9\xd4\xca\x6a\x5c\x2c\xb1\x7c\xb5\x0c\xd9\x97\x56\xfb\x01\xec\x49\x43\x2c\x4a\xcc\x92\x35\x57\x8a\x6f\x18\x39\xfb\xc4\xa1\x55\xc5\x19\xc7\x1d\x7a\x00\x56\xd5\xac\xcd\x34\x91\xf7\xdb\x53\x23\xab\x5f\x45\xfa\x48\xf5\xbc\xb1\x5f\x4d\xdf\xb6\x77\xe0\x3f\xf8\x7e\x7a\xef\x30\x84\xcf\x15\x61\xeb\x39\x0b\xf5\xf1\x84\x44\xdc\xb1\x1e\xc1\x68\x4e\x15\x29\x0f\x65\x12\x51\xef\xaa\x67\x76\x17\x3f\x31\x45\xcc\x8f\x75\xc3\x2c\xde\x01\x5f\x75\x74\x51\xc2\x63\x08\x0b\xdf\xe2\x11\x3c\x0e\x9e\x8b\x13\x89\xda\xea\x68\x4b\x02\xdd\x23\xc9\x30\x58\x2d\x8b\x55\x9a\x30\xba\x76\x79\xd2\x02\x42\xcf\x9f\xfb\x5d\x85\x6d\x8d\xf6\x60\x45\x39\xb0\x9a\x57\x48\xf2\x4d\xd4\x7e\x31\xc3\x85\x0b\x6e\xe3\x84\x6a\xac\x3c\x4f\xc5\x66\xe6\x10\x7c\xc7\xc5\xd5\x56\x04\x58\x82\x7e\x27\xd8\x97\xbe\xdc\x6f\x40\xb6\xb5\x8a\x99\x06\xf4\x98\x71\x8a\x80\xd8\x60\x1d\x9f\x51\xed\x94\xab\x0f\x73\x4a\x53\xe8\x49\x9f\x3b\x47\xd4\xd7\x6d\x01\xc6\x31\x21\x67\xf2\x8e\x25\x56\x61\xb3\xd4\xd7\x38\x61\x61\x16\x60\x62\xa6\x51\x16\x83\x7e\x52\x04\xba\xe9\x37\x7c\xb9\xca\xdb\xfa\xb1\xac\xfe\xd2\xea\x77\xa7\xef\x49\xa6\xe8\x92\x91\xf9\x96\xcc\x35\xef\xa6\x59\xc4\x2c\x26\x6b\x99\x20\x3a\x2f\x61\x89\xd7\xea\x01\x18\xe2\x4c\x2e\xcf\xd8\x86\xf9\xe2\x45\x6a\x3b\x62\xdb\x96\xa0\x0e\x09\xb5\x20\xe1\x77\x9e\xe5\xd1\xe1\x3d\x1a\x70\x41\x2e\x4a\x16\xb0\x5f\x23\x3a\xbe\xb0\xf2\xfb\xc5\x62\x81\x92\xfb\x44\x2c\xa4\xfe\x17\xca\xed\x5a\x3e\xd2\x42\x7b\x93\x9c\x18\xc9\x25\xa6\xc7\x60\x58\x06\xd4\x6e\xb2\x1e\x2c\x4d\x68\xc0\x48\xcc\x63\xb6\x6f\xcd\x59\x9a\x9b\x33\x41\x85\xcc\x56\xa9\xf0\x75\xfb\x21\x0d\xa0\xb2\x85\x06\x19\x0a\x69\x1f\x5c\xd6\xe9\x62\xb1\xf8\x7e\xbc\x23\xf0\xe1\xb6\x4e\x80\x97\xeb\xc5\x7b\x1c\x97\xdb\x37\x09\xdb\x2b\x29\x6f\x5d\x5e\xf7\xe7\x9f\xfe\xa7\xc1\x46\x18\x8f\x70\xdb\x2a\xf8\x43\x1f\x36\x64\x31\xf5\x69\x33\x8a\x26\x63\x30\x4e\x65\x6c\x76\xd9\x2b\x80\xe9\xef\xf5\x3e\xcd\xb7\x40\x22\x45\x58\xef\x61\x2e\xd3\x54\xae\xc7\x96\x89\x35\x76\x5f\x45\x17\x79\xa6\x4e\x2f\xa3\xc0\xb5\xd0\xcd\x53\x12\x27\x6c\x03\xa6\x4c\xe4\x60\xc1\x29\x5f\x77\x6f\xe4\x22\x74\xe1\x9b\x6f\x63\xaa\x94\x49\x8c\xb3\x95\x19\x51\x77\x3c\xf5\xc7\x44\xa4\xd2\xcc\xd4\xe0\x93\xb9\xa9\x1b\x94\x9b\xc8\x31\x74\x0b\x87\x30\xa1\x7d\x06\x4c\x68\x61\xf5\x32\x60\x40\xc8\x40\x4f\x30\xdf\x6a\x06\x35\x42\x3d\x7c\x22\xb3\xe5\xca\x1e\x48\x23\x4e\x42\xcf\xfb\x38\xcc\x9d\xc9\xd3\xe3\xeb\xd3\x34\xc7\xc4\xef\x79\xf5\x80\x62\xa5\xc5\x59\x44\xc8\xee\x8a\x0a\xf2\x8b\x88\x15\xe7\x76\xf6\xc7\x9c\x67\x4b\x23\x8b\x9d\xc9\xe5\x49\x22\x21\x0f\x7b\x63\x2f\x0d\xf4\x02\xba\x79\xc7\xd6\x32\xd9\x4e\x13\xb9\xe0\x11\xf3\x14\xb1\xeb\x35\x97\x2b\xbe\x06\x3d\xe8\x31\x8d\x82\xaf\x13\x1a\xaf\xbe\xa1\x62\x79\xb4\x48\x1f\xb6\x32\xdb\xdb\x89\x05\xd2\xc3\x7b\x83\x4d\xb2\x1c\xce\x4c\x7e\x23\x55\x7a\x14\x34\xa8\x8e\xcb\xf7\xff\xa4\xf9\x5b\x17\x17\x80\x52\x41\x1f\x69\xd5\xa0\x26\xc9\x55\x0c\xba\xe9\x52\xda\xab\x43\x0b\x9d\x40\x61\xd8\x91\x4e\x69\xe6\x54\xb1\x68\x41\x5e\xd0\x45\x83\xc7\x08\xe0\x07\xd3\xf7\x8a\x1b\x79\x3b\xef\x8a\x21\x53\x8c\xe7\xf7\xe5\x98\x7c\xb5\xcd\xa3\x62\x8e\xbd\xa5\xbc\x49\x9e\x9a\xca\xaf\xca\xce\xbb\x56\xbe\x69\x02\x4e\xf7\xc7\x12\xe6\xe8\xee\xe7\x9f\xfe\x7e\x72\x79\x31\xfd\xf9\xa7\x7f\x80\xef\x80\x14\x39\xbe\xb8\xa3\x26\xf2\x3f\x8a\xe4\x1d\x51\x72\xcd\x08\x16\x72\x6e\x13\x38\x60\x76\x2e\xe8\xf4\x7c\xf6\x51\xc6\x81\xe8\x37\x9a\xd0\x35\x33\xc2\xdd\xe5\xe9\xec\xfd\xe5\xb9\xee\xf5\xe8\xf8\xf8\x74\x3a\x1b\x93\xf7\xfe\xec\x5c\xa6\x21\xc7\x89\x41\xbc\xd3\x56\x66\x20\xf7\x97\xb1\x92\xbb\xac\xc9\xf9\xf4\xfd\x4c\xaf\x0b\x50\xd5\x97\x2d\xf8\x04\x10\x89\xc5\xc5\xa9\xc5\xa5\x55\x6c\x4f\x53\xec\xc9\x04\xd6\xfd\xfc\xd3\xdf\x71\x5a\x3f\xff\xf4\x0f\xaf\x40\x83\x46\x0e\xbb\x2f\xb5\x09\x11\x69\xb0\xf9\x8a\x2a\x70\x4f\x41\x2f\xed\x38\x91\xd6\xc5\xc4\x6e\xb2\xaf\x77\xff\x91\x02\x00\x1a\x60\x82\x5c\x26\x72\xa7\x0a\xa8\xac\x82\x38\xd9\x4e\xad\x71\xff\x72\x19\x99\xc0\x39\xf7\xcd\xa9\x69\x02\xed\x6a\x0a\x8d\x12\x77\xc6\xc9\x6c\xc3\x03\x76\x29\xb3\x54\x33\xc2\x90\xa5\xb5\x3b\x14\x95\xab\x92\x45\x1e\x52\x5c\x14\x49\x5e\x69\x68\x74\x02\x86\x41\x5b\xb3\xd0\x0c\xe3\xe5\x46\x21\x3f\xc6\xbe\xa6\x62\xf6\xb2\xc2\x51\xb6\xe4\xe7\x72\x36\xbd\xbc\x98\xdd\x7c\x75\x71\x31\x43\xae\xae\xa8\x5b\xd4\x28\xaf\x35\x24\xfb\x70\xd6\x8a\xe5\x23\x4c\x14\x5f\xaf\x05\x5b\x2e\x02\xcd\xdb\x36\x0e\xd7\x48\xe7\x52\xec\xb2\xd8\x12\x66\xf2\x74\xca\x55\xa9\x38\x53\xc4\xe8\xc6\x18\xd9\xbd\x72\x02\xb0\x60\xe0\x85\x85\x85\xde\x3c\x3d\x66\xfe\x2c\x9c\xad\x07\x03\x29\xed\xb1\x14\x42\xf3\xb4\xb7\x13\x01\xe1\xf8\x4d\xe6\xb7\x56\x9a\x6b\x4f\xf3\x25\x28\x9b\xb9\x58\x9e\xb0\x88\xfa\x7c\xd6\xda\x26\x54\xeb\xa4\x59\xc6\x6e\x9f\x8c\x51\xae\x9d\xcb\x90\xa9\x33\xae\x3a\xfd\xc4\x4e\xdd\x0f\x8e\x27\x27\x97\xfa\xa3\x72\xa2\x74\xfd\xeb\x73\xb0\xa4\xdb\xde\x47\x42\xda\x1a\xd7\x50\x19\xb2\xc5\x42\xb1\xa6\x5b\xbb\x5f\xa8\x85\xca\x89\x11\x15\x79\x0a\x0e\xe6\x28\xbf\xcc\xdb\x86\x5c\x79\xc6\x8c\xa9\x11\x6c\x50\xa4\x40\xd9\x2d\x25\x5e\x7b\x16\x80\x96\xcc\x83\x0b\xca\x23\xcd\x68\x4f\xc4\x5c\x66\x22\xd4\xec\xc3\x54\x26\xdd\x49\x7a\x9f\xbf\x6d\xf8\x10\xe1\x0c\x52\xd3\x28\x64\x11\x5f\x73\xbd\x36\x03\x77\xdf\xd4\xdf\x9f\x4c\x0f\x66\xc7\x53\xa3\xcb\x04\xba\xe2\x68\x45\x90\xda\xfa\x4c\x21\x40\xd9\x73\x7a\xef\xeb\x59\x0a\xc2\x93\x84\xa9\x98\x61\x19\xd9\x22\xc5\x45\x06\x89\x9e\x2d\x91\xb0\xe8\xc2\xe4\x62\xd0\x34\x7e\x23\xb9\x97\xce\xd0\x20\x80\xb4\x35\x40\x3e\x82\x0c\xf3\xfe\xc8\xc5\x82\x50\x9c\x0f\xb0\x18\x7a\xb6\x49\xc2\x82\xb4\x5a\xca\xe7\xb4\x29\x08\x5b\x26\x6e\xc0\x7e\x91\x1a\x98\x2a\x92\x06\xb1\x13\x7f\x3f\xc2\x90\x64\x53\x2d\x4e\x26\x24\x0b\x1b\x5f\x7b\x89\xcf\x5b\x2d\x89\xd1\xe0\x76\x54\x8a\x4d\xda\x37\x69\x1a\x0b\x9a\x60\xa3\x91\x8b\x0c\xa2\x3c\xb5\x28\xb0\xc9\xbd\xf4\xe7\x9f\xfe\x9e\x06\xf1\xcf\x3f\xfd\x63\x4c\x66\x85\x5d\x84\x02\x33\x01\x87\x04\x61\x04\x1b\xbd\x9f\x2b\x49\xd1\x54\x2f\x64\x83\x52\x7f\xe6\x94\x6b\xc0\xa6\x70\x24\x14\x51\x6a\x65\x4d\x23\xfa\xda\x9d\x7c\x73\x3c\x2d\x19\x2e\x82\xf8\xf0\x93\x4f\xbc\x16\x69\x0d\xb3\x37\x5f\xec\x43\x93\xd7\xbf\xfd\x1d\xfe\xe3\x93\x4f\x8b\x7f\x7d\xf1\x0a\xff\xf5\xe6\xb3\xcf\x3e\x35\xff\x7a\xf3\xe6\x4d\xfe\xaf\xdf\xfa\x68\x76\xef\x5c\xd2\x32\x95\x36\xf3\x7a\x20\xd7\x73\xe3\xe9\x00\xc6\xe3\x9c\x20\x8b\x10\xa0\xb4\xdf\xa8\x78\x27\xb9\x6f\x43\x11\xd0\xee\x3d\x59\x5d\x69\x64\x62\x7f\xba\x78\xb3\xa7\x6d\xc4\x39\x1f\xa0\x89\x07\x71\xfb\x68\xce\x4f\xd2\x9a\xc3\x63\xd4\x98\x13\x63\x94\x8f\xdc\x8c\x0e\x1f\x90\x88\xd5\xa2\xc3\x8b\x2c\x7d\x20\x3e\xac\x7d\xd9\x8c\x10\xbd\x38\x6b\xd1\x0b\x21\xca\x2c\x5d\x4a\x17\x21\x02\xa3\x5a\xad\xf8\x6e\x9f\x92\x54\xf4\x00\x94\xd8\xa4\x24\xd1\x58\xf2\xe3\x50\xa2\xaf\x67\x8d\x25\xff\xfd\x51\xa2\x34\xe7\xe4\x71\x70\xa2\x04\xd9\x9e\xa5\x41\x08\xda\xaf\x3c\x23\xb9\x39\x43\xd2\x98\x9f\x9d\xd3\xe4\xc5\x54\x5a\xf0\xd7\x6b\x5c\xb2\x54\x6f\x25\x6c\x23\x8a\xb0\x69\x10\x96\x3c\x19\xf4\x29\xd4\x1b\xad\xd1\x2e\xe2\xdf\xf3\xab\x0e\x69\xe7\xc1\xe8\xb6\x11\x89\x7f\xfe\xe9\x3e\x22\xf3\x01\x23\x97\x06\xf8\xb7\xc2\xc8\x8c\xa6\x59\xc2\x4e\x58\xca\x82\xf4\x62\xc3\x92\x84\x77\xeb\xc5\xdf\xfa\x3e\x72\xcb\x0c\x4b\xfb\x1b\x14\x54\xc4\xd6\xfe\x93\x92\x32\xa3\x06\xfa\xd6\x54\x53\x4a\x5c\x6c\xc4\x85\xc5\xed\x44\xb1\x98\x62\x52\x3a\x60\x76\x01\xed\x09\xaf\x06\x0b\xf2\xbe\xa9\x7d\xc2\xee\xe9\x3a\x8e\xd8\x97\xe4\x7a\xef\xea\xfc\x68\xf6\x36\x8b\xa2\xed\x25\x15\xa1\x5c\xff\x1e\xaa\x5b\xbe\x3b\xba\xfa\x3f\xee\x8f\xe0\xd5\xb0\x7f\xc9\x20\x0e\xe4\x2a\x8b\xe1\x72\x9f\xc9\xe0\xf6\xf7\xde\x74\x8d\xa4\x48\x48\x09\x66\x12\xf8\xfc\x7a\x0f\xc9\xc8\x42\xa2\xd3\x77\xbe\xfa\x7d\x4c\x17\xa4\x9b\x4a\x63\x25\x69\xb6\x48\x41\xaa\xf9\x2c\x95\x23\x84\xcf\xce\xb2\x2a\x24\xf0\xe3\xc1\x1f\x4f\xa6\x7d\xed\xae\x5f\x57\xbf\x30\x06\x4c\x45\xcc\x1b\xf2\xc7\x93\x29\x51\xb2\xa8\xa2\x49\x13\xbf\x67\x2b\xa0\xc0\x50\x8a\xe7\xcf\x53\xa2\x10\x88\xf0\xad\x5c\x2c\x40\x93\x23\x13\x12\x82\xba\x1b\xb4\xff\x58\x94\x42\xe3\xe5\x3f\x9e\x4c\x91\x2e\x7a\xf5\x87\xc6\x6e\xca\xf4\x59\x60\x22\x64\x61\x61\x9e\xd0\x58\x15\x46\x8b\x13\xb9\xd1\x67\x6e\xce\x52\x50\x23\x15\xae\x83\x0d\xf3\x14\xb9\x02\x6f\xfc\xd1\xce\x2d\x2b\x46\xa3\xb4\xa5\xa6\x4c\x8f\x8f\x35\x4b\xb3\xa3\x0e\x00\x3f\x6c\xa8\x49\xd4\x8a\xcc\x72\x1f\xb4\xd3\xfb\x20\xca\x7a\x98\xc2\x26\x95\x0f\x5c\xbe\xab\x72\x37\xe5\xa2\x8f\x1b\x5e\xc9\xfb\x90\x99\x4e\x41\xa3\xb5\x96\x82\xa7\x32\x4f\xf3\x50\x96\x44\xc7\x4d\x56\xc8\x32\xc5\x2e\xf9\x83\x19\x97\xd8\xa5\x90\xfa\xa7\xc2\xce\xff\xfc\x39\x99\x4c\xbf\xbd\x22\x61\xb6\x5e\x7b\x5d\xf0\xf2\x65\xec\x5b\xef\x49\x83\xe3\x6c\xa0\x4b\xb4\x25\xf3\x6d\xc9\x34\x5d\x56\x67\x7b\xd9\x45\xb3\xd6\x75\x16\xa5\x3c\x8e\xdc\x22\xe3\x58\x24\x0e\x0b\x8c\xe7\x79\xf5\x4d\x2c\x0d\xd8\x7d\x1b\xd8\x5a\x73\xd1\x94\xc7\x2f\x54\x61\x11\x15\xcf\x0b\x98\x27\x50\xd5\xbb\x84\xc6\x4d\xe6\x05\x04\x27\xa0\xdb\xe7\xcf\x0f\x9e\x3f\xc7\xee\x0c\x6e\x25\x2b\x54\xc5\x19\x43\xfc\xf3\xe7\x07\xff\xa5\x61\x71\xb0\xbf\x61\xe9\xea\xf5\x73\xcf\x25\x32\xfe\xf4\x16\x06\x28\xbd\xe6\xee\x90\xb0\x5b\x73\xb6\xe4\xc2\x8e\xa8\xbb\x7b\xfe\x1c\xb3\x92\x45\x4a\x36\x29\xfd\x0a\x10\x3e\x7f\x6e\xc6\x76\xef\x34\x6c\x10\x8f\x37\xea\xd5\xae\xfa\xe0\xbc\x63\xac\x52\xd4\xff\x9a\x60\x7b\xab\x26\x2d\x6f\xb1\xa9\xdb\x64\xa2\x41\x6d\x7d\x16\xbf\x4a\xac\x6e\x7a\x01\xd7\x54\xe0\x76\xb5\x2c\x90\x71\xb5\x42\xbd\xf3\xba\x90\x52\xf2\xd6\xad\xb0\x52\x63\x72\x2e\x53\xc0\x11\x84\x89\x0d\x4f\xa4\xc0\x6a\x50\xd2\xe4\x9e\xa4\x82\xcc\x35\x2d\x5a\xb3\x94\x46\xfb\x26\xb5\x73\xb0\x62\x2a\x4d\x68\x2a\x13\xef\x84\x03\xa7\xb0\xbc\x46\x11\xb1\xe6\xc8\x12\x4e\x53\x16\x6d\xcb\x67\x47\x66\x6e\xf1\x0c\xe4\x72\x65\x70\xdb\x10\x1b\xad\xd1\x98\x09\x0a\x34\xf6\x1d\x46\x7e\xfe\xe9\xbf\x03\x1a\xf1\x9f\x7f\xfa\x1f\x37\xe0\x4c\xf7\x7b\x11\x33\x71\x95\xd2\xe0\xd6\xfd\xd0\x7b\x73\xac\x97\xea\xcf\x3f\xfd\x77\x4a\xe3\xbc\x2b\xf7\xf4\xe8\x31\x1e\x7c\x6e\x2e\xd9\x22\x61\x6a\x05\xe7\x62\xe3\xcd\x11\x5a\x3a\x40\x93\x86\xef\xf2\x4a\x72\xe0\x91\x43\x68\x6a\x10\x52\xa3\xb0\x91\x30\x15\x50\xa1\x4c\xb6\x41\xf7\x8e\x49\xb2\x61\x09\x5f\x6c\x8d\x37\x2b\x24\x7e\xc1\x1a\xfa\xf8\x8d\xa9\x13\xe5\xc5\xb1\xc6\x65\x57\x23\x3d\x65\xd2\x72\xe7\xc7\x7b\x83\xb1\xcf\xaf\x76\x64\x56\x78\xcc\x5b\xdc\xc3\x5a\xe9\xa6\xfe\xf4\xdd\xec\x7d\xf7\xa5\x9c\x4e\xa6\xef\x66\xef\x2d\x0c\xf5\x3f\xc1\xd9\x33\x25\x52\x38\xba\x64\x63\xa8\x18\x93\x2b\xe6\xf7\x07\x30\x47\x5b\xaf\x5a\xf7\xe1\xb8\x01\x7d\xf6\x59\x0b\x66\x69\x22\xc1\xb1\x3e\x7c\x3b\x9e\x8f\xe7\x13\xdf\x57\xad\xa7\x83\x24\x0c\x03\x7d\xfc\xbc\x66\xe4\x78\xa3\xc0\x59\xa8\xca\xb3\x42\x1a\x84\x60\x0c\x73\x60\x42\x74\xd5\x12\xbe\x6e\xe7\x89\xbc\x65\xa2\xe6\x32\x02\xd9\xdc\xe1\x94\x94\x62\x31\xec\xf8\x09\x2e\xab\x23\x3e\xe8\x77\xaf\x76\xf6\xba\xb2\x23\x98\x7a\xea\x9d\xb7\xb0\xdc\x3c\x97\x48\x6c\x4c\xfc\xdc\xfc\xae\x39\x1d\x3b\x77\x4d\xd7\xbc\x90\x60\x68\x6e\x2a\xa9\x15\xc0\xa4\xb5\xa4\x5e\x13\x66\x9f\x75\xbc\xe5\x51\xca\x12\x88\x71\x6b\x74\x65\xe8\xd3\x8f\x16\x6f\xde\x36\xfb\x7c\x54\x8f\x5e\xfd\xa3\xa2\xc4\x63\x90\x8b\xf5\xae\x69\xdc\x07\x11\xc8\x02\xb6\xe0\x11\x1b\x93\x3f\x69\x16\x84\x6e\x21\x3c\x04\x4d\x76\x54\x2c\x0d\xe9\x30\x0a\xa2\xbc\xb5\x95\x02\xb8\xdf\xc5\x20\x75\xf4\x32\xf9\x6c\x5e\x2c\x1c\x82\xe3\x1a\xf4\xd7\x34\x8e\x19\xc6\x1b\x89\x54\xe2\x45\x69\x72\xdb\x32\x41\xa2\x2c\xd1\x17\x8b\x92\x90\x2f\x30\xc7\x35\x89\x69\xba\x2a\x05\x66\x1c\x24\x99\x38\xb8\x37\x32\x85\x9e\xf8\x43\xcf\xa9\x06\xf1\x34\x91\x73\xb6\x03\x5e\x68\xf8\xd2\xee\x10\xb8\x63\x56\xd4\x9d\x5e\x8e\x03\x73\x52\xa0\xdb\x26\x4d\x53\x2d\xb7\x62\xaa\xe0\x00\x14\x17\x65\xcf\x07\xd8\x1d\xbe\x30\xe1\x54\x42\x7a\x39\x0e\xba\xa1\x3c\xd2\xed\xc7\x65\xc7\xcd\x35\xbd\xb5\x7e\x97\xe0\x5e\x69\x7c\xcc\xf9\xc6\x08\x02\x76\xfb\x1b\x44\x42\xbd\x2f\x20\x0c\xee\x83\x97\xba\x96\x22\xa1\x9b\xe3\xe9\x7b\x77\x53\x3e\x7f\xb5\x7e\x30\xbe\xd0\xd0\x9c\xf1\x35\x93\x59\xa7\x59\xb4\xb4\x03\xe6\x9b\x36\xd8\x03\xa0\x7d\x2b\xb3\xf1\x74\x25\x18\x83\x2f\xe6\xab\x7d\x07\x6b\x82\xca\x13\x35\x9a\x5c\x15\x6a\x86\x46\x86\x00\x38\x7d\xb5\xa2\xde\x1d\x84\xfb\x85\x0e\x3c\x51\x54\x46\xf7\x2d\x69\xf4\x90\x23\xd7\x9b\x68\x77\x6a\x8c\x19\x96\x8d\x83\x73\x11\x8b\xa8\xe5\x72\x5a\x5c\xa4\xfd\xc6\x1c\xcc\xb9\xdb\xbe\xee\x51\x5f\x27\x13\x4c\x20\x93\x3c\x87\xbe\x13\x67\xb8\x96\x99\xc0\x64\x83\xc6\xef\xc5\x49\x66\xed\x55\xff\x27\xb6\xc5\xc2\x46\x77\xe3\x84\xdc\xf3\xf2\x4a\xe5\x7c\xce\x43\x8f\xcd\x3b\xaa\x25\xb7\x8f\x47\xcf\xef\x68\x72\xfb\x8e\xaa\xee\xf8\xde\x49\xe5\x03\x7b\xf0\xd6\xfa\xdf\xae\xb8\x6d\x6a\x28\x70\xbf\x4a\x7d\x32\x9d\xe1\xa1\xd0\xfd\x90\xb9\xc6\xa9\x58\xa0\xe0\xaa\x48\xf9\x62\xab\x55\xae\xd8\x3d\x0d\x59\xc0\xd7\x34\xb2\x99\x9c\xf5\x01\xf2\x9e\x93\x94\x44\x8c\xaa\x94\x7c\x81\x7d\x42\x96\x6d\x61\xc2\x86\x91\xa2\x06\x11\x55\x2b\xeb\x42\xb6\x35\x27\x70\x6d\x67\xe1\x97\x08\xac\xab\x09\x98\x58\xb6\x2a\x65\xeb\xd2\x36\xde\x2f\x16\xaf\xe0\x79\xec\x52\xf2\x76\x77\xce\x8f\x66\x17\xc6\x50\x94\xb3\xed\x48\x98\x1f\xb8\xdd\x53\xa9\xd2\xef\x12\x9e\x32\xf0\x2a\xd9\x19\xf5\xfb\x3f\xaf\xf2\x86\xe0\x63\xd5\x88\x25\x34\x6f\x17\xea\x9d\xa1\xe4\x4e\x77\x55\x77\xd8\xcf\x53\x18\x05\x2b\x16\xa2\xeb\x9a\x20\xec\x3e\x4d\x28\x49\x98\xdf\x7d\x6c\x8e\x82\x58\x1e\x49\x4a\x30\xee\x1c\x82\x22\x61\x90\x3b\x8a\xa4\x3d\x88\xe4\x7c\xce\x12\x9b\xbb\xbf\x84\x87\x9a\xb3\x83\x2a\x27\xf4\x42\x06\x41\x96\x68\x82\x64\xbf\xa6\x71\x1c\xd9\x54\xaa\xa5\xb3\x82\x8a\xc3\x9f\x7f\xfa\x1f\x2f\x6a\x33\x46\xbc\x3a\xaa\x1c\x7f\x94\xf7\xbf\xed\x6a\x77\xae\xdf\xfb\xdd\x03\xa4\x42\x23\x0a\xd8\x00\x2a\x90\x7f\x6d\x95\x9d\x62\x8f\xdb\x25\x80\xa6\x83\x53\xb2\x55\xee\x24\x01\x98\x99\xf8\xa7\x6c\x64\x02\xd4\x55\xa4\x0e\x17\x8d\x94\x92\x2b\xa3\xa4\xd2\x4c\x35\xb0\x17\xa0\xb9\xc8\x3d\xc9\x5b\x3a\xcd\x05\x57\x85\x69\x5f\xef\x64\x72\x4b\x13\xb0\x1b\x62\xda\xdd\x33\x2e\xb2\x7b\xeb\x52\x36\xcf\x96\x08\x8f\x3b\xea\xf7\x66\xe4\xf7\x68\xb3\x30\xed\x6d\x16\xb8\xcf\xc6\xaf\x5f\xe7\x8a\x41\x4d\x7f\x51\xc1\xb7\xd1\xbf\x6b\x92\xb4\x4c\x18\x6d\x70\xf0\xdd\x1a\xfe\xd8\x7a\xc7\xe6\x9e\xad\xa9\xdc\x27\x94\xac\x9c\xd8\x16\x8c\x3a\x2c\x87\xb2\x78\x2d\x7b\x8a\x2e\x4b\xea\x8d\xd7\x0f\x11\xa7\x36\x6f\x8c\x85\x64\x57\x99\xfd\x36\x9b\xb3\x73\x19\xb2\xa9\x4c\xd2\x4b\xcd\xec\x77\xdb\xfe\xff\x50\xfb\x84\xac\x64\x14\xaa\x5c\xdb\x0c\x46\x86\x04\xdf\x80\x7a\x76\xe1\xaf\xe5\x6c\xc2\x3b\x49\x11\xdc\x39\x26\x17\x1a\x6b\x64\xa6\x94\x2a\x72\x05\x68\x75\x71\xa3\xc0\x9a\xf3\xf2\x01\x1d\xe2\xf1\x46\x99\x60\x1a\x04\x7d\x86\x5c\x13\x53\xcc\x4e\x0b\xf6\x0e\xb5\xe4\xc8\xc0\x50\x11\xb6\xba\xdc\x1a\xcf\x03\x77\xa3\x3e\xd5\xc4\xec\xf0\xd3\x4f\x7e\xfb\xe6\xb7\xde\xc8\x97\x66\x8b\x2c\x15\xdb\x0b\x7f\x8d\xa5\x51\xb7\xcd\x73\xd4\x69\xd2\x8c\x4d\x3a\x03\xf2\x5f\xe3\xff\xf4\xbd\xbf\x1f\x15\x95\x7f\x46\x5c\xa4\x23\x99\x8c\xb0\x37\x37\xbf\x5b\x69\xf5\xcd\x16\xcb\x48\x2e\x7b\x4b\xac\x67\x45\x5b\x8b\x2a\xa1\x56\xbf\x16\xdc\x2c\x65\xc3\x1d\x8b\xe4\xd2\x62\x26\xdf\x0a\x80\x59\x71\xf0\x15\xf0\xcb\x91\x84\xb4\x11\x25\x01\x70\x43\x93\x83\x48\x2e\x0f\x5c\x36\x73\x1c\x49\x6f\x2a\x93\x36\xb0\x46\x72\xd9\x53\xe3\x7c\x66\x5b\x16\xa2\xf8\xb2\xa4\x60\x76\x8e\x24\x56\xe0\xd3\x32\x53\xd3\x56\x9e\x5d\x7c\x6d\xf1\x74\x59\x01\x1a\xc8\x11\x3a\x72\x3f\x60\x25\x57\x6c\xc3\x12\x9e\x6e\xf5\x5e\xf4\x59\x8f\xdb\xde\x5d\x95\x32\xbf\x13\x3a\x97\x20\x23\x6a\x5a\x17\xc9\x65\x67\x39\x41\xdb\x01\x2a\x1d\x8a\x85\x4d\xc4\x42\x7e\xc4\x7a\xae\x82\x84\xb1\xee\x28\x92\xb3\xea\x17\x8f\xb6\x26\x95\x86\x32\x4b\x1f\x73\x45\xdb\x6e\x74\x7c\x56\x6a\xfe\x78\x6b\xd9\x2a\xe7\x12\x92\x73\x69\x82\x43\x85\xb4\x17\x0d\x90\xa8\x69\xd5\xaa\x20\x7c\x08\x10\xd6\xf4\x1e\x54\xab\x57\xfc\xaf\xcd\x09\xd9\x1b\xb0\xa4\xcd\x55\x76\x14\x7a\xb3\xea\x97\xc1\xf7\xce\x69\x6c\x81\xe7\x56\xb2\x4a\x48\x28\xd7\x94\x0b\xb4\x14\x35\x47\xfe\x41\x82\x4c\x53\x3c\x31\xa0\x82\x50\xa1\x34\xef\xf3\xed\x3b\xf2\x97\x8c\x25\x9c\x61\x72\x9b\x20\x92\x59\x38\xe2\x82\xa7\xf9\x2c\x21\xf5\x5b\x6e\x20\xf1\x7a\xff\x00\x8b\x01\x2e\x65\x2a\x96\x22\xcc\xc3\x4a\xd6\x34\x58\x71\xc1\x72\xf9\x5e\xc8\x0d\x1d\xd1\x98\x93\x17\x32\xd1\x84\xf0\xfd\x3c\x13\x69\xe6\xed\xd2\x36\x1d\xd9\x69\xbc\x1c\x93\x23\xeb\x5e\xb5\x40\x04\xfb\x22\xa0\x0a\x8a\x53\x32\xa1\x78\xca\x37\xec\x25\x59\x33\x2a\x9a\x15\x10\x25\x1b\xb2\x29\xef\x43\xb2\x18\x44\xc8\xf3\xa3\x19\x46\x41\x5a\x7d\x8a\x1d\x18\xb0\x7f\xc7\x09\x7a\xfd\xc9\x6f\xc7\xaf\xc6\xaf\xc6\xaf\x77\x3e\x46\x66\x90\x06\x9b\xbc\xff\x28\x58\xf7\x28\x60\xe5\xf5\xbf\x8d\xa6\x23\x9f\x31\xee\x35\xfa\x47\x34\x64\x81\x5a\xcf\xb9\x60\x21\x4a\xd0\x58\x02\x69\x5c\x3a\x69\x2f\xf8\x02\x20\xf4\xf3\x4f\xff\xad\xaf\xd6\xcf\x3f\xfd\xcf\xcb\x7d\xd7\x65\x47\x31\x2f\x84\x35\x30\x73\x50\xee\xa3\x85\xf1\xf5\x9b\xdf\x8d\x3f\xf9\xfc\xb3\xb1\xf9\xff\xe1\x17\xc0\xca\xbb\xa3\x1d\xba\x2b\xf3\x0a\x6e\x13\x41\xd6\x9a\x0d\x0a\x4c\x9d\x86\x42\x8c\xd3\x93\xb4\xea\xe0\x39\x33\x1a\xe1\xd0\x41\x71\x5f\xfc\xf6\xb7\x9f\xb7\x44\xfe\x36\xdc\x51\x41\x53\x2b\xac\xf7\x0c\x73\x71\xc4\xfb\x6a\x79\x2b\x90\x79\x2b\x31\x2f\x40\x5b\x8d\xd3\x49\x03\x71\x35\x51\x0d\x1a\x9c\x70\x28\x6d\xba\x0d\x41\xa8\x3b\x3f\x12\x4b\x19\xe5\x55\xab\x3a\xc2\x5d\xf2\xdc\x15\x95\x18\x1a\x37\xd4\x05\x7c\x35\x8a\x09\x1b\x31\x38\xb7\x09\xfa\x31\x40\x29\xd3\x88\x9d\x84\x14\xe4\x05\x07\xb7\x1b\xcb\xe2\x16\xd2\xf1\xbb\xa3\xab\xff\xf3\xfe\xf4\xf2\xe8\xe4\x94\xa4\x34\x59\x32\x5f\xa9\xdc\xd6\xf2\x19\x34\xcd\x39\x7c\xcf\xde\x34\xf1\xb0\x9d\x1c\x6c\x17\xff\x5a\xdd\xf4\x7c\x12\xce\x76\x43\x58\x17\xfc\x66\xc4\x0d\x95\xef\x8f\x06\x70\x93\x1a\x17\x2e\xf3\x9a\x42\x60\x2e\x1e\x90\x10\x36\x38\xf7\x2f\x3e\x3f\x9a\x19\x95\x69\x26\xac\x55\xbb\x25\x26\x7b\xce\x56\x74\xc3\x65\x5e\x01\xda\x7a\x63\x29\x34\x75\x37\x06\x36\xb5\x33\xe8\xbb\xb2\xe7\x82\xa5\x11\x17\x2d\x7a\xf1\x36\x78\x83\x2b\xad\x9e\xee\x25\x5b\xf6\x09\xc1\xbd\x28\xb7\xb7\x68\x52\x94\x6a\x8e\x2e\xf3\x04\x68\x1a\xbb\x27\x29\x0f\xb2\x88\x7a\x85\x19\xa4\x18\x45\x01\x44\x20\x86\x14\x7d\x71\x46\xa6\x23\x54\x59\x1c\x14\x3e\x04\x45\xf9\xe1\x66\x6a\x69\xdd\x53\x73\xff\x87\x10\x82\x58\x57\xf2\x0e\x4e\x02\x64\xbd\xc3\xc1\x5f\xac\x58\xc2\x5c\x9d\x8b\x96\x1c\xa3\xa6\x92\x76\x5c\xa0\x54\x3a\x0e\x16\x4b\x5b\xe2\xce\x71\xd6\xd0\x37\x12\xfa\x0e\xe4\x3a\xce\x4c\x8a\x9d\x97\x26\xf3\x6e\xe6\xf7\x16\x2a\x52\x92\xfd\x19\x39\xfb\xef\x8b\x5d\xb9\x31\x30\x40\xc2\xec\x2c\x46\x33\x24\x2c\x4b\x13\x29\xc6\xfa\x57\xef\x6c\xcd\x54\x30\xcb\x4f\x81\xb0\x4f\xd7\x71\xba\xdd\x95\x90\xa2\xab\x3c\x24\x21\xa1\xe9\xaa\xa7\x2c\x34\xf5\x7c\xe4\x12\xb9\xf9\xd6\xe6\x61\x87\x1c\xed\xeb\x4c\x40\x8d\x22\xaf\x4c\x8b\x51\xff\x48\x7e\xd0\xc7\xdb\x84\xb2\xe5\x59\xa2\xf6\x49\xc4\x6f\x19\x39\x72\x34\x8c\x11\xdd\xb2\xa4\x5f\x74\xea\xc3\xa0\x92\xc8\x35\x4b\x57\x2c\x53\x5f\xcb\x77\x2c\x4d\x78\xd0\x37\xb1\xd0\xf3\x69\xe3\xa7\x56\xaa\x55\xe4\x6b\xa9\x59\x3b\xb0\x56\xad\xb1\x89\x9f\xd9\x88\x22\x74\xdb\xb5\x6e\x71\xfa\x2c\x15\xfd\x9b\xc4\xc4\xe8\xef\x5e\xc4\xb1\xee\x23\x06\x6c\x60\x34\x52\x89\x9e\x97\x26\x38\x02\x35\x59\xe6\xae\xe7\x55\xef\xcd\xa4\x48\x02\x31\x8f\x2c\xdc\xc7\x76\x0d\xe4\xd6\x99\x51\x24\x69\xf8\xd1\x79\xd7\x0a\xe0\x3f\x18\xf4\x15\xc0\x5b\x27\xdb\x0a\xfc\x5a\x60\x6f\xb8\x7e\x2e\xac\x6d\x2d\x4f\x2a\xa6\x97\xf4\xf1\x7e\xac\xb5\x35\x36\x78\xa5\x76\x2c\xf0\x1b\xa9\x72\x8e\x16\xed\x75\x36\xb9\x47\xd1\xd4\x8b\x9a\xcc\x06\x9b\x65\xda\x08\x15\x2e\x42\xc0\xd5\xc5\xea\xd8\xc7\xdd\x1e\x33\xcd\x5e\x5c\x7a\x6d\x71\x2e\xbb\x6e\x23\x89\x1e\x7d\x81\xbf\x7b\xf5\xbb\x16\xe1\xa3\x81\xd9\x29\x16\x38\x45\x4d\xfd\x83\x0f\xaa\xf7\xfb\x02\x51\x58\x57\xa0\x01\x4b\xd4\x6e\x50\xc2\xd6\x72\xc3\x6c\x90\x34\x44\xd7\x77\x8a\x1a\xdf\x99\x74\x42\x98\x77\xcd\xe6\x0f\xdc\x30\xe3\x91\x66\xe2\xe4\x6d\xfa\xd2\x0d\x6b\x72\xb4\x98\x33\x56\x8a\xbc\xb7\xf4\x6e\x6c\xd2\x1c\xa3\x1c\x61\xb3\x09\x60\xac\x5b\x4e\xd6\x1c\x4b\x59\x53\xbc\x15\x18\xfc\x69\x18\x96\xe7\x55\xc4\xb3\xd9\xac\x67\x4e\xf2\x02\x13\xd3\xad\xc5\x78\x5f\xa7\x77\x0c\xe7\x62\xd6\x6b\x27\x13\x6d\x4d\xda\x04\x33\xc2\xce\x7b\x60\x62\xe2\x7b\x1b\xd8\x2e\xab\x5f\x94\x3c\x77\xf5\xdf\x35\xa7\x3a\x10\x03\xbc\x16\x01\x74\x45\x4a\x33\x55\x38\x26\x14\x65\x64\x64\x52\x32\x7d\x8d\x6d\xed\x7f\x22\xa4\x18\xfd\x95\x25\x5e\xfd\x33\x77\x34\x36\x0e\x3b\xaa\xca\xe6\x81\x9d\xed\x38\x39\x9c\x66\xb3\xb3\xfe\x20\x9a\xcd\xce\x5c\xc7\x96\x51\x2a\x47\x11\xdf\xb0\xdc\x23\x14\x24\x1f\x44\x10\xa3\xbb\x86\x94\xb9\x06\x3e\x06\x8a\x65\xc4\xb7\xfb\x32\xf4\x21\xd9\xd5\xa4\x0a\x37\x33\x79\x34\x3f\xca\x3c\xf1\xc7\xee\xe6\x54\xb2\xf2\xdb\x13\x1f\x6e\x4e\xc5\x0c\x24\xd6\x72\xda\xce\x87\x3e\x14\xde\x98\x32\xa4\x1f\x98\xb1\x6d\x21\x4e\x80\x25\x22\xb1\xb6\x97\x25\x43\x8f\x14\xe8\xb7\xd1\xca\x56\x54\xe8\x23\x23\x62\x13\xf9\x4f\xa6\xea\x10\xb5\x2f\xde\x14\x45\x81\x14\x2a\x4d\x32\x5f\x4c\x5c\x91\x7c\x64\x64\x80\x3a\x99\x1e\xbd\x2b\xdb\x97\x47\xd0\xb5\xfe\x1d\x36\xb3\xd4\xa3\xfd\xfc\x21\xa0\x03\x27\x9b\x26\x3d\x87\xa7\xba\x58\x91\x56\x98\x86\x36\xbf\x8e\x31\x4d\xe3\x4e\x1b\x0d\x8c\xbe\x78\x1b\x9a\x70\xe9\xe7\x3d\x9c\xf4\xe6\x97\xe5\x69\x54\x34\x1d\x50\xbb\xb5\xa8\x84\xe1\x8e\xe1\x3f\xfa\x45\xaa\x6e\xc3\xd0\x64\xca\x17\x5a\xdb\x11\x9c\xb9\xa6\x3e\x09\x8f\xf4\x89\xcb\x5c\x73\x7f\x1d\x88\xce\x4f\x5b\xa2\x31\x47\x7a\x42\xde\x9f\x7d\x1e\xa8\x6d\x11\x98\x8a\x87\x2c\xa0\xc9\x51\x10\xb0\x88\x61\x2c\x42\x5f\x8e\xec\xaa\xf1\xd3\x5c\x78\x60\xf7\x1a\x5d\xad\x01\x51\xd8\xa1\x1a\xd0\x49\xde\xc7\x47\xcb\x09\xe0\x45\xd0\x23\xf5\x4c\x79\x35\xef\x7d\x5f\x59\x22\x40\xa8\x90\x62\xbb\x96\x99\xcd\x34\x68\x1d\x28\xbc\x6a\x4f\xe4\xf6\xdc\xdc\xcc\x8a\xff\x95\x99\x34\x4b\xe5\x9a\x55\x63\x72\x26\x97\x8a\xdc\xd1\x44\x70\xb1\xd4\x44\x27\xcd\x12\xe1\xd7\xda\xcd\xb7\x98\x14\x16\x52\x80\x5a\xb5\xbb\x13\xb5\x02\x71\xeb\xb4\x54\x21\x2e\x8f\xee\xdf\x64\x91\x60\x09\xc5\x00\x77\x5f\xe7\x2b\xaa\x90\x45\x0b\xb9\x0a\xe4\x86\x19\xbd\x4a\xea\xad\x18\x88\x79\x15\xb3\x72\xa6\x41\xef\xf5\x7b\x08\x97\x5a\xde\xbf\x89\xe0\x29\xa7\x51\x53\x1a\xa2\xb6\x4d\x74\x3f\x2d\x27\x29\xb5\x79\x60\x43\xfd\xca\xcf\xad\x2e\x64\x4e\x04\xd6\xf4\x96\x61\x65\x03\xdd\x71\xc5\xed\x61\x67\x0a\x55\x5d\x5e\x4f\x9e\xa0\xba\x34\xc3\x15\x94\x96\x55\x63\x08\x9b\xd5\x8c\xb8\x26\x0f\x8f\xf3\xc5\x9b\xcf\x1e\xb4\x28\x74\xea\x16\x34\x3a\xe9\x99\x3a\xb2\xa9\x22\xe0\x7d\x44\x5b\x50\x50\xf7\xb7\x7d\xa2\x6e\xa0\x40\xce\xbf\x5e\xd8\x0d\xcc\xff\x21\x21\xb3\xf0\xe1\xb7\xe7\x93\x5d\xbf\xbb\xe3\x09\x5b\x66\x34\x09\xfb\x62\xc9\xef\x2a\x1f\xd4\xd3\xce\xe6\x2d\x1c\xa1\xeb\x49\x72\xf6\xe7\x73\xcf\x1d\x5c\xcf\xe9\xba\x9b\xe9\xfb\xce\xfb\x59\x85\xcb\x00\x15\xbe\x31\x9e\x35\x38\x6c\xe9\x66\xce\x5a\x6d\x67\xee\x55\xba\x5b\x8e\x8d\x12\x7b\xc7\xdb\x94\x2f\xed\x8c\xab\x94\x69\xca\xd0\x4b\x1b\xf4\x9d\xf7\xb3\x4a\x7a\x66\xfb\x0a\x55\x43\x4d\x16\xa2\xf9\xb6\x58\x5c\x29\x60\xe1\xf5\x17\x9f\xec\x7e\xae\xf3\xf5\xf4\xb9\x9b\xdf\x39\x8d\xcb\x73\xd7\x3f\x98\xeb\xe9\x83\xbc\x6f\x1d\x57\x8c\xb5\x5e\xd2\x8f\x59\xcc\x25\x8a\x04\x97\x59\xc4\xa6\x09\x97\x9a\xce\xf6\x5f\x9c\xe7\xe3\xf2\x62\x63\xfb\x2b\x98\x3b\x1a\x94\x1e\xe6\x7c\x56\x40\x62\x64\x15\x90\xc2\x4a\xe2\xeb\xef\x76\x5e\xec\x7d\xd8\x3b\x3f\xbe\x27\x41\xc3\x1f\x4f\xa6\x65\xd6\x4e\xcf\x55\x65\x3c\x35\x65\x53\x20\x5b\xa1\xff\x00\xe6\x79\xdf\x42\x26\xb6\x75\xb7\xaf\x07\x31\x16\xf7\x61\xbc\xab\x24\xfe\xc7\x93\xe9\xe3\xc6\x33\x42\xae\x8a\x07\x85\x32\x1a\x31\xdb\x4b\x86\xea\x05\x62\x64\x62\xca\x26\x61\x26\x55\x10\xd1\xfc\x02\xf9\x1f\x4f\xa6\x5e\x11\xb4\x16\xef\xb8\xbb\x38\x3e\x14\xd4\xfd\x45\x0b\xea\xa2\x6f\x8d\x31\xbc\x83\xa1\x8f\xb3\xa7\x28\xa9\xfb\x35\x8c\x73\x8e\xe3\xa0\x5d\x13\x5f\x17\x35\x75\x3d\x4d\xea\x45\x75\xbd\xf3\x35\xfb\x9f\x97\xd5\xad\x37\x82\xc1\x9e\xaa\xae\xee\x50\x07\x77\xa8\x83\xeb\x6e\xc1\x50\x07\xf7\x29\xeb\xe0\xb6\x95\xa9\x8d\xe3\x68\x7b\x21\xde\x62\xe5\xaa\x2e\x42\x7d\x54\x6a\x8d\x5a\x42\x5b\xd4\x05\x7a\x42\x6d\x61\x91\x21\x9d\xdb\x44\xdd\x3e\xda\x87\x9c\x0a\xf4\x64\x63\x1d\x76\x64\x35\x42\x79\x2e\xd3\x99\x66\x6f\xba\x66\x7e\x92\xb7\x74\x66\x6d\x85\x29\x9b\x3a\x1d\xdc\x62\xd0\x78\x95\xaf\xc3\xcf\x35\xb9\x4b\xb3\xa8\x62\x29\x8b\x6a\x13\x46\xf9\x4f\x40\x42\x7f\xae\x9c\x8a\x64\x50\x0f\xe5\x96\x8b\xa5\xd7\xdd\x47\x65\xc1\x8a\x50\x65\x54\xbb\x81\x4d\x35\x8d\xb5\xc3\x66\x89\xcd\x02\xe4\x83\x30\xa1\xfe\x0c\x6b\x60\xd4\xd3\x8b\x42\x5d\x0b\x15\x5b\x67\x6a\xde\x89\x61\x32\x3e\x03\x13\x30\x11\xb6\x68\xca\x4a\xe3\x43\xbc\x26\xe6\x90\x34\x56\xcc\x39\x23\x86\xfd\xdc\x75\x6f\x31\xcf\x7b\x77\x26\x72\x86\x41\x85\x58\xf8\x07\x12\x4e\x63\x82\x78\xc3\xcc\x62\xb6\x4b\x70\x03\xb6\xa5\x9e\xbd\x50\xb2\x5f\xe3\xba\x8d\x87\x54\x90\xf0\x94\x25\x9c\x62\xf6\x21\xc7\x1f\x1a\xd2\x33\x19\xb0\x99\xa3\xbf\x53\x3a\xe9\xd2\x1a\xae\xf7\x8e\x88\x96\x50\xdc\x52\xc2\xaa\x98\x91\x6f\x2a\x5e\xfe\x94\xe4\x15\x15\xc8\x57\x32\x5d\x99\x50\x5f\x99\x8c\xe6\x54\x01\x78\x8c\x96\x72\x6a\xf6\x4b\xb8\xbf\x61\xe5\x0f\x2f\x6c\x80\x4b\x65\x09\x13\x81\x3d\x79\x23\x27\x19\x9f\xcc\x52\x0c\x9d\xb3\xb1\x58\xa6\x32\x8c\x4c\x20\x95\xa3\xad\xcc\xd6\x30\x61\x11\xe6\x09\xfd\x1d\xc0\x43\x4c\xcd\xf5\xb5\xb0\xa9\x4a\xd1\x17\xbc\x0a\x89\x06\xa3\x99\xde\x4c\xc1\x96\x30\x39\xc3\x12\xec\x9b\x70\x18\xeb\x1e\xfd\xf3\x4f\xff\x38\x97\x29\x64\x0d\x3d\x8a\x22\xe3\xd8\xee\xf6\xed\xef\x57\x7f\x0b\xae\xba\x70\x9c\xf2\x74\x94\x34\xe5\x0a\x92\x15\x62\xc4\xa0\x59\x88\xad\x74\x3a\x26\x47\x26\x8f\x57\x03\x6c\xe1\x68\x52\x61\x8f\xa7\xf1\x01\x37\x4b\xd6\x00\x82\xc5\xe8\x3f\x1c\x15\x31\xc5\xce\x9b\xa1\x0a\xb0\xf7\x4f\xd1\x62\x90\x62\x8a\xbe\xe2\xd3\x3d\x32\x69\xd2\xa6\xc8\x76\x7c\xba\x82\xc6\xe0\x1a\xd8\x4a\xd4\x8d\xbd\x94\xd1\x78\xf1\x41\xb9\x72\x7b\xe5\x68\xa0\x27\xa8\xbe\x96\x4d\xdd\x82\x60\xef\x8c\x4f\x34\x8d\x4e\xfd\x2e\x7b\xbd\x80\x41\x4c\xc1\x56\x48\x3e\x79\x65\xae\x5e\x4b\xdb\x1a\x12\x38\xaf\x7e\x6c\x9c\xb6\x65\x6c\xec\x7d\x0b\xce\xa2\xb0\x31\x12\xa2\x78\x72\xc0\xd0\x1c\x05\x38\x59\xdf\x4c\xc0\x63\xa9\x20\x8d\x4c\xf8\x52\xc3\xa1\xe9\xfe\xdb\x07\xb8\xaf\x17\xfa\x08\xb1\x64\x8d\x1f\x10\x9a\xbe\x74\x4c\xae\xe6\x8a\x60\xce\xe3\x08\x52\x57\xb6\x77\x99\x83\xac\x28\x70\x61\xc8\xb0\x71\x8b\x86\x83\x5c\x83\x4d\x7b\xa7\xfa\x02\xe4\x50\xd4\x74\x09\xc5\x84\x30\x8f\xff\xa6\x6b\x66\xe2\x19\xa0\xb6\x0a\x04\x8e\xb7\xc5\x62\x16\x8f\x63\x5d\x86\x33\x96\x30\x97\x6d\x98\xbb\x78\xb7\x58\x51\x3f\x50\x38\x6c\x07\x62\xbf\xb7\x32\x21\x25\xe1\x6e\x1f\x22\xed\x21\x8d\xe8\x8e\x10\xe1\x6b\xcd\x05\xa8\xc2\x49\xcd\x3d\x64\x36\x67\x36\xe8\xe6\xc1\x65\x0b\x1c\xfd\xdb\x2e\x0f\xf1\x67\xa6\xe3\x0e\x7c\xf3\x9d\x85\x94\xd2\x2b\x56\x5e\x4a\xe3\x45\xc3\xa7\x61\xf9\x1f\x50\x4e\x7d\xf1\xf2\x43\x1d\x00\x76\x8d\xed\x1d\xef\x06\x80\xb2\x84\x7d\xe5\x77\x49\x2b\x1e\x99\x90\x6f\xa4\xca\xab\x45\x15\xbb\xe8\x11\xd4\x8b\xbd\x6c\xef\xb3\x71\x9d\xe5\x55\x20\x9b\x07\x9c\xf8\xae\x07\x99\x06\x89\x54\xc0\xe9\x39\xb7\xb1\x81\x26\xe4\x60\xec\xc4\xed\x04\xe3\x04\xda\xd0\x65\x35\xf2\x82\x99\x64\xee\x5e\x9c\xa7\x25\xc8\x34\xe1\x41\xda\x58\x76\xb2\x78\x2c\x75\x83\x2d\x34\x82\x89\x6c\x42\x79\x39\x56\xeb\x38\x38\x65\x94\x57\x04\xec\x21\x27\x0e\x39\x4b\xd0\x5b\x62\xc9\x37\x4c\x68\xe9\x53\x2f\xbf\xf5\x9c\x37\x33\x88\xce\xb8\xbd\x20\xdd\x1a\x30\x5d\x3c\x42\xa6\xe7\xbb\xed\x09\x7e\x90\x07\x5d\x94\xf9\x2a\xbb\xe2\xf3\x86\xcc\x0d\xc5\x03\xfb\xf8\x2f\x07\x8b\xa6\xca\x03\xc5\x53\x05\x46\x5e\x71\xa0\x05\x1a\xd3\x26\xb7\xc0\xe2\x41\x70\x90\x2b\x48\x61\x0c\xa7\x14\xea\x9d\xd9\x04\xdf\x0a\x7d\x3c\x4d\xd2\x7a\xc8\x65\xb2\x25\x8d\xde\x86\xc5\x53\xc9\x9d\x9d\x96\x93\x29\xd9\x72\x56\x86\x59\x32\xb8\x5a\x4b\x1e\x1d\x50\x97\x48\xc3\x6c\xe5\xea\xe3\xa9\xcd\x78\xfd\xfe\x64\xda\x90\x19\xdb\x3e\x7d\x76\xb5\x39\x37\x41\xf1\xf4\xc8\x52\x50\x6f\xdc\x7d\x50\xba\x33\x17\x14\xcf\xee\x39\x0c\x8a\xa7\xef\x81\xdc\x9d\x6f\x3c\x2f\x3e\xea\x38\x96\xfd\x18\x05\x73\x32\xc1\xa4\x97\x77\x8c\x58\x18\xcd\x4a\xf3\x34\x62\x29\x24\x42\x84\x04\xec\x38\x56\x7b\x9f\x39\x43\xd4\x7a\x54\xfa\xed\x59\xbc\xdb\x95\xbd\xde\x2b\x6a\x84\x74\x90\x95\x2e\xbe\x81\xf5\x21\x2b\x60\x4e\xb2\x61\x9e\x2f\x1c\xf9\xc2\x5b\x34\xbe\xbc\x2c\xec\x01\xb9\x49\x45\x4c\x72\x2c\x37\x87\xc8\x81\xd5\x14\xcf\xf2\x94\x37\x1d\x5c\x9f\x2b\x97\x9b\xab\x03\x46\x2b\x84\xb2\xb2\x10\x30\x6a\x57\x33\x4c\x07\x8f\xb3\xb0\x89\x53\x34\x73\xd3\x17\x83\x75\x62\x00\x5b\x6a\x7f\x07\x0c\xd6\xb1\xf6\x02\xbd\x55\x30\xd8\x35\xe2\xb0\x6b\x83\xc5\xae\x11\x8f\x5d\x6b\x4c\xd6\xca\xf3\x0c\xb8\x0c\x9e\x5e\xb8\x4c\x3d\x40\x00\xee\x96\x7b\x5b\x55\x78\xc5\xe3\x95\x7b\xc9\x0b\xc5\x98\xd5\x7d\x01\x2a\xc3\x9c\xa0\x6a\x2b\x52\x7a\xff\xb2\x53\x1e\x69\x15\x9b\x0d\x0f\xd9\x24\x16\xb7\xf7\x6d\x55\x5e\x8e\xd4\x2c\x93\xba\x34\xac\xaf\xdb\xb9\x4c\xd1\x90\x7d\xd8\x90\x04\xd5\x01\x82\x71\x14\xb6\x76\xaa\x0e\xaa\x80\xe0\x71\xa8\x49\x87\xac\xca\x22\x79\xf7\x72\xbf\x3c\x65\x07\xd8\x08\x55\x5b\x18\xd6\x66\xa7\xef\x50\x05\x80\x9e\x0b\xf4\x97\xb3\x15\x23\xe9\x9d\x84\xb3\x06\x5e\xc8\xf6\x1d\x22\x08\x4d\x84\xb6\x45\x1a\xd6\x8e\xbd\xbb\x10\x76\xf5\xa6\x62\xa5\xa3\x57\x65\x8e\xf4\xba\x5f\x64\x0c\xb3\xed\xbb\x69\xc2\xdd\x4a\x46\x66\x93\x0e\x61\x8b\xae\xaf\x0b\x82\xfc\x7b\xc0\x2e\xbf\x59\x51\xf5\x62\xbd\xbd\x89\xe8\x9c\x45\x2f\x01\xef\x18\x24\xdf\x75\x9d\x4d\x45\x57\xab\x68\x80\x43\x86\xf3\x43\x5f\x84\x51\x6e\xde\x0e\xf5\xb8\x3d\xcf\x9b\x29\xd0\x01\x2a\xfa\xbc\x98\x22\x4c\x8e\xfc\xfc\xd3\xdf\xed\x44\x41\x3b\x6a\x16\xd4\xfb\x58\xe0\x82\x1b\xd7\x5b\x5f\x92\x9e\x83\x5e\x56\x7b\xb7\xed\xab\xcd\x17\xd4\xbe\x98\x6e\x85\x83\x3e\x75\x6c\xb1\x60\x81\x09\xee\x33\x9a\x82\x08\xd0\xaa\x89\x98\x2a\x55\xb4\xed\x31\x75\x21\xc5\xc8\x7a\xc6\xa3\xf9\x15\x23\x1f\x8c\x4e\x64\x21\x93\x35\xab\xea\x20\x5a\xea\xe5\x16\x0f\x1c\x86\x3a\x60\x8a\x32\x19\x8f\x21\xc0\x9b\x40\xe7\xa3\x20\x90\x99\xd8\x85\xef\xba\x2a\x7f\xf8\x8b\xf1\x5f\x15\x94\xdc\xde\xa7\x47\x93\x49\x49\x2c\xc3\x3c\xbb\x0d\x30\x73\x39\x7a\x36\xc0\xe8\x40\xbb\xb8\xe2\xd6\xd3\xd6\x4b\x97\x4c\x48\xd9\x29\xa4\xf9\x29\xcb\x03\x50\x40\xe4\xa3\xc1\x4d\x1e\x02\xf2\xee\x2e\x9b\x14\xc8\x1e\xb0\xf7\x82\x36\x29\x20\xae\x31\xb1\x32\x3e\xa5\x3c\xd7\x44\x6a\xe6\xb7\xe3\xe6\xf7\x63\xec\xc8\x0e\xea\x07\xd2\x97\x4b\x22\x7d\x39\x25\x52\xbf\x5f\x9d\xbc\xd2\xbf\xef\x4e\x97\xe4\xa4\x42\xe3\x86\x58\xdf\xc2\x73\x4c\x26\x1d\x52\x87\x7e\x0a\xeb\x42\xdd\x68\x50\xc8\x21\xa9\xc9\x45\xde\x68\x64\x2f\x3f\x47\xe7\x27\xcf\x1b\xdc\xb1\xdd\x67\x37\x6d\x56\x53\x69\xb7\xbe\x6d\x56\x69\x1a\xf7\x33\xb2\x7d\x33\x9b\x4d\x0b\x23\x52\xa3\x65\x4d\x1f\x0f\xdd\xb4\x79\xea\xd6\xf1\xe6\xe3\x8c\x6a\x6b\x96\xae\x64\xb8\x03\xed\x79\x87\x1f\x3c\x2e\xcd\xc1\x25\xc3\xe5\x30\xeb\x76\xfc\x8a\x74\x9f\x98\x8a\x9a\x35\x14\x61\x2e\x77\x0a\xee\xe1\x21\xf6\x62\x67\xfb\x82\x8d\x97\x63\xf2\xf5\xe9\x6c\x9f\x4c\xdf\xcf\xf6\x09\x4b\x83\xf1\x4b\xf2\xce\x94\x88\xea\x90\x20\x4c\x1f\xfa\xd4\x5e\x5c\x3e\xd7\x4c\xc4\x12\x5c\x5b\xfe\xb5\x34\xae\x31\x4d\x57\x3b\xec\xe3\xf3\xa9\x6e\xff\x14\xdb\xd8\xb5\x83\xdd\x16\x06\x77\x07\x61\x9a\xe3\x7c\xab\x70\x99\x76\x2f\xfa\x6e\x06\x21\x6c\xbc\x3c\x24\x23\xc2\xee\x69\x90\x1e\x92\x83\x85\x94\x50\xf2\x11\xd2\xde\x90\x83\x39\x4d\xc8\xf9\xc5\xec\xf4\x10\x7d\x22\x98\x48\x93\x2d\x59\x77\x11\x97\x8b\xf3\xb3\x3f\x19\x3c\xb6\x25\x8c\x63\x3e\x6c\xf2\x01\xc6\xf8\x00\xde\xcb\xe4\x03\x0e\xf1\xc1\x7a\x2b\x34\x14\x57\x2b\x1e\xa8\x7a\x4f\x73\x11\x15\x33\x79\x6b\x81\x9a\xa7\xbe\x58\xd8\xe2\xe9\x73\xde\xca\x07\x40\x83\x17\x52\xb7\x96\xd2\xae\x01\xd0\x6d\x02\x57\xe3\xc0\xd0\x81\x6a\x27\x29\x38\x12\xce\x99\x05\x82\x91\x7e\x35\xfb\x7d\x68\x41\x6e\x6a\xda\xd2\x74\x85\xc5\x6c\x0f\xf3\x72\xf4\x3d\x84\x35\x3c\x66\x30\x2b\xe8\x2e\x82\x4a\x8f\x76\xfb\x8a\xae\x47\xf8\xd3\xc7\x8d\x80\x7d\xb4\x02\x7b\x07\x2e\x93\x18\x00\x3c\x2e\x03\x14\x37\x25\x6c\x7a\x78\xa7\x7d\x08\x21\xe9\x87\x8c\xba\xbb\xe2\xc1\xba\x27\xbd\x9c\x1c\xbf\x9b\xf6\xb5\x5b\x02\x22\x6a\x9e\xbb\x8b\xa1\xa8\x3d\xf5\x01\xcc\x16\x23\x5d\x65\x08\xf8\x09\x86\xcc\x13\x44\x37\x56\xcd\xc4\xc7\xcd\x8e\x5f\x2a\xf5\x6c\xea\xeb\xe4\x5a\x55\x9c\x34\x57\x85\xad\x47\x8f\xd3\x26\x47\x82\x15\x48\x37\xda\xbc\x69\x31\x04\xf5\x3a\x89\x7a\x69\x3b\xd0\x78\xe0\x4a\xa4\x70\xa1\x04\x40\x09\x20\xf5\x18\x99\x2c\x9c\x3a\xd2\xdd\xe4\x61\xa6\x01\x8c\xee\xcb\xe0\x33\x05\x69\x4e\x4a\xa5\x86\xf3\x0c\x27\x94\xa4\x2c\x58\x09\x1e\x50\x6f\xf1\x9c\xe2\x01\x81\x1e\x95\x56\x7c\x1d\x4b\x55\x38\x96\x62\x76\x78\x48\xe1\x90\xe7\x4e\x5c\xf0\x84\xdd\xd1\xc8\x9f\x05\xae\x78\x10\x5f\x18\x85\x02\x66\x60\x94\x84\x89\xa2\xda\x2c\x78\x8f\x74\x5f\x8e\x4e\xdd\x33\x34\xfb\xf8\xed\xd0\xdd\x8c\x89\x1b\x3f\xdd\xa5\xba\xcd\x13\xc2\x7e\x81\x6e\x87\xb0\x42\xe8\xeb\x34\x58\x49\x72\x89\x24\x9b\xbc\xe0\x63\x36\x26\x31\x17\x4b\xd5\xae\xbb\xed\xb5\xde\x1e\xe8\x20\xf6\x47\x26\x34\x00\x64\x32\xb5\x11\x0a\x1f\xed\xd0\x50\x12\xcc\x90\x1b\x77\xa1\x3c\xb5\x1a\xdd\x46\x28\xf4\x80\x40\x83\x8f\x79\xc3\xe2\x6c\x6e\x57\xc7\xd3\xac\xc8\x4a\xe1\xe4\xe9\xc8\xcb\x33\xb4\x2f\xee\xa3\xd0\x46\x3d\xe4\xa7\xa1\x5d\x3e\xc3\x69\x5f\xba\xd8\x97\x30\x95\x5d\xe4\x8b\xf9\x98\xd8\x08\xd4\x36\xdf\x32\x13\x63\x48\x62\xca\x93\xe6\x84\xc6\xc5\xa3\x85\x5a\x53\x56\xc5\x85\x29\x9d\xcb\x2c\xed\x41\x4a\x1e\x4b\x6e\x14\x32\xd5\xb7\xaf\xdf\xc9\x38\xc7\xc6\x1d\x96\x68\x68\xd2\xee\x11\x32\x90\x8c\x81\x64\xfc\xda\x49\x86\x90\xa9\x65\xad\x1a\xc1\xd2\x6e\x2f\xee\x69\x29\xee\x67\x23\xae\xb9\x32\x59\xb6\xaf\xc3\x9b\xc9\x34\x6b\x06\x58\xc7\x4d\xee\x61\x94\x7e\x98\x39\x3a\xfe\x57\x05\xee\xf5\x9e\x0b\xdb\x47\xa4\xfe\x35\xb5\x2c\x44\x02\xb8\xbc\x80\x85\xc9\x18\x4e\x3d\x4f\xda\x5c\x73\x8c\x5f\x99\xd9\xe7\x53\xf0\x7f\xbf\x84\xe0\x0d\x1b\x8a\x80\xbe\x33\x2f\xe6\x2c\xa0\x99\x32\xde\x1c\x1d\x8e\xc1\xf9\x14\x03\x96\x40\x1f\xb9\x47\xc8\x4b\x34\x27\xda\x64\x77\x25\xff\x96\x2e\x22\x8b\x8e\x2f\x87\xae\xef\xc6\xbe\xeb\xb9\x81\x7f\x80\xb4\x52\xfa\x6b\xf3\xa6\xf8\xfb\xea\x78\x86\x6f\x9b\x87\x31\x3d\x9e\xf1\x94\x59\xf7\x10\x2a\xec\x01\xb1\x26\x05\xcc\x02\xfe\x7a\xf4\xc9\xe7\x9f\xb7\xd8\xd8\x9e\xee\xd8\xab\xa6\xb4\x6b\xf8\x94\xcd\x04\x79\xda\xb5\x1e\xa1\x12\x0d\x95\x6f\xdc\x51\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xc2\xbf\xe2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xa6\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xfa\x33\x44\x49\x0c\x51\x12\xf9\x33\x44\x49\x0c\x51\x12\x4f\x1f\x25\xd1\x52\x0b\x46\xcb\x18\x98\xef\xcc\xf7\xae\xbd\xe3\x96\x53\x6e\xb2\xe3\x3d\x20\xcd\xa1\xf9\x72\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x9b\x51\xe3\x90\xe7\x70\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x2f\x9e\xc1\x82\xef\x3c\x83\x05\x7f\xb0\xe0\x9b\x67\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x5c\x36\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\xf5\x67\xb0\xe0\x57\x9f\xc1\x82\x3f\x58\xf0\xab\xcf\x60\xc1\x1f\x2c\xf8\xf9\x33\x58\xf0\x07\x0b\xfe\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x7d\x46\x18\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\xd2\xaa\x21\x69\xd5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x6c\x9b\xff\x90\xe7\x70\x20\x19\x03\xc9\x18\xf2\x1c\x0e\x79\x0e\x2b\xcf\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\xcd\x42\xe4\x90\xe7\x70\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x59\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xd3\x4a\x06\x5c\x36\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xfd\x19\xa2\x24\x86\x28\x89\xfc\x19\xa2\x24\x86\x28\x89\x7f\xc7\x3c\x87\x7d\x6c\x61\x75\xcc\xd5\x6d\xff\x5a\xa0\xe9\xb2\xe0\x35\x7d\xb3\xce\x94\xab\xcd\x37\x87\x0e\x93\x05\x4a\x51\xd2\x72\x37\x2c\xc9\xbf\x2b\x90\x90\xb1\x6b\x1d\x17\xba\x51\xcb\xbd\x2c\x3c\xbe\x53\x9b\xe3\xb1\x81\x99\x47\xff\x16\xcc\x9a\x07\x62\x8b\xee\x14\xf4\xfc\xe1\x18\x25\x99\x5c\x0f\xb3\xe2\x4b\xcd\x16\x5e\xef\x41\x7f\xd7\x7b\x70\x80\x4d\x5b\x5f\xd7\x74\xa1\x59\x9a\x14\x50\x26\x74\x10\xc9\x3b\x96\xe0\x6c\xd0\x63\xc8\x99\x9c\x22\x72\xcd\xd3\x94\x85\xfb\x5a\x22\x47\x77\x73\x5f\xa7\x81\x14\x8a\x63\xca\x4a\x94\xb8\xaf\xf7\xb8\x58\x70\xc1\x53\x76\xbd\x47\x46\x04\xbc\x54\x9c\xe5\x58\x11\xc7\xcc\x93\x44\x54\xa5\x63\x92\xaf\xcc\x0b\x12\x3d\x57\x1e\x32\x91\xf2\x80\x46\x66\x82\xd5\x7e\xb8\x20\x34\x8a\x57\x54\x64\x6b\x96\x38\xed\xe0\x00\xf8\x7a\x35\x66\x41\x23\x1c\xa2\x29\xd6\xab\xd8\xc4\xc3\x21\xb2\xf5\xbc\x2e\xb7\xc7\x09\x3b\x39\x3f\x9a\x75\x1d\x8f\x29\x36\x23\x5c\x84\x3c\x40\x99\x24\x77\x8d\x5e\xd9\x34\x94\x40\xbd\xb8\xb2\x80\x9a\xb3\x85\xf4\x23\x1e\x2a\xb6\x44\x77\xd7\x38\xd7\xb9\x94\x11\xab\x67\xd5\x6c\xa1\x3a\x15\xa9\x7c\xe6\x4a\x78\x78\xaa\x1d\x39\xcf\x5e\xb4\x98\x07\xb7\xf8\x1f\x99\x79\x11\x90\x5e\x5b\x85\x63\x77\x4e\x82\x71\xe4\x76\xf6\x30\x95\x46\xc1\xd4\x22\x77\x14\xf3\x50\x64\x21\xa3\x48\xde\x21\xd4\x50\xf8\xcc\xc5\x31\xa4\x0b\xbf\x47\xd9\x04\x2f\xf6\x4d\xc4\x53\x96\xd0\x48\xff\xe2\xeb\xf9\xfa\x9a\x8c\x30\x90\x41\x9f\xea\x75\x4c\x13\xae\xa4\xd8\x27\x10\xc9\x64\x85\x0a\xdb\xe5\x42\x4a\x32\xa7\x09\x08\x3a\xf9\x70\xbf\xd9\x71\xb8\x62\x3c\x2d\x12\xb1\xbf\x64\x34\xfa\x12\x3d\xef\x2c\xa1\xe3\x0b\x43\xe1\xb8\x82\x36\x56\x69\x97\x0f\xe9\x47\x22\x3f\xc0\x3c\x68\xe1\x2d\x32\x2f\xfe\x19\xe0\x3f\xc7\xe3\x31\xf9\xd1\x99\x41\x9a\x64\xcc\xba\xd0\xe7\x1e\x68\x38\xc6\x1f\x89\xdf\xe7\xd5\x68\x2b\x3b\x86\x2a\xe6\xaa\x17\xc0\x45\x8f\xc9\xf9\x06\xdb\x71\xbe\x30\x58\xdb\x04\xfd\x5b\xe2\xcc\x59\x0b\xb4\xd0\xdf\x8d\x26\x1d\x2f\x8b\xa1\x67\xf9\xc8\x34\x2d\x76\xc7\xd9\x99\xdf\xc0\x21\xf5\x12\x5d\xd3\x45\xae\xd9\x90\x0b\x68\x0b\xa2\x2d\xfc\x3f\x7b\xf5\xea\x93\x37\xf8\x5f\x7c\x93\x7f\x73\xb5\x92\x49\x3a\x0a\x78\x12\x64\x3c\x05\xc6\xc5\x7c\xe4\x1b\xe8\x6f\x7f\x6b\xfd\x1a\x54\xa0\xe9\x0b\x6c\xf3\x32\x6f\x14\xd3\x84\x09\x4c\x76\xbb\x4c\x64\x16\x6b\x6e\xed\xfa\x3a\xa5\x51\xf4\xc2\xab\xca\x36\xd9\x57\xd1\x39\x21\xc7\x17\xb6\x37\x7b\x86\x69\x14\x39\x12\x2a\x5c\xd0\x33\x3c\x0f\xc8\x82\x35\x20\x39\x7d\xb5\x11\xcf\x58\xff\x2d\x17\xbf\xab\x7d\x32\xda\x27\x37\x00\x87\x83\x31\xb9\x82\x2b\x47\xcc\x95\x6b\xec\x74\x2d\x13\x46\x62\xcd\x9c\x2a\xc5\x37\x8c\xcc\xd1\xf7\x78\x6b\x35\x23\x46\x67\x45\x98\x0a\x68\xcc\x48\xb0\xa2\x09\x0d\x52\x96\x98\x69\x9f\xa2\x03\xa7\xf7\x32\xbc\x00\x2a\xb5\xa6\x21\x1b\x65\x31\x1e\x0b\xf5\x32\x47\x47\x10\xf2\x62\x50\xc7\x1d\x9b\x6b\xee\x97\x19\xe4\xe1\xee\x78\xc8\xe2\x48\x6e\xd7\x4c\x78\xd1\xa9\xf9\x3e\x4e\x64\x68\x0f\x29\xf4\xab\xef\x14\xe0\xa4\x44\x8a\x94\x89\xd0\x39\xea\x34\xb8\x35\x3f\xfc\xa8\x9b\x17\xfd\x93\xdf\xfc\xbe\xe9\x06\x84\x6c\x63\xbb\xff\x0d\xa9\xdc\x02\x1f\x2a\x6b\x63\x9e\xca\xba\x84\xbe\x5c\xe1\x95\xf7\xab\x27\x63\x0d\xcd\x24\xad\xa8\xb1\x2b\x83\x08\xfa\xca\x1e\x34\x15\xd4\x9a\x05\x07\x70\xb7\x82\x30\xca\x12\xcd\x77\x1c\x3a\x4c\xa2\x69\x2f\x9e\xd2\xf7\x4e\x9a\x4c\xd3\xfb\xe6\x2f\x2d\xd4\x8c\x09\xba\x4f\x01\x35\xb9\x8f\x35\x47\x95\x46\x5b\x47\xa6\x79\x01\x59\xb2\xbd\x7e\x71\x0e\x1e\x15\x24\x48\x98\xf1\xdb\x56\xe6\x76\xcb\x84\x08\x1e\xbd\xdc\xb7\x9e\xd7\x21\x5b\xd0\x2c\x4a\x15\xc1\x65\x69\xd0\x25\x61\x83\x4c\x93\x4a\x72\xa7\x71\xe5\xc4\xe4\x32\xd7\x93\x38\x75\xd2\x9a\x03\xdf\x6a\xf1\x67\x9e\x32\x1a\x1c\x86\x48\x53\x00\xa7\x19\x9f\x70\x85\x77\x6c\x44\xfe\x6c\x58\x39\x3d\x21\x3b\xd2\xf7\xfb\x86\x44\x68\xc6\x18\x34\x8f\xa5\x81\xbd\xf7\x98\x8b\x20\xca\x42\xab\x9a\x0f\xa8\x66\x96\xa1\x83\xa2\x1b\x82\x44\x5a\xc8\x7c\x49\xd0\xdd\x4b\x3d\x13\xbf\xac\xe5\x4e\xee\xd4\x3f\xb7\x12\x44\x34\x62\x2a\xba\xf7\x0a\x77\xd0\xae\x71\xe9\xfb\x9d\x03\xfa\x3a\x05\xc9\xb8\x69\x9b\x10\x07\x7e\x67\xc4\x62\x47\x3c\x49\x18\xd5\xb7\x29\xb8\x25\x74\x49\xb9\xf0\x1e\x59\x3c\x26\xa8\x4e\x8d\xee\xe8\x56\xd5\x9c\x66\xd1\xce\xb9\x4f\x04\xdb\xb0\xa4\x74\xea\xbc\x5a\xcd\x9e\xd9\xe8\x0b\x28\x10\x06\xa4\x23\xb7\x08\xc4\x52\x29\x3e\x8f\xec\xc0\x85\x23\x87\xfe\xe0\x2a\x66\x81\x5f\xec\xc6\x85\x34\xbb\xb6\xb4\x0b\xf8\x8d\xb2\xb3\x5f\xe4\xae\xff\x0a\x94\x23\x74\x0d\x76\x2a\x95\x09\x5d\x32\xfb\x93\x4a\x69\x9a\x21\x60\x50\x6f\xcd\xc2\x73\x47\xa3\x78\xcb\x45\xa8\xb1\x91\x05\x69\x1c\x65\x09\x8d\x8a\x5f\x02\x29\xd0\x84\xa4\x0e\xc9\x9f\xbf\xd7\xbf\xe8\xfe\x59\x68\xe2\xbf\xcc\xaf\xa3\xd1\xc8\xfc\x87\xc6\xdc\x46\x92\x11\x1a\x73\x76\x9f\x32\x01\x0d\xc7\xb7\x5f\xa8\x31\x97\x07\x9b\xd7\xd7\x02\x07\x3d\xce\x54\x2a\xd7\x97\x0c\x55\xe2\x27\x0c\x84\x44\x40\xd8\xa5\x78\xad\x7a\x08\x54\xae\xe9\x4e\x46\x4b\x26\xc6\xb7\xd9\x9c\xcd\x33\x1e\x69\xa9\x55\x0f\x60\x87\x7f\x11\xb2\x0d\x8b\x80\x51\xb1\xf8\x6b\xc6\xd7\x4c\xa5\x74\x1d\x6b\xf9\x2d\x02\xa7\x7f\x4d\xc6\x0e\x09\xba\x14\x0a\xf4\xcd\x53\x2c\x55\xe3\x20\x09\xc7\x71\x22\x35\xa4\x03\x40\x71\x63\x99\x2c\xaf\x85\xc6\x9d\x30\x0d\x60\x88\x0e\x49\x43\xb3\xb2\xda\x16\xd7\xeb\x77\x23\x8c\xb8\x4a\xff\xe0\x7d\x7f\xc6\x55\x5a\xde\x94\xda\x2c\xcd\x8e\x73\xb1\xcc\x22\x9a\xd4\x1b\xc0\x7e\x05\x52\x1f\x9a\xe3\x28\x53\x29\x0a\xac\x1b\xbb\x77\xfa\x8f\x91\x81\x80\xde\x17\xe8\x2c\x58\xb1\x75\x11\x29\x27\x63\x26\x8e\xa6\x93\x6f\x3f\xbd\x2a\xff\x5e\xb9\x56\xd5\xb9\x97\xfd\x8f\xc1\xd4\x46\x93\x39\x4f\x13\x9a\x6c\xc9\x64\x4a\x54\x36\x1f\xd9\x69\x1e\x1c\x4f\x4e\x2e\x4b\x38\x0d\x55\x24\x2b\x8d\x05\x91\x71\x02\xf1\x18\x64\x3b\x44\x73\xa9\xc4\x50\x18\x63\xd7\x5c\x93\x0d\xa7\x8e\x87\x09\xda\x0e\xf1\x53\xb7\x5f\xb9\xa8\x4f\xd4\x1a\xa0\x72\x7d\x90\x7b\x8d\x1b\x94\xf4\xce\x21\x2f\xdf\xda\x72\x7c\xbf\x86\x9b\x31\xb4\xa2\xef\x31\x22\x1a\x03\x7e\x16\x1a\x58\x23\xa6\x01\xbc\x69\x88\x1e\xf5\x29\xe2\x34\x08\x85\xb9\xfb\x63\x60\x89\x58\xa2\xac\xd0\x1c\x48\xb1\x61\x49\x4a\x12\x16\xc8\xa5\xe0\x7f\xcd\x3b\x57\xd6\xf4\x0b\x65\x37\x6a\x6c\x24\x17\x29\x4b\x34\xf3\x04\x48\x6f\x1f\x70\xfc\x9a\x6e\x49\xc2\xf4\x30\x24\x13\x4e\x87\xd6\xf1\xe4\x9d\x66\x9a\xb9\x58\xc8\x43\xc8\xba\xa2\x0e\x0f\x0e\x96\x3c\xb5\xf7\x3b\x90\xeb\x75\x26\x78\xba\x3d\x80\x6b\xca\xe7\x99\xde\x92\x03\xb8\x8b\x07\x8a\x2f\x47\x34\x09\x56\x3c\x65\x41\x9a\x25\xec\x80\xc6\x7c\x04\x73\x17\x70\xc1\xc7\xeb\xf0\x59\x62\x10\x82\x7a\xee\xc3\x88\x75\x44\x0a\x97\xab\x6d\x1b\xf4\xed\x32\xc1\x8a\x28\x15\x20\x5b\x93\x43\xdb\x92\xf6\xcb\xd3\xab\x19\xb1\xa3\x7b\x03\x3b\x11\xf8\xc5\x97\xaa\xd8\x07\x0d\x34\x2e\x16\x96\x7f\x03\xcd\xb7\xab\xee\x40\xe6\x21\xe2\x1e\x56\x5e\x65\xf3\x35\x4f\x95\x93\xae\x43\x8e\xc9\x31\xa0\x3d\x4d\x14\xb3\x38\xa4\x29\x0b\xc7\x64\x22\xc8\x31\x5d\xb3\xe8\x98\x2a\xf6\xe4\xbb\x00\x4c\xec\x48\xc3\xb6\xef\x3e\x34\x04\xd9\x36\xe9\x8e\x73\x44\xda\xb0\x6d\xd5\x8b\xaa\x29\x70\x39\xd2\xc3\x06\x06\x15\xc1\xb8\x94\x34\x3b\x69\xdb\x8d\xad\x10\xe9\x16\x33\x5c\x83\xe3\x72\xad\x42\x8f\xf5\xad\x9a\x4c\x89\x45\x69\x88\xc1\xe6\x2c\x92\xfa\x6c\x49\xa3\x91\x62\x3e\x2b\x54\x33\xdf\x32\x70\x0e\xbf\x06\xce\x61\x25\x55\xe1\x85\xf0\x04\x5c\x83\x1b\x4b\x50\xe5\x18\xdc\x77\x75\x6e\xa1\x34\xb3\x2a\xa7\xe0\xbe\x7c\x4a\x2e\x61\xa0\xa0\x03\x05\x75\xb7\x60\xa0\xa0\xbf\x18\x05\x75\xb1\x43\x3f\xea\x59\xc7\x35\xc5\xb3\x3b\xfd\x64\xf7\x31\x04\xbc\x4d\xa6\x7d\xb4\x61\x7a\xa7\xcd\x07\xe5\xb8\x9a\x17\x93\xe9\xe6\x33\xb8\x56\x93\xe9\xe6\xcd\x4b\x2b\x97\xdb\x63\xe1\x15\xba\x27\xa8\xe4\x9f\xe8\xbb\xb9\xa0\x01\x03\x5b\xde\xf5\xf5\x5e\xc5\x6c\x92\x6b\xaf\x40\x0f\x11\x49\x79\x6b\xd5\x87\xdc\x7e\xe9\xd5\x1a\x5b\x67\x20\x27\xde\x67\x32\x2d\xb9\x9b\x60\x1d\x3b\x30\xe8\x19\xbd\x08\x20\x11\x9a\x8e\xc1\x7d\xd3\x4b\xef\xaf\xaf\x53\x50\xa6\x64\xaa\xe6\x07\x5a\x09\x6a\x85\x50\xa3\xbc\x14\xa0\x4c\x8c\xea\xcf\xd7\x69\xb5\x2c\xde\xf5\xb5\xee\xcf\xd4\xc3\xcb\xd7\x6f\x90\x9f\x2a\x8f\xca\x85\x3f\x64\x36\x17\xe9\xdc\x7d\x1a\x43\x8c\x9b\x26\x2b\x25\xbf\x3c\xf4\xa7\x3c\x2d\x8e\x02\xaa\x4a\x7c\xdd\x72\x85\x7a\x59\x4c\xab\x42\x53\x12\x67\x49\x2c\xf5\x4d\x7d\x31\x59\x98\xdc\x84\x2b\x56\x6c\x8d\x1e\xc7\x7a\xfa\xb4\xa7\xb6\xb0\x3a\x4a\xc9\x70\xfb\x23\x46\x13\x91\x6f\x9b\xd9\xc1\xa2\x5f\x3d\x81\x4c\x81\x1e\xbd\xd1\xc7\xfc\xfa\x3a\xb5\xdb\x31\xf6\x6a\xc1\x1f\x9d\xaf\x23\xc5\x0c\xf5\x71\xee\xbe\x52\xa7\x98\x0b\x4e\x9f\xfb\xff\x44\x13\x80\xb1\xcf\x00\xd0\xca\xb1\xf5\x67\x5c\x64\xf7\xed\xa7\x3e\xb7\x50\xe7\x07\xfa\x4b\x38\x7a\xeb\x38\xdd\x8e\x49\x31\x8c\x6b\xd4\x46\x0b\x2f\x57\xad\x98\x45\x3f\x4b\xb9\x61\x89\x40\xdb\x50\xee\x6e\x24\xf7\x8d\xb7\xab\x9e\x76\x22\xb3\x25\xfa\x41\x58\x55\xaf\x61\xb6\x0b\xc9\xdd\xab\x1a\xc7\xcd\x85\x73\xa9\x1b\xe6\x29\x47\xf4\x54\xcf\x65\x88\x68\x01\xce\xe4\x97\x84\xe9\xf5\xe3\xc5\x0e\xf5\x21\xd9\xe0\x45\xf4\xc7\x5a\x17\xa1\xad\x1b\xa8\x5b\xb9\x2d\xc0\xb7\x4f\x5c\xa5\xb1\x54\xe8\xb5\x7b\x90\x4a\xf0\x04\xd5\x73\xb1\xca\x0f\xbf\x2b\x42\x24\x03\x1a\xe5\x21\x9c\x46\xd1\x3a\x59\x90\x12\x3e\xb3\xb8\xcc\xd9\xdf\x5e\xa0\x86\x8b\x64\xe1\x5d\x72\xed\x82\xe5\x03\x3e\xd1\x6b\x37\xbc\x16\x40\xce\x01\xbf\x17\xc9\xd8\x63\x54\xdc\xa1\x1c\xd6\xa5\x39\xc3\x11\x1c\x91\x3b\x8d\xe6\xca\xc8\xd9\x8f\x0f\x50\xeb\x3b\x2a\x6d\xbf\x67\xb0\x3c\xea\xa6\x50\x20\xeb\x9b\xed\xed\x54\xb8\xc8\x08\xf2\x41\x26\xe0\x58\xb1\xef\x99\x55\x3e\x85\x7d\x42\x01\x6b\xd4\xd9\x3f\x62\xec\xde\x2e\xed\xca\xeb\x52\x16\xb9\x72\x30\x70\x40\xcb\x34\x09\x66\x91\x32\xa3\x28\xf2\x42\x65\x7e\x0c\x43\x15\xf9\xf9\xa7\xbf\xb3\x74\xf5\xea\xe7\x9f\xfe\xf1\xd2\xf8\xbc\x83\x39\x92\x85\x44\xcf\xfa\x4b\xc2\x53\xc2\x95\x78\x9e\x16\xba\xeb\x6e\x3a\x4e\xf0\x2a\xc7\x89\xd4\xbc\x8b\x73\x00\x10\xc2\x0e\x4e\x28\x9f\xc2\x62\xce\x5e\x8a\x6b\x03\x13\x0e\x71\xa5\x10\x07\x04\xbc\x0f\xc6\x0a\xa1\x35\x4b\xf3\x5b\xeb\x38\x62\x6b\x7d\xd2\x10\xd1\x17\x68\xc3\x9d\xb4\xfa\xd2\xbf\x77\x3c\xe5\x34\x8a\xb6\xe4\xff\x6a\x08\xc7\x09\x1b\x81\x17\x4d\x6e\x1b\x9a\xea\x2d\x62\x26\x67\x67\x8e\xf4\x83\x6c\xdd\x24\x11\xe8\xc7\xd6\x0c\x45\xf6\xde\xd4\x26\x95\xc2\x6b\x64\x68\x43\xdd\xc2\x9f\xae\xa9\xa6\x2e\xd0\xed\x8c\x87\x2a\xb8\x30\x2d\xb6\x96\xdc\x9b\x19\x43\x03\xae\xc5\x6f\xe1\x05\x76\xdb\x24\x9a\x22\xe3\x2a\x36\x10\x4d\xea\x4b\xdc\xa0\xa5\xd7\xcf\x95\xb9\xb9\x26\x68\xcb\x26\xf0\xf4\xfa\xaf\xce\x59\x51\x3a\x17\x1c\xae\x72\x66\xc3\x6c\x38\x9a\x89\x76\xa1\x8d\x9d\x5e\xd1\xc2\x4f\xfa\xba\x21\x53\xc0\xa7\xe3\xf3\xd6\x88\xac\x7f\xa5\xa4\x3c\x4f\x95\x83\xa5\xc3\x4d\x54\x34\xa0\xeb\x11\x00\xb7\xe1\x4d\x4b\x96\xa5\x07\x3b\x97\xc6\xa6\xa8\x73\xd7\x71\x3f\x2a\xa2\x1f\xf1\xc2\x71\xa0\x72\x8b\x5a\x79\x68\x33\x89\xe6\xec\x75\x85\x47\xb4\x26\xb4\xb9\x04\x62\xea\x38\x9b\x4e\x0a\xff\x4c\x2b\x10\xa0\xe3\x61\x53\xa7\xe8\x52\x1c\xc7\x8c\x26\xb9\xcb\x1f\x78\xac\x93\x7c\x5e\x85\x55\xdc\xf6\x6c\x5d\x37\x59\xa5\x0c\x76\xab\x08\x10\x37\x25\xdd\x18\x74\x90\xbf\x6e\x1d\x24\x8f\xe9\x7a\x1e\xc9\xe0\xf6\x29\x14\x90\x93\xe9\xd1\xbb\xaf\x74\xe7\x55\xed\x63\xfe\xa2\xae\x7a\x2c\x26\x54\xd5\x3b\xe6\x6f\x06\xa5\xe3\xa0\x74\x1c\x94\x8e\xff\x76\x4a\xc7\x1c\x29\xf4\xd2\x38\x8a\x2a\x76\x29\x9e\xdd\xf5\x8d\x5a\x90\xd1\xb0\xf3\x10\xb2\x36\x32\x46\x23\x2d\xe8\x34\xa5\xd8\xed\x22\x8d\x2d\x9c\xdc\x33\x32\xbb\x38\xb9\x38\xc4\x44\x0d\x1a\x61\xd3\x39\xb2\x07\x6b\x2a\x32\x10\x63\x68\x18\x02\x97\x30\x26\xdf\x31\x8b\x12\xf0\xdc\x54\xa8\x84\xbf\xfb\x54\x92\x15\x15\x61\xc4\xc8\x9f\xbf\xff\x4f\x7d\x58\x11\x38\xd1\xd6\x84\x5c\x7b\x05\x35\x3b\x91\x26\xfe\xaf\x85\xe1\xa2\x29\x1e\x49\x2f\xcb\xf5\x11\x3c\x3d\x2e\xe2\x86\xfb\x39\x4e\xd2\x8b\xb1\x57\x4c\xd3\x7a\x9a\xf8\x76\xdf\xcc\x7e\xb7\x14\xc9\x7d\x38\xf0\xae\x80\xab\x07\xb3\xb6\x01\x0f\x7d\x4e\xb1\x6d\x73\x0a\x59\xc4\x52\x2f\xd3\xde\x1e\x03\x02\xe1\x81\x47\x5d\x57\xa7\xe1\xeb\x4c\x98\xdb\xe3\x1d\xf8\xc1\x77\xa7\x11\x32\x0d\xa2\xc9\xc8\xbd\xc4\xb5\x57\xf9\xa9\xad\xbe\xd1\x50\xae\xfe\x66\xc0\x58\xfd\xb9\x0c\xa6\xea\x5b\x07\x0c\x03\x1f\xfc\x4f\xe6\x83\x03\x29\x16\x7c\xf9\x54\x8c\xf0\x31\xf4\xee\xe3\x84\xf1\x8d\x9f\x15\x36\x73\xf2\xf1\xc2\x41\xde\xe1\xc0\x0c\x0f\xcc\x70\xe3\x36\x0c\xcc\xf0\xaf\x95\x19\x46\xbc\xb0\x03\x37\xec\xa2\x98\xe2\x79\x00\x3b\x9c\xa5\xf2\xc8\x90\x25\xe0\xb0\x7d\xa4\xf8\xc9\x78\x83\x66\x4a\x5d\x9b\xd6\x2e\xb4\x76\x20\xa8\xbf\x38\x41\x45\xee\xfc\xa9\x08\xea\x37\xd0\xbb\x8f\xa0\xe2\x1b\x3f\x41\x35\x73\xf2\x11\xd4\x55\xde\xe1\x40\x50\x07\x82\xda\xb8\x0d\x03\x41\xfd\xb5\x12\x54\xc4\x0b\x3b\x10\x54\x17\xc5\x14\xcf\xee\x04\x15\xd4\xd6\x1e\x2a\xd8\x5b\xb1\xd0\x4b\xea\xf5\x6b\x0b\x10\xab\x4d\x4e\x76\x52\x0a\x34\xd2\xe0\x79\x5d\xe1\x36\xca\x87\x18\x08\xee\x3f\x95\xe0\xc6\x52\x46\x4f\x43\x6c\xa7\xd2\x1a\x60\x5d\x42\xab\x7f\xf5\x11\x59\x98\x47\x9d\xc0\xc6\xa6\x93\x81\xb8\x0e\xc4\xb5\x71\x1b\x06\xe2\xfa\xeb\x24\xae\x1a\x17\xf4\x26\xac\xba\xf1\x43\xa9\xe8\x15\xff\x6b\x2f\x5f\x29\x68\x4c\x14\xff\x2b\x64\xa5\xcb\x14\x3a\xb8\x15\x6e\xc7\x84\x2a\xc5\x97\x62\xad\x4f\x46\x63\xae\x47\x93\x50\x41\x46\x63\x72\x62\xb3\x14\xa4\x92\x7c\xf2\xc6\x74\x66\xbc\xcb\x5f\xbf\xfe\xc4\xfe\xf0\xa6\xd1\xeb\xaa\x81\x78\x37\xe8\xeb\x6b\xeb\xd1\xb3\x20\xc7\x93\x93\xcb\x1d\xdd\xba\x42\xae\xe8\x3c\xf2\x2a\xd9\x4b\x63\x80\xff\xb8\x6d\x0c\xf9\x4b\x93\xac\xf0\xf2\xd6\xcc\x10\xba\xba\xeb\x83\x8e\xa0\x2b\x1c\xb8\x7d\xa0\x33\x97\xca\xc2\x6f\x47\xfd\x01\x8f\xb9\xaf\xc6\x70\x19\x57\x9c\xe8\xab\x8d\x16\x04\x73\x91\x6d\x99\x5e\x70\x54\xcd\x3d\xc2\x8f\xa6\x93\xcd\x6b\xc8\x2a\x70\x47\x93\xd0\x3b\x5b\x48\xd2\x94\xf2\x39\x8f\x78\xba\xd5\x88\x22\x35\x98\xc6\xed\x15\x96\x8e\xb9\x64\xf6\xcb\xaf\xbc\x00\x40\x37\x78\xc4\xd8\x58\x41\x3d\xda\xfa\xea\x80\x77\x18\xb9\x98\x68\xda\x3f\xff\x1e\x9a\xf6\xc5\x16\x6a\x58\x92\x34\x13\x82\x45\x7a\x4d\x36\xdb\x59\xd6\xe0\xf3\x43\xd0\xcb\x33\x64\x11\xdf\xb0\xa4\x48\xb9\xab\x7f\xca\xd3\xd1\x3b\x95\x9a\x9a\x77\x98\x74\xed\x32\x81\x3c\x3a\x8d\xa5\x2a\x6b\x77\x60\x32\x9d\x4c\xe1\x03\x53\xd9\x99\x04\x54\x38\xc9\x1f\xae\xf7\x30\x1f\x84\x2d\x2f\x01\x75\x69\x46\x58\x48\xe5\x7a\x6f\x4c\xc8\x51\xd3\x7a\xd7\xa6\x7a\xb4\xd3\x83\xc9\x2f\xa1\x10\x77\xc0\xc8\x05\x0c\xf5\xde\x26\x32\xc3\x33\xd2\x58\x1b\xcc\x81\x57\x39\x2e\xa5\x06\x3b\x42\x8e\x9c\x39\x94\xe7\xdd\xd4\x3b\x4c\xd0\x1e\xf4\xea\x04\xef\x6c\x6a\x0d\x77\x0e\xe8\x1d\xaa\x6f\x47\x53\x9f\xb4\x48\x8a\x6d\x0a\xd0\x58\x8e\xc4\xe6\xee\xd4\x9d\x0b\xbb\x03\x85\x43\x7d\x6b\x31\x81\x17\x7c\x81\x29\x91\xac\x53\xf3\x4b\x3d\x8b\x02\xd6\xad\x47\xa7\xdd\x81\xcc\x2f\xf2\xe8\x13\xff\xae\x87\x4f\xed\xb1\xa5\x55\x68\x4a\xc9\x92\x82\x4e\x79\x36\xbc\xfd\xa8\x4f\x2a\x6b\xdc\xb7\x59\x3f\xb1\xd2\xa9\x01\x14\xe6\x0e\xba\xde\x3b\x67\x1b\x48\xb3\x88\x95\x37\xcb\x83\xf9\x7a\xd7\x3d\x18\xdc\xec\x4b\x35\xdf\xea\x5c\x4c\xd3\x91\xcc\xd2\xa5\xe4\x62\xf9\xbf\x05\xa5\xb6\x62\x1d\x41\xd3\x8b\x9e\xf0\xc0\x14\x48\x0e\x00\x0b\xac\x6a\xf1\x22\x64\x1a\x72\x92\x69\x93\xd6\xf0\x0c\xc3\x1d\x69\x26\xd4\x45\x00\x35\xec\x2a\xb3\x54\xf1\x90\xe5\xd2\x06\x34\xd2\x37\xde\xd7\x29\x64\xf9\x57\x7f\xc9\x58\x42\x43\x6f\xde\xd8\x76\x70\xc8\xb0\x77\x8e\xd5\x23\xbd\x55\xca\x72\x70\x26\xb3\x86\x3e\x2e\x26\x7a\x20\x0f\x00\x00\x54\x33\xdf\x62\x22\x0d\xdf\x9c\xf3\x34\xbb\xbb\x1d\xe6\xcd\x7d\x44\xc5\x47\x5e\xed\x6f\xff\x78\x76\x74\xfe\x8b\xdd\x6d\x18\xcd\xcb\x5b\xe6\x13\x78\xf0\xe5\x6e\xd4\xd2\xd4\xdd\x13\x06\x65\xcc\x2f\xaa\x8c\xd1\x7d\x14\xdd\xaa\xd2\x21\x7c\x0a\x15\xcd\x1f\xb2\x39\x3b\x2e\xc6\x3b\x76\xc7\xab\x2a\x6e\xda\xda\xd6\xd5\x39\xad\x2b\xa9\x2a\x79\xda\x1a\x0f\xaa\x9f\x41\xf5\x33\xa8\x7e\xfe\xed\x54\x3f\x6d\xd8\xa4\xae\x10\x2a\x25\xc8\xab\x02\xf8\x0f\x79\xbc\x91\x83\x92\x2b\x14\xbc\xbf\xb6\xc8\xe9\xa2\x0f\xb3\x60\x47\x43\xf1\x19\x53\x16\xda\x91\x4d\xb2\xcd\x0d\x0f\x33\x1a\x39\xd3\x6c\xe2\xf0\x4c\x5f\x3b\x8b\xfa\x79\x5c\x70\x1f\x81\x38\xcf\x77\xdf\x34\x65\x1b\xaf\x8d\x8d\x8a\x79\x35\x16\x16\x38\x35\x9a\x83\xf9\xd6\xb2\x34\xfb\xb6\xe8\x99\xe0\xc8\xa3\x22\x9b\xd2\xd0\x43\x8f\xba\x24\x1a\x4d\x89\x80\x47\x2c\x99\xb2\x84\xcb\x66\xb7\xdd\x2a\x72\xb8\xac\x7c\x68\x8b\x15\xc6\xf8\x57\x2a\xf5\xbf\x16\x32\x59\xe7\x43\xf0\xc6\xb0\x4d\xfb\x40\x9a\x5d\x27\x7a\x52\xdf\x0a\xe0\x46\xc6\xe4\xcf\x46\xdd\x77\x48\x3e\x5f\x7f\xef\x11\x30\xec\xd3\xed\xea\xdb\xe5\xe8\xdb\x10\xfb\x59\x83\xc0\xb9\xe6\xa8\xdb\x76\x5a\xbf\xff\xd7\xd8\xe4\x95\x13\x8e\xdb\x77\x83\xdd\x10\x5e\xbb\x0c\xc8\xc4\x1e\x58\x8d\x03\x50\x48\x08\x29\x77\x6a\x14\xb5\xec\xee\x89\xd5\x65\x3e\x74\xa5\x3d\x57\x4b\x8c\xc3\xd4\xb1\xe6\x09\x9b\x03\x4c\x3d\x6b\x7e\x7e\x94\x7f\x56\xec\x6c\x96\xca\x35\x4d\x79\x50\x24\xce\x95\x9d\x75\x48\xca\x50\x01\x81\x46\xcb\x20\x5b\xa3\xa9\x29\x0e\xb3\x85\x49\xdb\x91\x26\xbd\x4b\x8b\xf4\x29\x2c\xf2\xbf\xef\xc2\x13\x38\xb5\x90\x96\xbc\xed\xd0\x94\x57\x7b\x95\x7f\x52\x1c\xfe\x3c\xab\xb3\x24\x81\x8c\xb7\x1d\x74\xc7\x3e\x80\x07\x8a\xd4\x97\x4e\x60\xb8\x72\x57\x69\xd0\xc0\xd3\xe2\x36\x8c\x1a\xed\x83\xdd\x4c\x8a\x99\x16\xfc\x66\xe2\xc2\xff\x35\x30\xdc\xff\xbe\x53\xdd\xb5\xd5\xe5\xec\xec\x7d\xb6\xbc\x9c\x99\xbd\x6d\xeb\x3b\x0a\x3c\xd9\xb2\x4e\xce\xd1\x18\xce\xc0\x3f\xe3\x0c\xd8\x7c\x1f\x1d\xb4\xbf\xac\x61\xad\x7c\xd3\x76\x0e\x6c\xff\x4d\x6b\x60\x15\xfe\x61\x38\x09\xff\x9c\x93\xd0\xf6\x96\xa5\x41\xf8\xed\xa7\xc7\x72\x1d\x63\xcd\xb0\x46\x88\x95\x21\x75\xea\xfd\xac\x02\xaf\x39\x4b\xef\x18\x13\x30\xc6\xe6\xd3\x46\x9b\x04\x74\x90\x4b\xf1\x60\x99\xd0\xa0\x7e\xe5\x9e\x05\x07\x56\xaf\x5f\x79\x81\xd5\x06\xa4\x15\xa3\x51\xba\x3a\x5e\x31\xbf\xe7\x7c\x79\x69\xdf\x38\x8d\xf3\xd3\x2f\x13\x3b\x15\x95\x57\x12\xd1\x6c\x1d\xf6\xec\x5d\x1a\x76\xd0\x8b\xc2\xb7\xcd\x3d\x92\xcb\x2b\xcd\x3c\xf2\x74\x7b\x15\x24\x8c\x55\x55\x67\xf5\x05\x9c\x55\xbf\xb0\xdb\x12\xc9\x25\x51\xe6\x0d\xa1\x73\xb9\x61\x26\x29\x4c\x24\x97\x5e\x1e\x06\x12\x15\x31\x91\x1b\x1d\x55\x1a\xca\x2c\x75\x37\x63\x22\x16\x72\xb7\x15\x35\xeb\xc8\x9b\x04\xf5\x46\x4d\x48\xa1\xf9\x6e\x00\x45\xab\x2e\x04\xbe\x76\x74\x52\x66\x85\xfa\x57\x8f\x0a\x11\xd4\x50\x25\xc5\x07\x99\xa4\xcf\x21\xcd\xdd\x22\x8b\xd0\xdc\x12\xae\x41\xad\x02\xa5\xd2\x20\x40\x18\xca\x92\x60\x09\x5b\x1a\xa4\x19\xad\x59\x5e\xb0\x47\x4c\x7a\x75\x47\xf3\x6c\x23\x36\x59\x8f\x31\xa7\xaf\x65\x88\x35\x3e\xe6\x9a\x23\xdb\xf0\x44\x82\x9b\x0c\xd9\xd0\x84\xc3\x91\xac\xcd\x17\x6d\xcd\xb7\xd9\x9c\x8d\x5c\xcd\x4d\x9c\xc8\x80\xa9\xaa\x98\xd6\x96\xf7\xb1\x18\xed\x5b\xea\xd5\xdb\xec\xe8\x31\xdb\x84\xc4\x4a\xdb\x76\x5a\x1e\xb5\x9a\xde\xc8\x03\x80\x06\x13\xba\x17\x08\x00\x6c\x2e\x16\x51\x86\xc9\x8e\xb0\xaa\x3c\xd4\xaf\xc4\x03\xd2\x68\xf2\xf1\x63\xd0\xc4\xfd\xb6\xeb\x72\x96\x06\xaa\x2c\x0c\x2a\x15\xf3\x0d\x2b\x9d\x0a\xae\xec\x00\xbe\x05\xf2\xa6\x8d\x96\xe1\xbe\x49\x2c\xb3\x66\xc9\xd2\x6a\x6a\x8f\xa6\x93\x42\x51\xab\x09\x93\xf7\xd2\x8b\x86\x53\xe6\x81\x4b\x07\x31\x6e\x57\xf9\xd5\x80\xf3\x98\x6a\x3f\xd2\xa5\xfa\xeb\x31\x7d\xd2\x43\x05\x58\x5b\xc4\x6e\x6a\xc0\x36\xce\xe1\x31\xb9\xa6\x9e\xab\x25\xbb\x71\x4f\xb5\xc5\xf7\xe7\xa0\xba\x54\x28\x65\x06\xab\x17\x17\xd5\xd5\x65\x3b\x93\x45\x1e\x55\xcd\xd2\xa2\x45\x24\x4f\xa5\x49\x24\x8f\x20\x6b\x93\xfe\xe7\xa4\xa7\x56\xb1\xb6\xdc\x1d\x34\x8b\x5d\x3b\xea\x94\x9e\x7b\x14\xed\xe2\x0e\xab\x27\xbb\x68\x19\x6b\x30\xe8\xa7\x69\xec\xee\x14\x58\x93\x47\xd7\x36\x92\x9d\x6a\x63\xf7\xb9\x0e\x64\xc0\x2b\x7d\x80\xd9\x4b\x51\x59\x07\xce\xe3\x29\x2b\xc9\xa3\x2a\x2c\xfb\x2f\xbd\xcf\x19\x6a\x55\x5e\xd6\x80\xf2\x98\x0a\x4c\xf2\xcb\x22\xd6\xe1\xa2\x3c\xc2\x69\xe9\xa5\xff\x24\x4f\xa6\x03\x25\x4f\xa4\x07\x25\xc3\x31\xfa\x45\x8f\x51\x4f\x15\x2a\x79\x4a\x35\x2a\x79\x2a\x55\x2a\x19\x0e\xd3\x2f\x78\x98\xba\x5a\xf4\xd6\xc4\x92\xa7\xd2\xc6\x92\xc7\xd5\xc8\xf6\x01\x5e\x87\x66\xb6\xbe\xd4\x47\xd2\xce\x92\x1d\x35\xb4\x7d\xd6\xd2\x47\x53\x5b\x5f\xd0\xce\xda\xda\xa6\xe5\x44\x72\xa9\x3e\x42\x63\xdb\xbd\xc2\x96\x64\xd2\x2d\xda\x5b\xd2\x7a\xf4\x07\x37\xe8\x5f\xd4\x0d\xda\xc4\x42\x00\xeb\xcb\x9f\x24\x11\x8c\xa9\xda\x87\xec\x37\xbe\x28\x3c\x9d\x4b\x2f\xeb\xae\xcd\x95\xd9\x99\x7d\xce\x9d\x99\xdd\xd7\xd0\xb5\xf1\x5e\xce\x35\x6e\x40\x41\x07\x07\xe6\xc1\x81\x79\x70\x60\xfe\x75\x39\x30\xb7\x59\xa0\xa0\x1c\x56\x9f\x80\x6c\x48\xcd\xaf\x8f\x3f\x16\xb4\x62\xa5\xf2\xe6\x98\xd7\x5f\xff\x91\x1b\x5d\xbc\xb6\x0f\xfb\x35\x46\x93\x55\x8b\x75\x41\x25\x30\x12\xc8\x24\x61\x2a\xd6\x14\x43\x2c\x89\x61\x96\x6c\x49\xa5\x9d\x52\xf2\x57\xaa\x3c\x1d\x91\x4b\x3d\x41\x26\x02\x1a\xab\x0c\xee\x6d\x31\x23\xdf\x54\x1a\x34\x84\x38\xa5\x31\x21\x5f\xc9\x74\x55\xa9\x2a\x50\xab\x22\xa6\x3b\xaa\x56\x4f\x68\xd0\x11\xe5\x15\x42\x4c\x15\x83\x11\x51\x2c\xa6\x89\x3e\xa4\x44\x66\x29\xa1\x7a\xba\xb6\x40\x03\x36\xd1\x5c\x18\x54\x9e\xe7\xcd\xe5\xee\x09\xcc\xc1\xec\x97\x0b\x78\x2e\x96\x58\x2f\x09\x8b\x32\x40\x35\x97\x0d\xab\x42\x62\x45\x9b\x7a\x25\x82\x2d\x61\x72\x06\xf1\xee\x93\x38\x61\x0b\x7e\xcf\x42\x14\x1d\x7e\xfe\xe9\x1f\xe7\x32\xfd\xf9\xa7\x7f\x8c\xc9\x51\x14\xc1\x45\x2d\xf7\xed\xef\xd7\x44\x0b\x53\x3c\x4e\x79\x85\x20\x9a\x72\x05\x56\x5a\x0c\xbd\x33\x0b\x49\x25\xf6\x39\x26\x47\x40\xca\xea\xd9\x8b\x0c\x6c\xe1\x68\x52\x61\x8f\xa7\xad\x63\x8f\x4b\xd6\x00\x82\xc5\xe8\x3f\xcc\x6a\xb0\xec\x57\x63\x55\x33\x84\x2a\xc0\xde\x3f\x45\x3d\x00\x8c\x9a\x4f\xd1\x1f\xdb\xdc\x29\x21\xe2\x71\x6b\x94\xb4\xba\xe5\x27\x27\xd2\xb2\xb1\x97\xd2\x55\x39\x71\x82\xa8\x4b\x36\xd4\xca\xd1\x00\x0b\x2a\x5c\xcb\x16\xc1\xad\x14\xe9\x49\x34\x26\x4c\x7d\xb7\xb8\x27\x30\x88\x6b\x33\x6c\x09\xe3\x6c\x58\xd9\xf5\xde\x79\xf5\x63\xa0\x60\x82\xc8\x18\xcd\xec\x26\x20\xb7\xa9\x04\x49\xf1\x94\xca\xb6\x9b\xae\xd8\xbd\x26\x60\x0a\xb0\x03\x14\x77\x2a\x15\x0d\xb3\x31\xe5\x5d\x3a\x62\xa0\x71\x2f\xf4\x11\x62\xc9\x1a\x3f\x20\x34\x7d\xe9\xd8\x20\xf2\x80\x7a\x5b\xd4\xa4\x39\xb5\x41\x05\x64\x2a\xcf\x87\x00\x7b\xa9\xc9\x1f\x04\xfd\xc2\x41\xae\xc1\xa6\xbd\x53\x7d\x01\x72\x28\x6a\xc9\x08\x99\xb1\xd0\xfa\x47\x28\xba\xc6\x2b\x60\xe2\x47\x21\xa4\xba\x8f\x36\xc6\xb1\x3c\x99\x33\x96\xe4\xf3\x25\xf3\x2d\x4e\x36\xaf\x61\x9f\xaf\xa8\x1f\x28\x4c\x51\x3b\x3d\x2f\xc4\x7e\x6f\x65\x52\xe6\x9c\x35\xb7\x66\xea\xa9\xed\x08\x11\xbe\x8e\x23\x5e\x54\xf3\x63\xc4\x3d\x64\x11\x5f\x73\x13\x34\x8b\x33\xd5\xe4\x4d\xc3\xa4\xbd\xcf\xbc\xaa\x58\x01\x13\xee\xc0\xb7\x88\x78\xa1\x78\x47\x4b\x4b\xe9\x30\xc6\x35\x2c\xff\xc3\x12\x2a\x8a\xbf\x78\xf9\xa1\x0e\x00\xbb\xc6\x0e\xa5\xce\x4e\x00\xa8\x55\x30\x6f\xef\x5c\x26\x25\x23\x67\xb1\x8b\xa5\x6e\xaa\x7b\xd9\xde\x67\xe3\x3a\xcb\xab\x40\x07\x22\xe0\xfd\x77\x3d\xc8\x14\xd2\x5c\x40\xd9\xc6\xe2\x36\x36\xd0\x84\x1c\x8c\xbd\x74\x63\x0d\xd5\xd7\x8b\xa7\x6c\x0e\x67\xa9\x6a\xc6\x79\x9a\x4f\x87\xa4\xb2\xaa\xa9\x82\x61\xf1\x58\xea\x06\x5b\x58\x14\x7c\xf2\xa3\xbc\x1c\xab\x75\x1c\x9c\x32\xca\x2b\xa5\x11\x81\x5a\xae\x79\x19\xd9\x25\xdf\x30\x61\xb2\x76\xb4\x47\xc6\x34\x33\x88\xce\xb8\x3d\x4d\x88\x2d\x95\x08\x8a\x47\xc8\xf4\x7c\xb7\x3d\xc1\x0f\xac\x6a\xaa\xc2\x57\xd9\x15\xeb\x26\x1d\x94\x43\xef\xe3\xbf\x1c\x2c\xa6\x0d\x95\xf6\x8a\xa7\x0a\x0c\x2c\xbb\xd7\x0e\x0d\x68\xd3\x07\x1c\xe4\x8a\x6b\x9e\x5a\xe6\xc5\x16\x6d\x89\x35\x45\x56\x74\xc3\x6c\xfd\x3e\xbe\x80\xd3\x15\x77\x77\x0b\x4a\x40\x9b\x1b\x81\xf0\xd4\x6a\xee\x70\xba\x53\xd3\xbb\x61\x96\x0c\xae\xd6\x92\x47\x07\xd4\x25\xd2\xb0\x14\xb3\x2a\xcc\x8e\xa7\x36\xaf\xcf\xfb\x93\x69\x63\xd2\x18\x7c\xfa\xec\x6a\x7b\xb9\x3d\x7c\x7a\x16\xdd\x2b\x37\xee\xe3\xc4\xd0\xa7\x00\x1f\x3e\x0f\x29\xc3\x67\x9f\xbe\x07\x72\x77\xbe\xf1\xbc\xf8\xa8\xe3\x58\xf6\x63\x14\xcc\xc9\x24\x57\xcc\x21\x2e\x88\x85\xb5\xec\xa0\xb2\x79\x1a\x31\xcd\x06\xa3\x24\x65\xc6\x6a\xef\x33\x67\x88\x5a\x8f\x4a\xbf\x3d\x6b\x2a\x8e\xd9\x00\x9e\xeb\xbd\xfc\xc6\x76\x91\x95\x2e\xbe\x81\xf5\x21\x2b\x2b\x10\x85\x8d\x42\xe9\x85\x23\x5f\xbc\xec\x38\x86\x32\x49\xb1\x07\xe4\x26\xdd\x32\xb8\x8a\x91\x84\x8a\x25\x53\x07\x56\x1f\x07\x29\xb7\x5a\x33\x3d\xe1\xc3\x5d\xb9\xdc\x5c\x1d\x30\x9a\x20\x94\x95\x85\x80\x51\x6e\x99\x61\x3a\x78\x9c\x05\xee\x01\x32\x37\x7d\x31\x58\x27\x06\xc0\xa6\x3b\x61\xb0\x8e\xb5\x17\xe8\xad\x82\xc1\xae\x11\x87\x5d\x1b\x2c\x76\x8d\x78\xec\x5a\x63\xb2\x56\x9e\x67\xc0\x65\xf0\xf4\xc2\x65\xea\x01\x02\x70\xb7\xdc\xdb\xaa\xc2\x2b\x1e\xaf\xdc\x4b\x5e\x28\xc6\xac\xee\x0b\x50\x19\x5d\xc7\x11\x23\x6a\x2b\x52\x7a\xef\x4b\xf7\xe3\x3e\xd7\xd7\xad\x62\xb3\xe1\x21\x9b\xc4\xe2\xf6\xbe\xad\xca\xab\x54\x0a\xb4\x2e\x0d\xdb\xea\xcc\x30\xb6\x3e\x3d\x1d\x40\x30\xfe\xf9\xd6\x1a\xd0\x41\x15\x10\x3c\x0e\x35\xe9\x90\x55\x59\x24\xef\x5e\xee\x97\xa7\xec\x00\x1b\xa1\x6a\x6a\x98\x59\xd3\x6c\x07\x1c\x50\xcf\x05\xfa\xcb\xd9\x8a\x91\xf4\x4e\xc2\x59\x83\x24\x15\xf6\x9d\x29\xa1\x3d\x4f\xa3\x6d\x91\x21\xaf\x63\xef\x2e\x84\x5d\xbd\xf5\xe0\x29\xf4\xaa\xcc\x91\x5e\x71\x35\x12\xbc\xe7\x4c\xfb\x6e\x9a\x70\xb7\x92\x91\xd9\xa4\x43\xd8\xa2\xeb\xeb\x82\x20\xff\x1e\xb0\xcb\x6f\x56\x54\xbd\x58\x6f\x6f\xc0\xb5\xee\x25\xe0\x1d\x83\xe4\xbb\xae\xb3\x49\xf8\x68\x15\x0d\x58\x48\x1f\xe6\x87\x8e\x0f\x85\xeb\x7f\xa8\xc7\xed\x79\xde\xa0\xbf\x50\x42\x26\x2d\xc0\xd2\x68\x2c\x9a\xb3\x88\xfc\xfc\xd3\xdf\xed\x44\x41\x3b\x6a\x16\xd4\xfb\x58\xe0\x82\x1b\xd7\x5b\x5f\x92\x9e\x43\x53\xce\xd7\xe2\x69\x5f\x6d\xbe\xa0\xf6\xc5\x74\x2b\x1c\x66\x79\x30\x06\xb2\x52\x46\x53\x10\x01\x5a\x35\x79\x28\xc1\xc4\x9c\xaf\xa3\x7b\xea\x42\x8a\x91\xf1\x52\x31\x46\x2e\x72\xb7\x62\x09\x33\x3a\x91\x85\x4c\xd6\xac\xaa\x83\x30\xbd\xf7\xd0\xc5\xd5\x01\xe3\xa4\x64\x78\x04\x01\xbe\xec\x4c\xb7\x03\xdf\x55\xf6\xa7\xfb\xe5\xf8\xaf\x0a\x4a\x6e\xef\xd3\xa3\xc9\xa4\x24\x96\xa1\x0d\xbc\x41\xbb\x46\x8e\x9e\x7b\x78\xfe\xe5\xbe\x7f\xad\xa7\xad\xb7\xa7\xb9\x6b\x65\x6f\x7e\xea\x51\x28\x1f\x0f\x6e\xf2\x10\x90\x77\x77\xd9\xa4\x40\xf6\x80\xbd\x17\xb4\x89\xe3\x6d\x79\xb7\x92\xca\x16\xe5\xcf\x35\x91\x50\x84\xbb\xab\x8f\x3e\x8c\x1d\xd9\xc9\x35\xbe\x27\x97\x44\xfa\x72\x4a\xa4\x7e\xbf\x3a\x79\xa5\x7f\xdf\x9d\x2e\xc9\x49\x85\xc6\x0d\xb1\x7e\x9e\xcf\x92\x4c\x3a\xd3\xb5\x10\xc7\xba\x50\x37\x1a\x14\x72\x88\x49\x32\xc9\xb6\xfa\xf7\xee\x4e\x8f\xce\x4f\x9e\x7b\xd3\x7f\x96\x9f\xdd\xb4\x59\xed\xee\xaa\xdd\x6d\x56\x69\xea\x4b\xe4\x8d\x4f\x39\x4e\x67\x36\x9b\x16\x46\xa4\x46\xcb\x9a\x3e\x1e\xba\x69\xf3\xd4\x73\x3f\xc2\x8f\x32\xaa\xad\x59\xba\x92\xe1\x0e\xb4\xe7\x1d\x7e\xf0\xb8\x34\x07\x97\x0c\x97\xc3\xac\xdb\xf1\xde\xd0\x7d\x62\x16\x5c\xd6\x99\x24\xc8\x62\x25\x16\x62\x2f\x76\xb6\x2f\xd8\x78\x39\x26\x5f\x9f\xce\xf6\xc9\xf4\xfd\x6c\x9f\xb0\x34\x18\xbf\x24\xef\xb2\x28\xe5\x71\x97\x86\xce\x80\x08\x4e\xed\xc5\xe5\x73\xcd\x44\x2c\x21\x0a\xe4\x5f\x4b\xe3\x1a\xd3\x74\xb5\xc3\x3e\x3e\x9f\xea\xf6\x4f\xb1\x8d\x5d\x3b\xd8\x6d\x61\x70\x77\x10\xa6\x39\xce\xb7\x0a\x97\x69\xf7\xa2\xef\x66\x10\xc2\xc6\xcb\x43\x32\x22\xec\x9e\x06\xe9\x21\x39\x58\x48\x49\x46\xc6\x6f\xe1\x90\x1c\xcc\x69\x42\xce\x2f\x66\xa7\x87\xe8\x13\xc1\x44\x9a\x6c\xc9\xba\x8b\xb8\x5c\x9c\x9f\xfd\xc9\xe0\xb1\x2d\x61\x1c\x44\x07\x4a\x3e\xc0\x18\x1f\x08\xb8\x2b\x7c\xc0\x21\x3e\x58\x6f\x85\x59\xd7\xd2\x37\x34\xe2\x21\xcd\x45\x54\x70\xa6\xc5\x84\xd0\xa9\x2f\x03\x74\xf1\xf4\x39\x6f\x15\x9f\xdf\xd9\x6c\xaa\xa1\x9b\xa3\x62\x38\x0a\x00\x74\x0d\x64\xc7\x81\xa1\x03\xd5\x4e\x52\x70\xd7\x9a\x33\x0b\x04\x23\xfd\x6a\xf6\xfb\xd0\x82\xfc\x3a\x7b\xf5\xea\xd3\x40\x77\x0c\xff\x62\x87\x26\x18\xbf\x97\xb0\x86\xc7\x0c\x66\x05\xdd\x69\x64\x91\xe4\xdb\x57\x74\x3d\xc2\x9f\x3e\x6e\x04\xec\xa3\xc3\x7d\x7d\x87\x78\x46\x04\xc0\xe3\x32\x40\x66\xe9\x8f\xd9\x69\xdf\x80\xc3\x1e\xc8\xa8\xbb\x2b\x1e\xac\x7b\xd2\xcb\xc9\xf1\xbb\x69\x5f\xbb\x25\x20\xa2\xe6\xb9\xbb\x18\xca\x49\xe2\xad\x67\x6b\x02\x48\x30\x15\x39\x0c\x69\x78\x33\x53\x82\xa1\x45\x88\x43\x87\x51\xa0\x5d\xf3\x92\x7a\x75\x51\xd6\xaa\xe6\xc9\xe0\x73\x5b\x8f\x1e\xa7\x4d\x8e\x04\x2b\x90\x6e\xb4\x79\xd3\x62\x08\xea\x75\x12\x83\xf6\xc0\xe9\x2a\x8d\x07\xae\x44\x0a\x17\x4a\x00\x94\x00\x4b\x22\x4c\x16\x4e\x92\xf0\x6e\xf2\x30\xd3\x00\x46\x27\x51\xf0\x99\x82\x72\x13\x2e\xac\x8c\xce\x1d\x14\xea\x29\x0b\x56\x82\x07\xf5\xa4\x1e\xe5\x07\x04\x7a\x54\x5a\xf1\x75\x2c\x15\x7a\x88\x40\xd6\x06\x96\x08\x16\xfd\xfc\xd3\xff\x28\xc2\xe3\x14\xa3\x17\x16\x3c\x61\x77\x34\x8a\x3a\x26\x8b\xf8\xc2\x28\x14\x32\x85\x06\x7f\x26\x16\x12\x1d\x58\x8d\xf7\x48\xf7\xe5\xe8\xd4\x3d\x43\xb3\x8f\xdf\x0e\xdd\xcd\x98\x80\x0f\x04\xbb\x07\x85\x6b\x97\xea\x16\x77\x41\x2e\xc8\x17\xe8\x76\x08\x2b\x84\xbe\x4e\x83\x95\x24\x97\x48\xb2\x4d\x4e\xf7\x98\x8b\xa5\x6a\xd7\xdd\xf6\x5a\x6f\x0f\x74\x10\xfb\xfd\xbf\x1b\x00\x32\x99\x5a\x3f\xf0\x8f\x76\x68\x28\x09\x66\xc8\x8d\xbb\x50\x9e\x5a\x8d\x6e\x23\x14\x7a\x40\xa0\xc1\x93\xb7\x61\x71\xef\x4c\x6b\xc7\xd3\x2c\x4f\x06\x03\x0e\xca\xc9\xba\x48\xf2\xef\xf3\xaa\x2e\x2f\xee\xa3\xd0\x46\x3d\x7a\xa2\xa1\x5d\xdf\x74\x35\xc5\xd3\x97\x30\x95\x0b\x33\x14\xf3\x31\x1e\xe8\xa8\x6d\xbe\x65\x5b\x73\xb4\x63\xca\x4d\x32\x9a\xf6\xe1\xb5\x50\x4b\xd8\x7d\x9a\xd0\x12\x4c\xe9\x5c\x66\x69\x0f\x52\xf2\x58\x72\xa3\x90\xa9\xbe\x7d\xfd\x4e\xc6\x39\x36\xee\xb0\x44\x43\x93\x76\x8f\x90\x81\x64\x0c\x24\xe3\xd7\x4e\x32\x84\x4c\x2d\x6b\xd5\x08\x96\x76\x7b\x71\x4f\x4b\x71\x3f\x1b\x71\xcd\x95\xc9\xb2\x7d\x1d\xde\x4c\xa6\x59\x33\xc0\x3a\x6e\x72\x0f\xa3\xf4\xc3\xcc\xd1\xf1\xbf\x2a\x70\xaf\xf7\x5c\xd8\x3e\x22\xf5\xaf\xa9\x65\x21\x12\xc0\xe5\x05\x2c\x4c\xc6\x70\xea\x79\xd2\xe6\x9a\x63\xfc\xca\xcc\x3e\x9f\x82\xff\xfb\x25\x04\x6f\xd8\x50\x04\xf4\x9d\x79\x31\x67\x01\xcd\x94\xf1\xe6\xe8\x70\x0c\xce\xa7\x18\xb0\x04\xfa\xc8\x3d\x42\x5e\xa2\x39\xf1\x9d\x89\x49\x28\xf9\xb7\x74\x11\x59\x74\x7c\x39\x74\x7d\x37\xf6\x5d\xcf\x0d\xfc\x03\xa4\x95\xd2\x5f\x9b\x37\xc5\xdf\x57\xc7\x33\x7c\xdb\x3c\x8c\xe9\xf1\x8c\xa7\xcc\xba\x87\x50\x61\x0f\x88\x35\x29\x80\x93\x0c\x79\x3d\xfa\xe4\xf3\xcf\x5b\x6c\x6c\x4f\x77\xec\xd1\x8c\xd8\x8f\x1e\x5f\xa1\x23\x52\xbf\x50\x89\x96\x02\x7a\x76\xd4\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\xf0\xaf\x78\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\x69\x25\x03\x2e\x1b\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\xfe\x0c\x51\x12\x43\x94\x44\xfe\x0c\x51\x12\x43\x94\xc4\xd3\x47\x49\xb4\x24\xba\xd5\x32\x06\xe6\x3b\xf3\xbd\xeb\x53\x86\xcf\x7b\xca\x4d\x76\xbc\x07\xa4\x39\x34\x5f\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\x61\x33\x6a\x1c\xf2\x1c\x0e\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\xc5\x33\x58\xf0\x9d\x67\xb0\xe0\x0f\x16\x7c\xf3\x0c\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x80\xcb\x06\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\xbf\xfe\x0c\x16\xfc\xea\x33\x58\xf0\x07\x0b\x7e\xf5\x19\x2c\xf8\x83\x05\x3f\x7f\x06\x0b\xfe\x60\xc1\x1f\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\xb0\xcf\x08\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\x48\x5a\x35\x24\xad\x1a\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x6d\xf3\x1f\xf2\x1c\x0e\x24\x63\x20\x19\x43\x9e\xc3\x21\xcf\x61\xe5\x19\xf2\x1c\x0e\x79\x0e\x2b\xcf\x90\xe7\xb0\x59\x88\x1c\xf2\x1c\x0e\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x2d\x2b\x1e\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x5a\xc9\x80\xcb\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\xa8\x3f\x43\x94\xc4\x10\x25\x91\x3f\x43\x94\xc4\x10\x25\xf1\xef\x98\xe7\x10\x92\x17\x76\x65\x39\xbc\xd0\x8d\x5a\xce\x70\xe1\x1d\x9d\xda\x7c\x88\x0d\x8c\x2f\xfa\x82\x60\x86\x39\x60\xf1\x75\xa7\xa0\x13\x0f\xc7\xc8\xf5\xe7\x3a\x8b\x15\x5f\x6a\x16\xea\x7a\x0f\xfa\xbb\xde\x83\xcd\x36\x6d\x7d\x5d\xd3\x85\x26\xff\x29\xa0\x17\xe8\x20\x92\x77\x2c\xc1\xd9\xa0\x77\x8d\x33\x39\x45\xe4\x9a\xa7\x29\x0b\xf7\xb5\xf4\x8a\xae\xd9\xbe\x4e\x03\x29\x14\xc7\xf4\x8e\x28\x9d\x5e\xef\x71\xb1\xe0\x82\xa7\xec\x7a\x8f\x8c\x08\x78\x74\x38\xcb\xb1\xe2\x80\x99\x27\x89\xa8\x4a\xc7\x24\x5f\x99\x17\x24\x7a\xae\x3c\x64\x22\xe5\x01\x8d\xcc\x04\xab\xfd\x70\x41\x68\x14\xaf\xa8\xc8\xd6\x2c\x71\xda\x41\x66\x45\x5f\xaf\xc6\x84\x66\x04\x29\x34\x5b\x7a\x95\x80\x78\x36\x44\xb6\x9e\xd7\x65\xdc\x16\xa4\x57\x11\x0a\x67\xae\x80\x81\x07\xc5\x11\x33\x32\x65\x38\x26\x1e\xdc\xe2\x7f\x64\xe6\x3d\xff\x7a\xca\x15\x86\xd1\x01\xae\xf1\x23\x76\xc0\x92\x4a\xa3\xdf\x68\x61\x7b\x8b\x79\x28\xb2\x90\x51\x24\xef\xc0\x25\xd0\xc8\x3e\xb9\x34\x80\x68\xe9\xf7\xc8\x1a\xe3\x6d\xbf\x89\x78\xca\x12\x1a\xe9\x5f\x7c\x3d\x5f\x5f\x93\x11\xfa\xd1\xeb\x83\xb2\x8e\x69\xc2\x95\x14\xfb\x04\x02\x69\x2c\x4f\x6b\xbb\x5c\x48\x49\xe6\x34\xf9\xff\xd8\xfb\xd7\xe5\xc6\x6d\xac\x51\x18\xfe\xff\x5d\x05\xe2\x7e\xaa\xdc\xbd\x3f\x4b\xee\xce\xa1\x27\xe3\xd4\xd4\x5b\x8e\xed\x4e\x54\xe3\xb6\xb5\x6d\x75\x92\xa9\x71\xb6\x1f\x88\x84\x24\x6c\x53\x00\x87\x20\x65\x6b\x32\x79\x2b\x17\x32\x73\x73\xb9\x92\xb7\xb0\x16\x40\x82\x24\x78\x90\xdb\xce\x1c\x1e\xf2\x47\xd2\x16\x41\x1c\x16\x80\x75\x3e\x00\x9f\x9d\x0f\xf7\xc9\x8e\xc3\x15\xe3\x69\x8e\x9c\xfd\x25\xa3\xd1\x57\xe8\xf8\x65\xf1\x2c\x5f\x18\x04\xcb\x15\xb4\xb1\x3a\xa3\x7c\x48\xff\xbd\xfc\x09\xe6\x41\x0b\x67\x85\x79\xf1\xcf\x00\xff\x39\x1e\x8f\xc9\xcf\xce\x0c\xd2\x24\x63\xd6\x83\x3b\x77\x80\xc2\x31\x7e\x20\x7e\x97\x4b\xa3\x2c\xeb\x18\xaa\x98\xab\x5e\x00\x17\x3d\x26\xe7\x1b\x6c\xc7\xf9\xc2\x60\x6d\x13\xf4\x6f\x89\x33\x67\x2d\x4f\x41\x7f\xb7\x9a\xbb\x79\x55\x0c\x3d\xcb\x47\xa6\x69\xb1\x3b\xce\xce\x7c\x02\x87\xd4\x8b\xf3\x4d\x17\xb9\x60\x2d\x17\xd0\x16\x24\x2b\xf8\x7f\xf6\xfa\xf5\xa7\x6f\xf1\xbf\xf8\x26\xff\xe6\x7a\x25\x93\x74\x14\xf0\x24\xc8\x78\x0a\x74\xd3\x7c\xe4\x1b\xe8\x6f\x7f\x6b\xfd\x1a\x34\x70\xe9\x4b\x6c\xf3\x2a\x6f\x14\xd3\x84\x09\xcc\xb5\xba\x4c\x64\x16\x6b\x66\xe1\xe6\x26\xa5\x51\xf4\xd2\xab\x49\x35\xc9\x3f\xd1\x36\x9e\xe3\x0b\xdb\x9b\x3d\xc3\x34\x8a\x1c\x01\x09\x2e\xe8\x39\x9e\x07\xe4\x00\xfc\xc4\x9d\xea\xab\x8d\x78\xc6\xba\x0f\xb9\x28\x53\x1d\x90\xd1\x01\xb9\x05\x38\x1c\x8e\xc9\x35\x5c\x39\x62\xae\x5c\x63\xa7\x6b\x99\x30\x12\x6b\xde\x48\x29\xbe\x61\x64\x8e\xae\xaf\x5b\x2b\x98\x1b\x95\x09\x61\x2a\xa0\x31\x23\xc1\x8a\x26\x34\x48\x59\x62\xa6\x7d\x86\xfe\x83\xde\xcb\xf0\x12\x10\xff\x9a\x86\x6c\x94\xc5\x78\x2c\xd4\xab\x1c\x1d\x41\xc4\x85\x41\x1d\xf7\x6c\xae\x99\x2f\x66\x90\x87\xbb\xe3\x21\x8b\x23\xb9\x5d\x33\xe1\x45\xa7\xe6\xfb\x38\x91\xa1\x3d\xa4\xd0\xaf\xbe\x53\x80\x93\x12\x29\xb4\x80\xee\x1c\x75\x2d\xd3\xe2\x0f\x3f\xeb\xe6\x45\xff\xe4\x93\x3f\x34\xdd\x80\x90\x6d\x6c\xf7\x9f\x90\xca\x2d\xf0\xa1\xb2\x36\x8e\xaa\x2c\xca\xb6\x18\x5a\x5a\xe4\xd8\x76\xae\x7b\x81\x4e\x55\x05\x59\xf0\x2d\xcb\x52\x2c\x3c\xa3\x86\x1d\xc6\x34\xc6\x52\xd8\x49\x5a\x4e\xd7\x67\x30\x69\x5b\x23\xa8\xcb\x7a\xd0\x54\xd0\xaa\x71\x11\xf2\x00\xf8\xf2\xfb\x15\x44\xf1\x21\xf5\x32\x24\xd1\xf1\x27\x30\x79\x8e\xbd\x78\x4a\xdf\x3b\x69\x12\x1d\x1f\x98\xbf\x34\x4f\x3d\x26\xe8\xbd\x03\xd4\xe4\x21\xd6\x4c\x4a\x1a\x6d\x1d\x96\xfa\x25\x24\x69\xf6\xba\x65\x39\x78\x54\x90\x20\x61\xc6\x6d\x58\x99\xdb\x2d\x13\x22\x78\xf4\xea\xc0\x3a\xfe\x86\x6c\x41\xb3\x28\x55\x04\x97\xa5\x41\x97\x84\x0d\x2c\x75\x2a\xc9\xbd\xc6\x95\x13\x93\x4a\x5b\x4f\xe2\xcc\xfc\x53\xdf\x47\x83\x39\xf3\x5c\xc5\xe0\xa9\x82\xea\x48\x33\x8c\xaf\x57\xae\xf0\x76\x8d\xc8\x9f\x0d\x5f\xa4\xa7\x62\xc7\xf8\xf1\xc0\x10\x07\xcd\x65\x82\xca\xcb\x0e\x89\xf9\xa4\x5f\x72\x11\x44\x59\xe3\x8c\x57\x8c\x04\x54\x73\x9e\xd0\x41\xd1\x0d\x41\xf2\x2c\x64\xbe\x18\xe8\xee\x95\x67\x26\x67\x8d\x79\xaa\xab\x73\x2b\x4d\x4c\xa3\xa4\x6a\xf7\xcd\xeb\xf4\x1e\x8f\xea\x1c\x6a\x03\x82\xfc\xe5\xd9\x0d\xcc\x71\xee\xc7\x0b\x02\x8f\x56\x99\xd7\x4f\x18\xd5\xf7\x28\xb8\x23\x74\x49\xb9\x38\x30\xa7\x01\x95\x76\xd1\x3d\xdd\x2a\xe3\x9a\xe9\x3d\xc5\xd6\xce\x86\x06\xb6\x03\x22\xd8\x86\x25\xa5\xf3\xe6\x55\xa7\xf5\x4c\x83\x5e\x40\x81\x30\x20\x1a\xb9\x2a\x3a\x96\x4a\xf1\x79\x64\x07\x2e\x3c\x08\xf4\x07\xd7\x31\x0b\xfc\xf2\x1e\xae\xad\xd9\xa7\xa2\x5d\xb2\x6c\x14\xda\xfc\xb2\x5e\xfd\x57\xa0\x19\xa1\x6b\x29\x52\xa9\x4c\xe8\x92\xd9\x9f\x54\x4a\xd3\x0c\x01\x83\x0a\x53\x16\x5e\x38\xaa\xac\x3b\x2e\x42\x8d\x87\x2c\x48\xe3\x28\x4b\x68\x54\xfc\x12\x48\x81\xb6\x0b\x75\x44\xfe\xfc\xa3\xfe\x45\xf7\xcf\x42\x13\x78\x64\x7e\x1d\x8d\x46\xe6\x3f\x34\xe6\x36\x84\x89\xd0\x98\xb3\x87\x94\x09\x68\x38\xbe\xfb\x52\x8d\xb9\x3c\xdc\xbc\xb9\x11\x38\xe8\x49\xa6\x52\xb9\xbe\x62\xa8\x8b\x3d\x65\x20\x71\x01\xaa\x2e\x05\x0a\xd5\x63\x6f\x72\x15\x6b\x32\x5a\x32\x31\xbe\xcb\xe6\x6c\x9e\xf1\x48\x8b\x80\x7a\x00\x3b\xfc\xcb\x90\x6d\x58\x04\x2c\x8a\xc5\x5c\x33\xbe\x66\x2a\xa5\xeb\x58\x0b\x43\x11\x78\x9b\x6b\x02\x76\x44\x04\xba\x83\x29\x96\xaa\x71\x90\x84\xe3\x38\x91\x1a\xc6\x01\xa0\xb5\xb1\x4c\x96\x37\x42\xe3\x4b\x98\x00\x30\x41\x47\xa4\xa1\x59\x59\x53\x88\x2b\xad\xfa\xac\x45\x5c\xa5\x7f\xac\xbc\x39\xe7\x2a\x2d\x6f\x81\x33\x27\xb3\xb3\x5c\x2c\xb3\x88\x26\xee\x2b\xd8\x91\x40\xea\x63\x91\x7b\xa7\x81\xac\xb8\xb1\x1b\xa4\xff\x18\x99\x65\x6a\xe0\x43\x4f\xc1\x8a\xad\x8b\x38\x2c\x19\x33\x71\x3c\x9d\x7c\xf7\xd9\x75\xf9\xf7\xba\x53\x98\x99\xac\x75\x6f\x28\x86\x1c\xb1\xbf\x64\x7c\x43\x23\x8d\xb2\xcd\xcd\xa9\xfa\xeb\x39\xd7\xa3\x41\xeb\xea\x1c\x9e\xf2\x6d\x28\x07\x6c\xeb\xa9\x1a\xcb\x19\x3a\x93\xe2\x64\xcc\x8a\x59\x68\x96\x87\xf3\x00\x7c\x64\x88\x09\xf5\x69\x56\xe4\x02\xf8\x07\xb8\x53\x63\x60\x32\x58\xa2\xac\x18\x1a\x48\xb1\x61\x49\x4a\x12\x16\xc8\xa5\xe0\x7f\xcd\x3b\x57\xd6\x96\x07\x75\x14\x6a\xa4\x88\x8b\x94\x25\x9a\x1d\x01\x64\x72\x00\xe8\x74\x4d\xb7\x24\x61\x7a\x18\x92\x09\xa7\x43\xeb\x49\xf0\x5e\xb3\xa1\x5c\x2c\xe4\x11\xa4\xd1\x50\x47\x87\x87\x4b\x9e\xda\x7b\x13\xc8\xf5\x3a\x13\x3c\xdd\x1e\xc2\xf1\xe7\xf3\x2c\x95\x89\x3a\x84\x33\x7e\xa8\xf8\x72\x44\x93\x60\xc5\x53\x16\xa4\x59\xc2\x0e\x69\xcc\x47\x30\x77\x01\x17\x67\xbc\x0e\x5f\x24\xe6\xa2\xa9\x7d\x1f\xa6\xa9\x23\x28\x38\xba\x6d\xdb\xa0\x4f\xb0\x89\x3e\x43\x3e\x1b\x19\x85\x1c\xda\xd6\x8c\x7a\x75\x76\x3d\x23\x76\x74\x6f\xa4\x1e\x02\xbf\xf8\x52\x15\xfb\xa0\x81\xc6\xc5\xc2\x72\x44\xa0\xca\x74\x15\x08\x48\x94\x23\xee\x61\x8e\x55\x36\x5f\xf3\x54\x39\xf9\x17\xe4\x98\x9c\x00\x3a\xd1\xf4\x27\x8b\x43\x9a\xb2\x70\x4c\x26\x82\x9c\xd0\x35\x8b\x4e\xa8\x62\xcf\xbe\x0b\xc0\x16\x8e\x34\x6c\xfb\xee\x43\x43\xd4\x64\x93\x32\x30\x47\x53\x0d\xdb\x56\xdc\x47\x4d\xd3\xca\x4e\xfb\x36\xc6\xa3\x88\xab\xa4\x35\xdc\x55\x3c\x76\x4b\x2b\x64\xaf\xc5\xa2\xd2\xe0\x83\x5a\x2b\xb6\x62\xdd\x64\x26\xd3\x1c\xd3\xa1\x5c\x3d\x67\x91\xd4\xa7\x4a\x1a\xed\x0e\xf3\x19\x14\x9a\x39\x81\xff\x61\xb4\xf8\x85\x89\xcc\x38\x22\x48\xa0\x0e\x53\xb6\x8e\x01\x5f\x1d\xe2\x0f\xe0\x79\x52\x58\x2c\x13\x35\x4a\xe6\x34\x18\x6f\xe9\x3a\xba\x11\x3f\xfd\xc4\x17\x84\xfd\x85\x8c\xaf\xbe\x3e\x3e\x39\x91\x62\xc1\x97\xe4\x66\x4f\x37\xb8\xd9\xfb\xf9\x67\xdd\xfb\x04\x98\x65\x46\x28\x09\xa2\x4c\xa5\x2c\x49\x64\xc4\xf2\xe2\x1f\xd5\xbe\x41\x7b\x26\x05\x13\xe9\x81\xfe\x18\xca\x87\x00\x06\x49\x2d\x2a\x6d\x98\x94\x95\xc4\x0a\x73\x9e\xe1\x1f\x70\xd0\x2b\x19\xb1\x32\xdf\x01\x8b\xa0\x59\xba\x92\x09\xff\x2b\xba\x31\x38\xcc\x47\xe9\x3e\x21\x59\x6c\x18\xf8\x46\x00\xeb\x0b\x0d\x5f\x90\x0b\x19\xa2\x5e\x82\xdc\x1b\x6f\x85\x54\x92\xb5\x14\x1c\xbc\xf2\x64\x42\x42\x16\x31\xbc\xe7\x48\x72\x69\xcc\xbf\xd1\xac\x82\xde\x17\xbd\x85\x3f\xe2\xae\xe6\x78\x38\x3f\xa2\x23\x22\x74\xdf\xf8\xe7\x86\x25\x73\xf7\xd5\xbd\xeb\x5e\x35\x82\xab\x51\xfc\xb5\xc4\x5b\xf9\x82\x4c\x6d\x62\x9e\xbf\x64\x2c\xe1\x46\x41\x92\xe7\x4c\x61\x0f\x5c\xa5\x4c\x98\xab\xba\xd3\xcc\x62\x19\x36\x4c\x2c\x1f\x7b\x32\x3d\x7e\x5f\x7c\x6b\xc2\x30\x04\x8f\xa1\xc4\x50\xa8\x85\x25\x81\x0b\x34\xe1\x1f\x11\x4b\x8d\x45\xa6\x3a\x13\x3f\x4b\xd5\x36\x3d\x1e\xc7\x52\x46\x0d\x33\xb4\xb0\xfa\xf8\x61\xe6\x91\x0c\xee\xe8\x02\x39\xd4\x42\xd3\xa3\xc7\xa7\x6b\x78\x59\xf9\x6d\x45\x45\x18\x35\x6d\xe9\x92\xa5\x4d\x1b\x0a\x8c\x2a\x2b\xfe\x46\x22\x55\xfc\x8d\xd0\x43\xb8\xd7\xee\xc9\x9a\x0a\xba\x64\x8a\xac\xa4\x4a\x1d\xdf\x83\x27\x81\x40\xa9\xcf\x67\x5d\xd6\x05\x63\x21\xa8\x0e\xb4\xec\x99\x4a\xd3\xd6\xa2\x18\x27\x48\xfd\xa9\x96\xe6\xe9\xb9\xc7\x02\x9b\x97\xf4\x82\xfc\x31\x9b\xb3\x93\x62\x63\x10\x79\x66\x49\xae\x3c\x41\xfd\x01\x4f\x75\x8f\x8a\x68\x1e\x25\x80\x26\x4f\xb3\x1e\x7d\x2e\x9c\x63\x11\xb8\xa3\x7b\x57\xf6\x02\x25\x76\x3d\x0f\x79\x2f\x9c\xb9\xd4\x96\xfd\xc2\x2c\x9b\x50\xab\x83\x21\x7c\x41\x84\x14\x0c\x71\x8c\x6a\x82\xcf\x0b\xbb\x8d\x48\x02\x9b\x4e\xc2\x0b\x44\x77\x80\xb4\x82\x55\xc9\x03\x36\xc7\x84\x40\xda\x6a\x14\xe0\x6b\x2e\x50\x6d\xf3\x4c\x84\x40\x46\xec\x8a\xa1\x37\xa9\xdd\x9f\x96\xfe\x75\x33\x0f\x91\xea\x1c\x46\x65\xc0\x4e\xe8\xad\x19\x99\x0e\xca\x5a\xcf\x1e\x7d\x38\x71\x7c\x47\x88\x23\xd4\x56\xa5\x6c\x5d\xe6\x0c\xae\xa8\x08\x56\x2c\x19\x59\x96\xef\x88\x9c\x00\xbc\x5d\x42\xac\x91\xb6\xbb\x00\x74\xe8\xd0\x94\x05\xb5\x7d\x50\x7d\x8d\x06\x77\xf7\x34\x09\x91\xbc\xd3\x94\xcf\x79\xc4\xd3\x6d\x1f\xe6\x43\x77\xef\x32\x1c\x5d\x0c\x85\x3b\xab\x53\xca\xd6\x52\x5c\xb3\x2e\x5e\x02\x1a\xff\x46\xfc\x43\x99\x5d\xd0\x7c\xec\xc9\xc5\x44\x33\x71\x4b\x2e\x88\x00\xac\x96\x4a\x7d\x9b\x80\xa8\x1e\x20\x4d\x44\xd1\xd0\x8d\xf5\x7a\x3c\x85\xae\x70\x12\x56\xec\xc7\x8e\x5b\x51\xda\x4e\x03\xd6\x5c\x1b\x47\x16\xc2\x0d\xd8\xe5\x83\xd1\xb3\x87\x5c\x05\x72\xc3\x92\x5c\xb5\x3e\x99\xa2\x59\x89\x86\x5a\xc8\xe6\x8a\xad\x5d\x0f\xd2\x56\xde\xc7\xd3\xeb\x6c\x1b\xaf\xa8\x1a\xfb\xb9\x23\x72\x32\x39\xbd\x22\x34\x4b\xe5\x28\x64\x5a\x3e\x03\x3b\x9b\x80\x0b\x42\xc3\xb5\xd9\x9f\x82\xea\x20\x12\x24\x6b\x1a\x3f\x62\x4b\xf0\x63\xfd\xed\xd3\x41\x1d\x36\xf6\xd0\x45\x9f\x55\x30\x6b\xc2\x69\x8a\xef\x05\x11\xa3\x20\x92\x6b\xa6\xd5\x48\x70\x1f\x04\xdd\x50\x1e\xd1\xb9\xbe\x52\x11\x5d\x3a\x80\x8a\x5d\x38\xbf\xb0\xca\x7c\x10\x2e\x14\xc6\x12\x04\x65\x12\xe6\x64\x8a\xe1\xc8\xdc\xb9\x6a\xba\xb1\x9f\x2a\x7e\x5f\x45\xed\x1a\xce\x7f\xcc\x7d\xdf\x4b\xf1\xa5\xbc\xe1\x26\x18\x71\x90\x8b\xa5\xc5\xb4\xad\x30\xc3\xd6\x71\xc9\x31\xa3\x27\x83\x6d\x0e\xd8\x7c\x6b\xc1\xa1\x27\x6e\x75\xdc\xc5\xfa\x3f\xfa\xbe\x56\x2e\xa8\x73\x9b\xac\xe1\xa9\x9d\xb9\xad\x2c\xa2\x86\x78\x62\xeb\xee\x2b\x43\x7b\x7c\x1e\x37\xe7\x96\xb3\xe7\x9c\xa0\xfc\xf4\x18\xc9\x48\x91\x0d\x4d\xb8\xcc\x14\x39\xb9\x3a\xc5\xdb\x8e\x67\xe9\x89\x98\x37\x0c\x42\x5e\xb0\x88\x3f\x60\xbf\x0e\x1c\x9d\x5f\xcb\xec\x0f\xb0\xf4\xcb\x38\x66\x86\x60\xba\x5d\xcd\x97\x71\xad\xa3\xfc\xb7\x7a\x37\x25\x01\xa4\x49\x22\xc0\x9e\xbd\xa7\xb1\xf6\x5a\x31\x17\xb1\x36\x7e\xe3\x6d\xdd\xc8\xc9\x36\x70\xf0\x8d\xa2\xcd\x0e\xac\xfd\x7d\x7d\xe7\x33\x95\xe6\x7c\xa2\x08\x73\xce\x4f\xe3\x11\x38\x04\x52\x68\x36\x30\x49\xb3\xf8\x39\xa4\xc0\xce\x9d\xef\xcd\xef\xb7\xb1\xf8\x3b\xe1\x48\xe3\xa7\xa5\xf1\xe4\x93\xea\x06\xfa\x6d\xcb\x0c\xcc\x69\xd6\xbf\x41\x0a\x94\xc3\xc1\xb7\xd4\xba\x22\xc2\xbd\xcc\xe2\x65\x42\x43\x13\xda\xb0\xf9\x74\xfc\x16\x79\x93\x00\xeb\x00\xbf\x20\x73\x46\x12\xb6\x96\x1b\x16\x1a\x37\x3c\xfb\x81\x4c\xf4\x0a\x17\x09\x53\x2b\xc2\x85\x4a\x69\x14\x3d\xa9\x80\xd6\x72\xfd\xca\xb7\xb8\xef\x06\x1a\x1e\xf8\x5d\x44\x85\x60\x51\x99\x11\x7c\x41\xa6\x19\x78\xef\x03\x18\x1c\x15\xf0\x2a\x9b\x8f\x03\xb9\x3e\x0c\x64\xc2\xa4\x3a\x5c\xe0\xc7\x87\xf3\x48\xce\x0f\xd7\x54\x77\x70\x78\x2a\x83\x6c\x6d\xed\x0c\x87\xc0\x7b\x9b\x66\x86\xcf\xd5\x6c\xee\x53\x33\x9f\x66\x04\x97\xfb\x7c\x5a\x0d\xcf\x53\x9d\xd6\x86\x03\xfa\xa4\x5c\x50\x4e\x89\xcc\x16\x6b\xb1\x10\x83\x3b\xea\x7b\x5d\x88\x0a\x82\x46\x15\x39\xcb\x27\x24\x3c\x95\x88\x29\x68\x34\x2a\x36\xed\x49\x05\xcb\xbc\xdb\x9d\x04\x49\x41\xa3\x4e\xb1\xb1\x43\x62\x74\xc1\x0a\x17\xc7\x95\xbf\xba\x24\x46\x14\x18\xfb\x43\xb5\x79\x67\x1a\xe1\x9d\x4b\x68\xcf\x20\xc7\x3f\x2d\xb4\x7f\xfa\x89\x89\xf0\xe7\x9f\x7b\xab\xf0\x81\xa8\x58\x01\x1a\x82\x91\xd7\x54\xf0\x05\x53\xa9\xc5\xc5\xca\x39\xe5\xc6\xdc\xc3\x92\x03\x42\x15\xb9\x67\x11\x7c\x66\x02\xa0\x0a\xae\x51\x99\x92\xe0\xc0\x63\x58\x59\x48\x0a\xdd\x96\x51\x48\x25\xad\x81\x01\x8d\x74\x0b\x96\xa0\x0c\x00\x65\xcb\x1d\x8e\xde\x50\xda\xfc\x32\xe5\x52\x7b\xd5\x4f\x20\x56\xad\xd7\xa5\x0d\x5e\xc4\x78\xd5\x59\x1b\xca\x97\x6a\x44\xe3\x38\xff\x30\x37\x87\x55\xdc\x9c\xc1\x0d\xf1\xdc\xfd\xb2\xfe\x2d\x31\x04\xe3\x3a\x4d\x68\xca\x96\xdb\x23\x63\x14\x19\x7f\x28\xfd\xac\x37\xeb\xa7\x9f\x48\x2a\xff\x44\xd7\x51\xf5\x25\xf9\x1b\xe1\x22\x64\x22\x25\x9f\x63\x3b\x16\x29\xa6\xff\x45\x72\x13\xd2\x95\x8c\x22\x2e\x96\x1f\x1c\x4d\x58\xe2\xfe\x94\xcf\x6f\x4d\x1f\x1c\x21\xee\x88\xbc\x71\x4e\x0b\x21\xf6\x64\xd8\x05\x56\xcd\x86\x51\x79\xb1\xbe\xe5\x56\xac\x87\x7a\x4f\x3d\xce\x79\x45\xb8\xb2\xbe\x90\x52\x1d\x91\x88\x8b\xec\xc1\x36\xd0\x7c\xa6\x11\xe5\xac\xdd\x0b\xa1\x76\xe1\x74\x67\x21\xd0\x30\xc8\x4f\x3f\x99\x04\x68\xff\x75\x77\x40\xfe\x6b\x43\x8e\xfe\x50\xfe\x9c\x14\xdf\x43\xe3\xff\xba\x23\x3f\xff\x7c\x44\x6e\xf6\xf4\xbf\x37\xfa\xed\x9e\xd3\x15\x13\x21\x31\xc0\xb7\xc0\x02\xe8\xcb\x88\x25\xb5\xa4\xae\x2f\xc8\x7b\x7a\xc7\x88\xca\x12\x7b\x67\x40\x49\xab\x82\x15\x0b\xb3\x08\x5d\x03\x21\x3d\x8f\xa6\x44\x8e\xf5\x71\x64\xc2\x15\x8f\xc8\x85\xbc\x36\x8d\x8b\xb7\xe0\x63\x91\x50\xbd\x46\x72\x56\xd2\x94\xe2\x88\xc9\x9d\xf1\x41\x0a\x31\x0e\x27\x48\x38\x46\x0a\xd0\x30\x1c\x19\x5b\x6c\xc2\xcc\x24\xb4\xf4\xeb\x0e\x7c\xc7\xb6\x47\xe4\xc4\x7c\x71\x1c\x86\x52\xa8\xcb\x4a\xc6\xa8\xe6\xd1\xdd\x79\x9f\x3d\xb0\x20\x4b\x7b\x4d\xbb\xcb\x3a\x88\xad\xca\x8e\x9e\x17\xe5\x1b\x8d\xdd\x94\xb6\xe4\x05\x79\xcf\x05\x5f\xf3\xbf\x32\x12\xca\x7b\x91\xf2\x35\x23\x61\x06\x9a\x0c\x6a\x2f\x85\xcb\x76\x5a\x93\xdb\x57\x24\x65\x51\xe4\xa2\x9e\x54\x92\x50\x12\x4a\x6e\xf6\x20\x05\x69\x31\x80\xfd\xe4\x66\xaf\x30\xf0\x97\x4f\x74\x28\x03\x75\x18\x48\x11\xb0\x38\x55\x87\x36\x83\x93\x3a\x04\x21\x38\x96\xe1\xe1\x0b\x1b\x47\xc5\xa5\x18\xc9\xc5\x48\xbf\xc8\x37\xc4\x79\xf7\x4d\x42\x03\x36\x65\x09\x97\xe1\x35\x0b\xa4\x08\xd5\x11\x79\x5d\xcc\xc4\x10\xd4\x22\xb3\x22\xaa\x45\x6c\x83\x38\xe1\x32\xe1\xe9\xf6\x24\xa2\x4a\x21\xe8\x7e\xfa\x89\x8c\x4f\x28\x64\x17\xae\xbc\x23\x7f\xcb\x15\xf2\x37\x7b\x88\x1a\x51\xbf\x6a\x0f\xd2\xcd\x9e\x73\x67\xb4\xac\x77\x62\x29\x41\xf9\xf0\x03\x05\xc9\xa9\x44\x99\x84\x68\xfa\x30\xe7\x82\x26\xa5\x20\x17\x54\xbf\xea\x77\x15\x7a\xb1\xe0\x11\xb8\x8d\x02\xc5\xc8\x65\x1f\x7b\xea\x10\xbd\x9b\xfe\x47\x81\xe0\xee\xa9\xe3\x6b\xb0\x9a\xff\xf4\xd3\xf8\xe4\x62\x32\xd1\x7f\xb8\x17\x1e\x02\x31\xd6\x54\x53\x94\x3f\xdf\xec\x1d\xca\x38\x3d\x0c\x04\x3f\x9c\x73\x71\x68\xfa\xcb\x79\x48\x7c\x98\xd8\xbc\x4b\xe4\xba\xe4\x13\x60\xb5\x74\xef\x69\x6c\x19\x02\xf7\x79\x41\x8e\x21\x8a\xe4\x8f\x1f\xbe\x3e\xbb\xba\x38\x9b\x9d\x5d\xdf\x5e\x9f\x5d\x7d\x37\x39\x39\xbb\xfd\xf6\xf2\x7a\x06\x6b\xf6\xbc\x9b\x5e\x5e\xcd\x4c\x10\x91\xdc\xb0\x24\xe1\x61\xc8\xf0\xf6\xb2\xaf\xa7\xef\xc8\xba\x0c\x05\x7c\x10\x12\x4e\x12\x08\xab\x4d\x1d\x59\x71\xbd\xfa\x85\x75\x76\xae\x27\x88\x60\x62\x53\x59\xca\x0b\x70\xd2\xb2\x3e\x59\x7a\x9b\xdc\xed\xd1\xac\x19\x08\x49\x95\x59\xd9\xfd\x39\xb9\x98\xdc\x9e\x5c\x5e\xbc\xbb\xbd\x38\x7e\x7f\x56\x9d\x06\xf8\xfb\x68\xac\xfb\xe6\xf5\x08\x6e\xf5\x58\x77\x0d\x6c\xfe\x5e\x75\x12\x56\x2b\x55\x39\x23\xe0\xd2\x0c\x5b\xd6\x74\x52\xaa\xb3\xb9\x38\x9b\x7d\x7f\x79\xf5\x47\x98\xd5\xe4\x1b\xef\x94\x6a\x7b\x6d\x0f\x8d\xd9\xef\x3f\xb2\xad\x6f\xcb\x8b\xbd\x30\x3c\x63\xc9\x0e\xe6\x3e\x80\x70\x03\xc1\x6f\xcd\x6a\x6e\x7d\x4d\x5f\x90\x6b\x86\xee\x49\x9a\x22\x82\xe9\x24\xf7\x2d\x07\xff\x88\x2f\x15\x72\x4d\xfa\x55\xc3\x82\x9d\x13\x76\x71\x79\x7a\xd6\xbc\x0b\x0d\x4b\x06\xb7\xd4\xa6\xb5\xc2\xcb\x29\x4d\x57\x47\x80\x82\xc6\x7a\x32\x10\x41\x56\x59\x86\xde\xb6\xf7\xb3\x0f\xc4\x60\xf9\x0d\x4d\xb8\xe6\x3f\x9a\xb7\xe8\xfd\xec\xc3\x3f\x71\x5f\x36\x2c\x5d\xdd\xae\xd3\xac\xba\x8c\x69\xc2\x36\x4c\x98\x02\x19\x05\x86\x03\x69\x45\x45\x8c\x41\x5c\xcb\x42\xea\x56\xd5\x22\x3a\x76\x71\xd7\xe7\x67\x67\xb5\x4a\x54\xf9\x2d\x58\xd0\x48\xb1\xf2\xc9\xdf\xc8\x28\x5b\xb3\xf7\xbe\x80\xfd\x11\x59\xeb\x9f\x11\xfe\x87\xfa\x88\xb8\x88\xcc\x8f\x23\x02\xc1\x47\x73\x2e\x46\x21\x4f\x3a\x3b\x63\x69\x00\x9d\x09\x96\x8e\x6b\xc1\x83\x45\x77\x82\xa5\xd5\xee\x14\x0b\x32\x20\x2e\x52\xa4\xec\xa1\x5a\xb1\x25\x4e\xf8\x86\x47\x6c\x59\x76\x74\x42\x10\x1f\x87\xa1\x66\x5e\xde\x45\xec\x81\x7c\x07\x4b\x27\xa7\x09\xdf\x80\xf3\x1e\xb5\x3a\x41\xdd\x22\x66\x89\xa6\x9a\xe4\x83\xe0\x0f\xe4\x54\xae\x29\x17\xe4\x5a\x06\x77\x98\x15\x08\x82\x7c\xc8\x29\xbf\xd3\x52\x46\x89\xd2\x80\x61\x06\x3c\xf0\x02\x9a\x9a\x08\xd0\x77\x2c\xe2\x0f\x80\x6d\xdd\x60\xc8\xeb\xad\x08\xc8\xf1\x74\xe2\xa1\x39\x8b\x88\x3d\x6c\x64\x34\x0a\x61\x6a\x7e\xb2\xa3\x97\xf0\x9d\x8c\x26\xeb\x65\x99\xf0\x34\x6e\xa8\xbf\xf3\x91\xde\x8a\x32\xfc\x6a\x1b\x55\x9f\xc6\xe3\x36\x20\xf0\x13\xf4\xab\x4c\xa8\xaa\xf0\x97\xe3\x5a\x87\x61\x02\xb4\x5b\xa9\xf1\xf2\xc2\xf9\x24\x4e\xe4\x32\xa1\x6b\x95\x63\x70\x1b\x9c\x22\x42\x92\xc8\x2c\x85\x34\x59\xd0\xab\xfb\xbd\x5e\xa1\x67\x0b\x1c\xd9\xd5\x0f\x7f\xcd\xec\x7b\xe8\xfe\xff\x6c\x42\xfe\x41\x31\x77\xc7\x8e\xa7\x13\x2b\xb9\xcf\x69\x70\xa7\xd1\x97\x16\xf8\x40\x25\xdd\x80\xc0\x4e\x8f\x67\xc7\xd7\xb3\xcb\xab\xb3\xdb\xd9\x9f\xa6\xcd\xf4\xbc\x58\x42\x9d\x90\x5b\x67\x16\x86\xbb\x4e\xe8\x72\x99\xd8\xb8\xc5\x9c\xbe\xc5\xc6\xe0\xda\x30\x8d\x0f\xd7\x1a\xc0\xa7\xb7\xba\x49\xe3\x24\x00\x22\xb5\xe1\xbf\xa7\x3c\xcd\x3d\x02\xba\x96\xfb\xfd\xf1\x64\x76\xfb\xee\xf2\xea\x36\x5f\xf7\x8e\xa3\x69\x0a\xbe\x33\xd1\xd6\x94\xfa\x9f\x42\xa8\x4f\xa5\xd8\x4f\x09\x13\x60\xe2\xfd\xfa\x9b\x69\x13\x17\x75\x7c\x3e\x39\xb9\xb4\x8c\xd4\xe4\xe2\x9b\xdb\xaf\x8f\x4f\xfe\x78\x76\x71\xda\x08\x1c\x21\x85\x07\x38\x46\x25\x86\x75\xa3\x34\x23\x07\xe1\xed\x0b\xcc\x9c\xec\xc4\x14\xea\xf7\x0d\x33\x39\xff\x70\x3d\x3b\xbb\xea\x38\x8c\x5f\xaa\x03\x94\x19\x6b\x33\x40\xd9\xea\x80\x70\xa1\x71\xa6\x16\xb0\x0e\x08\x4d\x4d\xfe\x01\xb0\x01\x91\x84\x8d\x6c\xf8\x9c\x66\x32\xf3\xb2\x16\x2a\xa5\x69\xc3\xac\xde\x9d\x9d\x4f\x7e\xb8\x9d\x4c\x67\xc7\x5f\x9f\x9f\x5d\x5f\x9d\xbd\xbb\x3a\xbb\xfe\x76\x72\x31\x3b\xbb\xfa\xee\xf8\xbc\x71\x9a\x6f\x5f\xd7\xe7\x77\x21\x9d\xdc\xb4\xe0\x62\x50\x4b\x45\x61\x07\x9d\x34\xf3\x15\x7e\x66\xda\x8a\x7b\x93\xe9\xe6\x73\x12\x4b\x19\x15\xbc\xbc\x63\x60\xab\xb8\x67\x8d\xc1\x15\x62\x32\xcd\xd3\x61\x57\x7b\x0e\x56\x52\x69\x3c\x87\x6e\xf6\x5c\xa1\x1a\x66\x8c\xaa\x5e\x74\xe8\xb7\xe9\x0e\x8d\x11\xc8\x35\xf8\x60\xaf\x2b\xba\xa9\xf5\x2b\xa4\x51\x33\x98\x84\x89\x26\xbc\x62\xa1\xf7\xc4\xe4\x29\xff\xef\xd1\xc8\xe8\x0b\x47\x01\x0f\x93\xff\x1e\x57\xfb\xa8\x9c\xdf\xc9\xf4\xbb\xcf\xa7\x97\x97\xe7\x1e\x2c\xf2\xa2\x24\x9c\xfc\xfe\xd3\xf1\x9b\xb7\x5f\x8e\x5f\x8f\x5f\x1f\xbe\x79\x5b\x07\xe6\x29\x57\xe8\x13\xa1\xe5\xa1\x48\x2e\x61\x99\x4a\x92\xff\x06\x3f\xba\x34\xd2\xbf\xa9\xff\x06\x3d\x67\x35\x0a\xae\x32\xa3\xd3\xc9\xb5\x3e\x32\xb7\xef\x26\xe7\x67\xb7\xe7\x97\xdf\x7c\x33\xb9\xf0\x0b\x28\xed\x08\x07\x19\x9a\x22\xc0\x41\x02\x15\xcd\x37\x1c\xf3\x83\xe8\x9f\x8f\x4f\x4e\xce\xa6\xb3\x86\x39\xe1\x29\x3e\x3d\x7b\x77\xfc\xe1\x7c\x76\x76\x71\x3a\xbd\x9c\x5c\xcc\x66\x97\x9a\xe6\x1d\x9f\xcc\x26\x97\x17\x8d\x33\xc3\x6e\x9b\x01\x35\x99\x6e\xde\xea\x23\x56\x90\xa2\xd6\x29\x4c\xa6\xdf\xbd\xbd\xfe\x30\xd5\x04\x75\x17\xd6\xd9\xd1\x90\x38\x26\x07\x88\x12\x43\xb3\xb2\xd2\xa0\x82\x11\xce\x2f\xbf\xd1\x20\x9f\x1e\xcf\xbe\xd5\x60\x81\xf3\x8e\x8e\x41\xb8\xb1\x00\x4f\xbb\xb3\xa9\x84\x9d\x6e\x9b\xb1\xd3\xdf\x8e\x28\xb1\xff\x84\xaf\xcf\xbe\x3b\xbb\x9a\xcc\xfe\x74\xfd\xa7\x6b\x9c\xb3\xb9\x54\x70\xf3\x72\xdf\x4a\xb1\x90\xad\x2b\x51\x5b\x15\xc9\x65\xc7\x5a\x9c\xa1\x76\xc0\x31\xc5\x49\x74\xc6\xbb\xd9\xbb\xa7\x89\xe0\x62\xd9\x67\xe9\xd7\xde\xf5\x9e\x5c\x9d\x9d\x5d\xe8\xbe\xbe\xc7\x9e\xea\x2b\xee\xbb\x1c\xe8\xa9\x71\x45\xdf\xfb\x27\x5a\xee\xee\xdb\xb3\xe3\xf3\xd9\xb7\x67\x17\xfa\xda\x36\x93\x3f\xff\x55\x6d\x5b\xb0\x25\x1e\x86\xb0\x82\x50\x93\xa5\x68\xff\xd2\xff\x70\x5c\xd0\x16\x44\x2c\x90\x26\xf5\xa1\x46\x5d\x94\x5a\x77\x5e\x9e\xea\x63\xa5\x39\x9f\xfd\xd5\xfe\x8e\xf1\x54\x35\x5e\x25\x88\xb3\x23\xf2\xe9\x17\xaf\x4b\xa9\xde\x22\xbe\x61\x82\x29\x35\x4d\xe4\xbc\x5a\x4f\x84\x3d\xd4\x62\x95\x0a\xdd\x5e\xf5\xf7\x11\x01\x0d\x5f\x83\xe8\x80\x2d\x46\x70\x43\x46\x7a\xcc\xca\x3a\xcb\x5a\xd8\x37\xaf\xcb\xaf\xc1\xf9\x85\x46\xa7\x2c\xa2\xdb\xc6\x46\x0b\xca\xa3\x2c\x61\xb3\x55\xc2\xd4\x4a\x46\xe1\x11\x79\x5b\x06\x17\x0d\x79\xd3\x4a\x57\x69\x1a\x7f\xc3\xea\xd5\x4f\x63\x14\x04\xf3\x6f\x6b\xef\x65\x92\x1e\x91\xdf\xbf\xfe\xfd\xef\xab\x6f\x34\x4d\x38\x22\x91\x0c\x68\x54\x17\x32\x5b\x97\xdb\x5b\x29\x11\xf1\xf9\xe1\x5a\x86\x99\x27\xb7\x05\x9e\xcd\x88\xcf\x47\x0d\x0d\xf4\x8a\x2e\x45\xb4\xf5\xe5\xb0\x2d\x8f\x92\x64\xe2\xf0\x01\x6f\xc0\x38\x92\xc1\x9d\x7f\x28\xd3\x62\xe4\x6b\x51\x8c\x85\x74\xa4\x65\xb0\x0d\x4d\x60\x40\x6b\xb9\xf5\x0d\xb5\xa1\xc9\x28\xc9\xc4\xc8\xdf\x66\xc7\xc1\x34\x0c\xbb\x06\xd3\x60\x7c\xd4\x60\xd8\x05\x0a\xe2\x6a\x2b\x6a\x11\xea\xbe\x95\xeb\x8b\x43\x97\xb5\x70\xc9\x17\x58\x0a\xcd\xca\xb6\x07\xe4\x9e\x01\xc3\x6a\x64\x60\x20\x3f\x10\xef\x94\x99\x98\x4b\xdd\x52\x13\x52\x34\x36\x68\xb6\xfb\x50\x6d\xd5\xe1\x42\x1d\xce\xe3\x85\xe6\x9f\xee\x99\x69\x8d\x19\x1c\xaa\xc3\x41\x56\x99\x94\x84\x3c\x01\x8b\x5e\xb5\x08\x89\x5d\x9c\xda\xaa\x45\xed\x70\xb9\xeb\x32\x83\xd6\xc5\xfe\xaf\x39\xf6\x8d\x69\x41\xd6\x8c\x0a\x0c\x22\x84\xac\x07\xf9\xe4\xba\x97\xc2\x53\x64\x6b\xe3\x44\xc6\x74\xa9\xd9\x6b\xe3\x37\x52\xd1\x6d\xd8\x71\x4d\x0e\x32\xe0\xd9\xb8\x22\x77\x42\xde\x0b\x17\x74\x34\x2d\x0d\x16\xe9\x3d\xde\x62\x5a\xbb\xf2\x94\x03\x2a\x40\xfd\x80\x39\xcc\x6a\x23\x21\x10\xcc\xa4\xc0\x8e\x5e\xfa\xdc\xd5\xc2\x54\x8c\x3a\x49\x26\x54\xee\x10\x93\x29\x1b\xa7\x8b\x66\x75\x28\x95\x31\x5a\x2f\xd1\x51\x83\x89\xd0\xed\x08\xe8\x57\xa4\x91\x0e\x44\xf7\xd6\xeb\x6a\x8c\x1c\x25\x48\xe1\xe4\x52\x4c\xda\x31\xec\x68\x91\xce\x78\x60\xd5\xd4\x6c\x85\x7d\x87\x18\x03\x8f\x46\xfd\xa6\xbf\x10\xf2\xd8\xec\x8d\x46\x3c\x1e\xad\xa9\xfa\x8b\xfd\xb3\x32\xff\x9b\x3d\xf2\xe3\xd3\x10\xc2\xba\x2e\xc6\x2e\x73\x7a\x79\xfa\x6c\x3a\x79\x6b\xc0\x1f\x8b\x9a\xa8\x5f\x1d\xfe\x7a\x7a\x7c\xf2\xfc\x73\x00\xef\x8b\x06\x26\xe5\xfc\xf8\xe2\xe2\xec\xfc\xf4\x76\xf2\x6e\xc7\x99\x3c\xb5\x51\x46\x37\xba\xe5\x8b\x1e\x33\x9d\xde\xbe\x3f\xbe\xfe\xdf\xff\xc4\xb9\xea\xb3\x9b\xb1\x84\x96\x19\x99\x16\x0d\x73\x7f\xaa\xd9\x45\x33\x5b\xe8\xca\xa8\xec\x4a\x36\x0a\x16\x95\x15\xb8\xb3\x60\x69\x50\x72\x73\xcc\xd1\x30\xae\xa2\xac\x89\xb6\xfe\xf4\x68\x2a\xac\xe3\x8c\x06\x6e\x42\x23\x52\x18\xae\x72\x61\x5b\x78\x94\x51\x27\x25\x6f\xef\xb4\x89\x4b\x18\x75\x12\xed\xee\x7e\x7d\x0c\xc1\xa8\x63\xc3\xda\x7b\x6d\x3f\x0a\xe8\x63\xf4\x8e\x47\xec\x32\x39\x29\xf9\xc3\xb6\x10\xd9\xf6\x01\xbd\x24\x17\xc7\x39\xb5\xe4\xbc\x3e\x58\x71\x00\xcc\x61\xf1\x9a\x66\xbc\x87\x2e\xbf\x78\x47\xbe\x63\xee\xbf\x6c\x45\x80\x90\x35\x30\x9f\x5c\xf8\xac\x41\x0d\x36\xb5\x76\x08\x78\x2d\x75\xa3\x76\xb3\x5a\x7b\x8f\x0d\xe6\xba\x62\x15\x46\xb5\xd7\x6c\x39\xf3\x9c\x7f\x3f\x67\xd8\x30\x91\xce\x0d\x24\xf5\x0b\xe2\x61\x26\xeb\x70\xaf\x9b\x03\x7d\x1b\xdf\x6a\x36\xdb\x75\xca\x3f\xfd\x34\xd2\x5c\x9e\x35\xe3\x4d\xc1\xa9\xf1\x94\x97\xfd\xc6\x8a\xf5\x14\x06\xbf\xbc\x25\xfa\x8b\x8d\x08\x8b\x14\x6b\xf8\xea\x30\x53\x70\x9d\xb5\x14\xeb\xb8\x10\xc1\x3f\x23\x96\x8e\x8c\x2b\xe5\x21\xe2\xc2\x43\x68\x96\x03\xec\xff\xcd\x42\x65\x46\x30\xde\x69\xe0\xef\xd9\xe5\x56\xe5\xba\x4d\x16\xae\xb0\x55\x67\xd3\xc7\xf8\x51\xee\xea\x77\x5a\x0d\x3c\xcd\x7d\x50\xaf\x19\xf3\xb9\xcd\x97\x5c\xfe\x0f\xeb\x61\xab\x5e\x87\x50\xe3\x36\xea\xe4\x3f\xdc\x25\x68\xf7\x31\x4e\xa3\x4d\x81\xb9\xd6\x2f\x12\x95\xef\xa5\xb4\x16\xd4\x14\xad\x84\x92\x07\x14\xb2\x34\x45\x0c\xd4\xb4\x1b\x86\x97\xc0\x66\x5e\x48\x58\x1c\xf1\x80\x2a\x70\xdd\xdc\xd5\x25\xb5\x71\x91\xaa\x70\x4f\x2d\x2e\xc5\x15\x2b\x82\x1f\xba\x3c\x43\x3b\xc1\x48\x48\x1b\x28\x49\x87\x73\x69\x4b\xb7\x1f\xe5\x6e\x6a\x2f\xf9\xac\xf0\xe3\x24\x4d\xde\x9d\x8e\x7f\xae\xdb\x3c\x77\xce\x7d\xdb\x70\xdf\x9b\x7c\x44\xfd\xca\x3f\xa7\xb5\x35\x18\x36\xe6\x34\x91\x04\x73\x48\x45\x2c\x85\xda\x4a\x99\x68\xf2\x2c\x2d\x7b\xa4\x16\x6e\xf5\x83\x5f\x6a\xe9\x43\x17\x97\x62\x9b\x8f\xf1\x51\x6d\xbd\x0b\x35\xaf\xd5\xc7\xba\x72\xea\x51\x2a\xc9\x22\x7a\xb9\x76\xe6\x86\x32\x9f\x77\xa7\xd7\x11\x64\xd4\xef\x96\x93\xb2\x8c\x5e\x34\xf0\x3b\x63\xd4\x5c\x14\x4e\x56\x12\x52\xb3\x83\x05\xd6\x3d\xef\xa9\xd4\x47\xbc\x41\xc9\x63\x14\xf0\xb7\x27\x97\x17\xb3\xab\xcb\xf3\xf3\xb3\xab\x26\x4b\x45\x5d\xed\xbb\x93\x6b\x83\xe3\xd8\xe0\x34\x68\xd5\xdc\xee\xaa\xa3\xd6\x4c\x01\xe8\xa9\x57\x2c\xb8\x1b\x95\xd3\x5d\x14\xcd\x46\xc9\xf3\x13\xfc\x9d\xa9\xe2\xae\x2c\x00\x4b\x83\x70\xa4\x34\xa1\x49\x2d\xf9\xef\xf9\x65\xba\x8d\x57\xb4\xef\x27\xd6\xe1\xc4\xf8\x98\xe2\x57\x7b\x07\xff\x3f\x42\xc8\x1e\xf2\xfe\x9b\xcf\xc6\x6f\x7e\x37\x7e\xb3\x77\x44\xf6\x74\x57\xa0\x5a\x22\x33\xd3\x43\xe1\xc0\x81\xbf\x9b\xc6\xbd\xe7\x6a\xc2\x95\x4b\x21\x36\x27\x56\x20\x21\x5c\xe5\x69\x84\xf3\x89\x62\xd1\xb3\x05\x70\xb1\x2c\x34\xc3\xba\x76\xf2\x22\xba\xcc\xf6\x53\xdf\xe8\xe6\x50\xa6\x5c\xd0\x69\xda\xc7\xfc\xb3\x17\x98\x13\x41\x4f\xd2\x98\x10\x51\x8d\x08\xe0\xbf\x35\x88\xef\x16\x3b\x77\x4d\x9a\xc8\xe4\x40\x0e\xc3\x05\x0d\x18\xae\xd0\x4a\xee\x80\xf3\x41\xbb\x09\x19\xbd\x03\x9b\xd8\x1b\x7e\x2a\xbc\xf3\x6c\x6c\x3c\x28\x44\x23\xb6\x48\xc9\x3c\xa2\xe2\xee\x20\x2f\xe0\xe1\xf4\xcf\x95\x75\x3c\x28\xb4\x91\xfa\xa6\xef\x2b\xec\xc1\xe2\x3f\xf0\x38\x82\x5e\x1d\x3d\x0f\x86\x7d\xa0\x3e\x71\x62\xbb\xb4\x11\x20\x2f\xc8\xf7\x26\xa1\xb2\x4c\x20\x01\x72\x2a\x1d\xbd\x4b\x51\x52\x45\x12\xa7\x3e\x24\xa6\x89\x47\xb7\x04\xec\xc4\xd2\x40\xe3\xfb\x06\x53\x28\xba\x29\xdb\x08\x5d\x17\x29\xfd\xdd\xfb\xd9\x07\x48\x63\xa4\x1c\xb9\x44\xff\x66\x39\x0e\xbe\x20\x82\xe1\x4f\xaf\x0d\x16\xb7\x2e\xac\x66\x69\xef\x67\x1f\x70\x3d\x86\xc4\x79\x78\x15\xf7\x8b\x37\x9f\x7f\xf1\xba\xd2\xba\xd9\x03\xdb\x86\x2b\x37\x39\x62\xc3\x67\x40\xd6\x50\x7c\x78\x61\xd3\xe3\x82\x56\x9f\xdb\xcc\x45\x45\x2d\x8b\x2c\x95\x6b\x0a\x44\x29\xda\x92\x58\x9a\x2c\x60\xb8\x69\x35\x8f\xe9\x23\xf2\xb7\x11\x22\xc7\x9f\x2c\x8e\xbc\xd9\x03\x7d\xe7\x9e\x71\xfd\xd1\xc2\xee\xc8\x7c\xe4\xe4\xe7\xbf\xd9\x0b\x84\xbd\x2f\xd8\xf6\xf5\xf8\xb3\xf1\x9b\x52\x0b\x23\x7f\xe9\xd7\x7f\x2e\x30\xf0\x4f\x2e\x32\xbe\xd9\x03\xe7\x24\xe8\xc0\x28\x65\xca\x35\x00\x6e\xf6\x22\xb9\xbc\x8d\xd8\x86\x45\xd8\xea\xfb\xe3\xab\x8b\xc9\xc5\x37\xde\x66\x0b\x1e\xb1\x5b\x2d\x1b\x62\x53\x54\xf7\xc8\xa5\x41\x24\x20\xde\x07\x82\x8f\x23\xb9\xac\x7d\x9e\x7b\xb2\xdd\x16\x13\x72\xbd\xf0\x2a\xcd\xf5\xd6\x14\x60\xba\xbd\xf5\xf9\x89\xdf\xde\xd6\x3e\x5b\xa7\x99\xfe\xe2\xf6\xd6\x78\x69\xdf\xde\x56\x1a\xf0\x98\xae\x75\x8b\x9f\xaa\x14\xcb\x05\x94\xbe\xe8\x23\x30\x3c\x7a\x0a\x26\xdc\xec\xa1\x06\x1e\x9b\x66\x8a\x4d\x65\x78\xc2\xc3\xa4\x6c\x94\xfe\xb9\x32\x2e\x2a\x2a\x3a\x47\xbe\xfb\x52\xb5\xf7\xe3\x82\xcc\xdb\x97\xc9\x8d\xa5\x11\xa8\x03\x3a\x8c\x25\xb8\xb5\x4e\x1f\x1a\x72\xa5\x51\x8a\x3f\xdc\x01\x1b\x4f\x52\x2c\x93\x74\x4d\xe3\x1a\xf8\x95\xa0\x00\x17\x8d\x2b\x2a\xaf\x02\x1a\x53\xc8\x9c\xc4\xed\xd4\xa1\x97\xf7\x34\x8e\xb9\x58\x2a\xfb\xd5\xae\x33\x99\x53\x11\xde\xf3\x50\x9f\xc8\xee\x01\x9d\xc6\xf5\xd1\xec\x3f\x8d\x49\xc5\xe0\x14\x1b\x41\xef\xc5\x29\x63\x02\x5a\x6c\x28\x6c\x63\x4c\x66\xd6\xe8\x94\xb3\xa8\x80\x17\x04\x4b\x81\xaa\x8d\xff\xaf\xd2\xd4\xef\x6f\x35\x8c\x70\x61\xef\xbf\xc5\xf5\xc8\xfe\x9e\x4c\x4e\xaf\x34\x62\x74\xee\xfc\xd7\xc6\x66\x55\xde\x7d\x4c\xb3\x9f\x7f\x6e\x66\x6d\xda\x8e\xf5\x3b\x37\x62\xf0\xe7\x7c\x89\x5d\x1c\xc2\x5d\x18\x8e\x82\x24\x2c\x31\x3f\x4f\x9f\x00\x1b\xe9\x73\x2d\x09\xc2\x33\xe4\xa9\xfe\xfa\x9b\x69\x29\x57\x1d\xbe\x2b\xb2\x55\x57\xdf\xd7\x73\x56\x37\xa4\x6a\x28\x32\x57\x57\x1b\xdc\x14\xf9\xab\xcd\xae\xde\x3c\x4f\xf2\xea\xea\xdc\xcb\x99\x6f\xcb\xc4\x10\xab\x47\x6c\xf5\x37\xc0\x73\x94\x05\xdb\x21\x79\xf5\x90\xbc\xda\xdd\x82\x21\x79\xf5\x6f\x96\xbc\xba\x7a\x89\xeb\x29\xac\xcb\xc5\x1b\xf4\x05\x2e\xd3\xa4\x72\xe7\x2d\xb9\xaa\xa9\xba\x80\x72\x69\x1e\x2b\x6f\xe5\x42\x5f\x63\x43\x9b\x13\xdf\x0a\x2b\xc7\xd7\xa6\xe0\x5a\x2e\x3e\x51\xc3\x52\xff\xf9\x14\x9b\x78\x0d\xc8\x6f\x3f\xff\xe2\xcd\xa7\x3f\xee\xd7\x5f\x61\x3a\x21\x28\x55\xfe\xd9\xa7\xf5\xd7\xad\x75\xcc\xed\xce\xfb\xcb\x9c\x96\xd6\x73\x52\x34\x2d\xd7\xac\x47\x58\x9a\x13\x64\xe1\x4c\x31\xbd\x4a\x35\x1e\xcd\x80\x30\x99\xf3\x34\xa1\xc9\xd6\xd4\x74\x82\xb0\x0d\x8a\xce\xa4\x18\x32\xb4\x53\xf6\x6e\xef\x34\xb7\xc5\xf6\xab\x94\x8a\x90\x26\xa1\x16\xf5\x22\x9a\x2c\x59\x75\xba\xbe\x4e\x09\x2c\x41\xdf\x34\x4f\x44\x07\x3e\x9d\x25\x62\x81\x3c\xf9\x5f\x79\x2a\xc2\x9a\x0a\x99\x45\x28\x9b\x9d\x5e\x63\x91\xca\xee\xe2\x94\xa8\xde\xea\x35\x85\xef\x00\xcf\x41\x8e\xae\x39\x84\x05\xe3\xb9\x22\x37\x7b\x94\x1e\x09\x61\x0a\xf1\xe3\x1f\x47\xeb\xb5\xb7\x9c\xa0\x7d\xde\xc9\xa4\x80\x7a\xb1\x9a\x4c\x31\xa7\x3b\xec\xff\xc0\x24\xbd\xd5\xbf\xdf\xec\x69\xa0\x37\x77\x7b\xb3\x07\x1f\xd2\x84\x91\x37\x6f\xc9\x9c\xa7\xe6\x22\x8d\x61\xc0\xea\xd6\x3a\xa3\xc1\x7c\x9b\xfb\xf5\xcd\xe4\x20\x1f\x4d\x84\x5a\x42\x5a\x9b\x81\x3f\xfb\xb4\x34\xf0\xf7\xfa\x13\x6f\x59\x1d\x3b\x65\x58\x16\xd6\xa2\x3a\xbe\x26\x88\x12\x9a\x3a\x8f\x59\x32\x3a\xbe\xb6\x01\x33\xbc\x16\x6f\x5a\x3c\x31\xd4\xbb\x16\x47\xe4\xff\xbc\xbc\xb9\x09\xff\xff\xaf\x8e\xf0\x7f\xff\xf5\xb7\xf2\xdf\xf6\xe7\xc7\x9e\xa0\x47\x57\x16\x8d\x20\xb1\xf8\x54\x26\x3e\x64\x56\x3a\x77\xe7\x79\x4b\x8b\x28\xa1\xa6\x1a\xee\x85\xc6\x2d\x71\x22\x53\x19\xc8\xc8\x72\x2f\xd8\xb5\x17\x32\xa7\xb6\xcc\x54\x2a\xc9\x9b\xdf\xd5\x5c\x63\x21\x53\x0a\x5f\x67\xeb\x23\xf2\xf6\x8b\x2f\x3e\xfb\xc2\xf3\x9e\x0b\x7c\xff\x66\x47\x44\x1a\xc9\xe5\x35\xdb\xb0\x84\xa7\xdb\xeb\x20\x61\xac\xca\xeb\xd5\x96\xbd\x7f\x5e\xfd\xc2\x2e\x3f\x92\x4b\xa2\xcc\x1b\x42\xe7\x72\x63\xd5\xe6\x91\x5c\x7a\x0b\x44\x41\x1d\x5c\x26\xf2\x14\xb7\x2a\x0d\x65\x96\x3a\xe4\x84\x4c\x2e\xde\x5d\xfa\x48\x47\xdb\xf6\x6b\x92\x34\x93\x17\x32\x64\xef\x99\x5a\x9d\x41\xf0\x98\xaf\x34\x6d\x79\x55\x17\xbe\xaf\x88\x62\x69\x51\xc1\x6c\x91\x19\x6b\x14\xc6\x37\xd4\xdd\xb5\xf5\xa3\x37\x7e\x0d\x79\xe3\x94\x09\x5c\x0b\xdd\x05\x69\x29\xb4\x79\x41\x73\x29\x23\x46\x6b\x3c\x71\x9c\xb0\x05\x7f\x38\x76\x73\xca\x76\x52\xbd\xa9\xe7\x9b\x82\xb2\x80\xd3\x05\xb4\x28\xa7\xaa\xf5\xad\xa8\x8d\xdd\x20\x3b\xd4\xa9\xaa\x4f\xa8\x50\x30\xab\xf2\x34\x1c\x0a\xe5\x47\x00\x36\x5e\xb2\x28\xf9\xe6\x09\xce\xb4\xc0\xeb\x20\x76\x01\x0f\x9b\xeb\x63\x97\x49\xf4\xe4\xf4\x0a\x86\xc6\x63\x5d\xf4\xec\xd6\x78\xb5\xeb\x68\x2e\xd1\xdc\x4d\xfd\xda\xb9\x1b\xdf\xcc\x1c\x1e\xc7\x78\xd9\x5a\x2e\x87\x71\x38\xbc\x05\x79\x01\xd6\xa5\x19\xf1\x5b\xff\x5d\x94\xe5\xa0\x86\xef\xcd\x9e\x66\x4b\xd5\xd8\x19\x05\xa9\x6a\x2f\x76\x84\xa0\x54\xd7\x49\x95\x5b\x88\x6f\x3b\x99\x6a\xa7\xca\xed\xc4\xb7\xb9\xe7\x2e\xaa\xdc\x49\x7c\xdb\x26\xdd\x41\x95\x3b\x69\x6f\xaf\xbe\xfb\x13\xe5\xae\x1a\xf5\x7d\x8a\x89\x77\xd4\xa4\x7f\x34\x41\x36\x46\x1d\xa3\x4b\x99\x4c\x3b\x31\xdf\x75\xf5\x03\x00\x06\xe4\x8a\xd1\xf7\x17\x53\xd9\xa2\xe8\x8a\xf7\xb8\xa5\x44\xbc\x31\x4b\x13\xdb\x8b\x71\x15\x07\x39\x75\x51\x60\x9f\xbc\x5c\x24\x56\x04\xb4\x28\x00\xeb\xfe\xf9\xfa\xc5\x49\xe4\x29\xeb\xc0\x15\x41\x6c\x4b\xc3\x99\x20\xd2\x74\xc5\xd6\x8f\x47\xba\x55\x58\x7c\xad\xc7\x75\x24\x7b\xc7\xbb\xc7\xd4\xa1\xcd\x9b\xfa\xf7\xb9\x00\xe1\x33\x20\xdb\x67\x63\xea\xcc\x0e\x9f\x3d\xa0\x1a\xa8\xff\x21\x72\xbe\xf0\x9f\x22\x99\x38\x51\xa3\xbe\x39\x9b\x8e\x88\xed\x49\xef\xed\xd8\x4d\x7a\x50\x6d\x90\xc7\x32\x83\x0b\x96\xbf\xbe\x7b\x41\x64\x4c\xc1\xcb\x2d\x96\xf1\xc1\x23\x63\xca\x41\x63\xd1\x49\x9c\xe8\x47\x9f\xa0\x62\x76\x9d\x47\xc8\xbf\xbb\xce\xfa\xff\x2d\x0f\xd1\xbf\x57\xc9\x2c\xa3\xba\x7f\x7e\x0d\x3e\xe4\x2a\x7e\x1e\xc5\xfd\x94\x59\x69\xa5\xa4\xaf\xd7\x3f\x7b\xd5\xf4\x4e\xda\xe4\x92\x76\x3e\x36\xfd\x3c\x97\x52\x7e\xd0\x9e\x0f\xda\x73\x77\x0b\x06\xed\xf9\x6f\xa9\x3d\xd7\xe8\xa0\x5f\xdd\x47\xd3\xf8\x11\x55\x1e\xfb\x6a\xce\x67\x2b\x56\xb0\xeb\x56\x63\xaf\xd1\x8f\x87\xcc\x7d\x8c\xf2\xfb\x8e\xb1\xf8\x32\xe1\x4b\x2e\x68\x74\xc1\x1e\xd2\x6f\x65\x35\x8e\xa4\x36\xb5\xcb\xd8\x3a\xc5\xe8\x8f\x61\x62\xd2\xf4\x40\x04\x7b\x48\x57\x32\x36\x85\xe6\xa1\xba\x1d\x2a\xb3\xbb\x74\x36\x00\x53\xa2\x81\xaa\xcf\x78\x0a\x97\xc4\x3a\x0e\xb9\xb2\x3d\xec\x08\xf8\x41\xb3\x50\x7f\xe2\xeb\x57\xf7\xa2\x72\xed\x4a\x86\xcc\xb3\x96\x78\xd8\x43\x4a\xf4\xec\xf4\xbc\xbf\xd2\x52\x91\x50\x29\xa3\xa1\x06\xaf\xf3\x56\xb1\x68\xf1\xd5\xcd\xde\x4b\x63\xab\x78\xe5\x1b\xc2\x14\x5e\xcf\x5d\x5a\xe7\x09\x15\xc1\xca\xee\xd3\x85\x1e\x5a\x6a\x61\x77\xce\x93\x70\x1c\x2c\x96\x5e\x4d\x71\xab\xa2\x46\x4f\xbf\xcf\x21\xc9\x13\x2e\xe5\x29\x86\x2c\x7e\x31\x72\x84\x49\x3e\x8d\x9e\xf6\x10\x62\xeb\x5d\x90\x22\xa9\x96\x52\x53\xb4\xc6\x60\x85\x7d\xd8\x8d\x89\xa1\x16\x1c\x3d\xbf\x14\x4b\x4d\x59\x26\x59\x72\x4a\x6f\xe8\xd4\x91\x6b\x8c\x6f\x1b\x57\xa8\xd1\x64\x50\xeb\x48\x7f\xac\x0a\xdf\x6c\x0b\xd8\x22\x39\xb6\x1f\x68\xcd\xea\x3a\x8f\x93\xbc\x17\x76\x79\xb6\x64\xab\xff\xc1\xf1\x21\x04\xd9\x10\x39\x88\x59\xc8\x21\xc1\xc5\x72\x4c\xa0\xa2\xbb\x97\x15\x34\x20\x02\xf0\xe4\x67\x00\xaf\x81\xb5\x27\x40\x99\xf6\x1d\x97\x14\x53\xa5\xee\x65\xd2\xa9\x74\xbc\x34\xc9\xd2\x10\xb6\xe6\xa3\x7c\x6d\x66\xfe\x8a\x2c\x99\x80\xaa\xee\xf9\x26\x37\xe8\x1d\xdb\xb0\x1b\xe9\xe6\xab\xd1\xef\xb5\x25\x12\xd4\xbb\x19\x9a\x64\xde\xb1\x2d\x70\x1e\xa6\x0b\x7b\x1e\xe0\x10\xc7\x32\xdc\x57\x85\x63\x67\x83\x0a\xa2\x93\xe5\xc7\x08\xd3\x66\x0d\x45\xed\x8a\x99\x39\x21\xea\x81\x59\xa5\xd2\x1c\x5d\x20\xbc\x63\x42\xde\xe3\x16\x37\x77\x4a\x08\xd5\x7c\x00\x0f\x6d\x17\x77\xcc\x77\x14\xec\xd3\x47\x4b\xd2\x6a\x59\xab\xe9\xa4\x9d\x3c\xb7\x09\x5b\xb0\x84\x89\xd4\x4b\xd4\xdb\xd2\x3d\xcb\x8d\x96\xe0\xd8\xfd\xa1\x29\x33\x35\xd2\x52\xe2\x08\x69\xad\x3a\x84\x8d\x39\x7c\xd1\xa1\x13\x24\x64\x76\x79\x7a\x79\x44\x8e\xc3\x90\x48\x50\x27\x66\x8a\x2d\xb2\x08\xef\x8a\x1a\x3b\xcc\xee\x01\xf0\x5a\x07\x24\xe3\xe1\xff\xe3\xd1\x73\xef\x02\xab\x3c\x97\x60\x4f\x78\x5d\x03\xda\xda\xe6\xfa\x7a\x0d\xb6\x6b\xdc\x38\x99\x80\x45\x54\x1f\x8a\x75\xf7\xae\x1b\xd5\x67\xd7\xec\x1b\x88\x00\x3e\xb6\x10\x4d\xc3\xe4\x21\x96\xc4\xff\xaa\x8f\x80\xea\x7f\xab\x31\xc6\x64\xda\x87\x00\x39\x49\xdc\x1c\x36\x85\x2c\xa4\xd1\x02\xcd\xb7\x20\x47\x58\xfc\x14\xcb\xc4\x4b\x80\x8c\x3b\x40\x2a\xf1\x73\x7d\xb2\x80\xf6\x80\x21\x4c\xe4\x4e\x04\x60\x1f\x3e\xb0\x1a\xe0\x42\x57\x7e\xb3\xf7\x67\xf4\xb8\x9e\x4c\x37\x6f\xd1\xe9\xfa\xc7\x23\x18\xcb\x6b\xf3\x04\x85\x71\xfe\xc1\xe7\xf8\xc1\x11\xfe\x00\x5f\xc1\x0f\xa8\x99\x85\x2c\x72\x30\x97\xd2\x22\x9c\x49\x59\xba\xe8\x65\x72\xc0\x09\xc0\xd0\x10\x00\x96\x08\x49\xee\x16\x81\x35\xbb\x15\x72\x40\xc6\x85\x0e\x70\x1d\x64\x6f\x2d\xcc\x82\x7e\x24\x0b\xe8\xb1\xea\xf6\x61\x08\xed\x3d\x33\x9c\x0f\x4d\x71\xba\x06\xb2\xbb\xd2\x1f\xcd\x13\x3f\x96\xa4\x26\x6c\x2d\xd3\x9c\xb2\x96\x76\x16\x08\x69\x23\x05\x72\x09\xe9\x14\x4e\x62\x19\x6c\x88\x2b\x2a\x84\x15\x4d\xee\xe5\x24\xab\xe5\x85\x68\xce\x68\xce\xd2\x7b\x66\x9c\xec\xc1\x4f\xd7\x56\xe8\x0b\x0b\xbe\xd2\x9d\x37\x24\x7b\xc9\x19\x50\xff\x0e\x9b\x3c\x83\x66\x04\xbe\x20\x73\x99\xae\xb4\x28\xa6\x90\x87\xd0\xbc\xc0\xd7\xdf\x4c\x35\x52\x19\xeb\xa6\xc7\xe6\xbe\x14\xcc\x51\xd3\xc9\xc1\xbe\xdf\xf6\xef\xfb\x6d\xad\xef\x31\xd1\xd7\xd4\x37\x80\x59\x66\xe1\x8b\x13\x48\xf0\x44\xb1\xb2\xa4\x03\x86\x7d\x55\x1a\xc8\x6e\x84\x77\xde\x66\xf3\xb1\x70\x9b\x5b\x0a\x17\xce\x62\x71\x5d\x76\x3a\x89\x83\xce\xcc\xa3\x33\x2b\x57\xa7\x7b\x0e\xd5\x99\x1e\xe1\x18\x47\xd8\xd6\x14\x68\xee\x4b\x8f\x1a\xcd\x57\x3b\xcf\xd1\xa6\x39\xaf\xb7\x83\x4e\x6d\xd0\xa9\x0d\x3a\xb5\xff\x3c\x9d\x9a\x8b\x21\x7a\x6a\xd6\xea\x18\xa7\x78\x76\x57\xb7\x35\x98\x77\xda\x38\x1e\x2c\xb7\xdf\x29\x70\x9f\x62\x33\xc2\x45\x08\xf9\xf6\x8d\xea\x00\x4e\x0e\xe0\x36\x62\x91\x9b\x3e\xb7\x73\x06\x19\xc8\xf1\x1b\xaf\xdc\x07\xa1\x93\xa8\x2f\x70\xcf\x39\xd6\x84\x75\x8a\x87\x23\x67\x28\xa3\x10\x04\xf4\x88\x51\x65\x86\xf6\x75\xba\xe6\x2a\xa5\x77\x4c\x44\x5b\x92\x26\xcc\x4e\x0f\x47\xa1\xc5\x28\x8f\x50\xb3\xec\x08\x54\xc8\x28\xbd\xd3\x37\x0d\x42\xcf\x08\xb6\xb4\xfa\x9b\x01\x6c\xf5\x67\x5f\x40\xb4\x27\xb7\xf5\xc0\x5b\x78\xc2\x69\xeb\x75\x60\x9f\x81\xbf\xb0\x1e\x02\xc5\x28\x55\x26\xa3\xde\xa2\xce\x69\x34\xd6\xac\x2d\xb8\x8d\x7a\x93\xe7\x64\x39\xca\xfe\x54\xb5\x15\x54\xa2\x6b\x8c\xa3\x46\xae\x4b\xae\x16\xd0\xc6\x67\x60\x63\x06\x36\xc6\xdd\x82\x81\x8d\xf9\xcd\xd8\x98\xfa\x0d\x6e\x0b\xad\xc1\x4f\xe7\x1e\x22\xd8\x6c\xd8\x68\xe3\x60\x00\x85\xfa\xef\x78\x7d\xa6\x6e\x63\xeb\x4b\x6d\x2e\xb9\x9e\x9b\x31\x09\x19\x4e\x25\x9f\x4d\x83\x0a\x26\xc9\x84\xf0\xea\x54\xdb\x28\xbd\xe9\xf2\x9b\x0f\x93\xd3\xce\xd9\x16\x4d\xed\x5c\xe1\xdf\x46\x8d\xd8\x38\xb9\x1e\xc3\xcf\x74\x93\x7e\xc3\xeb\xa6\x76\xd3\x0c\x5a\x84\xa2\x1d\x1f\x33\x8b\x3c\x62\xfd\x8a\xd1\xd0\x67\x6b\x28\xb3\x92\xa5\xd6\x79\xd6\x0c\x53\xdb\x51\xf1\xa5\x00\x2e\x59\xa4\x45\xbf\x64\xcd\x97\x95\x7a\xdf\xa5\xb9\x49\xf8\x8c\x46\x26\x92\x26\x96\x02\xfc\xab\x54\x16\xac\x34\xe3\x87\xb9\xeb\x51\x1f\x93\x6b\x51\xef\x29\xd7\xb7\x7c\x21\x1b\xd4\x5c\x41\xc0\x54\x9e\x81\xa2\xa9\xba\x0c\xe9\x52\x69\x43\x85\x34\xd1\x19\x11\xf1\x1d\x36\x23\x21\x0b\x22\x9a\x30\x65\xfc\x2b\xcd\xd7\xce\x59\x76\xdc\xa5\x21\xa9\xd8\xa0\x55\xfa\x48\xce\x0f\xb2\xc4\x3f\x7b\x34\x35\x9c\xc0\xd6\x78\xea\x7a\x8b\x3a\xe7\xe7\x99\x6b\x95\xf3\xab\x37\xf9\xcd\x38\x3f\xbc\x65\x3b\x05\x56\xc3\x27\x03\xd7\x37\x70\x7d\x03\xd7\xf7\xcf\xe6\xfa\xea\xf8\xa7\x2b\xa0\x1a\xef\xfb\x63\x43\xaa\xa3\x48\xde\x4f\xa6\x93\xe9\x94\x42\xc2\xda\x77\x89\x5c\x7f\x6f\xcb\x2b\x77\xc7\x59\xb7\x7d\x6d\x73\xcd\x15\xe1\x67\x30\x53\x1f\x91\x37\x41\x07\x21\xa1\x24\xc9\xb0\xaa\x41\x98\xc8\x98\xe8\xae\x09\x13\x01\x8d\x15\xe6\x2c\xca\xb3\x43\x61\xf0\x83\x1d\xca\xd7\x67\x11\xb1\x06\xf9\xb4\x77\x0e\x59\x03\xc8\x7c\xf7\xc3\xf9\xf1\xc5\xe3\x41\xd3\xf8\xf9\x13\xc0\x06\xfa\xfe\xa7\x01\xe7\x5e\x5d\x27\xc1\xa9\x4a\x4f\x56\x2c\xb8\xeb\x04\xc6\x35\x4b\x09\xe2\x97\x91\x93\xd3\x6b\x04\xf9\xf8\x88\x14\xe4\xf8\xfb\x6b\x72\x76\xf2\x69\xee\x2f\xa6\xc6\xe4\xd8\xf0\x33\xbe\xd9\x6f\xca\xf1\xd2\x18\x2c\x70\xb3\x77\x2a\x2f\x64\xba\x82\x02\x43\x07\xe4\x66\xcf\x44\x40\xda\x38\x2d\x53\x2a\x2b\xbc\xd9\xeb\x88\xf6\xcf\xbb\xf1\x41\x85\x89\xcc\x97\x86\x7e\x54\x7c\xe5\x7b\x89\x53\xf1\x7e\x86\xb3\xda\x8d\xcf\x9f\xc7\x8b\x13\x29\x04\x0b\xd2\x19\x5f\xb3\x73\x49\xc3\xaf\x69\x44\x45\xc0\xc5\xb2\x6f\xb0\xe8\xd7\xd3\x77\x1d\x5d\xa0\x1b\x25\x17\x24\xaf\x3f\xe2\x03\x96\xff\x1c\x97\x6b\x94\x07\x38\x90\xde\x71\xa8\x1e\xaf\x4f\x25\x99\xc3\x70\x2c\x69\xb6\x13\x9b\xcf\x3c\xdf\x80\x94\x68\x14\xb5\xb9\xd5\x1f\x72\xdd\x95\x2a\xa3\xf8\x3a\x4d\xaa\x35\x56\x6d\x3d\x50\x93\x73\x80\xf0\x75\x9c\xc8\x8d\x61\x59\x62\x96\x80\xf0\x2d\x02\x38\x62\xb1\x0c\x47\xa9\x1c\xb5\x45\x5b\xe5\x4b\x55\xb8\x30\x8c\x81\x49\x18\x55\xe8\xbb\x6a\xcb\x86\x71\x30\x49\x2f\xa0\x5e\xfe\x3c\xc3\xfc\x0b\x71\x96\xc4\x52\xe9\xc3\xdf\x7e\x40\x1f\x15\x81\x3b\x8f\x17\x5a\xe0\x9b\x2c\x68\xc0\xa6\x26\x82\xbd\xe3\x90\x7c\x3d\x7d\x57\xfd\x04\xf9\x89\x84\x01\x97\x4b\xd8\x83\x66\x08\x80\xd1\xc3\x62\xc2\xe6\x30\x78\xd1\x18\x08\x52\x79\x7e\x41\x2b\x0c\x1a\x3e\x8e\xa6\xa9\xde\x17\x7d\xd4\xf2\xa2\xb6\x90\xfe\x8e\xc8\x24\x04\xff\x1c\x2f\xb4\x69\x1a\xac\x9c\x84\x81\x87\x39\xfb\x61\x93\x02\x1a\x03\x87\x60\x2c\x54\x98\x67\x10\xbe\x70\x33\x1d\xfa\x25\x59\xbd\x1c\x1b\x11\x67\x10\x69\x81\x5e\x23\x79\xaf\xb0\xba\x71\x25\xfa\xad\x47\xa7\x2b\x2a\x42\xbd\xff\x22\x90\x6b\xe0\xc0\x8a\x74\x87\x42\x86\x2c\x96\x49\xaa\x8c\x5b\x88\x39\x98\xb0\x28\x99\xa5\x8a\xfb\xe3\xb5\x5d\xfd\x0e\x21\x93\x5c\xb0\xd6\x7c\x54\xb1\xde\x7c\x15\xce\x16\xbc\xcc\x54\x46\xa3\xc8\xeb\xc5\xa5\x25\x91\x10\xd4\x40\xe3\xf1\xf8\xd5\x8e\xa6\x1a\x7d\xd8\xf0\xa0\x7f\x10\x4e\x15\x97\x1e\x48\xc9\xf3\x19\x14\x07\x32\x81\xe8\x07\xf6\xd8\x30\x53\x34\xfc\x4e\xdf\xe3\x68\x9c\x39\xed\x6f\xe7\xf1\xe2\xd6\xe6\xd6\xf4\x2d\x4d\x6d\x55\x90\x46\xee\x6d\x74\x3f\x07\xff\x25\xb9\xd0\x67\xd1\x1e\x1f\x26\x94\xf1\x02\xa7\x69\xa9\xad\xaf\xf7\x4c\x99\x0c\xe4\x1a\xfe\xa8\xbd\x30\x27\x69\x7f\x5f\x21\x32\xa5\x31\x6e\xb1\x69\xc4\x85\xd2\x32\x0c\xe4\x6c\x21\xf2\xde\xeb\x8e\x57\xbf\x19\x7a\x17\x99\x09\x99\x2b\x06\xf8\xe8\x48\xfd\x79\xbc\xd8\x81\x86\x9c\xd9\x6d\x29\xb6\xc8\xec\x10\xb0\x2d\xd6\x09\x5e\xcf\x5e\xf3\xc8\x71\x44\x85\xdf\x81\xf6\x63\x19\x12\x3d\x6d\x13\x9f\x67\xe2\xfd\xde\xf7\xf0\x64\x87\x25\xd4\x3f\x2b\x51\xbd\x82\xc4\xad\xe4\xbd\x8b\xe0\x7d\xcb\x70\xef\x6a\xc9\xcc\x02\xae\xbb\xe6\x42\xbf\x34\x6e\xc5\xf6\xa6\x3b\x31\xb3\x5e\xaf\x7f\x9a\x30\x4d\x29\xee\x69\x12\x62\x56\x5b\xe3\x21\x95\x73\x78\xfa\xda\x2f\xc0\x31\x0f\xea\x41\xce\x32\x28\xf1\xb4\x87\x1e\x79\x73\x99\x7a\x3d\xd3\x8c\xd8\x85\xc5\xc2\x99\x8a\xa5\x50\x45\xf2\x55\xae\x48\x0a\xbd\xe0\x80\x15\xb7\x2c\x18\xcf\x7b\xb3\xec\x14\x4e\xaf\xaf\x34\x13\x86\xdf\xe1\x38\xbe\xae\xe7\x59\x6a\xda\x94\xc7\x6f\xd0\x0c\xab\xa2\x3a\x59\xb4\xf5\x3a\x8c\xe9\x99\x09\x3b\xbe\xd9\xbf\xa2\x89\x17\xcf\x81\x1b\x5e\x1c\x33\x8a\x19\xb1\xed\x91\x9d\x4c\xad\x7c\xc5\xc5\x12\x6b\x05\xcb\x90\x7d\x65\x35\x16\xc0\x7c\x28\x42\x7d\x5d\xc6\x2c\x59\x73\xa5\xf8\x86\x91\xf3\x4f\x1d\x52\x54\x9c\x71\xdc\xa1\x5d\xd3\x82\xcc\xe3\x85\x66\x5c\xa6\x89\x7c\xd8\x9e\x19\xf9\xfa\x3a\xd2\x47\xaa\xe7\x8d\xfd\x7a\xfa\xae\xbd\x03\xff\xc1\xf7\x93\x73\x87\xdd\xdb\x57\x84\xad\xe7\x2c\xd4\xc7\x13\xb2\x1e\xc7\x7a\x04\xa3\x92\x54\xa4\x3c\x94\xc9\xfa\xbb\xab\x02\xd7\x5d\xfc\xc4\x54\x8c\x3e\xd1\x0d\xb3\x78\x07\x7c\xd5\xd1\x45\x09\x8f\x21\x2c\x7c\x8b\x47\xf0\x38\x78\x2e\x4e\x24\xaa\x81\xa3\x2d\x09\x74\x8f\x24\xc3\x08\xa5\x2c\x56\x69\xc2\xe8\xda\xe5\x38\x0b\x08\xed\xef\xfb\xdd\x50\x6d\x41\xec\x60\xa5\x45\xfe\x31\x21\xd7\x48\xd1\x4d\x3c\x75\x31\xc3\x85\x0b\x6e\xe3\xe2\x68\xcc\x27\xcf\xc5\x44\xe6\x10\x7c\xcf\xc5\xf5\x56\x04\x58\xef\x7b\x27\xd8\x97\xbe\x3c\x68\x40\xb6\xb5\xf2\x84\x06\xf4\x98\x25\x88\x80\x50\x60\x9d\x6a\x51\x55\x94\xab\xfc\x72\x4a\x53\xe8\x36\xf7\x9d\x23\xea\xeb\xb6\x00\xe3\x98\x90\x73\x79\xcf\x12\xab\x64\x59\xea\x6b\x9c\xb0\x30\x0b\x30\x99\xce\x28\x8b\x41\xa7\x28\x02\xdd\xf4\x5b\xbe\x5c\xe5\x6d\xfd\x58\x56\x7f\x69\x75\xb2\xd3\x0f\x24\x53\x74\xc9\xc8\x7c\x4b\xe6\x9a\x35\xd3\x1c\x60\x16\x93\xb5\x4c\x10\x9d\x97\xb0\xc4\x1b\xf5\x08\x0c\x71\x2e\x97\xe7\x6c\xc3\x7c\x21\x07\xb5\x1d\xb1\x6d\x4b\x50\x87\x24\x48\x90\x5d\x39\xcf\xd8\xe7\xf0\x1e\x0d\xb8\x20\x17\x14\x0b\xd8\xaf\x11\x1d\x5f\x5a\xe9\xfc\x72\xb1\x40\xb9\x7c\x22\x16\x52\xff\x0b\xa5\x72\x2d\xfd\x68\x91\xbc\x49\x0a\x8c\xe4\x12\x13\x17\x30\xac\xb9\x68\x37\x59\x0f\x96\x26\x34\x60\x24\xe6\x31\x3b\xb0\x76\x22\xcd\xcd\x01\x47\x84\x82\x27\x94\x04\xf0\x75\x7b\xb3\x97\x06\x50\x47\x40\xc3\x0c\x65\xb0\x92\x62\x80\x5c\x2e\x16\x3f\x8e\x77\x04\x3f\xdc\xd7\x09\x70\x73\xbd\xb8\x8f\x93\x72\xfb\x26\x61\x7a\x25\xe5\x9d\xcb\xed\x36\xa0\x8d\x54\xc6\x23\xdc\xb7\x0a\x02\xd1\xa7\x0d\x79\x4c\x7d\xdc\x8c\x1a\xc9\x98\x62\x53\x19\x9b\x6d\xf6\x0a\x58\xfa\x7b\xbd\x51\xf3\x2d\xd0\x48\x11\xd6\x7b\x98\xcb\x34\x95\xeb\xb1\xe5\x62\x8d\x45\x55\xd1\x45\x9e\x76\xd1\xcb\x29\x70\x2d\x53\xf3\x94\xc4\x09\xdb\x80\x91\xb0\xe0\x91\x75\xef\x46\xec\x41\x07\xb6\xf9\x36\xa6\x4a\x99\x94\x25\x5b\x99\x11\x75\xcf\x53\xbf\xbf\x7d\x2a\xcd\x44\x0d\x3e\x99\x9b\x22\x2d\xb9\xed\x19\x83\x7f\x70\x08\x1b\xf5\x87\x50\x42\xd3\x65\x93\x0d\x32\xc6\x40\xc6\xf9\x16\x0a\xe4\xa3\xee\x3c\x91\xd9\x72\x65\x0f\xa4\x91\x16\xa1\xe7\x03\x1c\xe6\xde\x64\x50\xf1\xf5\x69\x9a\x63\x96\xed\x3c\x55\x7b\xb1\xd2\xe2\x24\x22\x60\x77\x45\x05\xf9\x45\xc4\xf2\x5e\x3b\x7b\x23\xce\xb3\xa5\x91\xc5\xce\xe5\xf2\x34\x91\x90\xf4\xba\xb1\x97\x06\x7a\x01\xdd\xbc\x67\x6b\x99\x6c\xa7\x89\x5c\xf0\x88\x79\x2a\x86\xf5\x9a\xcb\x35\x5f\x83\x92\xf3\x84\x46\xc1\x37\x09\x8d\x57\xdf\x52\xb1\x3c\x5e\xa4\x8f\x5b\x99\xed\xed\xd4\x02\xe9\xf1\xbd\xc1\x26\x59\x0e\x67\x26\xbf\x95\x2a\x3d\x06\xf9\xa0\xf3\xf6\x9f\x36\x7f\xeb\x62\x02\xd0\x19\xe8\x23\xad\x1a\xb4\x20\xb9\x06\x41\x37\x5d\x4a\x7b\x75\x68\x21\xf2\x17\xc6\x18\xe9\xd4\xc1\x4d\x15\x8b\x16\xe4\x25\x5d\x34\xb8\x62\x00\x7a\x30\x7d\xaf\xb8\x91\xb7\xf3\xae\x18\x32\xc5\x78\x7e\x5f\x8d\xc9\xd7\xdb\x3c\xe6\xe2\xc4\x5b\x37\x99\xe4\x49\x83\xfc\x7a\xea\xbc\x6b\xe5\x9b\x26\xe0\x74\x7f\xa4\x5a\x8e\xed\x7e\xfd\xe5\xef\xa7\x57\x97\xd3\x5f\x7f\xf9\x07\x18\xe5\xa5\xc8\xf1\xc5\x3d\x35\xe1\xde\x51\x24\xef\x89\x92\x6b\x46\xb0\x6a\x6e\x9b\xc0\x01\xb3\x73\x41\xa7\xe7\x73\x80\x32\x0e\x44\x56\xd1\x84\xae\x99\x11\xee\xae\xce\x66\x1f\xae\x2e\x74\xaf\xc7\x27\x27\x67\xd3\xd9\x98\x7c\xf0\xe7\x4d\x32\x0d\x39\x4e\x0c\x62\x69\xb6\x32\x03\xb9\xbf\x8c\x95\xdc\x65\x4d\x2e\xa6\x1f\x66\x7a\x5d\x80\xaa\xbe\x6a\xc1\x27\x80\x48\x2c\x2a\x4e\x2d\x2e\xad\x22\x7b\x9a\x62\x4f\x26\x68\xeb\xd7\x5f\xfe\x8e\xd3\xfa\xf5\x97\x7f\x78\x05\x1a\xb4\x60\xd8\x7d\xa9\x4d\x88\x48\x83\xcc\x57\x54\x81\xdf\x07\xfa\x28\xc7\x89\xb4\xbe\x1b\x76\x93\x7d\xbd\xfb\x8f\x14\x00\xd0\x00\x13\xe4\x32\x91\x7b\x2b\x40\x19\x0b\xc4\xc9\x76\x6a\x8d\xfb\x97\xcb\xc8\x04\xce\xb9\x6f\x4e\x4d\x13\x68\x57\x53\x68\x94\xb8\x33\x4e\x66\x1b\x1e\xb0\x2b\x99\xa5\x9a\x11\x86\xcc\x9a\xdd\xa1\x8e\x5c\x95\xac\xe8\x90\xd7\xa0\x48\xcc\x49\x43\xa3\x13\x30\x0c\xda\x9a\x85\x66\x18\x2f\x37\x0a\x49\x11\x0e\x34\x15\xb3\x97\x15\x8e\xb2\x25\x3f\x57\xb3\xe9\xd5\xe5\xec\xf6\xeb\xcb\xcb\x19\x72\x75\x45\x91\x98\x46\x79\xad\x21\xc3\x83\xb3\x56\xcc\xd5\x6f\x22\xc4\x7a\x2d\xd8\x32\x11\x68\x92\xb6\x71\x9e\x46\x3a\x97\x62\x97\xc5\x96\x30\x93\xa7\x53\xae\x4a\x95\x70\x22\x46\x37\xc6\x30\xee\x95\x13\x80\x01\x03\xf7\x26\xac\xaa\xe5\xe9\x31\xf3\x67\x4e\x6c\x3d\x18\x48\x69\x4f\xa4\x10\x9a\xa7\xbd\x9b\x08\x08\xda\x6e\x32\xae\xb5\xd2\x5c\x7b\x9a\xaf\x40\x97\xcc\xc5\xf2\x94\x45\xd4\xe7\x0c\xd6\x36\xa1\x5a\x27\xcd\x32\x76\xfb\x64\x8c\x72\xed\x42\x86\x4c\x9d\x73\xd5\xe9\x80\x75\xe6\x7e\x70\x32\x39\xbd\xd2\x1f\x95\x93\x5e\xeb\x5f\xf7\xc1\xfa\x6d\x7b\x1f\x09\x69\x0b\x0a\x43\x19\xbe\x16\x03\xc4\x9a\x6e\xed\x7e\xa1\x16\x2a\x27\x46\x54\xe4\xa9\x17\x98\xa3\xfc\x32\x6f\x1b\xb2\x98\x19\x23\xa5\x46\xb0\x41\x91\xf7\x62\xb7\x64\x65\xed\x81\xe4\x2d\x39\xe1\x16\x94\x47\x9a\xcf\x9e\x88\xb9\xcc\x44\xa8\xd9\x87\xa9\x4c\xba\x13\xab\xee\xbf\x6b\xf8\x10\xe1\x0c\x52\xd3\x28\x64\x11\x5f\x73\xbd\x36\x03\x77\xdf\xd4\x3f\x9c\x4e\x0f\x67\x27\x53\xa3\xcb\x04\xba\xe2\x68\x45\x90\xda\xfa\x2c\x1d\x40\xd9\x73\x7a\xef\xeb\x59\x0a\xc2\x93\x84\xa9\x98\x61\xcd\xce\x22\x11\x02\x14\x8c\xcf\x89\x84\x45\x17\x26\x9a\x5f\xd3\xf8\x8d\xe4\x5e\x3a\x43\x83\x00\x72\x95\x00\xf9\x08\x32\x4c\xf6\x22\x17\x0b\x42\x71\x3e\xc0\x62\xe8\xd9\x26\x09\x0b\xd2\x6a\xdd\x94\xb3\xa6\x00\x5f\x99\xb8\x01\xe1\x45\x3a\x57\xaa\x48\x1a\xc4\x4e\x70\xf7\x08\xc3\x5d\x4d\x69\x2e\x99\x90\x2c\x6c\x7c\xed\x25\x3e\xef\xb4\x20\x46\x83\xbb\x51\x29\x32\xe7\xc0\x24\xd0\x2b\x68\x82\x8d\x75\x2d\x72\xa0\xf0\xd4\xa2\xc0\x26\xbf\xcd\x5f\x7f\xf9\x7b\x1a\xc4\xbf\xfe\xf2\x8f\x31\x99\x15\x76\x11\x0a\xcc\x04\x1c\x12\x84\x11\x6c\xf4\x41\xae\x24\x45\x43\xbc\x90\x0d\x4a\xfd\x99\x93\x7a\x1f\x9b\xc2\x91\x50\x44\xa9\x95\x35\x8d\xe8\x6b\x77\xfa\xed\xc9\xb4\x64\xb8\x08\xe2\xa3\x4f\x3f\xf5\xda\x9b\x35\xcc\xde\x7e\x79\x00\x4d\xde\xfc\xee\xf7\xf8\x8f\x4f\x3f\x2b\xfe\xf5\xe5\x6b\xfc\xd7\xdb\xcf\x3f\xff\xcc\xfc\xeb\xed\xdb\xb7\xf9\xbf\x7e\xe7\xa3\xd9\xbd\xf3\xff\xca\x54\xda\x6c\xd9\x81\x5c\xcf\x8d\x1f\x03\x98\x86\x73\x82\x2c\x42\x80\xd2\x41\xa3\xe2\x9d\xe4\x9e\x0b\x45\xb0\xb4\xf7\x64\x75\x65\x14\x89\xfd\x29\xbe\xcd\x9e\xb6\x11\xe7\x7c\x80\x26\x1e\xc4\xed\xa3\x39\xc5\x45\x6b\x86\x88\x51\x63\xce\x85\x51\x3e\x72\x33\x3a\x7c\x44\x8a\x4c\x8b\x0e\x2f\xb3\xf4\x91\xf8\xb0\xf6\x65\x33\x42\xf4\xe2\xac\x45\x2f\x84\x28\xb3\x74\x29\x5d\x84\x08\x8c\x6a\xb5\xbc\xb6\x7d\x4a\x52\xd1\x23\x50\x62\x93\x92\x44\x63\xc9\x8f\x43\x89\xbe\x9e\x35\x96\xfc\xcf\x47\x89\xd2\x9c\x93\xa7\xc1\x89\x12\x64\x7b\x96\x06\xe1\xfe\xbe\x53\x31\xc3\x1c\x21\x69\xac\xcf\xce\x61\xf2\x22\x2a\x2d\xf7\xeb\x25\x2e\x59\xaa\x77\x12\x76\x11\x25\xd8\x34\x08\x4b\x7e\x0a\xfa\x10\xea\x7d\xd6\x58\x17\xd1\xef\xc5\x75\x87\xb0\xf3\x68\x6c\xdb\x88\xc3\xbf\xf8\xec\x00\x71\xf9\x80\x90\x4b\x03\xfc\x47\x21\x64\x46\xd3\x2c\x61\xa7\x2c\x65\x41\x7a\xb9\x61\x49\xc2\xbb\x95\xe2\xef\x7c\x1f\xb9\x25\x5d\xa5\xfd\x0d\x8a\xd7\x61\x6b\xff\x49\x49\x99\xd1\x02\x7d\x67\x0a\xe3\x24\x2e\x32\xe2\xc2\xa2\x76\xa2\x58\x4c\x31\x3d\x19\xf0\xba\x80\xf5\x84\x57\x81\x05\x19\xc0\xd4\x01\x61\x0f\x74\x1d\x47\xec\x2b\x72\xb3\x77\x7d\x71\x3c\x7b\x97\x45\xd1\xf6\x8a\x8a\x50\xae\xff\x00\x95\x04\xdf\x1f\x5f\xff\x6f\xf7\x47\x70\x6a\x38\xb8\x62\x10\x5f\x71\x9d\xc5\x70\xb9\xcf\x65\x70\xf7\x87\x86\x62\x2e\x79\x12\x42\xb0\x92\xc0\xe7\x37\x7b\x48\x45\x16\x12\xfd\xb4\xf3\xd5\x1f\x60\x26\x1a\xdd\x54\x1a\x23\x49\xb3\x41\x0a\x72\x80\x67\xa9\x1c\x21\x7c\x76\x16\x55\x21\x95\x1b\x0f\x7e\x38\x9d\xf6\x35\xbb\x7e\x53\xfd\xc2\xd8\x2f\x15\x31\x6f\xc8\x0f\xa7\x53\xa2\x64\x51\xb1\x90\x26\x7e\xaf\x55\x40\x81\xa1\x14\xfb\xfb\x29\x51\x08\x44\xf8\x56\x2e\x16\xa0\xc8\x91\x09\x09\x41\xdb\x0d\xca\x7f\xac\x23\xa0\xd1\xf2\x0f\xa7\x53\x24\x8b\x5e\xf5\xa1\x31\x9b\x32\x7d\x16\x98\x08\x59\x58\x18\x27\x34\x56\x85\xd1\xe2\x44\x6e\xf4\x99\x9b\xb3\x14\xb4\x48\x85\x5f\x60\xc3\x3c\x45\xae\xbf\x1b\x7f\xb4\x6f\xcb\x8a\xd1\x28\x6d\x29\x03\xd2\xe3\x63\xcd\xd1\xec\xa8\x02\xc0\x0f\x1b\xca\xc8\xb4\x22\xb3\xdc\xc3\xec\xec\x21\x88\xb2\x1e\x76\xb0\x49\xe5\x03\x97\xed\xaa\xdc\x4d\xb9\xe8\xe3\x64\x57\xf2\x2d\x64\xa6\x53\x50\x68\xad\xa5\xe0\xa9\xcc\x73\x1c\x94\x05\xd1\x71\x93\x11\xb2\x4c\xb0\x4b\xee\x60\xc6\xdf\x75\x29\xa4\xfe\xa9\x30\xf3\xef\xef\x93\xc9\xf4\xbb\x6b\x12\x66\xeb\xb5\xd7\xc1\x2e\x5f\xc6\x81\xf5\x8d\x34\x38\xce\xc6\xa6\x44\x5b\x32\xdf\x96\x2c\xd3\x65\x6d\xb6\x97\x5b\x34\x6b\x5d\x67\x51\xca\xe3\xc8\x2d\xe8\x8c\xf5\xbe\xb0\x98\x73\x9e\xf0\xdc\x84\xbf\x80\xd9\xb7\x81\xab\x35\x17\x4d\x79\xbc\x3e\x15\x56\xbc\xf0\xbc\x80\x79\x02\x55\xbd\x4f\x68\xdc\x64\x5d\x40\x70\x02\xba\xdd\xdf\x3f\xdc\xdf\xc7\xee\x0c\x6e\x25\x2b\xd4\xc4\x19\x3b\xfc\xfe\xfe\xe1\xff\xd1\xb0\x38\x3c\xd8\xb0\x74\xf5\x66\xdf\x9b\x99\x0f\xf0\xa3\x85\x01\x0a\xaf\xb9\xb3\x23\xec\xd6\x9c\x2d\xb9\xb0\x23\xea\xee\xf6\xf7\x31\xe1\x55\xa4\x64\x93\xce\xaf\x00\xe1\xfe\xbe\x19\xdb\xbd\xd3\xb0\x41\x3c\xde\xa8\xd7\xbb\xaa\x83\xf3\x8e\xb1\xb0\x4c\xff\x6b\x82\xed\xad\x96\xb4\xbc\xc5\xa6\xd4\x8e\x89\xb2\xb4\x85\x33\xfc\x1a\xb1\xba\xe5\x05\x1c\x4f\x81\xd9\xd5\xa2\x40\xc6\xd5\x0a\xd5\xce\xeb\x42\x48\xc9\x5b\xb7\xc2\x4a\x8d\xc9\x85\x4c\x01\x47\x10\x26\x36\x3c\x91\x02\x0b\xf8\x48\x93\xd8\x90\x0a\x32\xd7\xb4\x68\xcd\x52\x1a\x1d\x98\x74\xbe\xc1\x8a\xa9\x34\xa1\xa9\x4c\xbc\x13\x0e\x9c\x22\xde\x1a\x45\xc4\x9a\x23\x4b\x38\x4d\x59\xb4\x2d\x9f\x1d\x99\xb9\x55\x0d\x90\xcb\x95\xc1\x5d\x43\xcc\xb1\x46\x63\x26\x8e\xcf\x98\x77\xf4\x5e\x07\x34\xe2\xfb\xfb\x6e\x84\x98\xee\xf5\x32\x66\xe2\x3a\xa5\xc1\x9d\xfb\x99\xf7\xde\x58\x17\xd5\xfd\xfd\x94\xc6\xb6\x23\xf7\xe4\xe8\x01\x1e\x7d\x66\xae\xd8\x22\x61\x6a\x05\x67\x62\xe3\xcd\x30\x59\x3a\x3c\x93\x86\xef\xf2\xc2\x5f\xe0\x8c\x43\x68\x6a\x90\x51\xa3\xa0\x91\x30\x15\x50\xa1\x4c\x12\x3b\xf7\x7e\x49\xb2\x61\x09\x5f\x6c\x8d\x23\x2b\x64\x3c\xc1\x5a\xe5\xf8\x8d\x29\xeb\xe3\xc5\xaf\xc6\x5b\x57\x23\x3c\x65\xd2\x30\xe7\x47\x7b\x83\xf1\xc4\xaf\x77\x64\x54\x78\xcc\x5b\x3c\xc3\x5a\x69\xa6\xfe\xf4\xfd\xec\x43\xf7\x85\x9c\x4e\xa6\xef\x67\x1f\x2c\x0c\x4d\x55\x79\x7d\x82\xa4\x70\xd4\xc8\xc6\x46\x31\x26\xd7\xcc\xef\x0a\x60\x8e\xb5\x5e\xb5\xee\xc3\xf1\x00\xfa\xfc\xf3\x16\xac\xd2\x44\x7e\x63\x7d\xf4\x76\x3c\x1f\xfb\x13\xdf\x57\xad\xa7\x83\x24\x0c\x23\x78\xfc\x7c\x66\xe4\xf8\xa1\xc0\x59\xa8\xca\xb2\x42\x1a\x64\x60\x6c\x72\x60\x3d\x74\x35\x12\xbe\x6e\xe7\x89\xbc\x63\xa2\xea\x2c\x02\xc9\xbb\xe1\x90\x94\x62\x2c\xec\xf0\x09\xae\xaa\x23\xee\xe7\xf7\xaf\x77\xf6\xb7\xb2\x23\x98\xb2\xd5\x9d\x97\xb0\xdc\x3c\x17\x46\x6c\x98\xf9\xdc\xfc\xae\x99\x1c\x3b\x77\x4d\xd2\xbc\x80\x60\x68\x68\x2a\x29\x14\xc0\x98\xb5\xa4\x5e\xe3\x65\x9f\x75\xbc\xe3\x51\xca\x12\x08\x5d\x6b\x74\x62\xe8\xd3\x8f\x96\x6c\xde\x35\x7b\x7b\x54\x4f\x5e\xfd\xa3\xa2\x20\x5f\x90\x4b\xf4\xae\x51\xdc\x07\x11\xc8\x7e\xb5\xe0\x11\x1b\x93\x3f\x69\xee\x83\x6e\x21\xee\x03\x8d\x75\x54\x2c\x0d\xd5\x30\xaa\xa1\xbc\xb5\x15\x00\xb8\xdf\xb9\x20\x75\x54\x32\xf9\x6c\x5e\x2e\x1c\x5a\xe3\x9a\xf2\xd7\x34\x8e\x19\xc6\x11\x89\x54\xe6\xbe\x87\x0d\xc4\x0c\xeb\xad\xeb\x6b\x45\x49\xc8\x17\x98\x1e\x99\xc4\x34\x5d\xbd\x72\xe9\xc4\x61\x92\x89\xc3\x07\x23\x4d\xe8\x79\x3f\xf6\x98\x6a\x08\x4f\x13\x39\x67\x3b\x60\x85\x86\x2f\xed\x06\x81\x1f\x66\x45\xcf\xe9\xe5\x35\x30\xcb\x03\xfa\x6b\xd2\x34\xd5\x12\x2b\xe6\x9f\x0d\x40\x65\x51\x76\x79\x80\xcd\xe1\x0b\x13\x25\x25\xa4\x97\xd7\xa0\x1b\xca\x23\xdd\x7e\x5c\xf6\xd8\x5c\xd3\x3b\xeb\x70\x09\x7e\x95\xc6\xb9\x9c\x6f\x8c\x08\x60\x77\xbf\x41\x18\xd4\xfb\x02\x62\xe0\x01\xb8\xa7\x6b\xf9\x11\xba\x39\x99\x7e\x70\x37\xe5\x8b\xd7\xeb\x47\xa3\x0b\x0d\xcd\x19\x5f\x33\x99\x75\xda\x43\x4b\x3b\x60\xbe\x69\x83\x3d\x00\xda\xb7\x32\x1b\x26\x57\x82\x31\x38\x61\xbe\x3e\x70\x90\x26\xe8\x3a\x51\x95\xc9\x55\xa1\x60\x68\x64\x07\x80\xc7\x57\x2b\xea\xdd\x41\xb8\x5e\xe8\xb9\x13\x45\x65\x64\xdf\x92\x3d\x0e\x79\x71\xbd\x89\x76\xa7\xc6\x98\xb6\xd7\x78\x36\x17\x21\x86\x5a\x22\xa7\xc5\x45\x3a\x68\x4c\xec\x9b\xfb\xeb\xeb\x1e\xf5\x75\x32\x51\x04\x32\xc9\x53\xac\x3b\xe1\x83\x6b\x99\x09\xcc\xb1\x67\x1c\x5e\x9c\x0c\xc9\x5e\xbd\x7f\x62\x5b\x2c\x6c\x28\x36\x4e\xc8\x3d\x2f\xaf\x55\xce\xe5\x3c\xf6\xd8\xbc\xa7\x5a\x66\xfb\x78\xec\xfc\x9e\x26\x77\xef\xa9\xea\x0e\xdb\x9d\x54\x3e\xb0\x07\x6f\xad\xff\xed\x0a\xda\x26\x8f\x3e\xf7\xeb\xd2\x27\xd3\x19\x1e\x0a\xdd\x0f\x99\x6b\x94\x8a\xf9\xeb\xaf\x8b\x24\x2a\xb6\x8c\xe0\x8a\x3d\xd0\x90\x05\x7c\x4d\x23\x9b\x1e\x58\x1f\x20\xef\x39\x49\x49\xc4\xa8\x4a\xc9\x97\xd8\x27\xa4\x6e\x16\x26\x1a\x18\x09\x6a\x10\x51\xb5\xb2\xbe\x63\x5b\x73\x02\xd7\x76\x16\x7e\x59\xc0\xfa\x98\x80\x6d\x65\xab\x52\xb6\x2e\x6d\xe3\xc3\x62\xf1\x1a\x9e\xa7\xae\x07\x6e\x77\xe7\xe2\x78\x76\x69\x2c\x44\x39\xd3\x8e\x74\xf9\x91\xdb\x3d\x95\x2a\xfd\x3e\xe1\x29\x03\x77\x92\x9d\x51\xbf\xff\xf3\x2a\x67\x08\xce\x55\x8d\x58\x42\x73\x76\xa1\xde\x19\x4a\xee\x75\x57\x75\x4f\xfd\x3c\x29\x50\xb0\x62\x21\xfa\xac\x09\xc2\x1e\xd2\x84\x92\x84\xf9\xfd\xc6\xe6\x28\x84\xe5\x11\xa2\x04\xc3\xc9\x21\xd8\x11\x06\xb9\xa7\x48\xd9\x83\x48\xce\xe7\x2c\xb1\x49\xe1\x4b\x78\xa8\x39\x29\xa6\x72\x62\x2e\x64\x10\x64\x89\x26\x48\xf6\x6b\x1a\xc7\x91\xcd\x20\x5a\x3a\x2b\xb9\xca\xb0\x41\x76\x8a\x59\x90\xd6\x31\xe5\xf8\xa3\xbc\xfe\x6d\x57\xbb\xb3\xfc\xde\xef\x1e\x21\x12\x1a\x39\xc0\x06\x4e\x81\xe8\x6b\xdc\x18\x9d\x2d\x6e\x67\xff\x9b\xce\x4d\xc9\x46\xb9\x0b\xfb\xef\x2f\x00\x09\x73\xcb\x05\x02\xd4\x51\xa4\x0e\x0b\x8d\x74\x92\x2b\xa3\x9c\xd2\x1c\x35\x30\x17\xa0\xb1\x68\xd0\x10\x19\x9f\x72\xec\x34\x17\x5a\x15\xe6\x3a\xbd\x97\xc9\x1d\x4d\xc0\x5c\x88\xb9\x66\xcf\xb9\xc8\x1e\xac\x27\xd9\x3c\x5b\x36\x12\x42\x7d\x7e\x17\xfc\x01\x6d\x15\xa6\xbd\xcd\xaa\xf6\xf9\xf8\xcd\x9b\x5c\x21\xa8\xa9\x2f\x2a\xf6\x36\xfa\x77\x4d\x90\x96\x09\xa3\x0d\x7e\xbd\x5b\xc3\x1c\x5b\xa7\xd8\xdc\xa1\x35\x95\x07\x84\x92\x95\x13\xd2\x82\xc1\x86\xe5\x08\x16\xaf\x45\x4f\xd1\x65\x49\xb5\xf1\xe6\x31\xb2\xd4\xe6\xad\xb1\x8c\xec\x2a\xaf\xdf\x65\x73\x76\x21\x43\x36\x95\x49\x7a\xa5\x39\xfd\x6e\x93\xff\x1f\x6b\x9f\x90\x95\x8c\x42\x95\x6b\x99\xc1\xb8\x90\xe0\x1b\x50\xcb\x2e\xfc\xc5\x86\x4c\x54\x27\x29\x62\x3a\xc7\xe4\x52\xe3\x8c\xcc\xd4\xb6\x44\x9e\x00\xad\x2d\x6e\xf0\x57\x73\x9e\x3b\xa0\x42\x3c\xde\x28\x13\x43\x83\xa0\xcf\x90\x67\x62\x8a\xd9\x69\xc1\xde\xa1\x76\x1c\xd9\x17\x2a\xc2\x56\x4f\x5b\xe3\x70\xe0\x6e\xd4\x67\x9a\x94\x1d\x7d\xf6\xe9\xef\xde\xfe\xce\x1b\xee\xd2\x6c\x89\xa5\x62\x7b\xe9\xaf\xb2\x33\xea\xb6\x75\x8e\x3a\x4d\x99\x45\x95\xfd\xf1\xff\xf2\xbd\x7f\x18\x15\x25\x63\x46\x5c\xa4\x23\x99\x8c\xb0\x37\x37\x5f\x5a\x69\xf5\x2d\x25\xf3\xe5\xb2\xb7\xb8\x7a\x5e\xb4\xb5\x98\x12\xca\xaa\x6b\xb1\xcd\xd2\x35\xdc\xb1\x48\x2e\x2d\x66\xf2\xad\x00\x58\x15\x07\x5f\x01\xb7\x1c\x49\xc8\x05\x51\x12\xff\x36\x34\x39\x8c\xe4\xf2\xd0\x65\x32\xc7\x91\xf4\xe6\x27\x69\x03\x6b\x24\x97\x3d\x35\xcd\xe7\xb6\xa5\x5b\x18\xdf\x55\x2c\x3b\x47\x12\xab\xad\x69\x89\xa9\x69\x2b\xcf\x2f\xbf\xb1\x78\xba\xac\xfc\x0c\xe4\x08\xfd\xb7\x1f\xb1\x12\x5b\xc0\x5f\xef\x45\x9f\xf5\xb8\xed\x9f\xac\xdc\xbf\xee\x00\x35\x0e\x4e\xc1\x7f\xb1\x90\x1f\xb1\x9e\xeb\x20\x61\xac\x3b\x78\xe4\xbc\xfa\xc5\x93\xad\x49\xa5\xa1\xcc\xd2\xa7\x5c\xd1\xb6\x1b\x1d\x9f\x97\x9a\x3f\xdd\x5a\xb6\xca\xb9\x84\xe4\x42\x9a\x98\x50\x21\xed\x45\x03\x24\x6a\x5a\xb5\x6a\x07\x1f\x03\x84\x35\x7d\x00\xb5\xea\x35\xff\x6b\x73\x16\xf2\x06\x2c\x69\xd3\x8a\x1d\x87\xde\x54\xf2\x65\xf0\xbd\x77\x1a\x5b\xe0\xb9\x05\x92\x12\x12\xca\x35\xe5\x02\x2d\x44\xcd\xf1\x7e\x90\x70\x32\x31\x01\x22\x54\x10\x2a\x94\xe6\x7d\xbe\x7b\x4f\xfe\x92\xb1\x84\x33\xcc\x58\x13\x44\x32\x0b\x47\x5c\xf0\x34\x9f\x25\x64\x69\xcb\x4d\x23\x5e\xaf\x1f\x60\x31\xc0\x93\x4c\xc5\x52\x84\x79\x34\xc9\x9a\x06\x2b\x2e\x58\x2e\xdd\x0b\xb9\xa1\x23\x1a\x73\xf2\x52\x26\x9a\x10\x7e\x98\x67\x22\xcd\xbc\x5d\xda\xa6\x23\x3b\x8d\x57\x63\x72\x6c\xbd\xaa\x16\x88\x60\x5f\x06\x54\x41\x21\x42\x26\x14\x4f\xf9\x86\xbd\x22\x6b\x46\x45\xb3\xfa\xa1\x64\x3b\x36\x35\x63\x48\x16\x83\x00\x79\x71\x3c\xc3\xd8\x47\xab\x4d\xb1\x03\x03\xf6\xef\x38\x41\x6f\x3e\xfd\xdd\xf8\xf5\xf8\xf5\xf8\xcd\xce\xc7\xc8\x0c\xd2\x60\x8b\xf7\x1f\x05\xeb\x16\x05\x9c\xbc\xfe\xb7\xd1\x73\xe4\x33\xc6\xbd\x46\xbf\x88\x86\xd4\x4e\xeb\x39\x17\x2c\x44\xf9\x19\xeb\xea\x8c\x4b\x27\xed\x25\x5f\x00\x84\xf6\xf7\xf5\xcd\xda\xdf\x7f\x75\xe0\x38\xea\x34\x30\xdf\x00\xca\x1c\x90\x07\x68\x57\x7c\xf3\xf6\xf7\xe3\x4f\xbf\xf8\x7c\x6c\xfe\x7f\xf4\x25\x30\xf2\xee\x58\x47\xee\xba\xbc\x42\xdb\x44\x90\xb5\x66\x82\x02\x53\x9a\xa0\x10\xe1\xf4\x14\xad\x26\x78\xce\x8c\x32\x38\x74\x10\xdc\x97\xbf\xfb\xdd\x17\x2d\xc1\xbe\x4d\x37\x34\xcd\x76\xc9\xa6\xf4\x7e\xf6\xe1\xb7\xc8\xa4\x04\x96\xb6\x92\x54\x4c\xa3\x00\x82\x1d\x73\x35\x97\x5f\x1f\xfd\x7e\xf6\x61\x5c\x92\x7c\x8b\xfc\x41\x6d\xb9\x83\x3e\x2e\x51\x90\xa0\xa9\x55\x76\xf4\x8c\x0f\x72\xd4\x23\xd5\x9a\x53\xa0\x33\xa8\x04\x0b\x01\x77\x62\xdc\x75\x1a\xd8\x13\x13\x0e\xa2\x8f\x24\x5c\x6b\x9b\xa7\x44\x10\xea\xce\x8f\xc4\x52\x46\x79\x31\xa9\x8e\x38\xa1\x3c\xe9\x47\x25\xf8\xc8\x8d\x11\x82\x13\x50\x4c\xd8\xa8\x11\x72\x10\xfb\x71\x68\x29\x45\x8b\x9d\x84\x14\xe4\x25\x07\x87\x25\x2b\x24\x14\xea\x85\xf7\xc7\xd7\xff\xfb\xc3\xd9\xd5\xf1\xe9\x99\xa9\xb4\xea\x49\x31\xd3\xb1\x43\xb9\x8c\xe4\xd9\x9b\x26\x29\xa0\x53\x06\xe8\x92\x00\xaa\x9b\x9e\x4f\xc2\xd9\x6e\x88\x87\x83\xdf\x8c\xc0\xa6\xf2\xfd\xd1\x00\x6e\x52\x83\x03\x3a\x5c\x53\x88\x68\xc6\x03\x12\xc2\x06\xe7\x8e\xd9\x17\xc7\x33\xa3\x72\xce\x84\xf5\x07\x68\x89\x65\x9f\xb3\x15\xdd\x70\x99\xd7\x4b\xb6\x7e\x6c\x0a\xdd\x04\x1a\x23\xc2\xda\x45\x9c\x5d\x05\x1c\xc1\xd2\x88\x8b\x16\xbb\x42\x1b\xbc\xc1\x07\x59\x4f\xf7\x8a\x2d\xfb\xc4\x2e\x5f\x96\xdb\x5b\x42\x23\x4a\xe5\x3e\x97\x39\x3a\xd3\xf4\x31\x49\xb9\xc6\x43\x5e\x71\x10\x31\x58\x51\x95\x10\xd8\x09\x8a\x5e\x4c\x23\xd3\x11\xea\x7c\x0e\x0b\xff\x8b\x90\xc5\x91\xdc\xae\x99\xf0\x57\x40\x04\x0a\x60\x1d\x7b\x73\xcf\x91\x10\xa2\x7f\x57\xf2\x1e\x4e\x02\x24\x03\xc4\xc1\x5f\xae\x18\x24\x96\xcd\x95\x56\x5a\xf6\x8e\x9a\x2a\xcd\x71\x81\x72\xfd\x38\x58\x2c\x6d\xe5\x39\xc7\xcd\x45\xdf\x48\xe8\x3b\x90\xeb\x38\x33\xb9\x89\x5e\x99\x34\xc3\x99\xdf\xcf\xaa\x48\xd5\xf6\x67\x94\x8d\x7e\x2c\x76\xe5\xd6\xc0\x00\x59\x1b\x67\x31\x9a\xa5\x63\x59\x9a\x48\x31\xd6\xbf\x7a\x67\x6b\xa6\x82\xe9\x91\x0a\xa2\x77\xb6\x8e\xd3\xed\xae\xac\x08\xc6\x18\x40\xf6\x16\x9a\xae\x7a\x4a\x93\x53\xcf\x47\xae\x47\xef\x7c\x6b\x33\xc3\x43\xd6\xf8\x75\x26\xa0\xb4\x91\x57\x2b\x80\xe9\x12\x90\x84\xa3\x77\xbc\x89\x01\xcc\xd3\x6b\x1d\x90\x88\xdf\x31\x72\xec\x68\x68\x23\xba\x65\x49\xbf\xb0\xde\xc7\x41\x25\x91\x6b\x96\xae\x58\xa6\xbe\x91\xef\x59\x9a\xf0\xa0\x6f\x46\xa6\xfd\x69\xe3\xa7\x56\x2f\xa0\xc8\x37\x52\x33\xc7\x60\xed\x5b\x63\x13\x3f\xbb\x16\x45\xe8\xf0\x6c\x1d\x0a\xf5\x59\x2a\xfa\x37\x59\x98\x31\x52\xa0\x08\x00\x3e\x40\x0c\xa8\x98\xf7\x50\xa6\x12\x7d\x56\x0d\x67\x80\xba\x40\x73\xd7\xf3\x1a\xf1\x66\x52\x24\x81\x60\x51\x16\x1e\x60\xbb\x06\x72\xeb\xcc\x48\xf3\x14\x1f\x9d\xb0\xae\x00\xfe\xa3\x41\x5f\x01\xbc\x75\x4f\xae\xc0\xaf\x05\xf6\x46\x6e\xe2\xc2\xda\x26\xf3\x6c\x6c\x7a\x49\x1f\xef\x01\x5c\x5b\x63\x83\x3f\x6f\xc7\x02\xbf\x95\x2a\x97\x09\xd0\xde\x69\xb3\xa2\x14\x4d\xbd\xa8\xc9\x6c\xb0\x59\xa6\x0d\xed\xe1\x22\x04\x5c\x5d\xac\x8e\x7d\xdc\xed\x31\xd3\xec\x25\xe7\xd4\x16\xe7\x0a\x3c\x36\x04\xeb\xc9\x17\xf8\xfb\xd7\xbf\x6f\x11\xdf\x1a\x98\x9d\x62\x81\x53\x34\x75\x3c\xfa\xa0\x7a\xbf\x2f\x10\x85\x75\xa4\x1a\xb0\x44\xed\x06\x25\x6c\x2d\x37\xcc\x46\x97\x43\x5a\x82\x4e\x51\xe3\x7b\x93\x85\x09\x13\xd6\xd9\xc4\x8b\x1b\x66\xfc\xf9\x4c\x82\x01\x9b\xd6\x75\xc3\x9a\x1c\x55\xe6\x8c\x95\x52\x16\x58\x7a\x37\x36\xd9\x9f\x51\x8e\xb0\x69\x18\x30\x48\x30\x27\x6b\x8e\xa5\xb1\x29\x50\x0d\x1c\x26\x68\x18\x96\xe7\x55\x04\x02\xda\x74\x71\x4e\xd6\x07\x13\x0c\xcf\xa8\xbf\xd3\x7b\x86\x73\x31\xeb\xb5\x93\x89\xb6\x26\xdf\x84\x19\x61\xe7\x3d\x30\xc9\x04\x7a\x5b\x28\xaf\xaa\x5f\x94\x7c\x9e\xf5\xdf\x35\x97\x44\x10\x03\xbc\x36\x15\xf4\xe4\x4a\x33\x55\x38\x76\x14\x85\x6d\x64\x52\x32\x1e\x8e\x6d\x69\x7d\x22\xa4\x18\xfd\x95\x25\x5e\x75\x06\x77\x74\x5e\x0e\x3b\xaa\xca\x06\x96\x9d\x2d\x61\x39\x9c\x66\xb3\xf3\xfe\x20\x9a\xcd\xce\x5d\xc7\xa0\x51\x2a\x47\x11\xdf\xb0\xdc\x9f\x16\x24\x1f\x44\x10\xa3\xfb\x86\x54\xc2\x06\x3e\x06\x8a\x65\xc4\xb7\xfb\x32\xf4\x21\xd9\xd5\x26\x7d\xe5\xf9\xe8\x23\xbc\x50\xf3\x8c\x29\xbb\xdb\xa3\xc9\x8a\xfa\x75\xcc\x8f\xb5\x47\x63\xe6\x16\x6b\x7a\x6e\x67\x43\x1f\x0b\x6e\x4c\xb5\xd2\x0f\xca\xd8\xb6\x90\x26\xc0\x94\x93\x58\xe3\xd5\x92\xa1\x43\x0f\xf4\xdb\x68\xa6\x2c\x4a\x06\x92\x11\xb1\xd5\x0d\x26\x53\x75\x84\xca\x17\x6f\x6a\xa7\x40\x0a\x95\x26\x99\x2f\x98\xb0\x48\xda\x32\x32\x30\x9d\x4c\x8f\xdf\x97\x0d\xf4\x23\xe8\x5a\xff\x0e\x7b\x59\xea\xd1\x7e\xfe\x18\xd0\x81\x8f\x52\x93\x9a\xc3\x53\xee\xac\x48\xc7\x4c\x43\x9b\x97\xc8\xd8\xf6\x71\xa7\x8d\x02\x46\xdf\xbb\x0d\x4d\xb8\xf4\xb3\x1e\x4e\xd2\xf7\xab\xf2\x34\x2a\x8a\x0e\xa8\xf8\x5a\x54\xfd\x70\xc7\xf0\x9f\xfc\x22\x83\xb9\xe1\x67\x32\xe5\x0b\x49\xee\x88\x6a\x5d\x53\x9f\x80\x47\xfa\x04\xb4\xae\xb9\x4f\x91\xd0\xe3\xd3\x96\x30\xd6\x91\x9e\x90\xf7\x67\x9f\xff\x6e\x5b\xe8\xaa\x91\x17\xcf\xa5\x8c\xa7\x98\x83\xb0\x8f\xe2\xe3\x7b\x64\x83\xd0\xe6\x0f\x26\x96\x8d\x06\x9e\x62\x20\xf6\x17\xc4\xf6\xc0\x26\x36\x6c\xbb\x3f\x91\x94\xb1\x72\x52\x43\x93\xc9\xd4\xb0\x13\x34\x61\xc6\x29\x59\xef\x1a\x26\x6c\x32\x39\xf8\x08\x44\x5c\xe9\x15\x35\x5a\xce\x4d\xb6\x2e\x8c\x96\xcc\xa3\xc2\x4f\x2f\x8e\x67\xfb\xfb\x61\x35\xa8\xec\x83\x88\x40\x89\x9a\xa7\x6e\xce\xeb\x64\x78\x95\x1f\x5c\x58\xdf\x3a\xaa\x18\x56\x76\x33\x2b\x34\xcb\x09\xa4\x48\xb9\x40\xdf\x91\xb9\xc9\xf8\x51\x4a\x68\xe8\xeb\xf5\x31\xd9\xb4\x14\x0f\x59\x40\x93\xe3\x20\x60\x11\xc3\x38\x9c\xbe\x1c\xf5\x75\xe3\xa7\xb9\xf0\xc7\x1e\x34\xb9\x59\x03\xa2\xb7\x43\x35\x90\x83\xbc\x8f\x8f\x96\xf3\xc0\x8f\xa6\x47\xce\xa5\xf2\x6a\x3e\xf8\xbe\xb2\x44\x9c\x50\x21\xc5\x76\x2d\x33\x9b\x61\xd3\xba\x10\x79\xd5\xd6\xc8\xad\xbb\x49\xc9\x15\xff\x2b\x33\xf9\xc5\xca\x05\xd6\xc6\xe4\x5c\x2e\x15\xb9\xa7\x89\xe0\x62\xa9\x99\x86\x34\x4b\x84\x5f\xeb\x3a\xdf\x62\x36\x64\xc8\x7d\x6b\x0d\x4f\x4e\xbc\x16\x24\x6c\xa0\xa5\x9a\x83\x79\x5a\x8b\x4d\x16\x09\x96\x50\xcc\xec\xe0\xeb\x7c\x45\x15\xb2\xd8\x21\x57\x81\xdc\x30\xa3\x17\x4b\xbd\x35\x28\x31\xa1\x68\xa6\x3a\x4f\xe4\xa3\xa4\x8c\xf2\xfe\x4d\x04\x4f\x39\x8d\x9a\xf2\x6f\xb5\x6d\xa2\xfb\x69\x39\x3b\xaf\x4d\x80\x1c\xea\x57\x7e\x69\x63\x21\x73\x2a\xbe\xa6\x77\x0c\xed\x4c\xba\xe3\x8a\xe3\xcf\xce\x2c\x46\x75\x79\x3d\x79\xba\xea\xd2\x0c\x57\x57\x5a\x56\x8d\xa1\x6f\x56\x13\xe3\x9a\x3c\x3c\xea\x97\x6f\x3f\x7f\xd4\xa2\x30\xa8\x41\xd0\xe8\xb4\x67\xce\xd4\xa6\x1a\x93\x0f\x11\x6d\x41\x41\xdd\xdf\xf6\x89\x39\x83\xb2\x4f\xff\x7a\x41\x67\x30\xff\xc7\x04\x8b\xc3\x87\xdf\x5d\x4c\x76\xfd\xee\x9e\x27\x6c\x99\xd1\x24\xec\x8b\x25\xbf\xaf\x7c\x50\xcf\xb6\x9c\xb7\x70\xe8\xf8\xb3\x14\xab\xc8\xe7\x9e\x3b\x78\x5f\xd0\x75\x37\xd7\xfe\xbd\xf7\xb3\x0a\x9b\x08\x26\x18\x63\xfc\x6c\x70\x59\xd4\xcd\x9c\xb5\xda\xce\xdc\xab\x74\xbf\x1c\x1b\x23\xc4\x8e\xb7\x29\x5f\xda\x39\x57\x29\xd3\x94\xa1\x97\x36\xef\x7b\xef\x67\x95\xbc\xe4\xf6\x15\xaa\xf6\x9a\x2c\x7c\xf3\x6d\xb1\xb8\x52\xc0\xce\x9b\x2f\x3f\xdd\xfd\x5c\xe7\xeb\xe9\x73\x37\xbf\x77\x1a\x97\xe7\xae\x7f\x30\xd7\xd3\x07\x79\xdf\x3a\xae\x19\x6b\xbd\xa4\x1f\xb3\x98\x2b\xe4\xd8\xae\xb2\x88\x4d\x13\x2e\x35\x9d\xed\xbf\x38\xcf\xc7\xe5\xc5\xc6\xf6\x57\x30\x57\x35\x28\xad\xcc\xf9\xac\x80\xc4\xb2\x92\x5a\x8c\x2e\xa9\x1f\x7e\xbf\xf3\x62\x1f\xc2\xde\x85\x21\x3c\xa9\x49\x7e\x38\x9d\x96\x59\x3b\x3d\x57\x95\xf1\xd4\xd4\x0b\x82\x34\x9d\xfe\x03\x98\x27\x3c\x0c\x99\xd8\xd6\x1d\x1f\x1f\xc5\x58\x3c\x84\xf1\xae\x9a\x94\x1f\x4e\xa7\x4f\x1b\xcd\x0b\x59\x5a\x1e\x15\xc8\x6b\xd4\x24\x5e\x32\x54\xaf\x8c\x24\x13\x53\x0e\x0c\x53\x08\x83\x8c\xed\xd7\xa8\xfc\x70\xea\x75\xf1\xaf\x87\xfb\xee\xae\x4f\x19\x4a\x34\xd7\x4b\x34\xa3\x0b\x98\xf1\x6e\x00\x6b\x2a\x67\xcf\x51\xa4\xf9\x1b\x18\xe7\x02\xc7\x41\xe3\x31\xbe\x2e\xaa\x34\x7b\x9a\xd4\xcb\x34\x7b\xe7\x6b\x36\x29\x2f\xd4\x5c\x6f\x04\x83\x3d\x57\xa5\xe6\xa1\xb2\xf2\x50\x59\xd9\xdd\x82\xa1\xb2\xf2\x73\x56\x56\x6e\x2b\x7c\x1c\xc7\xd1\xf6\x52\xbc\xc3\xba\x6a\x5d\xd4\xf4\xb8\xd4\x1a\x75\xb1\xb6\xe4\x10\xf4\x84\x3a\xd9\x22\x7f\x3f\xb7\x69\xe4\x7d\x04\x0a\xd9\x09\xe8\xc9\x86\xe4\xec\xc8\x0f\x84\xf2\x42\xa6\x33\xcd\x83\x74\xcd\xfc\x34\x6f\xe9\xcc\xda\x4a\x3c\x56\x55\x08\xbe\x47\x68\x21\xcc\xd7\xd1\xa0\xfc\x73\x96\x66\x51\xc5\x52\x16\xb5\x50\x8c\x85\x85\x80\x18\xbd\xaf\x9c\x7a\x79\x50\xad\xe7\x8e\x8b\xa5\x57\xad\x08\x8a\x44\xaa\x8c\x02\x3d\xb0\x89\xd0\xb1\xb2\xdd\x2c\xb1\x49\xaa\x7c\x10\x26\xd4\x9f\x00\x10\x2c\xa7\x7a\x51\xa8\x10\xa1\x62\xeb\x4c\xcd\x3b\x31\xcc\x15\x69\x60\x62\x14\x97\x8d\xea\xac\xd2\xf8\x10\x54\x8c\x19\x4e\x8d\xa9\x78\xce\x88\xe1\x11\x77\xdd\x5b\xac\x42\xd0\x9d\x27\x9f\xa1\x8f\x2f\x96\xa5\x82\x74\xe8\x58\xbe\xc0\x70\x9c\x98\x8b\x15\xbc\xd5\x6d\xf1\x70\x2f\x94\xec\xd7\xb8\x6e\xe3\x86\x16\x24\x3c\x65\x09\xa7\x98\x1c\xcb\x71\xdb\x87\xec\x61\x06\x6c\xe6\xe8\xef\x94\xec\xbc\xb4\x86\x9b\xbd\x63\xa2\xc5\x08\xb7\x8a\xb5\x2a\x66\xe4\x9b\x8a\x97\x89\x24\x79\xbd\x0f\xf2\xb5\x4c\x57\x26\x1e\x5d\x26\xa3\x39\x55\x00\x1e\xa3\x4a\x9c\x9a\xfd\x12\xee\x6f\x58\x97\xc6\x0b\x1b\x60\x25\x59\xc2\x44\x60\x4f\xde\xc8\xc9\x15\x29\xb3\x14\x23\x3c\x6d\xc8\xa0\xa9\x5b\x24\x13\xc8\x34\x6a\xeb\x06\x36\x4c\x58\x84\x79\xb9\x09\x07\xf0\x10\xfa\x75\x73\x23\x6c\x22\x5d\x0c\x59\xa8\x42\xa2\xc1\x32\xa9\x37\x53\xb0\x25\x4c\xce\xb0\x04\x07\x26\x6a\xcb\x7a\xf1\xff\xfa\xcb\x3f\x2e\x64\x0a\x39\x6d\x8f\xa3\xc8\xc4\x5f\xb8\x7d\xfb\xfb\xd5\xdf\x82\x3f\x34\x1c\xa7\x3c\x5b\x2a\x4d\xb9\x82\x5c\x9a\x18\xd8\x6a\x16\x62\xcb\xec\x8e\xc9\xb1\x49\x33\xd7\x00\x5b\x38\x9a\x54\xd8\xe3\x69\x42\x15\xcc\x92\x35\x80\x60\x31\xfa\x0f\x47\x8f\x4b\xb1\xf3\x66\xa8\x02\xec\xfd\x53\xb4\x18\xa4\x98\xa2\x65\xbb\xcb\x4f\x67\xa2\x57\xda\x94\x7e\x01\x9f\xae\xd8\x46\xb8\x06\xb6\x0a\x7a\x63\x2f\x65\x34\x5e\x7c\x90\x5f\x67\xcf\xf6\x19\xeb\x91\xbe\x96\x4d\xdd\x82\xf4\xed\x8c\x4f\x34\x8d\x4e\xfd\x7e\x91\xbd\x80\x41\x4c\xb5\x60\xc8\x8d\x7a\x6d\xae\x5e\x4b\xdb\x1a\x12\xb8\xa8\x7e\x6c\x3c\xe3\x65\x6c\xac\xaa\x0b\xce\xa2\xb0\x31\x60\xa7\x78\x72\xc0\xd0\x1c\x05\x38\x91\x15\x26\x2e\xb7\x54\x2e\x49\x26\x7c\xa9\xe1\xd0\x74\xff\xed\x03\xdc\xd7\x4b\x7d\x84\x58\xb2\xc6\x0f\x08\x4d\x5f\x39\x86\x6d\x73\x45\x30\x23\x77\x04\x99\x55\xdb\xbb\xcc\x41\x56\x94\x5f\x31\x64\xd8\xf8\x9e\xc3\x41\xae\xc1\xa6\xbd\x53\x7d\x01\x72\x28\x6a\xba\x84\x62\x42\x98\x27\x29\xa0\x6b\x66\x02\x6f\xa0\xf2\x0f\x64\x37\x68\x0b\x19\x2e\x1e\xc7\x86\x6f\x2d\x94\x0e\xdb\x30\x77\xf1\x6e\xb1\xa2\x7e\xa0\x70\xd8\x0e\xc4\x7e\xef\x64\x42\x4a\xc2\xdd\x01\xa4\x83\x80\x2c\xb7\x3b\x42\x84\xaf\x35\x17\xa0\x0a\x4f\x40\xf7\x90\xd9\x8c\xee\xa0\x40\x8f\xd0\xa4\x0a\x30\x69\xef\xd3\xe3\xd7\xc0\x1d\xf8\xe6\x3b\x0b\x09\xcf\x57\xac\xbc\x94\xc6\x8b\x86\x4f\xc3\xf2\xf7\x51\x4e\x7d\xf9\x6a\xbf\x0e\x00\xbb\xc6\xf6\x8e\x77\x03\x40\x59\xc2\xbe\xf6\xfb\xfd\x15\x8f\x4c\xc8\xb7\x52\xe5\xb5\xcc\x8a\x5d\xf4\x08\xea\xc5\x5e\xb6\xf7\xd9\xb8\xce\xf2\x2a\x90\xcd\x03\x4e\x7c\xd7\x83\x4c\x83\x44\x2a\xe0\xf4\x9c\xdb\xd8\x40\x13\x72\x30\x76\xe2\x76\x82\xc1\x18\x6d\xe8\xb2\x1a\xde\xc2\x4c\xa9\x01\x2f\xce\xd3\x12\x64\x9a\xf0\x20\x6d\x2c\x8a\x5a\x3c\x96\xba\xc1\x16\x1a\xc1\x44\x36\xa1\xbc\x1c\xab\x75\x1c\x9c\x32\xca\x2b\xe2\x4a\x91\x13\x87\xc4\x3a\xe8\x93\xb2\xe4\x1b\x26\xb4\xf4\xa9\x97\xdf\x7a\xce\x9b\x19\x44\x67\xdc\x5e\x90\x6e\x8d\xeb\x2f\x1e\x21\xd3\x8b\xdd\xf6\x04\x3f\xc8\x23\x5b\xca\x7c\x95\x5d\xf1\x45\x43\xed\xb1\xe2\x81\x7d\xfc\x97\x83\x45\x53\x5d\x8c\xe2\xa9\x02\x23\xaf\x87\xd1\x02\x8d\x69\x93\xef\x65\xf1\x20\x38\xc8\x35\x64\xd8\x86\x53\x0a\xd5\xf8\x6c\xfe\x79\x85\x8e\xb4\xa6\xa4\x02\x24\xdc\xd9\x92\x46\x97\xce\xe2\xa9\xa4\x76\x4f\xcb\x19\xbf\x6c\xb1\x35\xc3\x2c\x19\x5c\xad\x25\x8f\x0e\xa8\x4b\xa4\x61\xb6\xae\xfa\xc9\xd4\x26\x64\xff\x70\x3a\x6d\x48\xdc\x6e\x9f\x3e\xbb\xda\x9c\x42\xa3\x78\x7a\x24\xd3\xa8\x37\xee\x3e\x28\xdd\x09\x36\x8a\x67\xf7\x54\x1b\xc5\xd3\xf7\x40\xee\xce\x37\x5e\x14\x1f\x75\x1c\xcb\x7e\x8c\x82\x39\x99\x60\x77\xcb\x3b\x46\x2c\x8c\xb6\x9f\x79\x1a\xb1\x14\x92\x75\x42\x7d\x00\x1c\xab\xbd\xcf\x9c\x21\x6a\x3d\x2a\xfd\xf6\x2c\xde\xed\xca\xde\xec\x15\x15\x6c\x3a\xc8\x4a\x17\xdf\xc0\xfa\x90\x15\xb0\xf9\xd8\x58\xda\x97\x8e\x7c\xe1\x89\x37\xad\x2e\x0b\x7b\x40\x6e\x52\x11\x93\xc1\xcd\x4d\x75\x73\x68\x35\xc5\xb3\x3c\x33\x53\x07\xd7\xe7\xca\xe5\xe6\xea\x80\x65\x09\xa1\xac\x2c\x04\x8c\xda\xd5\x0c\xd3\xc1\xe3\x2c\x6c\x7e\x1f\xcd\xdc\xf4\xc5\x60\x9d\x18\xc0\x04\xae\xee\x82\xc1\x3a\xd6\x5e\xa0\xb7\x0a\x06\xbb\x41\x1c\x76\x63\xb0\xd8\x0d\xe2\xb1\x1b\x8d\xc9\x5a\x79\x9e\x01\x97\xc1\xd3\x0b\x97\xa9\x47\x08\xc0\xdd\x72\x6f\xab\x0a\xaf\x78\xbc\x72\x2f\x79\xa9\x18\xb3\xba\x2f\x40\x65\x98\xb7\x56\x6d\x45\x4a\x1f\x7c\x11\xfb\xee\x73\x73\xd3\x2a\x36\x1b\x1e\xb2\x49\x2c\x6e\xef\xdb\xaa\xbc\x1c\xa9\x59\x26\x75\x69\x58\x5f\xb7\x0b\x99\xa2\xb5\xf9\xa8\x21\x51\xaf\x03\x04\xe3\x8e\x6d\xed\x54\x1d\x54\x01\xc1\xe3\x50\x93\x0e\x59\x95\x45\xf2\xfe\xd5\x41\x79\xca\x0e\xb0\x11\xaa\xb6\x6c\xb1\x2d\x9e\xd0\xa1\x0a\x00\x3d\x17\xe8\x2f\x67\x2b\x46\xd2\x7b\x09\x67\x0d\x7c\xbd\xed\x3b\x44\x10\x9a\x08\x6d\x8b\x5c\xc1\x1d\x7b\x77\x29\xec\xea\x4d\x3d\x55\x47\xaf\xca\x1c\xe9\xd5\xa4\xdf\x07\x93\x80\x69\xdf\x4d\x13\xee\x57\x32\x32\x9b\x74\x04\x5b\x74\x73\x53\x10\xe4\x3f\x00\x76\xf9\x64\x45\xd5\xcb\xf5\xf6\x36\xa2\x73\x16\xbd\x02\xbc\x63\x90\x7c\xd7\x75\x76\x3c\x98\xf5\xba\xe1\x90\xe1\xfc\xd0\x61\x60\x64\x1c\x4e\x22\x16\xea\x71\x7b\x9e\x37\xd7\x23\x3a\x2f\xf5\x09\x93\x23\xbf\xfe\xf2\x77\x3b\x51\xd0\x8e\x9a\x05\xf5\x3e\x16\xb8\xe0\xc6\xf5\xd6\x97\xa4\xe7\xa0\x97\xd5\xde\x6d\xfb\x6a\xf3\x05\xb5\x2f\xa6\x5b\xe1\xa0\x4f\x1d\x5b\x2c\x58\x60\x22\x28\x8d\xa6\x20\x02\xb4\x6a\xc2\xd2\x4a\xf5\x96\x7b\x4c\x5d\x48\x31\xb2\xf1\x07\x68\x7e\xc5\xf8\x12\xa3\x13\x59\xc8\x64\xcd\xaa\x3a\x88\x96\x6a\xce\xc5\x03\x87\xa1\x0e\x98\xa2\x8a\xcb\x53\x08\xf0\xc6\x23\xff\x38\x08\x64\x26\x76\xe1\xbb\xae\xcb\x1f\xfe\x66\xfc\x57\x05\x25\xb7\xf7\xe9\xd1\x64\x52\x12\xcb\x30\x4f\xc2\x04\xcc\x5c\x8e\x9e\x0d\x30\x3a\xd0\x2e\xae\xb8\xf5\xb4\xf5\xd2\x25\x13\x52\x76\x0a\x69\x7e\xca\xf2\x00\xd4\xb7\xf9\x68\x70\x93\xc7\x80\xbc\xbb\xcb\x26\x05\xb2\x07\xec\xbd\xa0\x4d\x0a\x88\x6b\x4c\xac\x8c\xe3\x27\xcf\x35\x91\x9a\xf9\xed\xb8\xf9\xfd\x18\x3b\xb2\x83\xfa\x81\xf4\xe5\x92\x48\x5f\x4e\x89\xd4\xef\x57\x27\xaf\xf4\x9f\xbb\xd3\x25\x39\xa9\xd0\xb8\x21\xd6\xb7\xf0\x1c\x93\x49\x87\xd4\xa1\x9f\xc2\xba\x50\x37\x1a\x14\x72\x48\x6a\x12\xe6\x37\x1a\xd9\xcb\xcf\xf1\xc5\xe9\x7e\x83\xcf\xb4\xfb\xec\xa6\xcd\x6a\xaa\x3c\xd8\xb7\xcd\x2a\x4d\xe3\x7e\x46\xb6\x6f\x67\xb3\x69\x61\x44\x6a\xb4\xac\xe9\xe3\xa1\x9b\x36\x4f\xdd\x3a\xde\x7c\x9c\x51\x6d\xcd\xd2\x95\x0c\x77\xa0\x3d\xef\xf1\x83\xa7\xa5\x39\xb8\x64\xb8\x1c\x66\xdd\x8e\x5f\x91\xee\x13\xf3\xa5\xb3\x86\x12\xe1\xe5\x4e\xc1\x87\x3b\xc4\x5e\xec\x6c\x5f\xb2\xf1\x72\x4c\xbe\x39\x9b\x1d\x90\xe9\x87\xd9\x01\x61\x69\x30\x7e\x45\xde\x9b\x0a\x66\x1d\x12\x84\xe9\x43\x9f\xda\xcb\xab\x7d\xcd\x44\x2c\xc1\xb5\xe5\x5f\x4b\xe3\x1a\xd3\x74\xb5\xc3\x3e\xee\x4f\x75\xfb\xe7\xd8\xc6\xae\x1d\xec\xb6\x30\xb8\x3b\x08\xd3\x1c\xe7\x5b\x85\xcb\xb4\x7b\xd1\x77\x33\x08\x61\xe3\xe5\x11\x19\x11\xf6\x40\x83\xf4\x88\x1c\x2e\xa4\x84\x8a\xa4\x90\x5b\x88\x1c\xce\x69\x42\x2e\x2e\x67\x67\x47\xe8\x13\xc1\x44\x9a\x6c\xc9\xba\x8b\xb8\x5c\x5e\x9c\xff\xc9\xe0\xb1\x2d\x61\x1c\x93\xb6\x93\x9b\x3d\x18\x04\xf5\x1f\xfa\x4f\x1c\xc5\xf2\xe9\x8d\xf5\xff\x8a\x67\x43\x23\x1e\xd2\x5c\x4c\xc5\x94\xf3\x5a\xa8\xe6\xa9\x2f\xea\xb8\x78\xfa\x9c\xb9\xf2\x21\xd0\x20\x86\x2c\xc3\xa5\xfc\x76\x00\x78\x9b\x6b\xd8\x38\x31\x74\xa0\xdb\x49\x0a\xce\x84\x73\x66\x01\x61\x24\x60\xcd\x82\x1f\x59\xb0\x9b\xaa\xcb\x34\x5d\x61\xb9\xe5\x23\x9b\x23\xa2\x8f\xc0\x86\x47\x0d\x66\x05\xdd\x45\x50\x8c\xd4\x6e\x61\xd1\xf5\xc8\xc0\xfb\xa3\x46\xc0\x3e\x5a\x81\xbd\x03\xa7\x49\x0c\x00\x9e\x96\x09\x8a\x9b\x32\x63\x3d\xbe\xd3\x3e\xc4\x90\xf4\x43\x48\xdd\x5d\xf1\x60\xdd\x93\x66\x4e\x4e\xde\x4f\xfb\xda\x2e\x01\x19\x35\xcf\xdd\xc5\x52\xd4\x9e\xfa\x00\x66\x8b\x21\xa9\x32\x04\x1c\x05\x43\xe6\xb9\xcc\x1b\x0b\xbb\xe2\xe3\x96\x71\x28\x15\x23\x37\x75\xa0\x72\xcd\x2a\x4e\x9a\x3b\x91\xd0\x7a\x9c\x36\x59\x12\x2c\x41\xba\xd1\xe6\x6d\x8b\x31\xa8\xd7\x49\xd4\x4b\xdb\x81\xce\x03\x67\x22\x85\x0b\x25\x00\x4a\x00\x39\xde\xc8\x64\xe1\x54\x3a\xef\x26\x11\x33\x0d\x60\x74\x61\x06\xbf\x29\xc8\x27\x53\xaa\x86\x9d\xa7\x92\xa1\x24\x65\xc1\x4a\xf0\x80\x7a\xab\x3c\x15\x0f\x08\xf5\xa8\xb8\xe2\xeb\x58\xaa\xc2\xb9\x14\x0b\x19\xec\xab\x22\x45\xe5\x82\x27\xec\x9e\x46\xfe\x64\x7b\xc5\x83\xd8\xc2\xa8\x14\x30\xd1\xa5\x24\x4c\x14\xe5\x90\xc1\x7f\xa4\xfb\x6a\x74\x6a\x9f\xa1\xd9\xc7\x6f\x86\xee\x66\x4c\xdc\x30\xe7\x2e\xe5\x6d\x9e\xb9\xf8\x4b\x74\x3c\x84\x15\x42\x5f\x67\xc1\x4a\x92\x2b\x24\xda\xe4\x25\x1f\xb3\x31\x89\xb9\x58\xaa\x76\xed\x6d\xaf\xf5\xf6\x40\x06\xb1\x3f\x36\xa1\x01\x20\x93\xa9\x8d\x51\xf8\x68\x97\x86\x92\x68\x86\xfc\xb8\x0b\xe5\xa9\xd5\xe9\x36\x42\xa1\x07\x04\x1a\xbc\xcc\x1b\x16\x67\xd3\x10\x3b\xbe\x66\x45\xf6\x0f\x27\x1f\x4a\x5e\x47\xa4\x7d\x71\x1f\x85\x34\xc0\xa1\x1f\x33\x43\xb5\x1e\xd7\x62\x86\xd3\xbe\x54\xb1\x2f\x59\x2a\x3b\xc9\x17\xf3\x31\xd1\x11\xa8\x6f\xbe\x63\x26\x14\x90\xc4\x94\x27\xcd\x99\xb7\x8b\x47\x8b\xb5\xa6\xfa\x8f\x0b\x53\x3a\x97\x59\xda\x83\x90\x3c\x95\xe4\x28\x64\xaa\x6f\x5f\xbf\x93\x71\x81\x8d\x3b\x6c\xd1\xd0\xa4\xdd\x27\x64\x20\x18\x03\xc1\xf8\xf7\x26\x18\x42\xa6\x96\xad\x6a\x04\x4b\xbb\xbd\xb8\xa7\xa5\xb8\x9f\x8d\xb8\xe6\xca\x64\x59\xbe\x0e\x6f\x26\xd3\xac\x19\x60\x1d\xf7\xb8\x87\x51\xfa\x71\xe6\xe8\xf8\x5f\x15\xb8\x37\x7b\x2e\x6c\x9f\x90\xf6\xd7\xd4\xb2\x10\x09\xe0\x72\x02\x16\x26\x63\x38\xf5\x3c\x69\x73\xcd\x31\x7e\x65\x66\x9f\xcf\xc0\xff\xfd\x0a\x82\x37\x6c\x28\x02\xfa\xce\xbc\x9c\xb3\x80\x66\xca\x78\x73\x74\x38\x06\xe7\x53\x0c\x58\x02\x7d\xe4\x1e\x21\xaf\xd0\x9c\x68\x33\x0a\x96\xfc\x5b\xba\x48\x2c\x3a\xbe\x1c\xb9\xbe\x1b\x07\xae\xe7\x06\xfe\x01\x92\x4a\xe9\xaf\xcd\xdb\xe2\xef\xeb\x93\x19\xbe\x6d\x1e\xc6\xf4\x78\xce\x53\x66\xdd\x43\xa0\x8c\x00\x1c\x10\x6b\x52\xc0\x54\xeb\x6f\x46\x9f\x7e\xf1\x45\x8b\x8d\xed\xf9\x8e\xbd\x6a\x4a\x6e\x87\x4f\xd9\x4c\x90\x27\xb7\xeb\x11\x2a\xd1\x50\xad\xc2\x1d\x75\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\xfc\x2b\x1e\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x5a\xc9\x80\xcb\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\xa8\x3f\x43\x94\xc4\x10\x25\x91\x3f\x43\x94\xc4\x10\x25\xf1\xfc\x51\x12\x2d\x15\x77\xb4\x8c\x81\xf9\xce\x7c\xef\xda\x3b\x6e\x39\xe5\x26\x3b\xde\x23\xd2\x1c\x9a\x2f\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\xb0\x19\x35\x0e\x79\x0e\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xe2\x19\x2c\xf8\xce\x33\x58\xf0\x07\x0b\xbe\x79\x06\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xc0\x65\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x5f\x7f\x06\x0b\x7e\xf5\x19\x2c\xf8\x83\x05\xbf\xfa\x0c\x16\xfc\xc1\x82\x9f\x3f\x83\x05\x7f\xb0\xe0\x0f\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x90\x0c\x79\x0e\x7b\x8e\x30\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\xb4\x55\x43\xda\xaa\x21\xcf\xe1\x90\xe7\x70\xc8\x73\xd8\x3c\xff\x21\xcf\xe1\x40\x30\x06\x82\x31\xe4\x39\x1c\xf2\x1c\x96\x9e\x21\xcf\xe1\x90\xe7\xb0\xf2\x0c\x79\x0e\x9b\x05\xc8\x21\xcf\xe1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\xb2\xe2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xa6\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xfa\x33\x44\x49\x0c\x51\x12\xf9\x33\x44\x49\x0c\x51\x12\xff\x89\x79\x0e\xfb\xd8\xc2\xea\x98\xab\xdb\xfe\xb5\x40\xd3\x65\xc1\x6b\xfa\x66\x9d\x29\x57\x9b\x6f\x0e\x1d\x26\x0b\x94\xa2\xa4\xe5\x6e\x58\x92\x7f\x57\x20\x21\x63\xd7\x3a\x2e\x75\xa3\x96\x7b\x59\x78\x7b\xa7\x36\xc7\x63\x03\x33\x8f\xfe\x2d\x98\x35\x0f\xc4\x16\xdd\x29\xe8\xf9\xc3\x31\x4a\x32\xb9\x1e\x66\xc5\x97\x9a\x2d\xbc\xd9\x83\xfe\x6e\xf6\xe0\x00\x9b\xb6\xbe\xae\xe9\x42\xb3\x34\x29\xa0\x4c\xe8\x20\x92\xf7\x2c\xc1\xd9\xa0\xbf\x90\x33\x39\x45\xe4\x9a\xa7\x29\x0b\x0f\xb4\x44\x8e\xae\xe6\xbe\x4e\x03\x29\x14\xc7\x94\x95\x28\x71\xdf\xec\x71\xb1\xe0\x82\xa7\xec\x66\x8f\x8c\x08\x78\xa9\x38\xcb\xb1\x22\x8e\x99\x27\x89\xa8\x4a\xc7\x24\x5f\x99\x17\x24\x7a\xae\x3c\x64\x22\xe5\x01\x8d\xcc\x04\xab\xfd\x70\x41\x68\x14\xaf\xa8\xc8\xd6\x2c\x71\xda\xc1\x01\xf0\xf5\x6a\xcc\x82\x46\x38\x44\x53\xac\x57\xb1\x89\x87\x43\x64\xeb\x79\x5d\x6e\x8f\x13\x76\x7a\x71\x3c\xeb\x3a\x1e\x53\x6c\x46\xb8\x08\x79\x80\x32\x49\xee\x16\xbd\xb2\x69\x28\x81\x7a\x71\x65\x01\x35\x67\x0b\xe9\x47\x3c\x54\x6c\x89\xee\xae\x71\xae\x73\x29\x23\x56\xcf\xaa\xd9\x42\x75\x2a\x52\xf9\xcc\x95\xf0\xf0\x54\x3b\x72\x9e\xbd\x68\x31\x0f\xee\xf0\x3f\x32\xf3\x22\x20\xbd\xb6\x0a\xc7\xee\x9c\x04\xe3\xc4\xed\xec\x61\x2a\x8d\x82\xa9\x45\xee\x28\xe6\xa1\xc8\x42\x46\x91\xbc\x47\xa8\xa1\xf0\x99\x8b\x63\x48\x17\xfe\x80\xb2\x09\x5e\xec\xdb\x88\xa7\x2c\xa1\x91\xfe\xc5\xd7\xf3\xcd\x0d\x19\x61\x10\x83\x3e\xd5\xeb\x98\x26\x5c\x49\x71\x40\x20\x92\xc9\x0a\x15\xb6\xcb\x85\x94\x64\x4e\x13\x10\x74\xf2\xe1\x3e\xd9\x71\xb8\x62\x3c\x2d\x12\xb1\xbf\x64\x34\xfa\x0a\xfd\xee\x2c\xa1\xe3\x0b\x43\xe1\xb8\x82\x36\x56\x69\x97\x0f\xe9\x47\x22\x3f\xc1\x3c\x68\xe1\x2d\x32\x2f\xfe\x19\xe0\x3f\xc7\xe3\x31\xf9\xd9\x99\x41\x9a\x64\xcc\xba\xcf\xe7\x1e\x68\x38\xc6\x0f\xc4\xef\xf1\x6a\xb4\x95\x1d\x43\x15\x73\xd5\x0b\xe0\xa2\xc7\xe4\x7c\x83\xed\x38\x5f\x18\xac\x6d\x82\xfe\x2d\x71\xe6\xac\x05\x5a\xe8\xef\x56\x93\x8e\x57\xc5\xd0\xb3\x7c\x64\x9a\x16\xbb\xe3\xec\xcc\x27\x70\x48\xbd\x44\xd7\x74\x91\x6b\x36\xe4\x02\xda\x82\x68\x0b\xff\xcf\x5e\xbf\xfe\xf4\x2d\xfe\x17\xdf\xe4\xdf\x5c\xaf\x64\x92\x8e\x02\x9e\x04\x19\x4f\x81\x71\x31\x1f\xf9\x06\xfa\xdb\xdf\x5a\xbf\x06\x15\x68\xfa\x12\xdb\xbc\xca\x1b\xc5\x34\x61\x02\x93\xdd\x2e\x13\x99\xc5\x9a\x5b\xbb\xb9\x49\x69\x14\xbd\xf4\xaa\xb2\x4d\xf6\x55\x74\x4e\xc8\xf1\x85\xed\xcd\x9e\x61\x1a\x45\x8e\x84\x0a\x17\xf4\x1c\xcf\x03\xb2\x60\x0d\x48\x4e\x5f\x6d\xc4\x33\xd6\x7f\xcb\xc5\xef\xea\x80\x8c\x0e\xc8\x2d\xc0\xe1\x70\x4c\xae\xe1\xca\x11\x73\xe5\x1a\x3b\x5d\xcb\x84\x91\x58\x33\xa7\x4a\xf1\x0d\x23\x73\xf4\x3c\xde\x5a\xcd\x88\xd1\x59\x11\xa6\x02\x1a\x33\x12\xac\x68\x42\x83\x94\x25\x66\xda\x67\xe8\xc0\xe9\xbd\x0c\x2f\x81\x4a\xad\x69\xc8\x46\x59\x8c\xc7\x42\xbd\xca\xd1\x11\x84\xbb\x18\xd4\x71\xcf\xe6\x9a\xfb\x65\x06\x79\xb8\x3b\x1e\xb2\x38\x92\xdb\x35\x13\x5e\x74\x6a\xbe\x8f\x13\x19\xda\x43\x0a\xfd\xea\x3b\x05\x38\x29\x91\x22\x65\x22\x74\x8e\x3a\x0d\xee\xcc\x0f\x3f\xeb\xe6\x45\xff\xe4\x93\x3f\x34\xdd\x80\x90\x6d\x6c\xf7\x9f\x90\xca\x2d\xf0\xa1\xb2\x36\xe6\xa9\xac\x4b\xe8\xcb\x15\x5e\x7b\xbf\x7a\x36\xd6\xd0\x4c\xd2\x8a\x1a\xbb\x32\x88\xa0\xaf\xec\x41\x53\x41\xad\x59\x70\x00\xf7\x2b\x08\xa3\x2c\xd1\x7c\xc7\xa1\xc3\x24\x9a\xf6\xe2\x29\x7d\xef\xa4\xc9\x34\x7d\x60\xfe\xd2\x42\xcd\x98\xa0\xfb\x14\x50\x93\x87\x58\x73\x54\x69\xb4\x75\x64\x9a\x97\x90\x25\xdb\xeb\x17\xe7\xe0\x51\x41\x82\x84\x19\xaf\x6d\x65\x6e\xb7\x4c\x88\xe0\xd1\xab\x03\xeb\x79\x1d\xb2\x05\xcd\xa2\x54\x11\x5c\x96\x06\x5d\x12\x36\xc8\x34\xa9\x24\xf7\x1a\x57\x4e\x4c\x2e\x73\x3d\x89\x33\x27\xad\x39\xf0\xad\x16\x7f\xe6\x29\xa3\xc1\x61\x88\x34\x05\x6f\x9a\xf1\x09\x57\x78\xc7\x46\xe4\xcf\x86\x95\xd3\x13\xb2\x23\xfd\x78\x60\x48\x84\x66\x8c\x41\xf3\x58\x1a\xd8\x7b\x8f\xb9\x08\xa2\x2c\xb4\xaa\xf9\x80\x6a\x66\x19\x3a\x28\xba\x21\x48\xa4\x85\xcc\x97\x04\xdd\xbd\xd2\x33\xf1\xcb\x5a\xee\xe4\xce\xfc\x73\x2b\x41\x44\x23\xa6\xa2\x7b\xaf\x70\x07\xed\x1a\x97\x7e\xd0\x39\xa0\xaf\x53\x90\x8c\x9b\xb6\x09\x71\xe0\xf7\x46\x2c\x76\xc4\x93\x84\x51\x7d\x9b\x82\x3b\x42\x97\x94\x0b\xef\x91\xc5\x63\x82\xea\xd4\xe8\x9e\x6e\x55\xcd\x69\x16\xed\x9c\x07\x44\xb0\x0d\x4b\x4a\xa7\xce\xab\xd5\xec\x99\x8d\xbe\x80\x02\x61\x40\x3a\x72\x8b\x40\x2c\x95\xe2\xf3\xc8\x0e\x5c\x38\x72\xe8\x0f\xae\x63\x16\xf8\xc5\x6e\x5c\x48\xb3\x6b\x4b\xbb\x80\xdf\x28\x3b\xfb\x45\xee\xfa\xaf\x40\x39\x42\xd7\x60\xa7\x52\x99\xd0\x25\xb3\x3f\xa9\x94\xa6\x19\x02\x06\xf5\xd6\x2c\xbc\x70\x34\x8a\x77\x5c\x84\x1a\x1b\x59\x90\xc6\x51\x96\xd0\xa8\xf8\x25\x90\x02\x4d\x48\xea\x88\xfc\xf9\x47\xfd\x8b\xee\x9f\x85\x26\xfa\xcb\xfc\x7a\x23\x46\xa3\x51\xfe\x3f\x1a\x73\x1b\x4b\x46\x68\xcc\xd9\x43\xca\x04\x34\x1e\xdf\x7d\xa9\xc6\x5c\x1e\x6e\xde\xdc\x08\x1c\xf8\x24\x53\xa9\x5c\x5f\x31\x54\x8b\x9f\x32\x10\x14\x01\x69\x97\x22\xb6\x34\xad\x39\x22\xe8\xf7\x27\xd0\x81\x4e\xb1\x54\x8d\x83\x24\x1c\xc7\x89\xd4\xe0\x08\x00\x0f\x8d\x65\xb2\xbc\x11\x1a\xc1\xc1\x77\xc0\xb5\x1c\x91\x86\x66\x65\xdd\x2a\x4e\xc8\xef\xeb\x17\x71\x95\xfe\xd1\xfb\xfe\x9c\xab\xb4\x0c\xb9\xda\x2c\xcd\xb6\x70\xb1\xcc\x22\x9a\xd4\x1b\x00\x50\x03\xa9\x77\xf6\x24\xca\x54\x8a\x52\xe5\xc6\x02\x58\xff\x31\x32\x10\xd0\x80\x83\xce\x82\x15\x5b\x17\xc1\x6c\x32\x66\xe2\x78\x3a\xf9\xee\xb3\xeb\xf2\xef\x95\xb3\x5f\x9d\x7b\xd9\x49\x18\xec\x61\x34\x99\xf3\x34\xa1\xc9\x96\x4c\xa6\x44\x65\xf3\x91\x9d\xe6\xe1\xc9\xe4\xf4\xaa\x84\x78\x50\x8f\xb1\xd2\xa8\x0a\xb9\x1b\x90\x61\x41\x00\x43\x5c\x94\x4a\x8c\x57\x31\xc6\xc7\x35\xd9\x70\xea\xb8\x81\xa0\x81\x0f\x3f\x75\xfb\x95\x8b\xfa\x44\xad\x95\x28\x57\xda\xb8\x77\xad\x41\x93\xee\x9c\xc2\xf2\xd5\x2a\x07\xe0\x6b\xb8\x19\x6b\x28\x3a\x08\x23\x36\x30\xe0\x67\xa1\x81\x35\xa2\x03\x40\x6e\x86\x32\x51\x9f\xb6\x4c\x83\x50\x98\x0b\x3a\x06\xbe\x85\x25\xca\x4a\xb6\x81\x14\x1b\x96\xa4\x24\x61\x81\x5c\x0a\xfe\xd7\xbc\x73\x65\xed\xb3\x50\x1b\xa3\xc6\xeb\x71\x91\xb2\x44\x73\x38\x80\x99\x0e\x00\x11\xaf\xe9\x96\x24\x4c\x0f\x43\x32\xe1\x74\x68\xbd\x43\xde\x6b\xce\x96\x8b\x85\x3c\x82\xd4\x28\xea\xe8\xf0\x70\xc9\x53\x7b\x01\x03\xb9\x5e\x67\x82\xa7\xdb\x43\xb0\x1a\xf1\x79\xa6\xb7\xe4\x30\x64\x1b\x16\x1d\x2a\xbe\x1c\xd1\x24\x58\xf1\x94\x05\x69\x96\xb0\x43\x1a\xf3\x11\xcc\x5d\x00\x22\x18\xaf\xc3\x17\x89\xb9\xb1\x6a\xdf\x87\xb6\xea\xd8\x0e\x2e\x57\xdb\x36\xe8\xdb\x65\xe2\x09\x91\x75\x47\xde\x23\x87\xb6\xa5\xbf\x57\x67\xd7\x33\x62\x47\xf7\xc6\x5e\x22\xf0\x8b\x2f\x55\xb1\x0f\x1a\x68\x5c\x2c\x2c\x93\x05\xea\x69\x57\x27\x81\x14\x3e\xe2\x1e\x7e\x5b\x65\xf3\x35\x4f\x95\x93\x53\x43\x8e\xc9\x09\x04\x67\x6a\xca\x95\xc5\x21\x4d\x59\x38\x26\x13\x41\x4e\xe8\x9a\x45\x27\x54\xb1\x67\xdf\x05\xe0\x34\x47\x1a\xb6\x7d\xf7\xa1\x21\x0e\xb6\x49\xc1\x9b\x23\xd2\x86\x6d\xab\x5e\x54\x4d\x26\xcb\xe1\x18\x36\x7a\xa7\x88\x97\xa5\xa4\xd9\x93\xda\x6e\x6c\x85\x92\xb6\xd8\xca\x1a\xbc\x8b\x6b\x65\x74\xac\x03\xd4\x64\x4a\x2c\x4a\x43\x0c\x36\x67\x91\xd4\x67\x4b\x1a\xb5\x11\xf3\x99\x8a\x9a\x99\x8b\x81\xbc\x3f\x19\x79\x5f\x49\x55\xd8\xf3\x9f\x81\xb4\xbb\x5e\xf9\x55\xb2\xee\xbe\xab\x93\xf4\xd2\xcc\xaa\xe4\xdc\x7d\xf9\x9c\xa4\x7c\x20\x73\x03\x99\x73\xb7\x60\x20\x73\xbf\x19\x99\x73\xb1\x43\x3f\x12\x57\xc7\x35\xc5\xb3\x3b\x91\x63\x0f\x31\x84\x8e\x4d\xa6\x7d\xf4\x4a\x7a\xa7\xcd\x07\xe5\x08\x95\x97\x93\xe9\xe6\x73\xb8\x56\x93\xe9\xe6\xed\x2b\x2b\xe1\xda\x63\xe1\x15\x5f\x27\xa8\x2e\x9f\xe8\xbb\xb9\xa0\x01\x03\xab\xd8\xcd\xcd\x5e\xc5\x00\x91\xeb\x81\x40\xa2\x8f\xa4\xbc\xb3\x8a\x38\x6e\xbf\xf4\xea\x5f\xad\x5b\x8d\x13\x39\x33\x99\x96\x1c\x37\xb0\x22\x1c\x98\xc6\x8c\x86\x01\x90\x08\x4d\xc7\xe0\x08\xe9\x25\xca\x37\x37\x29\xa8\x25\x32\x55\xf3\xa8\xac\x84\x87\x42\xd0\x4e\x5e\x54\x4f\x26\x46\x89\xe6\xeb\xb4\x5a\x60\xee\xe6\x46\xf7\x67\x2a\xcb\xe5\xeb\x37\xc8\x4f\x95\x47\xe5\xc2\x1f\x7c\x9a\xcb\x5d\xee\x3e\x8d\x21\x5a\x4c\x93\x95\x92\x87\x1b\x7a\x26\x9e\x15\x47\x01\x95\x0e\xbe\x6e\xb9\x42\x0d\x27\xa6\x27\xa1\x29\x89\xb3\x24\x96\xfa\xa6\xbe\x9c\x2c\x4c\x96\xbf\x15\x2b\xb6\x46\x8f\x63\x7d\x66\xda\x53\x44\x58\x6d\x9f\x64\xb8\xfd\x11\xa3\x89\xc8\xb7\xcd\xec\x60\xd1\xaf\x9e\x40\xa6\x40\x23\xdd\xe8\xad\x7d\x73\x93\xda\xed\x18\x7b\xf5\xc9\x4f\xce\x7c\x91\x62\x86\xfa\x38\x77\x5f\xa9\x33\xcc\xa8\xa6\xcf\xfd\xff\x42\x65\xba\xb1\x74\x00\xd0\xca\x51\xea\xe7\x5c\x64\x0f\xed\xa7\x3e\xb7\xf5\xe6\x07\xfa\x2b\x38\x7a\xeb\x38\xdd\x8e\x49\x31\x8c\x6b\x1e\x46\x5b\x29\x57\xad\x98\x45\x3f\x4b\xb9\x61\x89\x40\x2b\x4b\xee\xb8\x23\x0f\x8c\xdf\xa8\x9e\x76\x22\xb3\x25\x7a\x14\x58\xa5\xa9\xe1\x88\x0b\xf1\xda\xab\x64\xc6\xcd\x85\x73\xa9\x1b\xe6\xa9\x3b\xf4\x54\x2f\x64\x88\x68\x01\xce\xe4\x57\x84\xe9\xf5\xe3\xc5\x0e\xf5\x21\xd9\xe0\x45\xf4\x47\x2d\x17\x41\xa2\x1b\xa8\x00\xb9\x2d\xc0\x77\x40\x5c\xf5\xab\x54\xe8\xff\x7a\x98\x4a\xf0\xa9\xd4\x73\xb1\x1a\x0a\xbf\x51\x3f\x92\x01\x8d\xf2\x60\x48\xa3\xb2\x9c\x2c\x48\x09\x9f\x59\x5c\xe6\xec\x6f\x2f\x50\xc3\x45\xb2\xf0\x2e\x39\x49\xc1\xf2\x01\x9f\xe8\xb5\x1b\x5e\x0b\x20\xe7\x80\xdf\x8b\x64\xec\x31\x2a\xee\x50\x0e\xeb\xd2\x9c\xe1\x08\x8e\xc8\xbd\x46\x73\x65\xe4\xec\xc7\x07\xa8\x3f\x1d\x95\xb6\xdf\x33\x58\x1e\xbf\x52\xa8\x62\xf5\xcd\xf6\x76\x2a\x5c\x64\x04\x59\x15\x13\x70\x51\x38\xf0\xcc\x2a\x9f\xc2\x01\xa1\x80\x35\xea\xec\x1f\x31\x16\x64\x97\x76\xe5\x15\x1e\x8b\x9c\x33\xe8\x82\xaf\x85\x8e\x04\xb3\x31\x99\x51\x14\x79\xa9\x32\x3f\x86\xa1\x8a\xfc\xfa\xcb\xdf\x59\xba\x7a\xfd\xeb\x2f\xff\x78\x65\xbc\xc7\xc1\xb0\xc7\x42\xa2\x67\xfd\x15\xe1\x29\xe1\x4a\xec\xa7\x85\x16\xb8\x9b\x8e\x13\xbc\xca\x71\x22\x35\xef\xe2\x1c\x00\x84\xb0\x83\x13\xca\xa7\xb0\x98\xb3\x97\xe2\x5a\x17\xff\x23\x5c\x29\x44\xd4\x00\xef\x83\x51\x37\x68\x17\xd2\xfc\xd6\x3a\x8e\xd8\x5a\x9f\x34\x44\xf4\x05\xda\x70\x27\xad\xbe\xf2\xef\x1d\x4f\x39\x8d\xa2\x2d\xf9\xbf\x1a\xc2\x71\xc2\x46\xe0\x8f\x92\x5b\x59\xa6\x7a\x8b\x98\xc9\x7c\x99\x23\xfd\x20\x5b\x37\x49\x04\xfa\xb1\xd5\x37\x91\xbd\x37\x55\x3e\xa5\xf0\xaa\xeb\xdb\x50\xb7\xf0\xa7\x3d\xaa\xc9\xf4\xba\x9d\xf1\xf5\x04\x67\xa0\xc5\xd6\x92\x7b\x33\x63\x68\xc0\xb5\x8c\x2c\xbc\xc0\x6e\x9b\x44\x53\x8c\x59\xc5\x9a\xa0\x49\x7d\x89\x1b\xb4\xf4\x7a\x5f\x99\x9b\x6b\xc2\x9f\x6c\x1a\x4c\xaf\x27\xe8\x9c\x15\x45\x68\xc1\x75\x29\x67\x36\xcc\x86\xa3\xc1\x65\x17\xda\xd8\xe9\x5f\x2c\xfc\xa4\xaf\x1b\x32\x05\x7c\x3a\x3e\x6f\x8d\x6d\xfa\x57\x4a\x6f\xf3\x5c\xd9\x4c\x3a\x1c\x2e\x45\x03\xba\x1e\x01\x70\x1b\xde\xb4\xe4\x2b\x7a\xb4\x9b\x66\x6c\xca\x23\x77\x1d\xf7\xe3\x22\x8e\x10\x2f\x1c\x07\x2a\xb7\xa8\x15\x5a\x36\x93\x68\xce\x02\x57\xf8\x16\x6b\x42\x9b\x4b\x20\xa6\x22\xb2\xe9\xa4\xf0\x74\xb4\x02\x01\xba\xf0\x35\x75\x8a\xce\xb9\x71\xcc\x68\x92\x3b\xcf\x81\xef\x37\xc9\xe7\x55\xd8\x97\x6d\xcf\xd6\x09\x92\x55\x0a\x4a\xb7\x8a\x00\x71\x53\xfa\x8a\x41\x51\xf8\x1b\x28\x0a\x79\x4c\xd7\xf3\x48\x06\x77\xcf\xa1\x25\x9c\x4c\x8f\xdf\x7f\xad\x3b\xaf\xaa\x08\xf3\x17\x75\xfd\x60\x31\xa1\xaa\x72\x30\x7f\x33\x68\x06\x07\xcd\xe0\xa0\x19\xfc\x8f\xd3\x0c\xe6\x48\xa1\x97\x5a\x50\x54\xb1\x4b\xf1\xec\xae\x14\xd4\xd2\x86\x86\x9d\x87\xda\xb4\xd1\x1a\x1a\x69\x69\xa4\x29\x9f\x6c\x17\xfd\x6a\x61\xb7\x5e\x90\xd9\xe5\xe9\xe5\x11\xe6\x25\x10\x59\x14\xd1\x39\xd2\xf0\x35\x15\x19\xc8\x1a\x34\x0c\x81\x94\x8f\xc9\xf7\xcc\xa2\x04\x3c\x37\x24\x0f\x5e\x4c\x46\x4b\xe6\x15\x2e\x5e\x68\x14\xb1\xa2\x22\x8c\x18\xf9\xf3\x8f\xff\x4b\x1f\x56\x04\x4e\xb4\x35\x11\xc6\x5e\x69\xca\x4e\xa4\x89\x49\x6b\xe1\x8a\x68\x8a\x47\xd2\xcb\x17\x7d\x04\xe3\x8d\x8b\xb8\xe5\x7e\xb6\x90\xf4\xe2\xbe\x15\xd3\x04\x99\x26\xbe\xdd\x37\xb3\xdf\x2d\x1f\x70\x1f\x36\xb9\x2b\xbe\xe8\xd1\xfc\x67\xc0\x43\x9f\x0f\x68\xdb\x9c\x42\x16\xb1\xd4\xcb\x59\xb7\x87\x3c\x40\x34\xdc\x71\xd7\xd5\x69\xf8\x3a\x13\xe6\xf6\x78\x07\x7e\xf4\xdd\x69\x84\x4c\x83\xfc\x30\x72\x2f\x71\xed\x55\x7e\x6a\xab\x6f\x34\x94\xab\xbf\x95\xe1\x51\x7d\xeb\xac\x77\xe0\x4a\xfb\x70\xa5\x81\x14\x0b\xbe\x7c\x2e\xb6\xf4\x04\x7a\xf7\xf1\xa5\xf8\xc6\xcf\x98\x9a\x39\xf9\x38\xd3\x20\xef\x70\x60\x4d\x07\xd6\xb4\x71\x1b\x06\xd6\xf4\xdf\x95\x35\x45\xbc\xb0\x03\x6f\xea\xa2\x98\xe2\x79\x04\x73\x9a\xa5\xf2\xd8\xd0\x0e\xe0\x77\x7d\x84\xb1\x95\xd6\xae\xe9\x03\x7e\x38\x65\xc9\xb7\x52\xf9\x74\x8d\x95\x84\xeb\xe5\xf6\xe0\xdc\x2e\xa4\x18\xfd\x95\x25\xf2\xc0\xa6\x45\x5b\xd3\x07\x13\xb9\xa9\xd1\x81\x2b\xb3\x57\xa6\x06\x89\x86\xa8\x80\x68\x44\x4d\x1d\x21\x2c\x9e\xd1\x60\x05\x66\x9c\x46\x5d\x72\x03\x8d\xff\x18\xb6\xa3\x99\x09\xa8\xc1\x78\x17\xea\x3e\x90\x70\x3f\x09\x47\xee\xfc\xb9\x48\xf8\xb7\xd0\xbb\x8f\x84\xe3\x1b\x3f\x09\x37\x73\xf2\x91\xf0\x55\xde\xe1\x40\xc2\x07\x12\xde\xb8\x0d\x03\x09\xff\x77\x25\xe1\x88\x17\x76\x20\xe1\x2e\x8a\x29\x9e\xdd\x49\x38\x10\x47\x0f\xa9\xea\xad\x58\xe8\x25\xf5\xfa\xb5\x05\x8f\x94\xee\x11\x19\x4e\x4e\x77\xd2\x25\x34\xd2\xd7\x79\x5d\x4f\x37\xca\x87\x18\x88\x69\x37\x31\x8d\xa5\x8c\x9e\x87\x90\x4e\xa5\xb5\x80\xba\x44\x54\xff\xea\x23\xa0\x30\x8f\x3a\xf1\x8c\x4d\x27\x03\xe1\x1c\x08\x67\xe3\x36\x0c\x84\xf3\xdf\x93\x70\x6a\x5c\xd0\x9b\x68\xea\xc6\x8f\xa5\x90\xd7\xfc\xaf\xbd\x9c\x95\xa0\x31\x51\xfc\xaf\x20\x49\x66\x0a\x3d\xcc\x0a\xbf\x5f\x42\x95\xe2\x4b\xb1\xd6\x27\xa3\x31\x6d\xa1\xc9\x0d\x20\xa3\x31\x39\xb5\x01\xf7\xa9\x24\x9f\xbe\x35\x9d\x19\xf7\xee\x37\x6f\x3e\xb5\x3f\xbc\xdd\x55\x54\x6d\xd0\xc5\xd7\xd6\xa3\x67\x41\x4e\x26\xa7\x57\x3b\xfa\x55\x85\x5c\xd1\x79\xe4\xa5\xed\xa5\x31\xc0\x81\xdb\x36\x06\xf1\x3d\xc9\x0a\x37\x6b\xcd\xe8\xa0\xaf\xb9\x3e\xe8\x08\xba\xc2\x83\xda\x07\x3a\x73\xa9\x2c\xfc\x76\xe4\x2c\x78\xcc\x7d\xa5\x72\xcb\xb8\xe2\x54\x5f\x6d\xb4\x0e\x98\x8b\x6c\xab\xcd\x82\xa7\x68\xee\x92\x7d\x3c\x9d\x6c\xde\x40\x80\xfc\x3d\x4d\x42\xef\x6c\x21\xdf\x50\xca\xe7\x3c\xe2\xe9\x56\x23\x8a\xd4\x60\x1a\xb7\x57\x58\x3a\xa6\x45\x39\x28\xbf\xf2\x02\x00\xfd\xd0\x11\x63\x63\x31\xf0\x68\xeb\x2b\x67\xdd\x61\xc0\x62\xa2\x69\xff\xfc\x7b\x68\xda\x17\x5b\xa8\x61\x49\xd2\x4c\x08\x16\xe9\x35\xd9\xc4\x5d\x59\x83\xd3\x0d\x41\x37\xcb\x90\x45\x7c\xc3\x92\x22\x7b\xac\xfe\x29\xcf\xac\xee\x14\x1d\x6a\xde\x61\xd2\xb5\xcb\x04\x52\xc2\x34\xd6\x5c\xac\xdd\x81\xc9\x74\x32\x85\x0f\x4c\x81\x62\xab\x31\xb2\x79\x86\xf6\x30\xb5\x81\xad\x94\x00\x25\x56\x46\x58\x13\xe4\x66\x6f\x4c\xc8\x71\xd3\x7a\xd7\xa6\x08\xb2\xd3\x83\x49\x95\xa0\x10\x77\xc0\xc8\x05\x0c\xf5\xde\x26\x32\xc3\x33\xd2\x58\xe6\xca\x81\x57\x39\x30\xa4\x06\x3b\x42\x8e\x9d\x39\x94\xe7\xdd\xd4\x3b\x4c\xd0\x1e\xf4\xea\x04\xef\x6d\x96\x08\x77\x0e\xe8\x9e\xa9\x6f\x47\x53\x9f\xb4\xc8\xef\x6c\x6a\xa9\x58\x8e\xc4\xa6\xa1\xd4\x9d\x0b\xbb\x03\x85\x47\x7b\x6b\x5e\xfc\x97\xa0\x19\x2c\x92\xf0\x85\xaf\xf4\x2c\x0a\x58\xb7\x1e\x9d\x76\x0f\x2e\xbf\x38\xa3\x4f\xfc\xfb\x1e\x4e\xad\x27\x96\x56\xa1\x61\x26\x4b\x0a\x3a\xe5\xd9\xf0\xf6\xa3\x3e\xa9\xac\xf1\xc0\x26\xb0\xc4\x92\x9d\x06\x50\x98\x06\xe7\x66\xef\x82\x6d\x20\x63\x20\x16\x91\x2c\x0f\xe6\xeb\x5d\xf7\x60\x70\xb3\x2f\x6b\x7a\xab\x77\x2f\x4d\x47\x32\x4b\x97\x92\x8b\xe5\xff\x14\x94\xda\x8a\x75\x04\x4d\x2f\x7b\xc2\x03\xb3\xf9\x38\x00\x2c\xb0\xaa\xc5\x8b\x90\x34\xc7\xc9\x0b\x4d\x5a\xe3\x23\x0c\x77\xa4\x99\x50\x17\x01\xd4\xb0\xab\xcc\x52\xc5\x43\x96\x4b\x1b\xd0\x48\xdf\x78\x5f\xa7\x90\xb0\x5e\xfd\x25\x63\x09\x0d\xbd\x29\x50\xdb\xc1\x21\xc3\xde\xe9\x42\x8f\xf5\x56\x29\xcb\xc1\x99\xfc\x13\xfa\xb8\x18\xf7\xfd\xdc\x03\x1f\x50\xcd\x7c\x8b\xe9\x26\x7c\x73\xce\x33\xc6\xee\x76\x98\x37\x0f\x11\x15\x1f\x79\xb5\xbf\xfb\xe1\xfc\xf8\xe2\x37\xbb\xdb\x30\x9a\x97\xb7\xcc\x27\xf0\xe8\xcb\xdd\xa8\x4a\xa9\xbb\x1e\x0c\x1a\x93\xba\xc6\xe4\x2e\x9b\xb3\xc2\x11\x4a\x95\x4e\xca\x73\xe8\x51\xfe\x98\xcd\xd9\x49\x31\xde\x89\x3b\x5e\x55\xbb\xd2\xd6\xb6\xae\x73\x69\x5d\x49\x55\x13\xd3\xd6\x78\xd0\xcf\x0c\xfa\x99\x41\x3f\xf3\x1f\xa7\x9f\x69\xc3\x26\x75\xad\x4d\x29\x21\x5b\x15\xc0\x7f\xcc\xa3\x72\x1c\x27\xd2\x0a\x99\xed\xaf\xd2\x71\xba\xe8\x43\xd1\xed\x68\x28\xe3\x62\x8a\x3c\x3b\xb2\x49\xee\xb8\xe1\x61\x46\x23\x67\x9a\x4d\x6c\x98\xe9\x6b\x67\x79\x3c\x8f\x9e\xed\x23\xb5\xe6\xf9\xd5\x9b\xa6\x6c\xa3\x9a\xb1\x51\x31\xaf\xc6\x44\xf6\x67\x46\xbc\x9f\x6f\x2d\xdf\x71\x60\x8b\x6c\x09\x8e\x8c\x24\xf2\x12\x0d\x3d\xf4\xa8\x83\xa1\xd1\x94\x08\x78\xc4\x92\x29\x4b\xb8\x6c\xf6\x9b\xad\x22\x87\xab\xca\x87\xd6\x0b\x24\xc6\xbf\x52\xa9\xff\xb5\x90\xc9\x3a\x1f\x82\x37\x06\x37\xda\x07\xd2\xba\x3a\x31\x86\xfa\x56\x00\xcb\x30\x26\x7f\x36\x3a\xb9\x23\xf2\xc5\xfa\x47\x8f\x14\x60\x9f\x6e\x5f\xdb\x2e\x4f\xdb\x86\x08\xc9\x1a\x04\x2e\x34\xdb\xdb\xb6\xd3\xfa\xfd\xbf\xc6\x26\xaf\x9c\xa0\xd5\xbe\x1b\xec\x06\xba\xda\x65\x40\xe6\xef\xc0\xaa\x05\x80\x42\x42\xe0\xb5\x53\x13\xa7\x65\x77\x4f\xad\xc2\xf1\xb1\x2b\xed\xb9\x5a\x62\x7c\xa4\x4e\x12\x46\x1b\x92\x58\x34\xac\x79\xff\x38\xff\xac\xd8\xd9\x2c\x95\x6b\x9a\xf2\xa0\x48\xd4\x2a\x3b\xeb\x5e\x94\xa1\x02\x52\x87\x16\x14\xb6\x46\x9d\x52\x1c\x66\x0b\x93\xb6\x23\x4d\x7a\x97\xb2\xe8\x53\xc8\xe2\x7f\xde\x85\x27\x70\x6a\x21\x0d\x76\xdb\xa1\x29\xaf\xf6\x3a\xff\xa4\x38\xfc\x79\x16\x61\x49\x02\x19\x6f\x3b\xe8\x8e\x7d\x00\x0f\x14\x59\x1c\x9d\xf0\x69\xe5\xae\xd2\xa0\x81\xe7\xc5\x6d\x18\x5b\xd9\x07\xbb\x99\x44\x2c\x2d\xf8\xcd\x44\x4f\xff\x6b\x60\xb8\xff\x79\xa7\xba\x6b\xab\xcb\xd9\xc0\xfb\x6c\x79\x39\x13\x78\xdb\xd6\x77\x14\x14\xb2\x65\x84\x9c\xa3\x31\x9c\x81\x7f\xc6\x19\xb0\x59\x31\x3a\x68\x7f\x59\x0d\x5a\xf9\xa6\xed\x1c\x74\x15\xc2\x67\x15\xfe\x61\x38\x09\xff\x9c\x93\xd0\xf6\x96\xa5\x41\xf8\xdd\x67\x27\x72\x1d\x63\x8d\xaa\x46\x88\x95\x21\x75\xe6\xfd\xac\x02\xaf\x39\x4b\xef\x19\x13\x30\xc6\xe6\xb3\x46\xc3\x01\x74\x90\x4b\xf1\x60\x3e\xd0\xa0\x7e\xed\x9e\x05\x07\x56\x6f\x5e\x7b\x81\xd5\x06\xa4\x15\xa3\x51\xba\x3a\x59\x31\xbf\xb3\x7c\x79\x69\xdf\x3a\x8d\xf3\xd3\x2f\x13\x3b\x15\x95\x57\xae\xd0\x6c\x1d\xf6\xec\x5d\x1a\x76\xd0\x8b\xc2\xb7\xcd\x3d\x92\xcb\x6b\xcd\x3c\xf2\x74\x7b\x1d\x24\x8c\x55\x55\x67\xf5\x05\x9c\x57\xbf\xb0\xdb\x12\xc9\x25\x51\xe6\x0d\xa1\x73\xb9\x61\x26\x75\x4a\x24\x97\x5e\x1e\x06\xd2\xf9\x30\x91\x5b\x06\x55\x1a\xca\x2c\x75\x37\x63\x22\x16\x72\xb7\x15\x35\x2b\xb2\x9b\x04\xf5\x46\x4d\x48\xa1\x9e\x6e\x00\x45\xab\x2e\x04\xbe\x76\x74\x52\x66\x85\xfa\x57\x8f\x0a\x11\xd4\x50\x25\xc5\x07\x99\xa4\xfb\x90\x0c\x6e\x91\x45\x68\x13\x09\xd7\xa0\x56\x81\xd2\x5c\x10\xa1\x0b\x65\x30\xb0\x64\x2a\x0d\xd2\x8c\xd6\xcc\x23\xd8\x23\x86\x44\xdc\xd3\x3c\x27\x87\x4d\x69\x63\x6c\xde\x6b\x19\x62\x4d\x89\xb9\xe6\xc8\x36\x3c\x91\xe0\xcb\x42\x36\x34\xe1\x70\x24\x6b\xf3\x45\x83\xf0\x5d\x36\x67\x23\x57\x73\x13\x27\x32\x60\xaa\x2a\xa6\xb5\x65\x47\x2c\x46\xfb\x8e\x7a\xf5\x36\x3b\xba\xac\x36\x21\xb1\xd2\xb6\x9d\x95\x47\xad\x26\x01\xf2\x00\xa0\xc1\xce\xed\x05\x02\x00\x9b\x8b\x45\x94\x61\x4a\x20\xac\x62\x0e\xf5\x12\xf1\x80\x34\xda\x65\xfc\x18\x34\x71\xbf\xed\xba\x9c\xa5\x81\x2a\x0b\x83\xca\xb8\x7c\xc3\x4a\xa7\x82\x2b\x3b\x80\x6f\x81\xbc\x69\xa3\x65\x78\x60\xd2\xaf\xac\x59\xb2\xb4\x9a\xda\xe3\xe9\xa4\x50\xd4\x6a\xc2\xe4\xbd\xf4\xa2\xe1\x94\x79\xe0\xd2\x41\x8c\xdb\x55\x7e\x35\xe0\x3c\xa5\xda\x8f\x74\xa9\xfe\x7a\x4c\x9f\xf4\x50\x01\xd6\x16\xb1\x9b\x1a\xb0\x8d\x73\x78\x4a\xae\xa9\xe7\x6a\xc9\x6e\xdc\x53\x6d\xf1\xfd\x39\xa8\x2e\x15\x4a\x99\xc1\xea\xc5\x45\x75\x75\xd9\xce\x64\x91\x27\x55\xb3\xb4\x68\x11\xc9\x73\x69\x12\xc9\x13\xc8\xda\xa4\xff\x39\xe9\xa9\x55\xac\x2d\x77\x07\xcd\x62\xd7\x8e\x3a\xa5\xce\x9e\x44\xbb\xb8\xc3\xea\xc9\x2e\x5a\xc6\x1a\x0c\xfa\x69\x1a\xbb\x3b\x05\xd6\xe4\xc9\xb5\x8d\x64\xa7\x5a\xcc\x7d\xae\x03\x19\xf0\x4a\x1f\x60\xf6\x52\x54\xd6\x81\xf3\x74\xca\x4a\xf2\xa4\x0a\xcb\xfe\x4b\xef\x73\x86\x5a\x95\x97\x35\xa0\x3c\xa5\x02\x93\xfc\xb6\x88\x75\xb8\x28\x4f\x70\x5a\x7a\xe9\x3f\xc9\xb3\xe9\x40\xc9\x33\xe9\x41\xc9\x70\x8c\x7e\xd3\x63\xd4\x53\x85\x4a\x9e\x53\x8d\x4a\x9e\x4b\x95\x4a\x86\xc3\xf4\x1b\x1e\xa6\xae\x16\xbd\x35\xb1\xe4\xb9\xb4\xb1\xe4\x69\x35\xb2\x7d\x80\xd7\xa1\x99\xad\x2f\xf5\x89\xb4\xb3\x64\x47\x0d\x6d\x9f\xb5\xf4\xd1\xd4\xd6\x17\xb4\xb3\xb6\xb6\x69\x39\x91\x5c\xaa\x8f\xd0\xd8\x76\xaf\xb0\x25\xe5\x72\x8b\xf6\x96\xb4\x1e\xfd\xc1\x57\xb9\xee\xab\x6c\xa2\x0a\x80\x3f\xe5\xcf\x92\x2e\xc5\x54\x89\x43\x1e\x19\x5f\x14\xee\xc8\xa5\x97\x75\xff\xe3\xca\xec\xcc\x66\xe4\x1e\xc7\xee\x6b\xe8\xda\xb8\x18\xe7\x6a\x31\x20\x73\x83\x97\xf1\xe0\x65\x3c\x78\x19\xff\x7b\x79\x19\xb7\x99\x89\xa0\xb2\x53\x9f\xd0\x66\xc8\x32\xaf\x8f\x3f\xd6\x66\x62\xa5\x9a\xd7\x98\xa2\x5e\xff\x91\x5b\x46\xbc\x06\x0a\xfb\x35\xc6\x65\x55\xeb\x4e\x41\x51\x2b\x12\xc8\x24\x61\x2a\xd6\x68\x5d\x2c\x89\xe1\x68\x6c\x75\xa0\x9d\xb2\xcb\x57\x0a\x16\x1d\x93\x2b\x3d\x41\x26\x02\x1a\xab\x0c\xee\x6d\x31\x23\xdf\x54\x1a\xd4\x78\x38\xa5\x31\x21\x5f\xcb\x74\x55\x49\x90\x5f\x2b\x88\x05\xb5\xe4\x2b\x85\x00\x1a\x14\x39\x79\xb1\x0b\x93\x90\x7f\x44\x14\x8b\x69\xa2\x0f\x29\x91\x59\x4a\xa8\x9e\xae\xad\x35\x80\x4d\x34\xab\x04\xe5\xc8\x79\x73\x0d\x74\x02\x73\x30\xfb\xe5\x02\x9e\x8b\x25\x96\xfe\xc1\xfa\x02\x50\x98\x64\xc3\xaa\x90\x58\xd1\xa6\x5e\x89\x60\x4b\x98\x9c\x41\xbc\x07\x24\x4e\xd8\x82\x3f\xb0\x10\xf9\xfb\x5f\x7f\xf9\xc7\x85\x4c\x7f\xfd\xe5\x1f\x63\x72\x1c\x45\x26\xd3\x9c\xdb\xb7\xbf\x5f\x13\x77\x4b\xf1\x38\xe5\xc5\x6e\x68\xca\x15\x98\x52\x31\x88\xcd\x2c\x24\x95\xd8\xe7\x98\x1c\x03\x29\xab\xe7\xf8\x31\xb0\x85\xa3\x49\x85\x3d\x9e\xb6\xb8\x39\x2e\x59\x03\x08\x16\xa3\xff\x30\xab\xc1\x0a\x56\x8d\x05\xba\x10\xaa\x00\x7b\xff\x14\xf5\x00\x30\x6a\x3e\x45\x7f\x94\x70\xa7\x18\x87\xc7\xad\x51\x1c\xea\x16\x72\x9c\x98\xc5\xc6\x5e\x4a\x57\xe5\xd4\x09\x47\x2e\x19\x3a\x2b\x47\x03\xcc\x9c\x70\x2d\x5b\xa4\xab\x52\xcc\x24\xd1\x98\x30\xf5\xdd\xe2\x9e\xc0\x20\xae\x61\xaf\x25\x20\xb2\x61\x65\x37\x7b\x17\xd5\x8f\x81\x82\x09\x22\x63\xb4\x85\x9b\xd0\xd6\xa6\x6a\x1a\xc5\x53\x2a\x13\x6e\xba\x62\x0f\x9a\x80\x29\xc0\x0e\x50\xa7\xa8\x54\xff\xca\x46\x67\x77\x29\x72\x81\xc6\xbd\xd4\x47\x88\x25\x6b\xfc\x80\xd0\xf4\x95\x63\x28\xc8\x43\xd3\x6d\x7d\x8e\xe6\x24\x01\x15\x90\xa9\x3c\xb3\x00\xec\xa5\x26\x7f\x10\x3e\x0b\x07\xb9\x06\x9b\xf6\x4e\xf5\x05\xc8\xa1\xa8\xc5\x17\x64\xc6\x42\xeb\xc4\xa0\xe8\x1a\xaf\x80\x89\xc4\x84\xe0\xe4\x3e\x2a\x13\xc7\x3c\x64\xce\x58\x92\xcf\x97\xcc\xb7\x38\xd9\xbc\x66\x7a\xbe\xa2\x7e\xa0\x30\xf5\xd9\xf4\xbc\x10\xfb\xbd\x93\x49\x99\x73\xd6\xdc\x9a\x29\x0d\xb6\x23\x44\xf8\x3a\x8e\x78\x51\x98\x8e\x11\xf7\x90\x45\x7c\xcd\x4d\xf8\x29\xce\x54\x93\x37\x0d\x93\xf6\x3e\xf3\x02\x59\x05\x4c\xb8\x03\xdf\x22\x2c\x85\xe2\x1d\x2d\x2d\xa5\xc3\x62\xd6\xb0\xfc\x7d\x2c\xc6\xff\xf2\xd5\x7e\x1d\x00\x76\x8d\x1d\x9a\x97\x9d\x00\x50\xab\x98\xdd\xde\xb9\x4c\x4a\x96\xc8\x62\x17\x4b\xdd\x54\xf7\xb2\xbd\xcf\xc6\x75\x96\x57\x81\x5e\x3e\xc0\xfb\xef\x7a\x90\x29\x24\x8c\x80\x0a\x84\xc5\x6d\x6c\xa0\x09\x39\x18\x7b\x29\xb0\x1a\xaa\x7d\x17\x4f\xd9\x66\xcd\x52\xd5\x8c\xf3\x34\x9f\x0e\xf9\x51\x55\x53\x31\xbe\xe2\xb1\xd4\x0d\xb6\xb0\xa8\x5d\xe4\x47\x79\x39\x56\xeb\x38\x38\x65\x94\x57\x4a\xc8\x01\x65\x49\xf3\x8a\xa8\x4b\xbe\x61\xc2\xe4\xbf\x68\x0f\x5f\x69\x66\x10\x9d\x71\x7b\xda\xf9\x5a\xf2\xf5\x17\x8f\x90\xe9\xc5\x6e\x7b\x82\x1f\x58\xfd\x51\x85\xaf\xb2\x2b\xd6\x4d\x3a\x28\x87\xde\xc7\x7f\x39\x58\x4c\x1b\x8a\xc6\x15\x4f\x15\x18\x58\x41\xae\x1d\x1a\xd0\xa6\x0f\x38\xc8\x35\xd7\x3c\xb5\xcc\xeb\x06\xda\x6a\x61\x8a\xac\xe8\x86\xd9\x52\x74\x7c\x01\xa7\x2b\xee\xee\x16\x34\x75\x36\xcb\x00\xe1\xa9\x55\xaf\xe1\x74\xa7\xa6\x77\xc3\x2c\x19\x5c\xad\x25\x8f\x0e\xa8\x4b\xa4\x61\x29\xe6\x27\x98\x9d\x4c\x6d\x86\x9c\x0f\xa7\xd3\xc6\xf4\x2b\xf8\xf4\xd9\xd5\xf6\xca\x71\xf8\xf4\xac\x1f\x57\x6e\xdc\xc7\xd3\xa0\x4f\x2d\x39\x7c\x1e\x53\x51\xce\x3e\x7d\x0f\xe4\xee\x7c\xe3\x45\xf1\x51\xc7\xb1\xec\xc7\x28\x98\x93\x49\xae\x99\x43\x5c\x10\x0b\x6b\xd9\x41\x65\xf3\x34\x62\x9a\x0d\x46\x49\xca\x8c\xd5\xde\x67\xce\x10\xb5\x1e\x95\x7e\x7b\xd6\x54\xe7\xb1\x01\x3c\x37\x7b\xf9\x8d\xed\x22\x2b\x5d\x7c\x03\xeb\x43\x56\x56\x20\x0a\x1b\x85\xd2\x4b\x47\xbe\x78\xd5\x71\x0c\x65\x92\x62\x0f\xc8\x4d\xba\x15\x5d\x15\x23\x09\x15\x4b\xa6\x0e\xad\x3e\x0e\x92\x57\xb5\xe6\x4c\xc2\x87\xbb\x72\xb9\xb9\x3a\x60\xd9\x40\x28\x2b\x0b\x01\xa3\xdc\x32\xc3\x74\xf0\x38\x0b\xdc\x03\x64\x6e\xfa\x62\xb0\x4e\x0c\x80\x4d\x77\xc2\x60\x1d\x6b\x2f\xd0\x5b\x05\x83\xdd\x20\x0e\xbb\x31\x58\xec\x06\xf1\xd8\x8d\xc6\x64\xad\x3c\xcf\x80\xcb\xe0\xe9\x85\xcb\xd4\x23\x04\xe0\x6e\xb9\xb7\x55\x85\x57\x3c\x5e\xb9\x97\xbc\x54\x8c\x59\xdd\x17\xa0\x32\xba\x8e\x23\x46\xd4\x56\xa4\xf4\xc1\x97\x38\xc7\x7d\x6e\x6e\x5a\xc5\x66\xc3\x43\x36\x89\xc5\xed\x7d\xe7\x55\xf5\x4b\x35\xe8\x6b\xd2\xb0\x2d\x34\x0c\x63\xeb\xd3\xd3\x01\x04\xe3\x44\x6f\xad\x01\x1d\x54\x01\xc1\xe3\x50\x93\x0e\x59\x95\x45\xf2\xfe\xd5\x41\x79\xca\x0e\xb0\x11\xaa\xa6\xd2\x97\xb5\x9f\x76\xc0\x01\xf5\x5c\xa0\xbf\x9c\xad\x18\x49\xef\x25\x9c\x35\xc8\x24\x61\xdf\x99\x6a\xd0\xf3\x34\xda\x16\xb9\xe6\x3a\xf6\xee\x52\xd8\xd5\x5b\x37\x9b\x42\xaf\xca\x1c\xe9\x15\x57\x23\xc1\xc5\xcd\xb4\xef\xa6\x09\xf7\x2b\x19\x99\x4d\x3a\x82\x2d\xba\xb9\x29\x08\xf2\x1f\x00\xbb\x7c\xb2\xa2\xea\xe5\x7a\x7b\x0b\xfe\x6f\xaf\x00\xef\x18\x24\xdf\x75\x9d\x4d\xea\x44\xab\x68\xc0\x9a\xf0\x30\x3f\xf4\x4e\x28\xfc\xf3\x43\x3d\x6e\xcf\xf3\x06\xfd\x85\x12\x72\x52\x01\x96\x46\x63\xd1\x9c\x45\xe4\xd7\x5f\xfe\x6e\x27\x0a\xda\x51\xb3\xa0\xde\xc7\x02\x17\xdc\xb8\xde\xfa\x92\xf4\x1c\x9a\xb2\xa7\x16\x4f\xfb\x6a\xf3\x05\xb5\x2f\xa6\x5b\xe1\x30\xcb\x23\x26\x90\x95\x32\x9a\x82\x08\xd0\xaa\xc9\xe8\x08\x76\xe0\x7c\x1d\xdd\x53\x17\x52\x8c\x8c\x2b\x89\x31\x72\x91\xfb\x15\x4b\x98\xd1\x89\x2c\x64\xb2\x66\x55\x1d\x84\xe9\xbd\x87\x2e\xae\x0e\x18\x27\x6f\xc2\x13\x08\xf0\x65\x8f\xb7\x1d\xf8\xae\xb2\xd3\xdb\x6f\xc7\x7f\x55\x50\x72\x7b\x9f\x1e\x4d\x26\x25\xb1\x0c\x6d\x74\x0c\xda\x35\x72\xf4\xdc\xc3\x3d\x2f\x77\xd0\x6b\x3d\x6d\xbd\xdd\xc1\x5d\x2b\x7b\xf3\x53\x0f\x15\xf9\x78\x70\x93\xc7\x80\xbc\xbb\xcb\x26\x05\xb2\x07\xec\xbd\xa0\x4d\x1c\x97\xc8\xfb\x95\x54\xb6\xbe\x7c\xae\x89\x84\x7a\xd2\x5d\x7d\xf4\x61\xec\xc8\x4e\xfe\xeb\x3d\xb9\x24\xd2\x97\x53\x22\xf5\xfb\xd5\xc9\x2b\xfd\xe7\xee\x74\x49\x4e\x2a\x34\x6e\x88\xf5\xf3\xcc\x90\x64\xd2\x99\x53\x85\x38\xd6\x85\xba\xd1\xa0\x90\x43\x4c\xba\x46\xb6\xd5\xbf\x77\x77\x7a\x7c\x71\xba\xef\x4d\xa4\x59\x7e\x76\xd3\x66\xb5\xfb\x94\x76\xb7\x59\xa5\xa9\x2f\x25\x36\x3e\xe5\x60\x9a\xd9\x6c\x5a\x18\x91\x1a\x2d\x6b\xfa\x78\xe8\xa6\xcd\x53\xcf\x9d\xfd\x3e\xca\xa8\xb6\x66\xe9\x4a\x86\x3b\xd0\x9e\xf7\xf8\xc1\xd3\xd2\x1c\x5c\x32\x5c\x0e\xb3\x6e\xc7\x7b\x43\xf7\x89\xf9\x64\x59\x67\x26\x1f\x8b\x95\x58\x88\xbd\xd8\xd9\xbe\x64\xe3\xe5\x98\x7c\x73\x36\x3b\x20\xd3\x0f\xb3\x03\xc2\xd2\x60\xfc\x8a\xbc\xcf\xa2\x94\xc7\x5d\x1a\x3a\x03\x22\x38\xb5\x97\x57\xfb\x9a\x89\x58\x42\xa8\xc6\xbf\x96\xc6\x35\xa6\xe9\x6a\x87\x7d\xdc\x9f\xea\xf6\xcf\xb1\x8d\x5d\x3b\xd8\x6d\x61\x70\x77\x10\xa6\x39\xce\xb7\x0a\x97\x69\xf7\xa2\xef\x66\x10\xc2\xc6\xcb\x23\x32\x22\xec\x81\x06\xe9\x11\x39\x5c\x48\x49\x46\xc6\x6f\xe1\x88\x1c\xce\x69\x42\x2e\x2e\x67\x67\x47\xe8\x13\xc1\x44\x9a\x6c\xc9\xba\x8b\xb8\x5c\x5e\x9c\xff\xc9\xe0\xb1\x2d\x61\x1c\x44\x07\x4a\x6e\xf6\x60\x10\xd4\x7f\xe8\x3f\x71\x14\xcb\xa7\x8f\x35\x23\xdc\xde\xef\x86\x46\x3c\xa4\xb9\x98\x0a\x5e\xaf\x98\x5e\x39\xf5\xe5\x53\x2e\x9e\x3e\x67\xae\xe2\x9c\x3b\x9b\x4d\x35\x84\x73\x74\x0c\xc7\x01\x00\xaf\x01\xed\x38\x31\x74\xa0\xdb\x49\x0a\x2e\x5b\x73\x66\x01\x61\x24\x60\xcd\x82\x1f\x59\xb0\xdf\x64\xaf\x5f\x7f\x16\xe8\x8e\xe1\x5f\xec\xc8\x44\xcd\xf7\x12\xd8\xf0\xa8\xc1\xac\xa0\x3b\x8d\x30\x92\x7c\x0b\x8b\xae\x47\x06\xde\x1f\x35\x02\xf6\xd1\xe1\x67\xbe\x43\xe0\x21\x02\xe0\x69\x99\x20\xb3\xf4\xa7\xec\xb4\x6f\x64\x60\x0f\x84\xd4\xdd\x15\x0f\xd6\x3d\x69\xe6\xe4\xe4\xfd\xb4\xaf\xed\x12\x90\x51\xf3\xdc\x5d\x2c\xe5\xa4\xc4\xd6\xb3\x35\x91\x1e\x98\xd8\x1b\x86\x34\xfc\x99\x29\x68\xd0\x22\xc8\xa1\xd3\x28\xd0\xaf\x79\x49\xc5\xba\x28\x6b\x56\xf3\xd4\xea\xb9\xbd\x47\x8f\xd3\x26\x4b\x82\x25\x48\x37\xda\xbc\x6d\x31\x06\xf5\x3a\x89\x41\x7b\x84\x73\xad\x84\xa8\xe6\x4c\xa4\x70\xa1\x04\x40\x09\xb0\xc0\xc0\x64\xe1\xa4\xdc\xee\x26\x11\x33\x0d\x60\x74\x14\x05\xbf\x29\x28\xde\xe0\xc2\xca\xe8\xdd\x41\xa9\x9e\xb2\x60\x25\x78\x50\xcf\xbe\x51\x7e\x40\xa8\x47\xc5\x15\x5f\xc7\x52\xa1\x97\x08\xa4\x57\x60\x89\x60\xd1\xbe\x22\x3c\x4e\x31\xc8\x60\xc1\x13\x76\x4f\xa3\xa8\x63\xaa\x88\x2d\x8c\x4a\x21\x53\x68\xf2\x67\x62\x21\xd1\x85\xd5\xf8\x8f\x74\x5f\x8d\x4e\xed\x33\x34\xfb\xf8\xcd\xd0\xdd\x8c\x09\x78\x41\xb0\x07\x50\xb9\x76\x29\x6f\x71\x0f\xe4\x82\x7c\x89\x8e\x87\xb0\x42\xe8\xeb\x2c\x58\x49\x72\x85\x44\xdb\xe4\x47\x8f\xb9\x58\xaa\x76\xed\x6d\xaf\xf5\xf6\x40\x06\xb1\xdf\x03\xbc\x01\x20\x93\xa9\xf5\x04\xff\x68\x97\x86\x92\x68\x86\xfc\xb8\x0b\xe5\xa9\xd5\xe9\x36\x42\xa1\x07\x04\x1a\x7c\x79\x1b\x16\xf7\xde\xb4\x76\x7c\xcd\xf2\x9c\x2d\xe0\xa2\x9c\xac\x8b\x84\xf9\x3e\xbf\xea\xf2\xe2\x3e\x0a\x69\x80\xdb\x34\xa6\x2a\x6f\xcf\xdf\xd9\x37\xab\x4c\xf1\xf4\x25\x4b\xe5\x22\x07\xc5\x7c\x8c\x0f\x3a\xea\x9b\xef\xd8\xd6\x1c\xed\x98\x72\x93\x33\xa6\x7d\x78\x2d\xd6\x12\xf6\x90\x26\xb4\x04\x53\x3a\x97\x59\xda\x83\x90\x3c\x95\xe4\x28\x64\xaa\x6f\x5f\xbf\x93\x71\x81\x8d\x3b\x6c\xd1\xd0\xa4\xdd\x27\x64\x20\x18\x03\xc1\xf8\xf7\x26\x18\x42\xa6\x96\xad\x6a\x04\x4b\xbb\xbd\xb8\xa7\xa5\xb8\x9f\x8d\xb8\xe6\xca\x64\x59\xbe\x0e\x6f\x26\xd3\xac\x19\x60\x1d\xf7\xb8\x87\x51\xfa\x71\xe6\xe8\xf8\x5f\x15\xb8\x37\x7b\x2e\x6c\x9f\x90\xf6\xd7\xd4\xb2\x10\x09\xe0\x72\x02\x16\x26\x63\x38\xf5\x3c\x69\x73\xcd\x31\x7e\x65\x66\x9f\xcf\xc0\xff\xfd\x0a\x82\x37\x6c\x28\x02\xfa\xce\xbc\x9c\xb3\x80\x66\xca\x78\x73\x74\x38\x06\xe7\x53\x0c\x58\x02\x7d\xe4\x1e\x21\xaf\xd0\x9c\xf8\xde\xc4\x24\x94\xfc\x5b\xba\x48\x2c\x3a\xbe\x1c\xb9\xbe\x1b\x07\xae\xe7\x06\xfe\x01\x92\x4a\xe9\xaf\xcd\xdb\xe2\xef\xeb\x93\x19\xbe\x6d\x1e\xc6\xf4\x78\xce\x53\x66\xdd\x43\xa8\xb0\x07\xc4\x9a\x14\xc0\x49\x86\xbc\x19\x7d\xfa\xc5\x17\x2d\x36\xb6\xe7\x3b\xf6\x68\x46\xec\x47\x8d\xaf\xd1\x11\xa9\x5f\xa8\x44\x4b\x29\x3a\x3b\xea\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x57\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\xb4\x92\x01\x97\x0d\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x51\x7f\x86\x28\x89\x21\x4a\x22\x7f\x86\x28\x89\x21\x4a\xe2\xf9\xa3\x24\x5a\xb2\xd1\x6a\x19\x03\xf3\x9d\xf9\xde\xf5\xa9\x95\xe7\x3d\xe5\x26\x3b\xde\x23\xd2\x1c\x9a\x2f\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\xb0\x19\x35\x0e\x79\x0e\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xe2\x19\x2c\xf8\xce\x33\x58\xf0\x07\x0b\xbe\x79\x06\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xc0\x65\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x5f\x7f\x06\x0b\x7e\xf5\x19\x2c\xf8\x83\x05\xbf\xfa\x0c\x16\xfc\xc1\x82\x9f\x3f\x83\x05\x7f\xb0\xe0\x0f\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x90\x0c\x79\x0e\x7b\x8e\x30\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\xb4\x55\x43\xda\xaa\x21\xcf\xe1\x90\xe7\x70\xc8\x73\xd8\x3c\xff\x21\xcf\xe1\x40\x30\x06\x82\x31\xe4\x39\x1c\xf2\x1c\x96\x9e\x21\xcf\xe1\x90\xe7\xb0\xf2\x0c\x79\x0e\x9b\x05\xc8\x21\xcf\xe1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\xb2\xe2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xa6\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xfa\x33\x44\x49\x0c\x51\x12\xf9\x33\x44\x49\x0c\x51\x12\xff\x89\x79\x0e\x21\x79\x61\x57\x96\xc3\x4b\xdd\xa8\xe5\x0c\x17\x9e\xd1\xa9\xcd\x87\xd8\xc0\xf8\xa2\x2f\x08\x66\x98\x03\x16\x5f\x77\x0a\x3a\xf1\x70\x8c\x5c\x7f\xae\xb3\x58\xf1\xa5\x66\xa1\x6e\xf6\xa0\xbf\x9b\x3d\xd8\x6c\xd3\xd6\xd7\x35\x5d\x68\xf2\x9f\x02\x7a\x81\x0e\x22\x79\xcf\x12\x9c\x0d\xfa\xd6\x38\x93\x53\x44\xae\x79\x9a\xb2\xf0\x40\x4b\xaf\xe8\x96\xed\xeb\x34\x90\x42\x71\x4c\xef\x88\xd2\xe9\xcd\x1e\x17\x0b\x2e\x78\xca\x6e\xf6\xc8\x88\x80\x47\x87\xb3\x1c\x2b\x0e\x98\x79\x92\x88\xaa\x74\x4c\xf2\x95\x79\x41\xa2\xe7\xca\x43\x26\x52\x1e\xd0\xc8\x4c\xb0\xda\x0f\x17\x84\x46\xf1\x8a\x8a\x6c\xcd\x12\xa7\x1d\x64\x56\xf4\xf5\x6a\x4c\x68\x46\x90\x42\xb3\xa5\x57\x09\x88\x67\x43\x64\xeb\x79\x5d\xc6\x6d\x41\x7a\x15\xa1\x70\xe6\x0a\x18\x78\x50\x1c\x31\x23\x53\x86\x63\xe2\xc1\x1d\xfe\x47\x66\xde\xf3\xaf\xa7\x5c\x61\x18\x1d\xe0\x1a\x1f\x62\x07\x2c\xa9\x34\xfa\x8d\x16\xb6\xb7\x98\x87\x22\x0b\x19\x45\xf2\x1e\x1c\x02\x8d\xec\x93\x4b\x03\x88\x96\xfe\x80\xac\x31\xde\xf6\xdb\x88\xa7\x2c\xa1\x91\xfe\xc5\xd7\xf3\xcd\x0d\x19\xa1\x0f\xbd\x3e\x28\xeb\x98\x26\x5c\x49\x71\x40\x20\x90\xc6\xf2\xb4\xb6\xcb\x85\x94\x64\x4e\x13\xe0\xb3\xf3\xe1\x3e\xd9\x71\xb8\x62\x3c\xcd\x91\xb3\xbf\x64\x34\xfa\x0a\xdd\xbe\x2c\x9e\xe5\x0b\x83\x60\xb9\x82\x36\x56\x67\x94\x0f\xe9\xbf\x97\x3f\xc1\x3c\x68\xe1\xac\x30\x2f\xfe\x19\xe0\x3f\xc7\xe3\x31\xf9\xd9\x99\x41\x9a\x64\xcc\x7a\x6f\xe7\x0e\x50\x38\xc6\x0f\xc4\xef\x70\x69\x94\x65\x1d\x43\x15\x73\xd5\x0b\xe0\xa2\xc7\xe4\x7c\x83\xed\x38\x5f\x18\xac\x6d\x82\xfe\x2d\x71\xe6\xac\xe5\x29\xe8\xef\x56\x73\x37\xaf\x8a\xa1\x67\xf9\xc8\x34\x2d\x76\xc7\xd9\x99\x4f\xfe\x3f\xf6\xfe\x7d\xb9\x71\xdc\x5a\x1c\x85\xff\xff\x9e\x02\x71\xef\x2a\x77\xff\x3e\x4b\xee\x9e\x4b\x67\xc6\xa9\xd4\x29\x8f\xed\x9e\x51\xc5\x6d\x6b\xdb\xea\x99\xa4\xa2\xec\xde\x10\x09\x49\xf8\x99\x02\x18\x5e\x64\x2b\x93\x9c\x9a\x07\xd9\x79\xb9\x79\x92\x53\x58\x0b\x20\x41\x12\x20\x29\xb7\x3d\xb9\x6c\xb2\x2a\x99\xb6\x08\xe2\xb2\x00\xac\xfb\x05\x0e\xa9\x13\xe7\xeb\x2e\x0a\xc1\x5a\x2e\xa1\x2d\x48\x56\xf0\xdf\xfc\xf5\xeb\xcf\xde\xe2\xff\xe3\x9b\xe2\x9b\xdb\xb5\x4c\xb2\x51\xc0\x93\x20\xe7\x19\xd0\x4d\xfd\x91\x6b\xa0\xbf\xfe\xb5\xf5\x6b\xd0\xc0\x65\x2f\xb1\xcd\xab\xa2\x51\x4c\x13\x26\x30\xd7\xea\x2a\x91\x79\xac\x98\x85\xf9\x3c\xa3\x51\xf4\xd2\xa9\x49\xd5\xc9\x3f\xd1\x36\x5e\xe0\x0b\xd3\x9b\x39\xc3\x34\x8a\x2c\x01\x09\x2e\xe8\x25\x9e\x07\xe4\x00\xdc\xc4\x9d\xaa\xab\x8d\x78\xc6\xb8\x0f\xd9\x28\x33\x3d\x22\xa3\x23\xf2\x11\xe0\x70\x3c\x26\xb7\x70\xe5\x88\xbe\x72\xde\x4e\x37\x32\x61\x24\x56\xbc\x51\x9a\xf2\x2d\x23\x0b\x74\x7c\xdd\x19\xc1\x5c\xab\x4c\x08\x4b\x03\x1a\x33\x12\xac\x69\x42\x83\x8c\x25\x7a\xda\x17\xe8\x3f\xe8\xbc\x0c\x2f\x01\xf1\x6f\x68\xc8\x46\x79\x8c\xc7\x22\x7d\x55\xa0\x23\x88\xb6\xd0\xa8\xe3\x9e\x2d\x14\xf3\xc5\x34\xf2\xb0\x77\x3c\x64\x71\x24\x77\x1b\x26\x9c\xe8\x54\x7f\x1f\x27\x32\x34\x87\x14\xfa\x55\x77\x0a\x70\x52\x22\x85\x12\xd0\xad\xa3\xae\x64\x5a\xfc\xe1\x6f\xaa\x79\xd9\x3f\xf9\xd5\x6f\x7d\x37\x20\x64\x5b\xd3\xfd\xaf\x48\xed\x16\xb8\x50\x59\x1b\x47\x55\x15\x65\x5b\x0c\x2d\x2d\x72\x6c\x3b\xd7\xbd\x44\xa7\xaa\x92\x2c\xb8\x96\x65\x28\x16\x9e\x51\xcd\x0e\x63\x1a\x63\x29\xcc\x24\x0d\xa7\xeb\x32\x98\xb4\xad\x11\xd4\x65\x3d\x68\x2a\x68\xd5\xb8\x08\x79\x00\x7c\xf9\xfd\x1a\xa2\xf8\x90\x7a\x69\x92\x68\xf9\x13\xe8\x3c\xc7\x4e\x3c\xa5\xee\x9d\xd4\x89\x8e\x8f\xf4\x5f\x8a\xa7\x1e\x13\xf4\xde\x01\x6a\xf2\x10\x2b\x26\x25\x8b\x76\x16\x4b\xfd\x12\x92\x34\x3b\xdd\xb2\x2c\x3c\x2a\x48\x90\x30\xed\x34\x9c\xea\xdb\x2d\x13\x22\x78\xf4\xea\xc8\x38\xfe\x86\x6c\x49\xf3\x28\x4b\x09\x2e\x4b\x81\x2e\x09\x3d\x2c\x75\x26\xc9\xbd\xc2\x95\x13\x9d\x4a\x5b\x4d\xe2\x42\xff\x53\xdd\x47\x8d\x39\x8b\x5c\xc5\xe0\xa9\x82\xea\x48\x3d\x8c\xab\x57\x9e\xe2\xed\x1a\x91\x3f\x6a\xbe\x48\x4d\xc5\x8c\xf1\xa7\x23\x4d\x1c\x14\x97\x09\x2a\x2f\x33\x24\xe6\x93\x7e\xc9\x45\x10\xe5\xde\x19\xaf\x19\x09\xa8\xe2\x3c\xa1\x83\xb2\x1b\x82\xe4\x59\xc8\x62\x31\xd0\xdd\x2b\xc7\x4c\x2e\xbc\x79\xaa\xeb\x73\xab\x4c\x4c\xa1\xa4\x7a\xf7\xfe\x75\x3a\x8f\x47\x7d\x0e\x8d\x01\x41\xfe\x72\xec\x06\xe6\x38\x77\xe3\x05\x81\x47\xab\xca\xeb\x27\x8c\xaa\x7b\x14\xdc\x11\xba\xa2\x5c\x1c\xe9\xd3\x80\x4a\xbb\xe8\x9e\xee\x52\xed\x9a\xe9\x3c\xc5\xc6\xce\x86\x06\xb6\x23\x22\xd8\x96\x25\x95\xf3\xe6\x54\xa7\xf5\x4c\x83\x5e\x42\x81\x30\x20\x1a\x85\x2a\x3a\x96\x69\xca\x17\x91\x19\xb8\xf4\x20\x50\x1f\xdc\xc6\x2c\x70\xcb\x7b\xb8\x36\xbf\x4f\x45\xbb\x64\xe9\x15\xda\xdc\xb2\x5e\xf3\x57\xa0\x19\xa1\x6d\x29\x4a\x33\x99\xd0\x15\x33\x3f\xa5\x19\xcd\x72\x04\x0c\x2a\x4c\x59\x78\x65\xa9\xb2\xee\xb8\x08\x15\x1e\x32\x20\x8d\xa3\x3c\xa1\x51\xf9\x4b\x20\x05\xda\x2e\xd2\x13\xf2\xc7\x3f\xa9\x5f\x54\xff\x2c\xd4\x61\x47\xfa\xd7\xb9\x18\x8d\x46\xc5\x7f\x68\xcc\x4d\x10\x13\xa1\x31\x67\x0f\x19\x13\xd0\x78\x7c\xf7\x55\x3a\xe6\xf2\x78\xfb\x66\x2e\x70\xe0\xb3\x3c\xcd\xe4\xe6\x86\xa1\x3e\xf6\x9c\x81\xd4\x05\xe8\xba\x12\x2a\xa4\xa8\xcc\x09\x11\xe8\xb3\x95\xb2\x2c\x1d\x07\x49\x38\x8e\x13\xa9\x00\x11\x00\xee\x19\xcb\x64\x35\x17\x0a\xa9\xc1\x17\xc0\xa9\x9c\x10\x4f\xb3\xaa\x3a\x0f\xa7\x52\x77\x2c\x8b\x78\x9a\xfd\xae\xf6\xe6\x92\xa7\x59\x15\x4e\xd6\x9c\x34\xf8\xb9\x58\xe5\x11\x4d\xec\x57\x00\xb6\x40\xaa\xbd\x2b\x5c\xc8\x40\xa0\xdb\x1a\x28\xaa\x3f\x46\x7a\x99\x0a\x3a\xd0\x53\xb0\x66\x9b\x32\x54\x4a\xc6\x4c\x9c\x4e\x27\xdf\x7f\x7e\x5b\xfd\xbd\xe9\xb9\xa5\x27\x6b\x7c\x10\xca\x21\x47\xec\xcf\x39\xdf\xd2\x48\xe1\x55\x7d\xbc\xeb\x4e\x75\xd6\x19\xf6\xa8\x46\xad\xdd\xad\x1e\xd9\x6a\x44\xb5\x9a\xaa\x36\x6f\xa1\xc7\x27\x4e\x46\xaf\x98\x85\x7a\x79\x38\x0f\x40\x1a\x1a\xe3\x53\x97\xfa\x43\x2e\x81\xc8\xc3\xc1\x1f\x03\x27\xc0\x92\xd4\xc8\x8a\x81\x14\x5b\x96\x64\x24\x61\x81\x5c\x09\xfe\x97\xa2\xf3\xd4\x18\xdc\xa0\xd8\x41\x83\x5e\x70\x91\xb1\x44\xf1\x0c\x70\xe3\x8f\x00\xe7\x6d\xe8\x8e\x24\x4c\x0d\x43\x72\x61\x75\x68\xcc\xfd\xef\x15\xaf\xc8\xc5\x52\x9e\x40\xae\x8b\xf4\xe4\xf8\x78\xc5\x33\x73\xb0\x03\xb9\xd9\xe4\x82\x67\xbb\x63\x30\x03\xf0\x45\x9e\xc9\x24\x3d\x0e\xd9\x96\x45\xc7\x29\x5f\x8d\x68\x12\xac\x79\xc6\x82\x2c\x4f\xd8\x31\x8d\xf9\x08\xe6\x2e\xe0\x82\x8d\x37\xe1\x8b\x44\xdf\x84\xf4\xd0\x85\x0e\x9a\x58\x04\x8e\x6e\xdb\x36\xa8\x13\xac\x03\xc4\x90\x19\x46\x6a\x5e\x40\xdb\xd8\x3a\x6f\x2e\x6e\x67\xc4\x8c\xee\x0c\xa6\x43\xe0\x97\x5f\xa6\xe5\x3e\x28\xa0\x71\xb1\x34\x6c\x0b\xe8\x1b\x6d\x29\x1f\x29\x67\xc4\x1d\x1c\x6c\x9a\x2f\x36\x3c\x4b\xad\x24\x09\x72\x4c\xce\x20\xda\x4e\x11\x89\x3c\x0e\x69\xc6\xc2\x31\x99\x08\x72\x46\x37\x2c\x3a\xa3\x29\x7b\xf6\x5d\x00\xde\x6d\xa4\x60\xdb\x77\x1f\x3c\x81\x8d\x3e\x8d\x5d\x81\xa6\x3c\xdb\x56\xde\x47\x45\x78\xaa\x9e\xf5\x26\x10\xa3\x0c\x7d\xa4\x0d\xdc\x55\x3e\x66\x4b\x6b\xb4\xa9\xc5\xec\xe1\x71\x14\x6d\x54\x44\x31\xbe\x2c\x93\x69\x81\xe9\x50\xf8\x5d\xb0\x48\xaa\x53\x25\xb5\x0a\x86\xb9\xb4\xfe\x7e\x72\xfd\xbf\x82\x60\x02\x9d\x84\xff\x7b\xa1\xc3\x27\x4e\x08\x12\xa8\xe3\x8c\x6d\x62\xc0\x57\xc7\xf8\x03\xb8\x87\x94\x66\xc5\x24\x1d\x25\x0b\x1a\x8c\x77\x74\x13\xcd\xc5\x8f\x3f\xf2\x25\x61\x7f\x26\xe3\x9b\x6f\x4e\xcf\xce\xa4\x58\xf2\x15\x99\x1f\xa8\x06\xf3\x83\xbf\xfd\x4d\xf5\x3e\x01\x8e\x96\x11\x4a\x82\x28\x4f\x33\x96\x24\x32\x62\x45\x85\x8e\x7a\xdf\xa0\xe2\x92\x82\x89\xec\x48\x7d\x0c\x35\x3e\x00\x83\x64\x06\x95\x7a\x26\x65\xc4\xa5\xd2\xe6\xa6\x09\x3c\x0e\x7a\x23\x23\x56\x65\x0c\x60\x11\x34\xcf\xd6\x32\xe1\x7f\x41\x5f\x03\x8b\x3b\x70\x50\x7f\xcf\xc0\x73\x01\xfc\x29\x34\x7c\x41\xae\x64\x88\xca\x03\x72\xaf\x5d\x0a\x32\x49\x36\x52\x70\x70\x9d\x93\x09\x09\x59\xc4\xf0\x9e\x23\xc9\xa5\x31\xff\x56\xb1\x0a\x6a\x5f\xd4\x16\xfe\x09\x77\xb5\xc0\xc3\xc5\x11\x1d\x11\xa1\xfa\xc6\x3f\xb7\x2c\x59\xd8\xaf\xee\x6d\x1f\xa8\x11\x5c\x8d\xf2\xaf\x15\xde\xca\x17\x64\x6a\xb2\xe7\xfc\x39\x67\x09\xd7\x5a\x8c\x22\xa9\x09\x7b\xe0\x69\xc6\x84\xbe\xaa\x7b\xcd\x2c\x96\xa1\x67\x62\xc5\xd8\x93\xe9\xe9\xfb\xf2\x5b\x1d\x2b\x21\x78\x0c\x75\x80\x42\x25\xd1\x08\x5c\xa0\x8e\xd1\x88\x58\xa6\xcd\x26\xf5\x99\xb8\x59\xaa\xb6\xe9\xf1\x38\x96\x32\xf2\xcc\xd0\xc0\xea\xd3\x87\x59\x44\x32\xb8\xa3\x4b\x64\x21\x4b\x75\x8c\x1a\x9f\x6e\xe0\x65\xed\xb7\x35\x15\x61\xe4\xdb\xd2\x15\xcb\x7c\x1b\x0a\x72\x30\x2b\xff\x46\x22\x55\xfe\x8d\xd0\x43\xb8\x37\xee\xc9\x86\x0a\xba\x62\x29\x59\xcb\x34\xb3\x1c\x04\x9e\x04\x02\x95\x3e\x9f\x75\x59\x57\x8c\x85\x20\xdf\x2b\x01\x31\x93\xba\xad\x41\x31\x56\x1c\xf9\x53\x2d\xcd\xd1\x73\x8f\x05\xfa\x97\xf4\x82\xfc\x2e\x5f\xb0\xb3\x72\x63\x10\x79\xe6\x49\xa1\xe1\x40\x21\x9f\x67\xaa\xc7\x94\x28\x1e\x25\x80\x26\x4f\xb3\x1e\x75\x2e\xac\x63\x11\xd8\xa3\x3b\x57\xf6\x02\xc5\x6a\x35\x0f\x79\x2f\xac\xb9\x34\x96\xfd\x42\x2f\x9b\x50\xa3\x28\x51\x72\xbe\x90\x82\x21\x8e\x49\x7d\xf0\x79\x61\xb6\x11\x49\xa0\xef\x24\xbc\x40\x74\x07\x48\x2b\x58\x57\xdc\x54\x0b\x4c\x08\xa4\xad\x41\x01\xbe\xe1\x02\x75\x2b\xcf\x44\x08\x64\xc4\x6e\x18\xba\x7c\x9a\xfd\x69\xe9\x5f\x35\x73\x10\xa9\xce\x61\xd2\x1c\xd8\x09\xb5\x35\x23\xdd\x41\x55\x35\xd9\xa3\x0f\x2b\xd8\xee\x04\x71\x44\xba\x4b\x33\xb6\xa9\x0a\xd2\x2f\xc8\x0d\x15\xc1\x9a\x25\x23\xc3\xf4\x9d\x90\x33\x80\xb8\x4d\x8a\x15\xda\xb6\x97\x80\x7e\x17\x8a\xb6\xa0\x52\x0e\x8a\xa4\xd1\xe0\xee\x9e\x26\x21\x12\x78\x9a\xf1\x05\x8f\x78\xb6\xeb\xc3\x7e\xa8\xee\x6d\x96\xa3\x8b\xa5\xb0\x67\x75\x4e\xd9\x46\x8a\x5b\xd6\xc5\x4d\x40\xe3\x5f\x88\x83\xa8\x32\x0c\x8a\x93\x3d\xbb\x9a\x28\x36\x6e\xc5\x05\x11\x80\xd7\x32\xa9\xee\x13\x90\xd5\x23\xa4\x8a\x28\x1c\xda\x21\x59\x8f\xa7\xd1\x35\x5e\xc2\x08\xfe\xd8\x71\x2b\x52\xdb\x6b\xc0\x86\x07\xe2\xc8\x40\xd8\x83\x5f\x3e\x68\x75\x78\xc8\xd3\x40\x6e\x59\x52\x68\xc0\x27\x53\xb4\xfe\xd0\x50\x89\xd9\x3c\x65\x1b\xdb\xd1\xb3\x95\xfb\x71\xf4\x3a\xdb\xc5\x6b\x9a\x8e\xdd\xfc\x11\x39\x9b\x9c\xdf\x10\x9a\x67\x72\x14\x32\x25\xa1\x81\x39\x4c\xc0\x15\xa1\xe1\x46\xef\x4f\x49\x77\x10\x0d\x92\x0d\x8d\x1f\xb1\x25\xf8\xb1\xfa\xf6\xe9\xa0\x0e\x1b\x7b\x6c\x23\xd0\x3a\x98\x15\xe9\xd4\x35\xf2\x82\x88\x51\x10\xca\x15\xdb\xaa\x65\xb8\x0f\x82\x6e\x29\x8f\xe8\x42\x5d\xa9\x88\xae\x2c\x40\xc5\x36\x9c\x5f\x18\x9d\x3b\x88\x17\x29\xba\xfc\x07\x55\x22\x66\xa5\x73\xe1\xc8\xde\xd9\x79\x6c\xc6\x6e\xba\xf8\x43\x1d\xb9\x2b\x38\xff\xae\x70\x51\xaf\x84\x81\x72\xcf\x4d\xd0\x02\x21\x17\x2b\x83\x6b\x5b\x61\x86\xad\xe3\x8a\xff\x44\x4f\x16\x5b\x1f\xb0\xc5\xce\x80\x43\x4d\xdc\xa8\xa2\xcb\xf5\x7f\xf2\x7d\xad\x5d\x50\xeb\x36\x19\xfb\x50\x3b\x7b\x5b\x5b\x44\x03\xf1\xc4\xc6\x2b\x57\x86\xe6\xf8\x3c\x6e\xce\x2d\x67\xcf\x3a\x41\xc5\xe9\xd1\xb2\x51\x4a\xb6\x34\xe1\x32\x4f\xc9\xd9\xcd\x39\xde\x76\x3c\x4b\x4f\xc4\xbe\x61\xac\xf0\x92\x45\xfc\x01\xfb\xb5\xe0\x68\xfd\x5a\x65\x80\x80\xa9\x5f\xc5\x31\xd3\x24\xd3\xee\x6a\xb1\x8a\x1b\x1d\x15\xbf\x35\xbb\xa9\x88\x20\x3e\x99\x00\x7b\x76\x9e\xc6\xc6\xeb\x94\xd9\x88\xd5\xfb\x8d\xb3\xb5\x97\x97\xf5\xf0\xf0\x5e\xe1\x66\x0f\xe6\xfe\xbe\xb9\xf3\x79\x9a\x15\x9c\xa2\x08\x0b\xde\x4f\xe1\x11\x38\x04\x52\x28\x46\x30\xc9\xf2\xf8\x39\xe4\xc0\xce\x9d\xef\xcd\xf1\xb7\x31\xf9\x7b\xe1\x48\xed\x4e\xa5\xf0\xe4\x93\x6a\x07\xfa\x6d\xcb\x0c\xac\x5e\xc6\x0d\x41\x0a\x94\xc4\xc1\x05\xd4\x78\x0c\xc2\xbd\xcc\xe3\x55\x42\x43\x1d\x81\xb0\xfd\x6c\xfc\x16\x79\x93\x00\xcb\xf5\xbe\x20\x0b\x46\x12\xb6\x91\x5b\x16\x6a\x6f\x39\xf3\x81\x4c\xd4\x0a\x97\x09\x4b\xd7\x84\x8b\x34\xa3\x51\xf4\xa4\x22\x5a\xcb\xf5\xab\xde\xe2\xbe\x1b\x58\x70\xc1\xef\x22\x2a\x04\x8b\xaa\xac\xe0\x0b\x32\xcd\xc1\xcd\x1e\x00\x61\xa9\x81\xd7\xf9\x62\x1c\xc8\xcd\x71\x20\x13\x26\xd3\xe3\x25\x7e\x7c\xbc\x88\xe4\xe2\x78\x43\x55\x07\xc7\xe7\x32\xc8\x37\xc6\xd6\x70\x0c\xfc\xb7\x6e\xa6\x39\x5d\xc5\xe8\x3e\x35\xfb\xa9\x47\xb0\xf9\xcf\xa7\xd5\xf2\x3c\xd5\x79\xf5\x1c\xd1\x27\xe5\x83\x0a\x5a\xa4\xb7\x58\x89\x86\x18\x85\xd1\xdc\xeb\x52\x58\x10\x34\xaa\xc9\x5a\x2e\x31\xe1\xa9\xc4\x4c\x41\xa3\x51\xb9\x69\x4f\x2a\x5c\x16\xdd\xee\x25\x4c\x0a\x4c\xec\xd6\x2a\x3a\xfe\x02\x32\x63\x7f\xb0\xfa\xb7\xc6\x0b\xf0\x42\x48\x7b\x06\x61\xfe\x69\xc1\xfd\xe3\x8f\x4c\x84\x7f\xfb\x5b\x6f\x3d\x3e\xd0\x15\x23\x43\x43\xd8\xf0\x86\x0a\xbe\x64\x69\x66\xd0\x71\x6a\x1d\x73\x6d\xf3\x61\xc9\x11\xa1\x29\xb9\x67\x11\x7c\xa6\x43\x95\x4a\xc6\x31\xd5\xc5\xbb\x81\xcd\x30\xe2\x90\x14\xaa\x2d\xa3\x90\xf0\x59\x01\x03\x1a\xa9\x16\x2c\x41\x31\x00\x0a\x8c\x5b\x4c\xbd\x26\xb6\xc5\x6d\x2a\x04\xf7\xba\x35\x3f\x4e\x5b\xef\x4b\x1b\xbc\x88\xf6\x7f\x33\x86\x94\xaf\xd2\x11\x8d\xe3\xe2\xc3\xc2\x26\x56\x73\x48\x06\x87\xc1\x4b\xfb\xcb\xe6\xb7\x44\xd3\x8c\xdb\x2c\xa1\x19\x5b\xed\x4e\xb4\x65\x64\xfc\xa1\xf2\xb3\xda\xac\x1f\x7f\x24\x99\xfc\x03\xdd\x44\xf5\x97\xe4\xaf\x84\x8b\x90\x89\x8c\x7c\x81\xed\x58\x94\x32\xf5\x2f\x52\xd8\x91\x6e\x64\x14\x71\xb1\xfa\x60\xa9\xc3\x12\xfb\xa7\x62\x7e\x1b\xfa\x60\xc9\x71\x27\xe4\x8d\x75\x5a\x08\x31\x27\xc3\x2c\xb0\x6e\x3b\x8c\xaa\x8b\x75\x2d\xb7\x66\x42\x54\x7b\xea\x70\xa3\x2b\x03\x8b\xd5\x85\x94\xe9\x09\x89\xb8\xc8\x1f\x4c\x03\xc5\x6a\x6a\x69\xce\x18\xbf\x10\x6a\x57\x56\x77\x06\x02\x9e\x41\x7e\xfc\x51\xa7\x2a\xfb\x8f\xbb\x23\xf2\x1f\x5b\x72\xf2\xdb\xea\xe7\xa4\xfc\x1e\x1a\xff\xc7\x1d\xf9\xdb\xdf\x4e\xc8\xfc\x40\xfd\x7b\xab\xde\x1e\x58\x5d\x31\x11\x12\x0d\x7c\x03\x2c\x80\xbe\x8c\x58\xd2\x48\xbe\xfa\x82\xbc\xa7\x77\x8c\xa4\x79\x62\xee\x0c\x68\x6a\xd3\x60\xcd\xc2\x3c\x42\x27\x3e\x48\xa4\xa3\x48\x91\x65\x82\x1c\xe9\xc0\xc2\x13\x72\x25\x6f\x75\xe3\xf2\x2d\x38\x5a\x24\x54\xad\x91\x5c\x54\xd4\xa5\x38\x62\x72\xa7\xbd\x85\x42\x8c\x98\x09\x12\x8e\x3e\xfd\x34\x0c\x47\xda\x20\x9b\x30\x3d\x09\x25\x00\xdb\x03\xdf\xb1\xdd\x09\x39\xd3\x5f\x9c\x86\xa1\x14\xe9\x75\x2d\xb7\x93\x7f\x74\x7b\xde\x17\x0f\x2c\xc8\xb3\x5e\xd3\xee\x32\x11\x62\xab\xaa\x4b\xe6\x55\xf5\x46\x63\x37\x95\x2d\x79\x41\xde\x73\xc1\x37\xfc\x2f\x8c\x84\xf2\x5e\x64\x7c\xc3\x48\x98\x83\x32\x83\x9a\x4b\x61\x73\x9e\xc6\xee\xf6\x1b\x92\xb1\x28\xb2\x51\x4f\x26\x49\x28\xa1\x40\x00\x24\x0b\x2d\x07\x30\x9f\xcc\x0f\x4a\x2b\x7f\xf5\x44\x87\x32\x48\x8f\x03\x29\x02\x16\x67\xe9\xb1\xc9\xb5\x94\x1e\x83\x1c\x1c\xcb\xf0\xf8\x85\x89\x78\xe2\x52\x8c\xe4\x72\xa4\x5e\x14\x1b\x62\xbd\xfb\x36\xa1\x01\x9b\xb2\x84\xcb\xf0\x96\x05\x52\x84\xe9\x09\x79\x5d\xce\x44\x53\xd4\x32\x07\x22\x6a\x46\x4c\x83\x38\xe1\x32\xe1\xd9\xee\x2c\xa2\x69\x8a\xa0\xfb\xf1\x47\x32\x3e\xa3\x90\x05\xb8\xf6\x8e\xfc\xb5\xd0\xca\xcf\x0f\x10\x35\xa2\x8a\xd5\x1c\xa4\xf9\x81\x75\x67\x94\xb8\x77\x66\x28\x41\xf5\xf0\x03\x05\x29\xa8\x44\x95\x84\x28\xfa\xb0\xe0\x82\x26\x95\x70\x14\xd4\xc0\xaa\x77\x35\x7a\xb1\xe4\x11\x38\x78\x02\xc5\x28\xc4\x1f\x73\xea\x10\xbd\xeb\xfe\x47\x81\xe0\xf6\xa9\xe3\x1b\x30\x9d\xff\xf8\xe3\xf8\xec\x6a\x32\x51\x7f\xd8\x17\x1e\x42\x26\x36\x54\x51\x94\x3f\xce\x0f\x8e\x65\x9c\x1d\x07\x82\x1f\x2f\xb8\x38\xd6\xfd\x15\x4c\x24\x3e\x4c\x6c\xdf\x25\x72\x53\x71\x0c\x30\x8a\xba\xf7\x34\x36\x0c\x81\xfd\xbc\x20\xa7\x10\xef\xf1\xbb\x0f\xdf\x5c\xdc\x5c\x5d\xcc\x2e\x6e\x3f\xde\x5e\xdc\x7c\x3f\x39\xbb\xf8\xf8\xdd\xf5\xed\x0c\xd6\xec\x78\x37\xbd\xbe\x99\xe9\x70\x1f\xb9\x65\x49\xc2\xc3\x90\xe1\xed\x65\xdf\x4c\xdf\x91\x4d\x15\x0a\xf8\x20\x24\xac\x74\x0d\x46\xa1\x3a\x32\x12\x7b\xfd\x0b\xe3\x96\xdc\x4c\xe5\xc0\xc4\xb6\xb6\x94\x17\xe0\xa9\x65\x1c\xb3\xd4\x36\xd9\xdb\xa3\x78\x33\x90\x93\x6a\xb3\x32\xfb\x73\x76\x35\xf9\x78\x76\x7d\xf5\xee\xe3\xd5\xe9\xfb\x8b\xfa\x34\xc0\xe9\x47\x61\xdd\x37\xaf\x47\x70\xab\xc7\xaa\x6b\xe0\xf3\x0f\xea\x93\x30\x8a\xa9\xda\x19\x01\xe7\x63\xd8\x32\xdf\x49\xa9\xcf\xe6\xea\x62\xf6\xc3\xf5\xcd\xef\x60\x56\x93\x6f\x9d\x53\x6a\xec\xb5\x39\x34\x7a\xbf\x7f\xc7\x76\xae\x2d\x2f\xf7\x42\xf3\x8c\x15\x63\x98\xfd\x00\xc2\x0d\x04\xff\xa8\x57\xf3\xd1\xd5\xf4\x05\xb9\x65\xe8\xa3\xa4\x28\x22\x70\xc2\x85\x17\x38\x38\x49\x7c\x95\x22\xd7\xa4\x5e\x79\x16\x6c\x9d\xb0\xab\xeb\xf3\x0b\xff\x2e\x78\x96\x0c\x0e\xa4\xbe\xb5\xc2\xcb\x29\xcd\xd6\x27\x80\x82\xc6\x6a\x32\x10\xeb\x55\x5b\x86\xda\xb6\xf7\xb3\x0f\x44\x63\xf9\x2d\x4d\xb8\xe2\x3f\xfc\x5b\xf4\x7e\xf6\xe1\x1f\xb8\x2f\x5b\x96\xad\x3f\x6e\xb2\xbc\xbe\x8c\x69\xc2\xb6\x4c\xe8\x32\x16\x25\x86\x03\x39\x3f\x8d\x18\x83\x08\x94\xa5\x54\xad\xea\xe5\x6e\xcc\xe2\x6e\x2f\x2f\x2e\x1a\x35\xa3\x8a\x5b\xb0\xa4\x51\xca\xaa\x27\x7f\x2b\xa3\x7c\xc3\xde\xbb\x42\xeb\x47\x64\xa3\x7e\x46\xf8\x1f\xab\x23\x62\x23\x32\x37\x8e\x08\x04\x1f\x2d\xb8\x18\x85\x3c\xe9\xec\x8c\x65\x01\x74\x26\x58\x36\x6e\x84\xf9\x95\xdd\x09\x96\xd5\xbb\x4b\x59\x90\x03\x71\x91\x22\x63\x0f\xf5\xba\x2a\x71\xc2\xb7\x3c\x62\xab\xaa\xb7\x13\x82\xf8\x34\x0c\x15\xf3\xf2\x2e\x62\x0f\xe4\x7b\x58\x3a\x39\x4f\xf8\x16\x3c\xf8\xa8\x51\x0b\xaa\x16\x31\x4b\x14\xd5\x24\x1f\x04\x7f\x20\xe7\x72\x43\xb9\x20\xb7\x32\xb8\xc3\xfc\x3d\x10\x8e\x43\xce\xf9\x9d\x92\x32\x2a\x94\x06\x6c\x33\xe0\x86\x17\xd0\x4c\xc7\x6a\xbe\x63\x11\x7f\x00\x6c\x6b\x87\x2d\xde\xee\x44\x40\x4e\xa7\x13\x07\xcd\x59\x46\xec\x61\x2b\xa3\x51\x08\x53\x73\x93\x1d\xb5\x84\xef\x65\x34\xd9\xac\xaa\x84\xc7\xbb\xa1\xee\xce\x47\x6a\x2b\xaa\xf0\x6b\x6c\x54\x73\x1a\x8f\xdb\x80\xc0\x4d\xd0\x6f\x72\x91\xd6\x85\xbf\x02\xd7\x5a\x0c\x13\xa0\xdd\x5a\x25\x96\x17\xd6\x27\x71\x22\x57\x09\xdd\xa4\x05\x06\x37\x61\x24\x22\x24\x89\xcc\x33\x48\x68\x05\xbd\xda\xdf\xab\x15\x3a\xb6\xc0\x92\x5d\xdd\xf0\x57\xcc\xbe\x83\xee\xff\xef\x26\xe4\x1f\x52\x66\xef\xd8\xe9\x74\x62\x24\xf7\x05\x0d\xee\x14\xfa\x52\x02\x1f\x68\xa5\x3d\x08\xec\xfc\x74\x76\x7a\x3b\xbb\xbe\xb9\xf8\x38\xfb\xc3\xd4\x4f\xcf\xcb\x25\x34\x09\xb9\xf1\x68\x61\xb8\xeb\x84\xae\x56\x89\x89\x30\x2c\xe8\x5b\xac\x6d\xae\x9e\x69\x7c\xb8\x55\x00\x3e\xff\xa8\x9a\x78\x27\x01\x10\x69\x0c\xff\x03\xe5\x59\xe1\x14\xd0\xb5\xdc\x1f\x4e\x27\xb3\x8f\xef\xae\x6f\x3e\x16\xeb\xde\x73\x34\x45\xc1\xf7\x26\xda\x8a\x52\xff\x43\x08\xf5\xb9\x14\x87\x19\x61\x02\xac\xbc\xdf\x7c\x3b\xf5\x71\x51\xa7\x97\x93\xb3\x6b\xc3\x48\x4d\xae\xbe\xfd\xf8\xcd\xe9\xd9\xef\x2e\xae\xce\xbd\xc0\x11\x52\x38\x80\xa3\x55\x62\x58\xdd\x49\x31\x72\x10\x88\xbe\xc4\x1c\xc7\x56\xf4\x9f\x7a\xef\x99\xc9\xe5\x87\xdb\xd9\xc5\x4d\xc7\x61\xfc\x2a\x3d\x42\x99\xb1\x31\x03\x94\xad\x8e\x08\x17\x0a\x67\x2a\x01\xeb\x88\xd0\x4c\x67\x0a\x00\x33\x10\x49\xd8\xc8\x04\xba\x29\x26\xb3\x28\x40\x91\x66\x34\xf3\xcc\xea\xdd\xc5\xe5\xe4\xf7\x1f\x27\xd3\xd9\xe9\x37\x97\x17\xb7\x37\x17\xef\x6e\x2e\x6e\xbf\x9b\x5c\xcd\x2e\x6e\xbe\x3f\xbd\xf4\x4e\xf3\xed\xeb\xe6\xfc\xae\xa4\x95\x45\x16\xbc\x0c\x1a\x49\x23\xcc\xa0\x13\x3f\x5f\xe1\x66\xa6\x8d\xb8\x37\x99\x6e\xbf\x20\xb1\x94\x51\xc9\xcb\x5b\x36\xb6\x9a\x8f\xd6\x18\xbc\x21\x26\xd3\x22\x71\x75\xbd\xe7\x60\x2d\x53\x85\xe7\xd0\xd7\x9e\xa7\xa8\x86\x19\xa3\xae\x17\xbd\xfa\x4d\x62\x42\x6d\x07\xb2\x6d\x3e\xd8\xeb\x9a\x6e\x1b\xfd\x0a\xa9\xd5\x0c\x3a\xb5\xa1\x8e\xb1\x58\xaa\x3d\xd1\x19\xc5\xff\x7b\x34\xd2\xfa\xc2\x51\xc0\xc3\xe4\xbf\xc7\xf5\x3e\x6a\xe7\x77\x32\xfd\xfe\x8b\xe9\xf5\xf5\xa5\x03\x8b\xbc\xa8\x08\x27\x5f\x7f\x36\x7e\xf3\xf6\xab\xf1\xeb\xf1\xeb\xe3\x37\x6f\x9b\xc0\x3c\xe7\x29\xba\x45\x28\x79\x28\x92\x2b\x58\x66\x2a\xc9\x7f\x83\x33\x5d\x16\xa9\xdf\xd2\xff\x06\x3d\x67\x3d\x5e\xad\x36\xa3\xf3\xc9\xad\x3a\x32\x1f\xdf\x4d\x2e\x2f\x3e\x5e\x5e\x7f\xfb\xed\xe4\xca\x2d\xa0\xb4\x23\x1c\x64\x68\xca\x28\x07\x09\x54\xb4\xd8\x70\xcc\xe4\xa1\x7e\x3e\x3d\x3b\xbb\x98\xce\x3c\x73\xc2\x53\x7c\x7e\xf1\xee\xf4\xc3\xe5\xec\xe2\xea\x7c\x7a\x3d\xb9\x9a\xcd\xae\x15\xcd\x3b\x3d\x9b\x4d\xae\xaf\xbc\x33\xc3\x6e\xfd\x80\x9a\x4c\xb7\x6f\xd5\x11\x2b\x49\x51\xeb\x14\x26\xd3\xef\xdf\xde\x7e\x98\x2a\x82\xba\x0f\xeb\x6c\x69\x48\x2c\x9b\x03\xc4\x72\xa1\x65\x39\x55\xa0\x82\x11\x2e\xaf\xbf\x55\x20\x9f\x9e\xce\xbe\x53\x60\x81\xf3\x8e\xbe\x41\xb8\xb1\x00\x4f\xb3\xb3\x99\x84\x9d\x6e\x9b\xb1\xd5\xdf\x9e\x28\xb1\xff\x84\x6f\x2f\xbe\xbf\xb8\x99\xcc\xfe\x70\xfb\x87\x5b\x9c\xb3\xbe\x54\x70\xf3\x0a\x07\x4b\xb1\x94\xad\x2b\x49\x77\x69\x24\x57\x1d\x6b\xb1\x86\xda\x03\xc7\x94\x27\xd1\x1a\x6f\x7e\x70\x4f\x13\xc1\xc5\xaa\xcf\xd2\x6f\x9d\xeb\x3d\xbb\xb9\xb8\xb8\x52\x7d\xfd\x80\x3d\x35\x57\xdc\x77\x39\xd0\x93\x77\x45\x3f\xb8\x27\x5a\xed\xee\xbb\x8b\xd3\xcb\xd9\x77\x17\x57\xea\xda\xfa\xc9\x9f\xfb\xaa\xb6\x2d\xd8\x10\x0f\x4d\x58\x41\xa8\xc9\x33\x34\x80\xa9\x7f\x58\x5e\x68\x4b\x22\x96\x48\x93\xfa\x50\xa3\x2e\x4a\xad\x3a\xaf\x4e\xf5\xb1\xd2\x9c\xcb\x00\x6b\x7e\xc7\xa0\xaa\x06\xaf\x12\xc4\xf9\x09\xf9\xec\xcb\xd7\x95\xa4\x6c\x11\xdf\x32\xc1\xd2\x74\x9a\xc8\x45\xbd\xf2\x07\x7b\x68\x04\x2c\x95\xba\xbd\xfa\xef\x23\x02\x1a\x3e\x8f\xe8\x80\x2d\x46\x70\x43\x46\x6a\xcc\xda\x3a\xab\x5a\xd8\x37\xaf\xab\xaf\xc1\xff\x85\x46\xe7\x2c\xa2\x3b\x6f\xa3\x25\xe5\x51\x9e\xb0\xd9\x3a\x61\xe9\x5a\x46\xe1\x09\x79\x5b\x05\x17\x0d\xb9\x6f\xa5\xeb\x2c\x8b\xbf\x65\xcd\x1a\xa5\x31\x0a\x82\xc5\xb7\x8d\xf7\x32\xc9\x4e\xc8\xd7\xaf\xbf\xfe\xba\xfe\x46\xd1\x84\x13\x12\xc9\x80\x46\x4d\x21\xb3\x75\xb9\xbd\x95\x12\x11\x5f\x1c\x6f\x64\x98\x3b\xb2\x50\xe0\xd9\x8c\xf8\x62\xe4\x69\xa0\x56\x74\x2d\xa2\x9d\x2b\xdb\x6c\x75\x94\x24\x17\xc7\x0f\x78\x03\xc6\x91\x0c\xee\xdc\x43\xe9\x16\x23\x57\x8b\x72\x2c\xa4\x23\x2d\x83\x6d\x69\x02\x03\x1a\xcb\xad\x6b\xa8\x2d\x4d\x46\x49\x2e\x46\xee\x36\x7b\x0e\xa6\x60\xd8\x35\x98\x02\xe3\xa3\x06\xc3\x2e\x50\x10\x4f\x77\xa2\x11\x4b\xee\x5a\xb9\xba\x38\x74\xd5\x88\x99\x7c\x81\x45\xcb\x8c\x6c\x7b\x44\xee\x19\x30\xac\x5a\x06\x06\xf2\x03\x41\x4f\xb9\x0e\xbc\x54\x2d\x15\x21\x45\x63\x83\x62\xbb\x8f\xd3\x5d\x7a\xbc\x4c\x8f\x17\xf1\x52\xf1\x4f\xf7\x4c\xb7\xc6\x5c\x0b\xf5\xe1\x20\xff\x4b\x46\x42\x9e\x80\x45\xaf\x5e\x2e\xc4\x2c\x2e\xdd\xa5\xcb\xc6\xe1\xb2\xd7\xa5\x07\x6d\x8a\xfd\xdf\x70\xec\x1b\x13\x78\x6c\x18\x15\x18\x49\x08\xf9\x09\x8a\xc9\x75\x2f\x85\x67\xc8\xd6\xc6\x89\x8c\xe9\x4a\xb1\xd7\xda\x71\xa4\xa6\xdb\x30\xe3\xea\x6c\x61\xc0\xb3\xf1\x94\xdc\x09\x79\x2f\x6c\xd0\xd1\xac\x32\x58\xa4\xf6\x78\x87\x09\xe8\xaa\x53\x0e\xa8\x00\xf5\x03\x66\x1b\x6b\x8c\x84\x40\xd0\x93\x02\x3b\x7a\xe5\x73\x37\x38\x03\xc1\x47\x91\x5c\x35\x35\x88\xcd\xc3\x12\xc9\x95\x3e\xb9\xc7\x35\xeb\x0c\x69\xb9\xdf\x0d\x0b\x52\x92\x8b\xb4\x70\xbf\xc9\x53\x13\x19\x8c\x36\x7c\xa8\xa0\x31\xda\xac\xd0\x2d\x84\x89\xd0\xee\x08\x88\x65\xa4\x30\x1c\xc4\x13\x37\xcb\x6d\x8c\x2c\x8d\x4b\xe9\x52\x53\xce\xd1\xb2\x22\x29\xf9\x51\xfb\x7b\x35\x74\x7a\xa5\x31\x89\x68\x6b\x92\xa2\x33\xba\xbf\x10\xd2\xdb\x1c\x8c\x46\x3c\x1e\x6d\x68\xfa\x67\xf3\x67\x6d\xfe\xf3\x03\xf2\xa7\xa7\xa1\xba\x4d\xc5\x8f\x59\xe6\xf4\xfa\xfc\xd9\x0c\x00\xc6\x5b\x60\x2c\x1a\x7a\x85\xfa\xf0\xb7\xd3\xd3\xb3\xe7\x9f\x03\xb8\x7a\x78\x38\xa2\xcb\xd3\xab\xab\x8b\xcb\xf3\x8f\x93\x77\x7b\xce\xe4\xa9\x2d\x40\xaa\xd1\x47\xbe\xec\x31\xd3\xe9\xc7\xf7\xa7\xb7\xff\xf9\x0f\x9c\xab\x3a\xbb\x39\x4b\x68\x95\x6b\x6a\x51\x67\xf7\x27\xd1\x5d\x04\xba\x85\x88\x8d\xaa\x8e\x6b\xa3\x60\x59\x5b\x81\x3d\x0b\x96\x05\x15\xa7\xca\x02\xe7\xe3\x2a\xaa\x6a\x6f\xe3\xbf\x8f\x76\xc9\x26\xce\xf0\xb0\x2e\x0a\x6b\xc3\x70\xb5\x0b\xdb\xc2\x10\x8d\x3a\xd9\x86\xf6\x4e\x7d\x2c\xc9\xa8\x93\x43\xe8\xee\xd7\xc5\x7d\x8c\x3a\x36\xac\xbd\xd7\xf6\xa3\x80\x0e\x4d\xef\x78\xc4\xae\x93\xb3\x8a\xff\x6d\x0b\x45\x6f\x1f\xd0\x49\xdf\x71\x9c\x73\xc3\x3b\x34\x07\x2b\x0f\x80\x3e\x2c\x4e\x3b\x90\xf3\xd0\x15\x17\xef\xc4\x75\xcc\xdd\x97\xad\x0c\x48\x32\xd6\xec\xb3\x2b\x97\xe9\xc9\x63\xc0\x6b\x87\x80\xd3\x2c\x38\x6a\xb7\xe1\xb5\xf7\xe8\xb1\x0d\x96\xab\xd0\xa1\x50\x67\x57\x13\xd0\x7e\x79\x56\xe2\x60\x24\x7a\x1c\x49\x0f\x5b\x51\x0e\xae\x95\x98\x7e\x1b\xa1\xe3\xf2\xb9\x79\x60\xcf\x6c\x3a\x4f\x0f\x69\xde\x4e\x07\xdb\xdc\xdc\xf4\xa6\xe1\xd3\x75\xea\x5a\x0d\x84\xfb\x4e\xf9\xc7\x1f\x47\x8a\x9f\x35\x06\xcb\x29\xb8\x6f\x9e\xf3\xaa\x87\x5c\xb9\x9e\xd2\xb4\x59\xb4\x44\xcf\xb8\x11\x61\x51\xca\x3c\x5f\x1d\xe7\x29\xe0\x12\x25\xaf\x5b\xce\x52\xf0\xcf\x88\x65\x23\xed\x34\x7a\x8c\x88\xf8\x18\x9a\x15\x00\xfb\x7f\xf3\x30\xd5\x23\x68\x3f\x3c\xf0\x6c\xed\x72\x20\xb3\x1d\x44\x4b\xa7\xdf\xba\x5b\xed\x63\x3c\x46\xf7\xf5\xb0\xad\xc7\xd9\x16\xde\xb6\xb7\x8c\xb9\x22\x04\x2a\xf1\x0d\xc7\xcd\x28\x5d\xa7\xeb\xab\x76\x90\xb5\x72\x32\xee\x13\xa3\xfc\x18\xf7\x58\x5f\x1c\xb2\xf1\x00\x45\x33\x43\x25\x8b\x07\xd5\x85\x34\xa1\x0c\x03\x85\xa4\x54\x11\x03\x85\xf4\x96\xe1\x25\x30\x89\x26\x12\x16\x47\x3c\xa0\x29\x38\xa9\xee\xeb\x7c\xeb\x5d\x64\x5a\x3a\xe2\x96\x97\xe2\x86\x95\x91\x1e\x5d\x3e\xb0\x9d\x60\x24\xa4\x0d\x94\xa4\xc3\x8d\xb6\xa5\xdb\x4f\x72\xac\x35\x97\x7c\x56\x7a\xac\x12\x9f\x1f\xab\xe5\x89\x6c\x37\x2f\xdc\x90\xdf\x7a\xee\xbb\xcf\x1b\xd6\xad\xe6\xb4\x5a\x1b\xd3\xa8\x37\x85\x8b\x24\x98\x32\x2b\x62\x19\xd4\x7b\xca\x85\xcf\x87\xb6\xea\x7b\x5b\x86\x14\x0c\x1e\xb8\x95\x0f\x6d\x5c\x8a\x6d\x3e\xc5\x1b\xb7\xf5\x2e\x34\xfc\x73\x1f\xeb\xb4\xaa\x46\xa9\xe5\xc6\xe8\xe5\xc4\x5a\x98\x04\x5d\x7e\xac\x4e\x97\x97\x51\xbf\x5b\x4e\xaa\x0a\x82\xb2\x81\xdb\xed\xa4\xe1\x8c\x71\xb6\x96\x90\x2e\x1e\x6c\xcd\xf6\x79\xcf\xa4\x3a\xe2\x1e\x75\x96\x36\x35\x7c\x3c\xbb\xbe\x9a\xdd\x5c\x5f\x5e\x5e\xdc\xf8\x6c\x32\x4d\x05\xf7\x5e\x4e\x1c\x96\x0b\x87\xd5\xa0\x55\x47\xbd\xaf\x36\x5e\x31\x05\xa0\x91\x5f\xb3\xe0\x6e\x54\xcd\xee\x51\x36\x1b\x25\xcf\x4f\xf0\xf7\xa6\x8a\x75\x16\xa0\x1a\x37\x53\xfa\xa9\x4d\x65\x48\xce\x79\x9a\xe4\xe0\xa7\x43\xbe\xc9\xc3\x15\x43\xf7\x93\xf2\xc0\x94\x1e\x6b\xbf\xfb\x2a\x2d\x9c\x22\x4e\xf3\x4c\xa6\x01\xd5\xef\xd9\x96\x07\xd9\x5c\x54\x17\x89\x3c\xeb\xf1\xf6\xcd\x82\x65\xb4\x58\xf0\x54\x86\xe5\x88\x38\xe0\x3f\x9e\x17\x70\x44\x9e\x3c\x11\x51\xef\xc9\x83\xb1\x2c\x08\x47\xa9\xa2\xf4\x99\xe1\xbf\x7a\x7e\x99\xed\xe2\x35\xed\xfb\x89\xf1\x6d\xd2\xee\xcc\xf8\xd5\xc1\xd1\xff\x8f\x10\x72\x80\x92\xdf\xf6\xf3\xf1\x9b\xaf\xc7\xaf\x0f\x4e\xc8\x81\xea\x0a\x14\x8b\x64\xa6\x7b\x28\x7d\x85\xf0\x77\xdd\xb8\xf7\x5c\x75\x70\x7c\x25\x9a\xeb\xcc\x88\xa3\x84\xa7\x45\x6e\xe9\x62\xa2\x58\x09\x6f\x09\x62\x04\x0b\xf5\xb0\xb6\x4b\x46\x19\xc9\x68\xfa\x69\xde\x34\x7f\xd4\x5c\x21\xe6\xfa\x8e\x54\xf1\xd9\x0b\xcc\xc0\xa1\x26\xa9\xad\xd5\xa8\xb1\x06\xf0\x7f\xd4\x94\xe7\x23\x76\x6e\x5b\xcf\x91\xcb\x84\x9c\x99\x4b\x1a\x30\x5c\xa1\xd1\xdb\xc0\x4d\x03\x45\x3a\xa4\x79\x0f\x4c\xb6\x77\xf8\xa9\x74\x04\x35\x99\x18\x40\xf7\x1e\xb1\x65\x46\x16\x11\x15\x77\x47\x45\x55\x17\xab\x7f\x9e\x1a\x1f\x97\x52\x17\xad\x50\xed\x61\x8a\x3d\x18\x02\x04\xce\x6d\xd0\xab\xa5\xe5\xc3\x08\x23\xd4\x26\x4f\x4c\x97\x26\xd8\xe8\x05\xf9\x41\x67\xd9\x96\x09\x64\xc5\xce\xa4\xa5\x75\x2b\xeb\xec\x48\x62\x15\x0d\xc5\xda\x01\xe8\x01\x83\x9d\x18\x26\x44\xbb\x59\x8e\xf1\xfa\x99\x6e\xaa\xe6\x68\xdb\x1b\x4f\x7d\xf7\x7e\xf6\x01\xd2\x66\xa5\x96\x60\xa8\x7e\x33\x2c\x1f\x5f\x12\xc1\xf0\xa7\xd7\x9a\x8c\x1a\x6f\x69\xbd\xb4\xf7\xb3\x0f\xb8\x1e\xcd\x63\x38\x98\x45\xfb\x8b\x37\x5f\x7c\xf9\xba\xd6\xda\xef\xec\x6f\x82\xe3\x7d\x3e\xff\xf0\x19\xf0\x15\x28\xbf\xbd\x30\x39\x93\xc1\x80\xc4\x4d\xa6\xac\xb2\xc0\x49\x9e\xc9\x0d\x05\xae\x20\xda\x91\x58\xea\xac\x73\xb8\x69\x0d\xe7\xfc\x13\xf2\xd7\x11\xa2\xa5\x1f\x0d\x76\x9a\x1f\x80\xb6\xfb\x40\x7b\x99\x8d\x62\x19\x8e\xf4\x47\x56\xd1\x86\xf9\x41\x20\xcc\x7d\xc1\xb6\xaf\xc7\x9f\x8f\xdf\x54\x5a\x68\x01\x58\xbd\xfe\x63\x49\x02\x7f\xb4\xa9\xe1\xfc\x00\xfc\xe0\xa0\x03\xad\x92\xab\x16\x86\x98\x1f\x44\x72\xf5\x31\x62\x5b\x16\x61\xab\x1f\x4e\x6f\xae\x26\x57\xdf\x3a\x9b\x2d\x79\xc4\x3e\x2a\xe1\x1c\x9b\x3a\x34\x2b\xea\x7f\xe3\x48\xae\x1a\x9f\x17\x4e\x93\x1f\xcb\x09\xd9\x0e\x9f\xb5\xe6\x6a\x6b\x4a\x30\x7d\xfc\xe8\x0a\x49\xf8\xf8\xb1\xf1\xd9\x26\xcb\xd5\x17\x1f\x3f\xea\x80\x80\x8f\x1f\x6b\x0d\x78\x4c\x37\xaa\xc5\x8f\x75\x96\xc1\x06\x94\xba\xe8\x23\xb0\x71\x3b\xaa\x68\xcc\x0f\xd0\xfe\x82\x4d\xf3\x94\x4d\x65\x78\xc6\xc3\xa4\xea\xff\xf0\xb7\xda\xb8\x48\x75\x3b\x47\xbe\xfb\x2a\x6d\xef\xc7\x06\x99\xb3\x2f\x9d\x8b\x4d\x21\x50\x0b\x74\x18\xb6\xf2\xd1\xf8\x17\x29\xc8\x55\x46\x29\xff\xb0\x07\xf4\x9e\xa4\x58\x26\xd9\x86\xc6\x0d\xf0\xa7\x82\x02\x5c\x14\xae\xa8\xbd\x0a\x68\x4c\x21\xe6\x9a\x9b\xa9\x43\x2f\xef\x69\x1c\x73\xb1\x4a\xcd\x57\xfb\xce\x64\x41\x45\x78\xcf\x43\x75\x22\xbb\x07\xb4\x1a\x37\x47\x33\xff\xd4\x06\x35\x8d\x53\x4c\xb6\x06\x27\x4e\x19\x13\xb0\x61\x40\xb5\x23\x6d\x9d\x35\x26\xc7\x42\x46\x00\xbc\x20\x58\x06\x54\x6d\xfc\x7f\x53\x45\xfd\xfe\xda\xc0\x08\x57\xe6\xfe\x1b\x5c\x8f\xfc\xdc\xd9\xe4\xfc\x46\x21\x46\xeb\xce\x7f\xa3\x2d\x96\xd5\xdd\xc7\xda\x0b\xc5\xe7\x7a\xd6\xba\xed\x58\xbd\xb3\x83\x53\xff\x56\x2c\xb1\x8b\x43\xb8\x0b\xc3\x51\x90\x84\x15\xe6\xe7\xb9\x32\xa2\x37\x52\x6e\x3c\x43\x5e\xf4\x6f\xbe\x9d\x56\x72\x23\xe2\xbb\x32\x3b\x7a\xfd\x7d\x33\x47\xba\x27\x31\x48\x99\x29\xbd\xde\x60\x5e\xe6\x4b\xd7\xbb\x3a\x7f\x9e\x64\xe9\xf5\xb9\x57\x33\x2d\x57\x89\x21\x96\x14\xd9\xa9\x6f\x80\xe7\xa8\x6a\x16\x86\x64\xe9\x43\xb2\x74\x7b\x0b\x86\x64\xe9\xbf\x58\xb2\xf4\xfa\x25\x6e\xa6\x4c\xaf\x56\xf4\x50\x17\xb8\x4a\x93\xaa\x9d\xb7\xe4\x46\xa7\xe9\x15\xd4\xd0\x73\xd8\xf8\x6b\x17\xfa\x16\x1b\x9a\x1a\x0c\x46\x58\x39\xbd\xd5\x55\xf8\x0a\xf1\x89\x6a\x96\xfa\x8f\xe7\xd8\xc4\xe9\x3e\xf0\xf6\x8b\x2f\xdf\x7c\xf6\xa7\xc3\xe6\x2b\x4c\x5e\x05\xf5\xeb\x3f\xff\xac\xf9\xba\xb5\xb8\xbd\xd9\x79\x77\xed\xdb\xca\x7a\xce\xca\xa6\x78\x3f\x4c\xf2\x77\x84\xa5\x3e\x41\x06\xce\x14\x53\xf9\x34\x1d\x97\x00\x84\xc9\x82\x67\x09\x4d\x76\xba\xd0\x17\x44\x08\x51\xf4\x5b\xc6\xe8\xb4\xbd\xb2\xc5\x3b\xa7\xb9\x2b\xb7\x3f\xcd\xa8\x08\x69\x12\x2a\x51\x2f\xa2\xc9\x8a\xd5\xa7\xeb\xea\x94\xc0\x12\xd4\x4d\x73\x04\x0f\xe1\xd3\x59\x37\x18\xc8\x93\xfb\x95\xa3\x4c\xb0\x2e\x9b\x5a\x46\x4d\x9a\xe9\x79\x2b\x97\x76\x57\x2c\x45\xfd\x62\xaf\x29\x7c\x0f\x78\x0e\x32\xc2\x2d\x20\x02\x1d\xcf\x15\x99\x1f\x50\x7a\x22\xc4\xfc\x00\x6a\xc3\xe1\x1f\x27\x9b\x8d\xb3\xc6\xa4\x79\xde\xc9\xa4\x84\x7a\xb9\x9a\x3c\x65\x56\x77\xd8\xff\x91\x4e\xb2\xac\x7e\x9f\x1f\x28\xa0\xfb\xbb\x9d\x1f\xc0\x87\x34\x61\xe4\xcd\x5b\xb2\xe0\x99\xbe\x48\x63\x18\xb0\xbe\xb5\xd6\x68\x30\x5f\x7f\xbf\xae\x99\x1c\x15\xa3\x89\x50\x49\x48\x1b\x3d\xf0\xe7\x9f\x55\x06\xfe\x41\x7d\xe2\xac\xb5\x64\xa6\x0c\xcb\xc2\x02\x65\xa7\xb7\x04\x51\x82\xaf\xf3\x98\x25\xa3\xd3\x5b\x13\x9b\xc5\x1b\xa1\xcd\xe5\x13\x43\x11\x74\x71\x42\xfe\xeb\xe5\x7c\x1e\xfe\xff\x5f\x9d\xe0\x7f\xfe\xe3\xaf\xd5\xbf\xcd\xcf\x8f\x3d\x41\x8f\x2e\x37\x1b\x41\x22\xfb\xa9\x4c\x5c\xc8\xac\x72\xee\x2e\x8b\x96\x06\x51\x42\xa1\x3d\xdc\x0b\x85\x5b\xe2\x44\x66\x32\x90\x91\xe1\x5e\xb0\x6b\x27\x64\xce\x4d\xed\xb1\x4c\x92\x37\xbf\x6e\x78\x61\x83\x6a\x94\x6f\xf2\xcd\x09\x79\xfb\xe5\x97\x9f\x7f\xe9\x78\xcf\x05\xbe\x7f\xb3\x27\x22\x8d\xe4\xea\x96\x6d\x59\xc2\xb3\xdd\x6d\x90\x30\x56\xe7\xf5\x1a\xcb\x3e\xbc\xac\x7f\x61\x96\x1f\xc9\x15\x49\xf5\x1b\x42\x17\x72\x6b\xec\x16\x91\x5c\x39\xab\x86\x41\x71\x64\x26\x8a\x84\xca\x69\x16\xca\x3c\xb3\xc8\x09\x99\x5c\xbd\xbb\x76\x91\x8e\xb6\xed\x57\x24\x69\x26\xaf\x64\xc8\xde\xb3\x74\x7d\x01\x71\x8a\xae\x7a\xc5\xd5\x55\x5d\xb9\xbe\x22\x29\xcb\xca\xb2\x76\xcb\x5c\x9b\x03\x31\x94\xa6\x19\x19\xa0\x1e\xb5\xf1\x1b\xc8\x52\x98\xea\x18\xc9\xd0\x5e\x90\x92\x42\xfd\x0b\x5a\x48\x19\x31\xda\xe0\x89\xe3\x84\x2d\xf9\xc3\xa9\x9d\xc1\xb8\x93\xea\x4d\x1d\xdf\x94\x94\x05\xbc\x5e\xa0\x45\x35\x31\xb2\x6b\x45\x6d\xec\x06\xd9\xa3\x78\x59\x73\x42\xa5\x82\x39\xad\x4e\xc3\xa2\x50\x6e\x04\x60\x42\x73\xcb\x3a\x80\x8e\x38\x60\x03\xbc\x0e\x62\x17\xf0\xd0\x5f\x34\xbd\x4a\xa2\x27\xe7\x37\x30\x34\x1e\xeb\xb2\x67\xbb\xf0\xaf\x59\x87\xbf\x6e\x77\x37\xf5\x6b\xe7\x6e\x5c\x33\xb3\x78\x1c\xed\xd0\x6d\xb8\x1c\xc6\xe1\xf0\x96\xe4\x05\x58\x17\x3f\xe2\x37\xae\xe2\x28\xcb\x41\x61\xe7\xf9\x81\x62\x4b\xd3\xb1\x35\x0a\x52\xd5\x5e\xec\x08\x41\xa9\xae\x93\x2a\xb7\x10\xdf\x76\x32\xd5\x4e\x95\xdb\x89\xaf\xbf\xe7\x2e\xaa\xdc\x49\x7c\xdb\x26\xdd\x41\x95\x3b\x69\x6f\xaf\xbe\xfb\x13\x65\xff\x15\xc6\xa7\x4f\x85\xf9\x16\x9a\x4a\x3e\x85\x20\x6b\xa3\x8e\xd6\xa5\x4c\xa6\x9d\x98\xef\xb6\xfe\x01\x00\x03\xd2\x12\xa9\xfb\x8b\x89\x93\x51\x74\xc5\x7b\xac\x47\x70\xe2\x3e\x6d\x67\x35\xbd\xe8\x40\x01\x90\x53\x97\x25\xf6\x29\x6a\x88\x62\x99\x48\x83\x02\xb0\x18\xa4\xab\x5f\x9c\x44\x91\x1d\x11\x7c\x41\xc4\xae\x32\x9c\x8e\x57\xce\xd6\x6c\xf3\x78\xa4\x5b\x87\xc5\x37\x6a\x5c\x4b\xb2\xb7\xdc\xab\x74\x71\xe2\xa2\xa9\x7b\x9f\x4b\x10\x3e\x03\xb2\x7d\x36\xa6\x4e\xef\xf0\xc5\x03\xaa\x81\xfa\x1f\x22\xeb\x0b\xf7\x29\x92\x89\x15\xa0\xec\x9a\xb3\xee\x88\x98\x9e\xd4\xde\x8e\xed\xfc\x1a\xf5\x06\x45\xd8\x3c\xf8\xc0\xb9\x8b\xfe\x97\x44\x46\x57\x41\xdd\x61\xd9\x28\x3c\x32\xba\x46\x38\x56\x22\xc5\x89\x7e\xf2\x09\x2a\x67\xd7\x79\x84\xdc\xbb\x6b\xad\xff\x5f\xfb\x10\x5d\x4a\x1a\x7e\x43\x23\x2a\x82\x7d\xb0\x51\xed\xab\x4f\x3c\x4c\x76\x6f\xde\x03\xa5\x13\xf1\xdb\x6d\xc7\xba\x42\xae\xab\xef\xfa\xb9\xfb\x07\x1c\xb2\x2a\x90\x1e\x79\xd0\x6a\xb0\xf9\x97\x3c\x6c\xff\x5a\xf5\x00\x7f\x99\x02\xba\x26\x0d\xfb\xf3\x58\x89\xa6\xcc\x88\xc6\x15\xe3\x90\xfa\xd9\x69\x13\xb2\x32\xc2\x57\x4c\x41\xb1\xee\xe7\xb9\x2c\x40\x83\xa9\x66\x30\xd5\xd8\x5b\x30\x98\x6a\x7e\x49\x53\x8d\x42\x07\xfd\x8a\xda\xea\xc6\x8f\x28\x61\xdb\xd7\x4c\x33\x5b\xb3\x52\x36\x34\xe6\x21\x85\x7e\x1c\x64\xee\x53\x2c\x2d\x77\x8c\xc5\xd7\x09\x5f\x71\x41\xa3\x2b\xf6\x90\x7d\x27\xeb\x21\x6b\x8d\xa9\x5d\xc7\xc6\x03\x4b\x7d\x0c\x13\x93\xba\x07\x22\xd8\x43\xb6\x96\x31\x46\xe4\x62\xe9\x4e\xb4\x9c\x74\x29\x08\x01\xa6\x44\x01\x55\x9d\xf1\x0c\x2e\x89\xf1\x52\xb3\x15\x49\xb0\x23\xe0\x33\xca\x42\xf5\x89\xab\x5f\xd5\x4b\x5a\xa8\xf2\x72\x94\xd4\x94\x78\xcd\x1e\x32\xa2\x66\xa7\xe6\xfd\x1b\x25\x82\x8b\x34\x63\x34\x54\xe0\xb5\xde\xa6\x2c\x5a\xfe\x66\x7e\xf0\x52\x1b\xc6\x5e\xb9\x86\x40\xd1\xad\x74\x60\x5f\x24\x54\x04\x6b\xb3\x4f\x57\x6a\x68\x29\xc8\xfc\x60\xc1\x93\x70\x1c\x2c\x57\x4e\xb3\x44\xab\x56\x50\x4d\xbf\xcf\x21\x29\x12\xc9\x15\xa9\xd3\x0c\x7e\xd1\x42\xab\x4e\xaa\x8f\x71\x35\x90\x3a\xc0\xb9\xa0\x94\x64\x34\x59\xb1\x0c\x4d\x7f\x80\x54\xe0\xb8\x61\x2a\x02\x0e\xc6\x35\x85\x21\x52\x96\xe9\x8a\x73\xb2\x12\x82\xe2\xe9\xd4\x12\xa2\xb5\x23\x25\x4f\x51\x7d\xce\xa0\x8c\x9b\xfa\x38\x2d\x23\x31\x0c\x60\xcb\xa4\xff\x6e\xa0\xf9\x75\xc3\x8e\x90\x18\x27\xec\x8a\x2c\xf0\x46\xd9\x88\xe3\x43\x6a\x05\x4d\xe4\x20\x42\xa9\x80\x04\x17\xab\x31\x21\x3f\xac\x59\x63\xab\x60\x5a\x1a\x44\x00\x9e\xe2\x0c\xe0\x35\x30\xc6\x2b\xb6\x89\xb3\x7a\x8a\x8a\xae\x25\xc5\x34\x4d\xef\x65\xd2\xa9\xe1\xbe\xd6\x49\x20\x11\xb6\xfa\xa3\x62\x6d\x7a\xfe\x29\x59\x31\xc1\x12\x6a\x6d\xb2\x47\xc9\xdd\x86\xdd\x48\x37\x5f\x8d\x4e\xd6\x2d\x41\xe7\xce\xcd\x50\x24\xf3\x8e\xed\x80\xf3\xd0\x5d\x98\xf3\x00\x87\x38\x96\xe1\x61\x5a\x7a\x11\x7b\xf4\x5d\x9d\x2c\x3f\x06\xb3\xfb\xd5\x61\x8d\x2b\xa6\xe7\x84\xa8\x07\x66\x95\x49\x7d\x74\x81\xf0\x8e\x09\x79\x8f\x5b\xec\xef\x94\x10\xaa\xf8\x00\x1e\x9a\x2e\xee\x98\xeb\x28\x98\xa7\x8f\x4a\xae\xd5\x8c\xdb\x30\x80\x58\xf9\xbb\x13\xb6\x64\x09\x13\x99\x93\xa8\xb7\xa5\xb1\x97\x5b\x25\xc9\xb1\xfb\x63\x5d\x41\x6f\xa4\xa4\xc5\x11\xd2\xda\xf4\x18\x36\xe6\xf8\x45\x87\x02\x9a\x90\xd9\xf5\xf9\xf5\x09\x39\x0d\x43\x22\x41\x77\x9d\xa7\x6c\x99\x47\x78\x57\xd2\xb1\xc5\xec\x1e\x01\xaf\x75\x44\x72\x1e\xfe\x3f\x0e\xa3\xca\x3e\xb0\x2a\x72\xa4\xf6\x84\xd7\x2d\xa0\xad\x5d\x61\x1c\x52\x60\xbb\xc5\x8d\x93\x09\x98\xdf\xd5\xa1\xd8\x74\xef\xba\xd6\xb3\x77\xcd\xde\x43\x04\xf0\x31\x35\xb6\x3c\x93\x87\xc8\x31\xf7\xab\x3e\x02\xaa\xfb\xad\xc2\x18\x93\x69\x1f\x02\x64\x25\xa7\xb4\xd8\x14\xb2\x94\x5a\xe5\xb8\xd8\x81\x1c\x61\xf0\x53\x2c\x13\x27\x01\xd2\xbe\x27\x99\xc4\xcf\xd5\xc9\x02\xda\x03\x56\x57\x51\x78\xac\x80\x33\xc2\x91\x31\x37\x94\x86\x99\xf9\xc1\x1f\xd1\xbd\x7f\x32\xdd\xbe\x45\x0f\xff\x3f\x9d\xc0\x58\x4e\x03\x3b\x58\x27\x8a\x0f\xbe\xc0\x0f\x4e\xf0\x07\xf8\x0a\x7e\x40\x33\x00\x64\xc7\x84\xb9\x54\x16\x61\x4d\xca\xd0\x45\x27\x93\x03\x1e\x27\x9a\x86\x00\xb0\x44\x48\x0a\x1f\x9c\x05\x8b\xa4\xc2\xcb\xc0\x01\x69\x7f\x4d\xc0\x75\x90\x95\xba\xb4\x41\xbb\x91\x2c\xa0\xc7\xba\x8f\x91\x26\xb4\xf7\x4c\x73\x3e\x34\xc3\xe9\x6a\xc8\xee\x4b\x7f\x14\x4f\xfc\x58\x92\x9a\xb0\x8d\xcc\x0a\xca\x5a\xd9\x59\x20\xa4\x5e\x0a\x64\x13\xd2\x29\x9c\xc4\x2a\xd8\x10\x57\xd4\x08\x2b\xfa\x77\x54\x93\x47\x57\x17\xa2\x38\xa3\x05\xcb\xee\x99\x8e\xe8\x00\xa7\x70\x53\x7c\x34\x2c\xf9\x4a\x7b\xde\x90\xc4\xaa\x60\x40\xdd\x3b\xac\xf3\xa7\xea\x11\xf8\x92\x2c\x64\xb6\x56\xa2\x58\x8a\x3c\x84\xe2\x05\xbe\xf9\x76\xaa\x90\xca\x58\x35\x3d\xd5\xf7\xa5\x64\x8e\x7c\x27\x07\xfb\x7e\xdb\xbf\xef\xb7\x8d\xbe\xc7\x44\x5d\x53\xd7\x00\x7a\x99\xa5\xe3\x57\x20\xc1\xed\xc9\xc8\x92\x16\x18\x0e\xd3\xca\x40\x66\x23\x9c\xf3\xd6\x9b\x8f\x35\x29\xed\x3a\xdf\x70\x16\xcb\xeb\xb2\xe7\x49\x44\x5e\x44\x2f\xaf\xf3\x28\xea\xd5\x97\xe6\x7d\x05\xcd\xb5\xbc\x6f\x04\x3e\xa1\xf4\xad\x31\x98\x6b\x39\xdd\x3c\x54\x93\x61\x2a\x5c\x3e\xfc\x96\xd3\xf9\xc1\x87\x94\x41\x86\xf2\xe9\xfc\xc0\x64\x16\xb3\xe7\x56\xb0\x3d\xea\xf0\x6b\xc1\xa7\x32\xd9\x31\xb8\x9a\x3b\x52\x88\xe2\x83\x5d\xea\x18\x22\xff\x92\xf7\xda\x85\x41\x73\xe9\xd0\x5c\x56\xcb\x9f\x3e\x87\x02\x53\x8d\x70\x8a\x23\xec\x1a\x6a\x4c\xfb\xa5\x43\x99\xe9\x2a\xce\x6a\xe9\x34\xad\xd7\xbb\x41\xb3\x39\x68\x36\x07\xcd\xe6\xbf\x9f\x66\xd3\xc6\x10\x3d\xf5\x9b\x4d\x8c\x53\x3e\xfb\x2b\x3d\x3d\x46\xb6\x36\x6a\x0f\x15\xd6\xba\x1d\xfb\xce\xb1\x19\xe1\x22\x84\x6a\x2e\x5a\x81\x03\x27\x07\x70\x1b\x31\xc8\x4d\x9d\xdb\x05\x83\xfa\x16\xf8\x8d\x53\xfa\x86\x68\x69\xd4\xda\xd8\xe7\x1c\x8b\x8e\x5b\x95\x46\x91\x3f\x97\x51\x08\x54\x3f\x62\x34\xd5\x43\x3b\x29\x31\x4f\x33\x7a\xc7\x44\xb4\x23\x59\xc2\xcc\xf4\x70\x14\x5a\x8e\xf2\x08\x65\xd7\x9e\x40\x85\x7a\x05\x7b\x7d\xe3\x11\x3d\x47\xb0\xa5\xf5\xdf\x34\x60\xeb\x3f\xbb\x92\x50\x38\x2a\x27\x0c\xbc\x85\x23\x82\xbe\x59\x68\xfc\x19\xf8\x0b\xe3\x14\x54\x8e\x52\x67\x32\x9a\x2d\x9a\x9c\x86\xb7\x28\x7a\xc9\x6d\x34\x9b\x3c\x27\xcb\x51\x75\xa1\x6c\xac\xa0\x16\x50\xa7\x7d\xb3\x0a\x8d\xbe\x35\xc9\x21\x96\x6e\x60\x63\x06\x36\xe6\x1f\xcd\xc6\x34\x6f\x70\x5b\x34\x1d\x7e\xba\x70\x10\x41\xbf\x79\xa9\x8d\x83\x01\x14\xea\xbe\xe3\xcd\x99\xda\x8d\x4d\xf8\x84\xbe\xe4\x6a\x6e\xda\x30\xa7\x39\x95\x62\x36\x1e\x45\x58\x92\x0b\xe1\xd4\x6c\xb7\x51\x7a\xdd\xe5\xb7\x1f\x26\xe7\x9d\xb3\x2d\x9b\x9a\xb9\xc2\xbf\xb5\x32\xd7\x3b\xb9\x1e\xc3\xcf\x54\x93\x7e\xc3\xab\xa6\x66\xd3\x34\x5a\x84\x92\x50\x9f\x32\x8b\x22\x49\xc5\x0d\xa3\xa1\xcb\xe2\x53\x65\x25\x2b\xad\x8b\x44\x39\xba\x72\x70\xca\x57\x02\xb8\x64\x91\x95\xfd\x92\x0d\x5f\x55\xe2\xc6\x6b\x73\x93\xf0\x19\x8d\x74\xf0\x5c\x2c\x05\x78\xba\xa5\x79\xb0\x56\x8c\x1f\x56\x46\x41\xad\x58\xa1\xcb\xbe\xa7\x5c\xdd\xf2\xa5\xf4\x28\x1b\x21\xa9\xaa\xc1\x50\xbe\xda\x65\xa4\xcb\xb0\x00\xf5\x37\x45\x67\x10\xd4\xf7\xd8\x8c\x84\x2c\x88\x68\x02\xda\x34\x1e\xac\xcd\xd7\xd6\x59\xb6\x22\x24\x20\x91\xe3\xa0\x55\xfa\x44\xce\x0f\x6a\x90\x3c\x7b\x02\x05\x38\x81\xad\x29\x14\x9a\x2d\x9a\x9c\x9f\x63\xae\x75\xce\xaf\xd9\xe4\x17\xe3\xfc\xf0\x96\xed\x95\x4b\x01\x3e\x19\xb8\xbe\x81\xeb\x1b\xb8\xbe\x7f\x34\xd7\xd7\xc4\x3f\x5d\x39\x14\xf0\xbe\x3f\x36\x8b\x42\x14\xc9\xfb\xc9\x74\x32\x9d\x52\x48\x12\xfe\x2e\x91\x9b\x1f\x4c\xf1\xfe\xee\xd4\x0a\x6d\x5f\x9b\xfc\x9e\xa5\x49\x0a\x66\xea\x22\xf2\x3a\xce\x28\x24\x94\x24\x39\xd6\xcc\x09\x13\x19\x13\xd5\x35\x61\x22\xa0\x71\x8a\x69\xca\x8a\x84\x70\x18\xef\x64\x86\x72\xf5\x59\x06\xa9\x42\x01\x85\xbd\xa3\x54\x01\x32\xdf\xff\xfe\xf2\xf4\xea\xf1\xa0\xf1\x7e\xfe\x04\xb0\x81\xbe\xff\x61\xc0\xb9\x4f\x6f\x93\xe0\x3c\xcd\xce\xd6\x2c\xb8\xeb\x04\xc6\x2d\xcb\xb4\x15\x6e\x64\xa5\xf1\x1b\x41\x0e\x54\x22\x05\x39\xfd\xe1\x96\x5c\x9c\x7d\x56\x78\xed\xa5\x63\x72\xaa\xf9\x19\xd7\xec\xb7\xd5\x14\x09\x18\xba\x31\x3f\x38\x97\x57\x32\x5b\x43\xf9\xba\x23\x32\x3f\xd0\x41\xcf\x26\x34\x53\x17\x62\x0c\xe7\x07\x1d\x09\x3e\x8a\x6e\x5c\x50\x61\x22\x77\xd5\x1d\x19\x95\x5f\xb9\x5e\xe2\x54\x9c\x9f\xe1\xac\xf6\xe3\xf3\x17\xf1\xf2\x4c\x0a\xc1\x82\x6c\xc6\x37\x56\x98\x09\x17\xab\xbe\xf1\xe1\xdf\x4c\xdf\x75\x74\x81\xce\xac\x5c\x90\xa2\xba\x95\x0b\x58\xee\x73\x6c\x52\x15\x16\xfc\x86\xc0\x02\x4b\xa3\x8c\x6f\x18\x51\xa7\x92\x2c\x4c\x0c\x8f\xd7\x5a\xaf\x3f\x73\x7c\x03\x52\xa2\x56\xd4\x16\xe6\x6a\x48\x6f\x59\xa9\xbb\xe5\xea\x34\xa9\x57\xf0\x36\xd5\xa6\x75\x9a\x11\xc2\x37\x71\x22\xb7\x9a\x65\x89\x59\x02\xc2\xb7\x08\xe0\x88\xc5\x32\x1c\x65\x72\xd4\x16\x60\x59\x2c\x35\xc5\x85\x61\xf8\x51\xc2\x68\x8a\x1e\xc4\xa6\x28\x25\x07\xc7\x00\x35\xf7\x90\x2d\x72\x4c\xb9\x12\xe7\x49\x2c\x53\x75\xf8\xdb\x0f\xe8\xa3\x82\xee\x17\xf1\x52\x09\x7c\x93\x25\x0d\xd8\x54\x27\xad\xe8\x38\x24\xdf\x4c\xdf\xd5\x3f\x41\x7e\x22\x61\xc0\xe5\x12\xf6\xa0\x18\x02\x60\xf4\xb0\x54\xbd\x3e\x0c\x4e\x34\x06\x82\x54\x91\x52\xd4\x08\x83\x9a\x8f\xa3\x59\xa6\xf6\x45\x1d\xb5\xa2\x64\x3a\x64\xbc\x24\x32\x09\xc1\x4b\xca\x09\x6d\x9a\x05\x6b\x2b\x47\xe8\x71\xc1\x7e\x98\x3c\xa0\xda\xc0\x21\x18\x0b\x53\x4c\x2d\x0a\x5f\xd8\xc9\x4d\xdd\x92\xac\x5a\x8e\x09\x82\xd5\x88\xb4\x44\xaf\x91\xbc\x4f\xb1\x76\x7e\x2d\xe0\xb5\x47\xa7\x6b\x2a\x42\xb5\xff\x22\x90\x1b\xe0\xc0\xca\x0c\xa7\x42\x86\x2c\x96\x49\x96\x6a\xe7\x1c\x7d\x30\x61\x51\x32\xcf\x52\xee\x4e\xd1\x60\xeb\x77\x08\x99\x14\x82\xb5\xe2\xa3\xca\xf5\x16\xab\xb0\xb6\xe0\x65\x9e\xe6\x34\x8a\x9c\xbe\x74\x4a\x12\x09\x41\x0d\x34\x1e\x8f\x5f\xed\x69\xaa\x51\x87\x0d\x0f\xfa\x07\x61\x95\xed\xea\x81\x94\x1c\x9f\x41\xe9\x39\x9d\x7b\xe2\xc8\x1c\x1b\x96\xe1\x0d\xbd\x53\xf7\x38\x1a\xe7\x56\xfb\x8f\x8b\x78\xf9\xd1\xa4\xd3\x75\x2d\x2d\xdd\xa5\x41\x16\xd9\xb7\xd1\xfe\x1c\xbc\xc8\xe4\x52\x9d\x45\x73\x7c\x98\x48\xb5\x2f\x3e\xcd\x2a\x6d\x5d\xbd\xe7\xa9\xae\xfa\xa0\xe0\x6f\x4a\xc2\xc0\x49\x3a\x3c\x4c\x11\x99\xd2\x18\xb7\x58\x37\xe2\x22\x55\x32\x0c\xa4\x69\x22\xf2\xde\xe9\x14\xd9\xbc\x19\x6a\x17\x99\x0e\x60\x2c\x07\xf8\xe4\xe4\x1c\x8b\x78\xb9\x07\x0d\xb9\x30\xdb\x52\x6e\x91\xde\x21\x60\x5b\x4c\x28\x82\x9a\xbd\xe2\x91\xe3\x88\x0a\xb7\x1b\xf3\xa7\x32\x24\x6a\xda\x0f\xd9\x4c\x9a\x08\x71\x29\xc4\x86\x26\xdd\x9c\x89\x5a\x83\xe3\xbb\x0a\xdd\x33\x78\x8d\x50\xf2\xf9\x67\x0b\xee\x36\x79\x62\x29\x04\xf4\xf7\x4a\x59\x46\x50\xe8\x36\xc4\x00\x2f\x31\x15\x84\x99\xb8\x61\x94\x89\xd0\x0f\x12\x73\xb5\xba\x4e\x2a\xce\x6a\x6c\x52\xad\x27\x77\xc8\x96\xa6\x24\x37\xce\x53\x30\xb1\xb5\xbc\x27\x31\xb2\x99\x28\x15\x20\x32\xd6\xa3\x3b\xd5\x6a\x09\xc3\x40\x95\xd0\x8a\xcc\x47\x1a\x6a\x1c\xc7\x14\x91\xc5\xdc\x8a\x70\xda\xe2\xc4\xc4\x4a\xdc\x4c\xdf\x39\xb1\xb1\xe2\xe6\xec\xf3\xf7\xda\xbf\x8b\x9e\xe0\x1c\xdc\x45\x00\x90\xde\x90\xf7\x3d\xa2\x42\xf4\x26\xd6\x3f\x73\xee\x61\x0a\x4b\xb3\x76\xc6\xb5\x12\x1b\xe3\x56\x8c\x65\xe0\x06\xaf\xd1\xf2\x4b\xed\xa2\x6f\xf0\xb5\x95\xec\xc0\x19\x41\xa3\x20\xbe\x94\xc9\x3d\x4d\x42\x4c\x47\xae\xbd\x0d\x0b\x3e\x5d\x21\xef\x25\x9c\x1d\xa8\x19\x3d\xcb\xa1\x32\xe3\x01\x7a\xb7\x2e\x64\xe6\xf4\xf2\xd4\xc2\x33\xcc\x20\x61\x69\x2c\x45\x5a\x66\xcd\xe6\x29\xc9\xa0\x17\x1c\xb0\xe6\xe2\x08\xe3\xb9\x4f\x9d\x9e\xc2\xf9\xed\x8d\x62\xa5\xf1\x3b\x1c\xc7\xd5\xf5\x22\xcf\x74\x9b\xea\xf8\x1e\xfd\x7e\x5a\x56\x30\x8d\x76\x4e\xe7\x4b\x35\x33\x61\xc6\xd7\xfb\x57\x36\x71\x52\x2b\x70\x69\x8d\x63\x46\xb1\x96\x84\x41\x3c\x93\xa9\x91\x92\x39\x86\x8a\x43\xcb\xdf\x18\xbd\x13\xb0\x90\x29\xa1\xae\x2e\x63\x96\x6c\x78\x9a\xf2\x2d\x23\x97\x9f\x59\x0c\x45\x79\xbe\x71\x87\xf6\xcd\xe7\xb4\x88\x97\x8a\xfd\x9c\x26\xf2\x61\x77\xa1\xb5\x24\xb7\x91\x3a\x52\x3d\xf1\xee\x37\xd3\x77\xed\x1d\xb8\x0f\xbe\x9b\x29\xb3\x98\xf6\xc3\x94\xb0\xcd\x82\x85\xea\x78\x42\xba\xfa\x58\x8d\xa0\x15\xcb\x29\xa9\x0e\xa5\xd3\xb5\xef\xab\x86\xb7\x17\x3f\x89\xb1\x22\xde\x99\x6a\x98\xc7\x7b\x50\x9d\x8e\x2e\x2a\xd4\x08\x61\xe1\x44\xd9\x00\x1e\x8b\x5a\xc5\x89\x44\x65\x7e\xb4\x23\x81\xea\x91\xe4\x18\xed\x97\xc7\x69\x96\x30\xba\xb1\xe5\x86\x12\x42\x87\x87\x6e\x97\x6e\x3d\x37\x12\xac\x29\x07\x71\xe0\x16\xf9\x32\x93\x90\xa0\x98\xe1\xd2\x06\xb7\x76\x17\xd6\x46\xb0\xe7\x12\x05\x0a\x08\xbe\xe7\xe2\x76\x27\x82\x29\x94\xbe\xde\x0b\xf6\x95\x2f\x8f\x3c\xc8\xb6\x51\xc2\x58\x83\x1e\xd3\xbb\x11\x10\xed\x8c\x83\x3a\x2a\xfc\x0a\xc5\x6d\xc1\x2f\x94\x1a\xea\x43\xeb\x88\xba\xba\x2d\xc1\x38\x26\xe4\x52\xde\xb3\xc4\xa8\xca\x56\xea\x1a\x27\x2c\xcc\x03\xcc\x82\x36\xca\x63\xd0\x0c\x8b\x40\x35\xfd\x8e\xaf\xd6\x45\x5b\x37\x96\x55\x5f\x1a\xcd\xfa\xf4\x03\xc9\x53\xba\x62\x8a\x16\x2e\x14\x83\xad\x48\x64\x1e\x93\x8d\x4c\x10\x9d\x57\xb0\xc4\x9b\xf4\x11\x18\xe2\x52\xae\x2e\xd9\x96\xb9\xc2\x77\x1a\x3b\x62\xda\x56\xa0\x0e\xd9\xeb\x20\x2d\x7e\x91\x6a\xd5\xe2\x20\x3d\xb8\xa0\x10\xf7\x4b\xd8\x6f\x10\x1d\x5f\x1b\x1d\xcb\xf5\x72\x89\xda\x95\x89\x58\x4a\xf5\x2f\xd4\xad\x28\x19\x76\x7e\xe0\x97\xe5\x23\xb9\xc2\x24\x21\x0c\xeb\x32\x9b\x4d\x56\x83\x65\x09\x0d\x18\x89\x79\xcc\x8e\x8c\xb5\x4f\xf1\xe4\xc0\xd7\xa2\xfa\x00\x8a\xe9\xb8\xba\x9d\x1f\x64\x01\x54\xe0\x51\x30\x43\x49\xba\xa2\xde\x21\xd7\xcb\xe5\x9f\xc6\x7b\x82\x1f\xee\xeb\x04\x78\xf2\x5e\xdc\xc7\x59\xb5\xbd\x4f\x25\xb2\x96\xf2\xce\x96\x59\x3c\x68\x23\x93\xf1\x08\xf7\xad\x86\x40\xd4\x69\x43\x49\x41\x1d\x37\xad\x0c\xd4\x06\xf5\x4c\xc6\x7a\x9b\xdd\x8c\x19\x05\x41\x1a\x22\x93\xe2\x98\x89\xb0\xd9\xc3\x42\x66\x99\xdc\x8c\x8d\x2c\xa2\xed\xe2\x29\x5d\x16\xf9\x72\x9d\x9c\x02\x17\x01\xe8\x32\xe2\x84\x6d\xc1\xd4\x5b\x4a\x3a\xaa\x77\xcd\xf7\xa2\x1b\xe2\x62\x17\xd3\x34\xd5\xb9\xa6\x76\x32\x27\xe9\x3d\xcf\xdc\xb1\x2b\x8a\x2b\x86\x89\x6a\x7c\xb2\xd0\xe5\xcd\x0a\x0f\x02\x0c\xa4\xc3\x21\x4c\x04\x2d\x42\x09\x0d\xd0\x4e\x06\x0c\x08\x19\xe8\x72\x16\x3b\x25\x66\x44\x68\x01\x49\x64\xbe\x5a\x9b\x03\xa9\x65\x7e\xe8\xf9\x08\x87\xb9\xd7\xa9\xaf\x5c\x7d\xea\xe6\x58\x1e\xa1\xa8\xb1\x51\xae\xb4\x3c\x89\x08\xd8\x7d\x51\x41\x71\x11\xb1\x30\xe6\xde\x3e\xa5\x8b\x7c\xa5\x25\xea\x4b\xb9\x3a\x4f\x24\x54\x2b\xf0\xf6\xe2\xa1\x17\xd0\xcd\x7b\xb6\x91\xc9\x6e\x9a\xc8\x25\x8f\x98\xa3\xd6\x66\xaf\xb9\xdc\xf2\x0d\xa8\xaa\xcf\x68\x14\x7c\x9b\xd0\x78\xfd\x1d\x15\xab\xd3\x65\xf6\xb8\x95\x99\xde\xce\x0d\x90\x1e\xdf\x1b\x6c\x92\xe1\x70\x66\xf2\x3b\x99\x66\xa7\x20\x1f\x74\xde\xfe\x73\xff\xb7\x36\x26\x00\xcd\x8f\x3a\xd2\xa9\x47\x97\x55\xe8\x81\x54\xd3\x95\x34\x57\x87\x96\x8a\x9b\xd2\xa4\x56\x56\xd2\x27\x3c\x4b\x59\xb4\x24\x2f\xe9\xd2\xe3\x50\x03\xe8\x41\xf7\xbd\xe6\x5a\x6b\x52\x74\xc5\x90\x29\xc6\xf3\xfb\x6a\x4c\xbe\xd9\x15\xf1\x4b\x67\x8d\xca\xc9\xe6\xd1\xf9\x9d\x9c\xd6\x86\xa2\xeb\xd4\x35\x4d\xc0\xe9\xee\xa8\xcf\x02\xdb\xfd\xfc\xd3\xff\x9c\xdf\x5c\x4f\x7f\xfe\xe9\xef\xe0\x5a\x21\x45\x81\x2f\xee\xa9\x16\x98\xa1\x6e\x58\x2a\x37\x8c\x60\xb1\xfb\x36\x81\x03\x66\x67\x83\x4e\xcd\xe7\x08\x65\x1c\x88\x52\xa4\x09\xdd\x30\x2d\xdc\xdd\x5c\xcc\x3e\xdc\x5c\xa9\x5e\x4f\xcf\xce\x2e\xa6\xb3\x31\xf9\xe0\x4e\x78\xa7\x1b\x72\x9c\x18\xc4\xa5\xed\x64\x0e\xda\x9b\x2a\x56\xb2\x97\x35\xb9\x9a\x7e\x98\xa9\x75\x01\xaa\xfa\x4d\x0b\x3e\x01\x44\x62\x50\x71\x66\x70\x69\x1d\xd9\x2b\x21\x5f\xf5\xa4\x03\x20\x7f\xfe\xe9\x7f\x70\x5a\x3f\xff\xf4\x77\xa7\x40\xa3\x15\x04\x7a\x5f\x1a\x13\x22\x52\x23\xf3\x35\x4d\xc1\x7b\x07\x3d\xcd\xe3\x44\x1a\x0f\x1c\xb3\xc9\xae\xde\xdd\x47\x0a\x00\xa8\x81\x09\x72\x99\x28\x7c\x4e\xa0\xfe\x10\xe2\x64\x33\x35\xef\xfe\x15\x32\x32\x81\x73\xee\x9a\x93\x6f\x02\xed\xca\x26\x85\x12\xf7\xc6\xc9\x6c\xcb\x03\x76\x23\xf3\x4c\x31\xc2\x90\x12\xb9\x3b\x6c\x98\xa7\x15\x5f\x08\x50\xbd\x94\x19\x95\x69\xa8\x75\x02\x9a\x41\xdb\xb0\x50\x0f\xe3\xe4\x46\x21\xc1\xc8\x91\xa2\x62\xe6\xb2\xc2\x51\x36\xe4\xe7\x66\x36\xbd\xb9\x9e\x7d\xfc\xe6\xfa\x7a\x86\x5c\x5d\x59\xdd\xcb\x2b\xaf\x79\x14\x32\xd6\x5a\x6f\xf7\x09\x47\x9c\xe9\xec\x10\xcd\x20\x3e\x23\x9d\x4b\xb1\xcf\x62\x2b\x98\xc9\xd1\x29\x4f\x2b\x25\xcc\x22\x46\xb7\xda\xbd\xc1\x29\x27\x00\x03\x06\x0a\x34\xac\x47\xe9\xe8\x31\x77\xa7\xbc\x6d\x3d\x18\x48\x69\xcf\xa4\x10\x8a\xa7\xbd\x9b\x08\x48\x80\xe0\x33\x91\xb6\xd2\x5c\x73\x9a\x6f\xc0\x22\xc0\xc5\xea\x9c\x45\xd4\xe5\xd2\xd7\x36\xa1\x46\x27\x7e\x19\xbb\x7d\x32\x5a\xb9\x76\x25\x43\x96\x5e\xf2\xb4\xd3\x8d\xee\xc2\xfe\xe0\x6c\x72\x7e\xa3\x3e\xaa\x56\x2b\x50\xbf\x1e\x82\xb6\xd2\xf4\x3e\x12\x52\x8c\xac\x02\xb6\x2d\x66\xa4\x0d\xdd\x99\xfd\x42\x2d\x54\x41\x8c\x40\x79\x89\x69\x4c\x98\xa5\xfc\xd2\x6f\x3d\xe9\x27\xb5\xa9\x59\x21\xd8\xa0\xcc\x21\xb3\x5f\x02\xc0\xf6\xa4\x0c\x2d\x79\x18\x97\x94\x47\x8a\xcf\x9e\x88\x85\xcc\x45\xa8\xd8\x87\xa9\x4c\xba\x33\x62\x1f\xbe\xf3\x7c\x58\x85\xf3\x87\xf3\xe9\xf1\xec\x6c\x8a\x8a\x4a\xe7\xea\x05\x66\x9b\xd6\xe6\x0d\x4b\x1f\x82\x74\xd6\x65\xa9\x02\x9a\x5e\x50\x7a\x57\xaf\x52\x10\x9e\x24\x2c\x8d\x19\xd6\xb9\x2e\xd3\x89\xe4\x90\x4f\xdd\x90\x07\x83\x28\x74\x4e\x0c\x45\xdd\xb7\x92\x3b\x29\x0c\x0d\x02\xc8\xf8\x03\x84\x23\xc8\x31\x65\x92\x5c\x2e\x09\xc5\xf9\x00\x73\xa1\x66\x9b\x24\x2c\xc8\xea\xa5\xae\x3c\xc9\x91\x17\x34\xb8\x1b\x55\x22\x9d\x8e\x74\x7a\xc8\x12\x3b\x9b\x08\xee\x32\xb3\x0f\xcf\x0c\x32\xf2\xf9\xc1\x2a\xc9\x34\x56\xb2\xe8\x44\xcd\x0f\x92\x36\x3a\xbb\xb1\x00\x6d\xf3\x53\xce\xf5\xa3\x1f\x88\xc2\x4e\x0a\x21\xce\x4a\xf3\x15\x05\x6e\x01\x4e\x01\x82\x02\x36\xfb\xa8\xd0\x82\x7a\x63\xb2\x85\x14\xba\x82\x60\x68\x87\x6f\x1b\x23\x43\x9a\xae\x8d\x05\x4b\x9d\x92\xf3\xef\xce\xa6\x15\xfb\x52\x10\x9f\x7c\xf6\x99\xd3\x2d\x20\x0f\xe3\x93\xb7\x5f\x1d\x41\x93\x37\xbf\xfe\x1a\xff\xf1\xd9\xe7\xe5\xbf\xbe\x7a\x8d\xff\x7a\xfb\xc5\x17\x9f\xeb\x7f\xbd\x7d\xfb\xb6\xf8\xd7\xaf\x5d\x44\xb9\x77\x66\x76\x99\x49\x53\xc7\x20\x90\x9b\x85\x76\x37\x01\x0b\xbe\xde\xd3\x23\x00\xd1\x51\x71\xf8\x3d\x99\x69\x4e\x15\x6f\xb9\x4e\x58\xe9\x6c\x52\x66\x19\x70\xb2\x58\x9d\x95\x48\x98\x5b\x8f\x47\x7a\xa5\x75\x89\xdd\x65\x1c\xec\xcf\x3d\x74\xbc\x98\x9e\x8f\x5d\xe9\x37\x85\xd6\xc4\x2c\x23\xb5\x3a\xf7\x0b\x5f\x0e\x94\x51\x31\x25\x3f\x4a\x7d\x44\x6a\x5b\x83\x52\xaf\xf3\xec\x91\x38\xb5\xf1\xe5\x13\x23\x55\x99\x67\x2b\x69\x23\x55\x60\x73\xbb\xd1\x6a\x26\x07\xb4\xfa\x8b\xa2\x55\xa9\x0f\xc2\xd3\xe0\x55\x09\x0a\x00\x96\x05\xe1\xe1\xa1\x55\x0f\x09\x8d\x88\x99\xd4\x8e\x06\xde\xb8\x5a\x3c\x46\xa1\x64\xb8\xe4\x15\xcb\xd4\x86\xc1\x66\xa1\x98\x9b\x05\x61\xc5\x25\x45\x01\x40\x6d\xa7\xc2\xdc\xbe\x3c\xfb\xe7\x57\xb7\x75\xa4\xbe\x0f\xc6\x76\x6e\x94\x46\xe2\x47\x40\x07\xbe\xfc\x1c\xff\x3b\x20\xf5\x01\xa9\x7f\x0a\x52\x67\x34\xcb\x13\x76\xce\x32\x16\x64\xd7\x5b\x96\x24\xbc\x5b\x39\xff\xce\xf5\x91\x5d\x13\x5c\x9a\xdf\xa0\xfa\x29\xb6\x76\x1f\xc6\x8c\x69\x6d\xd4\xf7\xba\xb2\x5a\x62\xd7\x6b\xe1\x82\x50\xb4\x54\x90\x94\xc5\x14\xd3\xe5\x00\xb9\x00\xfc\x29\x9c\x8a\x34\xc8\xea\x97\x1e\x11\xf6\x40\x37\x71\xc4\x7e\x43\xe6\x07\xb7\x57\xa7\xb3\x77\x79\x14\xed\x6e\xa8\x08\xe5\xe6\xb7\x50\x8a\xf6\xfd\xe9\xed\x7f\xda\x3f\x82\x8b\xcc\xd1\x0d\x83\x68\x9d\xdb\x3c\x06\xfc\x71\x29\x83\xbb\xdf\x7a\xaa\x81\x15\x89\x45\xc1\x5a\x03\x9f\xcf\x0f\x10\x49\x2e\x25\x7a\xfd\x17\xab\x3f\xc2\xec\x52\xaa\xa9\xd4\xc6\x1a\xbf\x61\x0c\x8a\x48\xe4\x99\x1c\x21\x7c\xf6\x16\x99\x21\xb5\x10\x0f\x7e\x7f\x3e\xed\x6b\xfe\xfd\xb6\xfe\x85\xb6\xa3\xa6\x44\xbf\x21\xbf\x3f\x9f\x92\x54\x96\x25\x6f\x69\xe2\xf6\x81\x06\xca\x1c\x4a\x71\x78\x98\x91\x14\x81\x08\xdf\xca\xe5\x12\x14\x4a\x32\x21\x21\x68\xdd\xc1\x08\x81\x85\x68\x14\xe6\xff\xfd\xf9\x14\x09\xac\x53\x8d\xa9\xcd\xb7\x4c\x9d\x05\x26\x42\x16\x96\x46\x12\x85\xb8\x61\xb4\x38\x91\x5b\x75\xe6\x16\x2c\x03\x6d\x56\xe9\x65\xea\x99\xa7\x28\xf4\x88\xe3\x4f\xf6\x94\x5a\x33\x1a\x65\x2d\x75\xa4\x7a\x7c\xac\xb8\xa2\x3d\x55\x11\xf8\xa1\xa7\x0e\x59\x2b\x96\x2b\xfc\x15\x2f\x1e\x82\x28\xef\x61\x8f\x9b\xd4\x3e\x40\xd6\x0d\xee\xe6\xa8\x76\x37\xe5\xb2\x8f\xcb\x66\xc5\x53\x95\xe9\x4e\x41\xb1\xb6\x91\x82\x67\xb2\xc8\x98\x51\xe5\xdf\xc6\x3e\x63\x68\x95\x27\xa8\x38\x17\x6a\xef\xe9\x95\x90\xea\xa7\xd2\xdd\xe0\xf0\x90\x4c\xa6\xdf\xdf\x92\x30\xdf\x6c\x9c\xee\x9a\xc5\x32\x8e\x8c\xa7\xad\xc6\x71\x26\xd2\x29\xda\x91\xc5\xae\x62\x21\xaf\x6a\xd5\x9d\x3a\x5d\xbd\xd6\x4d\x1e\x65\x3c\x8e\x2c\xa7\x59\x5d\x30\x32\x4f\xd1\x92\xa8\x0b\x19\xe8\x60\x2a\x30\x3f\xf3\x66\xd0\x15\x81\xa0\x1f\xc4\x56\x0e\x1f\xe2\x14\x4b\x26\x39\x5e\xc0\x3c\x81\x58\xdf\x27\x34\xf6\x59\x39\x10\x9c\x80\x6e\x0f\x0f\x8f\x0f\x0f\xb1\x3b\x8d\x5b\xc9\x1a\x35\x82\xda\x1f\xe0\xf0\xf0\xf8\xbf\x14\x2c\x8e\x8f\xb6\x2c\x5b\xbf\x39\x74\x66\xdb\x04\xfc\x68\x60\x80\x32\x76\xe1\x3a\x0b\xbb\xb5\x60\x2b\x2e\xcc\x88\xaa\xbb\xc3\x43\x4c\x62\x17\xa5\xd2\xa7\x7b\x2c\x41\x78\x78\xa8\xc7\xb6\xef\x34\x6c\x10\x8f\xb7\x69\x8b\xf3\x9c\xfb\x86\x15\x1d\x63\x65\xb2\xfe\xd7\x04\xdb\x1b\x6d\x6d\x75\x8b\x75\xad\x36\xed\xd9\x68\x2a\x2f\xb9\x35\x73\x4d\x0b\x10\xb8\x31\x03\x3f\xad\x84\x8a\x9c\xa7\x6b\x54\x7f\x6f\x1c\xe2\x4e\x2b\xac\xd2\x31\xb9\x92\x19\xe0\x08\xc2\xc4\x96\x27\x52\x60\x05\x38\xa9\x93\x95\x52\x41\x16\x8a\x16\x6d\x58\x46\xa3\x23\x9d\xa2\x3b\x58\xb3\x34\x4b\x68\x26\x13\xe7\x84\xed\xcc\x73\x0a\x45\xc4\x8a\xd1\x4b\x38\xcd\x58\xb4\xab\x9e\x1d\x99\xdb\x95\x4c\x50\x17\x22\x83\x3b\x4f\x04\xbb\x42\x63\x3a\x2a\x54\x9b\x99\xd4\x5e\x07\x34\xe2\x87\x87\x76\xbc\xa1\xea\xf5\x3a\x66\xe2\x36\xa3\xc1\x9d\xfd\x99\xf3\xde\x18\x87\xe7\xc3\xc3\x8c\xc6\xa6\x23\xfb\xe4\xa8\x01\x1e\x7d\x66\x6e\xd8\x32\x61\xe9\x1a\xce\xc4\xd6\x99\x35\xb6\x72\x78\x26\x9e\xef\x8a\xca\x91\xe0\x14\x44\x68\xa6\x91\x91\x37\xb8\x29\x61\x69\x40\x45\xaa\x13\x53\xda\xf7\x4b\x92\x2d\x4b\xf8\x72\xa7\xdd\xa2\x21\x7f\x0e\x8a\x54\xf8\x8d\xae\x0b\xe7\xc4\xaf\xda\xf7\x5b\x21\xbc\x54\xa7\x56\x2f\x8e\xf6\x16\xa3\xd3\x5f\xef\xc9\xa8\xf0\x98\xb7\x78\xa8\xb5\xd2\x4c\xf5\xe9\xfb\xd9\x87\xee\x0b\x39\x9d\x4c\xdf\xcf\x3e\x18\x18\xaa\x7f\x82\xbf\x29\xf8\x12\x97\xea\x6c\x6d\x2b\x19\x93\x5b\xe6\x76\x49\xd0\xc7\x5a\xad\x5a\xf5\x61\x79\x22\x7d\xf1\xc5\xfe\x2e\xb9\x3c\x56\x47\x6f\xcf\xf3\x71\x38\x71\x7d\xd5\x7a\x3a\x48\xc2\x30\x1e\xcc\xcd\x67\x46\x96\x3f\x0c\x9c\x85\x9a\xb8\x4c\x84\xd4\xc8\x40\xdb\x06\xc1\x8a\x69\xeb\x36\x9c\x6a\x8a\x44\xde\x31\x51\x77\x5a\x81\x84\xfc\x70\x48\x2a\x11\x3b\x66\xf8\x04\x57\xd5\x11\x45\xf6\xf5\xeb\xbd\xfd\xbe\xcc\x08\xdf\xd0\xe0\x8e\x35\x82\x7b\x1b\x40\x9e\x54\x9b\x17\xc2\x88\x49\x5a\xb0\xd0\xbf\x2b\x26\xc7\xcc\x5d\x91\x34\x27\x20\x18\x1a\xbc\x2a\x3a\x0b\x30\xaa\xad\xa8\xd3\x88\xda\x67\x1d\xef\x78\x94\xb1\x04\x02\x21\xbd\xce\x14\x7d\xfa\x51\x92\xcd\x3b\xbf\xd7\x49\xfd\xe4\x35\x3f\x2a\x2b\xba\x06\x85\xd2\xc0\x36\xce\xbb\x20\x02\xb9\xd4\x96\x3c\x62\x63\xf2\x07\xc5\x7d\xd0\x1d\x44\x11\xa1\xd1\x90\x8a\x95\xa6\x1a\x5a\xa9\x55\xb4\x36\x02\x00\x77\x3b\x39\x64\x96\xd6\xa7\x98\xcd\xcb\xa5\x45\x6b\x6c\x97\x82\x0d\x8d\x63\x86\x51\x69\x22\x93\x85\x0f\xa4\x87\x98\x65\x94\x0b\x96\xa8\x6b\x45\x49\xc8\x97\x98\xf2\x9c\xc4\x34\x5b\xbf\xb2\xe9\xc4\x71\x92\x8b\xe3\x07\x2d\x4d\xa8\x79\x3f\xf6\x98\x2a\x08\x4f\x13\xb9\x60\x7b\x60\x05\xcf\x97\x66\x83\xc0\x1f\xb4\xa6\x31\x75\xf2\x1a\x98\x33\x04\xfd\x46\x69\x96\x29\x89\x15\x73\x4a\x07\xa0\xcb\xa8\xba\x5e\xc0\xe6\xf0\xa5\x8e\xb9\x13\xd2\xc9\x6b\xd0\x2d\xe5\x91\x6a\x3f\xae\x7a\x8e\x6e\xe8\x9d\x71\xfc\x04\xff\x4e\xed\xe4\xce\xb7\x5a\x04\x30\xbb\xef\x11\x06\xd5\xbe\x80\x18\x78\x04\x6e\xf2\x4a\x7e\x84\x6e\xce\xa6\x1f\xec\x4d\xf9\xf2\xf5\xe6\xd1\xe8\x42\x41\x73\xc6\x37\x4c\xe6\x9d\x76\xd9\xca\x0e\xe8\x6f\xda\x60\x0f\x80\x76\xad\xcc\x04\x5d\x56\x60\x0c\xce\xa0\xaf\x8f\x2c\xa4\x09\xea\x54\xd4\x96\xf2\xb4\x54\x30\x78\xd9\x01\xe0\xf1\xd3\x35\x75\xee\x20\x5c\x2f\xf4\x20\x8a\xa2\x2a\xb2\x6f\xc9\x45\x88\xbc\xb8\xda\x44\xb3\x53\x63\x4c\xc5\xad\x3d\xac\xcb\x80\x55\x25\x91\xd3\xf2\x22\x1d\x79\x93\x75\x17\x71\x03\xaa\x47\x75\x9d\x74\x34\x83\x4c\x8a\xb2\x09\x56\x30\xea\x46\xe6\x02\x33\x36\x6a\xc7\x1b\x2b\xeb\xb9\xab\x77\x99\x98\x16\x4b\x13\xd8\x8f\x13\xaa\x84\xd6\xa4\x05\x97\xf3\xd8\x63\xf3\x9e\x2a\x99\xed\xd3\xb1\xf3\x7b\x9a\xdc\xbd\xa7\x69\x77\xa8\xd5\xa4\xf6\x81\x39\x78\x1b\xf5\x6f\x5b\xd0\xd6\xb5\x31\xb8\xdb\x0a\x30\x99\xce\xf0\x50\xa8\x7e\xc8\x42\xa1\x54\xac\x49\x71\x5b\xa6\xe4\x31\x75\x68\xd7\xec\x81\x86\x2c\xe0\x1b\x1a\x99\x94\xdf\xea\x00\x39\xcf\x49\x46\x22\x46\xd3\x8c\x7c\x85\x7d\x42\x3a\x76\xa1\x63\xcb\x91\xa0\x06\x11\x4d\xd7\xc6\x87\x6d\xa7\x4f\xe0\xc6\xcc\xc2\x2d\x0b\x18\x5f\x17\xb0\xd2\xec\xd2\x8c\x6d\x2a\xdb\xf8\xb0\x5c\xbe\x86\xc7\xb5\x8b\x9f\x52\xe6\xc8\xec\xce\xd5\xe9\xec\x5a\xdb\x9a\x0a\xa6\x1d\xe9\xf2\x23\xb7\x7b\x2a\xd3\xec\x87\x84\x67\x0c\xdc\x5a\xf6\x46\xfd\xee\xcf\xeb\x9c\x21\x38\x79\x79\xb1\x84\xe2\xec\x42\xb5\x33\x94\xdc\xab\xae\x9a\x11\x03\x45\x8a\xa9\x60\xcd\x42\xf4\x9d\x83\xd0\xbb\x84\x92\x84\xb9\xfd\xd7\x16\x28\x84\x15\xf1\xc6\x18\xce\x86\xa1\xb3\x30\xc8\x3d\x45\xca\x1e\x44\x72\xb1\x60\x89\x29\xf4\x50\xc1\x43\xfe\x14\xab\xa9\x15\xfb\x21\x83\x20\x4f\x14\x41\x32\x5f\xd3\x38\x8e\x4c\x3e\xda\xca\x59\x29\x54\x86\x1e\xd9\x29\x66\x41\xd6\xc4\x94\xe3\x4f\x8a\x3e\x30\x5d\xed\xcf\xf2\x3b\xbf\x7b\x84\x48\xa8\xe5\x00\x13\xc0\x05\xa2\xaf\x76\xa7\xb4\xb6\xb8\x9d\xfd\xf7\x9d\x9b\x8a\xb5\x73\x1f\xf6\xdf\x5d\x41\x18\xe6\x56\x08\x04\xa8\xa3\xc8\x2c\x16\x1a\xe9\x24\x4f\xb5\x72\x4a\x71\xd4\xc0\x5c\x80\xc6\xc2\xa3\x21\xd2\xbe\xed\xd8\x69\x21\xb4\xa6\x98\x39\xf7\x5e\x26\x77\x34\x01\x8b\x24\x66\x2e\xbe\xe4\x22\x7f\x30\x1e\x6d\x8b\x7c\xe5\x25\x84\xea\xfc\x2e\xf9\x03\xda\x2a\x74\x7b\x93\xa3\xef\x8b\xf1\x9b\x37\x85\x42\x50\x51\x5f\x54\xec\x6d\xd5\xef\x8a\x20\xad\x12\x46\x3d\xfe\xc5\x3b\xcd\x1c\x1b\xe7\xdc\xc2\xb1\x36\x93\x47\x84\x92\xb5\x15\x5a\x83\x41\x8f\xd5\x48\x1a\x57\x97\x10\x5c\x53\x39\xc4\x8f\x91\xa5\xb6\x6f\xb5\x65\x64\x5f\x79\xfd\x2e\x5f\x40\x9d\x82\xa9\x4c\xb2\x1b\xc5\xe9\x77\xbb\x0d\xfc\xae\xf1\x09\x59\xcb\x28\x4c\x0b\x2d\x33\x18\x17\x12\x7c\x03\x6a\xd9\xa5\xdb\x6e\xae\xa3\x4b\x49\x19\x5b\x3a\x26\xd7\x0a\x67\xe4\xba\x6e\x2d\xf2\x04\x68\x6d\xb1\x83\xd0\xfc\x59\x13\x81\x0a\xf1\x78\x9b\xea\x58\x1e\x04\x7d\x8e\x3c\x13\x4b\x99\x99\x16\xec\x1d\x6a\xc7\xcb\x38\xe0\x36\x8f\x5f\x6d\x58\xb7\x37\xea\x73\x45\xca\x4e\x3e\xff\xec\xd7\x6f\x7f\xed\x0c\xbb\xf1\x1b\x7b\xa9\xd8\x5d\xbb\x2b\x67\x8d\xba\x8d\xa0\xa3\x4e\x1b\x67\xac\x33\x5e\x90\xff\x1a\xff\x1f\xd7\xfb\x87\x51\x59\x06\x6a\xc4\x45\x36\x92\xc9\x08\x7b\xb3\xb3\xef\x55\x56\xef\xb7\x54\x46\x72\xd5\x5b\x5c\xbd\x2c\xdb\x1a\x4c\xb9\xcc\xa3\x08\xc4\x36\x43\xd7\x70\xc7\x22\xb9\x32\x98\xc9\xb5\x02\x60\x55\x2c\x7c\x05\xdc\x72\x24\x21\xb3\x48\x45\xfc\xdb\xd2\xe4\x38\x92\xab\x63\x9b\xc9\x1c\x47\xd2\x99\xed\xa6\x0d\xac\x91\x5c\xf5\xd4\x34\x5f\x9a\x96\xa5\x1c\xbe\xaa\x28\x96\xad\x23\x89\x15\x14\x95\xc4\xe4\xdb\xca\xcb\xeb\x6f\x0d\x9e\xae\x2a\x3f\x03\x39\x42\x3f\xf2\x47\xac\xe4\x96\x6d\x59\xc2\xb3\x9d\xda\x8b\x3e\xeb\xb1\xdb\xdb\xab\x4a\xf5\xef\x84\x2e\x24\x48\x88\x8a\xd4\x45\x72\xd5\x59\x0e\xd2\x74\x80\x1a\x87\x72\x61\x13\xb1\x94\x9f\xb0\x9e\xdb\x20\x61\xac\x3b\x88\xe5\xb2\xfe\xc5\x93\xad\x29\xcd\x42\x99\x67\x4f\xb9\xa2\x5d\x37\x3a\xbe\xac\x34\x7f\xba\xb5\xec\x52\xeb\x12\x92\x2b\xa9\x63\x53\x85\x34\x17\x0d\x90\xa8\x6e\xd5\xaa\x1d\x7c\x0c\x10\x36\xf4\x01\xd4\xaa\xb7\xfc\x2f\xfe\x9c\xf6\x1e\x2c\x69\x92\xd4\x9d\x86\xce\xc2\x04\x55\xf0\xbd\xb7\x1a\x1b\xe0\xd9\x45\xcf\x12\x12\xca\x0d\xe5\x02\x2d\x44\xfe\xb8\x43\x48\x5f\x9a\xe8\x40\x15\x2a\x08\x15\xa9\xe2\x7d\xbe\x7f\x4f\xfe\x9c\xb3\x84\x33\xcc\x7f\x14\x44\x32\x0f\x47\x5c\xf0\xac\x98\x25\xe4\xfc\x2b\x4c\x23\x6e\x17\xa3\x35\x28\x57\x12\x54\xc7\x84\x45\x54\xcb\x86\x06\x6b\x2e\x58\x21\xdd\x0b\xb9\xa5\x23\x1a\x73\xf2\x52\x26\x8a\x10\x7e\x58\xe4\x22\xcb\x9d\x5d\x9a\xa6\x23\x33\x8d\x57\x63\x72\x6a\x1c\xb7\x96\x88\x60\x5f\x06\x34\x85\xe2\xa2\x4c\xa4\x3c\xe3\x5b\xf6\xca\x54\x32\x6a\x75\xd9\xb2\x32\xf2\x28\xfe\x28\x8f\x41\x80\xbc\x3a\x9d\x61\x0c\xa6\xd1\xa6\x98\x81\x01\xfb\x77\x9c\xa0\x37\x9f\xfd\x7a\xfc\x7a\xfc\x7a\xfc\x66\xef\x63\xa4\x07\xf1\xd8\xe2\xdd\x47\xc1\x78\x5e\x01\x27\xaf\xfe\xad\xf5\x1c\xc5\x8c\x71\xaf\xd1\x2f\xc2\x93\x28\x6c\xb3\xe0\x42\xa7\x1b\xd1\xb5\xb2\xc6\x95\x93\xf6\x92\x2f\x01\x42\x87\x87\xea\x66\x1d\x1e\xbe\x3a\xb2\x1c\x75\x3c\xcc\x37\x80\xb2\x00\xe4\x11\xda\x15\xdf\xbc\xfd\x7a\xfc\xd9\x97\x5f\x8c\xf5\x7f\x4f\xbe\x02\x46\xde\x1e\xeb\xc4\x5e\x97\x53\x68\x9b\x08\xb2\x51\x4c\x50\xa0\x0b\x5d\x94\x22\x9c\x9a\xa2\xd1\x04\x2f\x98\x56\x06\x87\x16\x82\xfb\xea\xd7\xbf\xfe\xb2\x25\xe8\xd8\x77\x43\xb3\x7c\x9f\xdc\x5c\xef\x67\x1f\x7e\x89\xbc\x5c\x60\x69\xab\x48\xc5\x34\x0a\x20\xe8\xb2\x50\x73\xb9\xf5\xd1\xef\x67\x1f\xc6\x15\xc9\xb7\xcc\x46\xd5\x96\x89\xea\xd3\xd2\x4e\x09\x9a\x19\x65\x47\xcf\x38\x25\x4b\x3d\x52\xaf\x23\x07\x3a\x83\x5a\xd0\x12\x70\x27\xda\x5d\xc7\xc3\x9e\xe8\xb0\x14\x75\x24\xe1\x5a\x9b\x7c\x29\x82\x50\x7b\x7e\x24\x96\x32\x2a\x12\x06\x75\xc4\x2b\x15\xc9\x47\x6a\x41\x50\x76\xac\x12\x9c\x80\x72\xc2\x5a\x8d\x50\x80\xd8\x8d\x43\x2b\xa9\x62\xcc\x24\xa4\x20\x2f\x39\x38\x2c\x19\x21\xa1\x54\x2f\xbc\x3f\xbd\xfd\xcf\x0f\x17\x37\xa7\xe7\x17\xba\x7a\xb2\x23\xd5\x4d\xc7\x0e\x15\x32\x92\x63\x6f\x7c\x52\x40\xa7\x0c\xd0\x25\x01\xd4\x37\xbd\x98\x84\xb5\xdd\x10\x97\x07\xbf\x69\x81\x2d\x2d\xf6\x47\x01\xd8\xa7\x06\x07\x74\xb8\xa1\x10\x59\x8d\x07\x24\x84\x0d\x2e\x5c\xbc\xaf\x4e\x67\x5a\xe5\x9c\x0b\xe3\x0f\xd0\x12\x53\xbf\x60\x6b\xba\xe5\xb2\xa8\x81\x6e\xfc\xd8\x52\x74\x13\xf0\x46\xa6\xb5\x8b\x38\xfb\x0a\x38\x82\x65\x11\x17\x2d\x76\x85\x36\x78\x83\x9b\xb3\x9a\xee\x0d\x5b\xf5\x89\xa1\xbe\xae\xb6\x37\x84\x46\x54\x4a\xf8\xae\x0a\x74\xa6\xe8\x63\x92\x71\x85\x87\x9c\xe2\x20\x62\xb0\xb2\xd2\x28\xb0\x13\x14\xbd\x98\x46\xba\x23\xd4\xf9\x1c\x97\xfe\x17\x21\x8b\x23\xb9\xdb\x30\xe1\xae\x6a\x0a\x14\xc0\xf8\x0b\x17\x9e\x23\x21\x44\x21\xaf\xe5\x3d\x9c\x04\x48\x2d\x89\x83\xbf\x5c\x33\x48\x53\x5c\x28\xad\x94\xec\x1d\xf9\xaa\x47\x72\x81\x72\xfd\x38\x58\xae\x4c\x35\x49\xcb\xcd\x45\xdd\x48\xe8\x3b\x90\x9b\x38\xd7\x39\x92\x5e\xe9\xa4\xd5\xb9\xdb\xcf\xaa\x4c\xfc\xf7\x47\x94\x8d\xfe\x54\xee\xca\x47\x0d\x03\x64\x6d\xac\xc5\x28\x96\x8e\xe5\x59\x22\xc5\x58\xfd\xea\x9c\xad\x9e\x0a\xa6\x69\x2a\x89\xde\xc5\x26\xce\x76\xfb\xb2\x22\x18\xad\x00\x59\x64\x68\xb6\xee\x29\x4d\x4e\x1d\x1f\xd9\x1e\xbd\x8b\x9d\xa9\x33\x00\x35\x08\x36\xb9\x80\x42\x59\x4e\xad\x00\xa6\x6d\x40\x12\x8e\x0e\xf8\x26\x3d\x9b\x49\xf3\x75\x44\x22\x7e\xc7\xc8\xa9\xa5\xa1\x8d\xe8\x8e\x25\xfd\xc2\x8b\x1f\x07\x95\x44\x6e\x58\xb6\x66\x79\xfa\xad\x7c\xcf\xb2\x84\x07\x7d\x33\x43\x1d\x4e\xbd\x9f\x1a\xbd\x40\x4a\xbe\x95\x8a\x39\x06\x6b\xdf\x06\x9b\xb8\xd9\xb5\x28\x42\x87\x67\xe3\x50\xa8\xce\x52\xd9\xbf\xc9\x5f\x07\xc1\x08\x65\x20\xf2\x11\x62\xc0\xd4\xed\x33\x9e\x49\xf4\x59\xd5\x9c\x01\xea\x02\xf5\x5d\x47\xeb\x8c\x5c\x9a\x49\x91\x04\x82\x56\x59\x78\x84\xed\x3c\xe4\xd6\x9a\x91\xe2\x29\x3e\x39\xfd\x61\x09\xfc\x47\x83\xbe\x06\x78\xe3\x9e\x5c\x83\x5f\x0b\xec\xb5\xdc\xc4\x85\xb1\x4d\x16\x59\xe1\xd4\x92\x3e\xdd\x03\xb8\xb1\x46\x8f\x3f\x6f\xc7\x02\xbf\x93\x69\x21\x13\xa0\xbd\xd3\x64\x67\x29\x9b\x3a\x51\x93\xde\x60\xbd\x4c\x53\x49\x83\x8b\x10\x70\x75\xb9\x3a\xf6\x69\xb7\x47\x4f\xb3\x97\x9c\xd3\x58\x9c\x2d\xf0\x98\x48\xaf\x27\x5f\xe0\xd7\xaf\xbf\x6e\x11\xdf\x3c\xcc\x4e\xb9\xc0\x29\x9a\x3a\x1e\x7d\x50\x9d\xdf\x97\x88\xc2\x38\x52\x0d\x58\xa2\x71\x83\x12\xb6\x91\x5b\x66\xa2\xdc\x21\x3d\x42\xa7\xa8\xf1\x83\xce\x06\x85\x89\xf3\x4c\x02\xc8\x2d\xd3\xfe\x7c\x3a\xd1\x81\x49\x12\xbc\x65\x3e\x47\x95\x05\x63\x95\xd4\x09\x86\xde\x8d\x75\x2e\x71\x94\x23\x4c\x3a\x08\x8c\x81\x2b\xc8\x9a\x65\x69\xf4\x85\xd8\x81\xc3\x04\x0d\xc3\xea\xbc\xca\x90\x42\x93\xb6\xce\xca\x3e\xa1\x83\xf2\x19\x75\x77\x7a\xcf\x70\x2e\x7a\xbd\x66\x32\xd1\x4e\xe7\xbd\xd0\x23\xec\xbd\x07\x3a\xa9\x41\x6f\x0b\xe5\x4d\xfd\x8b\x8a\xcf\xb3\xfa\xbb\xe1\x92\xe8\x0d\xf0\xd4\x9e\x5c\x59\x9e\x96\x8e\x1d\x65\x99\x24\x99\x54\x8c\x87\x63\xf2\x5e\x73\x8e\x42\x8a\xd1\x5f\x58\xe2\x54\x67\x70\x4b\xe7\x65\xb1\xa3\x69\xd5\xc0\xb2\xb7\x25\xac\x80\xd3\x6c\x76\xd9\x1f\x44\xb3\xd9\xa5\xed\x18\x34\xca\xe4\x28\xe2\x5b\x56\xf8\xd3\x82\xe4\x83\x08\x62\x74\xef\x49\x4c\xad\xe1\xa3\xa1\x58\x45\x7c\xfb\x2f\x43\x1d\x92\x7d\x6d\xd2\x37\x8e\x8f\x3e\xc1\x0b\xb5\xc8\xdc\xb2\xbf\x3d\x9a\xac\xa9\x5b\xc7\xfc\x58\x7b\x34\x66\x90\x31\xa6\xe7\x76\x36\xf4\xb1\xe0\xc6\x94\x2f\xfd\xa0\x8c\x6d\x4b\x69\x02\x4c\x39\x89\x31\x5e\xad\x18\x3a\xf4\x98\x8c\xc2\xee\xf3\x5f\x16\xa0\x24\x23\x62\x6a\x65\x4c\xa6\xe9\x09\x2a\x5f\x9c\x29\xa6\x02\x29\xd2\x2c\xc9\x5d\xc1\x84\x65\xf2\x98\x91\x86\xe9\x64\x7a\xfa\xbe\x6a\xa0\x1f\x41\xd7\xea\x77\xd8\xcb\x4a\x8f\xe6\xf3\xc7\x80\x0e\x7c\x94\x7c\x6a\x0e\x47\xf1\xbc\x32\xb9\x37\x0d\x4d\x7e\x24\x6d\xdb\xc7\x9d\xd6\x0a\x18\x75\xef\xb6\x34\xe1\xd2\xcd\x7a\x58\x25\x04\x6e\xaa\xd3\xa8\x29\x3a\xa0\x7e\x70\x59\x43\xc6\x1e\xc3\x7d\xf2\xcb\x7c\xf8\x9a\x9f\xc9\x53\x57\x26\xef\x8e\x60\xd9\x0d\x75\x09\x78\xa4\x4f\xa4\xeb\x86\xbb\x14\x09\x3d\x3e\x6d\x89\x6f\x1d\xa9\x09\x39\x7f\x76\xf9\xef\xb6\x85\xae\x6a\x79\xf1\x52\xca\x78\x8a\xb9\x10\xfb\x28\x3e\x7e\x40\x36\x08\x6d\xfe\x60\x62\xd9\x2a\xe0\xa5\x0c\xc4\xfe\x92\xd8\x1e\x99\x04\x8b\x6d\xf7\x27\x92\x32\x4e\xad\x14\xd5\x64\x32\xd5\xec\x04\x4d\x98\x76\x4a\x56\xbb\x86\x89\xa3\x74\x2e\x40\x02\x11\x57\x6a\x45\x5e\xcb\xb9\xce\x1a\x86\xd1\x92\x45\xe0\xf9\xf9\xd5\xe9\xec\xf0\x30\xac\x07\x95\x7d\x10\x11\x28\x51\x8b\x14\xd2\x45\xd5\x15\xa7\xf2\x83\x0b\xe3\x5b\x47\x53\x86\x75\x02\x4d\xce\x71\x5c\x4e\x20\x45\xc6\x05\xfa\x8e\x2c\x74\x62\x92\x4a\x62\x45\x57\xaf\x8f\xc9\xea\x95\xf2\x90\x05\x34\x39\x0d\x02\x16\x31\x8c\xc3\xe9\xcb\x51\xdf\x7a\x3f\x2d\x84\x3f\xf6\xa0\xc8\xcd\x06\x10\xbd\x19\xca\x43\x0e\x8a\x3e\x3e\x59\xce\x03\x3f\x9a\x1e\xb9\x9f\xaa\xab\xf9\xe0\xfa\xca\x10\x71\x42\x85\x14\xbb\x8d\xcc\x4d\xa6\x4f\xe3\x42\xe4\x54\x5b\x23\xb7\x6e\x27\x47\x4f\xf9\x5f\x98\xce\x73\x56\x2d\xd7\x37\x26\x97\x72\x95\x92\x7b\x9a\x08\x2e\x56\x8a\x69\xc8\xf2\x44\xb8\xb5\xae\x8b\x1d\x66\x65\x86\x1c\xbc\xc6\xf0\x64\xc5\x6b\x41\xaa\x09\x5a\xa9\x60\x59\x24\xc8\xd8\xe6\x91\x60\x09\xc5\x9c\x14\xae\xce\xd7\x34\x45\x16\x3b\xe4\x69\x20\xb7\x4c\xeb\xc5\x32\x67\x45\x53\x4c\x6c\x9a\xa7\x9d\x27\xf2\x51\x52\x46\x75\xff\x26\x82\x67\x9c\x46\xbe\x3c\x60\x6d\x9b\x68\x7f\x5a\xcd\x12\x6c\x12\x31\x87\xea\x95\x5b\xda\x58\xca\x82\x8a\x6f\xe8\x1d\x43\x3b\x93\xea\xb8\xe6\xf8\xb3\x37\x8b\x51\x5f\x5e\x4f\x9e\xae\xbe\x34\xcd\xd5\x55\x96\xd5\x60\xe8\xfd\x6a\x62\x5c\x93\x83\x47\xfd\xea\xed\x17\x8f\x5a\x14\x06\x35\x08\x1a\x9d\xf7\xcc\xdd\xea\xab\x58\xfa\x10\xd1\x16\x14\xd4\xfd\x6d\x9f\x98\x33\x28\x22\xf6\xcf\x17\x74\x06\xf3\x7f\x4c\xb0\x38\x7c\xf8\xfd\xd5\x64\xdf\xef\xee\x79\xc2\x56\x39\x4d\xc2\xbe\x58\xf2\x87\xda\x07\xcd\xac\xcf\x45\x0b\x8b\x8e\x3f\x4b\xe9\x93\x62\xee\x85\x83\xf7\x15\xdd\x74\x73\xed\x3f\x38\x3f\xab\xb1\x89\x60\x82\xd1\xc6\x4f\x8f\xcb\xa2\x6a\x66\xad\xd5\x74\x66\x5f\xa5\xfb\xd5\x58\x1b\x21\xf6\xbc\x4d\xc5\xd2\x2e\x79\x9a\x31\x45\x19\x7a\x69\xf3\x7e\x70\x7e\x56\xcb\x8f\x6e\x5e\xa1\x6a\xcf\x67\xe1\x5b\xec\xca\xc5\x55\x02\x76\xde\x7c\xf5\xd9\xfe\xe7\xba\x58\x4f\x9f\xbb\xf9\x83\xd5\xb8\x3a\x77\xf5\x83\xbe\x9e\x2e\xc8\xbb\xd6\x71\xcb\x58\xeb\x25\xfd\x94\xc5\xdc\x20\xc7\x76\x93\x47\x6c\x9a\x70\xa9\xe8\x6c\xff\xc5\x39\x3e\xae\x2e\x36\x36\xbf\x7a\xb3\x2d\x95\xe7\xb3\x06\x12\xc3\x4a\x2a\x31\xba\xa2\x7e\xf8\x7a\xef\xc5\x3e\x84\xbd\x0b\x54\x38\x52\x93\xfc\xfe\x7c\x5a\x65\xed\xd4\x5c\xd3\x9c\x67\xba\xfa\x14\xa4\x0b\x75\x1f\xc0\x22\xfd\x62\xc8\xc4\xae\xe9\xf8\xf8\x28\xc6\xe2\x21\x8c\xf7\xd5\xa4\xfc\xfe\x7c\xfa\xb4\xd1\xbc\x90\xa5\xe5\x51\x81\xbc\x5a\x4d\xe2\x24\x43\xcd\x3a\x5b\x32\xd1\xc5\xe5\x30\x95\x31\xc8\xd8\x6e\x8d\xca\xef\xcf\x9d\x2e\xfe\xcd\x70\xdf\xfd\xf5\x29\x43\xc1\xef\x66\xc1\x6f\x74\x01\xd3\xde\x0d\x60\x4d\xe5\xec\x39\x4a\x7e\x7f\x0b\xe3\x5c\xe1\x38\x68\x3c\xc6\xd7\x65\xcd\x6f\x47\x93\x66\xd1\x6f\xe7\x7c\xf5\x26\x15\x65\xbf\x9b\x8d\x60\xb0\xe7\xaa\xfb\x3d\xd4\xe9\x1e\xea\x74\xdb\x5b\x30\xd4\xe9\x7e\xce\x3a\xdd\x6d\x65\xb4\xe3\x38\xda\x5d\x8b\x77\x58\xdf\xad\x8b\x9a\x9e\x56\x5a\xa3\x2e\xd6\x94\x3e\x82\x9e\x50\x27\x5b\xd6\x11\xe0\x26\x9d\xbd\x8b\x40\x21\x3b\x01\x3d\x99\x90\x9c\x3d\xf9\x81\x50\x5e\xc9\x6c\xa6\x78\x90\xae\x99\x9f\x17\x2d\xad\x59\x1b\x89\xc7\xa8\x0a\xc1\xf7\x08\x2d\x84\xc5\x3a\x3c\xca\x3f\x6b\x69\x06\x55\xac\x64\x59\x93\x45\x5b\x58\x08\x88\xd1\x87\xa9\x55\xb7\x0f\xaa\x06\xdd\x71\xb1\x72\xaa\x15\x41\x91\x48\x53\xad\x40\x0f\x4c\x42\x76\xac\xb0\x37\x4b\x4c\x92\x2a\x17\x84\x09\x75\x27\x00\x04\xcb\xa9\x5a\x14\x2a\x44\xa8\xd8\x59\x53\x73\x4e\x0c\x90\x95\x81\x89\x56\x5c\x7a\xd5\x59\x95\xf1\x21\xa8\x98\x41\x2a\x4f\x6d\x2a\x5e\x30\xa2\x79\xc4\x7d\xf7\x16\xab\x21\x74\xe7\xeb\x67\xe8\xe3\x8b\xe5\xb1\x20\x2d\x3b\x96\x51\xd0\x1c\x27\xb9\xa0\xc1\x1a\xbd\xd5\x4d\x29\x7a\x27\x94\xcc\xd7\xb8\x6e\xed\x86\x16\x24\x3c\x63\x09\xa7\x98\x1c\xcb\x72\xdb\x87\xec\x61\x1a\x6c\xfa\xe8\xef\x95\x74\xbd\xb2\x86\xf9\xc1\x29\x51\x62\x84\x5d\x13\x3d\x2d\x67\xe4\x9a\x8a\x93\x89\x24\x45\xdd\x11\xf2\x8d\xcc\xd6\x3a\x1e\x5d\x26\xa3\x05\x4d\x01\x3c\x5a\x95\x38\xd5\xfb\x25\xec\xdf\xb0\x3e\x8e\x13\x36\xc0\x4a\xb2\x84\x89\xc0\x9c\xbc\x91\x95\x2b\x52\xe6\x19\x46\x78\x9a\x90\x41\x5d\x3f\x49\x26\x50\xfb\xd1\xd4\x2f\xf4\x4c\x58\x84\x45\xd9\x0b\x0b\xf0\x10\xfa\x35\x9f\x0b\xdc\xbc\x58\x62\xc8\x42\x1d\x12\x1e\xcb\xa4\xda\x4c\xc1\x56\x30\x39\xcd\x12\x1c\xe9\xa8\x2d\xe3\xc5\xff\xf3\x4f\x7f\xbf\x92\xd9\xcf\x3f\xfd\x7d\xac\x93\xaa\xd6\xfb\x76\xf7\xab\x0b\x8e\xea\x02\x54\x45\x12\x56\x9a\xf1\x14\x72\x69\x62\x60\xab\x5e\x88\x29\xda\x3c\x26\xa7\x3a\xcd\x9c\x07\xb6\x70\x34\xa9\x30\xc7\x53\x87\x2a\xe8\x25\x2b\x00\xc1\x62\xd4\x1f\x96\x1e\x97\x62\xe7\x7e\xa8\x02\xec\xdd\x53\x34\x18\xa4\x9c\xa2\x61\xbb\xab\x4f\x67\xfe\x58\xea\x4b\xbf\x80\x4f\x77\x0a\x59\xab\xa6\xbe\xb7\x97\x2a\x1a\x2f\x3f\x28\xae\xb3\x63\xfb\xb4\xf5\x48\x5d\x4b\x5f\xb7\x20\x7d\x5b\xe3\x13\x45\xa3\x33\xb7\x5f\x64\x2f\x60\x10\x5d\x7b\x1a\x72\xa3\xde\xea\xab\xd7\xd2\xb6\x81\x04\xae\xea\x1f\x6b\xcf\x78\x19\x6b\xab\xea\x92\xb3\x28\xf4\x06\xec\x94\x4f\x01\x18\x5a\xa0\x00\x2b\xb2\x42\xc7\xe5\x56\xca\x36\xc9\x84\xaf\x14\x1c\x7c\xf7\xdf\x3c\xc0\x7d\xbd\x54\x47\x88\x25\x1b\xfc\x80\xd0\xec\x95\x65\xd8\xb6\x6a\xf2\xe2\xd8\x6e\xd2\xe1\x00\x59\x59\x06\x46\x93\x61\xed\x7b\x0e\x07\xb9\x01\x9b\xf6\x4e\xd5\x05\x28\xa0\xa8\xe8\x12\x8a\x09\x61\x91\xa4\x80\x6e\x98\x0e\xbc\x81\x0a\x44\x90\xdd\xa0\x2d\x64\xb8\x7c\x2c\x1b\xbe\xb1\x50\x5a\x6c\xc3\xc2\xc6\xbb\xe5\x8a\xfa\x81\xc2\x62\x3b\x10\xfb\xbd\x93\x09\xa9\x08\x77\x47\x90\x0e\x02\xb2\xdc\xee\x09\x11\xbe\x51\x5c\x40\x5a\x7a\x02\xda\x87\x2c\xe2\x1b\xae\x6b\x1b\xe2\x4c\x31\x9a\xa2\xed\xf2\x10\x77\xe2\x44\x6e\xc1\xb7\xd8\x59\x45\x1e\xd4\xaf\x95\xa5\x78\x2f\x1a\x3e\x9e\xe5\x1f\xa2\x9c\xfa\xf2\xd5\x61\x13\x00\x66\x8d\xed\x1d\xef\x07\x80\xaa\x84\x7d\xeb\xf6\xfb\x2b\x1f\x99\x90\xef\x64\x5a\xd4\x54\x2b\x77\xd1\x21\xa8\x97\x7b\xd9\xde\xa7\x77\x9d\xd5\x55\x20\x9b\x07\x9c\xf8\xbe\x07\x99\x06\x89\x4c\x81\xd3\xb3\x6e\xa3\x87\x26\x14\x60\xec\xc4\xed\x04\x83\x31\xda\xd0\x65\x3d\xbc\x85\xe9\x72\x05\x4e\x9c\xa7\x24\xc8\x2c\xe1\x41\xe6\x2d\xce\x5a\x3e\x86\xba\xc1\x16\x6a\xc1\x44\xfa\x50\x5e\x81\xd5\x3a\x0e\x4e\x15\xe5\x95\x71\xa5\xc8\x89\x43\x62\x1d\xf4\x49\x59\xf1\x2d\x13\x4a\xfa\x54\xcb\x6f\x3d\xe7\x7e\x06\xd1\x1a\xb7\x17\xa4\x5b\xe3\xfa\xcb\x47\xc8\xec\x6a\xbf\x3d\xc1\x0f\x8a\xc8\x96\x2a\x5f\x65\x56\x7c\xe5\xa9\x81\x56\x3e\xb0\x8f\xff\x74\xb0\xf0\xd5\xd6\x28\x9f\x3a\x30\x8a\x9a\x1a\x2d\xd0\x98\xfa\x7c\x2f\xcb\x07\xc1\x41\x6e\x21\xc3\x36\x9c\x52\xa8\x0a\x68\xf2\xcf\xa7\xe8\x48\xab\xab\x36\x40\xc2\x9d\x9d\xbf\x66\x47\xf9\xd4\x52\xbb\x67\xd5\x8c\x5f\xa6\xe8\x9b\x66\x96\x34\xae\x56\x92\x47\x07\xd4\x25\xd2\x30\x53\xdf\xfd\x6c\x6a\x12\xb2\x7f\x38\x9f\x7a\x12\xb7\x9b\xa7\xcf\xae\xfa\x53\x68\x94\x4f\x8f\x64\x1a\xcd\xc6\xdd\x07\xa5\x3b\xc1\x46\xf9\xec\x9f\x6a\xa3\x7c\xfa\x1e\xc8\xfd\xf9\xc6\xab\xf2\xa3\x8e\x63\xd9\x8f\x51\xd0\x27\x13\xec\x6e\x45\xc7\x88\x85\xd1\xf6\xb3\xc8\x22\x96\x41\xb2\x4e\xa8\x0f\x80\x63\xb5\xf7\x59\x30\x44\xad\x47\xa5\xdf\x9e\xc5\xfb\x5d\xd9\xf9\x41\x59\x05\xa7\x83\xac\x74\xf1\x0d\xac\x0f\x59\x01\x9b\x8f\x89\xa5\x7d\x69\xc9\x17\x8e\x78\xd3\xfa\xb2\xb0\x07\xe4\x26\x53\xa2\x33\xb8\xd9\xa9\x6e\x8e\x8d\xa6\x78\x56\x64\x66\xea\xe0\xfa\x6c\xb9\x5c\x5f\x1d\xb0\x2c\x21\x94\x53\x03\x01\xad\x76\xd5\xc3\x74\xf0\x38\x4b\x93\xdf\x47\x31\x37\x7d\x31\x58\x27\x06\xd0\x81\xab\xfb\x60\xb0\x8e\xb5\x97\xe8\xad\x86\xc1\xe6\x88\xc3\xe6\x1a\x8b\xcd\x11\x8f\xcd\x15\x26\x6b\xe5\x79\x06\x5c\x06\x4f\x2f\x5c\x96\x3e\x42\x00\xee\x96\x7b\x5b\x55\x78\xe5\xe3\x94\x7b\xc9\xcb\x94\x31\xa3\xfb\x02\x54\x86\x79\x6b\xd3\x9d\xc8\xe8\x83\x2b\x62\xdf\x7e\xe6\xf3\x56\xb1\x59\xf3\x90\x3e\xb1\xb8\xbd\x6f\xa3\xf2\xb2\xa4\x66\x99\x34\xa5\x61\x75\xdd\xae\x64\x86\xd6\xe6\x13\x4f\xa2\x5e\x0b\x08\xda\x1d\xdb\xd8\xa9\x3a\xa8\x02\x82\xc7\xa2\x26\x1d\xb2\x2a\x8b\xe4\xfd\xab\xa3\xea\x94\x2d\x60\x23\x54\x4d\xf9\x64\x53\x3c\xa1\x43\x15\x00\x7a\x2e\xd0\x5f\xce\xd6\x8c\x64\xf7\x12\xce\x1a\xf8\x7a\x9b\x77\x88\x20\x14\x11\xda\x95\xb9\x82\x3b\xf6\xee\x5a\x98\xd5\xeb\xba\xae\x96\x5e\x95\x59\xd2\xab\x4e\xbf\x0f\x26\x01\xdd\xbe\x9b\x26\xdc\xaf\x65\xa4\x37\xe9\x04\xb6\x68\x3e\x2f\x09\xf2\x6f\x01\xbb\xfc\x6a\x4d\xd3\x97\x9b\xdd\xc7\x88\x2e\x58\xf4\x0a\xf0\x8e\x46\xf2\x5d\xd7\xd9\xf2\x60\x56\xeb\x86\x43\x86\xf3\x43\x87\x81\x91\x76\x38\x89\x58\xa8\xc6\xed\x79\xde\x6c\x8f\xe8\xa2\xe4\x28\x4c\x8e\xfc\xfc\xd3\xff\x98\x89\x82\x76\x54\x2f\xa8\xf7\xb1\xc0\x05\x7b\xd7\xdb\x5c\x92\x9a\x83\xaf\xc0\x59\xf9\xb4\xaf\xb6\x58\x50\xfb\x62\xba\x15\x0e\xea\xd4\xb1\xe5\x92\x05\x3a\x82\x52\x6b\x0a\x22\x40\xab\x3a\x2c\xad\x52\xf7\xb9\xc7\xd4\x85\x14\x23\x13\x7f\x80\xe6\x57\x8c\x2f\xd1\x3a\x91\xa5\x4c\x36\xac\xae\x83\x68\xa9\x2a\x5d\x3e\x70\x18\x9a\x80\x29\xab\xb8\x3c\x85\x00\xaf\x3d\xf2\x4f\x83\x40\xe6\x62\x1f\xbe\xeb\xb6\xfa\xe1\x2f\xc6\x7f\xd5\x50\x72\x7b\x9f\x0e\x4d\x26\x25\xb1\x0c\x8b\x24\x4c\xc0\xcc\x15\xe8\x59\x03\xa3\x03\xed\xe2\x8a\x5b\x4f\x5b\x2f\x5d\x32\x21\x55\xa7\x10\xff\x53\x95\x07\xa0\xbe\xcd\x27\x83\x9b\x3c\x06\xe4\xdd\x5d\xfa\x14\xc8\x0e\xb0\xf7\x82\x36\x29\x21\xae\x30\x71\xaa\x1d\x3f\x79\xa1\x89\x54\xcc\x6f\xc7\xcd\xef\xc7\xd8\x91\x3d\xd4\x0f\xa4\x2f\x97\x44\xfa\x72\x4a\xa4\x79\xbf\x3a\x79\xa5\x7f\xdf\x9d\xae\xc8\x49\xa5\xc6\x0d\xb1\xbe\x81\xe7\x98\x4c\x3a\xa4\x0e\xf5\x94\xd6\x85\xa6\xd1\xa0\x94\x43\x32\x9d\x30\xdf\x6b\x64\xaf\x3e\xa7\x57\xe7\x87\x1e\x9f\x69\xfb\xd9\x4f\x9b\xe5\xab\x3c\xd8\xb7\xcd\x3a\xcb\xe2\x7e\x46\xb6\xef\x66\xb3\x69\x69\x44\xf2\x5a\xd6\xd4\xf1\x50\x4d\xfd\x53\x37\x8e\x37\x9f\x66\x54\xdb\xb0\x6c\x2d\xc3\x3d\x68\xcf\x7b\xfc\xe0\x69\x69\x0e\x2e\x19\x2e\x87\x5e\xb7\xe5\x57\xa4\xfa\xc4\x7c\xe9\x4a\x66\xef\xee\x14\x7c\xb8\x43\xec\xc5\xcc\xf6\x25\x1b\xaf\xc6\xe4\xdb\x8b\xd9\x11\x99\x7e\x98\x1d\x11\x96\x05\xe3\x57\xe4\xbd\xae\x60\xd6\x21\x41\xe8\x3e\xd4\xa9\xbd\xbe\x39\x54\x4c\xc4\x0a\x5c\x5b\xfe\xb9\x34\xae\x31\xcd\xd6\x7b\xec\xe3\xe1\x54\xb5\x7f\x8e\x6d\xec\xda\xc1\x6e\x0b\x83\xbd\x83\x30\xcd\x71\xb1\x55\xb8\x4c\xb3\x17\x7d\x37\x83\x10\x36\x5e\x9d\x90\x11\x61\x0f\x34\xc8\x4e\xc8\xf1\x52\x4a\xa8\x48\x0a\xb9\x85\xc8\xf1\x82\x26\xe4\xea\x7a\x76\x71\x82\x3e\x11\x4c\x64\xc9\x8e\x6c\xba\x88\xcb\xf5\xd5\xe5\x1f\x34\x1e\xdb\x11\xc6\x31\x69\x3b\x99\x1f\xc0\x20\xa8\xff\x50\x7f\xe2\x28\x86\x4f\xf7\xd6\xff\x2b\x9f\x2d\x8d\x78\x48\x0b\x31\x15\x53\xce\x2b\xa1\x9a\x67\xae\xa8\xe3\xf2\xe9\x73\xe6\xaa\x87\x40\x81\x18\xb2\x0c\x57\xf2\xdb\x01\xe0\x4d\xae\x61\xed\xc4\xd0\x81\x6e\x27\x19\x38\x13\x2e\x98\x01\x84\x96\x80\x15\x0b\x7e\x62\xc0\x3e\xcf\x5f\xbf\xfe\x3c\x50\x1d\xc3\xbf\xd8\x89\xc9\x11\xd1\x47\x60\xc3\xa3\x06\xb3\x82\xee\x22\x28\x46\x6a\xb6\xb0\xec\x7a\xa4\xe1\xfd\x49\x23\x60\x1f\xad\xc0\xde\x83\xd3\x24\x1a\x00\x4f\xcb\x04\xc5\xbe\xcc\x58\x8f\xef\xb4\x0f\x31\x24\xfd\x10\x52\x77\x57\x3c\xd8\xf4\xa4\x99\x93\xb3\xf7\xd3\xbe\xb6\x4b\x40\x46\xfe\xb9\xdb\x58\x8a\x9a\x53\x1f\xc0\x6c\x31\x24\x55\x86\x80\xa3\x60\xc8\x22\x97\xb9\xb7\xb0\x2b\x3e\x76\x19\x87\x45\x45\xc5\xba\xac\x6a\x56\x71\xd2\xdc\x8a\x84\x56\xe3\xb4\xc9\x92\x60\x09\x52\x8d\xb6\x6f\x5b\x8c\x41\xbd\x4e\xa2\x5a\xda\x1e\x74\x1e\x38\x13\x29\x6c\x28\x01\x50\x02\xc8\xf1\x46\x26\x4b\xab\xb8\x7a\x37\x89\x98\x29\x00\xa3\x0b\x33\xf8\x4d\x41\x3e\x99\x4a\x91\xed\x22\x95\x0c\x25\x19\x0b\xd6\x82\x07\xd4\x59\xe5\xa9\x7c\x40\xa8\x47\xc5\x15\xdf\xc4\x32\x2d\x9d\x4b\xb1\x90\xc1\x61\x5a\xa6\xa8\x5c\xf2\x84\xdd\xd3\xc8\x9d\x6c\xaf\x7c\x10\x5b\x68\x95\x02\x26\xba\x94\x84\x89\xb2\x1c\x32\xf8\x8f\x74\x5f\x8d\x4e\xed\x33\x34\xfb\xf4\xcd\x50\xdd\x8c\x89\x1d\xe6\xdc\xa5\xbc\x2d\x32\x17\x7f\x85\x8e\x87\xb0\x42\xe8\xeb\x22\x58\x4b\x72\x83\x44\x9b\xbc\xe4\x63\x36\x26\x31\x17\xab\xb4\x5d\x7b\xdb\x6b\xbd\x3d\x90\x41\xec\x8e\x4d\xf0\x00\x64\x32\x35\x31\x0a\x9f\xec\xd2\x50\x11\xcd\x90\x1f\xb7\xa1\x3c\x35\x3a\x5d\x2f\x14\x7a\x40\xc0\xe3\x65\xee\x59\x9c\x49\x43\x6c\xf9\x9a\x95\xd9\x3f\xac\x7c\x28\x45\x1d\x91\xf6\xc5\x7d\x12\xd2\x00\x87\x7e\xcc\x0c\xd5\x7a\x5c\xcb\x19\x4e\xfb\x52\xc5\xbe\x64\xa9\xea\x24\x5f\xce\x47\x47\x47\xa0\xbe\xf9\x8e\xe9\x50\x40\x12\x53\x9e\xf8\x33\x6f\x97\x8f\x12\x6b\x75\xf5\x1f\x1b\xa6\x74\x21\xf3\xac\x07\x21\x79\x2a\xc9\x51\xc8\x4c\xdd\xbe\x7e\x27\xe3\x0a\x1b\x77\xd8\xa2\xa1\x49\xbb\x4f\xc8\x40\x30\x06\x82\xf1\xaf\x4d\x30\x84\xcc\x0c\x5b\xe5\x05\x4b\xbb\xbd\xb8\xa7\xa5\xb8\x9f\x8d\xb8\xe1\xca\x64\x58\xbe\x0e\x6f\x26\xdd\xcc\x0f\xb0\x8e\x7b\xdc\xc3\x28\xfd\x38\x73\x74\xfc\xcf\x0a\xdc\xf9\x81\x0d\xdb\x27\xa4\xfd\x0d\xb5\x2c\x44\x02\xd8\x9c\x80\x81\xc9\x18\x4e\x3d\x4f\xda\x5c\x73\xb4\x5f\x99\xde\xe7\x0b\xf0\x7f\xbf\x81\xe0\x0d\x13\x8a\x80\xbe\x33\x2f\x17\x2c\xa0\x79\xaa\xbd\x39\x3a\x1c\x83\x8b\x29\x06\x2c\x81\x3e\x0a\x8f\x90\x57\x68\x4e\x34\x19\x05\x2b\xfe\x2d\x5d\x24\x16\x1d\x5f\x4e\x6c\xdf\x8d\x23\xdb\x73\x03\xff\x00\x49\xa5\xf2\xd7\xf6\x6d\xf9\xf7\xed\xd9\x0c\xdf\xfa\x87\xd1\x3d\x5e\xf2\x8c\x19\xf7\x10\x28\x23\x00\x07\xc4\x98\x14\x30\xd5\xfa\x9b\xd1\x67\x5f\x7e\xd9\x62\x63\x7b\xbe\x63\x9f\xfa\x92\xdb\xe1\x53\x35\x13\x14\xc9\xed\x7a\x84\x4a\x78\xaa\x55\xd8\xa3\x0e\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x84\x7b\xc5\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xbe\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xe6\x33\x44\x49\x0c\x51\x12\xc5\x33\x44\x49\x0c\x51\x12\xcf\x1f\x25\xd1\x52\x71\x47\xc9\x18\x98\xef\xcc\xf5\xae\xbd\xe3\x96\x53\xae\xb3\xe3\x3d\x22\xcd\xa1\xfe\x72\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xfd\xa8\x71\xc8\x73\x38\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x97\xcf\x60\xc1\xb7\x9e\xc1\x82\x3f\x58\xf0\xf5\x33\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x03\x2e\x1b\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xe6\x33\x58\xf0\xeb\xcf\x60\xc1\x1f\x2c\xf8\xf5\x67\xb0\xe0\x0f\x16\xfc\xe2\x19\x2c\xf8\x83\x05\x7f\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x64\xc8\x73\xd8\x73\x84\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xa4\xad\x1a\xd2\x56\x0d\x79\x0e\x87\x3c\x87\x43\x9e\x43\xff\xfc\x87\x3c\x87\x03\xc1\x18\x08\xc6\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\x43\x9e\xc3\xda\x33\xe4\x39\xf4\x0b\x90\x43\x9e\xc3\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\x65\xc5\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xbe\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xe6\x33\x44\x49\x0c\x51\x12\xc5\x33\x44\x49\x0c\x51\x12\xff\x8e\x79\x0e\xfb\xd8\xc2\x9a\x98\xab\xdb\xfe\xb5\x44\xd3\x65\xc9\x6b\xba\x66\x9d\xa7\xb6\x36\x5f\x1f\x3a\x4c\x16\x28\x45\x45\xcb\xed\x59\x92\x7b\x57\x20\x21\x63\xd7\x3a\xae\x55\xa3\x96\x7b\x59\x7a\x7b\x67\x26\xc7\xa3\x87\x99\x47\xff\x16\xcc\x9a\x07\x62\x8b\xea\x14\xf4\xfc\xe1\x18\x25\x99\x42\x0f\xb3\xe6\x2b\xc5\x16\xce\x0f\xa0\xbf\xf9\x01\x1c\x60\xdd\xd6\xd5\x35\x5d\x2a\x96\x26\x03\x94\x09\x1d\x44\xf2\x9e\x25\x38\x1b\xf4\x17\xb2\x26\x97\x12\xb9\xe1\x59\xc6\xc2\x23\x25\x91\xa3\xab\xb9\xab\xd3\x40\x8a\x94\x63\xca\x4a\x94\xb8\xe7\x07\x5c\x2c\xb9\xe0\x19\x9b\x1f\x90\x11\x01\x2f\x15\x6b\x39\x46\xc4\xd1\xf3\x24\x11\x4d\xb3\x31\x29\x56\xe6\x04\x89\x9a\x2b\x0f\x99\xc8\x78\x40\x23\x3d\xc1\x7a\x3f\x5c\x10\x1a\xc5\x6b\x2a\xf2\x0d\x4b\xac\x76\x70\x00\x5c\xbd\x6a\xb3\xa0\x16\x0e\xd1\x14\xeb\x54\x6c\xe2\xe1\x10\xf9\x66\xd1\x94\xdb\xe3\x84\x9d\x5f\x9d\xce\xba\x8e\xc7\x14\x9b\x11\x2e\x42\x1e\xa0\x4c\x52\xb8\x45\xaf\x4d\x1a\x4a\xa0\x5e\x3c\x35\x80\x5a\xb0\xa5\x74\x23\x1e\x2a\x76\x44\x75\xe7\x9d\xeb\x42\xca\x88\x35\xb3\x6a\xb6\x50\x9d\x9a\x54\x3e\xb3\x25\x3c\x3c\xd5\x96\x9c\x67\x2e\x5a\xcc\x83\x3b\xfc\x3f\x99\x3b\x11\x90\x5a\x5b\x8d\x63\xb7\x4e\x82\x76\xe2\xb6\xf6\x30\x93\x5a\xc1\xd4\x22\x77\x94\xf3\x48\xc9\x52\x46\x91\xbc\x47\xa8\xa1\xf0\x59\x88\x63\x48\x17\x7e\x8b\xb2\x09\x5e\xec\x8f\x11\xcf\x58\x42\x23\xf5\x8b\xab\xe7\xf9\x9c\x8c\x30\x88\x41\x9d\xea\x4d\x4c\x13\x9e\x4a\x71\x44\x20\x92\xc9\x08\x15\xa6\xcb\xa5\x94\x64\x41\x13\x10\x74\x8a\xe1\x7e\xb5\xe7\x70\xe5\x78\x4a\x24\x62\x7f\xce\x69\xf4\x1b\xf4\xbb\x33\x84\x8e\x2f\x35\x85\xe3\x29\xb4\x31\x4a\xbb\x62\x48\x37\x12\xf9\x11\xe6\x41\x4b\x6f\x91\x45\xf9\xcf\x00\xff\x39\x1e\x8f\xc9\xdf\xac\x19\x64\x49\xce\x8c\xfb\x7c\xe1\x81\x86\x63\xfc\x9e\xb8\x3d\x5e\xb5\xb6\xb2\x63\xa8\x72\xae\x6a\x01\x5c\xf4\x98\x9c\x6b\xb0\x3d\xe7\x0b\x83\xb5\x4d\xd0\xbd\x25\xd6\x9c\x95\x40\x0b\xfd\x7d\x54\xa4\xe3\x55\x39\xf4\xac\x18\x99\x66\xe5\xee\x58\x3b\xf3\x2b\x38\xa4\x4e\xa2\xab\xbb\x28\x34\x1b\x72\x09\x6d\x41\xb4\x85\xff\xe6\xaf\x5f\x7f\xf6\x16\xff\x1f\xdf\x14\xdf\xdc\xae\x65\x92\x8d\x02\x9e\x04\x39\xcf\x80\x71\xd1\x1f\xb9\x06\xfa\xeb\x5f\x5b\xbf\x06\x15\x68\xf6\x12\xdb\xbc\x2a\x1a\xc5\x34\x61\x02\x93\xdd\xae\x12\x99\xc7\x8a\x5b\x9b\xcf\x33\x1a\x45\x2f\x9d\xaa\x6c\x9d\x7d\x15\x9d\x13\x0a\x7c\x61\x7a\x33\x67\x98\x46\x91\x25\xa1\xc2\x05\xbd\xc4\xf3\x80\x2c\x98\x07\xc9\xa9\xab\x8d\x78\xc6\xf8\x6f\xd9\xf8\x3d\x3d\x22\xa3\x23\xf2\x11\xe0\x70\x3c\x26\xb7\x70\xe5\x88\xbe\x72\xde\x4e\x37\x32\x61\x24\x56\xcc\x69\x9a\xf2\x2d\x23\x0b\xf4\x3c\xde\x19\xcd\x88\xd6\x59\x11\x96\x06\x34\x66\x24\x58\xd3\x84\x06\x19\x4b\xf4\xb4\x2f\xd0\x81\xd3\x79\x19\x5e\x02\x95\xda\xd0\x90\x8d\xf2\x18\x8f\x45\xfa\xaa\x40\x47\x10\xee\xa2\x51\xc7\x3d\x5b\x28\xee\x97\x69\xe4\x61\xef\x78\xc8\xe2\x48\xee\x36\x4c\x38\xd1\xa9\xfe\x3e\x4e\x64\x68\x0e\x29\xf4\xab\xee\x14\xe0\xa4\x44\x8a\x8c\x89\xd0\x3a\xea\x34\xb8\xd3\x3f\xfc\x4d\x35\x2f\xfb\x27\xbf\xfa\xad\xef\x06\x84\x6c\x6b\xba\xff\x15\xa9\xdd\x02\x17\x2a\x6b\x63\x9e\xaa\xba\x84\xbe\x5c\xe1\xad\xf3\xab\x67\x63\x0d\xf5\x24\x8d\xa8\xb1\x2f\x83\x08\xfa\xca\x1e\x34\x15\xd4\x9a\x25\x07\x70\xbf\x86\x30\xca\x0a\xcd\xb7\x1c\x3a\x74\xa2\x69\x27\x9e\x52\xf7\x4e\xea\x4c\xd3\x47\xfa\x2f\x25\xd4\x8c\x09\xba\x4f\x01\x35\x79\x88\x15\x47\x95\x45\x3b\x4b\xa6\x79\x09\x59\xb2\x9d\x7e\x71\x16\x1e\x15\x24\x48\x98\xf6\xda\x4e\xf5\xed\x96\x09\x11\x3c\x7a\x75\x64\x3c\xaf\x43\xb6\xa4\x79\x94\xa5\x04\x97\xa5\x40\x97\x84\x1e\x99\x26\x93\xe4\x5e\xe1\xca\x89\xce\x65\xae\x26\x71\x61\xa5\x35\x07\xbe\xd5\xe0\xcf\x22\x65\x34\x38\x0c\x11\x5f\xf0\xa6\x1e\x9f\xf0\x14\xef\xd8\x88\xfc\x51\xb3\x72\x6a\x42\x66\xa4\x3f\x1d\x69\x12\xa1\x18\x63\xd0\x3c\x56\x06\x76\xde\x63\x2e\x82\x28\x0f\x8d\x6a\x3e\xa0\x8a\x59\x86\x0e\xca\x6e\x08\x12\x69\x21\x8b\x25\x41\x77\xaf\xd4\x4c\xdc\xb2\x96\x3d\xb9\x0b\xf7\xdc\x2a\x10\x51\x88\xa9\xec\xde\x29\xdc\x41\x3b\xef\xd2\x8f\x3a\x07\x74\x75\x0a\x92\xb1\x6f\x9b\x10\x07\xfe\xa0\xc5\x62\x4b\x3c\x49\x18\x55\xb7\x29\xb8\x23\x74\x45\xb9\x70\x1e\x59\x3c\x26\xa8\x4e\x8d\xee\xe9\x2e\x6d\x38\xcd\xa2\x9d\xf3\x88\x08\xb6\x65\x49\xe5\xd4\x39\xb5\x9a\x3d\xb3\xd1\x97\x50\x20\x0c\x48\x47\x61\x11\x88\x65\x9a\xf2\x45\x64\x06\x2e\x1d\x39\xd4\x07\xb7\x31\x0b\xdc\x62\x37\x2e\xc4\xef\xda\xd2\x2e\xe0\x7b\x65\x67\xb7\xc8\xdd\xfc\x15\x28\x47\x68\x1b\xec\xd2\x4c\x26\x74\xc5\xcc\x4f\x69\x46\xb3\x1c\x01\x83\x7a\x6b\x16\x5e\x59\x1a\xc5\x3b\x2e\x42\x85\x8d\x0c\x48\xe3\x28\x4f\x68\x54\xfe\x12\x48\x81\x26\xa4\xf4\x84\xfc\xf1\x4f\xea\x17\xd5\x3f\x0b\x75\xf4\x97\xfe\x75\x2e\x46\xa3\x51\xf1\x1f\x1a\x73\x13\x4b\x46\x68\xcc\xd9\x43\xc6\x04\x34\x1e\xdf\x7d\x95\x8e\xb9\x3c\xde\xbe\x99\x0b\x1c\xf8\x2c\x4f\x33\xb9\xb9\x61\xa8\x16\x3f\x67\x20\x28\x02\xd2\xae\x44\x6c\x29\x5a\x73\x42\xd0\xef\x4f\xa0\x03\x5d\xca\xb2\x74\x1c\x24\xe1\x38\x4e\xa4\x02\x47\x00\x78\x68\x2c\x93\xd5\x5c\x28\x04\x07\xdf\x01\xd7\x72\x42\x3c\xcd\xaa\xba\x55\x9c\x90\xdb\xd7\x2f\xe2\x69\xf6\x3b\xe7\xfb\x4b\x9e\x66\x55\xc8\x35\x66\xa9\xb7\x85\x8b\x55\x1e\xd1\xa4\xd9\x00\x80\x1a\x48\xb5\xb3\x67\x51\x9e\x66\x28\x55\x6e\x0d\x80\xd5\x1f\x23\x0d\x01\x05\x38\xe8\x2c\x58\xb3\x4d\x19\xcc\x26\x63\x26\x4e\xa7\x93\xef\x3f\xbf\xad\xfe\x5e\x3b\xfb\xf5\xb9\x57\x9d\x84\xc1\x1e\x46\x93\x05\xcf\x12\x9a\xec\xc8\x64\x4a\xd2\x7c\x31\x32\xd3\x3c\x3e\x9b\x9c\xdf\x54\x10\x0f\xea\x31\xd6\x0a\x55\x21\x77\x03\x32\x2c\x08\x60\x88\x8b\x32\x89\xf1\x2a\xda\xf8\xb8\x21\x5b\x4e\x2d\x37\x10\x34\xf0\xe1\xa7\x76\xbf\x72\xd9\x9c\xa8\xb1\x12\x15\x4a\x1b\xfb\xae\x79\x34\xe9\xd6\x29\xac\x5e\xad\x6a\x00\xbe\x82\x9b\xb6\x86\xa2\x83\x30\x62\x03\x0d\x7e\x16\x6a\x58\x23\x3a\x00\xe4\xa6\x29\x13\x75\x69\xcb\x14\x08\x85\xbe\xa0\x63\xe0\x5b\x58\x92\x1a\xc9\x36\x90\x62\xcb\x92\x8c\x24\x2c\x90\x2b\xc1\xff\x52\x74\x9e\x1a\xfb\x2c\xd4\xc6\x68\xf0\x7a\x5c\x64\x2c\x51\x1c\x0e\x60\xa6\x23\x40\xc4\x1b\xba\x23\x09\x53\xc3\x90\x5c\x58\x1d\x1a\xef\x90\xf7\x8a\xb3\xe5\x62\x29\x4f\x20\x35\x4a\x7a\x72\x7c\xbc\xe2\x99\xb9\x80\x81\xdc\x6c\x72\xc1\xb3\xdd\x31\x58\x8d\xf8\x22\x57\x5b\x72\x1c\xb2\x2d\x8b\x8e\x53\xbe\x1a\xd1\x24\x58\xf3\x8c\x05\x59\x9e\xb0\x63\x1a\xf3\x11\xcc\x5d\x00\x22\x18\x6f\xc2\x17\x89\xbe\xb1\xe9\xa1\x0b\x6d\x35\xb1\x1d\x5c\xae\xb6\x6d\x50\xb7\x4b\xc7\x13\x22\xeb\x8e\xbc\x47\x01\x6d\x43\x7f\x6f\x2e\x6e\x67\xc4\x8c\xee\x8c\xbd\x44\xe0\x97\x5f\xa6\xe5\x3e\x28\xa0\x71\xb1\x34\x4c\x16\xa8\xa7\x6d\x9d\x04\x52\xf8\x88\x3b\xf8\xed\x34\x5f\x6c\x78\x96\x5a\x39\x35\xe4\x98\x9c\x41\x70\xa6\xa2\x5c\x79\x1c\xd2\x8c\x85\x63\x32\x11\xe4\x8c\x6e\x58\x74\x46\x53\xf6\xec\xbb\x00\x9c\xe6\x48\xc1\xb6\xef\x3e\x78\xe2\x60\x7d\x0a\xde\x02\x91\x7a\xb6\xad\x7e\x51\x15\x99\xac\x86\x63\x98\xe8\x9d\x32\x5e\x96\x12\xbf\x27\xb5\xd9\xd8\x1a\x25\x6d\xb1\x95\x79\xbc\x8b\x1b\x65\x74\x8c\x03\xd4\x64\x4a\x0c\x4a\x43\x0c\xb6\x60\x91\x54\x67\x4b\x6a\xb5\x11\x73\x99\x8a\xfc\xcc\xc5\x40\xde\x9f\x8c\xbc\xaf\x65\x5a\xda\xf3\x9f\x81\xb4\xdb\x5e\xf9\x75\xb2\x6e\xbf\x6b\x92\xf4\xca\xcc\xea\xe4\xdc\x7e\xf9\x9c\xa4\x7c\x20\x73\x03\x99\xb3\xb7\x60\x20\x73\xbf\x18\x99\xb3\xb1\x43\x3f\x12\xd7\xc4\x35\xe5\xb3\x3f\x91\x63\x0f\x31\x84\x8e\x4d\xa6\x7d\xf4\x4a\x6a\xa7\xf5\x07\xd5\x08\x95\x97\x93\xe9\xf6\x0b\xb8\x56\x93\xe9\xf6\xed\x2b\x23\xe1\x9a\x63\xe1\x14\x5f\x27\xa8\x2e\x9f\xa8\xbb\xb9\xa4\x01\x03\xab\xd8\x7c\x7e\x50\x33\x40\x14\x7a\x20\x90\xe8\x23\x29\xef\x8c\x22\x8e\x9b\x2f\x9d\xfa\x57\xe3\x56\x63\x45\xce\x4c\xa6\x15\xc7\x0d\xac\x08\x07\xa6\x31\xad\x61\x00\x24\x42\xb3\x31\x38\x42\x3a\x89\xf2\x7c\x9e\x81\x5a\x22\x4f\x1b\x1e\x95\xb5\xf0\x50\x08\xda\x29\x8a\xea\xc9\x44\x2b\xd1\x5c\x9d\xd6\x0b\xcc\xcd\xe7\xaa\x3f\x5d\x59\xae\x58\xbf\x46\x7e\x69\x75\x54\x2e\xdc\xc1\xa7\x85\xdc\x65\xef\xd3\x18\xa2\xc5\x14\x59\xa9\x78\xb8\xa1\x67\xe2\x45\x79\x14\x50\xe9\xe0\xea\x96\xa7\xa8\xe1\xc4\xf4\x24\x34\x23\x71\x9e\xc4\x52\xdd\xd4\x97\x93\xa5\xce\xf2\xb7\x66\xe5\xd6\xa8\x71\x8c\xcf\x4c\x7b\x8a\x08\xa3\xed\x93\x0c\xb7\x3f\x62\x34\x11\xc5\xb6\xe9\x1d\x2c\xfb\x55\x13\xc8\x53\xd0\x48\x7b\xbd\xb5\xe7\xf3\xcc\x6c\xc7\xd8\xa9\x4f\x7e\x72\xe6\x8b\x94\x33\x54\xc7\xb9\xfb\x4a\x5d\x60\x46\x35\x75\xee\xff\x0f\x2a\xd3\xb5\xa5\x03\x80\x56\x8d\x52\xbf\xe4\x22\x7f\x68\x3f\xf5\x85\xad\xb7\x38\xd0\xbf\x81\xa3\xb7\x89\xb3\xdd\x98\x94\xc3\xd8\xe6\x61\xb4\x95\xf2\xb4\x15\xb3\xa8\x67\x25\xb7\x2c\x11\x68\x65\x29\x1c\x77\xe4\x91\xf6\x1b\x55\xd3\x4e\x64\xbe\x42\x8f\x02\xa3\x34\xd5\x1c\x71\x29\x5e\x3b\x95\xcc\xb8\xb9\x70\x2e\x55\xc3\x22\x75\x87\x9a\xea\x95\x0c\x11\x2d\xc0\x99\xfc\x0d\x61\x6a\xfd\x78\xb1\x43\x75\x48\xb6\x78\x11\xdd\x51\xcb\x65\x90\xe8\x16\x2a\x40\xee\x4a\xf0\x1d\x11\x5b\xfd\x2a\x53\xf4\x7f\x3d\xce\x24\xf8\x54\xaa\xb9\x18\x0d\x85\xdb\xa8\x1f\xc9\x80\x46\x45\x30\xa4\x56\x59\x4e\x96\xa4\x82\xcf\x0c\x2e\xb3\xf6\xb7\x17\xa8\xe1\x22\x19\x78\x57\x9c\xa4\x60\xf9\x80\x4f\xd4\xda\x35\xaf\x05\x90\xb3\xc0\xef\x44\x32\xe6\x18\x95\x77\xa8\x80\x75\x65\xce\x70\x04\x47\xe4\x5e\xa1\xb9\x2a\x72\x76\xe3\x03\xd4\x9f\x8e\x2a\xdb\xef\x18\xac\x88\x5f\x29\x55\xb1\xea\x66\x3b\x3b\x15\x36\x32\x82\xac\x8a\x09\xb8\x28\x1c\x39\x66\x55\x4c\xe1\x88\x50\xc0\x1a\x4d\xf6\x8f\x68\x0b\xb2\x4d\xbb\x8a\x0a\x8f\x65\xce\x19\x74\xc1\x57\x42\x47\x82\xd9\x98\xf4\x28\x29\x79\x99\xe6\x6e\x0c\x43\x53\xf2\xf3\x4f\xff\xc3\xb2\xf5\xeb\x9f\x7f\xfa\xfb\x2b\xed\x3d\x0e\x86\x3d\x16\x12\x35\xeb\xdf\x10\x9e\x11\x9e\x8a\xc3\xac\xd4\x02\x77\xd3\x71\x82\x57\x39\x4e\xa4\xe2\x5d\xac\x03\x80\x10\xb6\x70\x42\xf5\x14\x96\x73\x76\x52\x5c\xe3\xe2\x7f\x82\x2b\x85\x88\x1a\xe0\x7d\x30\xea\x06\xed\x42\x8a\xdf\xda\xc4\x11\xdb\xa8\x93\x86\x88\xbe\x44\x1b\xf6\xa4\xd3\xdf\xb8\xf7\x8e\x67\x9c\x46\xd1\x8e\xfc\x5f\x05\xe1\x38\x61\x23\xf0\x47\x29\xac\x2c\x53\xb5\x45\x4c\x67\xbe\x2c\x90\x7e\x90\x6f\x7c\x12\x81\x7a\x4c\xf5\x4d\x64\xef\x75\x95\x4f\x29\x9c\xea\xfa\x36\xd4\x2d\xdc\x69\x8f\x1a\x32\xbd\x6a\xa7\x7d\x3d\xc1\x19\x68\xb9\x33\xe4\x5e\xcf\x18\x1a\x70\x25\x23\x0b\x27\xb0\xdb\x26\xe1\x8b\x31\xab\x59\x13\x14\xa9\xaf\x70\x83\x86\x5e\x1f\xa6\xfa\xe6\xea\xf0\x27\x93\x06\xd3\xe9\x09\xba\x60\x65\x11\x5a\x70\x5d\x2a\x98\x0d\xbd\xe1\x68\x70\xd9\x87\x36\x76\xfa\x17\x0b\x37\xe9\xeb\x86\x4c\x09\x9f\x8e\xcf\x5b\x63\x9b\xfe\x99\xd2\xdb\x3c\x57\x36\x93\x0e\x87\x4b\xe1\x41\xd7\x23\x00\xae\xe7\x4d\x4b\xbe\xa2\x47\xbb\x69\xc6\xba\x3c\x72\xd7\x71\x3f\x2d\xe3\x08\xf1\xc2\x71\xa0\x72\xcb\x46\xa1\x65\x3d\x09\x7f\x16\xb8\xd2\xb7\x58\x11\xda\x42\x02\xd1\x15\x91\x75\x27\xa5\xa7\xa3\x11\x08\xd0\x85\xcf\xd7\x29\x3a\xe7\xc6\x31\xa3\x49\xe1\x3c\x07\xbe\xdf\xa4\x98\x57\x69\x5f\x36\x3d\x1b\x27\x48\x56\x2b\x28\xdd\x2a\x02\xc4\xbe\xf4\x15\x83\xa2\xf0\x17\x50\x14\xf2\x98\x6e\x16\x91\x0c\xee\x9e\x43\x4b\x38\x99\x9e\xbe\xff\x46\x75\x5e\x57\x11\x16\x2f\x9a\xfa\xc1\x72\x42\x75\xe5\x60\xf1\x66\xd0\x0c\x0e\x9a\xc1\x41\x33\xf8\x6f\xa7\x19\x2c\x90\x42\x2f\xb5\xa0\xa8\x63\x97\xf2\xd9\x5f\x29\xa8\xa4\x0d\x05\x3b\x07\xb5\x69\xa3\x35\x34\x52\xd2\x88\x2f\x9f\x6c\x17\xfd\x6a\x61\xb7\x5e\x90\xd9\xf5\xf9\xf5\x09\xe6\x25\x10\x79\x14\xd1\x05\xd2\xf0\x0d\x15\x39\xc8\x1a\x34\x0c\x81\x94\x8f\xc9\x0f\xcc\xa0\x04\x3c\x37\xa4\x08\x5e\x4c\x46\x2b\xe6\x14\x2e\x5e\x28\x14\xb1\xa6\x22\x8c\x18\xf9\xe3\x9f\xfe\x8f\x3a\xac\x08\x9c\x68\xa7\x23\x8c\x9d\xd2\x94\x99\x88\x8f\x49\x6b\xe1\x8a\x68\x86\x47\xd2\xc9\x17\x7d\x02\xe3\x8d\x8b\xf8\xc8\xdd\x6c\x21\xe9\xc5\x7d\xa7\x4c\x11\x64\x9a\xb8\x76\x5f\xcf\x7e\xbf\x7c\xc0\x7d\xd8\xe4\xae\xf8\xa2\x47\xf3\x9f\x01\x0f\x5d\x3e\xa0\x6d\x73\x0a\x59\xc4\x32\x27\x67\xdd\x1e\xf2\x00\xd1\x70\xa7\x5d\x57\xc7\xf3\x75\x2e\xf4\xed\x71\x0e\xfc\xe8\xbb\xe3\x85\x8c\x47\x7e\x18\xd9\x97\xb8\xf1\xaa\x38\xb5\xf5\x37\x0a\xca\xf5\xdf\xaa\xf0\xa8\xbf\xb5\xd6\x3b\x70\xa5\x7d\xb8\xd2\x40\x8a\x25\x5f\x3d\x17\x5b\x7a\x06\xbd\xbb\xf8\x52\x7c\xe3\x66\x4c\xf5\x9c\x5c\x9c\x69\x50\x74\x38\xb0\xa6\x03\x6b\xea\xdd\x86\x81\x35\xfd\x57\x65\x4d\x11\x2f\xec\xc1\x9b\xda\x28\xa6\x7c\x1e\xc1\x9c\xe6\x99\x3c\xd5\xb4\x03\xf8\x5d\x17\x61\x6c\xa5\xb5\x1b\xfa\x80\x1f\x4e\x59\xf2\x9d\x4c\x5d\xba\xc6\x5a\xc2\xf5\x6a\x7b\x70\x6e\x17\x52\x8c\xfe\xc2\x12\x79\x64\xd2\xa2\x6d\xe8\x83\x8e\xdc\x54\xe8\xc0\x96\xd9\x6b\x53\x83\x44\x43\x54\x40\x34\xa2\xa2\x8e\x10\x16\xcf\x68\xb0\x06\x33\x8e\x57\x97\xec\xa1\xf1\x9f\xc2\x76\xf8\x99\x80\x06\x8c\xf7\xa1\xee\x03\x09\x77\x93\x70\xe4\xce\x9f\x8b\x84\x7f\x07\xbd\xbb\x48\x38\xbe\x71\x93\x70\x3d\x27\x17\x09\x5f\x17\x1d\x0e\x24\x7c\x20\xe1\xde\x6d\x18\x48\xf8\xbf\x2a\x09\x47\xbc\xb0\x07\x09\xb7\x51\x4c\xf9\xec\x4f\xc2\x81\x38\x3a\x48\x55\x6f\xc5\x42\x2f\xa9\xd7\xad\x2d\x78\xa4\x74\x8f\xc8\x70\x72\xbe\x97\x2e\xc1\x4b\x5f\x17\x4d\x3d\xdd\xa8\x18\x62\x20\xa6\xdd\xc4\x34\x96\x32\x7a\x1e\x42\x3a\x95\xc6\x02\x6a\x13\x51\xf5\xab\x8b\x80\xc2\x3c\x9a\xc4\x33\xd6\x9d\x0c\x84\x73\x20\x9c\xde\x6d\x18\x08\xe7\xbf\x26\xe1\x54\xb8\xa0\x37\xd1\x54\x8d\x1f\x4b\x21\x6f\xf9\x5f\x7a\x39\x2b\x41\x63\x92\xf2\xbf\x80\x24\x99\xa7\xe8\x61\x56\xfa\xfd\x12\x9a\xa6\x7c\x25\x36\xea\x64\x78\xd3\x16\xea\xdc\x00\x32\x1a\x93\x73\x13\x70\x9f\x49\xf2\xd9\x5b\xdd\x99\x76\xef\x7e\xf3\xe6\x33\xf3\xc3\xdb\x7d\x45\x55\x8f\x2e\xbe\xb1\x1e\x35\x0b\x72\x36\x39\xbf\xd9\xd3\xaf\x2a\xe4\x29\x5d\x44\x4e\xda\x5e\x19\x03\x1c\xb8\x4d\x63\x10\xdf\x93\xbc\x74\xb3\x56\x8c\x0e\xfa\x9a\xab\x83\x8e\xa0\x2b\x3d\xa8\x5d\xa0\xd3\x97\xca\xc0\x6f\x4f\xce\x82\xc7\xdc\x55\x2a\xb7\x8a\x2b\xce\xd5\xd5\x46\xeb\x80\xbe\xc8\xa6\xda\x2c\x78\x8a\x16\x2e\xd9\xa7\xd3\xc9\xf6\x0d\x04\xc8\xdf\xd3\x24\x74\xce\x16\xf2\x0d\x65\x7c\xc1\x23\x9e\xed\x14\xa2\xc8\x34\xa6\xb1\x7b\x85\xa5\x63\x5a\x94\xa3\xea\x2b\x27\x00\xd0\x0f\x1d\x31\x36\x16\x03\x8f\x76\xae\x72\xd6\x1d\x06\x2c\x26\x7c\xfb\xe7\xde\x43\xdd\xbe\xdc\x42\x05\x4b\x92\xe5\x42\xb0\x48\xad\xc9\x24\xee\xca\x3d\x4e\x37\x04\xdd\x2c\x43\x16\xf1\x2d\x4b\xca\xec\xb1\xea\xa7\x22\xb3\xba\x55\x74\xc8\xbf\xc3\xa4\x6b\x97\x09\xa4\x84\xf1\xd6\x5c\x6c\xdc\x81\xc9\x74\x32\x85\x0f\x74\x81\x62\xa3\x31\x32\x79\x86\x0e\x30\xb5\x81\xa9\x94\x00\x25\x56\x46\x58\x13\x64\x7e\x30\x26\xe4\xd4\xb7\xde\x8d\x2e\x82\x6c\xf5\xa0\x53\x25\xa4\x88\x3b\x60\xe4\x12\x86\x6a\x6f\x13\x99\xe3\x19\xf1\x96\xb9\xb2\xe0\x55\x0d\x0c\x69\xc0\x8e\x90\x53\x6b\x0e\xd5\x79\xfb\x7a\x87\x09\x9a\x83\x5e\x9f\xe0\xbd\xc9\x12\x61\xcf\x01\xdd\x33\xd5\xed\xf0\xf5\x49\xcb\xfc\xce\xba\x96\x8a\xe1\x48\x4c\x1a\x4a\xd5\xb9\x30\x3b\x50\x7a\xb4\xb7\xe6\xc5\x7f\x09\x9a\xc1\x32\x09\x5f\xf8\x4a\xcd\xa2\x84\x75\xeb\xd1\x69\xf7\xe0\x72\x8b\x33\xea\xc4\xbf\xef\xe1\xd4\x7a\x66\x68\x15\x1a\x66\xf2\xa4\xa4\x53\x8e\x0d\x6f\x3f\xea\x93\xda\x1a\x8f\x4c\x02\x4b\x2c\xd9\xa9\x01\x85\x69\x70\xe6\x07\x57\x6c\x0b\x19\x03\xb1\x88\x64\x75\x30\x57\xef\xaa\x07\x8d\x9b\x5d\x59\xd3\x5b\xbd\x7b\x69\x36\x92\x79\xb6\x92\x5c\xac\xfe\xb7\xa0\xd4\x56\xac\x23\x68\x76\xdd\x13\x1e\x98\xcd\xc7\x02\x60\x89\x55\x0d\x5e\x84\xa4\x39\x56\x5e\x68\xd2\x1a\x1f\xa1\xb9\x23\xc5\x84\xda\x08\xa0\x81\x5d\x65\x9e\xa5\x3c\x64\x85\xb4\x01\x8d\xd4\x8d\x77\x75\x0a\x09\xeb\xd3\x3f\xe7\x2c\xa1\xa1\x33\x05\x6a\x3b\x38\x64\xd8\x3b\x5d\xe8\xa9\xda\xaa\xd4\x70\x70\x3a\xff\x84\x3a\x2e\xda\x7d\xbf\xf0\xc0\x07\x54\xb3\xd8\x61\xba\x09\xd7\x9c\x8b\x8c\xb1\xfb\x1d\xe6\xed\x43\x44\xc5\x27\x5e\xed\xef\x7f\x7f\x79\x7a\xf5\x8b\xdd\x6d\x18\xcd\xc9\x5b\x16\x13\x78\xf4\xe5\xf6\xaa\x52\x9a\xae\x07\x83\xc6\xa4\xa9\x31\xb9\xcb\x17\xac\x74\x84\x4a\x2b\x27\xe5\x39\xf4\x28\xbf\xcb\x17\xec\xac\x1c\xef\xcc\x1e\xaf\xae\x5d\x69\x6b\xdb\xd4\xb9\xb4\xae\xa4\xae\x89\x69\x6b\x3c\xe8\x67\x06\xfd\xcc\xa0\x9f\xf9\xb7\xd3\xcf\xb4\x61\x93\xa6\xd6\xa6\x92\x90\xad\x0e\xe0\xdf\x15\x51\x39\x96\x13\x69\x8d\xcc\xf6\x57\xe9\x58\x5d\xf4\xa1\xe8\x66\x34\x94\x71\x31\x45\x9e\x19\x59\x27\x77\xdc\xf2\x30\xa7\x91\x35\x4d\x1f\x1b\xa6\xfb\xda\x5b\x1e\x2f\xa2\x67\xfb\x48\xad\x45\x7e\x75\xdf\x94\x4d\x54\x33\x36\x2a\xe7\xe5\x4d\x64\x7f\xa1\xc5\xfb\xc5\xce\xf0\x1d\x47\xa6\xc8\x96\xe0\xc8\x48\x22\x2f\xe1\xe9\xa1\x47\x1d\x0c\x85\xa6\x44\xc0\x23\x96\x4c\x59\xc2\xa5\xdf\x6f\xb6\x8e\x1c\x6e\x6a\x1f\x1a\x2f\x90\x18\xff\xca\xa4\xfa\xd7\x52\x26\x9b\x62\x08\xee\x0d\x6e\x34\x0f\xa4\x75\xb5\x62\x0c\xd5\xad\x00\x96\x61\x4c\xfe\xa8\x75\x72\x27\xe4\xcb\xcd\x9f\x1c\x52\x80\x79\xba\x7d\x6d\xbb\x3c\x6d\x3d\x11\x92\x0d\x08\x5c\x29\xb6\xb7\x6d\xa7\xd5\xfb\x7f\x8e\x4d\x5e\x5b\x41\xab\x7d\x37\xd8\x0e\x74\x35\xcb\x80\xcc\xdf\x81\x51\x0b\x00\x85\x84\xc0\x6b\xab\x26\x4e\xcb\xee\x9e\x1b\x85\xe3\x63\x57\xda\x73\xb5\x44\xfb\x48\x9d\x25\x8c\x7a\x92\x58\x78\xd6\x7c\x78\x5a\x7c\x56\xee\x6c\x9e\xc9\x0d\xcd\x78\x50\x26\x6a\x95\x9d\x75\x2f\xaa\x50\x01\xa9\x43\x09\x0a\x3b\xad\x4e\x29\x0f\xb3\x81\x49\xdb\x91\x26\xbd\x4b\x59\xf4\x29\x64\xf1\xbf\xef\xc2\x13\x38\xb5\x90\x06\xbb\xed\xd0\x54\x57\x7b\x5b\x7c\x52\x1e\xfe\x22\x8b\xb0\x24\x81\x8c\x77\x1d\x74\xc7\x3c\x80\x07\xca\x2c\x8e\x56\xf8\x74\x6a\xaf\x52\xa3\x81\xe7\xc5\x6d\x18\x5b\xd9\x07\xbb\xe9\x44\x2c\x2d\xf8\x4d\x47\x4f\xff\x73\x60\xb8\xff\x7d\xa7\xba\x6b\xab\xab\xd9\xc0\xfb\x6c\x79\x35\x13\x78\xdb\xd6\x77\x14\x14\x32\x65\x84\xac\xa3\x31\x9c\x81\x7f\xc4\x19\x30\x59\x31\x3a\x68\x7f\x55\x0d\x5a\xfb\xa6\xed\x1c\x74\x15\xc2\x67\x35\xfe\x61\x38\x09\xff\x98\x93\xd0\xf6\x96\x65\x41\xf8\xfd\xe7\x67\x72\x13\x63\x8d\x2a\x2f\xc4\xaa\x90\xba\x70\x7e\x56\x83\xd7\x82\x65\xf7\x8c\x09\x18\x63\xfb\xb9\xd7\x70\x00\x1d\x14\x52\x3c\x98\x0f\x14\xa8\x5f\xdb\x67\xc1\x82\xd5\x9b\xd7\x4e\x60\xb5\x01\x69\xcd\x68\x94\xad\xcf\xd6\xcc\xed\x2c\x5f\x5d\xda\x77\x56\xe3\xe2\xf4\xcb\xc4\x4c\x25\x2d\x2a\x57\x28\xb6\x0e\x7b\x76\x2e\x0d\x3b\xe8\x45\xe1\xdb\xe6\x1e\xc9\xd5\xad\x62\x1e\x79\xb6\xbb\x0d\x12\xc6\xea\xaa\xb3\xe6\x02\x2e\xeb\x5f\x98\x6d\x89\xe4\x8a\xa4\xfa\x0d\xa1\x0b\xb9\x65\x3a\x75\x4a\x24\x57\x4e\x1e\x06\xd2\xf9\x30\x51\x58\x06\xd3\x2c\x94\x79\x66\x6f\xc6\x44\x2c\xe5\xbe\x2b\x8a\x13\xb9\x51\x9c\x54\x9e\xbe\x67\x59\xc2\x83\x74\xea\xce\x77\x52\x5d\xd5\xd4\xf5\x95\x59\xd9\xec\x6c\x6a\x95\xf8\xd6\xa5\xac\x75\x73\xd7\xc2\x36\xd8\x05\xaa\xc0\x93\xa2\x3c\x12\x17\x58\x18\xa9\xe3\x04\x7e\xfd\xfa\xeb\x2f\xfc\x8b\x76\x3a\x7f\xf8\xd5\xf7\x3e\xf5\x84\x57\xff\x53\x2a\xe5\x3d\xa0\x6a\xd5\x00\xc1\xd7\x96\x26\x4e\xef\xab\xfa\xd5\xa1\x38\x05\xe5\x5b\x45\xdd\x43\x26\xd9\x21\xa4\xc0\x5b\xe6\x11\x5a\x82\xc2\x0d\x28\x93\xa0\x20\x19\xc4\x25\x43\xf1\x0f\x2c\x14\x4b\x83\x2c\xa7\x0d\xa3\x10\xf6\x88\x7b\x75\x4f\x8b\x4c\x24\x26\x91\x8f\xb6\xf4\x6f\x64\x88\x95\x34\x16\x8a\x0f\xdd\xf2\x44\x82\x07\x0f\xd9\xd2\x84\xc3\x45\x6c\xcc\x17\xcd\xe0\x77\xf9\x82\x8d\x6c\x7d\x55\x9c\xc8\x80\xa5\x75\xe1\xb4\x2d\x27\x64\x39\xda\xf7\xd4\xa9\xad\xda\xd3\x51\xd7\x87\xba\x2b\xdb\x76\x51\x1d\xb5\x9e\xfa\xc8\x01\x00\x8f\x75\xdf\x09\x04\x00\x36\x17\xcb\x28\xc7\x44\x48\x58\xbb\x1d\xaa\x44\xe2\x01\xf1\x5a\xa3\xdc\x74\x23\xb1\xbf\xed\xba\xbc\x95\x81\x6a\x0b\x83\x7a\xc0\x7c\xcb\x2a\xa7\x82\xa7\x66\x00\xd7\x02\xb9\x6f\xa3\x65\x78\xa4\x93\xce\x6c\x58\xb2\x32\xfa\xe9\xd3\xe9\xa4\x54\x4f\x2b\x72\xec\x44\x75\xc2\x73\xca\x1c\x70\xe9\x60\x41\xda\x15\x9d\x0d\xe0\x3c\xa5\xb2\x93\x74\x29\x3c\x7b\x4c\x9f\xf4\x50\x7c\x36\x16\xb1\x9f\xf2\xb3\x8d\x5f\x7a\x4a\x5e\xb1\xe7\x6a\xc9\x7e\x3c\x63\x63\xf1\xfd\xf9\xc6\x2e\xc5\x51\x95\xad\xec\xc5\x3b\x76\x75\xd9\xce\x5a\x92\x27\x55\x2e\xb5\xe8\x4e\xc9\x73\xe9\x4f\xc9\x13\x68\x18\x48\xff\x73\xd2\x53\x97\xda\x58\xee\x1e\xfa\xd4\xae\x1d\xb5\x0a\xbc\x3d\x89\x4e\x75\x8f\xd5\x93\x7d\x74\xab\x0d\x18\xf4\xd3\xaf\x76\x77\x0a\xac\xc9\x93\xeb\x58\xc9\x1e\x25\x83\xfb\x5d\x07\x32\xe0\x95\x3e\xc0\xec\xa5\x9e\x6d\x02\xe7\xe9\x54\xb4\xe4\x49\xd5\xb4\xfd\x97\xde\xe7\x0c\xb5\xaa\x6c\x1b\x40\x79\x4a\xb5\x2d\xf9\x65\x11\xeb\x70\x51\x9e\xe0\xb4\xf4\xd2\xfa\x92\x67\xd3\xfc\x92\x67\xd2\xfe\x92\xe1\x18\xfd\xa2\xc7\xa8\xa7\xe2\x98\x3c\xa7\xf2\x98\x3c\x97\x02\x99\x0c\x87\xe9\x17\x3c\x4c\x5d\x2d\x7a\xeb\x9f\xc9\x73\xe9\xa0\xc9\xd3\xea\xa1\xfb\x00\xaf\x43\x1f\xdd\x5c\xea\x13\xe9\xa4\xc9\x9e\x7a\xe9\x3e\x6b\xe9\xa3\x9f\x6e\x2e\x68\x6f\x1d\xb5\x6f\x39\x91\x5c\xa5\x9f\xa0\xa7\xee\xb3\xc2\xbe\xfa\xea\xe6\x2a\x9f\x54\x67\x4d\x3e\x55\x6f\xed\xeb\xd4\xa7\xce\x26\xdd\x89\x06\x5a\xb2\x70\xb7\xa8\xb6\x49\x2b\x5e\x18\xdc\xd7\x9b\xee\xeb\x3a\xd0\x04\x98\x77\xfe\x2c\x19\x74\x74\xe1\x40\x14\x20\xf0\x45\xe9\xa1\x5e\x79\xd9\x74\x49\xaf\xcd\x4e\x6f\x46\xe1\x84\x6e\xbf\x86\xae\xb5\xd7\x79\xa1\x33\x04\x1e\x60\x70\x3c\x1f\x1c\xcf\x07\xc7\xf3\x7f\x2d\xc7\xf3\x36\x1b\x1a\x14\xfb\xea\x13\xed\x0e\x85\x07\xd4\xf1\xc7\x72\x5d\xac\x52\x06\x1d\xab\x16\xa8\x3f\x0a\xb3\x91\xd3\x7a\x63\xbe\xc6\x50\xbd\x7a\x29\x32\xa8\x73\x46\x02\x99\x24\x2c\x8d\x15\x5a\x17\x2b\xa2\xd9\x3d\x53\x30\x6a\xaf\x82\x03\xb5\x1a\x56\xa7\xe4\x46\x4d\x90\x89\x80\xc6\x69\x0e\xf7\xb6\x9c\x91\x6b\x2a\x1e\x1d\x27\x4e\x69\x4c\xc8\x37\x32\x5b\xd7\x6a\x26\x34\x6a\xa4\xa9\x8e\xea\xb5\x21\x3c\x7c\x43\x51\xff\x44\xd7\x68\x18\x91\x94\xc5\x34\x51\x87\x94\xc8\x3c\x23\x54\x4d\xd7\x94\x9f\xc0\x26\x8a\x8f\x84\x0a\xf5\xdc\x5f\x16\x9f\xc0\x1c\xf4\x7e\xd9\x80\xe7\x62\x85\xd5\xa0\xb0\xe4\x04\xd4\xaa\xd9\xb2\x3a\x24\xd6\xd4\xd7\x2b\x11\x6c\x05\x93\xd3\x88\xf7\x88\xc4\x09\x5b\xf2\x07\x16\xa2\xf0\xf3\xf3\x4f\x7f\xbf\x92\xd9\xcf\x3f\xfd\x7d\x4c\x4e\xa3\x48\x27\x1f\xb4\xfb\x76\xf7\xab\x43\xb1\x29\x1e\xa7\xa2\xfe\x11\xcd\x78\x0a\x76\x66\x8c\x6b\xd4\x0b\xc9\x24\xf6\x39\x26\xa7\x40\xca\x9a\x69\x9f\x34\x6c\xe1\x68\x52\x61\x8e\xa7\x56\xb2\xe9\x25\x2b\x00\xc1\x62\xd4\x1f\x7a\x35\x58\xd4\xcc\x5b\xb3\x0d\xa1\x0a\xb0\x77\x4f\x51\x0d\x00\xa3\x16\x53\x74\x07\x8e\x77\xca\xb8\x78\xdc\xbc\x6c\x61\xb7\x04\x68\x85\xb1\x7a\x7b\xa9\x5c\x95\x73\x2b\x42\xbd\x62\x05\xae\x1d\x0d\xe0\x88\xe1\x5a\xb6\x88\x9e\x95\x30\x5a\xa2\x30\x61\xe6\xba\xc5\x3d\x81\x41\x6c\xab\x67\x4b\x8c\xac\x67\x65\xf3\x83\xab\xfa\xc7\x40\xc1\x04\x91\x31\x3a\x0a\xe8\x68\x67\x5f\x81\x95\xf2\xa9\x54\x8e\xd7\x5d\xb1\x07\x45\xc0\x52\xc0\x0e\x50\xba\xaa\x52\x12\xcd\x04\xec\x77\x69\xb9\x81\xc6\xbd\x54\x47\x88\x25\x1b\xfc\x80\xd0\xec\x95\x65\x45\x29\xb2\x15\x98\x92\x2d\xfe\xbc\x11\x35\x90\xa5\x45\xb2\x09\xd8\x4b\x45\xfe\x20\xa2\x1a\x0e\x72\x03\x36\xed\x9d\xaa\x0b\x50\x40\x51\xc9\x76\xc8\x8c\x85\xc6\xc3\x23\xa5\x1b\xbc\x02\x3a\x38\x17\xe2\xd5\xfb\xe8\x93\x2c\xdb\x99\x3e\x63\x49\x31\x5f\xb2\xd8\xe1\x64\x8b\x32\xfa\xc5\x8a\xfa\x81\x42\x97\xec\x53\xf3\x42\xec\xf7\x4e\x26\x55\xce\x59\x71\x6b\xba\x5a\xdc\x9e\x10\xe1\x9b\x38\xe2\x65\xad\x42\x46\xec\x43\x16\xf1\x0d\xd7\x11\xc9\x38\x53\x45\xde\x14\x4c\xda\xfb\x2c\x6a\xa6\x95\x30\xe1\x16\x7c\xcb\x48\x25\x8a\x77\xb4\xb2\x94\x0e\x73\xa2\x67\xf9\x87\x2b\x28\x6a\xfe\xf2\xd5\x61\x13\x00\x66\x8d\x1d\x6a\xa9\xbd\x00\xd0\x28\xa2\xde\xde\xb9\x4c\x2a\x66\xda\x72\x17\x2b\xdd\xd4\xf7\xb2\xbd\x4f\xef\x3a\xab\xab\x40\x17\x28\xe0\xfd\xf7\x3d\xc8\x14\x72\x88\x40\x51\xca\xf2\x36\x7a\x68\x42\x01\xc6\x5e\xda\x3d\x4f\x01\xf8\xf2\xa9\x1a\xf4\x59\x96\xfa\x71\x9e\xe2\xd3\x21\x65\x6e\xea\xab\xcf\x58\x3e\x86\xba\xc1\x16\x96\xe5\xac\xdc\x28\xaf\xc0\x6a\x1d\x07\xa7\x8a\xf2\x2a\x39\x5a\xa0\x52\x6d\x51\x24\x77\xc5\xb7\x4c\xe8\x94\x28\xed\x11\x4d\x7e\x06\xd1\x1a\xb7\xa7\x11\xb4\xa5\x84\x43\xf9\x08\x99\x5d\xed\xb7\x27\xf8\x81\x51\x39\xd5\xf8\x2a\xb3\x62\xd5\xa4\x83\x72\xa8\x7d\xfc\xa7\x83\xc5\xd4\x53\x47\xb0\x7c\xea\xc0\xc0\xa2\x82\xed\xd0\x80\x36\x7d\xc0\x41\x6e\xb9\xe2\xa9\x65\x51\x4a\xd2\x14\x90\x4b\xc9\x9a\x6e\x99\xa9\x4e\xc8\x97\x70\xba\xe2\xee\x6e\x41\x8d\x69\x12\x4f\x10\x9e\x19\xf5\x5a\x6a\xb4\x83\xd0\xbb\x66\x96\x34\xae\x56\x92\x47\x07\xd4\x25\xd2\xb0\x0c\x53\x56\xcc\xce\xa6\x26\x69\xd2\x87\xf3\xa9\x37\x23\x0f\x3e\x7d\x76\xb5\xbd\x98\x20\x3e\x3d\x4b\x0a\x56\x1b\xf7\x71\xc3\xe8\x53\x5e\x10\x9f\xc7\x14\x19\x34\x4f\xdf\x03\xb9\x3f\xdf\x78\x55\x7e\xd4\x71\x2c\xfb\x31\x0a\xfa\x64\x92\x5b\x66\x11\x17\xc4\xc2\x4a\x76\x48\xf3\x45\x16\x31\xc5\x06\xa3\x24\xa5\xc7\x6a\xef\xb3\x60\x88\x5a\x8f\x4a\xbf\x3d\xf3\x95\xfe\xf4\x80\x67\x7e\x50\xdc\xd8\x2e\xb2\xd2\xc5\x37\xb0\x3e\x64\x65\x0d\xa2\xb0\x56\x28\xbd\xb4\xe4\x8b\x57\x1d\xc7\xb0\xd0\xe3\x23\x37\x69\x17\xf9\x4d\x19\x49\xa8\x58\xb1\xf4\xd8\xe8\xe3\x20\x9f\x59\x6b\x1a\x2d\x7c\xb8\x2d\x97\xeb\xab\x03\x66\x1f\x84\x72\x6a\x20\xa0\x95\x5b\x7a\x98\x0e\x1e\x67\x89\x7b\x80\xcc\x4d\x5f\x0c\xd6\x89\x01\xb0\xe9\x5e\x18\xac\x63\xed\x25\x7a\xab\x61\xb0\x39\xe2\xb0\xb9\xc6\x62\x73\xc4\x63\x73\x85\xc9\x5a\x79\x9e\x01\x97\xc1\xd3\x0b\x97\xa5\x8f\x10\x80\xbb\xe5\xde\x56\x15\x5e\xf9\x38\xe5\x5e\xf2\x32\x65\xcc\xe8\xbe\x00\x95\xd1\x4d\x1c\x31\x92\xee\x44\x46\x1f\x5c\xb9\x94\xec\x67\x3e\x6f\x15\x9b\x35\x0f\xe9\x13\x8b\xdb\xfb\x36\x2a\xaf\x4a\xa1\xd3\xa6\x34\x6c\x6a\x4f\xc3\xd8\xea\xf4\x74\x00\x41\x47\x18\x18\x6b\x40\x07\x55\x40\xf0\x58\xd4\xa4\x43\x56\x65\x91\xbc\x7f\x75\x54\x9d\xb2\x05\x6c\x84\xaa\x2e\xfe\x66\x8c\xcb\x1d\x70\x40\x3d\x17\xe8\x2f\x67\x6b\x46\xb2\x7b\x09\x67\x0d\x92\x8b\x98\x77\xba\x40\xf8\x22\x8b\x76\x65\xfa\xc1\x8e\xbd\xbb\x16\x66\xf5\xc6\x07\xa9\xd4\xab\x32\x4b\x7a\xc5\xd5\x48\xf0\xff\xd3\xed\xbb\x69\xc2\xfd\x5a\x46\x7a\x93\x4e\x60\x8b\xe6\xf3\x92\x20\xff\x16\xb0\xcb\xaf\xd6\x34\x7d\xb9\xd9\x7d\x04\xe7\xc0\x57\x80\x77\x34\x92\xef\xba\xce\x3a\x9b\xa6\x51\x34\xc0\x21\xc3\xf9\xa1\xeb\x46\x19\xbc\x10\xaa\x71\x7b\x9e\x37\xe8\x2f\x94\x90\xa6\x0c\xb0\x34\x1a\x8b\x16\x2c\x22\x3f\xff\xf4\x3f\x66\xa2\xa0\x1d\xd5\x0b\xea\x7d\x2c\x70\xc1\xde\xf5\x36\x97\xa4\xe6\xe0\x4b\xa8\x5b\x3e\xed\xab\x2d\x16\xd4\xbe\x98\x6e\x85\xc3\xac\x08\x27\x41\x56\x4a\x6b\x0a\x22\x40\xab\x3a\xc9\x27\xd8\x81\x8b\x75\x74\x4f\x5d\x48\x31\xd2\x7e\x36\xda\xc8\x45\xee\xd7\x2c\x61\x5a\x27\xb2\x94\xc9\x86\xd5\x75\x10\xba\xf7\x1e\xba\xb8\x26\x60\xac\x54\x1a\x4f\x20\xc0\x57\xdd\x01\xf7\xe0\xbb\xaa\x1e\x81\xbf\x1c\xff\x55\x43\xc9\xed\x7d\x3a\x34\x99\x94\xc4\x32\x34\xa1\x43\x68\xd7\x28\xd0\x73\x0f\xdf\xc5\xc2\x7b\xb1\xf5\xb4\xf5\xf6\x95\xb7\xad\xec\xfe\xa7\x19\x47\xf3\xe9\xe0\x26\x8f\x01\x79\x77\x97\x3e\x05\xb2\x03\xec\xbd\xa0\x4d\x2c\x7f\xd1\xfb\xb5\x4c\x51\xeb\xa8\x96\xaf\xd9\x3f\x28\x31\xde\xd5\x47\x1f\xc6\x8e\xec\xe5\xdc\xdf\x93\x4b\x22\x7d\x39\x25\xd2\xbc\x5f\x9d\xbc\xd2\xbf\xef\x4e\x57\xe4\xa4\x52\xe3\x86\x58\xbf\x48\x16\x4a\x26\x9d\x69\x76\x88\x65\x5d\x68\x1a\x0d\x4a\x39\x44\x67\xf0\x64\x3b\xf5\x7b\x77\xa7\xa7\x57\xe7\x87\xce\xdc\xaa\xd5\x67\x3f\x6d\x56\xbb\xc3\x6d\x77\x9b\x75\x96\xb9\xb2\xa4\xe3\x53\x8d\x34\x9a\xcd\xa6\xa5\x11\xc9\x6b\x59\x53\xc7\x43\x35\xf5\x4f\xbd\xf0\x84\xfc\x24\xa3\xda\x86\x65\x6b\x19\xee\x41\x7b\xde\xe3\x07\x4f\x4b\x73\x70\xc9\x70\x39\xf4\xba\x2d\xef\x0d\xd5\x27\xa6\x18\x66\x9d\xc9\x9d\x0c\x56\x62\x21\xf6\x62\x66\xfb\x92\x8d\x57\x63\xf2\xed\xc5\xec\x88\x4c\x3f\xcc\x8e\x08\xcb\x82\xf1\x2b\xf2\x3e\x8f\x32\x1e\x77\x69\xe8\x34\x88\xe0\xd4\x5e\xdf\x1c\x2a\x26\x62\x05\x71\x2c\xff\x5c\x1a\xd7\x98\x66\xeb\x3d\xf6\xf1\x70\xaa\xda\x3f\xc7\x36\x76\xed\x60\xb7\x85\xc1\xde\x41\x98\xe6\xb8\xd8\x2a\x5c\xa6\xd9\x8b\xbe\x9b\x41\x08\x1b\xaf\x4e\xc8\x88\xb0\x07\x1a\x64\x27\xe4\x78\x29\x25\x19\x69\xbf\x85\x13\x72\xbc\xa0\x09\xb9\xba\x9e\x5d\x9c\xa0\x4f\x04\x13\x59\xb2\x23\x9b\x2e\xe2\x72\x7d\x75\xf9\x07\x8d\xc7\x76\x84\x71\x10\x1d\x28\x99\x1f\xc0\x20\xa8\xff\x50\x7f\xe2\x28\x86\x4f\x1f\x2b\x46\xb8\xbd\xdf\x2d\x8d\x78\x48\x0b\x31\x15\x5c\x82\x31\xe3\x76\xe6\x4a\xb1\x5d\x3e\x7d\xce\x5c\xcd\x73\x79\x36\x9b\x2a\x08\x17\xe8\x18\x8e\x03\x00\x5e\x01\xda\x72\x62\xe8\x40\xb7\x93\x0c\x5c\xb6\x16\xcc\x00\x42\x4b\xc0\x8a\x05\x3f\x31\x60\x9f\xe7\xaf\x5f\x7f\x1e\xa8\x8e\xe1\x5f\xec\x44\xa7\x14\xe8\x25\xb0\xe1\x51\x83\x59\x41\x77\x0a\x61\x24\xc5\x16\x96\x5d\x8f\x34\xbc\x3f\x69\x04\xec\xa3\xc3\x09\x7f\x8f\xa8\x4c\x04\xc0\xd3\x32\x41\x7a\xe9\x4f\xd9\x69\xdf\xb0\xc9\x1e\x08\xa9\xbb\x2b\x1e\x6c\x7a\xd2\xcc\xc9\xd9\xfb\x69\x5f\xdb\x25\x20\x23\xff\xdc\x6d\x2c\x65\x65\x49\x57\xb3\xd5\x61\x30\x98\xeb\x1d\x86\xd4\xfc\x99\xae\x71\xd1\x22\xc8\xa1\xd3\x28\xd0\xaf\x45\x45\xc5\xba\xac\x6a\x56\x8b\x6c\xfb\x85\xbd\x47\x8d\xd3\x26\x4b\x82\x25\x48\x35\xda\xbe\x6d\x31\x06\xf5\x3a\x89\x41\x7b\xf8\x77\xa3\xaa\xac\xe2\x4c\xa4\xb0\xa1\x04\x40\x09\xb0\xe6\xc4\x64\x69\x65\x61\xef\x26\x11\x33\x05\x60\x74\x14\x05\xbf\x29\xa8\xe7\x61\xc3\x4a\xeb\xdd\x41\xa9\x9e\xb1\x60\x2d\x78\xd0\x4c\x4d\x52\x7d\x40\xa8\x47\xc5\x15\xdf\xc4\x32\x45\x2f\x11\xc8\x3d\xc1\x12\xc1\xa2\xc3\x94\xf0\x38\xc3\x08\x8c\x25\x4f\xd8\x3d\x8d\xa2\x8e\xa9\x22\xb6\xd0\x2a\x85\x3c\x45\x93\x3f\x13\x4b\x89\x2e\xac\xda\x7f\xa4\xfb\x6a\x74\x6a\x9f\xa1\xd9\xa7\x6f\x86\xea\x66\x4c\xc0\x0b\x82\x3d\x80\xca\xb5\x4b\x79\x8b\x7b\x20\x97\xe4\x2b\x74\x3c\x84\x15\x42\x5f\x17\xc1\x5a\x92\x1b\x24\xda\x3a\x65\x7e\xcc\xc5\x2a\x6d\xd7\xde\xf6\x5a\x6f\x0f\x64\x10\xbb\x3d\xc0\x3d\x00\x99\x4c\x8d\x27\xf8\x27\xbb\x34\x54\x44\x33\xe4\xc7\x6d\x28\x4f\x8d\x4e\xd7\x0b\x85\x1e\x10\xf0\xf8\xf2\x7a\x16\xf7\x5e\xb7\xb6\x7c\xcd\x8a\x84\x36\xe0\xa2\x9c\x6c\xca\x1a\x0a\x2e\xbf\xea\xea\xe2\x3e\x09\x69\x80\xdb\x34\x66\xaf\x6f\x4f\xe9\xda\x37\xe5\x4e\xf9\xf4\x25\x4b\xd5\xba\x17\xe5\x7c\xb4\x0f\x3a\xea\x9b\xef\xd8\x4e\x1f\xed\x98\x72\x9d\x50\xa7\x7d\x78\x25\xd6\x12\xf6\x90\x25\xb4\x02\x53\xba\x90\x79\xd6\x83\x90\x3c\x95\xe4\x28\x64\xa6\x6e\x5f\xbf\x93\x71\x85\x8d\x3b\x6c\xd1\xd0\xa4\xdd\x27\x64\x20\x18\x03\xc1\xf8\xd7\x26\x18\x42\x66\x86\xad\xf2\x82\xa5\xdd\x5e\xdc\xd3\x52\xdc\xcf\x46\xdc\x70\x65\x32\x2c\x5f\x87\x37\x93\x6e\xe6\x07\x58\xc7\x3d\xee\x61\x94\x7e\x9c\x39\x3a\xfe\x67\x05\xee\xfc\xc0\x86\xed\x13\xd2\xfe\x86\x5a\x16\x22\x01\x6c\x4e\xc0\xc0\x64\x0c\xa7\x9e\x27\x6d\xae\x39\xda\xaf\x4c\xef\xf3\x05\xf8\xbf\xdf\x40\xf0\x86\x09\x45\x40\xdf\x99\x97\x0b\x16\xd0\x3c\xd5\xde\x1c\x1d\x8e\xc1\xc5\x14\x03\x96\x40\x1f\x85\x47\xc8\x2b\x34\x27\xbe\xd7\x31\x09\x15\xff\x96\x2e\x12\x8b\x8e\x2f\x27\xb6\xef\xc6\x91\xed\xb9\x81\x7f\x80\xa4\x52\xf9\x6b\xfb\xb6\xfc\xfb\xf6\x6c\x86\x6f\xfd\xc3\xe8\x1e\x2f\x79\xc6\x8c\x7b\x08\x15\xe6\x80\x18\x93\x02\x38\xc9\x90\x37\xa3\xcf\xbe\xfc\xb2\xc5\xc6\xf6\x7c\xc7\x1e\xcd\x88\xfd\xa8\xf1\x2d\x3a\x22\xf5\x0b\x95\x68\xa9\x4e\x68\x46\x1d\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x09\xf7\x8a\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x7c\x2b\x19\x70\xd9\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xcd\x67\x88\x92\x18\xa2\x24\x8a\x67\x88\x92\x18\xa2\x24\x9e\x3f\x4a\xa2\x25\x1b\xad\x92\x31\x30\xdf\x99\xeb\x5d\x9f\xf2\x89\xce\x53\xae\xb3\xe3\x3d\x22\xcd\xa1\xfe\x72\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xfd\xa8\x71\xc8\x73\x38\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x97\xcf\x60\xc1\xb7\x9e\xc1\x82\x3f\x58\xf0\xf5\x33\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\x03\x2e\x1b\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xe6\x33\x58\xf0\xeb\xcf\x60\xc1\x1f\x2c\xf8\xf5\x67\xb0\xe0\x0f\x16\xfc\xe2\x19\x2c\xf8\x83\x05\x7f\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x64\xc8\x73\xd8\x73\x84\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xa4\xad\x1a\xd2\x56\x0d\x79\x0e\x87\x3c\x87\x43\x9e\x43\xff\xfc\x87\x3c\x87\x03\xc1\x18\x08\xc6\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\x43\x9e\xc3\xda\x33\xe4\x39\xf4\x0b\x90\x43\x9e\xc3\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\x65\xc5\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xbe\x95\x0c\xb8\x6c\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\xe6\x33\x44\x49\x0c\x51\x12\xc5\x33\x44\x49\x0c\x51\x12\xff\x8e\x79\x0e\x21\x79\x61\x57\x96\xc3\x6b\xd5\xa8\xe5\x0c\x97\x9e\xd1\x99\xc9\x87\xe8\x61\x7c\xd1\x17\x04\x33\xcc\x01\x8b\xaf\x3a\x05\x9d\x78\x38\x46\xae\xbf\xd0\x59\xac\xf9\x4a\xb1\x50\xf3\x03\xe8\x6f\x7e\x00\x9b\xad\xdb\xba\xba\xa6\x4b\x45\xfe\x33\x40\x2f\xd0\x41\x24\xef\x59\x82\xb3\x41\xdf\x1a\x6b\x72\x29\x91\x1b\x9e\x65\x2c\x3c\x52\xd2\x2b\xba\x65\xbb\x3a\x0d\xa4\x48\x39\xa6\x77\x44\xe9\x74\x7e\xc0\xc5\x92\x0b\x9e\xb1\xf9\x01\x19\x11\xf0\xe8\xb0\x96\x63\xc4\x01\x3d\x4f\x12\xd1\x34\x1b\x93\x62\x65\x4e\x90\xa8\xb9\xf2\x90\x89\x8c\x07\xff\x1f\x7b\xef\xba\xdc\xc6\x8d\x36\x0c\xfe\xdf\xab\xc0\xc8\x6f\x95\xec\x6f\x45\xca\x76\x12\x4f\xa2\xd4\xd4\x96\x2c\xc9\x0e\x6b\x64\x89\x9f\x24\xc7\xf3\x56\x98\xcf\x2f\xd8\x0d\x92\xf8\xd4\x04\x7a\xba\xd1\x94\x38\x99\x6c\xed\x6d\xec\xed\xed\x95\x6c\xe1\x79\x80\x6e\x74\x37\xfa\x40\x59\x4a\x26\xf3\x36\xab\x66\x62\x91\x38\x3e\x00\x9e\xf3\x81\x46\x66\x81\xd5\x71\xb8\x20\x34\x8a\x57\x54\x64\x6b\x96\x38\xed\x20\xb3\xa2\x6f\x54\x63\x42\x33\x82\x14\x9a\x2d\xbd\x4a\x40\xbc\x1b\x22\x5b\xcf\xeb\x32\x6e\x0b\xd2\xab\x08\x85\x37\xae\x80\x81\x17\xc5\x11\x33\xb2\xd4\x70\x4c\x3c\xb8\xc5\xff\x93\x99\xf7\xfe\xeb\x25\x57\x18\x46\x07\xb8\xc6\x87\xd8\x01\x8b\x92\x46\xbf\xd1\xc2\xf6\x16\xeb\x48\xc9\x42\x46\x91\xbc\x03\x87\x40\x23\xfb\xe4\xd2\x00\xa2\xa5\xbf\x20\x6b\x8c\xaf\xfd\x73\xc4\x15\x4b\x68\xa4\xbf\xf1\x8d\x3c\x9b\x91\x11\xfa\xd0\xeb\x8b\xb2\x8e\x69\xc2\x53\x29\x0e\x08\x04\xd2\x58\x9e\xd6\x0e\xb9\x90\x92\xcc\x69\x02\x7c\x76\x3e\xdd\x9f\x76\x9c\xae\x98\x4f\x73\xe4\xec\xef\x19\x8d\xbe\x47\xb7\x2f\x8b\x67\xf9\xc2\x20\x58\x9e\x42\x1b\xab\x33\xca\xa7\xf4\xbf\xcb\x5f\x60\x1d\xb4\x70\x56\x98\x17\xff\x0c\xf0\x9f\xe3\xf1\x98\xfc\xea\xac\x40\x25\x19\xb3\xde\xdb\xb9\x03\x14\xce\xf1\x37\xe2\x77\xb8\x34\xca\xb2\x8e\xa9\x8a\xb5\xea\x0d\x70\xd1\x63\x71\xbe\xc9\x76\x5c\x2f\x4c\xd6\xb6\x40\xff\x91\x38\x6b\xd6\xf2\x14\x8c\xf7\x59\x73\x37\x2f\x8a\xa9\x6f\xf2\x99\xa9\x2a\x4e\xc7\x39\x99\x3f\xc1\x25\xf5\xe2\x7c\x33\x44\x2e\x58\xcb\x05\xb4\x05\xc9\x0a\xfe\x9b\xbd\x7c\xf9\xfa\x0d\xfe\x3f\xfe\x92\xf7\xb9\x5e\xc9\x44\x8d\x02\x9e\x04\x19\x57\x40\x37\x4d\x27\xdf\x44\xff\xfc\x67\x6b\x6f\xd0\xc0\xa9\xe7\xd8\xe6\x45\xde\x28\xa6\x09\x13\x98\x6b\x75\x99\xc8\x2c\xd6\xcc\xc2\x6c\xa6\x68\x14\x3d\xf7\x6a\x52\x4d\xf2\x4f\xb4\x8d\xe7\xf8\xc2\x8e\x66\xef\x30\x8d\x22\x47\x40\x82\x07\x7a\x8e\xf7\x01\x39\x00\x3f\x71\xa7\xfa\x69\x23\x9e\xb1\xee\x43\x2e\xca\x4c\x0f\xc8\xe8\x80\x7c\x06\x38\x1c\x8e\xc9\x35\x3c\x39\x62\x9e\x5c\xe3\xa0\x6b\x99\x30\x12\x6b\xde\x28\x4d\xf9\x86\x91\x39\x3a\xbe\x6e\xad\x60\x6e\x54\x26\x84\xa5\x01\x8d\x19\x09\x56\x34\xa1\x81\x62\x89\x59\xf6\x19\xfa\x0f\x7a\x1f\xc3\x73\x40\xfc\x6b\x1a\xb2\x51\x16\xe3\xb5\x48\x5f\xe4\xe8\x08\xa2\x2d\x0c\xea\xb8\x63\x73\xcd\x7c\x31\x83\x3c\xdc\x13\x0f\x59\x1c\xc9\xed\x9a\x09\x2f\x3a\x35\xfd\xe3\x44\x86\xf6\x92\xc2\xb8\xfa\x4d\x01\x4e\x4a\xa4\xd0\x02\xba\x73\xd5\xb5\x4c\x8b\x5f\xfc\xaa\x9b\x17\xe3\x93\x3f\xfd\xa5\xe9\x05\x84\x6c\x63\x87\xff\x13\xa9\xbc\x02\x1f\x2a\x6b\xe3\xa8\xca\xa2\x6c\x8b\xa1\xa5\x45\x8e\x6d\xe7\xba\x17\xe8\x54\x55\x90\x05\xdf\xb6\x2c\xc5\xc2\x3b\x6a\xd8\x61\x4c\x63\x2c\x85\x5d\xa4\xe5\x74\x7d\x06\x93\xb6\x3d\x82\xba\xac\x07\x4d\x05\xad\x1a\x17\x21\x0f\x80\x2f\xbf\x5b\x41\x14\x1f\x52\x2f\x43\x12\x1d\x7f\x02\x93\xe7\xd8\x8b\xa7\xf4\xbb\x93\x26\xd1\xf1\x81\xf9\x4b\xf3\xd4\x63\x82\xde\x3b\x40\x4d\xee\x63\xcd\xa4\xa8\x68\xeb\xb0\xd4\xcf\x21\x49\xb3\xd7\x2d\xcb\xc1\xa3\x82\x04\x09\x33\x4e\xc3\xa9\x79\xdd\x32\x21\x82\x47\x2f\x0e\xac\xe3\x6f\xc8\x16\x34\x8b\x54\x4a\x70\x5b\x1a\x74\x49\xd8\xc0\x52\x2b\x49\xee\x34\xae\x9c\x98\x54\xda\x7a\x11\x67\xe6\x9f\xfa\x3d\x1a\xcc\x99\xe7\x2a\x06\x4f\x15\x54\x47\x9a\x69\x7c\xa3\xf2\x14\x5f\xd7\x88\xfc\x64\xf8\x22\xbd\x14\x3b\xc7\xcf\x07\x86\x38\x68\x2e\x13\x54\x5e\x76\x4a\xcc\x27\xfd\x9c\x8b\x20\xca\x1a\x57\xbc\x62\x24\xa0\x9a\xf3\x84\x01\x8a\x61\x08\x92\x67\x21\xf3\xcd\xc0\x70\x2f\x3c\x2b\x39\x6b\xcc\x53\x5d\x5d\x5b\x69\x61\x1a\x25\x55\x87\x6f\xde\xa7\xf7\x7a\x54\xd7\x50\x9b\x10\xe4\x2f\xcf\x69\x60\x8e\x73\x3f\x5e\x10\x78\xb5\xca\xbc\x7e\xc2\xa8\x7e\x47\xc1\x2d\xa1\x4b\xca\xc5\x81\xb9\x0d\xa8\xb4\x8b\xee\xe8\x36\x35\xae\x99\xde\x5b\x6c\xed\x6c\x68\x60\x3b\x20\x82\x6d\x58\x52\xba\x6f\x5e\x75\x5a\xcf\x34\xe8\x05\x14\x08\x03\xa2\x91\xab\xa2\x63\x99\xa6\x7c\x1e\xd9\x89\x0b\x0f\x02\xdd\xe1\x3a\x66\x81\x5f\xde\xc3\xbd\x35\xfb\x54\xb4\x4b\x96\x8d\x42\x9b\x5f\xd6\xab\x7f\x0b\x34\x23\x74\x2d\x45\xa9\x92\x09\x5d\x32\xfb\x55\xaa\xa8\xca\x10\x30\xa8\x30\x65\xe1\x85\xa3\xca\xba\xe5\x22\xd4\x78\xc8\x82\x34\x8e\xb2\x84\x46\xc5\x37\x81\x14\x68\xbb\x48\x8f\xc8\x4f\x3f\xeb\x6f\xf4\xf8\x2c\x34\x61\x47\xe6\xdb\x99\x18\x8d\x46\xf9\x7f\x68\xcc\x6d\x10\x13\xa1\x31\x67\xf7\x8a\x09\x68\x3c\xbe\xfd\x36\x1d\x73\x79\xb8\x79\x35\x13\x38\xf1\x49\x96\x2a\xb9\xbe\x62\xa8\x8f\x3d\x65\x20\x75\x01\xba\x2e\x85\x0a\x69\x2a\x73\x44\x04\xfa\x6c\xa5\x4c\xa5\xe3\x20\x09\xc7\x71\x22\x35\x20\x02\xc0\x3d\x63\x99\x2c\x67\x42\x23\x35\xe8\x01\x9c\xca\x11\x69\x68\x56\x56\xe7\xe1\x52\xaa\x8e\x65\x11\x4f\xd5\x5f\x2b\xbf\x9c\xf3\x54\x95\xe1\xe4\xac\xc9\x80\x9f\x8b\x65\x16\xd1\xc4\xfd\x09\xc0\x16\x48\x7d\x76\xb9\x0b\x19\x08\x74\x1b\x0b\x45\xfd\xc7\xc8\x6c\x53\x43\x07\x46\x0a\x56\x6c\x5d\x84\x4a\xc9\x98\x89\xe3\xe9\xe4\xc7\xaf\xae\xcb\xdf\xd7\x3d\xb7\xcc\x62\xad\x0f\x42\x31\xe5\x88\xfd\x3d\xe3\x1b\x1a\x69\xbc\x6a\xae\x77\xd5\xa9\xce\xb9\xc3\x0d\xaa\x51\xe7\x74\xcb\x57\xb6\x1c\x51\xad\x97\x6a\xcc\x5b\xe8\xf1\x89\x8b\x31\x3b\x66\xa1\xd9\x1e\xae\x03\x90\x86\xc1\xf8\xd4\xa7\xfe\x90\x0b\x20\xf2\x70\xf1\xc7\xc0\x09\xb0\x24\xb5\xb2\x62\x20\xc5\x86\x25\x8a\x24\x2c\x90\x4b\xc1\xff\x91\x0f\x9e\x5a\x83\x1b\x14\x3b\xa8\xd1\x0b\x2e\x14\x4b\x34\xcf\x00\x2f\xfe\x00\x70\xde\x9a\x6e\x49\xc2\xf4\x34\x24\x13\xce\x80\xd6\xdc\xff\x41\xf3\x8a\x5c\x2c\xe4\x11\xe4\xba\x48\x8f\x0e\x0f\x97\x5c\xd9\x8b\x1d\xc8\xf5\x3a\x13\x5c\x6d\x0f\xc1\x0c\xc0\xe7\x99\x92\x49\x7a\x18\xb2\x0d\x8b\x0e\x53\xbe\x1c\xd1\x24\x58\x71\xc5\x02\x95\x25\xec\x90\xc6\x7c\x04\x6b\x17\xf0\xc0\xc6\xeb\xf0\x59\x62\x5e\x42\xba\xef\x43\x07\x75\x2c\x02\x57\xb7\xed\x18\xf4\x0d\x36\x01\x62\xc8\x0c\x23\x35\xcf\xa1\x6d\x6d\x9d\x57\x67\xd7\x37\xc4\xce\xee\x0d\xa6\x43\xe0\x17\x3d\xd3\xe2\x1c\x34\xd0\xb8\x58\x58\xb6\x05\xf4\x8d\xae\x94\x8f\x94\x33\xe2\x1e\x0e\x36\xcd\xe6\x6b\xae\x52\x27\x49\x82\x1c\x93\x13\x88\xb6\xd3\x44\x22\x8b\x43\xaa\x58\x38\x26\x13\x41\x4e\xe8\x9a\x45\x27\x34\x65\x4f\x7e\x0a\xc0\xbb\x8d\x34\x6c\xfb\x9e\x43\x43\x60\x63\x93\xc6\x2e\x47\x53\x0d\xc7\x56\xbc\x47\x4d\x78\xca\x9e\xf5\x36\x10\xa3\x08\x7d\xa4\x35\xdc\x55\x7c\xec\x91\x56\x68\x53\x8b\xd9\xa3\xc1\x51\xb4\x56\x11\xc5\xfa\xb2\x4c\xa6\x39\xa6\x43\xe1\x77\xce\x22\xa9\x6f\x95\x34\x2a\x18\xe6\xd3\xfa\x37\x93\xeb\xff\x16\x04\x13\xe8\x24\xfc\xdf\x33\x13\x3e\x71\x44\x90\x40\x1d\x2a\xb6\x8e\x01\x5f\x1d\xe2\x17\xe0\x1e\x52\x98\x15\x93\x74\x94\xcc\x69\x30\xde\xd2\x75\x34\x13\xbf\xfc\xc2\x17\x84\xfd\x9d\x8c\xaf\xde\x1e\x9f\x9c\x48\xb1\xe0\x4b\x32\xdb\xd3\x0d\x66\x7b\xbf\xfe\xaa\x47\x9f\x00\x47\xcb\x08\x25\x41\x94\xa5\x8a\x25\x89\x8c\x58\x5e\xa1\xa3\x3a\x36\xa8\xb8\xa4\x60\x42\x1d\xe8\xce\x50\xe3\x03\x30\x88\xb2\xa8\xb4\x61\x51\x56\x5c\x2a\x6c\x6e\x86\xc0\xe3\xa4\x57\x32\x62\x65\xc6\x00\x36\x41\x33\xb5\x92\x09\xff\x07\xfa\x1a\x38\xdc\x81\x87\xfa\x37\x4c\x3c\x13\xc0\x9f\x42\xc3\x67\xe4\x42\x86\xa8\x3c\x20\x77\xc6\xa5\x40\x49\xb2\x96\x82\x83\xeb\x9c\x4c\x48\xc8\x22\x86\xef\x1c\x49\x2e\x8d\xf9\x7b\xcd\x2a\xe8\x73\xd1\x47\xf8\x33\x9e\x6a\x8e\x87\xf3\x2b\x3a\x22\x42\x8f\x8d\x7f\x6e\x58\x32\x77\x7f\xba\x73\x7d\xa0\x46\xf0\x34\x8a\xbf\x96\xf8\x2a\x9f\x91\xa9\xcd\x9e\xf3\xf7\x8c\x25\xdc\x68\x31\xf2\xa4\x26\xec\x9e\xa7\x8a\x09\xf3\x54\x77\x5a\x59\x2c\xc3\x86\x85\xe5\x73\x4f\xa6\xc7\x1f\x8a\xbe\x26\x56\x42\xf0\x18\xea\x00\x85\x5a\xa2\x11\xb8\x41\x13\xa3\x11\x31\x65\xcc\x26\xd5\x95\xf8\x59\xaa\xb6\xe5\xf1\x38\x96\x32\x6a\x58\xa1\x85\xd5\x97\x4f\x33\x8f\x64\x70\x4b\x17\xc8\x42\x16\xea\x18\x3d\x3f\x5d\xc3\x8f\x95\xef\x56\x54\x84\x51\xd3\x91\x2e\x99\x6a\x3a\x50\x90\x83\x59\xf1\x37\x12\xa9\xe2\x6f\x84\x9e\xe7\x76\x3c\xab\xbf\xb7\x35\x15\x74\xc9\x52\xb2\x92\xa9\x72\xfc\x05\x1e\x05\x20\xa5\x31\x9f\x70\x97\xcf\xc8\x05\x63\x21\x88\xfb\x5a\x5e\x54\xd2\xb4\xb5\x18\xc7\x09\x2b\x7f\xac\xad\x79\x46\xee\xb1\xc1\xe6\x2d\x3d\x23\x7f\xcd\xe6\xec\xa4\x38\x18\xc4\xa5\x59\x92\x2b\x3c\x50\xe6\xe7\x4a\x8f\x98\x12\xcd\xb2\x04\xd0\xe4\x71\xf6\xa3\xef\x85\x73\x2d\x02\x77\x76\xef\xce\x9e\xa1\x94\xad\xd7\x21\xef\x84\xb3\x96\xda\xb6\x9f\x99\x6d\x13\x6a\xf5\x26\x5a\xec\x17\x52\x30\x44\x39\x69\x13\x7c\x9e\xd9\x63\x44\x8a\xd8\x74\x13\x9e\xe1\xfd\x06\x1c\x16\xac\x4a\x5e\xab\xf9\xd5\x07\x4a\x57\x23\x08\x6f\xb9\x40\x55\xcb\x13\xd1\x05\x19\xb1\x2b\x86\x1e\xa0\xf6\x7c\x5a\xc6\xd7\xcd\x3c\x34\xab\x73\x9a\x34\x03\xee\x42\x1f\xcd\xc8\x0c\x50\xd6\x54\xf6\x18\xc3\x89\xbd\x3b\x42\x1c\x91\x6e\x53\xc5\xd6\x65\xb9\xfa\x19\xb9\xa2\x22\x58\xb1\x64\x64\x79\xc0\x23\x72\x02\x10\x77\x29\xb3\xc6\xe2\xee\x16\xd0\x0d\x43\x93\x1a\xd4\xd1\x41\xcd\x34\x1a\xdc\xde\xd1\x24\x44\x7a\x4f\x15\x9f\xf3\x88\xab\x6d\x1f\x6e\x44\x0f\xef\x72\x20\x5d\x1c\x86\xbb\xaa\x53\xca\xd6\x52\x5c\xb3\x2e\xe6\x02\x1a\xff\x46\x0c\x45\x99\x7f\xd0\x8c\xed\xc9\xc5\x44\x73\x75\x4b\x2e\x88\x00\xbc\xa6\xa4\x7e\x4f\x40\x65\x0f\x90\x48\xa2\xac\xe8\x46\x68\x3d\x9c\x64\x57\x58\x0b\xab\x07\xc0\x81\x5b\x91\xda\x4e\x13\xd6\x1c\x12\x47\x16\xc2\x0d\xf8\xe5\xa3\xd1\x8e\x87\x3c\x0d\xe4\x86\x25\xb9\x42\x7c\x32\x45\x63\x10\x0d\xb5\xd4\xcd\x53\xb6\x76\xfd\x3e\x5b\x99\x21\xcf\xa8\x37\xdb\x78\x45\xd3\xb1\x9f\x5d\x22\x27\x93\xd3\x2b\x42\x33\x25\x47\x21\xd3\x02\x1b\x58\xc7\x04\x3c\x11\x1a\xae\xcd\xf9\x14\x74\x07\xd1\x20\x59\xd3\xf8\x01\x47\x82\x9d\x75\xdf\xc7\x83\x3a\x1c\xec\xa1\x8b\x40\xab\x60\xd6\xa4\xd3\x94\xcc\x0b\x22\x46\x41\x46\xd7\x5c\xac\x11\xe9\x3e\x0a\xba\xa1\x3c\xa2\x73\xfd\xa4\x22\xba\x74\x00\x15\xbb\x70\x7e\x66\x55\xf0\x20\x6d\xa4\x18\x01\x10\x94\x89\x98\x93\xdd\x85\x23\xb7\xe7\xa6\xb5\x19\xfb\xe9\xe2\xa7\x2a\x72\xd7\x70\xfe\x6b\xee\xb1\x5e\x8a\x0a\xe5\x0d\x2f\xc1\xc8\x87\x5c\x2c\x2d\xae\x6d\x85\x19\xb6\x8e\x4b\xee\x14\x3d\x39\x6e\x73\xc1\xe6\x5b\x0b\x0e\xbd\x70\xab\x99\x2e\xf6\xff\xc5\xef\xb5\xf2\x40\x9d\xd7\x64\xcd\x45\xed\xdc\x2e\xa9\x32\x86\x15\xc4\x13\x5b\x27\x5d\x19\xda\xeb\xf3\xb0\x35\xb7\xdc\x3d\xe7\x06\xe5\xb7\xc7\x88\x4a\x29\xd9\xd0\x84\xcb\x2c\x25\x27\x57\xa7\xf8\xda\xf1\x2e\x3d\x12\xfb\x86\xa1\xc3\x0b\x16\xf1\x7b\x1c\xd7\x81\xa3\xf3\x6d\x99\x01\x02\x1e\x7f\x19\xc7\xcc\x90\x4c\x77\xa8\xf9\x32\xae\x0d\x94\x7f\x57\x1f\xa6\x24\x91\x34\x89\x08\x38\xb2\xf7\x36\xd6\x7e\x4e\x99\x8b\x58\x1b\xfb\x78\x5b\x37\xf2\xb2\x0d\x3c\x7c\xa3\xac\xb3\x03\x73\x7f\x57\x3f\xf9\x2c\x55\x39\xa7\x28\xc2\x9c\xf7\xd3\x78\x04\x2e\x81\x14\x9a\x11\x4c\x54\x16\x3f\x85\x58\xd8\x79\xf2\xbd\x39\xfe\x36\x26\x7f\x27\x1c\x69\xbc\xab\x34\x9e\x7c\x54\x65\x41\xbf\x63\xb9\x01\x23\x98\xf5\x4a\x90\x02\x05\x73\xf0\x08\xb5\x0e\x84\xf0\x2e\xb3\x78\x99\xd0\xd0\x04\x24\x6c\x5e\x8f\xdf\x20\x6f\x12\x60\xf5\xde\x67\x64\xce\x48\xc2\xd6\x72\xc3\x42\xe3\x3c\x67\x3b\xc8\x44\xef\x70\x91\xb0\x74\x45\xb8\x48\x15\x8d\xa2\x47\x15\xd1\x5a\x9e\x5f\xf9\x15\xf7\x3d\xc0\x9c\x0b\x7e\x17\x51\x21\x58\x54\x66\x05\x9f\x91\x69\x06\x5e\xf7\x00\x08\x47\x2b\xbc\xca\xe6\xe3\x40\xae\x0f\x03\x99\x30\x99\x1e\x2e\xb0\xf3\xe1\x3c\x92\xf3\xc3\x35\xd5\x03\x1c\x9e\xca\x20\x5b\x5b\xd3\xc3\x21\xf0\xdf\xa6\x99\xe1\x74\x35\xa3\xfb\xd8\xec\xa7\x99\xc1\xe5\x3f\x1f\x57\xe9\xf3\x58\xf7\xb5\xe1\x8a\x3e\x2a\x1f\x94\xd3\x22\x73\xc4\x5a\x34\xc4\xa0\x8c\xfa\x59\x17\xc2\x82\xa0\x51\x45\xd6\xf2\x89\x09\x8f\x25\x66\x0a\x1a\x8d\x8a\x43\x7b\x54\xe1\x32\x1f\x76\x27\x61\x52\x60\x9e\xb7\x56\xd1\xf1\x37\x90\x19\xfb\x83\xb5\xf9\x68\x1a\x01\x9e\x0b\x69\x4f\x20\xcc\x3f\x2e\xb8\x7f\xf9\x85\x89\xf0\xd7\x5f\x7b\xab\xf5\x81\xae\x58\x19\x1a\xa2\x88\xd7\x54\xf0\x05\x4b\x95\x45\xc7\xa9\x73\xcd\x8d\x09\x88\x25\x07\x84\xa6\xe4\x8e\x45\xd0\xcd\x44\x2e\x15\x8c\x63\x6a\x6a\x79\x03\x9b\x61\xc5\x21\x29\x74\x5b\x46\x21\xff\xb3\x06\x06\x34\xd2\x2d\x58\x82\x62\x00\xd4\x1b\x77\x98\x7a\x43\x6c\xf3\xd7\x94\x0b\xee\x55\xe3\x7e\x9c\xb6\xbe\x97\x36\x78\x11\xe3\x0e\x67\xed\x2a\xdf\xa6\x23\x1a\xc7\x79\xc7\xdc\x44\x56\xf1\x4f\x06\xff\xc1\x73\xb7\x67\xbd\x2f\x31\x34\xe3\x5a\x25\x54\xb1\xe5\xf6\xc8\x18\x4a\xc6\x1f\x4b\x5f\xeb\xc3\xfa\xe5\x17\xa2\xe4\x7f\xd2\x75\x54\xfd\x91\xfc\x93\x70\x11\x32\xa1\xc8\xd7\xd8\x8e\x45\x29\xd3\xff\x22\xb9\x59\xe9\x4a\x46\x11\x17\xcb\x8f\x8e\x3a\x2c\x71\xbf\xca\xd7\xb7\xa6\xf7\x8e\x1c\x77\x44\x5e\x39\xb7\x85\x10\x7b\x33\xec\x06\xab\xa6\xc4\xa8\xbc\x59\xdf\x76\x2b\x16\x45\x7d\xa6\x1e\xaf\xba\x22\xce\x58\x3f\x48\x99\x1e\x91\x88\x8b\xec\xde\x36\xd0\xac\xa6\x91\xe6\xac\x2d\x0c\xa1\x76\xe1\x0c\x67\x21\xd0\x30\xc9\x2f\xbf\x98\xcc\x65\xff\x71\x7b\x40\xfe\x63\x43\x8e\xfe\x52\xee\x4e\x8a\xfe\xd0\xf8\x3f\x6e\xc9\xaf\xbf\x1e\x91\xd9\x9e\xfe\xf7\x46\xff\xba\xe7\x0c\xc5\x44\x48\x0c\xf0\x2d\xb0\x00\xfa\x32\x62\x49\x2d\x17\xeb\x33\xf2\x81\xde\x32\x92\x66\x89\x7d\x33\xa0\xa9\x4d\x83\x15\x0b\xb3\x08\x7d\xfa\x20\xaf\x8e\x26\x45\x8e\x45\x72\x64\xe2\x0c\x8f\xc8\x85\xbc\x36\x8d\x8b\x5f\xc1\xef\x22\xa1\x7a\x8f\xe4\xac\xa4\x2e\xc5\x19\x93\x5b\xe3\x3c\x14\x62\x00\x4d\x90\x70\x74\xf1\xa7\x61\x38\x32\xf6\xd9\x84\x99\x45\x68\x01\xd8\x9d\xf8\x96\x6d\x8f\xc8\x89\xe9\x71\x1c\x86\x52\xa4\x97\x95\x54\x4f\xcd\xb3\xbb\xeb\x3e\xbb\x67\x41\xa6\x7a\x2d\xbb\xcb\x62\x88\xad\xca\x1e\x9a\x17\xe5\x17\x8d\xc3\x94\x8e\xe4\x19\xf9\xc0\x05\x5f\xf3\x7f\x30\x12\xca\x3b\xa1\xf8\x9a\x91\x30\x03\x65\x06\xb5\x8f\xc2\xe5\x3c\xad\x19\xee\x7b\xa2\x58\x14\xb9\xa8\x47\x49\x12\x4a\xa8\x17\x00\xb9\x43\x8b\x09\x6c\x97\xd9\x5e\x61\xf4\x2f\xdf\xe8\x50\x06\xe9\x61\x20\x45\xc0\x62\x95\x1e\xda\xd4\x4b\xe9\x21\xc8\xc1\xb1\x0c\x0f\x9f\xd9\x00\x28\x2e\xc5\x48\x2e\x46\xfa\x87\xfc\x40\x9c\xdf\xde\x27\x34\x60\x53\x96\x70\x19\x5e\xb3\x40\x8a\x30\x3d\x22\x2f\x8b\x95\x18\x8a\x5a\xa4\x44\x44\xcd\x88\x6d\x10\x27\x5c\x26\x5c\x6d\x4f\x22\x9a\xa6\x08\xba\x5f\x7e\x21\xe3\x13\x0a\x49\x81\x2b\xbf\x91\x7f\xe6\x5a\xf9\xd9\x1e\xa2\x46\x54\xb1\xda\x8b\x34\xdb\x73\xde\x8c\x16\xf7\x4e\x2c\x25\x28\x5f\x7e\xa0\x20\x39\x95\x28\x93\x10\x4d\x1f\xe6\x5c\xd0\xa4\x14\x9d\x82\x1a\x58\xfd\x5b\x85\x5e\x2c\x78\x04\xfe\x9e\x40\x31\x72\xf1\xc7\xde\x3a\x44\xef\x66\xfc\x51\x20\xb8\x7b\xeb\xf8\x1a\x2c\xe9\xbf\xfc\x32\x3e\xb9\x98\x4c\xf4\x1f\xee\x83\x87\x08\x8a\x35\xd5\x14\xe5\xa7\xd9\xde\xa1\x8c\xd5\x61\x20\xf8\xe1\x9c\x8b\x43\x33\x5e\xce\x44\xe2\x87\x89\xcd\xbb\x44\xae\x4b\x7e\x02\x56\x51\xf7\x81\xc6\x96\x21\x70\x3f\xcf\xc8\x31\x84\x7f\xfc\xf5\xe3\xdb\xb3\xab\x8b\xb3\x9b\xb3\xeb\xcf\xd7\x67\x57\x3f\x4e\x4e\xce\x3e\xff\x70\x79\x7d\x03\x7b\xf6\xfc\x36\xbd\xbc\xba\x31\xd1\x3f\x72\xc3\x92\x84\x87\x21\xc3\xd7\xcb\xde\x4e\xdf\x91\x75\x19\x0a\xf8\x41\x48\x38\xd9\x1b\xac\x42\x75\x64\x25\xf6\x6a\x0f\xeb\xa5\x5c\xcf\xec\xc0\xc4\xa6\xb2\x95\x67\xe0\xb8\x65\xfd\xb4\xf4\x31\xb9\xc7\xa3\x79\x33\x90\x93\x2a\xab\xb2\xe7\x73\x72\x31\xf9\x7c\x72\x79\xf1\xee\xf3\xc5\xf1\x87\xb3\xea\x32\xc0\x07\x48\x63\xdd\x57\x2f\x47\xf0\xaa\xc7\x7a\x68\xe0\xf3\xf7\xaa\x8b\xb0\x8a\xa9\xca\x1d\x01\x5f\x64\x38\xb2\xa6\x9b\x52\x5d\xcd\xc5\xd9\xcd\xa7\xcb\xab\xbf\xc2\xaa\x26\xef\xbd\x4b\xaa\x9d\xb5\xbd\x34\xe6\xbc\xff\xca\xb6\xbe\x23\x2f\xce\xc2\xf0\x8c\x25\x63\x98\xfb\x01\x84\x1b\x08\xfe\xd9\xec\xe6\xb3\xaf\xe9\x33\x72\xcd\xd0\x65\x49\x53\x44\xe0\x84\x73\xa7\x70\xf0\x99\xf8\x36\x45\xae\x49\xff\xd4\xb0\x61\xe7\x86\x5d\x5c\x9e\x9e\x35\x9f\x42\xc3\x96\xc1\x9f\xb4\x69\xaf\xf0\xe3\x94\xaa\xd5\x11\xa0\xa0\xb1\x5e\x0c\x84\x7e\x55\xb6\xa1\x8f\xed\xc3\xcd\x47\x62\xb0\xfc\x86\x26\x5c\xf3\x1f\xcd\x47\xf4\xe1\xe6\xe3\xef\x78\x2e\x1b\xa6\x56\x9f\xd7\x2a\xab\x6e\x63\x9a\xb0\x0d\x13\xa6\xaa\x45\x81\xe1\x40\xce\x4f\x23\xc6\x20\x20\x65\x21\x75\xab\x6a\xf5\x1b\xbb\xb9\xeb\xf3\xb3\xb3\x5a\x09\xa9\xfc\x15\x2c\x68\x94\xb2\xf2\xcd\xdf\xc8\x28\x5b\xb3\x0f\xbe\x48\xfb\x11\x59\xeb\xaf\x11\xfe\x87\xfa\x8a\xb8\x88\xcc\x8f\x23\x02\xc1\x47\x73\x2e\x46\x21\x4f\x3a\x07\x63\x2a\x80\xc1\x04\x53\xe3\x5a\xd4\x5f\x31\x9c\x60\xaa\x3a\x5c\xca\x82\x0c\x88\x8b\x14\x8a\xdd\x57\xcb\xac\xc4\x09\xdf\xf0\x88\x2d\xcb\xce\x4f\x08\xe2\xe3\x30\xd4\xcc\xcb\xbb\x88\xdd\x93\x1f\x61\xeb\xe4\x34\xe1\x1b\x70\xe8\xa3\x56\x2d\xa8\x5b\xc4\x2c\xd1\x54\x93\x7c\x14\xfc\x9e\x9c\xca\x35\xe5\x82\x5c\xcb\xe0\x16\xd3\xf9\x40\x74\x0e\x39\xe5\xb7\x5a\xca\x28\x51\x1a\xb0\xcd\x80\x57\x5e\x40\x95\x09\xdd\x7c\xc7\x22\x7e\x0f\xd8\xd6\x8d\x62\xbc\xde\x8a\x80\x1c\x4f\x27\x1e\x9a\xb3\x88\xd8\xfd\x46\x46\xa3\x10\x96\xe6\x27\x3b\x7a\x0b\x3f\xca\x68\xb2\x5e\x96\x09\x4f\xe3\x81\xfa\x07\x1f\xe9\xa3\x28\xc3\xaf\x76\x50\xf5\x65\x3c\xec\x00\x02\x3f\x41\xbf\xca\x44\x5a\x15\xfe\x72\x5c\xeb\x30\x4c\x80\x76\x2b\x85\x59\x9e\x39\x5d\xe2\x44\x2e\x13\xba\x4e\x73\x0c\x6e\xa3\x4a\x44\x48\x12\x99\x29\xc8\x6f\x05\xa3\xba\xfd\xf5\x0e\x3d\x47\xe0\xc8\xae\x7e\xf8\x6b\x66\xdf\x43\xf7\xff\x7b\x13\xf2\x8f\x29\x73\x4f\xec\x78\x3a\xb1\x92\xfb\x9c\x06\xb7\x1a\x7d\x69\x81\x0f\xb4\xd2\x0d\x08\xec\xf4\xf8\xe6\xf8\xfa\xe6\xf2\xea\xec\xf3\xcd\x7f\x4e\x9b\xe9\x79\xb1\x85\x3a\x21\xb7\x1e\x2d\x0c\x4f\x9d\xd0\xe5\x32\xb1\x01\x87\x39\x7d\x8b\x8d\xcd\xb5\x61\x19\x1f\xaf\x35\x80\x4f\x3f\xeb\x26\x8d\x8b\x00\x88\xd4\xa6\xff\x44\xb9\xca\x9d\x02\xba\xb6\xfb\xe9\x78\x72\xf3\xf9\xdd\xe5\xd5\xe7\x7c\xdf\x3b\xce\xa6\x29\xf8\xce\x44\x5b\x53\xea\xdf\x85\x50\x9f\x4a\xb1\xaf\x08\x13\x60\xe5\x7d\xfb\x7e\xda\xc4\x45\x1d\x9f\x4f\x4e\x2e\x2d\x23\x35\xb9\x78\xff\xf9\xed\xf1\xc9\x5f\xcf\x2e\x4e\x1b\x81\x23\xa4\xf0\x00\xc7\xa8\xc4\xb0\xd8\x93\x66\xe4\x20\x2e\x7d\x81\x29\x8f\x9d\x60\x40\xfd\x7b\xc3\x4a\xce\x3f\x5e\xdf\x9c\x5d\x75\x5c\xc6\x6f\xd3\x03\x94\x19\x6b\x2b\x40\xd9\xea\x80\x70\xa1\x71\xa6\x16\xb0\x0e\x08\x55\x26\x71\x00\x98\x81\x48\xc2\x46\x36\xee\x4d\x33\x99\x79\x3d\x8a\x54\x51\xd5\xb0\xaa\x77\x67\xe7\x93\xbf\x7d\x9e\x4c\x6f\x8e\xdf\x9e\x9f\x5d\x5f\x9d\xbd\xbb\x3a\xbb\xfe\x61\x72\x71\x73\x76\xf5\xe3\xf1\x79\xe3\x32\xdf\xbc\xac\xaf\xef\x42\x3a\x49\x65\xc1\xcb\xa0\x96\x43\xc2\x4e\x3a\x69\xe6\x2b\xfc\xcc\xb4\x15\xf7\x26\xd3\xcd\xd7\x24\x96\x32\x2a\x78\x79\xc7\xc6\x56\xf1\xd1\x1a\x83\x37\xc4\x64\x9a\xe7\xb1\xae\x8e\x1c\xac\x64\xaa\xf1\x1c\xba\xde\xf3\x14\xd5\x30\x63\xd4\xf5\xa2\x93\xbf\xcd\x53\x68\xec\x40\xae\xcd\x07\x47\x5d\xd1\x4d\x6d\x5c\x21\x8d\x9a\xc1\x64\x3a\x34\x21\x17\x0b\x7d\x26\x26\xc1\xf8\x7f\x8d\x46\x46\x5f\x38\x0a\x78\x98\xfc\xd7\xb8\x3a\x46\xe5\xfe\x4e\xa6\x3f\x7e\x3d\xbd\xbc\x3c\xf7\x60\x91\x67\x25\xe1\xe4\xbb\xd7\xe3\x57\x6f\xbe\x1d\xbf\x1c\xbf\x3c\x7c\xf5\xa6\x0e\xcc\x53\x9e\xa2\x5b\x84\x96\x87\x22\xb9\x84\x6d\xa6\x92\xfc\x17\x38\xd3\xa9\x48\x7f\x97\xfe\x17\xe8\x39\xab\xe1\x6b\x95\x15\x9d\x4e\xae\xf5\x95\xf9\xfc\x6e\x72\x7e\xf6\xf9\xfc\xf2\xfd\xfb\xc9\x85\x5f\x40\x69\x47\x38\xc8\xd0\x14\x41\x0f\x12\xa8\x68\x7e\xe0\x98\xd8\x43\x7f\x7d\x7c\x72\x72\x36\xbd\x69\x58\x13\xde\xe2\xd3\xb3\x77\xc7\x1f\xcf\x6f\xce\x2e\x4e\xa7\x97\x93\x8b\x9b\x9b\x4b\x4d\xf3\x8e\x4f\x6e\x26\x97\x17\x8d\x2b\xc3\x61\x9b\x01\x35\x99\x6e\xde\xe8\x2b\x56\x90\xa2\xd6\x25\x4c\xa6\x3f\xbe\xb9\xfe\x38\xd5\x04\x75\x17\xd6\xd9\xd1\x90\x38\x36\x07\x08\xed\x42\xcb\x72\xaa\x41\x05\x33\x9c\x5f\xbe\xd7\x20\x9f\x1e\xdf\xfc\xa0\xc1\x02\xf7\x1d\x7d\x83\xf0\x60\x01\x9e\xf6\x64\x95\x84\x93\x6e\x5b\xb1\x33\xde\x8e\x28\xb1\xff\x82\xaf\xcf\x7e\x3c\xbb\x9a\xdc\xfc\xe7\xf5\x7f\x5e\xe3\x9a\xcd\xa3\x82\x97\x97\x3b\x58\x8a\x85\x6c\xdd\x49\xba\x4d\x23\xb9\xec\xd8\x8b\x33\xd5\x0e\x38\xa6\xb8\x89\xce\x7c\xb3\xbd\x3b\x9a\x08\x2e\x96\x7d\xb6\x7e\xed\xdd\xef\xc9\xd5\xd9\xd9\x85\x1e\xeb\x13\x8e\x54\xdf\x71\xdf\xed\xc0\x48\x8d\x3b\xfa\xe4\x5f\x68\x79\xb8\x1f\xce\x8e\xcf\x6f\x7e\x38\xbb\xd0\xcf\xb6\x99\xfc\xf9\x9f\x6a\xdb\x86\x2d\xf1\x30\x84\x15\x84\x9a\x4c\xa1\x01\x4c\xff\xc3\xf1\x42\x5b\x10\xb1\x40\x9a\xd4\x87\x1a\x75\x51\x6a\x3d\x78\x79\xa9\x0f\x95\xe6\x7c\x06\x58\xfb\x3d\xc6\x58\xd5\x78\x95\x20\xce\x8e\xc8\xeb\x6f\x5e\x96\x72\xb4\x45\x7c\xc3\x04\x4b\xd3\x69\x22\xe7\xd5\x42\x20\xec\xbe\x16\xbf\x54\xe8\xf6\xaa\xdf\x8f\x08\x68\xf8\x1a\x44\x07\x6c\x31\x82\x17\x32\xd2\x73\x56\xf6\x59\xd6\xc2\xbe\x7a\x59\xfe\x19\xfc\x5f\x68\x74\xca\x22\xba\x6d\x6c\xb4\xa0\x3c\xca\x12\x76\xb3\x4a\x58\xba\x92\x51\x78\x44\xde\x94\xc1\x45\x43\xde\xb4\xd3\x95\x52\xf1\x7b\x56\x2f\x59\x1a\xa3\x20\x98\xf7\xad\xfd\x2e\x13\x75\x44\xbe\x7b\xf9\xdd\x77\xd5\x5f\x34\x4d\x38\x22\x91\x0c\x68\x54\x17\x32\x5b\xb7\xdb\x5b\x29\x11\xf1\xf9\xe1\x5a\x86\x99\x27\x29\x05\xde\xcd\x88\xcf\x47\x0d\x0d\xf4\x8e\x2e\x45\xb4\xf5\x25\x9f\x2d\xcf\x92\x64\xe2\xf0\x1e\x5f\xc0\x38\x92\xc1\xad\x7f\x2a\xd3\x62\xe4\x6b\x51\xcc\x85\x74\xa4\x65\xb2\x0d\x4d\x60\x42\x6b\xb9\xf5\x4d\xb5\xa1\xc9\x28\xc9\xc4\xc8\xdf\x66\xc7\xc9\x34\x0c\xbb\x26\xd3\x60\x7c\xd0\x64\x38\x04\x0a\xe2\xe9\x56\xd4\x42\xcb\x7d\x3b\xd7\x0f\x87\x2e\x6b\x21\x94\xcf\xb0\x86\x99\x95\x6d\x0f\xc8\x1d\x03\x86\xd5\xc8\xc0\x40\x7e\x20\x06\x2a\x33\x71\x98\xba\xa5\x26\xa4\x68\x6c\xd0\x6c\xf7\x61\xba\x4d\x0f\x17\xe9\xe1\x3c\x5e\x68\xfe\xe9\x8e\x99\xd6\x98\x7a\xa1\x3a\x1d\xa4\x83\x51\x24\xe4\x09\x58\xf4\xaa\xd5\x43\xec\xe6\xd2\x6d\xba\xa8\x5d\x2e\x77\x5f\x66\xd2\xba\xd8\xff\x96\xe3\xd8\x98\xcf\x63\xcd\xa8\xc0\xc0\x42\x48\x57\x90\x2f\xae\x7b\x2b\x5c\x21\x5b\x1b\x27\x32\xa6\x4b\xcd\x5e\x1b\xc7\x91\x8a\x6e\xc3\xce\x6b\x92\x87\x01\xcf\xc6\x53\x72\x2b\xe4\x9d\x70\x41\x47\x55\x69\xb2\x48\x9f\xf1\x16\xf3\xd1\x95\x97\x1c\x50\x01\xea\x07\x4c\x3e\x56\x9b\x09\x81\x60\x16\x05\x76\xf4\x52\x77\x3f\x38\x03\xc1\x47\x91\x5c\xd6\x35\x88\xf5\xcb\x12\xc9\xa5\xb9\xb9\x87\x15\xeb\x0c\x69\x79\xdf\x35\x0b\x52\x92\x89\x34\x77\xbf\xc9\x52\x1b\x28\x8c\x36\x7c\x28\xa8\x31\x5a\x2f\xd1\x2d\x84\x89\xd0\x1d\x08\x88\x65\xa4\x31\x1c\x84\x17\xd7\xab\x6f\x8c\x1c\x8d\x4b\xe1\x52\x53\xac\xd1\xb1\x22\x69\xf9\xd1\xf8\x7b\xd5\x74\x7a\x85\x31\x89\x18\x6b\x92\xa6\x33\x66\xbc\x10\xb2\xdd\xec\x8d\x46\x3c\x1e\xad\x69\xfa\x77\xfb\x67\x65\xfd\xb3\x3d\xf2\xf3\xe3\x50\xdd\xba\xe2\xc7\x6e\x73\x7a\x79\xfa\x64\x06\x00\xeb\x2d\x30\x16\x35\xbd\x42\x75\xfa\xeb\xe9\xf1\xc9\xd3\xaf\x01\x5c\x3d\x1a\x38\xa2\xf3\xe3\x8b\x8b\xb3\xf3\xd3\xcf\x93\x77\x3b\xae\xe4\xb1\x2d\x40\xba\xd1\x67\xbe\xe8\xb1\xd2\xe9\xe7\x0f\xc7\xd7\xff\xf3\x77\x5c\xab\xbe\xbb\x19\x4b\x68\x99\x6b\x6a\x51\x67\xf7\x27\xd1\x5d\x04\xba\x85\x88\x8d\xca\x8e\x6b\xa3\x60\x51\xd9\x81\xbb\x0a\xa6\x82\x92\x53\x65\x8e\xf3\x71\x17\x65\xb5\xb7\xf5\xdf\x47\xbb\x64\x1d\x67\x34\xb0\x2e\x1a\x6b\xc3\x74\x95\x07\xdb\xc2\x10\x8d\x3a\xd9\x86\xf6\x41\x9b\x58\x92\x51\x27\x87\xd0\x3d\xae\x8f\xfb\x18\x75\x1c\x58\xfb\xa8\xed\x57\x01\x1d\x9a\xde\xf1\x88\x5d\x26\x27\x25\xff\xdb\x16\x8a\xde\x3e\xa1\x97\xbe\xe3\x3c\xa7\x96\x77\xa8\x4f\x56\x5c\x00\x73\x59\xbc\x76\x20\xef\xa5\xcb\x1f\xde\x91\xef\x9a\xfb\x1f\x5b\x11\x90\x64\xad\xd9\x27\x17\x3e\xd3\x53\x83\x01\xaf\x1d\x02\x5e\xb3\xe0\xa8\xdd\x86\xd7\x3e\x62\x83\x6d\xb0\xd8\x85\x09\x85\x3a\xb9\x98\x80\xf6\xab\x61\x27\x1e\x46\xa2\xc7\x95\x6c\x60\x2b\x8a\xc9\x8d\x12\xb3\xd9\x46\xe8\x79\x7c\x7e\x1e\xb8\x61\x35\x9d\xb7\x87\xd4\x5f\xa7\x87\x6d\xae\x1f\x7a\xdd\xf0\xe9\xbb\x75\xad\x06\xc2\x5d\x97\xfc\xcb\x2f\x23\xcd\xcf\x5a\x83\xe5\x14\xdc\x37\x4f\x79\xd9\x43\xae\xd8\x4f\x61\xda\xcc\x5b\xa2\x67\xdc\x88\xb0\x28\x65\x0d\xbd\x0e\xb3\x14\x70\x89\x96\xd7\x1d\x67\x29\xf8\x67\xc4\xd4\xc8\x38\x8d\x1e\x22\x22\x3e\x84\x66\x39\xc0\xfe\xef\x2c\x4c\xcd\x0c\xc6\x0f\x0f\x3c\x5b\xbb\x1c\xc8\x5c\x07\xd1\xc2\xe9\xb7\xea\x56\xfb\x10\x8f\xd1\x5d\x3d\x6c\xab\x71\xb6\xb9\xb7\xed\x35\x63\xbe\x08\x81\x52\x7c\xc3\x61\x3d\x4a\xd7\xeb\xfa\x6a\x1c\x64\x9d\x14\x8d\xbb\xc4\x28\x3f\xc4\x3d\xb6\x29\x0e\xd9\x7a\x80\xa2\x99\xa1\x94\xd4\x83\x9a\xba\x9a\x50\x95\x81\x42\x8e\xaa\x88\x81\x42\x7a\xc3\xf0\x11\xd8\xbc\x13\x09\x8b\x23\x1e\xd0\x14\x9c\x54\x77\x75\xbe\x6d\xdc\x64\x5a\x38\xe2\x16\x8f\xe2\x8a\x15\x91\x1e\x5d\x3e\xb0\x9d\x60\x24\xa4\x0d\x94\xa4\xc3\x8d\xb6\x65\xd8\x2f\x72\xac\xb5\x8f\xfc\xa6\xf0\x58\x25\x4d\x7e\xac\x8e\x27\xb2\xdb\x3c\x77\x43\x7e\xd3\xf0\xde\x9b\xbc\x61\xfd\x6a\x4e\xa7\xb5\x35\x8d\x36\x66\x74\x91\x04\x33\x68\x45\x4c\x41\xf9\xa7\x4c\x34\xf9\xd0\x96\x7d\x6f\x8b\x90\x82\xc1\x03\xb7\xd4\xd1\xc5\xa5\xd8\xe6\x4b\xbc\x71\x5b\xdf\x42\xcd\x3f\xf7\xa1\x4e\xab\x7a\x96\x4a\x6e\x8c\x5e\x4e\xac\xb9\x49\xd0\xe7\xc7\xea\x75\x79\x19\xf5\x7b\xe5\xa4\xac\x20\x28\x1a\xf8\xdd\x4e\x6a\xce\x18\x27\x2b\x09\xd9\xe3\xc1\xd6\xec\xde\x77\x25\xf5\x15\x6f\x50\x67\x19\x53\xc3\xe7\x93\xcb\x8b\x9b\xab\xcb\xf3\xf3\xb3\xab\x26\x9b\x4c\x5d\xc1\xbd\x93\x13\x87\xe3\xc2\xe1\x34\x78\x4c\x65\xbc\xe6\x09\x40\x21\xbf\x62\xc1\xed\xa8\x9c\xdc\xa3\x68\x36\xaa\x28\xa2\x7e\x6f\x45\xfc\x13\xed\x32\xe9\xdc\xe5\xd3\xb3\x3d\x3b\xf3\x06\x55\x46\xa8\x1c\x3d\x54\x78\xeb\x4d\x65\x48\x4e\x79\x9a\x64\xe0\xad\x44\xde\x66\xe1\x92\xa1\x13\x4e\xf1\x6c\x0a\xbf\xbd\xbf\x7e\x9b\xe6\xae\x21\xc7\x99\x92\x69\x40\xcd\xef\x6c\xc3\x03\xa5\x21\xe1\x6e\x12\x39\xf7\xc3\xcd\xab\x39\x53\x34\xdf\xf0\x54\x86\xc5\x8c\x38\xe1\xef\xcf\x11\x79\xe2\x6f\x1e\x89\xb5\xe9\xc9\x89\x32\x15\x84\xa3\x54\xf3\x3b\xca\x72\xa1\x3d\x7b\xaa\x6d\xbc\xa2\x7d\xbb\x58\x0f\x2f\xe3\xd4\x8d\xbd\xf6\x0e\xfe\x0f\x42\xc8\x1e\xca\xbf\x9b\xaf\xc6\xaf\x5f\x8d\x5f\xed\x1d\x91\x3d\x3d\x14\xa8\x57\xc9\x8d\x19\xa1\xf0\x98\xc2\xef\x4d\xe3\xde\x6b\x35\x29\x02\x4a\x31\x6d\x27\x56\x28\x27\x3c\xcd\x13\x6e\xe7\x0b\xc5\xf2\x80\x0b\x10\xa6\x58\x68\xa6\x75\x1d\x53\x8a\x78\x4e\x3b\x4e\xfd\xa5\x35\xc7\x0e\xe6\xc2\x7e\xd3\x95\xca\xbb\x3d\xc3\x3c\x24\x7a\x91\xc6\x66\x8f\x7a\x7b\x00\xff\x67\x43\x7f\x3f\xe3\xe0\xae\x0f\x01\xf2\xda\x90\x48\x74\x41\x03\x86\x3b\xb4\xda\x2b\x78\x69\x60\x4e\x80\xdc\xf7\x81\x4d\x81\x0f\x5f\x15\xee\xb0\x36\x1f\x05\x58\x20\x22\xb6\x50\x64\x1e\x51\x71\x7b\x90\x97\xba\x71\xc6\xe7\xa9\xf5\xf4\x29\x34\xf2\x9a\xe0\xec\xa7\x38\x82\x25\xc3\xe0\xe2\x07\xa3\x3a\xba\x4e\x8c\xb3\x42\x9d\xfa\xc4\x0e\x69\x43\xae\x9e\x91\x4f\x26\xf5\xb8\x4c\x20\x55\xb8\x92\x8e\xee\xb1\x28\x3e\x24\x89\x53\x49\x15\x0b\x2a\xa0\x1f\x10\x0e\x62\x59\x31\xe3\x6c\x3a\xc6\xe7\x67\x87\x29\x1b\xe5\x5d\x9f\x44\xdd\xef\xc3\xcd\x47\x48\x1e\x96\x3a\xe2\xb1\xfe\xce\x32\xbe\x7c\x41\x04\xc3\xaf\x5e\x1a\x66\xc2\xfa\x8c\x9b\xad\x7d\xb8\xf9\x88\xfb\x31\x9c\x96\x87\x65\x76\x7b\xbc\xfa\xfa\x9b\x97\x95\xd6\xcd\x21\x0f\x36\x45\x40\x53\xe4\x03\x74\x03\xee\x0a\xa5\xd8\x67\x36\x91\x34\x98\xd1\xb8\xcd\x17\x56\x54\x7d\xc9\x94\x5c\x53\xe0\x8d\xa2\x2d\x89\xa5\x49\xc5\x87\x87\x56\x0b\x51\x38\x22\xff\x1c\x21\x5a\xfa\xc5\x62\xa7\xd9\x1e\xe8\xfc\xf7\x8c\xaf\xdd\x28\x96\xe1\xc8\x74\x72\x2a\x59\xcc\xf6\x02\x61\xdf\x0b\xb6\x7d\x39\xfe\x6a\xfc\xaa\xd4\xc2\xa8\x01\xf4\xcf\x3f\x15\xf4\xf0\x17\x97\x34\xce\xf6\xc0\x1b\x10\x06\x30\x8a\xc9\x72\xb5\x8c\xd9\x5e\x24\x97\x9f\x23\xb6\x61\x11\xb6\xfa\x74\x7c\x75\x31\xb9\x78\xef\x6d\xb6\xe0\x11\xfb\x1c\x53\xb5\xc2\xa6\x1e\xfd\x92\xfe\xdf\x38\x92\xcb\x5a\xf7\xdc\x75\xf4\x73\xb1\x20\xd7\xed\xb5\xd2\x5c\x1f\x4d\x01\xa6\xcf\x9f\x7d\x81\x19\x9f\x3f\xd7\xba\xad\x55\xa6\x7b\x7c\xfe\x6c\xc2\x22\x3e\x7f\xae\x34\xe0\x31\x5d\xeb\x16\xbf\x54\x79\x0a\x17\x50\xfa\xa1\x8f\xc0\xd2\xef\x29\x2d\x32\xdb\x43\x2b\x14\x36\xcd\x52\x36\x95\xe1\x09\x0f\x93\xb2\x17\xc8\xaf\x95\x79\x91\xea\x76\xce\x7c\xfb\x6d\xda\x3e\x8e\x0b\x32\xef\x58\x26\x23\x9d\x46\xa0\x0e\xe8\x30\x78\xe7\xb3\xf5\xb2\xd2\x90\x2b\xcd\x52\xfc\xe1\x4e\xd8\x78\x93\x62\x99\xa8\x35\x8d\x6b\xe0\x4f\x05\x05\xb8\x68\x5c\x51\xf9\x29\xa0\x31\x85\xc8\x73\x6e\x97\x0e\xa3\x7c\xa0\x71\xcc\xc5\x32\xb5\xbd\x76\x5d\xc9\x9c\x8a\xf0\x8e\x87\xfa\x46\x76\x4f\xe8\x34\xae\xcf\x66\xff\x69\xcc\x8a\x06\xa7\xd8\x9c\x15\x5e\x9c\x32\x26\x60\xc9\x81\x12\x50\xc6\x46\x6d\x0d\xaf\xb9\xa4\x04\x78\x41\x30\x05\x54\x6d\xfc\xbf\x53\x4d\xfd\xfe\x59\xc3\x08\x17\xf6\xfd\x5b\x5c\x8f\xfc\xdc\xc9\xe4\xf4\x4a\x23\x46\xe7\xcd\xbf\x35\x76\xdb\xf2\xe9\x63\x41\x8a\xbc\xbb\x59\xb5\x69\x3b\xd6\xbf\xb9\x21\xba\xbf\xe6\x5b\xec\xe2\x10\x6e\xc3\x70\x14\x24\xa1\x65\x7e\x9e\x2e\x47\x7c\x2d\xeb\xc8\x13\x64\x8a\x7f\xfb\x7e\x5a\x4a\x0f\x89\xbf\x15\xf9\xe2\xab\xbf\xd7\xb3\xc6\x37\xe4\x46\x29\x72\xc7\x57\x1b\xcc\x8a\x0c\xf2\xe6\x48\x67\x4f\x93\x3e\xbe\xba\xf6\x72\xee\xe9\x32\x25\xc4\x22\x2b\x5b\xdd\x07\x18\x8e\xb2\x72\x65\x48\x1f\x3f\xa4\x8f\x77\x8f\x60\x48\x1f\xff\x9b\xa5\x8f\xaf\x3e\xe2\x7a\x12\xf9\x72\x8d\x13\xfd\x80\xcb\x04\xa9\xa2\x15\x69\xce\x16\x4f\xd3\x0b\xa8\x2a\xe8\x71\x73\xa8\x3c\xe8\x6b\x6c\x68\xab\x52\x58\x49\xe5\xf8\xda\xd4\x25\xcc\x65\x27\x6a\xf8\xe9\x9f\x4e\xb1\x89\xd7\x83\xe2\xcd\xd7\xdf\xbc\x7a\xfd\xf3\x7e\xfd\x27\xcc\xdf\x05\x15\xfd\xbf\x7a\x5d\xff\xb9\xb5\xdc\xbf\x3d\x79\x7f\x35\xe0\xd2\x7e\x4e\x8a\xa6\xf8\x3e\x6c\x3a\x7c\x84\xa5\xb9\x41\x16\xce\x14\xb3\x19\xd5\x7d\xb7\x00\x84\xc9\x9c\xab\x84\x26\x5b\x53\xfa\x0c\x82\xa4\x28\xba\x6e\x63\x80\xde\x4e\xf9\xf3\xbd\xcb\xdc\x16\xc7\x9f\x2a\x2a\x42\x9a\x84\x5a\xce\x8b\x68\xb2\x64\xd5\xe5\xfa\x06\x25\xb0\x05\xfd\xd2\x3c\xf1\x53\xf8\xe9\xac\xa4\x0c\xe4\xc9\xff\x93\xa7\x70\xb2\x29\x24\x5b\x04\x8e\xda\xe5\x35\xd6\x72\xed\xae\xe1\x8a\x2a\xd6\x5e\x4b\xf8\x11\xf0\x1c\x24\xc5\x9b\x43\x10\x3e\xde\x2b\x32\xdb\xa3\xf4\x48\x88\xd9\x1e\x54\xcb\xc3\x3f\x8e\xd6\x6b\x6f\xd5\x4d\xfb\x79\x27\x93\x02\xea\xc5\x6e\xb2\x94\x39\xc3\xe1\xf8\x07\x26\xcf\xb4\xfe\x7e\xb6\xa7\x81\xde\x3c\xec\x6c\x0f\x3a\xd2\x84\x91\x57\x6f\xc8\x9c\x2b\xf3\x90\xc6\x30\x61\xf5\x68\x9d\xd9\x60\xbd\xcd\xe3\xfa\x56\x72\x90\xcf\x26\x42\x2d\x1e\xad\xcd\xc4\x5f\xbd\x2e\x4d\xfc\x49\x77\xf1\x56\x9f\xb2\x4b\x86\x6d\x61\xc9\xb6\xe3\x6b\x82\x28\xa1\x69\xf0\x98\x25\xa3\xe3\x6b\x1b\x9e\xc6\x6b\xd1\xdd\xc5\x27\x86\xb2\xf0\xe2\x88\xfc\xaf\xe7\xb3\x59\xf8\x7f\xbe\x38\xc2\xff\xfc\xc7\x3f\xcb\x7f\xdb\xaf\x1f\x7a\x83\x1e\x5c\x80\x37\x82\xd4\xfe\x53\x99\xf8\x90\x59\xe9\xde\x9d\xe7\x2d\x2d\xa2\x84\xd2\x83\x78\x16\x1a\xb7\xc4\x89\x54\x32\x90\x91\xe5\x5e\x70\x68\x2f\x64\x4e\x6d\x35\x36\x25\xc9\xab\x3f\xd7\x1c\xd1\x41\x2f\xca\xd7\xd9\xfa\x88\xbc\xf9\xe6\x9b\xaf\xbe\xf1\xfc\xce\x05\xfe\xfe\x6a\x47\x44\x1a\xc9\xe5\x35\xdb\xb0\x84\xab\xed\x75\x90\x30\x56\xe5\xf5\x6a\xdb\xde\x3f\xaf\xf6\xb0\xdb\x8f\xe4\x92\xa4\xe6\x17\x42\xe7\x72\x63\x4d\x37\x91\x5c\x7a\xeb\xa8\x41\xb9\x68\x26\xf2\x9c\xd2\xa9\x0a\x65\xa6\x1c\x72\x42\x26\x17\xef\x2e\x7d\xa4\xa3\xed\xf8\x35\x49\xba\x91\x17\x32\x64\x1f\x58\xba\x3a\x83\x50\x4d\x5f\x05\xe7\xf2\xae\x2e\x7c\xbd\x48\xca\x54\x51\xe8\x6f\x91\x19\x8b\x28\x46\x13\xd5\x83\x23\xf4\x47\x1f\xfc\x1a\x12\x35\xa6\x26\x4c\x34\x74\x37\xa4\x45\xd0\xe6\x0d\xcd\xa5\x8c\x18\xad\xf1\xc4\x71\xc2\x16\xfc\xfe\xd8\x4d\xe2\xdc\x49\xf5\xa6\x9e\x3e\x05\x65\x01\xc7\x1f\x68\x51\xce\x0d\xed\xdb\x51\x1b\xbb\x41\x76\x28\xe7\x56\x5f\x50\xa1\x5d\x4e\xcb\xcb\x70\x28\x94\x1f\x01\xd8\xe8\xe4\xa2\x32\xa2\x27\x14\xda\x02\xaf\x83\xd8\x05\x3c\x6c\x2e\x23\x5f\x26\xd1\x93\xd3\x2b\x98\x1a\xaf\x75\x31\xb2\x5b\x0a\xd9\xee\xa3\xb9\x92\x79\x37\xf5\x6b\xe7\x6e\x7c\x2b\x73\x78\x1c\xe3\xd3\x6e\xb9\x1c\xc6\xe1\xf2\x16\xe4\x05\x58\x97\x66\xc4\x6f\xbd\xe5\x51\x96\x83\x52\xd7\xb3\x3d\xcd\x96\xa6\x63\x67\x16\xa4\xaa\xbd\xd8\x11\x82\x52\x5d\x27\x55\x6e\x21\xbe\xed\x64\xaa\x9d\x2a\xb7\x13\xdf\xe6\x91\xbb\xa8\x72\x27\xf1\x6d\x5b\x74\x07\x55\xee\xa4\xbd\xbd\xc6\xee\x4f\x94\x9b\x9f\x30\x7e\xfa\xd4\xdc\x6f\xa1\xa9\xe4\x4b\x08\xb2\xb1\xe8\x18\x5d\xca\x64\xda\x89\xf9\xae\xab\x1d\x00\x18\x90\x99\x49\xbf\x5f\xcc\x1d\x8d\xa2\x2b\xbe\x63\x33\x83\x17\xf7\x19\x23\xab\x1d\xc5\xc4\x4a\x80\x9c\xba\x28\xb0\x4f\x5e\x55\x15\x0b\x67\x5a\x14\x80\xe5\x31\x7d\xe3\xe2\x22\xf2\x04\x91\xe0\x0e\x23\xb6\xa5\xe9\x4c\xc8\xb6\x5a\xb1\xf5\xc3\x91\x6e\x15\x16\x6f\xf5\xbc\x8e\x64\xef\x78\x98\x99\x72\xcd\x79\x53\xff\x39\x17\x20\x7c\x02\x64\xfb\x64\x4c\x9d\x39\xe1\xb3\x7b\x54\x03\xf5\xbf\x44\x4e\x0f\xff\x2d\x92\x89\x13\xa3\xed\x5b\xb3\x19\x88\xd8\x91\xf4\xd9\x8e\xdd\x14\x23\xd5\x06\x79\xe6\x00\x70\x03\xac\xa6\x0f\xc0\x4f\x41\x64\x4c\x5d\xd8\x2d\x16\xd2\xc2\x2b\x63\xaa\xa6\x63\x6d\x56\x5c\xe8\x17\xdf\xa0\x62\x75\x9d\x57\xc8\x7f\xba\xce\xfe\xff\xd8\x97\xe8\x5c\xd2\xf0\x2d\x8d\xa8\x08\x76\xc1\x46\x95\x5e\x5f\x78\x99\xdc\xd1\x1a\x2f\x94\xa9\x45\xe0\xb6\x1d\x9b\x9a\xc1\xbe\xb1\xab\xf7\xee\x77\xb8\x64\x65\x20\x3d\xf0\xa2\x55\x60\xf3\x87\xbc\x6c\x7f\xac\x0a\x89\x4f\x5c\x4b\xd8\xa6\xa0\x7f\x1a\xf3\xd0\x94\x59\x99\xb8\x64\x15\xd2\x5f\x7b\x8d\x41\x4e\x36\xfc\x92\x0d\x28\x36\xe3\x3c\x95\xe9\x67\xb0\xd1\x0c\x36\x1a\xf7\x08\x06\x1b\xcd\x6f\x69\xa3\xd1\xe8\xa0\x5f\x7d\x5f\xd3\xf8\x01\xd5\x7c\xfb\xda\x67\x6e\x56\xac\x10\x0a\xad\x5d\x48\xa3\x1f\x0f\x7d\xfb\x12\x13\xcb\x2d\x63\xf1\x65\xc2\x97\x5c\xd0\xe8\x82\xdd\xab\x1f\x64\x35\x5c\xaf\xb6\xb4\xcb\xd8\xfa\x5d\xe9\xce\xb0\x30\x69\x46\x20\x82\xdd\xab\x95\x8c\x31\x1a\x19\xab\x98\xa2\xc9\xa4\x4b\x33\x08\x30\x25\x1a\xa8\xfa\x8e\x2b\x78\x24\xd6\x37\xcd\xd5\x20\xc1\x89\x80\xa7\x28\x0b\x75\x17\xdf\xb8\x7a\x94\x34\xd7\xe1\x65\x28\xa2\x69\xb9\x9a\xdd\x2b\xa2\x57\xa7\xd7\xfd\xbd\x96\xbd\x45\xaa\x18\x0d\x35\x78\x9d\x5f\x53\x16\x2d\xbe\x9f\xed\x3d\x37\x16\xb1\x17\xbe\x29\x50\x66\x2b\x9c\xf7\xe7\x09\x15\xc1\xca\x9e\xd3\x85\x9e\x5a\x0a\x32\xdb\x9b\xf3\x24\x1c\x07\x8b\xa5\xd7\x1e\xd1\xaa\x0e\x5c\xd3\xfb\x2b\x06\xc9\xc7\x6e\xb8\xd7\x4e\x53\xbe\x2e\x1c\xeb\x43\xa0\xe7\xb0\xbe\xa4\xa9\x5c\xa8\x3b\x0d\xe1\x04\x47\x19\x13\xf2\x49\x1f\x47\x21\xce\x7a\x59\x19\x8d\x4c\x72\xdf\xb8\x2c\x61\xa1\xcd\x8c\xb8\x4c\x68\xc0\x16\x59\x64\xc7\x23\x8a\xaf\x19\x28\x72\x71\x5c\x8d\x3d\xba\xc6\x66\xe4\xed\xe4\xea\x34\x37\x35\xca\x05\x79\xf5\xfa\x65\x6a\x3d\x51\x1b\x21\xd4\xac\x01\xee\xf3\x8a\xf2\x2c\x83\x79\x5e\x3d\x8b\x80\x8d\x38\x6f\x2a\x2e\x60\xd0\x15\xe4\x95\xf0\x9e\x78\x4a\x14\x4d\x96\x4c\xa1\x51\x14\x00\x05\xef\x11\xf3\x54\x20\xd8\x00\x08\x4c\x99\x72\x84\xb2\x14\x9f\xd4\x30\xa8\xa3\x5e\x30\xfe\xa5\x3c\x45\xc3\x02\x83\x1a\x7f\xba\x73\x5a\x84\xe9\xd8\x9b\x57\x54\x84\xd8\x15\x66\x9e\x78\x29\x2f\xec\xf2\x12\x01\x56\x0d\x8b\xf3\x43\xde\x0d\xc3\x05\x40\xf8\x5a\x0e\x09\x2e\x96\xe6\x32\xb4\xdd\x2c\x00\x4f\xfe\x48\x10\x4f\x58\xb3\x1e\x5b\xc7\xaa\x9a\xbf\xa4\x6b\x4b\x31\x4d\xd3\x3b\x99\x74\xea\xfe\x2f\x4d\x86\x50\x84\xad\xe9\x94\xef\xcd\xac\x3f\x25\x4b\x26\x58\x42\x9d\x43\x6e\x50\xff\xb7\xa1\x7f\xd2\x2d\x71\xa0\xef\x79\x4b\x46\x02\xef\x61\x68\x9e\xe2\x96\x6d\x81\x35\x33\x43\xd8\xfb\x00\x97\x38\x96\xe1\x7e\x5a\x38\x57\x37\x68\x02\x3b\x85\x21\xcc\x74\xd0\xac\x28\xac\x3d\x31\xb3\x26\xc4\xcd\xb0\x2a\x25\xcd\xd5\x05\xce\x64\x4c\xc8\x07\x3c\xe2\xe6\x41\x09\xa1\x9a\x51\xe2\xa1\x1d\xe2\x96\xf9\xae\x82\xfd\xf4\x51\x56\xb6\x1a\xb8\x6b\xa6\x21\x27\xb9\x7b\xc2\x16\x2c\x61\x42\x79\xb9\x9e\xb6\x1a\x07\x72\xa3\x65\x5c\x76\x77\x68\xca\x2b\x8e\xb4\x1c\x3d\x42\x66\x24\x3d\x84\x83\x39\x7c\xd6\xa1\x9a\x27\xe4\xe6\xf2\xf4\xf2\x88\x1c\x87\x21\x91\xa0\xd5\xcf\x52\x40\xbc\xf0\x56\xd2\xb1\x23\x0d\x1c\x00\x33\x7a\x40\x32\x1e\xfe\x5f\x1e\x73\xd3\x2e\xb0\xca\x13\xe8\xf6\x84\xd7\x35\xa0\xad\x6d\x6e\x36\xd3\x60\xbb\xc6\x83\x93\x09\x38\x26\xe8\x4b\xb1\xee\x3e\x75\x63\x81\xe8\x5a\x7d\x03\x95\xc4\x8f\x2d\xc0\xd6\xb0\x78\x08\x2b\xf4\xff\xd4\x47\x74\xf7\xff\xaa\x31\xc6\x64\xda\x87\x00\x39\x99\x4b\x1d\x3e\x8e\x2c\xa4\x51\xc6\xce\xb7\x20\x68\x59\xfc\x14\xcb\xc4\x4b\x80\x8c\x57\x8e\x92\xd8\x5d\xdf\x2c\xa0\x3d\x60\x8f\x16\xb9\x2f\x0f\xb8\x69\x1c\x58\x43\x4c\x61\xb2\x9a\xed\xfd\x84\x51\x0f\x93\xe9\xe6\x0d\x06\x3e\xfc\x7c\x04\x73\x79\x5d\x0f\xc0\x6e\x93\x77\xf8\x1a\x3b\x1c\xe1\x17\xd0\x0b\xbe\x40\x03\x09\xa4\x4e\x85\xb5\x94\x36\xe1\x2c\xca\xd2\x45\x2f\x17\x08\xbe\x38\x86\x86\x00\xb0\x44\x48\x72\xef\xa4\x39\x8b\xa4\xc6\xcb\xc0\x22\x1a\x37\x56\xc0\x75\x90\xb2\xbc\xb0\xce\xfb\x91\x2c\xa0\xc7\xaa\xf7\x95\x21\xb4\x77\xcc\xb0\x86\x54\xe1\x72\x0d\x64\x77\xa5\x3f\x5a\x68\x78\x28\x49\x4d\xd8\x5a\xaa\x9c\xb2\x96\x4e\x16\xb9\xaa\x26\x0a\xe4\x12\xd2\x29\xdc\xc4\x32\xd8\x10\x57\x54\x08\x2b\x7a\xbe\x94\x33\x8b\x97\x37\xa2\x39\xa3\x39\x53\x77\xcc\x04\xba\x80\xaf\xbc\xad\x4c\x1b\x16\x8c\xb7\xbb\x6e\xc8\x70\x96\xf3\x8b\xfe\x13\x36\xc9\x75\xcd\x0c\x7c\x41\xe6\x52\xad\xb4\xac\x9a\x22\x0f\xa1\x79\x81\xb7\xef\xa7\x1a\xa9\x8c\x75\xd3\x63\xf3\x5e\xda\x19\x4a\xbd\x24\x1c\xfb\x4d\xff\xb1\xdf\xd4\xc6\x1e\x13\xfd\x4c\x7d\x13\x98\x6d\x16\x2e\x71\x81\x04\x87\x30\x2b\x6c\x3b\x60\xd8\x4f\x4b\x13\xd9\x83\xf0\xae\xdb\x1c\x3e\x16\x2c\x75\x8b\xc0\xc3\x5d\x2c\x9e\xcb\x8e\x37\x11\x79\x11\xb3\xbd\xce\xab\x68\x76\x5f\x38\x3e\x68\x68\xae\xe4\x5d\x2d\x1e\x0c\xd5\x13\x06\x83\xf9\xb6\xd3\xcd\x43\xd5\x19\xa6\xdc\x19\xa6\xd9\xa6\x3c\xdb\xfb\x98\x32\x48\x5f\x3f\x9d\xed\xd9\xb4\x73\xee\xda\x72\xb6\x47\x5f\x7e\x23\x19\x96\x16\x3b\x06\x0f\x7c\x4f\x7e\x59\xfc\xe0\x90\x26\xb4\xaa\x79\xcb\x3b\x9d\xc2\xa0\xd3\x75\x75\xba\xe5\xa2\xb8\x4f\xa1\xda\xd5\x33\x1c\xe3\x0c\xdb\x9a\x82\xd7\xfd\xd1\xa3\xe6\xf5\x95\xec\x75\xb4\xbd\xce\xcf\xdb\x41\xe7\x3b\xe8\x7c\x07\x9d\xef\xbf\x9f\xce\xd7\xc5\x10\x3d\x35\xbf\x75\x8c\x53\x7c\x76\x57\x07\x37\xd8\x1d\xdb\xc8\x3c\xd4\xdd\xeb\xf6\x75\x3c\xc5\x66\x84\x8b\x10\x6a\xfc\x18\xcd\x0d\xdc\x1c\xc0\x6d\xc4\x22\x37\x7d\x6f\xe7\x0c\xaa\x9e\x60\x1f\xaf\xd8\x0d\xd1\xe3\xa8\xae\x71\xef\x39\x96\xa2\x77\xea\xcf\x22\x63\x2e\xa3\x10\xc8\x7d\xc4\x68\x6a\xa6\xf6\x92\x60\x9e\x2a\x7a\xcb\x44\xb4\x25\x2a\x61\x76\x79\x38\x0b\x2d\x66\x79\x1c\xcd\x60\x2b\xef\xa4\xdc\xfa\xa0\x7d\xfa\x34\xc8\x9c\x23\x38\xd2\xea\x77\x06\xb0\xd5\xaf\x7d\xa9\x49\x3c\xf5\x34\x06\xa6\xc2\x4d\x25\x50\xaf\x3b\xff\x04\x8c\x85\x75\x90\x2a\x66\xa9\x72\x17\xf5\x16\x75\x16\xa3\xb1\x46\x7e\xc1\x66\xd4\x9b\x3c\x25\xaf\x51\x76\x27\xad\xed\xa0\x12\x5c\x68\xfc\xd4\x72\x23\x87\xb3\xc8\x21\xae\x70\xe0\x5f\x06\xfe\xe5\xf7\xe6\x5f\xea\x2f\xb8\x2d\xb2\x10\xbb\xce\x3d\xd4\xaf\xd9\xa0\xd4\xc6\xba\x00\x0a\xf5\xbf\xf1\xfa\x4a\xdd\xc6\x36\x94\xc4\x3c\x72\xbd\x36\x63\x8a\x33\x2c\x4a\xbe\x9a\x06\xd5\x57\x92\x09\xe1\xd5\x65\xb7\x91\x78\x33\xe4\xfb\x8f\x93\xd3\xce\xd5\x16\x4d\xed\x5a\xe1\xdf\x46\x7d\xdb\xb8\xb8\x1e\xd3\xdf\xe8\x26\xfd\xa6\xd7\x4d\xed\xa1\x19\xb4\x08\x15\xc2\xbe\x64\x15\x79\xb6\x8e\x2b\x46\x43\x9f\x8d\xa7\xcc\x43\x96\x5a\xe7\x19\x83\x4c\x21\xe9\x94\x2f\x05\xb0\xc7\x42\x15\xe3\x92\x35\x5f\x96\x62\xe8\x2b\x6b\x93\xd0\x8d\x46\x26\x90\x30\x96\x02\xbc\xfe\xd2\x2c\x58\x69\x8e\x0f\x0b\xe5\xa0\x1e\x2c\xd7\x5e\xdf\x51\xae\x5f\xf9\x42\x36\xa8\x17\x21\xc7\xae\xc5\x50\x4d\xa5\xec\x48\x97\x29\x01\xca\xb1\x8a\xce\x80\xb0\x1f\xb1\x19\x09\x59\x10\xd1\x04\xf4\x67\x3c\x58\xd9\xde\xce\x5d\x76\xa2\x45\x20\xaf\xe7\xbf\xbf\x1e\xe9\xc9\x38\x3f\xc0\xf3\xa5\x94\x9a\x45\xd2\xaf\xd1\x92\x89\xf1\x6d\x36\x67\xf3\x8c\x6b\xa1\x03\x26\xb0\xd3\x3f\x07\x64\x0e\x1e\x1c\x90\x85\x8d\x4b\x71\xc3\xd7\x2c\x55\x74\x1d\x1f\x11\x91\x45\xd1\xac\x92\x01\x0d\x54\xda\x00\xb3\x27\x51\x58\xe1\xdd\x80\x0a\xfc\x4e\x06\x3c\x87\xab\xac\xfc\xee\xe1\x29\x6b\xcb\xac\xb1\x94\x95\x16\x83\xf2\x6a\x60\xfe\x06\xe6\xef\xdf\x8f\xf9\xab\xa0\x8a\x7e\xfa\x2b\x3f\x02\x2a\x3e\x0f\x50\x61\x45\x34\x4d\x7b\x24\x68\xc0\x66\x05\xdd\xb4\xfc\x0c\xf0\xa6\x8e\x68\x89\x25\x7e\x04\x6f\x70\x99\x42\x6b\x13\x4f\x5d\x63\x30\x3e\x4b\xf0\x7d\xc3\x00\x0b\x34\x54\xf2\x8d\x8d\x8f\xd0\x37\x52\x26\xaa\xc1\xff\x81\xce\x65\xa6\x48\xc0\x12\x0d\x3a\x7d\xdb\x20\x20\xb8\xbc\xaa\x9d\xc2\x1e\xda\x1d\x2e\x5a\xa2\x4f\x1e\xec\xd3\xc6\x0d\x40\xbd\x2e\x6d\x0b\x3f\x24\xa1\x91\x89\x1f\xd9\x8d\x8b\xc4\x17\x37\x2d\xe5\x66\xed\x58\xf5\xc7\x7a\x97\x3c\xa0\x1e\xbe\x2c\xea\xcd\x76\x5d\x51\xfd\x29\x98\xab\xfc\xf5\x63\x36\x6d\xf2\xd2\xad\xf3\x58\x1d\x8a\x24\x6c\x91\xb0\x74\xe5\xd5\x70\x7e\xc0\xe8\x7b\x33\xa2\x5d\x16\x4f\x21\x0a\x26\xa4\x3e\x6f\xa4\x87\x7b\xde\x36\xbe\xfa\x82\x5f\x6b\x80\x64\xed\xdd\xe3\xce\x5c\x02\x2a\xe7\xc8\x17\xa2\x32\xb1\xe0\x49\x8b\x4e\xb5\xbd\x5c\x48\xf4\xbe\xc2\x27\x88\x15\x76\xf1\x29\xe1\xf0\x29\xd7\x37\x89\x83\x79\xda\x80\x9c\xcc\xb7\x66\xdc\x1d\xdc\x9f\x97\xac\x9b\xc5\x3e\xd6\x8d\xc8\x4a\x46\x61\x8a\x1d\xec\x22\x64\xe1\xeb\xb6\xbb\xcb\xdd\x9c\x27\xe1\x8f\x5f\xf7\x71\xb6\x7b\x3b\xb9\x3a\xfd\xf1\x6b\x37\x28\xa9\xe0\x0f\xca\xb0\xcd\x00\x4d\xe8\x91\xbf\x7e\xb8\xb3\x5d\x44\x53\xf5\x56\xca\x26\x3f\x5f\xef\x12\xcf\x9d\x3e\x06\x52\xb9\xb0\xaf\x97\xe4\x8e\xd9\x3c\x24\x41\x32\x8c\x4e\xca\x2a\x22\x32\x53\x71\xe6\x73\x3b\xb0\x9f\x3e\x9e\x64\x7a\xea\x2b\x56\xca\x27\xb0\xeb\xce\x3c\xdd\x9b\x36\x69\x9b\xfe\x0e\x1b\x05\xc7\xf6\xc4\xab\x4d\xf0\xee\xec\x0a\xda\x93\xc9\x69\x9e\x59\x09\xd6\xf3\x65\x8b\x68\x32\x5c\x78\x57\x00\x19\x51\x2d\x4a\xb0\x89\xa6\x4e\x29\x5b\x7b\xe9\xdb\x2e\xcb\xd8\x34\xaa\x81\xbc\x0b\xf9\xb1\xd0\xfc\xd8\x65\x84\xb0\x8c\x2f\x59\x45\xbb\x2f\x9f\x41\x00\x6f\x7a\x23\x80\x37\xbb\x21\x80\x37\x03\x02\x70\xb6\x33\x20\x00\xcf\xce\x06\x04\xf0\x7b\x22\x80\xb6\x5f\xe7\xcb\xce\xa8\x27\xbd\x44\xbc\x82\xc0\x37\xeb\x3f\x1b\x79\xe7\x8e\x37\x8f\xce\x84\x67\xa9\xa2\xf3\x88\xa7\x2b\xd6\x93\x2d\xd1\x87\xa7\xa4\xa2\x91\xf5\x46\x94\x0b\xf4\xab\x64\xc5\x48\x7a\x27\x24\x65\x29\xea\xdb\xda\xc0\xd4\x10\x0f\xe6\x5f\x5f\x2f\xac\xd9\xb0\xbe\x37\x4f\xb4\xbe\x0b\xa9\x1e\x0f\x84\x42\x8a\xd1\x6f\xb2\xcc\x2f\x83\xe4\x53\x2c\x13\x62\x9d\xfb\x81\x6f\x8a\x4d\x5d\xc2\x08\xd0\xb3\xe1\x4a\x69\x3f\x46\x9d\x74\x26\xa3\x69\x10\x78\xc0\x87\xb4\xac\xe2\xc8\x69\x70\xbe\x86\x66\x0c\xd2\xbd\xaa\x5e\xe4\xba\xc5\xf7\xbf\x61\x07\x0d\x11\x00\x77\x2b\x99\xb2\x42\xc5\x4e\xee\x18\xa1\x7e\x13\x47\xf1\xc9\x15\x19\x2d\xf8\xba\x1f\xc6\x26\x28\xd3\xf5\xdf\xc5\x35\xc7\xf8\xb8\x9c\x84\x24\x24\x61\x34\x95\x02\xe8\xb0\xa9\x5f\xd4\x46\xce\x7a\xaf\xab\x83\xa4\x55\xd7\x05\xab\x31\xca\x04\xc0\xcb\xf8\x22\x70\x9c\x47\x58\x8f\xf2\xdb\xec\x1a\x96\x03\x66\xbb\xc2\xeb\xaa\x08\x90\xb1\x21\x0e\xa5\xf0\xca\xf6\xd3\xde\x70\x9a\x5f\xd9\x91\x32\x45\xbc\xd6\x2c\x5d\x1d\x68\xe8\xeb\x5f\x99\x20\xec\x3e\x8e\x78\xc0\x95\x75\x28\x6f\xcb\x77\x45\xb0\xa6\xce\xc8\xd2\x30\x78\x51\x46\x65\xfe\xa5\x80\xea\xe2\xbf\x3b\xb3\x47\x21\x26\xea\x85\x21\x11\x13\xbd\xa9\x60\xa2\x37\x03\x26\xea\xd8\xc1\x80\x89\x76\x5b\xd7\x80\x89\xcc\xe7\xbf\x13\x26\x6a\x09\x27\x1c\xf9\x98\xf7\x7e\xcd\xde\x34\x37\xab\xb2\xb2\xbd\x5b\x7a\xc6\x6c\xdb\xbb\x7e\x1d\xa8\x88\xef\x74\x1f\x3e\x2f\x9a\xa2\x69\x50\x59\xbb\x79\xdd\x2e\x08\xfa\x90\x04\x5a\xf8\xa0\x0d\x59\x20\x6a\x9a\x78\x63\x2a\x84\x07\x5b\x58\xf0\x40\xbf\x9c\x4f\x00\xee\xcb\xbe\x21\xaf\xde\x9d\x7c\xf5\xd5\x57\xdf\x81\xfe\x1d\x33\x61\x43\x60\xfc\xc7\x9b\x93\x16\x25\xbd\x9e\x63\xe4\x5f\xa4\xc8\x22\x53\x8a\xac\x70\xa4\xa8\x03\xd5\x7f\xe9\x30\xbf\x45\x17\x3c\x41\xf6\xb7\x76\xa8\xd4\x74\x22\xb7\x42\xde\x09\x6b\x80\x36\xb6\x9b\x76\x59\xf8\x8b\x54\xe0\x38\x6b\x3f\x5e\xff\xca\xb4\xad\x31\xfb\x66\xe9\x4f\x44\x58\x61\xda\x36\xca\xda\x9c\x4e\xa4\x0f\x80\x7a\x81\x29\x5f\xa0\x2d\xab\xd5\x1f\xe5\x9e\x16\x9d\xf2\x60\xf2\xbc\xf4\x57\xd3\xa7\x1f\xee\x5f\x52\xc5\xee\x68\x5b\x5c\x7e\x65\x2d\xef\xb1\x43\x1e\x9f\xe7\x6c\xe8\x11\x96\x93\xd7\x40\xdb\x81\xf9\xc8\xcb\xa6\x79\x96\xf4\xe5\x2b\x8a\x18\x4d\x04\x0b\xdf\x25\x72\xdd\x7f\x4d\xe7\x45\xa7\xe2\xd6\xb9\xd6\xe8\x84\x2d\x69\x12\xb6\x4e\x4c\x10\xc9\x25\x26\x17\x06\x1c\xb8\x4d\x89\xd3\x14\x4e\x61\x3f\xbd\xae\x22\xe9\xc7\xe9\xd5\x36\x37\x59\x98\x58\x46\xe4\x04\x30\x44\xf5\x03\x4b\x57\x9a\x66\x1b\x9a\x7b\x40\x9a\xb2\x80\xba\x9f\x0a\xd3\x88\x9a\x4f\x93\x0b\x84\x09\x45\xb2\xd4\xd9\x7b\xeb\x86\x49\xef\xf3\x24\x79\x4c\x6b\x83\xd3\x64\xcb\xce\x6f\x1c\x47\x49\xe3\xaf\x82\x27\x44\xcd\xf1\xf0\xd4\xde\x97\xee\xcd\x43\x0a\x8b\xc7\xda\x53\x37\x6f\x42\xbe\x94\xd1\xe3\xce\x21\x15\xc1\x3d\xa0\x73\x6e\x70\x05\x70\xf6\x2a\x93\x3b\xbc\xef\xa6\xee\xe0\xef\xcd\x8c\xe5\x54\xab\x97\x5c\x68\xa8\x56\x5d\x30\x1c\xa8\x56\xcb\x46\x06\xaa\xd5\xb2\xa0\x81\x6a\xd5\x3f\x03\xd5\x1a\xa8\x56\x53\xab\x81\x6a\xb5\x76\xff\x43\x7a\xf6\x3f\x55\x30\xe7\x82\x45\xfc\xfe\xc9\xeb\x43\x42\x50\x49\x6b\x85\xc8\x7a\x8b\xba\xe3\xbd\x67\xad\xe6\x5c\x72\xcf\xfb\x7a\x93\xd9\x6f\x15\xcc\x89\x81\x33\x3b\x95\x8a\x84\x2e\x43\x20\xe7\xe0\xcb\x3f\xf8\xf2\xff\xde\xbe\xfc\x75\xfc\xd3\x55\x22\x12\xdf\xfb\x43\x8b\x44\x46\x91\xbc\x9b\x4c\x27\xd3\x29\x0d\x6e\x99\x4a\x35\x1f\xf9\x49\x26\xb7\x91\xa4\xdd\x9e\xdc\xfb\xc7\x6d\xbd\x6d\x64\x56\x61\x6e\x80\x95\x7a\xf5\xc2\x58\x46\x25\xd4\xdc\x4d\x16\x41\xfa\xda\x30\x91\x31\xd1\x43\x13\x26\x02\x1a\xa7\x58\x82\x3d\x2f\x76\x8f\xe5\x5c\xec\x54\xbe\x31\x8b\x1a\x5c\x0b\x1a\xa5\xbb\x17\xe1\x02\xc8\xfc\xf8\xb7\xf3\xe3\x8b\x87\x83\xa6\xb1\xfb\x23\xc0\x06\xc6\xfe\xdd\x80\x73\x97\x5e\x27\xc1\x69\xaa\x4e\x56\x2c\xb8\xed\x04\xc6\x35\x53\x86\x8b\x1d\x39\x12\xd3\x28\xd0\x9d\xb5\xc0\x7b\xfc\xe9\x9a\x9c\x9d\xbc\xce\xe3\x14\xd2\x31\x39\x36\x8c\x8c\x6f\xf5\x9b\x72\x05\x48\xac\x4c\x31\xdb\x3b\x95\x17\x52\xad\xf4\xf3\x84\xba\x4c\x58\xd3\xcd\x16\x9e\x3a\xc5\x38\x80\xd9\x5e\x47\xf5\xd2\x7c\x10\x1f\x4c\x98\xc8\x7c\xa2\xd9\xa8\xe8\xe5\xfb\xd1\x2c\xc4\xd7\xcd\x2c\x6a\x27\x2b\xc3\x3c\x5e\x9c\x48\x21\x58\x00\x1e\x9d\x45\xf9\x0b\x2e\x96\x7d\x8b\xdf\xbd\x9d\xbe\xeb\x18\x02\x4d\x35\x5c\x90\xb7\xd3\x77\x64\x2d\x43\x7f\xe9\x48\xff\x2d\xc6\x63\x8c\xa2\x9c\xdb\xd0\x13\xe9\xf3\x56\x7c\xcd\x88\xbe\x93\x64\x6e\x0b\x94\x34\x26\xdc\x33\xdd\x3c\x7d\xd0\x2e\x84\x76\xb9\x5c\x10\x5f\xc9\x14\x62\x3e\xe6\x8c\x40\xb8\x87\x92\x5e\xfd\x11\xa3\xc1\xca\xad\x9d\x62\x6a\xbc\xa4\xa6\x86\x2a\xe1\xeb\x38\x91\x1b\x96\x47\xa3\x80\x18\x2d\x02\xb8\x60\xb1\x0c\x47\x4a\x8e\xda\xaa\x47\xe5\x5b\x4d\x71\x63\x58\x5b\xc5\x18\xa4\x9d\x60\x14\x0c\x9e\xd0\x6b\x0f\xd9\x3c\xc3\x7a\xb2\x71\x96\xc4\x32\xd5\x57\xbf\xfd\x82\x3e\xa8\xa2\xe0\x3c\x5e\x9c\x52\x45\x27\x0b\x1a\xb0\xa9\xa9\xc8\xd9\x71\x49\xde\x4e\xdf\x55\xbb\x20\x37\x91\x30\xe0\x71\x09\xbb\xd7\xec\x00\xb0\x79\x20\x47\xdb\xcb\xe0\x45\x62\x10\xce\x93\xab\x5c\x6c\x74\xb7\xe1\xe2\xa8\x52\xfa\x5c\xf4\x55\x8b\x13\xb9\x4c\xe8\x1a\xd8\x37\x2e\x88\x4c\x42\x48\x74\xea\x85\x36\x55\xc1\x2a\xc7\x79\x4a\x1e\xe6\xcc\x87\xa9\xe4\x3f\x36\xa9\x8a\x04\x63\x21\x0c\xb8\xc6\x1e\x2b\xe6\xac\xc4\x0b\x62\xbd\x1d\x5b\xe1\xcb\xa0\xd1\x02\xb9\x42\x68\x99\xdc\xb0\xa4\x5a\xcd\xab\xc7\xa0\x2b\x2a\x42\x7d\xfe\x22\x90\x6b\xe0\xbf\xf2\xd5\x83\xc2\x0f\x2d\x82\x98\x5f\xd3\x5c\x4c\xd8\x94\xcc\x54\xca\xfd\xf5\x27\xdd\x84\x0d\x84\x4c\xf2\x48\x79\xcd\x45\x15\xfb\xcd\x77\xe1\x1c\xc1\xf3\x2c\xcd\x68\x14\x79\x15\xad\x5a\x0e\x09\x21\xae\x6e\x3c\x1e\xbf\xd8\x31\x26\x4c\x5f\x36\xbc\xe8\x1f\x45\x9c\xf0\x0d\x8f\xd8\xb2\x1f\x52\xf2\x74\x3b\x20\x7c\x61\x0b\x6b\x1e\xd8\x6b\xc3\x8c\x1f\xfe\xad\x7e\xc7\xd1\x38\x73\xda\x7f\x9e\xc7\x8b\xcf\xe6\x9d\x79\x89\x47\xba\x4d\x03\x15\xb9\xaf\xd1\xed\x0e\x89\x60\xe5\x42\xdf\x45\x7b\x7d\x98\x48\x4d\xbd\x01\xaa\x4a\x6d\x7d\xa3\x67\xa9\xe6\x8a\x03\xe4\x62\x31\x1d\x81\xb9\x49\xfb\xfb\x29\x22\x53\x1a\xe3\x11\x9b\x46\x5c\xa4\x5a\x82\x81\x1a\xd4\x44\xde\x79\xf5\x88\xf5\x97\xa1\x4f\x91\x99\xea\x4c\xc5\x04\x5f\x5c\x79\x74\x1e\x2f\x76\xa0\x21\x67\xf6\x58\x8a\x23\x32\x27\x04\x4c\x8b\x2d\xb7\xa0\x57\xaf\x39\xe4\x38\xa2\xc2\xaf\x5b\xfb\x52\x76\x44\x2f\xfb\x5e\xdd\x48\x5b\xfe\x4e\x0a\xb1\xa6\x49\x37\x5f\xa2\xf7\xe0\xe9\x57\xa2\x7b\x05\x91\xa3\xbe\xa5\x7f\xf5\x7a\xce\xf5\x4b\x4b\x6e\xf3\x9c\xad\x29\x53\x04\x65\x6e\x4b\x0d\xf0\x15\x53\x41\x98\xad\x8a\x86\x22\x51\x03\x66\xa3\x26\xdb\xae\x41\x02\x63\xbc\x87\x30\x87\x89\x6c\xcd\x6c\x02\x54\xbd\x32\xc8\xd5\x1a\x23\x97\x49\xe4\xa2\x11\xf9\x14\x0b\x82\x7a\x1b\xa0\x5e\x0b\x9d\xba\x83\x48\x44\x6d\xf2\x57\xa3\x0c\x6d\x50\x8c\xe9\x1b\x18\x27\xb6\x04\xc2\xd5\xf4\x1d\x01\x66\xce\xbd\x80\x2f\x9b\x8f\xb1\xc1\x07\x19\x8f\x11\x00\x64\x4e\xe4\x43\x8f\x28\x58\x73\x8a\xd5\x6e\x0d\x87\xa8\xb7\xe6\x9c\x8c\x6f\x6f\x2e\xca\x2d\xa5\xbf\x82\x54\xf6\x06\x2f\x3f\x37\x69\xf6\x2d\xc2\x76\x4a\x39\x7a\xcb\x84\x68\x88\x1b\xdd\xa4\xe6\xd4\xa5\xcd\x18\x9c\xb3\xe9\x1a\x7b\x2f\xe0\xee\x28\x49\x66\x7b\x37\x99\x10\x2c\x9a\xed\x61\x86\xea\xb9\x54\xde\x4c\xcd\x46\x76\x86\x15\x24\x2c\x8d\xa5\xd0\x6f\xce\x10\x15\x9e\x12\x05\xa3\xe0\x84\x95\x34\xc5\x30\x9f\x17\x41\xda\x25\x9c\x5e\x5f\x69\x4e\x1a\xfb\xe1\x3c\xbe\xa1\xe7\x99\x32\x6d\xca\xf3\x7b\xaf\x4d\x8a\xea\xf6\x90\x27\x2c\x50\xd1\xd6\x9b\x40\x59\xaf\x4c\xd8\xf9\xcd\xf9\x15\x4d\xbc\xe4\x0a\xd2\x52\xc7\x31\xa3\x49\xea\x16\x7a\x99\x4c\xad\x90\xcc\xb1\x10\x1e\xb4\xfc\xde\xaa\x9d\x80\x87\x6c\x78\xd7\x31\x4b\xd6\x3c\x4d\xf9\x86\x91\xf3\xd7\x0e\x47\x51\xdc\x6f\x3c\xa1\x5d\xab\x55\xcf\xe3\x85\xe6\x3f\xa7\x89\xbc\xdf\x9e\x19\x25\xc9\x75\xa4\xaf\x54\x4f\xc4\xfb\x76\xfa\xae\x7d\x00\xff\xc5\xf7\x73\x65\x0e\xd7\xbe\x9f\x12\xb6\x9e\xb3\x50\x5f\xcf\xdb\x6c\xce\x46\xb1\x9e\xc1\x28\x94\x53\x52\x9e\xaa\x59\xb7\xde\x85\xa7\xf3\xb5\x4f\x62\xa5\x97\x9b\x9e\xe8\x86\x59\xbc\x03\xd9\xe9\x18\xa2\x44\x8e\x10\x16\xbe\xcd\x23\x78\x1c\x72\x15\x27\x12\xd3\xf3\x44\x5b\x12\xe8\x11\x49\x86\x25\x8d\xb2\x38\x55\x09\xa3\x6b\x57\x70\x28\x20\xb4\xbf\xef\x4f\xcb\x6e\xd6\x46\x82\x15\xe5\x20\x0f\x5c\x23\x63\x66\xcb\x2d\xe6\x2b\x5c\xb8\xe0\x36\x29\xbf\x4d\x5a\xab\xa7\x92\x05\x72\x08\x7e\xe0\xe2\x7a\x2b\x02\x0c\xc6\xdf\x09\xf6\xa5\x9e\x07\x0d\xc8\x56\xf9\x65\x3b\x53\xbc\x1e\xdc\x04\xf3\x24\xf3\xa8\xef\xcb\xf5\xb6\x39\xc3\x50\x28\xa8\xf7\x9d\x2b\xea\x1b\xb6\x00\xe3\x98\x90\x73\x79\xc7\x12\xab\x29\x5b\xea\x67\x9c\xb0\x30\x0b\xb0\xc6\xfb\x28\x8b\x41\x31\x2c\x02\xdd\xf4\x07\xbe\x5c\xe5\x6d\xfd\x58\x56\xf7\xb4\x8a\xf5\xe9\x47\x92\xa5\x74\xc9\x20\x6a\x4f\x73\xd8\x60\x9c\x8a\xc9\x5a\x26\x88\xce\x4b\x58\xe2\x55\xfa\x00\x0c\x71\x2e\x97\xe7\x6c\xc3\x7c\x25\x38\x6a\x27\x62\xdb\x96\xa0\x0e\xb5\xf9\x23\xf8\xda\xc6\xd5\x39\x2c\x64\x03\x2e\xc8\xe5\xfd\x02\xf6\x6b\x44\xc7\x97\x56\xc5\x72\xb9\x58\xa0\x72\x65\x22\x16\x52\xff\x0b\x75\x2b\x5a\x88\x9d\xed\x35\x0b\xf3\x91\x5c\x62\x09\x54\xb6\xe6\x4a\x15\xe4\x48\x4f\xa6\x12\x1a\x30\x12\xf3\x98\x1d\xd8\xfc\x5d\x9a\x29\x07\xc6\x16\xf5\x07\xeb\x75\x43\x05\xec\xd9\x9e\x0a\x08\xbb\x67\x81\x86\x19\x8a\xd2\x25\xfd\x0e\xb9\x5c\x2c\x7e\x1e\xef\x08\x7e\x78\xaf\x13\x60\xca\x7b\x71\x1f\x27\xe5\xf6\x4d\x3a\x91\x95\x94\xb7\xae\xd0\xd2\x80\x36\x94\x8c\x47\x78\x6e\x15\x04\xa2\x6f\x1b\x8a\x0a\xfa\xba\x19\x5d\xa0\x49\x91\xa7\x64\x6c\x8e\xd9\x2b\x27\xeb\xfe\xfa\xa0\xe6\x5b\xa0\x91\x22\xac\x8f\x30\x97\x4a\xc9\xf5\xd8\x0a\x23\xc6\x6f\x3d\xa5\x0b\x66\x8b\x12\x78\x39\x05\x9b\x09\x22\x4e\xd8\x06\x1c\x6c\x0a\x51\x47\x8f\x6e\xf8\x5e\x34\xdf\xce\xb7\x31\x4d\x53\x53\x49\x7b\x2b\x33\x92\xde\x71\xe5\xaf\x3f\xa1\xa4\x59\xa8\xc1\x27\x73\x46\x52\x4c\xf3\x6f\x96\x8b\xc5\x70\x70\x0a\x5b\x05\x0b\xa1\x84\x29\xe5\xbc\x0c\x18\x10\x32\x50\xe6\xcc\xb7\x5a\xce\x88\xd0\x00\x92\xc8\x6c\xb9\xaa\x38\xde\xc2\xc8\x07\x38\xcd\x9d\x29\xec\xed\x1b\xd3\x34\x8f\x65\xc4\x83\x2d\x52\x91\x39\x73\x76\x5a\xdc\x44\x04\xec\xae\xa8\x20\x7f\x88\xa7\x09\xdf\x78\x2b\x05\xb6\xa7\x87\x9e\x67\x4b\x23\x52\x9f\xcb\xe5\x69\x22\xe3\x98\x8b\x65\xe3\x28\x0d\xf4\x02\x86\xf9\xc0\xd6\x32\xd9\x4e\x13\xb9\xe0\x11\x9b\x52\xb5\x7a\xc8\x5a\xae\xf9\x1a\x34\xd5\x27\x34\x0a\xde\x27\x34\x5e\xfd\x40\xc5\xf2\x78\xa1\x1e\xb6\x33\x3b\xda\xa9\x05\xd2\xc3\x47\x83\x43\xb2\x1c\xce\x8d\xfc\x41\xa6\xea\x38\x68\x70\x9c\x2a\xbf\xfe\xd3\xe6\xbe\x2e\x26\x00\xd5\x8f\xbe\xd2\x69\x83\xc8\x97\x2b\x82\x74\xd3\xa5\xb4\x4f\x87\x16\x9a\x9b\xc2\xa2\x26\x0b\x61\x8d\xab\x94\x45\x0b\xf2\x9c\x2e\x1a\x52\x64\x02\x7a\x30\x63\xaf\xb8\x51\x9b\xe4\x43\x31\x64\x8a\xf1\xfe\xbe\x18\x93\xb7\xdb\xbc\x06\x09\x5e\x6d\xdf\x90\xa6\x7a\xb5\xd7\xd8\x90\x0f\x9d\xfa\x96\x09\x38\xdd\x5f\xb9\x29\xc7\x76\xb3\xbd\xd3\xab\xcb\xe9\x6c\x0f\x52\x25\x4a\x91\x63\x8b\x3b\x6a\xaa\x43\x42\x59\xc3\x54\xae\x21\xd6\x87\x46\x51\x9b\xb8\x01\x6b\x73\x01\xa7\x57\x73\x80\x12\x0e\x84\xbe\xd0\x84\xae\x99\x11\xed\xae\xce\x6e\x3e\x5e\x5d\xe8\x51\x8f\x4f\x4e\xce\xa6\x37\x63\xf2\xd1\x5f\xcc\xdf\x34\xe4\xb8\x30\xa8\x2c\xb3\x95\x19\x28\x6f\xca\x38\xc9\xd9\xd4\xe4\x62\xfa\xf1\x66\xb6\x87\x68\xea\xfb\x16\x5c\x02\x48\xc4\xa2\x61\x65\xf1\x68\x15\xd1\x53\x85\x23\x99\x02\x46\xb3\x3d\x5c\x93\xbf\xba\x89\x55\x0d\x98\x13\xa9\x2c\x86\x48\x83\xc4\x57\x34\x85\x3c\x9c\x98\x2c\x3e\x4e\xa4\xcd\xa5\x69\x0f\xd7\x37\xb6\xff\x2a\x01\xe8\x0c\x18\x41\x1e\x13\xb9\x8f\x09\x8d\x22\x2b\x54\xd8\x85\x35\x9e\x5c\x2e\x1b\x13\xb8\xdf\xbe\x35\x35\x2d\xa0\x5d\xcb\xa4\x51\xe1\xce\xb8\x98\x69\xc1\x1f\xdc\x3b\xa7\x89\x54\x32\x90\x9d\xec\x19\xa8\x6d\x5c\x17\x08\xf4\x68\x8a\x4d\x77\x42\x43\xa3\x0b\x30\x8c\xd9\x9a\x85\x66\x1a\x2f\x17\x0a\x8e\xa3\x07\x9a\x7a\xd9\x47\x0a\x97\xd8\x92\x9d\xab\x9b\xe9\xd5\xe5\xcd\xe7\xb7\x97\x97\x37\xc8\xcd\x45\x6c\xa1\xc8\x3c\xa2\xc2\x57\x09\xbd\x55\x11\xe3\xec\xf5\x7a\x97\x52\x42\x37\xa6\xb2\x63\xbd\x00\x8f\x95\xca\xa5\xd8\x65\xb3\x25\x8c\xe4\x19\x14\x9c\xe0\xec\x26\x0f\x48\xc4\xe8\xc6\x78\x35\x78\xe5\x03\x60\xbc\x40\x71\xb6\x92\xd2\xa8\x08\x2a\x23\x3e\xa0\xfa\xa8\x51\x23\x9f\x48\x21\x34\x2f\x7b\x3b\x11\x90\x3e\xab\xc9\x32\xda\x4a\x6b\xed\x6d\xbe\xb2\x11\x95\xa7\x2c\xf2\xba\xcc\xb6\x2d\xa8\x36\x48\xb3\x6c\xdd\xbe\x18\xa3\x54\xbb\x90\x21\x83\xf4\xa3\x5d\xc7\x7f\xe6\x76\x38\x99\x9c\x5e\xe9\x4e\x68\x34\x8a\xf4\xbf\xe4\x02\xaa\xf3\xef\x83\xeb\x82\x1d\x7d\x24\xa4\x18\xa1\xdf\x16\x44\x00\xb6\xd8\x8f\xd6\x74\x6b\xcf\x0b\xb5\x4f\x39\x11\x02\xa5\x25\x96\x20\x65\x8e\xd2\xcb\xfc\xea\x2f\x3b\x68\x5d\xe5\x34\x72\x0d\x8a\x64\x79\xbe\xec\x09\x4f\x90\xdf\x6f\x41\x79\xa4\xf9\xeb\x89\x98\xcb\x4c\x84\x9a\x6d\x98\xca\x44\x75\x3b\x16\xbc\x6b\xe8\x58\x86\xf3\xc7\xd3\xe9\xe1\xcd\xc9\x14\x15\x94\xde\xdd\x8b\x10\x0e\xc3\xd8\x35\x1c\x3d\x08\x52\x58\x9f\x89\x0a\x68\x79\x4e\xe1\x7d\xa3\x4a\x41\x78\x92\xb0\x34\x36\x39\x17\x8b\x52\xa0\x59\xc2\xd5\x36\x27\x0f\x16\x51\x98\x7a\x96\x9a\xae\x6f\x24\xf7\x52\x18\x1a\x04\x90\xd9\x10\x08\x47\x90\x61\x3d\x68\xb9\x58\x10\x8a\xeb\x01\xa6\x42\xaf\x36\x49\x58\xa0\x2a\x7e\x30\xe4\x9d\xdf\x5f\x74\x4e\x83\xdb\x51\xa9\x58\xc9\x81\xf5\x3a\xcd\xb1\xb3\xad\xbe\x56\x54\xe5\xe5\xca\x22\xa3\xa6\x8c\xd6\x5a\x22\x8d\xb5\x0c\x3a\xd1\xeb\xd3\xf0\xf5\x0f\xe3\x00\xda\xe5\xa3\xbc\xfb\x47\xf7\x0f\x8d\x9d\x34\x42\xbc\x29\xec\x56\x14\x38\x05\xb8\x05\x08\x0a\x38\xec\x83\x5c\xfb\xd9\x58\x4f\x4d\x48\x01\x46\x85\x5c\xb8\x33\x1e\x15\xc6\xb8\x90\xa6\x2b\x6b\xba\xd2\xb7\xe4\xf4\x87\x93\x69\xc9\xb0\x14\xc4\x47\xaf\x5f\x7b\xfd\x01\xb2\x30\x3e\x7a\xf3\xed\x01\x34\x79\xf5\xe7\xef\xf0\x1f\xaf\xbf\x2a\xfe\xf5\xed\x4b\xfc\xd7\x9b\xaf\xbf\xfe\xca\xfc\xeb\xcd\x9b\x37\xf9\xbf\xfe\xec\x23\xca\xcd\x8f\xaf\x9c\x07\x40\x9f\x9b\x7e\x09\x18\xcb\xbc\x9e\x3b\x61\x0c\xf6\x4c\x0f\x00\x44\x07\xf9\xe5\x6f\xf0\x0d\x9e\xe6\x04\x5a\x84\x58\x10\xd2\xfa\x9a\x14\x95\x02\xbd\x8c\x56\x97\x2f\xbc\x60\x7e\x3d\x1e\xe9\xe5\x8a\xac\x57\xd2\xd1\xbd\x25\xb9\x0b\xc9\xa1\xf0\xe0\x25\xb4\x16\x57\x1d\x35\x96\x2b\x1d\xe5\x33\x37\x63\xd0\xf6\x54\x4d\xad\x18\xf4\x32\x53\x0f\x44\xa1\xb5\x9e\x8f\x8c\x43\x65\xa6\x96\xd2\xc5\xa1\xc0\xd5\x76\x63\x51\x25\x07\x2c\xfa\x9b\x62\x51\x69\x2e\xc2\xe3\xa0\x51\x09\x72\x3e\x53\x41\xb8\xbf\x0f\xd9\x47\x44\x48\x93\xd0\xd8\x0a\x95\x34\x0e\x05\x8d\x95\xb0\xf0\x1a\x85\x92\xe1\x96\x97\x4c\xe9\x03\x83\xc3\x42\x79\x56\x05\x61\xc9\xf5\x44\x03\x40\x1f\xa7\x46\xd4\xa4\x41\x55\x7a\x7a\x71\x5d\xc5\xe1\xbb\x20\x68\xef\x41\x19\x9c\x7d\x00\x68\xff\x9b\xaf\xf0\xbf\x03\x0e\x1f\x70\xb8\xf7\x57\x3f\x0e\x67\x54\x65\x09\x3b\x65\x8a\x05\xea\x72\xc3\x92\x84\x77\xab\xdc\xdf\xf9\x3a\xe5\x25\x49\x94\x04\xe7\xac\xc4\x1a\xef\xcd\x14\xfe\xbb\xa7\x98\xd1\x32\xfd\x88\x86\x22\x9a\x38\xf7\x83\x70\x41\x28\xda\x1f\x48\xca\x62\x8a\x85\x6c\x81\x3a\x00\xba\x14\x5e\xf5\x18\xd4\xdb\x4f\x0f\x08\xbb\xa7\xeb\x38\x62\xdf\x93\xd9\xde\xf5\xc5\xf1\xcd\xbb\x2c\x8a\xb6\x57\x54\x84\x72\xfd\x17\x95\x64\xec\xe0\xc3\xf1\xf5\xff\x74\xbf\x04\xcf\x97\x83\x2b\x06\xb1\x37\xd7\x59\x0c\xe8\xe2\x5c\x06\xb7\x7f\x99\xed\x79\x6f\xea\x6c\x0f\xa2\x7f\x8c\x7f\x2b\x74\x9f\xed\x21\x4e\x5c\xc8\x24\x28\xed\xfe\x00\xeb\x3e\xeb\xa6\xd2\x98\x60\x9a\xcd\x5d\x1a\x08\x34\x53\x72\x84\xf0\xd9\x59\x20\x86\xa2\xbf\x3c\xf8\xdb\xe9\xb4\xaf\x51\xf7\x7d\xb5\x87\xb1\x8e\xa6\xc4\xfc\x42\xfe\x76\x3a\x25\xa9\xb4\x76\x78\x12\xd0\xc4\xef\xd8\x0c\x84\x38\x94\x62\x7f\x5f\x91\x14\x81\x08\x7d\xe5\x62\x01\xea\x22\x99\x90\x10\x74\xe9\x60\x5a\x00\x4f\x2d\x40\xf4\x7f\x3b\x9d\x22\x3d\xf5\x2a\x27\x8d\x51\x96\xe9\xbb\xc0\x44\xc8\xc2\xc2\xf4\xa1\xf1\x34\xcc\x16\x27\x72\xa3\xef\xdc\x9c\x29\xd0\x55\x15\xce\xa3\x0d\xeb\x14\xb9\x7e\x70\xfc\xc5\x0e\x50\x2b\x46\x23\xb5\x7a\xa0\x9c\x8f\x9d\x35\x13\xb4\xa3\xa2\x01\x3b\x4e\xfd\x28\xad\x15\x99\xe5\x6e\x88\x67\xf7\x41\x94\xf5\xb0\xb2\x4d\x2a\x1d\x90\x53\x83\xb7\x39\xaa\xbc\x4d\xc8\xd6\xdf\xe9\x89\x59\x72\x40\x65\x66\x50\x50\x9b\x99\x8a\x03\xb6\xa4\x65\x99\x5d\x1b\x37\x99\x38\xcb\x2c\x40\xc9\x67\xd0\x38\x45\x2f\x85\xd4\x5f\x15\x4e\x04\xfb\xfb\x64\x32\xfd\xf1\x9a\x84\xd9\x7a\xed\xf5\xc2\xcc\xb7\x71\x60\x1d\x68\x0d\x8e\xb3\xe1\x4b\xd1\x96\xcc\xb7\x25\xbb\x77\x59\x5b\xee\xd5\xd8\x9a\xbd\xae\xb3\x48\xf1\x38\x72\x7c\x61\x31\x5e\x8e\x64\x29\xda\x07\xf5\x7f\x22\x66\x23\xa4\xc0\xa8\xcc\xeb\x91\x54\x04\x22\x79\x62\x93\xcb\xa6\xe6\x1a\x9c\x02\xf3\xe8\xfb\x01\xd6\x09\x34\xf9\x2e\xa1\x71\x93\xed\x02\xc1\x09\xe8\x76\x7f\xff\x70\x7f\x1f\x87\x33\xb8\x95\xac\x50\xdf\x67\xac\xfc\xfb\xfb\x87\xff\x4b\xc3\xe2\xf0\x60\xc3\xd4\xea\xd5\xbe\xe7\x11\x99\x70\x0a\x0b\x03\x94\xa0\x73\x8f\x58\x38\xad\x39\x5b\x72\x61\x67\xd4\xc3\xed\xef\x9b\x9a\x12\xa9\x6c\xd2\x2c\x16\x20\xdc\xdf\x37\x73\xbb\x6f\x1a\x0e\x88\xc7\x9b\xb4\xc5\x25\xce\xff\xc2\xf2\x81\xa7\x09\x5b\xf0\xfb\xfe\xcf\x04\xdb\x5b\x5d\x6c\xf9\x88\x49\x8c\x3f\xa2\xbf\x62\x5e\x35\xc2\x0b\xad\xba\x5d\x07\xbc\x93\x81\x7d\xd6\x32\x44\xc6\xd3\x15\x2a\xb7\xd7\x1e\xe9\xa6\x15\x56\xe9\x98\x5c\x48\x05\x38\x82\x30\xb1\xe1\x89\x14\x6b\x30\x22\x4b\x93\x9b\x8c\x0a\x32\xd7\xb4\x68\xcd\x14\x8d\xf0\x06\xca\x24\x58\xb1\x54\x25\x54\x49\x7f\x52\x3d\xb7\x26\xbc\x46\x11\xb1\xe6\xe7\x12\x4e\x15\x8b\xb6\xe5\xbb\x23\xb3\xc4\x75\xe8\x01\x4d\x87\x0c\x6e\x1b\x2a\xcd\x69\x34\x66\x42\x3d\x8d\xf9\x48\x9f\x75\x40\x23\xbe\xbf\xef\x06\x11\xea\x51\x2f\x63\x26\xae\x15\x0d\x6e\xdd\x6e\xde\x77\x63\xfd\x98\xf7\xf7\x15\x8d\xed\x40\xee\xcd\xd1\x13\x3c\xf8\xce\x5c\x61\x85\x0b\xb8\x13\x1b\xda\x69\xad\x98\x34\xf4\x6b\x2a\xce\xd1\x18\xb1\x94\xb0\x34\xa0\x22\x35\x4e\xac\xee\xfb\x92\x64\xc3\x12\xbe\xd8\x1a\x6f\x67\xcc\x85\x07\x12\x14\xf6\x01\x72\xec\xd7\xd6\x5a\x97\x6e\x8d\xf0\x52\xa6\xf2\xe8\x45\x6e\x57\xa9\x24\x79\xb9\x23\xa3\xc2\x63\xde\xe2\x77\xd6\x4a\x33\x75\xd7\x0f\x37\x1f\xbb\x1f\xe4\x74\x32\xfd\x70\xf3\xd1\xc2\x50\xff\x13\xbc\x48\x95\xcd\xf3\x61\x14\xd9\x68\x09\x19\x93\x6b\xe6\x77\x34\x30\xd7\x5a\xef\x5a\x8f\xe1\xf8\x17\x7d\xfd\xf5\xee\x8e\xb6\x3c\xd6\x57\x6f\xc7\xfb\xb1\x3f\xf1\xf5\x6a\xbd\x1d\x24\x61\x18\xe4\xe5\xe7\x33\x23\xc7\xcb\x05\xd3\x37\x96\xa5\x63\x22\xa4\x41\x06\xc6\xf2\x07\x36\x4a\x57\x95\xe1\xd5\x4a\x24\xf2\x36\x4f\x33\x97\xbb\xa2\xf8\xab\xc2\xe4\xd3\xdb\x6a\x30\xed\xfe\x76\xdf\xbd\xdc\xd9\x9b\xcb\xce\xf0\x96\x06\xb7\xac\x16\xb1\x5b\x03\xf2\xa4\xdc\x3c\x17\x46\x6c\x71\xc1\xb9\xf9\x5e\x33\x39\x76\xed\x9a\xa4\x79\x01\xc1\xd0\x9c\x55\x52\x51\x80\xc9\x6c\x49\xbd\x26\xd2\x3e\xfb\x78\xc7\x23\xc5\x12\x88\x6e\x6c\x74\x91\xe8\x33\x8e\x96\x6c\xde\x35\xfb\x92\x54\x6f\x5e\xbd\x93\xbd\x78\x1a\xcb\xb8\xe9\x6a\xec\x04\x3e\x88\x40\xb1\xf3\x05\x8f\xd8\x98\xfc\xa7\xe6\x3e\xe8\x16\x82\x83\xd0\x24\x48\xc5\xd2\x50\x0d\xa3\xc3\xca\x5b\x5b\x01\xc0\x9f\x81\x90\x2b\x47\xc9\x93\xaf\xe6\xf9\xc2\xa1\x35\xae\xab\xc0\x9a\xc6\x31\xc3\x60\x33\xa1\x64\xee\xd9\xd8\x40\xcc\x14\xe5\x82\x25\xfa\x59\x51\x12\xf2\xc5\x82\x25\x4c\x28\x12\x53\xb5\x7a\xe1\xd2\x89\xc3\x24\x13\x87\xf7\x46\x9a\xd0\xeb\x7e\xe8\x35\xd5\x10\x9e\x26\x72\xce\x76\xc0\x0a\x0d\x3d\xed\x01\x81\x97\x67\x45\x41\xea\xe5\x35\xb0\xb6\x27\x7a\x83\x52\xa5\xb4\xc4\x0a\x34\x83\x06\xa0\xb2\x28\xbb\x54\xc0\xe1\xf0\x85\x09\xa5\x13\xd2\xcb\x6b\xd0\x0d\xe5\x90\xcd\x71\x5c\xf6\x07\x5d\xd3\x5b\xeb\xce\x09\x5e\x9b\xc6\x75\x9d\x6f\x8c\x08\x60\x4f\xbf\x41\x18\xd4\xe7\x02\x62\xe0\x01\x38\xbf\x6b\xf9\x11\x86\x39\x99\x7e\x74\x0f\xe5\x9b\x97\xeb\x07\xa3\x0b\x0d\xcd\x1b\xbe\x66\x32\xeb\xb4\xba\x96\x4e\xc0\xf4\x69\x83\x3d\x00\xda\xb7\x33\x1b\x4b\x59\x82\x31\xb8\x78\xbe\x3c\x70\x90\x26\x68\x4f\x51\x39\xca\xd3\x42\xc1\xd0\xc8\x0e\x00\x8f\x9f\xae\xa8\xf7\x04\xe1\x79\xa1\x5f\x50\x14\x95\x91\xbd\x61\xc8\xfd\x94\x43\xf3\xe2\xfa\x10\xed\x49\x8d\xc9\x27\x7d\x70\xc6\x6f\xba\x88\x43\xd5\x12\x39\x2d\x1e\xd2\x81\x37\xbf\x01\x29\xf4\x62\x08\x36\xfd\x9c\x4c\x8c\x82\x4c\xb6\x16\xb3\x38\x31\xa6\x6b\x99\x99\x9c\xa4\xc6\xa9\xc6\x29\x41\xe7\xb5\x8b\x26\xb6\xc5\xc2\x46\xeb\xe3\x82\x4a\x01\x33\x69\xce\xe5\x3c\xf4\xda\x7c\xa0\x5a\x66\xfb\x72\xec\xfc\x81\x26\xb7\x1f\x68\xda\x1d\x41\x35\xa9\x74\xb0\x17\x6f\xad\xff\xed\x0a\xda\x50\x86\x2f\xd5\xc8\xd2\x07\x9f\xc9\xf4\x06\x2f\x85\x1e\x87\xcc\x35\x4a\x85\xa4\x45\xd6\x69\x7e\xae\x4f\xf1\xab\xd7\xfa\x17\xb2\x62\xf7\x34\x64\x01\x5f\x17\x45\x11\xf4\x05\xf2\xde\x13\x45\x22\x46\x53\x45\xbe\xc5\x31\x53\xa6\x0e\x40\x6d\xaf\x8f\x14\x09\x6a\x10\xd1\x74\x65\x3d\xd3\xb6\xe6\x06\xae\xed\x2a\xfc\xb2\x80\xf5\x64\x01\xa3\xcc\x36\x55\x6c\x5d\x3a\xc6\xfb\xc5\xe2\x25\x7c\x7c\xa7\xf8\xf0\x3a\x71\xc5\xe9\x5c\x1c\xdf\x5c\x1a\xd3\x52\xce\xb4\x23\x5d\x7e\xe0\x71\x4f\x65\xaa\x3e\x25\x5c\x31\x70\x5a\xd9\x19\xf5\xfb\xbb\x57\x39\x43\x70\xe1\x6a\xc4\x12\x9a\xb3\x0b\xf5\xc9\x50\x72\xa7\x87\xaa\xc7\x01\xe4\xa5\xa0\x83\x15\x0b\xd1\x2b\x0e\x02\xea\x12\x4a\x12\xe6\xf7\x4e\x9b\xa3\x10\x96\x87\x11\x63\x90\x1a\x46\xc4\xc2\x24\x77\x14\x29\x7b\x10\xc9\xf9\x9c\x25\x28\x5e\x50\x51\xc2\x43\x5e\xe5\x2b\x98\xde\x52\x27\xa2\x43\x06\x41\x96\x68\x82\x64\x7b\xd3\x38\x8e\x6c\xc1\xcd\xd2\x5d\xc9\x55\x86\x0d\xb2\x53\xcc\x02\x55\xc7\x94\xe3\x2f\x8a\x29\xb0\x43\xed\xce\xf2\x7b\xfb\x3d\x40\x24\x34\x72\x80\x0d\xcb\x02\xd1\xd7\xb8\x49\x3a\x47\xdc\xce\xfe\x37\xdd\x9b\x92\x71\x73\x17\xf6\xdf\x9f\x39\x0e\xd6\x96\x0b\x04\xa8\xa3\x50\x0e\x0b\x9d\xd7\x1d\x45\xe5\x94\xe6\xa8\x81\xb9\x00\x8d\x45\x83\x86\xc8\x78\xac\xe3\xa0\xb9\xd0\x9a\x82\xfd\x0e\xb4\x2c\x34\x01\x03\x24\x96\x66\x3d\xe7\x22\xbb\xb7\xfe\x6a\xf3\x6c\xd9\x48\x08\xf5\xfd\x5d\xf0\x7b\xb4\x55\x98\xf6\xb6\x96\xfe\xd7\xe3\x57\xaf\x72\x85\xa0\xa6\xbe\xa8\xd8\xdb\xe8\xef\x35\x41\x5a\x26\x8c\x36\x78\x0d\x6f\x0d\x73\x6c\x9d\x6e\x73\x87\x59\x25\x0f\x08\x25\x2b\x27\x60\x06\x43\x19\xcb\xf1\x31\xbe\x21\x21\x64\xa6\x74\x89\x1f\x22\x4b\x6d\xde\x18\xcb\xc8\xae\xf2\xfa\x6d\x36\x67\x50\xad\x41\x26\xea\x4a\x73\xfa\xdd\x5e\x02\x7f\xad\x75\x31\x55\x9f\xac\x96\x19\x8c\x0b\x09\xfe\xd2\x96\x9c\xce\xc4\x8c\x92\x22\x62\x74\x4c\x2e\x35\xce\x40\x5d\xee\x02\x93\x85\x19\x6b\x94\x1b\x5a\x66\xd9\x99\x06\x2a\xc4\xe3\x4d\x6a\x22\x74\x10\xf4\x19\xf2\x4c\x2c\x65\x76\x59\x70\x76\xa8\x1d\x2f\xa2\x7b\xdb\xfc\x79\x8d\x1d\xdd\x3d\xa8\xaf\x34\x29\x3b\xfa\xea\xf5\x9f\xdf\xfc\xd9\x1b\x4c\xd3\x6c\xdb\xa5\x62\x7b\xb9\x68\x30\x34\x76\xda\x3a\x47\x9d\xa6\xcc\xd8\x24\xb2\x20\xff\x6b\xfc\x3f\x7c\xbf\xdf\x8f\x6e\x73\xfd\xde\x88\x0b\x35\x92\xc9\x08\x47\x6b\x4f\xee\xee\xb5\x54\x46\x72\xd9\x5b\x5c\x3d\x2f\xda\x5a\x4c\xb9\xc8\xa2\x08\xc4\x36\x4b\xd7\xf0\xc4\x22\xb9\xb4\x98\xc9\xb7\x03\x60\x55\x1c\x7c\x05\xdc\x72\x24\x21\x61\x48\x49\xfc\xdb\xd0\xe4\x30\x92\xcb\x43\x97\xc9\x1c\x47\xd2\x9b\xc4\xa6\x0d\xac\x91\x5c\xf6\xd4\x34\x9f\xdb\x96\x85\x1c\xbe\x2c\x29\x96\x9d\x2b\x09\x32\x55\xa2\x25\xa6\xa6\xa3\x3c\xbf\x7c\x6f\xf1\x74\x59\xf9\x19\xc8\x11\x7a\x89\x3f\x60\x27\xd7\x6c\xc3\x12\xae\xb6\xfa\x2c\xfa\xec\xc7\x6d\xef\xee\x2a\x35\xdf\x13\x3a\x97\x20\x21\x6a\x52\x17\xc9\x65\xa3\xf1\x34\x65\x45\x98\x86\x1e\x00\x35\x0e\xc5\xc6\x26\x62\x21\xbf\x60\x3f\xd7\x41\xc2\x58\x77\x68\xca\x79\xb5\xc7\xa3\xed\x29\x55\xa1\xcc\xd4\x63\xee\x68\xdb\x8d\x8e\xcf\x4b\xcd\x1f\x6f\x2f\xdb\xd4\x79\x84\xe4\x42\x9a\x88\x53\x21\xed\x43\x03\x24\x6a\x5a\xb5\x6a\x07\x1f\x02\x84\x35\xbd\x07\xb5\xea\x35\xff\x87\xef\x8e\xb6\x62\x49\x9b\x79\xee\x38\x0c\x7d\x8c\x7f\x19\x7c\x1f\x9c\xc6\x16\x78\x6e\x09\xa0\x84\x84\x72\x4d\xb9\x40\x0b\x51\x73\x34\xa1\xad\xf0\x01\x21\x28\x54\x10\x2a\x52\xcd\xfb\xfc\xf8\x81\xfc\x3d\x63\x09\x67\x98\xd6\x28\x88\x64\x16\x8e\xb8\xe0\x2a\x5f\x25\x24\xf2\xcb\x4d\x23\x7e\x8f\x22\x28\xe6\x2e\x13\x54\xc7\x84\x79\xc4\xca\x9a\x06\x2b\x2e\x58\x2e\xdd\x0b\xb9\xa1\x23\x1a\x73\xf2\x5c\x26\x50\xec\x63\x9e\x09\x95\x79\x87\xb4\x4d\x47\x76\x19\x2f\xc6\xe4\xb8\x28\x1b\x0a\x08\xf6\x79\x40\x53\xa8\x91\xce\x44\xca\x15\xdf\xb0\x17\x64\xcd\xa8\x68\x56\x3f\x94\x6c\xc7\xe0\x96\xc6\x14\xc9\x62\x10\x20\x2f\x8e\x6f\x30\xb2\xd2\x6a\x53\xec\xc4\x80\xfd\x3b\x6e\xd0\xab\xd7\x7f\x1e\xbf\x1c\xbf\x1c\xbf\xda\xf9\x1a\x99\x49\x1a\x6c\xf1\xfe\xab\x60\x1d\xad\x80\x93\xd7\xff\x36\x7a\x8e\x7c\xc5\x78\xd6\xe8\x17\xd1\x90\xff\x6b\x3d\xe7\xc2\x24\x11\x31\xa5\x7e\xc6\xa5\x9b\xf6\x9c\x2f\x00\x42\xfb\xfb\xfa\x65\xed\xef\xbf\x38\x70\x1c\x75\x1a\x98\x6f\x00\x65\x0e\xc8\x03\xb4\x2b\xbe\x7a\xf3\xdd\xf8\xf5\x37\x5f\x8f\xcd\x7f\x8f\xbe\x05\x46\xde\x9d\xeb\xc8\xdd\x97\x57\x68\x9b\x08\xb2\xd6\x4c\x90\x3e\x6f\x93\xef\xd9\x39\x44\xab\x09\x9e\x33\x5b\x36\xca\x41\x70\xdf\xfe\xf9\xcf\xdf\xb4\x84\x12\x37\xbd\x50\x95\xed\x92\x72\xeb\xc3\xcd\xc7\xdf\x22\xdd\x16\x58\xda\x4a\x52\x31\x8d\x02\x08\xa5\xcc\xd5\x5c\x7e\x7d\xf4\x87\x9b\x8f\xe3\x92\xe4\x5b\x24\x99\x6a\x4b\x30\xf5\x65\xd9\xa4\x04\x55\x56\xd9\xd1\x33\x0a\xc9\x51\x8f\x98\x1e\x8e\x19\x45\xa3\xac\x72\x48\x12\x70\x27\xc6\x5d\xa7\x81\x3d\x31\x41\x27\xfa\x4a\xc2\xb3\xb6\x59\x50\x04\xa1\xee\xfa\x48\x2c\x65\x94\xa7\x01\xea\x88\x46\xca\x53\x8a\x54\x42\x9c\xdc\x48\x24\xb8\x01\xc5\x82\x8d\x1a\x21\x07\xb1\x1f\x87\x96\x12\xc0\xd8\x45\x48\x41\x9e\x73\x70\x58\xb2\x42\x42\xa1\x5e\xf8\x70\x7c\xfd\x3f\x3f\x9e\x5d\x1d\x9f\x9e\x11\x45\x93\x25\x53\x9e\x04\x36\x1d\x27\x94\xcb\x48\x9e\xb3\x69\x92\x02\x3a\x65\x80\x2e\x09\xa0\x7a\xe8\xf9\x22\x9c\xe3\x86\xa8\x3b\xf8\xce\x08\x6c\x69\x7e\x3e\x1a\xc0\x4d\x6a\x70\x74\x18\xa5\x10\x2f\x8d\x17\x24\x84\x03\xce\x3d\xba\x2f\x8e\x6f\x8c\xca\x39\x13\xd6\x1f\xa0\x25\x52\x7e\xce\x56\x74\xc3\x65\x62\x51\xac\xf5\x63\x4b\xd1\x4d\xa0\x31\xee\xac\x5d\xc4\xd9\x55\xc0\x11\x4c\x45\x5c\xb4\xd8\x15\xda\xe0\x0d\x5e\xcd\x7a\xb9\x57\x6c\xd9\x27\x32\xfa\xb2\xdc\xde\x12\x1a\x87\xbd\xd0\xa8\x2d\x47\x67\x9a\x3e\x26\x8a\x6b\x3c\xe4\x15\x07\x11\x83\xcd\x59\x24\xc5\x12\x53\x05\x4f\xf4\xeb\x03\x2f\xa6\x91\x19\x08\x75\x3e\x87\x85\xff\x45\xc8\xe2\x48\x6e\xd7\x4c\xa8\x66\x7e\xc3\xba\x05\x17\xe5\xef\x20\xba\x78\x25\xef\xe0\x26\x40\xc6\x48\x9c\xfc\x39\x24\xe0\x77\x94\x56\x5a\xf6\x8e\xbc\x23\x23\x5f\x82\x62\x58\xb0\x80\x54\xf4\x18\x78\x9d\xbb\xb9\xe8\x17\x09\x63\x07\x72\x1d\x67\x26\xf3\xd1\x0b\x93\x89\x3a\xf3\xfb\x59\x15\xf9\xfc\x7e\x42\xd9\xe8\xe7\xe2\x54\x3e\x1b\x18\x20\x6b\xe3\x6c\x46\xb3\x74\x2c\x53\x89\x14\x63\xfd\xad\x77\xb5\x66\x29\x98\x7c\xa9\x20\x7a\x67\xeb\x58\x6d\x77\x65\x45\x30\x38\x01\x72\xc3\x50\xb5\xea\x29\x4d\x4e\x3d\x9d\x5c\x8f\xde\xf9\xd6\x9c\x01\x64\x3d\x83\x1c\xcf\x01\xf5\xe7\x82\x32\xc9\x18\x90\x84\xa3\xbf\xbd\x4d\xba\x66\x93\x77\x1d\x90\x88\xdf\x32\x72\xec\x68\x68\x23\xba\x65\x49\xbf\xe0\xe1\x87\x41\x25\x91\x6b\xa6\x56\x2c\x4b\xdf\xcb\x0f\x4c\x25\x3c\xe8\x9b\xef\x69\x7f\xda\xd8\xd5\xea\x05\x52\xf2\x5e\x6a\xe6\x18\xac\x7d\x6b\x6c\xe2\x67\xd7\xa2\x08\x1d\x9e\xad\x43\xa1\xbe\x4b\xc5\xf8\x36\x2b\x1d\xc4\x1e\x14\x61\xc6\x07\x88\x01\x53\xe6\xbd\x94\x4a\xa2\xcf\xaa\xe1\x0c\x50\x17\x68\xde\x7a\x5e\xb2\xda\x2c\xca\x14\xbd\x63\xe1\x01\xb6\x6b\x20\xb7\xce\x8a\x34\x4f\xf1\xc5\x59\x0d\x0b\xe0\x3f\x18\xf4\x15\xc0\x5b\xf7\xe4\x0a\xfc\x5a\x60\x6f\xe4\x26\x2e\xac\x6d\x32\xcf\xf5\xa6\xb7\xf4\xe5\x1e\xc0\xb5\x3d\x36\xf8\xf3\x76\x6c\xf0\x07\x99\xe6\x32\x01\xda\x3b\x6d\xce\x95\xa2\xa9\x17\x35\x99\x03\x36\xdb\x34\xfc\xe1\x9c\x8b\x10\x70\x75\xb1\x3b\xf6\x65\xaf\xc7\x2c\xb3\x97\x9c\x53\xdb\x9c\x2b\xf0\xd8\xc0\xae\x47\xdf\xe0\x77\x2f\xbf\x6b\x11\xdf\x1a\x98\x9d\x62\x83\x53\x34\x75\x3c\xf8\xa2\x7a\xfb\x17\x88\xc2\x3a\x52\x0d\x58\xa2\xf6\x82\x12\xb6\x96\x1b\x66\x63\xd8\xaf\x7a\xd5\xf2\xfc\x64\x72\x3c\x61\x3a\x3c\x9b\xd6\x71\xc3\x8c\x3f\x9f\xad\x35\x66\x72\xff\x6e\x58\x93\xa3\xca\x9c\xb1\x52\x62\x04\x4b\xef\xc6\x26\x45\x38\xca\x11\x36\xd9\x03\x86\xbc\xe5\x64\xcd\xb1\x34\x36\x45\xd4\x81\xc3\x04\x0d\xc3\xf2\xba\x8a\x08\x42\x9b\x8c\xce\xc9\x2d\x61\x42\xee\x19\xf5\x0f\x7a\xc7\x70\x2d\x66\xbf\x76\x31\xd1\xd6\x64\xb5\x30\x33\xec\x7c\x06\x26\x65\x41\x6f\x0b\xe5\x55\xb5\x47\xc9\xe7\x59\xff\x5d\x73\x49\x6c\x8c\xe7\x34\x9e\x5c\x2a\x4b\x0b\xc7\x0e\xcd\xe7\x41\x48\x0e\xf8\xc1\x94\xdc\x60\x3e\x18\xce\x51\x48\x31\xfa\x07\x4b\xbc\xea\x0c\xee\xe8\xbc\x1c\x76\x34\x2d\x1b\x58\x76\xb6\x84\xe5\x70\xba\xb9\x39\xef\x0f\xa2\x9b\x9b\x73\xd7\x31\x68\xa4\xe4\x28\xe2\x1b\x96\xfb\xd3\x82\xe4\x83\x08\x62\x74\xd7\x90\x6f\xda\xc0\xc7\x40\xb1\x8c\xf8\x76\xdf\x86\xbe\x24\xbb\xda\xa4\xaf\x3c\x9d\xbe\xc0\x0b\x35\xcf\xcb\xb2\xbb\x3d\x9a\xac\xa8\x5f\xc7\xfc\x50\x7b\x34\xe6\x87\xb1\xa6\xe7\x76\x36\xf4\xa1\xe0\xc6\x84\x2e\xfd\xa0\x8c\x6d\x0b\x69\x22\x35\x45\xc8\x10\xac\x4b\x86\x0e\x3d\xed\x79\x82\xf3\x4a\x74\x63\x32\x22\xb6\x00\xc6\x64\x9a\x1e\xa1\xf2\xc5\x9b\x38\x2a\x90\x22\x55\x49\xe6\xaf\xb7\x65\x71\xd7\xc8\xc0\x74\x32\x3d\xfe\x50\x36\xd0\x8f\x60\x68\xfd\x3d\x9c\x65\x69\x44\xdb\xfd\x21\xa0\x03\x1f\xa5\x26\x35\x87\xa7\x1e\x64\x91\xb3\x9b\x86\x36\xfb\x91\xb1\xed\xe3\x49\x1b\x05\x8c\x7e\x77\x1b\x9a\x70\xe9\x67\x3d\x9c\xca\x00\x57\xe5\x65\x54\x14\x1d\x50\x41\x8d\x95\x8b\xdc\x91\x66\x6f\x58\x37\xcd\xbd\xe1\x67\xb2\xf4\x01\xb5\xa4\xd7\xd4\x27\xe0\x91\x3e\x01\xad\x6b\xde\x54\x9b\xb2\xa3\x6b\x6b\x61\xf6\x35\xf5\x38\xa1\x8c\xf4\x64\x4d\x87\xee\x0f\x5d\x35\xf2\xe2\xb9\x94\xf1\x14\x33\x1c\xf6\x51\x7c\x7c\x42\x36\x08\x6d\xfe\x60\x62\xd9\x68\xe0\xa5\x0c\xc4\xfe\x82\xd8\x1e\xd8\xb4\x89\x6d\xef\x27\x92\x32\x4e\x9d\xc4\xd3\x64\x32\x35\xec\x04\x4d\x98\x71\x4a\xd6\xa7\x86\x69\xa1\x4c\x86\x3f\x02\x11\x57\x7a\x47\x8d\x96\x73\x93\x11\x0c\xa3\x25\xf3\x38\xf3\xd3\x8b\xe3\x9b\xfd\xfd\xb0\x1a\x54\xf6\x51\x44\xa0\x44\xcd\x13\x43\xdb\xf4\xfa\x7b\x5e\xe5\x07\x17\xd6\xb7\x8e\xa6\x8c\xa4\x59\xb0\xb2\x3b\x34\xdb\x09\xa4\x50\x5c\xa0\xef\xc8\xdc\xa4\x1d\x29\xa5\x4b\xf4\x8d\xfa\x90\x9c\x5d\x29\x0f\x59\x40\x93\xe3\x20\x60\x11\xc3\x38\x9c\xbe\x1c\xf5\x75\x63\xd7\x5c\xf8\x63\xf7\x9a\xdc\xac\x01\xd1\xdb\xa9\x1a\xc8\x41\x3e\xc6\x17\xcb\x79\xe0\x47\xd3\x23\xb3\x53\x79\x37\x1f\x7d\xbd\xf2\x12\xf4\x54\x48\xb1\x5d\xcb\xcc\xe6\xef\xb4\x2e\x44\x5e\xb5\x35\x72\xeb\x6e\xca\xf3\x94\xff\x83\x99\x2c\x66\xe5\x1a\x7c\x63\x72\x2e\x97\x29\xb9\xa3\x89\xe0\x62\xa9\x99\x06\x95\x35\x55\xac\x9c\x6f\x31\xd7\x32\x64\xd6\xb5\x86\x27\x27\x5e\x0b\x32\x4b\x50\xc8\xef\xc9\x17\x3c\xa0\x42\x15\xf9\x30\x36\x59\x24\x58\x42\x31\x05\x85\x6f\xf0\x15\x4d\x91\xc5\x0e\x79\x1a\xc8\x0d\x33\x7a\x31\x55\x54\xa5\x83\xdc\x54\xb8\xf9\xa2\xda\x64\xc7\x8d\x7c\x90\x94\x51\x3e\xbf\x89\xe0\x8a\xd3\xa8\x29\xcb\x57\xdb\x21\xba\x5d\xcb\xb9\x7f\x6d\x7a\xe5\x50\xff\xe4\x97\x36\x16\x32\xa7\xe2\x6b\x7a\xcb\xd0\xce\xa4\x07\xae\x38\xfe\xec\xcc\x62\x54\xb7\xd7\x93\xa7\xab\x6e\xcd\x70\x75\xa5\x6d\xd5\x18\xfa\x66\x35\x31\xee\xc9\xc3\xa3\x7e\xfb\xe6\xeb\x07\x6d\x0a\x83\x1a\x04\x8d\x4e\x7b\x66\x64\x6d\x38\xfd\xcd\x7d\x44\x5b\x50\x50\x77\xdf\x3e\x31\x67\x50\x19\xec\x5f\x2f\xe8\x0c\xd6\xff\x90\x60\x71\xe8\xf8\xe3\xc5\x64\xd7\x7e\x77\x3c\x61\xcb\x8c\x26\x61\x5f\x2c\xf9\xa9\xd2\xa1\x9e\xcb\x39\x6f\xe1\xd0\xf1\x27\xa9\x68\x92\xaf\x3d\x77\xf0\xbe\xa0\xeb\x6e\xae\xfd\x93\xb7\x5b\x85\x4d\x04\x13\x8c\x31\x7e\x36\xb8\x2c\xea\x66\xce\x5e\xed\x60\xee\x53\xba\x5b\x8e\x8d\x11\x62\xc7\xd7\x94\x6f\xed\x9c\xa7\x8a\x69\xca\xd0\x4b\x9b\xf7\xc9\xdb\xad\x92\xf5\xdc\xfe\x84\xaa\xbd\x26\x0b\xdf\x7c\x5b\x6c\xae\x14\xb0\xf3\xea\xdb\xd7\xbb\xdf\xeb\x7c\x3f\x7d\xde\xe6\x27\xa7\x71\x79\xed\xfa\x0b\xf3\x3c\x7d\x90\xf7\xed\xe3\x9a\xb1\xd6\x47\xfa\x25\x9b\xb9\x42\x8e\xed\x2a\x8b\xd8\x34\xe1\x52\xd3\xd9\xfe\x9b\xf3\x74\x2e\x6f\x36\xb6\xdf\x36\x26\x57\x2a\xee\x67\x05\x24\x96\x95\xd4\x62\x74\x49\xfd\xf0\xdd\xce\x9b\xbd\x0f\x7b\x97\x9d\xf0\xa4\x26\xf9\xdb\xe9\xb4\xcc\xda\xe9\xb5\xa6\x19\x57\xa6\xa8\x14\x24\x03\xf5\x5f\xc0\x3c\xb9\x62\xc8\xc4\xb6\xee\xf8\xf8\x20\xc6\xe2\x3e\x8c\x77\xd5\xa4\xfc\xed\x74\xfa\xb8\xd1\xbc\x90\xa5\xe5\x41\x81\xbc\x46\x4d\xe2\x25\x43\xf5\xf2\x59\x32\x31\x35\xe3\x30\x51\x31\xc8\xd8\x7e\x8d\xca\xdf\x4e\xbd\x2e\xfe\xf5\x70\xdf\xdd\xf5\x29\x43\xf9\x6e\x58\x20\x96\xac\x46\xdf\x2f\xe3\xd6\x00\x66\x54\xce\x9e\xa2\x80\xf7\x7b\x98\xe7\x02\xe7\x41\xab\x31\xfe\x5c\x54\xf0\xf6\x34\xa9\x97\xf0\xf6\xae\xd7\x9c\x4e\x5e\xc4\xbb\xde\x08\x26\x7b\xaa\x2a\xde\x43\xd5\xed\xa1\xea\xb6\x7b\x04\x43\xd5\xed\xa7\xac\xba\xdd\x56\x14\x3b\x8e\xa3\xed\xa5\x78\x87\xe5\xda\xba\xc8\xe8\x71\xa9\x35\x2a\x61\x6d\x25\x23\x18\x09\x95\xb1\x45\x61\x00\x6e\xb3\xd4\xfb\x28\x13\xf2\x11\x30\x92\x8d\xc5\xd9\x91\x11\x08\xe5\x85\x54\x37\x9a\xf9\xe8\x5a\xf9\x69\xde\xd2\x59\xb5\x15\x75\xac\x8e\x10\x9c\x8e\xd0\x34\x98\xef\xa3\x41\xeb\xe7\x6c\xcd\xa2\x8a\xa5\x2c\x4a\xac\x18\xd3\x0a\x01\xf9\x79\x3f\x75\xeb\x11\x02\xaf\xc4\xc5\xd2\xab\x4f\x04\x0d\x22\x4d\x8d\xe6\x3c\xb0\x79\xd6\xb1\x60\xde\x4d\x62\xb3\x53\xf9\x20\x4c\xa8\x3f\xf3\x1f\x98\x4c\xf5\xa6\x50\x13\x42\xc5\xd6\x59\x9a\x77\x61\x98\x47\xd2\xc0\xc4\x68\x2c\x1b\xf5\x58\xa5\xf9\x21\x9a\x98\x41\xca\x4e\x63\x23\x9e\x33\x62\x98\xc3\x5d\xcf\x16\x8b\x1c\x74\xa7\xe1\x67\xe8\xdc\x8b\xd5\xae\x20\xdb\x3a\x56\x47\x30\xac\x26\x39\xa3\xc1\x0a\xdd\xd4\x6d\x61\x79\x2f\x94\x6c\x6f\xdc\xb7\xf1\x3f\x0b\x12\xae\x58\xc2\x29\x66\xc5\x72\xfc\xf5\x21\x6d\x98\x01\x9b\xb9\xfa\x3b\xe5\x52\x2f\xed\x61\xb6\x77\x4c\xb4\xfc\xe0\x56\x38\x4f\x8b\x15\xf9\x96\xe2\xe5\x1e\x49\x5e\x48\x84\xbc\x95\x6a\x65\x02\xd1\x65\x32\x9a\xd3\x14\xc0\x63\x74\x88\x53\x73\x5e\xc2\xfd\x0e\xcb\xdd\x78\x61\x03\x3c\x24\x4b\x98\x08\xec\xcd\x1b\x39\x49\x22\x65\xa6\x30\xb4\xd3\xc6\x0a\x9a\x72\x48\x32\x81\x52\x8e\xb6\x1c\x61\xc3\x82\x45\x98\x57\xb3\x70\x00\x0f\x31\x5f\xb3\x99\xc0\xc3\x8b\x25\xc6\x2a\x54\x21\xd1\x60\x92\xd4\x87\x29\xd8\x12\x16\x67\x58\x82\x03\x13\xae\x65\xdd\xf7\x67\xb3\xd9\xde\x85\x54\xfa\x3f\x63\x72\x1c\x45\x26\xf4\xc2\x1d\xdd\x3f\xb2\xa9\x20\x6a\x2a\x4a\xe5\x69\x56\xa9\xe2\x29\xa4\xd1\xc4\x98\x56\xb3\x15\x5b\x86\x79\x4c\x8e\x4d\x86\xb9\x06\xe8\xc2\xe5\xa4\xc2\x5e\x50\x13\xa5\x60\x36\xad\x41\x04\xdb\xd1\x7f\x38\x2a\x5c\x8a\x83\x37\xc3\x15\xa0\xef\x5f\xa2\xc5\x21\xc5\x12\x1b\xca\xa9\x74\x65\x88\xa5\x4d\x99\x17\xf0\xd3\x9d\x24\xd6\xa9\x91\xdf\x38\x4a\x19\x91\x17\x1d\xf2\x07\xed\x39\x3e\x63\x38\xd2\x0f\xb3\x69\x58\x10\xbc\x9d\xf9\x89\xa6\xd2\xca\xef\x12\xd9\x0b\x18\xc4\x54\x93\x86\xb4\xa8\xd7\xe6\xf1\xb5\xb4\xad\xa1\x81\x8b\x6a\x67\xe3\x14\x2f\x63\x63\x50\x5d\x70\x16\x85\x8d\xb1\x3a\xc5\x27\x07\x0c\xcd\x91\x80\x13\x54\x61\x42\x72\x4b\x75\x98\x64\xc2\x97\x1a\x0e\x4d\x18\xc0\x7e\x80\xff\x7a\xae\xaf\x10\x4b\xd6\xd8\x81\x50\xf5\xc2\xb1\x69\x3b\x45\x76\x71\x6e\x3f\xf1\xf0\x80\xac\xa8\xef\x62\x08\xb1\x71\x3b\x87\x8b\x5c\x83\x4d\xfb\xa0\x88\x25\x51\x10\xcf\x41\xa0\x29\x14\x0a\x0c\x61\x9e\xa7\x80\xae\x99\x89\xbd\x51\x2b\xbf\x50\x5e\x7c\x20\xfb\x81\xcf\x8c\x6f\x8d\x94\x0e\x03\x31\x77\x31\x70\x07\x50\xed\xb6\x2d\xbc\x5c\x06\x04\xf1\xe0\x3b\x99\x90\x92\x98\x77\xd0\x48\x03\xec\x07\xb3\xe0\x7a\xae\xd4\x5a\xf3\x03\x69\xe1\x0c\xe8\x5e\xb6\x88\xaf\x79\xe7\x81\x81\x82\x3d\x42\x93\x6b\x23\x4c\xb8\x03\xdf\xfc\x84\x3b\xce\x0c\x1f\x72\x69\x9f\x8d\xdb\xdf\x47\x89\xf5\xf9\x0b\x6f\xea\xcb\xe2\xf3\xdb\x00\xa0\x24\x88\x5f\x6b\xba\x9d\x90\x1f\x64\x9a\x17\x4b\x83\x6d\xb4\x0f\xaa\xf7\xe8\x91\xe7\x0f\x20\xf5\x47\xfb\x59\x76\xac\xd6\xdd\x22\x72\x83\xc0\xb0\xfb\x12\x5e\x06\x89\x4c\x81\xe7\xeb\xfb\x64\x1b\x08\x47\x3e\x77\x27\x01\x20\x18\xac\xd1\x86\x53\xab\xe1\x2f\xcc\x54\x2f\xf0\x22\x46\x2d\x68\xaa\x84\x07\xaa\xb1\x24\x6b\xf1\xb1\x24\x10\x8e\xd0\xc8\x2f\xb2\x09\x2f\xe6\xa8\xaf\x03\xda\x65\xbc\x58\xc4\x9d\x22\xc3\x0e\x89\x77\xd0\x67\x65\xc9\x37\x4c\x68\x21\x55\x6f\xbf\x91\xea\x90\x56\x3e\xd2\x99\xb7\x17\xa4\x5b\xe3\xfe\x8b\x8f\x90\xea\x62\xb7\x33\xc1\x0e\x79\xe4\x4b\x99\xfd\xb2\x3b\xbe\x68\xa8\x80\x56\x7c\xe0\x1c\xff\xe5\x60\xd1\x54\x6a\xa3\xf8\x54\x81\x91\x97\xd8\x68\x81\xc6\xb4\xc9\x37\xb3\xf8\x20\x38\xc8\x35\x64\xe0\x86\x5b\x0a\xd5\x00\x6d\x7e\xfa\x14\x1d\x6d\x4d\x11\x07\x48\xc8\xb3\x6d\x2e\xe1\x51\x7c\x2a\xa9\xdf\x55\x39\x23\x58\x5e\x4e\x00\x39\x2a\x83\xc8\xb5\x80\xd2\x89\x15\x81\x86\xd9\xaa\xee\x27\x53\x9b\xb0\xfd\xe3\xe9\xb4\x21\xb1\xbb\xfd\xf4\x39\xd5\xe6\x14\x1b\xc5\xa7\x47\xb2\x8d\x7a\xe3\xee\x8b\xd2\x9d\x80\xa3\xf8\xec\x9e\x8a\xa3\xf8\xf4\xbd\x90\xbb\x33\x97\x17\x45\xa7\x8e\x6b\xd9\x8f\xbf\x32\x37\x13\xec\x72\xf9\xc0\x88\x85\xd1\x36\x34\x57\x11\x53\x90\xcc\x13\xea\x07\xe0\x5c\xed\x63\xe6\xdc\x52\xeb\x55\xe9\x77\x66\xf1\x6e\x4f\x76\xb6\x57\x14\xc5\xe9\x20\x2b\xdd\xc4\xb6\x07\x59\x01\x9b\x90\x8d\xb5\x7d\xee\x08\x21\x9e\x78\xd4\xea\xb6\x70\x04\x64\x35\x53\x62\x32\xbc\xb9\xa9\x70\x0e\xad\x42\xf9\x26\xcf\xdc\xd4\x3e\x6a\xa9\x14\x90\x79\x3a\x60\x79\x42\x28\xa7\x16\x02\x46\x3b\x6b\xa6\xe9\xe0\x95\x17\x36\xff\x8f\x66\xe0\xfa\x62\xb0\x4e\x0c\x60\x02\x5b\x77\xc1\x60\x1d\x7b\x2f\xd0\x5b\x05\x83\xcd\x10\x87\xcd\x0c\x16\x9b\x21\x1e\x9b\x69\x4c\xd6\xca\xf3\x0c\xb8\x0c\x3e\xbd\x70\x59\xfa\x00\x29\xb9\x5b\x38\x6e\xd5\xf4\x15\x1f\xaf\x70\x4c\x9e\xa7\x8c\x59\x15\x19\xa0\x32\xcc\x6b\x9b\x6e\x85\xa2\xf7\xbe\x88\x7e\xf7\x33\x9b\xb5\xca\xd6\x86\x87\x6c\x92\x9d\xdb\xc7\xb6\x9a\x31\x47\xb4\x96\x49\x5d\x64\xd6\xcf\xed\x42\x2a\xb4\x46\x1f\x35\x24\xf2\x75\x80\x60\xdc\xb5\xad\x39\xab\x83\x2a\x20\x78\x1c\x6a\xd2\x3e\xfa\x9c\x45\xf2\xee\xc5\x41\x79\xc9\x0e\xb0\x11\xaa\xb6\x68\xb2\x2d\xae\xd0\x21\x7c\x80\x32\x0c\xd4\x9c\x37\x2b\x46\xd4\x9d\x84\xbb\x06\xbe\xe0\xf6\x37\x44\x10\x9a\x08\x6d\x8b\x5c\xc2\x1d\x67\x77\x29\xec\xee\x4d\x55\x57\x47\xfd\xca\x1c\x29\xc9\xa4\xe7\x07\xd5\x82\x69\xdf\x4d\x13\xee\x56\x32\x32\x87\x74\x04\x47\x34\x9b\x15\x04\xf9\x2f\x80\x5d\xfe\xb4\xa2\xe9\xf3\xf5\xf6\x73\x44\xe7\x2c\x7a\x01\x78\xc7\x20\xf9\xae\xe7\xec\x78\x38\xeb\x7d\xc3\x25\xc3\xf5\xa1\x43\xc1\xc8\x38\xa4\x44\x2c\xd4\xf3\xf6\xbc\x6f\xae\xc7\x74\x5e\x70\x14\x16\x07\xcb\xb5\x2b\x45\x25\xaa\xd9\x52\xef\x8b\x81\x5b\x6e\xdc\x71\x7d\x53\x7a\x15\x4d\x15\xcf\x8a\x4f\xfb\x7e\xf3\x2d\x75\x6d\xa7\xeb\x91\x0b\xb8\x79\x6c\xb1\x60\x81\x89\xb2\x34\xaa\x84\x08\x50\xab\x09\x5d\x2b\x55\x7e\xee\xb1\x78\x21\xc5\xc8\xc6\x28\xa0\xa5\x16\x63\x50\x8c\x5e\x64\x21\x93\x35\x73\x95\x14\xe0\x88\xdc\x5c\x57\xba\xf8\xc0\x85\xa8\x83\xa6\xa8\xf4\xf2\x18\x42\xbc\xf1\xda\x3f\x0e\x02\x99\x89\x5d\x78\xaf\xeb\x72\xc7\xdf\x8c\x07\xab\xa0\xe5\xf6\x31\x3d\x2a\x4f\x4a\x62\x19\xe6\x89\x9a\x80\xa1\xcb\x51\xb4\x01\x46\x07\xea\xc5\x1d\xb7\xde\xb6\x5e\x4a\x67\x42\xca\xfe\x23\xcd\x9f\xb2\x4c\x00\x35\x70\xbe\x18\xdc\xe4\x21\x20\xef\x1e\xb2\x49\xd3\xec\x01\x7b\x2f\x68\x93\x02\xe2\x1a\x1b\xa7\xc6\x39\x94\xe7\xaa\x4a\xcd\x00\x77\xbc\xfc\x7e\xcc\x1d\xd9\x41\x05\x41\xfa\x72\x4a\xa4\x2f\xb7\x44\xea\xef\xab\x93\x5f\xfa\xf7\x3d\xe9\x92\xac\x54\x68\xdd\x10\xef\x5b\x78\x8e\xc9\xa4\x43\xf2\xd0\x9f\xc2\x0c\x01\xd6\x85\x6b\xd7\xaa\x50\xc8\x22\xca\x24\xd5\x6f\xb4\xc7\x97\x3f\xc7\x17\xa7\xfb\x0d\x7e\xd5\xee\x67\x37\x8d\x56\x53\x75\x42\xfb\xb1\xc9\x41\x76\xe3\xba\xb1\xcf\x17\x73\xdd\xd8\x13\x0d\xc4\x39\xbe\x74\xaa\x13\xd9\x89\x20\x9f\x6f\x51\x04\xb5\x87\x65\xa6\x95\xe9\xae\x5e\xaf\xbe\x5c\xb7\xc7\x9c\x65\xe1\xf7\x3c\x7d\x51\x65\xbf\x4d\x65\x24\xd1\x66\x75\x24\xa0\x2b\x3b\xc4\x02\xa7\x34\x58\xe5\x2b\xd9\x4f\x09\xc6\xa5\x80\xc4\x6c\xe1\x1d\xe4\x0e\x4b\x39\x30\xba\x60\x51\xb6\x6c\xe9\x97\x63\x2f\xeb\x81\xcb\xba\x1f\xd4\x2d\x0a\x1d\x60\xbe\x60\x9a\xfd\xb5\xca\x5e\x99\x54\x69\x37\x2e\x7d\x6a\x22\xad\xc2\x5c\x13\xda\x61\xad\xd4\xf7\x49\x1f\xa0\xbb\x47\xd4\x1b\xe5\x50\x90\xc2\x3a\x12\x18\xc7\x8e\x76\x96\x65\x27\xb2\xb9\x3b\xd5\xf4\x45\x19\x80\x49\xbe\xb8\xc7\xdd\x4f\xdf\xec\xcd\xb1\xc1\x3f\x12\x12\x70\xec\x33\x0f\x60\x08\x74\x37\xcf\xfe\xf0\xfb\xe6\x64\x99\xe5\x0f\x62\x59\xb3\x43\x78\xc9\x11\x5b\x28\xb4\x63\x15\x2e\x4c\xf8\x7a\x7a\x28\x69\x88\xfb\x10\x73\x8f\xa3\xfd\xb4\x58\xd9\x6f\x8a\x41\xbb\xdb\xac\x94\x8a\xfb\xf9\x33\xfc\x70\x73\x33\x2d\xec\xf5\x8d\x4e\x0c\xfa\x96\xe8\xa6\xcd\x4b\xb7\x5e\x8e\x5f\xe6\xbf\xb0\x66\x6a\x25\xc3\x1d\x28\xc3\x07\xec\xf0\xb8\x5c\x3b\x6e\x19\x91\x3a\xee\xdb\x71\xe2\xd4\x63\x62\x55\x0a\x7d\x1f\xbb\x07\x85\x48\x99\x10\x47\xb1\xab\x7d\xce\xc6\xcb\x31\x79\x7f\x76\x73\x40\xa6\x1f\x6f\x0e\x08\x53\xc1\xf8\x05\xf9\x60\xea\x44\x76\xe8\x61\xcc\x18\x9a\xee\x5f\x5e\xed\x6b\x31\x6c\x09\x7e\x84\xff\x5a\x76\xab\x98\xaa\xd5\x0e\xe7\xb8\x3f\xd5\xed\x9f\xe2\x18\xbb\x4e\xb0\x1b\xa3\xb8\x27\x08\xcb\x1c\xe7\x47\x85\xdb\xb4\x67\xd1\xf7\x30\x08\x61\xe3\xe5\x11\x19\x11\x76\x4f\x03\x75\x44\x0e\x17\x52\x42\xdd\x67\xc8\xe0\x46\x0e\xe7\x34\x21\x17\x97\x37\x67\x47\xe8\x80\xc6\x84\x4a\xb6\x64\xdd\xc5\x9e\x5f\x5e\x9c\xff\xa7\xc1\x9c\x5b\xc2\x38\x96\xc6\x20\xb3\x3d\x98\x04\xb5\xc8\xfa\x4f\x9c\xc5\xea\x3a\x1a\xab\xac\x16\x9f\x0d\x8d\x78\x48\x73\x65\x1f\x16\xf6\xd0\xec\x13\x57\xbe\xdc\x0e\xc5\xa7\xcf\x9d\x2b\x5f\x02\x0d\x62\xc8\xe5\x5e\xca\x22\x0a\x80\xb7\x19\xdd\xfb\xd1\xaa\x89\x02\xcf\xed\x39\xb3\x80\x30\x7a\xc4\x85\x4c\xd6\x47\x16\xec\xb3\xec\xe5\xcb\xaf\x02\x3d\x30\xfc\x8b\x1d\xd9\x4c\x3c\x7d\xd4\x5e\x78\xd5\x60\x55\x30\x5c\x04\x25\x9f\xed\x11\x16\x43\x8f\x0c\xbc\xbf\x68\x06\x1c\xa3\xc3\xd5\xa4\x37\xd3\x41\x0c\x00\x1e\x57\x8c\x8c\x9b\xf2\x0f\x3e\x7c\xd0\x7e\xe2\x44\x2f\x84\xd4\x3d\x14\x0f\xd6\x3d\x69\xe6\xe4\xe4\xc3\xb4\xaf\x07\x08\x20\xa3\xe6\xb5\xbb\x58\x8a\xda\x5b\x1f\xc0\x6a\x31\xf0\x5f\x86\x80\xa3\x60\xca\xbc\x62\x44\x63\xf9\x6c\xfc\xb8\xc5\x72\x4a\x3c\xad\xa9\xb6\x97\xdb\xa7\x70\xd1\xdc\xc9\x37\xa1\xe7\x69\x63\x6d\xc1\x9e\xae\x1b\x6d\xde\xb4\xe8\x29\x7b\xdd\x44\xbd\xb5\x1d\xe8\x3c\x70\x26\x52\xb8\x50\x02\xa0\x04\x90\x49\x73\x17\x61\x0d\x72\xd2\x69\x00\x63\xbc\x08\xb8\xa8\x42\xd6\x2e\x17\x56\x45\xc2\x2e\x4a\x14\x0b\x56\x82\x07\xb4\xc3\x2b\x09\xd4\xa2\xa8\xfe\xe7\xeb\x58\xa6\x85\x23\x1d\x96\x8b\xd9\x4f\x8b\x44\xc0\x0b\x9e\xb0\x3b\x1a\xf9\x53\x9a\x16\x1f\xc4\x16\x46\x29\x8b\xe9\x84\x25\x61\xa2\x28\x3a\x0f\x2e\x7a\xdd\x4f\xa3\xd3\x86\x07\xcd\xbe\xfc\x30\xf4\x30\x63\xe2\x26\x93\xe8\x32\x81\xe5\xf9\xe1\xbf\x45\x2f\x6f\xd8\x21\x8c\x75\x16\xac\x24\xb9\x42\xa2\x4d\x9e\xf3\x31\x1b\x93\x98\x8b\x65\xda\x6e\x03\xeb\xb5\xdf\x1e\xc8\x20\xf6\x07\x82\x35\x00\x64\x32\xb5\x01\x61\x5f\xec\x18\x56\x52\x6e\x21\x3f\xee\x42\x79\x6a\x2d\x63\x8d\x50\xe8\x01\x81\x86\x90\x9e\x86\xcd\xd9\x64\xef\x8e\x5b\x6f\x91\x63\xc9\xc9\x3a\x95\x57\x6b\x6a\xdf\xdc\x17\x21\x0d\x50\x46\x60\xfe\xbd\xd6\xeb\x5a\xac\x70\xda\x97\x2a\xf6\x25\x4b\xe5\x88\xa4\x62\x3d\x26\x14\x0d\xad\x76\xb7\xcc\x04\x5c\x93\x98\xf2\xa4\xb9\xbe\x41\xf1\xd1\x22\xab\xa9\xb1\xe6\xc2\x94\xce\x65\xa6\x7a\x10\x92\xc7\x92\x1c\x85\x54\xfa\xf5\xf5\xbb\x19\x17\xd8\xb8\xc3\xa3\x07\x9a\xb4\x7b\xd6\x0d\x04\x63\x20\x18\x7f\x6c\x82\x21\xa4\xb2\x6c\x55\x23\x58\xda\xbd\x6e\x7a\xfa\xdb\xf4\xf3\xb4\xa9\x39\x84\x5a\x96\xaf\xc3\x27\xd4\x34\x6b\x06\x58\xc7\x3b\xee\xe1\xda\xf3\x30\xa7\x9e\xf8\x5f\x15\xb8\xb3\x3d\x17\xb6\x8f\x48\xfb\x6b\x86\x2d\xd0\xf0\xba\x9c\x80\x85\xc9\x18\x6e\x3d\x4f\xda\x34\xf3\xc6\x3b\xd7\x9c\xf3\x19\x84\x1a\x5d\x41\xa4\x9c\x8d\xfa\x42\xb5\xf9\xf3\x39\x0b\x68\x96\x1a\x9f\xb8\x0e\x53\x42\xbe\xc4\x80\x25\x30\x46\xee\x57\xf7\x02\x55\xf1\x36\x6f\x6b\xc9\x4b\xb0\x8b\xc4\xa2\xfb\xe0\x91\xeb\x01\x77\xe0\xfa\xbf\xe1\x1f\x20\xa9\x94\xfe\xda\xbc\x29\xfe\xbe\x3e\xb9\xc1\x5f\x9b\xa7\x31\x23\x9e\x73\xc5\xac\x93\x1d\x14\x6b\x81\x0b\x62\x8d\xb2\x58\xd0\xe2\xd5\xe8\xf5\x37\xdf\xb4\xa8\xfc\x9f\xee\xda\xa7\x4d\x29\x44\xf1\x53\x36\xb4\xe6\x29\x44\x7b\x44\xa5\x35\xd4\x04\x72\x67\x1d\x02\xd2\x86\x80\xb4\x1e\x66\xcf\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\xa6\x1d\x0f\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x35\xed\x64\xc0\x65\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x1a\x7e\x86\x80\xb4\x21\x20\xad\xfa\x19\x02\xd2\x86\x80\xb4\xfc\x33\x04\xa4\x0d\x01\x69\x43\x40\x9a\x77\xd0\x21\x20\xcd\x81\xc5\x10\x90\x36\x04\xa4\x0d\x01\x69\xe5\xcf\x6f\x19\x90\xd6\x52\x42\x92\x90\x91\xc9\xe2\xeb\xfb\xad\x7d\xe0\x16\x3e\xc1\xbc\x8d\x07\xa4\xef\x2e\xbf\xaa\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\xf6\x2f\x6f\xc8\xdf\x3d\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\xc5\x67\x70\x97\x2a\x3e\x83\xbb\xd4\xe0\x2e\xf5\x2f\xe5\x62\x30\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\xe5\x6d\xfc\x07\xc3\x65\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x79\x3e\x83\xbb\xd4\xe0\x2e\x95\x7f\x06\x77\xa9\xc1\x5d\x6a\x70\x97\xf2\x0e\x3a\xb8\x4b\x39\xb0\x18\xdc\xa5\x06\x77\xa9\xc1\x5d\xaa\xfc\x19\xf2\x77\x0f\xf9\xbb\x87\xfc\xdd\xa5\xcf\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\xee\x35\xc3\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\x1e\xd2\xb1\x0e\xe9\x58\x87\xfc\xdd\x43\xfe\xee\x21\x7f\x77\xf3\xfa\x87\xfc\xdd\x03\xc1\x18\x08\xc6\x90\xbf\x7b\xc8\xdf\x5d\xfa\x0c\xf9\xbb\x87\xfc\xdd\x95\xcf\x90\xbf\xbb\x59\x80\x1c\xf2\x77\x0f\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\xe6\x7e\x86\x80\xb4\x21\x20\xed\x5f\x2a\x88\x63\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\xcd\xdb\xf8\x0f\x86\xcb\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\xf3\x7c\x86\x80\xb4\x21\x20\x2d\xff\x0c\x01\x69\x43\x40\xda\x10\x90\xe6\x1d\x74\x08\x48\x73\x60\x31\x04\xa4\x0d\x01\x69\x43\x40\x5a\xf9\xf3\xef\x9d\xbf\xbb\x8f\xdb\x81\xff\xa8\xdb\xb9\x83\x05\x7a\x89\x14\x12\xbb\x6f\xd5\x59\x8a\xb2\x08\xe2\x47\x43\xb6\x31\x09\xb6\x14\x25\x5b\x61\xc3\x96\xfc\xa7\x02\x89\xc6\xbb\xf6\x71\xa9\x1b\xb5\xd0\xa4\xf2\x45\x96\xd8\xda\xbb\x0b\x74\x25\xc4\x5c\xd0\xa0\xfc\xd1\x83\x82\xb5\x34\x1c\xa3\x3e\x28\xd7\x66\xaf\xf8\x52\x0b\xd7\xb3\x3d\x18\x6f\xb6\x07\x2c\x80\x69\xeb\x1b\x9a\x2e\xb4\x50\xa8\x80\xe9\x84\x01\x22\x79\xc7\x12\x5c\x0d\xba\x66\x3a\x8b\x4b\x89\x5c\x73\xa5\x34\x2d\xe1\x36\xaa\xc7\x37\x68\x20\x45\xca\x31\x15\x3b\xea\x2d\x67\x7b\x5c\x2c\xb8\xe0\x8a\xcd\xf6\xc8\x88\x80\x43\xa0\xb3\x1d\x4b\xa9\xcc\x3a\x49\x44\x53\x35\x26\xf9\xce\xbc\x20\xd1\x6b\xe5\x21\x13\x8a\x07\x34\x32\x0b\xac\x8e\xc3\x05\xa1\x51\xbc\xa2\x22\x5b\xb3\xc4\x69\x07\x17\xc0\x37\xaa\xa1\x4f\x46\xc5\x86\x5e\x2f\x5e\x99\x1b\x2f\x87\xc8\xd6\xf3\xba\xf6\x33\x4e\xd8\xe9\xc5\xf1\x4d\xd7\xf5\x98\x62\x33\xc2\x45\xc8\x03\xd4\xec\xe4\x11\x28\x2b\x9b\x5e\xbd\x8c\x55\xc8\x9c\x2d\xa4\x9f\x75\xa3\x62\x4b\xf4\x70\x8d\x6b\x9d\x4b\x19\xb1\xba\x63\x46\x0b\xdf\x5e\xe1\xb2\x6e\x5c\x3d\x19\xde\x6a\x47\x5b\x66\x1f\x5a\xcc\x83\x5b\xfc\x3f\x99\x79\x11\x90\xde\x5b\x45\xeb\xe1\xdc\x04\x13\x2f\xe3\x9c\xa1\x92\x96\xe9\x68\xd6\xdd\x14\xeb\xd0\xbc\x5b\x14\xc9\x3b\x84\x1a\xaa\xf0\x72\xa5\x16\x72\xd6\x7f\x41\xfd\x0e\x3e\xec\xcf\x11\x57\x2c\xa1\xa0\x5a\xf1\x8d\x3c\x9b\x91\x11\xc6\x8b\xe9\x5b\xbd\x8e\x69\xc2\x53\x29\x0e\x08\x04\x8d\x5a\xbd\x8c\x1d\x72\x21\x25\x99\xd3\x04\x94\x45\xf9\x74\x7f\xda\x71\xba\x62\x3e\xcd\x5a\xb1\xbf\x67\x34\xfa\x1e\x5d\x9c\xad\xa8\xc0\x17\x46\x46\xe0\x29\xb4\xb1\xa6\x8f\x7c\x4a\x3f\x12\xf9\x05\xd6\x41\x0b\xc7\xbc\x79\xf1\xcf\x00\xff\x39\x1e\x8f\xc9\xaf\xce\x0a\x54\x92\x31\x1b\xa9\x94\x3b\xfb\xe2\x1c\x7f\x23\xfe\xe0\x02\x63\xf3\xe9\x98\xaa\x58\xab\xde\x00\x17\x3d\x16\xe7\x9b\x6c\xc7\xf5\xc2\x64\x6d\x0b\xf4\x1f\x89\xb3\xe6\x15\x4d\x9f\xc3\x78\x9f\x35\xe9\x78\x51\x4c\x7d\x93\xcf\x4c\x55\x71\x3a\xce\xc9\xfc\x09\x2e\xa9\x97\xe8\x9a\x21\x72\xfd\xb0\x5c\x40\x5b\x50\x0f\xc2\x7f\xb3\x97\x2f\x5f\xbf\xc1\xff\xc7\x5f\xf2\x3e\xd7\x2b\x99\xa8\x51\xc0\x93\x20\xe3\x0a\xd8\x5a\xd3\xc9\x37\xd1\x3f\xff\xd9\xda\x1b\x0c\x49\xea\x39\xb6\x79\x91\x37\x8a\x69\xc2\x8c\x48\xb4\x4c\x64\x16\x6b\x91\x68\x36\x53\x34\x8a\x9e\x7b\x0d\x82\xa6\xa6\x00\xba\x05\xe5\xf8\xc2\x8e\x66\xef\x30\x8d\x22\x47\xc7\x07\x0f\xf4\x1c\xef\x03\x0a\xb1\x0d\x48\x4e\x3f\x6d\xc4\x33\xd6\x55\xd6\xc5\xef\xe9\x01\x19\x1d\x90\xcf\x00\x87\xc3\x31\xb9\x86\x27\x47\xcc\x93\x6b\x1c\x74\x2d\x13\x46\x62\x2d\x7f\xa5\x29\xdf\x30\x32\xc7\x20\x8f\xad\xd5\x2f\x1b\xcd\x3f\x61\x69\x40\x63\x46\x82\x15\x4d\x68\xa0\x58\x62\x96\x7d\x86\xbe\xf2\xde\xc7\xf0\x1c\xa8\xd4\x9a\x86\x6c\x94\xc5\x78\x2d\xd2\x17\x39\x3a\x82\xc8\x42\x83\x3a\xee\xd8\x5c\x4b\x6e\xcc\x20\x0f\xf7\xc4\x43\x16\x47\x72\xbb\x66\xc2\x8b\x4e\x4d\xff\x38\x91\xa1\xbd\xa4\x30\xae\x7e\x53\x80\x93\x12\x29\x14\x13\xa1\x73\xd5\x69\x70\x6b\xbe\xf8\x55\x37\x2f\xc6\x27\x7f\xfa\x4b\xd3\x0b\x08\xd9\xc6\x0e\xff\x27\x52\x79\x05\x3e\x54\xd6\xc6\x3c\x95\xb5\xb1\x7d\xb9\xc2\x6b\x6f\xaf\x27\x63\x0d\xcd\x22\xad\xb2\x66\x57\x06\x11\xac\x3e\x3d\x68\x2a\x18\x87\x0a\x0e\xe0\x6e\x05\x11\xeb\x25\x9a\xef\xb8\xc5\x19\x31\xd3\x8b\xa7\xf4\xbb\x93\xa6\x82\xca\x81\xf9\x6b\x2e\xd5\x6a\x4c\xd0\x53\x15\xa8\xc9\x7d\xac\x39\x2a\x15\x6d\x1d\x61\xf6\x39\x54\x7f\xf1\xba\x20\x3b\x78\x54\x90\x20\x61\x26\x40\x26\x35\xaf\x5b\x26\x44\xf0\xe8\xc5\x81\x0d\x72\x09\xd9\x82\x66\x91\x4a\x09\x6e\x4b\x83\x2e\x09\x1b\x64\x1a\x25\xc9\x9d\xc6\x95\x13\x23\x39\xeb\x45\x9c\x39\x42\x34\xf0\xad\x16\x7f\xe6\x85\x50\xd0\xed\xb2\x29\x4e\xde\xcc\x4f\x78\x8a\x6f\x6c\x44\x7e\x32\xac\x9c\x5e\x90\x9d\xe9\xe7\x03\x43\x22\x34\x63\x0c\xd6\x9b\xd2\xc4\xde\x77\xcc\x45\x10\x65\xa1\x35\x70\x06\x54\x33\xcb\x30\x40\x31\x0c\x41\x22\x2d\x64\xbe\x25\x18\xee\x45\x93\x77\x65\x79\x71\x67\xfe\xb5\x95\x20\xa2\x11\x53\x31\xbc\x57\xb8\x83\x76\x8d\x5b\x3f\xe8\x9c\xd0\x37\x28\xe8\x16\x9b\x8e\x09\x71\xe0\x27\xa3\x58\x74\xc4\x93\x84\x51\xfd\x9a\x82\x5b\x42\x97\x94\x0b\xef\x95\xc5\x6b\x82\x06\xa9\xe8\x8e\x6e\xd3\x5a\x7c\x02\x7a\x8b\x1c\x10\xc1\x36\x2c\x29\xdd\x3a\xaf\x92\xa5\x67\x95\xa5\x02\x0a\x84\x01\xe9\xc8\xed\xaa\xb1\x4c\x53\x3e\x8f\xec\xc4\x85\x3b\x9c\xee\x70\x1d\xb3\xc0\x2f\x76\xe3\x46\x9a\x1d\x04\xdb\x05\xfc\x46\xd9\xd9\x2f\x72\xd7\xbf\x05\xca\x11\xba\x6e\x0f\xa9\x92\x09\x5d\x32\xfb\x55\xaa\xa8\xca\x10\x30\x68\xf9\x63\xe1\x85\x63\x93\xb9\xe5\x22\xd4\xd8\xc8\x82\x34\x8e\xb2\x84\x46\xc5\x37\x81\x14\x68\x88\x4f\x8f\xc8\x4f\x3f\xeb\x6f\xf4\xf8\x2c\x34\x81\xb6\xe6\xdb\x99\x18\x8d\x46\x33\x41\x63\x6e\xe3\x75\x09\x8d\x39\xbb\x57\x4c\x40\xab\xf1\xed\xb7\xe9\x98\xcb\xc3\xcd\xab\x99\xc0\x19\x4f\xb2\x54\xc9\xf5\x15\x43\x8b\xe2\x29\x03\x09\x11\xb0\x75\x29\x2a\x16\xf4\x60\x04\x7d\xaa\x05\xfa\x1f\xa7\x4c\xa5\xe3\x20\x09\xc7\x71\x22\x35\x1c\x02\x40\x40\x63\x99\x2c\x67\x42\x63\x36\xe8\x07\xec\xca\x11\x69\x68\x56\x36\x4b\xe1\x82\xaa\xae\xd2\xf8\x5b\xc4\x53\xf5\x57\xef\xef\xe7\x3c\x55\x65\x90\xd5\x56\x69\xce\x83\x8b\x65\x16\xd1\xa4\xde\x00\xa0\x19\x48\x7d\xa4\x27\x51\x96\x2a\x14\x27\x37\x16\xb2\xfa\x8f\x91\x81\x80\x06\x1c\x0c\x16\xac\xd8\xba\x08\x18\x96\x31\x13\xc7\xd3\xc9\x8f\x5f\x5d\x97\xbf\xaf\x5c\xfa\x9a\x1b\x78\x29\x10\x03\xdc\x09\x68\x32\xe7\x2a\xa1\xc9\x96\x4c\xa6\x24\xcd\xe6\x23\xbb\xcc\xc3\x93\xc9\xe9\x55\x09\xe3\xa0\x02\x63\xa5\x71\x14\xb2\x35\x20\xbc\x82\xe4\x85\x48\x48\x49\x8c\x09\x34\xbe\x1b\x6b\xb2\xe1\xd4\xf1\xa2\x43\xff\x08\xec\xea\x8e\x2b\x17\xf5\x85\x5a\x13\x7b\xae\xad\x71\x1f\x59\x83\x36\xd5\xb9\x85\xe5\x37\x55\x4e\x72\xa2\xe1\x66\x9c\x49\x30\xf8\x02\xd1\x80\x01\x3f\x0b\x0d\xac\x11\x0f\x00\x56\x33\x24\x89\xfa\xd4\x64\x1a\x84\xc2\xbc\xcc\x31\x30\x2c\x2c\x49\xad\x48\x1b\x48\xb1\x61\x89\x22\x09\x0b\xe4\x52\xf0\x7f\xe4\x83\xa7\xd6\xbd\x05\x8a\xbd\xd5\x98\x3c\x2e\x14\x4b\x34\x6b\x03\x28\x09\x95\xf8\x6b\xba\x25\x09\xd3\xd3\x90\x4c\x38\x03\x5a\xe7\xba\x0f\x9a\xa5\xe5\x62\x21\x8f\x20\xfd\x54\x7a\x74\x78\xb8\xe4\xca\x3e\xc0\x40\xae\xd7\x99\xe0\x6a\x7b\x08\x06\x77\x3e\xcf\xf4\x91\x1c\x86\x6c\xc3\xa2\xc3\x94\x2f\x47\x34\x09\x56\x5c\xb1\x40\x65\x09\x3b\xa4\x31\x1f\xc1\xda\x05\x60\x80\xf1\x3a\x7c\x96\x98\x17\x9b\xee\xfb\xf0\x55\x1d\xcd\xc1\xe3\x6a\x3b\x06\xfd\xba\x4c\xcc\x36\xf2\xec\xc8\x74\xe4\xd0\xb6\x84\xf7\xea\xec\xfa\x86\xd8\xd9\xbd\xf1\xed\x08\xfc\xa2\x67\x5a\x9c\x83\x06\x1a\x17\x0b\xcb\x5d\x81\x8d\xc3\x55\x46\x20\x69\x8f\xb8\x87\xd1\x4e\xb3\xf9\x9a\xab\xd4\xc9\x5b\x24\xc7\xe4\x24\x37\x7e\x64\x71\x48\x15\x0b\xc7\x64\x22\xc8\x09\x5d\xb3\xe8\x84\xa6\xec\xc9\x4f\x01\x58\xcc\x91\x86\x6d\xdf\x73\x68\xc8\x35\xd0\xa4\xd9\xcd\x11\x69\xc3\xb1\x55\x1f\xaa\xa6\x8f\xe5\x90\x37\x1b\x21\x59\xe4\x24\xa0\xa4\x8a\x5d\x8b\x8f\x3d\xd8\x0a\x09\x6d\xb1\x97\x34\x04\x67\xd4\xea\x42\x5a\xff\xd1\xc9\x94\x58\x94\x86\x18\x6c\xce\x22\xa9\xef\x96\x34\xfa\x22\xe6\xb3\xb2\x37\x73\x15\x03\x5d\xff\x72\xba\xbe\x92\x69\xe1\x05\xf5\x04\x34\xdd\x0d\x75\xaa\xd2\x73\xf7\xb7\x3a\x2d\x2f\xad\xac\x4a\xc7\xdd\x1f\x9f\x92\x86\x0f\xf4\x6d\xa0\x6f\xee\x11\x0c\xf4\xed\x37\xa3\x6f\x2e\x76\xe8\x47\xdb\xea\xb8\xa6\xf8\xec\x4e\xdd\xd8\x7d\x0c\x3e\x1d\x93\x69\x1f\x4d\x92\x3e\x69\xd3\xa1\x1c\xd9\xf7\x7c\x32\xdd\x7c\x0d\xcf\x6a\x32\xdd\xbc\x79\x61\x65\x5a\x7b\x2d\xbc\x02\xeb\x04\x15\xe4\x13\xfd\x36\x17\x34\x60\x60\x07\x9b\xcd\xf6\x2a\x26\x87\x5c\xf3\x03\x32\x7c\x24\xe5\xad\x55\xbd\x71\xdb\xd3\xab\x71\xb5\xae\x35\x4e\xc4\xe1\x64\x5a\x72\x76\xc3\x20\x69\x30\x86\x19\x9d\x02\x20\x11\xaa\xc6\xe0\x40\xee\xa5\xc6\xb3\x99\x02\x45\x44\x96\xd6\x3c\xd1\x2b\xb1\xf7\x10\xec\x98\x3b\x6d\xc8\xc4\xa8\xcd\x7c\x83\x56\x4b\x25\xcf\x66\x7a\x3c\x53\x23\x39\xdf\xbf\x41\x7e\x69\x79\x56\x2e\xfc\x91\xfd\xb9\xc0\xe5\x9e\xd3\x18\xa2\x6c\x35\x59\x29\xf9\x05\xa3\x47\xc2\x59\x71\x15\x50\xcd\xe0\x1b\x96\xa7\xa8\xd3\xc4\xdc\x4f\x54\x91\x38\x4b\x62\xa9\x5f\xea\xf3\xc9\xc2\xb8\x21\xad\x58\x71\x34\x7a\x1e\xeb\x67\xd8\xee\xcc\x64\xf5\x7b\x92\xe1\xf1\x47\x8c\x26\x22\x3f\x36\x73\x82\xc5\xb8\x7a\x01\x59\x0a\x3a\xe8\x46\x07\x8a\xd9\x4c\xd9\xe3\x18\x7b\x35\xc8\x8f\xce\x75\x91\x62\x85\x17\x7e\xcf\x9a\xca\x93\x3a\xc3\x74\x95\xfa\xde\xff\x0f\x54\x9f\x1b\xdb\x46\xe1\x53\x93\xa7\x00\x39\xe7\x22\xbb\x6f\xbf\xf5\xb9\x75\x37\xbf\xd0\xdf\xc3\xd5\x5b\xc7\x6a\x3b\x26\xc5\x34\xae\x41\x18\xad\xa3\x3c\x6d\xc5\x2c\xfa\xb3\x94\x1b\x96\x08\xb4\xab\xe4\xbe\x66\xf2\xa0\xf0\x2f\x5b\x25\x32\x5b\xa2\x0f\x81\x55\x93\x1a\x56\xb8\x3d\x04\xde\x1c\x2e\xdc\x4b\xdd\x30\x4f\x00\x80\x85\xb3\x43\x44\x0b\x70\x27\xbf\x27\x4c\xef\x1f\x1f\x76\xa8\x2f\xc9\x06\x1f\xa2\x3f\x25\x44\xe1\xb9\xb3\x81\x5a\xe6\xdb\x02\x7c\x07\xc4\x55\xb8\xca\x14\xe3\x06\x0e\x95\x04\x3f\x74\xbd\x16\xab\x9a\xf0\x9b\xf1\x23\x19\xd0\x28\x0f\x22\x37\x4a\xca\xc9\x82\x94\xf0\x99\xc5\x65\xce\xf9\xf6\x02\x35\x3c\x24\x0b\xef\x92\x5f\x1f\x6c\x1f\xf0\x89\xde\xbb\xe1\xb5\x00\x72\x0e\xf8\xbd\x48\xc6\x5e\xa3\xe2\x0d\xe5\xb0\x2e\xad\x19\xae\xe0\x88\xdc\x69\x34\x57\x46\xce\x7e\x7c\x80\x1a\xd3\x51\xe9\xf8\x3d\x93\xe5\x71\x7f\x85\xf2\x55\xbf\x6c\xef\xa0\xc2\x45\x46\x90\xb2\x36\x01\xa7\x84\x03\xcf\xaa\xf2\x25\x1c\x10\x0a\x58\xa3\xce\xfe\x11\x63\x33\x76\x69\x57\x5e\xa9\xbc\x48\xe8\x85\xa1\x4b\x5a\xe8\x48\x30\xd5\x9d\x99\x25\x25\xcf\xd3\xcc\x8f\x61\x68\x0a\x47\xcb\xd4\xea\xa5\xfe\xef\x0b\x13\x77\x03\xc6\x3c\x16\x12\xbd\xee\xef\x09\x57\x84\xa7\x62\x5f\x15\x9a\xdf\x6e\x4a\x4e\xf0\x31\xc7\x89\xd4\xdc\x8b\x73\x05\x10\xc6\x0e\x56\x28\xdf\xc3\x62\xd5\x5e\x9a\x6b\x83\xa3\x8e\x70\xaf\x10\x8b\x08\xdc\x0f\xc6\x2b\xa2\x2d\x48\x73\x5c\xeb\x38\x62\x6b\x7d\xd7\x10\xd5\x17\x88\xc3\x5d\x74\xfa\xbd\xff\xf4\xb8\xe2\x34\x8a\xb6\xe4\x7f\x6b\x18\xc7\x09\x1b\x81\x0f\x4a\x6e\x59\x99\xea\x43\x62\x26\xb1\x70\x8e\xf6\x83\x6c\xdd\x24\x13\xe8\x8f\xad\x23\x8f\x0c\xbe\xa9\x57\x2f\x85\x57\x45\xdf\x86\xbc\x85\x3f\xab\x5c\x4d\x9c\xd7\xed\x8c\x87\x3c\x38\x00\x2d\xb6\x96\xe0\x9b\x15\x43\x03\xae\xc5\x63\xe1\x05\x76\xdb\x22\x9a\xa2\x73\x2b\x16\x04\x4d\xec\x4b\xfc\xa0\xe3\x29\x8b\x6f\xd7\x04\x8e\xda\x2c\xc3\x5e\xaf\xdb\x39\x43\x2d\x29\x13\x01\xba\x2b\xe5\xec\x86\x39\x70\xe3\x50\xba\x03\x75\xec\x74\x2f\x6d\x75\x2b\xed\x76\x45\xd4\xdb\xea\xe8\xde\x1a\x15\xfa\xaf\x94\x3d\xec\xa9\x92\x45\x75\x38\x59\x8a\x06\x84\x3d\x02\xe0\x36\xfc\xd2\x92\x0e\xee\xc1\xae\x99\x31\xb2\xb1\x9d\xd7\xfd\xb8\x88\xc0\xc6\x07\xc7\x81\xce\x2d\x1c\xee\x18\x47\x32\x8b\x68\x4e\xb2\x59\x44\x64\x68\x52\x9b\xcb\x20\x98\x5c\xdd\x2c\xc7\xf1\x6e\xb4\x22\x01\xba\xed\x35\x0d\x8a\x21\x0d\x71\xcc\x68\x92\x3b\xcc\x41\xc4\x0c\xc9\xd7\x55\xd8\x94\xed\xc8\xd6\xf1\xb1\xe0\xd7\x47\x8d\x6e\x81\x95\x57\x39\xe8\x08\x7f\x63\x1d\x21\x8f\xe9\x7a\x1e\xc9\xe0\xf6\x29\x14\x84\x93\xe9\xf1\x87\xb7\x7a\xf0\xaa\x76\x30\xff\xa1\xae\x1a\x2c\x16\x54\xd5\x0b\xe6\xbf\x0c\x4a\xc1\x41\x29\x38\x28\x05\xff\xed\x94\x82\x39\x52\xe8\xa5\x11\x14\x55\xec\x52\x7c\x76\xd7\x07\x6a\x31\x43\xc3\xce\x43\x66\xda\x88\x0c\x8d\xb4\x18\xd2\x94\xa7\xbb\x8b\x70\xb5\xf0\x59\xcf\xc8\xcd\xe5\xe9\xe5\x11\xa6\x72\x11\x59\x14\xd1\x39\x12\xef\x35\x15\x19\x08\x19\x34\x0c\x81\x86\x8f\xc9\x27\x66\x51\x02\xde\x1b\x92\xc7\x7a\x27\xa3\xa5\x3f\xb7\xe1\x33\x8d\x22\x56\x54\x84\x11\x23\x3f\xfd\xfc\x3f\xf4\x65\x45\xe0\x44\x5b\x93\x94\xc1\x2b\x46\xd9\x85\x34\x71\x67\x2d\xec\x10\x55\x78\x25\xbd\x0c\xd1\x17\x70\xdc\xb8\x89\xcf\xdc\xcf\x0f\x92\x5e\x6c\x77\xca\x34\x25\xa6\x89\xef\xf4\xcd\xea\x77\xcb\xb3\xde\x87\x3f\xee\x0a\x26\x7a\x30\xe3\x19\xf0\xd0\xe7\xf0\xd9\xb6\xa6\x90\x45\x4c\x79\x59\xea\xf6\xf8\x06\x08\x1e\x3e\xee\x7a\x3a\x0d\xbd\x33\x61\x5e\x8f\x77\xe2\x07\xbf\x9d\x46\xc8\x34\x08\x0e\x23\xf7\x11\xd7\x7e\xca\x6f\x6d\xf5\x17\x0d\xe5\xea\x77\x65\x78\x54\x7f\x75\xf6\x3b\xb0\xa3\xad\xec\x68\x20\xc5\x82\x2f\x9f\x8a\x1f\x3d\x81\xd1\x7d\x0c\x29\xfe\xe2\xe7\x48\xcd\x9a\x7c\x2c\x69\x90\x0f\x38\xf0\xa4\x03\x4f\xda\x78\x0c\x03\x4f\xfa\x47\xe5\x49\x11\x2f\xec\xc0\x94\xba\x28\xa6\xf8\x3c\x80\x2b\xcd\x94\x3c\x36\x44\x03\x18\x5d\x1f\x45\x6c\x25\xb2\x6b\x7a\x8f\x1d\xa7\x2c\xf9\x41\xa6\x3e\xed\x62\xa5\x82\x45\xb9\x3d\xb8\xb0\x0b\x29\x46\xff\x60\x89\x3c\xb0\x29\x24\xd7\xf4\xde\xc4\x67\x6a\x74\xe0\x0a\xeb\x95\xa5\x41\x7a\x08\x2a\x20\xe6\x50\x93\x45\x88\x7a\x87\xe4\x07\x2b\xe9\xcd\xba\xd2\x4a\xdc\xbf\x84\xdf\x68\xa6\xfe\x35\x18\xef\x42\xd6\x07\xda\x5d\xa1\xdd\xc8\x8f\x3f\x15\xed\xfe\x01\x46\xf7\xd1\x6e\xfc\xc5\x4f\xbb\xcd\x9a\x7c\xb4\x7b\x95\x0f\x38\xd0\xee\x81\x76\x37\x1e\xc3\x40\xbb\xff\xa8\xb4\x1b\xf1\xc2\x0e\xb4\xdb\x45\x31\xc5\x67\x77\xda\x0d\x54\xd1\x43\xa3\x7a\xab\x12\x7a\xc9\xb9\x7e\xfd\xc0\x03\xe5\x79\x44\x86\x93\xd3\x9d\xb4\x07\x8d\x84\x75\x5e\xd7\xcc\x8d\xf2\x29\x06\x2a\xda\x42\x45\x63\x29\xa3\xa7\xa1\xa0\x53\x69\xad\x9c\x2e\xf5\xd4\xdf\xfa\x28\x27\xac\xa3\x4e\x35\x63\x33\xc8\x40\x31\x07\x8a\xd9\x78\x0c\x03\xc5\xfc\x63\x52\x4c\x8d\x0b\x7a\x53\x4b\xdd\xf8\x21\x62\x2d\xa6\x9a\xf8\x98\xf6\xf0\x8e\xc8\x9b\x5a\xab\x46\x8a\xb1\xed\xe8\x46\x47\x34\x2e\xca\x53\x13\x59\x0f\x5d\xc8\xad\xe4\x23\xa9\x90\x72\x22\x0f\xce\xb7\x0e\xa2\x07\x45\x70\xbd\x92\xe4\xa7\xfd\x9b\x4c\x08\x16\xed\x1f\x90\xfd\x4f\xc6\xbb\x6c\xff\x67\xd8\xf3\x9c\x06\xb7\x23\xc8\x54\xa3\xf8\x9c\x47\x35\x61\x90\x3c\x8d\x6b\x2d\x10\xd2\x6b\xfe\x8f\x5e\xfe\x5b\xd0\x98\xa4\xfc\x1f\x20\x6a\x67\x29\x3a\xdd\x15\xce\xd0\x84\xa6\x29\x5f\x8a\xb5\x7e\x48\x8d\xf9\x6f\x4d\x8a\x04\x19\x8d\xc9\xa9\x03\x9a\xd7\x6f\xcc\x60\xc6\xe7\xfd\xd5\xab\xd7\xf6\x8b\x37\xbb\xca\xf2\x0d\x56\x8a\xda\x7e\xe0\x80\x4f\x26\xa7\x57\x3b\xba\x9a\x85\x3c\xa5\xf3\xc8\xcb\x03\x95\xe6\x00\xaf\x76\xdb\x18\xf4\x1b\x49\x56\xf8\x9e\x6b\x86\x10\xaf\x97\xbe\x3a\x08\xba\xc2\xad\xdc\x07\x3a\x83\x83\x2c\xfc\x76\xe4\xc0\xcc\x42\xde\xbe\x9f\x9e\xdd\x37\x38\x83\x95\xd1\xec\x29\x76\x20\x0c\x9a\x6b\xa4\x9a\xc8\x2c\x4f\x7e\x09\xeb\x98\x4c\x89\x7e\xa7\xff\xdf\xff\xf3\xff\xa6\x00\x48\x22\x37\x7e\x9b\xe3\xdb\xf7\xd3\x31\xf9\xc9\x1c\xf8\x11\x59\xd0\x28\x65\x3f\x7b\xca\x6c\xb5\xee\x80\xc7\xdc\x57\x5e\xbe\xb2\x6a\x8d\xcb\xd1\xf2\x63\x30\xb7\xad\xd0\x0e\x0e\xc0\xb9\xa7\xfd\xf1\x74\xb2\x79\x05\xcf\xee\x8e\x26\xa1\x17\xde\xa5\xe7\xa8\x29\x83\x32\xa4\xc5\x1d\x15\x0e\x0f\x31\xc9\x41\xf9\x27\xef\x11\x62\x78\x01\x92\x68\xfd\x82\xf4\xa2\xc6\x1e\x40\x74\x18\x27\x99\x68\xba\x81\x35\x88\xc0\x2d\x34\xed\x8b\x4b\xa8\x61\x49\x14\x60\x23\xbd\x27\x17\xcd\xf9\xc7\x04\xdf\xd9\x90\x45\x7c\xc3\x92\x22\x95\xba\xfe\x2a\x2f\x34\x92\x56\x12\x2a\x7a\xef\x28\xe9\x3a\x65\x02\xb9\x7d\x1a\xeb\x14\xd7\x5e\xf1\x64\x3a\x99\x42\x07\x53\xd4\xdf\x2a\x05\x6d\xc2\xa8\x3d\xcc\x51\x61\x0b\x07\x41\x39\xb2\x11\x96\xc8\x9a\xed\x8d\x09\x39\x6e\xda\xaf\x1e\xb3\x32\x82\xc9\x79\x91\x22\xf6\x83\x99\x0b\x18\xea\xb3\xd5\x2f\x04\xee\x48\x63\x69\x48\x07\x5e\xe5\x78\x9f\x1a\xec\x08\x39\x76\xd6\x50\x5e\x77\xd3\xe8\xb0\x40\x7b\xd1\xab\x0b\xbc\xb3\xe9\x3e\xdc\x35\xa0\xcf\xad\x7e\x1d\x4d\x63\xd2\xa2\xdc\x81\x29\x2d\x66\x59\x50\x9b\x10\x57\x0f\x2e\xec\x09\x14\x81\x0a\xad\x65\x62\x9e\x83\xf2\xd7\xa1\x99\x2f\xf4\x2a\x0a\x58\xb7\x5e\x9d\x76\x4a\xe7\x17\x5c\xf5\x8d\xff\xd0\xc3\x53\xf9\xc4\x32\x27\x68\x7b\xcb\x92\x82\x31\xf1\x1c\x78\xfb\x55\x9f\x54\xf6\x78\x60\x73\x39\x63\x99\x6b\x03\x28\xcc\x67\x34\xdb\xbb\x60\x1b\x48\xfd\x88\x85\x97\xcb\x93\xf9\x46\xd7\x23\x18\xea\xe2\x2b\x22\xd2\xea\xb2\x4d\xd5\x48\x66\x6a\x29\xb9\x58\xfe\x77\x41\xa9\xad\x58\x47\x50\x75\xd9\x13\x1e\x98\x96\xc9\x01\x60\x81\x55\x2d\x5e\x84\xec\x47\x4e\x89\x04\xd2\x1a\xf6\x62\xd8\x61\x2d\x75\xb8\x08\xa0\x86\x5d\x65\xa6\x52\x1e\xb2\x5c\xbc\xcc\x19\x54\xdf\xa0\x90\x40\x3a\xfd\x7b\xc6\x12\x1a\x7a\xb3\x81\xb7\x83\x43\x86\xbd\xf3\xbe\x02\x1f\x9d\x5a\x96\xdd\xe4\x13\xd1\xd7\xc5\xc4\x64\xe4\x61\x15\x80\x6a\xe6\x5b\x4c\x1f\xe2\x5b\x73\x9e\x3c\x7d\xb7\xcb\xbc\xb9\x8f\xa8\xf8\xc2\xa7\xfd\xe3\xdf\xce\x8f\x2f\x7e\xb3\xb7\x0d\xb3\x79\xb9\xe3\x7c\x01\x0f\x7e\xdc\x8d\x4a\xb3\xba\x5b\xc9\xa0\x1b\x2b\xe9\xc6\x12\xa6\x37\x8a\x8f\xed\x49\x54\x64\x57\xc5\x04\x75\x4d\x99\xf3\xa3\x4f\x61\xe6\x2e\xae\xae\x37\x4b\xca\x23\x0f\xea\xb3\x41\x7d\xd6\x78\x0c\x83\xfa\xec\x8f\xa9\x3e\x73\x10\x44\x6f\x2d\x5a\x0d\xe3\x14\x9f\xdd\x75\x6b\x88\x64\x58\x08\x59\xc5\xba\x68\xed\x95\xdb\xb8\x5c\x0e\x12\xbf\xa2\x22\x3c\x2c\xa9\x8f\xfc\x4a\x0f\xf0\xf3\xa8\xa9\x4c\xd8\x7d\x10\x65\xa1\xa9\x4b\x26\xd8\x9d\xeb\x68\x39\x84\xf9\xfc\xc6\x94\xf3\x36\x9b\xb3\xc2\x2f\x3c\x2d\x31\x57\x4f\x41\x48\xff\x9a\xcd\xd9\x49\x31\xdf\x89\x3b\x5f\x95\xae\xb6\xb5\xad\x93\xd9\xd6\x9d\x54\xa9\x6e\x5b\xe3\x81\x08\x0f\x44\x78\x20\xc2\xff\x76\x44\xb8\x0d\x9b\xd4\x69\x72\x29\x19\x6d\x15\xc0\x4e\x79\x2a\x07\x89\x94\x25\xd3\xfe\xa4\xd9\x19\xa2\x8f\x10\x6c\x67\x43\xb5\x30\xa6\x07\xb6\x33\x9b\xc4\xd6\x1b\x1e\x66\x34\xea\xa8\x3e\xe4\x4c\xbb\xb3\x0a\xbb\xab\xa0\x50\x43\x19\xa1\x86\x25\x97\x6b\x0a\x15\xeb\x6a\x2c\xe2\x73\x66\x34\xe2\xf3\xad\x15\xd5\x0f\x6c\x99\x66\xc1\x51\xf7\x82\xe2\x77\xc3\x08\x3d\xca\x41\x69\x34\x25\x02\x1e\xb1\x64\xca\x12\x2e\x9b\xc3\x88\xaa\xc8\xe1\xaa\xd2\xd1\xfa\xc6\xc6\xf8\x97\x92\xfa\x5f\x0b\x99\xac\xf3\x29\x78\x63\x92\x07\xfb\x81\x94\xf6\x4e\xae\x05\xfd\x2a\x80\x57\x70\xed\x32\xdf\xac\x7d\x46\x19\xfb\xe9\x0e\x3d\xea\x0a\x3c\x6a\xc8\x14\x51\x83\xc0\x85\x0c\xdb\x4f\x5a\xff\xfe\xaf\x71\xc8\x2b\x27\x79\x47\xdf\x03\x76\x13\x7e\x14\xb6\xe7\x74\x2b\x02\xab\x49\x07\x0a\x09\x29\x68\x9c\x8a\xaa\x2d\xa7\x7b\x6a\xad\x8c\x0f\xdd\x69\xcf\xdd\x12\xe3\x39\x7e\x92\x30\xda\x90\xce\xab\x61\xcf\xfb\xc7\x79\xb7\xe2\x64\x33\x25\xd7\x54\xf1\xa0\x48\x52\x2f\x3b\xab\x26\x96\xa1\x02\xa2\x0e\xdb\xb0\x64\x6b\x2c\x10\xc5\x65\xb6\x30\x69\xbb\xd2\xa4\x77\x19\xaf\x3e\x45\xbc\x22\x46\x6f\xdf\x27\x34\x60\x3b\xbe\xf7\xf3\x72\xbf\xca\x73\x07\xfd\xba\xc9\xde\x54\xdc\xf9\xb6\x3d\x81\xe2\x18\x4b\x13\x42\x75\x13\xea\x9a\x9a\x20\x61\xd0\x9c\x31\x01\xcb\xd5\x34\xfc\x1a\xef\xc9\xcb\xae\x21\x8d\x3d\x78\x32\x25\x4b\x9a\xcc\xe9\x52\x2f\x27\x8a\x18\x94\x1e\x73\x01\xff\xea\x4b\xd1\xc8\x7f\x47\xd4\x49\xe0\xfd\x43\x31\x95\xb6\xe7\x57\xde\xed\x75\xde\xc5\x75\x61\x31\xb5\x28\x24\x09\x64\xbc\xed\x59\x3f\x10\x30\x6a\x91\x12\xdc\x49\xc8\x93\xba\xbb\x34\x08\xf5\x69\xa9\x04\x66\xeb\xe8\x43\x27\x4c\x72\xbf\x16\x4a\x61\xf2\xf1\xfc\x6b\xd0\x8a\xff\x7e\xb7\xba\xeb\xa8\xcb\x35\x65\xfa\x1c\x79\xb9\x9e\x4c\xdb\xd1\x77\x14\xf6\xb5\xe5\x7c\x9d\xab\x31\xdc\x81\xdf\xe3\x0e\xd8\x3c\x6b\x1d\x5c\x54\xd9\x06\x5b\xe9\xd3\x76\x0f\xec\xf8\x4d\x7b\x60\x15\x4e\x6c\xb8\x09\xbf\xcf\x4d\x68\xfb\x95\xa9\x20\xfc\xf1\xab\x13\xb9\x8e\xb1\xd2\x69\x23\xc4\xca\x90\x3a\xf3\x76\xab\xc0\x6b\xce\xd4\x9d\x66\x87\xf4\x1c\x9b\xaf\xfc\x62\xae\x1d\x20\xd7\x87\x14\x5c\x93\x7b\x17\x5c\x26\xe8\xa5\x17\x58\x6d\x40\x5a\x31\x1a\xa9\xd5\xc9\x8a\xf9\x83\x31\xcb\x5b\xfb\xc1\x69\x9c\xdf\x7e\x99\xd8\xa5\xa4\x79\xfd\x33\xcd\x20\xe3\xc8\xde\xad\xe1\x00\xbd\x28\x7c\xdb\xda\x23\xb9\xbc\xd6\x6c\x38\x57\xdb\xeb\x20\x61\xac\xaa\x84\xac\x6f\xe0\xbc\xda\xc3\x1e\x4b\x24\x97\x24\x35\xbf\x10\x3a\x97\x1b\x66\x92\xf1\x45\x72\xe9\xe5\x61\x20\x41\x24\x13\xb9\x5b\x52\xaa\x42\x99\x29\xf7\x30\x26\x62\x21\x77\xdd\x51\x9c\xc8\xb5\xe6\xa4\xb2\xf4\x03\x53\x09\x0f\xd2\x69\x1f\xa7\xc9\xa9\xaf\x97\xdd\xd9\xcd\xc9\x14\x52\xc5\x15\xe5\x33\x8b\xe6\xbe\x8d\xad\x71\x08\xb4\x22\x24\x79\x91\x4d\x2e\xb0\xbc\x66\xc7\x0d\xfc\xee\xe5\x77\x5f\x37\x6f\xda\xeb\x3b\xdb\xec\x3b\xd0\xa4\xe8\x69\xd4\xa4\x15\x76\x8d\x06\x50\xb5\xea\xd2\xa0\xb7\xa3\xd3\x34\xe7\xaa\xbf\xf5\xa8\xa0\x8d\x64\xe4\x28\xce\xc8\x44\xed\x43\x5a\xe5\x45\x16\xa1\x35\x2c\x5c\x83\x5a\x0e\xca\xda\x82\x18\x03\x25\xe4\xa0\x12\x18\xa1\x81\xca\x68\xcd\x23\x05\x47\xc4\xb3\xba\xa3\x79\x6e\x3b\x9b\x1a\xd2\xb8\x19\xae\x65\x88\x2e\xdf\x73\xcd\x87\x6e\x78\x22\xc1\x01\x9a\x6c\x68\xc2\xe1\x21\xd6\xd6\x8b\x3e\x78\xb7\xd9\x9c\x8d\x5c\xcd\x5f\x9c\xc8\x80\xa5\x55\x31\xbf\x2d\xcf\x78\x31\xdb\x8f\xd4\xab\xf7\xdb\x31\x1e\xac\x09\x75\x97\x8e\xed\xac\x3c\x6b\x35\x99\xa6\x07\x00\x0d\xae\x85\x5e\x20\x00\xb0\xb9\x58\x44\x19\xa6\xd6\x04\x15\x78\x26\x04\x17\x4b\xbc\x20\x8d\xae\x30\x7e\xba\x91\xb8\x7d\x3b\x4d\x96\x6e\xe3\xca\xc6\x16\x0b\x2d\xe7\x6e\x58\xe9\x56\xf0\xd4\x4e\xe0\xdb\x20\x6f\x3a\x68\x19\x1e\x98\x34\x86\x6b\x96\x2c\xad\xa6\xff\x78\x3a\x29\x14\xfd\x9a\x1c\x7b\x51\x9d\x68\xb8\x65\x1e\xb8\x74\xb0\x20\xed\x2a\xe3\x1a\x70\x1e\x53\x6d\x4c\xba\x54\xc7\x3d\x96\x4f\x7a\xd6\xa4\xff\x02\x35\x72\x1b\xbf\xf4\x98\xbc\x62\xcf\xdd\x92\xdd\x78\xc6\xda\xe6\xfb\xf3\x8d\x5d\x2a\xb8\x32\x5b\xd9\x8b\x77\xec\x1a\xb2\x9d\xb5\x24\x8f\xaa\xa6\x6b\xd1\x42\x93\xa7\xd2\x44\x93\x47\xd0\x30\x90\xfe\xf7\xa4\xa7\x56\xba\xb6\xdd\x1d\x34\xd3\x5d\x27\xea\x94\x09\x7e\x14\xed\xf4\x0e\xbb\x27\xbb\x68\xa9\x6b\x30\xe8\xa7\xa9\xee\x1e\x14\x58\x93\x47\xd7\x56\x93\xde\x4f\x81\xf4\x7c\x0e\x64\x27\xcd\x35\x79\xb8\xf6\xba\x6b\x63\xc5\x33\xda\x51\x83\xdd\x35\xb0\x87\x51\xee\xd4\x62\x77\x8d\xd9\xa1\xe4\x26\x3b\x1c\xd3\x80\xd4\x3b\x41\xd4\x4b\x37\x5e\x07\xce\xe3\xe9\xc7\xc9\xa3\xea\xc8\xfb\x6f\xbd\xcf\x03\x6e\xd5\x97\xd7\x80\xf2\x98\x3a\x73\xf2\xdb\x52\xb5\xe1\xa1\x3c\xc2\x6d\xe9\xa5\x72\x27\x4f\xa6\x76\x27\x4f\xa4\x7a\x27\xc3\x35\xfa\x4d\xaf\x51\x4f\xad\x3d\x79\x4a\xcd\x3d\x79\x2a\xed\x3d\x19\x2e\xd3\x6f\x78\x99\xba\x5a\xf4\x56\xfe\x93\xa7\x32\x00\x90\xc7\x35\x02\xf4\x01\x5e\x87\x31\xa0\xbe\xd5\x47\x32\x08\x90\x1d\x8d\x02\x7d\xf6\xd2\xc7\x38\x50\xdf\xd0\xce\x06\x82\xa6\xed\x44\x72\x99\x7e\x81\x91\xa0\xcf\x0e\xfb\x1a\x0b\xea\xbb\x7c\x54\x83\x01\xf9\x52\xa3\x41\xd3\xa0\x4d\xb6\x04\xd2\x9d\x4c\xac\xa5\xa8\x4e\x8b\x5d\x81\xb4\xe2\x85\x21\xfc\xc2\x09\xbf\x30\xb1\xc5\xc0\xb5\xf3\x27\x49\x8f\x69\x6a\x7f\xa3\xe4\x80\x3f\x14\x11\x16\xa5\x1f\xeb\x21\x15\x95\xd5\x99\x53\xc8\x83\x28\xdc\x9f\x61\x68\x13\x35\x91\x6b\x6a\x81\xf8\x0f\x81\x13\x43\xe0\xc4\x10\x38\xf1\xc7\x0a\x9c\x68\xb3\x5c\x42\xd9\xde\x3e\x29\x9a\xa0\x80\x98\xbe\xfe\x58\x78\x17\x3b\x9a\xea\x7a\x04\xab\x8f\xe9\x3f\x72\x63\x9d\x8f\x42\xe5\x65\x7b\x31\x3b\x43\xb5\xa8\x30\x54\x2c\x26\x81\x4c\x12\x96\xc6\x1a\x9f\x8b\x25\x31\x7c\x9e\x2d\xfd\xba\x53\x44\x61\xa5\x1a\xed\x31\xb9\xd2\x0b\x64\x22\xa0\x71\x9a\xc1\xbb\x2d\x56\xe4\x5b\x4a\x83\x66\x99\x1a\x05\x25\x79\x2b\xd5\xaa\x52\xfb\xac\x56\xed\x58\x0f\x54\xad\xf1\xd6\xc0\x30\xe4\x75\x0c\x4d\xad\xb5\x11\x49\x59\x4c\x13\x7d\x49\x89\xcc\x14\xa1\x6e\xe4\x26\x36\x81\x7c\x65\x7a\x15\xa6\x12\x73\xc3\x82\x45\x68\xcf\xcb\x05\x3c\x17\x4b\xac\xeb\x8a\xa5\xe3\xa0\xe6\xe4\x86\x55\x21\xb1\xa2\x4d\xa3\x12\xc1\x96\xb0\x38\x83\x78\x0f\x48\x9c\xb0\x05\xbf\x67\x21\x4a\x3d\x58\xdf\x56\xe9\xff\x8c\xc9\x71\x14\x99\xa4\xe2\xee\xe8\xfe\x91\x4d\xfe\x1d\x8a\x17\x2a\xaf\x65\x4a\x15\x4f\xc1\xbe\x8f\xc9\x2c\xcc\x56\x94\xc4\x31\xc7\xe4\x18\x88\x59\x3d\xab\xab\x81\x2e\x5c\x4e\x2a\xec\x05\x35\xfa\x35\xb3\x69\x0d\x22\xd8\x8e\xfe\xc3\xec\x07\x0b\x14\x37\xd6\x5f\x46\xb8\x02\xf4\xfd\x4b\xd4\x13\xc0\xac\xf9\x12\xfd\xd9\x82\x3a\xc5\x5b\xbc\x70\x8d\x1c\x61\xb7\xf0\xe7\xe4\x2e\x69\x1c\xa5\xf4\x58\x4e\x9d\xb4\x44\x25\xeb\x7b\xe5\x72\x00\x33\x0c\x0f\xb3\x45\xea\x2c\xe5\x4e\x21\x1a\x17\x2a\xdf\x3b\xee\x09\x0c\xe2\x5a\x9b\xff\x7f\xf6\xde\x7d\xb9\x8d\xdc\x5c\x1c\xfc\x7f\x9f\x02\x91\x4f\x95\xec\x5d\x91\xf2\x65\xc6\x99\x51\x2a\xb5\x25\x4b\xb2\x47\x15\x59\xe2\x91\xe8\x71\x52\x61\x8e\x0e\xd8\x0d\x92\x58\x35\x81\x4e\x03\x4d\x89\x99\xcc\xd6\xbe\xc3\xbe\xe1\xef\x49\x7e\x85\xef\x03\xba\xd1\x24\xfa\x42\x59\x9e\x99\xe4\x74\x57\x25\x63\x35\xd1\xb8\x7c\x00\xbe\xfb\xa5\x21\x31\x4a\xcd\xca\x26\x7b\x97\x9b\x1f\x03\x0d\x13\x44\xa6\xe8\xa0\x61\x53\xdc\xd4\x95\x4a\x2c\x9f\x02\x30\xb4\x2c\x58\xce\x1e\x0c\x09\x53\x80\x1f\xa0\x08\x6d\xa5\xbc\xb1\xcb\xd2\xd4\xa6\xe0\x06\x2a\xf7\xdc\x1c\x21\xb0\xbb\x20\xa6\xd2\x2f\x3c\xeb\x55\x91\xa2\xca\x15\x5f\xac\x4f\x16\xb6\x01\x32\x55\x64\x18\x83\xbd\x34\x04\x10\xd2\xe8\xc0\x41\xde\x82\x4d\x73\xa7\x88\x25\x25\x28\xf1\x0b\x10\x18\xf1\x0e\xd9\xb2\xd8\x79\xd8\x28\xba\xc4\xab\x80\x99\x59\x9a\x3b\x85\x4c\x46\x45\xc5\xdf\x72\xc9\x78\xd6\xb2\x62\xde\x64\xba\xc6\x49\xbb\x91\x5b\x80\xea\x96\xed\xe0\xe5\x02\x39\xcc\xbc\x10\x0f\xbe\x97\x59\x95\x87\x3e\xa8\xa5\x01\xee\xc1\xf2\xd0\x81\x23\xb5\x4c\x13\x5e\xd6\x1f\x67\xc4\x3f\x6c\x09\x5f\xf2\xd6\x0d\x03\xa7\x28\x30\x86\x89\x79\x2d\x4c\xb8\x07\xdf\x4e\xce\x12\x50\xd4\xd9\x7c\x52\x59\x67\xed\xf2\xf7\xe7\x89\x9c\xd2\xe4\xf9\x8b\x16\xfd\xd3\x2f\x03\x80\x0f\x30\x19\x3b\x45\x23\x3d\xcb\xac\x62\x26\x87\x65\x34\x77\x6a\xd6\x58\xe9\xa6\xdc\xe8\xb6\xbd\x6c\x99\xad\xbf\x44\xf4\x4f\x03\x11\x21\xb0\x69\x14\x12\xc8\x11\x1a\xce\x16\x55\x3e\xe5\x95\xad\x21\x1c\xc5\xd8\x9d\xb4\x7f\x82\x05\xab\x32\x97\x4f\xd5\xdb\x82\x69\x55\x8f\x18\x0d\x3b\x0f\xf5\x32\x54\xbb\x35\xd9\x91\x40\xd8\xc2\xb2\x7a\x6d\x18\x2f\x16\xa8\xaf\x05\xda\x55\xbc\x58\xc9\xde\x67\x38\x07\xb1\x76\xce\x88\x73\xbe\x62\xc2\x26\xcb\x6b\x0e\xdc\xab\xe7\x23\xbd\x71\x3b\x1a\x49\x1b\xf2\xbc\x96\x8f\x90\xfa\x72\xb7\x3d\xc1\x0f\x9c\x4a\x6a\x83\xfd\x72\x2b\x36\x4d\x5a\xc8\x8b\xd9\xc7\xdf\x1c\x2c\x46\x35\x65\xc3\xcb\x67\x13\x18\x58\x43\xbc\x19\x1a\xd0\xa6\x0b\x38\xc8\x0d\x37\xac\xb7\x2c\x2a\xc7\xbb\x7a\xd1\x8a\x2c\xe8\x8a\xb9\x62\xe4\xe0\x01\xb1\xc6\xbf\x5a\x10\x6d\xe6\xd5\xdf\x27\x5c\x3b\xf5\x9b\x72\xda\x43\xe8\xdd\x72\x54\x16\x91\x1b\x01\xa5\x15\x2b\x02\x0d\xd3\x98\xcc\x6c\x7c\x32\x72\xe9\x34\x3f\x9d\x8e\x6a\x73\x35\xe2\xd3\x65\x57\x9b\x6b\x87\xe3\xd3\xb1\x82\x78\xb5\x71\x17\x1f\x99\x2e\xd5\xc4\xf1\x79\x4c\x4d\x71\xf7\x74\x3d\x90\xbb\x33\x97\x97\xe5\x47\x2d\xc7\xb2\x1b\x7f\x65\x4f\x26\xb9\x61\x1e\x71\x41\x2c\x6c\x04\x0c\x95\x4f\x75\xc2\x0c\xaf\x8c\x02\x97\x1d\xab\xb9\xcf\x82\x5b\x6a\x3c\x2a\xdd\xf6\xac\xae\xd2\x7f\x0d\x78\x26\x7b\xc5\x8d\x6d\x23\x2b\xed\xc4\xb6\x03\x59\x59\x80\xc4\x6c\xf5\x4e\xcf\x3d\x21\xe4\x45\xcb\x31\x2c\xf4\xfc\xc8\x6a\x2a\x97\xc1\x56\x2f\x98\x62\x24\xa3\x62\xce\xd4\xa1\x53\xdb\x41\xa6\xdb\xc6\x04\xab\xf8\x54\x12\x2f\xd9\xab\x03\x66\x21\x84\xb2\x72\x10\xb0\x3a\x30\x3b\x4c\x0b\xaf\x3c\xc3\x3d\x40\x06\xae\x2b\x06\x6b\xc5\x00\xd8\x74\x27\x0c\xd6\xb2\xf6\x12\xbd\x6d\x60\xb0\x09\xe2\xb0\x89\xc5\x62\x13\xc4\x63\x13\x83\xc9\x1a\x79\x9e\x1e\x97\xc1\xd3\x09\x97\xa9\x47\x48\xc9\xed\xc2\x71\xa3\xa6\xaf\x7c\x82\xc2\x31\x79\xae\x18\x73\x2a\x32\x40\x65\x74\x99\x26\x8c\xa8\xb5\xd0\xf4\x21\x94\x65\xd3\x7f\x26\x93\x46\xd9\xda\xf2\x90\x75\xb2\x73\x73\xdf\x4e\x33\xe6\x89\xd6\x32\xdb\x16\x99\xcd\x75\xbb\x94\x9a\xc1\xd8\xe6\xf4\xb4\x00\xc1\x86\x7f\x38\xa3\x41\x0b\x55\x40\xf0\x78\xd4\xa4\xb9\xf7\x29\x4b\xe4\xfd\x8b\x83\xea\x94\x3d\x60\x23\x54\x6d\xc9\x67\x67\x7c\x6e\x81\x03\x2a\xc3\x40\xcd\x39\x5e\x30\xa2\xef\x25\x9c\x35\xc8\xa1\xe3\x7e\x43\x04\x61\x88\xd0\xba\x4c\x4c\xdd\xb2\x77\x57\xc2\xad\xde\xf9\x28\x95\xea\x57\xe6\x49\x49\xb8\x1a\x54\x2d\xd8\xf6\xed\x34\xe1\x7e\x21\x13\xbb\x49\x47\xb0\x45\x93\x49\x49\x90\xff\x08\xd8\xe5\x77\x0b\xaa\x9e\x2f\xd7\xb7\xe0\x3c\xf8\x02\xf0\x8e\x45\xf2\x6d\xd7\xd9\xe6\x59\x77\x5a\x08\x38\x64\x38\x3f\x74\xed\x28\x23\x4b\x62\x33\x6e\xc7\xf3\x06\xfd\xc5\x12\x12\xd8\x02\x96\x46\x9b\xd2\x94\x25\x30\x5d\x37\x53\x54\xa2\xda\x25\x75\x3e\x18\xb8\xe4\xda\x15\x6f\x2f\xca\xcc\xa2\xae\x5c\x44\xf9\x34\xaf\xb7\x58\x52\xdb\x72\xda\x2e\xb9\x80\x93\x87\xf1\x3e\xc8\x4e\x59\x55\x42\x02\xa8\xd5\xa6\x80\x07\x5b\x71\xb1\x92\xf6\xc9\x0b\x29\x06\xd6\x17\xc7\xda\xc3\xc8\xfd\x82\x65\xcc\xea\x45\x66\x32\x5b\x32\x5f\x49\x01\xae\x3f\xd8\x7b\x07\xa5\xdd\x36\x68\xbc\xac\x31\x4f\x20\xc4\x57\x5d\x06\x77\xe0\xbd\xaa\x5e\x83\xbf\x1c\x0f\xb6\x81\x96\x9b\xfb\x0c\xa8\x3c\x29\x49\x65\xec\x62\xbb\xd0\x04\x52\xa0\xe8\x0e\xfe\x8d\x85\x87\x63\xe3\x69\xeb\x1c\xcc\xe0\x1b\xe4\xeb\x9f\xed\x40\xa7\x2f\x07\x37\x79\x0c\xc8\xdb\xbb\xac\xd3\x34\x07\xc0\xde\x09\xda\xc4\xf3\x29\xbd\x5f\x48\x85\x6a\x49\xb3\x7c\xcb\x02\x1a\x06\xb8\x35\x4a\xa0\x0b\x73\x47\x76\x8a\xbe\xe8\xc8\x29\x91\xae\xdc\x12\xd9\xbe\x5f\xad\xfc\xd2\xbf\xef\x4e\x57\x64\xa5\x52\xeb\x86\x78\xbf\x48\x25\x5f\x53\xae\xa9\xfa\x94\x66\x08\xb0\x2e\xdc\xf8\x56\x85\x52\x16\xb1\xf9\xdd\xd9\xda\xbc\x6f\xef\xf4\xf8\xf2\x74\xbf\x43\x70\xca\x6e\x1a\xad\xb6\x50\x1e\x0b\xc5\x9d\xe4\x63\x8b\xa5\x9b\xf0\x45\x37\xae\x1b\xbf\x44\x03\x71\x81\x2f\xbd\x44\x87\x6e\x20\xb3\x29\x5e\xe2\xfc\x0e\x96\x99\x46\xa6\x7b\xf3\x78\x75\xe5\xba\x03\xe6\x2c\x07\xbf\xe7\xea\xc5\x26\xfb\x8d\xee\x34\x66\x36\x6d\xba\xb2\x43\x98\x15\x94\xa2\x76\x33\xd9\x57\x20\xdd\x5a\x89\xd9\xc1\x3b\x2a\xdc\x42\x0a\x60\xb4\xc1\xa2\x6a\xd9\x32\x37\xc7\x1d\xd6\x03\x9f\x75\x3f\xd8\xb6\x28\xb4\x80\xf9\x92\x19\xf6\xd7\x29\x7b\x65\xb6\x49\xbb\x71\xea\xa8\x4a\x31\x80\x70\x9a\xd0\x16\x6b\xa5\x39\x4f\x66\x03\xfd\x35\xa2\xde\xa8\x80\x82\x14\xce\x91\xc0\x3a\x76\x34\xb3\x2c\x3b\x91\xcd\xdd\xa9\x66\x31\xcd\x32\x18\x18\x4d\xf2\xdd\xe3\x84\x88\x5b\x9b\x67\x83\x7f\x22\x24\xd0\x2d\xe6\xb9\x66\x69\x18\xf9\xbc\xbd\x3e\x7c\x1f\x4e\x53\xba\xfd\x20\x96\xb5\x2b\x84\x9b\x9c\xb0\x99\x76\xe5\xee\x0a\x1a\x02\xb7\xa7\x83\x92\x86\xf8\x17\x11\xea\x6d\x18\xf1\x7c\x5f\x95\x33\xfb\x45\x31\x68\x7b\x9b\x85\xd6\xa1\x2a\x64\xf8\x54\x83\x69\xc7\xe3\x51\x69\xaf\xaf\x75\x62\x30\xa7\xc4\x34\xad\x9f\x7a\xe1\x6f\xfe\x45\xfe\x0b\x4b\xa6\x17\x32\xde\x81\x32\x7c\xc4\x0f\x9e\x96\x6b\xc7\x25\x23\x52\xc7\x75\x7b\xae\x72\xa6\x4f\x2c\xe1\xc3\x5a\x33\x41\x3a\xbe\x8e\xc5\xd8\x8b\x9b\xed\x73\x36\x9c\x0f\xc9\x87\xb3\xf1\x01\x19\x7d\x1a\x1f\x10\xa6\xa3\xe1\x0b\xf2\x31\x4f\x34\x4f\xdb\xec\x1c\x16\x44\x40\xf7\xaf\xae\xf7\x8d\x18\x36\x87\x68\xc1\xdf\x96\xdd\x2a\xa5\x7a\xb1\xc3\x3e\xee\x8f\x4c\xfb\xaf\xb1\x8d\x6d\x3b\xd8\x8e\x51\xfc\x1d\x84\x69\x0e\x8b\xad\xc2\x65\xba\xbd\xe8\xba\x19\x84\xb0\xe1\xfc\x88\x0c\x08\x7b\xa0\x91\x3e\x22\x87\x33\x29\xc9\xc0\x3a\x89\x1d\x91\xc3\x29\xcd\xc8\xe5\xd5\xf8\xec\x08\x1d\xd0\x98\xd0\xd9\x9a\x2c\xdb\xd8\xf3\xab\xcb\x8b\xbf\x58\xcc\xb9\x26\x8c\x83\x02\x86\x92\xc9\x1e\x0c\x82\x5a\x64\xf3\x27\x8e\xe2\x74\x1d\x43\x32\x6e\x5b\xfe\x8a\x26\x3c\xa6\x85\xb2\x0f\x02\x2f\xb0\xa2\x95\x0e\x95\xb0\x2a\x9f\x2e\x67\x6e\x23\x3e\x64\x3c\x1e\x19\x08\x7b\x04\x80\x0a\x04\xbc\x01\x74\x77\x5a\x75\xae\xc1\x3f\x76\xca\x1c\x20\xac\x1e\x71\x26\xb3\xe5\x91\x03\xfb\x24\x7f\xf9\xf2\x4d\x64\x3a\x86\x7f\xb1\x23\x9b\x35\xa7\x93\xda\x0b\x8f\x1a\xcc\x0a\xba\x33\x08\x23\x2b\xb6\xb0\xec\x7a\x60\xe1\xfd\x45\x23\x60\x1f\x2d\xae\x26\x3b\x24\x1e\x40\x00\x3c\xad\x18\x69\x97\xfe\x94\x9d\x76\xcd\x0c\xd0\x01\x21\xb5\x77\xc5\xa3\x65\x47\x9a\x79\x7e\xf2\x71\xd4\xd5\x03\x04\x90\x51\xfd\xdc\x7d\x2c\xe5\x55\x21\x33\xb3\xb5\xc1\x86\x58\x4b\x0d\x86\xb4\x02\x86\xad\x21\xd9\x20\x5f\xa1\x87\xfe\x36\x4f\xcb\x67\x55\xfb\x54\x51\xcd\xae\xb0\x9a\x9b\x71\x9a\x58\x5b\xb0\xa7\x9b\x46\xab\xb7\x0d\x7a\xca\x4e\x27\x31\x6a\xce\x70\xb2\x49\xe7\x81\x33\x91\xc2\x87\x12\x00\x25\xc2\x9a\x8e\x3b\x08\x6b\x10\xb4\x64\x00\x8c\x5e\xf9\xe0\xa2\x0a\xf5\x32\x7d\x58\x59\xeb\x25\x98\x26\x35\x8b\x16\x82\x47\xdb\xd9\xb7\xaa\x0f\xa8\x45\x51\xfd\xcf\x97\xa9\xf4\x32\x22\xdf\x19\xa6\x3c\xd9\x57\x84\xa7\x1a\xe3\xdc\x66\x3c\x63\xf7\x34\x49\x5a\xa6\x8a\xd8\xc2\x2a\x65\x73\x85\x8e\x53\x4c\xcc\x24\xc6\x0b\x58\x17\xbd\xf6\xab\xd1\x6a\xc3\x83\x66\x5f\xbe\x19\xa6\x9b\x21\xfa\x92\xb1\x07\x30\x5c\xb5\x99\xc0\x70\x0f\xe4\x8c\x7c\x87\x5e\xde\xb0\x42\xe8\xeb\x2c\x5a\x48\x72\x8d\x44\xdb\x96\xa4\x4b\xb9\x98\xab\x66\x1b\x58\xa7\xf5\x76\x40\x06\x69\x38\xdc\xa6\x06\x20\xe7\x23\x17\x76\xf3\xc5\x8e\x61\x15\xe5\x16\xf2\xe3\x3e\x94\x47\xce\x32\x56\x0b\x85\x0e\x10\xa8\x09\x9c\xa8\x59\xdc\x47\xdb\xda\x73\xeb\x2d\x72\xb6\x41\x3c\x48\xb6\x2c\x2b\x3a\x85\x82\x58\xaa\x8b\xfb\x22\xa4\x01\xca\x08\x2c\x75\xd3\x9c\xff\xbd\x6b\x56\xb9\xf2\xe9\x4a\x96\xaa\x75\x25\xcb\xf9\xd8\x80\x1f\xb4\xda\xdd\xb1\xb5\x3d\xda\x29\xe5\x36\x67\x5c\xf3\xf0\x46\x64\x25\xec\x41\x67\xb4\x02\x53\x3a\x95\xb9\xee\x40\x48\x9e\x4a\x72\x14\x52\x9b\xdb\xd7\xed\x64\x5c\x62\xe3\x16\x8f\x1e\x68\xd2\xec\x59\xd7\x13\x8c\x9e\x60\xfc\x6b\x13\x0c\x21\xb5\x63\xab\x6a\xc1\xd2\xec\x75\xd3\xd1\xdf\xa6\x9b\xa7\xcd\x96\x43\xa8\x63\xf9\x5a\x7c\x42\x6d\xb3\x7a\x80\xb5\xdc\xe3\x0e\xae\x3d\x8f\x73\xea\x49\x7f\xab\xc0\x9d\xec\xf9\xb0\x7d\x42\xda\xbf\x65\xd8\x02\x0d\xaf\xcf\x09\x38\x98\x0c\xe1\xd4\xf3\xac\x49\x33\x6f\xbd\x73\xed\x3e\x9f\x41\xa8\xd1\x35\x44\xca\xb9\xa8\x2f\x54\x9b\x3f\x9f\xb2\x88\xe6\xca\xfa\xc4\xb5\x98\x12\x8a\x29\x46\x2c\x83\x3e\x0a\xbf\xba\x17\xa8\x8a\xff\x68\xc3\xbf\x2a\x5e\x82\x6d\x24\x16\xdd\x07\x8f\x7c\x0f\xb8\x03\xdf\xff\x0d\xff\x00\x49\xa5\xf2\xd7\xea\x6d\xf9\xf7\xcd\xc9\x18\x7f\xad\x1f\xc6\xf6\x78\xc1\x35\x73\x4e\x76\x54\xb8\x03\xe2\x8c\xb2\xe0\x6a\x48\x5e\x0d\x5e\x7f\xfb\x6d\x83\xca\xff\xeb\x1d\x7b\x74\xc4\xe8\x46\x8d\x6f\xd0\x9d\xb3\x5b\x54\x5a\x43\xf5\x7f\x37\x6a\x1f\x90\xd6\x07\xa4\x75\x30\x7b\xf6\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xd5\xad\xb8\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x6e\x25\x3d\x2e\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xeb\x03\xd2\xf0\xe9\x03\xd2\xfa\x80\xb4\xcd\xa7\x0f\x48\xeb\x03\xd2\x8a\xa7\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x60\xa7\x7d\x40\x9a\x07\x8b\x3e\x20\xad\x0f\x48\xeb\x03\xd2\xaa\xcf\x2f\x19\x90\xd6\x50\x5e\x81\x90\x81\xcd\xe2\x1b\xfa\xad\x4b\x31\xf6\x20\x9f\x60\xef\xc6\x23\xd2\x77\x57\x6f\x55\x9f\xbf\xbb\xcf\xdf\xdd\xe7\xef\xee\xf3\x77\x87\xa7\xd7\xe7\xef\xee\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xf2\xe9\xdd\xa5\xca\xa7\x77\x97\xea\xdd\xa5\x7e\x53\x2e\x06\xbd\xbb\x54\xef\x2e\xd5\xbb\x4b\xf5\xee\x52\xc1\xc6\xff\x62\xb8\xac\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xc0\xd3\xbb\x4b\xf5\xee\x52\xc5\xd3\xbb\x4b\xf5\xee\x52\xbd\xbb\x54\xb0\xd3\xde\x5d\xca\x83\x45\xef\x2e\xd5\xbb\x4b\xf5\xee\x52\xd5\xa7\xcf\xdf\xdd\xe7\xef\xee\xf3\x77\x57\x9e\x3e\x7f\x77\x9f\xbf\xbb\xcf\xdf\xdd\x69\x84\x3e\x7f\x77\x9f\xbf\xbb\xcf\xdf\xdd\xa7\x63\xed\xd3\xb1\xf6\xf9\xbb\xfb\xfc\xdd\x7d\xfe\xee\xfa\xf9\xf7\xf9\xbb\x7b\x82\xd1\x13\x8c\x3e\x7f\x77\x9f\xbf\xbb\xf2\xf4\xf9\xbb\xfb\xfc\xdd\x1b\x4f\x9f\xbf\xbb\x5e\x80\xec\xf3\x77\xf7\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xe6\x3f\x7d\x40\x5a\x1f\x90\xf6\x9b\x0a\xe2\xe8\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\x0b\x36\xfe\x17\xc3\x65\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\x05\x9e\x3e\x20\xad\x0f\x48\x2b\x9e\x3e\x20\xad\x0f\x48\xeb\x03\xd2\x82\x9d\xf6\x01\x69\x1e\x2c\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xab\x3e\xff\xde\xf9\xbb\x21\x29\x77\x5b\xf6\xee\x2b\xd3\xa8\x01\x7f\x57\x37\x5d\x62\xeb\xe0\x3c\xd1\xed\x0e\xf3\x26\x83\xa2\xc4\x74\x0a\x96\xc5\x78\x88\xba\x93\x42\xf3\xbb\xe0\x73\x23\x88\x4e\xf6\xa0\xbf\xc9\x1e\x90\x4b\xdb\x36\xd4\x35\x9d\x19\x01\x4a\x03\x83\x06\x1d\x24\xf2\x9e\x65\x38\x1b\x74\x63\xf4\x26\xa7\x88\x5c\x72\xad\x0d\xde\xe5\x2e\x02\x26\xd4\x69\x24\x85\xe2\x98\xb6\x1c\x75\x7c\x93\x3d\x2e\x66\x5c\x70\xcd\x26\x7b\x64\x40\xc0\x79\xce\x5b\x8e\xc3\xea\x76\x9e\x24\xa1\x4a\x0f\x49\xb1\xb2\x20\x48\xcc\x5c\x79\xcc\x84\xe6\x11\x4d\xec\x04\x37\xfb\xe1\x82\xd0\x24\x5d\x50\x91\x2f\x59\xe6\xb5\x83\x8c\xe1\xa1\x5e\x2d\x2e\xb7\xea\x28\xf4\x10\x09\xca\xa7\x78\x36\x44\xbe\x9c\x6e\x6b\x0a\x1b\xd8\xc6\x0d\x22\x3f\xf6\xd5\x34\x78\x50\x3c\x65\x4d\xae\xac\xcc\xc9\xa3\x3b\xfc\x3f\x99\x07\xcf\xbf\x99\xf2\x86\xd0\xed\x01\xd7\x86\x6b\x78\x60\xd1\xd2\xd1\xbc\x7a\xd5\x41\x39\x0f\xc3\x3a\x24\x89\xbc\x47\x54\x80\x1a\xa4\x42\xa7\x82\x8c\xdd\x1f\x51\xbd\x80\xb7\xfd\x36\xe1\x9a\x65\x14\x24\xfb\x50\xcf\x93\x09\x19\x60\xb8\x92\x39\x28\xcb\x94\x66\x5c\x49\x71\x40\x20\x66\xd1\xa9\x05\x5c\x97\x33\x29\xc9\x94\x66\xa0\xab\x28\x86\xfb\xdd\x8e\xc3\x95\xe3\x19\xca\xce\xfe\x9e\xd3\xe4\x0f\xe8\x61\xeb\x38\x55\x3e\xb3\x2c\x2a\x57\xd0\xc6\x69\xde\x8b\x21\xc3\xf7\xf2\x27\x98\x07\x2d\xfd\xc2\xa6\xe5\x3f\x23\xfc\xe7\x70\x38\x24\x3f\x7b\x33\xd0\x59\xce\x5c\xa0\x4c\xe1\x6b\x8a\x63\xfc\x99\x84\x7d\xdb\xad\xc9\xa1\x65\xa8\x72\xae\x66\x01\x5c\x74\x98\x5c\x68\xb0\x1d\xe7\x0b\x83\x35\x4d\x30\xbc\x25\xde\x9c\x17\x54\x3d\x87\xfe\x6e\x0d\x71\x79\x51\x0e\x3d\x2e\x46\xa6\xba\xdc\x1d\x6f\x67\x7e\x07\x87\x34\x88\xf3\x6d\x17\x85\x7a\x52\xce\xa0\x2d\x68\xa7\xe0\xbf\xf9\xcb\x97\xaf\xdf\xe2\xff\xe3\x2f\xc5\x37\x37\x0b\x99\xe9\x41\xc4\xb3\x28\xe7\x1a\xb8\x2a\xfb\x51\x68\xa0\x7f\xfe\xb3\xf1\x6b\xb0\x63\xe8\xe7\xd8\xe6\x45\xd1\x28\xa5\x19\xb3\x1c\xf9\x3c\x93\x79\x6a\x38\xf2\xc9\x44\xd3\x24\x79\x1e\xb4\x47\xd9\x94\xf6\xe8\x95\x52\xe0\x0b\xd7\x9b\x3b\xc3\x34\x49\x3c\x15\x13\x5c\xd0\x0b\x3c\x0f\x28\x43\x85\xc5\x23\x6a\xae\x36\xe2\x19\xe7\xa9\xe9\xa3\x4c\x75\x40\x06\x07\xe4\x16\xe0\x70\x38\x24\x37\x70\xe5\x88\xbd\x72\xb5\x9d\x2e\x65\xc6\x48\x6a\xd8\x7f\xa5\xf8\x8a\x91\x29\xc6\x18\xac\x9d\x7a\xd3\x2a\x9e\x09\x53\x11\x4d\x19\x89\x16\x34\xa3\x91\x66\x99\x9d\xf6\x19\xba\x6a\x07\x2f\xc3\x73\x40\xfc\x4b\x1a\xb3\x41\x9e\xe2\xb1\x50\x2f\x0a\x74\x04\x81\x6d\x16\x75\xdc\xb3\xa9\x11\x1c\x98\x45\x1e\xfe\x8e\xc7\x2c\x4d\xe4\x7a\xc9\x44\x10\x9d\xda\xef\xd3\x4c\xc6\xee\x90\x42\xbf\xe6\x4e\x01\x4e\xca\xa4\xd0\x4c\xc4\xde\x51\xa7\xd1\x9d\x7d\xf1\xb3\x69\x5e\xf6\x4f\x7e\xf7\xc7\xba\x1b\x10\xb3\x95\xeb\xfe\x77\x64\xe3\x16\x84\x50\x59\x13\x47\x55\x55\x06\x36\x98\xab\x1b\x34\x81\xcd\x7a\x8b\x19\xfa\xaf\x96\x64\x21\xb4\x2c\x47\xb1\xf0\x8c\x5a\x85\x02\x96\xe7\x90\xc2\x4d\xd2\xe9\x0a\x42\x66\xe7\xa6\x35\x82\xd1\xa1\x03\x4d\x05\xdb\x04\x17\x31\x8f\x40\xf4\xbc\x5f\x40\xc0\xb4\xcf\xc8\xfa\x5e\x59\x56\xca\x09\xe2\x29\x73\xef\xa4\x2d\xe0\x71\x60\xff\x9a\x4a\xbd\x18\x12\x74\x94\x04\x6a\xf2\x90\x1a\x26\x45\x27\x6b\x4f\x96\x7a\x0e\xc5\x47\x82\x1e\xb0\x1e\x1e\x15\x24\xca\x98\x8d\xcf\x50\xf6\x76\xcb\x8c\x08\x9e\xbc\x38\x70\x31\x16\x31\x9b\xd1\x3c\xd1\x8a\xe0\xb2\x0c\xe8\xb2\xb8\x86\xa5\xd6\x92\xdc\x1b\x5c\x79\x6e\x05\x37\x33\x89\x33\xfb\x4f\x73\x1f\x2d\xe6\x2c\x2a\x70\xa0\xbf\x1f\xa8\xd6\xed\x30\xa1\x5e\xb9\xc2\xdb\x35\x20\x7f\xb5\x7c\x91\x99\x8a\x1b\xe3\x6f\x07\x96\x38\x18\x2e\x13\xcc\x06\x6e\x48\xac\x93\xf2\x9c\x8b\x28\xc9\x6b\x67\xbc\x60\x24\xa2\x86\xf3\x84\x0e\xca\x6e\x08\x92\x67\x21\x8b\xc5\x40\x77\x2f\x02\x33\x39\xab\xad\xbf\xb2\x39\xb7\xca\xc4\x0c\x4a\xda\xec\xbe\x7e\x9d\xc1\xe3\xb1\x39\x87\xad\x01\x41\x83\x15\xd8\x0d\x2b\x51\x07\xf1\x82\xc0\xa3\x55\xe5\xf5\x33\x46\xcd\x3d\x8a\xee\x08\x9d\x53\x2e\x0e\xec\x69\x40\xb3\x47\x72\x4f\xd7\xca\x7a\xc1\x07\x4f\xb1\xf3\x56\x40\x37\x85\x03\x22\xd8\x8a\x65\x95\xf3\x16\x94\xee\x3b\x96\xf7\x29\xa1\x40\x18\x10\x8d\xc2\xa0\x97\x4a\xa5\xf8\x34\x71\x03\x97\x7e\x58\xe6\x83\x9b\x94\x45\x61\x79\x0f\xd7\x56\xef\x99\xd6\x2c\x59\xd6\x0a\x6d\x61\x59\x6f\xfb\x2d\xd0\x8c\xd8\xb7\xb7\x2b\x2d\x33\x3a\x67\xee\x95\xd2\x54\xe7\x08\x18\x34\x39\xb1\xf8\xd2\x33\x06\xdc\x71\x11\x1b\x3c\xe4\x40\x9a\x26\x79\x46\x93\xf2\x4d\x24\x05\x5a\x80\xd5\x11\xf9\xeb\xdf\xcc\x1b\xd3\x3f\x8b\x6d\x84\xa7\x7d\x3b\x11\x83\xc1\x60\x22\x68\xca\x5d\xa0\x28\xa1\x29\x67\x0f\x9a\x09\x68\x35\xbc\xfb\x4e\x0d\xb9\x3c\x5c\xbd\x9a\x08\x1c\xf1\x24\x57\x5a\x2e\xaf\x19\x9a\xb2\x4e\x19\x88\x5b\x80\xa7\x2b\xe1\x98\xa0\x80\x21\x02\x5d\x5e\x15\xd3\x6a\x18\x65\xf1\x30\xcd\xa4\x81\x40\x04\x48\x67\x28\xb3\xf9\x44\x18\x6c\x06\x5f\x00\x8b\x72\x44\x6a\x9a\x55\x2d\x21\x38\x95\xd2\x2f\x17\xdf\x26\x5c\xe9\x3f\x6d\xfc\x72\xc1\x95\xae\x02\xc8\x9b\x93\x85\x3b\x17\xf3\x3c\xa1\x99\xff\x13\xc0\x2b\x92\x66\xd3\x0a\xed\x09\x48\x72\x2b\x07\x3e\xf3\xc7\xc0\x2e\xd3\x40\x07\x7a\x8a\x16\x6c\x59\x86\xa3\xca\x94\x89\xe3\xd1\xf9\x8f\x6f\x6e\xaa\xef\xb7\x1d\x5f\x9d\x7b\xb1\x75\xe1\x2a\x87\x1c\xb0\xbf\xe7\x7c\x45\x13\x83\x50\xed\xb9\xde\xf4\x49\xf6\x0e\x6f\x8d\x7a\xcc\xdb\xdd\xea\x59\xad\x66\xad\x30\x53\xb5\xde\x01\xe8\x4d\x8f\x93\xb1\x2b\x66\xb1\x5d\x1e\xce\x03\xb0\x85\x45\xf5\x34\xa4\xf7\x90\x33\xa0\xee\x70\xe2\x87\xc0\x02\xb0\x4c\x39\x21\x31\x92\x62\xc5\x32\x4d\x32\x16\xc9\xb9\xe0\xff\x28\x3a\x57\xce\x5f\x01\xaa\x77\x6d\x11\x0a\x2e\x34\xcb\x0c\xb3\x00\x57\x1d\xb5\xb2\x4b\xba\x26\x19\x33\xc3\x90\x5c\x78\x1d\x3a\x6f\xa9\x8f\x86\x49\xe4\x62\x26\x8f\x20\x9f\x90\x3a\x3a\x3c\x9c\x73\xed\x0e\x76\x24\x97\xcb\x5c\x70\xbd\x3e\x04\x0b\x2a\x9f\xe6\x5a\x66\xea\x30\x66\x2b\x96\x1c\x2a\x3e\x1f\xd0\x2c\x5a\x70\xcd\x22\x9d\x67\xec\x90\xa6\x7c\x00\x73\x17\x70\xb3\x86\xcb\xf8\x59\x66\x6f\x82\xda\x0f\xe1\x81\x6d\xf4\x01\x47\xb7\x69\x1b\xcc\x09\xb6\x41\xb8\xc8\x05\x23\x19\x2f\xa0\xed\x5c\x45\xae\xcf\x6e\xc6\xc4\x8d\x1e\x0c\x58\x46\xe0\x97\x5f\xaa\x72\x1f\x0c\xd0\xb8\x98\x39\x7e\x05\x94\xd6\xbe\x78\x8f\x24\x33\xe1\x01\xd6\x55\xe5\xd3\x25\xd7\xca\x4b\x44\x23\x87\xe4\xa4\xd0\x66\xe7\x69\x4c\x35\x8b\x87\xe4\x5c\x90\x13\xba\x64\xc9\x09\x55\xec\xab\xef\x02\x30\x6d\x03\x03\xdb\xae\xfb\x50\x13\x3c\x5e\xa7\xaa\x2b\xd0\x54\xcd\xb6\x95\xf7\xd1\x50\x9c\x6a\xf4\x92\x0b\x76\x2b\xc3\xcb\xe9\x16\xee\x2a\x1f\xb7\xa5\x1b\x44\xa9\x41\xf5\x5d\xe3\x67\xbf\x55\xe2\xcf\xb9\x02\x9e\x8f\x0a\x4c\x87\x52\xef\x94\x25\xd2\x9c\x2a\x69\x75\x2f\x2c\x64\x30\xad\xa7\xd3\xff\x23\x28\x25\xd0\x49\xf8\xbf\x67\x36\x44\xed\x88\x20\x81\x3a\xd4\x6c\x99\x02\xbe\x3a\xc4\x17\xe0\x5d\x57\x7a\x64\x64\x6a\x90\x4d\x69\x34\x5c\xd3\x65\x32\x11\x3f\xfd\xc4\x67\x84\xfd\x9d\x0c\xaf\xdf\x1d\x9f\x9c\x48\x31\xe3\x73\x32\xd9\x33\x0d\x26\x7b\x3f\xff\x6c\x7a\x3f\x07\x56\x96\x11\x4a\xa2\x24\x57\x9a\x65\x99\x4c\x58\x51\x70\x6e\xb3\x6f\xd0\x6d\x49\xc1\x84\x3e\x30\x1f\x43\xc9\x3a\xc0\x20\xda\xa1\xd2\x9a\x49\x39\x39\xa9\x74\x57\xb0\x04\x1e\x07\xbd\x96\x09\xab\x32\x06\xb0\x08\x9a\xeb\x85\xcc\xf8\x3f\xd0\x55\xcb\xe3\x0e\x02\xd4\xbf\x66\xe0\x89\x00\xc6\x14\x1a\x3e\x23\x97\x32\x46\xad\x01\xb9\xb7\x1e\x59\x5a\x92\xa5\x14\x1c\x3c\x8f\x65\x46\x62\x96\x30\xbc\xe7\x48\x72\x69\xca\x3f\x18\x56\xc1\xec\x8b\xd9\xc2\xbf\xe1\xae\x16\x78\xb8\x38\xa2\x03\x22\x4c\xdf\xf8\xe7\x8a\x65\x53\xff\xa7\x7b\xdf\x3a\x31\x80\xab\x51\xfe\x35\xc7\x5b\xf9\x8c\x8c\x5c\x86\x32\x6f\x6e\x65\xe2\x28\xf6\xc0\x95\x86\x7a\x8e\x54\x91\x94\x66\xf6\x72\x1d\x7f\x24\xe5\x6a\x77\x9f\x74\x2a\xe3\x9a\x39\xcf\x99\xae\x9b\x71\xb1\x9c\x67\x38\x81\xa2\x63\x1b\xbf\x26\x78\x0a\x05\x31\x63\x23\x02\x09\x04\x8c\x8d\x9b\x4b\x98\xb6\x96\xea\xcd\x69\x86\x59\xb1\xa6\xb9\xf3\x34\x95\x32\x51\xfe\x0b\x43\x7a\xb2\x15\xe6\x96\x08\x2f\xcb\xad\xe4\xcb\x87\x9f\x26\x32\xba\xa3\x33\x64\x49\x59\x65\x1a\x74\x09\x3f\x6e\xbc\x5b\x50\x11\x27\x75\x47\xa4\x01\xdc\x20\x50\xb3\xf2\x6f\x24\x7a\xe5\xdf\x08\xd5\xe0\xf6\x6c\x5d\xc3\x25\x15\x74\xce\x14\x59\x48\xa5\x3d\xd7\xad\x27\x01\x48\xa5\xcf\xaf\xb8\xca\x67\xe4\x92\xb1\x18\xf4\x06\x46\xf0\xd4\xd2\xb6\x75\x18\xcc\x4b\x05\xf2\x54\x4b\x0b\xf4\xdc\x61\x81\xf5\x4b\x7a\x06\x46\xde\x93\x72\x63\x10\x37\xe7\x59\xa1\x39\x41\xe5\x01\xd7\xa6\x47\x45\x0c\x0b\x14\x41\x93\xa7\x59\x8f\x39\x17\xde\xb1\x88\xfc\xd1\x83\x2b\x7b\x86\xe2\xba\x99\x87\xbc\x17\xde\x5c\xb6\x96\xfd\xcc\x2e\x9b\x50\xa7\x80\x21\x7c\x46\x84\x14\x0c\x51\x98\xaa\x83\xcf\x33\xb7\x8d\x48\x61\xeb\x4e\xc2\x33\x3c\xdf\x80\x13\xa3\x45\x25\x88\xa0\x38\xfa\x40\x39\xb7\x08\xcc\x3b\x2e\x50\x67\xf3\x95\xe8\x8c\x4c\xd8\x35\x43\x87\x7c\xb7\x3f\x0d\xfd\x9b\x66\x01\x1a\xd8\x3a\x8c\xca\x81\x5b\x31\x5b\x33\xb0\x1d\x54\x55\x9e\x1d\xfa\xf0\x8d\xfb\x88\x23\xd4\x5a\x69\xb6\xb4\x90\x2b\x58\x8f\x6b\x2a\xa2\x05\xcb\x06\x8e\xa7\x3c\x22\x27\x00\x71\x9f\xd2\x1b\xec\xee\x2f\x01\x1d\x19\x0c\xe9\x42\x65\x1f\x14\x15\xa6\xd1\xdd\x3d\xcd\x62\xe4\x1f\xa8\xe6\x53\x9e\x70\xbd\xee\xc2\xdd\x98\xee\x7d\x8e\xa6\x8d\x63\xf1\x67\x75\x4a\xd9\x52\x8a\x1b\xd6\xc6\xac\x40\xe3\x5f\x88\x41\xa9\xf2\x23\x86\x51\x3e\xb9\x3c\x37\x5c\xe2\x9c\x0b\x22\x00\xaf\x69\x69\xee\x13\x90\xe6\x03\x24\x9e\x28\x7b\xfa\x01\xb3\x8f\xa7\xf3\x1b\xac\x8a\xd3\x2b\x60\xc7\x8d\x48\xed\x19\x71\x91\xc8\x37\x09\x77\xd4\x1e\xb4\xe3\xb3\xd2\x8b\xc7\x16\xae\xb6\x2c\xbf\x53\xf7\xb9\x3c\x4c\xcf\x5c\x5e\x9d\xa5\x73\xa5\xdf\x5c\x45\xcc\x55\x24\x57\x2c\x5b\xbb\x6b\xd2\xb4\xaa\x82\xda\xc0\x7c\x1a\x78\x2f\xd2\xce\x00\x74\x1b\xa8\x7c\xe5\xfc\xdf\xc2\xd8\xf2\x93\x35\x1a\xb8\xe5\x14\x76\x82\xf3\x11\xda\xc8\x68\xbc\x32\x02\x96\x2a\x21\x41\xda\x58\xc5\x40\xaf\xe3\x75\xba\xa0\x6a\x18\x66\x26\xc9\xc9\xf9\xe9\x35\xa1\xb9\x96\x83\x98\x19\x71\x16\x8c\x86\x02\x2e\x3c\x8d\x97\xf6\xb4\x95\x54\x14\x91\x3a\x59\xd2\xf4\x11\x07\x0c\x3f\x36\xdf\x36\x9e\xa1\xdd\x39\xea\x43\x9f\x1c\x6c\x82\xd9\x30\x02\xf6\xfc\x45\x09\xa3\xa0\xc1\x30\x3c\xbe\x15\x78\x3f\x09\xba\xa2\x3c\xa1\x53\x83\x20\x12\x3a\xf7\x00\x95\xfa\x70\x7e\xe6\x2c\x13\x20\x8b\x29\x0c\x2f\x8b\xaa\x24\xd9\xcb\x2f\xc6\x91\xa7\xf5\x13\xab\x0d\xc3\x54\xfe\xf3\x26\xa9\x32\x70\xf6\xfc\x14\xfd\x28\x7d\x5e\x73\xaf\xed\x55\xe2\x62\xde\xe5\x4a\xd8\xd6\x69\xc5\xcb\xa4\xa3\x3c\x62\x0f\xd8\x74\xed\xc0\x61\x26\xee\x14\xf6\xe5\xfa\xbf\x18\xfb\x6c\xa0\x1b\xef\x36\x39\x2b\x5a\x33\xef\x4e\x36\xd9\xdc\x0d\x34\x9a\xba\xf8\x0f\x19\xbb\xe3\xf3\xb8\x39\x37\x9c\x3d\xef\x04\x15\xa7\xc7\x0a\x92\x8a\xac\x68\xc6\x65\xae\xc8\xc9\xf5\x29\xde\x76\x3c\x4b\x4f\xc4\x8c\x62\xd2\x8a\x19\x4b\xf8\x03\xf6\xeb\xc1\xd1\x7b\x5b\x65\xe7\x40\x62\x99\xa7\x29\x63\x99\xda\xec\x6a\x3a\x4f\xb7\x3a\x2a\xde\x6d\x77\xd3\x49\xee\xaa\x13\x84\x70\xc4\xe0\x29\xdd\xfa\x59\x31\x1f\xe1\xd6\x7e\x13\x6c\x5d\xcb\xb1\xd7\x48\x2a\x8d\x12\x1d\x6e\x0c\xa0\x23\x38\x10\x8f\x10\xe2\xee\xb7\x4f\x4b\xae\x74\xc1\x2b\x8b\xb8\xe0\x7e\x0d\xee\x81\x83\x23\x85\x61\x85\x33\x9d\xa7\x5f\x4b\x60\x6e\x3c\x2d\x9d\x65\x9e\x26\x31\xc7\x5f\xeb\xe6\x02\x03\xab\x22\xb5\xcb\x22\x4d\xb4\xa7\xe3\xf6\x04\x26\xd6\x0d\xe1\x5b\x0f\x3a\x33\xc2\x93\xea\x85\xba\x9d\x97\x31\x18\x3a\x9d\xe7\x89\x14\xc8\x78\x81\xb3\xb3\x73\x12\x05\x24\x93\xa7\xf3\x8c\xc6\x36\x74\x6f\xf5\x7a\xf8\x16\xd9\xc6\x08\x93\xfc\x3c\x23\x53\x46\x32\xb6\x94\x2b\x16\x5b\x07\x49\xf7\x81\xcc\xcc\x0a\x67\x19\x53\x0b\xc2\x85\xd2\x34\x49\x9e\x54\x7a\x6e\xc0\x25\x55\x94\xd4\xf5\x64\x15\x02\xca\xfb\x84\x0a\xc1\x92\x2a\x97\xfe\x8c\x8c\x72\x88\x4d\x03\x40\x78\x06\x80\x45\x3e\x1d\x46\x72\x79\x18\xc9\x8c\x49\x75\x38\xc3\x8f\x0f\xa7\x89\x9c\x1e\x2e\xa9\xe9\xe0\xf0\x54\x46\xf9\xd2\x59\x99\x0e\x41\x34\xb2\xcd\xac\x10\x62\x64\x90\xa7\x96\x0c\xec\x08\xbe\x68\xf0\xb4\x4a\xbc\xa7\x3a\xaf\x35\x47\xf4\x49\x99\xba\x82\xb0\xda\x2d\x36\x52\x3b\x86\x2e\x6e\xef\x75\x29\xc7\x09\x9a\x6c\x88\xc1\x21\x09\xee\xa9\x34\x00\x82\x26\x83\x72\xd3\x9e\x54\xee\x2f\xba\xdd\x49\xce\x17\x98\x36\xb5\x51\xaa\xff\x05\xc4\xf9\xee\x60\xad\xdf\x9a\x5a\x80\x17\xf2\xf3\x57\xd0\xb3\x3c\x2d\xb8\x7f\xfa\x89\x89\xf8\xe7\x9f\x3b\x5b\x70\x80\xae\x38\xf5\x06\xe4\xdb\x58\x52\xc1\x67\x4c\x69\x87\x8e\x95\x77\xcc\xad\xb5\x8f\x65\x07\x84\x2a\x72\xcf\x12\xf8\xcc\xc6\xf7\x96\x5c\x30\x3a\xe7\x38\x39\xdc\xca\x76\x52\x98\xb6\x10\x30\x84\x08\x0f\x1a\x99\x16\x2c\x43\x99\x86\x8b\x4a\x04\x8a\xe3\x02\x8a\xdb\x54\xe8\x54\x36\xfd\x38\x52\xd5\x78\x5f\x9a\xe0\x45\xac\xcb\xa3\x33\xa1\x7d\xa7\x06\x34\x4d\x8b\x0f\x0b\x6b\xe8\x86\x0f\x3a\xf8\x88\x5e\xf8\x5f\x6e\x7f\x4b\x2c\xcd\xb8\xd1\x19\xd5\x6c\xbe\x3e\xb2\x36\xb1\xe1\xa7\xca\x6b\xb3\x59\x3f\xfd\x44\xb4\xfc\x0b\x5d\x26\x9b\x3f\x92\x7f\x12\x2e\x62\x26\x34\xf9\x06\xdb\xb1\x44\x31\xf3\x2f\x52\x58\x10\xaf\x65\x92\x70\x31\xff\xe4\x69\x2a\x33\xff\x55\x31\xbf\x25\x7d\xf0\x84\xd2\x23\xf2\xca\x3b\x2d\x84\xb8\x93\xe1\x16\xb8\x69\x35\x4e\xaa\x8b\x0d\x2d\x77\xc3\x78\x6c\xf6\x34\xe0\x39\x59\x66\xe4\x30\x17\x52\xaa\x23\x92\x70\x91\x3f\xb8\x06\x86\x3f\xb6\xa2\xa9\x33\x7b\x22\xd4\x2e\xbd\xee\x1c\x04\x6a\x06\xf9\xe9\x27\x9b\x08\xf4\x3f\xee\x0e\xc8\x7f\xac\xc8\xd1\x1f\xab\x9f\x93\xf2\x7b\x68\xfc\x1f\x77\xe4\xe7\x9f\x8f\xc8\x64\xcf\xfc\x7b\x65\x7e\xdd\xf3\xba\x62\x22\x26\x16\xf8\x0e\x58\x00\x7d\x99\xb0\x6c\x2b\xb5\xf9\x33\xf2\x91\xde\x31\xa2\xf2\xcc\xdd\x19\x50\xa2\xab\x68\xc1\xe2\x3c\x41\xbf\x4d\x9a\x24\x48\x8a\x3c\xe3\xf3\xc0\x46\xe3\x1f\x91\x4b\x79\x63\x1b\x97\xbf\x82\x8b\x4d\x46\xcd\x1a\xc9\x59\x45\x93\x8d\x23\x66\x77\xd6\x41\x2c\xc6\x30\xd3\x28\xe3\x18\xc6\x41\xe3\x78\x60\x4d\xf1\x19\xb3\x93\x30\xd2\xbc\x3f\xf0\x1d\x5b\x1f\x91\x13\xfb\xc5\x71\x1c\x4b\xa1\xae\x36\x02\x00\xeb\x47\xf7\xe7\x7d\xf6\xc0\xa2\x5c\x77\x9a\x76\x9b\x71\x18\x5b\x55\xbd\x70\x2f\xab\x37\x1a\xbb\xa9\x6c\xc9\x33\xf2\x91\x0b\xbe\xe4\xff\x60\x24\x96\xf7\x42\xf3\x25\x23\x71\x0e\x9a\x19\xea\x2e\x85\xcf\x79\x3a\x8b\xeb\x1f\x88\x66\x49\xe2\xa3\x1e\x2d\x49\x2c\xa1\xfc\x0e\xa8\x0c\xcb\x01\xdc\x27\x93\xbd\xd2\xbf\xa3\x7a\xa2\x63\x19\xa9\xc3\x48\x8a\x88\xa5\x5a\x1d\xba\x24\x85\xea\x10\x84\xfa\x54\xc6\x87\xcf\x5c\x1c\x27\x97\x62\x20\x67\x03\xf3\x43\xb1\x21\xde\x6f\x1f\x32\x1a\xb1\x11\xcb\xb8\x8c\x6f\x58\x24\x45\xac\x8e\xc8\xcb\x72\x26\x96\xa2\x96\x19\x86\x51\xcd\xe3\x1a\xa4\x19\x97\x19\xd7\xeb\x93\x84\x2a\x85\xa0\xfb\xe9\x27\x32\x3c\xa1\x90\x63\x7f\xe3\x37\xf2\xcf\xc2\x60\x32\xd9\x43\xd4\x88\xda\x6f\x77\x90\x26\x7b\xde\x9d\x31\x32\xea\x89\xa3\x04\xd5\xc3\x0f\x14\xa4\xa0\x12\x55\x12\x62\xe8\xc3\x94\x0b\x9a\x55\x22\x90\x50\x39\x6e\x7e\xdb\xa0\x17\x33\x9e\x80\x4f\x2f\x50\x8c\x42\xfc\x71\xa7\x0e\xd1\xbb\xed\x7f\x10\x09\xee\x9f\x3a\xbe\x04\xa7\x89\x9f\x7e\x1a\x9e\x5c\x9e\x9f\x9b\x3f\xfc\x0b\x0f\x51\x32\x4b\x6a\x28\xca\x5f\x27\x7b\x87\x32\xd5\x87\x91\xe0\x87\x53\x2e\x0e\x6d\x7f\x05\x13\x89\x0f\x13\xab\xf7\x99\x5c\x56\x5c\x42\x9c\xd6\xf1\x23\x4d\x1d\x43\xe0\x3f\xcf\xc8\x31\x84\xf8\xfc\xe9\xd3\xbb\xb3\xeb\xcb\xb3\xf1\xd9\xcd\xed\xcd\xd9\xf5\x8f\xe7\x27\x67\xb7\x3f\x5c\xdd\x8c\x61\xcd\x81\xdf\x46\x57\xd7\x63\x1b\xe1\x25\x57\x2c\xcb\x78\x1c\x33\xbc\xbd\xec\xdd\xe8\x3d\x59\x56\xa1\x80\x0f\x42\xc2\xcb\x73\xe4\xb4\xc3\x03\xa7\x66\xd8\xfc\xc2\x79\xa2\x6f\xe7\x40\x62\x62\xb5\xb1\x94\x67\x18\x2f\x6a\x5d\xf2\xcc\x36\xf9\xdb\x63\x78\x33\x90\x93\x36\x66\xe5\xf6\xe7\xe4\xf2\xfc\xf6\xe4\xea\xf2\xfd\xed\xe5\xf1\xc7\xb3\xcd\x69\x80\xbb\x97\xc1\xba\xaf\x5e\x0e\xe0\x56\x0f\x4d\xd7\xc0\xe7\xef\x6d\x4e\xc2\x69\xd9\x36\xce\x08\xf8\x9b\xc3\x96\xd5\x9d\x94\xcd\xd9\x5c\x9e\x8d\x3f\x5f\x5d\xff\x09\x66\x75\xfe\x21\x38\xa5\xad\xbd\x76\x87\xc6\xee\xf7\x9f\xd8\x3a\xb4\xe5\xe5\x5e\x58\x9e\xb1\x62\xa7\xf4\x1f\x40\xb8\x91\xe0\xb7\x76\x35\xb7\xa1\xa6\xcf\xc8\x0d\x43\xef\x34\x43\x11\x81\x13\x2e\x1c\xff\xc1\x3d\xe6\x3b\x85\x5c\x93\xf9\xa9\x66\xc1\xde\x09\xbb\xbc\x3a\x3d\xab\xdf\x85\x9a\x25\x83\xcf\x70\xdd\x5a\xe1\xc7\x11\xd5\x8b\x23\x40\x41\x43\x33\x19\x08\xef\xdb\x58\x86\xd9\xb6\x8f\xe3\x4f\xc4\x62\xf9\x15\xcd\xb8\xe1\x3f\xea\xb7\xe8\xe3\xf8\xd3\xaf\xb8\x2f\x2b\xa6\x17\xb7\x4b\x9d\x6f\x2e\x63\x94\xb1\x15\x13\xb6\x48\x54\x89\xe1\x40\xce\x57\x09\x63\x10\x74\x34\x93\xa6\xd5\x66\x31\x39\xb7\xb8\x9b\x8b\xb3\xb3\xad\x8a\x8c\xc5\x2d\x98\xd1\x44\xb1\xea\xc9\x5f\xc9\x24\x5f\xb2\x8f\xa1\x7c\x34\x03\xb2\x34\xaf\x11\xfe\x87\xe6\x88\xf8\x88\x2c\x8c\x23\x22\xc1\x07\x53\x2e\x06\x31\xcf\x5a\x3b\x63\x3a\x82\xce\x04\xd3\xc3\xad\xc8\xce\xb2\x3b\xc1\xf4\x66\x77\x8a\x45\x39\x10\x17\x29\x34\x7b\xd8\xac\x5a\x96\x66\x7c\xc5\x13\x36\xaf\xfa\xb9\x21\x88\x8f\xe3\xd8\x30\x2f\xef\x13\xf6\x40\x7e\x84\xa5\x93\xd3\x8c\xaf\xc0\x77\x93\x3a\x7d\xa5\x69\x91\xb2\xcc\x50\x4d\xf2\x49\xf0\x07\x72\x2a\x97\x94\x0b\x72\x23\xa3\x3b\x4c\x7c\x07\x11\x58\xe4\x94\xdf\x19\x29\xa3\x42\x69\xc0\xd0\x04\x0e\x98\x11\xd5\x36\x3c\xf7\x3d\x4b\xf8\x03\x60\x5b\x3f\x52\xf5\x66\x2d\x22\x72\x3c\x3a\x0f\xd0\x9c\x59\xc2\x1e\x56\x32\x19\xc4\x30\xb5\x30\xd9\x31\x4b\xf8\x51\x26\xe7\xcb\x79\x95\xf0\xd4\x6e\x68\xb8\xf3\x81\xd9\x8a\x2a\xfc\xb6\x36\x6a\x7b\x1a\x8f\xdb\x80\x28\x4c\xd0\xaf\x73\xa1\x36\x85\xbf\x02\xd7\x7a\x0c\x13\xa0\xdd\x8d\x3a\x67\xcf\xbc\x4f\xd2\x4c\xce\x33\xba\x54\x9b\xd6\x59\x43\x08\x33\x99\x6b\x4c\x91\x60\x7a\xf5\xbf\x37\x2b\x0c\x6c\x81\x27\xbb\x86\xe1\x6f\x98\xfd\x00\xdd\xff\x9f\x4d\xc8\x3f\x29\xe6\xef\xd8\xf1\xe8\xdc\x49\xee\x53\x1a\xdd\x19\xf4\x65\x04\x3e\xd0\x4a\xd7\x20\xb0\xd3\xe3\xf1\xf1\xcd\xf8\xea\xfa\xec\x76\xfc\x97\x51\x3d\x3d\x2f\x97\xb0\x4d\xc8\x9d\xb3\x11\xc3\x5d\x27\x74\x3e\xcf\x5c\x50\x69\x41\xdf\x52\x6b\x40\xae\x99\xc6\xa7\x1b\x03\xe0\xd3\x5b\xd3\xa4\x76\x12\x00\x91\xad\xe1\x3f\x53\xae\x0b\x7f\x8d\xb6\xe5\x7e\x3e\x3e\x1f\xdf\xbe\xbf\xba\xbe\x2d\xd6\xbd\xe3\x68\x86\x82\xef\x4c\xb4\x0d\xa5\xfe\x55\x08\xf5\xa9\x14\xfb\x9a\x30\x01\x26\xeb\x77\x1f\x46\x75\x5c\xd4\xf1\xc5\xf9\xc9\x95\x63\xa4\xce\x2f\x3f\xdc\xbe\x3b\x3e\xf9\xd3\xd9\xe5\x69\x2d\x70\x84\x14\x01\xe0\x58\x95\x18\xd6\x4e\x34\x8c\x1c\xe4\x1e\x98\x61\xe5\x00\x2f\xe0\xd3\xfc\x5e\x33\x93\x8b\x4f\x37\xe3\xb3\xeb\x96\xc3\xf8\x9d\x3a\x40\x99\x71\x6b\x06\x28\x5b\x1d\x10\x2e\x0c\xce\x34\x02\xd6\x01\xa1\xda\x26\x87\x00\xfb\x14\xc9\xd8\xc0\xc5\x36\x1a\x26\xb3\x28\xef\xa4\x34\xd5\x35\xb3\x7a\x7f\x76\x71\xfe\xe7\xdb\xf3\xd1\xf8\xf8\xdd\xc5\xd9\xcd\xf5\xd9\xfb\xeb\xb3\x9b\x1f\xce\x2f\xc7\x67\xd7\x3f\x1e\x5f\xd4\x4e\xf3\xed\xcb\xed\xf9\x5d\x4a\x2f\xfd\x3a\xb8\x4c\x6c\x65\x5a\x72\x83\x9e\xd7\xf3\x15\x61\x66\xda\x89\x7b\xe7\xa3\xd5\x37\x24\x95\x32\x29\x79\x79\xcf\xf8\xb7\xe1\x3e\x37\x04\xd7\x8e\xf3\x51\x51\xe8\x62\xb3\xe7\x68\x21\x95\xc1\x73\x18\x65\xc1\x15\xaa\x61\x86\xa8\xeb\xc5\x78\x0e\x97\xd1\xd7\xda\x81\x7c\x9b\x0f\xf6\xba\xa0\xab\xad\x7e\x85\xb4\x6a\x06\x9b\x13\xd8\x46\xd7\xcc\xcc\x9e\xd8\xbc\x2a\xff\x3d\x18\x58\x7d\xe1\x20\xe2\x71\xf6\xdf\xc3\xcd\x3e\x36\xce\xef\xf9\xe8\xc7\x6f\x46\x57\x57\x17\x01\x2c\xf2\xac\x22\x9c\x7c\xff\x7a\xf8\xea\xed\x77\xc3\x97\xc3\x97\x87\xaf\xde\x6e\x03\xf3\x94\x2b\xf4\xf1\x30\xf2\x50\x22\xe7\xb0\x4c\x25\xc9\x7f\x83\x9f\xa3\x4e\xcc\x3b\xf5\xdf\xa0\xe7\xdc\x0c\x51\xdc\x98\xd1\xe9\xf9\x8d\x39\x32\xb7\xef\xcf\x2f\xce\x6e\x2f\xae\x3e\x7c\x38\xbf\x0c\x0b\x28\xcd\x08\x07\x19\x9a\x32\xbe\x45\x02\x15\x2d\x36\x1c\x93\xb7\x98\xd7\xc7\x27\x27\x67\xa3\x71\xcd\x9c\xf0\x14\x9f\x9e\xbd\x3f\xfe\x74\x31\x3e\xbb\x3c\x1d\x5d\x9d\x5f\x8e\xc7\x57\x86\xe6\x1d\x9f\x8c\xcf\xaf\x2e\x6b\x67\x86\xdd\xd6\x03\xea\x7c\xb4\x7a\x6b\x8e\x58\x49\x8a\x1a\xa7\x70\x3e\xfa\xf1\xed\xcd\xa7\x91\x21\xa8\xbb\xb0\xce\x9e\x86\xc4\xb3\x39\x40\x14\x1f\x9a\xbc\x95\x01\x15\x8c\x70\x71\xf5\xc1\x80\x7c\x74\x3c\xfe\xc1\x80\x05\xce\x3b\x3a\x3a\xe1\xc6\x02\x3c\xdd\xce\x6a\x09\x3b\xdd\x34\x63\xaf\xbf\x1d\x51\x62\xf7\x09\xdf\x9c\xfd\x78\x76\x7d\x3e\xfe\xcb\xcd\x5f\x6e\x70\xce\xf6\x52\xc1\xcd\x2b\x7c\x5f\xc5\x4c\x36\xae\x44\xad\x55\x22\xe7\x2d\x6b\xf1\x86\xda\x01\xc7\x94\x27\xd1\x1b\x6f\xb2\x77\x4f\x33\xc1\xc5\xbc\xcb\xd2\x6f\x82\xeb\x3d\xb9\x3e\x3b\xbb\x34\x7d\x7d\xc6\x9e\xb6\x57\xdc\x75\x39\xd0\x53\xed\x8a\x3e\x87\x27\x5a\xed\xee\x87\xb3\xe3\x8b\xf1\x0f\x67\x97\xe6\xda\xd6\x93\xbf\xf0\x55\x6d\x5a\xb0\x23\x1e\x96\xb0\x82\x50\x93\x6b\x34\x80\x99\x7f\x78\x2e\x75\x33\x22\x66\x48\x93\xba\x50\xa3\x36\x4a\x6d\x3a\xaf\x4e\xf5\xb1\xd2\x5c\xc8\x00\xeb\xde\x63\x38\xdd\x16\xaf\x12\xa5\xf9\x11\x79\xfd\xed\xcb\x4a\x26\xd3\x84\xcf\x58\xb4\x8e\x92\xcd\x4c\x60\x69\xc6\x6e\xb4\xdc\x2e\x00\xcd\x1e\xb6\xc2\xd7\x88\xa7\xf1\xdb\xfe\x65\x40\x40\xf3\x57\x23\x52\xb8\x36\x03\xb5\xc8\x75\x2c\xef\x45\x75\x6e\x2b\x26\x98\x52\xa3\x4c\x4e\x37\xe7\x17\x9c\x47\xdd\x2c\xda\xe7\x30\x20\x03\xb8\xbd\x03\x33\xe6\x06\x24\xaa\x1a\xe2\x57\x2f\xab\x3f\x83\x43\x11\x4d\x4e\x59\x42\xd7\xb5\x8d\x66\x94\x27\x79\xc6\xc6\x8b\x8c\xa9\x85\x4c\xe2\x23\xf2\xb6\xda\x40\xf3\x25\x93\xb9\xae\xe9\x20\x63\x34\xe6\x75\x90\x58\x68\x9d\x7e\x60\xdb\xd5\xcb\x53\x14\x62\x8b\x6f\xb7\x7e\x97\x99\x3e\x22\xdf\xbf\xfc\xfe\xfb\xcd\x5f\x0c\x3d\x3b\x22\x89\x8c\x68\xb2\x2d\x20\xb7\x80\xa3\x79\x21\x0d\x0a\x97\x67\x50\xe0\x68\x49\x39\x48\xb4\x06\xf3\x78\x5e\x7f\x46\x96\x8a\x32\x06\x1c\x2c\x4d\xb6\x09\xda\x13\xaa\x57\x1c\xbc\xaf\x44\xb2\x3e\x22\x48\xf9\x1a\x46\x4b\xf8\xf4\x70\x29\xe3\x3c\x90\xfd\x05\x87\x49\xf8\x74\x50\xd3\xa0\x1c\x66\x3b\x57\x7e\x75\x94\x2c\x17\x87\x0f\x88\x86\x86\x89\x8c\xee\xc2\x43\xd9\x16\x83\x50\x8b\x1d\x96\xb4\xa2\x19\x0c\xe8\xcc\xe7\xa1\xa1\x56\x34\x1b\x64\xb9\x18\x84\xdb\xec\x38\x98\x81\x61\xdb\x60\x06\x8c\x8f\x1a\x0c\xbb\x40\x6d\x88\x5a\x8b\xad\x1c\x0e\xa1\x95\x1b\x0c\x41\xe7\x5b\x21\xcb\x78\x44\x0b\x05\xc3\x01\xb9\x67\x20\x35\x58\x45\x04\xf0\x00\x10\x73\x98\xdb\xb8\x67\xd3\xd2\x70\x33\x68\xf1\x31\xb2\xcf\xa1\x5a\xab\xc3\x99\x3a\x9c\xa6\x33\xc3\xc4\xde\x33\xdb\x1a\x73\x9c\x6c\x0e\x07\x79\x97\x34\x89\x79\x06\x66\xd5\xcd\xd2\x83\x6e\x71\x6a\xad\x66\x5b\x87\xcb\x5f\x97\x1d\x74\x5b\xf7\xf2\x8e\x63\xdf\x98\x38\x67\xc9\xa8\xc0\x40\x5e\xc8\x0b\x52\x4c\xae\x7d\x29\x5c\xa3\x6c\x91\x66\x32\xa5\x73\x23\xe3\x58\xef\x9d\x0d\x05\x93\x1b\xd7\x66\xe9\x03\xc6\x99\x2b\x72\x27\xe4\xbd\xf0\x41\x47\x75\x65\xb0\xc4\xec\xf1\x1a\x53\xe7\x56\xa7\x1c\x51\x01\x3a\x20\xcc\xf2\xb7\x35\x12\x02\xc1\x4e\x0a\x9c\x19\x2a\x9f\x87\xc1\x69\x10\x43\x22\xe7\x21\xc4\xb0\x75\x72\xe5\xdc\x9e\xdc\xc3\x0d\x13\x19\x69\xb8\xdf\x5b\x66\xbc\x2c\x17\xaa\xf0\x81\xca\x95\x0b\xcc\x47\x47\x0a\xa8\xff\x35\x58\xce\xd1\x37\x87\x89\xd8\xef\x08\x38\x96\xc4\xa0\x6a\x08\xe7\xdf\x2e\x16\x36\xf0\xd4\x5e\xa5\x5f\x53\x39\x47\xcf\x94\x67\x84\x78\xeb\x74\xb7\xa5\x58\x2d\x2d\x7a\xc4\x9a\xf4\x0c\x41\xb5\xfd\xc5\x90\x56\x6a\x6f\x30\xe0\xe9\x60\x49\xd5\xdf\xdd\x9f\x1b\xf3\x2f\x1d\x3d\xf1\x79\x3c\xeb\xb3\xad\x7d\x73\xcb\x1c\x5d\x9d\x7e\x35\x2b\x8c\x73\xd9\x18\x8a\x2d\xe5\xce\xe6\xf0\x37\xa3\xe3\x93\xaf\x3f\x87\x40\xc9\xc4\x82\x2d\xbd\x38\xbe\xbc\x3c\xbb\x38\xbd\x3d\x7f\xbf\xe3\x4c\x9e\xda\x0c\x67\x1a\xdd\xf2\x59\x87\x99\x8e\x6e\x3f\x1e\xdf\xfc\xe7\xaf\x38\x57\x73\x76\x73\x96\xd1\x2a\x7b\xd8\x60\x53\xe8\x4e\xa2\xdb\x08\x74\x03\x11\x1b\x54\xbd\x07\x07\xd1\x6c\x63\x05\xfe\x2c\x0c\xdf\xe3\x5f\xf5\x02\xe7\xe3\x2a\xaa\xb6\x07\x17\x11\x82\xc6\xe1\x6d\x9c\x51\xc3\xba\x18\xac\x0d\xc3\x6d\x5c\xd8\x06\x86\x68\xd0\xca\x36\x34\x77\x5a\xc7\x92\x0c\x5a\x39\x84\xf6\x7e\x43\xdc\xc7\xa0\x65\xc3\x9a\x7b\x6d\x3e\x0a\xe8\x55\xf6\x9e\x27\xec\x2a\x3b\xa9\x38\x41\x37\x50\xf4\xe6\x01\x83\xf4\x1d\xc7\x39\x75\xbc\xc3\xf6\x60\xe5\x01\xb0\x87\x25\x68\x8c\x0b\x1e\xba\xe2\xe2\x1d\x85\x8e\x79\xf8\xb2\x95\x21\x6e\xce\xa5\xe0\xe4\x32\x64\xff\xab\xb1\xa2\x36\x43\x20\x68\x9b\x1d\x34\x73\xfa\xcd\x3d\xd6\x48\x10\xe5\x2a\x6c\x70\x9d\x91\x52\x12\x39\x0f\xd1\xdc\x1a\x46\xa2\xc3\x91\xac\x61\x2b\xca\xc1\xad\x26\xb9\xde\x50\x1b\xb8\x7c\x61\x1e\xb8\x66\x36\xad\xa7\x87\x6c\xdf\xce\x00\xdb\xbc\xbd\xe9\xdb\xd6\xe7\xd0\xa9\x6b\xb4\xd2\xee\x3a\xe5\x9f\x7e\x1a\x18\x7e\xd6\x59\x8d\x47\x20\x53\x9e\xf2\xaa\x9b\x62\xb9\x9e\xd2\xbe\x5c\xb4\x44\xf7\xc4\x01\x61\x89\x62\x35\x5f\x1d\xe6\x0a\x70\x09\x7b\x60\x91\xe7\xb1\x06\xff\x4c\x98\x1e\x58\xcf\xdd\x43\x44\xc4\x87\xd0\xac\x00\xd8\xff\x9b\xc7\xca\x8e\x60\x9d\x21\xc1\xbd\xb8\xcd\x8b\xcf\xf7\xd2\x2d\x3d\xaf\x37\x7d\x9b\x1f\xe3\xb6\xbb\xab\x9b\xf3\x66\x1c\x7a\xe1\xf2\x7c\xc3\x58\x28\x4c\xa3\x12\x64\x72\xb8\x1d\xc5\x1e\xf4\x3f\xb6\x5e\xca\x5e\x2e\xd4\x5d\x62\xf8\x1f\xe3\xa3\x5c\x17\xa7\xef\xdc\x70\xd1\xd6\x53\x49\xa2\xe3\x6a\x15\x40\x09\x29\x0a\x39\xe1\x12\x06\x56\x81\x15\xc3\x4b\x20\x6c\x4a\xa6\x8c\xa5\x09\x8f\xa8\x02\x4f\xe1\x5d\x3d\xa0\x6b\x17\xa9\x4a\x6f\xe8\xf2\x52\x5c\xb3\x32\xdc\xa6\xcd\x11\xb9\x15\x8c\x84\x34\x81\x92\xb4\xf8\x32\x37\x74\xfb\x45\xde\xcd\xee\x92\x8f\x4b\xb7\x61\x52\xe7\x4c\xec\xb9\x83\xfb\xcd\x0b\x5f\xf0\xb7\x35\xf7\xbd\xce\x25\x39\xac\x6b\xf6\x5a\x3b\xfb\x74\x6d\x06\x25\x49\x30\x63\x5d\xc2\x34\x54\xab\xcc\x45\x9d\x23\x73\xd5\x01\xba\x8c\xeb\xe8\xdd\xa0\x2b\x1f\xfa\xb8\x14\xdb\x7c\x89\x4b\x74\xe3\x5d\xd8\x72\x92\x7e\xac\xe7\xb0\x19\x65\x23\x77\x4c\x27\x4f\xe2\xc2\x2e\x1b\x72\x26\x0e\xfa\x1d\x0d\xba\xdd\x72\x52\x55\x10\x94\x0d\xc2\xbe\x3f\x5b\x1a\xdd\x93\x85\x84\x32\x0d\x60\xf0\xf7\xcf\xbb\x96\xe6\x88\xd7\xa8\xb3\xac\xbd\xe7\xf6\xe4\xea\x72\x7c\x7d\x75\x71\x71\x76\x5d\x67\x18\xdb\xd6\xe4\xef\xe4\x49\x73\x17\x2c\xc6\xf2\x94\x56\x07\xc3\x13\x80\xe5\x61\xc1\xa2\xbb\x41\x35\xf9\x4d\xd9\x6c\xb0\xa1\x88\xfa\xad\x5b\x1c\xbe\x12\x14\xb2\x56\x28\x7c\x7d\xb6\x68\x67\xde\x61\x93\x51\xaa\x86\x78\x95\x2e\x95\x23\x19\x93\x53\xae\xb2\x1c\x5c\xca\xc8\xbb\x3c\x9e\x33\xf4\x94\x2a\xaf\x55\xe9\x5c\xf9\xa7\xef\x54\xe1\xbf\x73\x9c\x6b\xa9\x22\x6a\x7f\x67\x2b\x1e\x69\x03\x09\x7f\x91\xc8\xd9\x1f\xae\x5e\x4d\x99\xa6\xc5\x82\x47\x32\x2e\x47\xc4\x01\x7f\x7d\x8e\x29\x10\x24\xf5\x44\xac\x4f\x47\x4e\x95\xe9\x28\x1e\x28\xc3\x0f\x69\xc7\xa5\x76\xfc\x52\xaf\xd3\x05\xed\xfa\x89\x73\xc3\xb3\x9e\xf7\xf8\xd5\xde\xc1\xff\x41\x08\xd9\x43\xf9\x78\xf5\x66\xf8\xfa\xf5\xf0\xdb\xbd\x23\xb2\x67\xba\x02\xf5\x2b\x19\xdb\x1e\x4a\xb7\x36\x7c\x6f\x1b\x77\x9e\xab\x4d\x4a\x51\x09\x3c\x3c\x71\x42\x3b\xe1\xaa\xc8\x7c\x5f\x4c\x14\xab\x1d\xcf\x40\xd8\x62\xb1\x1d\xd6\xf7\x1e\x2a\x83\x6e\x5d\x3f\xdb\x37\xad\x3e\xc0\xb3\x50\x06\xd4\x1d\xa9\xe2\xb3\x67\x98\xf9\xc6\x4c\xd2\x3a\x56\xa0\x5e\x1f\xc0\x7f\x6b\xe9\xf3\x2d\x76\xee\x3b\x7a\x20\x2f\x0e\x89\x7d\x67\x34\xb2\xd9\x8b\x9c\x76\x0b\x6e\x1a\x98\x1b\xa0\x08\x45\xe4\x6a\x51\xc0\xab\xd2\x67\xd9\x65\x40\x79\x56\x54\xa4\x9a\x26\x54\xdc\x1d\x14\x55\xfb\xbc\xfe\xb9\x72\xee\x58\xa5\xc6\xde\x10\xa4\x7d\x85\x3d\x38\x32\x0d\x7e\x98\xd0\xab\xa7\x0b\xc5\x60\x38\xd4\xb9\x9f\xbb\x2e\x5d\x5c\xdc\x33\xf2\xd9\xd6\x00\x90\x19\xe4\xec\x87\x0a\x60\x4e\x37\x59\x96\xb1\x93\xc4\x2b\x0c\x8f\x95\x4d\xd0\x59\x0b\x3b\x71\xac\x9a\xf5\x08\x1e\xe2\xf5\x73\xdd\x54\x3d\x27\x7c\xc7\x51\xf3\xdd\xc7\xf1\x27\x48\xbe\xa7\x3c\xf1\xd9\xbc\x73\x8c\x31\x9f\x11\xc1\xf0\xd5\x4b\xcb\x6c\x38\xc7\x7e\xbb\xb4\x8f\xe3\x4f\xb8\x1e\xcb\x89\x05\x58\x6a\xff\x8b\x57\xdf\x7c\xfb\x72\xa3\x75\x7d\x5c\x8a\xcb\xe3\x50\x17\x9e\x02\x9f\x01\xf7\x85\x52\xee\x33\x97\xd1\xdd\xd5\x07\xb3\xe1\x2d\x45\xf9\xa5\x5c\xcb\x25\x05\xde\x29\x59\x93\x54\xda\x14\x97\xb8\x69\x5b\x71\x24\x47\xe4\x9f\x03\x44\x4b\x3f\x39\xec\x34\xd9\x03\x9b\xc0\x9e\x75\x88\x1c\xa4\x32\x1e\xd8\x8f\xbc\x92\x32\x93\xbd\x48\xb8\xfb\x82\x6d\x5f\x0e\xdf\x0c\x5f\x55\x5a\x58\x35\x81\xf9\xf9\xaf\x25\x3d\xfc\xc9\x27\x8d\x93\x3d\x70\xd9\x84\x0e\xac\xe2\xb2\x5a\xb6\x66\xb2\x97\xc8\xf9\x6d\xc2\x56\x2c\xc1\x56\x9f\x8f\xaf\x2f\xcf\x2f\x3f\x04\x9b\xcd\x78\xc2\x6e\x53\xaa\x17\xd8\x34\xa0\x7f\x32\xff\x1b\x26\x72\xbe\xf5\x79\xe1\xdf\x7b\x5b\x4e\xc8\xf7\x4d\xde\x68\x6e\xb6\xa6\x04\xd3\xed\x6d\x28\x7a\xe6\xf6\x76\xeb\xb3\xa5\xce\xcd\x17\xb7\xb7\x36\x76\xe5\xf6\x76\xa3\x01\x4f\xe9\xd2\xb4\xf8\x69\x93\xa7\xf0\x01\x65\x2e\xfa\x00\x5c\x1a\x02\x35\x7e\x26\x7b\x68\xa5\xc2\xa6\xb9\x62\x23\x19\x9f\xf0\x38\xab\xba\xea\xfc\xbc\x31\x2e\x52\xdd\xd6\x91\xef\xbe\x53\xcd\xfd\xf8\x20\x0b\xf6\x65\x33\x3a\x1a\x04\xea\x81\x0e\x23\xac\x6e\x9d\x2b\x9c\x81\x5c\x65\x94\xf2\x0f\x7f\xc0\xda\x93\x94\xca\x4c\x2f\x69\xba\x05\x7e\x25\x28\xc0\xc5\xe0\x8a\x8d\x9f\x22\x9a\x52\x48\x0f\xc0\xdd\xd4\xa1\x97\x8f\x34\x4d\xb9\x98\x2b\xf7\xd5\xae\x33\x99\x52\x11\xdf\xf3\xd8\x9c\xc8\xf6\x01\xbd\xc6\xdb\xa3\xb9\x7f\x5a\xb3\xa3\xc5\x29\x2e\xb1\x48\x10\xa7\x0c\x09\x58\x7a\xa0\x16\x9b\xb5\x61\x3b\xc3\x6c\x21\x49\x01\x5e\x10\x4c\x03\x55\x1b\xfe\x3f\xca\x50\xbf\x7f\x6e\x61\x84\x4b\x77\xff\x1d\xae\x47\x7e\xee\xe4\xfc\xf4\xda\x20\x46\xef\xce\xbf\xb3\x76\xdd\xea\xee\x63\x65\x98\xe2\x73\x3b\x6b\xdb\x76\x68\x7e\xf3\xe3\xa8\x7f\x2e\x96\xd8\xc6\x21\xdc\xc5\xf1\x20\xca\x62\xc7\xfc\x7c\xbd\x9a\x0d\x5b\xa9\x61\xbe\x42\xe5\x86\x77\x1f\x46\x95\xf4\xaa\xf8\x5b\x59\xbf\x61\xf3\xf7\xed\x2a\x0e\x35\x09\x6c\xca\x5a\x0e\x9b\x0d\x26\x65\x45\x07\xbb\xa5\x93\xaf\x53\xce\x61\x73\xee\xd5\x5c\xf0\x55\x4a\x88\xd5\x8e\xd6\xe6\x1b\x60\x38\xaa\xca\x97\xbe\x9c\x43\x5f\xce\xc1\xdf\x82\xbe\x9c\xc3\x2f\x56\xce\x61\xf3\x12\x6f\x17\x75\xa8\x16\x1b\x32\x17\xb8\x4a\x90\x36\xb4\x22\xf5\xd5\x1b\xa8\xba\x84\xf2\x9e\x01\x37\x88\x8d\x0b\x7d\x83\x0d\x5d\x95\x18\x27\xa9\x1c\xdf\xd8\x02\xa1\x85\xec\x44\x2d\x3f\xfd\xd7\x53\x6c\x12\xf4\xb0\x78\xfb\xcd\xb7\xaf\x5e\xff\x6d\x7f\xfb\x27\x4c\xb2\x76\x64\x6e\xe7\x9b\xd7\xdb\x3f\x23\x48\xcd\xd5\x9d\x6f\xd7\x24\x75\x3b\x1f\xae\xd0\x5c\x59\xcf\x49\xd9\x14\xef\x87\x2b\x4f\x81\xb0\xb4\x27\xc8\xc1\x99\x62\xca\xa9\x6d\xdf\x2e\x00\x61\x36\xe5\x3a\xa3\xd9\xda\xd6\x20\x84\x48\x36\x8a\xfe\xf5\x18\x45\xb9\x53\x3d\x8b\xe0\x34\xd7\xe5\xf6\x2b\x4d\x45\x4c\xb3\xd8\xc8\x79\x09\xcd\xe6\x6c\x73\xba\xa1\x4e\x09\x2c\xc1\xdc\xb4\x40\x90\x1b\x3e\xad\xd5\xad\x1b\xab\x5a\x6f\x57\xb3\xc6\x6a\xcd\x65\x74\xaf\x9b\x5e\x6d\x51\xe5\xf6\x62\xca\xa8\x82\xed\x34\x85\x1f\x01\xcf\x41\x9a\xc1\x29\x64\x4a\xc0\x73\x45\x26\x7b\x94\x1e\x09\x31\xd9\x83\xb2\x95\xf8\xc7\xd1\x72\x19\x2c\x7f\xeb\x9e\xf7\x32\x2b\xa1\x5e\xae\x26\x57\xcc\xeb\x0e\xfb\x3f\xb0\x79\xda\xcd\xfb\xc9\x9e\x01\x7a\x7d\xb7\x93\x3d\xf8\x90\x66\x8c\xbc\x7a\x4b\xa6\x5c\xdb\x8b\x34\x84\x01\x37\xb7\xd6\x1b\x0d\xe6\x5b\xdf\x6f\x68\x26\x07\xc5\x68\x22\x36\xe2\xd1\xd2\x0e\xfc\xe6\x75\x65\xe0\xcf\xe6\x93\x86\x72\xed\x76\x59\x58\x3b\xf1\xf8\x86\x20\x4a\xa8\xeb\x3c\x65\xd9\xe0\xf8\xc6\xc5\x10\xf2\xad\x10\xfc\xf2\x49\xa9\x36\xb4\xf8\x88\xfc\xd7\xf3\xc9\x24\xfe\xbf\x5e\x1c\xe1\x7f\xfe\xe3\x9f\xd5\xbf\xdd\xeb\xc7\x9e\xa0\x47\x57\xc2\x4e\xa0\xd4\xc6\x48\x66\x21\x64\x56\x39\x77\x17\x45\x4b\x87\x28\xa1\x06\x28\xee\x85\xc1\x2d\x69\x26\xb5\x8c\x64\xe2\xb8\x17\xec\x3a\x08\x99\x53\x57\x16\x51\x4b\xf2\xea\xf7\x5b\x1e\xf7\xa0\x17\xe5\xcb\x7c\x79\x44\xde\x7e\xfb\xed\x9b\x6f\x03\xbf\x73\x81\xbf\xbf\xda\x11\x91\x26\x72\x7e\xc3\x56\x2c\xe3\x7a\x7d\x13\x65\x8c\x6d\xf2\x7a\x5b\xcb\xde\xbf\xd8\xfc\xc2\x2d\x3f\x91\x73\xa2\xec\x2f\x84\x4e\xe5\xca\x99\x76\x12\x39\x0f\x16\x34\x34\x27\x07\x4a\x38\x5a\xe6\x4d\xe9\x58\xe6\xda\x23\x27\xe4\xfc\xf2\xfd\x55\x88\x74\x34\x6d\xbf\x21\x49\x63\x79\x29\x63\xf6\x91\xa9\xc5\x19\xc4\xd3\x86\x22\x4f\xaa\xab\xba\x0c\x7d\x45\x14\xd3\x65\xc5\xcd\x59\x6e\x2d\xa6\x18\xf2\x15\x8a\x54\x21\xb0\xf1\x4b\xc8\xa6\xa9\x6c\x2c\x6f\xec\x2f\xc8\x88\xa0\xf5\x0b\x9a\x4a\x99\x30\xba\xc5\x13\xa7\x19\x9b\xf1\x87\x63\x3f\x6d\x78\x2b\xd5\x1b\x05\xbe\x29\x29\x0b\x38\x06\x41\x8b\x6a\x36\xf2\xd0\x8a\x9a\xd8\x0d\xb2\x43\x5d\xc5\xed\x09\x95\xda\x65\x55\x9d\x86\x47\xa1\xc2\x08\xc0\x85\x90\x97\x25\x4a\x03\xf1\xea\x0e\x78\x2d\xc4\x2e\xe2\x71\x88\x27\x0a\x2c\x01\x92\xaa\x9b\xa1\xf1\x58\x97\x3d\xfb\x35\xc9\xdd\x3a\xc2\xc5\x1e\x49\x27\xea\xd7\xcc\xdd\x84\x66\xe6\xf1\x38\xd6\xe7\xdd\x71\x39\x8c\xc3\xe1\x2d\xc9\x0b\xb0\x2e\xf5\x88\xdf\x79\xd3\xa3\x2c\x07\x35\xe7\x27\x7b\x86\x2d\x55\x43\x6f\x14\xa4\xaa\x9d\xd8\x11\x82\x52\x5d\x2b\x55\x6e\x20\xbe\xcd\x64\xaa\x99\x2a\x37\x13\xdf\xfa\x9e\xdb\xa8\x72\x2b\xf1\x6d\x9a\x74\x0b\x55\x6e\xa5\xbd\x9d\xfa\xee\x4e\x94\xeb\xaf\x30\x3e\xed\x27\xb6\x91\xa6\x92\x2f\x21\xc8\xd6\xa2\x63\x75\x29\xe7\xa3\x56\xcc\x77\xb3\xf9\x01\x00\x03\xd2\x67\x99\xfb\x8b\x59\xc9\x51\x74\xc5\x7b\x6c\x47\x08\xe2\x3e\x6b\x64\x75\xbd\xd8\x58\x0a\x90\x53\x67\x25\xf6\x29\xca\x1b\x63\x05\x5b\x87\x02\xb0\x4e\x6d\xa8\x5f\x9c\x44\x91\xc5\x13\xdc\x65\xc4\xba\x32\x9c\x8d\xab\xd7\x0b\xb6\x7c\x3c\xd2\xdd\x84\xc5\x3b\x33\xae\x27\xd9\x7b\x1e\x68\xb6\x6e\x7a\xd1\x34\xbc\xcf\x25\x08\xbf\x02\xb2\xfd\x6a\x4c\x9d\xdd\xe1\xb3\x07\x54\x03\x75\x3f\x44\xde\x17\xe1\x53\x24\x33\x2f\x90\x3e\x34\x67\xdb\x11\x71\x3d\x99\xbd\x1d\xfa\x79\x60\x36\x1b\x14\xe9\x1d\xc0\x4d\x70\x33\xc7\x03\x3e\x25\x91\xb1\x05\x9a\xd7\x58\x3c\x0e\x8f\x8c\x14\xac\x2c\x92\x8c\x13\xfd\xe2\x13\x54\xce\xae\xf5\x08\x85\x77\xd7\x5b\xff\xbf\xf6\x21\xba\x90\x34\x7e\x47\x13\x2a\xa2\x5d\xb0\xd1\xc6\x57\x5f\x78\x98\xfc\xde\x6a\x0f\x94\xad\x7e\xe1\xb7\x1d\xda\xe2\xdd\xa1\xbe\x37\xcf\xdd\xaf\x70\xc8\xaa\x40\x7a\xe4\x41\xdb\x80\xcd\xbf\xe4\x61\xfb\xd7\xaa\x58\xfa\x95\x6b\x7b\xbb\x3a\x01\x5f\xc7\x3c\x34\x62\x4e\x26\xae\x58\x85\xcc\xeb\xa0\x31\xc8\x2b\x59\x50\xb1\x01\xa5\xb6\x9f\xaf\x65\xfa\xe9\x6d\x34\xbd\x8d\xc6\xdf\x82\xde\x46\xf3\x4b\xda\x68\x0c\x3a\xe8\x56\x6f\xdb\x36\x7e\x44\x75\xed\xae\xf6\x99\xf1\x82\x95\x42\xa1\xb3\x0b\x19\xf4\x13\xa0\x6f\x5f\x62\x62\xb9\x63\x2c\xbd\xca\xf8\x9c\x0b\x9a\x5c\xb2\x07\xfd\x43\x20\xdd\xcb\xc6\xd4\xae\x52\xe7\x77\x65\x3e\x86\x89\x49\xdb\x03\x11\xec\x41\x2f\x64\x8a\xd1\xca\x58\x1d\x18\x4d\x26\x6d\x9a\x41\x80\x29\x31\x40\x35\x67\x5c\xc3\x25\x71\xbe\x69\xbe\x06\x09\x76\x04\x3c\x45\x59\x6c\x3e\x09\xf5\x6b\x7a\x51\x85\x0e\x2f\x47\x11\xcd\xc8\xd5\xec\x41\x13\x33\x3b\x33\xef\x3f\x18\xd9\x5b\x28\xcd\x68\x6c\xc0\xeb\xfd\xaa\x58\x32\xfb\xc3\x64\xef\xb9\xb5\x88\xbd\x08\x0d\x81\x32\x5b\xe9\xdc\x3f\xcd\xa8\x88\x16\x6e\x9f\x2e\xcd\xd0\x52\x90\xc9\xde\x94\x67\xf1\x30\x9a\xcd\x83\xf6\x88\x46\x75\xe0\x92\x3e\x5c\x33\xc8\x10\x37\xe6\x41\x3b\x4d\xf5\xb8\x70\x2c\xe2\x81\x9e\xc3\xe6\x90\x2a\x39\xd3\xf7\x06\xc2\x19\xf6\x32\x24\xe4\xb3\xd9\x8e\x52\x9c\x0d\xb2\x32\x06\x99\x14\xbe\x71\x79\xc6\x62\x97\xbe\x72\x9e\xd1\x88\xcd\xf2\xc4\xf5\xe7\x7c\xc7\x5d\xbf\x06\x7b\xb4\xf5\xcd\xc8\xbb\xf3\xeb\xd3\xc2\xd4\x28\x67\xe4\xd5\xeb\x97\xca\x79\xa2\xd6\x42\xa8\x5e\x03\xdc\xe5\x16\x15\xa9\x20\x8b\xe4\x87\x0e\x01\x5b\x71\xde\x96\xc5\xc0\xa0\x2c\xc8\x3b\x11\xdc\x71\x45\x34\xcd\xe6\x4c\xa3\x51\x14\x00\x05\xf7\x11\xf3\x58\x20\xd8\x00\x08\x4c\xdb\x72\x9e\xb2\x12\xbf\x54\xd3\xa9\xa7\x5e\xb0\xfe\xa5\x5c\xa1\x61\x81\x41\x55\x49\xf3\xb1\x2a\xc3\x78\xdc\xc9\x2b\xcb\x76\xec\x0a\xb3\x40\x3c\x55\x10\x76\x45\x1d\x07\xa7\x86\xc5\xf1\x21\x2f\x87\xe5\x02\x20\xbc\xad\x80\x04\x17\x73\x7b\x18\x9a\x4e\x16\x80\xa7\xb8\x24\x88\x27\x9c\x59\x8f\x2d\x53\xbd\x99\xdf\xa4\x6d\x49\x29\x55\xea\x5e\x66\xad\xba\xff\x2b\x9b\xc6\x15\x61\x6b\x3f\x2a\xd6\x66\xe7\xaf\xc8\x9c\x09\x96\x51\x6f\x93\x6b\xd4\xff\x4d\xe8\x9f\xb4\x4b\x1c\xe8\x7b\xde\x90\xb1\x20\xb8\x19\x86\xa7\xb8\x63\x6b\x60\xcd\x6c\x17\xee\x3c\xc0\x21\x4e\x65\xbc\xaf\x4a\xe7\xea\x1a\x4d\x60\xab\x30\x84\x99\x10\xea\x15\x85\x5b\x57\xcc\xce\x09\x71\x33\xcc\x4a\x4b\x7b\x74\x81\x33\x19\x12\xf2\x11\xb7\xb8\xbe\x53\x42\xa8\x61\x94\x78\xec\xba\xb8\x63\xa1\xa3\xe0\x9e\x2e\xca\xca\x46\x03\xf7\x96\x69\xc8\xcb\xc0\x9f\xb1\x19\xcb\x98\xd0\x41\xae\xa7\xa9\x10\x85\x5c\x19\x19\x97\xdd\x1f\xda\x82\x9e\x03\x23\x47\x0f\x90\x19\x51\x87\xb0\x31\x87\xcf\x5a\x54\xf3\x84\x8c\xaf\x4e\xaf\x8e\xc8\x71\x1c\x13\x09\x5a\xfd\x5c\x01\xe2\x85\xbb\xa2\x86\x9e\x34\x70\x00\xcc\xe8\x01\xc9\x79\xfc\x7f\x07\xcc\x4d\xbb\xc0\xaa\xc8\x72\xdc\x11\x5e\x37\x80\xb6\xd6\x85\xd9\xcc\x80\xed\x06\x37\x4e\x66\xe0\x98\x60\x0e\xc5\xb2\x7d\xd7\xad\x05\xa2\x6d\xf6\x35\x54\x12\x1f\x57\x25\xaf\x66\xf2\x10\x76\x18\xfe\xa9\x8b\xe8\x1e\xfe\xd5\x60\x8c\xf3\x51\x17\x02\xe4\xa5\x97\xf5\xf8\x38\x32\x93\x56\x19\x3b\x5d\x83\xa0\xe5\xf0\x53\x2a\xb3\x20\x01\xb2\x5e\x39\x5a\xe2\xe7\xe6\x64\x01\xed\x01\x7b\xb4\x28\x7c\x79\xc0\x4d\xe3\xc0\x19\x62\x4a\x93\xd5\x64\xef\xaf\x18\xf5\x70\x3e\x5a\xbd\xc5\xc0\x87\xbf\x1d\xc1\x58\x41\xd7\x03\xb0\xdb\x14\x1f\x7c\x83\x1f\x1c\xe1\x0b\xf8\x0a\x5e\xa0\x81\x04\xf2\xdb\xc2\x5c\x2a\x8b\xf0\x26\xe5\xe8\x62\x90\x0b\x04\x5f\x1c\x4b\x43\x00\x58\x22\x26\x85\x77\xd2\x94\x25\xd2\xe0\x65\x60\x11\xad\x1b\x2b\xe0\x3a\xc8\x2b\x5f\x5a\xe7\xc3\x48\x16\xd0\xe3\xa6\xf7\x95\x25\xb4\xf7\xcc\xb2\x86\x54\xe3\x74\x2d\x64\x77\xa5\x3f\x46\x68\x78\x2c\x49\xcd\xd8\x52\xea\x82\xb2\x56\x76\x16\xb9\xaa\x3a\x0a\xe4\x13\xd2\x11\x9c\xc4\x2a\xd8\x10\x57\x6c\x10\x56\xf4\x7c\xa9\xa6\x7f\xaf\x2e\xc4\x70\x46\x53\xa6\xef\x99\x0d\x74\x01\x5f\x79\x57\x0b\x39\x2e\x19\x6f\x7f\xde\x90\x01\xad\xe0\x17\xc3\x3b\x6c\x33\x20\xdb\x11\xf8\x8c\x4c\xa5\x5e\x18\x59\x55\x21\x0f\x61\x78\x81\x77\x1f\x46\x06\xa9\x0c\x4d\xd3\x63\x7b\x5f\x9a\x19\x4a\x33\x25\xec\xfb\x6d\xf7\xbe\xdf\x6e\xf5\x3d\x24\xe6\x9a\x86\x06\xb0\xcb\x2c\x5d\xe2\x22\x09\x0e\x61\x4e\xd8\xf6\xc0\xb0\xaf\x2a\x03\xb9\x8d\x08\xce\xdb\x6e\x3e\x96\xc2\x2d\xd3\xaa\xce\xf0\x2c\x96\xd7\x65\xc7\x93\x88\xbc\x88\x5d\x5e\xeb\x51\xb4\xab\x2f\x1d\x1f\x0c\x34\x17\xf2\x7e\x2b\x1e\x0c\xd5\x13\x16\x83\x85\x96\xd3\xce\x43\x6d\x33\x4c\x85\x33\x4c\xbd\x4d\x79\xb2\xf7\x49\x31\xa8\x31\x30\x9a\xec\xb9\xb4\x74\xfe\xdc\x0a\xb6\xc7\x1c\x7e\x2b\x19\x56\x26\x3b\x04\x0f\xfc\x40\x12\x60\x7c\xb0\x4b\x1b\x5a\x55\xbf\xe4\x9d\x76\xa1\xd7\xe9\xfa\x3a\xdd\x6a\xb9\xe5\xaf\xa1\xda\x35\x23\x1c\xe3\x08\xeb\x2d\x05\xaf\xff\x63\x40\xcd\x1b\x2a\x06\xed\x69\x7b\xbd\x9f\xd7\xbd\xce\xb7\xd7\xf9\xf6\x3a\xdf\x7f\x3f\x9d\xaf\x8f\x21\x3a\x6a\x7e\xb7\x31\x4e\xf9\xec\xae\x0e\xae\xb1\x3b\x36\x91\x79\x28\x8e\xd8\xee\xeb\x78\x8a\xcd\x08\x17\x31\x14\x62\xb2\x9a\x1b\x38\x39\x80\xdb\x88\x43\x6e\xe6\xdc\x4e\x19\x94\xa6\xc1\x6f\x82\x62\x37\x44\x8f\xa3\xba\xc6\x3f\xe7\x33\x74\x10\x2b\x8b\x04\x23\x63\x2e\x93\x18\xc8\x7d\xc2\xa8\xb2\x43\x07\x49\x30\x57\x9a\xde\x31\x91\xac\x89\xce\x98\x9b\x1e\x8e\x42\xcb\x51\x9e\x46\x33\xd8\xc8\x3b\x69\xbf\x88\x6b\x97\x6f\x6a\x64\xce\x01\x6c\xe9\xe6\x3b\x0b\xd8\xcd\xd7\xa1\xd4\x25\x81\xa2\x27\x3d\x53\xe1\xa7\x12\x40\xfa\xeb\x55\xef\xff\x1a\x8c\x85\x73\x90\x2a\x47\xd9\xe4\x2e\xb6\x5b\x6c\xb3\x18\x81\xb9\x6e\xb2\x19\xdb\x4d\xbe\x26\xaf\x51\x75\x27\xdd\x5a\xc1\x46\x70\xa1\xf5\x53\x2b\x8c\x1c\xde\x24\xfb\xb8\xc2\x9e\x7f\xe9\xf9\x97\x5f\x9b\x7f\xd9\xbe\xc1\x4d\x91\x85\xf8\xe9\x34\x40\xfd\xea\x0d\x4a\x4d\xac\x0b\xa0\xd0\xf0\x1d\xdf\x9e\xa9\xdf\xd8\x85\x92\xd8\x4b\x6e\xe6\x66\x4d\x71\x96\x45\x29\x66\x53\xa3\xfa\xca\x72\x21\x82\xba\xec\x26\x12\x6f\xbb\xfc\xf0\xe9\xfc\xb4\x75\xb6\x65\x53\x37\x57\xf8\xb7\x55\xdf\xd6\x4e\xae\xc3\xf0\x63\xd3\xa4\xdb\xf0\xa6\xa9\xdb\x34\x8b\x16\xa1\x8c\xdb\x97\xcc\xa2\xc8\xd6\x71\xcd\x68\x1c\xb2\xf1\x54\x79\xc8\x4a\xeb\x22\x63\x90\xad\xf6\xad\xf8\x5c\x00\x7b\x2c\x74\xd9\x2f\x59\xf2\x79\x25\x86\x7e\x63\x6e\x12\x3e\xa3\x89\x0d\x24\x4c\xa5\x00\xaf\x3f\x95\x47\x0b\xc3\xf1\x61\x35\x23\xd4\x83\x15\xda\xeb\x7b\xca\xcd\x2d\x9f\xc9\x1a\xf5\x22\xe4\xe0\x75\x18\xaa\xae\xde\x20\x69\x33\x25\x40\xcd\x5c\xd1\x1a\x10\xf6\x23\x36\x23\x31\x8b\x12\x9a\x81\xfe\x8c\x47\x0b\xf7\xb5\x77\x96\xbd\x68\x11\xc8\xfb\xf9\xef\xaf\x47\xfa\x6a\x9c\x1f\xe0\xf9\x4a\xca\xcd\x32\xe9\xd7\x60\xce\xc4\xf0\x2e\x9f\xb2\x69\xce\x8d\xd0\x01\x03\xb8\xe1\x9f\x03\x32\x07\x0f\x0e\xc8\xc2\xc6\xa5\x18\xf3\x25\x53\x9a\x2e\xd3\x23\x22\xf2\x24\x99\x6c\x64\x40\x03\x95\x36\xc0\xec\xab\x28\xac\xf0\x6c\x5c\xca\x98\xdd\x78\x19\xf0\x3c\xae\x72\xe3\xf7\x00\x4f\xb9\x35\xcd\x2d\x96\x72\xa3\x45\xaf\xbc\xea\x99\xbf\x9e\xf9\xfb\xf7\x63\xfe\x36\x50\x45\x37\xfd\x55\x18\x01\x95\xcf\x23\x54\x58\x09\x55\xaa\x43\x82\x06\x6c\x56\xd2\x4d\xc7\xcf\x00\x6f\xea\x89\x96\x58\x02\x48\xf0\x1a\x97\x29\xb4\x36\x71\xe5\x1b\x83\xf1\x5a\x82\xef\x1b\x06\x58\xa0\xa1\x92\xaf\x5c\x7c\x84\x39\x91\x32\xd3\x35\xfe\x0f\x74\x2a\x73\x4d\x22\x96\x19\xd0\x99\xd3\x06\x01\xc1\xd5\x59\xed\x14\xf6\xd0\xec\x70\xd1\x10\x7d\xf2\x68\x9f\x36\x6e\x01\x1a\x74\x69\x9b\x85\x21\x09\x8d\x6c\xfc\xc8\x6e\x5c\x24\xde\xb8\x51\x25\x37\x6b\xcb\xac\x3f\x6d\x7f\x52\x04\xd4\xc3\xcb\xb2\x28\x70\xdb\x11\x35\x4f\xc9\x5c\x15\xb7\x1f\xb3\x6d\x93\x97\x7e\x31\xce\xcd\xae\x48\xc6\x66\x19\x53\x8b\xa0\x86\xf3\x23\x46\xdf\xdb\x1e\xdd\xb4\xb8\x82\x28\x98\x98\x86\xbc\x91\x1e\xef\x79\x5b\x7b\xeb\x4b\x7e\xad\x06\x92\x5b\xf7\x1e\x57\xe6\x13\x50\x39\x45\xbe\x10\x95\x89\x25\x4f\x5a\x7e\xb4\xb5\x96\x4b\x89\xde\x57\x78\x05\xb1\x0c\x32\x5e\x25\xec\x5e\x71\x73\x92\x38\x98\xa7\x2d\xc8\xc9\x74\x6d\xfb\xdd\xc1\xfd\x79\xce\xda\x59\xec\x63\xd3\x88\x2c\x64\x12\x2b\xfc\xc0\x4d\x42\x96\xbe\x6e\xbb\xbb\xdc\x4d\x79\x16\xff\xf8\x4d\x17\x67\xbb\x77\xe7\xd7\xa7\x3f\x7e\xe3\x07\x25\x95\xfc\x41\x15\xb6\x39\xa0\x09\xd3\xf3\x37\x8f\x77\xb6\x4b\xa8\xd2\xef\xa4\xac\xf3\xf3\x0d\x4e\xf1\xc2\xfb\xc6\x42\xaa\x10\xf6\xcd\x94\xfc\x3e\xeb\xbb\x24\x48\x86\xd1\x49\x59\x27\x44\xe6\x3a\xcd\x43\x6e\x07\xee\xe9\xe2\x49\x66\x86\xbe\x66\x95\x7c\x02\xbb\xae\x2c\xf0\x79\xdd\x22\x5d\xd3\x5f\x61\xa1\xe0\xd8\x9e\x05\xb5\x09\xc1\x95\x5d\x43\x7b\x72\x7e\x5a\x64\x56\x82\xf9\x7c\xd9\x24\xea\x0c\x17\xc1\x19\x40\x46\x54\x87\x12\x5c\xa2\xa9\x53\xca\x96\x41\xfa\xb6\xcb\x34\x56\xb5\x6a\xa0\xe0\x44\x7e\x2c\x35\x3f\x6e\x1a\x31\x4c\xe3\x4b\x66\xd1\xec\xcb\x67\x11\xc0\xdb\xce\x08\xe0\xed\x6e\x08\xe0\x6d\x8f\x00\xbc\xe5\xf4\x08\x20\xb0\xb2\x1e\x01\xfc\x9a\x08\xa0\xe9\xd7\xe9\xbc\x35\xea\xc9\x4c\x11\x8f\x20\xf0\xcd\xe6\xcf\x5a\xde\xb9\xe5\xce\xa3\x33\xe1\x99\xd2\x74\x9a\x70\xb5\x60\x1d\xd9\x12\xb3\x79\x5a\x6a\x9a\x38\x6f\x44\x39\x43\xbf\x4a\x56\xf6\x64\x56\x42\x14\x53\xa8\x6f\x6b\x02\x53\x4d\x3c\x58\x78\x7e\x9d\xb0\x66\xcd\xfc\xde\x7e\xa5\xf9\x5d\x4a\xfd\x74\x20\x14\x52\x0c\x7e\x91\x69\x7e\x19\x24\xbf\xc6\x34\x21\xd6\xb9\x1b\xf8\x46\xd8\xd4\x27\x8c\x00\x3d\x17\xae\xa4\xba\x31\xea\xa4\x35\x19\x4d\x8d\xc0\x03\x3e\xa4\x55\x15\x47\x41\x83\x8b\x39\xd4\x63\x90\xf6\x59\x75\x22\xd7\x0d\xbe\xff\x35\x2b\xa8\x89\x00\xb8\x5f\x48\xc5\x4a\x15\x3b\xb9\x67\x84\x86\x4d\x1c\xe5\x53\x28\x32\x1a\xf0\x75\x37\x8c\x4d\x50\xa6\xeb\xbe\x8a\x1b\x8e\xf1\x71\x05\x09\xc9\x48\xc6\xa8\x92\x02\xe8\xb0\xad\x6f\xd4\x44\xce\x3a\xcf\xab\x85\xa4\x6d\xce\x0b\x66\x63\x95\x09\x80\x97\xf1\x46\x60\x3f\x4f\x30\x1f\x1d\xb6\xd9\xd5\x4c\x07\xcc\x76\xa5\xd7\x55\x19\x20\xe3\x42\x1c\x2a\xe1\x95\xcd\xbb\xbd\xe2\xb4\x38\xb2\x03\x6d\x8b\x7c\x2d\x99\x5a\x1c\x18\xe8\x9b\x5f\x99\x20\xec\x21\x4d\x78\xc4\xb5\x73\x28\x6f\xca\x77\x45\xb0\xa6\xce\xc0\xd1\x30\xb8\x51\x56\x65\xfe\xa5\x80\x6a\xe3\xbf\x5b\xb3\x47\x21\x26\xea\x84\x21\x11\x13\xbd\xdd\xc0\x44\x6f\x7b\x4c\xd4\xb2\x82\x1e\x13\xed\x36\xaf\x1e\x13\xd9\xe7\x7f\x12\x26\x6a\x08\x27\x1c\x84\x98\xf7\x6e\xcd\xde\xd6\x37\xdb\x64\x65\x3b\xb7\x0c\xf4\xd9\xb4\x76\x73\x3b\x50\x11\xdf\xea\x3e\x7c\x51\x36\x45\xd3\xa0\x76\x76\xf3\x6d\xbb\x20\xe8\x43\x32\x68\x11\x82\x36\x64\x81\xd8\xd2\xc4\x5b\x53\x21\x5c\xd8\xd2\x82\x07\xfa\xe5\x62\x00\x70\x5f\x0e\x75\x79\xfd\xfe\xe4\xcd\x9b\x37\xdf\x83\xfe\x1d\x33\x61\x43\x60\xfc\xa7\xf1\x49\x83\x92\xde\x8c\x31\x08\x4f\x52\xe4\x89\x2d\x45\x56\x3a\x52\x6c\x03\x35\x7c\xe8\x30\xbf\x45\x1b\x3c\x41\xf6\x77\x76\x28\x65\x3f\x22\x77\x42\xde\x0b\x67\x80\xb6\xb6\x9b\x66\x59\xf8\x8b\x54\xe0\x38\x6a\x37\x5e\xff\xda\xb6\xdd\x62\xf6\xed\xd4\xbf\x12\x61\x85\x61\x9b\x28\x6b\x7d\x3a\x91\x2e\x00\xea\x04\xa6\x62\x82\xae\xac\x56\x77\x94\x7b\x5a\x7e\x54\x04\x93\x17\xa5\xbf\xea\x9e\x6e\xb8\x7f\x4e\x35\xbb\xa7\x4d\x71\xf9\x1b\x73\xf9\x80\x1f\x14\xf1\x79\xde\x82\x9e\x60\x3a\x45\x0d\xb4\x1d\x98\x8f\xa2\x6c\x5a\x60\x4a\x5f\x3e\xa3\x84\xd1\x4c\xb0\xf8\x7d\x26\x97\xdd\xe7\x74\x51\x7e\x54\x9e\x3a\xdf\x1a\x9d\xb1\x39\xcd\xe2\xc6\x81\x09\x22\xb9\xcc\xe6\xc2\x80\x0d\x77\x29\x71\xea\xc2\x29\xdc\xd3\xe9\x28\x92\x6e\x9c\xde\xd6\xe2\xce\x67\x36\x96\x11\x39\x01\x0c\x51\xfd\xc8\xd4\xc2\xd0\x6c\x4b\x73\x0f\x48\x5d\x16\x50\xff\xd9\x60\x1a\x51\xf3\x69\x73\x81\x30\xa1\x49\xae\xbc\xb5\x37\x2e\x98\x74\xde\x4f\x52\xc4\xb4\xd6\x38\x4d\x36\xac\x7c\xec\x39\x4a\x5a\x7f\x15\xdc\x21\x6a\xb7\x87\x2b\x77\x5e\xda\x17\x0f\x29\x2c\x9e\x6a\x4d\xed\xbc\x09\xf9\x52\x46\x8f\x7b\x9b\x54\x06\xf7\x80\xce\xb9\xc6\x15\xc0\x5b\xab\xcc\xee\xf1\xbc\xdb\xba\x83\xbf\x36\x33\x56\x50\xad\x4e\x72\xa1\xa5\x5a\xdb\x82\x61\x4f\xb5\x1a\x16\xd2\x53\xad\x86\x09\xf5\x54\x6b\xfb\xe9\xa9\x56\x4f\xb5\xea\x5a\xf5\x54\xab\xf1\xf3\x7f\x49\xcf\xfe\xaf\x15\xcc\x39\x63\x09\x7f\xf8\xea\xf5\x21\x21\xa8\xa4\xb1\x42\xe4\x76\x8b\x6d\xc7\xfb\xc0\x5c\xed\xbe\x14\x9e\xf7\xdb\x4d\x26\xbf\x54\x30\x27\x06\xce\xec\x54\x2a\x12\x3e\xe9\x03\x39\x7b\x5f\xfe\xde\x97\xff\xd7\xf6\xe5\xdf\xc6\x3f\x6d\x25\x22\xf1\xbe\x3f\xb6\x48\x64\x92\xc8\xfb\xf3\xd1\xf9\x68\x44\xa3\x3b\xa6\x95\xe1\x23\x3f\xcb\xec\x2e\x91\xb4\xdd\x93\x7b\xff\xb8\xe9\x6b\x17\x99\x55\x9a\x1b\x60\xa6\x41\xbd\x30\x96\x51\x89\x0d\x77\x93\x27\x90\xbe\x36\xce\x64\x4a\x4c\xd7\x84\x89\x88\xa6\x0a\x4b\xb0\x17\xc5\xee\xb1\x9c\x8b\x1b\x2a\xd4\x67\x59\x83\x6b\x46\x13\xb5\x7b\x11\x2e\x80\xcc\x8f\x7f\xbe\x38\xbe\x7c\x3c\x68\x6a\x3f\x7f\x02\xd8\x40\xdf\xbf\x1a\x70\xee\xd5\x4d\x16\x9d\x2a\x7d\xb2\x60\xd1\x5d\x2b\x30\x6e\x98\xb6\x5c\xec\xc0\x93\x98\x06\x91\xf9\xd8\x08\xbc\xc7\x9f\x6f\xc8\xd9\xc9\xeb\x22\x4e\x41\x0d\xc9\xb1\x65\x64\x42\xb3\x5f\x55\x2b\x40\x62\x65\x8a\xc9\xde\xa9\xbc\x94\x7a\x61\xae\x27\xd4\x65\xc2\x9a\x6e\xae\xf0\xd4\x29\xc6\x01\x4c\xf6\x5a\xaa\x97\x16\x9d\x84\x60\xc2\x44\x1e\x12\xcd\x06\xe5\x57\xa1\x1f\xed\x44\x42\x9f\xd9\x49\xed\x64\x65\x98\xa6\xb3\x13\x29\x04\x8b\xc0\xa3\xb3\x2c\x7f\xc1\xc5\xbc\x6b\xf1\xbb\x77\xa3\xf7\x2d\x5d\xa0\xa9\x86\x0b\xf2\x6e\xf4\x9e\x2c\x65\x1c\x2e\x1d\x19\x3e\xc5\xb8\x8d\x49\x52\x70\x1b\x66\x20\xb3\xdf\x9a\x2f\x19\x31\x67\x92\x4c\x5d\x81\x92\xda\x84\x7b\xf6\xb3\xc0\x37\x68\x17\x42\xbb\x5c\x21\x88\x2f\xa4\x82\x98\x8f\x29\x23\x10\xee\xa1\x65\x50\x7f\xc4\x68\xb4\xf0\x6b\xa7\xd8\x1a\x2f\xca\xd6\x50\x25\x7c\x99\x66\x72\xc5\x8a\x68\x14\x10\xa3\x45\x04\x07\x2c\x95\xf1\x40\xcb\x41\x53\xf5\xa8\x62\xa9\x0a\x17\x86\xb5\x55\xac\x41\xda\x0b\x46\xc1\xe0\x09\x33\xf7\x98\x4d\x73\xac\x27\x9b\xe6\x59\x2a\x95\x39\xfa\xcd\x07\xf4\x51\x15\x05\xa7\xe9\xec\x94\x6a\x7a\x3e\xa3\x11\x1b\xd9\x8a\x9c\x2d\x87\xe4\xdd\xe8\xfd\xe6\x27\xc8\x4d\x64\x0c\x78\x5c\xc2\x1e\x0c\x3b\x00\x6c\x1e\xc8\xd1\xee\x30\x04\x91\x18\x84\xf3\x14\x2a\x17\x17\xdd\x6d\xb9\x38\xaa\xb5\xd9\x17\x73\xd4\xd2\x4c\xce\x33\xba\x04\xf6\x8d\x0b\x22\xb3\x18\x12\x9d\x06\xa1\x4d\x75\xb4\x28\x70\x9e\x96\x87\x05\xf3\x61\x2b\xf9\x0f\x6d\xaa\x22\xc1\x58\x0c\x1d\x2e\xf1\x8b\x05\xf3\x66\x12\x04\xb1\x59\x8e\xab\xf0\x65\xd1\x68\x89\x5c\x21\xb4\x4c\xae\x58\xb6\x59\xcd\xab\x43\xa7\x0b\x2a\x62\xb3\xff\x22\x92\x4b\xe0\xbf\x8a\xd9\x83\xc2\x0f\x2d\x82\x98\x5f\xd3\x1e\x4c\x58\x94\xcc\xb5\xe2\xe1\xfa\x93\x7e\xc2\x06\x42\xce\x8b\x48\x79\xc3\x45\x95\xeb\x2d\x56\xe1\x6d\xc1\xf3\x5c\xe5\x34\x49\x82\x8a\x56\x23\x87\xc4\x10\x57\x37\x1c\x0e\x5f\xec\x18\x13\x66\x0e\x1b\x1e\xf4\x4f\x22\xcd\xf8\x8a\x27\x6c\xde\x0d\x29\x05\x3e\x3b\x20\x7c\xe6\x0a\x6b\x1e\xb8\x63\xc3\xac\x1f\xfe\x9d\xb9\xc7\xc9\x30\xf7\xda\xdf\x4e\xd3\xd9\xad\xbd\x67\x41\xe2\xa1\xd6\x2a\xd2\x89\x7f\x1b\xfd\xcf\x21\x11\xac\x9c\x99\xb3\xe8\x8e\x0f\x13\xca\xd6\x1b\xa0\xba\xd2\x36\xd4\x7b\xae\x0c\x57\x1c\x21\x17\x8b\xe9\x08\xec\x49\xda\xdf\x57\x88\x4c\x69\x8a\x5b\x6c\x1b\x71\xa1\x8c\x04\x03\x35\xa8\x89\xbc\x0f\xea\x11\xb7\x6f\x86\xd9\x45\x66\xab\x33\x95\x03\x7c\x71\xe5\xd1\x69\x3a\xdb\x81\x86\x9c\xb9\x6d\x29\xb7\xc8\xee\x10\x30\x2d\xae\xdc\x82\x99\xbd\xe1\x90\xd3\x84\x8a\xb0\x6e\xed\x4b\xd9\x11\x33\xed\x07\x3d\x96\xae\xfc\x9d\x14\x62\x49\xb3\x76\xbe\xc4\xac\x21\xf0\x5d\x85\xee\x95\x44\x8e\x86\xa6\xfe\xe6\xf5\x94\x9b\x9b\x96\xdd\x15\x39\x5b\x15\xd3\x04\x65\x6e\x47\x0d\xf0\x16\x53\x41\x98\xab\x8a\x86\x22\x51\x0d\x66\xa3\x36\xdb\xae\x45\x02\x43\x3c\x87\x30\x86\x8d\x6c\xcd\x5d\x02\x54\x33\x33\xc8\xd5\x9a\x22\x97\x49\xe4\xac\x16\xf9\x94\x13\x82\x7a\x1b\xa0\x5e\x8b\xbd\xba\x83\x48\x44\x5d\xf2\x57\xab\x0c\xad\x51\x8c\x99\x13\x98\x66\xae\x04\xc2\xf5\xe8\x3d\x01\x66\xce\x3f\x80\x2f\xeb\xb7\xb1\xc6\x07\x19\xb7\x11\x00\x64\x77\xe4\x63\x87\x28\x58\xbb\x8b\x9b\x9f\xd5\x6c\xa2\x59\x9a\xb7\x33\xa1\xb5\xf9\x28\xb7\x92\xfe\x0a\x52\xd9\x5b\xbc\xfc\xdc\xa6\xd9\x77\x08\xdb\x2b\xe5\x18\x2c\x13\x62\x20\x6e\x75\x93\x86\x53\x97\x2e\x63\x70\xc1\xa6\x1b\xec\x3d\x83\xb3\xa3\x25\x99\xec\x8d\x73\x21\x58\x32\xd9\xc3\x0c\xd5\x53\xa9\x83\x99\x9a\xad\xec\x0c\x33\xc8\x98\x4a\xa5\x30\x77\xce\x12\x15\xae\x88\x86\x5e\x70\xc0\x8d\x34\xc5\x30\x5e\x10\x41\xba\x29\x9c\xde\x5c\x1b\x4e\x1a\xbf\xc3\x71\x42\x5d\x4f\x73\x6d\xdb\x54\xc7\x0f\x1e\x1b\x85\xea\xf6\x98\x67\x2c\xd2\xc9\x3a\x98\x40\xd9\xcc\x4c\xb8\xf1\xed\xfe\x95\x4d\x82\xe4\x0a\xd2\x52\xa7\x29\xa3\x99\xf2\x0b\xbd\x9c\x8f\x9c\x90\xcc\xb1\x10\x1e\xb4\xfc\x83\x53\x3b\x01\x0f\x59\x73\xaf\x53\x96\x2d\xb9\x52\x7c\xc5\xc8\xc5\x6b\x8f\xa3\x28\xcf\x37\xee\xd0\xae\xd5\xaa\xa7\xe9\xcc\xf0\x9f\xa3\x4c\x3e\xac\xcf\xac\x92\xe4\x26\x31\x47\xaa\x23\xe2\x7d\x37\x7a\xdf\xdc\x41\xf8\xe0\x87\xb9\x32\x8f\x6b\xdf\x57\x84\x2d\xa7\x2c\x36\xc7\xf3\x2e\x9f\xb2\x41\x6a\x46\xb0\x0a\x65\x45\xaa\x43\xd5\xeb\xd6\xdb\xf0\x74\x31\xf7\xf3\x54\x9b\xe9\xaa\x13\xd3\x30\x4f\x77\x20\x3b\x2d\x5d\x54\xc8\x11\xc2\x22\xb4\x78\x04\x8f\x47\xae\xd2\x4c\x62\x7a\x9e\x64\x4d\x22\xd3\x23\xc9\xb1\xa4\x51\x9e\x2a\x9d\x31\xba\xf4\x05\x87\x12\x42\xfb\xfb\xe1\xb4\xec\x76\x6e\x24\x5a\x50\x0e\xf2\xc0\x0d\x32\x66\xae\xdc\x62\x31\xc3\x99\x0f\x6e\x9b\xf2\xdb\xa6\xb5\xfa\x5a\xb2\x40\x01\xc1\x8f\x5c\xdc\xac\x45\x84\xc1\xf8\x3b\xc1\xbe\xf2\xe5\x41\x0d\xb2\xd5\x61\xd9\xce\x16\xaf\x07\x37\xc1\x22\xc9\x3c\xea\xfb\x0a\xbd\x6d\xc1\x30\x94\x0a\xea\x7d\xef\x88\x86\xba\x2d\xc1\x38\x24\xe4\x42\xde\xb3\xcc\x69\xca\xe6\xe6\x1a\x67\x2c\xce\x23\xac\xf1\x3e\xc8\x53\x50\x0c\x8b\xc8\x34\xfd\x81\xcf\x17\x45\xdb\x30\x96\x35\x5f\x3a\xc5\xfa\xe8\x13\xc9\x15\x9d\x33\x88\xda\x33\x1c\x36\x18\xa7\x52\xb2\x94\x19\xa2\xf3\x0a\x96\x78\xa5\x1e\x81\x21\x2e\xe4\xfc\x82\xad\x58\xa8\x04\xc7\xd6\x8e\xb8\xb6\x15\xa8\x43\x6d\xfe\x04\x5e\xbb\xb8\x3a\x8f\x85\xac\xc1\x05\x85\xbc\x5f\xc2\x7e\x89\xe8\xf8\xca\xa9\x58\xae\x66\x33\x54\xae\x9c\x8b\x99\x34\xff\x42\xdd\x8a\x11\x62\x27\x7b\xf5\xc2\x7c\x22\xe7\x58\x02\x95\x2d\xb9\xd6\x25\x39\x32\x83\xe9\x8c\x46\x8c\xa4\x3c\x65\x07\x2e\x7f\x97\x61\xca\x81\xb1\x45\xfd\xc1\x72\x59\x53\x01\x7b\xb2\xa7\x23\xc2\x1e\x58\x64\x60\x86\xa2\x74\x45\xbf\x43\xae\x66\xb3\xbf\x0d\x77\x07\xff\xe8\xe6\xf2\x78\x3c\x32\xa4\x3d\xb0\x01\x54\xac\xaf\x42\x85\x7a\x06\x6d\xf1\x55\x83\x16\x6b\xe3\xd6\xce\x96\xd3\x28\x25\x9e\x8c\x8a\x39\xf3\x8b\x59\xdf\xc3\xbb\x58\x2e\xc3\x82\x5c\xca\xa3\x3b\x42\xb1\xaa\x05\x9a\x55\x33\x66\x8d\x02\xa8\xef\x87\x5f\x22\x99\x24\xdc\x48\xf2\x96\xd5\x2c\x72\x6a\x84\x15\x92\x05\xc3\xc8\xd2\x05\x5b\xb2\x8c\x26\x76\x5e\x54\x15\x65\xe4\x0d\x57\xf8\xfe\x84\xbc\x7d\xf9\xed\x5b\xf2\xfc\xd5\xcb\xd7\xdf\xfc\xaf\xff\xef\xff\x7f\xfb\xed\xb7\x6f\xbe\x7d\x51\x57\xcf\x3c\x85\x5a\x3b\x74\x9a\xac\x2b\xcc\xd7\xe6\x20\xaa\x08\x99\x35\x27\x43\x0a\x22\x53\x96\xd1\x3a\x3e\x55\xad\x95\x66\x4b\x35\x24\x17\x5c\xe4\x0f\xe6\x53\x45\xde\xbc\xfe\xfd\xdb\xef\xcc\x74\x5e\x7e\xff\xfd\xf7\x07\x06\x8e\x09\xc3\xfa\x3a\x8a\x2c\xa5\x32\x6c\x49\xc1\x40\x1c\x5f\x1e\x87\xba\x75\xab\xc4\x65\x7f\xf3\xfd\xab\x6f\x5f\xbb\xf5\x39\xd7\x65\x83\xc6\x05\x33\xe7\x99\x66\x3c\x59\x9b\x4d\xc8\xe4\x34\x61\x4b\xdc\x87\x70\x31\x0f\xec\x4f\xae\x58\x96\x18\x31\xb1\xb8\x04\xc5\x1a\xcb\x05\xbd\x2b\x6a\x5b\x38\x9f\x06\xf3\x6d\x1d\xeb\xc9\x85\x61\x50\xf9\x8a\xf9\xd7\xe3\xf5\xcb\x97\x2f\x5f\x1e\xbd\xfe\xfe\xfb\xef\xbf\x0f\x21\xa9\xd4\x2a\x8a\xc8\x7f\x0d\xff\xcf\xed\x5f\x1f\x06\x65\xf9\xa3\x01\x17\x7a\x20\xb3\x01\x1e\xed\xb0\xeb\x34\xd0\xc1\x73\x10\x76\x3b\x71\xf5\x27\xd5\xf6\x75\xba\xc6\x85\x94\x77\xbe\x32\xa0\x86\x1c\x6b\x99\x0e\x10\x1f\x6e\x10\x66\x73\x90\x50\x04\x37\xd0\xb5\x3a\x76\x9b\x7a\x52\xcb\xd4\x02\x37\xa8\x7f\x32\xdf\x1b\x04\x38\x5d\x03\xef\x29\xe2\xed\x1e\xa6\x52\x6b\xb9\x1c\x3a\x21\xdf\xc6\x83\x28\x3a\x63\xae\xd8\x47\xf0\xd0\xba\x0c\x2b\x69\xc6\x56\xe0\xb8\x56\xaa\x10\x4c\xef\x56\x9e\x44\xb7\x88\xe9\x3a\xa5\x4a\xd9\x0a\xf5\x6b\x99\x13\x75\xcf\x75\xb8\xae\x8b\x96\x76\xa2\x96\x4e\x4f\x19\x51\x58\x3e\xc3\x4e\x17\x8b\x4c\xe1\x10\xae\xba\x1c\x42\x09\x53\x35\x06\x4f\x17\x30\x88\xa0\x24\x9d\xae\x8d\xfc\x9e\xa0\x61\x31\x93\xf9\x7c\xb1\xe1\xd0\x0e\x3d\x1f\xe0\x30\xf7\xb6\x60\x7e\xa8\x4f\xdb\x3c\x95\x09\x8f\xd6\xc8\x9d\x4d\x99\xb7\xd2\xf2\x08\x23\x60\x77\x25\xb1\x05\x81\x3b\xcd\xf8\x2a\x58\x81\xb3\x39\xed\xfa\x34\x9f\x5b\x55\xd5\x85\x9c\x9f\x66\x32\x4d\xcd\xb1\xdf\x91\x0f\x83\x6e\x3e\xb2\xa5\xcc\xd6\xa3\x4c\xce\x78\xc2\x46\x54\x2f\x1e\x33\x97\x1b\xbe\x04\x0b\xd0\x09\x4d\xa2\x0f\x19\x4d\x17\x3f\x50\x31\x3f\x9e\xe9\xc7\xad\xcc\xf5\x76\xea\x80\xf4\xf8\xde\x60\x93\x9c\xe4\x30\x96\x3f\x48\xa5\x8f\xa3\x1a\x87\xc4\xea\xed\x3f\xad\xff\xd6\xc7\x04\xa0\x52\x35\x47\x5a\xd5\xa8\x52\x0a\x05\xab\x69\x3a\x97\xee\xea\xd0\x52\x23\x5a\x5a\xaa\x65\xa9\x04\xe1\x5a\xb1\x64\x46\x9e\xd3\x59\x4d\xea\x59\x40\x0f\xb6\xef\x05\xb7\xc4\xb9\xe8\x8a\xa1\xb0\x89\xe7\xf7\xc5\x90\xbc\x5b\x17\xb5\x7d\xf0\x68\x87\xba\xb4\x55\xe1\x83\x46\xbc\xa2\x6b\x15\x9a\x26\x90\x89\x70\x45\xb4\x02\xdb\x4d\xf6\x4e\xaf\xaf\x46\x93\x3d\x48\x41\x6a\x08\xbd\xc5\x16\xf7\xd4\x56\x5d\x85\x72\xa1\x4a\x2e\x21\x86\x8e\x26\x49\x93\x18\x0f\x73\xf3\x01\x67\x66\x73\x80\x9a\x03\x08\x29\xa3\x19\x5d\x32\xab\x32\xb9\x3e\x1b\x7f\xba\xbe\x34\xbd\x1e\x9f\x9c\x9c\x8d\xc6\x43\xf2\x49\x05\x6f\xbd\x6d\xc8\x71\x62\x50\xb1\x69\x2d\x73\x50\x8a\x56\x71\x92\xb7\xa8\xf3\xcb\xd1\xa7\xf1\x64\x0f\xd1\xd4\x1f\x1a\x70\x09\x20\x11\x87\x86\xb5\xc3\xa3\x9b\x88\x9e\x6a\xec\xc9\x16\x06\x9b\xec\xe1\x9c\xc2\x55\x83\x9c\xca\xcd\xee\xc8\xc6\x64\x88\xb4\x48\x7c\x41\x15\xe4\xb7\xc5\x22\x0c\x69\x26\x5d\x8e\x5a\xb7\xb9\xa1\xbe\xc3\x47\x09\x40\x67\xc1\x08\x7a\x0e\x51\xf8\x6e\xd1\x24\x71\xc2\xba\x9b\x58\xed\xce\x15\x3a\x27\x02\xe7\x3b\x34\xa7\xba\x09\x34\x6b\x6f\x0d\x2a\xdc\x19\x17\xb3\x15\x8f\xd0\x6d\x7a\x94\x49\x2d\x23\xd9\x2a\xf6\x00\x8f\xea\xbb\x16\xa1\xa7\x60\x6a\x3f\x27\x34\xb6\x3a\x36\x2b\xf0\x2c\x59\x6c\x87\x09\xf2\x5c\xe0\x90\x7d\x60\xa8\x97\xbb\xa4\x70\x88\x1d\xd9\xb9\x1e\x8f\xae\xaf\xc6\xb7\xef\xae\xae\xc6\x28\x25\x25\x6c\xa6\xc9\x34\xa1\xe2\xae\x56\xff\x51\x23\x04\x78\x6b\xbd\xd9\xa5\x44\xd7\xd8\x56\x4c\xd5\x5b\x85\xad\x9c\xb6\x4b\x8a\x5d\x16\x5b\xc1\x48\x81\x4e\xc1\xb9\xd4\x2d\xf2\x80\x24\x8c\xae\xac\xb7\x50\x50\xee\x06\xc6\x0b\x14\xd2\x0b\x29\x2d\xe7\xbc\xd1\xe3\x23\xaa\xfa\x5a\xf3\xcc\x89\x14\xc2\xc8\x88\x77\xe7\x02\xd2\xd2\xd5\x79\x1c\x34\xd2\x5a\x77\x9a\xaf\x5d\xa4\xf2\x29\x4b\x82\xae\xe8\x4d\x13\xda\xea\xa4\x5e\x67\xd5\x3c\x19\xab\xac\xbe\x94\x31\x83\xb4\xbe\x6d\xdb\x7f\xe6\x7f\x70\x72\x7e\x7a\x6d\x3e\x42\x29\x2e\x31\xff\x92\x33\x62\xde\xee\x83\x28\xe0\x7a\x1f\x08\x29\x06\xe8\x0f\x09\x91\xb5\x0d\x76\xd9\x25\x5d\xbb\xfd\x42\xad\x6e\x41\x84\xc0\x18\x80\xa5\x7d\x99\xa7\x4c\xb6\xbf\x86\xe5\x43\xe7\x82\x6a\x90\x6b\x54\x26\xa1\x0c\x65\x25\xf9\x0a\x79\x33\x67\x94\x27\x86\xbf\x3e\x17\x53\x99\x8b\xd8\xb0\x0d\x75\x92\x7c\x95\xe3\x78\x5f\xf3\x61\x15\xce\x9f\x4e\x47\x87\xe3\x93\x11\x2a\xfe\x83\xab\x17\x31\x6c\x86\xb5\x17\x7a\xfa\x45\xa4\xb0\x21\xd3\x2f\xd0\xf2\x82\xc2\x87\x7a\x95\x82\xf0\x2c\x63\x2a\xb5\xb9\x4c\xcb\x12\xbb\x79\xc6\xf5\xba\x20\x0f\x0e\x51\xd8\x3a\xb1\x86\xae\xaf\x24\x0f\x52\x18\x1a\x45\x90\x31\x14\x08\x47\x94\x63\x9d\x75\x39\x9b\x11\x8a\xf3\x01\xa6\xc2\xcc\x36\xcb\x58\xa4\x37\xfc\xcb\xc8\xfb\xb0\x1f\xf6\x94\x46\x77\x83\x4a\x11\xa0\x03\xe7\xcd\x5d\x60\x67\x57\xd5\xb0\xac\x76\xcd\xb5\x43\x46\x75\x99\xe2\x27\x7b\x3a\x4a\x27\x7b\xc0\xb5\x50\x80\x6f\xb8\x1b\x0f\xd0\x3e\x1f\x15\x5c\x3f\xba\x55\x19\xec\x64\x10\xe2\xb8\xb4\x07\x53\xe0\x14\xe0\x14\x20\x28\x60\xb3\x0f\x0a\xa5\x40\x6d\x9d\x42\x21\x05\x18\xeb\x0a\xe1\xce\x7a\x2a\x59\xa3\x9d\x52\x0b\x67\x12\x36\xa7\xe4\xf4\x87\x93\x51\xc5\x60\x1b\xa5\x47\xaf\x5f\x07\xfd\x6c\xf2\x38\x3d\x7a\xfb\xdd\x01\x34\x79\xf5\xfb\xef\xf1\x1f\xaf\xdf\x94\xff\xfa\xee\x25\xfe\xeb\xed\x37\xdf\xbc\xb1\xff\x7a\xfb\xf6\x6d\xf1\xaf\xdf\x87\x88\x72\xfd\xe5\xab\xe6\xd7\x30\xfb\x36\x92\x28\xbd\x46\x72\x39\xf5\xc2\x83\xdc\x9e\x1e\x00\x88\x0e\x8a\xc3\x5f\xe3\x73\x3f\x2a\x08\xb4\x88\x51\xf1\xe4\x7c\xb8\xca\x0a\x9c\x61\xcd\x50\x4b\x8c\x89\x60\x61\xfd\x38\xe9\xe4\xe2\x6f\x66\xd2\xf2\x79\x43\xd2\x24\x52\x40\xe1\xd1\x53\x68\x2c\x5a\x3c\xa8\x2d\x03\x3c\x28\x46\xae\xc7\xa0\xcd\x29\xd0\x1a\x31\xe8\x55\xae\x1f\x89\x42\xb7\xbe\x7c\x62\x1c\x2a\x73\x3d\x97\x3e\x0e\x05\xae\xb6\x1d\x8b\x6a\xd9\x63\xd1\x5f\x14\x8b\x4a\x7b\x10\x9e\x06\x8d\x4a\x90\xf3\x99\x8e\xe2\xfd\x7d\xc8\xea\x23\x62\x9a\xc5\xd6\x06\xaf\xa5\x75\xd4\xa9\xad\x30\x87\xc7\x28\x96\x0c\x97\x3c\x67\xda\x6c\x18\x6c\x16\xca\xb3\x3a\x8a\x2b\x2e\x5d\x06\x00\x66\x3b\x0d\xa2\xae\x53\x5a\x9f\x5e\xde\x6c\xe2\xf0\x5d\x10\x74\x70\xa3\x2c\xce\x3e\x00\xb4\xff\xed\x1b\xfc\x6f\x8f\xc3\x7b\x1c\x1e\xfc\x35\x8c\xc3\x19\xd5\x79\xc6\x4e\x99\x66\x91\xbe\x5a\xb1\x2c\xe3\xed\x2a\xf7\xf7\xa1\x8f\x8a\x52\x3f\x5a\x82\x5d\x22\x73\x76\x19\x3b\x44\xf8\xec\x69\x66\xb5\x4c\x3f\xa2\x01\x96\x66\xde\xf9\x20\x5c\x10\x8a\x76\x3d\xa2\x58\x4a\xb1\x40\x34\x50\x07\x40\x97\x22\xa8\x1e\x53\x29\x8d\x8c\x98\xce\x1e\xe8\x32\x4d\xd8\x1f\xc8\x64\xef\xe6\xf2\x78\xfc\x3e\x4f\x92\xf5\x35\x58\xc0\xfe\xa8\xb3\x9c\x1d\x7c\x3c\xbe\xf9\x4f\xff\x25\x78\x94\x1d\x5c\x33\x88\x69\xbb\xc9\x53\x40\x17\x17\x32\xba\xfb\xe3\x64\x2f\x78\x52\x27\x7b\x60\xbe\xb0\x7e\xe3\xf0\xf9\x64\x0f\x71\xe2\x4c\x66\x51\x65\xf5\x07\x58\x4f\xdd\x34\x95\xd6\xb4\x59\x6f\x46\x36\x40\xa0\xb9\x96\x03\x84\xcf\xce\x02\xf1\x2c\x91\x60\x03\x3a\x1f\x85\x49\xb1\x53\xc2\xd4\x3a\x3f\x56\x77\xbb\xec\xad\x4c\xfd\x54\x5a\x57\xd0\xc1\x63\xc3\x3f\x62\x9e\xd1\x20\x15\x70\x33\xf3\x92\x8a\x05\xe5\xbd\x5a\xff\x79\x2b\x49\x87\x7e\xaa\x5f\x4e\x13\xac\xa0\xf0\x38\x8f\xfe\x7c\x3a\xea\xea\x58\xf2\x61\xf3\x0b\xeb\xa1\xa1\x88\xfd\x85\xfc\xf9\x74\x44\x94\x74\xbe\x40\x24\xa2\x59\x38\xb8\x02\x98\x96\x58\x8a\xfd\x7d\x4d\x14\x1e\x38\xf8\x56\xce\x66\xa0\x5a\x93\x19\x89\xc1\xee\x00\x66\x18\xf0\x16\x05\xa2\xf8\xe7\xd3\x11\xf2\x1e\x41\x45\xae\x75\x0c\x61\xe6\xde\x30\x11\xb3\xb8\x34\x13\x19\x9a\x06\xa3\xa5\x99\x5c\x99\xfb\x39\x65\x1a\xf4\x7a\xa5\x03\x7b\xcd\x3c\x45\xa1\x4b\x1d\x7e\xb1\x13\xe6\x82\xd1\x44\x2f\x1e\xa9\x13\xc1\x8f\x0d\xc3\xb8\xa3\x52\x06\x3f\x1c\x85\xd1\x7f\x23\xe2\x2f\x5c\xa1\xcf\x1e\xa2\x24\xef\x60\x91\x3c\xdf\xf8\x00\xb9\x5a\xc0\x63\x83\x0d\x3c\x06\x15\x43\x5a\xbd\xc1\x2b\x4e\xf0\xcc\x76\x0a\x2a\x46\x5b\xf5\xc4\x95\xd5\xad\xb2\xb6\xc3\x3a\x37\x8b\x2a\xbb\x54\xf1\x5b\xb6\x81\x19\x73\x21\xcd\xab\xd2\x91\x69\x7f\x9f\x9c\x8f\x7e\xbc\x21\x71\xbe\x5c\x06\x1d\x08\x8a\x65\x1c\x38\x27\x7e\x4b\x0f\x5c\x08\x65\xb2\x26\xd3\x75\xc5\xf7\xa6\x6a\x59\x08\x6a\xb7\xed\x5a\x97\x79\xa2\x79\x9a\x78\xfe\xf8\x18\xb3\x4b\x72\x85\xb6\x54\xf3\x9f\x84\xb9\x28\x4d\x70\x6c\xe1\xdb\xd1\x9c\x04\xa2\x09\x53\x9b\x4f\x6b\x2b\x3c\x41\x01\xa3\x1d\xfa\x01\xe6\x09\xfc\xcb\x7d\x46\xd3\x3a\x3b\x0f\x82\x13\x48\xd3\xfe\xfe\xe1\xfe\x3e\x76\x67\xe9\x10\x59\xa0\x6e\xd4\x7a\x1a\xed\xef\x1f\xfe\x97\x81\xc5\xe1\xc1\x8a\xe9\xc5\xab\xfd\xc0\x25\xb2\x21\x5d\x0e\x06\xa8\x6d\x28\xbc\xf2\x61\xb7\xa6\x6c\xce\x85\x1b\xd1\x74\xb7\xbf\x6f\xeb\xda\x28\x59\xa7\x85\x2d\x41\xb8\xbf\x6f\xc7\xf6\xef\x34\x6c\x10\x4f\x57\xaa\xc1\x2d\x37\x7c\xc3\x8a\x8e\x47\x19\x9b\xf1\x87\xee\xd7\x04\xdb\x3b\xbd\x75\x75\x8b\xc1\xdb\xa3\xa8\xef\x57\x54\xae\x09\x42\x6b\xdb\x06\x06\x11\x12\x20\x6a\x18\xaa\x93\x73\xb5\x40\x43\xc0\x32\x20\x09\x36\xc2\x4a\x0d\xc9\xa5\xd4\x80\x23\x08\x13\x2b\x9e\x49\xb1\x04\x83\xbb\xb4\xf9\x11\xa9\x20\x53\x43\xb7\x97\x4c\xd3\x04\x4f\xa0\xcc\xa2\x05\x53\x3a\xa3\x5a\x86\x13\x7b\x16\xd4\x14\xed\x08\x34\x35\xbc\x6f\xc6\xa9\x66\xc9\xba\x7a\x76\x64\x9e\xf9\x4e\x85\xa0\x15\x92\xd1\x5d\x4d\xb5\x4b\x83\xc6\x6c\xb8\xb9\x35\xb5\x99\xbd\x8e\x68\xc2\xf7\xf7\xfd\x40\x66\xd3\xeb\x55\xca\xc4\x8d\xa6\xd1\x9d\xff\x59\xf0\xde\x38\xcf\xa2\xfd\x7d\x4d\x53\xd7\x91\x7f\x72\xcc\x00\x8f\x3e\x33\xd7\x58\x65\x07\xce\xc4\x8a\xb6\x5a\x76\xce\x6b\xbe\xab\x2b\x10\x54\x1b\x35\x99\x31\x15\x51\xa1\xac\x23\xbd\x7f\xbf\x24\x59\xb1\x8c\xcf\xd6\x36\xe2\x02\xf3\x71\x82\xb4\x89\xdf\x00\x39\x0e\x6b\xb6\x5d\x58\x89\x41\x78\x8a\xe9\x22\x82\x9a\xbb\x59\x6a\x49\x5e\xee\xc8\xd4\xf1\x94\x37\xf8\xbe\x36\xd2\x4c\xf3\xe9\xc7\xf1\xa7\xf6\x0b\x39\x3a\x1f\x7d\x1c\x7f\x72\x30\x34\xff\x04\x4f\x76\xed\x72\x0d\x59\xa5\x3f\x5a\x8d\x86\xe4\x86\x85\x9d\x32\xec\xb1\x36\xab\x36\x7d\x78\x3e\x8e\xdf\x7c\xb3\xbb\xb3\x3f\x4f\xcd\xd1\xdb\xf1\x7c\xec\x9f\x87\xbe\x6a\x3c\x1d\x24\x63\x18\x68\x1a\xe6\xc9\x13\xcf\x23\x08\x53\xc8\x56\x35\x09\x44\x48\x8b\x0c\xac\x95\x14\xec\xb9\xbe\xda\x27\xa8\xc1\xc9\xe4\x5d\x91\xea\xb2\x70\xdb\x09\x57\xa6\x2a\x86\x77\x15\xa9\x9a\x7d\x7e\xbf\x7f\xb9\xb3\x47\xa9\x1b\xe1\x1d\x8d\xee\xd8\x56\xd6\x80\x2d\x20\x9f\x57\x9b\x17\x82\x9b\x2b\x70\x3a\xb5\xef\x0d\x93\xe3\xe6\x6e\x48\x5a\x10\x10\x0c\x4d\x7f\x15\x75\x0e\x98\x17\xe7\x34\x68\x4e\xee\xb2\x8e\xf7\x3c\xd1\x2c\x83\x08\xeb\x5a\x77\x92\x2e\xfd\x18\x29\xf0\x7d\xbd\xdf\xcd\xe6\xc9\xdb\xfe\xc8\x1d\x3c\x83\x65\xfc\x94\x59\x6e\x80\x10\x44\x12\x19\xdd\x91\x19\x4f\xd8\x90\xfc\xc5\x70\x1f\x74\x0d\x01\x8a\x68\x3e\x05\xf7\x3f\xa0\x1a\x56\xdf\x57\xb4\x76\x02\x40\x38\x0b\x2a\xd7\x9e\x42\xac\x98\xcd\xf3\x99\x47\x6b\x7c\xb7\x8a\x25\x4d\x53\x86\x01\xaf\x42\xcb\xc2\xbb\xba\x86\x98\x69\xca\x05\xcb\xcc\xb5\xa2\x24\xe6\xb3\x19\xcb\x98\xd0\x24\xa5\x7a\xf1\xc2\xa7\x13\x87\x59\x2e\x0e\x1f\xac\x34\x61\xe6\xfd\xd8\x63\x6a\x20\x3c\xca\xe4\x94\xed\x80\x15\x6a\xbe\x74\x1b\x04\x9e\xe6\x1b\xca\xe4\x20\xaf\x81\xf5\x85\xd1\x23\x9d\x6a\x6d\xa4\x7b\xa0\x19\x34\x02\xf5\x4e\xd5\xfd\x04\x36\x87\xcf\x6c\x38\xaf\x90\x41\x5e\x83\xae\x28\x87\x8c\xb2\xc3\xaa\x4f\xfa\x92\xde\x39\x97\x72\xf0\x1c\xb7\xe1\x33\x7c\x65\x45\x00\xb7\xfb\x35\xc2\xa0\xd9\x17\x10\x03\x0f\x20\x00\xc7\xc8\x8f\xd0\xcd\xc9\xe8\x93\xbf\x29\xdf\xbe\x5c\x3e\x1a\x5d\x18\x68\x8e\xf9\x92\xc9\xbc\xd5\x42\x5d\xd9\x01\xfb\x4d\x13\xec\x01\xd0\x41\x4d\x82\x8d\xe7\xae\xc0\x18\xdc\xcc\x5f\x1e\x78\x48\x13\x34\xcd\xa8\x48\xe6\xaa\x54\xc6\xd4\xb2\x03\xc0\xe3\xab\x05\x0d\xee\x20\x5c\x2f\xf4\xa1\x4a\x92\x2a\xb2\xb7\x0c\x79\x98\x72\x18\x5e\xdc\x6c\xa2\xdb\xa9\x21\xf9\x6c\x36\xce\xc6\x6e\x94\xb1\xf0\x46\x22\xa7\xe5\x45\x3a\xa8\xf7\xfe\x75\x11\x49\xa6\x47\x73\x9d\x6c\x9c\x94\xcc\xd6\x0e\xb3\x78\x71\xee\x4b\x99\xdb\xbc\xc8\xd6\x01\xc9\x2b\x83\x19\xea\x5d\x66\xae\xc5\xcc\x65\x0c\xc1\x09\x55\x82\xf6\x54\xc1\xe5\x3c\xf6\xd8\x7c\xa4\x46\x66\xfb\x72\xec\xfc\x91\x66\x77\x1f\xa9\x6a\x8f\xe2\x3c\xdf\xf8\xc0\x1d\xbc\xa5\xf9\xb7\x2f\x68\x43\x29\x50\x65\x90\x65\x08\x3e\xe7\xa3\x31\x1e\x0a\xd3\x0f\x99\x1a\x94\x0a\x89\xd3\x5c\xe0\xce\xd4\xec\xe2\x9b\xd7\xe6\x17\xb2\x60\x0f\x34\x66\x11\x5f\x96\x85\x59\xcc\x01\x0a\x9e\x13\x4d\x12\x46\x95\x26\xdf\x61\x9f\x8a\xe9\x03\x30\x71\x98\x2d\x45\x82\x1a\x25\x54\x2d\x9c\x17\xdf\xda\x9e\xc0\xa5\x9b\x45\x58\x16\x70\x5e\x3f\x60\xc0\x02\x9f\xf0\xca\x36\x3e\xcc\x66\x2f\xe1\x09\xed\xe2\xe3\x6b\x55\x96\xbb\x73\x79\x3c\xbe\xb2\x66\xb8\x82\x69\x47\xba\xfc\xc8\xed\x1e\x49\xa5\x3f\x67\x5c\x33\x70\xf0\xd9\x19\xf5\x87\x3f\xdf\xe4\x0c\xc1\xdd\xad\x16\x4b\x18\xce\x2e\x36\x3b\x43\xc9\xbd\xe9\x6a\x3b\x16\xa9\x28\x47\x1f\x2d\x58\x8c\x1e\x84\x10\xd4\x9b\x51\x92\xb1\xb0\x27\xdf\x14\x85\xb0\x22\x95\x01\x06\xca\x62\x54\x3e\x0c\x72\x4f\x91\xb2\x47\x89\x9c\x4e\x59\x86\xe2\x05\x15\x15\x3c\x14\x54\x54\xfb\xa1\x1a\x10\x55\x26\xa3\x28\xcf\x0c\x41\x72\x5f\xd3\x34\x4d\x5c\xd1\xdf\xca\x59\x29\x54\x86\x35\xb2\x53\xca\x22\xbd\x8d\x29\x87\x5f\x14\xd7\xe4\xba\xda\x9d\xe5\x0f\x7e\xf7\x08\x91\xd0\xca\x01\x2e\x34\x14\x44\x5f\xeb\x52\xea\x6d\x71\x33\xfb\x5f\x77\x6e\x2a\x86\xe0\x5d\xd8\xff\x70\xf6\x4a\x98\x5b\x21\x10\xa0\x8e\x42\x7b\x2c\x74\x51\xfb\x18\x95\x53\x86\xa3\x06\xe6\x02\x34\x16\x35\x1a\x22\xeb\xdd\x8f\x9d\x16\x42\xab\x02\x5b\x27\x68\x59\x68\x06\xc6\x5a\x2c\x0f\x8d\x01\x33\xd6\xb7\x6f\x9a\xcf\x6b\x09\xa1\x39\xbf\x33\xfe\x80\x76\x1d\xdb\xde\xe6\x7a\x23\xdf\x0c\x5f\xbd\x2a\x14\x82\x86\xfa\xa2\x62\x6f\x65\xde\x1b\x82\x34\xcf\x18\xad\xf1\xb0\x5e\x5b\xe6\xd8\x39\x28\x17\xce\xc5\x5a\x1e\x10\x4a\x16\x5e\xd0\x1e\x86\x53\x57\x63\xf4\x42\x5d\x42\xd8\x5e\xe5\x10\x3f\x46\x96\x5a\xbd\xb5\x56\xa4\x5d\xe5\xf5\xbb\x7c\xca\xa0\x62\x8c\xcc\xf4\x35\x84\x32\xb5\x9e\xfd\x3f\x6d\x7d\x62\x2b\xcf\x39\x2d\x33\x18\x17\xfc\xb8\xa8\x9a\x04\x99\x36\x6e\x9d\x94\x51\xeb\x43\x72\x25\x30\xd2\x09\x62\x50\x91\x27\x40\xcb\x94\x1f\xde\xea\xd8\x99\x1a\x2a\xc4\xd3\x95\xb2\x51\x82\x08\xfa\x1c\x79\x26\xa6\x98\x9b\x16\xec\x1d\x6a\xc7\xcb\x0c\x03\x4d\xbe\xcf\xd6\xe7\xc0\xdf\xa8\x37\x10\xa9\xf4\xe6\xf5\xef\xdf\xfe\x3e\x18\xd0\x57\x6f\x07\xaf\x0b\xd7\xeb\x10\xb0\xd7\x1e\xb2\xd7\x16\x23\xb5\x7b\x94\x54\xa3\x55\x37\x91\x73\x08\xb5\x34\xe2\xa7\xa0\x4b\x76\xcd\xe6\xac\x55\x1f\x7b\x11\xfa\xc8\x8f\xa1\x30\x48\xd3\x7a\x7f\x46\xe6\x74\x18\x76\xb8\x06\xcd\xa1\x23\x28\xcf\x08\xf4\x08\x41\xa6\x58\x3e\x13\xe3\xcb\x62\xc4\x01\x36\xfe\xd4\x9d\x30\x08\xfe\xac\xf3\x1f\x81\xc1\xac\xd9\x17\x34\xff\x80\x74\xcb\xc4\x35\x73\xbe\x62\x22\x94\x72\xa8\x08\x6a\x8b\x59\x5c\x1f\x78\x3a\x03\x8e\x04\xa9\x23\x10\x43\x3c\x8f\x76\xfa\x10\x0f\x06\x33\xdd\x0d\x07\x24\x72\xde\x59\x6d\x70\x51\xb6\x75\x14\x6b\x96\x27\x09\x88\xcf\x8e\xbf\xc0\x9b\x93\xc8\xb9\xa3\x10\xa1\xa5\x00\xcb\xe8\xd1\x0d\x90\x5a\x12\x09\xc9\xa3\x2a\x62\xf8\x8a\x66\x87\x89\x9c\x1f\xfa\xcc\xfe\x30\x91\xc1\x84\x66\x2d\xab\xec\xa8\xf1\xbf\x70\x2d\x4b\x7d\xc8\xbc\xa2\xe0\xf7\x50\x03\xc8\xb6\x99\x91\x5c\xeb\xae\xd4\xc5\xd5\x07\x47\x2f\xab\x4a\xe8\x48\x0e\x30\xb2\xe1\x11\x2b\xb9\x61\x2b\x96\x71\xbd\x36\x7b\xd1\x65\x3d\x7e\x7b\x7f\x55\xca\xbe\x27\x74\x2a\x41\x52\x37\xb7\xc7\x1c\xa1\x20\xee\xc9\x18\xa6\xbb\x70\xb9\x48\xe5\xdc\x6a\x7e\xca\x85\x9d\x8b\x99\xfc\x82\xf5\xdc\x44\x19\x63\xed\xe1\x54\x17\x9b\x5f\x3c\xd9\x9a\x94\x8e\x65\xae\x9f\x72\x45\xeb\x76\xb2\x78\x51\x69\xfe\x74\x6b\x59\x2b\xef\x12\x92\x4b\x69\xb3\x0f\x08\xe9\x2e\x1a\x10\x33\xdb\xaa\x51\x4b\xfb\x18\x20\x2c\xe9\x03\xa8\xb7\x6f\xf8\x3f\x42\x67\xb4\x91\x5a\xb9\x2c\xa4\xc7\x71\x1c\x12\xc0\xaa\xe0\xfb\xe8\x35\x76\xc0\xf3\xcb\xc1\x65\x24\x96\x4b\xca\x05\x5a\xea\xea\x23\x60\x5d\xb5\x27\x08\x9b\xa2\x82\x50\xa1\x0c\x0f\xfa\xe3\x47\xf2\xf7\x9c\x65\x06\xd7\x1a\xe8\x45\x89\xcc\xe3\x01\x17\x5c\x17\xb3\x84\xa4\xae\x85\x89\x2a\xec\x05\xb7\x00\x25\x57\x86\x6a\xb1\xb8\x88\xb2\x5a\xd2\x68\xc1\x05\x2b\xb4\x2c\x42\xae\xe8\x80\xa6\x9c\x3c\x97\x19\x14\x7e\x9a\xe6\x42\xe7\xc1\x2e\x5d\xd3\x81\x9b\xc6\x8b\x21\x39\x2e\x4b\x48\x03\x82\x7d\x1e\x51\xc5\x20\x4e\x4c\x28\xae\xf9\x8a\xbd\x20\x4b\x46\x45\xbd\x1a\xa8\x62\xc3\x07\x57\x4a\xa6\x49\x9e\x82\x20\x7f\x79\x3c\xc6\x68\x60\xa7\xd5\x72\x03\x03\xf6\x6f\x39\x41\xaf\x5e\xff\x7e\xf8\x72\xf8\x72\xf8\x6a\xe7\x63\x64\x07\xa9\xf1\x89\x08\x1f\x05\xe7\x1c\x08\x12\x95\xf9\xb7\xd5\x37\x15\x33\xc6\xbd\x46\xff\x94\x9a\x5c\x90\xcb\x29\xc4\xc4\x03\x31\xc7\xb2\x6f\xc3\xca\x49\x7b\xce\x67\x00\xa1\xfd\x7d\x73\xb3\xf6\xf7\x5f\x1c\x78\xce\x65\x35\x42\x10\x80\xb2\x00\xe4\x01\xda\x77\x5f\xbd\xfd\x7e\xf8\xfa\xdb\x6f\x86\xf6\xbf\x47\xdf\x81\x40\xe5\x8f\x75\xe4\xaf\x2b\x28\x3c\x9f\x0b\x88\xf5\x27\x66\xbf\x6d\xee\x7f\x6f\x13\x9d\x46\x7e\xca\x5c\x09\x41\x0f\xc1\x7d\xf7\xfb\xdf\x7f\xdb\x90\x56\xa2\xee\x86\xea\x7c\x97\xf4\x8b\x1f\xc7\x9f\x7e\x89\xd4\x8b\x60\xf1\xac\x68\x27\x68\x12\x41\xf8\x6f\xa1\x6e\x0c\xdb\x05\x3e\x8e\x3f\x55\x93\x45\x94\x09\x07\x9b\x92\x0d\x7e\x59\x66\x41\x41\xb5\x53\x3a\x75\x8c\x9c\xf3\xd4\x54\xf6\x0b\xcf\x9c\x65\x50\x56\x35\x8c\x0e\xb8\x13\xeb\x36\x55\x97\x51\x02\x59\x65\x73\x24\xe1\x5a\xbb\x8c\x58\x82\x50\x7f\x7e\x24\x95\x32\x29\x52\xc2\xb5\x44\xd0\x15\xe9\xa5\x36\xc2\xf2\xfc\xe8\x39\x38\x01\xe5\x84\xad\x3a\xa7\x00\x71\x18\x87\x56\x92\x81\xb9\x49\x48\x41\x9e\x73\x70\x1c\x73\xc2\x5a\xa9\xe6\xf9\x78\x7c\xf3\x9f\x9f\xce\xae\x8f\x4f\xcf\x88\xa6\xd9\x9c\xe9\x40\x32\xb3\x96\x1d\x2a\x64\xd5\x5f\x2d\x79\x8a\x4d\x9b\x02\x93\xf0\xb6\xbb\xcc\x9f\x62\x05\x67\x55\xec\x8f\x01\x70\x9d\x39\x02\x9d\x9c\x29\xc4\xf8\xe3\x01\x89\x61\x83\x8b\x28\x84\xcb\xe3\xb1\x55\xfd\xe7\xc2\xf9\x65\x34\x64\x77\x98\xb2\x05\x5d\x71\x99\x39\x14\xeb\xfc\x09\x15\xba\x6b\xd4\xc6\x4a\x3e\x6d\x3a\x0e\xc1\x74\xc2\x45\x83\x7d\xa7\x09\xde\xe0\x89\x6f\xa6\x7b\xcd\xe6\x5d\xa2\xf9\xaf\xaa\xed\x1d\xa1\xf1\xd8\x0b\x83\xda\x0a\x74\x66\xe8\x63\xa6\xb9\xc1\x43\x41\xb1\x1c\x31\xd8\x94\x25\x52\xcc\x31\x6d\xfc\xb9\xb9\x7d\xe0\x4d\x36\xb0\x1d\xa1\xee\xed\xb0\xf4\x83\x89\x59\x9a\xc8\xf5\x92\x09\x5d\xcf\x6f\x38\x57\xf6\xb2\x14\x2a\x44\xc4\x2f\xe4\x3d\x9c\x04\xc8\x1e\x8c\x83\x3f\xc7\x44\x3a\xa5\xf2\x70\x29\x63\x96\x04\x7b\x46\xbe\x04\xc5\xb0\x68\x06\x65\x49\x30\x59\x40\xe1\x6e\x64\x6e\x24\xf4\x1d\xc9\x65\x9a\xdb\x2c\x78\x2f\x6c\x55\x82\x3c\xec\xef\x56\x8a\xc8\x7f\x45\xd9\xe8\x6f\xe5\xae\xdc\x5a\x18\x20\x6b\xe3\x2d\xc6\xb0\x74\x2c\xd7\x99\x14\x43\xf3\x36\x38\x5b\x3b\x15\x4c\xc4\x57\x12\xbd\xb3\x65\xaa\xd7\xbb\xb2\x22\x18\x50\x03\x79\xc2\xa8\x5e\x74\x94\x26\x47\x81\x8f\x7c\x2f\xf4\xe9\xda\xee\x01\x64\xc0\x84\x7c\xff\x11\x0d\xe7\x05\xb4\x09\x44\x90\x84\x63\x8c\x88\x4b\xc0\xe9\x12\x39\x1e\x90\x84\xdf\x31\x72\xec\x69\xca\x13\xba\x66\x59\xb7\x80\xf7\xc7\x41\x25\x93\x4b\xa6\x17\x2c\x57\x1f\xe4\x47\xa6\x33\x1e\x75\xcd\xfd\xb7\x3f\xaa\xfd\xd4\xe9\x05\x14\xf9\x20\x0d\x73\x0c\x56\xd7\x25\x36\x09\xb3\x6b\x49\x82\x4e\xfa\xce\xb1\xd3\x9c\xa5\xb2\x7f\x97\xa1\x14\xe2\x65\xca\xd0\xf8\x03\xc4\x80\x8a\x05\x0f\xa5\x96\xe8\x3b\x6c\x39\x03\xd4\xc9\xda\xbb\x8e\x56\x32\x39\x73\x93\xb2\x05\x50\x59\x7c\x80\xed\x6a\xc8\xad\x37\x23\xc3\x53\x7c\x71\x86\xdb\x12\xf8\x8f\x06\xfd\x06\xe0\x9d\x9b\xf8\x06\xfc\x1a\x60\x6f\xe5\x26\x2e\x9c\x8d\xb8\xc8\xfb\x69\x96\xf4\xe5\x9e\xd8\x5b\x6b\xac\xf1\xab\x6e\x59\xe0\x0f\x52\x15\x32\x01\xda\x9d\x5d\x9e\xa0\xb2\x69\x10\x35\xd9\x0d\xb6\xcb\x74\xc9\xc4\xb8\x88\x01\x57\x97\xab\x63\x5f\x76\x7b\xec\x34\x3b\xc9\x39\x5b\x8b\xf3\x05\x1e\x17\x8c\xf8\xe4\x0b\xfc\xfe\xe5\xf7\x0d\xe2\x5b\x0d\xb3\x53\x2e\x70\x84\x26\xa7\x47\x1f\xd4\xe0\xf7\x25\xa2\x70\x0e\x6d\x3d\x96\x68\xb8\x41\x9f\x79\xc6\x3e\xe4\x34\x8b\x1f\xbd\x0b\x35\x3d\x94\xfb\x70\xcf\x8d\x5c\x47\xb3\x20\x07\xea\xe0\xf0\xd8\x9d\x08\x8b\x84\xb8\x39\x8f\xdc\x89\xb0\x71\x15\x37\xe7\xc9\x77\x22\x63\x4b\xb9\x62\x2e\x03\xc6\x75\xa7\x0a\xdb\x9f\xab\x31\x4c\x36\xd9\xf2\x8a\x59\x0f\x57\x57\x01\xd4\x66\xe4\x5f\xb1\x3a\xd7\xad\x29\x63\x95\xb4\x2a\x8e\xf3\x18\xda\xa0\x24\x94\xe8\x5c\xaa\x18\x0c\x98\x2d\x18\x0c\xcf\xf6\x5e\x17\x8f\x0b\x2e\x44\x34\x8e\xab\xf3\x2a\xe3\x8f\x5d\x8a\x58\x2f\x33\x8d\x4d\xd8\xc1\x68\xb8\xd3\x7b\x86\x73\xb1\xeb\x75\x93\x49\xd6\x36\x27\x8e\x1d\x61\xe7\x3d\xb0\x09\x4f\x3a\xdb\xec\xaf\x37\xbf\xa8\x44\x01\x98\xbf\xb7\x9c\x74\x6b\xa3\xc1\xad\x6f\xa3\xce\x55\xe9\xea\x64\x38\x6e\x08\xe8\x03\xcf\xb0\x8a\x63\xd8\x47\xcb\xc3\x0b\x29\x06\xff\x60\x59\x50\xb1\xc4\x3d\xed\xa3\x27\x18\xa8\xaa\xc9\x71\x67\xdb\x70\x01\xa7\xf1\xf8\xa2\x3b\x88\xc6\xe3\x0b\xdf\x55\x6e\xa0\xe5\x20\xe1\x2b\x56\x78\x98\x83\x0c\x8a\xa8\x7a\x70\x5f\x53\x05\xc2\xc2\xc7\x42\xb1\x4a\x82\x76\x5f\x86\x39\x24\xbb\x7a\x69\x5c\x07\x3e\xfa\x02\xbf\xec\x22\xab\xd3\xee\x1e\x1a\x64\x41\xc3\xda\xfe\xc7\x7a\x68\x60\x76\x29\xe7\x8c\xd1\x2c\x10\x3c\x16\xdc\x98\x0e\xaa\x1b\x94\x6f\x9c\xb1\xd6\x0f\xda\xcc\x9c\x19\x71\xce\xd0\xc5\xad\x39\x7b\x7f\x51\x1f\x76\x48\x06\xc4\x95\xa5\x3a\x1f\xa9\x23\x54\x83\x05\xd3\xce\x45\x52\x28\x9d\xe5\xe1\x2a\x98\x0e\x77\x0d\x2c\x4c\xcf\x47\xc7\x1f\xab\x2e\x2b\x03\xe8\xda\xbc\x87\xbd\xac\xf4\xe8\x3e\x7f\x0c\xe8\xc0\x6b\xaf\x4e\xe1\x14\xa8\xd2\x5c\x56\xd2\xa0\xb1\xcb\x9d\x66\xbd\x5d\x70\xa7\xad\x2a\xcc\xdc\xbb\x15\xcd\xb8\x0c\x33\x81\x5e\xbd\x9e\xeb\xea\x34\x36\x54\x4e\x50\xd7\x94\x55\x4b\xcf\x92\x7a\xff\x70\xbf\xf8\x8c\xe5\x2c\x73\x15\x2a\x9b\xd1\x12\x51\xbf\xa4\x21\x51\x9b\x74\x09\x87\x5f\xf2\xba\x8a\xd1\x2d\x9f\x36\x04\xc1\x0f\xcc\x84\x82\xaf\x43\x1e\xed\x4d\x81\xef\x56\x72\xbf\x90\x32\x1d\x61\x7e\xd4\x2e\x2a\xa8\xcf\xc8\xf3\xa0\x17\x0c\x18\xbb\x56\x06\x78\x8a\x81\x02\xa6\x24\xb6\x07\x2e\xe9\x6a\xd3\xfd\x49\xa4\x4c\x95\x57\x0e\x82\x9c\x8f\x2c\x3b\x41\x33\x66\xdd\xf4\xcd\xae\x61\x52\x39\x9b\x1f\x94\x40\x0c\xa2\x59\x51\xad\x2f\x89\xcd\x27\x88\xf1\xc3\x45\x96\x8a\xd3\xcb\xe3\xf1\xfe\x7e\xbc\x19\x66\xf9\x49\x24\xa0\xce\x2e\xca\x35\xb8\x40\xe9\xbd\x20\x87\xc6\x85\xf3\x36\xa5\x8a\x11\x95\x47\x0b\xb7\x42\xbb\x9c\x48\x0a\xcd\x05\x7a\x53\x4d\x6d\xd2\xa2\x4a\xb2\xd5\x50\xaf\x8f\xc9\xf8\xa7\x78\xcc\x22\x9a\x1d\x47\x11\x4b\x18\x46\xa6\x75\xe5\xaa\x6f\x6a\x3f\x2d\xc4\x70\xf6\x60\xc8\xcd\x12\x10\xbd\x1b\xaa\x86\x1c\x14\x7d\x7c\xb1\xc4\x0d\x9e\x65\x1d\xf2\xc2\x55\x57\xf3\x29\xf4\x95\x23\xe2\x84\x0a\x29\xd6\x4b\x99\xbb\xec\xbf\xce\xa9\x2e\x68\x40\x40\x6e\xdd\x2f\x44\xa2\xf8\x3f\x98\xcd\x81\x58\xad\x8c\x3b\x24\x17\x72\xae\xc8\x3d\xcd\x04\x17\x73\xc3\x34\xe8\xbc\xae\x8e\xf4\x14\xc2\xe4\x6c\xbe\x7b\x67\x02\xf4\x22\x18\x21\x2f\x0d\x85\xec\xc0\x7c\xc6\x23\x2a\x74\x99\x4d\x67\x95\x27\x82\x65\x14\x13\xd8\x84\x3a\x5f\x50\x85\x2c\x76\xcc\x55\x24\x57\x2c\x2b\xdd\x87\x9c\xff\xa0\x9c\xb9\xc5\x97\x35\xa0\x5b\x4e\xe4\xa3\xa4\x8c\xea\xfe\x9d\x0b\xae\x39\x4d\xea\x72\x04\x36\x6d\xa2\xff\x69\x35\x23\xbf\x2b\x7a\x10\x9b\x9f\xc2\xd2\xc6\x4c\x16\x54\x7c\x49\xef\x18\x5a\xfc\x4c\xc7\x1b\xae\x70\x3b\xb3\x18\x9b\xcb\xeb\xc8\xd3\x6d\x2e\xcd\x72\x75\x95\x65\x6d\x31\xf4\xf5\x0a\x7b\x5c\x53\x80\x47\xfd\xee\xed\x37\x8f\x5a\x14\x86\xf9\x08\x9a\x9c\x76\xcc\xe7\x5c\xb3\xfb\xab\x87\x84\x36\xa0\xa0\xf6\x6f\xbb\x44\x61\x42\xbd\xce\xdf\x5e\x18\x26\xcc\xff\x31\xe9\x13\xe0\xc3\x1f\x2f\xcf\x77\xfd\xae\xd0\x76\x74\xc5\x92\x9f\x37\x3e\xd8\xce\x04\x5f\xb4\xf0\xe8\xf8\x57\xa9\x33\x56\xcc\xfd\x07\xa9\xf4\x99\x88\xb2\x75\xba\x0b\xf5\xfa\xdc\xf8\x79\xc3\xba\x82\xd8\x53\x2a\x6d\x64\x45\x1b\xec\xee\x3a\xf3\x41\xf0\x74\xeb\x2d\x42\x3c\x2e\xe9\xb2\x5d\x4a\xf9\x1c\xfc\x6c\x83\x2d\x06\xe3\x9f\x35\xbb\xd7\x38\x2d\x9b\x66\xde\xde\xba\xce\xfc\x75\xdd\xcf\x87\xd6\xfc\xb5\x23\xf6\x28\x96\x76\xc1\x95\x66\x86\x12\x76\xd2\x23\x7f\x0e\x7e\xb6\x51\x7b\xc5\xfd\x84\x4a\xe5\x3a\xdb\xf2\x74\x5d\x2e\xae\x12\xb2\xf7\xea\xbb\xd7\xbb\xdf\xe3\x62\x3d\x5d\x70\xd1\x67\xaf\x71\x75\xee\xe6\x85\x45\x47\x21\xc8\x87\xd6\x71\xc3\x58\x23\x52\xfa\x92\xc5\x5c\x23\x87\x7a\x9d\x27\x6c\x94\x71\x69\xf8\x8a\xee\x8b\x0b\x7c\x5c\x5d\x6c\xea\xde\xd6\xa6\xa2\x2b\xcf\xe7\x06\x48\x1c\xeb\x9c\xe5\x55\x77\xce\x70\x25\x8d\xc6\xc5\x3e\xc4\x9d\x8b\x5f\x05\x92\x13\xfd\xf9\x74\x54\x65\x65\xcd\x5c\x55\xce\xb5\x2d\x6d\x09\xa9\x93\xc3\x07\xb0\x48\x45\x1b\x33\xb1\xde\x76\xb9\x7d\x14\x23\xf5\x10\xa7\xbb\x6a\x8e\xfe\x7c\x3a\x7a\xda\x78\x7e\xc8\xd3\xf4\xa8\x50\x7e\xab\x16\x0a\x92\xdd\xed\x22\x9e\x32\xb3\x95\x6b\x31\xad\x3b\xe8\x14\xc2\x1a\xa4\x3f\x9f\x06\x83\x7c\xb6\x03\xfe\x77\xd7\x1f\x85\x25\xe5\xed\xb7\xc0\xbc\xc7\xbe\x2f\x88\xd2\x32\xa3\x73\xe6\x5e\xa1\x0a\x11\x76\xcb\x65\x70\x36\x58\xdb\x29\x17\xee\xb8\x88\x8f\xc8\x64\xcf\xa5\xc2\x4f\x93\x3c\xa3\x49\xf9\xa6\x48\x44\xaf\x8e\xc8\x5f\xff\x66\xde\x80\x7e\x36\xfe\x11\x39\x79\xfb\x76\x22\x06\x83\xc1\x44\xd0\x94\xdb\xf7\x47\x84\xa6\x9c\x3d\x68\x26\x30\x53\x8f\xad\xe3\xbf\x7a\x35\x11\x38\xe2\x49\xae\xb4\x5c\x5e\x33\x74\xbb\x3a\x65\x33\x2e\x38\xe6\x32\xa9\x14\xde\x37\xd4\xe4\xc8\x7a\x1d\x5a\x87\x1a\x30\xe0\x73\xa6\x86\x51\x16\x0f\xb7\xa4\xa0\x89\x28\x2a\xf1\xcf\x33\x99\xa7\x47\xa4\xa6\x19\xf6\x5d\x05\xc3\x07\x18\xe7\x12\xc7\x41\x7f\x05\xfc\xd9\xa0\xfe\x3f\xd5\x35\xb9\x28\x52\x17\x39\xe0\x05\xe7\x6b\x77\x87\x0b\xf0\xf5\x0b\x35\x82\xc1\x54\x24\xcd\x1e\x9f\xa0\xb8\x67\xde\xac\x1c\xa8\xcd\x1f\x03\x0b\x12\x03\x49\xe8\x2f\x5a\xb0\x25\x2d\x2e\xa3\x4c\x99\x38\x1e\x9d\xff\xf8\xe6\xa6\xfa\xbe\x56\xad\xe4\x6d\x59\xf5\x00\x6e\x94\xbd\x1f\x9d\xdb\x66\x95\x04\xfd\x76\x6a\x2c\xb6\xf3\x40\x65\x18\x98\x9c\xd2\x8c\x29\x73\xfd\x42\x09\x6a\xe4\x8c\x50\x61\x8f\xb1\xb9\x59\x46\xfe\x2c\x1c\x0e\x23\x29\x56\x2c\xc3\x94\x68\x73\xc1\xff\x51\x74\x5e\xf8\x0a\x27\x54\xb3\x6d\xef\x19\x97\xb8\xca\x4f\x99\xb3\xa4\x6b\xab\x9b\x21\xb9\xf0\x3a\xc4\x58\xfd\x21\xf9\x28\xc1\xdb\x67\x26\x8f\xc8\x42\xeb\x54\x1d\x1d\x1e\xce\xb9\x76\xa7\xd5\x7a\xa1\xe8\xf5\x21\x90\x17\x3e\xcd\xb5\xcc\xd4\x61\xcc\x56\x2c\x39\x54\x7c\x3e\xa0\x59\xb4\xe0\x9a\x45\x3a\xcf\xd8\x21\x4d\xf9\x00\xe6\x2e\xb0\x52\xf8\x32\x7e\x96\xd9\xe3\xad\xf6\x43\x97\x7b\xfb\xda\xc3\x29\x6c\xda\x06\x73\x06\x6d\x99\x2f\xf8\xd8\xba\x02\x15\xd0\x76\x99\x6b\xae\xcf\x6e\xc6\xc4\x8d\x1e\x8c\x4b\x47\xe0\x97\x5f\xaa\x72\x1f\x0c\xd0\xb8\x98\x31\x1b\x89\x58\x94\xf2\x2c\x0b\x83\x40\xed\x54\xce\xb6\x93\x30\xa9\x7c\xba\x04\x1d\x35\xd6\x15\x45\x27\xae\x13\x2c\x88\x3c\x65\xb6\x16\x60\x0c\x7e\x5d\x27\x74\xc9\x92\x13\xaa\xd8\x57\xdf\x05\x03\x6d\x35\x30\xb0\xed\xba\x0f\x15\x14\xb4\xd9\x7c\x5b\x7b\x59\x60\x9c\xf2\x69\x50\xe2\xd2\x34\x4d\xd6\x57\xe2\x3d\x16\x8d\x6d\x23\xa3\xc7\x95\xd6\xa8\x74\x76\xf5\x14\xa1\x27\x54\x3e\x97\x65\x54\xb8\xab\xe9\x11\xa2\x4c\xc8\x47\x40\x4f\x2e\x1a\x6f\x47\x46\x20\x96\x97\x52\x8f\x0d\xf3\xd1\x36\xf3\xd3\xa2\xa5\x37\x6b\x27\x02\x39\x9d\x28\xb8\xbb\xa1\x29\xb4\x58\x47\x8d\x96\xd3\x5b\x9a\x43\x15\x73\x59\x16\xa4\xb2\xa6\x24\x02\xfa\x82\x7d\xe5\x57\x45\x06\x5e\x89\x8b\x79\x50\x7f\x0a\x1a\x53\xaa\xac\xa5\x20\x72\x55\x29\xb0\x6c\xef\x38\x73\xf9\xe9\x42\x10\x26\x34\x9c\x27\x15\x23\xd2\x62\xa7\xf9\xa1\x62\xed\x4d\x2d\x38\x31\xcc\xba\x6b\x61\x62\x35\xb4\xb5\x7a\xbb\xca\xf8\x90\x4f\x80\x41\x82\x63\x6b\x13\x9f\x32\x62\x99\xc3\x5d\xf7\x16\x4b\xc2\xb4\x17\x2d\x61\xe8\x56\x8e\x35\x37\xa1\x36\x05\xd6\x92\xb1\xac\x26\x39\xa3\xd1\x02\x03\x24\x6c\x2e\x8a\x30\x4b\xe7\xbe\xc6\x75\x5b\xcf\xc7\x28\xe3\x9a\x65\x9c\x62\x5e\x3c\x2f\x52\x04\x12\x07\x5a\xb0\xd9\xa3\xbf\x53\xe5\x89\xca\x1a\x26\x7b\xc7\xc4\xc8\x0f\x46\xc0\xa6\xa9\x02\xc7\x78\x55\xce\x28\x34\x95\x20\xf7\x48\x8a\xb2\x4b\x58\xb7\x0f\x53\x51\xc8\x6c\x30\xa5\x0a\xc0\x63\x75\xa6\x23\xbb\x5f\xc2\x7f\x87\xc5\xc1\x82\xb0\x01\x1e\x92\x65\x4c\x44\xee\xe4\x0d\xbc\x94\xba\x32\xd7\x18\xdc\xed\xa2\x85\x6d\xf1\x38\x99\x41\x41\x69\x57\x14\xb9\x66\xc2\x22\x2e\x6a\xff\x78\x80\x87\x68\xc3\xc9\x44\xe0\xe6\xa5\x12\xa3\x64\x36\x21\x51\x63\x82\x35\x9b\x29\xd8\x1c\x26\x67\x59\x82\x03\x1b\x28\xe8\x02\x47\x26\x93\xc9\xde\xa5\xd4\xe6\x3f\x43\x72\x9c\x24\x36\xe8\xc7\xef\x3d\xdc\xb3\x2d\x4b\x69\xeb\xef\x15\x49\xa9\xa9\xe6\x0a\x92\x0e\x63\x54\xbb\x5d\x8a\x96\xd8\xe7\x90\x1c\xdb\x1c\x93\x35\xd0\x85\xc3\x49\x85\x3b\xa0\x36\x3e\xc6\x2e\xda\x80\x08\x96\x63\xfe\xf0\x54\xd6\x14\x3b\xaf\x87\x2b\x40\x3f\x3c\x45\x87\x43\xca\x29\xd6\x14\x9f\x6a\xcb\xa7\x4d\xeb\x72\xaf\xe0\xd3\x9e\x52\x3b\x66\x4a\xdb\x3c\xe1\xb5\xbd\x54\x11\x79\xf9\x41\x71\xa1\x03\xdb\x67\x0d\x65\xe6\x62\xd6\x75\x0b\x82\xb7\x37\x3e\x31\x54\x5a\x87\x9d\x71\x3b\x01\x83\x10\xcb\xc6\xa7\x34\x62\x37\xf6\xf2\x35\xb4\xdd\x42\x03\x97\x9b\x1f\xdb\x70\x0c\x99\x5a\x03\xf2\x8c\xb3\x24\xae\x8d\x12\x2b\x9f\x02\x30\xb4\x40\x02\x5e\x38\x8f\x0d\x99\xae\x54\xad\x93\x19\x9f\x1b\x38\xd4\x61\x00\xf7\x00\xff\xf5\xdc\x1c\x21\x96\x2d\xf1\x03\x42\xf5\x0b\xcf\x86\xef\x55\x6e\xc5\xb1\xc3\xc4\x23\x00\xb2\xb2\x1a\x96\x25\xc4\x36\xe0\x01\x0e\xf2\x16\x6c\x9a\x3b\x45\x2c\x89\x82\x78\x01\x02\x43\xa1\x5c\x51\x55\x97\xa9\x84\x2e\x99\x8d\xfa\xd2\x8b\xb0\x50\x5e\x3e\x10\xe1\x1d\x72\x5b\x70\x46\x59\x8f\x81\x98\xfa\x18\xb8\x05\xa8\x6e\xd9\x0e\x5e\x3e\x03\x82\x78\xf0\xbd\xcc\x48\x45\xcc\x3b\xa8\xa5\x01\xee\xc1\x9c\xe1\x81\x23\xb5\xb4\x11\xea\xce\x0d\xd5\x3f\x6c\x09\x5f\xf2\xd6\x0d\x03\x83\x42\x82\x26\xe6\x5a\x98\x70\x0f\xbe\xc5\x0e\xb7\xec\x19\x5e\xe4\xca\x3a\x6b\x97\xbf\x8f\x12\xeb\xf3\x17\xc1\xe4\xb7\xe5\xf3\xcb\x00\xa0\x22\x88\xdf\x18\xba\x9d\x11\xd4\xbf\x23\x3c\x60\x19\xcd\x9d\x9a\x35\x06\xe4\xf9\x03\x48\xfe\xd3\xbc\x97\x2d\xb3\xf5\x97\xe8\xe5\x27\x08\xa5\xbc\x8d\x32\xa9\x80\xe7\xeb\x7a\x65\x6b\x08\x47\x31\x76\x2b\x01\x20\x18\x26\xd4\x84\x53\x37\x03\xaf\x98\xad\xf5\x12\x44\x8c\x46\xd0\xd4\x19\x8f\x74\x6d\x61\xf8\xf2\x71\x24\xb0\xc8\xdc\xb0\x46\xf7\xf8\x20\x5e\x2c\x50\x5f\x0b\xb4\xab\x78\xd1\xcf\x55\x0f\xe1\x7b\xa2\xc8\xb2\x86\x59\x27\x54\x3e\x35\xcb\xaf\xa5\x3a\xa4\x91\x8f\xf4\xc6\xed\x04\xe9\xc6\xcc\x1f\xe5\x23\xa4\xbe\xdc\x6d\x4f\xf0\x83\x22\xe6\xaa\xca\x7e\xb9\x15\x5f\xd6\xd4\x8b\x2c\x1f\xd8\xc7\xdf\x1c\x2c\xea\x0a\x13\x95\xcf\x26\x30\x8a\x82\x44\x0d\xd0\x18\xd5\xf9\xa2\x96\x0f\x82\x83\xdc\x40\x0e\x7e\x38\xa5\x50\x3b\xd5\x55\xf3\x50\xe8\x58\x6c\x4b\xde\x40\x4a\xae\x75\x7d\xc1\xa3\xf2\xd9\x28\x94\xa1\xab\x39\x01\x8b\xe2\x2b\xc8\x51\x59\x44\x6e\x04\x94\x56\xac\x08\x34\xcc\x7a\x0a\x8d\x4f\x46\xae\xbc\xc5\xa7\xd3\x51\x4d\x19\x0c\xf7\x74\xd9\xd5\xfa\x24\x3b\xe5\xd3\x21\xdd\xce\x76\xe3\xf6\x83\xd2\x9e\x82\xa7\x7c\x76\x4f\xc6\x53\x3e\x5d\x0f\xe4\xee\xcc\xe5\x65\xf9\x51\xcb\xb1\xec\xc6\x5f\xd9\x93\x09\x76\xb9\xa2\x63\xc4\xc2\x68\x1b\x9a\xea\x84\x69\x5e\xa4\xdd\xc1\xb1\x9a\xfb\x2c\xb8\xa5\xc6\xa3\xd2\x6d\xcf\xd2\xdd\xae\xec\x64\xaf\x2c\x21\xd6\x42\x56\xda\x89\x6d\x07\xb2\x02\x36\x21\x17\xe5\xfd\xdc\x13\x42\x02\x91\xd0\x9b\xcb\xf2\xb2\x17\x31\x45\x6c\x8e\x47\x3f\x19\xd6\xa1\x53\x28\x8f\x8b\xdc\x6d\xcd\xbd\x56\x0a\xa7\xd9\xab\x03\x96\x27\x84\xb2\x72\x10\xb0\xda\x59\x3b\x4c\x0b\xaf\x3c\x73\x19\xc0\x0c\x03\xd7\x15\x83\xb5\x62\x00\x1b\x52\xbd\x0b\x06\x6b\x59\x7b\x89\xde\x36\x30\xd8\x04\x71\xd8\xc4\x62\xb1\x09\xe2\xb1\x89\xc1\x64\x8d\x3c\x4f\x8f\xcb\xe0\xe9\x84\xcb\xd4\x23\xa4\xe4\x76\xe1\xb8\x51\xd3\x57\x3e\x41\xe1\x98\x3c\x57\x8c\x39\x15\x19\xa0\x32\xcc\x6c\xad\xd6\x42\xd3\x87\x50\x2e\x09\xff\x99\x4c\x1a\x65\x6b\xcb\x43\xd6\xc9\xce\xcd\x7d\x3b\xcd\x98\x27\x5a\xcb\x6c\x5b\x64\x36\xd7\xed\x52\x6a\xb4\x46\x1f\xd5\xa4\xf2\xf6\x80\x60\xdd\xd3\x9d\x39\xab\x85\x2a\x20\x78\x3c\x6a\xd2\xdc\xfb\x94\x25\xf2\xfe\xc5\x41\x75\xca\x1e\xb0\x11\xaa\xae\xc4\xbc\x2b\xaf\xd2\x22\x7c\x80\x32\x0c\xd4\x9c\xe3\x05\x23\xfa\x5e\xc2\x59\x03\xdf\x77\xf7\x1b\x22\x08\x43\x84\xd6\x65\x36\xf1\x96\xbd\xbb\x12\x6e\xf5\xb6\x06\xb6\xa7\x7e\x65\x9e\x94\x64\x0b\x74\x80\x6a\xc1\xb6\x6f\xa7\x09\xf7\x0b\x99\xd8\x4d\x3a\x82\x2d\x9a\x4c\x4a\x82\xfc\x47\xc0\x2e\xbf\x5b\x50\xf5\x7c\xb9\xbe\x4d\xe8\x94\x25\x2f\x00\xef\x58\x24\xdf\x76\x9d\x3d\x8f\x6e\xb3\x6e\x38\x64\x38\x3f\x74\x28\x18\x58\x87\x94\x84\xc5\x66\xdc\x8e\xe7\xcd\xf7\x10\x2f\xca\x33\xc3\xe4\x60\xba\x6e\xa6\xa8\x44\xb5\x4b\xea\x7c\x30\x70\xc9\xb5\x2b\xde\x5e\x94\x99\x45\x5d\x7e\xbf\xf2\x69\x5e\x6f\xb1\xa4\xb6\xe5\xb4\x5d\x72\x01\x27\x8f\xcd\x66\x2c\xb2\xf1\xbd\x56\x95\x90\x00\x6a\xb5\xa1\x7a\x95\x3a\xf9\x1d\x26\x2f\xa4\x18\xb8\x98\x0c\xb4\xd4\x62\xcc\x8d\xd5\x8b\xcc\x64\xb6\x64\xbe\x92\x02\x1c\xaf\xeb\xab\xf0\x97\x0f\x1c\x88\x6d\xd0\x94\xb5\x9e\x9e\x42\x88\xb7\x51\x0a\xc7\x51\x24\x73\xb1\x0b\xef\x75\x53\xfd\xf0\x17\xe3\xc1\x36\xd0\x72\x73\x9f\x01\x95\x27\x25\xa9\x8c\x8b\x14\x61\xc0\xd0\x15\x28\xda\x02\xa3\x05\xf5\xe2\x8a\x1b\x4f\x5b\x27\xa5\x33\x21\x55\xff\x91\xfa\xa7\x2a\x13\x40\x2e\xcc\x2f\x06\x37\x79\x0c\xc8\xdb\xbb\xac\xd3\x34\x07\xc0\xde\x09\xda\xa4\x84\xb8\xc1\xc6\xca\x3a\x87\xf2\x42\x55\x69\x18\xe0\x96\x9b\xdf\x8d\xb9\x23\x3b\xa8\x20\x48\x57\x4e\x89\x74\xe5\x96\xc8\xf6\xfd\x6a\xe5\x97\xfe\x7d\x77\xba\x22\x2b\x95\x5a\x37\xc4\xfb\x0e\x9e\x43\x72\xde\x22\x79\x98\xa7\x34\x43\x80\x75\xe1\xc6\xb7\x2a\x94\xb2\x88\xb6\x65\x35\x6a\xed\xf1\xd5\xe7\xf8\xf2\x74\xbf\xc6\x8f\xdc\x7f\x76\xd3\x68\xd5\xd5\x72\x75\x8f\x4b\x4b\xb3\x1b\xd7\x8d\xdf\x7c\x31\xd7\x8d\x5f\xa2\x81\xb8\xc0\x97\x5e\x7d\x32\x37\x10\x64\xf4\x2e\x4b\x46\x77\xb0\xcc\x34\x32\xdd\x9b\xc7\xab\x2b\xd7\x1d\x30\x67\x39\xf8\x3d\x57\x2f\x36\xd9\x6f\x5b\x1b\x4d\x34\x59\x1d\x09\xe8\xca\x0e\xb1\x1c\x34\x8d\x16\xc5\x4c\xf6\x15\xc1\x38\x1c\x90\x98\x1d\xbc\xa3\xc2\x61\xa9\x00\x46\x1b\x2c\xaa\x96\x2d\x73\x73\xdc\x61\x3d\xf0\x59\xf7\x83\x6d\x8b\x42\x0b\x98\x2f\x99\x61\x7f\x9d\xb2\x57\x66\x9b\xb4\x1b\xa7\x3e\xb2\x91\x65\x71\xa1\x09\x6d\xb1\x56\x9a\xf3\x64\x36\xd0\x5f\x23\xea\x8d\x0a\x28\x48\xe1\x1c\x09\xac\x63\x47\x33\xcb\xb2\x13\xd9\xdc\x9d\x6a\x86\xa2\x0c\xc0\x24\x5f\x9e\xe3\xf6\xab\x6f\xd7\xe6\xd9\xe0\x9f\x08\x09\x78\xf6\x99\x47\x30\x04\xe6\xb3\xc0\xfa\xf0\x7d\x7d\x9a\xd6\xea\x83\x58\xd6\xae\x10\x6e\x72\xc2\x66\x1a\xed\x58\xa5\x0b\x13\xde\x9e\x0e\x4a\x1a\xe2\x5f\xc4\xc2\xe3\x68\x5f\x95\x33\xfb\x45\x31\x68\x7b\x9b\x85\xd6\x69\x37\x7f\x86\x1f\xc6\xe3\x51\x69\xaf\xaf\x75\x62\x30\xa7\xc4\x34\xad\x9f\xba\xf3\x72\xfc\x32\xff\x85\x25\xd3\x0b\x19\xef\x40\x19\x3e\xe2\x07\x4f\xcb\xb5\xe3\x92\x11\xa9\xe3\xba\x3d\x27\x4e\xd3\x27\xd6\xa5\x31\xe7\xb1\xbd\x53\x88\x94\x89\xb1\x17\x37\xdb\xe7\x6c\x38\x1f\x92\x0f\x67\xe3\x03\x32\xfa\x34\x3e\x20\x4c\x47\xc3\x17\xe4\xa3\xad\x14\xdb\xa2\x87\xb1\x7d\x18\xba\x7f\x75\xbd\x6f\xc4\xb0\x39\xf8\x11\xfe\xb6\xec\x56\x29\xd5\x8b\x1d\xf6\x71\x7f\x64\xda\x7f\x8d\x6d\x6c\xdb\xc1\x76\x8c\xe2\xef\x20\x4c\x73\x58\x6c\x15\x2e\xd3\xed\x45\xd7\xcd\x20\x84\x0d\xe7\x47\x64\x40\xd8\x03\x8d\xf4\x11\x39\x9c\x49\x09\x55\xf2\x21\x77\x20\x39\x9c\xd2\x8c\x5c\x5e\x8d\xcf\x8e\xd0\x01\x8d\x09\x9d\xad\xc9\xb2\x8d\x3d\xbf\xba\xbc\xf8\x8b\xc5\x9c\x6b\xc2\x38\x16\xc7\x21\x93\x3d\x18\x04\xb5\xc8\xe6\x4f\x1c\xc5\xe9\x3a\x6a\xeb\x2c\x97\xcf\x8a\x26\x3c\xa6\x85\xb2\x0f\x4b\xfb\x18\xf6\x89\xeb\x50\x2e\x8b\xf2\xe9\x72\xe6\xaa\x87\xc0\x80\x18\xaa\x08\x54\xf2\xd7\x02\xe0\x5d\x2d\x81\x6e\xb4\xea\x5c\x83\xe7\xf6\x94\x39\x40\x58\x3d\xe2\x4c\x66\xcb\x23\x07\xf6\x49\xfe\xf2\xe5\x9b\xc8\x74\x0c\xff\x62\x47\x2e\xf3\x50\x17\xb5\x17\x1e\x35\x98\x15\x74\x97\x40\x81\x7c\xb7\x85\x65\xd7\x03\x0b\xef\x2f\x1a\x01\xfb\x68\x71\x35\xe9\xcc\x74\x10\x0b\x80\xa7\x15\x23\xd3\xba\xcc\x97\x8f\xef\xb4\x9b\x38\xd1\x09\x21\xb5\x77\xc5\xa3\x65\x47\x9a\x79\x7e\xf2\x71\xd4\xd5\x03\x04\x90\x51\xfd\xdc\x7d\x2c\x45\xdd\xa9\x8f\x60\xb6\x98\xe8\x40\xc6\x80\xa3\x60\xc8\xa2\x66\x4c\x6d\x01\x7d\x7c\xfc\x72\x59\x15\x9e\xd6\xd6\xdb\x2c\xec\x53\x38\x69\xee\xe5\xd7\x30\xe3\x34\xb1\xb6\x60\x4f\x37\x8d\x56\x6f\x1b\xf4\x94\x9d\x4e\xa2\x59\xda\x0e\x74\x1e\x38\x13\x29\x7c\x28\x01\x50\x22\xc8\xe1\xba\x8b\xb0\x06\xd9\x10\x0d\x80\x31\x5e\x04\x5c\x54\x21\x4b\x99\x0f\xab\x32\x41\x19\x25\x9a\x45\x0b\xc1\x23\xda\xe2\x95\x04\x6a\x51\x54\xff\xf3\x65\x2a\x55\xe9\x48\x87\x05\xa3\xf6\x55\x99\x82\x7a\xc6\x33\x76\x4f\x93\x70\x32\xdd\xf2\x41\x6c\x61\x95\xb2\x98\xc8\x5a\x12\x26\x66\x12\x23\x59\xac\x8b\x5e\xfb\xd5\x68\xb5\xe1\x41\xb3\x2f\xdf\x0c\xd3\xcd\x90\xf8\xc9\x33\xda\x4c\x60\x45\x65\x82\xef\xd0\xcb\x1b\x56\x08\x7d\x9d\x45\x0b\x49\xae\x91\x68\x93\xe7\x7c\xc8\x86\x24\xe5\x62\xae\x9a\x6d\x60\x9d\xd6\xdb\x01\x19\xa4\xe1\x40\xb0\x1a\x80\x9c\x8f\x5c\x40\xd8\x17\x3b\x86\x55\x94\x5b\xc8\x8f\xfb\x50\x1e\x39\xcb\x58\x2d\x14\x3a\x40\xa0\x26\xa4\xa7\x66\x71\xae\xcc\x80\xe7\xd6\x5b\xe6\x94\xf2\xb2\x6c\x15\xf5\xda\x9a\x17\xf7\x45\x48\x03\x94\x11\x98\x6f\xb0\xf1\xb8\x96\x33\x1c\x75\xa5\x8a\x5d\xc9\x52\x35\x22\xa9\x9c\x8f\x0d\x45\x43\xab\xdd\x1d\xb3\x01\xd7\x24\xa5\x3c\xab\xaf\xac\x51\x3e\x46\x64\xb5\x55\x16\x7d\x98\xd2\xa9\xcc\x75\x07\x42\xf2\x54\x92\xa3\x90\xda\xdc\xbe\x6e\x27\xe3\x12\x1b\xb7\x78\xf4\x40\x93\x66\xcf\xba\x9e\x60\xf4\x04\xe3\x5f\x9b\x60\x08\xa9\x1d\x5b\x55\x0b\x96\x66\xaf\x9b\x8e\xfe\x36\xdd\x3c\x6d\xb6\x1c\x42\x1d\xcb\xd7\xe2\x13\x6a\x9b\xd5\x03\xac\xe5\x1e\x77\x70\xed\x79\x9c\x53\x4f\xfa\x5b\x05\xee\x64\xcf\x87\xed\x13\xd2\xfe\x2d\xc3\x16\x68\x78\x7d\x4e\xc0\xc1\x64\x08\xa7\x9e\x67\x4d\x9a\x79\xeb\x9d\x6b\xf7\xf9\x0c\x42\x8d\xae\x21\x52\xce\x45\x7d\xa1\xda\xfc\xf9\x94\x45\x34\x57\xd6\x27\xae\xc5\x94\x50\x4c\x31\x62\x19\xf4\x51\xf8\xd5\xbd\x40\x55\xbc\xcb\x53\x5b\xf1\x12\x6c\x23\xb1\xe8\x3e\x78\xe4\x7b\xc0\x1d\xf8\xfe\x6f\xf8\x07\x48\x2a\x95\xbf\x56\x6f\xcb\xbf\x6f\x4e\xc6\xf8\x6b\xfd\x30\xb6\xc7\x0b\xae\x99\x73\xb2\x83\x32\x41\x70\x40\x9c\x51\x16\x4b\xa9\xbc\x1a\xbc\xfe\xf6\xdb\x06\x95\xff\xd7\x3b\xf6\xaa\x2e\x65\x2a\x3e\x55\x43\x6b\x91\x32\xb5\x43\x54\x5a\x4d\x35\x2a\x7f\xd4\x3e\x20\xad\x0f\x48\xeb\x60\xf6\xec\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xab\x5b\x71\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\xdd\x4a\x7a\x5c\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xe1\xd3\x07\xa4\xf5\x01\x69\x9b\x4f\x1f\x90\xd6\x07\xa4\x15\x4f\x1f\x90\xd6\x07\xa4\xf5\x01\x69\xc1\x4e\xfb\x80\x34\x0f\x16\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\x55\x9f\x5f\x32\x20\xad\xa1\x64\x26\x21\x03\x9b\xc5\x37\xf4\x5b\x73\xc7\x0d\x7c\x82\xbd\x1b\x8f\x48\xdf\x5d\xbd\x55\x7d\xfe\xee\x3e\x7f\x77\x9f\xbf\xbb\xcf\xdf\x1d\x9e\x5e\x9f\xbf\xbb\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\xca\xa7\x77\x97\x2a\x9f\xde\x5d\xaa\x77\x97\xfa\x4d\xb9\x18\xf4\xee\x52\xbd\xbb\x54\xef\x2e\xd5\xbb\x4b\x05\x1b\xff\x8b\xe1\xb2\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x02\x4f\xef\x2e\xd5\xbb\x4b\x15\x4f\xef\x2e\xd5\xbb\x4b\xf5\xee\x52\xc1\x4e\x7b\x77\x29\x0f\x16\xbd\xbb\x54\xef\x2e\xd5\xbb\x4b\x55\x9f\x3e\x7f\x77\x9f\xbf\xbb\xcf\xdf\x5d\x79\xfa\xfc\xdd\x7d\xfe\xee\x3e\x7f\x77\xa7\x11\xfa\xfc\xdd\x7d\xfe\xee\x3e\x7f\x77\x9f\x8e\xb5\x4f\xc7\xda\xe7\xef\xee\xf3\x77\xf7\xf9\xbb\xeb\xe7\xdf\xe7\xef\xee\x09\x46\x4f\x30\xfa\xfc\xdd\x7d\xfe\xee\xca\xd3\xe7\xef\xee\xf3\x77\x6f\x3c\x7d\xfe\xee\x7a\x01\xb2\xcf\xdf\xdd\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x9a\xff\xf4\x01\x69\x7d\x40\xda\x6f\x2a\x88\xa3\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\x2d\xd8\xf8\x5f\x0c\x97\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\x16\x78\xfa\x80\xb4\x3e\x20\xad\x78\xfa\x80\xb4\x3e\x20\xad\x0f\x48\x0b\x76\xda\x07\xa4\x79\xb0\xe8\x03\xd2\xfa\x80\xb4\x3e\x20\xad\xfa\xfc\x7b\xe7\xef\xee\xe2\x76\x10\xde\xea\x66\xee\x60\x86\x5e\x22\xa5\xc4\x1e\x9a\x75\xae\x50\x16\x41\xfc\x68\xc9\x36\x26\xc1\x96\xa2\x62\x2b\xac\x59\x52\x78\x57\x20\xd1\x78\xdb\x3a\xae\x4c\xa3\x06\x9a\x54\x3d\xc8\x12\x5b\x07\x57\x81\xae\x84\x98\x0b\x1a\x94\x3f\xa6\x53\xb0\x96\xc6\x43\xd4\x07\x15\xda\xec\x05\x9f\x1b\xe1\x7a\xb2\x07\xfd\x4d\xf6\x80\x05\xb0\x6d\x43\x5d\xd3\x99\x11\x0a\x35\x30\x9d\xd0\x41\x22\xef\x59\x86\xb3\x41\xd7\x4c\x6f\x72\x8a\xc8\x25\xd7\xda\xd0\x12\xee\xa2\x7a\x42\x9d\x46\x52\x28\x8e\xa9\xd8\x51\x6f\x39\xd9\xe3\x62\xc6\x05\xd7\x6c\xb2\x47\x06\x04\x1c\x02\xbd\xe5\x38\x4a\x65\xe7\x49\x12\xaa\xf4\x90\x14\x2b\x0b\x82\xc4\xcc\x95\xc7\x4c\x68\x1e\xd1\xc4\x4e\x70\xb3\x1f\x2e\x08\x4d\xd2\x05\x15\xf9\x92\x65\x5e\x3b\x38\x00\xa1\x5e\x2d\x7d\xb2\x2a\x36\xf4\x7a\x09\xca\xdc\x78\x38\x44\xbe\x9c\x6e\x6b\x3f\xd3\x8c\x9d\x5e\x1e\x8f\xdb\x8e\xc7\x08\x9b\x11\x2e\x62\x1e\xa1\x66\xa7\x88\x40\x59\xb8\xf4\xea\x55\xac\x42\xa6\x6c\x26\xc3\xac\x1b\x15\x6b\x62\xba\xab\x9d\xeb\x54\xca\x84\x6d\x3b\x66\x34\xf0\xed\x1b\x5c\xd6\xd8\xd7\x93\xe1\xa9\xf6\xb4\x65\xee\xa2\xa5\x3c\xba\xc3\xff\x93\x79\x10\x01\x99\xb5\x6d\x68\x3d\xbc\x93\x60\xe3\x65\xbc\x3d\xd4\xd2\x31\x1d\xf5\xba\x9b\x72\x1e\x86\x77\x4b\x12\x79\x8f\x50\x43\x15\x5e\xa1\xd4\x42\xce\xfa\x8f\xa8\xdf\xc1\x8b\x7d\x9b\x70\xcd\x32\x0a\xaa\x95\x50\xcf\x93\x09\x19\x60\xbc\x98\x39\xd5\xcb\x94\x66\x5c\x49\x71\x40\x20\x68\xd4\xe9\x65\x5c\x97\x33\x29\xc9\x94\x66\xa0\x2c\x2a\x86\xfb\xdd\x8e\xc3\x95\xe3\x19\xd6\x8a\xfd\x3d\xa7\xc9\x1f\xd0\xc5\xd9\x89\x0a\x7c\x66\x65\x04\xae\xa0\x8d\x33\x7d\x14\x43\x86\x91\xc8\x4f\x30\x0f\x5a\x3a\xe6\x4d\xcb\x7f\x46\xf8\xcf\xe1\x70\x48\x7e\xf6\x66\xa0\xb3\x9c\xb9\x48\xa5\xc2\xd9\x17\xc7\xf8\x33\x09\x07\x17\x58\x9b\x4f\xcb\x50\xe5\x5c\xcd\x02\xb8\xe8\x30\xb9\xd0\x60\x3b\xce\x17\x06\x6b\x9a\x60\x78\x4b\xbc\x39\x2f\xa8\x7a\x0e\xfd\xdd\x1a\xd2\xf1\xa2\x1c\x7a\x5c\x8c\x4c\x75\xb9\x3b\xde\xce\xfc\x0e\x0e\x69\x90\xe8\xda\x2e\x0a\xfd\xb0\x9c\x41\x5b\x50\x0f\xc2\x7f\xf3\x97\x2f\x5f\xbf\xc5\xff\xc7\x5f\x8a\x6f\x6e\x16\x32\xd3\x83\x88\x67\x51\xce\x35\xb0\xb5\xf6\xa3\xd0\x40\xff\xfc\x67\xe3\xd7\x60\x48\xd2\xcf\xb1\xcd\x8b\xa2\x51\x4a\x33\x66\x45\xa2\x79\x26\xf3\xd4\x88\x44\x93\x89\xa6\x49\xf2\x3c\x68\x10\xb4\x35\x05\xd0\x2d\xa8\xc0\x17\xae\x37\x77\x86\x69\x92\x78\x3a\x3e\xb8\xa0\x17\x78\x1e\x50\x88\xad\x41\x72\xe6\x6a\x23\x9e\x71\xae\xb2\x3e\x7e\x57\x07\x64\x70\x40\x6e\x01\x0e\x87\x43\x72\x03\x57\x8e\xd8\x2b\x57\xdb\xe9\x52\x66\x8c\xa4\x46\xfe\x52\x8a\xaf\x18\x99\x62\x90\xc7\xda\xe9\x97\xad\xe6\x9f\x30\x15\xd1\x94\x91\x68\x41\x33\x1a\x69\x96\xd9\x69\x9f\xa1\xaf\x7c\xf0\x32\x3c\x07\x2a\xb5\xa4\x31\x1b\xe4\x29\x1e\x0b\xf5\xa2\x40\x47\x10\x59\x68\x51\xc7\x3d\x9b\x1a\xc9\x8d\x59\xe4\xe1\xef\x78\xcc\xd2\x44\xae\x97\x4c\x04\xd1\xa9\xfd\x3e\xcd\x64\xec\x0e\x29\xf4\x6b\xee\x14\xe0\xa4\x4c\x0a\xcd\x44\xec\x1d\x75\x1a\xdd\xd9\x17\x3f\x9b\xe6\x65\xff\xe4\x77\x7f\xac\xbb\x01\x31\x5b\xb9\xee\x7f\x47\x36\x6e\x41\x08\x95\x35\x31\x4f\x55\x6d\x6c\x57\xae\xf0\x26\xf8\xd5\x57\x63\x0d\xed\x24\x9d\xb2\x66\x57\x06\x11\xac\x3e\x1d\x68\x2a\x18\x87\x4a\x0e\xe0\x7e\x01\x11\xeb\x15\x9a\xef\xb9\xc5\x59\x31\x33\x88\xa7\xcc\xbd\x93\xb6\x82\xca\x81\xfd\x6b\x2a\xf5\x62\x48\xd0\x53\x15\xa8\xc9\x43\x6a\x38\x2a\x9d\xac\x3d\x61\xf6\x39\x54\x7f\x09\xba\x20\x7b\x78\x54\x90\x28\x63\x36\x40\x46\xd9\xdb\x2d\x33\x22\x78\xf2\xe2\xc0\x05\xb9\xc4\x6c\x46\xf3\x44\x2b\x82\xcb\x32\xa0\xcb\xe2\x1a\x99\x46\x4b\x72\x6f\x70\xe5\xb9\x95\x9c\xcd\x24\xce\x3c\x21\x1a\xf8\x56\x87\x3f\x8b\x42\x28\xe8\x76\x59\x17\x27\x6f\xc7\x27\x5c\xe1\x1d\x1b\x90\xbf\x5a\x56\xce\x4c\xc8\x8d\xf4\xb7\x03\x4b\x22\x0c\x63\x0c\xd6\x9b\xca\xc0\xc1\x7b\xcc\x45\x94\xe4\xb1\x33\x70\x46\xd4\x30\xcb\xd0\x41\xd9\x0d\x41\x22\x2d\x64\xb1\x24\xe8\xee\x45\x9d\x77\x65\x75\x72\x67\xe1\xb9\x55\x20\x62\x10\x53\xd9\x7d\x50\xb8\x83\x76\xb5\x4b\x3f\x68\x1d\x30\xd4\x29\xe8\x16\xeb\xb6\x09\x71\xe0\x67\xab\x58\xf4\xc4\x93\x8c\x51\x73\x9b\xa2\x3b\x42\xe7\x94\x8b\xe0\x91\xc5\x63\x82\x06\xa9\xe4\x9e\xae\xd5\x56\x7c\x02\x7a\x8b\x1c\x10\xc1\x56\x2c\xab\x9c\xba\xa0\x92\xa5\x63\x95\xa5\x12\x0a\x84\x01\xe9\x28\xec\xaa\xa9\x54\x8a\x4f\x13\x37\x70\xe9\x0e\x67\x3e\xb8\x49\x59\x14\x16\xbb\x71\x21\xf5\x0e\x82\xcd\x02\x7e\xad\xec\x1c\x16\xb9\xb7\xdf\x02\xe5\x88\x7d\xb7\x07\xa5\x65\x46\xe7\xcc\xbd\x52\x9a\xea\x1c\x01\x83\x96\x3f\x16\x5f\x7a\x36\x99\x3b\x2e\x62\x83\x8d\x1c\x48\xd3\x24\xcf\x68\x52\xbe\x89\xa4\x40\x43\xbc\x3a\x22\x7f\xfd\x9b\x79\x63\xfa\x67\xb1\x0d\xb4\xb5\x6f\x27\x62\x30\x18\x4c\x04\x4d\xb9\x8b\xd7\x25\x34\xe5\xec\x41\x33\x01\xad\x86\x77\xdf\xa9\x21\x97\x87\xab\x57\x13\x81\x23\x9e\xe4\x4a\xcb\xe5\x35\x43\x8b\xe2\x29\x03\x09\x11\xb0\x75\x25\x2a\x16\xf4\x60\x04\x7d\xaa\x05\xfa\x1f\x2b\xa6\xd5\x30\xca\xe2\x61\x9a\x49\x03\x87\x08\x10\xd0\x50\x66\xf3\x89\x30\x98\x0d\xbe\x03\x76\xe5\x88\xd4\x34\xab\x9a\xa5\x70\x42\x9b\xae\xd2\xf8\x5b\xc2\x95\xfe\x53\xf0\xf7\x0b\xae\x74\x15\x64\x5b\xb3\xb4\xfb\xc1\xc5\x3c\x4f\x68\xb6\xdd\x00\xa0\x19\x49\xb3\xa5\x27\x49\xae\x34\x8a\x93\x2b\x07\x59\xf3\xc7\xc0\x42\xc0\x00\x0e\x3a\x8b\x16\x6c\x59\x06\x0c\xcb\x94\x89\xe3\xd1\xf9\x8f\x6f\x6e\xaa\xef\x37\x0e\xfd\x96\x1b\x78\x25\x10\x03\xdc\x09\x68\x36\xe5\x3a\xa3\xd9\x9a\x9c\x8f\x88\xca\xa7\x03\x37\xcd\xc3\x93\xf3\xd3\xeb\x0a\xc6\x41\x05\xc6\xc2\xe0\x28\x64\x6b\x40\x78\x05\xc9\x0b\x91\x90\x96\x18\x13\x68\x7d\x37\x96\x64\xc5\xa9\xe7\x45\x87\xfe\x11\xf8\xa9\xdf\xaf\x9c\x6d\x4f\xd4\x99\xd8\x0b\x6d\x8d\x7f\xc9\x6a\xb4\xa9\xde\x29\xac\xde\xa9\x6a\x92\x13\x03\x37\xeb\x4c\x82\xc1\x17\x88\x06\x2c\xf8\x59\x6c\x61\x8d\x78\x00\xb0\x9a\x25\x49\x34\xa4\x26\x33\x20\x14\xf6\x66\x0e\x81\x61\x61\x99\x72\x22\x6d\x24\xc5\x8a\x65\x9a\x64\x2c\x92\x73\xc1\xff\x51\x74\xae\x9c\x7b\x0b\x14\x7b\xdb\x62\xf2\xb8\xd0\x2c\x33\xac\x0d\xa0\x24\x54\xe2\x2f\xe9\x9a\x64\xcc\x0c\x43\x72\xe1\x75\xe8\x9c\xeb\x3e\x1a\x96\x96\x8b\x99\x3c\x82\xf4\x53\xea\xe8\xf0\x70\xce\xb5\xbb\x80\x91\x5c\x2e\x73\xc1\xf5\xfa\x10\x0c\xee\x7c\x9a\x9b\x2d\x39\x8c\xd9\x8a\x25\x87\x8a\xcf\x07\x34\x8b\x16\x5c\xb3\x48\xe7\x19\x3b\xa4\x29\x1f\xc0\xdc\x05\x60\x80\xe1\x32\x7e\x96\xd9\x1b\xab\xf6\x43\xf8\x6a\x1b\xcd\xc1\xe5\x6a\xda\x06\x73\xbb\x6c\xcc\x36\xf2\xec\xc8\x74\x14\xd0\x76\x84\xf7\xfa\xec\x66\x4c\xdc\xe8\xc1\xf8\x76\x04\x7e\xf9\xa5\x2a\xf7\xc1\x00\x8d\x8b\x99\xe3\xae\xc0\xc6\xe1\x2b\x23\x90\xb4\x27\x3c\xc0\x68\xab\x7c\xfa\xbf\xd9\xfb\xfb\xe6\x46\x6e\x2b\x61\x14\xff\xff\xf7\x29\xb0\x9a\xad\xd2\xcc\xfe\x44\x6a\x66\x6c\x4f\x6c\xa5\xb6\x6e\x69\x24\x8d\xcd\x8a\x46\xe2\x4a\x1a\x3b\x5b\x51\x76\x16\xec\x06\x49\x3c\x6a\x02\x9d\x06\x9a\x12\xe3\xe4\xd6\xf3\x1d\xee\x5f\xf7\xeb\x3d\x9f\xe4\x16\xce\x01\xba\xd1\x4d\xf4\x0b\x35\x92\x1d\x67\x9b\x55\x89\x47\x64\x37\x70\x00\x1c\x9c\xf7\x97\x15\xd7\xca\xab\x5b\x24\xc7\xe4\xa4\x70\x7e\xe4\x69\x4c\x35\x8b\xc7\x64\x22\xc8\x09\x5d\xb1\xe4\x84\x2a\xf6\xec\xa7\x00\x22\xe6\xc8\xec\x6d\xdf\x73\x68\xa8\x35\xd0\x64\xd9\x2d\x08\x69\xc3\xb1\xd5\x2f\xaa\xe1\x8f\xd5\x94\x37\x97\x21\x59\xd6\x24\xa0\xa4\x4e\x5d\xcb\x8f\x3b\xd8\x1a\x0b\x6d\xf1\x97\x34\x24\x67\x6c\xf5\x85\x74\xf1\xa3\x93\x29\x71\x24\x0d\x29\xd8\x8c\x25\xd2\xe0\x96\xb4\xf6\x22\x16\xf2\xb2\x37\x4b\x15\x03\x5f\xff\x72\xbe\xbe\x94\xaa\x8c\x82\x7a\x06\x9e\xee\xa7\x3a\xd5\xf9\xb9\xff\xdb\x36\x2f\xaf\x40\x56\xe7\xe3\xfe\x8f\xcf\xc9\xc3\x07\xfe\x36\xf0\x37\xff\x08\x06\xfe\xf6\x8b\xf1\x37\x9f\x3a\xf4\xe3\x6d\xdb\xb4\xa6\xfc\xec\xce\xdd\xd8\x43\x0a\x31\x1d\x93\x69\x1f\x4b\x92\x39\x69\xfb\x42\x35\xb3\xef\xe5\x64\xba\xfe\x1a\xae\xd5\x64\xba\x7e\xf7\xca\xe9\xb4\x0e\x2d\x82\x0a\xeb\x04\x0d\xe4\x13\x73\x37\xe7\x34\x62\xe0\x07\xbb\xbd\xdd\xab\xb9\x1c\x0a\xcb\x0f\xe8\xf0\x89\x94\x77\xce\xf4\xc6\xdd\x9b\x41\x8b\xab\x0b\xad\xf1\x32\x0e\x27\xd3\x4a\xb0\x1b\x26\x49\x83\x33\xcc\xda\x14\x80\x88\x50\x3d\x86\x00\xf2\x20\x37\xbe\xbd\xd5\x60\x88\xc8\xd5\x56\x24\x7a\x2d\xf7\x1e\x92\x1d\x8b\xa0\x0d\x99\x59\xb3\x59\x68\xd0\x7a\xab\xe4\xdb\x5b\x33\x9e\xed\x91\x5c\xac\xdf\x12\x3f\x55\x9d\x95\x8b\x70\x66\x7f\xa1\x70\xf9\xe7\x34\x86\x2c\x5b\xc3\x56\x2a\x71\xc1\x18\x91\x70\x56\xa2\x02\x9a\x19\x42\xc3\x72\x85\x36\x4d\xac\xfd\x44\x35\x49\xf3\x2c\x95\xe6\xa6\xbe\x9c\xcc\x6d\x18\xd2\x92\x95\x47\x63\xe6\x71\x71\x86\xed\xc1\x4c\xce\xbe\x27\x19\x1e\x7f\xc2\x68\x26\x8a\x63\xb3\x27\x58\x8e\x6b\x00\xc8\x15\xd8\xa0\x1b\x03\x28\x6e\x6f\xb5\x3b\x8e\x71\xd0\x82\xfc\xe4\x52\x17\x29\x21\xbc\x08\x47\xd6\xd4\xae\xd4\x19\x96\xab\x34\x78\xff\x6f\x68\x3e\xb7\xbe\x8d\x32\xa6\xa6\x28\x01\x72\xce\x45\xfe\xd0\x8e\xf5\x85\x77\xb7\x40\xe8\xdf\x03\xea\xad\x52\xbd\x19\x93\x72\x1a\xdf\x21\x8c\xde\x51\xae\x5a\x29\x8b\xf9\x2c\xe4\x9a\x65\x02\xfd\x2a\x45\xac\x99\x3c\x28\xe3\xcb\x96\x99\xcc\x17\x18\x43\xe0\xcc\xa4\x56\x14\x6e\x4f\x81\xb7\x87\x0b\x78\x69\x1e\x2c\x0a\x00\x60\xe3\xec\x18\xc9\x02\xe0\xe4\xef\x09\x33\xeb\xc7\x8b\x1d\x1b\x24\x59\xe3\x45\x0c\x97\x84\x28\x23\x77\xd6\xd0\xcb\x7c\x53\x6e\xdf\x01\xf1\x0d\xae\x52\x61\xde\xc0\xa1\x96\x10\x87\x6e\x60\x71\xa6\x89\xb0\x1b\x3f\x91\x11\x4d\x8a\x24\x72\x6b\xa4\x9c\xcc\x49\x85\x9e\x39\x5a\xe6\x9d\x6f\xaf\xad\x86\x8b\xe4\xf6\xbb\x12\xd7\x07\xcb\x07\x7a\x62\xd6\x6e\x65\x2d\xd8\x39\x6f\xfb\x83\x44\xc6\xa1\x51\x79\x87\x8a\xbd\xae\xc0\x0c\x28\x38\x22\xf7\x86\xcc\x55\x89\x73\x98\x1e\xa0\xc5\x74\x54\x39\xfe\xc0\x64\x45\xde\x5f\x69\x7c\x35\x37\x3b\x38\xa8\xf0\x89\x11\x94\xac\xcd\x20\x28\xe1\x20\x00\x55\x01\xc2\x01\xa1\x40\x35\xb6\xc5\x3f\x62\x7d\xc6\x3e\xef\x2a\x3a\x95\x97\x05\xbd\x30\x75\xc9\x28\x1d\x19\x96\xba\xb3\xb3\x28\xf2\x52\xe5\x61\x0a\x43\x15\x1c\x2d\xd3\xcb\xd7\xe6\xbf\xaf\x6c\xde\x0d\x38\xf3\x58\x4c\x0c\xdc\xbf\x27\x5c\x13\xae\xc4\xbe\x2e\x2d\xbf\xdd\x9c\x9c\xe0\x65\x4e\x33\x69\xa4\x17\x0f\x05\x70\x8f\x3d\xaa\x50\xc5\xc3\x12\xea\x20\xcf\x75\xc9\x51\x47\xb8\x56\xc8\x45\x04\xe9\x07\xf3\x15\xd1\x17\x64\x24\xae\x55\x9a\xb0\x95\xc1\x35\x24\xf5\x25\xe1\xf0\x81\x56\xbf\x0f\x9f\x1e\xd7\x9c\x26\xc9\x86\xfc\x2f\xb3\xc7\x69\xc6\x46\x10\x83\x52\x78\x56\xa6\xe6\x90\x98\x2d\x2c\x5c\x90\xfd\x28\x5f\x35\xe9\x04\xe6\xe3\xfa\xc8\xa3\x80\x6f\xfb\xd5\x4b\x11\x34\xd1\xb7\x11\x6f\x11\xae\x2a\xb7\xa5\xce\x9b\xe7\x6c\x84\x3c\x04\x00\xcd\x37\x8e\xe1\x5b\x88\xe1\x01\x6e\xd4\x63\x11\xdc\xec\x36\x20\x9a\xb2\x73\x6b\x1e\x04\xc3\xec\x2b\xf2\xa0\x17\x29\x8b\x77\xd7\x26\x8e\xba\x2a\xc3\xc1\xa8\xdb\x19\x43\x2b\x29\x13\x11\x86\x2b\x15\xe2\x86\x3d\x70\x1b\x50\xba\x03\x77\xec\x0c\x2f\x6d\x0d\x2b\xed\x0e\x45\x34\xcb\xea\x78\xbd\x35\x2b\xf4\x1f\xa9\x7a\xd8\x73\x15\x8b\xea\x08\xb2\x14\x0d\x04\x7b\x04\x9b\xdb\xf0\x4b\x4b\x39\xb8\x47\x87\x66\xa6\x28\xc6\x76\xa2\xfb\x71\x99\x81\x8d\x17\x8e\x03\x9f\x9b\x7b\xd2\x31\x8e\x64\x81\x68\x2e\xb2\x59\x66\x64\x18\x56\x5b\xe8\x20\x58\x5c\xdd\x82\xe3\x45\x37\x3a\x95\x00\xc3\xf6\x9a\x06\xc5\x94\x86\x34\x65\x34\x2b\x02\xe6\x20\x63\x86\x14\x70\x95\x3e\x65\x37\xb2\x0b\x7c\x2c\xe5\xf5\x51\x63\x58\x60\xed\x56\x0e\x36\xc2\x5f\xd8\x46\xc8\x53\xba\x9a\x25\x32\xba\x7b\x0e\x03\xe1\x64\x7a\xfc\xf1\xbd\x19\xbc\x6e\x1d\x2c\x7e\xd8\x36\x0d\x96\x00\xd5\xed\x82\xc5\x2f\x83\x51\x70\x30\x0a\x0e\x46\xc1\x7f\x3a\xa3\x60\x41\x14\x7a\x59\x04\x45\x9d\xba\x94\x9f\xdd\xed\x81\x46\xcd\x30\x7b\xd7\xc9\xad\xed\x73\x4e\x93\x03\x72\x64\xe3\x7c\xb8\xc2\x3f\x9d\xb6\x87\x99\x6c\x4c\x07\xcd\x3e\x5c\x17\x11\xf5\x5e\xcf\x0e\x72\xbb\x67\x74\xda\x23\xec\xab\x61\xfe\x09\xf2\x0c\xc4\x77\xde\xee\xc1\x80\x10\x36\xc9\xf4\x81\x37\x61\x83\x82\x6a\x9e\x84\x75\x61\x97\x18\xd0\x96\x77\x14\xd8\x69\x62\xd4\xac\xa6\x3a\xe4\xd5\x9d\x31\x7c\x16\x28\x56\xf9\x0e\xe1\x62\x94\xdb\xe4\x07\x27\x3c\x00\xc4\x63\x22\x78\x02\x0d\x5f\x1a\x52\x10\x56\x8c\xa2\x74\x52\x8e\x46\xe0\x8e\x31\x86\xc6\x3c\x21\xc5\xc8\x1b\xc3\xe8\xc0\x5c\xc4\xec\x81\xf0\x83\x26\x4b\x80\xfd\xbd\x48\x09\xe1\x86\x08\xda\xcd\xf7\xa6\xd9\x02\x16\x28\x64\xc3\x98\x48\x57\xec\x98\x38\x81\x1b\x51\x29\x19\x71\xa8\xa9\x41\x35\x5e\x47\x56\x98\x61\x8f\x8b\x6f\x82\x82\x9c\xd9\xca\x47\x08\x42\x2d\x72\xfb\x0b\x72\x73\x79\x7a\x79\x84\xa5\x81\x44\x9e\x24\x74\x86\xc2\xe0\x8a\x8a\x1c\x94\x56\x1a\xc7\x20\x13\x8e\xc9\x4f\xcc\xb1\x18\xa4\x43\xa4\xa8\x1d\x90\x8d\x16\xe1\x5a\x99\x2f\x0c\x86\x2d\xa9\x88\x13\x46\xfe\xf4\xe7\x7f\x33\xc4\x0f\x2f\x5b\xb2\xb1\x45\x3e\x82\x6a\xb9\x03\xa4\x49\xda\x6f\x11\xaf\xcb\x3d\xed\x44\x4c\x6f\xf7\x21\xa0\x95\x16\x98\x5a\xc4\xe4\x38\x42\xe6\x9d\x5a\x08\x5e\x08\x39\xae\xe2\x77\x49\x05\xc6\xe4\x46\x92\xb9\x61\x3c\xde\x79\xa3\xc5\x03\xd3\xe2\xca\x17\x83\x14\xc1\x5c\x94\x4a\x70\x7d\x15\x2f\xf7\x95\x6d\x90\xe4\x50\xc8\x03\xa3\x31\x87\x9c\x06\x10\x93\xa1\x85\xa3\x90\xe6\x77\xc7\xb6\x4e\x35\x18\x31\xe1\x33\x0f\x2b\x69\xa4\x97\x2e\xac\x98\x11\x8f\x69\x16\x22\xc9\x76\x71\xbb\x35\x3f\xe8\xa3\xb4\x76\x65\xf8\x3d\x5a\x1b\x8c\x78\xdc\x19\x85\x7d\xe3\x30\x69\x5f\x91\x93\xc9\xe9\xd5\x8e\xb4\x3a\x66\x09\xd3\x41\xbd\xb8\x32\xcb\x29\x3e\x66\xef\x42\x21\x0c\xda\x14\xa6\x22\x72\xfb\x5e\x66\x77\x34\x93\xb9\x41\x67\xaf\x82\x7f\x83\xd9\xd2\xe0\x95\x97\xcb\x7d\x3c\x9d\x60\x0c\xef\x6c\x83\x60\x21\x5d\x4d\x30\x25\x25\x63\x3a\xcf\x04\x81\x46\x1b\xf3\x84\x87\x77\x9a\x65\x99\xcc\x5c\xbe\x49\xc9\x56\x67\x8c\x09\x4f\x3c\xd2\x8e\x52\xb9\x54\x69\xa6\x0b\x8a\xb6\x7b\xb6\xd6\x5f\x72\x26\x22\x76\x01\x89\x67\xc1\x6d\x04\xdb\xfe\x11\x79\xdd\xb1\xc5\x86\x80\x1a\x45\x0e\x9c\x51\x38\xa8\x4d\x67\x43\x6b\x30\x57\x6e\x09\x98\x08\xae\x79\xd8\x66\x51\x2e\x9d\x2b\x72\x9f\x71\xad\x99\xb0\xea\x7c\x85\x5f\x41\x8c\xaf\x92\x76\x52\x54\xbb\x71\xda\x30\xd1\x05\x48\x7c\x01\x86\xd8\x44\x31\x03\x08\x58\x22\xb4\x2a\x42\xd2\x6d\x31\xe6\x8c\x25\x8c\xaa\x86\xab\x03\xb2\xd8\x01\x49\xa9\xf2\xdc\x83\xd5\x85\x7b\xec\x10\xa8\x68\x95\xb8\x05\x07\x4d\x12\x79\xaf\x48\xae\x7c\x83\x30\x04\x3c\x2b\x4d\x28\xc9\x28\x16\x01\xb7\x65\xac\x0c\x8f\x66\x42\xe5\x76\x03\x26\xc1\x16\x8e\x4b\x0a\xf6\x68\x40\x22\x5c\x90\xe1\xce\x22\x26\x19\x1b\x59\x60\x8c\x16\x05\x45\xeb\x20\x4f\x10\x9f\x71\x62\x7a\x00\xa3\xb0\x83\x09\xb0\xde\x77\x5f\x37\x21\x5c\x03\x5f\xae\x22\xdc\x07\x99\x95\x24\x3d\x80\x7d\xbd\xa9\x5d\x07\x48\x9d\xc2\x42\xad\xa3\x45\xea\xc9\x74\x2c\x2e\xe4\x26\xaf\x3e\x02\xa2\x10\x64\x7b\x7c\x11\xd6\x95\xe8\x30\xf6\x89\x89\xf3\x8c\x36\xe2\x08\x29\x53\x50\xef\xd8\xc6\x55\x98\x48\xd5\x01\x51\xa8\x07\xdf\x31\x08\x9b\x8f\xa8\xd2\xb6\x01\x19\x10\xd0\x46\x02\x11\xa6\xef\x58\x2a\xe5\xb8\xa7\xa2\x70\x5d\x79\xda\x25\xbf\x16\x1a\x8b\x81\x27\x36\x3a\x25\xee\xaa\xc1\x41\x11\xf4\x67\x27\x52\x2c\x58\x86\x64\xd9\x7a\x07\xb1\xb3\xcb\x27\x85\xc3\x9d\x48\x31\xe7\x8b\xfa\x7c\xe6\x92\x30\x1a\x8a\x98\x6f\xa5\x81\xb9\x28\x4e\xba\x6b\x81\x9f\xca\x47\x5d\xa2\x50\x86\x69\xc9\xce\x9e\xe9\x0b\x4a\x68\xa9\x6f\xc8\x82\x30\x52\x7d\x55\x94\x7a\x42\xd9\xb7\x91\x29\x37\x18\x92\x47\x3e\xdc\x5b\x3f\x35\xc8\xed\x23\x60\xf0\xf5\xef\xaa\x18\x53\xff\xd5\xdb\xeb\xc1\x3c\xd9\x6a\x9e\x8c\x00\xc5\x9f\xcb\x3e\x89\x17\x28\x64\xa0\xc4\x5f\xc2\x16\x4a\x0b\x53\xc8\x44\x19\x15\x03\x0e\x36\xca\xc1\x46\xd9\x78\x0c\x83\x8d\xf2\xb7\x6a\xa3\x44\xba\xb0\x83\x91\xd2\x27\x31\xe5\xe7\x11\x56\xca\x5c\x4b\x2b\x24\x32\x10\x23\x42\x1c\xb1\x95\xc1\xaf\xe8\x03\xbe\x38\x65\xd9\x0f\x60\x69\xec\x92\xff\xaa\xcf\x83\xa9\x53\x48\x31\xfa\x2b\xcb\xe4\x81\x33\x7c\xad\xe8\x83\x27\xe0\xf9\xce\x9b\x1a\x68\x50\x2e\x8c\x0a\xa8\x41\x51\x58\x26\x41\x07\x6a\x35\x4e\x36\x09\xd0\x5d\x12\x59\xcb\x56\x34\x73\xff\xad\x3d\xde\x85\xad\x0f\xbc\xbb\xc6\xbb\xd1\x14\xf4\x5c\xbc\xfb\x07\x18\x3d\xc4\xbb\xf1\x97\x30\xef\xb6\x30\x85\x78\xf7\xb2\x18\x70\xe0\xdd\x03\xef\x6e\x3c\x86\x81\x77\xff\x56\x79\x37\xd2\x85\x1d\x78\xb7\x4f\x62\xca\xcf\xee\xbc\x1b\xb8\xe2\x97\xd8\x75\x7a\xe9\xb9\x61\xd3\x45\xb3\x69\xb8\x55\x58\x40\x62\x38\x39\x6d\x7c\x2f\x64\x88\x6e\x64\xac\x01\x57\xe5\xa8\x98\x62\xe0\xa2\x2d\x5c\x34\x95\x32\x79\x1e\x0e\x3a\x95\x2e\xea\xcd\xe7\x9e\xe6\xdb\x10\xe7\x04\x38\xb6\xb9\x66\x6a\x07\x19\x38\xe6\xc0\x31\x1b\x8f\x61\xe0\x98\xbf\x4d\x8e\x69\x68\x41\x6f\x6e\x69\x1e\x7e\x8c\x5a\x8b\xa5\xc7\x3e\xa9\x1e\xce\xfc\xe2\x51\x17\x95\xa0\xb0\xd6\x11\x5a\xd7\x89\xa1\x45\x45\x60\x8d\xcb\xd8\x82\x5a\x9b\x21\x96\x0a\xb1\x34\x45\xb1\x26\x97\x30\x74\x50\x16\x5b\xd2\x92\xfc\x69\xff\x26\x17\x82\x25\xfb\x07\x64\xff\x27\x9b\x6d\xb0\xff\x67\x58\xf3\x8c\x46\x77\x23\xa8\x5c\xa8\xf9\x8c\x27\x5b\xca\x20\x79\x9e\x54\x2b\x60\xa4\xd7\xfc\xaf\xbd\xe2\xf9\xd1\xd3\xa2\xf8\x5f\x41\xd5\xce\x15\x26\x61\x94\xc9\x71\x84\x2a\xc5\x17\x62\x65\x2e\x52\x63\x3f\x04\x5b\x32\x4b\x26\x63\x72\xea\x6d\xcd\xdb\x77\x76\x30\x9b\x03\xf9\xe6\xcd\x5b\xf7\xc5\xbb\x5d\x75\xf9\xbe\x0e\x72\x38\xe0\xc7\x78\xc7\xb9\xa2\xb3\xa4\xdb\xad\x01\xce\x4e\xf7\x30\xd8\x37\xb2\xbc\xcc\x45\x34\x02\x61\xe9\xc8\xc6\xad\x2b\xd3\x0c\x43\x5b\x67\x69\x90\xdb\xbf\x1d\x25\x30\x0b\xc8\xfb\xef\xa7\x67\x0f\x0d\xc9\x01\x55\x32\x7b\x8a\x2f\x10\x06\x8f\x1b\xa2\x9a\xc9\xbc\x28\x86\x0e\x70\x4c\xa6\xc4\xdc\xd3\xff\xf3\xbf\xff\x5f\x0c\x33\x20\x72\x1d\x8e\x19\x7a\xff\xfd\x74\x4c\xfe\x74\xea\xbc\xde\x73\x9a\x28\xf6\xe7\x40\xdb\xd5\xd6\x15\xf0\x94\xa7\xdd\x50\x17\x9e\xb0\x23\x4b\xb9\xa1\xd4\x1c\xc7\xc6\xdc\x65\xe6\xe5\xf1\x74\xb2\x7e\x03\xd7\xee\x9e\x66\x71\x70\xbf\x2b\xd7\xd1\x70\x06\x6d\x59\x8b\x3f\x2a\x1c\x1e\x52\x92\x83\xea\x4f\xc1\x23\xc4\x74\x53\x64\xd1\xe6\x06\x19\xa0\xc6\x81\x8d\xe8\x88\x8b\x61\xa2\x09\x03\xb7\x76\x04\xb0\xd0\x3e\x5f\x22\xa1\xd9\x4b\xa2\x81\x1a\x99\x35\xf9\x64\x2e\x3c\x26\xe4\x52\xc5\x2c\xe1\x6b\x96\x95\xad\x75\xcc\x57\x45\xe3\x39\x55\x2b\xb0\x1d\xc4\x51\xd2\x75\xca\x04\x6a\x3d\x06\x33\x8c\xb6\xd6\x76\x03\x94\x7a\x32\x85\x17\xa0\x58\x11\xf8\x66\x85\x57\xa0\xec\x76\x0f\x6b\x96\xb9\x46\x92\xd0\x9e\x76\x84\x2d\x53\x6f\xf7\xc6\x84\x1c\x37\xad\xd7\x8c\x59\x1b\xa1\x8c\x8f\xc8\x95\x9d\xb9\xdc\x43\x73\xb6\xe6\x86\x00\x8e\x34\xb6\x0a\xf7\xf6\xab\x9a\xff\xbd\xb5\x77\x84\x1c\x7b\x30\x54\xe1\x6e\x1a\x1d\x00\x74\x88\x5e\x07\xf0\xde\x95\x7f\xf3\x61\xc0\x1c\x2c\x73\x3b\x9a\xc6\xa4\x65\xfb\x2b\xdb\x6a\xd6\x89\xa0\xae\x41\x82\x19\x5c\xb8\x13\x28\x13\x57\x5b\xdb\x06\xbe\xe4\xf3\x2a\xcf\x7c\x65\xa0\x28\xf7\xba\x15\x75\xda\x39\x5d\x58\x71\x35\x18\xff\xb1\x47\xe6\xda\x89\x13\x4e\xd0\xf7\x96\x67\xa5\x60\x12\x38\xf0\x76\x54\x9f\xd4\xd6\x78\xe0\x7a\x7b\x70\x85\x5e\x7b\xd8\x28\x8c\x92\xba\xdd\xbb\x60\x6b\x28\x05\xfe\x12\xea\x6e\x57\x27\x0b\x8d\x6e\x46\xb0\xdc\x25\xd4\x54\xae\x35\x85\x8f\xea\x91\xcc\xf5\x42\x72\xb1\xf8\x9f\x42\x52\x5b\xa9\x8e\xa0\xfa\xb2\xe7\x7e\x60\x99\x4e\x6f\x03\x4b\xaa\xea\xe8\x22\x54\xc3\xf4\x5a\x66\x91\xd6\x34\x68\x2b\x0e\x1b\xad\xc3\x27\x00\x5b\xd4\x55\xe6\x5a\xf1\x98\x15\xea\x65\x21\xa0\x86\x06\x85\x86\x22\xea\x2f\x39\xcb\x68\x1c\xec\x0e\xd3\xbe\x1d\x32\xee\xdd\x07\xe0\x18\x83\xab\xac\xc8\x6e\xeb\xcb\x19\x74\xb1\x11\xab\x45\x9a\x2d\x90\x9a\xd9\x06\xcb\xc9\x85\x60\x2e\x9a\xe9\xec\x86\xcc\xeb\x87\x84\x8a\x2f\xbc\xda\x3f\xfe\xf1\xfc\xf8\xe2\x17\xbb\xdb\x30\x5b\x50\x3a\x2e\x00\x78\xf4\xe5\x6e\x34\x9a\x6d\x87\x95\x0c\xb6\xb1\x8a\x6d\x2c\x63\x66\xa1\x78\xd9\x9e\xc5\x44\x76\x55\x4e\xb0\x6d\x29\xf3\x7e\x0c\x19\xcc\x7c\xe0\xb6\xed\x66\x59\x75\xe4\xc1\x7c\x36\x98\xcf\x1a\x8f\x61\x30\x9f\xfd\x36\xcd\x67\x1e\x81\xe8\x6d\x45\xdb\xa2\x38\xe5\x67\x77\xdb\x1a\x12\x19\x16\x43\x95\xd9\x2e\x5e\x7b\xe5\x3f\x5c\x6d\x0f\x8e\x5f\x51\x11\x1f\x56\xcc\x47\x61\xa3\x07\xc4\x79\x6c\x99\x4c\xd8\x43\x94\xe4\xb1\xed\x53\x2b\xd8\xbd\x1f\x68\x39\xa4\x7d\xff\xc2\x9c\xf3\x2e\x9f\xb1\x32\xaf\x4b\x55\x84\xab\xe7\x60\xa4\x7f\xc8\x67\xec\xa4\x9c\xef\xc4\x9f\xaf\xce\x57\xdb\x9e\xdd\x66\xb3\xad\x2b\xa9\x73\xdd\xb6\x87\x07\x26\x3c\x30\xe1\x81\x09\xff\xd3\x31\xe1\x36\x6a\xb2\xcd\x93\x2b\xcd\x09\xea\x1b\xec\x65\xa5\x78\x44\xa4\xaa\x99\xf6\x67\xcd\xde\x10\x7d\x94\x60\x37\x1b\x9a\x85\xb1\x5d\x84\x9b\xd9\x36\x3a\x59\xf3\x38\xa7\x49\x47\x37\x4a\x6f\xda\x9d\x4d\xd8\x5d\x0d\x26\x1b\xda\x4a\x36\x80\x5c\xed\x31\x59\xc2\xd5\xd8\xd4\xf1\xcc\x5a\xc4\x21\xad\x10\x54\xf5\x03\x48\xf9\xd3\x12\xf2\xc9\xb5\x74\xea\x77\xc3\x08\x3d\xda\x83\x1a\x32\x25\x22\x9e\xb0\x6c\xca\x32\x2e\x9b\x33\x58\xeb\xc4\xe1\xaa\xf6\xa2\x8b\x8d\x4d\xf1\x2f\x2d\xcd\xbf\x20\xc7\xdf\x4d\xc1\x1b\x53\xdf\xdc\xa7\xc8\x94\x73\xd5\xc2\xa8\xa6\x20\x2b\xf8\x7e\x99\x6f\x56\x21\xa7\x8c\xfb\x74\x67\xbd\x76\xe5\xbc\x36\x54\x0e\xdb\xda\x81\x0b\x19\xb7\x9f\xb4\xf9\xfd\x1f\xe3\x90\x97\x5e\x31\xb7\xbe\x07\xec\x17\x80\x2b\x7d\xcf\x6a\x23\x22\x67\x49\x07\x0e\x09\x25\x09\xbd\x0e\xfb\x2d\xa7\x7b\xea\xbc\x8c\x8f\x5d\x69\xcf\xd5\x12\x1b\x39\x7e\x92\x31\xda\x50\xde\xb5\x61\xcd\xfb\xc7\xc5\x6b\xe5\xc9\xe6\x5a\xae\xa8\xe6\x51\xd9\xb4\x48\x76\x76\xd1\xae\xee\x0a\xa8\x3a\x6c\xcd\xb2\x8d\xf5\x40\x94\xc8\xec\xf6\xa4\x0d\xa5\x49\xef\xb6\xae\x7d\x9a\xba\x26\x8c\xde\x7d\x9f\xd1\x88\xed\x78\xdf\xcf\xab\xef\xd5\xae\x7b\x35\x5f\xcf\xe1\x7c\xdb\x9a\xc0\x70\x8c\xad\xaa\xa1\xdb\x1d\xf5\x5d\x4d\x65\xee\xb3\x01\xd7\xf0\xf0\x6b\xc4\x93\x40\x2a\x72\x75\x48\xeb\x0f\x9e\x4c\xc9\x82\x66\x33\xba\x30\xe0\x24\x09\x8b\x30\xcd\xb2\xdc\xf8\x37\x5f\x4a\x46\xfe\x27\x92\x4e\x02\xf7\x1f\x9a\xeb\xb5\x5d\xbf\xea\x6a\xaf\x8b\x57\xfc\x10\x16\xdb\x9b\x4c\x92\x48\xa6\x9b\x9e\xfd\xa4\x81\xa2\x96\x2d\x62\xbc\x02\x8d\xca\x5f\xa5\x25\xa8\xcf\xcb\x25\xb0\x7a\x5b\x1f\x3e\x61\x8b\x3d\xb7\x70\x0a\x5b\x9f\xf1\x1f\x83\x57\xfc\xcf\xc3\xea\xae\xa3\xae\xf6\x18\xec\x73\xe4\xd5\xfe\x82\x6d\x47\x6f\xc7\x6e\x02\xdf\x76\x0c\xf4\x51\x63\xc0\x81\x5f\x03\x07\x5c\xdd\xdd\x0e\x29\xaa\xea\x83\xad\xbd\xd3\x86\x07\x6e\xfc\xa6\x35\xb0\x9a\x24\x36\x60\xc2\xaf\x83\x09\xed\x59\x07\xb3\x7c\x61\x8b\x84\x4e\x7b\x04\xaf\x9d\xd6\x9e\xdf\x66\x0b\x99\xc6\x32\x13\xd9\x9a\x91\x15\x5b\xc9\x2c\x5c\xf4\xc8\xa0\x53\x9a\x17\x15\x58\x89\x91\x74\xb6\x3d\xbf\xf8\x73\xcd\x6d\xdb\x5e\xe2\xe3\xab\xb7\x4d\x3b\xd0\x10\xd5\xc8\x74\x14\xff\xf8\xd5\x89\x5c\xa5\xd8\xfc\xbf\x11\x69\xaa\xc8\x72\x16\x7c\xad\x86\x32\x33\xa6\xef\x8d\x44\x68\xe6\x58\x7f\x15\xd6\xf4\xdd\x00\x85\x49\xa8\x14\x1c\xfd\xeb\xe0\xcb\x81\xaf\x83\xf8\xd2\x86\x27\x4b\x46\x13\xbd\x3c\x59\xb2\x70\x3e\x6a\x75\x69\x3f\x78\x0f\x17\x04\x40\x66\x0e\x14\x55\xb4\x04\x36\x3a\x02\x8e\x1c\x5c\x1a\x0e\xd0\x4b\xc8\x69\x83\x3d\x91\x8b\x6b\xa3\x89\x70\xbd\xb9\x8e\x32\xc6\x42\x95\x57\x6a\x72\x7f\xfd\x0d\x77\x2c\x89\x5c\x10\x65\x7f\x21\x74\x26\xd7\xcc\x56\xbd\x48\xe4\xa2\xa1\xcc\x1b\xc3\xa0\x13\x6b\x58\x55\x3a\x96\xb9\xf6\x0f\x63\x22\xe6\x72\xd7\x15\xa5\x99\x5c\x19\x61\x32\x57\x1f\x99\xce\x78\xa4\xfa\x5c\xbd\xfd\x69\xe8\x2d\xb7\xb2\x9b\x93\xa9\xbd\x7c\x2e\xd2\xba\x7c\x3c\xb4\xb0\x15\x0e\x81\x17\x35\x2b\xfa\xce\x73\x81\x1d\xe7\x3b\x30\xf0\xbb\xd7\xdf\x7d\xdd\xbc\xe8\xe0\x45\x6b\x0e\x9f\x68\xb2\x75\x35\x1a\x13\x4b\xd7\x4e\xc3\x56\xb5\x9a\x13\xe1\x6d\xcf\xac\x6b\xcf\xd5\x7c\x1b\xb0\xc2\x5b\xe5\xd0\xb3\x1d\x92\x89\xde\x87\x4e\x23\xf3\x3c\x41\x87\x60\xbc\x02\xcb\xa4\x84\x94\x69\xa3\xc9\x01\x01\xc4\xf2\x44\x34\xd2\x39\xdd\x0a\xca\xc1\x11\xf1\xac\xee\x69\x51\xee\xd9\x55\x4b\xb7\x91\x96\x2b\x19\x63\xd4\xfb\xcc\x88\xe2\x6b\x9e\x49\x88\x01\x27\x6b\x9a\x71\xb8\x88\x5b\xf0\x62\x18\xe2\x5d\x3e\x63\x23\xdf\xf8\x99\x66\x32\x62\xaa\x6e\xe9\x68\x6b\xbd\x53\xce\xf6\x23\x0d\x9a\x3e\x77\x4c\x89\x6b\xe2\x5e\x95\x63\x3b\xab\xce\x5a\xaf\x2f\x1f\xd8\x80\x86\xe8\xca\xe0\x26\x60\x59\x2f\x31\x4f\x72\xac\x36\x0f\x5e\x80\x5c\x08\x2e\x16\x88\x20\x3b\xd6\x1a\xca\xfc\x77\x3b\xbd\xb6\xfe\xc3\xb5\x85\xcd\xe7\x46\xd5\x5f\xb3\x0a\x56\x70\xe5\x26\x08\x2d\x90\x37\x1d\xb4\x8c\x0f\x6c\x65\xef\x15\xcb\x16\xce\xd9\x71\x3c\x9d\x94\xbe\x0e\x23\x91\x84\x59\x72\x03\x96\x05\xf6\xa5\x43\x0a\x6b\xb7\x9a\x6f\x6d\xce\x53\x5a\xce\x49\x97\xf5\xbc\x07\xf8\xa4\x87\x15\x7d\x6b\x11\xbb\x59\xd2\xdb\x44\xc6\xa7\x14\x97\x7b\xae\x96\xec\x26\x36\x6f\x2d\xbe\xbf\xe8\xdc\x65\x85\xac\x4a\xd6\xbd\xc4\xe7\xae\x21\xdb\xa5\x6b\xf2\xa4\x96\xca\x16\x43\x3c\x79\x2e\x63\x3c\x79\x02\x23\x0b\xe9\x8f\x27\x3d\x0d\xf3\x5b\xcb\xdd\xc1\x38\xdf\x75\xa2\xa5\xed\xfe\x69\x0c\xf4\x3b\xac\x9e\xec\x62\xa8\xdf\xda\x83\x7e\xc6\xfa\xee\x41\x41\x34\x79\x72\x83\x3d\xe9\x7d\x15\x48\xcf\xeb\x40\x76\x32\xde\x93\xc7\x1b\xf0\xbb\x16\x56\x5e\xa3\x1d\x8d\xf8\x5d\x03\x07\x04\xe5\x4e\x43\x7e\xd7\x98\x1d\x76\x7e\xb2\xc3\x31\x0d\x44\xbd\x73\x8b\x7a\xb9\x07\xb6\x37\xe7\xe9\x5c\x04\xe4\x49\xdd\x04\xfd\x97\xde\xe7\x02\xb7\xba\x0c\xb6\x36\xe5\x29\xdd\x06\xe4\x97\xe5\x6a\xc3\x45\x79\x02\x6c\xe9\xe5\x75\x20\xcf\xe6\x79\x20\xcf\xe4\x7d\x20\x03\x1a\xfd\xa2\x68\xd4\xd3\x71\x41\x9e\xd3\x79\x41\x9e\xcb\x81\x41\x06\x64\xfa\x05\x91\xa9\xeb\x89\x1e\xfe\x0f\xf2\x5c\x3e\x10\xf2\xf4\x7e\x10\xd2\xed\x0b\x21\x7d\x5a\x91\xf4\xf6\x89\x6c\x6d\xce\x53\xf9\x45\xc8\xd3\xfa\x46\x48\x0f\x9c\xea\xf0\x91\x6c\x2f\xf5\x89\xfc\x24\x64\x47\x5f\x49\x9f\xb5\xf4\xf1\x99\x6c\x2f\x68\x67\xbf\x49\xd3\x72\x12\xb9\x50\x5f\xe0\x3b\xe9\xb3\xc2\xbe\x3e\x94\xed\x55\x3e\xa9\x1f\x85\x7c\xa9\x2f\xa5\x69\xd0\x26\x17\x0b\xe9\xbe\xbf\x2d\xed\x37\x5b\xdc\x2d\xa4\x95\x5c\x0e\x89\x39\x5e\x62\x8e\xcd\x3a\x07\x65\x86\x3f\x4b\xe1\xd4\x0b\x9c\x01\x15\x2a\xfc\xa1\xcc\xbd\xa9\xfc\xb8\x9d\x6c\x53\x83\xce\x9e\x42\x91\x5e\xe3\xff\x0c\x43\xdb\x7c\x9a\xc2\x80\x0d\x32\xd1\x90\x52\x33\xa4\xd4\x0c\x29\x35\xbf\xad\x94\x9a\x36\x87\xee\x22\x63\xaa\x33\xf2\xe3\xc6\xb5\x1a\x36\xe8\xcf\x20\xa7\x14\x5f\xb4\x7d\xb8\x09\x36\x36\x32\x7f\x14\x3e\xcc\x10\x87\xa2\xee\x6d\xac\xdb\x41\x56\x54\x47\x4b\x12\x65\x5c\xb3\x8c\x53\xb8\x24\x94\x44\x32\xcb\x98\x4a\x0d\x3d\x17\x0b\x62\xe5\x3c\x2d\xb1\x45\xf2\x4e\xb9\xa6\x95\x35\xdc\xee\x1d\x93\x2b\x03\x20\x13\x11\x4d\x55\x0e\xf7\xb6\x84\x28\x04\x4a\x83\xc1\x9d\x5a\xbb\x2d\x79\x2f\xf5\xb2\xd6\x25\xd9\xeb\xfc\x6c\x3b\xd3\x8b\x78\xab\x1b\x74\x83\xc0\x50\x74\x3c\xb7\x5d\x99\x47\x44\xb1\x94\x66\xd8\xba\x27\xd7\x84\xfa\x39\xbd\xf8\x08\x54\xb2\x33\x50\x70\x01\xe7\xd1\x00\xb0\x88\xdd\x79\xf9\x1b\xcf\xc5\x62\x0c\xdd\xf5\xb1\xc9\x34\x74\xa7\x37\x8a\x49\x75\x27\x96\xb4\x69\x54\x22\xd8\x02\x80\xb3\x84\xd7\xa8\x23\x6c\xce\x1f\x5c\x9b\xa8\xdb\xdb\xdb\xbd\x0b\xa9\xcd\x7f\xc6\xe4\x38\x49\x6c\xb9\x79\x7f\xf4\xf0\xc8\xb6\x32\x13\x45\x84\x5a\xe5\x0a\xfb\x83\x51\xcd\x15\x84\x3d\x60\x99\x13\xbb\x14\x2d\x71\xcc\x31\x39\x06\x66\xb6\x5d\xef\xd7\xee\x2e\x20\x27\x15\x0e\x41\xad\x4a\x66\x17\x0d\x4d\x7c\xcc\x72\xcc\x1f\x76\x3d\xc0\x19\x70\xf0\xe6\x7d\x85\xdd\x0f\x83\x08\x5d\xa8\x72\x0c\xfb\x40\x10\xc3\x75\xa4\x3a\xb5\x7e\x44\xb8\x46\x89\xb0\x5b\x27\xf6\xaa\xda\x34\x8e\x52\x53\x65\xcb\x82\x55\x95\xa0\x84\x1a\x72\x80\x30\x0c\x17\xb3\x45\x19\xaf\x54\xd5\x21\x86\x16\xea\xd0\x3d\xee\xb9\x19\xc4\x77\xc2\xb7\x94\xcc\x69\x58\xd9\xed\xde\x45\xfd\x65\xd7\x02\x29\xc5\xb8\x15\x5b\xfc\xa8\xa9\xa9\x7a\xf9\x29\x36\x86\x16\x44\x80\xb0\x07\xc3\xc2\x14\xd0\x87\x4b\x91\x6c\x88\xce\xe8\x7c\xce\x23\xdc\x29\x57\xbf\xab\xcb\xee\x0f\x5c\xee\xa5\x41\x21\x70\x47\x21\xa5\xd2\xaf\x3c\xa7\x9e\xd7\xc2\x0b\xe7\x6e\x2e\x23\x57\xdb\x32\x55\xd4\x9e\x83\xb3\x34\x0c\x10\x0a\x2c\x01\x22\x6f\xed\x4d\xfb\xa0\x48\x25\x25\xf8\x36\x8a\x2d\x30\xea\x1d\x8a\x65\xb1\x0b\x3c\x52\x74\x85\x57\x01\x6b\xf6\xb4\x0f\x0a\x35\xae\x9c\x19\xce\x5b\x32\xe2\x5a\x56\xc0\x4d\x66\x1b\x04\xda\xcd\xdc\xb1\xa9\x6e\xd9\x6e\xbf\x5c\x8a\x8f\x81\x0b\xe9\xe0\x07\x99\x55\x65\xe8\x83\x46\x1e\xe0\x3e\x50\x74\x74\x7b\xdb\x08\x5f\xa5\x09\x67\xaa\xd4\x16\x7d\x64\x83\x96\x8c\x5d\x07\x06\x86\x22\xf0\x11\x8a\x45\xe3\x9e\x70\x6f\x7f\x7b\xc5\x90\x14\x6d\x45\x2b\xeb\x6c\x5c\xfe\xfe\x22\x91\x33\x9a\xbc\x7c\xd5\x61\x96\xfb\x65\x36\xe0\x7b\x00\xc6\x82\x68\xb4\x67\x99\x55\xa2\x07\x60\x19\xed\x83\x9a\x35\x56\x86\x29\x0f\xba\xeb\x2c\x3b\xa0\xf5\x97\x88\x61\x7b\xca\xf5\xe2\xac\x1d\x1a\x85\xd2\x82\x84\x86\xeb\x88\x95\x9f\xf2\xca\x36\x30\x8e\x62\xee\x5e\x46\x51\xc1\x74\xbb\x59\xb9\x1a\x84\xc2\xb4\x6a\x26\x8c\x46\x9c\x87\x4e\x2a\xaa\xdb\xc9\xee\x58\x20\x1c\x21\xf0\x0a\x50\x9d\xc2\x74\xb1\x20\x7d\x1d\xbb\x5d\xa5\x8b\x95\xba\x8e\x46\x72\x10\x45\x93\x6f\x6c\xdf\x8b\x65\x14\xdb\x53\x3a\x9b\xe5\x48\x6f\xde\x9e\xbe\xe3\x96\x0a\xc0\xe5\x47\x48\x7d\xb1\xdb\x99\xe0\x0b\xce\x24\x55\x13\xbf\xdc\x8a\xcd\x23\x1d\xec\xc5\x9c\xe3\x3f\xdc\x5e\x4c\x65\xb6\xe3\x66\xc0\x1b\x1d\xbb\x01\xcf\xf4\xd9\x0e\x72\x0d\xad\x43\x01\x4b\x95\x5c\x31\x68\x5b\x2a\x23\x99\x28\xb2\xa4\x6b\xb4\xde\xab\x03\x0c\x0c\xd9\xe0\x5f\x1d\x84\x36\x63\x5e\x81\x6a\xae\x9d\xf9\x4d\x39\xeb\x21\x8c\x6e\x25\x2a\x4b\xc8\x8d\x82\xd2\x49\x15\x6d\xaf\x5c\x28\x73\x77\x73\x32\x75\x85\x56\x3f\x9d\x4e\x1b\xab\x78\xe2\xa7\xcf\xa9\x52\xb1\xb9\x9c\x77\x3c\x33\xea\x76\x14\x6c\x3f\xdc\x27\x74\x28\xa5\x5a\xb3\x4c\x1c\x91\xff\x1a\xff\x5b\xfb\x93\x0f\xa3\xbb\x22\x86\x62\xc4\x85\x1e\xc9\x6c\x84\x33\x34\xf5\x23\x2f\x3f\x7d\x11\x72\x77\xe1\xf2\xa2\x7c\xa9\x03\x2d\xfb\xc9\x57\x16\x33\xc9\x35\xf3\x98\x0b\x52\x61\xa3\x60\xa8\x7c\xa6\x13\x66\x64\x65\x54\xb8\xec\x5c\xed\x63\x16\xd2\x52\x2b\xaa\xf4\x3b\xb3\x74\xb7\x2b\x7b\xbb\x57\xdc\xd8\x2e\xb6\xd2\xcd\x6c\x7b\xb0\x95\x25\x68\xcc\xd6\xee\xf4\xd2\x53\x42\x5e\x75\xa0\x61\x61\xe7\x47\x51\x53\xb9\xda\xc6\x7a\xc9\x14\x23\x19\x15\x0b\xa6\x0e\x9d\xd9\x0e\x6a\x20\xb7\x96\xde\xc5\x4f\xa5\x24\x97\xbd\x3a\xe0\x16\xc2\x5d\x56\x6e\x07\xac\x0d\xcc\x4e\xd3\x21\x2b\xcf\xf1\x0c\x50\x80\xeb\x4b\xc1\x3a\x29\x00\x3e\xba\x13\x05\xeb\x58\x7b\x49\xde\x6a\x14\xec\x16\x69\xd8\xad\xa5\x62\xb7\x48\xc7\x6e\x0d\x25\x6b\x95\x79\x06\x5a\x06\x9f\x5e\xb4\x4c\x3d\x42\x4b\xee\x56\x8e\x5b\x2d\x7d\xe5\x27\xa8\x1c\x93\x97\x8a\x31\x67\x22\x03\x52\x46\x57\x69\xc2\x88\xda\x08\x4d\x1f\x42\xf5\x57\xfd\xcf\xed\x6d\xab\x6e\x6d\x65\xc8\x26\xdd\xb9\x7d\x6c\x67\x19\xf3\x54\x6b\x99\x6d\xab\xcc\xe6\xba\x5d\x48\xcd\x60\x6e\x83\x3d\x1d\x9b\x60\xb3\x62\x9c\xd3\xa0\x83\x2b\xe0\xf6\x78\xdc\xa4\x7d\xf4\x19\x4b\xe4\xfd\xab\x83\x2a\xc8\xde\x66\xe3\xae\x12\xae\x15\x4b\xe6\xce\xf9\xdc\xb1\x0f\x68\x0c\x03\x33\xe7\xcd\x92\x11\x7d\x2f\x01\xd7\xa0\xba\x92\xfb\x0d\x09\x84\x61\x42\x9b\xb2\x64\x79\xc7\xd9\x5d\x0a\xb7\x7a\x17\xba\x55\x9a\x5f\x99\xa7\x25\xe1\x6a\xd0\xb4\x60\x9f\xef\xe6\x09\xf7\x4b\x99\xd8\x43\x3a\x82\x23\xba\xbd\x2d\x19\xf2\xbf\x03\x75\xf9\x97\x25\x55\x2f\x57\x9b\xcf\x10\x53\xf9\x0a\xe8\x8e\x25\xf2\x5d\xd7\xd9\x56\xe0\x77\x56\x08\x40\x32\x84\x0f\x23\x5e\xca\x84\x9b\xd8\xcc\xdb\x13\xdf\x60\xbc\x58\x42\x60\x07\x50\x69\xf4\x29\xcd\x58\x02\xe0\x3a\x48\xd1\x88\x6a\x97\xd4\x1b\x31\x70\xc9\x8d\x2b\xde\x5e\x94\x81\xa2\xa9\x91\x48\xf9\x69\x5f\x6f\xb1\xa4\xae\xe5\x74\x5d\x72\x01\x98\x87\x69\x50\x28\x4e\x59\x53\x42\x02\xa4\xd5\x36\x07\x00\x5f\x71\xb1\x92\x6e\xe0\x85\x14\x23\x1b\xa2\x64\xfd\x61\xe4\x7e\xc9\x32\x66\xed\x22\x73\x99\xad\x98\x6f\xa4\x80\x88\x28\x1c\xbd\x87\xd1\x6e\x7b\x6b\xbc\x7a\x42\x4f\xa0\xc4\x57\x23\x29\x77\x90\xbd\xaa\xc1\x94\xbf\x9c\x0c\x56\x23\xcb\xed\x63\x06\x4c\x9e\x94\xa4\x32\x76\x29\x6f\xe8\x02\x29\x48\x74\x8f\xb0\xcf\x22\xf0\xb3\x15\xdb\x7a\xe7\x78\xf8\x0e\xf9\xe6\xcf\x76\xfe\xd7\x97\x6f\x37\x79\xcc\x96\x77\x0f\xd9\x64\x69\x0e\x6c\x7b\xaf\xdd\x26\x5e\xa8\xed\xfd\x52\x2a\x34\x4b\x9a\xe5\x5b\x11\xd0\x08\xc0\x9d\xc9\x13\x7d\x84\x3b\xb2\x53\x52\x4a\x4f\x49\x89\xf4\x95\x96\xc8\xf6\xfd\xea\x94\x97\xfe\x79\x4f\xba\xa2\x2b\x95\x56\x37\xa4\xfb\x45\x93\x81\x86\x46\x5e\xd5\x4f\xe9\x86\x00\xef\xc2\xb5\xef\x55\x28\x75\x11\x5b\xf9\x9f\x6d\xcc\xf7\xdd\x83\x1e\x5f\x9c\xee\xf7\xc8\xd9\xd9\xcd\xa2\xd5\x95\xe1\x64\x77\x71\x27\xfd\xd8\x52\xe9\x36\x7a\xd1\x4f\xea\xc6\x37\xd1\x41\x5c\xd0\x4b\xaf\x04\xa6\x9b\x08\x82\x4a\xcb\x80\xd2\x1e\x9e\x99\x56\xa1\xbb\x8e\x5e\x7d\xa5\xee\x80\x3b\xcb\xed\xdf\x4b\xf5\xaa\x2e\x7e\x63\x38\x8d\x81\xa6\xcb\x56\x76\x08\x50\x41\x93\x72\x07\xc9\xbe\x02\xed\xd6\x6a\xcc\x6e\xbf\xa3\x22\x2c\xa4\xd8\x8c\xae\xbd\xa8\x7a\xb6\xcc\xcd\x71\xc8\x7a\xe0\x8b\xee\x07\xdb\x1e\x85\x8e\x6d\xbe\x60\x46\xfc\x75\xc6\x5e\x99\xd5\x79\x37\x82\x8e\xa6\x14\xb3\x11\xce\x12\xda\xe1\xad\x34\xf8\x64\x0e\xd0\x5f\x23\xda\x8d\x8a\x5d\x90\xc2\x05\x12\xd8\xc0\x8e\x76\x91\x65\x27\xb6\xb9\x3b\xd7\x2c\xc0\x2c\x73\xa4\xd1\x25\xdf\x3f\x7d\x8a\xb8\xb5\x79\x3e\xf8\x27\x22\x02\xfd\x52\xc1\x1b\x96\x86\x09\xe1\xdb\xeb\xc3\xef\xc3\x05\x6c\xb7\x3f\x48\x65\xed\x0a\xe1\x26\x27\x6c\xae\x5d\x23\xc4\x82\x87\xc0\xed\xe9\x61\xa4\x21\xfe\x45\x84\x4e\x2c\x46\x3d\xdf\x57\x25\x64\xbf\x28\x05\xed\x7e\x66\xa9\x75\xa8\x3f\x1d\x7e\xaa\x39\xc6\x37\x37\xd3\xd2\x5f\xdf\x18\xc4\x60\xb0\xc4\x3c\xda\x0c\x7a\x11\x6f\xfe\x45\xf1\x0b\x2b\xa6\x97\x32\xde\x81\x33\x7c\xc4\x17\x9e\x56\x6a\xc7\x25\x23\x51\xc7\x75\x7b\xa1\x72\x66\x4c\x6c\xee\xc4\x3a\x6b\x84\x3a\xb9\x8e\xc5\x38\x8a\x83\xf6\x25\x1b\x2f\xc6\xe4\xfb\xb3\x9b\x03\x32\xfd\x74\x73\x40\x98\x8e\xc6\xaf\xc8\xc7\x3c\xd1\x3c\xed\xf2\x73\xd8\x2d\x02\xbe\x7f\x79\xb5\x6f\xd4\xb0\x05\x24\x51\xfe\x63\xf9\xad\x52\xaa\x97\x3b\x9c\xe3\xfe\xd4\x3c\xff\x1c\xc7\xd8\x75\x82\xdd\x14\xc5\x3f\x41\x00\x73\x5c\x1c\x15\x2e\xd3\x9d\x45\xdf\xc3\x20\x84\x8d\x17\x47\x64\x44\xd8\x03\x8d\xf4\x11\x39\x9c\x4b\x49\x46\x36\x48\xec\x88\x1c\xce\x68\x46\x2e\x2e\x6f\xce\x8e\x30\x00\x8d\x09\x9d\x6d\xc8\xaa\x4b\x3c\xbf\xbc\x38\xff\x4f\x4b\x39\x37\x84\x71\x30\xc0\x50\x72\xbb\x07\x93\xa0\x15\xd9\xfc\x89\xb3\x38\x5b\xc7\x98\xdc\x74\x2d\x7f\x4d\x13\x1e\xd3\xc2\xd8\x07\x89\x17\xd8\xeb\x4c\x87\x9a\x9b\x95\x9f\x3e\x38\x57\xcb\x0f\xb9\xb9\x99\x9a\x1d\xf6\x18\x00\x15\xb8\xf1\x66\xa3\xfb\xf3\xaa\x89\x86\xf8\xd8\x19\x73\x1b\x61\xed\x88\x73\x99\xad\x8e\xdc\xb6\xdf\xe6\xaf\x5f\x7f\x15\x99\x81\xe1\x5f\xec\xc8\x16\x13\xea\x65\xf6\x42\x54\x03\xa8\x60\x38\x43\x30\xb2\xe2\x08\xcb\xa1\x47\x76\xbf\xbf\x68\x06\x1c\xa3\x23\xd4\x64\x87\x7a\x0c\xb8\x01\x4f\xab\x46\xda\xa5\x3f\xe5\xa0\x7d\x0b\x26\xf4\x20\x48\xdd\x43\xf1\x68\xd5\x93\x67\x4e\x4e\x3e\x4e\xfb\x46\x80\x00\x31\x6a\x86\xdd\xa7\x52\x5e\x7f\x3a\x03\xad\xcd\xc1\xc4\x2e\x7b\x30\xa5\x55\x30\x6c\x77\xd1\x16\xfd\x0a\x23\xf4\xb7\x65\x5a\x3e\xaf\xfa\xa7\x8a\x3e\x87\x85\xd7\xdc\xcc\xd3\x26\xda\x82\x3f\xdd\x3c\xb4\x7e\xd7\x62\xa7\xec\x85\x89\x51\x7b\xe1\x97\x3a\x9f\x07\xc9\x44\x0a\x7f\x97\x60\x53\x22\xec\xf6\xb9\x83\xb2\x06\x49\x4b\x66\x83\x31\x2a\x1f\x42\x54\xa1\x93\xaa\xbf\x57\xd6\x7b\x09\xae\x49\xcd\xa2\xa5\xe0\xd1\x76\x51\xb2\xea\x07\xcc\xa2\x68\xfe\xe7\xab\x54\x7a\xb5\xb2\xef\x8c\x50\x9e\xec\x2b\xc2\x53\x8d\x79\x6e\x73\x9e\xb1\x7b\x9a\x24\x1d\xa0\x22\xb5\xb0\x46\xd9\x5c\x61\xe0\x14\x13\x73\x89\xf9\x02\x36\x44\xaf\xfb\x6a\x74\xfa\xf0\xe0\xb1\x2f\x3f\x0c\x33\xcc\x18\x63\xc9\xd8\x03\x38\xae\xba\x5c\x60\x78\x06\x72\x4e\xbe\xc5\x28\x6f\x58\x21\x8c\x75\x16\x2d\x25\xb9\x42\xa6\x6d\x9b\x15\xa6\x5c\x2c\x54\xbb\x0f\xac\xd7\x7a\x7b\x10\x83\x34\x9c\x6e\xd3\xb0\x21\x93\xa9\x4b\xbb\xf9\xe2\xc0\xb0\x8a\x71\x0b\xe5\x71\x7f\x97\xa7\xce\x33\xd6\xb8\x0b\x3d\x76\xa0\x21\x71\xa2\x61\x71\x1f\xed\xd3\x5e\x58\x6f\x51\xca\x0e\xf2\x41\xb2\x55\xd9\xeb\x2b\x94\xc4\x52\x5d\xdc\x17\x11\x0d\x30\x46\x60\x13\xa4\xf6\xce\x00\x7d\x8b\xed\x95\x9f\xbe\x6c\xa9\xda\x71\xb4\x84\xc7\x26\xfc\xa0\xd7\xee\x8e\x6d\x2c\x6a\xa7\x94\xdb\x52\x7a\xed\xd3\x1b\x95\x95\xb0\x07\x9d\xd1\xca\x9e\xd2\x99\xcc\x75\x0f\x46\xf2\x54\x9a\xa3\x90\xda\xdc\xbe\x7e\x98\x71\x81\x0f\x77\x44\xf4\xc0\x23\xed\x91\x75\x03\xc3\x18\x18\xc6\x6f\x9b\x61\x08\xa9\x9d\x58\xd5\xb8\x2d\xed\x51\x37\x3d\xe3\x6d\xfa\x45\xda\x6c\x05\x84\x3a\x91\xaf\x23\x26\xd4\x3e\xd6\xbc\x61\x1d\xf7\xb8\x47\x68\xcf\xe3\x82\x7a\xd2\x7f\xd4\xcd\xbd\xdd\xf3\xf7\xf6\x09\x79\xff\x96\x63\x0b\x2c\xbc\xbe\x24\xe0\xf6\x64\x0c\x58\xcf\xb3\x36\xcb\xbc\x8d\xce\xb5\xe7\x7c\x06\xa9\x46\x57\x90\x29\xe7\xb2\xbe\xd0\x6c\xfe\x72\xc6\x22\x9a\x2b\x1b\x13\xd7\xe1\x4a\x28\x40\x8c\x58\x06\x63\x14\x71\x75\xaf\xd0\x14\xff\xd1\xa6\x7f\x55\xa2\x04\xbb\x58\x2c\x86\x0f\x1e\xf9\x11\x70\x07\x7e\xfc\x1b\xfe\x01\x9a\x4a\xe5\xaf\xf5\xbb\xf2\xef\xeb\x93\x1b\xfc\xb5\x79\x1a\x3b\xe2\x39\xd7\xcc\x05\xd9\x51\xe1\x10\xc4\x39\x65\x21\xd4\x90\xbc\x19\xbd\xfd\xe6\x9b\x16\x93\xff\xf3\xa1\x3d\x06\x62\xf4\xe3\xc6\xd7\x18\xce\xd9\x2f\x2b\x8d\x68\xd9\xa2\x40\xe2\x48\x43\x42\xda\x90\x90\xd6\xed\xf6\x1c\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x6b\x5a\xf1\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\x5a\xd3\x4a\x06\x5a\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\xe1\x67\x48\x48\x1b\x12\xd2\xea\x9f\x21\x21\x6d\x48\x48\x2b\x3e\x43\x42\xda\x90\x90\x36\x24\xa4\x05\x07\x1d\x12\xd2\xbc\xbd\x18\x12\xd2\x86\x84\xb4\x21\x21\xad\xfa\xf9\x25\x13\xd2\x5a\xda\x2b\x10\x32\xb2\x55\x7c\x43\xbf\xf5\x69\xd3\x1f\x94\x13\xec\xdd\x78\x44\xf9\xee\xea\xad\x1a\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\x43\xfd\xee\x30\x78\x43\xfd\xee\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x2a\x3f\x43\xb8\x54\xf9\x19\xc2\xa5\x86\x70\xa9\x7f\xa8\x10\x83\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\xe0\xc3\xbf\x31\x5a\x36\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\x54\xe0\x33\x84\x4b\x0d\xe1\x52\xc5\x67\x08\x97\x1a\xc2\xa5\x86\x70\xa9\xe0\xa0\x43\xb8\x94\xb7\x17\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x55\x3f\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\xbb\xf2\x19\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\xbd\x66\x18\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\x43\x39\xd6\xa1\x1c\xeb\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\x6e\x86\x7f\xa8\xdf\x3d\x30\x8c\x81\x61\x0c\xf5\xbb\x87\xfa\xdd\x95\xcf\x50\xbf\x7b\xa8\xdf\x5d\xfb\x0c\xf5\xbb\x9b\x15\xc8\xa1\x7e\xf7\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\xfe\x67\x48\x48\x1b\x12\xd2\xfe\xa1\x92\x38\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x82\x0f\xff\xc6\x68\xd9\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x81\xcf\x90\x90\x36\x24\xa4\x15\x9f\x21\x21\x6d\x48\x48\x1b\x12\xd2\x82\x83\x0e\x09\x69\xde\x5e\x0c\x09\x69\x43\x42\xda\x90\x90\x56\xfd\xfc\x73\xd7\xef\x86\xa2\xdc\x5d\xd5\xbb\x2f\xcd\x43\x2d\xf4\xbb\x7a\xe8\x12\x9f\x0e\xc2\x89\x61\x77\x58\x37\x19\x0c\x25\x66\x50\xf0\x2c\xc6\x63\xb4\x9d\x14\x96\xdf\x25\x5f\x18\x45\xf4\x76\x0f\xc6\xbb\xdd\x03\x76\x69\x9f\x0d\x0d\x4d\xe7\x46\x81\xd2\x20\xa0\xc1\x00\x89\xbc\x67\x19\x42\x83\x61\x8c\x1e\x70\x8a\xc8\x15\xd7\xda\xd0\x5d\xee\x32\x60\x42\x83\x46\x52\x28\x8e\x65\xcb\xd1\xc6\x77\xbb\xc7\xc5\x9c\x0b\xae\xd9\xed\x1e\x19\x11\x08\x9e\xf3\x96\xe3\xa8\xba\x85\x93\x24\x54\xe9\x31\x29\x56\x16\xdc\x12\x03\x2b\x8f\x99\xd0\x3c\xa2\x89\x05\xb0\x3e\x0e\x17\x84\x26\xe9\x92\x8a\x7c\xc5\x32\xef\x39\xa8\x18\x1e\x1a\xd5\xd2\x72\x6b\x8e\xc2\x08\x91\xa0\x7e\x8a\xb8\x21\xf2\xd5\x6c\xdb\x52\xd8\x22\x36\xd6\x98\xfc\x8d\x6f\xa6\x41\x44\xf1\x8c\x35\xb9\xb2\x3a\x27\x8f\xee\xf0\xff\x64\x1e\xc4\x7f\x03\x72\x4d\xe9\xf6\x36\xd7\xa6\x6b\x78\xdb\xa2\xa5\xe3\x79\xcd\xa6\x83\x12\x0e\x23\x3a\x24\x89\xbc\x47\x52\x80\x16\xa4\xc2\xa6\x82\x82\xdd\xbf\xa3\x79\x01\x6f\xfb\xe7\x84\x6b\x96\x51\xd0\xec\x43\x23\xdf\xde\x92\x11\xa6\x2b\x19\x44\x59\xa5\x34\xe3\x4a\x8a\x03\x02\x39\x8b\xce\x2c\xe0\x86\x9c\x4b\x49\x66\x34\x03\x5b\x45\x31\xdd\xbf\xec\x38\x5d\x39\x9f\xe1\xec\xec\x2f\x39\x4d\x7e\x8f\x11\xb6\x4e\x52\xe5\x73\x2b\xa2\x72\x05\xcf\x38\xcb\x7b\x31\x65\xf8\x5e\xfe\x0c\x70\xd0\x32\x2e\x6c\x56\xfe\x33\xc2\x7f\x8e\xc7\x63\xf2\x77\x0f\x02\x9d\xe5\xcc\x25\xca\x14\xb1\xa6\x38\xc7\x1f\x49\x38\xb6\xdd\xba\x1c\x3a\xa6\x2a\x61\x35\x0b\xe0\xa2\x07\x70\xa1\xc9\x76\x84\x17\x26\x6b\x03\x30\x7c\x24\x1e\xcc\x4b\xaa\x5e\xc2\x78\x9f\x0d\x73\x79\x55\x4e\x7d\x53\xcc\x4c\x75\x79\x3a\xde\xc9\xfc\x0b\x20\x69\x90\xe6\xdb\x21\x0a\xf3\xa4\x9c\xc3\xb3\x60\x9d\x82\xff\xe6\xaf\x5f\xbf\x7d\x87\xff\x8f\xbf\x14\xef\x5c\x2f\x65\xa6\x47\x11\xcf\xa2\x9c\x6b\x90\xaa\xec\x4b\xa1\x89\xfe\xf6\xb7\xd6\xb7\xc1\x8f\xa1\x5f\xe2\x33\xaf\x8a\x87\x52\x9a\x31\x2b\x91\x2f\x32\x99\xa7\x46\x22\xbf\xbd\xd5\x34\x49\x5e\x06\xfd\x51\xb6\xa4\x3d\x46\xa5\x14\xf4\xc2\x8d\xe6\x70\x98\x26\x89\x67\x62\x82\x0b\x7a\x8e\xf8\x80\x3a\x54\x58\x3d\xa2\xe6\x6a\x23\x9d\x71\x91\x9a\x3e\xc9\x54\x07\x64\x74\x40\x3e\xc3\x3e\x1c\x8e\xc9\x35\x5c\x39\x62\xaf\x5c\xe3\xa0\x2b\x99\x31\x92\x1a\xf1\x5f\x29\xbe\x66\x64\x86\x39\x06\x1b\x67\xde\xb4\x86\x67\xc2\x54\x44\x53\x46\xa2\x25\xcd\x68\xa4\x59\x66\xc1\x3e\xc3\x50\xed\xe0\x65\x78\x09\x84\x7f\x45\x63\x36\xca\x53\x44\x0b\xf5\xaa\x20\x47\x90\xd8\x66\x49\xc7\x3d\x9b\x19\xc5\x81\x59\xe2\xe1\x9f\x78\xcc\xd2\x44\x6e\x56\x4c\x04\xc9\xa9\x7d\x3f\xcd\x64\xec\x90\x14\xc6\x35\x77\x0a\x68\x52\x26\x85\x66\x22\xf6\x50\x9d\x46\x77\xf6\x8b\xbf\x9b\xc7\xcb\xf1\xc9\xbf\xfc\x7b\xd3\x0d\x88\xd9\xda\x0d\xff\x2f\xa4\x76\x0b\x42\xa4\xac\x4d\xa2\xaa\x1a\x03\x5b\xdc\xd5\x2d\x96\xc0\x76\xbb\xc5\x1c\xe3\x57\x4b\xb6\x10\x5a\x96\xe3\x58\x88\xa3\xd6\xa0\x80\xed\x39\xa4\x70\x40\x3a\x5b\x41\xc8\xed\xdc\xb6\x46\x70\x3a\xf4\xe0\xa9\xe0\x9b\xe0\x22\xe6\x11\xa8\x9e\xf7\x4b\x48\x98\xf6\x05\x59\x3f\x2a\xcb\x6a\x39\x41\x3a\x65\xee\x9d\xb4\x0d\x3c\x0e\xec\x5f\x33\xa9\x97\x63\x82\x81\x92\xc0\x4d\x1e\x52\x23\xa4\xe8\x64\xe3\xe9\x52\x2f\xa1\xf9\x48\x30\x02\xd6\xa3\xa3\x82\x44\x19\xb3\xf9\x19\xca\xde\x6e\x99\x11\xc1\x93\x57\x07\x2e\xc7\x22\x66\x73\x9a\x27\x5a\x11\x5c\x96\xd9\xba\x2c\x6e\x10\xa9\xb5\x24\xf7\x86\x56\x4e\xac\xe2\x66\x80\x38\xb3\xff\x34\xf7\xd1\x52\xce\xa2\x03\x07\xc6\xfb\x81\x69\xdd\x4e\x13\x1a\x95\x2b\xbc\x5d\x23\xf2\x27\x2b\x17\x19\x50\xdc\x1c\x7f\x3e\xb0\xcc\xc1\x48\x99\xe0\x36\x70\x53\x62\x9f\x94\x97\x5c\x44\x49\xde\x08\xf1\x92\x91\x88\x1a\xc9\x13\x06\x28\x87\x21\xc8\x9e\x85\x2c\x16\x03\xc3\xbd\x0a\x40\x72\xd6\xd8\x7f\xa5\x0e\x5b\x05\x30\x43\x92\xea\xc3\x37\xaf\x33\x88\x1e\x75\x18\xb6\x26\x04\x0b\x56\xe0\x34\xac\x46\x1d\xa4\x0b\x02\x51\xab\x2a\xeb\x67\x8c\x9a\x7b\x14\xdd\x11\xba\xa0\x5c\x1c\x58\x6c\x40\xb7\x47\x72\x4f\x37\xca\x46\xc1\x07\xb1\xd8\x45\x2b\x60\x98\xc2\x01\x11\x6c\xcd\xb2\x0a\xbe\x05\xb5\xfb\x9e\xed\x7d\xca\x5d\x20\x0c\x98\x46\xe1\xd0\x4b\xa5\x52\x7c\x96\xb8\x89\xcb\x38\x2c\xf3\xc2\x75\xca\xa2\xb0\xbe\x87\x6b\x6b\x8e\x4c\x6b\xd7\x2c\x1b\x95\xb6\xb0\xae\xb7\xfd\x2d\xf0\x8c\xd8\xf7\xb7\x2b\x2d\x33\xba\x60\xee\x2b\xa5\xa9\xce\x71\x63\xd0\xe5\xc4\xe2\x0b\xcf\x19\x70\xc7\x45\x6c\xe8\x90\xdb\xd2\x34\xc9\x33\x9a\x94\xdf\x44\x52\xa0\x07\x58\x1d\x91\x3f\xfd\xd9\x7c\x63\xc6\x67\xb1\xcd\xf0\xb4\xdf\xde\x8a\xd1\x68\x74\x2b\x68\xca\x5d\xa2\x28\xa1\x29\x67\x0f\x9a\x09\x78\x6a\x7c\xf7\xad\x1a\x73\x79\xb8\x7e\x73\x2b\x70\xc6\x93\x5c\x69\xb9\xba\x62\xe8\xca\x3a\x65\xa0\x6e\x01\x9d\xae\xa4\x63\x82\x01\x86\x08\x0c\x79\x55\x4c\xab\x71\x94\xc5\xe3\x34\x93\x66\x07\x22\x20\x3a\x63\x99\x2d\x6e\x85\xa1\x66\xf0\x06\x88\x28\x47\xa4\xe1\xb1\xaa\x27\x04\x41\x29\xe3\x72\xf1\xdb\x84\x2b\xfd\x87\xda\x2f\xe7\x5c\xe9\xea\x06\x79\x30\xd9\x7d\xe7\x62\x91\x27\x34\xf3\x7f\x82\xfd\x8a\xa4\x39\xb4\xc2\x7a\x02\x9a\xdc\xda\x6d\x9f\xf9\x63\x64\x97\x69\x76\x07\x46\x8a\x96\x6c\x55\xa6\xa3\xca\x94\x89\xe3\xe9\xe4\xc7\xaf\xae\xab\xdf\x6f\x07\xbe\xba\xf0\x62\x1b\xc2\x55\x4e\x39\x62\x7f\xc9\xf9\x9a\x26\x86\xa0\x5a\xbc\xae\xc7\x24\x7b\xc8\xdb\x60\x1e\xf3\x4e\xb7\x8a\xab\xd5\xaa\x15\x06\x54\x1b\x1d\x80\xd1\xf4\x08\x8c\x5d\x31\x8b\xed\xf2\x10\x0e\xa0\x16\x96\xd4\xd3\x90\xdd\x43\xce\x81\xbb\x03\xc6\x8f\x41\x04\x60\x99\x72\x4a\x62\x24\xc5\x9a\x65\x9a\x64\x2c\x92\x0b\xc1\xff\x5a\x0c\xae\x5c\xbc\x02\x74\xef\xda\x62\x14\x5c\x68\x96\x19\x61\x01\xae\x3a\x5a\x65\x57\x74\x43\x32\x66\xa6\x21\xb9\xf0\x06\x74\xd1\x52\x1f\x8d\x90\xc8\xc5\x5c\x1e\x41\x3d\x21\x75\x74\x78\xb8\xe0\xda\x21\x76\x24\x57\xab\x5c\x70\xbd\x39\x04\x0f\x2a\x9f\xe5\x5a\x66\xea\x30\x66\x6b\x96\x1c\x2a\xbe\x18\xd1\x2c\x5a\x72\xcd\x22\x9d\x67\xec\x90\xa6\x7c\x04\xb0\x0b\xb8\x59\xe3\x55\xfc\x22\xb3\x37\x41\xed\x87\xe8\xc0\x36\xf9\x00\xd4\x6d\x3b\x06\x83\xc1\x36\x09\x17\xa5\x60\x64\xe3\xc5\x6e\xbb\x50\x91\xab\xb3\xeb\x1b\xe2\x66\x0f\x26\x2c\xe3\xe6\x97\x6f\xaa\xf2\x1c\xcc\xa6\x71\x31\x77\xf2\x0a\x18\xad\x7d\xf5\x1e\x59\x66\xc2\x03\xa2\xab\xca\x67\x2b\xae\x95\x57\x88\x46\x8e\xc9\x49\x61\xcd\xce\xd3\x98\x6a\x16\x8f\xc9\x44\x90\x13\xba\x62\xc9\x09\x55\xec\xd9\x4f\x01\x84\xb6\x91\xd9\xdb\xbe\xe7\xd0\x90\x3c\xde\x64\xaa\x2b\xc8\x54\xc3\xb1\x95\xf7\xd1\x70\x9c\x6a\xf6\x92\x4b\x76\x2b\xd3\xcb\xe9\x16\xed\x2a\x3f\xee\x48\x6b\x4c\xa9\xc5\xf4\xdd\x10\x67\xbf\xd5\xe2\xcf\x85\x02\x4e\xa6\x05\xa5\x43\xad\x77\xc6\x12\x69\xb0\x4a\x5a\xdb\x0b\x0b\x39\x4c\x9b\xf9\xf4\xff\x08\x4e\x09\x7c\x12\xfe\xef\x85\x4d\x51\x3b\x22\xc8\xa0\x0e\x35\x5b\xa5\x40\xaf\x0e\xf1\x0b\x88\xae\x2b\x23\x32\x32\x35\xca\x66\x34\x1a\x6f\xe8\x2a\xb9\x15\x3f\xff\xcc\xe7\x84\xfd\x85\x8c\xaf\xde\x1f\x9f\x9c\x48\x31\xe7\x0b\x72\xbb\x67\x1e\xb8\xdd\xfb\xfb\xdf\xcd\xe8\x13\x10\x65\x19\xa1\x24\x4a\x72\xa5\x59\x96\xc9\x84\x15\x0d\xe7\xea\x63\x83\x6d\x4b\x0a\x26\xf4\x81\x79\x19\x5a\xd6\x01\x05\xd1\x8e\x94\x36\x00\xe5\xf4\xa4\x32\x5c\xc1\x32\x78\x9c\xf4\x4a\x26\xac\x2a\x18\xc0\x22\x68\xae\x97\x32\xe3\x7f\xc5\x50\x2d\x4f\x3a\x08\x70\xff\x86\x89\x6f\x05\x08\xa6\xf0\xe0\x0b\x72\x21\x63\xb4\x1a\x90\x7b\x1b\x91\xa5\x25\x59\x49\xc1\x21\xf2\x58\x66\x24\x66\x09\xc3\x7b\x8e\x2c\x97\xa6\xfc\x7b\x23\x2a\x98\x73\x31\x47\xf8\x67\x3c\xd5\x82\x0e\x17\x28\x3a\x22\xc2\x8c\x8d\x7f\xae\x59\x36\xf3\x7f\xba\xf7\xbd\x13\x23\xb8\x1a\xe5\x5f\x0b\xbc\x95\x2f\xc8\xd4\x55\x28\xf3\x60\x2b\x0b\x47\xb1\x07\xae\x34\xf4\x73\xa4\x8a\xa4\x34\xb3\x97\xeb\xf8\x23\x29\x57\xbb\x3b\xd0\xa9\x8c\x1b\x60\x5e\x30\xdd\x04\x71\xb1\x9c\x17\x08\x40\x31\xb0\xcd\x5f\x13\x3c\x85\x86\x98\xb1\x51\x81\x04\x6e\x8c\xcd\x9b\x4b\x98\xb6\x9e\xea\x3a\x98\x61\x51\xac\x0d\x76\x9e\xa6\x52\x26\xca\xff\xc2\xb0\x9e\x6c\x8d\xb5\x25\xc2\xcb\x72\x2b\xf9\xf2\xe9\x67\x89\x8c\xee\xe8\x1c\x45\x52\x56\x01\x83\xae\xe0\xc7\xda\x77\x4b\x2a\xe2\xa4\x09\x45\x5a\xb6\x1b\x14\x6a\x56\xfe\x8d\x4c\xaf\xfc\x1b\x77\x35\x78\x3c\x5b\xd7\x70\x45\x05\x5d\x30\x45\x96\x52\x69\x2f\x74\xeb\x49\x36\xa4\x32\xe6\x33\xae\xf2\x05\xb9\x60\x2c\x06\xbb\x81\x51\x3c\xb5\xb4\xcf\x3a\x0a\xe6\x95\x02\x79\xaa\xa5\x05\x46\xee\xb1\xc0\xe6\x25\xbd\x00\x27\xef\x49\x79\x30\x48\x9b\xf3\xac\xb0\x9c\xa0\xf1\x80\x6b\x33\xa2\x22\x46\x04\x8a\xe0\x91\xa7\x59\x8f\xc1\x0b\x0f\x2d\x22\x7f\xf6\xe0\xca\x5e\xa0\xba\x6e\xe0\x90\xf7\xc2\x83\x65\x6b\xd9\x2f\xec\xb2\x09\x75\x06\x18\xc2\xe7\x44\x48\xc1\x90\x84\xa9\xa6\xfd\x79\xe1\x8e\x11\x39\x6c\x13\x26\xbc\x40\xfc\x06\x9a\x18\x2d\x2b\x49\x04\x05\xea\x03\xe7\xdc\x62\x30\xef\xb9\x40\x9b\xcd\x33\xf1\x19\x99\xb0\x2b\x86\x01\xf9\xee\x7c\x5a\xc6\x37\x8f\x05\x78\x60\xe7\x34\x2a\x07\x69\xc5\x1c\xcd\xc8\x0e\x50\x35\x79\xf6\x18\xc3\x77\xee\x23\x8d\x50\x1b\xa5\xd9\xca\xee\x5c\x21\x7a\x5c\x51\x11\x2d\x59\x36\x72\x32\xe5\x11\x39\x81\x1d\xf7\x39\xbd\xa1\xee\xfe\x12\x30\x90\xc1\xb0\x2e\x34\xf6\x41\x53\x61\x1a\xdd\xdd\xd3\x2c\x46\xf9\x81\x6a\x3e\xe3\x09\xd7\x9b\x3e\xd2\x8d\x19\xde\x97\x68\xba\x24\x16\x1f\xaa\x53\xca\x56\x52\x5c\xb3\x2e\x61\x05\x1e\xfe\x85\x04\x94\xaa\x3c\x62\x04\xe5\x93\x8b\x89\x91\x12\x17\x5c\x10\x01\x74\x4d\x4b\x73\x9f\x80\x35\x1f\x20\xf3\x44\xdd\xd3\x4f\x98\x7d\x3c\x9f\xaf\x89\x2a\xce\xae\x80\x03\xb7\x12\xb5\x17\xc4\x65\x22\x5f\x27\xdc\x71\x7b\xb0\x8e\xcf\xcb\x28\x1e\xdb\xb8\xda\x8a\xfc\xce\xdc\xe7\xea\x30\xbd\x70\x75\x75\x56\x2e\x94\xbe\xbe\x8a\x98\xab\x48\xae\x59\xb6\x71\xd7\xa4\x6d\x55\x05\xb7\x01\x78\x5a\x64\x2f\xd2\x2d\x00\xf4\x9b\xa8\xfc\xca\xc5\xbf\x85\xa9\xe5\x27\xeb\x34\x70\xcb\x29\xfc\x04\x93\x29\xfa\xc8\x68\xbc\x36\x0a\x96\x2a\x77\x82\x74\x89\x8a\x81\x51\x6f\x36\xe9\x92\xaa\x71\x58\x98\x24\x27\x93\xd3\x2b\x42\x73\x2d\x47\x31\x33\xea\x2c\x38\x0d\x05\x5c\x78\x1a\xaf\x2c\xb6\x95\x5c\x14\x89\x3a\x59\xd1\xf4\x11\x08\x86\x2f\x9b\x77\x5b\x71\x68\x77\x89\xfa\xd0\x67\x07\xf5\x6d\x36\x82\x80\xc5\xbf\x28\x61\x14\x2c\x18\x46\xc6\xb7\x0a\xef\x27\x41\xd7\x94\x27\x74\x66\x08\x44\x42\x17\xde\x46\xa5\xfe\x3e\xbf\x70\x9e\x09\xd0\xc5\x14\xa6\x97\x45\x55\x96\xec\xd5\x17\xe3\x28\xd3\xfa\x85\xd5\xc6\x61\x2e\xff\x53\x9d\x55\x99\x7d\xf6\xe2\x14\xfd\x2c\x7d\xde\x70\xaf\xed\x55\xe2\x62\xd1\xe7\x4a\xd8\xa7\xd3\x4a\x94\x49\x4f\x7d\xc4\x22\xd8\x6c\xe3\xb6\xc3\x00\xee\x0c\xf6\xe5\xfa\xbf\x98\xfa\xd4\xc8\x8d\x77\x9b\x9c\x17\xad\x5d\x76\x27\x75\x31\xb7\x46\x46\x53\x97\xff\x21\x63\x87\x3e\x8f\x83\xb9\x05\xf7\x3c\x0c\x2a\xb0\xc7\x2a\x92\x8a\xac\x69\xc6\x65\xae\xc8\xc9\xd5\x29\xde\x76\xc4\xa5\x27\x12\x46\xb1\x68\xc5\x9c\x25\xfc\x01\xc7\xf5\xf6\xd1\xfb\xb6\x2a\xce\x81\xc6\xb2\x48\x53\xc6\x32\x55\x1f\x6a\xb6\x48\xb7\x06\x2a\xbe\xdb\x1e\xa6\x97\xde\xd5\xa4\x08\xe1\x8c\x41\x2c\xdd\xfa\x59\x31\x9f\xe0\x36\xbe\x13\x7c\xba\x51\x62\x6f\xd0\x54\x5a\x35\x3a\x3c\x18\x20\x47\x80\x10\x8f\x50\xe2\xee\xb7\xb1\x25\x57\xba\x90\x95\x45\x5c\x48\xbf\x86\xf6\x00\xe2\x48\x61\x44\xe1\x4c\xe7\xe9\x73\x29\xcc\xad\xd8\xd2\x5b\xe7\x69\x53\x73\xfc\xb5\xd6\x17\x18\x58\x15\x69\x5c\x16\x69\xe3\x3d\x3d\x8f\x27\x00\x58\x3f\x82\x6f\x23\xe8\xcc\x0c\x4f\x6a\x17\xea\x87\x2f\x37\xe0\xe8\x74\x91\x27\x52\xa0\xe0\x05\xc1\xce\x2e\x48\x14\x88\x4c\x9e\x2e\x32\x1a\xdb\xd4\xbd\xf5\xdb\xf1\x3b\x14\x1b\x23\x2c\xf2\xf3\x82\xcc\x18\xc9\xd8\x4a\xae\x59\x6c\x03\x24\xdd\x0b\x32\x33\x2b\x9c\x67\x4c\x2d\x09\x17\x4a\xd3\x24\x79\x52\xed\xb9\x85\x96\x54\x49\x52\x5f\xcc\x2a\x14\x94\x0f\x09\x15\x82\x25\x55\x29\xfd\x05\x99\xe6\x90\x9b\x06\x1b\xe1\x39\x00\x96\xf9\x6c\x1c\xc9\xd5\x61\x24\x33\x26\xd5\xe1\x1c\x5f\x3e\x9c\x25\x72\x76\xb8\xa2\x66\x80\xc3\x53\x19\xe5\x2b\xe7\x65\x3a\x04\xd5\xc8\x3e\x66\x95\x10\xa3\x83\x3c\xb5\x66\x60\x67\xf0\x55\x83\xa7\x35\xe2\x3d\x15\xbe\x36\xa0\xe8\x93\x0a\x75\x05\x63\xb5\x47\x6c\xb4\x76\x4c\x5d\xdc\x3e\xeb\x52\x8f\x13\x34\xa9\xa9\xc1\x21\x0d\xee\xa9\x2c\x00\x82\x26\xa3\xf2\xd0\x9e\x54\xef\x2f\x86\xdd\x49\xcf\x17\x58\x36\xb5\x55\xab\xff\x05\xd4\xf9\xfe\xdb\xda\x7c\x34\x8d\x1b\x5e\xe8\xcf\xcf\x60\x67\x79\xda\xed\xfe\xf9\x67\x26\xe2\xbf\xff\xbd\xb7\x07\x07\xf8\x8a\x33\x6f\x40\xbd\x8d\x15\x15\x7c\xce\x94\x76\xe4\x58\x79\x68\x6e\xbd\x7d\x2c\x3b\x20\x54\x91\x7b\x96\xc0\x6b\x36\xbf\xb7\x94\x82\x31\x38\xc7\xe9\xe1\x56\xb7\x93\xc2\x3c\x0b\x09\x43\x48\xf0\xe0\x21\xf3\x04\xcb\x50\xa7\xe1\xa2\x92\x81\xe2\xa4\x80\xe2\x36\x15\x36\x95\x7a\x1c\x47\xaa\x5a\xef\x4b\xdb\x7e\x11\x1b\xf2\xe8\x5c\x68\xdf\xaa\x11\x4d\xd3\xe2\xc5\xc2\x1b\x5a\x8b\x41\x87\x18\xd1\x73\xff\xcd\xed\x77\x89\xe5\x19\xd7\x3a\xa3\x9a\x2d\x36\x47\xd6\x27\x36\xfe\x54\xf9\xda\x1c\xd6\xcf\x3f\x13\x2d\xff\x93\xae\x92\xfa\x8f\xe4\x6f\x84\x8b\x98\x09\x4d\xbe\xc6\xe7\x58\xa2\x98\xf9\x17\x29\x3c\x88\x57\x32\x49\xb8\x58\x7c\xf2\x2c\x95\x99\xff\x55\x01\xdf\x8a\x3e\x78\x4a\xe9\x11\x79\xe3\x61\x0b\x21\x0e\x33\xdc\x02\xeb\x5e\xe3\xa4\xba\xd8\xd0\x72\x6b\xce\x63\x73\xa6\x81\xc8\xc9\xb2\x22\x87\xb9\x90\x52\x1d\x91\x84\x8b\xfc\xc1\x3d\x60\xe4\x63\xab\x9a\x3a\xb7\x27\xee\xda\x85\x37\x9c\xdb\x81\x86\x49\x7e\xfe\xd9\x16\x02\xfd\xd7\xbb\x03\xf2\xaf\x6b\x72\xf4\xef\xd5\xd7\x49\xf9\x3e\x3c\xfc\xaf\x77\xe4\xef\x7f\x3f\x22\xb7\x7b\xe6\xdf\x6b\xf3\xeb\x9e\x37\x14\x13\x31\xb1\x9b\xef\x36\x0b\x76\x5f\x26\x2c\xdb\x2a\x6d\xfe\x82\x7c\xa4\x77\x8c\xa8\x3c\x73\x77\x06\x8c\xe8\x2a\x5a\xb2\x38\x4f\x30\x6e\x93\x26\x09\xb2\x22\xcf\xf9\x3c\xb2\xd9\xf8\x47\xe4\x42\x5e\xdb\x87\xcb\x5f\x21\xc4\x26\xa3\x66\x8d\xe4\xac\x62\xc9\xc6\x19\xb3\x3b\x1b\x20\x16\x63\x9a\x69\x94\x71\x4c\xe3\xa0\x71\x3c\xb2\xae\xf8\x8c\x59\x20\x8c\x36\xef\x4f\x7c\xc7\x36\x47\xe4\xc4\xbe\x71\x1c\xc7\x52\xa8\xcb\x5a\x02\x60\xf3\xec\x3e\xdc\x67\x0f\x2c\xca\x75\x2f\xb0\xbb\x9c\xc3\xf8\x54\x35\x0a\xf7\xa2\x7a\xa3\x71\x98\xca\x91\xbc\x20\x1f\xb9\xe0\x2b\xfe\x57\x46\x62\x79\x2f\x34\x5f\x31\x12\xe7\x60\x99\xa1\xee\x52\xf8\x92\xa7\xf3\xb8\xfe\x9e\x68\x96\x24\x3e\xe9\xd1\x92\xc4\x12\xda\xef\x80\xc9\xb0\x9c\xc0\xbd\x72\xbb\x57\xc6\x77\x54\x31\x3a\x96\x91\x3a\x8c\xa4\x88\x58\xaa\xd5\xa1\x2b\x52\xa8\x0e\x41\xa9\x4f\x65\x7c\xf8\xc2\xe5\x71\x72\x29\x46\x72\x3e\x32\x3f\x14\x07\xe2\xfd\xf6\x7d\x46\x23\x36\x65\x19\x97\xf1\x35\x8b\xa4\x88\xd5\x11\x79\x5d\x42\x62\x39\x6a\x59\x61\x18\xcd\x3c\xee\x81\x34\xe3\x32\xe3\x7a\x73\x92\x50\xa5\x70\xeb\x7e\xfe\x99\x8c\x4f\x28\xd4\xd8\xaf\xfd\x46\xfe\x56\x38\x4c\x6e\xf7\x90\x34\xa2\xf5\xdb\x21\xd2\xed\x9e\x77\x67\x8c\x8e\x7a\xe2\x38\x41\x15\xf9\x81\x83\x14\x5c\xa2\xca\x42\x0c\x7f\x98\x71\x41\xb3\x4a\x06\x12\x1a\xc7\xcd\x6f\x35\x7e\x31\xe7\x09\xc4\xf4\x02\xc7\x28\xd4\x1f\x87\x75\x48\xde\xed\xf8\xa3\x48\x70\x1f\xeb\xf8\x0a\x82\x26\x7e\xfe\x79\x7c\x72\x31\x99\x98\x3f\xfc\x0b\x0f\x59\x32\x2b\x6a\x38\xca\x9f\x6e\xf7\x0e\x65\xaa\x0f\x23\xc1\x0f\x67\x5c\x1c\xda\xf1\x0a\x21\x12\x3f\x4c\xac\x3f\x64\x72\x55\x09\x09\x71\x56\xc7\x8f\x34\x75\x02\x81\xff\x79\x41\x8e\x21\xc5\xe7\x0f\x9f\xde\x9f\x5d\x5d\x9c\xdd\x9c\x5d\x7f\xbe\x3e\xbb\xfa\x71\x72\x72\xf6\xf9\x87\xcb\xeb\x1b\x58\x73\xe0\xb7\xe9\xe5\xd5\x8d\xcd\xf0\x92\x6b\x96\x65\x3c\x8e\x19\xde\x5e\xf6\x7e\xfa\x81\xac\xaa\xbb\x80\x1f\xdc\x09\xaf\xce\x91\xb3\x0e\x8f\x9c\x99\xa1\xfe\x86\x8b\x44\xdf\xae\x81\xc4\xc4\xba\xb6\x94\x17\x98\x2f\x6a\x43\xf2\xcc\x31\xf9\xc7\x63\x64\x33\xd0\x93\x6a\x50\xb9\xf3\x39\xb9\x98\x7c\x3e\xb9\xbc\xf8\xf0\xf9\xe2\xf8\xe3\x59\x1d\x0c\x08\xf7\x32\x54\xf7\xcd\xeb\x11\xdc\xea\xb1\x19\x1a\xe4\xfc\xbd\x3a\x10\xce\xca\x56\xc3\x11\x88\x37\x87\x23\x6b\xc2\x94\x3a\x34\x17\x67\x37\x3f\x5d\x5e\xfd\x01\xa0\x9a\x7c\x1f\x04\x69\xeb\xac\x1d\xd2\xd8\xf3\xfe\x03\xdb\x84\x8e\xbc\x3c\x0b\x2b\x33\x56\xfc\x94\xfe\x07\x08\x6e\x24\xf8\x67\xbb\x9a\xcf\xa1\x47\x5f\x90\x6b\x86\xd1\x69\x86\x23\x82\x24\x5c\x04\xfe\x43\x78\xcc\xb7\x0a\xa5\x26\xf3\x53\xc3\x82\x3d\x0c\xbb\xb8\x3c\x3d\x6b\x3e\x85\x86\x25\x43\xcc\x70\xd3\x5a\xe1\xc7\x29\xd5\xcb\x23\x20\x41\x63\x03\x0c\xa4\xf7\xd5\x96\x61\x8e\xed\xe3\xcd\x27\x62\xa9\xfc\x9a\x66\xdc\xc8\x1f\xcd\x47\xf4\xf1\xe6\xd3\xaf\x78\x2e\x6b\xa6\x97\x9f\x57\x3a\xaf\x2f\x63\x9a\xb1\x35\x13\xb6\x49\x54\x49\xe1\x40\xcf\x57\x09\x63\x90\x74\x34\x97\xe6\xa9\x7a\x33\x39\xb7\xb8\xeb\xf3\xb3\xb3\xad\x8e\x8c\xc5\x2d\x98\xd3\x44\xb1\x2a\xe6\xaf\x65\x92\xaf\xd8\xc7\x50\x3d\x9a\x11\x59\x99\xaf\x71\xff\x0f\x0d\x8a\xf8\x84\x2c\x4c\x23\x22\xc1\x47\x33\x2e\x46\x31\xcf\x3a\x07\x63\x3a\x82\xc1\x04\xd3\xe3\xad\xcc\xce\x72\x38\xc1\x74\x7d\x38\xc5\xa2\x1c\x98\x8b\x14\x9a\x3d\xd4\xbb\x96\xa5\x19\x5f\xf3\x84\x2d\xaa\x71\x6e\xb8\xc5\xc7\x71\x6c\x84\x97\x0f\x09\x7b\x20\x3f\xc2\xd2\xc9\x69\xc6\xd7\x10\xbb\x49\x9d\xbd\xd2\x3c\x91\xb2\xcc\x70\x4d\xf2\x49\xf0\x07\x72\x2a\x57\x94\x0b\x72\x2d\xa3\x3b\x2c\x7c\x07\x19\x58\xe4\x94\xdf\x19\x2d\xa3\xc2\x69\xc0\xd1\x04\x01\x98\x11\xd5\x36\x3d\xf7\x03\x4b\xf8\x03\x50\x5b\x3f\x53\xf5\x7a\x23\x22\x72\x3c\x9d\x04\x78\xce\x3c\x61\x0f\x6b\x99\x8c\x62\x00\x2d\xcc\x76\xcc\x12\x7e\x94\xc9\x64\xb5\xa8\x32\x9e\xc6\x03\x0d\x0f\x3e\x32\x47\x51\xdd\xbf\xad\x83\xda\x06\xe3\xf1\x07\x80\x1d\x51\x04\xd7\x1e\x82\xaf\xb0\xa8\x11\x96\x56\x8b\x98\x52\x34\xdb\x00\xf1\x47\x31\x41\x81\x2b\xaf\x2c\xf9\x6d\xd8\x14\x34\x1f\x4a\x13\x2a\x2a\x83\x43\x8e\xf2\x2c\x9d\x13\xaa\xc9\xa1\xda\xa8\xc3\xb9\x3a\x84\x3f\x45\x4c\x22\x88\x89\x7f\x0b\x3f\x65\xb9\xb0\xca\xe9\x21\x7e\x3d\x76\xa5\x9f\xac\x92\xc8\x35\xa7\x09\x57\x65\xa2\x0f\x8a\x9d\x71\x65\x32\x41\x66\x46\x87\x65\xf3\xb9\xcc\x34\x99\x53\xb5\xe4\x52\x1c\x20\x10\x42\x92\x39\xe5\x89\x11\xd1\x81\xb5\x66\x99\xcc\xd4\x81\xc1\x0e\x21\x35\x89\xb9\xca\xf2\x14\x7c\xe0\x5e\x3e\x91\x70\xad\x5d\xea\x4c\xd8\x9d\xdc\xed\x1e\xec\xd4\x68\x96\xce\xe7\xaa\x7a\x8d\x4b\xbc\x30\x4a\x48\x87\x3c\xe2\xe9\xe5\x90\x0d\xb7\x37\x32\x2b\xb6\xff\x34\x6b\x1a\xe1\x9a\x6a\x32\x4a\x6f\x52\x81\x3b\x1f\xbe\xd1\x6a\xa3\x46\xdb\xbf\xbd\x20\xef\x79\xcc\x33\x74\xe2\xd2\x04\xf3\x67\xac\xed\x17\xba\xd5\x80\xb2\x53\x64\x49\x0b\x76\x8f\x13\x92\x7b\x46\x56\x46\x19\xaa\x1d\x78\x9a\xc9\x94\xda\x32\x75\xb2\xe0\x70\xdb\xb3\x2a\x89\x83\x72\x4d\x64\xae\x13\xbe\xb6\x71\xfa\x55\x04\xdd\x92\x87\x70\xb1\x76\x0e\x30\x10\x54\xc0\x6f\xdb\x9b\x35\xcd\x3c\xf4\x0b\xef\xd1\x9a\x66\xa3\x2c\x17\xa3\xf0\x33\x4f\xb2\x57\x5b\x37\xe0\x1f\x6a\xcb\x5e\x10\xc0\x32\x72\x98\x66\x32\x3a\xb4\x86\x6e\xa9\xb4\x2d\xaa\x90\xab\x9c\x26\xc9\xc6\x26\x3d\xc2\xc4\x69\x26\x17\x19\x5d\xc1\xda\x0c\x5e\x9b\x17\xc7\x64\xa2\xf7\x7d\xe2\x01\x30\x08\x85\x1a\xc2\xe6\xa0\x3e\xa7\xbb\xe4\xe6\x51\xef\x8a\x1c\x60\x10\xad\x81\x27\x93\x52\x17\x84\x64\xae\x1a\x76\xd2\xf0\x07\xad\x8d\xa0\x78\x72\x73\xfe\xde\x81\x66\x74\x96\xcc\xac\x37\xa9\xb7\xcf\xa8\x22\x88\x83\x3e\x8c\x1a\x4d\xbf\x66\x8c\xc6\x46\xa3\xde\x96\xb7\x1f\x47\xaa\xa3\xb0\xee\x75\x95\x0b\x55\xb7\xd3\x15\x62\xb1\xa7\xdb\x82\x84\x5c\x6b\x49\xf9\xc2\x7b\xa5\xd8\x93\x5a\x20\x8d\x21\xd4\x99\xcc\x35\x56\xb3\x31\xa3\xfa\xef\x1b\x14\x08\x90\x45\x9f\x9c\xed\x42\x12\xff\x67\xeb\x5c\x9f\x14\xf3\x4f\xec\x78\x3a\x71\x46\xd6\x19\x8d\xee\x8c\xa4\x69\x78\x2c\x38\x10\x1b\x64\xcd\xd3\xe3\x9b\xe3\xeb\x9b\xcb\xab\xb3\xcf\x37\xff\x39\x6d\x56\xbd\xca\x25\x6c\xeb\x5c\x2e\x2e\x94\xe1\xa9\x13\xba\x58\x64\x2e\xff\xbf\x50\x45\x52\x1b\xeb\xd3\x00\xc6\xa7\x6b\xb3\xc1\xa7\x9f\xcd\x23\x8d\x40\xc0\x8e\x6c\x4d\xff\x13\xe5\xba\x08\xad\xeb\x5a\xee\x4f\xc7\x93\x9b\xcf\x1f\x2e\xaf\x3e\x17\xeb\xde\x71\x36\xa3\x6c\xed\xac\x5f\x19\xa5\xea\x57\xd1\xa9\x4e\xa5\xd8\xd7\x84\x09\x10\x48\xde\x7f\x3f\x6d\x52\x78\x8f\xcf\x27\x27\x97\x4e\xe7\x9d\x5c\x7c\xff\xf9\xfd\xf1\xc9\x1f\xce\x2e\x4e\x1b\x37\x47\x48\x11\xd8\x1c\xeb\xbd\xc0\x36\xb7\x46\xe7\x86\x32\x31\x73\x94\xf8\xbc\xdc\x7c\xf3\x7b\x03\x24\xe7\x9f\xae\x6f\xce\xae\x3a\x90\xf1\x5b\x75\x80\xe6\xbd\x2d\x08\xd0\x0c\x76\x60\xe4\x30\x85\xb6\xb0\x03\x43\xe0\x91\xe5\x40\x28\x01\xc9\xd8\xc8\xa5\xa1\xd3\x24\x29\x3b\xf1\x29\x4d\x75\x03\x54\x1f\xce\xce\x27\x7f\xfc\x3c\x99\xde\x1c\xbf\x3f\x3f\xbb\xbe\x3a\xfb\x70\x75\x76\xfd\xc3\xe4\xe2\xe6\xec\xea\xc7\xe3\xf3\x46\x30\xdf\xbd\xde\x86\xef\x42\x7a\x9d\x32\x2c\x57\x6b\x38\x94\x49\xb3\x0a\x18\xb6\x7b\x38\xcb\xdc\x64\xba\xfe\x9a\xa4\x52\x26\xa5\xd9\xc5\x8b\xd3\xa8\x45\x3a\x8f\x21\x0a\x6f\x32\x2d\x7a\x12\xd5\x47\x8e\x96\x52\x19\x3a\x87\x09\x71\x46\x4e\xa1\x62\xc1\xc6\xe8\x96\xc3\xd4\x3b\x57\x7c\xdd\xba\xec\x7d\xf7\x3c\x8e\xba\xa4\xeb\xad\x71\x85\xb4\x16\x61\x5b\xbe\xdd\x26\x42\xce\xcd\x99\xd8\x12\x58\xff\x3d\x1a\x59\xd7\xce\x28\xe2\x71\xf6\xdf\xe3\xfa\x18\x35\xfc\x9d\x4c\x7f\xfc\x7a\x7a\x79\x79\x1e\xa0\x22\x2f\x2a\x76\xa4\xef\xde\x8e\xdf\xbc\xfb\x76\xfc\x7a\xfc\xfa\xf0\xcd\xbb\xed\xcd\x3c\xe5\x0a\xc3\xf1\x78\xc2\x48\x22\x17\xb0\x4c\x25\xc9\x7f\x43\x48\xba\x4e\xcc\x77\xea\xbf\xc1\x25\x55\xcf\x26\xaf\x41\x74\x3a\xb9\x36\x28\xf3\xf9\xc3\xe4\xfc\xec\xf3\xf9\xe5\xf7\xdf\x4f\x2e\xc2\xb6\xa4\x76\x82\x83\xba\x67\x99\x8a\x28\x51\x90\x72\x07\x8e\x75\xb6\xcc\xd7\xc7\x27\x27\x67\xd3\x9b\x06\x98\x10\x8b\x4f\xcf\x3e\x1c\x7f\x3a\xbf\x39\xbb\x38\x9d\x5e\x4e\x2e\x6e\x6e\x2e\x0d\xcf\x3b\x3e\xb9\x99\x5c\x5e\x34\x42\x86\xc3\x36\x6f\xd4\x64\xba\x7e\x67\x50\xac\x64\x45\xad\x20\x4c\xa6\x3f\xbe\xbb\xfe\x34\x35\x0c\x75\x17\x2b\x87\x67\xcc\xf6\xdc\xc3\x90\x70\x8d\xd1\x49\xca\x6c\x15\xcc\x70\x7e\xf9\xbd\xd9\xf2\xe9\xf1\xcd\x0f\xa8\xae\x09\x66\x63\x52\xf1\x60\x61\x3f\xdd\xc9\x6a\x09\x27\xdd\x06\xb1\x37\xde\x8e\x24\xb1\x3f\xc0\xd7\x67\x3f\x9e\x5d\x4d\x6e\xfe\xf3\xfa\x3f\xaf\x11\x66\x7b\xa9\xe0\xe6\x15\x69\x0a\x62\x2e\x5b\x57\xa2\x36\x2a\x91\x8b\x8e\xb5\x78\x53\xed\x40\x63\x4a\x4c\xf4\xe6\xbb\xdd\xbb\xa7\x99\xe0\x62\xd1\x67\xe9\xd7\xc1\xf5\x9e\x5c\x9d\x9d\x5d\x98\xb1\x7e\xc2\x91\xb6\x57\xdc\x77\x39\x30\x52\xe3\x8a\x7e\x0a\x03\x5a\x1d\xee\x87\xb3\xe3\xf3\x9b\x1f\xce\x2e\xcc\xb5\x6d\x66\x7f\xe1\xab\xda\xb6\x60\xc7\x3c\x2c\x63\x05\xfd\x22\xd7\x18\xab\x60\xfe\xe1\x45\x3f\xcf\x89\x98\x23\x4f\xea\xc3\x8d\xba\x38\xb5\x19\xbc\x0a\xea\x63\xed\x3e\xa1\x58\x19\xf7\x3d\x66\x3e\x6f\xc9\x2a\x51\x9a\x1f\x91\xb7\xdf\xbc\xae\x14\x9d\x4e\xf8\x9c\x45\x9b\x28\xa9\x17\x6d\x4c\x33\x76\xad\xe5\x76\xaf\x7e\xa3\xd2\x05\xed\xb9\x68\x0c\xd9\xfe\x65\x44\xc0\x49\xd3\xa0\x52\xb8\x67\x46\x6a\x99\xeb\x58\xde\x8b\x2a\x6c\x6b\x26\x98\x52\xd3\x4c\xce\xea\xf0\x05\xe1\x68\x82\xa2\x1b\x86\x11\x19\xc1\xed\x1d\x99\x39\x6b\x3b\x51\x75\xe6\xbd\x79\x5d\xfd\xd9\x9a\xb6\x4e\x59\x42\x37\x8d\x0f\x59\xcb\xd5\xcd\x32\x63\x6a\x29\x93\xf8\x88\xbc\xab\x3e\xa0\xf9\x8a\xc9\x5c\x37\x0c\x60\x74\x51\xde\xb4\x13\x4b\xad\xd3\xef\x59\x1d\x73\xa0\xe1\x86\xd1\x7e\x8b\x77\xb7\x7e\x97\x99\x3e\x22\xdf\xbd\xfe\xee\xbb\xfa\x2f\x86\x9f\x1d\x91\x44\x46\x34\xd9\xb6\x58\x74\x6c\x47\xfb\x42\x5a\x0c\x5e\x2f\xa0\x17\xdd\x8a\x72\xd0\x68\x0d\xe5\xf1\x02\xb4\x8d\x2e\x15\x65\x0c\x24\x58\x9a\x6c\x33\xb4\x27\xb4\x84\x93\x8a\xee\x8f\x9c\xaf\x65\xb6\x84\xcf\x0e\x57\x32\xce\x03\x85\xba\x70\x9a\x84\xcf\x46\x0d\x0f\x34\x9b\x18\xea\xb3\x64\xb9\x38\x7c\x40\x32\x34\x4e\x64\x74\x17\x9e\xca\x3e\x31\x0a\x3d\xb1\xc3\x92\xbe\xdc\xa0\xb6\xe3\x64\x66\x0f\xbb\x26\x33\xdb\xf8\xa8\xc9\x70\x08\xb4\x86\xa8\x8d\xd8\xb2\xf3\x84\x56\x6e\x28\x04\x5d\x6c\x55\x97\x40\x14\x2d\x0c\x0c\x07\xe4\x9e\x81\xd6\x60\x0d\x11\x20\x03\x14\x96\x2d\x67\x57\x2f\xad\xee\x75\x93\xaa\x92\x60\x40\x84\xa7\xb1\x1c\x55\x7d\x3a\x28\x91\xa7\x09\x5a\xf5\x64\xb6\x6d\xe6\xc2\xc5\xa1\xf5\xba\x65\x5d\xe5\xa4\xe1\x01\xcc\x55\x48\xe4\x22\x74\x15\xb6\xce\x4a\x2e\x0a\xe3\x5c\xd5\x7f\x4f\x5a\x30\x7a\x2b\xc6\x20\xcb\x85\x2a\x02\x34\x73\xe5\xaa\x86\x60\x94\x17\x34\x27\x1c\xad\x16\x18\x38\xc8\x44\xc5\x49\x00\x3c\x3a\x31\xc4\x09\x6a\x8d\x6c\x77\x32\x1c\x79\x86\x9e\x32\xe8\xb2\x84\xd1\x8b\x33\x30\x6a\xab\x8d\x08\xde\xf2\xfa\x94\xe6\x7d\x62\xe3\x0d\x0c\x0b\xb1\xe3\xc5\xd6\xb4\x3f\xe2\xe9\x68\x45\xd5\x5f\xdc\x9f\x35\xf8\xcb\x28\x74\xfc\x3c\x9e\xd9\x6f\xdb\x9b\xdc\x32\xa7\x97\xa7\xcf\xe6\x22\x76\xf1\x64\x63\xb1\x65\xce\xa8\x4f\x7f\x3d\x3d\x3e\x79\x7e\x18\x02\xfd\x5c\x0b\x41\xec\xfc\xf8\xe2\xe2\xec\xfc\xf4\xf3\xe4\xc3\x8e\x90\x3c\x75\x8c\x80\x79\xe8\x33\x9f\xf7\x80\x74\xfa\xf9\xe3\xf1\xf5\x7f\xfc\x8a\xb0\x1a\xdc\xcd\x59\x46\xab\x02\x51\x8b\xc3\xb3\x3f\x53\xea\x62\x49\x2d\x64\x7b\x54\x0d\x6d\x1e\x45\xf3\xda\x0a\x7c\x28\x0c\xa7\xf7\xaf\xfa\xa1\x7b\x14\x57\x51\xb5\xb6\xbb\x74\x35\x8c\x5c\xd9\xa6\x19\x0d\xcc\xda\x88\x14\x30\x5d\xed\xc2\xb6\x88\x00\xa3\x4e\x46\xd9\x3e\x68\x13\x13\x1e\x75\xf2\xc4\xee\x71\x43\xfc\x76\xd4\x71\x60\xed\xa3\xb6\xa3\x02\x86\xbc\x7e\xe0\x09\xbb\xcc\x4e\x2a\x19\x1a\xe5\xbc\xdb\x5e\xcc\xf6\x19\x2d\x4b\x0b\x4d\x74\xea\xd8\x65\xf3\x6c\x5b\x1c\xb3\xd7\x64\x5b\xfc\xb3\x36\x9f\x8f\x69\xab\xd2\xdd\x56\x71\xa1\x59\x59\x21\x57\x9e\x03\x0d\xdd\xcf\xd5\x08\xbd\x46\x17\x59\x00\x6b\x43\x2e\xac\xf6\x05\x55\x9f\x2e\xef\x85\xbd\x43\xc1\x00\x8a\xe0\x5d\x2c\xe8\xd1\x51\xe8\xf6\x87\x69\x50\x99\x96\xec\xc2\xc0\x4e\x2e\x42\x31\x1b\x0d\x91\x2f\xed\x2b\x0b\xc6\xd3\x8c\xda\x45\xfe\xf6\x11\x1b\x54\x89\x72\x15\x36\x21\xda\xa8\x2b\x89\x5c\x84\x0e\xa8\x41\xbe\xea\x71\x53\x1b\xa4\xad\x72\x72\x6b\x52\x6e\x0e\xae\x09\xd0\xa4\xb0\x30\xdc\x00\x4d\xe7\x9d\x22\xdb\x44\x2b\x20\x3f\x6f\x1f\xfa\x76\xc4\x50\x08\xeb\x5a\x23\x6b\x76\x05\xf9\xe7\x9f\x47\x84\xcf\x89\x8b\xf4\x99\x82\x72\x79\xca\xab\xa1\xe5\xe5\x7a\xca\x98\xa0\xe2\x49\x0c\x29\x1f\x11\x96\x28\xd6\xf0\xd6\x61\xae\x80\xc4\xb2\x07\x16\x79\x51\xc6\xf0\xcf\x84\xe9\x91\xcd\xb6\x38\x44\xfe\x74\x08\x8f\x15\x1b\xf6\x7f\xe7\xb1\xb2\x33\xd8\x00\x76\x48\x09\xe9\x8a\xbc\xf6\x33\x2b\xca\x6c\x99\x7a\x3e\xca\x63\x52\x2d\x76\x4d\x4d\xa9\xd7\x0e\x29\xd2\x54\xae\x19\x0b\xa5\xd6\x55\x12\x03\x0f\xb7\x2b\x8f\x04\x73\x46\x6c\x66\x89\x57\xbf\x7a\x97\xba\x2b\x8f\xc9\x2b\x69\xaa\xad\xe2\x52\x27\xd0\xe9\x53\x29\x7c\xe6\xfa\xcb\x40\xdb\x3f\x0a\x75\x3c\x13\x06\xee\x81\x35\xc3\x4b\x20\x6c\x19\xbd\x8c\xa5\x09\x8f\xa8\x82\xec\x8e\x5d\xb3\x56\x1a\x17\xa9\xca\x0c\x96\xf2\x52\x5c\xb1\x32\x45\xb2\x2b\x79\xa4\x73\x1b\x09\x69\xdb\x4a\xd2\x91\x7f\xd2\x32\xec\x17\x65\xa4\xb8\x4b\x7e\x53\xa6\x7a\x90\xa6\x04\x10\x2f\x85\xc7\x7f\xbc\xc8\xdf\x79\xd7\x70\xdf\x9b\xd2\x48\xc2\x46\x67\xef\x69\xe7\xa8\x6e\xac\x7a\x27\x09\x56\x19\x4d\x18\x04\x04\x65\xb9\x68\x4a\x3e\xa9\x26\xad\x94\xb1\x76\x43\xea\x4a\xe5\x45\x9f\x96\xe2\x33\x5f\x92\xc6\xd2\x7a\x17\xb6\x12\x5b\x1e\x9b\xed\x61\x66\xa9\xd5\xfb\xea\x95\xfd\x51\x38\x68\x43\x09\x20\xc1\x00\xa4\x51\xbf\x5b\x4e\xaa\x76\x93\xf2\x81\x70\x10\xd0\x96\x69\xf7\x64\x29\xa1\xb5\x0e\x78\xfe\x7d\x7c\xd7\xd2\xa0\x78\x83\x5d\xcb\x3a\x7e\x3e\x9f\x5c\x5e\xdc\x5c\x5d\x9e\x9f\x9f\x5d\x35\x79\xc8\xb6\x4d\xfa\x3b\x85\xd4\xdc\x05\x1b\x68\x3d\xa5\xfb\xc1\xc8\x04\xe0\x82\x58\xb2\xe8\x6e\x54\x2d\x58\x56\x3e\x36\xaa\x45\xed\xfd\xa3\xbb\x1e\x9e\x69\x17\xb2\xce\x5d\x78\x7e\xb1\x68\x67\xd9\xa1\x2e\x28\x55\xd3\x72\xcb\x30\xf8\xa9\x8c\xc9\x29\x46\x2b\x73\x29\xc8\xfb\x3c\x5e\x30\x0c\x99\x2a\xaf\x55\x19\x10\xff\x87\x6f\x55\x11\xc8\x73\x9c\x6b\xa9\x22\x6a\x7f\x67\x6b\x1e\x69\xb3\x13\xfe\x22\x51\xb2\x3f\x5c\xbf\x99\x31\x4d\x8b\x05\x4f\x65\x5c\xce\x88\x13\xfe\xfa\x12\x53\x20\xb1\xf5\x89\x44\x9f\x9e\x92\x2a\xd3\x51\x3c\x52\x46\x1e\xd2\x4e\x4a\xed\xf9\xa6\xde\xa4\x4b\xda\xf7\x15\x17\x8f\x67\xb3\xa5\xf0\xad\xbd\x83\xff\x1f\x21\x64\x0f\xf5\xe3\xf5\x57\xe3\xb7\x6f\xc7\xdf\x8c\x32\xe4\x16\x6f\xf7\x8e\xc8\x9e\x19\x13\xcc\xd3\xe4\xc6\x0e\x55\x06\xba\xe1\xf7\xf6\xad\xde\x40\xdb\x8a\x42\x95\xac\xf1\x13\xa7\xbd\x13\xae\x8a\xb6\x25\x05\xc4\xd8\xaa\x7e\x0e\x5a\x17\x8b\xed\xb4\x7e\x3c\x51\x59\x31\xc1\x8d\xb3\x7d\xe5\x9a\xb3\xf3\x0b\xab\x40\x13\x6e\x15\xaf\xbd\xc0\xb2\x65\x06\x48\x1b\x6a\x81\x61\x5a\x70\x0e\x9f\x2d\xa3\xfe\xec\x22\xfa\xcb\xd0\x0f\x14\xca\xa1\x2a\xfb\x9c\x46\xa5\xd1\x05\xc3\x6d\xcd\x95\x83\xc8\x1d\xe8\x20\x14\xb9\x46\x42\xf0\x55\x99\x70\xe2\xca\x57\xbd\x28\xda\x09\xce\x12\x2a\xee\x0e\x8a\x96\xab\xde\xf8\x5c\xb9\x00\xad\xd2\xa3\x61\x38\xd3\xbe\xc2\x11\x1c\xbf\x86\xc8\x4c\x18\xd5\xb3\x15\x63\x26\x33\xfa\x24\x26\x6e\x48\x97\xd4\xfc\x82\xfc\x64\x1b\xb8\xc8\x0c\xf2\x1d\xa0\x7d\xa3\xb3\xdd\x96\x3d\x48\x25\x89\x99\xd2\x36\x15\x15\xdb\x52\x61\xf8\x16\x0e\xe2\x64\x36\x1b\x23\x3c\xc6\x7b\xe8\x86\xa9\xc6\x52\xf8\xa1\xa4\xe6\xbd\x8f\x37\x9f\xa0\x72\xaa\xf2\xf4\x68\xf3\x9d\x93\x90\xf9\x9c\x08\x86\x5f\xbd\xb6\x52\x87\xcb\xca\xb2\x4b\xfb\x78\xf3\x09\xd7\x63\x45\xb2\x80\x6c\xed\xbf\xf1\xe6\xeb\x6f\x5e\xd7\x9e\x6e\x4e\x2a\x74\x45\x78\x9a\x72\x0b\xe1\x35\x10\xc3\x50\xdd\x7d\xe1\xda\x71\xb8\xe6\x8e\x36\x37\xb1\xe8\x9d\x97\x6b\xb9\xa2\x20\x44\x25\x1b\x92\x4a\x5b\x9f\x18\x0f\x6d\x2b\x09\xf0\x88\xfc\x6d\x84\xf4\xe9\x67\x47\xa6\x6e\xf7\xc0\x67\xb2\x67\x43\x24\x47\xa9\x8c\x47\xf6\x25\xaf\x1f\xd8\xed\x5e\x24\xdc\x7d\xc1\x67\x5f\x8f\xbf\x1a\xbf\xa9\x3c\x61\xed\x05\xe6\xe7\x3f\x95\x8c\xf1\x67\x9f\x47\xde\xee\x41\x10\x27\x0c\x60\x0d\xbb\xd5\x9e\x63\xb7\x7b\x89\x5c\x7c\x4e\xd8\x9a\x25\xf8\xd4\x4f\xc7\x57\x17\x93\x8b\xef\x83\x8f\xcd\x79\xc2\x3e\xa7\x54\x2f\xf1\xd1\x80\x21\xca\xfc\x6f\x9c\xc8\xc5\xd6\xeb\x45\xc4\xef\xe7\x12\x20\x3f\x5a\xb9\xf6\xb8\x39\x9a\x72\x9b\x3e\x7f\x0e\xa5\x3e\x7e\xfe\xbc\xf5\xda\x4a\xe7\xe6\x8d\xcf\x9f\x6d\xe2\xe1\xe7\xcf\xb5\x07\x78\x4a\x57\xe6\x89\x9f\xeb\xc2\x85\xbf\x51\xe6\xa2\x8f\x20\xc8\x21\xd0\xa0\xed\x76\x0f\xbd\x78\xf8\x68\xae\xd8\x54\xc6\x27\x3c\xce\xaa\xc1\x3b\x7f\xaf\xcd\x8b\xec\xb7\x73\xe6\xbb\x6f\x55\xfb\x38\xfe\x96\x05\xc7\xb2\xe5\x78\x0d\x01\xf5\xb6\x0e\xd3\x63\x3f\xbb\xe0\x38\xb3\x73\x95\x59\xca\x3f\xfc\x09\x1b\x31\x29\x95\x99\x5e\xd1\x74\x6b\xfb\x95\xa0\xb0\x2f\x86\x56\xd4\x7e\x8a\x68\x4a\xa1\xb6\x0b\x77\xa0\xc3\x28\x1f\x69\x9a\x72\xb1\x50\xee\xad\x5d\x21\x99\x51\x11\xdf\xf3\xd8\x60\x64\xf7\x84\xde\xc3\xdb\xb3\xb9\x7f\x5a\xb7\xac\xa5\x29\xae\x2a\x54\x90\xa6\x8c\x31\x75\x06\x1a\x69\xda\x3c\x1e\xe7\xb8\xae\x26\xe7\x08\xa6\x81\xab\x8d\xff\x97\x32\xdc\xef\x6f\x5b\x14\xe1\xc2\xdd\x7f\x47\xeb\x51\xb0\x3b\x99\x9c\x5e\x19\xc2\xe8\xdd\xf9\xf7\xd6\xef\x5d\x3d\x7d\x6c\xeb\x55\xbc\x6e\xa1\xb6\xcf\x8e\xcd\x6f\x7e\x11\x8c\xbf\x17\x4b\xec\x92\x10\xee\xe2\x78\x14\x65\xb1\x93\x82\x9e\xaf\xe1\xce\x56\x5d\xaf\x67\x68\xbb\xf3\xfe\xfb\x69\xa5\x36\x36\xfe\x56\x36\xdf\xa9\xff\xbe\xdd\x82\xa7\xa1\xfa\x58\xd9\x88\xa7\xfe\xc0\x6d\xd9\x8e\xc7\x1e\xe9\xed\xf3\xf4\xe2\xa9\xc3\x5e\x6d\xe4\x51\xe5\x84\xd8\xaa\x6e\x63\xde\x01\x81\xa3\x6a\x85\x19\x7a\xf1\x0c\xbd\x78\xfc\x23\x18\x7a\xf1\xfc\x62\xbd\x78\xea\x97\x78\xbb\x23\x4f\xb5\x53\x9c\xb9\xc0\x55\x86\x54\x33\x8f\x34\xb7\xde\xa1\xea\x02\x7a\x33\x07\xc2\x44\x6a\x17\xfa\x1a\x1f\x74\x2d\xbe\x9c\xa6\x72\x7c\x6d\xbb\x3b\x17\xba\x13\xb5\xf2\xf4\x9f\x4e\xf1\x91\x60\x04\xca\xbb\xaf\xbf\x79\xf3\xf6\xcf\xfb\xdb\x3f\x61\x85\xcc\x23\x73\x3b\xbf\x7a\xbb\xfd\x33\x6e\xa9\xb9\xba\x8b\xed\x86\xd2\xee\xe4\xc3\xed\xf5\x2b\xeb\x39\x29\x1f\xc5\xfb\xe1\x7a\x0b\xe1\x5e\x5a\x0c\x72\xfb\x4c\xb1\x5e\xe0\x76\xec\x1b\x6c\x61\x36\xe3\x3a\xa3\xd9\xc6\x36\x90\x85\xdc\x36\x8a\x11\xf7\x98\x57\xb9\x53\x33\xa2\x20\x98\x9b\xf2\xf8\x95\xa6\x22\xa6\x59\x6c\xf4\xbc\x84\x66\x0b\x56\x07\x37\x34\x28\x81\x25\x98\x9b\x16\x48\x7b\xc3\x4f\x0b\x92\xe0\x07\xd8\x53\xf8\xa7\x40\xbf\x7e\xdb\x6a\xbf\x2c\xcd\xe0\xc0\x6b\xec\x88\xdf\xdd\x09\x1f\x6d\xb1\xbd\x40\xf8\x11\xe8\x1c\xd4\x88\x9d\x41\x99\x1b\xc4\x2b\x72\xbb\x47\xe9\x91\x10\xb7\x7b\xd0\x73\x18\xff\x38\x5a\xad\x82\xbd\xcb\xdd\xe7\x83\xcc\xca\x5d\x2f\x57\x93\x2b\xe6\x0d\x87\xe3\x1f\xd8\x26\x1b\xe6\xfb\xdb\x3d\xb3\xe9\xcd\xc3\xde\xee\xc1\x8b\x34\x63\xe4\xcd\x3b\x32\xe3\xda\x5e\xa4\x31\x4c\x58\x3f\x5a\x6f\x36\x80\xb7\x79\xdc\x10\x24\x07\xc5\x6c\x22\x36\xea\xd1\xca\x4e\xfc\xd5\xdb\xca\xc4\x3f\x99\x57\x82\x3d\x3c\x1d\xc8\xb0\x2c\xcc\x01\x3f\xbe\x26\x48\x12\x9a\x06\x4f\x59\x36\x3a\xbe\x76\x59\x85\x3c\x90\xa0\xee\x3e\x29\xd5\x86\x17\x1f\x91\xff\x7a\x79\x7b\x1b\xff\xff\x5f\x1d\xe1\x7f\xfe\xf5\x6f\xd5\xbf\xdd\xd7\x8f\xc5\xa0\x26\x7a\xec\xff\x1a\xe8\xf3\x85\xb2\x21\x13\x53\x99\x85\x88\x59\x05\xef\xce\x8b\x27\x1d\xa1\x84\x06\xce\x78\x16\x86\xb6\xa4\x99\xd4\x32\x92\x89\x93\x5e\x70\xe8\xe0\xce\x9c\xba\x9e\xb6\x5a\x92\x37\xbf\xdb\x8a\xc1\x07\x03\x29\x5f\xe5\xab\x23\xf2\xee\x9b\x6f\xbe\xfa\x26\xf0\x3b\x17\xf8\xfb\x9b\x1d\x09\x69\x22\x17\xd7\x6c\xcd\x32\xae\x37\xd7\x51\xc6\x58\x5d\xd6\xdb\x5a\xf6\xfe\x79\xfd\x0d\xb7\xfc\x44\x2e\x88\xb2\xbf\x10\x3a\x93\x6b\xe7\xe3\x49\xe4\x22\xd8\x8d\xd6\x60\x0e\xf4\xdf\xb5\xc2\x9b\xd2\xb1\xcc\xb5\xc7\x4e\xc8\xe4\xe2\xc3\x65\x88\x75\xb4\x1d\xbf\x61\x49\x37\xf2\x42\xc6\xec\x23\x53\xcb\x33\xc8\xb0\x0d\xe5\xa2\x54\x57\x75\x11\x7a\x8b\x28\xa6\xcb\x76\xc9\xf3\xdc\xba\x4e\x31\x09\x2c\x94\xbb\x42\xe0\xe0\x57\x50\x0a\x59\xd9\xec\xde\xd8\x5f\x90\x51\x41\x9b\x17\x34\x93\x32\x61\x74\x4b\x26\x4e\x33\x36\xe7\x0f\xc7\x7e\xcf\x87\x4e\xae\x37\x0d\xbc\x53\x72\x16\x88\x10\x82\x27\xaa\xad\x24\x42\x2b\x6a\x13\x37\xc8\x0e\x4d\x71\xb7\x01\x2a\xad\xcb\xaa\x0a\x86\xc7\xa1\xc2\x04\xc0\x25\x95\x97\xfd\xa5\x03\x19\xec\x6e\xf3\x3a\x98\x5d\xc4\xe3\x90\x4c\x14\x58\x02\x74\xc4\x30\x53\x23\x5a\x97\x23\xbb\x1b\x3e\x63\xe5\x3a\xc2\x9d\x7a\x49\x2f\xee\xd7\x2e\xdd\x84\x20\xf3\x64\x9c\x88\x0a\x03\x88\x93\x72\x18\x07\xe4\x2d\xd9\x0b\x88\x2e\xcd\x84\x9f\x26\x19\xa3\xf1\xc6\xea\x72\x31\xe1\x82\xdc\xee\x19\xb1\x54\x8d\xbd\x59\x90\xab\xf6\x12\x47\x08\x6a\x75\x9d\x5c\xb9\x85\xf9\xb6\xb3\xa9\x76\xae\xdc\xce\x7c\x9b\x47\xee\xe2\xca\x9d\xcc\xb7\x0d\xe8\x0e\xae\xdc\xc9\x7b\x7b\x8d\xdd\x9f\x29\x37\x5f\x61\xfc\x74\x63\x6c\x2b\x4f\x25\x5f\xc2\x90\xad\x47\xc7\xda\x52\x26\xd3\x4e\xca\x77\x5d\x7f\x01\x36\x03\x6a\x1f\x9a\xfb\x8b\x2d\x25\x50\x75\xc5\x7b\x6c\x67\x08\xd2\x3e\xeb\x6d\x75\xa3\xd8\x5c\x13\xd0\x53\xe7\x25\xf5\x29\x7a\xd3\x63\xfb\x71\x47\x02\xb0\xc9\x78\x68\x5c\x04\xa2\x28\xc1\x0c\x71\x33\x62\x53\x99\xce\x66\xda\xeb\x25\x5b\x3d\x9e\xe8\xd6\xf7\xe2\xbd\x99\xd7\xd3\xec\xbd\x50\xb4\x24\x91\xf7\x86\x8e\xba\x47\xc3\xe7\x5c\x6e\xe1\x33\x10\xdb\x67\x13\xea\xec\x09\x9f\x3d\xa0\x19\xa8\x3f\x12\x79\x6f\x84\xb1\x48\x66\x5e\x6a\x7d\x08\x66\x3b\x10\x71\x23\x99\xb3\x1d\xfb\x95\x61\xea\x0f\x14\x05\x1f\x20\x5e\xb0\x5e\xf5\x01\x3f\x25\x93\xb1\xdd\xf5\x37\xd8\xf9\x13\x51\x46\x0a\x56\x76\xb8\x47\x40\xbf\x18\x83\x4a\xe8\x3a\x51\x28\x7c\xba\xde\xfa\x7f\xdb\x48\x74\x2e\x69\xfc\x9e\x26\x54\x44\xbb\x50\xa3\xda\x5b\x5f\x88\x4c\xfe\x68\x8d\x08\x65\x5b\x17\xf9\xcf\x8e\x27\x62\x91\x05\xb2\x7f\xcd\xa7\x8e\x77\xbf\x02\x92\x55\x37\xe9\x91\x88\x56\xdb\x9b\xdf\x24\xb2\xfd\xb6\xda\x4d\x5b\x9f\xd2\x33\xfa\x89\xa0\xc9\xcb\xf3\xb8\x87\xa6\xcc\xe9\xc4\x15\xaf\x90\xf9\x3a\xe8\x0c\xf2\xfa\xcd\x54\x7c\x40\xa9\x1d\xe7\xb9\x5c\x3f\x83\x8f\x66\xf0\xd1\xf8\x47\x30\xf8\x68\x7e\x49\x1f\x8d\x21\x07\xdb\xae\x19\x17\xc9\xed\xf9\x58\xdd\xc3\xc5\xe9\x3d\xbd\x7f\xe6\x66\xc9\x4a\xa5\xd0\xf9\x85\x0c\xf9\x09\xf0\xb7\x2f\x71\xb1\xdc\x31\x96\x5e\x66\x7c\xc1\x05\x4d\x2e\xd8\x83\xfe\x21\x50\x00\xa6\x06\xda\x65\xea\xe2\xae\xcc\xcb\x00\x98\xb4\x23\x10\xc1\x1e\xf4\x52\xa6\x98\xcd\x8d\xad\xdd\xd1\x65\xd2\x65\x19\x84\x3d\x25\x66\x53\x0d\x8e\x6b\xb8\x24\x2e\x36\xcd\xb7\x20\xc1\x89\x40\xc8\x28\x8b\xcd\x2b\xa1\x71\xcd\x28\xaa\xb0\xe1\xe5\xa8\xa2\x19\xbd\x9a\x3d\x68\x62\xa0\x33\x70\xff\xde\xe8\xde\x42\x69\x46\x63\xb3\xbd\xde\xaf\x8a\x25\xf3\xdf\xdf\xee\xbd\xb4\x1e\xb1\x57\xa1\x29\x50\x67\x2b\xa3\xfc\x67\x10\xc9\xe9\xce\xe9\xc2\x4c\x2d\x05\xb9\xdd\x9b\xf1\x2c\x1e\x47\xf3\x45\xd0\x1f\xd1\x6a\x0e\x5c\xd1\x87\x2b\x06\x35\xe3\x6e\x78\xd0\x4f\x53\x45\x17\x8e\x1d\x98\x30\x84\xd8\x20\xa9\x92\x73\x7d\x6f\x76\x38\xc3\x51\xc6\x84\xfc\x64\x8e\xa3\x54\x67\x83\xa2\x0c\x54\x96\x56\xe5\x8e\xc7\xae\xa0\xe5\x22\xa3\x11\x9b\xe7\x89\x1b\xcf\x05\x91\xbb\x71\x0d\xf5\xe8\x1a\x9b\x91\xf7\x93\xab\xd3\xc2\xd5\x28\xe7\xe4\xcd\xdb\xd7\xca\x45\xa2\x36\xee\x50\xb3\x05\xb8\xcf\x2d\x2a\x8a\x43\x16\xe5\x10\x1d\x01\xb6\xea\xbc\x2d\x57\x8d\xd9\x59\x50\x97\x37\x78\xe2\x8a\x68\x9a\x2d\x98\x76\x35\xb4\xb9\xc2\xfb\x48\x26\xf3\x62\xdb\x60\x13\x98\xb6\xbd\x98\x65\x25\x91\xa9\x61\x50\xcf\xbc\x60\xe3\x4b\xb9\x42\xc7\x02\x83\x96\xc0\xe6\x65\x55\xe6\xf3\x38\xcc\x2b\x7b\x2e\xed\xba\x67\x81\xc4\xaa\xe0\xde\x15\x4d\x78\x9c\x19\x16\xe7\x87\xba\xc5\x56\x0a\x80\x3c\xb7\x62\x27\xb8\x58\x58\x64\x68\xc3\x2c\xd8\x9e\xe2\x92\x20\x9d\x70\x6e\x3d\xb6\x4a\x75\xbd\xe2\x49\xd7\x92\x52\xaa\xd4\xbd\xcc\x3a\x6d\xff\x97\xb6\xb0\x2b\xee\xad\x7d\xa9\x58\x9b\x85\x5f\x91\x05\x13\x2c\xa3\xde\x21\x37\x98\xff\xdb\xc8\x3f\xe9\xd6\x38\x30\x08\xbd\xa5\xa2\x43\xf0\x30\x8c\x4c\x71\xc7\x36\x20\x9a\xd9\x21\x1c\x3e\x00\x12\xa7\x32\xde\x57\x65\x70\x75\x83\x25\xb0\x53\x19\xc2\x4a\x11\xcd\x86\xc2\xad\x2b\x66\x61\x42\xda\x0c\x50\x69\x69\x51\x17\x24\x93\x31\x21\x1f\xf1\x88\x9b\x07\x25\x84\x1a\x41\x89\xc7\x6e\x88\x3b\x16\x42\x05\xf7\xe9\x63\xac\x6c\x75\x70\x6f\xb9\x86\xbc\xf6\x29\x19\x9b\xb3\x8c\x09\x1d\x94\x7a\xda\xba\x08\xc9\xb5\xd1\x71\xd9\xfd\xa1\xed\xc6\x3c\x32\x7a\xf4\x08\x85\x11\x75\x08\x07\x73\xf8\xa2\xc3\x34\x4f\xc8\xcd\xe5\xe9\xe5\x11\x39\x8e\x63\x22\xc1\xaa\x9f\x2b\x20\xbc\x70\x57\xd4\xd8\xd3\x06\x0e\x40\x18\x3d\x20\x39\x8f\xff\xaf\x80\xbb\x69\x97\xbd\x2a\xea\x1e\xf7\xdc\xaf\x6b\x20\x5b\x9b\xc2\x6d\x66\xb6\xed\x1a\x0f\x4e\x66\x10\x98\x60\x90\x62\xd5\x7d\xea\xd6\x03\xd1\x05\x7d\x03\x97\xc4\x8f\x2b\xdd\xde\x00\x3c\xe4\x1f\x86\x7f\xea\xa3\xba\x87\x7f\x35\x14\x63\x32\xed\xc3\x80\xbc\x82\xb3\x9e\x1c\x47\xe6\xd2\x1a\x63\x67\x1b\x50\xb4\x1c\x7d\x4a\x65\x16\x64\x40\x36\x2a\x47\x4b\x7c\xdd\x60\x16\xf0\x1e\xf0\x47\x8b\x22\x96\x07\xc2\x34\x0e\x9c\x23\xa6\x74\x59\xdd\xee\xfd\x09\xb3\x1e\x26\xd3\xf5\x3b\x4c\x7c\xf8\xf3\x11\xcc\x15\x0c\x3d\x00\xbf\x4d\xf1\xc2\xd7\xf8\xc2\x11\x7e\x01\x6f\xc1\x17\xe8\x20\x81\x8a\xb7\x00\x4b\x65\x11\x1e\x50\x8e\x2f\x06\xa5\x40\x88\xc5\xb1\x3c\x04\x36\x4b\xc4\xa4\x88\x4e\x9a\xb1\x44\x1a\xba\x0c\x22\xa2\x0d\x63\x05\x5a\x07\x4d\x41\x4a\xef\x7c\x98\xc8\x02\x79\xac\x47\x5f\x59\x46\x7b\xcf\xac\x68\x48\x35\x82\x6b\x77\x76\x57\xfe\x63\x94\x86\xc7\xb2\xd4\x8c\xad\xa4\x2e\x38\x6b\xe5\x64\x51\xaa\x6a\xe2\x40\x3e\x23\x9d\x02\x26\x56\xb7\x0d\x69\x45\x8d\xb1\x62\xe4\x4b\xb5\x20\x7c\x75\x21\x46\x32\x9a\x31\x7d\xcf\x6c\xa2\x0b\xc4\xca\xbb\x46\xf6\x71\x29\x78\xfb\x70\x43\x4d\xb4\x42\x5e\x0c\x9f\xb0\xad\x89\x6c\x67\xe0\x73\x32\x93\x7a\x69\x74\x55\x85\x32\x84\x91\x05\xde\x7f\x3f\x35\x44\x65\x6c\x1e\x3d\xb6\xf7\xa5\x5d\xa0\x34\x20\xe1\xd8\xef\xfa\x8f\xfd\x6e\x6b\xec\x31\x31\xd7\x34\x34\x81\x5d\x66\x19\x12\x17\x49\x08\x08\x73\xca\xb6\xb7\x0d\xfb\xaa\x32\x91\x3b\x88\x20\xdc\xf6\xf0\xb1\x8f\x79\x59\x68\x75\x6e\x7b\x42\x14\xd7\x65\x47\x4c\x44\x59\xc4\x2e\xaf\x13\x15\xed\xea\xcb\xc0\x07\xb3\x9b\x4b\x79\xbf\x95\x0f\x86\xe6\x09\x4b\xc1\x42\xcb\xe9\x96\xa1\xb6\x05\xa6\x22\x18\xa6\xd9\xa7\x7c\xbb\xf7\x49\x31\xe8\x3a\x30\xbd\xdd\x23\x2b\x46\x85\xaa\xc2\x56\x88\x3d\x06\xf9\xad\x66\x58\x01\x76\x0c\x11\xf8\x81\xb2\xc0\xf8\xc1\x21\x6d\x6a\x55\xf3\x92\x77\x3a\x85\xc1\xa6\xeb\xdb\x74\xab\xbd\xf2\x9f\xc3\xb4\x6b\x66\x38\xc6\x19\x36\x5b\x06\x5e\xff\xc7\x80\x99\x37\xd4\xc9\xdf\xb3\xf6\x7a\x3f\x6f\x06\x9b\xef\x60\xf3\x1d\x6c\xbe\xff\x7c\x36\x5f\x9f\x42\xf4\xb4\xfc\x6e\x53\x9c\xf2\xb3\xbb\x39\xb8\xc1\xef\xd8\xc6\xe6\xa1\xb3\x6d\x77\xac\xe3\x29\x3e\x46\xb8\x88\xa1\x8b\x9e\x72\xdd\xac\xb8\x42\xda\x46\x1c\x71\x33\x78\x3b\x63\xd0\xac\x06\xdf\x09\xaa\xdd\x90\x3d\x8e\xe6\x1a\x1f\xcf\xe7\x18\x20\x56\x76\x78\x47\xc1\x5c\x26\x31\xb0\xfb\x84\x51\x65\xa7\x0e\xb2\x60\xae\x34\xbd\x63\x22\xd9\x10\x9d\x31\x07\x1e\xce\x42\xcb\x59\x9e\xc6\x32\xd8\x2a\x3b\x69\xbf\x03\x77\x9f\x77\x1a\x74\xce\x11\x1c\x69\xfd\x3b\xbb\xb1\xf5\xaf\x43\x35\x4c\x02\x6d\x50\x06\xa1\xc2\x2f\x25\x80\xfc\xd7\x50\x25\xa3\xe1\x3e\x53\x4a\xa1\x0b\x90\x2a\x67\xa9\x4b\x17\xdb\x4f\x6c\x8b\x18\x01\x58\xeb\x62\xc6\xf6\x23\xcf\x29\x6b\x54\xc3\x49\xb7\x56\x50\x4b\x2e\xb4\x71\x6a\x85\x93\xc3\x03\x72\xc8\x2b\x1c\xe4\x97\x41\x7e\xf9\xb5\xe5\x97\xed\x1b\xdc\x96\x59\x88\xaf\xce\x02\xdc\xaf\xd9\xa1\xd4\x26\xba\x00\x09\x0d\xdf\xf1\x6d\x48\xfd\x87\x5d\x2a\x89\xbd\xe4\x06\x36\xeb\x8a\x2b\x1a\x6e\x46\x25\xe5\xab\x7f\x0c\x11\xc8\x85\x08\xda\xb2\xdb\x58\xbc\x1d\xf2\xfb\x4f\x93\xd3\x4e\x68\xcb\x47\x1d\xac\xf0\x6f\x6b\xbe\x6d\x04\xae\xc7\xf4\x37\xe6\x91\x7e\xd3\x9b\x47\xdd\xa1\x59\xb2\x08\x8d\xdd\xbe\x04\x8a\xa2\x5a\xc7\x15\xa3\x71\xc8\xc7\x53\x95\x21\x2b\x4f\x17\x15\x83\xe2\x1c\x48\x84\xe2\x0b\x01\xe2\xb1\xd0\xe5\xb8\x64\xc5\x17\x95\x1c\xfa\x1a\x6c\x12\x5e\xa3\x89\x4d\x24\x4c\xa5\x80\xa8\x3f\x95\x47\x4b\x23\xf1\x61\x7f\x23\xd7\x1b\xd5\x12\xee\x7b\xca\xcd\x2d\x9f\xcb\x06\xf3\x22\x14\xe3\x75\x14\xaa\xa9\x03\x21\xe9\x72\x25\x40\xc3\x73\xd1\x99\x10\xf6\x23\x3e\x46\x62\x16\x25\x34\x03\xfb\x19\x8f\x96\xee\x6d\x0f\x97\xbd\x6c\x11\x28\x00\xfa\xcf\x6f\x47\x7a\x36\xc9\x0f\xe8\x7c\xa5\xf6\x66\x59\xfd\x6b\xb4\x60\x62\x7c\x97\xcf\xd8\x2c\xe7\x46\xe9\x80\x09\xdc\xf4\x2f\x81\x98\x43\x04\x87\x6b\x11\x7d\xc3\x57\x4c\x69\xba\x4a\x8f\x88\xc8\x93\xe4\xb6\x56\x0a\x0d\x4c\xda\xb0\x67\xcf\x62\xb0\x42\xdc\xb8\x90\x31\xbb\xf6\x4a\xe1\x79\x52\x65\xed\xf7\x80\x4c\xb9\x05\xe6\x96\x48\x59\x7b\x62\x30\x5e\x0d\xc2\xdf\x20\xfc\xfd\xf3\x09\x7f\x35\x52\xd1\xcf\x7e\x15\x26\x40\xe5\xe7\x11\x26\xac\x84\x2a\xd5\xa3\x40\x03\x3e\x56\xf2\x4d\x27\xcf\x80\x6c\xea\xa9\x96\xd8\x06\x41\xf0\x86\x90\x29\xf4\x36\x71\xe5\x3b\x83\xf1\x5a\x42\xec\x1b\x26\x58\xa0\xa3\x92\xaf\x5d\x7e\x84\xc1\x48\x99\xe9\x86\xf8\x07\x3a\x93\xb9\x26\x11\xcb\xcc\xd6\x19\x6c\x83\x84\xe0\x2a\x54\x3b\xa5\x3d\xb4\x07\x5c\xb4\x64\x9f\x3c\x3a\xa6\x8d\xdb\x0d\x0d\x86\xb4\xcd\xc3\x3b\x09\x0f\xd9\xfc\x91\xdd\xa4\x48\xbc\x71\xd3\x4a\x91\xd6\x0e\xa8\x3f\x6d\xbf\x52\x24\xd4\xc3\x97\x65\x9b\xe0\x2e\x14\x35\x9f\x52\xb8\x2a\x6e\x3f\x96\xdd\x26\xaf\xfd\xf6\x9c\xf5\xa1\x48\xc6\xe6\x19\x53\xcb\xa0\x85\xf3\x23\x66\xdf\xdb\x11\x1d\x58\x5c\x41\x16\x4c\x4c\x43\xd1\x48\x8f\x8f\xbc\x6d\xbc\xf5\xa5\xbc\xd6\xb0\x93\x5b\xf7\x1e\x57\xe6\x33\x50\x39\x43\xb9\x10\x8d\x89\xa5\x4c\x5a\xbe\xb4\xb5\x96\x0b\x89\xd1\x57\x78\x05\x6d\xbb\xff\x39\xe6\xea\x9a\xe1\x15\x37\x98\xc4\xc1\x3d\x6d\xb7\x9c\xcc\x36\x76\xdc\x1d\xc2\x9f\x17\xac\x5b\xc4\x3e\x36\x0f\x91\xa5\x4c\x62\x85\x2f\x38\x20\x64\x19\xeb\xb6\x7b\xc8\xdd\x8c\x67\xf1\x8f\x5f\xf7\x09\xb6\x7b\x3f\xb9\x3a\xfd\xf1\x6b\x3f\x29\xa9\x94\x0f\xaa\x7b\x9b\x03\x99\x30\x23\x7f\xfd\xf8\x60\xbb\x84\x2a\xfd\x5e\xca\xa6\x38\xdf\x20\x88\xe7\xde\x3b\x76\xa7\x0a\x65\xdf\x80\xe4\x8f\xd9\x3c\x24\x41\x36\x8c\x41\xca\x3a\x21\x32\xd7\x69\x1e\x0a\x3b\x70\x9f\x3e\x91\x64\x66\xea\x2b\x56\xa9\x27\xb0\xeb\xca\x02\xaf\x37\x2d\xd2\x3d\xfa\x2b\x2c\x14\x02\xdb\xb3\xa0\x35\x21\xb8\xb2\x2b\x78\x9e\x4c\x4e\x8b\xca\x4a\x00\xcf\x97\x01\xd1\xe4\xb8\x08\x42\x00\x15\x51\x1d\x49\x70\x85\xa6\x4e\x29\x5b\x05\xf9\xdb\x2e\x60\xac\x1b\xcd\x40\x41\x40\x7e\x2c\x2d\x3f\x0e\x8c\x18\xc0\xf8\x12\x28\xda\x63\xf9\x2c\x01\x78\xd7\x9b\x00\xbc\xdb\x8d\x00\xbc\x1b\x08\x80\xb7\x9c\x81\x00\x04\x56\x36\x10\x80\x5f\x93\x00\xb4\xfd\x3a\x5b\x74\x66\x3d\x19\x10\x11\x05\x41\x6e\x36\x7f\x36\xca\xce\x1d\x77\x1e\x83\x09\xcf\x94\xa6\xb3\x84\xab\x25\xeb\x29\x96\x98\xc3\xd3\x52\xd3\xc4\x45\x23\xca\x39\xc6\x55\xb2\x72\x24\xb3\x12\xa2\x98\x42\x7b\x5b\xdb\x36\x35\xe4\x83\x85\xe1\xeb\x45\x35\x1b\xe0\x7b\xf7\x4c\xf0\x5d\x48\xfd\x74\x5b\x28\xa4\x18\xfd\x22\x60\x7e\xd9\x4e\x3e\x07\x98\x90\xeb\xdc\x6f\xfb\xa6\xf8\xa8\xcf\x18\x61\xf7\x5c\xba\x92\xea\x27\xa8\x93\xce\x62\x34\x0d\x0a\x0f\xc4\x90\x56\x4d\x1c\x05\x0f\x2e\x60\x68\xa6\x20\xdd\x50\xf5\x62\xd7\x2d\xb1\xff\x0d\x2b\x68\xc8\x00\xb8\x5f\x4a\xc5\x4a\x13\x3b\xb9\x67\x84\x86\x5d\x1c\xe5\xa7\x30\x64\xb4\xd0\xeb\x7e\x14\x9b\xa0\x4e\xd7\x7f\x15\xd7\x1c\xf3\xe3\x0a\x16\x92\x91\x8c\x51\x25\x05\xf0\x61\xdb\xe8\xa8\x8d\x9d\xf5\x86\xab\x83\xa5\xd5\xe1\x02\x68\xac\x31\x01\xe8\x32\xde\x08\x1c\xe7\x09\xe0\xd1\x61\x9f\x5d\x03\x38\xe0\xb6\x2b\xa3\xae\xca\x04\x19\x97\xe2\x50\x49\xaf\x6c\x3f\xed\x35\xa7\x05\xca\x8e\xb4\xed\xf6\xb5\x62\x6a\x79\x60\x76\xdf\xfc\xca\x04\x61\x0f\x69\xc2\x23\xae\x5d\x40\x79\x5b\xbd\x2b\x82\xcd\x75\x46\x8e\x87\xc1\x8d\xb2\x26\xf3\x2f\xdd\xa8\x2e\xf9\xbb\xb3\x7a\x14\x52\xa2\x5e\x14\x12\x29\xd1\xbb\x1a\x25\x7a\x37\x50\xa2\x8e\x15\x0c\x94\x68\x37\xb8\x06\x4a\x64\x3f\xff\x93\x28\x51\x4b\x3a\xe1\x28\x24\xbc\xf7\x7b\xec\x5d\xf3\x63\x75\x51\xb6\xf7\x93\x81\x31\xdb\xd6\x6e\x6e\x07\x1a\xe2\x3b\xc3\x87\xcf\xcb\x47\xd1\x35\xa8\x9d\xdf\x7c\xdb\x2f\x08\xf6\x90\x0c\x9e\x08\xed\x36\x54\x81\xd8\xb2\xc4\x5b\x57\x21\x5c\xd8\xd2\x83\x07\xf6\xe5\x62\x02\x08\x5f\x0e\x0d\x79\xf5\xe1\xe4\xab\xaf\xbe\xfa\x0e\xec\xef\x58\x09\x1b\x12\xe3\x3f\xdd\x9c\xb4\x18\xe9\xcd\x1c\xa3\x30\x90\x22\x4f\x6c\x4f\xb2\x32\x90\x62\x7b\x53\xc3\x48\x87\xf5\x2d\xba\xf6\x13\x74\x7f\xe7\x87\x52\xf6\x25\x72\x27\xe4\xbd\x70\x0e\x68\xeb\xbb\x69\xd7\x85\xbf\xc8\x04\x8e\xb3\xf6\x93\xf5\xaf\xec\xb3\x5b\xc2\xbe\x05\xfd\x99\x18\x2b\x4c\xdb\xc6\x59\x9b\xcb\x89\xf4\xd9\xa0\x5e\xdb\x54\x00\xe8\xda\x6a\xf5\x27\xb9\xa7\xe5\x4b\x45\x32\x79\xd1\xfa\xab\xe9\xd3\x8f\xf6\x2f\xa8\x66\xf7\xb4\x2d\x2f\xbf\x06\xcb\xf7\xf8\x42\x91\x9f\xe7\x2d\xe8\x09\xc0\x29\x7a\xa0\xed\x20\x7c\x14\x6d\xd3\x02\x20\x7d\x39\x44\x09\xa3\x99\x60\xf1\x87\x4c\xae\xfa\xc3\x74\x5e\xbe\x54\x62\x9d\xef\x8d\xce\xd8\x82\x66\x71\xeb\xc4\x04\x89\x5c\x66\x6b\x61\xc0\x81\xbb\x92\x38\x4d\xe9\x14\xee\xd3\x0b\x15\x49\x3f\x49\x6f\x6b\x71\x93\xb9\xcd\x65\x44\x49\x00\x53\x54\x3f\x32\xb5\x34\x3c\xdb\xf2\xdc\x03\xd2\x54\x05\xd4\xff\xd4\x84\x46\xb4\x7c\xda\x5a\x20\x4c\x68\x92\x2b\x6f\xed\xad\x0b\x26\xbd\xcf\x93\x14\x39\xad\x0d\x41\x93\x2d\x2b\xbf\xf1\x02\x25\x6d\xbc\x0a\x9e\x10\xb5\xc7\xc3\x95\xc3\x97\xee\xc5\x43\x09\x8b\xa7\x5a\x53\xb7\x6c\x42\xbe\x54\xd0\xe3\xde\x21\x95\xc9\x3d\x60\x73\x6e\x08\x05\xf0\xd6\x2a\xb3\x7b\xc4\x77\xdb\x77\xf0\xd7\x16\xc6\x0a\xae\xd5\x4b\x2f\xb4\x5c\x6b\x5b\x31\x1c\xb8\x56\xcb\x42\x06\xae\xd5\x02\xd0\xc0\xb5\xb6\x3f\x03\xd7\x1a\xb8\x56\xd3\x53\x03\xd7\x6a\x7d\xfd\x37\x19\xd9\xff\x5c\xc9\x9c\x73\x96\xf0\x87\x67\xef\x0f\x09\x49\x25\xad\x1d\x22\xb7\x9f\xd8\x0e\xbc\x0f\xc0\x6a\xcf\xa5\x88\xbc\xdf\x7e\xe4\x36\x18\x7b\xff\x82\x5c\x61\xe3\xef\x32\xb7\x12\x6d\x96\xe6\x47\x90\x5b\xb2\x35\xfb\x24\xc0\x3a\xf0\x01\x2a\xf9\x1c\x91\x39\x4d\xb0\xcb\xc0\x33\x64\x82\x62\xd6\xcd\x4e\x7d\x26\xe1\x95\x21\x0b\x74\x48\x04\x18\x12\x01\x7e\xed\x44\x80\x6d\xe2\xd5\xd5\x5f\x12\xef\xfb\x63\x3b\x4c\x26\x89\xbc\x9f\x4c\x27\xd3\x29\x8d\xee\x98\x56\x46\x08\xfd\x49\x66\x77\x89\xa4\xdd\x61\xe0\xfb\xc7\x6d\x6f\xbb\xb4\xae\xd2\x57\x01\x90\x06\x8d\xca\xd8\x83\x25\x36\xa2\x51\x9e\x40\xed\xdb\x38\x93\x29\x31\x43\x13\x26\x22\x9a\x2a\xec\xdf\x5e\x74\xca\xc7\x5e\x30\x6e\xaa\xd0\x98\x65\x03\x2f\x20\xb6\x3b\x77\xf0\x82\x9d\xf9\xf1\x8f\xe7\xc7\x17\x8f\xdf\x9a\xc6\xd7\x9f\x60\x6f\x60\xec\x5f\x6d\x73\xee\xd5\x75\x16\x9d\x2a\x7d\xb2\x64\xd1\x5d\xe7\x66\x5c\x33\x6d\x45\xe0\x91\xa7\x6e\x8d\x22\xf3\xb2\xd1\x96\x8f\x7f\xba\x26\x67\x27\x6f\x8b\x24\x07\x35\x26\xc7\x56\x0a\x0a\x41\xbf\xae\xb6\x8f\xc4\xb6\x16\xb7\x7b\xa7\xf2\x42\xea\xa5\xb9\x9e\xd0\xd4\x09\x1b\xc2\xb9\xae\x55\xa7\x98\x44\x70\xbb\xd7\xd1\xfa\xb4\x18\x24\xb4\x27\x4c\xe4\x21\xbd\x6e\x54\xbe\x15\xfa\xd1\x02\x12\x7a\xcd\x02\xb5\x93\x8b\x62\x96\xce\x4f\xa4\x10\x2c\x82\x70\xd0\xb2\x77\x06\x17\x8b\xbe\x9d\xf3\xde\x4f\x3f\x74\x0c\x81\x7e\x1e\x2e\xc8\xfb\xe9\x07\xb2\x92\x71\xb8\xef\x64\x18\x8b\xf1\x18\x93\xa4\x90\x36\xcc\x44\xe6\xbc\x35\x5f\x31\x62\x70\x92\xcc\x5c\x77\x93\xc6\x6a\x7d\xf6\xb5\xc0\x3b\xe8\x54\x42\xa7\x5e\xa1\xc5\x2f\xa5\x82\x84\x91\x19\x23\x90\x2b\xa2\x65\xd0\xf8\xc4\x68\xb4\xf4\x1b\xaf\xd8\x06\x31\xca\x36\x60\x25\x7c\x95\x66\x72\xcd\x8a\x54\x16\xd0\xc1\x45\x04\x08\x96\xca\x78\xa4\xe5\xa8\xad\xf5\x54\xb1\x54\x85\x0b\xc3\xc6\x2c\xd6\x9b\xed\x65\xb2\x60\xe6\x85\x81\x3d\x66\xb3\x1c\x9b\xd1\xa6\x79\x96\x4a\x65\x50\xbf\x1d\x41\x1f\xd5\x8e\x70\x96\xce\x4f\xa9\xa6\x93\x39\x8d\xd8\xd4\xb6\xf3\xec\x40\x92\xf7\xd3\x0f\xf5\x57\x50\x9a\xc8\x18\x08\xc8\x84\x3d\x18\x71\x00\xc4\x3c\x50\xc2\x1d\x32\x04\x89\x18\xe4\x02\x15\xf6\x1a\x97\x1a\x6e\xa5\x38\xaa\xb5\x39\x17\x83\x6a\x69\x26\x17\x19\x5d\x81\xf8\xc6\x05\x91\x59\x0c\x55\x52\x83\xbb\x4d\x75\xb4\x2c\x68\x9e\x96\x87\x85\xf0\x21\xb0\x4f\xff\xd8\xd6\x39\x12\x8c\xc5\x30\xe0\x0a\xdf\x58\x32\x0f\x92\xe0\x16\x9b\xe5\xb8\xf6\x60\x96\x8c\x96\xc4\x15\xf2\xd2\xe4\x9a\x65\xf5\x56\x60\x3d\x06\x5d\x52\x11\x9b\xf3\x17\x91\x5c\x81\xfc\x55\x40\x0f\xd6\x42\x74\x27\x62\x71\x4e\x8b\x98\xb0\x28\x99\x6b\xc5\xc3\xcd\x2b\xfd\x6a\x0f\x84\x4c\x8a\x34\x7b\x23\x45\x95\xeb\x2d\x56\xe1\x1d\xc1\xcb\x5c\xe5\x34\x49\x82\x56\x5a\xa3\x87\xc4\x90\x94\x37\x1e\x8f\x5f\xed\x98\x50\x66\x90\x0d\x11\xfd\x93\x48\x33\xbe\xe6\x09\x5b\xf4\x23\x4a\x81\xd7\x0e\x08\x9f\xbb\xae\x9c\x07\x0e\x6d\x98\x0d\xe2\xbf\x33\xf7\x38\x19\xe7\xde\xf3\x9f\x67\xe9\xfc\xb3\xbd\x67\x41\xe6\xa1\x36\x2a\xd2\x89\x7f\x1b\xfd\xd7\xa1\x8a\xac\x9c\x1b\x5c\x74\xe8\xc3\x84\xb2\xcd\x0a\xa8\xae\x3c\x1b\x1a\x3d\x57\x46\x2a\x8e\x50\x8a\xc5\x5a\x06\x16\x93\xf6\xf7\x15\x12\x53\x9a\xe2\x11\xdb\x87\xb8\x50\x46\x83\x81\x06\xd6\x44\xde\x07\x8d\x90\xdb\x37\xc3\x9c\x22\xb3\xad\x9d\xca\x09\xbe\xb8\x6d\xe9\x2c\x9d\xef\xc0\x43\xce\xdc\xb1\x94\x47\x64\x4f\x08\x84\x16\xd7\xab\xc1\x40\x6f\x24\xe4\x34\xa1\x22\x6c\x98\xfb\x52\x71\xc4\x80\xfd\xa0\x6f\xa4\xeb\x9d\x27\x85\x58\xd1\xac\x5b\x2e\x31\x6b\x08\xbc\x57\xe1\x7b\x25\x93\xa3\x21\xd0\xbf\x7a\x3b\xe3\xe6\xa6\x65\x77\x45\xc1\x57\xc5\x34\x41\x9d\xdb\x71\x03\xbc\xc5\x54\x10\xe6\x5a\xaa\xa1\x4a\xd4\x40\xd9\xa8\x2d\xd5\x6b\x89\xc0\x18\xf1\x10\xe6\xb0\x69\xb1\xb9\xab\x9e\x6a\x20\x83\x42\xaf\x29\x4a\x99\x44\xce\x1b\x89\x4f\x09\x10\x34\xeb\x00\xdb\x5c\xec\x35\x2d\x44\x26\xea\x2a\xc7\x5a\x4b\x6a\x83\x55\xcd\x60\x60\x9a\xb9\xfe\x09\x57\xd3\x0f\x04\x84\x39\x1f\x01\x5f\x37\x1f\x63\x43\x00\x33\x1e\x23\x6c\x90\x3d\x91\x8f\x3d\x52\x68\xed\x29\xd6\x5f\x6b\x38\x44\xb3\x34\xef\x64\x42\x6b\xf3\x49\x6e\xa5\x76\x16\xd4\xc1\xb7\x74\xf9\xa5\xad\xd1\xef\x08\xb6\xd7\x07\x32\xd8\x63\xc4\xec\xb8\x35\x6c\x1a\x49\x5d\xba\x72\xc3\x85\x98\x6e\xa8\xf7\x1c\x70\x47\x4b\x72\xbb\x77\x93\x0b\xc1\x92\xdb\x3d\x2c\x6f\x3d\x93\x3a\x58\xe6\xd9\xea\xce\x00\x41\xc6\x54\x2a\x85\xb9\x73\x96\xa9\x70\x45\x34\x8c\x82\x13\xd6\x6a\x1c\xc3\x7c\x41\x02\xe9\x40\x38\xbd\xbe\x32\x92\x34\xbe\x87\xf3\x84\x86\x9e\xe5\xda\x3e\x53\x9d\x3f\x88\x36\x0a\x6d\xf5\x31\xcf\x58\xa4\x93\x4d\xb0\xfa\xb2\x81\x4c\xb8\xf9\xed\xf9\x95\x8f\x04\xd9\x15\xd4\xb4\x4e\x53\x46\x33\xe5\x77\x89\x99\x4c\x9d\x92\xcc\xb1\x8b\x1e\x3c\xf9\x7b\x67\x76\x02\x19\xb2\xe1\x5e\xa7\x2c\x5b\x71\xa5\xf8\x9a\x91\xf3\xb7\x9e\x44\x51\xe2\x37\x9e\xd0\xae\xad\xae\x67\xe9\xdc\xc8\x9f\xd3\x4c\x3e\x6c\xce\xac\x91\xe4\x3a\x31\x28\xd5\x93\xf0\xbe\x9f\x7e\x68\x1f\x20\x8c\xf8\x61\xa9\xcc\x93\xda\xf7\x15\x61\xab\x19\x8b\x0d\x7a\xde\xe5\x33\x36\x4a\xcd\x0c\xd6\x1a\xad\x48\x75\xaa\x66\xc3\x7c\x17\x9d\x2e\x60\x9f\xa4\xda\x80\xab\x4e\xcc\x83\x79\xba\x03\xdb\xe9\x18\xa2\xc2\x8e\x70\x2f\x42\x8b\xc7\xed\xf1\xd8\x55\x9a\x49\xac\xed\x93\x6c\x48\x64\x46\x24\x39\xf6\x43\xca\x53\xa5\x33\x46\x57\xbe\xe2\x50\xee\xd0\xfe\x7e\xb8\xa6\xbb\x85\x8d\x44\x4b\xca\x41\x1f\xb8\x46\xc1\xcc\xf5\x6a\x2c\x20\x9c\xfb\xdb\x6d\xeb\x85\xdb\x9a\x58\xcf\xa5\x0b\x14\x3b\xf8\x91\x8b\xeb\x8d\x88\x30\x93\x7f\xa7\xbd\xaf\xbc\x79\xd0\x40\x6c\x75\x58\xb7\xb3\x9d\xef\x21\xc6\xb0\xa8\x50\x8f\xf6\xbe\xc2\x6e\x5b\x08\x0c\xa5\x81\x7a\xdf\x43\xd1\xd0\xb0\xe5\x36\x8e\x09\x39\x97\xf7\x2c\x73\x96\xb2\x85\xb9\xc6\x19\x8b\xf3\x08\x1b\xc4\x8f\xf2\x14\x0c\xc3\x22\x32\x8f\xfe\xc0\x17\xcb\xe2\xd9\x30\x95\x35\x6f\x3a\xc3\xfa\xf4\x13\xc9\x15\x5d\x30\x48\xf9\x33\x12\x36\x78\xb6\x52\xb2\x92\x19\x92\xf3\x0a\x95\x78\xa3\x1e\x41\x21\xce\xe5\xe2\x9c\xad\x59\xa8\x7f\xc7\xd6\x89\xb8\x67\x2b\xbb\x0e\x8d\xfd\x13\xf8\xda\x25\xe5\x79\x22\x64\x03\x2d\x28\xf4\xfd\x72\xef\x57\x48\x8e\x2f\x9d\x89\xe5\x72\x3e\x47\xe3\xca\x44\xcc\xa5\xf9\x17\xda\x56\x8c\x12\x7b\xbb\xd7\xac\xcc\x27\x72\x81\xfd\x53\xd9\x8a\x6b\x5d\xb2\x23\x33\x99\xce\x68\xc4\x48\xca\x53\x76\xe0\x8a\x7f\x19\xa1\x1c\x04\x5b\xb4\x1f\xac\x56\x0d\xed\xb3\x6f\xf7\x74\x44\xd8\x03\x8b\xcc\x9e\xa1\x2a\x5d\xb1\xef\x90\xcb\xf9\xfc\xcf\xe3\xdd\xb7\x7f\x7a\x7d\x71\x7c\x33\x35\xac\x3d\x70\x00\x54\x6c\x2e\x43\x5d\x7e\x46\x5d\xc9\x59\xa3\x0e\x57\xe5\xd6\xc9\x96\x60\x94\x1a\x4f\x46\xc5\x82\xf9\x9d\xb0\xef\xe1\xbb\x58\xae\xc2\x8a\x5c\xca\xa3\x3b\x42\xb1\x25\x06\xfa\x64\x33\x66\x9d\x02\x68\xef\x87\x5f\x22\x99\x24\xdc\x68\xf2\x56\xd4\x2c\x0a\x72\x84\x0d\x92\x85\xc0\xc8\xd2\x25\x5b\xb1\x8c\x26\x16\x2e\xaa\x8a\x1e\xf4\x46\x2a\xfc\x70\x42\xde\xbd\xfe\xe6\x1d\x79\xf9\xe6\xf5\xdb\xaf\xff\xcf\xff\xfe\x7f\xde\x7d\xf3\xcd\x57\xdf\xbc\x6a\x6a\x86\x9e\x42\xa3\x1e\x3a\x4b\x36\x15\xe1\xab\x3e\x89\x2a\xf2\x6d\x0d\x66\x48\x41\x64\xca\x32\xda\x24\xa7\xaa\x8d\xd2\x6c\xa5\xc6\xe4\x9c\x8b\xfc\xc1\xbc\xaa\xc8\x57\x6f\x7f\xf7\xee\x5b\x03\xce\xeb\xef\xbe\xfb\xee\xc0\xec\x63\xc2\xb0\x39\x8f\x22\x2b\xa9\x8c\x58\x52\x08\x10\xc7\x17\xc7\xa1\x61\xdd\x2a\x71\xd9\x5f\x7f\xf7\xe6\x9b\xb7\x6e\x7d\x2e\xee\xd9\x90\x71\xc1\x0c\x3e\xd3\x8c\x27\x1b\x73\x08\x99\x9c\x25\x6c\x85\xe7\x10\xee\x04\x82\xe3\xc9\x35\xcb\x12\xa3\x26\x16\x97\xa0\x58\x63\xb9\xa0\xf7\x45\x63\x0c\x17\x10\xe1\x7c\x8e\xf5\x0f\x05\x8f\x89\x11\x50\xf9\x9a\xf9\xd7\xe3\xed\xeb\xd7\xaf\x5f\x1f\xbd\xfd\xee\xbb\xef\xbe\x0b\x11\xa9\xd4\x1a\x8a\xc8\x7f\x8d\xff\x6d\xfb\xd7\x87\x51\xd9\x3b\x69\xc4\x85\x1e\xc9\x6c\x84\xa8\x1d\x8e\xbb\x06\x3e\x38\x01\x65\xb7\x97\x54\x7f\x52\x7d\xbe\xc9\xd6\xb8\x94\xf2\xce\x37\x06\x34\xb0\x63\x2d\xd3\x11\xd2\xc3\x1a\x63\x36\x88\x84\x2a\xb8\xd9\x5d\x6b\x63\xb7\x75\x2b\xb5\x4c\xed\xe6\x06\xed\x4f\xe6\x7d\x43\x00\x67\x1b\x90\x3d\x45\xbc\x3d\xc2\x4c\x6a\x2d\x57\x63\xa7\xe4\xdb\x64\x12\x45\xe7\xcc\x75\x0a\x09\x22\xad\x2b\xcf\x92\x66\x6c\x0d\x51\x6f\xa5\x09\xc1\x8c\x6e\xf5\x49\x8c\xa9\x98\x6d\x52\xaa\x94\x6d\x6f\xbf\x91\x39\x51\xf7\x5c\x87\x9b\xc2\x68\x69\x01\xb5\x7c\x7a\xc6\x88\xc2\xde\x1b\x16\x5c\xec\x50\x85\x53\xb8\xd6\x74\xb8\x4b\x58\xe7\x31\x88\x5d\x20\x20\x82\x91\x74\xb6\x31\xfa\x7b\x82\x8e\xc5\x4c\xe6\x8b\x65\x2d\x1a\x1e\x46\x3e\xc0\x69\xee\x6d\xb7\xfd\xd0\x98\xf6\xf1\x54\x26\x3c\xda\xa0\x74\x36\x63\xde\x4a\x4b\x14\xc6\x8d\xdd\x95\xc5\x16\x0c\xee\x34\xe3\xeb\x60\xfb\xce\xf6\x9a\xed\xb3\x7c\x61\x4d\x55\xe7\x72\x71\x9a\xc9\x34\x35\x68\xbf\xa3\x1c\x06\xc3\x7c\x64\x2b\x99\x6d\xa6\x99\x9c\xf3\x84\x4d\xa9\x5e\x3e\x06\x96\x6b\xbe\x02\x0f\xd0\x09\x4d\xa2\xef\x33\x9a\x2e\x7f\xa0\x62\x71\x3c\xd7\x8f\x5b\x99\x1b\xed\xd4\x6d\xd2\xe3\x47\x83\x43\x72\x9a\xc3\x8d\xfc\x41\x2a\x7d\x1c\x35\x44\x33\x56\x6f\xff\x69\xf3\xbb\x3e\x25\x00\x93\xaa\x41\x69\xd5\x60\x4a\x29\x0c\xac\xe6\xd1\x85\x74\x57\x87\x96\x16\xd1\xd2\x53\x2d\x4b\x23\x08\xd7\x8a\x25\x73\xf2\x92\xce\x1b\xea\xd6\x02\x79\xb0\x63\x2f\xb9\x65\xce\xc5\x50\x0c\x95\x4d\xc4\xdf\x57\x63\xf2\x7e\x53\x34\x06\x42\xd4\x0e\x0d\x69\x5b\xca\x07\x9d\x78\xc5\xd0\x2a\x04\x26\xb0\x89\x70\x3b\xb5\x82\xda\xdd\xee\x9d\x5e\x5d\x4e\x6f\xf7\xa0\x7e\xa9\x61\xf4\x96\x5a\xdc\x53\xdb\xb2\x15\x7a\x8d\x2a\xb9\x82\x04\x3c\x9a\x24\x6d\x6a\x3c\xc0\xe6\x6f\x9c\x81\xe6\x00\x2d\x07\x90\x8f\x46\x33\xba\x62\xd6\x64\x72\x75\x76\xf3\xe9\xea\xc2\x8c\x7a\x7c\x72\x72\x36\xbd\x19\x93\x4f\x2a\x78\xeb\xed\x83\x1c\x01\x83\x76\x4f\x1b\x99\x83\x51\xb4\x4a\x93\xbc\x45\x4d\x2e\xa6\x9f\x6e\x6e\xf7\x90\x4c\xfd\xbe\x85\x96\x00\x11\x71\x64\x58\x3b\x3a\x5a\x27\xf4\x54\xe3\x48\xb6\xab\xd8\xed\x1e\xc2\x14\x6e\x39\xe4\x4c\x6e\xf6\x44\x6a\xc0\x10\x69\x89\xf8\x92\x2a\x28\x8e\x8b\x1d\x1c\xd2\x4c\xba\x02\xb7\xee\x70\x43\x63\x87\x51\x09\xb6\xce\x6e\x23\xd8\x39\x44\x11\xf8\x45\x93\xc4\x29\xeb\x0e\xb0\xc6\x93\x2b\x6c\x4e\x04\xf0\x3b\x04\x53\x13\x00\xed\xd6\x5b\x43\x0a\x77\xa6\xc5\x6c\xcd\x23\x8c\xb9\x9e\x66\x52\xcb\x48\x76\xaa\x3d\x20\xa3\xfa\xa1\x45\x18\x66\x98\xda\xd7\x09\x8d\xad\x8d\xcd\x2a\x3c\x2b\x16\xdb\x69\x82\x32\x17\x44\x73\x1f\x18\xee\xe5\x2e\x29\x20\xb1\x63\x3b\x57\x37\xd3\xab\xcb\x9b\xcf\xef\x2f\x2f\x6f\x50\x4b\x4a\xd8\x5c\x93\x59\x42\xc5\x5d\xa3\xfd\xa3\x41\x09\xf0\xd6\x7a\xbd\x4b\x7f\xaf\x1b\xdb\x6e\x55\x6f\x75\xc5\x72\xd6\x2e\x29\x76\x59\x6c\x85\x22\x05\x06\x85\xc8\x54\xb7\xc8\x03\x92\x30\xba\xb6\xd1\x42\x41\xbd\x1b\x04\x2f\x30\x48\x2f\xa5\xb4\x92\x73\x6d\xc4\x47\xb4\x04\xb6\xee\x99\x13\x29\x84\xd1\x11\xef\x26\x02\x6a\xda\x35\x45\x1c\xb4\xf2\x5a\x87\xcd\x57\x2e\xcd\xf9\x94\x25\xc1\x38\xf6\x36\x80\xb6\x06\x69\xb6\x59\xb5\x03\x63\x8d\xd5\x17\x32\x66\x50\x13\xb8\xeb\xf8\xcf\xfc\x17\x4e\x26\xa7\x57\xe6\x25\xd4\xe2\x12\xf3\x2f\x39\x27\xe6\xdb\x7d\x50\x05\xdc\xe8\x23\x21\xc5\x08\x83\x29\x21\x2d\xb7\xc5\x2f\xbb\xa2\x1b\x77\x5e\x68\xd5\x2d\x98\x10\x38\x03\xb0\x2f\x30\xf3\x8c\xc9\xf6\xd7\xb0\x7e\xe8\xe2\x57\x0d\x71\x8d\xca\x0a\x96\xa1\x92\x26\xcf\x50\x74\x73\x4e\x79\x62\xe4\xeb\x89\x98\xc9\x5c\xc4\x46\x6c\x68\xd2\xe4\xab\x12\xc7\x87\x86\x17\xab\xfb\xfc\xe9\x74\x7a\x78\x73\x32\x45\xc3\x7f\x70\xf5\x22\x86\xc3\xb0\xfe\x42\xcf\xbe\x88\x1c\x36\xe4\xfa\x05\x5e\x5e\x70\xf8\xd0\xa8\x52\x10\x9e\x65\x4c\xa5\xb6\x10\x6a\xd9\x9f\x37\xcf\xb8\xde\x14\xec\xc1\x11\x0a\xdb\x64\xd6\xf0\xf5\xb5\xe4\x41\x0e\x43\xa3\x08\xca\x8d\x02\xe3\x88\x72\x6c\xd2\x2e\xe7\x73\x42\x11\x1e\x10\x2a\x0c\xb4\x59\xc6\x22\x5d\x8b\x2f\x23\x1f\xc2\x41\xdc\x33\x1a\xdd\x8d\x2a\x1d\x84\x0e\x5c\x28\x78\x41\x9d\x5d\x4b\xc4\xb2\x55\x36\xd7\x8e\x18\x35\x95\x99\xbf\xdd\xd3\x51\x7a\xbb\x07\x52\x0b\x85\xfd\x0d\x0f\xe3\x6d\xb4\x2f\x47\x05\xd7\x8f\x61\x55\x86\x3a\x19\x82\x78\x53\xfa\x83\x29\x48\x0a\x80\x05\xb8\x15\x70\xd8\x07\x85\x51\xa0\xb1\xc9\xa1\x90\x02\x9c\x75\x85\x72\x67\x23\x95\xac\xd3\x4e\xa9\xa5\x73\x09\x1b\x2c\x39\xfd\xe1\x64\x5a\x71\xd8\x46\xe9\xd1\xdb\xb7\xc1\x38\x9b\x3c\x4e\x8f\xde\x7d\x7b\x00\x8f\xbc\xf9\xdd\x77\xf8\x8f\xb7\x5f\x95\xff\xfa\xf6\x35\xfe\xeb\xdd\xd7\x5f\x7f\x65\xff\xf5\xee\xdd\xbb\xe2\x5f\xbf\x0b\x31\xe5\xe6\xcb\x57\x2d\xce\x61\xce\x6d\x2a\x51\x7b\x8d\xe4\x6a\xe6\xe5\x16\xb9\x33\x3d\x80\x2d\x3a\x28\x90\xbf\x21\x60\x7f\x5a\x30\x68\x11\xa3\xe1\xc9\xc5\x70\x95\xed\x3b\xc3\x96\xa1\x8e\x04\x15\xc1\xc2\xf6\x71\xd2\x2b\x3f\xc0\x40\xd2\xf1\x7a\x4b\xc5\x25\x52\xec\xc2\xa3\x41\x68\xed\x78\x3c\x6a\xec\x21\x3c\x2a\x66\x6e\xa6\xa0\xed\xf5\xd3\x5a\x29\xe8\x65\xae\x1f\x49\x42\xb7\xde\x7c\x62\x1a\x2a\x73\xbd\x90\x3e\x0d\x05\xa9\xb6\x9b\x8a\x6a\x39\x50\xd1\x5f\x94\x8a\x4a\x8b\x08\x4f\x43\x46\x25\xe8\xf9\x4c\x47\xf1\xfe\x3e\x94\x04\x12\x31\xcd\x62\xeb\x83\xd7\xd2\x06\xea\x34\xb6\xa7\x43\x34\x8a\x25\xc3\x25\x2f\x98\x36\x07\x06\x87\x85\xfa\xac\x8e\xe2\x4a\x48\x97\xd9\x00\x73\x9c\x86\x50\x37\x19\xad\x4f\x2f\xae\xeb\x34\x7c\x17\x02\x1d\x3c\x28\x4b\xb3\x0f\x80\xec\x7f\xf3\x15\xfe\x77\xa0\xe1\x03\x0d\x0f\xfe\x1a\xa6\xe1\x8c\xea\x3c\x63\xa7\x4c\xb3\x48\x5f\xae\x59\x96\xf1\x6e\x93\xfb\x87\xd0\x4b\x45\x9f\x20\x2d\xc1\x2f\x91\x39\xbf\x8c\x9d\x22\x8c\x7b\x9a\x59\x2b\xd3\x8f\xe8\x80\xa5\x99\x87\x1f\x84\x0b\x42\xd1\xaf\x47\x14\x4b\x29\x76\x97\x06\xee\x00\xe4\x52\x04\xcd\x63\x2a\xa5\x91\x51\xd3\xd9\x03\x5d\xa5\x09\xfb\x3d\xb9\xdd\xbb\xbe\x38\xbe\xf9\x90\x27\xc9\xe6\x0a\x3c\x60\xff\xae\xb3\x9c\x1d\x7c\x3c\xbe\xfe\x0f\xff\x4b\x88\x28\x3b\xb8\x62\x90\x10\x77\x9d\xa7\x40\x2e\xce\x65\x74\xf7\xef\xb7\x7b\x41\x4c\xbd\xdd\x03\xf7\x85\x8d\x1b\xc7\x4c\xad\x3d\xa4\x89\x73\x99\x45\x95\xd5\x1f\x60\x33\x76\xf3\xa8\xb4\xae\xcd\x66\x37\xb2\xd9\x04\x9a\x6b\x39\xc2\xfd\xd9\x59\x21\x9e\x27\x12\x7c\x40\x93\x69\x98\x15\x3b\x23\x4c\x63\xf0\x63\xf5\xb4\xcb\xd1\xca\xba\x51\xa5\x77\x05\x03\x3c\x6a\xf1\x11\x8b\x8c\x06\xb9\x80\x83\xcc\xab\x48\x16\xd4\xf7\x1a\xe3\xe7\xad\x26\x1d\xfa\xa9\x79\x39\x6d\x7b\x05\x5d\xcb\x79\xf4\xc7\xd3\x69\xdf\xc0\x92\xef\xeb\x6f\xd8\x08\x0d\x45\xec\x2f\xe4\x8f\xa7\x53\xa2\xa4\x8b\x05\x22\x11\xcd\xc2\xc9\x15\x20\xb4\xc4\x52\xec\xef\x6b\xa2\x10\xe1\xe0\x5d\x39\x9f\x83\x69\x4d\x66\x24\x06\xbf\x03\xb8\x61\x20\x5a\x14\x98\xe2\x1f\x4f\xa7\x28\x7b\x04\x0d\xb9\x36\x30\x84\x99\x7b\xc3\x44\xcc\xe2\xd2\x4d\x64\x78\x1a\xcc\x96\x66\x72\x6d\xee\xe7\x8c\x69\xb0\xeb\x95\x01\xec\x0d\x70\x8a\xc2\x96\x3a\xfe\xe2\x20\xcc\x25\xa3\x89\x5e\x3e\xd2\x26\x82\x2f\x1b\x81\x71\x47\xa3\x0c\xbe\x38\x0d\x93\xff\x56\xc2\x5f\x84\x42\x9f\x3d\x44\x49\xde\xc3\x23\x39\xa9\xbd\x80\x52\x2d\xd0\xb1\x51\x8d\x8e\x41\xbb\x91\xce\x68\xf0\x4a\x10\x3c\xb3\x83\x82\x89\xd1\xb6\x4c\x71\x3d\x79\xab\xa2\xed\xb8\x29\xcc\xa2\x2a\x2e\x55\xe2\x96\x6d\x62\xc6\x42\x48\xf3\x55\x19\xc8\xb4\xbf\x4f\x26\xd3\x1f\xaf\x49\x9c\xaf\x56\xc1\x00\x82\x62\x19\x07\x2e\x88\xdf\xf2\x03\x97\x42\x99\x6c\xc8\x6c\x53\x89\xbd\xa9\x7a\x16\x82\xd6\x6d\xbb\xd6\x55\x9e\x68\x9e\x26\x5e\x3c\x3e\x26\xfc\x92\x5c\xa1\x2f\xd5\xfc\x27\x61\x2e\x4b\x13\x02\x5b\xf8\x76\x36\x27\x81\x6c\xc2\xd4\x16\xe3\xda\x4a\x4f\x50\x20\x68\x87\x7e\x00\x38\x41\x7e\xb9\xcf\x68\xda\xe4\xe7\xc1\xed\x04\xd6\xb4\xbf\x7f\xb8\xbf\x8f\xc3\x59\x3e\x44\x96\x68\x1b\xb5\x91\x46\xfb\xfb\x87\xff\x65\xf6\xe2\xf0\x60\xcd\xf4\xf2\xcd\x7e\xe0\x12\xd9\x94\x2e\xb7\x07\x68\x6d\x28\xa2\xf2\xe1\xb4\x66\x6c\xc1\x85\x9b\xd1\x0c\xb7\xbf\x6f\x9b\xe2\x28\xd9\x64\x85\x2d\xb7\x70\x7f\xdf\xce\xed\xdf\x69\x38\x20\x9e\xae\x55\x4b\x58\x6e\xf8\x86\x15\x03\x4f\x33\x36\xe7\x0f\xfd\xaf\x09\x3e\xef\xec\xd6\xd5\x23\x86\x68\x8f\xa2\x39\x60\xd1\xf6\x26\xb8\x5b\xdb\x3e\x30\xc8\x90\x00\x55\xc3\x70\x9d\x9c\xab\x25\x3a\x02\x56\x01\x4d\xb0\x75\xaf\xd4\x98\x5c\x48\x0d\x34\x82\x30\xb1\xe6\x99\x14\x2b\x70\xb8\x4b\x5b\x5c\x91\x0a\x32\x33\x7c\x7b\xc5\x34\x4d\x10\x03\x65\x16\x2d\x99\xd2\x19\xd5\x32\x5c\x15\xb4\xe0\xa6\xe8\x47\xa0\xa9\x91\x7d\x33\x4e\x35\x4b\x36\x55\xdc\x91\x79\xe6\x07\x15\x82\x55\x48\x46\x77\x0d\xad\x32\x0d\x19\xb3\xb9\xea\xd6\xd5\x66\xce\x3a\xa2\x09\xdf\xdf\xf7\x13\x99\xcd\xa8\x97\x29\x13\xd7\x9a\x46\x77\xfe\x6b\xc1\x7b\xe3\x22\x8b\xf6\xf7\x35\x4d\xdd\x40\x3e\xe6\x98\x09\x1e\x8d\x33\x57\xd8\xa2\x07\x70\x62\x4d\x3b\x3d\x3b\x93\x86\xf7\x9a\xba\x0b\x35\x66\x4d\x66\x4c\x45\x54\x28\x1b\x48\xef\xdf\x2f\x49\xd6\x2c\xe3\xf3\x8d\xcd\xb8\xc0\x62\x9e\xa0\x6d\xe2\x3b\xc0\x8e\xc3\x96\x6d\x97\x56\x62\x08\x9e\x62\xba\xc8\xa0\xe6\x0e\x4a\x2d\xc9\xeb\x1d\x85\x3a\x9e\xf2\x96\xd8\xd7\x56\x9e\x69\x5e\xfd\x78\xf3\xa9\xfb\x42\x4e\x27\xd3\x8f\x37\x9f\xdc\x1e\x9a\x7f\x42\x24\xbb\x76\x85\x8a\xac\xd1\x1f\xbd\x46\x63\x72\xcd\xc2\x41\x19\x16\xad\xcd\xaa\xcd\x18\x5e\x8c\xe3\xd7\x5f\xef\x1e\xec\xcf\x53\x83\x7a\x3b\xe2\xc7\xfe\x24\xf4\x56\x2b\x76\x90\x8c\x61\xa2\x69\x58\x26\x4f\xbc\x88\x20\xac\x3f\x5b\xb5\x24\x10\x21\x2d\x31\xb0\x5e\x52\xf0\xe7\xfa\x66\x9f\xa0\x05\x27\x93\x77\x45\x9d\xcc\x22\x6c\x27\xdc\xd6\xaa\x98\xde\xb5\xb3\x6a\x8f\xf9\xfd\xee\xf5\xce\x11\xa5\x6e\x86\xf7\x34\xba\x63\x5b\x55\x03\xb6\x36\x79\x52\x7d\xbc\x50\xdc\x5c\x77\xd4\x99\xfd\xde\x08\x39\x0e\x76\xc3\xd2\x82\x1b\xc1\xd0\xf5\x57\x31\xe7\x80\x7b\x71\x41\x83\xee\xe4\x3e\xeb\xf8\xc0\x13\xcd\x32\xc8\xb0\x6e\x0c\x27\xe9\x33\x8e\xd1\x02\x3f\x34\xc7\xdd\xd4\x31\x6f\xfb\x25\x87\x78\x86\xca\xf8\xf5\xb6\xdc\x04\xa1\x1d\x49\x64\x74\x47\xe6\x3c\x61\x63\xf2\x9f\x46\xfa\xa0\x1b\x48\x50\x44\xf7\x29\x84\xff\x01\xd7\xb0\xf6\xbe\xe2\x69\xa7\x00\x84\x4b\xa8\x72\xed\x19\xc4\x0a\x68\x5e\xce\x3d\x5e\xe3\x87\x55\xac\x68\x9a\x32\x4c\x78\x15\x5a\x16\xd1\xd5\x0d\xcc\x4c\x53\x2e\x58\x66\xae\x15\x25\x31\x9f\xcf\x59\xc6\x84\x26\x29\xd5\xcb\x57\x3e\x9f\x38\xcc\x72\x71\xf8\x60\xb5\x09\x03\xf7\x63\xd1\xd4\xec\xf0\x34\x93\x33\xb6\x03\x55\x68\x78\xd3\x1d\x10\x44\x9a\xd7\x8c\xc9\x41\x59\x03\x9b\x13\x63\x44\x3a\xd5\xda\x68\xf7\xc0\x33\x68\x04\xe6\x9d\x6a\xf8\x09\x1c\x0e\x9f\xdb\x74\x5e\x21\x83\xb2\x06\x5d\x53\x0e\xe5\x68\xc7\xd5\x98\xf4\x15\xbd\x73\x21\xe5\x10\x39\x6e\xd3\x67\xf8\xda\xaa\x00\xee\xf4\x1b\x94\x41\x73\x2e\xa0\x06\x1e\x40\x02\x8e\xd1\x1f\x61\x98\x93\xe9\x27\xff\x50\xbe\x79\xbd\x7a\x34\xb9\x30\xbb\x79\xc3\x57\x4c\xe6\x9d\x1e\xea\xca\x09\xd8\x77\xda\xf6\x1e\x36\x3a\x68\x49\xb0\xf9\xdc\x95\x3d\x86\x30\xf3\xd7\x07\x1e\xd1\x04\x4b\x33\x1a\x92\xb9\x2a\x8d\x31\x8d\xe2\x00\xc8\xf8\x6a\x49\x83\x27\x08\xd7\x0b\x63\xa8\x92\xa4\x4a\xec\xad\x40\x1e\xe6\x1c\x46\x16\x37\x87\xe8\x4e\x6a\x4c\x7e\x32\x07\x67\x73\x37\xca\x5c\x78\xa3\x91\xd3\xf2\x22\x1d\x34\x47\xff\xba\x8c\x24\x33\xa2\xb9\x4e\x36\x4f\x4a\x66\x1b\x47\x59\xbc\x3c\xf7\x95\xcc\x6d\x51\x65\x1b\x80\xe4\xf5\xd0\x0c\x8d\x2e\x33\xf7\xc4\xdc\x55\x0c\x41\x80\x2a\x49\x7b\xaa\x90\x72\x1e\x8b\x36\x1f\xa9\xd1\xd9\xbe\x9c\x3a\x7f\xa4\xd9\xdd\x47\xaa\xba\xb3\x38\x27\xb5\x17\x1c\xe2\xad\xcc\xbf\x7d\x45\x1b\xfa\x88\x2a\x43\x2c\x43\xfb\x33\x99\xde\x20\x52\x98\x71\xc8\xcc\x90\x54\xa8\xba\xe6\x12\x77\x66\xe6\x14\xbf\x7a\x6b\x7e\x21\x4b\xf6\x40\x63\x16\xf1\x55\xd9\xd5\xc5\x20\x50\x10\x4f\x34\x49\x18\x55\x9a\x7c\x8b\x63\x2a\xa6\x0f\xc0\xc5\x61\x8e\x14\x19\x6a\x94\x50\xb5\x74\x51\x7c\x1b\x8b\x81\x2b\x07\x45\x58\x17\x70\x51\x3f\xe0\xc0\x82\x98\xf0\xca\x31\x3e\xcc\xe7\xaf\xe1\x13\x3a\xc5\xc7\x37\xba\x2c\x4f\xe7\xe2\xf8\xe6\xd2\xba\xe1\x0a\xa1\x1d\xf9\xf2\x23\x8f\x7b\x2a\x95\xfe\x29\xe3\x9a\x41\x80\xcf\xce\xa4\x3f\xfc\x7a\x5d\x32\x84\x70\xb7\x46\x2a\x61\x24\xbb\xd8\x9c\x0c\x25\xf7\x66\xa8\xed\x5c\xa4\xa2\x97\x7d\xb4\x64\x31\x46\x10\x42\x52\x6f\x46\x49\xc6\xc2\x91\x7c\x33\x54\xc2\x8a\x52\x06\x98\x28\x8b\x59\xf9\x30\xc9\x3d\x45\xce\x1e\x25\x72\x36\x63\x19\xaa\x17\x54\x54\xe8\x50\xd0\x50\xed\xa7\x6a\x40\x56\x99\x8c\xa2\x3c\x33\x0c\xc9\xbd\x4d\xd3\x34\x71\x1d\x83\x2b\xb8\x52\x98\x0c\x1b\x74\xa7\x94\x45\x7a\x9b\x52\x8e\xbf\x28\xaf\xc9\x0d\xb5\xbb\xc8\x1f\x7c\xef\x11\x2a\xa1\xd5\x03\x5c\x6a\x28\xa8\xbe\x36\xa4\xd4\x3b\xe2\x76\xf1\xbf\x09\x6f\x2a\x8e\xe0\x5d\xc4\xff\x70\xe9\x4b\x80\xad\x50\x08\xd0\x46\xa1\x3d\x11\xba\x68\x9c\x8c\xc6\x29\x23\x51\x83\x70\x01\x16\x8b\x06\x0b\x91\x8d\xee\xc7\x41\x0b\xa5\x55\x81\xaf\x13\xac\x2c\x34\x03\x67\x2d\xf6\x96\xc6\x84\x19\x1b\xdb\x37\xcb\x17\x8d\x8c\xd0\xe0\xef\x9c\x3f\xa0\x5f\xc7\x3e\x6f\x6b\xbd\x91\xaf\xc7\x6f\xde\x14\x06\x41\xc3\x7d\xd1\xb0\xb7\x36\xdf\x1b\x86\xb4\xc8\x18\x6d\x88\xb0\xde\x58\xe1\xd8\x05\x28\x17\xc1\xc5\x5a\x1e\x10\x4a\x96\x5e\xd2\x1e\xa6\x53\x57\x73\xf4\x42\x43\x42\xda\x5e\x05\x89\x1f\xa3\x4b\xad\xdf\x59\x2f\xd2\xae\xfa\xfa\x5d\x3e\x63\xd0\x6e\x46\x66\xfa\x0a\x52\x99\x3a\x71\xff\x0f\x5b\xaf\xd8\xb6\x75\xce\xca\x0c\xce\x05\x3f\x2f\xaa\xa1\xba\xa6\xcd\x5b\x27\x65\xd6\xfa\x98\x5c\x0a\xcc\x74\x82\x1c\x54\x94\x09\xd0\x33\xe5\xa7\xb7\x3a\x71\xa6\x81\x0b\xf1\x74\xad\x6c\x96\x20\x6e\x7d\x8e\x32\x13\x53\xcc\x81\x05\x67\x87\xd6\xf1\xb2\xc2\x40\x5b\xec\xb3\x8d\x39\xf0\x0f\xea\x2b\xc8\x54\xfa\xea\xed\xef\xde\xfd\x2e\x98\xd0\xd7\xec\x07\x6f\x4a\xd7\xeb\x91\xb0\xd7\x9d\xb2\xd7\x95\x23\xb5\x7b\x96\x54\xab\x57\x37\x91\x0b\x48\xb5\x34\xea\xa7\xa0\x2b\x76\xc5\x16\xac\xd3\x1e\x7b\x1e\x7a\xc9\xcf\xa1\x30\x44\xd3\x46\x7f\x46\x06\x3b\x8c\x38\xdc\x40\xe6\x30\x10\x94\x67\x04\x46\x84\x24\x53\xec\xbd\x89\xf9\x65\x31\xd2\x00\x9b\x7f\xea\x30\x0c\x92\x3f\x9b\xe2\x47\x60\x32\xeb\xf6\x05\xcb\x3f\x10\xdd\xb2\x70\xcd\x82\xaf\x99\x08\x95\x1c\x2a\x92\xda\x62\x16\x37\x27\x9e\xce\x41\x22\x41\xee\x08\xcc\x10\xf1\xd1\x82\x0f\xf9\x60\x00\xe9\x6e\x34\x20\x91\x8b\xde\x66\x83\xf3\xf2\x59\xc7\xb1\xe6\x79\x92\x80\xfa\xec\xe4\x0b\xbc\x39\x89\x5c\x38\x0e\x11\x5a\x0a\x88\x8c\x1e\xdf\x00\xad\x25\x91\x50\x3c\xaa\xa2\x86\xaf\x69\x76\x98\xc8\xc5\xa1\x2f\xec\x8f\x13\x19\x2c\x68\xd6\xb1\xca\x9e\x16\xff\x73\xf7\x64\x69\x0f\x59\x54\x0c\xfc\x1e\x69\x00\xdd\x36\x33\x9a\x6b\xd3\x95\x3a\xbf\xfc\xde\xf1\xcb\xaa\x11\x3a\x92\x23\xcc\x6c\x78\xc4\x4a\xae\xd9\x9a\x65\x5c\x6f\xcc\x59\xf4\x59\x8f\xff\xbc\xbf\x2a\x65\xbf\x27\x74\x26\x41\x53\x37\xb7\xc7\xa0\x50\x90\xf6\x64\x0c\xcb\x5d\xb8\x5a\xa4\x72\x61\x2d\x3f\xe5\xc2\x26\x62\x2e\xbf\x60\x3d\xd7\x51\xc6\x58\x77\x3a\xd5\x79\xfd\x8d\x27\x5b\x93\xd2\xb1\xcc\xf5\x53\xae\x68\xd3\xcd\x16\xcf\x2b\x8f\x3f\xdd\x5a\x36\xca\xbb\x84\xe4\x42\xda\xea\x03\x42\xba\x8b\x06\xcc\xcc\x3e\xd5\x6a\xa5\x7d\xcc\x26\xac\xe8\x03\x98\xb7\xaf\xf9\x5f\x43\x38\xda\xca\xad\x5c\x15\xd2\xe3\x38\x0e\x29\x60\xd5\xed\xfb\xe8\x3d\xec\x36\xcf\xef\x25\x97\x91\x58\xae\x28\x17\xe8\xa9\x6b\xce\x80\x75\xad\xa2\x20\x6d\x8a\x0a\x42\x85\x32\x32\xe8\x8f\x1f\xc9\x5f\x72\x96\x19\x5a\x6b\x76\x2f\x4a\x64\x1e\x8f\xb8\xe0\xba\x80\x12\x8a\xba\x16\x2e\xaa\x70\x14\xdc\x12\x8c\x5c\x19\x9a\xc5\xe2\x22\xcb\x6a\x45\xa3\x25\x17\xac\xb0\xb2\x08\xb9\xa6\x23\x9a\x72\xf2\x52\x66\xd0\x35\x6a\x96\x0b\x9d\x07\x87\x74\x8f\x8e\x1c\x18\xaf\xc6\xe4\xb8\xec\x3f\x0d\x04\xf6\x65\x44\x15\x83\x3c\x31\xa1\xb8\xe6\x6b\xf6\x8a\xac\x18\x15\xcd\x66\xa0\x8a\x0f\x1f\x42\x29\x99\x26\x79\x0a\x8a\xfc\xc5\xf1\x0d\x66\x03\x3b\xab\x96\x9b\x18\xa8\x7f\x07\x06\xbd\x79\xfb\xbb\xf1\xeb\xf1\xeb\xf1\x9b\x9d\xd1\xc8\x4e\xd2\x10\x13\x11\x46\x05\x17\x1c\x08\x1a\x95\xf9\xb7\xb5\x37\x15\x10\xe3\x59\x63\x7c\x4a\x43\x2d\xc8\xd5\x0c\x72\xe2\x81\x99\x63\xcf\xb8\x71\x05\xd3\x5e\xf2\x39\xec\xd0\xfe\xbe\xb9\x59\xfb\xfb\xaf\x0e\xbc\xe0\xb2\x06\x25\x08\xb6\xb2\xd8\xc8\x03\xf4\xef\xbe\x79\xf7\xdd\xf8\xed\x37\x5f\x8f\xed\x7f\x8f\xbe\x05\x85\xca\x9f\xeb\xc8\x5f\x57\x50\x79\x9e\x08\xc8\xf5\x27\xe6\xbc\x6d\xe3\x00\xef\x10\x9d\x45\x7e\xc6\x5c\xff\x41\x8f\xc0\x7d\xfb\xbb\xdf\x7d\xd3\x52\x56\xa2\xe9\x86\xea\x7c\x97\xf2\x8b\x1f\x6f\x3e\xfd\x12\xa5\x17\xc1\xe3\x59\xb1\x4e\xd0\x24\x82\xf4\xdf\xc2\xdc\x18\xf6\x0b\x7c\xbc\xf9\x54\x2d\x16\x51\x16\x1c\x6c\x2b\x36\xf8\x65\x95\x05\x05\xd5\xce\xe8\xd4\x33\x73\xce\x33\x53\xd9\x37\x3c\x77\x96\x21\x59\xd5\x34\x3a\x90\x4e\x6c\xd8\x54\x53\x45\x09\x14\x95\x0d\x4a\xc2\xb5\x76\x15\xb1\x04\xa1\x3e\x7c\x24\x95\x32\x29\x4a\xc2\x75\x64\xd0\x15\xe5\xa5\x6a\x69\x79\x7e\xf6\x1c\x60\x40\x09\xb0\x35\xe7\x14\x5b\x1c\xa6\xa1\x95\x62\x60\x0e\x08\x29\xc8\x4b\x0e\x81\x63\x4e\x59\x2b\xcd\x3c\x1f\x8f\xaf\xff\xe3\xd3\xd9\xd5\xf1\xe9\x19\xd1\x34\x5b\x30\x1d\x28\x66\xd6\x71\x42\x85\xae\xfa\xab\x15\x4f\xb1\x65\x53\x00\x08\xef\xb8\xcb\xfa\x29\x56\x71\x56\xc5\xf9\x98\x0d\x6e\x72\x47\x60\x90\x33\x85\x1c\x7f\x44\x90\x18\x0e\xb8\xc8\x42\xb8\x38\xbe\xb1\xa6\xff\x5c\xb8\xb8\x8c\x96\xea\x0e\x33\xb6\xa4\x6b\x2e\x33\x47\x62\x5d\x3c\xa1\xc2\x70\x8d\xc6\x5c\xc9\xa7\x2d\xc7\x21\x98\x4e\xb8\x68\xf1\xef\xb4\xed\x37\x44\xe2\x1b\x70\xaf\xd8\xa2\x4f\x36\xff\x65\xf5\x79\xc7\x68\x3c\xf1\xc2\x90\xb6\x82\x9c\x19\xfe\x98\x69\x6e\xe8\x50\x50\x2d\x47\x0a\x36\x63\x89\x14\x0b\x2c\x1b\x3f\x31\xb7\x0f\xa2\xc9\x46\x76\x20\xb4\xbd\x1d\x96\x71\x30\x31\x4b\x13\xb9\x59\x31\xa1\x9b\xe5\x0d\x17\xca\x5e\xf6\x51\x85\x8c\xf8\xa5\xbc\x07\x4c\x80\xea\xc1\x38\xf9\x4b\x2c\xa4\x53\x1a\x0f\x57\x32\x66\x49\x70\x64\x94\x4b\x50\x0d\x8b\xe6\xd0\xd3\x04\x8b\x05\x14\xe1\x46\xe6\x46\xc2\xd8\x91\x5c\xa5\xb9\xad\x82\xf7\xca\x76\x25\xc8\xc3\xf1\x6e\xa5\x8a\xfc\x27\xd4\x8d\xfe\x5c\x9e\xca\x67\xbb\x07\x28\xda\x78\x8b\x31\x22\x1d\xcb\x75\x26\xc5\xd8\x7c\x1b\x84\xd6\x82\x82\x85\xf8\x4a\xa6\x77\xb6\x4a\xf5\x66\x57\x51\x04\x13\x6a\xa0\x4e\x18\xd5\xcb\x9e\xda\xe4\x34\xf0\x92\x1f\x85\x3e\xdb\xd8\x33\x80\x0a\x98\x50\xef\x3f\xa2\xe1\xba\x80\xb6\x80\x08\xb2\x70\xcc\x11\x71\x05\x38\x5d\x21\xc7\x03\x92\xf0\x3b\x46\x8e\x3d\x4b\x79\x42\x37\x2c\xeb\x97\xf0\xfe\xb8\x5d\xc9\xe4\x8a\xe9\x25\xcb\xd5\xf7\xf2\x23\xd3\x19\x8f\xfa\xd6\xfe\xdb\x9f\x36\xbe\xea\xec\x02\x8a\x7c\x2f\x8d\x70\x0c\x5e\xd7\x15\x3e\x12\x16\xd7\x92\x04\x83\xf4\x5d\x60\xa7\xc1\xa5\x72\x7c\x57\xa1\x14\xf2\x65\xca\xd4\xf8\x03\xa4\x80\x8a\x05\x91\x52\x4b\x8c\x1d\xb6\x92\x01\xda\x64\xed\x5d\x47\x2f\x99\x9c\x3b\xa0\x6c\xf7\x54\x16\x1f\xe0\x73\x0d\xec\xd6\x83\xc8\xc8\x14\x5f\x5c\xe1\xb6\xdc\xfc\x47\x6f\x7d\x6d\xe3\x5d\x98\x78\x6d\xff\x5a\xf6\xde\xea\x4d\x5c\x38\x1f\x71\x51\xf7\xd3\x2c\xe9\xcb\x23\xb1\xb7\xd6\xd8\x10\x57\xdd\xb1\xc0\x1f\xa4\x2a\x74\x02\xf4\x3b\xbb\x3a\x41\xe5\xa3\x41\xd2\x64\x0f\xd8\x2e\xd3\x15\x13\xe3\x22\x06\x5a\x5d\xae\x8e\x7d\xd9\xed\xb1\x60\xf6\xd2\x73\xb6\x16\xe7\x2b\x3c\x2e\x19\xf1\xc9\x17\xf8\xdd\xeb\xef\x5a\xd4\xb7\x06\x61\xa7\x5c\xe0\x14\x5d\x4e\x8f\x46\xd4\xe0\xfb\x25\xa1\x70\x01\x6d\x03\x95\x68\xb9\x41\x3f\xf1\x8c\x7d\x9f\xd3\x2c\x7e\xf4\x29\x34\x8c\x50\x9e\xc3\x3d\x37\x7a\x1d\xcd\x82\x12\xa8\xdb\x87\xc7\x9e\x44\x58\x25\xc4\xc3\x79\xe4\x49\x84\x9d\xab\x78\x38\x4f\x7e\x12\x19\x5b\xc9\x35\x73\x15\x30\xae\x7a\xb5\xe7\xfe\xa9\x9a\xc3\x64\x8b\x2d\xaf\x99\x8d\x70\x75\xed\x43\x6d\x45\xfe\x35\x6b\x0a\xdd\x9a\x31\x56\x29\xab\xe2\x24\x8f\xb1\x4d\x4a\x42\x8d\xce\x95\x8a\xc1\x84\xd9\x42\xc0\xf0\x7c\xef\x4d\xf9\xb8\x10\x42\x44\xe3\xb8\x0a\x57\x99\x7f\xec\x4a\xc4\x7a\x95\x69\x6c\xc1\x0e\x46\xc3\x83\xde\x33\x84\xc5\xae\xd7\x01\x93\x6c\x6c\x4d\x1c\x3b\xc3\xce\x67\x60\x0b\x9e\xf4\xf6\xd9\x5f\xd5\xdf\xa8\x64\x01\x98\xbf\xb7\x82\x74\x1b\xb3\xc1\x6d\x6c\xa3\xce\x55\x19\xea\x64\x24\x6e\x48\xe8\x83\xc8\xb0\x4a\x60\xd8\x47\x2b\xc3\x0b\x29\x46\x7f\x65\x59\xd0\xb0\xc4\x3d\xeb\xa3\xa7\x18\xa8\xaa\xcb\x71\x67\xdf\x70\xb1\x4f\x37\x37\xe7\xfd\xb7\xe8\xe6\xe6\xdc\x0f\x95\x1b\x69\x39\x4a\xf8\x9a\x15\x11\xe6\xa0\x83\x22\xa9\x1e\xdd\x37\x74\x81\xb0\xfb\x63\x77\xb1\xca\x82\x76\x5f\x86\x41\x92\x5d\xa3\x34\xae\x02\x2f\x7d\x41\x5c\x76\x51\xd5\x69\xf7\x08\x0d\xb2\xa4\x61\x6b\xff\x63\x23\x34\xb0\xba\x94\x0b\xc6\x68\x57\x08\x1e\xbb\xdd\x58\x0e\xaa\xdf\x2e\x5f\x3b\x67\xad\x9f\xb4\x99\x39\x37\xe2\x82\x61\x88\x5b\x7b\xf5\xfe\xa2\xb9\xec\x98\x8c\x88\x6b\x4b\x35\x99\xaa\x23\x34\x83\x05\xcb\xce\x45\x52\x28\x9d\xe5\xe1\x16\x9a\x8e\x76\x8d\xec\x9e\x4e\xa6\xc7\x1f\xab\x21\x2b\x23\x18\xda\x7c\x0f\x67\x59\x19\xd1\xbd\xfe\x98\xad\x83\xa8\xbd\x26\x83\x53\xa0\xc5\x73\xd9\x49\x83\xc6\xae\x76\x9a\x8d\x76\xc1\x93\xb6\xa6\x30\x73\xef\xd6\x34\xe3\x32\x2c\x04\x7a\xfd\x7a\xae\xaa\x60\xd4\x4c\x4e\xd0\x14\x95\x55\xfb\xd6\x92\xe6\xf8\x70\xbf\xf9\x8c\x95\x2c\x73\x15\x6a\x9b\xd1\x91\x51\xbf\xa2\x21\x55\x9b\xf4\x49\x87\x5f\xf1\xa6\x76\xd3\x1d\xaf\xb6\x24\xc1\x8f\x0c\x40\xc1\xaf\x43\x11\xed\x6d\x89\xef\x56\x73\x3f\x97\x32\x9d\x62\x7d\xd4\x3e\x26\xa8\x9f\x50\xe6\xc1\x28\x18\x70\x76\xad\xcd\xe6\x29\x06\x06\x98\x92\xd9\x1e\xb8\xa2\xab\x6d\xf7\x27\x91\x32\x55\x5e\x3b\x08\x32\x99\x5a\x71\x82\x66\xcc\x86\xe9\x9b\x53\xc3\xa2\x72\xb6\x3e\x28\x81\x1c\x44\xb3\xa2\xc6\x58\x12\x5b\x4f\x10\xf3\x87\x8b\x2a\x15\xa7\x17\xc7\x37\xfb\xfb\x71\x3d\xcd\xf2\x93\x48\xc0\x9c\x5d\xb4\x6b\x70\x89\xd2\x7b\x41\x09\x8d\x0b\x17\x6d\x4a\x15\x23\x2a\x8f\x96\x6e\x85\x76\x39\x91\x14\x9a\x0b\x8c\xa6\x9a\xd9\xa2\x45\x95\x62\xab\xa1\x51\x1f\x53\xf1\x4f\xf1\x98\x45\x34\x3b\x8e\x22\x96\x30\xcc\x4c\xeb\x2b\x55\x5f\x37\xbe\x5a\xa8\xe1\xec\xc1\xb0\x9b\x15\x10\x7a\x37\x55\x03\x3b\x28\xc6\xf8\x62\x8d\x1b\x22\xcb\x7a\xd4\x85\xab\xae\xe6\x53\xe8\x2d\xc7\xc4\x09\x15\x52\x6c\x56\x32\x77\xd5\x7f\x5d\x50\x5d\xd0\x81\x80\xd2\xba\xdf\x88\x44\xf1\xbf\x32\x5b\x03\xb1\xda\x56\x77\x4c\xce\xe5\x42\x91\x7b\x9a\x09\x2e\x16\x46\x68\xd0\x79\x53\x13\xea\x19\xa4\xc9\xd9\x7a\xf7\xce\x05\xe8\x65\x30\x42\x5d\x1a\x0a\xd5\x81\xf9\x9c\x47\x54\xe8\xb2\x9a\xce\x3a\x4f\x04\xcb\x28\x16\xb0\x09\x0d\xbe\xa4\x0a\x45\xec\x98\xab\x48\xae\x59\x56\x86\x0f\xb9\xf8\x41\x39\x77\x8b\x2f\x1b\x48\x77\x60\xe4\xa3\xb4\x8c\xea\xf9\x4d\x04\xd7\x9c\x26\x4d\x35\x02\xdb\x0e\xd1\x7f\xb5\x5a\x91\xdf\x35\x3d\x88\xcd\x4f\x61\x6d\x63\x2e\x0b\x2e\xbe\xa2\x77\x0c\x3d\x7e\x66\xe0\x5a\x28\xdc\xce\x22\x46\x7d\x79\x3d\x65\xba\xfa\xd2\xac\x54\x57\x59\xd6\x96\x40\xdf\x6c\xb0\xc7\x35\x05\x64\xd4\x6f\xdf\x7d\xfd\xa8\x45\x61\x9a\x8f\xa0\xc9\x69\xcf\x7a\xce\x0d\xa7\xbf\x7e\x48\x68\x0b\x09\xea\x7e\xb7\x4f\x16\x26\xf4\xeb\xfc\xc7\x4b\xc3\x04\xf8\x1f\x53\x3e\x01\x5e\xfc\xf1\x62\xb2\xeb\x7b\x85\xb5\xa3\x2f\x95\xfc\xa9\xf6\xc2\x76\x25\xf8\xe2\x09\x8f\x8f\x3f\x4b\x9f\xb1\x02\xf6\x1f\xa4\xd2\x67\x22\xca\x36\xe9\x2e\xdc\xeb\xa7\xd6\xd7\x5b\xd6\x15\xa4\x9e\x52\x69\xa3\x2b\xda\x64\x77\x37\x98\xbf\x05\x4f\xb7\xde\x22\xc5\xe3\x82\xae\xba\xb5\x94\x9f\x82\xaf\xd5\xc4\x62\x70\xfe\x59\xb7\x7b\x43\xd0\xb2\x79\xcc\x3b\x5b\x37\x98\xbf\xae\xfb\xc5\xd8\xba\xbf\x76\xa4\x1e\xc5\xd2\xce\xb9\xd2\xcc\x70\xc2\x5e\x76\xe4\x9f\x82\xaf\xd5\x7a\xaf\xb8\x9f\xd0\xa8\xdc\xe4\x5b\x9e\x6d\xca\xc5\x55\x52\xf6\xde\x7c\xfb\x76\xf7\x7b\x5c\xac\xa7\x0f\x2d\xfa\xc9\x7b\xb8\x0a\xbb\xf9\xc2\x92\xa3\xd0\xce\x87\xd6\x71\xcd\x58\x2b\x51\xfa\x92\xc5\x5c\xa1\x84\x7a\x95\x27\x6c\x9a\x71\x69\xe4\x8a\xfe\x8b\x0b\xbc\x5c\x5d\x6c\xea\xbe\x6d\x2c\x45\x57\xe2\x67\x6d\x4b\x9c\xe8\x9c\xe5\xd5\x70\xce\x70\x27\x8d\xd6\xc5\x3e\xc4\xbd\x9b\x5f\x05\x8a\x13\xfd\xf1\x74\x5a\x15\x65\x0d\xac\x2a\xe7\xda\xb6\xb6\x84\xd2\xc9\x61\x04\x2c\x4a\xd1\xc6\x4c\x6c\xb6\x43\x6e\x1f\x25\x48\x3d\xc4\xe9\xae\x96\xa3\x3f\x9e\x4e\x9f\x36\x9f\x1f\xea\x34\x3d\x2a\x95\xdf\x9a\x85\x82\x6c\x77\xbb\x89\xa7\xcc\x6c\xe7\x5a\x2c\xeb\x0e\x36\x85\xb0\x05\xe9\x8f\xa7\xc1\x24\x9f\xed\x84\xff\xdd\xed\x47\x61\x4d\x79\xfb\x5b\x10\xde\x63\x3f\x16\x44\x69\x99\xd1\x05\x73\x5f\xa1\x09\x11\x4e\xcb\x55\x70\x36\x54\xdb\x19\x17\xee\xb8\x88\x8f\xc8\xed\x9e\x2b\x85\x9f\x26\x79\x46\x93\xf2\x9b\xa2\x10\xbd\x3a\x22\x7f\xfa\xb3\xf9\x06\xec\xb3\xf1\x8f\x28\xc9\xdb\x6f\x6f\xc5\x68\x34\xba\x15\x34\xe5\xf6\xfb\x23\x42\x53\xce\x1e\x34\x13\x58\xa9\xc7\xf6\xf1\x5f\xbf\xb9\x15\x38\xe3\x49\xae\xb4\x5c\x5d\xb1\xff\x8f\xbd\x77\x5d\x8e\x5b\xb7\x1a\x05\xff\xcf\x53\x20\xf2\x57\x65\xfb\x1c\x75\xcb\xde\x17\x4f\xa2\x54\x6a\x4a\x96\xe4\x9d\xae\xd8\x72\x8f\x24\xef\xfd\xa5\xd2\x39\xfe\xd0\x24\xba\x1b\x47\x6c\x80\x21\xc0\x96\x3b\x3b\x99\x3a\xef\x30\xbf\xe6\xf5\xce\x93\x4c\x61\x2d\x80\x04\x49\xf0\xd2\xb6\xb4\x2f\x09\x59\x95\x6c\xab\x09\xe2\xb2\x00\xac\xfb\x05\xdd\xae\x2e\xd8\x8a\x0b\x8e\xb9\x4c\x2a\x85\xf7\x0d\x35\x39\xb5\x5e\x87\xd6\xa1\x06\x0c\xf8\x9c\xa9\x69\x94\xc5\xd3\x86\x14\xb4\x10\x45\x25\xfe\x75\x26\xf3\xf4\x94\xb4\x34\xc3\xbe\xab\x60\xf8\x0e\xc6\xb9\xc2\x71\xd0\x5f\x01\x5f\x1b\xd4\xff\xa7\xb6\x26\x6f\x8b\xd4\x45\x0e\x78\xc1\xf9\xda\xdd\xe1\x02\x7c\xfd\x42\x8d\x60\x30\x15\x49\xb3\xc7\xe7\x28\xee\x99\x5f\x76\x0e\xd4\xe6\x8f\x89\x05\x89\x81\x24\xf4\x17\x6d\xd8\x96\x16\x97\x51\xa6\x4c\x9c\xcd\x67\xdf\x7f\x7d\x53\xfd\xbd\x55\xad\xe4\x6d\x59\xf5\x00\xd6\xca\xde\xcf\x67\xb6\x59\x25\x41\xbf\x9d\x1a\x8b\xed\x3c\x50\x19\x06\x26\xa7\x34\x63\xca\x5c\xbf\x50\x82\x1a\xb9\x22\x54\xd8\x63\x6c\x6e\x96\x91\x3f\x0b\x87\xc3\x48\x8a\x1d\xcb\x30\x25\xda\x5a\xf0\xbf\x17\x9d\x17\xbe\xc2\x09\xd5\xac\xe9\x3d\xe3\x12\x57\xf9\x29\x73\xb6\x74\x6f\x75\x33\x24\x17\x5e\x87\x18\xab\x3f\x25\xef\x24\x78\xfb\xac\xe4\x29\xd9\x68\x9d\xaa\xd3\x93\x93\x35\xd7\xee\xb4\x5a\x2f\x14\xbd\x3f\x01\xf2\xc2\x97\xb9\x96\x99\x3a\x89\xd9\x8e\x25\x27\x8a\xaf\x27\x34\x8b\x36\x5c\xb3\x48\xe7\x19\x3b\xa1\x29\x9f\xc0\xdc\x05\x56\x0a\xdf\xc6\x4f\x32\x7b\xbc\xd5\xd3\xd0\xe5\x6e\x5e\x7b\x38\x85\x5d\xdb\x60\xce\xa0\x2d\xf3\x05\x1f\x5b\x57\xa0\x02\xda\x2e\x73\xcd\xf5\xe5\xcd\x2d\x71\xa3\x07\xe3\xd2\x11\xf8\xe5\x97\xaa\xdc\x07\x03\x34\x2e\x56\xcc\x46\x22\x16\xa5\x3c\xcb\xc2\x20\x50\x3b\x95\xb3\x66\x12\x26\x95\x2f\xb7\xa0\xa3\xc6\xba\xa2\xe8\xc4\x75\x8e\x05\x91\x97\xcc\xd6\x02\x8c\xc1\xaf\xeb\x9c\x6e\x59\x72\x4e\x15\x7b\xf4\x5d\x30\xd0\x56\x13\x03\xdb\xa1\xfb\x50\x41\x41\xf5\xe6\x4d\xed\x65\x81\x71\xca\xa7\x43\x89\x4b\xd3\x34\xd9\xbf\x17\x6f\xb0\x68\x6c\x1f\x19\x3d\xab\xb4\x46\xa5\xb3\xab\xa7\x08\x3d\xa1\xf2\xb9\x2c\xa3\xc2\x5d\x4d\x8f\x10\x65\x42\x3e\x02\x7a\x72\xd1\x78\x07\x32\x02\xb1\xbc\x92\xfa\xd6\x30\x1f\x7d\x33\xbf\x28\x5a\x7a\xb3\x76\x22\x90\xd3\x89\x82\xbb\x1b\x9a\x42\x8b\x75\xb4\x68\x39\xbd\xa5\x39\x54\xb1\x96\x65\x41\x2a\x6b\x4a\x22\xa0\x2f\x78\xaa\xfc\xaa\xc8\xc0\x2b\x71\xb1\x0e\xea\x4f\x41\x63\x4a\x95\xb5\x14\x44\xae\x2a\x05\x96\xed\xbd\xcd\x5c\x7e\xba\x10\x84\x09\x0d\xe7\x49\xc5\x88\xb4\xd8\x69\x7e\xa8\xd8\x7b\x53\x0b\x4e\x0c\xb3\xee\x5a\x98\x58\x0d\x6d\xab\xde\xae\x32\x3e\xe4\x13\x60\x90\xe0\xd8\xda\xc4\x97\x8c\x58\xe6\xf0\xd0\xbd\xc5\x92\x30\xfd\x45\x4b\x18\xba\x95\x63\xcd\x4d\xa8\x4d\x81\xb5\x64\x2c\xab\x49\x2e\x69\xb4\xc1\x00\x09\x9b\x8b\x22\xcc\xd2\xb9\xaf\x71\xdd\xd6\xf3\x31\xca\xb8\x66\x19\xa7\x98\x17\xcf\x8b\x14\x81\xc4\x81\x16\x6c\xf6\xe8\x1f\x54\x79\xa2\xb2\x86\xc5\xd1\x19\x31\xf2\x83\x11\xb0\x69\xaa\xc0\x31\x5e\x95\x33\x0a\x4d\x25\xc8\x3d\x92\xa2\xec\x12\xd6\xed\xc3\x54\x14\x32\x9b\x2c\xa9\x02\xf0\x58\x9d\xe9\xdc\xee\x97\xf0\x7f\xc3\xe2\x60\x41\xd8\x00\x0f\xc9\x32\x26\x22\x77\xf2\x26\x5e\x4a\x5d\x99\x6b\x0c\xee\x76\xd1\xc2\xb6\x78\x9c\xcc\xa0\xa0\xb4\x2b\x8a\xdc\x32\x61\x11\x17\xb5\x7f\x3c\xc0\x43\xb4\xe1\x62\x21\x70\xf3\x52\x89\x51\x32\x75\x48\xb4\x98\x60\xcd\x66\x0a\xb6\x86\xc9\x59\x96\xe0\xd8\x06\x0a\xba\xc0\x91\xc5\x62\x71\x74\x25\xb5\xf9\xcf\x94\x9c\x25\x89\x0d\xfa\xf1\x7b\x0f\xf7\x6c\xcb\x52\xda\xfa\x7b\x45\x52\x6a\xaa\xb9\x82\xa4\xc3\x18\xd5\x6e\x97\xa2\x25\xf6\x39\x25\x67\x36\xc7\x64\x0b\x74\xe1\x70\x52\xe1\x0e\xa8\x8d\x8f\xb1\x8b\x36\x20\x82\xe5\x98\x3f\x3c\x95\x35\xc5\xce\xdb\xe1\x0a\xd0\x0f\x4f\xd1\xe1\x90\x72\x8a\x2d\xc5\xa7\xfa\xf2\x69\xd3\xb6\xdc\x2b\xf8\xf4\xa7\xd4\x8e\x99\xd2\x36\x4f\x78\x6b\x2f\x55\x44\x5e\x7e\x50\x5c\xe8\xc0\xf6\x59\x43\x99\xb9\x98\x6d\xdd\x82\xe0\xed\x8d\x4f\x0c\x95\xd6\x61\x67\xdc\x41\xc0\x20\xc4\xb2\xf1\x29\x8d\xd8\x8d\xbd\x7c\x1d\x6d\x1b\x68\xe0\xaa\xfe\xb1\x0d\xc7\x90\xa9\x35\x20\xaf\x38\x4b\xe2\xd6\x28\xb1\xf2\x29\x00\x43\x0b\x24\xe0\x85\xf3\xd8\x90\xe9\x4a\xd5\x3a\x99\xf1\xb5\x81\x43\x1b\x06\x70\x0f\xf0\x5f\xcf\xcc\x11\x62\xd9\x16\x3f\x20\x54\x3f\xf7\x6c\xf8\x5e\xe5\x56\x1c\x3b\x4c\x3c\x02\x20\x2b\xab\x61\x59\x42\x6c\x03\x1e\xe0\x20\x37\x60\xd3\xdd\x29\x62\x49\x14\xc4\x0b\x10\x18\x0a\xe5\x8a\xaa\xba\x4c\x25\x74\xcb\x6c\xd4\x97\xde\x84\x85\xf2\xf2\x81\x08\xef\x90\xdb\x82\x33\xca\x7a\x0c\xc4\xd2\xc7\xc0\x3d\x40\x75\xcb\x76\xf0\xf2\x19\x10\xc4\x83\x6f\x64\x46\x2a\x62\xde\x71\x2b\x0d\x70\x0f\xe6\x0c\x0f\x1c\xa9\xad\x8d\x50\x77\x6e\xa8\xfe\x61\x4b\xf8\x96\xf7\x6e\x18\x18\x14\x12\x34\x31\xb7\xc2\x84\x7b\xf0\x2d\x76\xb8\x67\xcf\xf0\x22\x57\xd6\xd9\xba\xfc\xa7\x28\xb1\x3e\x7b\x1e\x4c\x7e\x5b\x3e\x3f\x0d\x00\x2a\x82\xf8\x8d\xa1\xdb\x19\x41\xfd\x3b\xc2\x03\x96\xd1\xdd\xa9\x59\x63\x40\x9e\x3f\x86\xe4\x3f\xdd\x7b\xd9\x33\x5b\x7f\x89\x5e\x7e\x82\x50\xca\xdb\x28\x93\x0a\x78\xbe\xa1\x57\xb6\x85\x70\x14\x63\xf7\x12\x00\x82\x61\x42\x5d\x38\xb5\x1e\x78\xc5\x6c\xad\x97\x20\x62\x34\x82\xa6\xce\x78\xa4\x5b\x0b\xc3\x97\x8f\x23\x81\x45\xe6\x86\x3d\xba\xc7\x07\xf1\x62\x81\xfa\x7a\xa0\x5d\xc5\x8b\x7e\xae\x7a\x08\xdf\x13\x45\x96\x35\xcc\x3a\xa1\xf2\xa5\x59\x7e\x2b\xd5\x21\x9d\x7c\xa4\x37\xee\x20\x48\x77\x66\xfe\x28\x1f\x21\xf5\xd5\x61\x7b\x82\x1f\x14\x31\x57\x55\xf6\xcb\xad\xf8\xaa\xa5\x5e\x64\xf9\xc0\x3e\xfe\xe2\x60\xd1\x56\x98\xa8\x7c\xea\xc0\x28\x0a\x12\x75\x40\x63\xde\xe6\x8b\x5a\x3e\x08\x0e\x72\x03\x39\xf8\xe1\x94\x42\xed\x54\x57\xcd\x43\xa1\x63\xb1\x2d\x79\x03\x29\xb9\xf6\xed\x05\x8f\xca\xa7\x56\x28\x43\x57\x73\x02\x16\xc5\x57\x90\xa3\xb2\x88\xdc\x08\x28\xbd\x58\x11\x68\x98\xf5\x14\xba\x3d\x9f\xbb\xf2\x16\x1f\x2e\xe6\x2d\x65\x30\xdc\x33\x64\x57\xdb\x93\xec\x94\xcf\x80\x74\x3b\xcd\xc6\xfd\x07\xa5\x3f\x05\x4f\xf9\x1c\x9e\x8c\xa7\x7c\x86\x1e\xc8\xc3\x99\xcb\xab\xf2\xa3\x9e\x63\x39\x8c\xbf\xb2\x27\x13\xec\x72\x45\xc7\x88\x85\xd1\x36\xb4\xd4\x09\xd3\xbc\x48\xbb\x83\x63\x75\xf7\x59\x70\x4b\x9d\x47\x65\xd8\x9e\xa5\x87\x5d\xd9\xc5\x51\x59\x42\xac\x87\xac\xf4\x13\xdb\x01\x64\x05\x6c\x42\x2e\xca\xfb\x99\x27\x84\x04\x22\xa1\xeb\xcb\xf2\xb2\x17\x31\x45\x6c\x8e\x47\x3f\x19\xd6\x89\x53\x28\xdf\x16\xb9\xdb\xba\x7b\xad\x14\x4e\xb3\x57\x07\x2c\x4f\x08\x65\xe5\x20\x60\xb5\xb3\x76\x98\x1e\x5e\x79\xe5\x32\x80\x19\x06\x6e\x28\x06\xeb\xc5\x00\x36\xa4\xfa\x10\x0c\xd6\xb3\xf6\x12\xbd\xd5\x30\xd8\x02\x71\xd8\xc2\x62\xb1\x05\xe2\xb1\x85\xc1\x64\x9d\x3c\xcf\x88\xcb\xe0\x19\x84\xcb\xd4\x67\x48\xc9\xfd\xc2\x71\xa7\xa6\xaf\x7c\x82\xc2\x31\x79\xa6\x18\x73\x2a\x32\x40\x65\x98\xd9\x5a\xed\x85\xa6\x9f\x42\xb9\x24\xfc\x67\xb1\xe8\x94\xad\x2d\x0f\xd9\x26\x3b\x77\xf7\xed\x34\x63\x9e\x68\x2d\xb3\xa6\xc8\x6c\xae\xdb\x95\xd4\x68\x8d\x3e\x6d\x49\xe5\xed\x01\xc1\xba\xa7\x3b\x73\x56\x0f\x55\x40\xf0\x78\xd4\xa4\xbb\xf7\x25\x4b\xe4\xfd\xf3\xe3\xea\x94\x3d\x60\x23\x54\x5d\x89\x79\x57\x5e\xa5\x47\xf8\x00\x65\x18\xa8\x39\x6f\x37\x8c\xe8\x7b\x09\x67\x0d\x7c\xdf\xdd\x3b\x44\x10\x86\x08\xed\xcb\x6c\xe2\x3d\x7b\xf7\x5e\xb8\xd5\xdb\x1a\xd8\x9e\xfa\x95\x79\x52\x92\x2d\xd0\x01\xaa\x05\xdb\xbe\x9f\x26\xdc\x6f\x64\x62\x37\xe9\x14\xb6\x68\xb1\x28\x09\xf2\x1f\x00\xbb\xfc\x66\x43\xd5\xb3\xed\xfe\x63\x42\x97\x2c\x79\x0e\x78\xc7\x22\xf9\xbe\xeb\xec\x79\x74\x9b\x75\xc3\x21\xc3\xf9\xa1\x43\xc1\xc4\x3a\xa4\x24\x2c\x36\xe3\x0e\x3c\x6f\xbe\x87\x78\x51\x9e\x19\x26\x07\xd3\x75\x33\x45\x25\xaa\x5d\xd2\xe0\x83\x81\x4b\x6e\x5d\x71\x73\x51\x66\x16\x6d\xf9\xfd\xca\xa7\x7b\xbd\xc5\x92\xfa\x96\xd3\x77\xc9\x05\x9c\x3c\xb6\x5a\xb1\xc8\xc6\xf7\x5a\x55\x42\x02\xa8\xd5\x86\xea\x55\xea\xe4\x0f\x98\xbc\x90\x62\xe2\x62\x32\xd0\x52\x8b\x31\x37\x56\x2f\xb2\x92\xd9\x96\xf9\x4a\x0a\x70\xbc\x6e\xaf\xc2\x5f\x3e\x70\x20\x9a\xa0\x29\x6b\x3d\x3d\x84\x10\x6f\xa3\x14\xce\xa2\x48\xe6\xe2\x10\xde\xeb\xa6\xfa\xe1\x4f\xc6\x83\xd5\xd0\x72\x77\x9f\x01\x95\x27\x25\xa9\x8c\x8b\x14\x61\xc0\xd0\x15\x28\xda\x02\xa3\x07\xf5\xe2\x8a\x3b\x4f\xdb\x20\xa5\x33\x21\x55\xff\x91\xf6\xa7\x2a\x13\x40\x2e\xcc\x2f\x06\x37\xf9\x1c\x90\xf7\x77\xd9\xa6\x69\x0e\x80\x7d\x10\xb4\x49\x09\x71\x83\x8d\x95\x75\x0e\xe5\x85\xaa\xd2\x30\xc0\x3d\x37\x7f\x18\x73\x47\x0e\x50\x41\x90\xa1\x9c\x12\x19\xca\x2d\x91\xe6\xfd\xea\xe5\x97\xfe\x75\x77\xba\x22\x2b\x95\x5a\x37\xc4\xfb\x0e\x9e\x53\x32\xeb\x91\x3c\xcc\x53\x9a\x21\xc0\xba\x70\xe3\x5b\x15\x4a\x59\x44\xdb\xb2\x1a\xad\xf6\xf8\xea\x73\x76\x75\xf1\xb4\xc5\x8f\xdc\x7f\x0e\xd3\x68\xb5\xd5\x72\x75\x8f\x4b\x4b\x73\x18\xd7\x8d\xdf\x7c\x31\xd7\x8d\x5f\xa2\x81\xb8\xc0\x97\x5e\x7d\x32\x37\x10\x64\xf4\x2e\x4b\x46\x0f\xb0\xcc\x74\x32\xdd\xf5\xe3\x35\x94\xeb\x0e\x98\xb3\x1c\xfc\x9e\xa9\xe7\x75\xf6\xdb\xd6\x46\x13\x5d\x56\x47\x02\xba\xb2\x13\x2c\x07\x4d\xa3\x4d\x31\x93\xa7\x8a\x60\x1c\x0e\x48\xcc\x0e\xde\x51\xe1\xb0\x54\x00\xa3\x0f\x16\x55\xcb\x96\xb9\x39\xee\xb0\x1e\xfb\xac\xfb\x71\xd3\xa2\xd0\x03\xe6\x2b\x66\xd8\x5f\xa7\xec\x95\x59\x9d\x76\xe3\xd4\xe7\x36\xb2\x2c\x2e\x34\xa1\x3d\xd6\x4a\x73\x9e\xcc\x06\xfa\x6b\x44\xbd\x51\x01\x05\x29\x9c\x23\x81\x75\xec\xe8\x66\x59\x0e\x22\x9b\x87\x53\xcd\x50\x94\x01\x98\xe4\xcb\x73\xdc\x7f\xf5\xed\xda\x3c\x1b\xfc\x03\x21\x01\xcf\x3e\xf3\x19\x0c\x81\xf9\x2c\xb0\x3e\xfc\xbd\x3d\x4d\x6b\xf5\x41\x2c\x6b\x57\x08\x37\x39\x61\x2b\x8d\x76\xac\xd2\x85\x09\x6f\xcf\x00\x25\x0d\xf1\x2f\x62\xe1\x71\xf4\x54\x95\x33\xfb\x49\x31\x68\x7f\x9b\x8d\xd6\xe9\x30\x7f\x86\x3f\xde\xde\xce\x4b\x7b\x7d\xab\x13\x83\x39\x25\xa6\x69\xfb\xd4\x9d\x97\xe3\x97\xf9\x2f\x6c\x99\xde\xc8\xf8\x00\xca\xf0\x0e\x3f\x78\x58\xae\x1d\x97\x8c\x48\x1d\xd7\xed\x39\x71\x9a\x3e\xb1\x2e\x8d\x39\x8f\xfd\x9d\x42\xa4\x4c\x8c\xbd\xb8\xd9\x3e\x63\xd3\xf5\x94\x7c\x77\x79\x7b\x4c\xe6\x1f\x6e\x8f\x09\xd3\xd1\xf4\x39\x79\x67\x2b\xc5\xf6\xe8\x61\x6c\x1f\x86\xee\xbf\xbf\x7e\x6a\xc4\xb0\x35\xf8\x11\xfe\xb2\xec\x56\x29\xd5\x9b\x03\xf6\xf1\xe9\xdc\xb4\x7f\x8c\x6d\xec\xdb\xc1\x7e\x8c\xe2\xef\x20\x4c\x73\x5a\x6c\x15\x2e\xd3\xed\xc5\xd0\xcd\x20\x84\x4d\xd7\xa7\x64\x42\xd8\x27\x1a\xe9\x53\x72\xb2\x92\x12\xaa\xe4\x43\xee\x40\x72\xb2\xa4\x19\xb9\x7a\x7f\x7b\x79\x8a\x0e\x68\x4c\xe8\x6c\x4f\xb6\x7d\xec\xf9\xfb\xab\xb7\x7f\xb6\x98\x73\x4f\x18\xc7\xe2\x38\x64\x71\x04\x83\xa0\x16\xd9\xfc\x89\xa3\x38\x5d\x47\x6b\x9d\xe5\xf2\xd9\xd1\x84\xc7\xb4\x50\xf6\x61\x69\x1f\xc3\x3e\x71\x1d\xca\x65\x51\x3e\x43\xce\x5c\xf5\x10\x18\x10\x43\x15\x81\x4a\xfe\x5a\x00\xbc\xab\x25\x30\x8c\x56\xcd\x34\x78\x6e\x2f\x99\x03\x84\xd5\x23\xae\x64\xb6\x3d\x75\x60\x5f\xe4\x2f\x5e\x7c\x1d\x99\x8e\xe1\x5f\xec\xd4\x65\x1e\x1a\xa2\xf6\xc2\xa3\x06\xb3\x82\xee\x12\x28\x90\xef\xb6\xb0\xec\x7a\x62\xe1\xfd\x45\x23\x60\x1f\x3d\xae\x26\x83\x99\x0e\x62\x01\xf0\xb0\x62\x64\xda\x96\xf9\xf2\xf3\x3b\x1d\x26\x4e\x0c\x42\x48\xfd\x5d\xf1\x68\x3b\x90\x66\xce\xce\xdf\xcd\x87\x7a\x80\x00\x32\x6a\x9f\xbb\x8f\xa5\xa8\x3b\xf5\x11\xcc\x16\x13\x1d\xc8\x18\x70\x14\x0c\x59\xd4\x8c\x69\x2d\xa0\x8f\x8f\x5f\x2e\xab\xc2\xd3\xda\x7a\x9b\x85\x7d\x0a\x27\xcd\xbd\xfc\x1a\x66\x9c\x2e\xd6\x16\xec\xe9\xa6\xd1\xee\x55\x87\x9e\x72\xd0\x49\x34\x4b\x3b\x80\xce\x03\x67\x22\x85\x0f\x25\x00\x4a\x04\x39\x5c\x0f\x11\xd6\x20\x1b\xa2\x01\x30\xc6\x8b\x80\x8b\x2a\x64\x29\xf3\x61\x55\x26\x28\xa3\x44\xb3\x68\x23\x78\x44\x7b\xbc\x92\x40\x2d\x8a\xea\x7f\xbe\x4d\xa5\x2a\x1d\xe9\xb0\x60\xd4\x53\x55\xa6\xa0\x5e\xf1\x8c\xdd\xd3\x24\x9c\x4c\xb7\x7c\x10\x5b\x58\xa5\x2c\x26\xb2\x96\x84\x89\x95\xc4\x48\x16\xeb\xa2\xd7\x7f\x35\x7a\x6d\x78\xd0\xec\xcb\x37\xc3\x74\x33\x25\x7e\xf2\x8c\x3e\x13\x58\x51\x99\xe0\xb7\xe8\xe5\x0d\x2b\x84\xbe\x2e\xa3\x8d\x24\xd7\x48\xb4\xc9\x33\x3e\x65\x53\x92\x72\xb1\x56\xdd\x36\xb0\x41\xeb\x1d\x80\x0c\xd2\x70\x20\x58\x0b\x40\x66\x73\x17\x10\xf6\xc5\x8e\x61\x15\xe5\x16\xf2\xe3\x3e\x94\xe7\xce\x32\xd6\x0a\x85\x01\x10\x68\x09\xe9\x69\x59\x9c\x2b\x33\xe0\xb9\xf5\x96\x39\xa5\xbc\x2c\x5b\x45\xbd\xb6\xee\xc5\x7d\x11\xd2\x00\x65\x04\xe6\x1b\xec\x3c\xae\xe5\x0c\xe7\x43\xa9\xe2\x50\xb2\x54\x8d\x48\x2a\xe7\x63\x43\xd1\xd0\x6a\x77\xc7\x6c\xc0\x35\x49\x29\xcf\xda\x2b\x6b\x94\x8f\x11\x59\x6d\x95\x45\x1f\xa6\x74\x29\x73\x3d\x80\x90\x3c\x94\xe4\x28\xa4\x36\xb7\x6f\xd8\xc9\xb8\xc2\xc6\x3d\x1e\x3d\xd0\xa4\xdb\xb3\x6e\x24\x18\x23\xc1\xf8\x75\x13\x0c\x21\xb5\x63\xab\x5a\xc1\xd2\xed\x75\x33\xd0\xdf\x66\x98\xa7\x4d\xc3\x21\xd4\xb1\x7c\x3d\x3e\xa1\xb6\x59\x3b\xc0\x7a\xee\xf1\x00\xd7\x9e\xcf\x73\xea\x49\x7f\xa9\xc0\x5d\x1c\xf9\xb0\x7d\x40\xda\xdf\x30\x6c\x81\x86\xd7\xe7\x04\x1c\x4c\xa6\x70\xea\x79\xd6\xa5\x99\xb7\xde\xb9\x76\x9f\x2f\x21\xd4\xe8\x1a\x22\xe5\x5c\xd4\x17\xaa\xcd\x9f\x2d\x59\x44\x73\x65\x7d\xe2\x7a\x4c\x09\xc5\x14\x23\x96\x41\x1f\x85\x5f\xdd\x73\x54\xc5\xbb\x3c\xb5\x15\x2f\xc1\x3e\x12\x8b\xee\x83\xa7\xbe\x07\xdc\xb1\xef\xff\x86\x7f\x80\xa4\x52\xf9\x6b\xf7\xaa\xfc\xfb\xe6\xfc\x16\xdf\xb6\x0f\x63\x7b\x7c\xcb\x35\x73\x4e\x76\x50\x26\x08\x0e\x88\x33\xca\x62\x29\x95\x97\x93\xaf\xbe\xfd\xb6\x43\xe5\xff\x78\xc7\x5e\xb5\xa5\x4c\xc5\xa7\x6a\x68\x2d\x52\xa6\x0e\x88\x4a\x6b\xa9\x46\xe5\x8f\x3a\x06\xa4\x8d\x01\x69\x03\xcc\x9e\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x6d\x2b\x1e\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x6b\x5b\xc9\x88\xcb\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\x34\x7c\xc6\x80\xb4\x31\x20\xad\xfe\x8c\x01\x69\x63\x40\x5a\xf1\x8c\x01\x69\x63\x40\xda\x18\x90\x16\xec\x74\x0c\x48\xf3\x60\x31\x06\xa4\x8d\x01\x69\x63\x40\x5a\xf5\xf9\x29\x03\xd2\x3a\x4a\x66\x12\x32\xb1\x59\x7c\x43\xef\xba\x3b\xee\xe0\x13\xec\xdd\xf8\x8c\xf4\xdd\xd5\x5b\x35\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\xe1\xe9\x8d\xf9\xbb\x47\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\xaa\x7c\x46\x77\xa9\xf2\x19\xdd\xa5\x46\x77\xa9\x5f\x94\x8b\xc1\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\x54\xb0\xf1\xaf\x0c\x97\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x15\x78\x46\x77\xa9\xd1\x5d\xaa\x78\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x0a\x76\x3a\xba\x4b\x79\xb0\x18\xdd\xa5\x46\x77\xa9\xd1\x5d\xaa\xfa\x8c\xf9\xbb\xc7\xfc\xdd\x63\xfe\xee\xca\x33\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\x07\x8d\x30\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\xc7\x74\xac\x63\x3a\xd6\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\xdd\x3e\xff\x31\x7f\xf7\x48\x30\x46\x82\x31\xe6\xef\x1e\xf3\x77\x57\x9e\x31\x7f\xf7\x98\xbf\xbb\xf6\x8c\xf9\xbb\xdb\x05\xc8\x31\x7f\xf7\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\xfe\x33\x06\xa4\x8d\x01\x69\xbf\xa8\x20\x8e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x60\xe3\x5f\x19\x2e\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x2d\xf0\x8c\x01\x69\x63\x40\x5a\xf1\x8c\x01\x69\x63\x40\xda\x18\x90\x16\xec\x74\x0c\x48\xf3\x60\x31\x06\xa4\x8d\x01\x69\x63\x40\x5a\xf5\xf9\xd7\xce\xdf\x3d\xc4\xed\x20\xbc\xd5\xdd\xdc\xc1\x0a\xbd\x44\x4a\x89\x3d\x34\xeb\x5c\xa1\x2c\x82\xf8\xd1\x92\x6d\x4c\x82\x2d\x45\xc5\x56\xd8\xb2\xa4\xf0\xae\x40\xa2\xf1\xbe\x75\xbc\x37\x8d\x3a\x68\x52\xf5\x20\x4b\x6c\x1d\x5c\x05\xba\x12\x62\x2e\x68\x50\xfe\x98\x4e\xc1\x5a\x1a\x4f\x51\x1f\x54\x68\xb3\x37\x7c\x6d\x84\xeb\xc5\x11\xf4\xb7\x38\x02\x16\xc0\xb6\x0d\x75\x4d\x57\x46\x28\xd4\xc0\x74\x42\x07\x89\xbc\x67\x19\xce\x06\x5d\x33\xbd\xc9\x29\x22\xb7\x5c\x6b\x43\x4b\xb8\x8b\xea\x09\x75\x1a\x49\xa1\x38\xa6\x62\x47\xbd\xe5\xe2\x88\x8b\x15\x17\x5c\xb3\xc5\x11\x99\x10\x70\x08\xf4\x96\xe3\x28\x95\x9d\x27\x49\xa8\xd2\x53\x52\xac\x2c\x08\x12\x33\x57\x1e\x33\xa1\x79\x44\x13\x3b\xc1\x7a\x3f\x5c\x10\x9a\xa4\x1b\x2a\xf2\x2d\xcb\xbc\x76\x70\x00\x42\xbd\x5a\xfa\x64\x55\x6c\xe8\xf5\x12\x94\xb9\xf1\x70\x88\x7c\xbb\x6c\x6a\x3f\xd3\x8c\x5d\x5c\x9d\xdd\xf6\x1d\x8f\x39\x36\x23\x5c\xc4\x3c\x42\xcd\x4e\x11\x81\xb2\x71\xe9\xd5\xab\x58\x85\x2c\xd9\x4a\x86\x59\x37\x2a\xf6\xc4\x74\xd7\x3a\xd7\xa5\x94\x09\x6b\x3a\x66\x74\xf0\xed\x35\x2e\xeb\xd6\xd7\x93\xe1\xa9\xf6\xb4\x65\xee\xa2\xa5\x3c\xba\xc3\xff\x93\x79\x10\x01\x99\xb5\xd5\xb4\x1e\xde\x49\xb0\xf1\x32\xde\x1e\x6a\xe9\x98\x8e\x76\xdd\x4d\x39\x0f\xc3\xbb\x25\x89\xbc\x47\xa8\xa1\x0a\xaf\x50\x6a\x21\x67\xfd\x07\xd4\xef\xe0\xc5\xfe\x98\x70\xcd\x32\x0a\xaa\x95\x50\xcf\x8b\x05\x99\x60\xbc\x98\x39\xd5\xdb\x94\x66\x5c\x49\x71\x4c\x20\x68\xd4\xe9\x65\x5c\x97\x2b\x29\xc9\x92\x66\xa0\x2c\x2a\x86\xfb\xcd\x81\xc3\x95\xe3\x19\xd6\x8a\xfd\x2d\xa7\xc9\xef\xd1\xc5\xd9\x89\x0a\x7c\x65\x65\x04\xae\xa0\x8d\x33\x7d\x14\x43\x86\x91\xc8\x8f\x30\x0f\x5a\x3a\xe6\x2d\xcb\x7f\x46\xf8\xcf\xe9\x74\x4a\xfe\xe9\xcd\x40\x67\x39\x73\x91\x4a\x85\xb3\x2f\x8e\xf1\x9f\x24\x1c\x5c\x60\x6d\x3e\x3d\x43\x95\x73\x35\x0b\xe0\x62\xc0\xe4\x42\x83\x1d\x38\x5f\x18\xac\x6b\x82\xe1\x2d\xf1\xe6\xbc\xa1\xea\x19\xf4\xf7\xd1\x90\x8e\xe7\xe5\xd0\xb7\xc5\xc8\x54\x97\xbb\xe3\xed\xcc\x6f\xe0\x90\x06\x89\xae\xed\xa2\xd0\x0f\xcb\x15\xb4\x05\xf5\x20\xfc\x37\x7f\xf1\xe2\xab\x57\xf8\xff\xf8\xa6\xf8\xe6\x66\x23\x33\x3d\x89\x78\x16\xe5\x5c\x03\x5b\x6b\x3f\x0a\x0d\xf4\x8f\x7f\x74\x7e\x0d\x86\x24\xfd\x0c\xdb\x3c\x2f\x1a\xa5\x34\x63\x56\x24\x5a\x67\x32\x4f\x8d\x48\xb4\x58\x68\x9a\x24\xcf\x82\x06\x41\x5b\x53\x00\xdd\x82\x0a\x7c\xe1\x7a\x73\x67\x98\x26\x89\xa7\xe3\x83\x0b\xfa\x16\xcf\x03\x0a\xb1\x2d\x48\xce\x5c\x6d\xc4\x33\xce\x55\xd6\xc7\xef\xea\x98\x4c\x8e\xc9\x47\x80\xc3\xc9\x94\xdc\xc0\x95\x23\xf6\xca\xb5\x76\xba\x95\x19\x23\xa9\x91\xbf\x94\xe2\x3b\x46\x96\x18\xe4\xb1\x77\xfa\x65\xab\xf9\x27\x4c\x45\x34\x65\x24\xda\xd0\x8c\x46\x9a\x65\x76\xda\x97\xe8\x2b\x1f\xbc\x0c\xcf\x80\x4a\x6d\x69\xcc\x26\x79\x8a\xc7\x42\x3d\x2f\xd0\x11\x44\x16\x5a\xd4\x71\xcf\x96\x46\x72\x63\x16\x79\xf8\x3b\x1e\xb3\x34\x91\xfb\x2d\x13\x41\x74\x6a\xbf\x4f\x33\x19\xbb\x43\x0a\xfd\x9a\x3b\x05\x38\x29\x93\x42\x33\x11\x7b\x47\x9d\x46\x77\xf6\x87\x7f\x9a\xe6\x65\xff\xe4\x37\x7f\x68\xbb\x01\x31\xdb\xb9\xee\x7f\x43\x6a\xb7\x20\x84\xca\xba\x98\xa7\xaa\x36\x76\x28\x57\x78\x13\xfc\xea\xd1\x58\x43\x3b\x49\xa7\xac\x39\x94\x41\x04\xab\xcf\x00\x9a\x0a\xc6\xa1\x92\x03\xb8\xdf\x40\xc4\x7a\x85\xe6\x7b\x6e\x71\x56\xcc\x0c\xe2\x29\x73\xef\xa4\xad\xa0\x72\x6c\xff\x5a\x4a\xbd\x99\x12\xf4\x54\x05\x6a\xf2\x29\x35\x1c\x95\x4e\xf6\x9e\x30\xfb\x0c\xaa\xbf\x04\x5d\x90\x3d\x3c\x2a\x48\x94\x31\x1b\x20\xa3\xec\xed\x96\x19\x11\x3c\x79\x7e\xec\x82\x5c\x62\xb6\xa2\x79\xa2\x15\xc1\x65\x19\xd0\x65\x71\x8b\x4c\xa3\x25\xb9\x37\xb8\x72\x66\x25\x67\x33\x89\x4b\x4f\x88\x06\xbe\xd5\xe1\xcf\xa2\x10\x0a\xba\x5d\xb6\xc5\xc9\xdb\xf1\x09\x57\x78\xc7\x26\xe4\x2f\x96\x95\x33\x13\x72\x23\xfd\xf5\xd8\x92\x08\xc3\x18\x83\xf5\xa6\x32\x70\xf0\x1e\x73\x11\x25\x79\xec\x0c\x9c\x11\x35\xcc\x32\x74\x50\x76\x43\x90\x48\x0b\x59\x2c\x09\xba\x7b\xde\xe6\x5d\x59\x9d\xdc\x65\x78\x6e\x15\x88\x18\xc4\x54\x76\x1f\x14\xee\xa0\x5d\xeb\xd2\x8f\x7b\x07\x0c\x75\x0a\xba\xc5\xb6\x6d\x42\x1c\xf8\x83\x55\x2c\x7a\xe2\x49\xc6\xa8\xb9\x4d\xd1\x1d\xa1\x6b\xca\x45\xf0\xc8\xe2\x31\x41\x83\x54\x72\x4f\xf7\xaa\x11\x9f\x80\xde\x22\xc7\x44\xb0\x1d\xcb\x2a\xa7\x2e\xa8\x64\x19\x58\x65\xa9\x84\x02\x61\x40\x3a\x0a\xbb\x6a\x2a\x95\xe2\xcb\xc4\x0d\x5c\xba\xc3\x99\x0f\x6e\x52\x16\x85\xc5\x6e\x5c\x48\xbb\x83\x60\xb7\x80\xdf\x2a\x3b\x87\x45\xee\xe6\xaf\x40\x39\x62\xdf\xed\x41\x69\x99\xd1\x35\x73\x3f\x29\x4d\x75\x8e\x80\x41\xcb\x1f\x8b\xaf\x3c\x9b\xcc\x1d\x17\xb1\xc1\x46\x0e\xa4\x69\x92\x67\x34\x29\x7f\x89\xa4\x40\x43\xbc\x3a\x25\x7f\xf9\xab\xf9\xc5\xf4\xcf\x62\x1b\x68\x6b\x7f\x5d\x88\xc9\x64\xb2\x10\x34\xe5\x2e\x5e\x97\xd0\x94\xb3\x4f\x9a\x09\x68\x35\xbd\xfb\xad\x9a\x72\x79\xb2\x7b\xb9\x10\x38\xe2\x79\xae\xb4\xdc\x5e\x33\xb4\x28\x5e\x30\x90\x10\x01\x5b\x57\xa2\x62\x41\x0f\x46\xd0\xa7\x5a\xa0\xff\xb1\x62\x5a\x4d\xa3\x2c\x9e\xa6\x99\x34\x70\x88\x00\x01\x4d\x65\xb6\x5e\x08\x83\xd9\xe0\x3b\x60\x57\x4e\x49\x4b\xb3\xaa\x59\x0a\x27\x54\x77\x95\xc6\x77\x09\x57\xfa\x4f\xc1\xf7\x6f\xb9\xd2\x55\x90\x35\x66\x69\xf7\x83\x8b\x75\x9e\xd0\xac\xd9\x00\xa0\x19\x49\xb3\xa5\xe7\x49\xae\x34\x8a\x93\x3b\x07\x59\xf3\xc7\xc4\x42\xc0\x00\x0e\x3a\x8b\x36\x6c\x5b\x06\x0c\xcb\x94\x89\xb3\xf9\xec\xfb\xaf\x6f\xaa\xbf\xd7\x0e\x7d\xc3\x0d\xbc\x12\x88\x01\xee\x04\x34\x5b\x72\x9d\xd1\x6c\x4f\x66\x73\xa2\xf2\xe5\xc4\x4d\xf3\xe4\x7c\x76\x71\x5d\xc1\x38\xa8\xc0\xd8\x18\x1c\x85\x6c\x0d\x08\xaf\x20\x79\x21\x12\xd2\x12\x63\x02\xad\xef\xc6\x96\xec\x38\xf5\xbc\xe8\xd0\x3f\x02\x3f\xf5\xfb\x95\xab\xe6\x44\x9d\x89\xbd\xd0\xd6\xf8\x97\xac\x45\x9b\xea\x9d\xc2\xea\x9d\xaa\x26\x39\x31\x70\xb3\xce\x24\x18\x7c\x81\x68\xc0\x82\x9f\xc5\x16\xd6\x88\x07\x00\xab\x59\x92\x44\x43\x6a\x32\x03\x42\x61\x6f\xe6\x14\x18\x16\x96\x29\x27\xd2\x46\x52\xec\x58\xa6\x49\xc6\x22\xb9\x16\xfc\xef\x45\xe7\xca\xb9\xb7\x40\xb1\xb7\x06\x93\xc7\x85\x66\x99\x61\x6d\x00\x25\xa1\x12\x7f\x4b\xf7\x24\x63\x66\x18\x92\x0b\xaf\x43\xe7\x5c\xf7\xce\xb0\xb4\x5c\xac\xe4\x29\xa4\x9f\x52\xa7\x27\x27\x6b\xae\xdd\x05\x8c\xe4\x76\x9b\x0b\xae\xf7\x27\x60\x70\xe7\xcb\xdc\x6c\xc9\x49\xcc\x76\x2c\x39\x51\x7c\x3d\xa1\x59\xb4\xe1\x9a\x45\x3a\xcf\xd8\x09\x4d\xf9\x04\xe6\x2e\x00\x03\x4c\xb7\xf1\x93\xcc\xde\x58\xf5\x34\x84\xaf\x9a\x68\x0e\x2e\x57\xd7\x36\x98\xdb\x65\x63\xb6\x91\x67\x47\xa6\xa3\x80\xb6\x23\xbc\xd7\x97\x37\xb7\xc4\x8d\x1e\x8c\x6f\x47\xe0\x97\x5f\xaa\x72\x1f\x0c\xd0\xb8\x58\x39\xee\x0a\x6c\x1c\xbe\x32\x02\x49\x7b\xc2\x03\x8c\xb6\xca\x97\x5b\xae\x95\x97\xb7\x48\x4e\xc9\x79\x61\xfc\xc8\xd3\x98\x6a\x16\x4f\xc9\x4c\x90\x73\xba\x65\xc9\x39\x55\xec\xd1\x77\x01\x58\xcc\x89\x81\xed\xd0\x7d\x68\xc9\x35\xd0\xa6\xd9\x2d\x10\x69\xcb\xb6\xd5\x2f\xaa\xa1\x8f\xd5\x90\x37\x17\x21\x59\xe6\x24\xa0\xa4\x8e\x5d\xcb\xc7\x6d\x6c\x8d\x84\x76\xd8\x4b\x5a\x82\x33\x1a\x75\x21\x9d\xff\xe8\x6c\x4e\x1c\x4a\x43\x0c\xb6\x64\x89\x34\x67\x4b\x5a\x7d\x11\x0b\x59\xd9\xdb\xb9\x8a\x91\xae\x7f\x39\x5d\xdf\x48\x55\x7a\x41\x3d\x02\x4d\xf7\x43\x9d\xea\xf4\xdc\x7f\xd7\xa4\xe5\x95\x99\xd5\xe9\xb8\xff\xf2\x31\x69\xf8\x48\xdf\x46\xfa\xe6\x6f\xc1\x48\xdf\x7e\x32\xfa\xe6\x63\x87\x61\xb4\xad\x89\x6b\xca\xe7\x70\xea\xc6\x3e\xa5\xe0\xd3\x31\x9b\x0f\xd1\x24\x99\x9d\xb6\x1f\x54\x23\xfb\x9e\xcd\xe6\xbb\x6f\xe0\x5a\xcd\xe6\xbb\x57\xcf\x9d\x4c\xeb\x8e\x45\x50\x60\x9d\xa1\x82\x7c\x66\xee\xe6\x8a\x46\x0c\xec\x60\x8b\xc5\x51\xcd\xe4\x50\x68\x7e\x40\x86\x4f\xa4\xbc\x73\xaa\x37\xee\xbe\x0c\x6a\x5c\x9d\x6b\x8d\x17\x71\x38\x9b\x57\x9c\xdd\x30\x48\x1a\x8c\x61\x56\xa7\x00\x48\x84\xea\x29\x38\x90\x07\xa9\xf1\x62\xa1\x41\x11\x91\xab\x86\x27\x7a\x2d\xf6\x1e\x82\x1d\x0b\xa7\x0d\x99\x59\xb5\x59\xa8\xd3\x7a\xa9\xe4\xc5\xc2\xf4\x67\x6b\x24\x17\xeb\xb7\xc8\x4f\x55\x47\xe5\x22\x1c\xd9\x5f\x08\x5c\xfe\x3e\x4d\x21\xca\xd6\x90\x95\x8a\x5f\x30\x7a\x24\x5c\x96\x47\x01\xd5\x0c\xa1\x6e\xb9\x42\x9d\x26\xe6\x7e\xa2\x9a\xa4\x79\x96\x4a\x73\x53\x9f\xcd\x56\xd6\x0d\x69\xc3\xca\xad\x31\xe3\x38\x3f\xc3\x6e\x67\x26\xa7\xdf\x93\x0c\xb7\x3f\x61\x34\x13\xc5\xb6\xd9\x1d\x2c\xfb\x35\x13\xc8\x15\xe8\xa0\x5b\x1d\x28\x16\x0b\xed\xb6\x63\x1a\xd4\x20\x3f\x38\xd7\x45\xca\x19\x5e\x85\x3d\x6b\x6a\x57\xea\x12\xd3\x55\x9a\x73\xff\xdf\x50\x7d\x6e\x6d\x1b\xa5\x4f\x4d\x91\x02\xe4\x2d\x17\xf9\xa7\xee\x53\x5f\x58\x77\x8b\x03\xfd\x7b\x38\x7a\xdb\x54\xef\xa7\xa4\x1c\xc6\x37\x08\xa3\x75\x94\xab\x4e\xcc\x62\x9e\xb5\xdc\xb1\x4c\xa0\x5d\xa5\xf0\x35\x93\xc7\xa5\x7f\xd9\x26\x93\xf9\x1a\x7d\x08\x9c\x9a\xd4\xb2\xc2\xdd\x21\xf0\x76\x73\xe1\x5c\x9a\x86\x45\x02\x00\x2c\x9c\x1d\x23\x5a\x80\x33\xf9\x7b\xc2\xcc\xfa\xf1\x62\xc7\xe6\x90\xec\xf0\x22\x86\x53\x42\x94\x9e\x3b\x3b\xa8\x65\xbe\x2f\xc1\x77\x4c\x7c\x85\xab\x54\x18\x37\x70\xa2\x25\xf8\xa1\x9b\xb9\x38\xd5\x44\xd8\x8c\x9f\xc8\x88\x26\x45\x10\xb9\x55\x52\xce\x56\xa4\x82\xcf\x1c\x2e\xf3\xf6\x77\x10\xa8\xe1\x22\x39\x78\x57\xfc\xfa\x60\xf9\x80\x4f\xcc\xda\x2d\xaf\x05\x90\xf3\xc0\x1f\x44\x32\xee\x18\x95\x77\xa8\x80\x75\x65\xce\x70\x04\x27\xe4\xde\xa0\xb9\x2a\x72\x0e\xe3\x03\xd4\x98\x4e\x2a\xdb\x1f\x18\xac\x88\xfb\x2b\x95\xaf\xe6\x66\x07\x3b\x15\x3e\x32\x82\x94\xb5\x19\x38\x25\x1c\x07\x66\x55\x4c\xe1\x98\x50\xc0\x1a\x4d\xf6\x8f\x58\x9b\xb1\x4f\xbb\x8a\x4a\xe5\x65\x42\x2f\x0c\x5d\x32\x42\x47\x86\xa9\xee\xec\x28\x8a\x3c\x53\x79\x18\xc3\x50\x05\x5b\xcb\xf4\xe6\x85\xf9\xef\x73\x1b\x77\x03\xc6\x3c\x16\x13\x33\xef\xdf\x13\xae\x09\x57\xe2\xa9\x2e\x35\xbf\xfd\x94\x9c\xe0\x65\x4e\x33\x69\xb8\x17\xef\x08\x20\x8c\x3d\xac\x50\x3d\x87\xe5\xac\x83\x34\xd7\x05\x47\x9d\xe2\x5a\x21\x16\x11\xb8\x1f\x8c\x57\x44\x5b\x90\xe1\xb8\xb6\x69\xc2\xb6\xe6\xac\x21\xaa\x2f\x11\x87\x3f\x69\xf5\xfb\xf0\xee\x71\xcd\x69\x92\xec\xc9\xff\x34\x30\x4e\x33\x36\x01\x1f\x94\xc2\xb2\x32\x37\x9b\xc4\x6c\x62\xe1\x02\xed\x47\xf9\xb6\x4d\x26\x30\x8f\xab\x23\x8f\x0c\xbe\xad\x57\x2f\x45\x50\x45\xdf\x85\xbc\x45\x38\xab\x5c\x43\x9c\x37\xed\xac\x87\x3c\x38\x00\xad\xf6\x8e\xe0\xdb\x19\x43\x03\x6e\xc4\x63\x11\x04\x76\xd7\x24\xda\xa2\x73\x6b\x16\x04\x43\xec\x2b\xfc\xa0\xe7\x29\x8b\x77\xd7\x06\x8e\xba\x2c\xc3\x41\xaf\xdb\x25\x43\x2d\x29\x13\x11\xba\x2b\x15\xec\x86\xdd\x70\xeb\x50\x7a\x00\x75\xec\x75\x2f\xed\x74\x2b\xed\x77\x45\x34\xcb\xea\xf9\xbc\x33\x2a\xf4\x97\x94\x3d\xec\xb1\x92\x45\xf5\x38\x59\x8a\x16\x84\x3d\x01\xe0\xb6\xbc\xe9\x48\x07\xf7\xd9\xae\x99\x29\xb2\xb1\xbd\xc7\xfd\xac\x8c\xc0\xc6\x0b\xc7\x81\xce\xad\x3c\xee\x18\x7b\xb2\x93\x68\x4f\xb2\x59\x46\x64\x18\x52\x5b\xc8\x20\x98\x5c\xdd\x4e\xc7\xf3\x6e\x74\x22\x01\xba\xed\xb5\x75\x8a\x21\x0d\x69\xca\x68\x56\x38\xcc\x41\xc4\x0c\x29\xe6\x55\xda\x94\x5d\xcf\xce\xf1\xb1\xe4\xd7\x27\xad\x6e\x81\xb5\x5b\x39\xea\x08\x7f\x62\x1d\x21\x4f\xe9\x76\x99\xc8\xe8\xee\x31\x14\x84\xb3\xf9\xd9\xbb\xd7\xa6\xf3\xba\x76\xb0\x78\xd1\x54\x0d\x96\x13\xaa\xeb\x05\x8b\x37\x61\xa5\xe0\x13\x72\x4d\x45\x04\x99\xbf\x1c\x93\x10\x6d\xa8\x58\xc3\xde\x81\x54\x9d\xed\xd8\x07\x71\x27\xe4\xbd\x78\x63\x98\x6a\x75\x4a\x56\x34\x51\x6c\xd4\x28\x8e\x1a\xc5\x51\xa3\xf8\x2b\xd7\x28\x16\x18\x65\x90\x3a\x51\xd4\x51\x53\xf9\x1c\xae\x4c\x34\x32\x8a\x81\x5d\x2f\xa9\xb7\xed\x9c\x18\x08\xb8\xcc\x3a\x09\x71\x85\x7f\x3a\x51\x11\xc3\xe0\x98\x0e\xea\x8c\xb8\x2e\xdc\xf1\xbd\x82\x1f\x64\x71\x64\x04\xe2\x53\x2c\xca\x61\xfe\x09\xcc\x10\x38\x87\x2e\x8e\xa0\x43\xf0\xb9\x64\xfa\xd8\x1b\xb0\x45\xba\x35\x2d\x61\x5d\x58\x62\x06\x44\xed\x03\xb9\x7d\x9a\x18\x19\xad\x2d\x89\x79\x15\x32\x86\x48\x03\xc6\x2a\xbf\x21\x5c\x4c\x72\x1b\x39\xe1\x38\x0f\x98\xf1\x94\x08\x9e\x40\xb5\x98\x96\xf8\x85\x2d\xa3\xc8\xda\x94\xbd\x11\xb8\x63\x8c\xa1\x26\x50\x48\x31\xf1\xfa\x30\x02\x34\x17\x31\xfb\x44\xf8\x71\x9b\x1a\xc1\xbe\x2f\xe2\x49\xb8\x41\x82\x16\xf8\xde\x30\x8d\xc9\x02\x86\x6c\xe9\x13\xf1\x8a\xed\x13\x07\x70\x3d\x2a\x25\x23\x0e\x09\x39\xa8\xc6\xeb\xc8\x0a\x1d\xee\x59\xf1\x4b\x90\x0b\x34\xa0\xfc\x0c\x2e\xaa\x83\xe9\x7f\x42\x6e\xdf\x5f\xbc\x3f\xc5\xbc\x42\x22\x4f\x12\xba\x44\x4e\x72\x4b\x45\x0e\x12\x2f\x8d\x63\x60\x28\xa7\xe4\x07\xe6\x48\x0c\xe2\x21\x52\x24\x1e\xc8\x26\xeb\x70\xa2\xcd\x27\xe6\x84\x6d\xa8\x88\x13\x46\xfe\xf2\xd7\xff\x66\x90\x1f\x5e\xb6\x64\x6f\x33\x84\x04\x65\x7a\x37\x91\x36\x51\xa1\x83\x37\x2f\x61\xda\x7b\x30\x3d\xe8\x83\x37\x2c\x2d\x4e\x6a\xe1\xd0\xe3\x10\x99\xb7\x6b\xa1\xf9\x82\xbf\x72\xf5\x7c\x97\x58\x60\x4a\x6e\x25\x59\x19\xc2\xe3\xed\x37\xaa\x4b\x30\xa6\xae\xfc\x30\x88\x11\xcc\x45\xa9\x78\xe6\x57\xcf\xe5\x53\x65\xab\x2b\xb9\x23\xe4\x4d\xa3\x35\x00\x9d\x06\x0e\x26\x43\xf5\x48\x21\x0a\x1c\x7e\xda\x7a\x65\x68\x3c\x09\x1f\x79\x58\xc2\x23\x83\x04\x69\xc5\x0c\x6f\x4d\xb3\x10\x4a\xb6\x8b\x3b\xac\x72\xc2\x10\x89\xb7\x2f\x3c\xf0\xb3\x45\xc9\x88\xc7\xbd\x2e\xdc\xb7\xee\x24\x3d\x55\xe4\x7c\x76\x71\x7d\x20\xae\x8e\x59\xc2\x74\x50\xa8\xae\x8c\x72\x81\xcd\xec\x5d\x28\x98\x41\x1b\xff\x54\xb8\x7d\xdf\xcb\xec\x8e\x66\x32\x37\xc7\xd9\x4b\xff\xdf\xa2\xf3\x34\xe7\xca\x0b\x04\x3f\x9b\xcf\xd0\x01\x78\xb9\xc7\x69\x21\x5e\x4d\x30\x9e\x25\x63\x3a\xcf\x04\x81\x2a\x1d\xab\x84\x87\x21\xcd\xb2\x4c\x66\x2e\x58\xa5\x24\xab\x4b\xc6\x84\xc7\x1e\x69\x87\xa9\x5c\x9c\x35\xd3\x05\x46\x3b\x3c\xd4\xeb\x6f\x39\x13\x11\xbb\x82\xa8\xb5\x20\x18\xc1\x30\x70\x4a\x5e\xf4\x80\xd8\x20\x50\x23\x05\x82\x25\x0b\x3b\xb5\xb1\x70\xa8\x4a\xe6\xca\x2d\x01\xa3\xc8\x35\x0f\x2b\x3c\xca\xa5\x73\x45\xee\x33\xae\x35\x13\x56\x17\x50\xa1\x57\xe0\x20\xac\xa4\x1d\x14\x65\x76\x1c\x36\x8c\x74\x61\x26\x3e\x03\x43\x6c\x94\x99\x99\x08\xa8\x31\xb4\x2a\xfc\xd9\x6d\x26\xe7\x8c\x25\x8c\xaa\x96\xab\x03\xbc\xd8\x31\x49\xa9\xf2\x6c\x8b\xd5\x85\x7b\xe4\x10\xb0\x68\x15\xb9\x05\x3b\x4d\x12\x79\xaf\x48\xae\x7c\x6d\x32\x78\x4b\x2b\x4d\x28\xc9\x28\x66\x10\xb7\x39\xb0\x0c\x8d\x66\x42\xe5\x16\x00\xb3\x60\xfd\xc7\x0d\x05\x65\x36\x1c\x22\x5c\x90\xa1\xce\x22\x26\x19\x9b\xd8\xc9\x18\x29\x0a\x32\xde\x41\x90\x21\xb6\x71\x6c\x7a\xe0\x44\x61\xf9\x13\x20\xbd\xaf\xbe\x69\x3b\x70\x2d\x74\xb9\x7a\xe0\xde\xc8\xac\x44\xe9\x81\xd3\x37\x18\xdb\xf5\x4c\xa9\x97\x59\xa8\x95\xc3\x48\x3d\x9e\x8e\xc5\x05\xdf\xe4\x25\x57\xc0\x23\x04\xa1\x22\x5f\x74\xea\xca\xe3\x30\xf5\x91\x89\x33\xab\xb6\x9e\x11\x52\xc6\xaf\xde\xb1\xbd\x4b\x4f\x91\xaa\x63\xa2\x50\x0e\xbe\x63\xe0\x73\x1f\x51\xa5\x6d\xf5\x32\x40\xa0\xad\x08\x22\x8c\xdf\x31\xcf\xca\xd9\x40\x41\xe1\xa6\xd2\xda\x45\xce\x16\x12\x8b\x99\x4f\x6c\x64\x4a\x84\xaa\x39\x83\x22\x68\x0c\x4f\xa4\x58\xb3\x0c\xd1\xb2\x35\x2d\x62\x59\x98\x0f\x0a\xbb\x3b\x97\x62\xc5\xd7\xf5\xf1\xcc\x25\x61\x34\xe4\x6e\xdf\x89\x03\x73\x51\xec\x74\xdf\x02\x3f\x94\x4d\x5d\x94\x51\x86\x31\xcd\x4e\x19\xea\x33\x4a\xa8\xe6\x6f\x09\xa1\x30\x5c\x7d\x95\x95\x7a\x40\xde\xb7\x95\x28\xb7\x68\xa1\x27\xfe\xbc\x1b\xaf\x5a\xf8\xf6\x09\x10\xf8\xfa\x6f\xd5\x13\x53\x7f\xeb\xc1\x7a\xd4\x6d\x76\xea\x36\x23\x38\xe2\x8f\xa5\xdc\xc4\x0b\x14\xd2\x6e\xe2\x9b\xb0\x7a\xd3\xce\x29\xa4\xdf\x8c\x8a\x0e\x47\xaf\xc7\x51\x47\xd9\xba\x0d\xa3\x8e\xf2\xd7\xaa\xa3\x44\xbc\x70\x80\x92\xd2\x47\x31\xe5\xf3\x19\x5a\xca\x5c\x4b\xcb\x24\x32\x60\x23\x42\x14\xb1\x93\xc0\x6f\xe9\x27\xfc\x70\xce\xb2\x3f\x82\xa6\xb1\x8f\xff\xab\xb6\x07\x55\xa7\x90\x62\xf2\x77\x96\xc9\x63\xa7\xf8\xda\xd2\x4f\x1e\x83\xe7\x5b\x7e\x6a\x53\x83\x5c\x63\x54\x40\x02\x8b\x42\x33\x09\x32\x50\xa7\x72\xb2\x8d\x81\xee\xe3\xc8\x3a\x40\xd1\x4e\xfd\x1b\x30\x3e\x84\xac\x8f\xb4\xbb\x46\xbb\x51\x15\xf4\x58\xb4\xfb\x8f\xd0\x7b\x88\x76\xe3\x9b\x30\xed\xb6\x73\x0a\xd1\xee\x4d\xd1\xe1\x48\xbb\x47\xda\xdd\xba\x0d\x23\xed\xfe\xb5\xd2\x6e\xc4\x0b\x07\xd0\x6e\x1f\xc5\x94\xcf\xe1\xb4\x1b\xa8\xe2\x97\xe8\x75\x06\xc9\xb9\x61\xd5\x45\xbb\x6a\xb8\x93\x59\x40\x64\x38\xbb\x68\xfd\x2e\xa4\x88\x6e\x25\xac\x01\x53\xe5\xa4\x18\x62\xa4\xa2\x1d\x54\x34\x95\x32\x79\x1c\x0a\x3a\x97\xce\x65\xce\xa7\x9e\xe6\xd7\x10\xe5\x84\x79\x34\xa9\x66\x6a\x3b\x19\x29\xe6\x48\x31\x5b\xb7\x61\xa4\x98\xbf\x4e\x8a\x69\x70\xc1\x60\x6a\x69\x1a\x7f\x8e\x58\x8b\x79\xcb\x3e\xa8\x01\xc6\xfc\xa2\xa9\xf3\x4a\x50\x98\x28\x09\xb5\xeb\xc4\xe0\xa2\xc2\xb1\xc6\x85\x7b\x41\xa2\xce\x10\x49\x05\x5f\x9a\x22\xd3\x93\x8b\x36\x3a\x2e\x33\x35\x69\x49\xfe\xf2\xf4\x36\x17\x82\x25\x4f\x8f\xc9\xd3\x1f\x6c\xa8\xc2\xd3\xbf\xc2\x9a\x97\x34\xba\x9b\x40\xda\x43\xcd\x97\x3c\x69\x08\x83\xe4\x71\xe2\xb4\x80\x90\xde\xf0\xbf\x0f\x0a\x06\x40\x4b\x8b\xe2\x7f\x07\x51\x3b\x57\x18\xc1\x51\x46\xd6\x11\xaa\x14\x5f\x8b\xad\xb9\x48\xad\xc5\x14\x6c\xbe\x2d\x99\x4c\xc9\x85\x07\x9a\xaf\x5e\xd9\xce\x6c\x00\xe5\xcb\x97\x5f\xb9\x1f\x5e\x1d\x2a\xcb\x0f\x35\x90\xc3\x06\x7f\x8e\x75\x9c\x2b\xba\x4c\xfa\xcd\x1a\x60\xec\x74\x8d\x41\xbf\x91\xe5\x65\x20\xa3\x61\x08\x4b\x43\x36\x82\xae\x8c\x51\x0c\x81\xce\xe2\x20\x07\xbf\x03\x39\x30\x3b\x91\xd7\xdf\xcd\x2f\x3f\xb5\x44\x16\x54\xd1\xec\x05\x7e\x40\x18\x34\x37\x48\x35\x93\x79\x91\x49\x1d\xe6\x31\x9b\x13\x73\x4f\xff\xf7\xff\xfa\xff\xd0\xcd\x80\xc8\x5d\xd8\x67\xe8\xf5\x77\xf3\x29\xf9\xcb\x85\xb3\x7a\x83\x9f\xed\x5f\x03\x35\x5b\x3b\x57\xc0\x53\x9e\xf6\xcf\xba\xb0\x84\x9d\x5a\xcc\x0d\x79\xea\x38\x56\xf5\x2e\xc3\x36\xcf\xe6\xb3\xdd\x4b\xb8\x76\xf7\x34\x8b\x83\xf0\xae\x5c\x47\x43\x19\xb4\x25\x2d\x7e\xaf\xb0\x79\x88\x49\x8e\xab\xaf\x82\x5b\x88\xb1\xaa\x48\xa2\xcd\x0d\x32\x93\x9a\x06\x00\xd1\xe3\x17\xc3\x44\xdb\x09\x6c\x40\x04\x4e\xa1\x6d\x5f\x1e\x42\x03\x4b\xa2\x01\x1b\x99\x35\xf9\x68\x2e\xdc\x27\x04\x62\xc5\x2c\xe1\x3b\x96\x95\x75\x79\xcc\x4f\x45\xd5\x3a\x55\xcb\xce\x1d\x3c\xa3\xa4\x6f\x97\x09\x24\x8a\x0c\x86\x27\x35\xd6\x76\x0b\x98\x7a\x36\x87\x0f\x20\xd3\x11\xd8\x66\x85\x97\xdd\x6c\x71\x84\x09\xcf\x5c\x15\x4a\xa8\x6d\x3b\xc1\x7a\xab\x8b\xa3\x29\x21\x67\x6d\xeb\x35\x7d\xd6\x7a\x28\xfd\x23\x72\x65\x47\x2e\x61\x68\xf6\xd6\xdc\x10\x38\x23\xad\x75\xc6\x3d\x78\x55\x83\xc7\x1b\xb0\x23\xe4\xcc\x9b\x43\x75\xde\x6d\xbd\xc3\x04\xdd\x41\xaf\x4f\xf0\xde\xe5\x8e\xf3\xe7\x80\x01\x5c\xe6\x76\xb4\xf5\x49\xcb\xda\x59\xb6\x4e\xad\x63\x41\x5d\x75\x05\xd3\xb9\x70\x3b\x50\x46\xbd\x76\xd6\x1c\x7c\xc6\x57\x55\x9a\xf9\xdc\xcc\xa2\x84\x75\xe7\xd1\xe9\xa6\x74\x61\xc1\xd5\x9c\xf8\x77\x03\xc2\xde\xce\x1d\x73\x82\xb6\xb7\x3c\x2b\x19\x93\xc0\x86\x77\x1f\xf5\x59\x6d\x8d\xc7\xae\x30\x08\x57\x68\xb5\x07\x40\xa1\x97\xd4\xe2\xe8\x8a\xed\x20\x8f\xf8\x33\x48\xda\x5d\x1d\x2c\xd4\xbb\xe9\xc1\x52\x97\x50\x45\xba\xce\xf8\x3f\xaa\x27\x32\xd7\x6b\xc9\xc5\xfa\xdf\x05\xa5\x76\x62\x1d\x41\xf5\xfb\x81\xf0\xc0\x1c\x9f\x1e\x00\x4b\xac\xea\xf0\x22\xa4\xd2\xf4\xea\x6d\x91\xce\x18\x6a\xcb\x0e\x1b\xa9\xc3\x47\x00\x0d\xec\x2a\x73\xad\x78\xcc\x0a\xf1\xb2\x60\x50\x43\x9d\x42\x35\x12\xf5\xb7\x9c\x65\x34\x0e\x96\x96\xe9\x06\x87\x8c\x07\x17\x11\x38\x43\xe7\x2a\xcb\xb2\xdb\xe4\x74\xe6\xb8\x58\x8f\xd5\x22\xfc\x06\x50\xcd\x72\x8f\xb9\xe8\x42\x73\x2e\x2a\xf1\x1c\x76\x98\x77\x9f\x12\x2a\xbe\xf0\x6a\x7f\xff\x9f\x6f\xcf\xae\x7e\xb2\xbb\x0d\xa3\x05\xb9\xe3\x62\x02\x9f\x7d\xb9\x5b\x95\x66\x4d\xb7\x92\x51\x37\x56\xd1\x8d\x61\x4c\x18\x5e\xb6\x47\x51\x91\x5d\x97\x03\x34\x35\x65\xde\xcb\x90\xc2\xcc\x9f\x5c\x53\x6f\x96\x55\x7b\x1e\xd5\x67\xa3\xfa\xac\x75\x1b\x46\xf5\xd9\xaf\x53\x7d\xe6\x21\x88\xc1\x5a\xb4\x06\xc6\x29\x9f\xc3\x75\x6b\x36\x66\x36\x86\x14\xb5\x7d\xb4\xf6\xda\x6f\x5c\xad\x2d\x8e\x3f\x51\x11\x9f\x54\xd4\x47\x61\xa5\x07\xf8\x79\x34\x54\x26\xec\x53\x94\xe4\xb1\x2d\x72\x2b\xd8\xbd\xef\x68\x39\xc6\x8c\xff\xc4\x94\xf3\x2e\x5f\xb2\x32\xae\x4b\x55\x98\xab\xc7\x20\xa4\x7f\xca\x97\xec\xbc\x1c\xef\xdc\x1f\xaf\x4e\x57\xbb\xda\x36\xc9\x6c\xe7\x4a\xea\x54\xb7\xab\xf1\x48\x84\x47\x22\x3c\x12\xe1\x7f\x39\x22\xdc\x85\x4d\x9a\x34\xb9\x52\xd9\xa0\x0e\x60\x2f\x2a\xc5\x43\x22\x55\xc9\x74\x38\x69\xf6\xba\x18\x22\x04\xbb\xd1\x50\x2d\x8c\xb5\x26\xdc\xc8\xb6\x4a\xca\x8e\xc7\x39\x4d\x7a\x4a\x59\x7a\xc3\x1e\xac\xc2\xee\xab\x4e\xd9\x52\x93\xb2\x65\xca\xd5\x02\x95\xe5\xbc\x5a\x2b\x42\x5e\x5a\x8d\x38\x84\x15\x82\xa8\x7e\x0c\x21\x7f\x5a\x42\x3c\xb9\x96\x4e\xfc\x6e\xe9\x61\x40\x6d\x51\x83\xa6\x44\xc4\x13\x96\xcd\x59\xc6\x65\x7b\x04\x6b\x1d\x39\x5c\xd7\x3e\x74\xbe\xb1\x29\xfe\xa5\xa5\xf9\x17\xc4\xf8\xbb\x21\x78\x6b\xe8\x9b\x7b\x8a\x48\x39\x97\x6a\x8c\x6a\x0a\xbc\x82\x6f\x97\xf9\x76\x1b\x32\xca\xb8\xa7\x3f\xea\xb5\x2f\xe6\xb5\x25\xed\x58\x03\x02\x57\x32\xee\xde\x69\xf3\xfe\x97\xb1\xc9\x1b\x2f\x13\xdc\xd0\x0d\xf6\xb3\xc7\x95\xb6\x67\xb5\x17\x91\xd3\xa4\x03\x85\x84\x7c\x86\x5e\x79\xfe\x8e\xdd\xbd\x70\x56\xc6\xcf\x5d\xe9\xc0\xd5\x12\xeb\x39\x7e\x9e\x31\xda\x92\x1b\xb6\x65\xcd\x4f\xcf\x8a\xcf\xca\x9d\xcd\xb5\xdc\x52\xcd\xa3\xb2\xe2\x91\xec\x2d\xc1\x5d\x85\x0a\x88\x3a\x6c\xc7\xb2\xbd\xb5\x40\x94\x87\xd9\xc1\xa4\xeb\x48\x93\xc1\x35\x61\x87\x54\x84\x4d\x18\xbd\xfb\x2e\xa3\x11\x3b\xf0\xbe\xbf\xad\x7e\x57\xbb\xee\xd5\x78\x3d\x77\xe6\xbb\xd6\x04\x8a\x63\xac\x73\x0d\xa5\xf2\xa8\x6f\x6a\x2a\x63\x9f\xcd\x74\x0d\x0d\xbf\xc1\x73\x12\x08\x45\xae\x76\x69\xed\xc1\xb3\x39\x59\xd3\x6c\x49\xd7\x66\x3a\x49\xc2\x22\x0c\xb3\x2c\x01\xff\xf2\x4b\xd1\xc8\xbf\x23\xea\x24\x70\xff\xa1\x32\x5f\xd7\xf5\xab\xae\xf6\xa6\xf8\xc4\x77\x61\xb1\x85\xcd\x24\x89\x64\xba\x1f\x58\x8c\x1a\x30\x6a\x59\x5f\xc6\xcb\xee\xa8\xfc\x55\x5a\x84\xfa\xb8\x54\x02\x53\xbf\x0d\xa1\x13\x36\x53\x74\x07\xa5\xb0\xc9\x1d\x7f\x19\xb4\xe2\xdf\xef\x54\xf7\x6d\x75\xb5\x40\xe1\x90\x2d\xaf\x16\x27\xec\xda\x7a\xdb\x77\xdb\xf4\x6d\xb9\x41\xff\x68\x8c\x67\xe0\xe7\x38\x03\x2e\x69\x6f\x0f\x17\x55\xb5\xc1\xd6\xbe\xe9\x3a\x07\xae\xff\xb6\x35\xb0\x1a\x27\x36\x9e\x84\x9f\xe7\x24\x74\x47\x1d\x2c\xf3\xb5\xcd\x30\x3a\x1f\xe0\xbc\x76\x51\x6b\xdf\x24\x0b\x99\xc6\x34\x13\xd9\x8e\x91\x2d\xdb\xca\x2c\x9c\xf4\xc8\x1c\xa7\x34\x2f\xd2\xb7\x12\xc3\xe9\x34\x2d\xbf\xf8\xba\x66\xb6\xed\x4e\xf1\xf1\xf5\x57\x6d\x10\x68\xf1\x6a\x64\x3a\x8a\xbf\xff\xfa\x5c\x6e\x53\x0a\x1c\x57\xeb\xa1\xa9\x1e\x96\xcb\xe0\x67\xb5\x23\xb3\x64\xfa\xde\x70\x84\x66\x8c\xdd\xd7\x61\x49\xdf\x75\x50\xa8\x84\x4a\xc6\xd1\xbf\x0e\x3e\x1f\xf8\x22\x78\x5e\xba\xce\xc9\x86\xd1\x44\x6f\xce\x37\x2c\x1c\x8f\x5a\x5d\xda\x1f\xbd\xc6\x05\x02\x90\x99\x9b\x8a\x2a\xea\x09\x1b\x19\x01\x7b\x0e\x2e\x0d\x3b\x18\xc4\xe4\x74\xcd\x3d\x91\xeb\x1b\x23\x89\x70\xbd\xbf\x89\x32\xc6\x42\x99\x57\x6a\x7c\x7f\xfd\x0b\xb7\x2d\x89\x5c\x13\x65\xdf\x10\xba\x94\x3b\x66\xb3\x5e\x24\x72\xdd\x92\xe6\x8d\xa1\xd3\x89\x55\xac\x2a\x1d\xcb\x5c\xfb\x9b\x31\x13\x2b\x79\xe8\x8a\xd2\x4c\x6e\x0d\x33\x99\xab\x77\x4c\x67\x3c\x52\x43\xae\xde\xd3\x79\xe8\x2b\xb7\xb2\xdb\xf3\xb9\xbd\x7c\xce\xd3\xba\x6c\x1e\x5a\xd8\x16\xbb\xc0\x8b\x9a\x15\x45\xeb\xb9\xc0\x72\xf5\x3d\x27\xf0\x77\x2f\x7e\xf7\x4d\xfb\xa2\x83\x17\xad\xdd\x7d\xa2\x4d\xd7\xd5\xaa\x4c\x2c\x4d\x3b\x2d\xa0\xea\x54\x27\xc2\xd7\x9e\x5a\xd7\xee\xab\xf9\x35\xa0\x85\xb7\xc2\xa1\xa7\x3b\x24\x33\xfd\x14\xca\x94\xac\xf2\x04\x0d\x82\xf1\x16\x34\x93\x12\x42\xa6\x8d\x24\x07\x08\x10\xd3\x13\xd1\x48\xe7\xb4\xe1\x94\x83\x3d\xe2\x5e\xdd\xd3\x22\x57\xb4\x4b\xb5\x6e\x3d\x2d\xb7\x32\x46\xaf\xf7\xa5\x61\xc5\x77\x3c\x93\xe0\x03\x4e\x76\x34\xe3\x70\x11\x1b\xf3\x45\x37\xc4\xbb\x7c\xc9\x26\xbe\xf2\x33\xcd\x64\xc4\x54\x5d\xd3\xd1\x55\xb7\xa7\x1c\xed\x7b\x1a\x54\x7d\x1e\x18\x12\xd7\x46\xbd\x2a\xdb\x76\x59\x1d\xb5\x9e\x9c\x3e\x00\x80\x16\xef\xca\x20\x10\x30\xad\x97\x58\x25\x39\xa6\xaa\x07\x2b\x40\x2e\x04\x17\x6b\x3c\x20\x07\xe6\x1a\xca\xfc\x6f\x7b\xad\xb6\x7e\xe3\xda\xc2\x56\x2b\x23\xea\xef\x58\xe5\x54\x70\xe5\x06\x08\x2d\x90\xb7\x6d\xb4\x8c\x8f\x6d\x5a\xf0\x2d\xcb\xd6\xce\xd8\x71\x36\x9f\x95\xb6\x0e\xc3\x91\x84\x49\x72\xcb\x29\x0b\xc0\xa5\x87\x0b\xeb\xd6\x9a\x37\x80\xf3\x90\x9a\x73\xd2\xa7\x3d\x1f\x30\x7d\x32\x40\x8b\xde\x58\xc4\x61\x9a\xf4\x2e\x96\xf1\x21\xd9\xe5\x81\xab\x25\x87\xb1\xcd\x8d\xc5\x0f\x67\x9d\xfb\xb4\x90\x55\xce\x7a\x10\xfb\xdc\xd7\x65\x37\x77\x4d\x1e\x54\x53\xd9\xa1\x88\x27\x8f\xa5\x8c\x27\x0f\xa0\x64\x21\xc3\xcf\xc9\x40\xc5\x7c\x63\xb9\x07\x28\xe7\xfb\x76\xb4\xd4\xdd\x3f\x8c\x82\xfe\x80\xd5\x93\x43\x14\xf5\x0d\x18\x0c\x53\xd6\xf7\x77\x0a\xac\xc9\x83\x2b\xec\xc9\xe0\xab\x40\x06\x5e\x07\x72\x90\xf2\x9e\x7c\xbe\x02\xbf\x6f\x61\xe5\x35\x3a\x50\x89\xdf\xd7\x71\x80\x51\xee\x55\xe4\xf7\xf5\xd9\xa3\xe7\x27\x07\x6c\xd3\x88\xd4\x7b\x41\x34\xc8\x3c\xd0\x04\xce\xc3\x99\x08\xc8\x83\x9a\x09\x86\x2f\x7d\xc8\x05\xee\x34\x19\x34\x80\xf2\x90\x66\x03\xf2\xd3\x52\xb5\xf1\xa2\x3c\xc0\x69\x19\x64\x75\x20\x8f\x66\x79\x20\x8f\x64\x7d\x20\xe3\x31\xfa\x49\x8f\xd1\x40\xc3\x05\x79\x4c\xe3\x05\x79\x2c\x03\x06\x19\x0f\xd3\x4f\x78\x98\xfa\x5a\x0c\xb0\x7f\x90\xc7\xb2\x81\x90\x87\xb7\x83\x90\x7e\x5b\x08\x19\x52\x8a\x64\xb0\x4d\xa4\x01\x9c\x87\xb2\x8b\x90\x87\xb5\x8d\x90\x01\x67\xaa\xc7\x46\xd2\x5c\xea\x03\xd9\x49\xc8\x81\xb6\x92\x21\x6b\x19\x62\x33\x69\x2e\xe8\x60\xbb\x49\xdb\x72\x12\xb9\x56\x5f\x60\x3b\x19\xb2\xc2\xa1\x36\x94\xe6\x2a\x1f\xd4\x8e\x42\xbe\xd4\x96\xd2\xd6\x69\x9b\x89\x85\xf4\xdf\xdf\x8e\xda\x9d\x1d\xe6\x16\xd2\x89\x2e\xc7\xc0\x1c\x2f\x30\xc7\x46\x9d\x83\x30\xc3\x1f\x25\x71\xea\x15\x8e\x80\x02\x15\xbe\x28\x63\x6f\x2a\x2f\x9b\xc1\x36\xb5\xd9\xd9\x5d\x28\xc2\x6b\xfc\xd7\xd0\xb5\x8d\xa7\x29\x14\xd8\xc0\x13\x8d\x21\x35\x63\x48\xcd\x18\x52\xf3\xeb\x0a\xa9\xe9\x32\xe8\xae\x33\xa6\x7a\x3d\x3f\x6e\x5d\x9d\x62\x73\xfc\x19\xc4\x94\xe2\x87\xb6\x88\x37\xc1\xc2\x46\xe6\x8f\xc2\x86\x19\xa2\x50\xd4\x7d\x8d\x79\x3b\xc8\x96\xea\x68\x43\xa2\x8c\x6b\x96\x71\x0a\x97\x84\x92\x48\x66\x19\x53\xa9\xc1\xe7\x62\x4d\x2c\x9f\xa7\x25\xd6\x57\x3e\x28\xd6\xb4\xb2\x86\xc5\xd1\x19\xb9\x36\x13\x64\x22\xa2\xa9\xca\xe1\xde\x96\x33\x0a\x4d\xa5\x45\xe1\x4e\xad\xde\x96\xbc\x96\x7a\x53\x2b\xb1\xec\x95\x8d\xb6\x65\xed\x45\xdc\x28\x25\xdd\xc2\x30\x14\xe5\xd2\x6d\x49\xe7\x09\x51\x2c\xa5\x19\x96\xee\xc9\x35\xa1\x7e\x4c\x2f\x36\x81\x4c\x76\x66\x16\x5c\xc0\x7e\xb4\x4c\x58\xc4\x6e\xbf\x7c\xc0\x73\xb1\x9e\x42\x69\x7e\xac\x50\x0d\xa5\xed\x8d\x60\x52\x85\xc4\x86\xb6\xf5\x4a\x04\x5b\xc3\xe4\x2c\xe2\x35\xe2\x08\x5b\xf1\x4f\xae\x4c\xd4\x62\xb1\x38\xba\x92\xda\xfc\x67\x4a\xce\x92\xc4\xa6\x9b\xf7\x7b\x0f\xf7\x6c\x33\x33\x51\x3c\x50\xdb\x5c\x61\x7d\x30\xaa\xb9\x02\xb7\x07\x4c\x73\x62\x97\xa2\x25\xf6\x39\x25\x67\x40\xcc\x9a\xf9\x7e\x2d\x74\xe1\x70\x52\xe1\x0e\xa8\x15\xc9\xec\xa2\xa1\x88\x8f\x59\x8e\xf9\xc3\xae\x07\x28\x03\x76\xde\x0e\x57\x80\x7e\x78\x8a\x50\x85\x2a\x47\xb7\x0f\x9c\x62\x38\x8f\x54\xaf\xd4\x8f\x07\xae\x95\x23\xec\x97\x89\xbd\xac\x36\xad\xbd\xd4\x44\xd9\x32\x61\x55\xc5\x29\xa1\x76\x38\x80\x19\x86\x8b\xd9\x21\x8c\x57\xb2\xea\x10\x83\x0b\x75\xe8\x1e\x0f\x04\x06\xf1\x8d\xf0\x1d\x29\x73\x5a\x56\xb6\x38\xba\xaa\x7f\xec\x4a\x20\xa5\xe8\xb7\x62\x93\x1f\xb5\x55\x64\x2f\x9f\x02\x30\xb4\x40\x02\x84\x7d\x32\x24\x4c\x01\x7e\x78\x2f\x92\x3d\xd1\x19\x5d\xad\x78\x84\x90\x72\xf9\xbb\xfa\xf4\xfe\x40\xe5\x9e\x99\x23\x04\xe6\x28\xc4\x54\xfa\xb9\x67\xd4\xf3\x4a\x78\xe1\xd8\xed\x69\xe4\x6a\x20\x53\x45\xee\x39\xd8\x4b\x43\x00\x21\xc1\x12\x1c\xe4\x06\x6c\xba\x3b\x45\x2c\x29\xc1\xb6\x51\x80\xc0\x88\x77\xc8\x96\xc5\xce\xf1\x48\xd1\x2d\x5e\x05\xcc\xd9\xd3\xdd\x29\xe4\xb8\x72\x6a\x38\x6f\xc9\x78\xd6\xb2\x62\xde\x64\xb9\xc7\x49\xbb\x91\x7b\x80\xea\x96\xed\xe0\xe5\x42\x7c\xcc\xbc\x10\x0f\xbe\x91\x59\x95\x87\x3e\x6e\xa5\x01\xee\x81\xa4\xa3\x4d\xb0\x11\xbe\x4d\x13\xce\x54\x29\x2d\xfa\x87\x0d\x4a\x32\xf6\x6d\x18\x28\x8a\xc0\x46\x28\xd6\xad\x30\xe1\x1e\x7c\x07\xf9\x90\x14\x65\x45\x2b\xeb\x6c\x5d\xfe\xd3\x75\x22\x97\x34\x79\xf6\xbc\x47\x2d\xf7\xd3\x00\xe0\x3b\x98\x8c\x9d\xa2\x91\x9e\x65\x56\xf1\x1e\x80\x65\x74\x77\x6a\xd6\x58\xe9\xa6\xdc\xe8\xbe\xbd\xec\x99\xad\xbf\x44\x74\xdb\x53\xae\x16\x67\x6d\xd3\x28\xa4\x16\x24\x34\x9c\x47\xac\x7c\xca\x2b\xdb\x42\x38\x8a\xb1\x07\x29\x45\x05\xd3\xdd\x6a\xe5\xaa\x13\x0a\xd3\xaa\x1d\x31\x1a\x76\x1e\x2a\xa9\xa8\x7e\x23\xbb\x23\x81\xb0\x85\x40\x2b\x40\x74\x0a\xe3\xc5\x02\xf5\xf5\x40\xbb\x8a\x17\x2b\x79\x1d\x0d\xe7\x20\x8a\x22\xdf\x58\xbe\x17\xd3\x28\x76\x87\x74\xb6\xf3\x91\xde\xb8\x03\x6d\xc7\x1d\x19\x80\xcb\x47\x48\x7d\x75\xd8\x9e\xe0\x07\x4e\x25\x55\x63\xbf\xdc\x8a\x4d\x93\x1e\xf2\x62\xf6\xf1\x17\x07\x8b\xb9\xcc\x0e\x04\x06\x7c\xd1\x03\x0d\x68\x33\x04\x1c\xe4\x06\x4a\x87\xc2\x29\x55\x72\xcb\xa0\x6c\xa9\x8c\x64\xa2\xc8\x86\xee\x50\x7b\xaf\x8e\xd1\x31\x64\x8f\x7f\xf5\x20\xda\x8c\x79\x09\xaa\xb9\x76\xea\x37\xe5\xb4\x87\xd0\xbb\xe5\xa8\x2c\x22\x37\x02\x4a\x2f\x56\xb4\xb5\x72\x21\xcd\xdd\xed\xf9\xdc\x25\x5a\xfd\x70\x31\x6f\xcd\xe2\x89\xcf\x90\x5d\xa5\x62\xff\x7e\xd5\xd3\x66\xd2\x6f\x28\x68\x36\x1e\xe2\x3a\x94\x52\xad\x59\x26\x4e\xc9\xff\x98\xfe\xb7\xee\x96\x9f\x26\x77\x85\x0f\xc5\x84\x0b\x3d\x91\xd9\x04\x47\x68\xab\x47\x5e\x3e\x43\x0f\xe4\xe1\xcc\xe5\x55\xf9\x51\xcf\xb1\x1c\xc6\x5f\xd9\x93\x49\x6e\x98\x47\x5c\x10\x0b\x1b\x01\x43\xe5\x4b\x9d\x30\xc3\x2b\xa3\xc0\x65\xc7\xea\xee\xb3\xe0\x96\x3a\x8f\xca\xb0\x3d\x4b\x0f\xbb\xb2\x8b\xa3\xe2\xc6\xf6\x91\x95\x7e\x62\x3b\x80\xac\x6c\x40\x62\xb6\x7a\xa7\x67\x9e\x10\xf2\xbc\xe7\x18\x16\x7a\x7e\x64\x35\x95\xcb\x6d\xac\x37\x4c\x31\x92\x51\xb1\x66\xea\xc4\xa9\xed\x20\x07\x72\x67\xea\x5d\x7c\x2a\x29\xb9\xec\xd5\x01\xb3\x10\x42\x59\x39\x08\x58\x1d\x98\x1d\xa6\x87\x57\x5e\xe1\x1e\x20\x03\x37\x14\x83\xf5\x62\x00\x6c\x7a\x10\x06\xeb\x59\x7b\x89\xde\x6a\x18\x6c\x81\x38\x6c\x61\xb1\xd8\x02\xf1\xd8\xc2\x60\xb2\x4e\x9e\x67\xc4\x65\xf0\x0c\xc2\x65\xea\x33\xa4\xe4\x7e\xe1\xb8\x53\xd3\x57\x3e\x41\xe1\x98\x3c\x53\x8c\x39\x15\x19\xa0\x32\xba\x4d\x13\x46\xd4\x5e\x68\xfa\x29\x94\x7f\xd5\x7f\x16\x8b\x4e\xd9\xda\xf2\x90\x6d\xb2\x73\x77\xdf\x4e\x33\xe6\x89\xd6\x32\x6b\x8a\xcc\xe6\xba\x5d\x49\xcd\x60\x6c\x73\x7a\x7a\x80\x60\xa3\x62\x9c\xd1\xa0\x87\x2a\x20\x78\x3c\x6a\xd2\xdd\xfb\x92\x25\xf2\xfe\xf9\x71\x75\xca\x1e\xb0\x11\xaa\x84\x6b\xc5\x92\x95\x33\x3e\xf7\xc0\x01\x95\x61\xa0\xe6\xbc\xdd\x30\xa2\xef\x25\x9c\x35\xc8\xae\xe4\xde\x21\x82\x30\x44\x68\x5f\xa6\x2c\xef\xd9\xbb\xf7\xc2\xad\xde\xb9\x6e\x95\xea\x57\xe6\x49\x49\xb8\x1a\x54\x2d\xd8\xf6\xfd\x34\xe1\x7e\x23\x13\xbb\x49\xa7\xb0\x45\x8b\x45\x49\x90\xff\x00\xd8\xe5\x37\x1b\xaa\x9e\x6d\xf7\x1f\xc1\xa7\xf2\x39\xe0\x1d\x8b\xe4\xfb\xae\xb3\xcd\xc0\xef\xb4\x10\x70\xc8\x70\x7e\xe8\xf1\x52\x06\xdc\xc4\x66\xdc\x81\xe7\x0d\xfa\x8b\x25\x38\x76\x00\x96\x46\x9b\xd2\x92\x25\x30\x5d\x37\x53\x54\xa2\xda\x25\x0d\x3e\x18\xb8\xe4\xd6\x15\x37\x17\x65\x66\xd1\x56\x48\xa4\x7c\xba\xd7\x5b\x2c\xa9\x6f\x39\x7d\x97\x5c\xc0\xc9\xc3\x30\x28\x64\xa7\xac\x2a\x21\x01\xd4\x6a\x8b\x03\x80\xad\xb8\x58\x49\xff\xe4\x85\x14\x13\xeb\xa2\x64\xed\x61\xe4\x7e\xc3\x32\x66\xf5\x22\x2b\x99\x6d\x99\xaf\xa4\x00\x8f\x28\xec\x7d\x80\xd2\xae\x09\x1a\x2f\x9f\xd0\x03\x08\xf1\x55\x4f\xca\x03\x78\xaf\xaa\x33\xe5\x4f\xc7\x83\xd5\xd0\x72\x77\x9f\x01\x95\x27\x25\xa9\x8c\x5d\xc8\x1b\x9a\x40\x0a\x14\x3d\xc0\xed\xb3\x70\xfc\xec\x3c\x6d\x83\x63\x3c\x7c\x83\x7c\xfb\xd3\x8c\xff\xfa\x72\x70\x93\xcf\x01\x79\x7f\x97\x6d\x9a\xe6\x00\xd8\x07\x41\x9b\x78\xae\xb6\xf7\x1b\xa9\x50\x2d\x69\x96\x6f\x59\x40\xc3\x00\xf7\x06\x4f\x0c\x61\xee\xc8\x41\x41\x29\x03\x39\x25\x32\x94\x5b\x22\xcd\xfb\xd5\xcb\x2f\xfd\xeb\xee\x74\x45\x56\x2a\xb5\x6e\x88\xf7\x8b\x22\x03\x2d\x85\xbc\xaa\x4f\x69\x86\x00\xeb\xc2\x8d\x6f\x55\x28\x65\x11\x9b\xf9\x9f\xed\xcd\xef\xfd\x9d\x9e\x5d\x5d\x3c\x1d\x10\xb3\x73\x98\x46\xab\x2f\xc2\xc9\x42\xf1\x20\xf9\xd8\x62\xe9\x2e\x7c\x31\x8c\xeb\xc6\x2f\xd1\x40\x5c\xe0\x4b\x2f\x05\xa6\x1b\x08\x9c\x4a\x4b\x87\xd2\x01\x96\x99\x4e\xa6\xbb\x7e\xbc\x86\x72\xdd\x01\x73\x96\x83\xdf\x33\xf5\xbc\xce\x7e\xa3\x3b\x8d\x99\x4d\x9f\xae\xec\x04\x66\x05\x45\xca\xdd\x4c\x9e\x2a\x90\x6e\xad\xc4\xec\xe0\x1d\x15\x6e\x21\x05\x30\xfa\x60\x51\xb5\x6c\x99\x9b\xe3\x0e\xeb\xb1\xcf\xba\x1f\x37\x2d\x0a\x3d\x60\xbe\x62\x86\xfd\x75\xca\x5e\x99\xd5\x69\x37\x4e\x1d\x55\x29\x06\x10\x4e\x13\xda\x63\xad\x34\xe7\xc9\x6c\xa0\xbf\x46\xd4\x1b\x15\x50\x90\xc2\x39\x12\x58\xc7\x8e\x6e\x96\xe5\x20\xb2\x79\x38\xd5\x2c\xa6\x59\xc6\x48\xa3\x49\x7e\x78\xf8\x14\x71\x6b\xf3\x6c\xf0\x0f\x84\x04\x86\x85\x82\xb7\x2c\x0d\x03\xc2\x9b\xeb\xc3\xdf\xc3\x09\x6c\x9b\x0f\x62\x59\xbb\x42\xb8\xc9\x09\x5b\x69\x57\x08\xb1\xa0\x21\x70\x7b\x06\x28\x69\x88\x7f\x11\xa1\x12\x8b\x11\xcf\x9f\xaa\x72\x66\x3f\x29\x06\xed\x6f\xb3\xd1\x3a\x54\x9f\x0e\x9f\x6a\x8c\xf1\xed\xed\xbc\xb4\xd7\xb7\x3a\x31\x98\x53\x62\x9a\xb6\x4f\xbd\xf0\x37\xff\x22\xff\x85\x2d\xd3\x1b\x19\x1f\x40\x19\xde\xe1\x07\x0f\xcb\xb5\xe3\x92\x11\xa9\xe3\xba\x3d\x57\x39\xd3\x27\x16\x77\x62\xbd\x39\x42\x1d\x5f\xc7\x62\xec\xc5\xcd\xf6\x19\x9b\xae\xa7\xe4\xbb\xcb\xdb\x63\x32\xff\x70\x7b\x4c\x98\x8e\xa6\xcf\xc9\xbb\x3c\xd1\x3c\xed\xb3\x73\x58\x10\x01\xdd\x7f\x7f\xfd\xd4\x88\x61\x6b\x08\xa2\xfc\x65\xd9\xad\x52\xaa\x37\x07\xec\xe3\xd3\xb9\x69\xff\x18\xdb\xd8\xb7\x83\xfd\x18\xc5\xdf\x41\x98\xe6\xb4\xd8\x2a\x5c\xa6\xdb\x8b\xa1\x9b\x41\x08\x9b\xae\x4f\xc9\x84\xb0\x4f\x34\xd2\xa7\xe4\x64\x25\x25\x99\x58\x27\xb1\x53\x72\xb2\xa4\x19\xb9\x7a\x7f\x7b\x79\x8a\x0e\x68\x4c\xe8\x6c\x4f\xb6\x7d\xec\xf9\xfb\xab\xb7\x7f\xb6\x98\x73\x4f\x18\x07\x05\x0c\x25\x8b\x23\x18\x04\xb5\xc8\xe6\x4f\x1c\xc5\xe9\x3a\xa6\xe4\xb6\x6f\xf9\x3b\x9a\xf0\x98\x16\xca\x3e\x08\xbc\xc0\x5a\x67\x3a\x54\xdc\xac\x7c\x86\x9c\xb9\x5a\x7c\xc8\xed\xed\xdc\x40\xd8\x23\x00\x54\x20\xe0\x0d\xa0\x87\xd3\xaa\x99\x06\xff\xd8\x25\x73\x80\xb0\x7a\xc4\x95\xcc\xb6\xa7\x0e\xec\x8b\xfc\xc5\x8b\xaf\x23\xd3\x31\xfc\x8b\x9d\xda\x64\x42\x83\xd4\x5e\x78\xd4\x60\x56\xd0\x9d\x41\x18\x59\xb1\x85\x65\xd7\x13\x0b\xef\x2f\x1a\x01\xfb\xe8\x71\x35\x39\x20\x1f\x03\x02\xe0\x61\xc5\x48\xbb\xf4\x87\xec\x74\x68\xc2\x84\x01\x08\xa9\xbf\x2b\x1e\x6d\x07\xd2\xcc\xd9\xf9\xbb\xf9\x50\x0f\x10\x40\x46\xed\x73\xf7\xb1\x94\x57\x9f\xce\xcc\xd6\xc6\x60\x62\x95\x3d\x18\xd2\x0a\x18\xb6\xba\x68\x87\x7c\x85\x1e\xfa\x4d\x9e\x96\xaf\xaa\xf6\xa9\xa2\xce\x61\x61\x35\x37\xe3\x74\xb1\xb6\x60\x4f\x37\x8d\x76\xaf\x3a\xf4\x94\x83\x4e\x62\xd4\x9d\xf8\xa5\x4e\xe7\x81\x33\x91\xc2\x87\x12\x00\x25\xc2\x6a\x9f\x07\x08\x6b\x10\xb4\x64\x00\x8c\x5e\xf9\xe0\xa2\x0a\x95\x54\x7d\x58\x59\xeb\x25\x98\x26\x35\x8b\x36\x82\x47\xcd\xa4\x64\xd5\x07\xd4\xa2\xa8\xfe\xe7\xdb\x54\x7a\xb9\xb2\xef\x0c\x53\x9e\x3c\x55\x84\xa7\x1a\xe3\xdc\x56\x3c\x63\xf7\x34\x49\x7a\xa6\x8a\xd8\xc2\x2a\x65\x73\x85\x8e\x53\x4c\xac\x24\xc6\x0b\x58\x17\xbd\xfe\xab\xd1\x6b\xc3\x83\x66\x5f\xbe\x19\xa6\x9b\x29\xfa\x92\xb1\x4f\x60\xb8\xea\x33\x81\xe1\x1e\xc8\x15\xf9\x2d\x7a\x79\xc3\x0a\xa1\xaf\xcb\x68\x23\xc9\x35\x12\x6d\x5b\xac\x30\xe5\x62\xad\xba\x6d\x60\x83\xd6\x3b\x00\x19\xa4\xe1\x70\x9b\x16\x80\xcc\xe6\x2e\xec\xe6\x8b\x1d\xc3\x2a\xca\x2d\xe4\xc7\x7d\x28\xcf\x9d\x65\xac\x15\x0a\x03\x20\xd0\x12\x38\xd1\xb2\xb8\x77\xb6\xb5\xe7\xd6\x5b\xa4\xb2\x83\x78\x90\x6c\x5b\xd6\xfa\x0a\x05\xb1\x54\x17\xf7\x45\x48\x03\x94\x11\x58\x04\xa9\xbb\x32\xc0\xd0\x64\x7b\xe5\x33\x94\x2c\x55\x2b\x8e\x96\xf3\xb1\x01\x3f\x68\xb5\xbb\x63\x7b\x7b\xb4\x53\xca\x6d\x2a\xbd\xee\xe1\x8d\xc8\x4a\xd8\x27\x9d\xd1\x0a\x4c\xe9\x52\xe6\x7a\x00\x21\x79\x28\xc9\x51\x48\x6d\x6e\xdf\xb0\x93\x71\x85\x8d\x7b\x3c\x7a\xa0\x49\xb7\x67\xdd\x48\x30\x46\x82\xf1\xeb\x26\x18\x42\x6a\xc7\x56\xb5\x82\xa5\xdb\xeb\x66\xa0\xbf\xcd\x30\x4f\x9b\x86\x43\xa8\x63\xf9\x7a\x7c\x42\x6d\xb3\x76\x80\xf5\xdc\xe3\x01\xae\x3d\x9f\xe7\xd4\x93\xfe\x52\x81\xbb\x38\xf2\x61\xfb\x80\xb4\xbf\x61\xd8\x02\x0d\xaf\xcf\x09\x38\x98\x4c\xe1\xd4\xf3\xac\x4b\x33\x6f\xbd\x73\xed\x3e\x5f\x42\xa8\xd1\x35\x44\xca\xb9\xa8\x2f\x54\x9b\x3f\x5b\xb2\x88\xe6\xca\xfa\xc4\xf5\x98\x12\x8a\x29\x46\x2c\x83\x3e\x0a\xbf\xba\xe7\xa8\x8a\x7f\x67\xc3\xbf\x2a\x5e\x82\x7d\x24\x16\xdd\x07\x4f\x7d\x0f\xb8\x63\xdf\xff\x0d\xff\x00\x49\xa5\xf2\xd7\xee\x55\xf9\xf7\xcd\xf9\x2d\xbe\x6d\x1f\xc6\xf6\xf8\x96\x6b\xe6\x9c\xec\xa8\x70\x07\xc4\x19\x65\xc1\xd5\x90\xbc\x9c\x7c\xf5\xed\xb7\x1d\x2a\xff\xc7\x3b\xf6\xe8\x88\x31\x8c\x1a\xdf\xa0\x3b\xe7\xb0\xa8\x34\xa2\x65\x87\x00\x89\x3d\x8d\x01\x69\x63\x40\x5a\xbf\xd9\x73\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\xad\x6d\xc5\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x6d\x2b\x19\x71\xd9\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x86\xcf\x18\x90\x36\x06\xa4\xd5\x9f\x31\x20\x6d\x0c\x48\x2b\x9e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x82\x9d\x8e\x01\x69\x1e\x2c\xc6\x80\xb4\x31\x20\x6d\x0c\x48\xab\x3e\x3f\x65\x40\x5a\x47\x79\x05\x42\x26\x36\x8b\x6f\xe8\xdd\x90\x32\xfd\x41\x3e\xc1\xde\x8d\xcf\x48\xdf\x5d\xbd\x55\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\x1d\x9e\xde\x98\xbf\x7b\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\xca\x67\x74\x97\x2a\x9f\xd1\x5d\x6a\x74\x97\xfa\x45\xb9\x18\x8c\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x05\x1b\xff\xca\x70\xd9\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\x81\x67\x74\x97\x1a\xdd\xa5\x8a\x67\x74\x97\x1a\xdd\xa5\x46\x77\xa9\x60\xa7\xa3\xbb\x94\x07\x8b\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\xaa\xcf\x98\xbf\x7b\xcc\xdf\x3d\xe6\xef\xae\x3c\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\xd0\x08\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\x4c\xc7\x3a\xa6\x63\x1d\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\xed\xf3\x1f\xf3\x77\x8f\x04\x63\x24\x18\x63\xfe\xee\x31\x7f\x77\xe5\x19\xf3\x77\x8f\xf9\xbb\x6b\xcf\x98\xbf\xbb\x5d\x80\x1c\xf3\x77\x8f\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\xe6\x3f\x63\x40\xda\x18\x90\xf6\x8b\x0a\xe2\x18\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x0b\x36\xfe\x95\xe1\xb2\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x02\xcf\x18\x90\x36\x06\xa4\x15\xcf\x18\x90\x36\x06\xa4\x8d\x01\x69\xc1\x4e\xc7\x80\x34\x0f\x16\x63\x40\xda\x18\x90\x36\x06\xa4\x55\x9f\x7f\xed\xfc\xdd\x90\x94\xbb\x2f\x7b\xf7\x7b\xd3\xa8\x03\x7f\x57\x37\x5d\x62\xeb\xe0\x3c\xd1\xed\x0e\xf3\x26\x83\xa2\xc4\x74\x0a\x96\xc5\x78\x8a\xba\x93\x42\xf3\xbb\xe1\x6b\x23\x88\x2e\x8e\xa0\xbf\xc5\x11\x90\x4b\xdb\x36\xd4\x35\x5d\x19\x01\x4a\x03\x83\x06\x1d\x24\xf2\x9e\x65\x38\x1b\x74\x63\xf4\x26\xa7\x88\xdc\x72\xad\x0d\xde\xe5\x2e\x02\x26\xd4\x69\x24\x85\xe2\x98\xb6\x1c\x75\x7c\x8b\x23\x2e\x56\x5c\x70\xcd\x16\x47\x64\x42\xc0\x79\xce\x5b\x8e\xc3\xea\x76\x9e\x24\xa1\x4a\x4f\x49\xb1\xb2\x20\x48\xcc\x5c\x79\xcc\x84\xe6\x11\x4d\xec\x04\xeb\xfd\x70\x41\x68\x92\x6e\xa8\xc8\xb7\x2c\xf3\xda\x41\xc6\xf0\x50\xaf\x16\x97\x5b\x75\x14\x7a\x88\x04\xe5\x53\x3c\x1b\x22\xdf\x2e\x9b\x9a\xc2\x0e\xb6\xb1\x46\xe4\x6f\x7d\x35\x0d\x1e\x14\x4f\x59\x93\x2b\x2b\x73\xf2\xe8\x0e\xff\x4f\xe6\xc1\xf3\x6f\xa6\x5c\x13\xba\x3d\xe0\xda\x70\x0d\x0f\x2c\x5a\x3a\x9a\xd7\xae\x3a\x28\xe7\x61\x58\x87\x24\x91\xf7\x88\x0a\x50\x83\x54\xe8\x54\x90\xb1\xfb\x03\xaa\x17\xf0\xb6\x7f\x4c\xb8\x66\x19\x05\xc9\x3e\xd4\xf3\x62\x41\x26\x18\xae\x64\x0e\xca\x36\xa5\x19\x57\x52\x1c\x13\x88\x59\x74\x6a\x01\xd7\xe5\x4a\x4a\xb2\xa4\x19\xe8\x2a\x8a\xe1\x7e\x73\xe0\x70\xe5\x78\x86\xb2\xb3\xbf\xe5\x34\xf9\x3d\x7a\xd8\x3a\x4e\x95\xaf\x2c\x8b\xca\x15\xb4\x71\x9a\xf7\x62\xc8\xf0\xbd\xfc\x11\xe6\x41\x4b\xbf\xb0\x65\xf9\xcf\x08\xff\x39\x9d\x4e\xc9\x3f\xbd\x19\xe8\x2c\x67\x2e\x50\xa6\xf0\x35\xc5\x31\xfe\x93\x84\x7d\xdb\xad\xc9\xa1\x67\xa8\x72\xae\x66\x01\x5c\x0c\x98\x5c\x68\xb0\x03\xe7\x0b\x83\x75\x4d\x30\xbc\x25\xde\x9c\x37\x54\x3d\x83\xfe\x3e\x1a\xe2\xf2\xbc\x1c\xfa\xb6\x18\x99\xea\x72\x77\xbc\x9d\xf9\x0d\x1c\xd2\x20\xce\xb7\x5d\x14\xea\x49\xb9\x82\xb6\xa0\x9d\x82\xff\xe6\x2f\x5e\x7c\xf5\x0a\xff\x1f\xdf\x14\xdf\xdc\x6c\x64\xa6\x27\x11\xcf\xa2\x9c\x6b\xe0\xaa\xec\x47\xa1\x81\xfe\xf1\x8f\xce\xaf\xc1\x8e\xa1\x9f\x61\x9b\xe7\x45\xa3\x94\x66\xcc\x72\xe4\xeb\x4c\xe6\xa9\xe1\xc8\x17\x0b\x4d\x93\xe4\x59\xd0\x1e\x65\x53\xda\xa3\x57\x4a\x81\x2f\x5c\x6f\xee\x0c\xd3\x24\xf1\x54\x4c\x70\x41\xdf\xe2\x79\x40\x19\x2a\x2c\x1e\x51\x73\xb5\x11\xcf\x38\x4f\x4d\x1f\x65\xaa\x63\x32\x39\x26\x1f\x01\x0e\x27\x53\x72\x03\x57\x8e\xd8\x2b\xd7\xda\xe9\x56\x66\x8c\xa4\x86\xfd\x57\x8a\xef\x18\x59\x62\x8c\xc1\xde\xa9\x37\xad\xe2\x99\x30\x15\xd1\x94\x91\x68\x43\x33\x1a\x69\x96\xd9\x69\x5f\xa2\xab\x76\xf0\x32\x3c\x03\xc4\xbf\xa5\x31\x9b\xe4\x29\x1e\x0b\xf5\xbc\x40\x47\x10\xd8\x66\x51\xc7\x3d\x5b\x1a\xc1\x81\x59\xe4\xe1\xef\x78\xcc\xd2\x44\xee\xb7\x4c\x04\xd1\xa9\xfd\x3e\xcd\x64\xec\x0e\x29\xf4\x6b\xee\x14\xe0\xa4\x4c\x0a\xcd\x44\xec\x1d\x75\x1a\xdd\xd9\x1f\xfe\x69\x9a\x97\xfd\x93\xdf\xfc\xa1\xed\x06\xc4\x6c\xe7\xba\xff\x0d\xa9\xdd\x82\x10\x2a\xeb\xe2\xa8\xaa\xca\xc0\x0e\x73\x75\x87\x26\xb0\x5b\x6f\xb1\x42\xff\xd5\x92\x2c\x84\x96\xe5\x28\x16\x9e\x51\xab\x50\xc0\xf2\x1c\x52\xb8\x49\x3a\x5d\x41\xc8\xec\xdc\xb5\x46\x30\x3a\x0c\xa0\xa9\x60\x9b\xe0\x22\xe6\x11\x88\x9e\xf7\x1b\x08\x98\xf6\x19\x59\xdf\x2b\xcb\x4a\x39\x41\x3c\x65\xee\x9d\xb4\x05\x3c\x8e\xed\x5f\x4b\xa9\x37\x53\x82\x8e\x92\x40\x4d\x3e\xa5\x86\x49\xd1\xc9\xde\x93\xa5\x9e\x41\xf1\x91\xa0\x07\xac\x87\x47\x05\x89\x32\x66\xe3\x33\x94\xbd\xdd\x32\x23\x82\x27\xcf\x8f\x5d\x8c\x45\xcc\x56\x34\x4f\xb4\x22\xb8\x2c\x03\xba\x2c\x6e\x61\xa9\xb5\x24\xf7\x06\x57\xce\xac\xe0\x66\x26\x71\x69\xff\x69\xee\xa3\xc5\x9c\x45\x05\x0e\xf4\xf7\x03\xd5\xba\x1d\x26\xd4\x2b\x57\x78\xbb\x26\xe4\x2f\x96\x2f\x32\x53\x71\x63\xfc\xf5\xd8\x12\x07\xc3\x65\x82\xd9\xc0\x0d\x89\x75\x52\x9e\x71\x11\x25\x79\xeb\x8c\x37\x8c\x44\xd4\x70\x9e\xd0\x41\xd9\x0d\x41\xf2\x2c\x64\xb1\x18\xe8\xee\x79\x60\x26\x97\xad\xf5\x57\xea\x73\xab\x4c\xcc\xa0\xa4\x7a\xf7\xed\xeb\x0c\x1e\x8f\xfa\x1c\x1a\x03\x82\x06\x2b\xb0\x1b\x56\xa2\x0e\xe2\x05\x81\x47\xab\xca\xeb\x67\x8c\x9a\x7b\x14\xdd\x11\xba\xa6\x5c\x1c\xdb\xd3\x80\x66\x8f\xe4\x9e\xee\x95\xf5\x82\x0f\x9e\x62\xe7\xad\x80\x6e\x0a\xc7\x44\xb0\x1d\xcb\x2a\xe7\x2d\x28\xdd\x0f\x2c\xef\x53\x42\x81\x30\x20\x1a\x85\x41\x2f\x95\x4a\xf1\x65\xe2\x06\x2e\xfd\xb0\xcc\x07\x37\x29\x8b\xc2\xf2\x1e\xae\xad\xdd\x33\xad\x5b\xb2\x6c\x15\xda\xc2\xb2\x5e\xf3\x57\xa0\x19\xb1\x6f\x6f\x57\x5a\x66\x74\xcd\xdc\x4f\x4a\x53\x9d\x23\x60\xd0\xe4\xc4\xe2\x2b\xcf\x18\x70\xc7\x45\x6c\xf0\x90\x03\x69\x9a\xe4\x19\x4d\xca\x5f\x22\x29\xd0\x02\xac\x4e\xc9\x5f\xfe\x6a\x7e\x31\xfd\xb3\xd8\x46\x78\xda\x5f\x17\x62\x32\x99\x2c\x04\x4d\xb9\x0b\x14\x25\x34\xe5\xec\x93\x66\x02\x5a\x4d\xef\x7e\xab\xa6\x5c\x9e\xec\x5e\x2e\x04\x8e\x78\x9e\x2b\x2d\xb7\xd7\x0c\x4d\x59\x17\x0c\xc4\x2d\xc0\xd3\x95\x70\x4c\x50\xc0\x10\x81\x2e\xaf\x8a\x69\x35\x8d\xb2\x78\x9a\x66\xd2\x40\x20\x02\xa4\x33\x95\xd9\x7a\x21\x0c\x36\x83\x2f\x80\x45\x39\x25\x2d\xcd\xaa\x96\x10\x9c\x4a\xe9\x97\x8b\xbf\x26\x5c\xe9\x3f\xd5\xde\xbc\xe5\x4a\x57\x01\xe4\xcd\xc9\xc2\x9d\x8b\x75\x9e\xd0\xcc\x7f\x05\xf0\x8a\xa4\xd9\xb4\x42\x7b\x02\x92\xdc\xce\x81\xcf\xfc\x31\xb1\xcb\x34\xd0\x81\x9e\xa2\x0d\xdb\x96\xe1\xa8\x32\x65\xe2\x6c\x3e\xfb\xfe\xeb\x9b\xea\xef\x4d\xc7\x57\xe7\x5e\x6c\x5d\xb8\xca\x21\x27\xec\x6f\x39\xdf\xd1\xc4\x20\x54\x7b\xae\xeb\x3e\xc9\xde\xe1\x6d\x51\x8f\x79\xbb\x5b\x3d\xab\xd5\xac\x15\x66\xaa\xd6\x3b\x00\xbd\xe9\x71\x32\x76\xc5\x2c\xb6\xcb\xc3\x79\x00\xb6\xb0\xa8\x9e\x86\xf4\x1e\x72\x05\xd4\x1d\x4e\xfc\x14\x58\x00\x96\x29\x27\x24\x46\x52\xec\x58\xa6\x49\xc6\x22\xb9\x16\xfc\xef\x45\xe7\xca\xf9\x2b\x40\xf5\xae\x06\xa1\xe0\x42\xb3\xcc\x30\x0b\x70\xd5\x51\x2b\xbb\xa5\x7b\x92\x31\x33\x0c\xc9\x85\xd7\xa1\xf3\x96\x7a\x67\x98\x44\x2e\x56\xf2\x14\xf2\x09\xa9\xd3\x93\x93\x35\xd7\xee\x60\x47\x72\xbb\xcd\x05\xd7\xfb\x13\xb0\xa0\xf2\x65\xae\x65\xa6\x4e\x62\xb6\x63\xc9\x89\xe2\xeb\x09\xcd\xa2\x0d\xd7\x2c\xd2\x79\xc6\x4e\x68\xca\x27\x30\x77\x01\x37\x6b\xba\x8d\x9f\x64\xf6\x26\xa8\xa7\x21\x3c\xd0\x44\x1f\x70\x74\xbb\xb6\xc1\x9c\x60\x1b\x84\x8b\x5c\x30\x92\xf1\x02\xda\xce\x55\xe4\xfa\xf2\xe6\x96\xb8\xd1\x83\x01\xcb\x08\xfc\xf2\x4b\x55\xee\x83\x01\x1a\x17\x2b\xc7\xaf\x80\xd2\xda\x17\xef\x91\x64\x26\x3c\xc0\xba\xaa\x7c\xb9\xe5\x5a\x79\x89\x68\xe4\x94\x9c\x17\xda\xec\x3c\x8d\xa9\x66\xf1\x94\xcc\x04\x39\xa7\x5b\x96\x9c\x53\xc5\x1e\x7d\x17\x80\x69\x9b\x18\xd8\x0e\xdd\x87\x96\xe0\xf1\x36\x55\x5d\x81\xa6\x5a\xb6\xad\xbc\x8f\x86\xe2\x54\xa3\x97\x5c\xb0\x5b\x19\x5e\x4e\x1b\xb8\xab\x7c\xdc\x96\xd6\x88\x52\x87\xea\xbb\xc5\xcf\xbe\x51\xe2\xcf\xb9\x02\xce\xe6\x05\xa6\x43\xa9\x77\xc9\x12\x69\x4e\x95\xb4\xba\x17\x16\x32\x98\xb6\xd3\xe9\x7f\x0b\x4a\x09\x74\x12\xfe\xef\x89\x0d\x51\x3b\x25\x48\xa0\x4e\x34\xdb\xa6\x80\xaf\x4e\xf0\x07\xf0\xae\x2b\x3d\x32\x32\x35\xc9\x96\x34\x9a\xee\xe9\x36\x59\x88\x1f\x7f\xe4\x2b\xc2\xfe\x46\xa6\xd7\xaf\xcf\xce\xcf\xa5\x58\xf1\x35\x59\x1c\x99\x06\x8b\xa3\x7f\xfe\xd3\xf4\x3e\x03\x56\x96\x11\x4a\xa2\x24\x57\x9a\x65\x99\x4c\x58\x51\x70\xae\xde\x37\xe8\xb6\xa4\x60\x42\x1f\x9b\x8f\xa1\x64\x1d\x60\x10\xed\x50\x69\xcb\xa4\x9c\x9c\x54\xba\x2b\x58\x02\x8f\x83\x5e\xcb\x84\x55\x19\x03\x58\x04\xcd\xf5\x46\x66\xfc\xef\xe8\xaa\xe5\x71\x07\x01\xea\xdf\x32\xf0\x42\x00\x63\x0a\x0d\x9f\x90\x2b\x19\xa3\xd6\x80\xdc\x5b\x8f\x2c\x2d\xc9\x56\x0a\x0e\x9e\xc7\x32\x23\x31\x4b\x18\xde\x73\x24\xb9\x34\xe5\xdf\x19\x56\xc1\xec\x8b\xd9\xc2\xbf\xe2\xae\x16\x78\xb8\x38\xa2\x13\x22\x4c\xdf\xf8\xe7\x8e\x65\x4b\xff\xd5\xbd\x6f\x9d\x98\xc0\xd5\x28\xff\x5a\xe3\xad\x7c\x42\xe6\x2e\x43\x99\x37\xb7\x32\x71\x14\xfb\xc4\x95\x86\x7a\x8e\x54\x91\x94\x66\xf6\x72\x9d\xbd\x23\xe5\x6a\x0f\x9f\x74\x2a\xe3\x96\x39\xaf\x99\x6e\x9b\x71\xb1\x9c\x27\x38\x81\xa2\x63\x1b\xbf\x26\x78\x0a\x05\x31\x63\x23\x02\x09\x04\x8c\x8d\x9b\x4b\x98\xb6\x96\xea\xfa\x34\xc3\xac\x58\xd7\xdc\x79\x9a\x4a\x99\x28\xff\x07\x43\x7a\xb2\x1d\xe6\x96\x08\x2f\xcb\xad\xe4\xcb\x87\x5f\x26\x32\xba\xa3\x2b\x64\x49\x59\x65\x1a\x74\x0b\x2f\x6b\xbf\x6d\xa8\x88\x93\xb6\x23\xd2\x01\x6e\x10\xa8\x59\xf9\x37\x12\xbd\xf2\x6f\x84\x6a\x70\x7b\x1a\xd7\x70\x4b\x05\x5d\x33\x45\x36\x52\x69\xcf\x75\xeb\x41\x00\x52\xe9\xf3\x11\x57\xf9\x84\x5c\x31\x16\x83\xde\xc0\x08\x9e\x5a\xda\xb6\x0e\x83\x79\xa9\x40\x1e\x6a\x69\x81\x9e\x07\x2c\xb0\x7d\x49\x4f\xc0\xc8\x7b\x5e\x6e\x0c\xe2\xe6\x3c\x2b\x34\x27\xa8\x3c\xe0\xda\xf4\xa8\x88\x61\x81\x22\x68\xf2\x30\xeb\x31\xe7\xc2\x3b\x16\x91\x3f\x7a\x70\x65\x4f\x50\x5c\x37\xf3\x90\xf7\xc2\x9b\x4b\x63\xd9\x4f\xec\xb2\x09\x75\x0a\x18\xc2\x57\x44\x48\xc1\x10\x85\xa9\x36\xf8\x3c\x71\xdb\x88\x14\xb6\xed\x24\x3c\xc1\xf3\x0d\x38\x31\xda\x54\x82\x08\x8a\xa3\x0f\x94\xb3\x41\x60\x5e\x73\x81\x3a\x9b\x47\xa2\x33\x32\x61\xd7\x0c\x1d\xf2\xdd\xfe\x74\xf4\x6f\x9a\x05\x68\x60\xef\x30\x2a\x07\x6e\xc5\x6c\xcd\xc4\x76\x50\x55\x79\x0e\xe8\xc3\x37\xee\x23\x8e\x50\x7b\xa5\xd9\xd6\x42\xae\x60\x3d\xae\xa9\x88\x36\x2c\x9b\x38\x9e\xf2\x94\x9c\x03\xc4\x7d\x4a\x6f\xb0\xbb\xbf\x04\x74\x64\x30\xa4\x0b\x95\x7d\x50\x54\x98\x46\x77\xf7\x34\x8b\x91\x7f\xa0\x9a\x2f\x79\xc2\xf5\x7e\x08\x77\x63\xba\xf7\x39\x9a\x3e\x8e\xc5\x9f\xd5\x05\x65\x5b\x29\x6e\x58\x1f\xb3\x02\x8d\x7f\x22\x06\xa5\xca\x8f\x18\x46\xf9\xfc\x6a\x66\xb8\xc4\x35\x17\x44\x00\x5e\xd3\xd2\xdc\x27\x20\xcd\xc7\x48\x3c\x51\xf6\xf4\x03\x66\x3f\x9f\xce\xd7\x58\x15\xa7\x57\xc0\x8e\x3b\x91\xda\x13\xe2\x22\x91\x6f\x12\xee\xa8\x3d\x68\xc7\x57\xa5\x17\x8f\x2d\x5c\x6d\x59\x7e\xa7\xee\x73\x79\x98\x9e\xb8\xbc\x3a\x5b\xe7\x4a\x5f\x5f\x45\xcc\x55\x24\x77\x2c\xdb\xbb\x6b\xd2\xb5\xaa\x82\xda\xc0\x7c\x3a\x78\x2f\xd2\xcf\x00\x0c\x1b\xa8\xfc\xc9\xf9\xbf\x85\xb1\xe5\x07\x6b\x34\x70\xcb\x29\xec\x04\xb3\x39\xda\xc8\x68\xbc\x33\x02\x96\x2a\x21\x41\xfa\x58\xc5\x40\xaf\xb7\xfb\x74\x43\xd5\x34\xcc\x4c\x92\xf3\xd9\xc5\x35\xa1\xb9\x96\x93\x98\x19\x71\x16\x8c\x86\x02\x2e\x3c\x8d\xb7\xf6\xb4\x95\x54\x14\x91\x3a\xd9\xd2\xf4\x33\x0e\x18\x7e\x6c\xbe\xed\x3c\x43\x87\x73\xd4\x27\x3e\x39\xa8\x83\xd9\x30\x02\xf6\xfc\x45\x09\xa3\xa0\xc1\x30\x3c\xbe\x15\x78\x3f\x08\xba\xa3\x3c\xa1\x4b\x83\x20\x12\xba\xf6\x00\x95\xfa\x70\x7e\xe2\x2c\x13\x20\x8b\x29\x0c\x2f\x8b\xaa\x24\xd9\xcb\x2f\xc6\x91\xa7\xf5\x13\xab\x4d\xc3\x54\xfe\x87\x3a\xa9\x32\x70\xf6\xfc\x14\xfd\x28\x7d\xde\x72\xaf\xed\x55\xe2\x62\x3d\xe4\x4a\xd8\xd6\x69\xc5\xcb\x64\xa0\x3c\x62\x0f\xd8\x72\xef\xc0\x61\x26\xee\x14\xf6\xe5\xfa\xbf\x18\xfb\xd4\xd0\x8d\x77\x9b\x9c\x15\xad\x9b\x77\x27\x75\x36\xb7\x86\x46\x53\x17\xff\x21\x63\x77\x7c\x3e\x6f\xce\x1d\x67\xcf\x3b\x41\xc5\xe9\xb1\x82\xa4\x22\x3b\x9a\x71\x99\x2b\x72\x7e\x7d\x81\xb7\x1d\xcf\xd2\x03\x31\xa3\x98\xb4\x62\xc5\x12\xfe\x09\xfb\xf5\xe0\xe8\xfd\x5a\x65\xe7\x40\x62\x59\xa7\x29\x63\x99\xaa\x77\xb5\x5c\xa7\x8d\x8e\x8a\xdf\x9a\xdd\x0c\x92\xbb\xda\x04\x21\x1c\x31\x78\x4a\x1b\xaf\x15\xf3\x11\x6e\xeb\x37\xc1\xd6\xad\x1c\x7b\x8b\xa4\xd2\x29\xd1\xe1\xc6\x00\x3a\x82\x03\xf1\x19\x42\xdc\x7d\xf3\xb4\xe4\x4a\x17\xbc\xb2\x88\x0b\xee\xd7\xe0\x1e\x38\x38\x52\x18\x56\x38\xd3\x79\xfa\x58\x02\x73\xe7\x69\x19\x2c\xf3\x74\x89\x39\xfe\x5a\xeb\x0b\x0c\xac\x8a\xb4\x2e\x8b\x74\xd1\x9e\x81\xdb\x13\x98\xd8\x30\x84\x6f\x3d\xe8\xcc\x08\x0f\xaa\x17\x1a\x76\x5e\x6e\xc1\xd0\xe9\x3c\x4f\xa4\x40\xc6\x0b\x9c\x9d\x9d\x93\x28\x20\x99\x3c\x5d\x67\x34\xb6\xa1\x7b\xbb\xaf\xa6\xaf\x90\x6d\x8c\x30\xc9\xcf\x13\xb2\x64\x24\x63\x5b\xb9\x63\xb1\x75\x90\x74\x1f\xc8\xcc\xac\x70\x95\x31\xb5\x21\x5c\x28\x4d\x93\xe4\x41\xa5\xe7\x0e\x5c\x52\x45\x49\x43\x4f\x56\x21\xa0\xbc\x49\xa8\x10\x2c\xa9\x72\xe9\x4f\xc8\x3c\x87\xd8\x34\x00\x84\x67\x00\xd8\xe4\xcb\x69\x24\xb7\x27\x91\xcc\x98\x54\x27\x2b\xfc\xf8\x64\x99\xc8\xe5\xc9\x96\x9a\x0e\x4e\x2e\x64\x94\x6f\x9d\x95\xe9\x04\x44\x23\xdb\xcc\x0a\x21\x46\x06\x79\x68\xc9\xc0\x8e\xe0\x8b\x06\x0f\xab\xc4\x7b\xa8\xf3\xda\x72\x44\x1f\x94\xa9\x2b\x08\xab\xdd\x62\x23\xb5\x63\xe8\x62\x73\xaf\x4b\x39\x4e\xd0\xa4\x26\x06\x87\x24\xb8\x87\xd2\x00\x08\x9a\x4c\xca\x4d\x7b\x50\xb9\xbf\xe8\xf6\x20\x39\x5f\x60\xda\xd4\x4e\xa9\xfe\x27\x10\xe7\x87\x83\xb5\x7d\x6b\x5a\x01\x5e\xc8\xcf\x8f\xa0\x67\x79\x58\x70\xff\xf8\x23\x13\xf1\x3f\xff\x39\xd8\x82\x03\x74\xc5\xa9\x37\x20\xdf\xc6\x96\x0a\xbe\x62\x4a\x3b\x74\xac\xbc\x63\x6e\xad\x7d\x2c\x3b\x26\x54\x91\x7b\x96\xc0\x67\x36\xbe\xb7\xe4\x82\xd1\x39\xc7\xc9\xe1\x56\xb6\x93\xc2\xb4\x85\x80\x21\x44\x78\xd0\xc8\xb4\x60\x19\xca\x34\x5c\x54\x22\x50\x1c\x17\x50\xdc\xa6\x42\xa7\x52\xf7\xe3\x48\x55\xe7\x7d\xe9\x82\x17\xb1\x2e\x8f\xce\x84\xf6\x5b\x35\xa1\x69\x5a\x7c\x58\x58\x43\x6b\x3e\xe8\xe0\x23\xfa\xd6\xff\xb2\xf9\x2d\xb1\x34\xe3\x46\x67\x54\xb3\xf5\xfe\xd4\xda\xc4\xa6\x1f\x2a\x3f\x9b\xcd\xfa\xf1\x47\xa2\xe5\x9f\xe9\x36\xa9\xbf\x24\xff\x20\x5c\xc4\x4c\x68\xf2\x0d\xb6\x63\x89\x62\xe6\x5f\xa4\xb0\x20\x5e\xcb\x24\xe1\x62\xfd\xc1\xd3\x54\x66\xfe\x4f\xc5\xfc\xb6\xf4\x93\x27\x94\x9e\x92\x97\xde\x69\x21\xc4\x9d\x0c\xb7\xc0\xba\xd5\x38\xa9\x2e\x36\xb4\xdc\x9a\xf1\xd8\xec\x69\xc0\x73\xb2\xcc\xc8\x61\x2e\xa4\x54\xa7\x24\xe1\x22\xff\xe4\x1a\x18\xfe\xd8\x8a\xa6\xce\xec\x89\x50\xbb\xf2\xba\x73\x10\x68\x19\xe4\xc7\x1f\x6d\x22\xd0\xff\xb8\x3b\x26\xff\xb1\x23\xa7\x7f\xa8\x7e\x4e\xca\xef\xa1\xf1\x7f\xdc\x91\x7f\xfe\xf3\x94\x2c\x8e\xcc\xbf\x77\xe6\xed\x91\xd7\x15\x13\x31\xb1\xc0\x77\xc0\x02\xe8\xcb\x84\x65\x8d\xd4\xe6\x4f\xc8\x3b\x7a\xc7\x88\xca\x33\x77\x67\x40\x89\xae\xa2\x0d\x8b\xf3\x04\xfd\x36\x69\x92\x20\x29\xf2\x8c\xcf\x13\x1b\x8d\x7f\x4a\xae\xe4\x8d\x6d\x5c\xbe\x05\x17\x9b\x8c\x9a\x35\x92\xcb\x8a\x26\x1b\x47\xcc\xee\xac\x83\x58\x8c\x61\xa6\x51\xc6\x31\x8c\x83\xc6\xf1\xc4\x9a\xe2\x33\x66\x27\x61\xa4\x79\x7f\xe0\x3b\xb6\x3f\x25\xe7\xf6\x8b\xb3\x38\x96\x42\xbd\xaf\x05\x00\xb6\x8f\xee\xcf\xfb\xf2\x13\x8b\x72\x3d\x68\xda\x7d\xc6\x61\x6c\x55\xf5\xc2\xbd\xaa\xde\x68\xec\xa6\xb2\x25\x4f\xc8\x3b\x2e\xf8\x96\xff\x9d\x91\x58\xde\x0b\xcd\xb7\x8c\xc4\x39\x68\x66\xa8\xbb\x14\x3e\xe7\xe9\x2c\xae\xbf\x27\x9a\x25\x89\x8f\x7a\xb4\x24\xb1\x84\xf2\x3b\xa0\x32\x2c\x07\x70\x9f\x2c\x8e\x4a\xff\x8e\xea\x89\x8e\x65\xa4\x4e\x22\x29\x22\x96\x6a\x75\xe2\x92\x14\xaa\x13\x10\xea\x53\x19\x9f\x3c\x71\x71\x9c\x5c\x8a\x89\x5c\x4d\xcc\x8b\x62\x43\xbc\x77\xdf\x65\x34\x62\x73\x96\x71\x19\xdf\xb0\x48\x8a\x58\x9d\x92\x17\xe5\x4c\x2c\x45\x2d\x33\x0c\xa3\x9a\xc7\x35\x48\x33\x2e\x33\xae\xf7\xe7\x09\x55\x0a\x41\xf7\xe3\x8f\x64\x7a\x4e\x21\xc7\x7e\xed\x1d\xf9\x47\x61\x30\x59\x1c\x21\x6a\x44\xed\xb7\x3b\x48\x8b\x23\xef\xce\x18\x19\xf5\xdc\x51\x82\xea\xe1\x07\x0a\x52\x50\x89\x2a\x09\x31\xf4\x61\xc9\x05\xcd\x2a\x11\x48\xa8\x1c\x37\xef\x6a\xf4\x62\xc5\x13\xf0\xe9\x05\x8a\x51\x88\x3f\xee\xd4\x21\x7a\xb7\xfd\x4f\x22\xc1\xfd\x53\xc7\xb7\xe0\x34\xf1\xe3\x8f\xd3\xf3\xab\xd9\xcc\xfc\xe1\x5f\x78\x88\x92\xd9\x52\x43\x51\xfe\xb2\x38\x3a\x91\xa9\x3e\x89\x04\x3f\x59\x72\x71\x62\xfb\x2b\x98\x48\x7c\x98\xd8\xbd\xc9\xe4\xb6\xe2\x12\xe2\xb4\x8e\xef\x68\xea\x18\x02\xff\x79\x42\xce\x20\xc4\xe7\x4f\x1f\x5e\x5f\x5e\x5f\x5d\xde\x5e\xde\x7c\xbc\xb9\xbc\xfe\x7e\x76\x7e\xf9\xf1\x8f\xef\x6f\x6e\x61\xcd\x81\x77\xf3\xf7\xd7\xb7\x36\xc2\x4b\xee\x58\x96\xf1\x38\x66\x78\x7b\xd9\xeb\xf9\x1b\xb2\xad\x42\x01\x1f\x84\x84\x97\xe7\xc8\x69\x87\x27\x4e\xcd\x50\xff\xc2\x79\xa2\x37\x73\x20\x31\xb1\xab\x2d\xe5\x09\xc6\x8b\x5a\x97\x3c\xb3\x4d\xfe\xf6\x18\xde\x0c\xe4\xa4\xda\xac\xdc\xfe\x9c\x5f\xcd\x3e\x9e\xbf\xbf\x7a\xf3\xf1\xea\xec\xdd\x65\x7d\x1a\xe0\xee\x65\xb0\xee\xcb\x17\x13\xb8\xd5\x53\xd3\x35\xf0\xf9\x47\xf5\x49\x38\x2d\x5b\xed\x8c\x80\xbf\x39\x6c\x59\xdb\x49\xa9\xcf\xe6\xea\xf2\xf6\x87\xf7\xd7\x7f\x82\x59\xcd\xbe\x0b\x4e\xa9\xb1\xd7\xee\xd0\xd8\xfd\xfe\x13\xdb\x87\xb6\xbc\xdc\x0b\xcb\x33\x56\xec\x94\xfe\x03\x08\x37\x12\xfc\xa3\x5d\xcd\xc7\x50\xd3\x27\xe4\x86\xa1\x77\x9a\xa1\x88\xc0\x09\x17\x8e\xff\xe0\x1e\xf3\x5b\x85\x5c\x93\x79\xd5\xb2\x60\xef\x84\x5d\xbd\xbf\xb8\x6c\xdf\x85\x96\x25\x83\xcf\x70\xdb\x5a\xe1\xe5\x9c\xea\xcd\x29\xa0\xa0\xa9\x99\x0c\x84\xf7\xd5\x96\x61\xb6\xed\xdd\xed\x07\x62\xb1\xfc\x8e\x66\xdc\xf0\x1f\xed\x5b\xf4\xee\xf6\xc3\xcf\xb8\x2f\x3b\xa6\x37\x1f\xb7\x3a\xaf\x2f\x63\x9e\xb1\x1d\x13\xb6\x48\x54\x89\xe1\x40\xce\x57\x09\x63\x10\x74\xb4\x92\xa6\x55\xbd\x98\x9c\x5b\xdc\xcd\xdb\xcb\xcb\x46\x45\xc6\xe2\x16\xac\x68\xa2\x58\xf5\xe4\xef\x64\x92\x6f\xd9\xbb\x50\x3e\x9a\x09\xd9\x9a\x9f\x11\xfe\x27\xe6\x88\xf8\x88\x2c\x8c\x23\x22\xc1\x27\x4b\x2e\x26\x31\xcf\x7a\x3b\x63\x3a\x82\xce\x04\xd3\xd3\x46\x64\x67\xd9\x9d\x60\xba\xde\x9d\x62\x51\x0e\xc4\x45\x0a\xcd\x3e\xd5\xab\x96\xa5\x19\xdf\xf1\x84\xad\xab\x7e\x6e\x08\xe2\xb3\x38\x36\xcc\xcb\x9b\x84\x7d\x22\xdf\xc3\xd2\xc9\x45\xc6\x77\xe0\xbb\x49\x9d\xbe\xd2\xb4\x48\x59\x66\xa8\x26\xf9\x20\xf8\x27\x72\x21\xb7\x94\x0b\x72\x23\xa3\x3b\x4c\x7c\x07\x11\x58\xe4\x82\xdf\x19\x29\xa3\x42\x69\xc0\xd0\x04\x0e\x98\x11\xd5\x36\x3c\xf7\x0d\x4b\xf8\x27\xc0\xb6\x7e\xa4\xea\xcd\x5e\x44\xe4\x6c\x3e\x0b\xd0\x9c\x55\xc2\x3e\xed\x64\x32\x89\x61\x6a\x61\xb2\x63\x96\xf0\xbd\x4c\x66\xdb\x75\x95\xf0\xb4\x6e\x68\xb8\xf3\x89\xd9\x8a\x2a\xfc\x1a\x1b\xd5\x9c\xc6\xe7\x6f\x00\x56\x44\x11\x5c\x7b\x07\x7c\x8b\x49\x8d\x30\xb5\x5a\xc4\x94\xa2\xd9\x1e\x90\x3f\xb2\x09\x0a\x4c\x79\x65\xca\x6f\x43\xa6\xa0\xf8\x50\x9a\x50\x51\xe9\x1c\x62\x94\x97\xe9\x8a\x50\x4d\x4e\xd4\x5e\x9d\xac\xd4\x09\xfc\x29\x62\x12\x81\x4f\xfc\x57\xf0\x2a\xcb\x85\x15\x4e\x4f\xf0\xe7\xa9\x4b\xfd\x64\x85\x44\xae\x39\x4d\xb8\x2a\x03\x7d\x90\xed\x8c\x2b\x83\x09\xb2\x34\x32\x2c\x5b\xad\x64\xa6\xc9\x8a\xaa\x0d\x97\xe2\x18\x27\x21\x24\x59\x51\x9e\x18\x16\x1d\x48\x6b\x96\xc9\x4c\x1d\x9b\xd3\x21\xa4\x26\x31\x57\x59\x9e\x82\x0d\xdc\x8b\x27\x12\xae\xb4\x4b\x9d\x08\xbb\x9d\x5b\x1c\x01\xa4\x26\xcb\x74\xb5\x52\xd5\x6b\x5c\x9e\x0b\x23\x84\xf4\xf0\x23\x9e\x5c\x0e\xd1\x70\x47\x13\xb3\x62\xfb\x4f\xb3\xa6\x09\xae\xa9\xc6\xa3\x0c\x46\x15\x08\xf9\xf0\x8d\x56\x7b\x35\x69\xbe\x7b\x42\x5e\xf3\x98\x67\x68\xc4\xa5\x09\xc6\xcf\x58\xdd\x2f\x54\xab\x01\x61\xa7\x88\x92\x16\xec\x1e\x07\x24\xf7\x8c\x6c\x8d\x30\x54\xdb\xf0\x34\x93\x29\xb5\x69\xea\x64\x41\xe1\x9a\xa3\x2a\x89\x9d\x72\x4d\x64\xae\x13\xbe\xb3\x7e\xfa\xd5\x03\xda\xe0\x87\x70\xb1\x76\x0c\x50\x10\x54\xa6\xdf\x05\x9b\x1d\xcd\xbc\xe3\x17\x86\xd1\x8e\x66\x93\x2c\x17\x93\x70\x9b\x07\x81\x55\xe3\x06\xfc\xa2\x40\xf6\x84\xc0\x29\x23\x27\x69\x26\xa3\x13\xab\xe8\x96\x4a\xdb\xa4\x0a\xb9\xca\x69\x92\xec\x6d\xd0\x23\x0c\x9c\x66\x72\x9d\xd1\x2d\xac\xcd\x9c\x6b\xf3\xe1\x94\xcc\xf4\x53\x1f\x79\xc0\x1c\x84\x42\x09\x61\x7f\x5c\x1f\xd3\x5d\x72\xd3\xd4\xbb\x22\xc7\xe8\x44\x6b\xe6\x93\x49\xa9\x0b\x44\xb2\x52\x2d\x90\x34\xf4\x41\x6b\xc3\x28\x9e\xdf\xbe\x7d\xed\xa6\x66\x64\x96\xcc\xac\x37\xa9\x97\xcf\xa8\x1e\x10\x37\xfb\xf0\xd1\x68\x7b\x9b\x31\x1a\x1b\x89\xba\xc9\x6f\x7f\x1e\xaa\x8e\xc2\xb2\xd7\x75\x2e\x54\x5d\x4f\x57\xb0\xc5\x9e\x6c\x0b\x1c\x72\xad\x24\xe5\x13\xef\x93\x02\x26\x35\x47\x1a\x83\xa8\x33\x99\x6b\xcc\x66\x63\x7a\xf5\xbf\x37\x47\x20\x80\x16\x7d\x74\x76\x08\x4a\xfc\xf7\x96\xb9\x3e\x28\xe6\xef\xd8\xd9\x7c\xe6\x94\xac\x4b\x1a\xdd\x19\x4e\xd3\xd0\x58\x30\x20\xb6\xf0\x9a\x17\x67\xb7\x67\x37\xb7\xef\xaf\x2f\x3f\xde\xfe\x79\xde\x2e\x7a\x95\x4b\x68\xca\x5c\xce\x2f\x94\xe1\xae\x13\xba\x5e\x67\x2e\xfe\xbf\x10\x45\x52\xeb\xeb\xd3\x32\x8d\x0f\x37\x06\xc0\x17\x1f\x4d\x93\xd6\x49\x00\x44\x1a\xc3\xff\x40\xb9\x2e\x5c\xeb\xfa\x96\xfb\xc3\xd9\xec\xf6\xe3\x9b\xf7\xd7\x1f\x8b\x75\x1f\x38\x9a\x11\xb6\x0e\x96\xaf\x8c\x50\xf5\xb3\xc8\x54\x17\x52\x3c\xd5\x84\x09\x60\x48\x5e\x7f\x37\x6f\x13\x78\xcf\xde\xce\xce\xdf\x3b\x99\x77\x76\xf5\xdd\xc7\xd7\x67\xe7\x7f\xba\xbc\xba\x68\x05\x8e\x90\x22\x00\x1c\x6b\xbd\xc0\x32\xb7\x46\xe6\x86\x34\x31\x2b\xe4\xf8\xbc\xd8\x7c\xf3\xbe\x65\x26\x6f\x3f\xdc\xdc\x5e\x5e\xf7\x1c\xc6\xdf\xaa\x63\x54\xef\x35\x66\x80\x6a\xb0\x63\xc3\x87\x29\xd4\x85\x1d\x1b\x04\x8f\x24\x07\x5c\x09\x48\xc6\x26\x2e\x0c\x9d\x26\x49\x59\x89\x4f\x69\xaa\x5b\x66\xf5\xe6\xf2\xed\xec\x3f\x3f\xce\xe6\xb7\x67\xaf\xdf\x5e\xde\x5c\x5f\xbe\xb9\xbe\xbc\xf9\xe3\xec\xea\xf6\xf2\xfa\xfb\xb3\xb7\xad\xd3\x7c\xf5\xa2\x39\xbf\x2b\xe9\x55\xca\xb0\x54\xad\x65\x53\x66\xed\x22\x60\x58\xef\xe1\x34\x73\xb3\xf9\xee\x1b\x92\x4a\x99\x94\x6a\x17\xcf\x4f\xa3\xe6\xe9\x3c\x05\x2f\xbc\xd9\xbc\xa8\x49\x54\xef\x39\xda\x48\x65\xf0\x1c\x06\xc4\x19\x3e\x85\x8a\x35\x9b\xa2\x59\x0e\x43\xef\x5c\xf2\x75\x6b\xb2\xf7\xcd\xf3\xd8\xeb\x86\xee\x1a\xfd\x0a\x69\x35\xc2\x36\x7d\xbb\x0d\x84\x5c\x99\x3d\xb1\x29\xb0\xfe\x6b\x32\xb1\xa6\x9d\x49\xc4\xe3\xec\xbf\xa6\xf5\x3e\x6a\xe7\x77\x36\xff\xfe\x9b\xf9\xfb\xf7\x6f\x03\x58\xe4\x49\x45\x8f\xf4\xbb\xaf\xa6\x2f\x5f\xfd\x76\xfa\x62\xfa\xe2\xe4\xe5\xab\x26\x30\x2f\xb8\x42\x77\x3c\x9e\x30\x92\xc8\x35\x2c\x53\x49\xf2\x5f\xe0\x92\xae\x13\xf3\x9b\xfa\x2f\x30\x49\xd5\xa3\xc9\x6b\x33\xba\x98\xdd\x98\x23\xf3\xf1\xcd\xec\xed\xe5\xc7\xb7\xef\xbf\xfb\x6e\x76\x15\xd6\x25\x75\x23\x1c\x94\x3d\xcb\x50\x44\x89\x8c\x94\xdb\x70\xcc\xb3\x65\x7e\x3e\x3b\x3f\xbf\x9c\xdf\xb6\xcc\x09\x4f\xf1\xc5\xe5\x9b\xb3\x0f\x6f\x6f\x2f\xaf\x2e\xe6\xef\x67\x57\xb7\xb7\xef\x0d\xcd\x3b\x3b\xbf\x9d\xbd\xbf\x6a\x9d\x19\x76\xdb\x0e\xa8\xd9\x7c\xf7\xca\x1c\xb1\x92\x14\x75\x4e\x61\x36\xff\xfe\xd5\xcd\x87\xb9\x21\xa8\x87\x68\x39\x3c\x65\xb6\x67\x1e\x86\x80\x6b\xf4\x4e\x52\x06\x54\x30\xc2\xdb\xf7\xdf\x19\x90\xcf\xcf\x6e\xff\x88\xe2\x9a\x60\xd6\x27\x15\x37\x16\xe0\xe9\x76\x56\x4b\xd8\xe9\xae\x19\x7b\xfd\x1d\x88\x12\x87\x4f\xf8\xe6\xf2\xfb\xcb\xeb\xd9\xed\x9f\x6f\xfe\x7c\x83\x73\xb6\x97\x0a\x6e\x5e\x11\xa6\x20\x56\xb2\x73\x25\x6a\xaf\x12\xb9\xee\x59\x8b\x37\xd4\x01\x38\xa6\x3c\x89\xde\x78\x8b\xa3\x7b\x9a\x09\x2e\xd6\x43\x96\x7e\x13\x5c\xef\xf9\xf5\xe5\xe5\x95\xe9\xeb\x07\xec\xa9\xb9\xe2\xa1\xcb\x81\x9e\x5a\x57\xf4\x43\x78\xa2\xd5\xee\xfe\x78\x79\xf6\xf6\xf6\x8f\x97\x57\xe6\xda\xb6\x93\xbf\xf0\x55\xed\x5a\xb0\x23\x1e\x96\xb0\x82\x7c\x91\x6b\xf4\x55\x30\xff\xf0\xbc\x9f\x57\x44\xac\x90\x26\x0d\xa1\x46\x7d\x94\xda\x74\x5e\x9d\xea\xe7\xea\x7d\x42\xbe\x32\xee\x77\x8c\x7c\x6e\xf0\x2a\x51\x9a\x9f\x92\xaf\xbe\x7d\x51\x49\x3a\x9d\xf0\x15\x8b\xf6\x51\x52\x4f\xda\x98\x66\xec\x46\xcb\x66\xad\x7e\x23\xd2\x05\xf5\xb9\xa8\x0c\x69\xbe\x99\x10\x30\xd2\xb4\x88\x14\xae\xcd\x44\x6d\x72\x1d\xcb\x7b\x51\x9d\xdb\x8e\x09\xa6\xd4\x3c\x93\xcb\xfa\xfc\x82\xf3\x68\x9b\x45\xff\x1c\x26\x64\x02\xb7\x77\x62\xc6\xac\x41\xa2\x6a\xcc\x7b\xf9\xa2\xfa\xda\xaa\xb6\x2e\x58\x42\xf7\xad\x8d\xac\xe6\xea\x76\x93\x31\xb5\x91\x49\x7c\x4a\x5e\x55\x1b\x68\xbe\x65\x32\xd7\x2d\x1d\x18\x59\x94\xb7\x41\x62\xa3\x75\xfa\x1d\xab\x9f\x1c\x28\xb8\x61\xa4\xdf\xe2\xdb\xc6\x7b\x99\xe9\x53\xf2\xbb\x17\xbf\xfb\x5d\xfd\x8d\xa1\x67\xa7\x24\x91\x11\x4d\x9a\x1a\x8b\x1e\x70\x74\x2f\xa4\x43\xe1\xf5\x04\x6a\xd1\x6d\x29\x07\x89\xd6\x60\x1e\xcf\x41\xdb\xc8\x52\x51\xc6\x80\x83\xa5\x49\x93\xa0\x3d\xa0\x26\x9c\x54\x64\x7f\xa4\x7c\x1d\xa3\x25\x7c\x79\xb2\x95\x71\x1e\x48\xd4\x85\xc3\x24\x7c\x39\x69\x69\xd0\xae\x62\xa8\x8f\x92\xe5\xe2\xe4\x13\xa2\xa1\x69\x22\xa3\xbb\xf0\x50\xb6\xc5\x24\xd4\xe2\x80\x25\x7d\xb9\x42\xed\xc0\xc1\x0c\x0c\xfb\x06\x33\x60\xfc\xac\xc1\xb0\x0b\xd4\x86\xa8\xbd\x68\xe8\x79\x42\x2b\x37\x18\x82\xae\x1b\xd9\x25\xf0\x88\x16\x0a\x86\x63\x72\xcf\x40\x6a\xb0\x8a\x08\xe0\x01\x0a\xcd\x96\xd3\xab\x97\x5a\xf7\xba\x4a\x55\x49\x50\x20\x42\x6b\x4c\x47\x55\x1f\x0e\x52\xe4\x69\x82\x5a\x3d\x99\x35\xd5\x5c\xb8\x38\xd4\x5e\x77\xac\xab\x1c\x34\xdc\x81\xb9\x0a\x89\x5c\x87\xae\x42\x63\xaf\xe4\xba\x50\xce\x55\xed\xf7\xa4\xe3\x44\x37\x7c\x0c\xb2\x5c\xa8\xc2\x41\x33\x57\x2e\x6b\x08\x7a\x79\x41\x71\xc2\xc9\x76\x8d\x8e\x83\x4c\x54\x8c\x04\x40\xa3\x13\x83\x9c\x20\xd7\x48\xb3\x92\xe1\xc4\x53\xf4\x94\x4e\x97\xe5\x1c\x3d\x3f\x03\x23\xb6\x5a\x8f\xe0\x86\xd5\xa7\x54\xef\x13\xeb\x6f\x60\x48\x88\xed\x2f\xb6\xaa\xfd\x09\x4f\x27\x5b\xaa\xfe\xe6\xfe\xac\xcd\xbf\xf4\x42\xc7\xe7\xf3\x89\x7d\x53\xdf\xe4\x96\x39\x7f\x7f\xf1\x68\x26\x62\xe7\x4f\x36\x15\x0d\x75\x46\x7d\xf8\x9b\xf9\xd9\xf9\xe3\xcf\x21\x50\xcf\xb5\x60\xc4\xde\x9e\x5d\x5d\x5d\xbe\xbd\xf8\x38\x7b\x73\xe0\x4c\x1e\xda\x47\xc0\x34\xfa\xc8\x57\x03\x66\x3a\xff\xf8\xee\xec\xe6\xff\xfe\x19\xe7\x6a\xce\x6e\xce\x32\x5a\x65\x88\x3a\x0c\x9e\xc3\x89\x52\x1f\x49\xea\x40\xdb\x93\xaa\x6b\xf3\x24\x5a\xd5\x56\xe0\xcf\xc2\x50\x7a\xff\xaa\x9f\xb8\xa6\xb8\x8a\xaa\xb6\xdd\x85\xab\xa1\xe7\x4a\x13\x67\xb4\x10\x6b\xc3\x52\xc0\x70\xb5\x0b\xdb\xc1\x02\x4c\x7a\x09\x65\x77\xa7\x6d\x44\x78\xd2\x4b\x13\xfb\xfb\x0d\xd1\xdb\x49\xcf\x86\x75\xf7\xda\x7d\x14\xd0\xe5\xf5\x0d\x4f\xd8\xfb\xec\xbc\x12\xa1\x51\x8e\xdb\xb4\x62\x76\x8f\x68\x49\x5a\x68\xa0\x0b\x47\x2e\xdb\x47\x6b\x50\xcc\x41\x83\x35\xe8\x67\x6d\x3c\xff\xa4\x6d\x4b\x73\x5b\xc5\x84\x66\x79\x85\x5c\x79\x06\x34\x34\x3f\x57\x3d\xf4\x5a\x4d\x64\x81\x53\x1b\x32\x61\x75\x2f\xa8\xda\xba\xbc\x17\xf6\x0e\x05\x1d\x28\x82\x77\xb1\xc0\x47\xa7\xa1\xdb\x1f\xc6\x41\x65\x58\xb2\x73\x03\x3b\xbf\x0a\xf9\x6c\xb4\x78\xbe\x74\xaf\x2c\xe8\x4f\x33\xe9\x66\xf9\xbb\x7b\x6c\x11\x25\xca\x55\xd8\x80\x68\x23\xae\x24\x72\x1d\xda\xa0\x16\xfe\x6a\xc0\x4d\x6d\xe1\xb6\xca\xc1\xad\x4a\xb9\xdd\xb9\x26\x80\x93\xc2\xcc\x70\xcb\x6c\x7a\xef\x14\x69\x22\xad\x00\xff\xdc\xdc\xf4\xa6\xc7\x50\xe8\xd4\x75\x7a\xd6\x1c\x3a\xe5\x1f\x7f\x9c\x10\xbe\x22\xce\xd3\x67\x0e\xc2\xe5\x05\xaf\xba\x96\x97\xeb\x29\x7d\x82\x8a\x96\xe8\x52\x3e\x21\x2c\x51\xac\xe5\xab\x93\x5c\x01\x8a\x65\x9f\x58\xe4\x79\x19\xc3\x3f\x13\xa6\x27\x36\xda\xe2\x04\xe9\xd3\x09\x34\x2b\x00\xf6\xff\xe4\xb1\xb2\x23\x58\x07\x76\x08\x09\xe9\xf3\xbc\xf6\x23\x2b\xca\x68\x99\x7a\x3c\xca\xe7\x84\x5a\x1c\x1a\x9a\x52\xcf\x1d\x52\x84\xa9\xdc\x30\x16\x0a\xad\xab\x04\x06\x9e\x34\x33\x8f\x04\x63\x46\x6c\x64\x89\x97\xbf\xfa\x90\xbc\x2b\x9f\x13\x57\xd2\x96\x5b\xc5\x85\x4e\xa0\xd1\xa7\x92\xf8\xcc\xd5\x97\x81\xb2\x7f\x14\xf2\x78\x26\x0c\xcc\x03\x3b\x86\x97\x40\xd8\x34\x7a\x19\x4b\x13\x1e\x51\x05\xd1\x1d\x87\x46\xad\xb4\x2e\x52\x95\x11\x2c\xe5\xa5\xb8\x66\x65\x88\x64\x5f\xf0\x48\x2f\x18\x09\xe9\x02\x25\xe9\x89\x3f\xe9\xe8\xf6\x8b\x22\x52\xdc\x25\xbf\x2d\x43\x3d\x48\x5b\x00\x88\x17\xc2\xe3\x37\x2f\xe2\x77\x5e\xb5\xdc\xf7\xb6\x30\x92\xb0\xd2\xd9\x6b\xed\x0c\xd5\xad\x59\xef\x24\xc1\x2c\xa3\x09\x03\x87\xa0\x2c\x17\x6d\xc1\x27\xd5\xa0\x95\xd2\xd7\x6e\x0c\x5d\xa9\x7c\xe8\xe3\x52\x6c\xf3\x25\x61\x2c\x9d\x77\xa1\x11\xd8\xf2\xb9\xd1\x1e\x66\x94\x5a\xbe\xaf\x41\xd1\x1f\x85\x81\x36\x14\x00\x12\x74\x40\x9a\x0c\xbb\xe5\xa4\xaa\x37\x29\x1b\x84\x9d\x80\x1a\xaa\xdd\xf3\x8d\x84\xd2\x3a\x60\xf9\xf7\xcf\xbb\x96\xe6\x88\xb7\xe8\xb5\xac\xe1\xe7\xe3\xf9\xfb\xab\xdb\xeb\xf7\x6f\xdf\x5e\x5e\xb7\x59\xc8\x9a\x2a\xfd\x83\x5c\x6a\xee\x82\x05\xb4\x1e\xd2\xfc\x60\x78\x02\x30\x41\x6c\x58\x74\x37\xa9\x26\x2c\x2b\x9b\x4d\x6a\x5e\x7b\xbf\x74\xd3\xc3\x23\x41\x21\xeb\x85\xc2\xe3\xb3\x45\x07\xf3\x0e\x75\x46\xa9\x1a\x96\x5b\xba\xc1\xcf\x65\x4c\x2e\xd0\x5b\x99\x4b\x41\x5e\xe7\xf1\x9a\xa1\xcb\x54\x79\xad\x4a\x87\xf8\x3f\xfd\x56\x15\x8e\x3c\x67\xb9\x96\x2a\xa2\xf6\x3d\xdb\xf1\x48\x1b\x48\xf8\x8b\x44\xce\xfe\x64\xf7\x72\xc9\x34\x2d\x16\x3c\x97\x71\x39\x22\x0e\xf8\xf3\x73\x4c\x81\xc0\xd6\x07\x62\x7d\x06\x72\xaa\x4c\x47\xf1\x44\x19\x7e\x48\x3b\x2e\x75\xe0\x97\x7a\x9f\x6e\xe8\xd0\x4f\x9c\x3f\x9e\x8d\x96\xc2\xaf\x8e\x8e\xff\x0f\x42\xc8\x11\xca\xc7\xbb\xaf\xa7\x5f\x7d\x33\x7d\x79\x74\x4a\x8e\x4c\x57\xa0\x95\x26\xb7\xb6\x87\xd2\xbf\x0d\x7f\xb7\x8d\x07\xcf\xd5\x26\x12\xaa\x04\x8b\x9f\x3b\xa1\x9d\x70\x55\x54\x2b\x29\x26\x8a\x15\xea\x57\x20\x6c\xb1\xd8\x0e\xeb\xbb\x11\x95\x89\x12\x5c\x3f\xcd\x9b\xd6\x1e\x94\x5f\x28\x03\xda\x8e\x54\xf1\xd9\x13\xcc\x56\x66\x26\x69\x3d\x2c\xd0\x3b\x0b\xc0\xff\xd1\xd2\xe7\x8f\xce\x91\xbf\xf4\xf8\x40\x5e\x1c\x92\xb1\xaf\x68\x54\xea\x5a\xd0\xcb\xd6\xdc\x34\x70\xd8\x81\xc2\x41\x91\xab\x1f\x04\x3f\x95\x71\x26\x2e\x6b\xd5\x93\xa2\x8a\xe0\x32\xa1\xe2\xee\xb8\xa8\xb4\xea\xf5\xcf\x95\xf3\xcb\x2a\x0d\x19\x86\x20\x3d\x55\xd8\x83\x23\xd3\xe0\x90\x09\xbd\x7a\x2a\x62\x0c\x60\x46\x53\xc4\xcc\x75\xe9\x62\x99\x9f\x90\x1f\x6c\xdd\x16\x99\x41\x98\x03\x54\x6d\x74\x2a\xdb\xb2\xf4\xa8\x24\x31\x53\xda\x46\xa0\x62\x35\x2a\xf4\xda\xc2\x4e\x1c\xab\x66\x5d\x83\xa7\x78\xfd\x5c\x37\xbe\x0b\x05\xb6\x2f\x7d\x48\xcd\x97\xef\x6e\x3f\x40\xca\x54\x85\x81\x17\x2e\x36\xb6\x04\x00\x26\x0e\xd0\xb9\x10\xcc\x9a\x66\x9f\x90\xd7\x7b\xb7\xec\x63\xe8\x80\x2b\x3f\xaf\x9c\x2b\x59\xea\x97\x8d\x61\x5a\x17\x0e\x6c\x58\x6c\xc7\x3a\xa1\xd9\xcc\xed\xce\x23\xdf\x0e\xf0\x67\x99\xa3\x88\x85\xde\xbf\xac\x9e\xb6\x6e\xb9\x27\x69\x26\x77\x3c\xc6\x38\x62\x21\xc5\xe4\xef\x2c\xb3\x6e\x3c\xd3\x52\x4a\x30\x93\x73\x4c\x3e\x5f\x11\xc1\xf0\xa7\x17\x96\x71\x72\x81\x65\x76\x9b\xde\xdd\x7e\xc0\xbd\xb1\x5c\x65\x40\x3c\xf0\xbf\x78\xf9\xcd\xb7\x2f\x6a\xad\xdb\xe3\x22\x5d\x1e\xa1\xb6\xf0\x48\xf8\x0c\x38\x49\x94\xd8\x9f\xb8\x8a\x22\xae\x3e\xa5\x0d\xaf\x2c\xca\xff\xe5\x5a\x6e\x29\xf0\x81\xc9\x9e\xa4\xd2\xa6\x58\xc6\x03\xd8\x88\x63\x3c\x25\xff\x98\x20\x8a\xfd\xd1\x61\xda\xc5\x11\x98\x7d\x8e\xac\x97\xe7\x24\x95\xf1\xc4\x7e\xe4\x95\x34\x5b\x1c\x45\xc2\xdd\x7d\x6c\xfb\x62\xfa\xf5\xf4\x65\xa5\x85\x55\x79\x98\xd7\x7f\x29\x69\xfb\x8f\x3e\x99\x5f\x1c\x81\x1f\x2a\x74\x60\x75\xd3\xd5\xb2\x69\x8b\xa3\x44\xae\x3f\x26\x6c\xc7\x12\x6c\x05\xbe\x48\xa1\x36\x2b\x9e\xb0\x8f\x29\xd5\x1b\x6c\x17\x50\xa4\x99\xff\x4d\x13\xb9\x6e\x7c\x5e\x78\x2c\x7f\x2c\x67\xe3\x7b\x5b\xd7\x9a\x9b\x7d\x29\x61\xf4\xf1\x63\x28\x74\xf3\xe3\xc7\xc6\x67\x5b\x9d\x9b\x2f\x3e\x7e\xb4\x81\x93\x1f\x3f\xd6\x1a\xf0\x94\x6e\x4d\x8b\x1f\xeb\xcc\x91\x0f\x25\x83\xb1\x26\xe0\xa4\x11\x28\x30\xb7\x38\x42\x2b\x24\x36\xcd\x15\x9b\xcb\xf8\x9c\xc7\x59\xd5\xf9\xe8\x9f\xb5\x71\x91\x7d\xe8\x1d\xf9\xee\xb7\xaa\xbb\x1f\x1f\x64\xc1\xbe\x6c\x3a\x61\x43\x09\x3c\xd0\x61\x78\xef\x47\xe7\xdc\x67\x20\x57\x19\xa5\xfc\xc3\x1f\xb0\xf5\x18\xa5\x32\xd3\x5b\x9a\x36\xc0\xaf\x04\x05\xb8\x18\xa4\x57\x7b\x15\xd1\x94\x42\x6e\x1a\xee\xa6\x0e\xbd\xbc\xa3\x69\xca\xc5\x5a\xb9\xaf\x0e\x9d\xc9\x92\x8a\xf8\x9e\xc7\xe6\x44\xf6\x0f\xe8\x35\x6e\x8e\xe6\xfe\x69\xcd\xca\x16\xa1\xb8\xac\x56\x41\x84\x32\xc5\xd0\x1f\x28\x04\x6a\xe3\x90\x9c\xe1\xbd\x1a\x5c\x24\x98\x06\xf2\x3c\xfd\x9f\xca\x90\xf1\x7f\x34\xd0\xc1\x95\xbb\xfc\x8e\x68\x21\x63\x7a\x3e\xbb\xb8\x36\x58\xd1\xbb\xf0\xaf\xad\xdd\xbe\xba\xfb\x58\x96\xac\xf8\xdc\xce\xda\xb6\x9d\x9a\x77\x7e\x12\x8f\x7f\x16\x4b\xec\x63\x75\xee\xe2\x78\x12\x65\xb1\xe3\xe2\x1e\xaf\x60\x50\x23\x2f\xd9\x23\x94\x0d\x7a\xfd\xdd\xbc\x92\xdb\x1b\xdf\x95\xc5\x83\xea\xef\x9b\x25\x84\x5a\xb2\xa7\x95\x85\x84\xea\x0d\xcc\x7b\x9b\x91\x91\x7d\x10\x77\x42\xde\x8b\x37\x86\x02\x2b\xcf\x36\x6b\xcb\x0d\xd9\x2d\x5f\x3c\x4e\xad\xa1\xfa\xda\xaa\x85\x4a\xaa\x64\x12\x4b\xf1\xed\xcd\x37\xc0\x59\x55\xb5\x4c\x63\xad\xa1\xb1\xd6\x90\xbf\x05\x63\xad\xa1\x9f\xac\xd6\x50\xfd\x12\x37\x2b\x0e\x55\x2b\xe1\x99\x0b\x5c\x25\x58\x35\xf5\x4f\x7b\x69\x21\xaa\xae\xa0\xf6\x74\xc0\x0d\xa6\x76\xa1\x6f\xb0\xa1\x2b\x61\xe6\x44\xb2\xb3\x1b\x5b\xbd\xba\x10\x12\xa9\x65\xb6\xff\x72\x81\x4d\x82\x1e\x36\xaf\xbe\xf9\xf6\xe5\x57\x7f\x7d\xda\x7c\x85\x19\x40\x4f\xcd\xed\xfc\xfa\xab\xe6\x6b\x04\xa9\xb9\xba\xeb\x66\xc1\xec\x25\x17\xf1\x3b\x19\x87\xaa\xe7\x57\xe1\x6b\xdb\x85\xaa\x7b\x4a\x20\x14\x36\x12\xd2\x02\x56\xa0\x44\xd4\x52\x54\x19\x8c\x03\x36\x04\x8a\x29\xf2\xec\x4a\x0a\xf6\x1c\x13\x7c\x26\x7b\x3f\x8f\xe9\x53\x30\x69\x49\x01\x6a\xfe\x32\x6c\x2a\xd4\xeb\x95\x81\xa0\xd9\xf6\xe9\xeb\xef\xe6\xd3\xd9\x7c\xf7\x9f\x67\x36\xc6\xea\x19\x04\x8e\xce\x9f\x4f\x89\x05\x2f\x59\xb2\x0d\xdd\x71\x99\xe3\xd6\xb8\xf9\x87\x7a\x0d\x2c\xa9\x31\xff\x03\x8b\xa9\xba\xcb\x16\x3a\x5b\x35\xa8\x9f\x97\x4d\x11\x25\xb9\x72\x55\x38\x25\x7b\x69\xdd\xd1\xa6\x98\x82\xb2\xe9\x4e\x69\x1e\x9a\x2d\xb9\xce\x68\xb6\xb7\x35\x89\x21\x5c\x92\x62\x10\x07\x86\xea\x1e\x54\xdf\x2a\x38\xcd\x7d\x79\xe3\x94\xa6\x22\xa6\x59\x6c\x36\x35\xa1\xd9\x9a\xd5\xa7\x1b\xea\x94\xc0\x12\x0c\x72\x0b\x44\x52\xe2\xd3\x71\x2f\xf1\x01\x8e\x20\xfc\xaa\x5e\x9e\x8c\x6e\x19\x59\xf3\x1d\x13\x5e\xb6\x0f\x37\xbd\xe0\xe0\xa4\xb7\xb0\x17\x29\xd4\xfb\x83\xa6\xf0\x3d\x90\x16\x48\x3b\xbc\x84\xcc\x49\x78\x95\xc9\xe2\x88\xd2\x53\x21\x16\x47\x50\xc6\x1a\xff\x38\xdd\x6e\x83\xe5\xf0\xdd\xf3\x46\x66\x25\xd4\xcb\xd5\xe4\x8a\x79\xdd\x61\xff\xc7\xb6\x6e\x8b\xf9\x7d\x71\x64\x80\xde\xde\xed\xe2\x08\x3e\xa4\x19\x23\x2f\x5f\x91\x25\xd7\x16\x77\x4d\x61\xc0\xfa\xd6\x7a\xa3\xc1\x7c\xdb\xfb\x0d\xcd\xe4\xb8\x18\x4d\xc4\x46\x62\xdd\xda\x81\xbf\xfe\xaa\x32\xf0\x0f\xe6\x93\x60\x59\x58\x37\x65\x58\x16\xa6\x15\x38\xbb\x21\x88\x85\xdb\x3a\x4f\x59\x36\x39\xbb\x71\x81\xaa\x3c\x90\xf3\xc0\x3d\x29\xd5\x86\xfd\x39\x25\xff\xe3\xd9\x62\x11\xff\xf7\xe7\xa7\xf8\x9f\xff\xf8\x47\xf5\x6f\xf7\xf3\xe7\x9e\xa0\x36\x12\xe8\xbf\x0d\x94\x8e\x23\x16\x8b\xcd\x65\x16\xa2\x1f\x95\x73\xf7\xb6\x68\xe9\x68\x13\xd4\x04\xc7\xbd\x30\xb8\x25\xcd\xa4\x96\x91\x4c\x1c\xc3\x88\x5d\x07\x21\x73\xe1\xca\x24\x6b\x49\x5e\xfe\x9f\x8d\xb0\x0e\xd0\xb9\xf3\x6d\xbe\x3d\x25\xaf\xbe\xfd\xf6\xeb\x6f\x03\xef\xb9\xc0\xf7\x2f\x0f\xa4\x5d\x89\x5c\xdf\xb0\x1d\xcb\xb8\xde\xdf\x44\x19\x63\x75\xf6\xba\xb1\xec\xa7\x6f\xeb\x5f\xb8\xe5\x27\x72\x4d\x94\x7d\x43\xe8\x52\xee\x9c\xd9\x30\x91\xeb\x20\xb5\x31\x27\x07\x4a\x3a\x5b\x7e\x59\xe9\x58\xe6\xda\xa3\xe0\x64\x76\xf5\xe6\x7d\x88\x5a\x77\x6d\xbf\x21\x79\xef\x98\xda\xbc\xa3\x9f\xae\x19\x44\xeb\xde\xf2\x20\x3a\xab\xd6\x31\xe4\x98\xfb\x16\x8d\x37\x06\xb1\x2b\xb9\xd2\xf7\x66\x8a\x19\xf6\x02\x3f\x42\x96\x3e\x2d\x27\x5b\xa6\x36\x24\x65\xcc\x4c\x40\xd9\x7a\xda\xa1\x25\x16\x35\xb5\x8f\x91\x49\x2d\x94\x7d\x79\xc6\x62\x97\x64\x60\x9d\xd1\x88\xad\xf2\xa4\x18\xc9\x1a\xf6\x3a\xfa\x85\x2a\xf4\x7e\xdf\x8c\xbc\x9e\x5d\x5f\x14\xec\x91\x5c\x91\x97\x5f\xbd\x50\xce\x4c\x60\x83\x83\x51\x3b\x6b\xb3\x84\xd7\x1f\x60\x1b\x96\x0c\xa2\x29\x2d\xf7\xe0\x7a\x6b\x48\x77\xce\x09\x06\x93\x54\xa0\x7e\x37\xb8\xc5\x90\x1e\xe5\xca\xee\x08\x64\x0f\x82\x20\xfa\x00\xae\x1c\xb2\xa5\x73\xaa\xd4\xbd\xcc\x42\xc1\x6a\x95\xcd\x7c\xef\x6a\xbf\xc3\x35\xb4\x1f\xc1\xfe\xad\x72\xeb\x51\xd1\xdc\xc4\xd0\xf4\xab\x50\xfb\x2c\x10\x05\x0f\xbe\x07\xb5\x03\x40\xd4\x43\xb7\xd1\x22\xd6\xe1\x5e\xde\x28\x9f\x9f\xb0\x48\x1b\x8e\xe8\x8e\xed\x41\xd6\xb5\x5d\xb8\x12\xeb\xe0\x94\x92\xca\xf8\xa9\x2a\x4d\x3e\x2d\x88\xbd\x97\xa5\x40\xb7\xf5\x76\x7a\xd3\x28\x2a\x6a\xe7\x04\x78\x01\x67\x55\x16\xe6\x37\xa2\xde\x94\x90\x77\x48\xf3\xdb\x3b\x25\x84\x1a\x4e\x82\xc7\xae\x8b\x3b\x56\x8f\xc4\xf1\x9f\x7e\xb6\xa4\x87\x35\xaa\xa3\x4a\x3f\x97\x63\xc6\x56\x2c\x63\x42\x07\xc5\xc8\xae\x94\xa6\x72\xc7\xb2\x1d\x67\xf7\x27\xb6\x34\xcc\xe4\x9e\xeb\xcd\x04\x49\x9b\x3a\x81\x8d\x39\x79\x02\xff\xe9\x02\xc4\xed\xfb\x8b\xf7\xa7\xe4\x2c\x8e\x89\x04\x81\x23\x57\x80\x71\xe0\x6c\xab\xa9\xa7\x5e\x39\x06\xe9\xfe\x98\xe4\x3c\xfe\xbf\x02\x98\xf7\x10\x58\x15\x49\x58\x06\xc2\xeb\x06\x10\xda\xbe\x14\x8a\x36\x8c\xdc\xe0\xc6\xc9\x0c\x58\x5a\x73\x28\xb6\xfd\xbb\x8e\xaa\x9f\x0e\x86\x0c\x67\xbf\x94\x32\x61\x61\x64\x48\x0a\xab\x55\xcb\xe4\xc1\x19\x2a\xfc\x6a\x08\xef\x11\x7e\x6b\x2e\xdc\xad\x74\xb8\xe0\x12\xf1\x40\x2f\x41\xbe\x0a\x7d\x65\x70\x54\x29\x5e\x16\x68\x0f\x43\xe2\x43\x91\xbc\x04\x90\xe5\xb6\x8a\x83\x7c\x5a\xac\xb3\x9c\xb5\xd3\xe2\x16\x58\xa6\x19\x5b\xf1\x4f\x67\x7e\x05\xac\x5e\x81\x6d\x1e\xf8\xa6\x14\x8a\xc0\x5f\x1a\x5a\x54\x0b\x6b\x85\x56\xd4\xa5\x9c\x20\xc3\x45\xb3\xc0\x84\x4a\x2a\xae\xaa\xd3\xf0\x30\x61\xf8\x74\xb8\x14\x3b\x05\xf5\x0e\xe5\xf3\x71\xc0\xeb\x41\xaa\x11\x8f\x43\x1a\x94\xc0\x12\xa0\x3e\x18\x18\x81\x81\x23\x2b\x7b\x76\xcc\xe9\x92\x95\xeb\xa8\xa7\x52\x29\x9f\xfe\x5b\xdf\x2d\x98\x87\x66\xe6\x89\xe7\x86\xc6\x2e\xcb\x7a\xd2\x8c\xc3\xe1\x2d\x25\xa3\x1e\x2c\x47\x93\x8c\xd1\x78\xef\xae\xbf\x21\x63\x8b\x23\x83\x54\xd4\xd4\x1b\x05\x05\xc2\x41\x92\x34\x41\x1d\x70\xaf\x40\xd9\x21\x37\x76\x4b\x58\xdd\x02\x65\xb7\xdc\xd8\xde\x73\x9f\x40\xd9\x2b\x37\x76\x4d\xba\x47\xa0\xec\x15\x1b\x07\xf5\x3d\x5c\x9e\x6c\xbf\xc2\xf8\x0c\xa1\x53\x1d\xe2\x20\xf9\x12\x59\xd2\x3a\xba\x58\xcb\xcb\x6c\xde\x8b\xf9\x6e\xea\x1f\x00\x30\x20\x13\xb4\xb9\xbf\x58\x60\x0b\x15\xdd\x78\x8f\xed\x08\x41\xdc\x67\x7d\xcf\x5c\x2f\x36\xf2\x16\xb4\xda\x2b\x5f\x76\xb0\xe5\x91\xc0\xf9\xa0\x40\x01\x66\xd0\xf0\xe1\xc5\x49\x14\x05\x29\xc0\x8b\x58\xec\x2b\xc3\xd9\xbc\x43\x7a\xc3\xb6\x9f\x8f\x74\xeb\xb0\x78\x6d\xc6\xf5\xec\x00\x9e\x63\xbe\x11\xd9\x0c\x1e\x75\x4d\xc3\xfb\x5c\x82\xf0\x11\x90\xed\xa3\xe9\x23\xec\x0e\x5f\x7e\x42\xa3\xd1\xf0\x43\xe4\x7d\x11\x3e\x45\x32\xf3\x12\x0d\x85\xe6\x6c\x3b\x22\xae\x27\xb3\xb7\x53\x3f\x4f\x5e\xbd\x41\x91\xfe\xca\xca\x49\x41\xd1\xa7\x20\x32\x84\x03\x63\xbc\xc7\x3a\xe8\x78\x64\xa4\x70\xfc\xb2\x62\x76\xa2\x5f\x7c\x82\xca\xd9\xf5\x1e\xa1\xf0\xee\x7a\xeb\xff\x75\x1f\xa2\xb7\x92\xc6\xaf\x69\x62\xa4\xd2\x03\xb0\x51\xed\xab\x2f\x3c\x4c\x7e\x6f\xad\x07\xca\x16\x72\xf4\xdb\x4e\x67\x62\xdd\x66\xb5\xa8\x9f\xbb\x9f\xe1\x90\x55\x81\xf4\x99\x07\xad\x06\x9b\x5f\xe5\x61\x0b\x7f\xd6\xfc\x15\x5c\x16\x2a\xe9\x12\x94\x96\x19\xc4\x29\xe0\x4f\x78\x06\x60\xfa\x34\x32\x92\x30\x8b\xaf\x1a\x2e\x17\x65\x7e\x2d\xe7\x42\xe1\x7e\x89\xa4\x88\x39\x86\xf9\x90\xbf\x80\xcf\x0d\x78\x87\xc5\xdf\x3b\xdf\x07\xf8\xd5\x7a\xa8\x3c\xa2\xd7\x09\x94\xbc\x7b\x1c\x67\x93\x39\x73\xea\xdc\x8a\x8f\x89\xf9\x39\xe8\x5a\xe2\x55\xdf\xab\x78\x94\xa4\xb6\x9f\x9f\xcb\x91\x64\xf4\xf8\x18\x3d\x3e\xfc\x2d\x18\x3d\x3e\x7e\x4a\x8f\x0f\x83\x2e\x9a\x8e\x1e\x2e\xee\xcd\xf3\xd8\x72\x8d\x8b\xdd\x7b\x78\x6f\x8f\xdb\x0d\x2b\x85\x46\xa7\x38\x35\xe8\x29\x40\xff\xbe\xc4\x61\xe3\x8e\xb1\xf4\x7d\xc6\xd7\x5c\xd0\xe4\x8a\x7d\xd2\x7f\x0c\xa4\xcb\x0b\x9a\x14\xcc\x3d\x37\x1f\xc3\xc4\xa4\xed\x81\x08\xf6\x49\x6f\x64\x6a\x0d\x05\xf7\x1b\x26\xac\x37\x40\x90\x01\xf6\x8c\x5e\x00\x53\x62\x80\x6a\xce\x38\xba\xd1\x3b\x97\x7e\x5f\xc3\x84\x4a\xf0\x04\xfc\xef\xcd\x27\xa1\x7e\x4d\x2f\xaa\xd0\xf1\xe5\x28\xc2\x19\xb9\x9b\x7d\xd2\xc4\xcc\xce\xcc\xfb\xf7\x46\x36\x17\x4a\x33\x1a\x1b\xf0\x7a\x6f\x15\x4b\x56\xbf\x5f\x1c\x3d\xb3\xf6\x8c\xe7\xa1\x21\xac\x59\xa0\x88\x89\x5c\x66\x54\x44\x1b\xb7\x4f\x57\x66\x68\x29\xc8\xe2\x68\xc9\xb3\x78\x1a\xad\xd6\x41\x53\x7b\xa7\xba\x70\xfb\xc0\x36\x3b\x6b\x41\xf3\xc4\xdd\x20\xab\xf3\xb9\x96\xb9\x9a\x19\x2e\xdc\x77\x8f\x65\xae\x0d\x42\xed\x96\xb0\x21\xb7\xa8\x48\xa5\x5d\x24\x8f\x76\x08\xd8\x8a\xfb\xb6\xb8\x87\x35\xe3\xe9\x0d\x0d\x2a\x50\xb9\x22\x9a\x66\x6b\xa6\x5d\xc5\x11\xae\xf0\x3e\x92\xd9\xaa\x00\x1b\x00\x81\x69\xa4\x6b\x42\x56\xc2\xbe\x5b\x3a\xad\x9a\x2e\x6d\x14\x04\x18\xeb\x0c\x82\x51\xce\x30\xe5\xa2\x9f\xdd\xc9\x2b\x2b\x54\x1e\x0a\xb3\x40\x18\x7a\x10\x76\x45\xc9\x42\xa7\xa6\xc5\xf1\xc1\x46\x67\xb9\x00\xc8\x0a\x50\x40\x82\x8b\x75\x87\x99\xd6\x81\x08\xc0\x53\x5c\x12\xc4\x13\xce\x63\x85\x6d\x53\x1d\xb2\x4a\x75\x2e\x29\xdf\x9e\xa1\x24\xf1\x56\x46\x34\x71\x4e\x72\xbd\x22\xdd\x3b\x74\x23\x70\xae\x73\x72\x85\xb9\x22\x4b\x6f\x3a\xbb\x54\xa7\x30\xba\x07\x2d\x6a\xdb\xb9\x3e\xbb\x81\xc4\x19\x36\x66\x3c\x62\x7c\xc7\x5c\xc9\x02\x6b\x70\xc6\x22\xd4\xb8\xb5\x89\x94\xa9\xe1\x31\x2d\x01\x0c\xe2\x46\x51\xc4\x0e\x39\x51\x2e\xb7\x42\x1c\x5d\x2a\x99\xe4\x9a\x25\x7b\x5b\x17\x47\xd1\x46\x56\x3d\xf2\x85\x64\x21\xfd\x62\xf3\xb2\xa3\x57\x5c\xac\x15\x59\x33\xc1\x32\xea\x5d\x9d\xd0\x92\x7b\x88\x2a\x19\xcd\xbe\xa3\xd9\x77\x34\xfb\xfe\x6b\x9b\x7d\x0d\xc6\x98\xcd\x87\x90\x75\xaf\xe8\x81\xc7\x1d\x93\x95\xb4\xb8\x7a\xb9\x07\xf1\xd5\xe1\xa7\x54\x66\x41\xb2\x6e\xd1\xbf\x96\xf8\xb9\x39\x59\x40\xd1\xc1\x81\x4d\x14\xfe\xd6\xe0\xd7\x79\xec\xcc\x5f\xa5\xa1\x70\x71\xf4\x17\x0c\xc1\x9d\xcd\x77\xaf\x30\x0a\xf7\xaf\xa7\x30\x56\xd0\x57\x11\xac\x65\xc5\x07\xdf\xe0\x07\xa7\xf8\x03\x7c\x05\x3f\xa0\x59\x0a\xaa\x2e\xc0\x5c\x2a\x8b\xf0\x26\xe5\xb8\x8d\x36\xfa\x51\x50\x66\x00\x96\x88\x49\xe1\x41\xbe\x64\x89\x34\x78\x19\x18\x6f\x1b\x8a\x04\xb8\x0e\x0a\xd3\x95\xee\x7c\x61\x24\x0b\xe8\xb1\xee\xe5\x63\xd9\x97\x7b\x66\x19\x6e\xaa\x71\xba\x16\xb2\x07\x52\x75\xf3\xc9\x67\x33\x2a\x86\xd4\xea\x82\x5f\xa9\xec\x2c\xf2\xaa\x6d\x14\xc8\x67\x4f\xe6\x70\x12\xab\x60\x43\x5c\x51\x63\x57\xd0\x55\xb6\x5a\x94\xa8\xba\x10\xc3\x6f\x2e\x99\xbe\x67\x36\xea\x1a\x19\x0d\x80\x37\xe6\xec\xb7\xe2\x8c\x3f\x6f\xc8\xcb\x5b\x70\xe1\xe1\x1d\xb6\x75\x39\xec\x08\x7c\x45\x96\x52\x6f\x08\x13\xb1\x42\xce\xcc\x70\x58\xaf\xbf\x9b\x83\x13\xbb\x69\xea\x1c\xd8\xbb\xd9\x74\x33\x25\xec\xfb\xd5\xf0\xbe\x5f\x35\xfa\x9e\x12\x73\x4d\x43\x03\xd8\x65\x96\x61\x0b\x91\x04\x0f\x72\xa7\xc2\xf0\xc0\xf0\x54\x55\x06\x72\x1b\x11\x9c\xb7\xdd\xfc\x75\x22\x97\x34\x29\x93\xfd\xaf\x6c\x5d\xb2\xe2\xba\x1c\x78\x12\x91\x17\xb1\xcb\xeb\x3d\x8a\x76\xf5\xa5\xbb\x89\x81\xe6\x46\xde\x37\x92\x13\xa0\xd2\xa7\x23\xfe\xa0\x9f\x87\x6a\x32\x4c\x85\xf7\x6c\xbb\x25\x7f\x71\xf4\x41\x31\x0c\x60\x58\x1c\x91\x2d\xa3\x42\x55\xe7\x56\xb0\x3d\xe6\xf0\x5b\x79\xbb\x32\xd9\x29\x44\x51\x06\x4a\x53\xe0\x83\x5d\xda\x38\xff\xf6\x25\x1f\xb4\x0b\xa3\x26\xdd\xd7\xa4\x27\x32\xba\xa3\x2b\x6c\xc3\x1e\x45\xa1\x6e\x46\x38\xc3\x11\xf6\x0d\xb5\xba\xff\x32\xa0\x5c\xaf\xce\xae\xa1\x63\xf7\x5e\xef\x47\x4d\xbb\x9d\xe5\xa8\x69\x1f\x35\xed\xff\x46\x9a\x76\x1f\x83\x0c\xd4\xb7\x37\x31\x52\xf9\x1c\xae\x84\x6f\xb1\x06\x77\xb1\x01\x31\x4b\x98\xee\xf7\x40\xbd\xc0\x66\x5e\x58\xa3\xad\xb8\xca\x15\xe2\x3e\xe2\x90\x9f\x39\xb7\x4b\x06\x05\x15\xf1\x9b\x3e\xaf\x7b\xff\x9c\xaf\xd0\x6d\x2f\xa5\x9a\x43\xe2\x85\x3d\x32\xee\x32\x89\x81\x1d\x48\x18\x55\x76\xe8\x20\x89\xe6\x4a\xd3\x3b\x26\x92\x3d\xd1\x19\x73\xd3\xc3\x51\x68\x39\xca\xc3\xe8\x63\x3b\x79\x2b\x5d\x66\xee\x1c\xf6\x4d\x8b\x4c\x3a\x81\x2d\xad\xff\x66\x01\x5b\xff\x39\x94\x67\x2f\x50\xaa\x6f\x64\x3a\xfc\xbc\x57\x48\x7f\x0d\x56\x32\x12\xf0\x23\xa5\x8d\x70\x6e\x6b\xe5\x28\x75\xee\xa3\xd9\xa2\xc9\x82\x04\xe6\x5a\x67\x43\x9a\x4d\x7e\x4e\x5e\xa4\xea\x04\xdc\x58\x61\x2d\x81\x84\xf5\x2e\x2c\x4c\x4f\xde\x22\xc6\xdc\x11\x23\x7f\x33\xf2\x37\x3f\x37\x7f\xd3\xbc\xc1\x5d\xd9\x23\xf0\xd3\x65\x80\x3a\xb6\x9b\xf9\xba\x58\x1b\x40\xb1\xe1\x3b\xde\x9c\xa9\xdf\xd8\xc5\xae\xda\x4b\x6e\xe6\x66\x0d\xa4\x45\xd1\xf8\xa8\xc4\x7c\xf5\xc7\x20\x81\x5c\x88\xa0\x2e\xbc\x33\x7b\x01\x76\xf9\xdd\x87\xd9\x45\xef\x6c\xcb\xa6\x6e\xae\xf0\x6f\xab\xfe\x6d\x9d\xdc\x80\xe1\x6f\x4d\x93\x61\xc3\x9b\xa6\x6e\xd3\x2c\x5a\x84\xe2\xc4\x5f\x32\x8b\x22\x63\xdb\x35\xa3\x71\xc8\x46\x54\xe5\x31\x2b\xad\x8b\xf4\x97\x71\x0e\x28\x42\xf1\xb5\x00\xf6\x59\xe8\xb2\x5f\xb2\xe5\xeb\x4a\x1e\xa5\xda\xdc\x24\x7c\x46\x13\x9b\xb9\x20\x95\x02\x7c\x35\x55\x1e\x6d\x0c\x47\x88\x35\x3a\x5d\x7d\x7f\x8b\xb8\xef\x29\x37\xb7\x7c\x25\x5b\xd4\x93\x50\x50\xc2\x61\xa8\xb6\x2a\xda\xa4\xcf\x14\xb1\xa3\x19\xa7\xa2\x37\x02\xfd\x7b\x6c\x46\x62\x16\x25\x34\x03\xfd\x1b\x8f\x36\xee\x6b\xef\x2c\x7b\x31\x3e\x90\xc4\xfe\x5f\x5f\x0f\xf5\x68\x9c\x21\xe0\xf9\x4a\xfe\xf8\x32\x83\xed\x64\xcd\xc4\xf4\x2e\x5f\xb2\x65\xce\x8d\x50\x02\x03\xb8\xe1\x9f\x01\x32\x07\xbf\x1a\x48\x29\xcc\xa5\xb8\xe5\x5b\xa6\x34\xdd\xa6\xa7\x44\xe4\x49\xb2\xa8\xa5\xf3\x05\x95\x38\xc0\xec\x51\x14\x5e\x78\x36\xae\x64\xcc\x6e\xbc\x74\xce\x1e\xd7\x59\x7b\x1f\xe0\x39\x1b\xd3\x6c\xb0\x9c\xb5\x16\xa3\xf2\xcb\xce\x72\x64\x0e\x47\xe6\xf0\xdf\x88\x39\xac\xa1\x92\x61\xfa\xaf\x30\x82\x2a\x9f\xcf\x50\x81\x25\x54\xa9\x01\x19\xa3\xb0\x59\x49\x57\x1d\xbf\x03\xbc\xab\x27\x7a\x62\xa9\x2f\xc1\x5b\x1c\xdd\xd0\x9a\xc5\x95\x6f\x6c\xc6\x6b\x09\xbe\x55\x18\x36\x83\x86\x50\xbe\x73\x51\x2f\xe6\x44\xca\x4c\xb7\xf8\x57\xd0\xa5\xcc\x35\x89\x58\x66\x40\x67\x4e\x1b\x84\x79\x57\x67\x75\x50\x30\x4b\xb7\x43\x47\x47\x4c\xd1\x67\x7b\x22\x72\x0b\xd0\xa0\x23\xe2\x2a\x0c\x49\x68\x64\xa3\x82\x0e\xe3\x32\xf1\xc6\xcd\x2b\x85\x08\x7a\x66\xfd\xa1\xf9\x49\x91\xe1\x07\x7e\x24\x54\x5b\x56\xab\xef\x88\x9a\xa7\x64\xbe\x8a\xdb\x8f\xa5\x65\xc8\x0b\xbf\x04\x7d\xbd\x2b\x92\xb1\x55\xc6\xd4\x26\xa8\x21\x75\x7e\x7c\xd8\xa3\x9b\x16\x57\x10\xdb\x14\xd3\x87\x75\x8c\x6b\xbd\xf5\x25\x3f\xd7\x02\xc9\xc6\xbd\xc7\x95\xf9\x04\x54\x2e\x91\x6f\x44\x65\x64\xc9\xb3\x96\x1f\x35\xd6\x72\x25\xd1\xbb\x0b\xaf\xa0\x60\x2c\x66\xe8\x7d\x67\x2f\x90\xe2\xe6\x24\x71\x30\x7f\x5b\x90\x93\xe5\xde\xf6\x7b\x80\xd3\xfa\x9a\xf5\xb3\xe0\x67\xa6\x11\xd9\xc8\x24\x56\xf8\x81\x9b\x84\x97\x7f\xef\x70\x97\xbe\x25\xcf\xe2\xef\xbf\x19\xe2\xcc\xf7\x7a\x76\x7d\xf1\xfd\x37\x7e\xa8\x59\xc9\x1f\x54\x61\x9b\x03\x9a\x30\x3d\x7f\xf3\xf9\xce\x7c\x09\x55\xfa\xb5\x94\x6d\xde\xd9\xc1\x29\xbe\xf5\xbe\xb1\x90\x2a\x94\x01\xe0\x81\xea\xbd\x6f\xef\x92\x20\x19\x46\xd7\x72\x9d\x10\x99\xeb\x34\x0f\xb9\x35\xb8\x67\x88\xa7\x9a\x19\xfa\x9a\x55\xb2\x44\x1c\xba\xb2\xc0\xe7\x6d\x8b\x74\x4d\x7f\x86\x85\x82\x53\x6e\x16\xd4\x36\x04\x57\x76\x0d\xed\xc9\xec\xa2\xc8\xae\x09\xf3\xf9\xb2\x49\xb4\x19\x3e\x82\x33\x80\x94\xf9\x0e\x25\xb8\x64\xa3\x17\x94\x6d\x83\xf4\xed\x90\x69\xec\x5a\xd5\x44\xc1\x89\x7c\x5f\x6a\x86\xdc\x34\x62\x98\xc6\x97\xcc\xa2\xdb\x57\xd0\x22\x80\x57\x83\x11\xc0\xab\xc3\x10\xc0\xab\x11\x01\x78\xcb\x19\x11\x40\x60\x65\x23\x02\xf8\x39\x11\x40\xd7\xdb\xe5\xba\x37\x56\xcd\x4c\x11\x8f\x20\xf0\xcd\xe6\xcf\x56\xde\xb9\xe7\xce\xa3\xb3\xe2\xa5\xd2\x74\x99\x70\xb5\x61\x03\xd9\x12\xb3\x79\x5a\x6a\x9a\x78\x91\x26\xe0\xb7\xc9\xca\x9e\xcc\x4a\x88\x62\x0a\xf5\x71\x5d\x60\x6a\x09\xd7\x08\xcf\x6f\x10\xd6\x6c\x99\xdf\xab\x47\x9a\xdf\x95\xd4\x0f\x07\x42\x21\xc5\xe4\x27\x99\xe6\x97\x41\xf2\x31\xa6\x09\x11\xec\xc3\xc0\x37\xc7\xa6\x3e\x61\x04\xe8\xb9\x20\x33\x35\x8c\x51\x27\xbd\x29\x86\x5a\x04\x1e\xf0\x51\xad\xaa\x38\x0a\x1a\x5c\xcc\xa1\x1d\x83\xf4\xcf\x6a\x10\xb9\xee\x88\x2d\x68\x59\x41\x4b\x84\xc1\xfd\x46\x2a\x56\xaa\xe0\xc9\x3d\x23\x34\x6c\x02\x29\x9f\x42\x91\xd1\x81\xaf\x87\x61\x6c\x82\x32\xdd\xf0\x55\xdc\x70\x8c\x6a\x2c\x48\x48\x46\x32\x46\x95\x14\x40\x87\x6d\x31\xcf\x2e\x72\x36\x78\x5e\x3d\x24\xad\x3e\x2f\x98\x8d\x55\x26\x00\x5e\xc6\x1b\x81\xfd\x3c\xc0\x7c\x74\xd8\xa6\xd7\x32\x1d\x30\xeb\x05\x92\xd1\x17\x21\x14\x95\xa0\xd8\xee\xdd\xde\x71\x5a\x1c\xd9\x89\xb6\x15\x6d\xb7\x4c\x6d\x8e\x0d\xf4\xcd\x5b\x26\x8a\xb2\x61\xce\x61\xbd\x2b\x8b\x19\xc1\x02\x92\x13\x47\xc3\xe0\x46\x59\x95\xf9\x97\x02\xaa\x8f\xff\xee\xcd\x09\x86\x98\x68\x10\x86\x44\x4c\xf4\xaa\x86\x89\x5e\x8d\x98\xa8\x67\x05\x23\x26\x3a\x6c\x5e\x23\x26\xb2\xcf\xbf\x13\x26\xea\x08\x57\x9c\x84\x98\xf7\x61\xcd\x5e\xb5\x37\xab\xb3\xb2\x83\x5b\x06\xfa\xec\x5a\xbb\xb9\x1d\xa8\x88\xef\x75\x3f\x7e\x5b\x36\x45\xd3\xa0\x76\x76\xf5\xa6\x5d\x10\xf4\x21\x19\xb4\x08\x41\x1b\x72\x77\x34\x34\xf1\xd6\x54\x08\x17\xb6\xb4\xe0\x81\x7e\xb9\x18\xa0\x35\x50\xfe\xfa\xcd\xf9\xd7\x5f\x7f\xfd\x3b\xd0\xbf\x63\x69\x0e\x48\x67\xf0\xe1\xf6\xbc\x43\x49\x6f\xc6\x98\x84\x27\x29\xf2\xc4\xd6\xdd\x2d\x1d\x2d\x9a\x40\x0d\x1f\x3a\x8c\xcd\xef\x83\x27\xc8\xfe\xce\x0e\xa5\xec\x47\x04\x8c\xf5\xce\x00\x6d\x6d\x37\xdd\xb2\xf0\x17\xa9\xc0\x71\xd4\x61\xbc\xfe\xb5\x6d\xdb\x60\xf6\xed\xd4\x1f\x89\xb0\xc2\xb0\x5d\x94\xb5\x3d\x09\xcc\x10\x00\x0d\x02\x53\x31\x41\x57\x43\x76\x38\xca\xbd\x28\x3f\x2a\x82\xd5\x8b\x3a\xb7\x6d\xcf\x30\xdc\xbf\xa6\x9a\xdd\xd3\xae\xb8\xff\xda\x5c\xbe\xc3\x0f\x8a\xf8\x3f\x6f\x41\x0f\x30\x9d\xa2\xde\xed\x01\xcc\x47\x51\x23\x38\x30\xa5\x2f\x9f\x51\xc2\x68\x26\x58\xfc\x26\x93\xdb\xe1\x73\x7a\x5b\x7e\x54\x9e\x3a\xdf\x1a\x9d\xb1\x35\xcd\xe2\xce\x81\x09\x22\xb9\xcc\x66\x30\x81\x0d\x77\x89\x8c\xda\xc2\x31\xdc\x33\xe8\x28\x92\x61\x9c\x5e\x63\x71\xb3\x95\x8d\x95\x44\x4e\x40\x95\x15\x11\xb0\x78\x94\xa1\xb9\xc7\xa4\x2d\xb7\xab\xff\xd4\x98\x46\xd4\x7c\xda\x0c\x2e\x4c\x68\x92\x2b\x6f\xed\x9d\x0b\x26\x83\xf7\x93\x14\x31\xb3\x2d\x4e\x95\x1d\x2b\xbf\xf5\x1c\x29\xad\xbf\x0a\xee\x10\xb5\xdb\xc3\x95\x3b\x2f\xfd\x8b\x87\x14\x19\x0f\xb5\xa6\x7e\xde\x84\x7c\x29\xa3\xc7\xbd\x4d\x2a\x83\x83\x40\xe7\xdc\xe2\x0a\xe0\xad\x55\x66\xf7\x78\xde\x6d\x91\xed\x9f\x9b\x19\x2b\xa8\xd6\x20\xb9\xd0\x52\xad\xa6\x60\x38\x52\xad\x8e\x85\x8c\x54\xab\x63\x42\x23\xd5\x6a\x3e\x23\xd5\x1a\xa9\x56\x5b\xab\x91\x6a\x75\x7e\xfe\xab\xf4\xfc\x7f\xac\x60\xd0\x15\x4b\xf8\xa7\x47\xaf\x21\x0e\x41\x27\x9d\x55\xc4\x9b\x2d\x9a\x8e\xf9\x81\xb9\xda\x7d\x29\x3c\xf3\x9b\x4d\x16\xbf\x94\x60\x50\x0c\xbc\x39\xa8\x9c\x38\x7c\x32\x06\x82\x8e\xbe\xfe\xa3\xaf\xff\xcf\xed\xeb\xdf\xc4\x4f\x7d\x65\xc4\xf1\xbe\x7f\x6e\x21\xf1\x24\x91\xf7\xb3\xf9\x6c\x3e\xa7\xd1\x1d\xd3\xca\xf0\x99\x3f\xc8\xec\x2e\x91\xb4\xdf\xd3\xfb\xe9\x59\xd7\xd7\x2e\xb2\xab\x34\x47\xc0\x4c\x83\x7a\x63\x2c\x9e\x13\x1b\xee\x27\x4f\x20\x29\x71\x9c\xc9\x94\x98\xae\x09\x13\x11\x4d\x55\x9e\x80\x82\x5a\x67\x74\xb5\xe2\x91\x2d\xe2\xe3\x86\x0a\xf5\x59\x56\x5e\x03\xf4\x7b\x70\xe9\x35\x80\xcc\xf7\xff\xf9\xf6\xec\xea\xf3\x41\xd3\xfa\xf9\x03\xc0\x06\xfa\xfe\xd9\x80\x73\xaf\x6e\xb2\xe8\x42\xe9\xf3\x0d\x8b\xee\x7a\x81\x71\xc3\xb4\xe5\x72\x27\x9e\x44\x35\x89\xcc\xc7\x46\x20\x3e\xfb\xe1\x86\x5c\x9e\x7f\x55\xc4\x31\xa8\x29\x39\xb3\x8c\x4e\x68\xf6\xbb\x6a\xc9\x6a\xac\x47\xb2\x38\xba\x90\x57\x52\x6f\xcc\xf5\x84\x6a\x5c\x58\xc9\xcf\x95\x1b\xbb\xc0\x38\x81\xc5\x51\x4f\x85\xfb\xa2\x93\x10\x4c\x98\xc8\x43\xa2\xdb\xa4\xfc\x2a\xf4\xd2\x4e\x24\xf4\x99\x9d\xd4\x41\x56\x88\x65\xba\x3a\xc7\x4a\xf0\xb7\x7c\xeb\x55\x4e\xe1\x62\x3d\xb4\xe4\xe1\xeb\xf9\x9b\x9e\x2e\xd0\x94\xc3\x05\x79\x3d\x7f\x43\xb6\x32\x0e\xd7\xba\x0e\x9f\x62\xdc\xc6\x24\x29\xb8\x0d\x5b\xb5\x1e\x2c\x32\xc4\x9c\x49\xb2\x74\x65\x69\x5a\x13\xfe\xd9\xcf\x02\xdf\xa0\xdd\x08\xed\x76\x85\xa0\xbe\x91\x0a\x62\x42\x96\x8c\x40\x38\x88\x96\x41\xfd\x12\xa3\xd1\xc6\xaf\x98\x63\x2b\xfb\x28\x5b\xf4\x9d\xf0\x6d\x9a\x41\xc6\x65\x1b\xad\x02\x62\xb6\x88\xe0\x80\xa5\x32\x9e\x68\x39\xe9\xaa\x19\x56\x16\xe8\xc7\x85\x61\x1a\x66\x6b\xb0\xf6\x82\x55\x30\xb8\xc2\xcc\x3d\x66\xcb\x1c\x0b\xe0\xa7\x79\x96\x4a\x65\x8e\x7e\xf7\x01\xfd\xac\x3a\x92\xcb\x74\x75\x41\x35\x9d\xad\x68\xc4\xe6\xb6\x84\x78\xcf\x21\x79\x3d\x7f\x53\xff\x04\xb9\x89\x8c\x01\x0f\x4c\xd8\x27\xc3\x0e\x00\x9b\x07\x72\xb6\x3b\x0c\x41\x24\x06\xe1\x3e\x85\x4a\xc6\x45\x87\x5b\x2e\x8e\x6a\x6d\xf6\xc5\x1c\xb5\x34\x93\xeb\x8c\x6e\x81\x7d\xe3\x82\xc8\x2c\x86\x44\xab\x41\x68\x53\x1d\x6d\x0a\x9c\xa7\xe5\x49\xc1\x7c\x08\xa6\x0d\xf6\x9b\xda\x54\x48\x82\xb1\x18\x3a\xdc\xe2\x17\x1b\xe6\xcd\x24\x08\x62\xb3\x1c\x57\xd7\xcd\xa2\xd1\x12\xb9\x42\xe8\x99\xdc\xb1\xac\x5e\xc3\x6d\x40\xa7\x1b\x2a\x62\xb3\xff\x22\x92\x5b\xe0\xbf\x8a\xd9\x83\x42\x10\x2d\x86\x98\xdf\xd3\x1e\x4c\x58\x94\xcc\xb5\xe2\xe1\xaa\xa3\x7e\xc2\x07\x42\x66\x45\xa4\xbd\xe1\xa2\xca\xf5\x16\xab\xf0\xb6\xe0\x59\xae\x72\x9a\x24\x41\x45\xac\x91\x43\x62\x88\xbb\x9b\x4e\xa7\xcf\x0f\x8c\x19\x33\x87\x0d\x0f\xfa\x07\x91\x66\x7c\xc7\x13\xb6\x1e\x86\x94\x02\x9f\x1d\x13\xbe\x72\xe5\x54\x8f\xdd\xb1\x61\xd6\x4f\xff\xce\xdc\xe3\x64\x9a\x7b\xed\x3f\x2e\xd3\xd5\x47\x7b\xcf\x82\xc4\x43\xed\x55\xa4\x13\xff\x36\xfa\x9f\x43\x22\x5a\xb9\x32\x67\xd1\x1d\x1f\x26\x54\x5e\x14\x9a\xf6\xdb\x86\x7a\xcf\x95\xe1\x8a\x23\xe4\x62\x31\x9d\x81\x3d\x49\x4f\x9f\x2a\x44\xa6\x34\xc5\x2d\xb6\x8d\xb8\x50\x46\x82\xd1\x1b\xc6\x33\x22\xef\x83\x7a\xc6\xe6\xcd\x30\xbb\xc8\x6c\x4d\xae\x72\x80\x2f\xae\x37\xbb\x4c\x57\x07\xd0\x90\x4b\xb7\x2d\xe5\x16\xd9\x1d\x02\xa6\xc5\x15\xd1\x30\xb3\x37\x1c\x72\x9a\x50\x11\xd6\xbd\x7d\x29\x3b\x02\xd3\x5e\xc9\x2c\x62\xd7\xf3\x37\xc3\x66\xee\x5a\x13\x86\xff\x84\xb3\x1c\x69\x62\x7e\x92\x02\x6a\x27\x78\x77\xc5\x80\xb9\x77\x63\x50\x13\x9b\x58\x35\xe4\xbd\xcd\x20\x6b\x29\xc9\xc4\xeb\x4d\x66\xd6\x6d\x26\x78\x3e\xb1\x90\xc9\x94\xcc\xa5\x52\xdc\x9c\x4f\xcb\xee\xd3\x8c\x39\x86\x21\x36\x5d\xdc\xc0\x84\xfd\x2d\xc7\x5f\x0e\x2d\xf8\x6f\x80\xf7\x49\xdf\x4a\x57\x31\x52\x0a\xb1\xa5\x59\x3f\x53\x67\xc0\x18\xf8\xae\xc2\x34\x38\xa2\x40\x28\xf9\xfa\xab\x25\x0f\x67\x96\x33\x1f\xb9\x7c\xbb\xb6\x34\xbc\x47\x49\x11\x03\x52\x41\x98\xab\x23\x88\xe2\x24\xe6\xa1\x86\xb4\xc8\x61\x30\xc2\xac\x6c\x21\x05\x18\xc3\x46\x0d\xe7\x2e\x79\x2d\x4c\x6c\x23\xef\x49\x8a\x1c\x3a\x0a\x54\x48\xc9\xec\xe8\xa1\x9e\xa1\x3e\x8a\xcc\x0d\xc3\x5d\x56\xea\x44\x06\xc4\x25\xee\xb5\x8a\x66\xc8\x82\x6c\xb6\x3d\xcd\x5c\x09\x90\xeb\xf9\x9b\x20\x2d\x33\x9c\xb0\xbf\x95\x2f\xda\x77\xb1\xc5\xc1\x1b\xb7\x11\x20\x64\x77\xe4\xdd\x80\x10\x63\xbb\x8b\xf5\xcf\x82\x9b\xa8\x60\x6d\xde\xd6\x84\x56\xe2\xd3\xab\x4a\xee\x31\xa8\x43\x60\x89\xda\x33\x5b\x23\xc1\x51\x3b\xaf\xfa\x69\xb0\x72\x8e\x01\xb9\x55\xfc\x1a\x31\x47\xba\x74\xcf\x85\x8c\x63\x48\xdf\x0a\x0e\x8f\x96\x64\x71\x74\x9b\x0b\xc1\x92\xc5\x11\xa6\x17\x5f\xca\xf0\xe5\xb5\x8a\x07\x98\x41\xc6\x54\x2a\x85\x41\x58\x96\x22\x9b\x9b\x0b\xbd\xe0\x80\xb5\x1c\xd3\x30\x5e\xcb\xed\xc5\x29\x5c\xdc\x5c\x1b\x31\x04\xbf\xc3\x71\x42\x5d\x2f\x73\x6d\xdb\x54\xc7\x0f\xf5\x0d\xd7\x43\x68\x12\xf3\x8c\x45\x3a\xd9\x07\xb3\x5f\x9b\x99\x09\x37\xbe\xdd\xbf\xb2\x49\x90\xd6\x43\x4e\xf1\x34\x65\x34\x53\x7e\xed\xa3\xd9\xdc\x69\x18\x38\xd6\x8e\x84\x96\xbf\x77\x3a\x3b\x60\xc0\x15\xa1\xa1\x2e\x53\x96\x6d\xb9\x52\x7c\xc7\xc8\xdb\xaf\x3c\x76\xac\x3c\xdf\xb8\x43\x9f\x81\xaa\x0c\xf3\x3e\xcf\xe4\xa7\xfd\xa5\xd5\x30\xdd\x24\xe6\x48\x0d\xa4\x5a\xaf\xe7\x6f\xba\x3b\x08\x1f\xfc\x30\x4b\xeb\x89\x3c\x4f\x15\x61\xdb\x25\x8b\xcd\xf1\xbc\xcb\x97\x6c\x92\x9a\x11\xac\xb6\x5e\x91\xea\x50\xed\x86\x8b\x3e\x22\x57\xcc\x7d\x96\x6a\x33\x5d\x75\x6e\x1a\xe6\xe9\x01\x34\xbb\xa7\x8b\x0a\x2d\x47\x58\x04\x71\x36\x80\xc7\xa3\xf5\x69\x26\x31\x37\x52\xb2\x27\x91\xe9\x91\xe4\x58\xe5\x2b\x4f\x95\xce\x18\xdd\xfa\x52\x57\x09\xa1\xa7\x4f\xc3\x39\xf5\xed\xdc\x48\xb4\xa1\x1c\x84\xa9\x9b\x6a\x59\x9b\x62\x86\x2b\x1f\xdc\x36\x5f\xbb\xcd\x29\xf6\x58\x82\x54\x01\xc1\x77\x5c\xdc\xec\x45\x84\x99\x0e\x0e\x82\x7d\xe5\xcb\xe3\x16\x64\xab\xc3\x82\xf1\x96\x0b\xc8\x5d\x00\x82\xb1\xab\x10\x80\xca\xd2\x42\xe9\x5d\x70\x5b\xa5\x76\xff\xa9\x77\x44\x43\xdd\x96\x60\x9c\x12\xf2\x56\xde\xb3\xcc\xf1\x1d\x6b\x73\x8d\x33\x16\xe7\x11\x33\x72\x89\x9e\xe4\x29\x68\xd5\x45\x64\x9a\xfe\x91\xaf\x37\x45\xdb\x30\x96\x35\x5f\x3a\xab\xc4\xfc\x03\xc9\x15\x5d\x33\x08\x89\x34\xe2\x09\x58\xfe\x52\xb2\x95\x19\xa2\xf3\x0a\x96\x78\xa9\x3e\x03\x43\xbc\x95\xeb\xb7\x6c\xc7\x42\xf5\x53\x1a\x3b\xe2\xda\x56\xa0\x4e\x12\xb9\x26\x09\xfc\xec\x82\x16\x3d\x36\xaf\x05\x17\x14\xca\x92\x12\xf6\x5b\x44\xc7\xef\x9d\x7e\xea\xfd\x6a\x85\x9a\xa9\x99\x58\x49\xf3\x2f\x54\x4c\xb1\x65\xbe\x5e\x1c\xb5\x6b\x42\x12\xb9\x46\xe6\x8f\x6d\xb9\xd6\x25\x39\x32\x83\xe9\x8c\x46\x8c\xa4\x3c\x65\xc7\x2e\x79\x9a\xe1\x18\x41\x2a\x40\xe5\xcb\x76\xdb\x52\x34\x7e\x71\xa4\x23\xc2\x3e\xb1\xc8\xc0\x0c\xf5\x10\x15\xe5\x18\x79\xbf\x5a\xfd\x75\x7a\x38\xf8\xdf\xd1\xf4\x86\xff\x1d\xd8\x41\x33\xbb\x41\x7c\x64\xfd\x9b\x52\xc2\x53\xfc\xef\xa5\x37\x46\xe4\xde\x87\xd9\xc8\xd4\x49\x6c\x5b\x9a\x16\xda\x41\x2c\xe6\xcf\x84\xcc\xd7\x1b\x03\xb9\x8d\x4c\xa0\x54\x05\x13\x3a\x43\xd7\x13\xd0\x09\x21\xf2\xea\x56\xea\x4c\x09\xf9\x81\x66\x06\xb5\x9c\x62\xe0\x41\xe1\x15\x6d\x26\xe9\x72\xf9\x15\x6b\x30\xb3\x88\xc2\x75\x72\x22\x6a\x88\x6c\xcc\x55\x96\x03\x14\xda\xc1\xdc\xce\xec\x59\x98\xcd\xe6\x37\x4c\xf7\xaa\xa3\x4b\x18\x63\xfb\x00\x80\x79\x0a\xbf\x39\x30\xb2\x16\xb7\x0b\xd7\xe8\x50\x00\x3b\x83\x50\x78\xeb\x74\xb4\x41\xfe\x98\xed\x58\xb6\xb7\x49\x7d\xcc\xa4\x84\xe7\x21\x71\xe2\xe9\x8e\xed\x37\xe0\x0b\x6e\xf9\x8b\x20\x23\x22\x13\x0e\x68\xca\xd5\x7b\x29\xf3\x13\x2e\x8e\x68\x92\x3c\x7b\xbe\x38\x32\x9b\x64\xf8\x2f\xa8\xfc\x21\xec\x7a\x5c\x39\x37\x19\xe4\xf2\xcc\xda\xb8\xe1\x63\xa5\x60\x76\xa1\x29\xcb\x4a\xa3\x17\x77\x2a\x31\xaa\x58\xbb\xf6\xa4\x7f\x6f\x57\x37\x2d\x51\x29\x6d\x9b\x8b\x1f\x84\x76\x77\x85\xf1\x33\xc5\xf6\x06\xc9\x6e\xd9\xe8\xd0\xed\x8d\x59\x9b\x52\xf4\x19\x48\x46\xff\xbd\xe4\xd5\x9f\x83\x7c\x0d\x02\xd3\xe7\x83\xe6\xea\xec\xd6\xa5\x76\x0f\x80\x67\x78\x27\xaf\x8d\xe8\xd7\x30\xa4\x76\x80\xb8\xfc\x26\x00\x65\x41\x35\x59\x9a\xbb\xcf\xc0\x9e\x9c\xb6\xa7\x67\xb7\x8a\x81\x7a\xe8\xaf\x3b\x41\xae\x00\xa0\x41\x66\x52\x19\x5e\x1f\x08\xa4\xde\x84\xf1\x49\x1d\x09\x95\x1d\x3a\x91\xeb\x8b\x20\xfd\x26\x93\x42\x1f\x0a\x25\xf7\x51\x0b\x98\x56\xe6\xb5\x59\x6f\x2b\x2e\x77\x1d\xbc\xa3\xa9\x97\x04\x6a\xd8\x79\x6c\x93\x73\x8c\xc8\x79\x5c\x6a\x12\x6c\xad\x26\x38\xc1\x50\x78\x8a\x0b\xfc\xc3\x69\x0f\x3e\x1b\x6a\xe0\x26\x3a\x1c\x5e\xe8\x55\x1a\xa6\x7a\xd6\x9f\xb5\xf3\xe6\x96\x6d\xfa\x40\x55\xc5\x58\xee\x52\x06\x85\x6e\x11\x9b\x6b\x4a\x45\xbc\xca\x13\x3c\x9c\x88\xf5\xcc\x87\x70\xa9\x9f\x95\x7d\x47\xa0\x10\xe7\x5a\x11\x79\x2f\x8c\x1c\x4f\x5a\xd8\x0e\x94\x7c\x41\xd2\xff\x0c\xe8\xce\x6f\xae\xce\x6e\xe7\x32\x0b\x52\x3c\x2a\xf6\xef\x43\x25\x1c\x27\x7d\x91\xf1\x93\x1e\x3f\xb1\x06\xbf\x52\x4e\xa3\xdc\xb3\x8c\x8a\x35\xb3\xa6\x57\xb0\x76\xdc\xc3\x6f\xb1\xdc\x86\x55\xec\x29\x8f\xee\x08\xb5\xc7\x0e\xae\x6d\xc6\xac\xbb\x06\x7a\x62\xc0\x9b\x48\x26\x09\x57\xc0\x7c\x00\x42\x28\x76\x37\x6c\x2a\x2e\xd4\x51\x2c\xdd\xb0\x2d\xcb\x68\x62\xe7\x45\x5d\xda\x30\xd4\x42\xbd\x39\x27\xaf\x5e\x7c\xfb\x8a\x3c\x7b\xf9\xe2\xab\x6f\xfe\xf7\xff\xfa\x7f\x5f\x7d\xfb\xed\xd7\xdf\x3e\x6f\xdb\xb3\x14\xaa\x30\xd2\x65\xb2\xaf\x68\x76\xea\x83\xa8\x22\xd9\x89\x61\x3b\xa5\x20\xff\x3f\x7b\xff\xda\xdd\xc6\x6d\x2d\x8e\xc3\xef\x9f\x4f\x81\xca\xbf\xb5\x64\x9f\x25\x52\xb6\x93\xb8\x89\xba\xfa\x42\x91\xe4\x84\xab\xb6\xc4\x23\xc9\x71\xbb\xca\x1e\x1f\x70\x06\x24\xf1\x68\x08\x4c\x07\x18\x4a\x6c\xda\xef\xfe\x5f\xd8\x1b\x98\xc1\x0c\x31\x17\xca\x72\x9a\x9e\x0c\x5f\x24\x16\x39\x83\xcb\xc6\xc6\xbe\x5f\x64\xca\x32\xda\x54\x8a\x4f\x6d\x95\x66\x6b\x35\x26\xef\xb8\xc8\x1f\xcc\xab\x8a\x7c\xf5\xfa\xf7\x6f\xbe\x35\xcb\x79\xf9\xdd\x77\xdf\x1d\x19\x38\x26\x0c\x3b\x2f\x16\x74\xb0\xb0\x4e\x9c\x5e\x9e\x86\x86\x75\xbb\xc4\x6d\x7f\xfd\xdd\xab\x6f\x5e\xbb\xfd\xb9\xa4\x33\xa3\x23\x62\x13\x54\x9a\xf1\x64\x6b\x0e\x21\x93\xf3\x84\xad\xf1\x1c\xc2\x6d\xde\x70\x3c\x83\xe5\x09\x4d\x55\x29\x61\x17\x7b\x2c\x37\xf4\x7d\xd1\xf5\xcc\x45\xa3\x9a\x77\x9b\xec\x5a\x5c\x44\x49\xae\xf8\x86\xf9\xb2\xf7\xeb\x97\x2f\x5f\xbe\x3c\x79\xfd\xdd\x77\xdf\x7d\x17\xd2\x80\x52\xeb\xc2\x23\xff\x33\xfe\xaf\xdd\x5f\x1f\x46\x65\x63\xcc\x11\x17\x7a\x24\xb3\x11\xa2\x76\x38\xe9\xcd\xdc\x2b\x90\x93\x40\x15\xe9\x6f\x49\xd9\x7d\x09\x15\x21\x33\x87\x33\x0e\x64\x2c\x92\x59\x6c\x90\x4f\x53\xde\xe0\x91\xf1\xa3\x99\xb1\x40\x63\xa1\x73\xc1\x0c\x85\xea\x75\x64\x6f\x96\x11\xd8\xe6\x8c\xb0\x07\xba\x6e\x6a\x58\x59\x6a\x40\xe0\x1b\x19\x19\x1d\xc7\x2a\x43\xa3\x84\x0b\xc3\x79\x65\xb2\xaf\x05\x06\xac\x11\x13\xf0\xd7\xf4\xb2\xad\x9e\x55\x9f\x6f\x72\x97\xaf\xa4\xbc\xf3\xfd\x59\x0d\x46\x11\x2d\xd3\x11\x6a\xa5\x35\xf3\x88\xb9\x71\xe8\x45\x32\x68\x68\xc3\x44\x6c\xf5\x75\x2d\x53\x8b\x85\x61\xb3\x33\x05\x27\x2b\x34\xbe\x4c\x53\x26\xe2\xdd\x11\xe6\x52\x6b\xb9\x1e\x3b\x3f\x95\x15\x5c\x14\x5d\x30\xd7\x2f\x2f\x78\xbb\x5d\x11\x41\xdb\xb1\xd8\xf7\x82\x99\xd1\xad\x59\x1f\x23\x7f\xe7\xdb\x94\x2a\x05\xb1\x5e\x0b\xb2\x95\x39\x51\xf7\x5c\x87\x99\xb8\x96\x76\xa1\xd6\x5a\x32\x67\x44\x61\x07\x3a\xbb\x5c\xec\xd3\x8a\x53\xb8\xb6\xd7\x08\x25\xac\x56\x1e\xbc\x86\x60\xa6\x03\x3f\xff\x7c\x4b\x16\x34\x49\x50\xb3\xcb\x1c\x77\xf3\x72\x36\x61\xe4\x23\x9c\xe6\x9e\x23\x31\x0a\x8d\x69\x1f\xb7\x18\x0c\x36\xb2\x39\xf3\x76\x5a\xde\x75\x04\xec\xbe\x86\x8e\xc2\xcc\x70\x9e\xf1\x0d\xeb\xec\x77\x79\x5e\x7d\x9c\x2c\x78\xc2\x84\xd7\x67\xb7\x10\x89\x4a\xf3\x45\x0c\x4f\x36\x1c\x42\xae\xd0\xb4\x81\x14\x19\x0c\x71\x1f\x14\x9b\xd8\xb0\xca\xfa\x6c\xd6\xb1\xa3\x25\xfa\xf7\xf6\xf4\x27\x17\x4b\xfa\x68\x74\xbe\x58\x42\x01\x30\x99\x77\x16\x97\x3c\x3c\x6f\x78\xd1\x21\x71\xc6\x68\xcc\x05\x53\xea\x38\xe1\x1b\x66\xfe\xe1\x1a\xd4\x37\xb8\x76\xe3\xaa\x3d\xed\xb9\x0b\x23\x7d\xb1\x03\xb6\x31\x99\x88\x28\x63\x54\xd9\x9c\x8b\xc6\xde\x8a\x1c\x31\x9e\x3d\xa4\x2c\xe3\xcc\xa0\xa0\x4a\xf3\x8c\xcb\x5c\x41\x09\xa0\x0c\xca\xf5\x83\xc1\x58\x8c\xcc\x2a\x89\xbd\x4e\x40\x69\x1b\x83\xc6\xb8\x22\xb9\x88\x8d\x9c\xc6\xe8\x66\x0b\xf1\x33\x63\x72\xce\x8a\x15\xb9\xca\x6a\x5a\x92\x25\xd3\x18\xcd\x8c\x7e\x15\x6c\x17\x6b\x27\x0b\x0d\x6d\xd7\x82\x0b\x03\xad\xe4\xef\x39\x8f\xee\x92\xad\x8f\xd3\xdf\xbd\xdc\xdb\x72\x07\x16\x28\xeb\xdf\x7c\x27\x97\xe7\x99\x4c\x53\xc3\xb2\xf6\xa4\xd1\x30\xcc\x7b\xb6\x96\xd9\x76\x9a\x49\x83\xe6\x53\xaa\x57\x8d\xa3\xb4\xac\xe5\x86\xaf\x21\xae\xee\x8c\x26\xd1\x0f\x19\x4d\x57\x3f\x52\xb1\x3c\x5d\xe8\xe0\x65\xeb\x3d\x5a\x81\x93\x8f\x1f\x0d\x60\xec\x5c\x0a\xb7\xf2\x47\xa9\xf4\x69\xd4\x90\x06\x56\xbb\x10\xcd\xef\xfa\xcc\x09\x02\x55\x0c\x95\x55\x0d\xa1\x37\x45\xd8\x8a\x79\x74\x29\x1d\x35\xa7\x65\x9c\x49\x19\xff\x2b\x4b\xf7\x28\xd7\x8a\x25\x0b\xf2\x9c\x2e\x1a\x1a\x82\x00\xc7\xb2\x63\xaf\xb8\x15\xac\x8b\xa1\x18\x7a\xa1\x90\xa4\xbe\x18\x93\xef\xb7\x45\xc7\x56\xa4\xb6\xa1\x21\xa1\x81\x9a\x0a\x87\x46\x96\xea\x76\x68\x99\x20\x42\x84\xf5\xed\x82\x01\xcf\x0e\xce\xaf\xaf\xa6\xb3\x03\xb0\x1f\x1a\x21\xdd\x32\xb0\x7b\x6a\x1d\xd4\x49\x22\xef\x89\x92\x6b\xa8\x5c\x42\x93\xa4\xcd\xbf\x07\x6b\xf3\x01\x67\x56\x73\x84\x94\x13\x0a\x79\xd0\x8c\xae\x99\xf5\xa5\x5e\x5f\xdc\x7e\xb8\xbe\x34\xa3\x9e\x9e\x9d\x5d\x4c\x6f\xc7\x86\xfe\x86\x46\xb5\x0f\x5a\x3a\x03\x7d\x78\xb7\x32\x87\x50\x93\x2a\x9b\xf4\x36\x35\xb9\x9c\x7e\xb8\x9d\x1d\x20\xe7\xfc\x43\x0b\x7b\x03\xbe\xe6\x24\x03\xed\x58\x7b\x5d\xf6\xa0\x1a\x47\xb2\xed\x9e\x67\x07\xb8\xa6\x70\x2f\x58\xe7\x8c\xb7\x27\x52\x5b\x0c\x91\x56\xae\x58\x51\x05\x5d\x47\xb0\x75\x5e\x9a\x49\xd7\x39\xa4\x4d\xa5\x0d\xa3\x12\x80\xce\x82\x11\x78\x9b\x28\x32\x66\x68\x92\x38\x2f\x9e\x5b\x58\xe3\xc9\x15\x06\x2e\x02\xf8\x1d\x5a\x53\xd3\x02\x42\x63\x96\xc4\xd4\x90\xc2\xfd\xa9\xe9\x86\x47\x68\x56\x98\x66\x52\xcb\x48\x76\xfa\x43\x40\xbf\xf4\x13\x36\x30\x3f\x2b\xb5\xaf\x13\x1a\x5b\xe7\xbb\x15\xc7\xd7\x2c\x6e\x31\xfb\xa1\x45\xe2\xc8\x08\x54\xee\x92\x02\x12\x3b\x49\xe8\xfa\x76\x7a\x7d\x75\xfb\xe9\xfb\xab\xab\x5b\xe4\x65\x09\x5b\x68\x32\x4f\xa8\xb8\xdb\xd7\x2e\xe0\xed\xf5\x66\x9f\xc6\xcb\xbe\x21\x0e\xea\x5d\x54\xbb\x0d\x3b\x5f\xb8\x14\xde\x8e\xc3\x2a\xa7\x99\xdf\xee\xb8\x42\x96\xf4\x4e\x23\x64\xcc\xeb\x73\x3b\x3d\x22\x09\xa3\x9b\x06\x05\xb9\x54\x08\xc0\xc0\xb2\x92\xd2\xb2\xee\xda\x88\x46\x2e\xd9\x57\xa2\x6a\x80\xd8\x64\xba\x09\xe5\x5e\xb7\x41\xed\xcd\x6f\x08\x6a\x28\x9c\x14\x5e\xaa\x89\x80\x3a\xea\x4d\x21\xf0\xad\x62\x8a\x23\x04\xd7\xae\xb4\xd6\x39\x4b\x82\xb9\xd3\x6d\x0b\xda\x19\xa4\x59\x77\x6f\x5f\x8c\x15\xfe\x2f\x65\xcc\xa0\x4f\x4d\x17\x0e\x5c\xf8\x2f\x9c\x4d\xce\xaf\xcd\x4b\x68\xbc\x4a\xcc\xbf\xe4\x82\x98\x6f\x0f\xc1\x02\xe2\x46\x1f\x19\xb1\xd1\xaa\xe3\xd0\xd2\x26\xec\x49\x35\x0a\xfe\x9a\x6e\xdd\x79\x59\x7b\xa1\xe3\xdf\x10\x61\x65\x78\x18\x30\x98\x22\x40\xc7\xfe\x1a\x36\x8b\xb9\x9c\x49\x02\x1e\x99\xa2\x6b\x42\xc8\x26\xfe\x05\x1a\x3d\x2c\x28\x4f\x8c\xb6\x3c\x11\x73\x99\x8b\xd8\x48\x5c\x4d\x06\xcc\xaa\xb0\xf6\xb6\xe1\xc5\x2a\x9c\x3f\x9c\x4f\x8f\x6f\xcf\xa6\x18\x4c\xd5\x64\xc6\x35\x87\x61\x03\x58\xbd\x98\x0d\x14\x4e\x42\xb1\xc8\x20\x06\x15\xc2\x51\x50\x0b\x10\x84\x67\x19\x53\xa9\x6d\xbe\xe1\x52\x99\x59\x94\x67\x5c\x6f\x0b\xce\xea\xa8\x45\xae\xd8\x22\x87\x2b\x49\x37\x92\x87\xed\xcd\x51\x04\x2d\x2e\x80\xe7\x46\x39\x44\x41\x12\xb9\x58\x58\x5f\x11\xca\x63\x66\xb5\x59\xc6\x22\x5d\x4b\x78\x22\x6f\xc3\x89\xc3\x73\x1a\xdd\x8d\x2a\x5d\x6f\x8f\x5c\xfa\x71\xc1\xd8\x5c\x9b\x7f\xdb\x87\x3f\x3e\x32\xf2\x85\x25\x46\x4d\xad\xcf\x66\x07\x3a\x4a\x67\x07\x20\xf0\x51\x80\x6f\x78\x18\x0f\xd0\xbe\x08\x1a\xdc\x3f\xe6\xf9\x18\xea\x64\x08\xe2\x6d\x19\xa0\x8c\xc1\xa8\x80\x05\x08\x0a\x38\xec\xa3\xc2\x16\xda\xa8\x5c\x0a\x29\x20\x02\xb2\x30\xd5\x58\xb5\xcf\x46\x42\x2a\xb5\x72\x31\xca\x06\x4b\xce\x7f\x3c\x9b\x56\x22\x88\xa3\xf4\xe4\xf5\xeb\x60\xe2\x47\x1e\xa7\x27\x6f\xbe\x3d\x82\x47\x5e\xfd\xfe\x3b\xfc\xc7\xeb\xaf\xca\x7f\x7d\xfb\x12\xff\xf5\xe6\xeb\xaf\xbf\xb2\xff\x7a\xf3\xe6\x4d\xf1\xaf\xdf\x87\xe4\x99\xe6\xcb\x57\x2d\x08\x69\xce\x6d\x2a\xd1\x16\x15\xc9\xf5\xdc\xab\x67\xe1\xce\xf4\x88\xa0\xa7\xc7\x21\x7f\x43\x92\xf8\xb4\x90\x6d\x44\x8c\xf6\x76\xe7\xf6\x2c\x4e\x31\xf8\x66\x67\x51\x04\xc1\xc2\x31\x47\xa4\x57\x4e\xba\x59\x49\xc7\xeb\x2d\x55\x7e\x49\x01\x85\x47\x2f\xa1\xa5\x2c\x1e\x21\x23\x58\x5f\xc3\x2f\x76\xe6\x66\x0a\xda\x5e\xb3\xbb\x95\x82\x5e\xe5\xfa\x91\x24\x74\xe7\xcd\x27\xa6\xa1\x32\xd7\x4b\xe9\xd3\x50\x50\x08\xba\xa9\xa8\x96\x03\x15\xfd\x45\xa9\xa8\xb4\x88\xf0\x34\x64\x54\x82\x89\x84\xe9\x28\x3e\x3c\x84\x32\xb4\x22\xa6\x59\x6c\xe3\x9a\xb5\xb4\x99\x23\x8d\x2d\xd5\x11\x8d\x62\xc9\x70\xcb\x4b\xa6\xcd\x81\xc1\x61\xa1\x29\x40\x47\x71\x25\xc7\xc8\x00\xc0\x1c\xa7\x21\xd4\x4d\xbe\xba\xf3\xcb\x9b\x3a\x0d\xdf\x87\x40\x07\x0f\xca\xd2\xec\x23\x20\xfb\xdf\x7c\x85\xff\x1f\x68\xf8\x40\xc3\x83\xbf\x86\x69\x38\xa3\x3a\xcf\xd8\x39\xd3\x2c\xd2\x57\x1b\x96\x65\xbc\xdb\x81\xf6\x36\xf4\x52\xd1\xbb\x56\x4b\x70\xc7\x66\xce\x1d\x6d\xa7\x08\xe3\x9e\x76\x21\x7c\x3f\x95\xc9\x34\x05\x7e\x10\x2e\x08\x45\xf7\x20\x51\x2c\xa5\x19\x64\x53\x03\x77\x00\x72\x29\x82\x96\x45\x95\xd2\x88\xa9\x23\x70\x43\xa6\x09\xfb\x03\x99\x1d\xdc\x5c\x9e\xde\xbe\xcd\x93\x64\x7b\x0d\x8e\xff\x3f\x82\x27\xf4\xfd\xe9\xcd\x7f\xfb\x5f\x82\x0b\xe4\xe8\x9a\x41\x11\x96\x9b\x3c\x05\x72\xf1\x4e\x46\x77\x7f\x9c\x1d\x04\x31\x75\x76\x00\x5e\x5b\x9b\xc8\x8c\xc5\x44\x0e\x90\x26\x62\xea\x92\xb7\xfb\x23\xc2\xd6\xa9\x06\x8f\x81\xb4\xe1\xa2\xcd\xa1\xb9\x06\x08\x34\xd7\x72\x84\xf0\xd9\x5b\x21\x5e\x24\x12\x5c\xdf\x93\x69\x27\x2b\x7e\x5b\x3e\x5a\x16\x22\x2e\x1d\xa1\x18\x11\x5f\x0b\x28\x5f\x66\x34\x48\xe2\xdd\xb4\x5e\x89\xeb\xa0\x32\xd7\x98\xad\x6d\xd5\xe4\xd0\x4f\xe7\x8d\x99\x83\x6d\x80\x58\x32\xc1\x32\x1e\xfd\xf9\x7c\xda\x37\x12\xff\x87\xfa\x1b\x36\xa4\x5d\x11\xfb\x0b\xf9\xf3\xf9\x94\x28\xe9\x82\x1b\x49\x44\xb3\x70\x2a\x3f\x48\x24\xb1\x14\x87\x87\x9a\x28\xc4\x26\x78\x57\x2e\x16\x60\x72\x94\x99\x75\x49\x81\xc7\x14\x72\x13\x81\xe3\xfd\xf9\x7c\x8a\x82\x45\x83\xff\x08\x22\xe9\x99\xb9\x14\x4c\xc4\x2c\x2e\x3d\xba\x86\x61\xc1\x6c\x69\x26\x37\xe6\xf2\xcd\x99\x06\x7b\x67\x99\x2e\xdd\xb0\x4e\x51\xd8\x98\xc7\x9f\x9d\xf2\xb7\x62\x34\xd1\xab\x47\x1a\x3c\xf0\x65\x23\x0d\xee\x69\x71\xc1\x17\xa7\x61\xda\xde\x4a\xd5\x8b\xf4\xbf\x8b\x87\x28\xc9\x7b\x04\x0f\x4c\x6a\x2f\xa0\xc8\x0a\x44\x6a\x54\x23\x52\xd0\xbf\xb2\x33\xf7\xb8\x92\x72\xcd\xec\xa0\x60\x7a\xb5\x3d\x38\xcd\x95\x5a\xc8\xac\x26\xb7\x8e\x9b\x62\xce\xaa\xb2\x50\x25\x4b\xd6\x96\x01\x58\x0a\x69\xbe\x2a\x33\x3f\x0e\x0f\xc9\x64\xfa\xd3\x0d\x89\xf3\xf5\x3a\x18\x14\x55\x6c\xc3\x85\x7a\x38\x62\xef\x3c\xad\xc9\x96\xcc\xb7\x95\x64\x85\xaa\xc7\x25\x68\xf5\xb7\x7b\x5d\xe7\x89\xe6\x69\xe2\x65\x7f\x63\x05\x29\x92\x2b\x0c\x7b\x30\xff\x73\xf9\x96\x98\x35\x95\xf0\xdd\xda\x41\x04\x6a\xd7\xa4\xb6\xba\xf3\x4e\x32\xbc\x02\x29\x3a\xf4\x03\xac\x13\x84\x93\xfb\x8c\xa6\x4d\xc6\x4b\x04\x27\xf0\x9d\xc3\xc3\xe3\xc3\x43\x1c\xce\x32\x19\xb2\x02\xc3\xa7\x4b\xcd\x38\x3c\x3c\xfe\x1f\x03\x8b\xe3\xa3\x0d\xd3\xab\x57\x87\x81\x4b\x64\x0b\x88\x38\x18\xd4\xf2\x5a\xe1\xb4\xe6\x6c\xc9\x85\x9b\xd1\x0c\x77\x78\x68\xbb\xac\x2a\xd9\x14\xde\x50\x82\xf0\xf0\xd0\xce\xed\xdf\x69\x38\x20\x9e\x6e\x54\x4b\x1e\x63\xf8\x86\x15\x03\x4f\x33\xb6\xe0\x0f\xfd\xaf\x09\x3e\xef\x2c\xd3\xd5\x23\x86\x08\xb6\xa2\x1b\x7d\xd1\x47\x35\x08\xad\x5d\xdf\x20\xe4\xe3\x83\x1e\x61\xb8\x4e\xce\xd5\x0a\x1d\x24\xeb\x80\x9a\xd7\x0a\x2b\x35\x26\x97\x52\x03\x8d\x20\x4c\x6c\x78\x26\xc5\x1a\x9c\xf9\xd2\x56\xeb\xa7\x82\xcc\x0d\x53\x5e\x33\x4d\x13\xc4\x40\x99\x45\x2b\xa6\x74\x46\xb5\x0c\xb7\x99\x28\xb8\x29\xfa\x57\x68\x6a\x04\xdb\x8c\x53\xcd\x92\x6d\x15\x77\x64\x9e\xf9\x59\x58\x60\xf2\x91\xd1\x5d\x58\x02\x05\x32\x66\x8b\x9f\x59\x17\xa4\x39\xeb\x88\x26\xfc\xf0\xd0\x2f\x9b\x65\x46\xbd\x4a\x99\xb8\xd1\x34\xba\xf3\x5f\x0b\xde\x1b\x17\x2d\x79\x78\xa8\x69\xea\x06\xf2\x31\xc7\x4c\xf0\x68\x9c\xb9\xc6\x9e\xaf\x80\x13\x1b\xda\xe9\xf1\x9a\x34\xbc\xd7\xd4\xae\xb6\x31\xdc\x22\x63\x2a\xa2\x42\x61\x36\x72\xe5\x7e\x49\xb2\x61\x19\x5f\x6c\x6d\x7e\x3f\x76\x87\x00\x55\x12\xdf\xb1\xb1\x6c\x41\xfa\xea\x72\xbd\xe7\x5b\x97\x14\x5e\xa2\xb6\x59\xa5\x96\xe4\xe5\x9e\x12\x1b\x4f\x79\xef\x64\xc1\xc9\x74\x52\x08\x27\x4e\xd0\xae\x87\xae\x95\x65\xd8\x10\x07\xc3\xc6\x13\xac\xe3\x54\x5e\x49\x59\xa6\x4c\x8f\xc9\x55\x8a\x8e\x56\xa3\xe1\x5a\x8d\x98\x69\x96\xad\xad\x1b\x32\x2c\x9f\xcc\xa9\x61\x0a\x76\x1c\xf6\x80\x37\xd3\xc8\x83\xa9\x94\x49\x45\xba\x10\x3c\x21\xcf\x73\xa1\x98\x7e\xb1\xb7\x8c\x61\xa0\xf5\xfe\xf6\x43\x2f\x48\xbd\xbf\xfd\xe0\xd0\xc6\xfc\x13\xb2\x9d\xb5\x5b\xa1\x75\x62\xa0\xcb\x6b\x4c\x6e\x58\x38\x64\xcc\x42\xd1\x6c\xc5\x8c\xe1\xe5\xc1\x7d\xfd\xf5\xfe\x09\xe1\x98\xd0\xb3\xe7\x95\x38\x9c\x84\xde\x6a\xbd\x10\x24\x63\x58\xc9\x29\xac\x63\x24\x5e\xbc\x22\xa6\x97\x54\x2d\x23\x44\x48\x4b\xff\xac\xc3\x1c\x5c\xfb\xbe\x19\x2b\x88\x00\x99\xbc\x2b\x7a\x4d\x14\x41\x85\xe1\xd6\xd0\xc5\xf4\xae\x25\x74\x7b\x5e\xe8\x23\x62\x97\xdc\x0c\x3d\xb3\x49\x26\xd5\xc7\x0b\x45\x54\x59\xb0\xce\xed\xf7\x46\xae\x73\x6b\x37\x5c\x3c\x08\x08\x86\xae\xcc\x8a\x79\x0a\xdc\xa5\x4b\x1a\x8c\x2c\xe8\xb3\x8f\xb7\x3c\xd1\x2c\x83\x12\x66\x8d\x91\x45\x7d\xc6\x31\x5a\xed\xdb\xe6\x10\xac\x3a\xe6\xed\xbe\xe4\x10\xcf\x10\x56\xbf\x66\xb5\x9b\x20\x04\x91\x44\x46\x77\x10\xdf\x38\x26\x7f\x31\x02\x17\xdd\x42\x05\x20\x74\x07\x43\x14\x37\x30\x4a\x6b\xbf\x2c\x9e\x76\x3a\x4f\xb8\x0d\x09\xd7\x9e\x81\xaf\x58\xcd\xf3\x85\xc7\x5e\xfd\x08\x9b\x35\x4d\x53\x86\x15\xa5\x84\x96\x45\xc4\x60\x03\xff\xd6\x94\x0b\x96\x99\x6b\x45\x49\xcc\x17\x0b\x96\x31\xa1\x49\x4a\xf5\xea\x85\x4f\xca\x8e\xb3\x5c\x1c\x3f\x58\x05\xca\xac\xfb\xb1\x68\x6a\x20\x3c\xcd\xe4\x9c\xed\x41\x15\x1a\xde\x2c\x12\x99\xf8\x9a\xd5\x8d\xe3\x41\xf1\x8a\x72\x5d\x64\x2d\x53\xad\xd9\x3a\x45\x5b\x29\x8d\xc0\x5c\x55\x8d\x44\x82\xc3\xe1\x0b\x5b\x2f\x4b\xc8\xa0\x78\x45\x37\x94\x43\x4b\x97\x71\x35\x6f\x79\x4d\xef\x5c\xda\x31\x84\x29\xda\x12\x0b\x7c\x63\xb5\x1e\x77\xfa\x0d\xfa\x6f\x84\xd9\x47\x2c\x3e\x82\x22\x0d\x46\x65\x86\x61\xce\xa6\x1f\xfc\x43\xf9\xe6\xe5\xfa\xd1\xe4\xc2\x40\xb3\x6f\x2c\xeb\x64\xf7\x9d\x36\xd8\x03\xa0\x83\xc6\x13\x9b\x55\x54\x81\x31\xa4\x22\xbf\x3c\xf2\x88\x26\x58\xce\x73\x17\xbd\x5a\x18\x97\x1a\x25\x20\x50\x6b\xd4\x8a\x06\x4f\x10\xae\x17\x86\xd3\x25\x49\x95\xd8\x5b\x1d\x24\xcc\x39\x8c\xfa\x61\x0e\xd1\x9d\xd4\x98\x7c\x34\x07\x67\xf3\xfb\xcb\x62\x73\xdc\x28\x36\xe5\x45\x3a\x6a\x4e\xe2\x70\x55\x2b\xcc\x88\xe6\x3a\xd9\x5a\x1a\x32\xdb\x3a\xca\xe2\x15\x92\x5b\xcb\xdc\x36\x26\xb2\xb1\x68\x18\x3c\x70\x2c\x64\xb8\x14\x97\xcc\xdc\x13\x0b\x57\x92\x13\x17\x54\x29\xec\xa2\x0a\xc1\xee\xb1\x68\xf3\x9e\x1a\x35\xf5\xf3\xa9\xf3\x7b\x9a\xdd\xbd\xa7\xaa\x3b\x43\x7b\x52\x7b\xc1\x21\xde\xda\xfc\xdb\xb7\x2d\x40\x92\xad\x32\xc4\x32\x04\x9f\xc9\xf4\x16\x91\xc2\x8c\x43\xe6\x86\xa4\x42\xe5\x72\x57\xdc\x61\xce\xa0\x4c\x90\xf9\x85\xac\xd8\x03\x8d\x59\xc4\xd7\x65\x7a\x64\x53\x0d\x26\xaa\x49\xc2\xa8\xd2\xe4\x5b\x1c\x53\x31\x7d\x04\x2e\x1b\xac\xc2\x04\x09\x23\x09\x55\x2b\x17\xd0\xb9\xb5\x18\xb8\x76\xab\x08\xab\x3f\x2e\x8a\x09\x1c\x72\x90\xda\x53\x39\xc6\x87\xc5\xe2\x25\x7c\x42\xa7\xe8\xfa\x50\x71\xa1\xbf\x7a\xbd\xb7\xd8\x86\xc0\xbe\x3c\xbd\xbd\xb2\x6e\xc5\x42\x4f\x41\xbe\xfc\xc8\xe3\x9e\x4a\xa5\x3f\x66\x5c\x33\x08\x58\xda\x9b\xf4\x87\x5f\xaf\x4b\x86\x10\xf9\xd8\x48\x25\x8c\x64\x17\x9b\x93\xa1\xe4\xde\x0c\xb5\x5b\xaf\x02\x35\x74\x0d\x55\x9c\x63\x0c\x26\x85\xca\x4f\x19\x85\x68\xfd\x26\xe7\xa4\x5f\x2b\x10\x8b\x29\x61\xd9\x3b\x98\xe4\x9e\x22\x67\x8f\x12\x39\x9f\xb3\x0c\x35\x2a\x2a\x2a\x74\xa8\x39\x53\x57\x79\x95\x47\x64\x14\xe5\x99\x61\x48\xee\x6d\x9a\xa6\x09\x77\xa2\x89\x8f\x2b\x85\x95\xb4\x41\x5d\x4c\x59\xa4\x77\x29\xe5\xf8\xb3\x6a\x5f\xb8\xa1\xf6\x17\xf9\x83\xef\x3d\x42\x0b\xb6\x7a\x80\x2b\x1f\x04\xda\xbe\x8d\x2e\xf6\x8e\xb8\x5d\xfc\x6f\xc2\x9b\x8a\x63\x7b\x1f\xf1\xbf\xa5\x8e\x41\xa1\x10\xa0\x59\x46\x7b\x22\x34\xf2\x49\x97\xb9\x01\x12\x35\x08\x17\x60\xa4\x69\x30\x8a\xd9\xdc\x23\x1c\xb4\xd0\xd3\x15\xf8\x6e\xc1\xb0\x44\x33\x70\x3e\x9b\xb1\xa9\xcd\x7b\xb4\xb1\x8a\xf3\x7c\xd9\xc8\x08\x0d\xfe\x2e\xf8\x03\xfa\xa9\xec\xf3\xb6\x98\x3a\xf9\x7a\xfc\xea\x55\x61\x03\x35\xdc\x17\x6d\x99\x1b\xf3\x3d\xd4\x99\xcb\x18\x6d\x08\xb6\xdf\x5a\xe1\xd8\xc5\xaa\x17\x71\xe6\x5a\x1e\x11\x4a\x56\x5e\x61\x17\x4c\x0d\xa9\xd6\x71\x09\x0d\x09\xa5\x5d\x2a\x48\xfc\x18\x5d\x6a\xf3\xc6\x7a\xc5\x3a\xf5\xa8\x69\xf1\x68\x53\x6e\x9d\xf3\xaa\x38\xcf\x48\x43\x7f\x09\x08\x64\x7d\xce\x17\xee\x39\xa4\x11\x68\x6d\x19\x41\xad\x0e\x87\xbe\xcd\x59\xcb\x0d\x46\x84\xbb\x7c\xce\xa0\x8f\xac\xcc\xf4\x35\xa4\xc9\x76\x5e\xc8\x3f\xed\xbc\x62\xfb\xd1\x3b\x6b\x3f\x6c\xc5\xcf\xb9\x6d\xd8\x96\x4d\x63\x27\x65\xb9\xb5\x71\x35\x67\x6b\x51\x18\x5c\x0c\xdf\xf6\x4a\x29\x59\x19\xab\x81\x35\xf2\x74\xa3\x6c\x79\x1b\x04\x73\x8e\x82\x1c\x53\xcc\x2d\x0b\x10\x0a\xbd\x14\x65\x6d\xbc\xb6\xd8\x7c\x1b\xd8\xe1\x63\xcf\x57\x90\x05\xfb\xd5\xeb\xdf\xbf\xf9\x7d\xb0\x12\x4d\x73\xb0\x41\x53\x2a\x78\x8f\x64\xf0\xee\x74\xf0\xae\xfc\xdb\xfd\x33\x70\x5b\x5d\xe7\x89\x5c\x42\x8e\xed\x5b\x9b\xb2\x77\xcd\x96\xac\xd3\x2e\xfe\x2e\xf4\x92\x7f\x49\x0c\x25\xb7\x21\xb6\x91\xc1\x0e\x23\xa3\x37\xd0\x5e\x8c\xb6\xe5\x19\x81\x11\xa1\x3a\x92\xcc\x75\x6a\x14\x10\x01\x5e\x85\xd8\x11\xf9\x44\x2e\x1d\x86\x41\xd5\xa2\xa6\x20\x1d\x98\xcc\xfa\xd6\xc1\x03\x03\x9c\xa0\x2c\x57\xbb\xe4\x1b\x26\x42\x85\x86\x8b\x84\xe9\x98\xc5\xcd\xd5\x10\x16\x20\x26\x21\xcb\x06\x0e\x8d\xf8\x68\x97\x0f\x29\xb4\xb0\xd2\xfd\x08\x53\x22\x97\xbd\x6d\x19\xef\xca\x67\x1d\x1b\x5d\xe4\x49\x02\x3a\xbd\x13\x7a\xf0\xe6\x24\x72\xe9\xd8\x56\x68\x2b\x20\xc7\x7a\xcc\x0c\x54\xa9\x44\x42\xc9\xe8\x8a\x6d\x60\x43\xb3\xe3\x44\x2e\x8f\x7d\x0d\x64\x9c\xc8\x60\x19\xf3\x8e\x5d\xf6\xf4\xbc\xbc\x73\x4f\x96\x46\x9a\x65\xc5\xd1\xe2\x91\x06\x50\xb8\x33\xa3\x4e\x37\x5d\xa9\x77\x57\x3f\x38\x26\x5e\x75\x06\x44\x72\x84\x99\x37\x8f\xd8\xc9\x0d\xdb\xb0\x8c\xeb\xad\x39\x8b\x3e\xfb\xf1\x9f\xf7\x77\xa5\xec\xf7\x84\xce\x25\x98\x0f\xcc\xed\x31\x28\x14\xa4\x3d\x19\xc3\x3a\x8d\xae\x03\x89\x5c\x5a\x73\x54\xb9\xb1\x89\x58\xc8\xcf\xd8\xcf\x4d\x94\x31\xd6\x9d\xee\xf7\xae\xfe\xc6\x93\xed\x49\xe9\x58\xe6\xfa\x29\x77\xb4\xed\x66\x8b\xef\x2a\x8f\x3f\xdd\x5e\xb6\xca\xbb\x84\xe4\x52\xda\xb2\x79\x42\xba\x8b\x06\xcc\xcc\x3e\xd5\x6a\x3a\x7e\x0c\x10\xd6\xf4\x01\x6c\xee\x37\xfc\x1f\x21\x1c\x6d\xe5\x56\xae\xf7\xc8\x69\x1c\x77\x66\x80\x1f\xbe\xf7\x1e\x2e\x13\x78\xca\xce\x69\x19\x89\xe5\x9a\x72\x41\xbc\xbc\xf0\x26\xa1\xc2\xf5\x56\x8b\xa8\x20\x54\x28\x23\x18\xff\xf4\x9e\xfc\x3d\x67\x50\x20\xc6\x40\x2f\x4a\x64\x1e\x8f\xb8\xe0\xba\x58\x25\xb4\x72\x29\x5c\x85\xe1\x50\xc3\x15\x58\xde\x32\xb4\xd5\xc5\x45\x16\xe0\x9a\x46\x2b\x2e\x58\x61\xfa\x11\x72\x43\x47\x34\xe5\xe4\x39\x16\x09\xfb\x30\xcf\x85\xce\x83\x43\xba\x47\x47\x6e\x19\x2f\xc6\xe4\xd4\x05\x70\x2e\x90\xc0\x3e\x8f\xa8\x62\x90\xc7\x28\x14\xd7\x7c\xc3\x5e\x90\x35\xa3\xa2\xd9\x36\x55\xf1\x7e\x41\xbc\x2a\xd3\x24\x4f\xc1\xba\x70\x79\x7a\x8b\x05\x14\x9c\xa9\xcd\x4d\x0c\xd4\xbf\x03\x83\x5e\xbd\xfe\xfd\xf8\xe5\xf8\xe5\xf8\xd5\xde\x68\x64\x27\x69\x88\x4d\x09\xa3\x82\x8b\xc0\x04\x35\xcf\xfc\xdb\x1a\xc1\x8a\x15\xe3\x59\x63\x9c\x50\x43\x07\x88\xf5\x1c\xea\xad\x00\x33\xc7\xaa\xd6\xe3\x0a\xa6\x19\xa9\xda\x40\xe8\xf0\xd0\xdc\xac\xc3\xc3\x17\x47\x5e\x04\x5f\x83\x66\x06\xa0\x2c\x00\x79\x84\x7e\xf6\x57\x6f\xbe\x1b\xbf\xfe\xe6\xeb\xb1\xfd\xff\xc9\xb7\xa0\xe5\xf9\x73\x9d\xf8\xfb\x0a\x6a\xf4\x13\x01\x75\x64\xa0\x30\x9b\xed\x08\xe8\x1d\xa2\x73\x13\xcc\x99\xf5\x14\xc4\x1e\x81\xfb\xf6\xf7\xbf\xff\xa6\xa5\x1e\x62\xd3\x0d\xd5\xf9\x3e\x4d\x17\xde\xdf\x7e\xf8\x25\x1a\x2e\x80\xe7\xb9\x62\x32\xa1\x49\x04\xe9\xe9\x85\x0d\x34\xec\xac\x78\x7f\xfb\xa1\x5a\x88\xa8\x6c\x33\xd0\xd6\x62\xe0\xf3\xfa\x09\x08\xaa\x9d\x25\xac\x67\x66\xa7\x67\x3b\xb3\x6f\x78\x3e\x36\x43\xb2\xaa\xb9\x8a\x20\x9d\xd8\xf0\xb5\xa6\x6a\x45\x28\x2a\x1b\x94\x84\x6b\xed\x4a\x39\x0b\x42\xfd\xf5\x81\xff\xb9\x28\x66\x6e\xd3\x14\x9b\x08\x69\x51\x17\xb9\x96\xfb\xe8\xa7\x28\x02\x06\x94\x0b\xb6\x36\xa6\x02\xc4\x61\x1a\x5a\xa9\x62\xed\x16\x21\x05\x79\xce\x21\x80\xcf\x29\x6b\xa5\xed\xe9\xfd\xe9\xcd\x7f\x7f\xb8\xb8\x3e\x3d\xbf\x20\x9a\x66\x4b\xa6\x03\x55\xb8\x3b\x4e\xa8\xd0\x55\xff\x6d\x85\xb9\x6c\x49\x2e\x58\x84\x77\xdc\x65\x6d\x2e\xab\x38\xab\xe2\x7c\x0c\x80\x9b\x7c\x24\x18\x49\x4e\xa1\x06\x05\x22\x48\x0c\x07\x5c\xa4\x7a\x5c\x9e\xde\x5a\x7f\x04\x44\x17\xf8\xc6\xa3\xb0\x9f\x76\x45\x37\x5c\x66\x45\x89\x3e\x1b\xd7\xa9\x30\x6c\xa6\x31\x21\xf5\x69\x4b\x3d\x09\xa6\x13\x2e\x5a\x9c\x4e\x6d\xf0\x86\x74\x07\xb3\xdc\x6b\xb6\xec\x53\x6d\xe2\xaa\xfa\xbc\x63\x34\x7e\xd9\x99\x0c\x7f\x81\x03\x31\xfc\x31\xd3\xdc\xd0\xa1\xa0\x5a\x8e\x14\x6c\xce\x12\x29\x96\xd8\x2c\x6e\x62\x6e\x1f\x44\xf5\x8d\xec\x40\x68\x10\x3c\x2e\xe3\x91\x62\x96\x26\x72\xbb\x66\x42\x37\xcb\x1b\x2e\x5f\xa0\x88\x62\x89\xa1\x62\xc3\x4a\xde\x97\xf5\x2d\x71\xf2\xe7\x58\xa4\xad\xb4\x68\xae\x65\xcc\x92\xe0\xc8\x28\x97\xa0\x1a\x16\x2d\xa0\x59\x29\x16\xb3\x28\xc2\xbe\xcc\x8d\x84\xb1\x23\xb9\x4e\x73\x5b\xbe\xfd\x85\xed\x45\x98\x87\xe3\x0e\x4b\x15\xf9\xaf\xa8\x1b\xfd\xad\x3c\x95\x4f\x16\x06\x28\xda\x78\x9b\x81\x12\xa9\xb9\xce\xa4\x18\x9b\x6f\x83\xab\xb5\x4b\xc1\x0a\xf2\x25\xd3\xbb\x58\xa7\x7a\xbb\xaf\x28\x82\x59\x4b\x50\xe0\x9a\xea\x55\x4f\x6d\x72\x1a\x78\xc9\x0f\xf5\x9f\x6f\xed\x19\x40\xb1\x41\xe8\xf2\x17\xd1\x70\x41\x7b\x5b\x73\x09\x59\x38\x26\xe2\xb8\xea\x46\xae\x1c\xe6\x11\x49\xf8\x1d\x23\xa7\x9e\xf9\x3e\xa1\x5b\x96\xf5\x2b\xc8\xf0\x38\xa8\x64\x72\xcd\xf4\x8a\xe5\xea\x07\xf9\x9e\xe9\x8c\x47\x7d\x8b\xd6\x1f\x4e\x1b\x5f\x75\x76\x01\x45\x7e\x90\x46\x38\x06\x57\xf0\x1a\x1f\x09\x8b\x6b\x49\x82\x99\x10\x2e\xc0\xd6\xe0\x52\x39\xbe\xeb\xad\x01\x49\x49\x65\xe9\x86\x23\xa4\x80\x8a\x05\x91\xb2\x28\xeb\x84\x92\x01\x1a\x8a\x55\xad\x10\xa9\x5d\x94\xad\x30\xc4\xe2\x23\x7c\xae\x81\xdd\x7a\x2b\xc2\xda\x45\x9f\xd9\xd7\xa6\x04\xfe\xa3\x41\x5f\x03\xbc\x33\x2c\xd7\xe0\xd7\x02\x7b\xab\x37\x71\xe1\x1c\xd7\x45\xc3\x0a\xb3\xa5\xcf\x8f\x88\xdf\xd9\x63\x43\x7c\x7b\xc7\x06\x7f\x94\xaa\xd0\x09\xd0\x19\xee\x4a\xab\x95\x8f\x06\x49\x93\x3d\x60\xbb\x4d\x57\xa8\x92\x8b\x18\x68\x75\xb9\x3b\xf6\x79\xb7\xc7\x2e\xb3\x97\x9e\xb3\xb3\x39\x5f\xe1\x71\x19\x9f\x4f\xbe\xc1\xef\x5e\x7e\xd7\xa2\xbe\x35\x08\x3b\xe5\x06\xa7\xe8\x07\x7b\x34\xa2\x06\xdf\x2f\x09\x85\x8b\xb2\x1b\xa8\x44\xcb\x0d\xfa\xc8\x33\xf6\x43\x4e\xb3\xf8\xd1\xa7\xd0\x30\x42\x79\x0e\xf7\xdc\xe8\x75\x34\x0b\x17\x40\xb6\x70\x78\xec\x49\x84\x55\x42\x3c\x9c\x47\x9e\x44\x68\x48\x77\x38\x4f\x7e\x12\x19\x5b\xcb\x0d\x73\x65\x46\xa0\x50\x4d\xa7\xd2\xf7\xb1\x9a\x4b\x66\xbb\x04\x6d\x58\xb5\xd2\x8c\xeb\xc3\xb7\x61\x4d\xf1\x64\x73\xc6\xfc\xda\x35\x85\xe4\x31\xb6\xc9\x61\xa8\xd1\xb9\x52\x46\x98\x95\x5c\x08\x18\x5e\x40\x40\x53\xd2\x33\xc4\x35\xd1\x38\xae\x57\xc0\x71\x49\xde\xae\xb7\x89\x57\x39\xc9\x56\x45\x61\x34\x3c\xe8\x3d\xc3\xb5\xd8\xfd\xba\xc5\x24\x5b\x5b\xb3\xc9\xce\xb0\xf7\x19\xd8\xaa\x32\xbd\x03\x09\xae\xeb\x6f\x54\xb2\x31\xcc\xdf\x3b\x91\xc3\x8d\x29\xf7\x36\xe0\x52\xe7\xaa\x8c\xbf\x32\x12\x37\x64\x4d\x42\xb8\x5a\x25\x5a\xed\xbd\x95\xe1\x85\x14\xa3\x7f\xb0\x2c\x68\x58\xe2\x9e\xf5\xd1\x53\x0c\x54\xd5\xe5\xb8\xb7\xc3\xba\x80\xd3\xed\xed\xbb\xfe\x20\xba\xbd\x7d\xe7\xc7\xef\x8d\xb4\xc4\xf2\x8e\x2e\xd2\x1f\x74\x50\x24\xd5\xa3\xfb\x86\xde\x8f\x16\x3e\x16\x8a\x9f\x59\x7f\x11\x90\x64\xdf\xd0\x91\xeb\xc0\x4b\x9f\x11\x2c\xee\x95\x3b\xdf\x37\x6c\x84\xac\x68\xd8\xda\xff\xd8\xb0\x11\xac\x7e\xe6\x22\x44\xda\x15\x82\xc7\x82\x1b\x8b\x6f\xf5\x83\xf2\x8d\x73\xd6\xfa\xc9\xb3\x99\x73\x23\x2e\x19\xc6\xdd\xb9\xbe\x73\x61\xfc\x2f\xea\x2c\x8f\xc9\x88\xb8\x66\xd4\x93\xa9\x3a\x41\x33\x58\xb0\x2c\x62\x24\x85\xd2\x59\x1e\xca\xf7\x26\x05\xed\x1a\x59\x98\x4e\xa6\xa7\xef\xab\x71\x34\x23\x18\xda\x7c\x0f\x67\x59\x19\xd1\xbd\xfe\x28\xd0\x6d\x45\xe4\x92\x75\xbb\x00\x78\x5d\x7f\x01\xc9\x65\xa5\x30\x04\x96\xf1\x96\x42\x39\x43\x60\xd8\x34\x64\x0d\x70\x88\x1c\x1a\x69\xcf\x4d\x29\xc5\x03\xd7\xc9\x85\xd7\x95\x64\x64\xb5\xd1\xb5\x8c\xb1\x1d\xf0\xde\x64\xd8\x4c\x05\x81\x93\x4d\xe6\xb5\x6a\xa1\x5f\x96\x66\x2c\xa2\x18\xb7\x4a\x16\x74\x83\x26\xa7\xeb\xea\x28\x6a\x5c\x14\x28\x6e\x69\x6b\x44\x63\x57\x05\xd1\x06\x2b\x79\xdb\x46\x2f\xcf\x86\x62\xa9\xda\xb2\x79\x71\x6d\xa2\x20\xd9\xaa\xd8\xe6\xb8\x88\xb1\x29\xda\xa2\x0e\x59\x55\x69\xc4\x6b\xe5\xed\x3c\x58\x3e\xb8\xa3\x98\xc3\x9a\x86\x0c\x10\xa4\x4f\x25\x86\x35\x0f\x19\xba\x7a\xbc\xda\x52\x7f\x61\x64\x16\x14\xfc\x3a\x94\x7c\xd0\x56\x73\xa1\x86\x1c\x9d\x32\x52\xed\xd0\xfb\x9f\x70\xd0\xce\xd2\x74\xe8\x15\x6b\x3b\xe6\x41\x2d\x70\x4c\x73\xda\xec\xc1\xc6\x08\x85\x39\x40\xf0\xc4\x4b\xb4\x56\x96\x1c\x96\xb3\x1d\x1e\x79\xe9\x69\x3b\x3f\xee\x55\xe4\xad\xb3\x26\x48\x33\x22\xf5\x2a\xea\xd1\x8c\x4c\x3d\x5e\xef\x28\xe8\x11\x44\xa9\x46\xa4\xfa\x8c\x52\x1e\xd6\x86\xf6\x4e\xca\x74\x8a\xc5\xdd\xfb\x18\x83\x3f\xa2\xf6\x81\xf1\x68\xe0\x76\xde\x18\x48\x2b\x06\xa6\xd0\x52\xec\x3d\x72\x15\xe3\xdb\x38\x59\x22\x65\xaa\xbc\x8e\xa2\xd0\x70\x04\x8d\xc8\x19\xb3\x59\x3c\x06\x6f\xb0\xfc\xa8\xad\x24\x4d\x20\x2b\xdb\x6c\xb7\x31\xaa\xcb\x56\x9e\xc5\x8a\x0a\x45\x51\x9e\xf3\xcb\xd3\xdb\xc3\xc3\xb8\x9e\x78\xfe\x41\x40\xab\xdf\xb2\xe3\xa7\x2b\x1d\x71\x10\xd4\x95\xb8\x28\xba\x17\x28\x86\x5d\xa8\x5c\x8f\x58\xdc\x4e\x24\x85\xe6\x02\x79\xc8\xdc\xd6\x68\xab\x54\x8a\x0f\x8d\xfa\x98\xda\xb0\x8a\xc7\x2c\xa2\xd9\x69\x14\xb1\xc4\x72\xbd\xbe\xfa\xed\x4d\xe3\xab\x85\x41\x0c\x2b\x99\xaf\x41\xe4\x72\x53\x35\x08\x66\xc5\x18\x9f\x6d\xfb\x82\xc0\xd3\x1e\x65\x30\xab\xbb\xf9\x10\x7a\xcb\x89\xd3\x84\x0a\x29\xb6\x6b\xc3\xdd\x2c\x3d\xb2\x31\xb7\x41\x57\x1e\xea\xcd\x7e\x2f\x5b\xe8\xe1\x83\xd5\x72\x0d\xce\xa1\xb9\x7e\x2c\xb3\xe5\x98\xbc\x93\x4b\x45\xee\xb1\x95\x9c\x11\xdf\x75\x9e\x35\xb4\xb1\xb0\x41\xa8\xd8\x32\xd1\x39\xe3\xbd\x9c\x6e\x28\xc3\x45\xa1\xb5\x01\x5f\xf0\x88\x0a\x5d\x16\x0f\xdb\xe4\x89\x60\x19\xc5\x7a\x5d\xa1\xc1\x57\x54\xa1\xb2\x1b\x73\x05\xfd\x7b\xca\x40\x3e\x17\x5e\x2c\x17\x6e\xf3\xd8\xa9\x21\x57\x9d\x18\xf9\x28\x7d\xbf\x7a\x7e\x13\xc1\x35\xa7\x49\x53\x49\xd4\xb6\x43\xf4\x5f\xad\x36\x75\x74\x7d\x33\x63\xf3\x53\x58\xef\x5f\xc8\x42\x9e\x5e\xd3\x3b\x86\xbe\x77\x33\x70\x2d\x28\x75\x6f\x61\xbf\xbe\xbd\x9e\xda\x55\x7d\x6b\x56\xbf\xaa\x6c\x6b\x47\xb5\x6e\x76\x9d\xe1\x9e\x02\xda\xe2\xb7\x6f\xbe\x7e\xd4\xa6\x9a\xfa\x3d\x74\x6d\xac\xb9\x53\x04\x96\x95\xf3\xfa\xc7\x14\x8d\xe4\x1b\xf3\x74\x76\xfa\x56\x38\xd3\x0d\x52\xd6\x25\x8f\xb0\x39\x34\x96\x5d\x2a\xaa\xc9\x25\x34\x17\x61\x60\xf9\xad\xc6\xeb\x6d\x1d\xf0\x86\x97\xee\x27\x5b\x4e\x4f\x83\x04\x82\x95\xb3\xe6\xf9\x62\x5f\x11\x7f\xf3\x90\xd0\xde\x24\xf8\xa7\x3f\xbf\x3b\xbd\xec\x9b\x97\x0f\xd1\xff\x4d\xf1\x07\x30\x52\x35\x37\x1d\x44\x3e\xfc\xde\xea\x2f\x10\x67\xda\x96\xa3\x1f\x96\xe2\xb8\xfa\x85\x72\xf4\x01\x76\x7d\x92\xf4\x61\x57\xad\x59\xfa\x50\x03\xdc\x07\x4a\x68\x6b\x5e\x0e\x7f\x6b\xc2\xfe\xab\xfd\x13\xf6\xdd\x56\x7e\xea\xac\xc1\x5d\x6c\xe6\xa7\x37\xad\xdb\x79\xf3\x54\xdb\xf9\xea\xbb\x47\x6e\xe7\x31\xa5\x92\xe0\xc5\x9f\x2e\x27\xfb\xbe\x57\x58\xd4\xfb\x5e\xa5\x8f\xb5\x17\x76\x93\x48\x8a\x27\x3c\x09\x35\x04\x46\x73\x6d\x00\x7d\x9e\x33\x11\xd1\x54\xe5\x89\xab\x50\xb6\xf9\xba\x08\xc6\x91\x48\x40\xf0\x4b\x68\xcf\x92\x40\x6e\x3a\xdc\xb3\x50\x50\x14\xf9\x6c\xb9\xa8\x0e\x92\x1e\xa8\x55\x07\xca\x4f\x6f\x3e\x1b\x2c\x6f\x02\x60\x79\x13\x02\xcb\x9b\x5f\x1a\x2c\x3f\x4a\xa5\x2f\x44\x94\x6d\xd3\x7d\xa4\xe0\x8f\xad\xaf\xb7\x80\x2b\x28\x85\x49\xa5\x47\x5a\x8e\x6c\x19\x21\x37\x98\x07\xd9\xcf\x77\x0d\x17\xfb\x2d\x32\x49\x2f\xe9\xba\xdb\xee\xf8\x31\xf8\x5a\xcd\x7e\x03\xe1\x3c\x36\x90\xae\x21\x0d\xa9\x20\xae\x1e\xde\xb8\x11\xfd\xcd\x15\xcb\x1c\x3f\xa6\x0a\x50\x78\x93\xfb\x60\x7c\xed\xc5\x47\x6f\xf4\x4d\xe7\x46\x97\xa3\xcd\x9b\xcf\xdb\xe4\x9f\x18\x4b\x4f\x13\xbe\xd9\xe3\x14\x8b\x57\x4a\x0c\x2d\xd7\x39\x35\x12\xbf\xd2\x4c\x68\xf3\x18\x6d\xec\xfe\x84\xfd\xaa\xc1\xe6\x59\xf5\xc0\x78\xb9\xd1\x8f\xde\xd4\x3b\x58\x01\x17\xcb\x5e\xde\xfd\x8f\xc1\xd7\x6a\xad\xdc\xdd\x4f\xe8\xea\x6f\x8a\xf8\x9b\x6f\x6b\x08\x5a\x29\xf1\xf0\xea\xdb\xd7\xfb\xb3\xbf\xf0\xa6\xf6\x41\xc7\xda\x8b\x6d\x1b\x0b\xed\xc9\x35\xe3\xac\x22\x64\x7d\x63\xfb\x47\x2a\x14\x1b\xeb\x23\x75\x7d\xf4\x1e\xae\x6e\xc0\x7c\xe1\x0b\x5e\xad\x44\xd2\xbb\x45\x5d\x82\xd7\x23\x2a\x25\xf9\x3b\xda\xe7\x80\x50\x00\x6b\xd9\xd5\x9b\x27\xdb\xd5\xe7\x20\xe0\x35\x9a\x99\xae\xf3\x84\x4d\x33\x2e\xb3\x70\xcf\xec\x86\x3d\x06\x5e\xae\xee\x38\x75\xdf\x36\x96\xcf\x2e\x69\x26\xbc\x50\xd2\x1c\x67\xff\xca\xf2\x2a\x01\x09\x37\x3d\x6d\xdf\xac\xf5\x5d\xa1\x97\xec\x26\x95\x72\x11\x6e\x1e\x57\x0d\x19\x08\xbe\xb5\xcb\xc0\x53\x19\x17\x85\x53\x9b\xe8\xbe\xb5\xd7\xe1\x50\x18\xbf\x08\xc1\xe6\x42\x6a\xb4\x71\x81\x74\x2e\xca\x66\x25\x58\x8e\xc2\x46\x96\x87\x46\xf5\x92\x73\x5c\xc4\x32\x04\x36\xac\x18\xcf\xbc\x78\x01\xbf\x4e\x9c\xf5\xba\x61\x60\x72\xd0\xf7\xe2\xac\x95\xa7\x62\x3b\x3b\x38\x2a\x77\x96\xb1\xbf\xe7\x0c\xd2\x74\xb7\x36\x89\x6f\xcf\x28\xfd\x87\xb8\x77\x65\xb9\x40\xd5\xdb\x3f\x9f\x4f\xab\x16\x41\x83\x2d\x2a\xe7\xe8\x35\xc8\xb1\xe1\x4e\x53\xfb\x58\xdb\xc0\x24\x66\x62\xbb\x9b\x43\xf8\x28\x7b\xd4\x43\x9c\xee\xeb\x0a\xff\xf3\xf9\xf4\x69\xab\xa6\x41\x01\xe0\x47\x15\x4c\xb3\x7e\xee\xd0\xc0\xa5\xeb\xfb\xfb\xe9\x5b\xb2\xa6\x29\x24\x7e\x51\xad\x69\xb4\xc2\x3e\x6a\xe0\x18\x0a\xbb\xc4\xff\x7c\x1e\x2c\xa5\xb0\x5b\x56\x6d\x7f\x87\x78\xd8\x1b\xb1\xfb\x2d\xd8\x40\x63\x3f\xb8\x5d\x69\x99\xd1\x25\x73\x5f\x61\x4c\x04\x9c\x96\xeb\xfb\x63\xa4\x39\xe7\xd0\xb9\xe3\x22\x3e\x21\xb3\x03\xd7\x7b\x2e\x4d\xf2\x8c\x26\xe5\x37\x45\xe7\x37\x75\x42\xfe\xfa\x37\xf3\x0d\x04\x9c\xc4\x3f\xa1\x41\xd4\x7e\x3b\x13\xa3\xd1\x68\x26\x68\xca\xed\xf7\x27\x84\xa6\x9c\x3d\x68\x26\xb0\x04\xec\xdd\xb7\x6a\xcc\xe5\xf1\xe6\xd5\x4c\xe0\x8c\x67\xb9\xd2\x72\x7d\xcd\xf0\xb6\x9f\xb3\x05\x17\x1c\x8b\x64\xba\x5c\x2b\x58\xa0\x91\x31\x4f\x6c\x1a\x95\xd5\x80\xc0\x7f\xcc\x99\x1a\x47\x59\x3c\xde\x31\x26\xcf\x84\x11\x52\xe1\xdd\x65\x26\xf3\xf4\x84\x34\x3c\x86\x63\x57\xc1\xf0\x03\xcc\x73\x89\xf3\x60\x00\x36\xfe\x6c\x84\x8b\x3f\x35\x3d\xf2\xae\xa8\x89\xeb\x80\x17\x5c\xaf\x3d\x1d\x2e\x20\x79\x29\xf4\x10\x4c\x96\x66\x0c\xce\xf4\x83\xb8\x13\xf2\x5e\xbc\xe5\x2c\x89\x95\xd5\x73\x00\xfc\x91\x34\x38\x70\x86\x56\x75\xf3\xcd\xc6\x1d\x85\xf9\x63\x64\x41\x66\x20\x0d\xf3\x45\x2b\xb6\xa6\xc5\x65\x95\x29\x13\xa7\xd3\xc9\x4f\x5f\xdd\x54\xbf\x6f\x74\xf5\x79\x47\x5a\x45\xd0\xea\x65\x37\x63\x5a\x13\xb9\xdf\x31\xcf\x2e\x8d\xc5\x76\x1d\xe8\xd4\x86\x18\x3b\xd8\xa7\xd0\xc1\xca\xa8\x72\x61\xf4\x5f\x44\x73\x73\xf3\x32\x33\x8e\x57\x5b\x73\xc3\x32\xac\xc5\xbd\x14\xfc\x1f\xc5\xe0\x45\x72\x64\x42\x35\xdb\x4d\x17\x28\x2c\xa3\x5e\xad\xd6\x35\xdd\x5a\x17\x18\xc9\x85\x37\x20\x56\x4c\x1b\x93\xf7\x12\xd2\x1b\x16\xf2\x84\xac\xb4\x4e\xd5\xc9\xf1\xf1\x92\x6b\x87\xcd\xd6\xee\xa9\xb7\xc7\xc0\x20\xf9\x3c\xd7\x32\x53\xc7\x31\xdb\xb0\xe4\x58\xf1\xe5\x88\x66\xd1\x8a\x6b\x16\xe9\x3c\x63\xc7\x34\xe5\x23\x58\x3b\xf8\x07\xd5\x78\x1d\x3f\xcb\x2c\xfa\xab\xc3\xd0\xe5\xdf\x25\x0b\x80\xa5\x6d\xc7\x60\x70\xd4\xf6\xcc\x87\x97\x6d\xee\x43\x01\x6d\x57\x32\xf5\xfa\xe2\xe6\x96\xb8\xd9\x83\xd5\xc1\x10\xf8\xe5\x9b\xaa\x3c\x07\x03\x34\x2e\x16\xcc\xd6\x83\x81\x5c\x44\xed\xf7\x25\x85\xd2\x60\x10\x87\x59\x1f\x55\xe5\xf3\x35\x04\xe5\x20\x73\xc5\xac\x95\x33\x90\x09\xa0\x70\x63\x1a\x53\x0d\x6d\xaf\x05\x39\xa3\x6b\x96\x9c\x51\xc5\xbe\xf8\x29\x18\x68\xab\x91\x81\x6d\xdf\x73\xa8\x90\xa8\xfa\xe3\xbb\x1e\xe4\x82\x22\x95\x9f\x16\xc7\x3a\x4d\xd3\x64\x7b\x25\xde\xca\xec\x9e\x66\x9d\xb2\xc3\x69\xe5\x69\x0c\x1e\x81\xa8\x00\x6c\x0c\x9e\xa0\xbf\xcc\xeb\x6b\xca\x5d\x93\xcd\xa0\x36\x0b\x72\x06\x8c\xe4\xca\x8f\xec\x29\x28\xc4\xf2\x52\xea\x5b\x23\x9c\x74\x06\xe6\x14\x4f\x7a\xab\x2e\x04\x4c\xeb\x7a\x86\xfc\x9e\xb2\xf8\x0c\xec\x23\x2c\xf3\xf8\x5b\x73\xa4\x62\x29\xcb\xa6\xe5\x36\x76\x8e\x80\xf7\xe2\x10\xbc\xcb\x02\x23\x89\x09\xc8\x52\x5c\x2c\x83\x6e\x6a\x70\x4c\x53\x65\xc3\x41\x22\xd7\xeb\x10\x7d\x28\xb7\x99\x2b\x8c\x1e\x82\x30\xa1\x0d\x05\x80\xa1\x04\x47\xec\x1c\x6c\x46\xc2\x2c\x97\x16\x5c\x18\xf6\x72\xb1\x30\xb1\x82\x75\x83\xda\x5e\x9b\x1f\xaa\xba\x31\x68\x9b\x63\x83\x80\xe7\x8c\x58\xe1\x71\xdf\xb3\xc5\x1e\xad\x5d\xe7\x7a\x0b\x45\xba\x63\xf0\x9e\xda\x50\x17\xdb\xdc\xd5\x8a\xa2\xe4\x82\x46\x2b\xcc\x08\xb7\x15\x01\xc3\x22\x9f\x7b\x1b\xf7\x6d\x53\xbd\xa2\x8c\x6b\x96\x71\x8a\x05\xd9\xbd\xd4\x78\xa8\x58\x1f\x39\xc5\x02\x50\x7f\xaf\x50\x97\xca\x1e\x66\x07\xa7\xc4\x68\x78\xa4\x34\xd3\xfa\xa1\x3b\xa1\xa5\x04\xa5\x4b\x52\xf4\x41\x26\xdf\x4b\xbd\xb2\x05\x01\x65\x36\x42\x5f\x50\xe1\x9a\x9e\xda\xf3\x12\xfe\x77\xd8\xad\x3b\x08\x1b\x90\x31\x59\x06\xed\xd1\x11\xf3\x46\x5e\xa3\x16\x99\x6b\x2c\xb1\xe5\xca\x23\xe1\x23\x46\x83\x98\x4b\xe8\x76\x05\xe7\xd1\xb0\x60\x11\x17\xcd\x78\x3d\xc0\x83\xdb\x6b\x36\x13\x78\x78\xa9\xc4\xb2\x00\x75\x48\x34\xc4\x9c\x9a\xc3\x14\x6c\x09\x8b\xb3\x22\xc1\x91\x55\xaa\x5c\xa6\xfc\x6c\x36\x3b\xb8\x94\xda\xfc\x6f\x4c\x4e\x93\xc4\x56\x39\xf0\x47\x0f\x8f\x6c\xde\x86\xac\x63\x40\xa8\xa2\xd5\x11\xd5\x5c\x41\x2b\x1b\xac\x2d\x66\xb7\xa2\x25\x8e\x39\x26\xa7\xb6\xb9\x41\x03\x74\x01\x39\xa9\x70\x08\x6a\x0b\x02\xd8\x4d\x1b\x10\xc1\x76\xcc\x1f\x5e\x64\x00\xc5\xc1\x9b\xe1\x0a\xd0\x0f\x2f\xd1\xd1\x90\x72\x89\x0d\xdd\xa0\xbb\x22\xb2\x68\x53\x05\x4c\xfc\x74\x37\x6a\x8a\x99\xd2\xb6\xfb\x54\xe3\x28\xb5\x08\xcb\xe2\x85\xe2\x42\x07\x8e\xcf\xc6\x23\x99\x8b\xd9\x34\x2c\x98\x46\xbc\xf9\x89\xe1\xd2\x3a\x9c\x7d\xd8\x0b\x18\x84\x58\x31\x3f\xa5\x11\xbb\xb1\x97\xaf\xe5\xd9\x1d\x32\x70\x59\x7f\xd9\xe6\x9f\x4b\xe7\x00\x5e\x18\xf9\xbc\xb1\x2c\x46\xf9\x29\x00\x43\x0b\x22\xe0\xd5\x2f\xb0\x35\xa2\x2a\x6d\xe4\x65\xc6\x97\x06\x0e\x4d\x14\xc0\x7d\x40\xfe\x7a\x6e\x50\x08\x1c\xd0\x48\xa9\xf4\x0b\x2f\x68\xd9\x5e\x11\xa8\xed\x02\x73\x87\x99\x47\x00\x64\x65\x7b\x6a\xcb\x88\x6d\x86\x37\x20\xf2\x0e\x6c\xda\x07\x45\x2a\x89\x8a\x7a\x01\x02\xc3\xa1\x50\x61\x28\x3c\xe3\x8a\xae\x99\x2d\x73\xa1\x1b\x8c\x36\xe5\x07\x4a\x5a\x85\xe2\xb4\x5d\xec\x9b\x27\x40\xcc\x7d\x0a\xdc\x01\x54\xb7\x6d\x07\x2f\x5f\x00\x41\x3a\xf8\x56\x66\xa4\xa2\x06\x1e\x35\xf2\x00\xf7\xc1\x4e\x54\x01\x94\x5a\xdb\x92\x5c\x2e\xef\xce\x47\xb6\x84\xaf\x79\xe7\x81\x81\x29\x2d\xc1\x48\xbe\x46\x98\x70\x0f\xbe\xc5\x09\x77\x9c\x19\x5e\xe4\xca\x3e\x1b\xb7\x7f\x88\x1a\xed\xf3\x17\xc1\xae\x2b\xe5\xe7\x97\x01\x40\x45\x51\xbf\x31\x7c\x3b\x23\xe8\x9e\x44\x78\xc0\x36\xda\x07\x35\x7b\x0c\xe8\xfb\x47\x10\x11\xd3\x7e\x96\x1d\xab\xf5\xb7\xe8\x15\x64\x0b\xf5\x5a\x89\x32\xa9\x40\xe6\xeb\x7b\x65\x1b\x18\x47\x31\x77\x27\x03\x20\x58\x17\xa1\x8d\xa6\xd6\x2b\x4d\x30\xdb\x41\x34\x48\x18\x8d\xa2\xa9\x33\x1e\x61\xa7\x93\xf6\x6d\x38\x16\x58\x94\xaa\xdb\x62\x26\x41\x90\x2e\x16\xa4\xaf\x03\xda\x55\xba\xe8\x37\x49\x83\x7a\x25\xa2\xa8\x75\x8d\x65\xf6\x54\x3e\x37\xdb\x6f\xe4\x3a\xa4\x55\x8e\xf4\xe6\xed\x05\xe9\xd6\xd0\xe2\xf2\x23\xa4\xbe\xdc\xef\x4c\xf0\x85\xa2\xc8\x44\x55\xfc\x72\x3b\x36\x8f\x74\xb0\x17\x73\x8e\xbf\x3a\x58\x34\xb5\xbb\x2d\x3f\x75\x60\x14\x6d\x6e\x5b\xa0\x31\x6d\x4a\xbe\x2b\x3f\x08\x0e\x72\x03\xcd\xdf\x00\x4b\x95\x5c\x97\x5d\x5f\x15\x66\x52\xda\x46\xaa\x50\x18\x79\xdb\xdc\x46\xb7\xfc\xd4\xda\x2f\xea\x6a\x65\xf6\xa2\xa5\x27\x4a\x54\x96\x90\x1b\x05\xa5\x93\x2a\x02\x0f\xb3\x2e\x8e\xdb\xb3\xa9\x6b\x9a\xf8\xe1\x7c\xda\xd0\x5c\xd1\x7d\xfa\x9c\x6a\x73\x55\xd1\xf2\xd3\xa3\xbe\xe8\xee\xc3\xdd\x88\xd2\x5d\x73\xb4\xfc\xec\x5f\x7d\xb4\xfc\xf4\x45\xc8\xfd\x85\xcb\xcb\xf2\xa5\x0e\xb4\xec\x27\x5f\x59\xcc\x04\xcf\x69\x31\x30\x52\x61\xf4\x1d\xcd\x75\xc2\x34\x2f\xea\x8c\xe2\x5c\xed\x63\x16\xd2\x52\x2b\xaa\xf4\x3b\xb3\x74\xbf\x2b\x3b\x3b\x28\x1b\x53\x77\xb0\x95\x6e\x66\xdb\x83\xad\x80\xcf\xc8\x95\xb5\x7a\xee\x29\x21\x81\xd2\x4f\xf5\x6d\x79\xe5\x5a\x99\x22\xb6\xd2\xbe\x5f\xfd\xf7\xd8\x19\x94\x6f\x8b\x0a\xda\xed\xa3\x56\xda\x71\xdb\xab\x03\x9e\x29\x84\xb2\x72\x10\xb0\xd6\xd9\x96\x04\xa2\xf2\xe3\xca\x3d\xa1\x00\xd7\x97\x82\x75\x52\x00\x5b\x43\x6a\x1f\x0a\xd6\xb1\xf7\x92\xbc\xd5\x28\xd8\x0c\x69\xd8\xcc\x52\xb1\x19\xd2\xb1\x99\xa1\x64\xad\x32\xcf\x40\xcb\xe0\xd3\x8b\x96\xa9\x47\x68\xc9\xdd\xca\x71\xab\xa5\xaf\xfc\x04\x95\x63\xf2\x5c\x31\xe6\x4c\x64\x40\xca\xb0\xbf\x90\xda\x0a\x4d\x1f\xc2\x01\x91\xe5\x67\x36\x6b\xd5\xad\xad\x0c\xd9\xa4\x3b\xb7\x8f\xed\x2c\x63\x9e\x6a\x2d\xb3\x5d\x95\xd9\x5c\xb7\x4b\xa9\xd1\x5b\x7d\xd2\xd0\x50\xc9\x03\x82\xcd\x41\x74\xee\xac\x0e\xae\x80\xe0\xf1\xb8\x49\xfb\xe8\x73\x96\xc8\xfb\x17\x47\xd5\x25\x7b\xc0\x46\xa8\x12\xae\x15\x4b\x8a\xf2\xef\x1d\x70\x40\x63\x18\x98\x39\x6f\x57\x8c\xe8\x7b\x09\xb8\x06\x39\xac\xee\x37\x24\x10\x86\x09\x6d\xcb\x9e\x4e\x1d\x67\x77\x25\xdc\xee\x95\x5d\x6f\x69\x7e\x65\x9e\x96\x64\x3b\x43\x82\x69\xc1\x3e\xdf\xcd\x13\xee\x57\x32\xb1\x87\x74\x02\x47\x34\x9b\x95\x0c\xf9\x8f\x40\x5d\x7e\xb7\xa2\xea\xf9\x7a\xfb\x29\xa1\x73\x96\xbc\x00\xba\x63\x89\x7c\xd7\x75\xf6\x12\xe7\xcc\xbe\x01\xc9\x70\x7d\x18\x70\x30\xb2\x21\x35\x09\x8b\xcd\xbc\x3d\xf1\xcd\x4f\xc4\x73\x65\xc8\x09\x2c\x0e\x96\xeb\x56\x8a\x46\x54\xbb\xa5\xde\x88\x81\x5b\x6e\xdc\xf1\xee\xa6\xcc\x2a\x9a\x0a\x9a\x97\x9f\xf6\xfd\x16\x5b\xea\xda\x4e\xd7\x25\x17\x80\x79\x6c\xb1\x60\x91\x2d\x68\x64\x4d\x09\x09\x90\x56\x5b\x9b\x04\x02\x20\x8a\x9d\x74\x2f\x5e\x48\x31\x72\xc9\xb7\xe8\xa9\xc5\x22\x03\xd6\x2e\x02\x69\xf1\xbe\x91\x02\xf2\xdb\x70\xf4\x1e\x46\xbb\x5d\xd0\x94\x4d\x86\x9f\x42\x89\xb7\xc9\xa0\xa7\x51\x24\x73\xb1\x8f\xec\x75\x53\x7d\xf1\x17\x93\xc1\x6a\x64\xb9\x7d\xcc\x80\xc9\x93\x92\x54\xc6\x45\x4d\x64\x10\xe8\x0a\x12\x6d\x81\xd1\x41\x7a\x71\xc7\xad\xd8\xd6\xcb\xe8\x4c\x48\x35\xbe\xa4\xf9\x53\xd5\x09\xa0\xf8\xff\x67\x83\x9b\x3c\x06\xe4\xdd\x43\x36\x59\x9a\x03\x60\xef\x05\x6d\x52\x42\xdc\x50\x63\x65\x43\xca\x79\x61\xaa\x34\x02\x70\xc7\xcd\xef\x27\xdc\x91\x3d\x4c\x10\xa4\xaf\xa4\x44\xfa\x4a\x4b\x64\xf7\x7e\x75\xca\x4b\xff\x77\x4f\xba\xa2\x2b\x95\x56\x37\xa4\xfb\x0e\x9e\x63\x32\xe9\xd0\x3c\xcc\xa7\x74\x43\x80\x77\xe1\xc6\xf7\x2a\x94\xba\x88\xb6\xcd\x0d\x1b\xfd\xf1\xd5\xcf\xe9\xe5\xf9\x61\xd0\x37\x5e\xfd\xec\x67\xd1\x6a\x2a\x2b\xe0\x3e\xae\x0e\xe7\x7e\x52\x37\xbe\xf3\xd9\x52\x37\xbe\x89\x0e\xe2\x82\x5e\x7a\x8d\xb1\xdd\x44\xd0\x57\xa9\x80\x6b\x30\x5a\xc2\x1b\xb4\x53\xe8\xae\xa3\x57\x5f\xa9\x3b\xe0\xce\x72\xf0\x7b\xae\x5e\xd4\xc5\x6f\xdb\x94\x5b\xb4\x79\x1d\x09\xd8\xca\x8e\x61\x55\x50\xf6\xd5\xad\xe4\x50\x11\x4c\x77\x06\x8d\xd9\xc1\x3b\x2a\x02\x96\x0a\x60\x74\xc1\xa2\xea\xd9\x32\x37\xc7\x21\xeb\x91\x2f\xba\x1f\xed\x7a\x14\x3a\xc0\x7c\xc9\x8c\xf8\xeb\x8c\xbd\x32\xab\xf3\x6e\x5c\xfa\xd4\x26\xf0\xc7\x85\x25\xb4\xc3\x5b\x69\xf0\xc9\x1c\xa0\xbf\x47\xb4\x1b\x15\x50\x90\xc2\x05\x12\xd8\xc0\x8e\x76\x91\x65\x2f\xb6\xb9\x3f\xd7\x0c\xe5\x26\x81\x4b\xbe\xc4\xe3\xee\xab\x6f\xf7\xe6\xf9\xe0\x9f\x88\x08\x78\xfe\x99\x47\x08\x04\xe6\xb5\xc0\xfe\xf0\xfb\xe6\xbe\x14\xd5\x0f\x52\x59\xbb\x43\xb8\xc9\x09\x5b\x68\xf4\x63\x95\x21\x4c\x78\x7b\x7a\x18\x69\x88\x7f\x11\x8b\x88\xa3\x43\x55\xae\xec\x17\xa5\xa0\xdd\xcf\xac\xb4\x4e\xfb\xc5\x33\xfc\x78\x7b\x3b\x2d\xfd\xf5\x8d\x41\x0c\x06\x4b\xcc\xa3\xcd\x4b\x77\x51\x8e\x9f\x17\xbf\xb0\x66\x7a\x25\xe3\x3d\x38\xc3\x7b\x7c\xe1\x69\xa5\x76\xdc\x32\x12\x75\xdc\xb7\x17\xc4\x69\xc6\xc4\xee\xa0\x06\x1f\xbb\x07\x85\x5c\xad\x18\x47\x71\xab\x7d\xce\xc6\xcb\x31\xf9\xe1\xe2\xf6\x88\x4c\x3f\xdc\x1e\x11\xa6\xa3\xf1\x0b\xf2\x3e\x4f\x34\x4f\xbb\xfc\x1c\x16\x44\xc0\xf7\xaf\xae\x0f\x8d\x1a\xb6\x84\x38\xc2\x5f\x97\xdf\x2a\xa5\x7a\xb5\xc7\x39\x1e\x4e\xcd\xf3\x5f\xe2\x18\xbb\x4e\xb0\x9b\xa2\xf8\x27\x08\xcb\x1c\x17\x47\x85\xdb\x74\x67\xd1\xf7\x30\x08\x61\xe3\xe5\x09\x19\x11\xf6\x40\x23\x7d\x42\x8e\x17\x52\x92\x91\x0d\x12\x3b\x21\xc7\x73\x9a\x91\xcb\xab\xdb\x8b\x13\x0c\x40\x63\x42\x67\x5b\xb2\xee\x12\xcf\xaf\x2e\xdf\xfd\xc5\x52\xce\x2d\x61\x1c\x5b\x94\x92\xd9\x01\x4c\x82\x56\x64\xf3\x27\xce\xe2\x6c\x1d\xe3\xa6\x36\x6a\xe5\x67\x43\x13\x1e\xd3\xc2\xd8\x87\x0d\x56\x8d\xf8\xc4\x75\xa8\x78\x5f\xf9\xe9\x83\x73\x55\x24\x30\x20\x86\xb6\x69\x95\x86\x1d\x00\x78\xd7\x3c\xad\x1f\xaf\x9a\x68\x88\xdc\x9e\x33\x07\x08\x6b\x47\x5c\xc8\x6c\x7d\xe2\xc0\x3e\xcb\x5f\xbe\xfc\x2a\x32\x03\xc3\xbf\xd8\x89\x2b\xb5\xda\xc7\xec\x85\xa8\x06\xab\x82\xe1\x0c\xc1\xc8\x8a\x23\x2c\x87\x1e\x59\x78\x7f\xd6\x0c\x38\x46\x47\xa8\x49\x6f\xa1\x83\x58\x00\x3c\xad\x1a\x99\x36\x95\xfa\x7f\xfc\xa0\xfd\xd4\x89\x5e\x04\xa9\x7b\x28\x1e\xad\x7b\xf2\xcc\xc9\xd9\xfb\x69\xdf\x08\x10\x20\x46\xcd\x6b\xf7\xa9\x14\x75\x58\x1f\xc1\x6a\x6d\xb5\x99\x18\x68\x14\x4c\x59\x34\xc9\x04\xcf\x5a\x8b\x7e\xe5\x35\x2d\xae\xc8\xb4\x7c\x51\xf5\x4f\xe1\xa2\xb9\x57\xc6\xcc\xcc\xd3\x26\xda\x82\x3f\xdd\x3c\xb4\x79\xd3\x62\xa7\xec\x85\x89\x66\x6b\x7b\xf0\x79\x90\x4c\xa4\xf0\xa1\x04\x40\x89\xa0\x69\xc5\x3e\xca\x1a\x94\x7f\x37\x00\xc6\x7c\x11\x08\x51\x85\xb2\xcc\x3e\xac\xca\x0c\x4b\x4a\x34\x8b\x56\x82\x47\xb4\x23\x2a\x09\xcc\xa2\x68\xfe\xe7\xeb\x54\xaa\x32\x90\x0e\xdb\xf6\x1e\xaa\xb2\xe7\xce\x82\x67\xec\x9e\x26\xe1\xee\x21\xe5\x07\xa9\x85\x35\xca\x62\xe7\x1e\x49\x98\x58\x48\xcc\x64\xb1\x21\x7a\xdd\x57\xa3\xd3\x87\x07\x8f\x7d\xfe\x61\x98\x61\xc6\xc4\xaf\x51\xd6\xe5\x02\x2b\x5a\xb1\x7d\x8b\x51\xde\xb0\x43\x18\xeb\x22\x5a\x49\x72\x6d\x13\x53\x9f\xf3\x31\x1b\x93\x94\x8b\xa5\x6a\xf7\x81\xf5\xda\x6f\x0f\x62\x90\x86\x13\xc1\x1a\x00\x32\x99\xba\x84\xb0\xcf\x0e\x0c\xab\x18\xb7\x50\x1e\xf7\xa1\x3c\x75\x9e\xb1\x46\x28\xf4\xa9\x44\x19\x4e\xe9\x69\xd8\x9c\xeb\xab\xe6\x85\xf5\x96\x85\x43\xbd\xb2\xc2\x45\xd7\xec\xf6\xcd\x7d\x16\xd1\x28\x33\xaa\xdb\x99\x5c\xb9\xc2\x69\x5f\xae\xd8\x97\x2d\x55\x33\x92\xca\xf5\xd8\x54\x34\xf4\xda\xdd\x31\x9b\x12\x4f\x52\xca\xb3\xe6\x56\x82\xe5\xc7\xa8\xac\xb6\xd7\xbd\x0f\x53\x3a\x97\xb9\xee\xc1\x48\x9e\x4a\x73\x14\x52\x9b\xdb\xd7\x0f\x33\x2e\xf1\xe1\x8e\x88\x1e\x78\xa4\x3d\xb2\x6e\x60\x18\x03\xc3\xf8\xcf\x66\x18\x42\x6a\x27\x56\x35\x82\xa5\x3d\xea\xa6\x67\xbc\x4d\xbf\x48\x9b\x9d\x80\x50\x27\xf2\x75\xc4\x84\xda\xc7\x9a\x01\xd6\x71\x8f\x7b\x84\xf6\x3c\x2e\xa8\x27\xfd\xb5\x02\x77\x76\xe0\xc3\xf6\x09\x79\xff\x8e\x63\x0b\x2c\xbc\xbe\x24\xe0\x60\x32\x06\xac\xe7\x59\x9b\x65\xde\x46\xe7\xda\x73\xbe\x80\x54\xa3\x6b\xc8\x94\x73\x59\x5f\x68\x36\x7f\x3e\x67\x11\xcd\x95\x8d\x89\xeb\x70\x25\x14\x4b\x8c\x58\x06\x63\x14\x71\x75\x2f\xd0\x14\xef\x1a\x73\x54\xa2\x04\xbb\x58\x2c\x86\x0f\x9e\xf8\x11\x70\x47\x7e\xfc\x1b\xfe\x01\x9a\x4a\xe5\xaf\xcd\x9b\xf2\xef\x9b\xb3\x5b\xfc\xb5\x79\x1a\x3b\xe2\x3b\xae\x99\x0b\xb2\x83\xbe\xa8\x80\x20\xce\x29\x8b\xbd\x23\x5f\x8d\x5e\x7f\xf3\x4d\x8b\xc9\xff\xcb\xa1\xbd\x6a\xea\x11\x81\x9f\xaa\xa3\xb5\xe8\x11\xd1\x23\x2b\xad\xa1\xfd\xae\x3f\xeb\x90\x90\x36\x24\xa4\xf5\x70\x7b\x0e\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x35\xed\x78\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\xad\x69\x27\x03\x2d\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\xf0\x33\x24\xa4\x0d\x09\x69\xf5\xcf\x90\x90\x36\x24\xa4\x15\x9f\x21\x21\x6d\x48\x48\x1b\x12\xd2\x82\x83\x0e\x09\x69\x1e\x2c\x86\x84\xb4\x21\x21\x6d\x48\x48\xab\x7e\x7e\xc9\x84\xb4\x8e\xe6\xe5\x58\xc5\x37\xf4\xdb\xa3\xdb\x94\xdb\xbb\xf1\x88\xf2\xdd\xd5\x5b\x35\xd4\xef\x1e\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\xe1\xe5\x0d\xf5\xbb\x87\x70\xa9\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\xaa\xfc\x0c\xe1\x52\xe5\x67\x08\x97\x1a\xc2\xa5\x7e\x55\x21\x06\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\xc1\x87\xff\xc3\x68\xd9\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x81\xcf\x10\x2e\x35\x84\x4b\x15\x9f\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x82\x83\x0e\xe1\x52\x1e\x2c\x86\x70\xa9\x21\x5c\x6a\x08\x97\xaa\x7e\x86\xfa\xdd\x43\xfd\xee\xa1\x7e\x77\xe5\x33\xd4\xef\x1e\xea\x77\x0f\xf5\xbb\x7b\xcd\x30\xd4\xef\x1e\xea\x77\x0f\xf5\xbb\x87\x72\xac\x43\x39\xd6\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\xdd\xbc\xfe\xa1\x7e\xf7\xc0\x30\x06\x86\x31\xd4\xef\x1e\xea\x77\x57\x3e\x43\xfd\xee\xa1\x7e\x77\xed\x33\xd4\xef\x6e\x56\x20\x87\xfa\xdd\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\xf9\x9f\x21\x21\x6d\x48\x48\xfb\x55\x25\x71\x0c\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x05\x1f\xfe\x0f\xa3\x65\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x05\x3e\x43\x42\xda\x90\x90\x56\x7c\x86\x84\xb4\x21\x21\x6d\x48\x48\x0b\x0e\x3a\x24\xa4\x79\xb0\x18\x12\xd2\x86\x84\xb4\x21\x21\xad\xfa\xf9\xbf\x5d\xbf\xbb\x4f\xd8\x41\xf8\xa8\xdb\xa5\x83\x05\x46\x89\x94\x1a\x7b\x68\xd5\xb9\x42\x5d\x04\xe9\xa3\x65\xdb\x58\x04\x5b\x8a\x8a\xaf\xb0\x61\x4b\xe1\x53\x81\x42\xe3\x5d\xfb\xb8\x32\x0f\xb5\xf0\xa4\x2a\x22\x4b\x7c\x3a\xb8\x0b\x0c\x25\xc4\x5a\xd0\x60\xfc\x31\x83\x82\xb7\x34\x1e\xa3\x3d\xa8\xb0\x66\xaf\xf8\xd2\x28\xd7\xb3\x03\x18\x6f\x76\x00\x22\x80\x7d\x36\x34\x34\x5d\x18\xa5\x50\x83\xd0\x09\x03\x24\xf2\x9e\x65\xb8\x1a\x0c\xcd\xf4\x16\xa7\x88\x5c\x73\xad\x0d\x2f\xe1\x2e\xab\x27\x34\x68\x24\x85\xe2\x58\x8a\x1d\xed\x96\xb3\x03\x2e\x16\x5c\x70\xcd\x66\x07\x64\x44\x20\x20\xd0\xdb\x8e\xe3\x54\x76\x9d\x24\xa1\x4a\x8f\x49\xb1\xb3\x20\x48\xcc\x5a\x79\xcc\x84\xe6\x11\x4d\xec\x02\xeb\xe3\x70\x41\x68\x92\xae\xa8\xc8\xd7\x2c\xf3\x9e\x03\x04\x08\x8d\x6a\xf9\x93\x35\xb1\x61\xd4\x4b\x50\xe7\x46\xe4\x10\xf9\x7a\xbe\x6b\xfd\x4c\x33\x76\x7e\x79\x7a\xdb\x85\x1e\x53\x7c\x8c\x70\x11\xf3\x08\x2d\x3b\x45\x06\xca\xca\x95\x57\xaf\x52\x15\x32\x67\x0b\x19\x16\xdd\xa8\xd8\x12\x33\x5c\xe3\x5a\xe7\x52\x26\x6c\x37\x30\xa3\x45\x6e\xaf\x49\x59\xb7\xbe\x9d\x0c\xb1\xda\xb3\x96\xb9\x8b\x96\xf2\xe8\x0e\xff\x23\xf3\x20\x01\x32\x7b\xab\x59\x3d\x3c\x4c\xb0\xf9\x32\xde\x19\x6a\xe9\x84\x8e\x66\xdb\x4d\xb9\x0e\x23\xbb\x25\x89\xbc\x47\xa8\xa1\x09\xaf\x30\x6a\xa1\x64\xfd\x47\xb4\xef\xe0\xc5\xfe\x94\x70\xcd\x32\x0a\xa6\x95\xd0\xc8\xb3\x19\x19\x61\xbe\x98\xc1\xea\x75\x4a\x33\xae\xa4\x38\x22\x90\x34\xea\xec\x32\x6e\xc8\x85\x94\x64\x4e\x33\x30\x16\x15\xd3\xfd\x6e\xcf\xe9\xca\xf9\x8c\x68\xc5\xfe\x9e\xd3\xe4\x0f\x18\xe2\xec\x54\x05\xbe\xb0\x3a\x02\x57\xf0\x8c\x73\x7d\x14\x53\x86\x89\xc8\xcf\xb0\x0e\x5a\x06\xe6\xcd\xcb\x7f\x46\xf8\xcf\xf1\x78\x4c\xfe\xe5\xad\x40\x67\x39\x73\x99\x4a\x45\xb0\x2f\xce\xf1\x67\x12\x4e\x2e\xb0\x3e\x9f\x8e\xa9\xca\xb5\x9a\x0d\x70\xd1\x63\x71\xa1\xc9\xf6\x5c\x2f\x4c\xd6\xb6\xc0\xf0\x91\x78\x6b\x5e\x51\xf5\x1c\xc6\xfb\x64\x58\xc7\x8b\x72\xea\xdb\x62\x66\xaa\xcb\xd3\xf1\x4e\xe6\x77\x80\xa4\x41\xa6\x6b\x87\x28\xec\xc3\x72\x01\xcf\x82\x79\x10\xfe\x9f\xbf\x7c\xf9\xfa\x0d\xfe\x17\x7f\x29\xde\xb9\x59\xc9\x4c\x8f\x22\x9e\x45\x39\xd7\x20\xd6\xda\x97\x42\x13\xfd\xf3\x9f\xad\x6f\x83\x23\x49\x3f\xc7\x67\x5e\x14\x0f\xa5\x34\x63\x56\x25\x5a\x66\x32\x4f\x8d\x4a\x34\x9b\x69\x9a\x24\xcf\x83\x0e\x41\xdb\x53\x00\xc3\x82\x0a\x7a\xe1\x46\x73\x38\x4c\x93\xc4\xb3\xf1\xc1\x05\x7d\x87\xf8\x80\x4a\x6c\x03\x91\x33\x57\x1b\xe9\x8c\x0b\x95\xf5\xe9\xbb\x3a\x22\xa3\x23\xf2\x09\xe0\x70\x3c\x26\x37\x70\xe5\x88\xbd\x72\x8d\x83\xae\x65\xc6\x48\x6a\xf4\x2f\xa5\xf8\x86\x91\x39\x26\x79\x6c\x9d\x7d\xd9\x5a\xfe\x09\x53\x11\x4d\x19\x89\x56\x34\xa3\x91\x66\x99\x5d\xf6\x05\xc6\xca\x07\x2f\xc3\x73\xe0\x52\x6b\x1a\xb3\x51\x9e\x22\x5a\xa8\x17\x05\x39\x82\xcc\x42\x4b\x3a\xee\xd9\xdc\x68\x6e\xcc\x12\x0f\xff\xc4\x63\x96\x26\x72\xbb\x66\x22\x48\x4e\xed\xfb\x69\x26\x63\x87\xa4\x30\xae\xb9\x53\x40\x93\x32\x29\x34\x13\xb1\x87\xea\x34\xba\xb3\x5f\xfc\xcb\x3c\x5e\x8e\x4f\x7e\xf7\xc7\xa6\x1b\x10\xb3\x8d\x1b\xfe\x77\xa4\x76\x0b\x42\xa4\xac\x4d\x78\xaa\x5a\x63\xfb\x4a\x85\x37\xc1\xb7\xbe\x98\x68\x68\x17\xe9\x8c\x35\xfb\x0a\x88\xe0\xf5\xe9\xc1\x53\xc1\x39\x54\x4a\x00\xf7\x2b\xc8\x58\xaf\xf0\x7c\x2f\x2c\xce\xaa\x99\x41\x3a\x65\xee\x9d\xb4\x1d\x54\x8e\xec\x5f\x73\xa9\x57\x63\x82\x91\xaa\xc0\x4d\x1e\x52\x23\x51\xe9\x64\xeb\x29\xb3\xcf\xa1\xfb\x4b\x30\x04\xd9\xa3\xa3\x82\x44\x19\xb3\x09\x32\xca\xde\x6e\x99\x11\xc1\x93\x17\x47\x2e\xc9\x25\x66\x0b\x9a\x27\x5a\x11\xdc\x96\x01\x5d\x16\x37\xe8\x34\x5a\x92\x7b\x43\x2b\x27\x56\x73\x36\x8b\xb8\xf0\x94\x68\x90\x5b\x1d\xfd\x2c\x1a\xa1\x60\xd8\x65\x53\x9e\xbc\x9d\x9f\x70\x85\x77\x6c\x44\xfe\x6a\x45\x39\xb3\x20\x37\xd3\xdf\x8e\x2c\x8b\x30\x82\x31\x78\x6f\x2a\x13\x07\xef\x31\x17\x51\x92\xc7\xce\xc1\x19\x51\x23\x2c\xc3\x00\xe5\x30\x04\x99\xb4\x90\xc5\x96\x60\xb8\x17\x4d\xd1\x95\xd5\xc5\x5d\x84\xd7\x56\x81\x88\x21\x4c\xe5\xf0\x41\xe5\x0e\x9e\x6b\xdc\xfa\x51\xe7\x84\xa1\x41\xc1\xb6\xd8\x74\x4c\x48\x03\x3f\x5a\xc3\xa2\xa7\x9e\x64\x8c\x9a\xdb\x14\xdd\x11\xba\xa4\x5c\x04\x51\x16\xd1\x04\x1d\x52\xc9\x3d\xdd\xaa\x9d\xfc\x04\x8c\x16\x39\x22\x82\x6d\x58\x56\xc1\xba\xa0\x91\xa5\x67\x97\xa5\x12\x0a\x84\x01\xeb\x28\xfc\xaa\xa9\x54\x8a\xcf\x13\x37\x71\x19\x0e\x67\x5e\xb8\x49\x59\x14\x56\xbb\x71\x23\xcd\x01\x82\xed\x0a\x7e\xa3\xee\x1c\x56\xb9\x77\xbf\x05\xce\x11\xfb\x61\x0f\x4a\xcb\x8c\x2e\x99\xfb\x4a\x69\xaa\x73\x04\x0c\x7a\xfe\x58\x7c\xe9\xf9\x64\xee\xb8\x88\x0d\x35\x72\x20\x4d\x93\x3c\xa3\x49\xf9\x4d\x24\x05\x3a\xe2\xd5\x09\xf9\xeb\xdf\xcc\x37\x66\x7c\x16\xdb\x44\x5b\xfb\xed\x4c\x8c\x46\xa3\x99\xa0\x29\x77\xf9\xba\x84\xa6\x9c\x3d\x68\x26\xe0\xa9\xf1\xdd\xb7\x6a\xcc\xe5\xf1\xe6\xd5\x4c\xe0\x8c\x67\xb9\xd2\x72\x7d\xcd\xd0\xa3\x78\xce\x40\x43\x04\x6a\x5d\xc9\x8a\x05\x3b\x18\xc1\x98\x6a\x81\xf1\xc7\x8a\x69\x35\x8e\xb2\x78\x9c\x66\xd2\xc0\x21\x02\x02\x34\x96\xd9\x72\x26\x0c\x65\x83\xf7\x40\x5c\x39\x21\x0d\x8f\x55\xdd\x52\xb8\xa0\x7a\xa8\x34\xfe\x96\x70\xa5\xff\x14\xfc\xfd\x1d\x57\xba\x0a\xb2\x9d\x55\xda\xf3\xe0\x62\x99\x27\x34\xdb\x7d\xc0\xfc\x0e\x64\x2e\xdb\xb0\x0f\xe2\x4e\xc8\x7b\xf1\xd6\xe0\x91\x3a\x21\x0b\x9a\x28\x38\x4f\x15\x49\x73\xe4\x67\x49\xae\x34\xaa\x9b\x1b\x07\x79\xf3\xc7\xc8\x42\xc8\x00\x16\x26\x8b\x56\x6c\x5d\x26\x14\xcb\x94\x89\xd3\xe9\xe4\xa7\xaf\x6e\xaa\xdf\xd7\x2e\xc5\x4e\x98\x78\x25\x51\x03\xc2\x0d\x68\x36\xe7\x3a\xa3\xd9\x96\x4c\xa6\x44\xe5\xf3\x91\xdb\xc6\xf1\xd9\xe4\xfc\xba\x42\x91\xd0\xc0\xb1\x32\x34\x0c\xc5\x1e\x50\x6e\x41\x33\x43\x22\xa5\x25\xe6\x0c\xda\xd8\x8e\x35\xd9\x70\xea\x45\xd9\x61\xfc\x04\xbe\xea\x8f\x2b\x17\xbb\x0b\x75\x2e\xf8\xc2\x9a\xe3\x5f\xc2\x06\x6b\xab\x87\xa5\xd5\x3b\x57\x2d\x82\x62\xe0\x66\x83\x4d\x30\x39\x03\xc9\x84\x05\x3f\x8b\x2d\xac\x91\x4e\x00\xd5\xb3\x2c\x8b\x86\xcc\x68\x06\x84\xc2\xde\xdc\x31\x08\x34\x2c\x53\x4e\xe5\x8d\xa4\xd8\xb0\x4c\x93\x8c\x45\x72\x29\xf8\x3f\x8a\xc1\x95\x0b\x7f\x81\x66\x70\x3b\x42\x20\x17\x9a\x65\x46\xf4\x01\x92\x85\x46\xfe\x35\xdd\x92\x8c\x99\x69\x48\x2e\xbc\x01\x5d\xf0\xdd\x7b\x23\xf2\x72\xb1\x90\x27\x50\x9e\x4a\x9d\x1c\x1f\x2f\xb9\x76\x17\x34\x92\xeb\x75\x2e\xb8\xde\x1e\x83\x43\x9e\xcf\x73\x73\x24\xc7\x31\xdb\xb0\xe4\x58\xf1\xe5\x88\x66\xd1\x8a\x6b\x16\xe9\x3c\x63\xc7\x34\xe5\x23\x58\xbb\x00\x0a\x31\x5e\xc7\xcf\x32\x7b\xa3\xd5\x61\x88\x9e\xed\x92\x41\xb8\x7c\x6d\xc7\x60\x6e\x9f\xcd\xe9\x46\x99\x1e\x85\x92\x02\xda\x8e\x31\x5f\x5f\xdc\xdc\x12\x37\x7b\x30\xff\x1d\x81\x5f\xbe\xa9\xca\x73\x30\x40\xe3\x62\xe1\xa4\x2f\xf0\x81\xf8\xc6\x0a\x64\xfd\x09\x0f\x08\xe2\x2a\x9f\xaf\xb9\x56\x5e\x5d\x23\x39\x26\x67\x85\x73\x24\x4f\x63\xaa\x59\x3c\x26\x13\x41\xce\xe8\x9a\x25\x67\x54\xb1\x2f\x7e\x0a\x20\x82\x8e\x0c\x6c\xfb\x9e\x43\x43\x2d\x82\x26\xcb\x6f\x41\x68\x1b\x8e\xad\x7e\x51\x0d\xff\xac\xa6\xc4\xb9\x0c\xca\xb2\x66\x01\x25\x75\xea\x5b\x7e\xdc\xc1\xd6\x58\x6c\x8b\x3f\xa5\x21\x79\x63\xa7\x6f\xa4\x8b\x2f\x9d\x4c\x89\x23\x69\x48\xc1\xe6\x2c\x91\x06\xb7\xa4\xb5\x27\xb1\x90\x17\xbe\x59\xea\x18\xf8\xfe\xe7\xf3\xfd\x95\x54\x65\x94\xd4\x17\xe0\xf9\x7e\x2a\x54\x9d\xdf\xfb\xbf\xed\xf2\xfa\xca\xca\xea\x7c\xde\xff\xf1\xdf\xc9\xe3\x07\xfe\x37\xf0\x3f\xff\x08\x06\xfe\xf7\x8b\xf1\x3f\x9f\x7a\xf4\xe3\x7d\xbb\xb4\xa8\xfc\xec\xcf\xfd\xd8\x43\x0a\x31\x21\x93\x69\x1f\x4b\x94\x39\x69\xfb\x42\x35\x33\xf0\xf9\x64\xba\xf9\x1a\xae\xd5\x64\xba\x79\xf3\xc2\xe9\xc4\x0e\x2d\x82\x0a\xef\x04\x0d\xec\x13\x73\x37\x17\x34\x62\xe0\x47\x9b\xcd\x0e\x6a\x2e\x8b\xc2\x72\x04\x36\x80\x44\xca\x3b\x67\xba\xe3\xee\xcd\xa0\xc5\xd6\x85\xe6\x78\x19\x8b\x93\x69\x25\x58\x0e\x93\xac\xc1\x99\x66\x6d\x12\x40\x44\xa8\x1e\x43\x00\x7a\x90\x5b\xcf\x66\x1a\x0c\x19\xb9\xda\x89\x64\xaf\xe5\xee\x43\xb2\x64\x11\xf4\x21\x33\x6b\x76\x0b\x0d\x5a\x6f\xb5\x3c\x9b\x99\xf1\x6c\x8f\xe5\x62\xff\x96\xf8\xa9\xea\xac\x5c\x84\x2b\x03\x14\x0a\x99\x7f\x4e\x63\xc8\xd2\x35\x6c\xa7\x12\x57\x8c\x11\x0d\x17\x25\x2a\xa0\x99\x22\x34\x2c\x57\x68\x13\xc5\xda\x51\x54\x93\x34\xcf\x52\x69\x6e\xea\xf3\xc9\xc2\x86\x31\xad\x58\x79\x34\x66\x1e\x17\xa7\xd8\x1e\x0c\xe5\xec\x83\x92\xe1\xf1\x27\x8c\x66\xa2\x38\x36\x7b\x82\xe5\xb8\x66\x01\xb9\x02\x1b\x76\x63\x00\xc6\x6c\xa6\xdd\x71\x8c\x83\x16\xe8\x27\x97\xca\x48\xb9\xc2\xcb\x70\x64\x4e\xed\x4a\x5d\x60\xb9\x4b\x83\xf7\xff\x85\xe6\x77\xeb\x1b\x29\x63\x72\x8a\x12\x22\xef\xb8\xc8\x1f\xda\xb1\xbe\xf0\x0e\x17\x08\xfd\x07\x40\xbd\x75\xaa\xb7\x63\x52\x4e\xe3\x3b\x94\xd1\xbb\xca\x55\x2b\x65\x31\x9f\xa5\xdc\xb0\x4c\xa0\x5f\xa6\x88\x55\x93\x47\x65\x7c\xda\x2a\x93\xf9\x12\x63\x10\x9c\x99\xd5\x8a\xca\xed\x29\xf4\xf6\x70\x01\x2f\xcd\x83\x45\x01\x01\x6c\xbc\x1d\x23\x59\x00\x9c\xfc\x03\x61\x66\xff\x78\xb1\x63\x83\x24\x1b\xbc\x88\xe1\x92\x12\x65\xe4\xcf\x06\x7a\xa1\x6f\x4b\xf0\x1d\x11\xdf\x60\x2b\x15\xe6\x1d\x1c\x6b\x09\x71\xec\x66\x2d\xce\x74\x11\x0e\x03\x48\x64\x44\x93\x22\x09\xdd\x1a\x39\x27\x0b\x52\xa1\x67\x8e\x96\x79\xe7\xdb\x0b\xd4\x70\x91\x1c\xbc\x2b\x71\x81\xb0\x7d\xa0\x27\x66\xef\x56\xd6\x02\xc8\x79\xe0\x0f\x12\x19\x87\x46\xe5\x1d\x2a\x60\x5d\x59\x33\xa0\xe0\x88\xdc\x1b\x32\x57\x25\xce\x61\x7a\x80\x16\xd7\x51\xe5\xf8\x03\x93\x15\x79\x83\xa5\xf1\xd6\xdc\xec\xe0\xa0\xc2\x27\x46\x50\xf2\x36\x83\xa0\x86\xa3\xc0\xaa\x8a\x25\x1c\x11\x0a\x54\x63\x57\xfc\x23\xd6\xe7\xec\xf3\xae\xa2\xd3\x79\x59\x10\x0c\x53\x9f\x8c\x52\x92\x61\xa9\x3c\x3b\x8b\x22\xcf\x55\x1e\xa6\x30\x54\xc1\xd1\x32\xbd\x7a\x69\xfe\xff\xc2\xe6\xed\x80\x33\x90\xc5\xc4\xac\xfb\x0f\x84\x6b\xc2\x95\x38\xd4\xa5\xe5\xb8\x9b\x93\x13\xbc\xcc\x69\x26\x8d\xf4\xe2\xa1\x00\xc2\xd8\xa3\x0a\x55\x3c\x2c\x57\x1d\xe4\xb9\x2e\xb9\xea\x04\xf7\x0a\xb9\x8c\x20\xfd\x60\xbe\x23\xfa\x92\x8c\xc4\xb5\x4e\x13\xb6\x36\xb8\x86\xa4\xbe\x24\x1c\xfe\xa2\xd5\x1f\xc2\xa7\xc7\x35\xa7\x49\xb2\x25\xff\x7f\x03\xe3\x34\x63\x23\x88\x61\x29\x3c\x33\x53\x73\x48\xcc\x16\x26\x2e\xc8\x7e\x94\xaf\x9b\x74\x02\xf3\x71\x7d\xe8\x51\xc0\xb7\xfd\xee\xa5\x08\x9a\xf8\xdb\x88\xb7\x08\x57\xa5\xdb\x51\xf7\xcd\x73\x36\xc2\x1e\x02\x88\x16\x5b\xc7\xf0\xed\x8a\xe1\x01\x6e\xd4\x67\x11\x04\x76\xdb\x22\x9a\xb2\x7b\x6b\x1e\x08\xc3\xec\x2b\xf2\xa0\x17\x69\x8b\x77\xd7\x26\x9e\xba\x2a\xc5\xc1\xa8\xdd\x39\x43\x2b\x2a\x13\x11\x86\x3b\x15\xe2\x86\x3d\x70\x1b\x90\xba\x07\x77\xec\x0c\x4f\x6d\x0d\x4b\xed\x0e\x65\x34\xdb\xea\x78\xbd\x35\xab\xf4\xd7\x54\x7d\xec\x4b\x15\x9b\xea\x08\xd2\x14\x0d\x04\x7b\x04\xc0\x6d\xf8\xa5\xa5\x9c\xdc\xa3\x43\x3b\x53\x14\x63\x3b\xd1\xfd\xb4\xcc\xe0\xc6\x0b\xc7\x81\xcf\x2d\x3c\xe9\x18\x47\xb2\x8b\x68\x2e\xd2\x59\x66\x74\x18\x56\x5b\xe8\x20\x58\x9c\xdd\x2e\xc7\x8b\x8e\x74\x2a\x01\x86\xfd\x35\x0d\x8a\x29\x11\x69\xca\x68\x56\x04\xdc\x41\xc6\x0d\x29\xd6\x55\xfa\xa4\xdd\xc8\x2e\x70\xb2\x94\xd7\x47\x8d\x61\x85\xb5\x5b\x39\xd8\x10\x7f\x61\x1b\x22\x4f\xe9\x7a\x9e\xc8\xe8\xee\x4b\x18\x10\x27\xd3\xd3\xf7\xdf\x9b\xc1\xeb\xd6\xc3\xe2\x87\x5d\xd3\x61\xb9\xa0\xba\xdd\xb0\xf8\x65\x30\x1a\xda\x55\x0e\x46\xc3\xc1\x68\xf8\xdb\x31\x1a\x16\x44\xa3\x97\xc5\x50\xd4\xa9\x4f\xf9\xd9\xdf\x5e\x68\xd4\x10\x03\xbb\x4e\x6e\x6e\x9f\x73\x9a\x1e\x90\x2b\x1b\x47\xc4\x15\xfe\xe9\xb4\x41\xcc\x94\x63\x3a\x68\x16\xe2\xba\x88\xd8\xf7\x7a\x82\x90\xd9\x81\xd1\x79\x4f\xb0\x6f\x87\xf9\x27\xc8\x3b\x10\x3f\x3a\x3b\x80\x01\x21\x2c\x93\xe9\x23\x6f\xc2\x06\x05\xd6\x3c\x09\xfb\xc2\x2e\x34\xa0\x4d\xef\x29\xd0\xd3\xc4\xa8\x61\x4d\x75\xce\xab\x90\x31\x7c\x18\x28\x56\xf9\x0e\xe1\x62\x94\xdb\xe4\x0a\x27\x5c\xc0\x8a\xc7\x44\xf0\x04\x1a\xca\x34\xa4\x38\xac\x19\x45\xe9\xa5\x1c\x8d\xc0\x1d\x63\x0c\x8d\x7d\x42\x8a\x91\x37\x86\xd1\x91\xb9\x88\xd9\x03\xe1\x47\x4d\x96\x02\xfb\x7b\x91\x72\xc2\x0d\x11\xb4\xc0\xf7\xa6\xd9\x59\x2c\x50\xc8\x86\x31\x91\xae\xd8\x31\x71\x02\x37\xa2\x52\x32\xe2\x50\xb3\x83\x6a\xbc\x8e\xac\x30\xd3\x9e\x16\xdf\x04\x05\x3d\x03\xca\x47\x08\x4a\x2d\x72\xfd\x33\x72\x7b\x75\x7e\x75\x82\xa5\x87\x44\x9e\x24\x74\x8e\xc2\xe2\x9a\x8a\x1c\x94\x5a\x1a\xc7\x20\x33\x8e\xc9\x47\xe6\x58\x0c\xd2\x21\x52\xd4\x26\xc8\x46\xcb\x70\x2d\xce\x67\x06\xc3\x56\x54\xc4\x09\x23\x7f\xfd\xdb\x7f\x19\xe2\x87\x97\x2d\xd9\xda\x22\x22\x41\xb5\xdd\x2d\xa4\x49\x1b\x68\x11\xbf\x4b\x98\x76\x22\xa6\x07\x7d\x08\x98\xa5\x05\xa6\x16\x31\x3d\x8e\x90\x79\xa7\x16\x5a\x2f\x84\x34\x57\xf1\xbb\xa4\x02\x63\x72\x2b\xc9\xc2\x30\x1e\xef\xbc\xd1\x22\x82\x69\x77\xe5\x8b\x41\x8a\x60\x2e\x4a\x25\x78\xbf\x8a\x97\x87\xca\x36\x60\x72\x28\xe4\x2d\xa3\x31\x47\x9d\x06\x10\x93\xa1\x05\xa4\x90\xf6\xf7\xc7\xb6\x4e\x35\x19\x31\xe1\x13\x0f\x2b\x71\xa4\x97\xae\xac\x98\x11\x9f\x69\x16\x22\xc9\x76\x73\xfb\x35\x57\xe8\xa3\xd4\x76\x65\x10\x3e\x5a\x5b\x8c\x78\xdc\x19\xe5\x7d\xeb\x30\xe9\x50\x91\xb3\xc9\xf9\xf5\x9e\xb4\x3a\x66\x09\xd3\x41\xbd\xb9\x32\xcb\x39\x3e\x66\xef\x42\x21\x0c\xda\x14\xa9\x22\x32\xfc\x5e\x66\x77\x34\x93\xb9\x41\x67\xaf\x43\x40\x83\x59\xd3\xe0\x95\x97\x2b\x7e\x3a\x9d\x60\x8c\xf0\x7c\x8b\xcb\x42\xba\x9a\x60\xca\x4b\xc6\x74\x9e\x09\x02\x8d\x3c\x16\x09\x0f\x43\x9a\x65\x99\xcc\x5c\x3e\x4b\xc9\x56\xe7\x8c\x09\x4f\x3c\xd2\x8e\x52\xb9\x54\x6c\xa6\x0b\x8a\xb6\x7f\x36\xd8\xdf\x73\x26\x22\x76\x09\x89\x6d\x41\x30\x82\xed\xff\x84\xbc\xec\x00\xb1\x21\xa0\x46\xd1\x03\x67\x15\x0e\x6a\xd3\xe5\xd0\x5a\xcc\x95\xdb\x02\x26\x9a\x6b\x1e\xb6\x69\x94\x5b\xe7\x8a\xdc\x67\x5c\x6b\x26\xac\xba\x5f\xe1\x57\x10\x43\xac\xa4\x9d\x14\xd5\x72\x9c\x36\x4c\x74\x61\x25\xbe\x00\x43\x6c\x22\x9a\x59\x08\x58\x2a\xb4\x2a\x42\xde\x6d\xb1\xe7\x8c\x25\x8c\xaa\x86\xab\x03\xb2\xd8\x11\x49\xa9\xf2\xdc\x87\xd5\x8d\x7b\xec\x10\xa8\x68\x95\xb8\x05\x07\x4d\x12\x79\xaf\x48\xae\x7c\x83\x31\x04\x54\x2b\x4d\x28\xc9\x28\x16\x19\xb7\x65\xb2\x0c\x8f\x66\x42\xe5\x16\x00\x93\x60\x8b\xc8\x15\x05\x7b\x35\x20\x11\x6e\xc8\x70\x67\x11\x93\x8c\x8d\xec\x62\x8c\x16\x05\x45\xf1\x20\x0f\x11\x9f\x71\x62\x7a\x00\xa3\xb0\x43\x0a\xb0\xde\x37\x5f\x37\x21\x5c\x03\x5f\xae\x22\xdc\x5b\x99\x95\x24\x3d\x80\x7d\xbd\xa9\x5d\xc7\x92\x3a\x85\x85\x5a\xc7\x8c\xd4\x93\xe9\x58\x5c\xc8\x4d\x5e\xfd\x05\x44\x21\xc8\x26\xf9\x2c\xac\x2b\xd1\x61\xec\x13\x13\xe7\x39\x6d\xc4\x11\x52\xa6\xb8\xde\xb1\xad\xab\x60\x91\xaa\x23\xa2\x50\x0f\xbe\x63\x10\x96\x1f\x51\xa5\x6d\x83\x33\x20\xa0\x8d\x04\x22\x4c\xdf\xb1\x14\xcb\x69\x4f\x45\xe1\xa6\xf2\xb4\x4b\xae\x2d\x34\x16\xb3\x9e\xd8\xe8\x94\x08\x55\x83\x83\x22\xe8\xef\x4e\xa4\x58\xb2\x0c\xc9\xb2\xf5\x1e\x62\xe7\x98\x0f\x0a\x87\x3b\x93\x62\xc1\x97\xf5\xf9\xcc\x25\x61\x34\x14\x91\xdf\x4a\x03\x73\x51\x9c\x74\xd7\x06\x3f\x94\x8f\xba\x44\xa4\x0c\xd3\x9e\x9d\xbd\xd3\x17\x94\xd0\x92\xdf\x90\x65\x61\xa4\xfa\xaa\x28\xf5\x84\xb2\x6f\x23\x53\x6e\x30\x34\x8f\xfc\x75\xef\xfc\xd4\x20\xb7\x8f\x80\xc1\xd7\xbf\xab\x62\x4c\xfd\x57\x0f\xd6\x83\xf9\xb2\xd5\x7c\x19\x01\x8a\x7f\x29\xfb\x25\x5e\xa0\x90\x01\x13\x7f\x09\x5b\x30\xed\x9a\x42\x26\xcc\xa8\x18\x70\xb0\x61\x0e\x36\xcc\xc1\x86\xf9\x9b\xb3\x61\x22\xdd\xd8\xc3\x88\xe9\x93\xa0\xf2\xf3\x08\x2b\x66\xae\xa5\x15\x22\x19\x88\x19\x21\x8e\xd9\x2a\x00\xac\xe9\x03\xbe\x38\x65\xd9\x8f\x60\x89\xec\x92\x0f\xab\xcf\x83\x29\x54\x48\x31\xfa\x07\xcb\xe4\x91\x33\x8c\xad\xe9\x83\x27\x00\xfa\xce\x9f\xda\xd2\xa0\x5c\x19\x15\x50\x03\xa3\xb0\x5c\x82\x8e\xd4\x60\xbc\x5c\xd3\x07\xbe\xce\xd7\x27\xe4\xf5\xab\xaf\x7f\xff\xf5\xb7\x5f\xbd\xf9\xfa\xf7\x81\x87\xb8\xc0\x87\x02\x8a\x5b\xbb\x84\xde\x25\xf2\xb5\xc0\xb2\x59\xbc\xd8\x39\xa4\x7d\xe4\x86\x41\x38\xa8\x09\x07\x68\x6b\xfa\x52\xc2\xc1\x8f\x30\x7a\x48\x38\xc0\x5f\xc2\xc2\x81\x5d\x53\x48\x38\x58\x15\x03\x0e\xc2\xc1\x20\x1c\x0c\xc2\xc1\x6f\x4e\x38\x40\xba\xb1\x87\x70\xe0\x93\xa0\xf2\xb3\xbf\x70\x00\x6c\xf7\x73\x0c\x4b\xbd\x14\xed\xb0\xed\xa4\xd9\x36\xdd\x2a\x8d\x20\xb1\x9c\x9c\x37\xbe\x17\xb2\x84\x37\x32\xde\x80\xaf\x74\x54\x4c\x31\x70\xd9\x16\x2e\x9b\x4a\x99\x7c\x19\x0e\x3b\x95\x2e\x2c\xcf\xe7\xae\xe6\xdb\x10\x67\x85\x75\xec\x72\xd5\xd4\x0e\x32\x70\xd4\x81\xa3\x0e\x1c\xf5\x37\xc6\x51\x0d\xad\xe8\xcd\x4d\xcd\xc3\x8f\xd1\xab\xb1\xf6\xda\x07\xd5\x23\xda\xa0\x78\xd4\x85\x4d\x28\x2c\xf6\x84\xe6\x7f\x62\x68\x55\x11\xf9\xe3\x52\xce\xa0\xd8\x68\x88\xe5\x42\xb0\x4f\x51\xad\xca\x65\x3c\x1d\x95\xd5\xa6\xb4\x24\x7f\x9d\x1d\xdc\xe6\x42\xb0\x04\x8a\x9c\x1d\x7c\xb4\x19\x13\xb3\x83\xbf\xc1\xbe\xe7\x34\xba\x1b\x41\xf9\x46\xcd\xe7\x3c\xd9\x51\x28\xc9\x97\xc9\x17\x03\x66\x7b\xc3\xff\xd1\x2b\x29\x01\xdd\x41\x8a\xff\x03\xf4\xfd\x5c\x61\x26\x49\x99\xe1\x47\xa8\x52\x7c\x29\xd6\xe6\x32\x35\x36\x85\xb0\x75\xc3\x64\x32\x26\xe7\x1e\x78\x5e\xbf\xb1\x83\xd9\x44\xce\x57\xaf\x5f\xbb\x2f\xde\x34\xba\x47\x1a\x84\x9c\xbe\x5e\x7c\x38\xe4\xc7\xb8\xf0\xb9\xa2\xf3\x84\x7d\xff\xc3\xf4\xe2\xa1\x21\x57\xa0\x4a\xb4\xce\xf1\x05\xc2\xe0\x71\x43\xa2\x32\x99\x17\xb5\xd5\x01\x22\x93\x29\x31\x58\x7f\x68\x83\x0a\x88\xdc\x84\x23\x84\xbe\xff\x61\x3a\x26\x7f\x3d\x77\x3e\x6e\x60\x9a\x7f\x0b\x34\x71\x6d\x15\xd8\xec\x06\x3a\x9d\x47\xe0\x52\x76\x0f\x83\x95\x28\xcb\xcb\x8c\x50\x23\xf5\x96\xe1\x02\x78\xf6\x65\xb2\x67\x68\xf1\xe5\x76\x01\x01\xf6\x5c\x35\x4f\x79\xda\x0d\xea\xc2\x5b\x77\x62\x89\x37\x94\xdb\xe3\xd8\x9c\xbc\xcc\x1e\x3d\x9d\x4e\x36\xaf\xe0\xd6\xdd\xd3\x2c\x0e\xae\xb6\x72\x1b\x0d\x73\xd0\x96\xbb\xf8\xa3\xc2\xd6\x91\x98\x1c\x55\x7f\x0a\x02\x00\x53\x66\x91\x4b\x9b\x0b\x64\x16\x35\x0e\x1c\x5f\x47\xec\x0e\x13\x4d\xe7\x17\x3e\x43\xfb\x7c\x79\x84\x06\x96\x44\x03\x3d\x32\x7b\xf2\x29\x5d\x78\x4c\xc8\x07\x8b\x59\xc2\x37\x2c\x2b\xdb\x0b\x99\xaf\x8a\xe6\x7b\xaa\x56\x64\x3c\x78\xc2\xa4\xeb\x94\x09\xd4\xbb\x0c\x66\x49\xed\xec\xed\x16\x88\xf5\x64\x0a\x2f\x40\x41\x26\xf0\x1f\x0b\xaf\x48\xdb\xec\x00\xeb\xb6\xb9\x66\x9a\xd0\xa2\x77\x84\x6d\x63\x67\x07\x63\x42\x4e\x9b\xf6\x6b\xc6\xac\x8d\x50\xc6\x70\xe4\xca\xce\x5c\xc2\xd0\x9c\xad\xb9\xd6\x80\x23\x8d\xed\xd2\x3d\x78\x55\x73\xd8\x77\x60\x47\xc8\xa9\xb7\x86\xea\xba\x9b\x46\x87\x05\x3a\x44\xaf\x2f\xf0\xde\x95\xc0\xf3\xd7\x80\x79\x64\xe6\x76\x34\x8d\x49\xcb\x16\x60\xb6\xdd\xae\x93\x42\x5d\x93\x08\x33\xb8\x70\x27\x50\x26\xdf\xb6\xb6\x4e\x7c\xce\x17\x55\xb6\xf9\xc2\xac\xa2\x84\x75\x2b\xea\xb4\x33\xba\xb0\x6e\x6b\x30\xfe\x7d\x8f\xec\xbb\x33\x27\x9f\xa0\x7f\x30\xcf\x4a\xd9\x24\x70\xe0\xed\xa8\x3e\xa9\xed\xf1\xc8\xf5\x37\xe1\x0a\x23\x0b\x00\x50\x18\xc9\x35\x3b\xb8\x64\x1b\x28\x87\xfe\x1c\x6a\x8f\x57\x27\x0b\x8d\x6e\x46\xb0\xb4\x39\xd4\x58\xaf\x35\x0d\x91\xea\x91\xcc\xf5\x52\x72\xb1\xfc\xad\x90\xd4\x56\xaa\x23\xa8\xbe\xea\x09\x0f\x2c\x55\xea\x01\xb0\xa4\xaa\x8e\x2e\x42\x45\x50\xaf\x6d\x18\x69\x4d\xe5\xb6\x12\xb1\x51\x3c\x7c\x02\xb0\x43\x5d\x65\xae\x15\x8f\x59\xa1\x61\x16\x32\x6a\x68\x50\x68\xaa\xa2\xfe\x9e\xb3\x8c\xc6\xc1\x0e\x39\xed\xe0\x90\x71\xef\x5e\x08\xa7\x18\x00\x66\xa5\x76\x5b\x43\xcf\xa0\x8b\x8d\xaa\x2d\x52\x85\x81\xd4\xcc\xb7\x58\x32\x2f\xb4\xe6\xa2\xa1\xd0\x7e\xc8\xbc\x79\x48\xa8\xf8\xcc\xab\xfd\xd3\x9f\xdf\x9d\x5e\xfe\x62\x77\x1b\x66\x0b\x0a\xc7\xc5\x02\x1e\x7d\xb9\x1b\xed\x6a\xbb\xa1\x2f\x83\xf9\xac\x62\x3e\x43\xb3\x14\x5e\xb6\x2f\x62\x45\xbb\x2e\x27\xd8\x35\xa6\x79\x3f\x86\x6c\x6a\xfe\xe2\x76\x4d\x6b\x59\x75\xe4\xc1\xc2\x36\x58\xd8\x06\x0b\xdb\x6f\xcc\xc2\xe6\x11\x90\xde\x86\xb6\x1d\x8a\x54\x7e\xf6\x37\xbf\x59\xa2\x13\x43\xa5\xdd\x2e\x5e\x7c\xed\x3f\x5c\x6d\xa1\x8e\x5f\x51\x11\x1f\x57\xac\x4b\x61\x93\x02\xc4\xa2\xec\x18\x24\xd8\x43\x94\xe4\xb1\xed\xe5\x2b\xd8\xbd\x1f\x2c\x3a\xa4\xb6\xff\xc2\x9c\xf5\x2e\x9f\xb3\x32\x37\x4d\x55\x84\xaf\x2f\xc1\x68\xff\x94\xcf\xd9\x59\x39\xdf\x99\x3f\x5f\x9d\xef\xb6\x3d\xbb\xcb\x86\x5b\x77\x52\xe7\xca\x6d\x0f\x0f\x4c\xda\xae\x72\x60\xd2\x03\x93\xfe\xed\x30\xe9\x36\x6a\xb3\xcb\xb3\x2b\x0d\x1e\xea\x00\xf6\x32\x6f\x3c\x22\x53\xd5\x6c\xfb\xb3\x6e\x6f\x88\x3e\x4a\xb4\x9b\x0d\xcd\xca\xd8\x72\xc3\xcd\x6c\x9b\xc5\x6c\x78\x9c\xd3\xa4\xa3\xa3\xa7\x37\xed\xde\x26\xf0\xae\x26\x9d\x0d\xad\x39\x1b\x96\x5c\xed\xd3\x59\xae\xab\xb1\x31\xe6\x85\xb5\xa8\x43\xea\x24\xa8\xfa\x47\x90\xd6\xa8\x25\xe4\xcc\x6b\xe9\xd4\xf7\x86\x11\x7a\xb4\x58\x35\x64\x4a\x44\x3c\x61\xd9\x94\x65\x5c\x36\x67\xe9\xd6\x89\xc3\x75\xed\x45\x17\xdf\x9b\xe2\x5f\x5a\x9a\x7f\x41\x1d\x03\x37\x05\x6f\x4c\xef\x73\x9f\x22\x1b\xd0\x55\x4c\xa3\x9a\x82\x2c\xe1\x7b\xa3\xbe\x59\x87\x5c\x51\xee\xd3\x9d\xd9\xdb\x95\xd7\xdb\x50\x3d\x6d\x07\x02\x97\x32\x6e\x3f\x69\xf3\xfb\xaf\xe3\x90\x57\x5e\x41\xbb\xbe\x07\xec\x17\xc1\x2b\xdd\xd7\x6a\x2b\x22\x67\x89\x07\x0e\x09\x65\x19\xcb\xba\xe4\x6d\xa7\x7b\xee\x7c\x7c\x8f\xdd\x69\xcf\xdd\x12\x1b\xfd\x7e\x96\x31\xda\x50\xe2\xb6\x61\xcf\x87\xa7\xc5\x6b\xe5\xc9\xe6\x5a\xae\xa9\xe6\x51\xd9\xf8\x49\x76\x76\x22\xaf\x42\x05\x54\x21\xb6\x61\xd9\xd6\x7a\x30\x4a\x64\x76\x30\x69\x43\x69\xd2\xbb\x35\x6e\x9f\xc6\xb8\x09\xa3\x77\x3f\x64\x34\x62\x7b\xde\xf7\x77\xd5\xf7\x6a\xd7\xbd\x9a\x93\xe8\x70\xbe\x6d\x4f\x60\x78\xc6\x76\xdf\xd0\x31\x90\xfa\xae\xaa\x32\xbf\xdb\x2c\xd7\xf0\xf0\x1b\xc4\x93\x40\xd4\x7e\x75\x48\xeb\x04\x9f\x4c\xc9\x92\x66\x73\xba\x34\xcb\x49\x12\x16\x61\x2a\x69\x09\xf8\x57\x9f\x4b\x46\x7e\x8b\xa4\x93\xc0\xfd\x87\x06\x85\x6d\xd7\xaf\xba\xdb\x9b\xe2\x15\x3f\x0a\xc6\xf6\x77\x93\x24\x92\xe9\xb6\x67\x4f\x6e\xa0\xa8\x65\x1b\x1d\xaf\x48\xa5\xf2\x77\x69\x09\xea\x97\xe5\x12\x58\xc1\xae\x0f\x9f\xb0\x05\xaf\x5b\x38\x85\xad\x51\xf9\xeb\xe0\x15\xbf\x3d\xac\xee\x3a\xea\x6a\x9f\xc6\x3e\x47\x5e\xed\xd1\xd8\x76\xf4\x76\xec\xa6\xe5\xdb\xae\x8b\x3e\x6a\x0c\x38\xf0\xef\xc0\x01\x57\x7b\xb8\x43\x8a\xaa\xfa\x70\x6b\xef\xb4\xe1\x81\x1b\xbf\x69\x0f\xac\x26\x89\x0d\x98\xf0\xef\xc1\x84\xf6\xc4\x86\x79\xbe\xb4\x85\x52\xa7\x3d\x22\xf6\xce\x6b\xcf\xef\xb2\x85\x4c\x63\x29\x8d\x6c\xc3\xc8\x9a\xad\x65\x16\x2e\xec\x64\xd0\x29\xcd\x8b\x2a\xb4\xc4\x48\x3a\xbb\x9e\x63\xfc\xb9\xe6\xf6\x6d\x2f\x63\xf2\xd5\xeb\x26\x08\x34\x04\x45\x32\x1d\xc5\x3f\x7d\x75\x26\xd7\x29\x05\x89\xab\x11\x69\xaa\xc8\x72\x11\x7c\xad\x86\x32\x73\xa6\xef\x8d\x44\x68\xe6\xd8\x7c\x15\xd6\xf4\xdd\x00\x85\x49\xa8\x14\x1c\xfd\xeb\xe0\xcb\x81\x2f\x83\xf8\xd2\x86\x27\x2b\x46\x13\xbd\x3a\x5b\xb1\x70\x4e\x6d\x75\x6b\x3f\x7a\x0f\x17\x04\x40\x66\x6e\x29\xaa\x68\xab\x6c\x74\x04\x1c\x39\xb8\x35\x1c\xa0\x97\x90\xd3\xb6\xf6\x44\x2e\x6f\x8c\x26\xc2\xf5\xf6\x26\xca\x18\x0b\x55\x97\xa9\xc9\xfd\xf5\x37\xdc\xb1\x24\x72\x49\x94\xfd\x85\xd0\xb9\xdc\x30\x5b\xd9\x23\x91\xcb\x86\x52\x76\x0c\x83\x56\xac\x61\x55\xe9\x58\xe6\xda\x3f\x8c\x89\x58\xc8\x7d\x77\x94\x66\x72\x6d\x84\xc9\x5c\xbd\x67\x3a\xe3\x91\xea\x73\xf5\x0e\xa7\xa1\xb7\xdc\xce\x6e\xcf\xa6\xf6\xf2\xb9\x60\xed\xf2\xf1\xd0\xc6\xd6\x38\x04\x5e\xd4\xac\xe8\xdd\xcf\x05\x76\xed\xef\xc0\xc0\xef\x5e\x7e\xf7\x75\xf3\xa6\x83\x17\xad\x39\xfc\xa2\xc9\xd6\xd5\x68\x4c\x2c\x5d\x3f\x0d\xa0\x6a\x35\x27\xc2\xdb\x9e\x59\xd7\x9e\xab\xf9\x36\x60\x85\xb7\xca\xa1\x67\x3b\x24\x13\x7d\x08\xdd\x56\x16\x79\x82\x0e\xc3\x78\x0d\x96\x49\x09\x69\xdf\x46\x93\x03\x02\x88\x25\x98\x68\xa4\x73\xba\x13\xd4\x83\x23\xe2\x59\xdd\xd3\xa2\xe4\xb5\xab\x18\x6f\x23\x35\xd7\x32\xc6\xc0\xf9\xb9\x11\xc5\x37\x3c\x93\x10\x42\x4e\x36\x34\xe3\x70\x11\x77\xd6\x8b\x61\x8c\x77\xf9\x9c\x8d\x7c\xe3\x67\x9a\xc9\x88\xa9\xba\xa5\xa3\xad\xfd\x50\x39\xdb\x4f\x34\x68\xfa\xdc\x33\xeb\xae\x89\x7b\x55\x8e\xed\xa2\x3a\x6b\xbd\xc6\x7e\x00\x00\x0d\xd1\x99\x41\x20\x60\xe9\x32\xb1\x48\x72\xac\xb8\x0f\x5e\x80\x5c\x08\x2e\x96\x88\x20\x7b\xd6\x53\xca\xfc\x77\x3b\xbd\xba\xfe\xc3\xb5\x8d\x2d\x16\x46\xd5\xdf\xb0\x0a\x56\x70\xe5\x26\x08\x6d\x90\x37\x1d\xb4\x8c\x8f\x6c\x75\xf3\x35\xcb\x96\xce\xd9\x71\x3a\x9d\x94\xbe\x0e\x23\x91\x84\x59\x72\x03\x96\x05\xe0\xd2\x21\x85\xb5\x5b\xcd\x77\x80\xf3\x94\x96\x73\xd2\x65\x3d\xef\xb1\x7c\xd2\xc3\x8a\xbe\xb3\x89\xfd\x2c\xe9\x6d\x22\xe3\x53\x8a\xcb\x3d\x77\x4b\xf6\x13\x9b\x77\x36\xdf\x5f\x74\xee\xb2\x42\x56\x25\xeb\x5e\xe2\x73\xd7\x90\xed\xd2\x35\x79\x52\x4b\x65\x8b\x21\x9e\x7c\x29\x63\x3c\x79\x02\x23\x0b\xe9\x8f\x27\x3d\x0d\xf3\x3b\xdb\xdd\xc3\x38\xdf\x75\xa2\xa5\xed\xfe\x69\x0c\xf4\x7b\xec\x9e\xec\x63\xa8\xdf\x81\x41\x3f\x63\x7d\xf7\xa0\x20\x9a\x3c\xb9\xc1\x9e\xf4\xbe\x0a\xa4\xe7\x75\x20\x7b\x19\xef\xc9\xe3\x0d\xf8\x5d\x1b\x2b\xaf\xd1\x9e\x46\xfc\xae\x81\x03\x82\x72\xa7\x21\xbf\x6b\xcc\x0e\x3b\x3f\xd9\xe3\x98\x06\xa2\xde\x09\xa2\x5e\xee\x81\x5d\xe0\x3c\x9d\x8b\x80\x3c\xa9\x9b\xa0\xff\xd6\xfb\x5c\xe0\x56\x97\xc1\x0e\x50\x9e\xd2\x6d\x40\x7e\x59\xae\x36\x5c\x94\x27\xc0\x96\x5e\x5e\x07\xf2\xc5\x3c\x0f\xe4\x0b\x79\x1f\xc8\x80\x46\xbf\x28\x1a\xf5\x74\x5c\x90\x2f\xe9\xbc\x20\x5f\xca\x81\x41\x06\x64\xfa\x05\x91\xa9\xeb\x89\x1e\xfe\x0f\xf2\xa5\x7c\x20\xe4\xe9\xfd\x20\xa4\xdb\x17\x42\xfa\xb4\x5b\xe9\xed\x13\xd9\x01\xce\x53\xf9\x45\xc8\xd3\xfa\x46\x48\x0f\x9c\xea\xf0\x91\xec\x6e\xf5\x89\xfc\x24\x64\x4f\x5f\x49\x9f\xbd\xf4\xf1\x99\xec\x6e\x68\x6f\xbf\x49\xd3\x76\x12\xb9\x54\x9f\xe1\x3b\xe9\xb3\xc3\xbe\x3e\x94\xdd\x5d\x3e\xa9\x1f\x85\x7c\xae\x2f\xa5\x69\xd0\x26\x17\x0b\xe9\xbe\xbf\x2d\x2d\x48\x5b\xdc\x2d\xa4\x95\x5c\x0e\x89\x3b\x5e\xe2\x8e\xcd\x5a\x07\x65\x86\x7f\x91\xda\xad\x97\x38\x03\x2a\x54\xf8\x43\x99\x9b\x53\xf9\x71\x37\x19\xa7\xb6\x3a\x7b\x0a\x45\xfa\x8d\xff\x33\x0c\xdd\x33\xdf\xa6\x30\x70\x83\xcc\x34\xa4\xdc\x0c\x29\x37\x43\xca\xcd\x7f\x56\xca\x4d\x9b\xc3\x77\x99\x31\xd5\x19\x19\x72\xeb\xda\x31\x1b\xf4\x67\x90\x93\x8a\x2f\xda\x5e\xe5\x04\x9b\x3b\x99\x3f\x0a\x1f\x67\x88\x83\x51\xf7\x36\xd6\x05\x21\x6b\xaa\xa3\x15\x89\x32\xae\x59\xc6\x29\x5c\x12\x4a\x22\x99\x65\x4c\xa5\x86\xde\x8b\x25\xb1\x72\xa0\x96\xd8\x46\x7a\xaf\x5c\xd5\xca\x1e\x66\x07\xa7\xe4\xda\x2c\x90\x89\x88\xa6\x2a\x87\x7b\x5b\xae\x28\xb4\x94\x06\x83\x3c\xb5\x76\x5d\xf2\xbd\xd4\xab\x5a\x27\x69\xaf\x3b\xb6\xed\xde\x2f\xe2\x9d\x8e\xd9\x0d\x02\x45\xd1\x15\xde\x76\xae\x1e\x11\xc5\x52\x9a\x61\xfb\xa2\x5c\x13\xea\xe7\x04\xe3\x23\x50\x28\xcf\xac\x82\x0b\x38\x8f\x86\x05\x8b\xd8\x9d\x97\x0f\x78\x2e\x96\x63\x32\x9b\x09\xdb\x88\x1b\x3a\xf8\x1b\xc5\xa5\x0a\x89\x15\x6d\x1a\x95\x08\xb6\x84\xc5\x59\xc2\x6b\xd4\x15\xb6\xe0\x0f\xae\x55\xd6\x6c\x36\x3b\xb8\x94\xda\xfc\x6f\x4c\x4e\x93\xc4\x96\xd4\xf7\x47\x0f\x8f\x6c\x2b\x3f\x51\x44\xa8\x75\xae\xb0\x47\x1a\xd5\x5c\x41\x58\x04\x96\x51\xb1\x5b\xd1\x12\xc7\x1c\x93\x53\x60\x76\xbb\x25\x87\x2d\x74\x01\x39\xa9\x70\x08\x6a\x55\x36\xbb\x69\x68\x64\x64\xb6\x63\xfe\xb0\xfb\x01\xce\x80\x83\x37\xc3\x15\xa0\x1f\x5e\x22\x74\xe2\xca\x31\x2c\x04\x97\x18\xae\x53\xd5\x69\x15\x40\x84\x6b\x94\x18\xbb\x75\x66\xaf\x6a\x4e\xe3\x28\x35\x55\xb7\x2c\x88\x55\x09\x5a\xa8\x21\x07\x08\xcb\x70\x31\x5b\x94\xf5\x4a\xd5\x1e\x62\x68\xa1\x0e\xdd\xe3\x9e\xc0\x20\xbe\x93\xbe\xa5\x24\x4f\xc3\xce\x66\x07\x97\xf5\x97\x5d\x1b\xa8\x14\xe3\x5a\x6c\x71\xa5\xa6\xc6\xf3\xe5\xa7\x00\x0c\x2d\x88\x00\x61\x0f\x86\x85\x29\xa0\x0f\x57\x22\xd9\x12\x9d\xd1\xc5\x82\x47\x08\x29\x57\x1f\xac\xcb\x2f\x00\x5c\xee\xb9\x41\x21\x70\x57\x21\xa5\xd2\x2f\x3c\xa7\x9f\xd7\xc6\x0c\xe7\x6e\x2e\x53\x57\x03\x99\x2a\x6a\xdb\xc1\x59\x1a\x06\x08\x05\x9c\x00\x91\x77\x60\xd3\x3e\x28\x52\x49\x09\xbe\x8f\x02\x04\x46\xfd\x43\xb1\x2c\x76\x81\x49\x8a\xae\xf1\x2a\x60\x4d\xa0\xf6\x41\xa1\x86\x96\x33\xd3\x79\x5b\x46\x5c\xcb\x8a\x75\x93\xf9\x16\x17\xed\x66\xee\x00\xaa\xdb\xb6\x83\x97\x4b\x01\x32\xeb\x42\x3a\xf8\x56\x66\x55\x19\xfb\xa8\x91\x07\xb8\x0f\xd4\x35\xdd\x05\x1b\xe1\xeb\x34\xe1\x4c\x95\xda\xa4\x8f\x6c\xd0\x96\xb2\xeb\xc0\xc0\x90\x04\x3e\x44\xb1\x6c\x84\x09\xf7\xe0\xdb\x2b\xc6\xa4\x68\xad\x5a\xd9\x67\xe3\xf6\x0f\x97\x89\x9c\xd3\xe4\xf9\x8b\x0e\xb3\xdd\x2f\x03\x80\x1f\x60\x31\x76\x89\x46\xbb\x96\x59\x25\xba\x00\xb6\xd1\x3e\xa8\xd9\x63\x65\x98\xf2\xa0\xbb\xce\xb2\x63\xb5\xfe\x16\x31\xac\x4f\xb9\x7e\xa4\xb5\x43\xa3\x50\xba\x90\xd0\x70\x9d\xb2\xf2\x53\x5e\xd9\x06\xc6\x51\xcc\xdd\xcb\x68\x2a\x98\x6e\x37\x3b\x57\x83\x54\x98\x56\xcd\x84\xd1\x88\xf3\xd0\xec\x45\x75\x3b\xe1\x1d\x0b\x84\x23\x04\x5e\x01\xaa\x53\x98\x2e\x16\xa4\xaf\x03\xda\x55\xba\x58\xa9\x1b\x69\x24\x07\x51\x34\x3a\xc7\x16\xc6\x58\xa6\xb1\x3d\xe5\xb3\x59\x8e\xf4\xe6\xed\xe9\x5b\x6e\x29\x30\x5c\x7e\x84\xd4\x97\xfb\x9d\x09\xbe\xe0\x4c\x56\x35\xf1\xcb\xed\xd8\x3c\xd2\xc1\x5e\xcc\x39\xfe\xea\x60\x31\x95\xd9\x9e\xc0\x80\x37\x3a\xa0\x01\xcf\xf4\x01\x07\xb9\x81\xf6\xa9\x80\xa5\x4a\xae\x19\xb4\x6e\x95\x91\x4c\x14\x59\xd1\x0d\x5a\xf7\xd5\x11\x06\x8e\x6c\xf1\xaf\x0e\x42\x9b\x31\xaf\x06\x36\xd7\xce\x3c\xa7\x9c\x75\x11\x46\xb7\x12\x95\x25\xe4\x46\x41\xe9\xa4\x8a\xb6\x5f\x30\x94\xd1\xbb\x3d\x9b\xba\x42\xae\x1f\xce\xa7\x8d\x55\x42\xf1\xd3\xe7\x54\xa9\xd8\x5e\x2d\x3a\x9e\x19\x75\x3b\x12\x76\x1f\xee\x13\x5a\x94\x52\xad\x59\x26\x4e\xc8\xff\x8c\xff\xab\xfd\xc9\x87\xd1\x5d\x11\x63\x31\xe2\x42\x8f\x64\x36\xc2\x19\x9a\x7a\xb2\x97\x9f\xbe\x08\xb9\xbf\x70\x79\x59\xbe\xd4\x81\x96\xfd\xe4\x2b\x8b\x99\xe4\x86\x79\xcc\x05\xa9\xb0\x51\x30\x54\x3e\xd7\x09\x33\xb2\x32\x2a\x5c\x76\xae\xf6\x31\x0b\x69\xa9\x15\x55\xfa\x9d\x59\xba\xdf\x95\x9d\x1d\x14\x37\xb6\x8b\xad\x74\x33\xdb\x1e\x6c\x65\x05\x1a\xb3\xb5\x3b\x3d\xf7\x94\x90\x17\x1d\x68\x58\xf8\x01\x50\xd4\x54\xae\x76\xb2\x5e\x31\xc5\x48\x46\xc5\x92\xa9\x63\x67\xb6\x83\x1a\xcb\xad\xa5\x7d\xf1\x53\x29\xe9\x65\xaf\x0e\xb8\x8d\x10\xca\xca\x41\xc0\xda\xc0\xec\x34\x1d\xb2\xf2\x02\xcf\x00\x05\xb8\xbe\x14\xac\x93\x02\xe0\xa3\x7b\x51\xb0\x8e\xbd\x97\xe4\xad\x46\xc1\x66\x48\xc3\x66\x96\x8a\xcd\x90\x8e\xcd\x0c\x25\x6b\x95\x79\x06\x5a\x06\x9f\x5e\xb4\x4c\x3d\x42\x4b\xee\x56\x8e\x5b\x2d\x7d\xe5\x27\xa8\x1c\x93\xe7\x8a\x31\x67\x22\x03\x52\x46\xd7\x69\xc2\x88\xda\x0a\x4d\x1f\x42\xf5\x5d\xfd\xcf\x6c\xd6\xaa\x5b\x5b\x19\xb2\x49\x77\x6e\x1f\xdb\x59\xc6\x3c\xd5\x5a\x66\xbb\x2a\xb3\xb9\x6e\x97\x52\x33\x98\xdb\x60\x4f\x07\x10\x6c\xd6\x8c\x73\x1a\x74\x70\x05\x04\x8f\xc7\x4d\xda\x47\x9f\xb3\x44\xde\xbf\x38\xaa\x2e\xd9\x03\x36\x42\x95\x70\xad\x58\xb2\x70\xce\xe9\x0e\x38\xa0\x31\x0c\xcc\x9c\xb7\x2b\x46\xf4\xbd\x04\x5c\x83\xea\x4b\xee\x37\x24\x10\x86\x09\x6d\xcb\x92\xe8\x1d\x67\x77\x25\xdc\xee\x5d\x68\x57\x69\x7e\x65\x9e\x96\x84\xbb\x41\xd3\x82\x7d\xbe\x9b\x27\xdc\xaf\x64\x62\x0f\xe9\x04\x8e\x68\x36\x2b\x19\xf2\x1f\x81\xba\xfc\x6e\x45\xd5\xf3\xf5\xf6\x13\xc4\x5c\xbe\x00\xba\x63\x89\x7c\xd7\x75\xb6\x15\xfe\x9d\x15\x02\x90\x0c\xd7\x87\x11\x31\x65\x42\x4e\x6c\xe6\xed\x89\x6f\x30\x5e\x2c\x21\xf0\x03\xa8\x34\xfa\x94\xe6\x2c\x81\xe5\xba\x95\xa2\x11\xd5\x6e\xa9\x37\x62\xe0\x96\x1b\x77\xbc\xbb\x29\xb3\x8a\xa6\x3e\x25\xe5\xa7\x7d\xbf\xc5\x96\xba\xb6\xd3\x75\xc9\x05\x60\x1e\xa6\x49\xa1\x38\x65\x4d\x09\x09\x90\x56\xdb\x7c\x00\x7c\xc9\xc5\x4e\xba\x17\x2f\xa4\x18\xd9\x10\x26\xeb\x0f\x23\xf7\x2b\x96\x31\x6b\x17\x59\xc8\x6c\xcd\x7c\x23\x05\x44\x4c\xe1\xe8\x3d\x8c\x76\xbb\xa0\xf1\xea\x0d\x3d\x81\x12\x5f\x8d\xb4\xdc\x43\xf6\xaa\x06\x5b\xfe\x72\x32\x58\x8d\x2c\xb7\x8f\x19\x30\x79\x52\x92\xca\xd8\xa5\xc4\xa1\x0b\xa4\x20\xd1\x3d\xc2\x42\x8b\xc0\xd0\x56\x6c\xeb\x9d\x03\xe2\x3b\xec\x9b\x3f\xbb\xf9\x61\x9f\x0f\x6e\xf2\x18\x90\x77\x0f\xd9\x64\x69\x0e\x80\xbd\x17\xb4\x89\x17\x8a\x7b\xbf\x92\x0a\xcd\x92\x66\xfb\x56\x04\x34\x02\x70\x67\x72\x45\x1f\xe1\x8e\xec\x95\xb4\xd2\x53\x52\x22\x7d\xa5\x25\xb2\x7b\xbf\x3a\xe5\xa5\xff\xbb\x27\x5d\xd1\x95\x4a\xab\x1b\xd2\xfd\xa2\x89\x41\x43\xaf\xb0\xea\xa7\x74\x43\x80\x77\xe1\xc6\xf7\x2a\x94\xba\x88\xed\x2c\xc0\xb6\xe6\xfb\xee\x41\x4f\x2f\xcf\x0f\x7b\xe4\xf4\xec\x67\xd1\xea\xca\x80\xb2\x50\xdc\x4b\x3f\xb6\x54\xba\x8d\x5e\xf4\x93\xba\xf1\x4d\x74\x10\x17\xf4\xd2\x2b\x91\xe9\x26\x82\xa0\xd3\x32\xe0\xb4\x87\x67\xa6\x55\xe8\xae\xa3\x57\x5f\xa9\x3b\xe0\xce\x72\xf0\x7b\xae\x5e\xd4\xc5\x6f\x0c\xa7\x31\xab\xe9\xb2\x95\x1d\xc3\xaa\xa0\x11\xbb\x5b\xc9\xa1\x02\xed\xd6\x6a\xcc\x0e\xde\x51\x11\x16\x52\x00\xa3\x0b\x16\x55\xcf\x96\xb9\x39\x0e\x59\x8f\x7c\xd1\xfd\x68\xd7\xa3\xd0\x01\xe6\x4b\x66\xc4\x5f\x67\xec\x95\x59\x9d\x77\xe3\xd2\xd1\x94\x62\x00\xe1\x2c\xa1\x1d\xde\x4a\x83\x4f\xe6\x00\xfd\x3d\xa2\xdd\xa8\x80\x82\x14\x2e\x90\xc0\x06\x76\xb4\x8b\x2c\x7b\xb1\xcd\xfd\xb9\x66\xb1\xcc\x32\x87\x1a\x5d\xf2\xfd\xd3\xab\x88\xdb\x9b\xe7\x83\x7f\x22\x22\xd0\x2f\x55\xbc\x61\x6b\x98\x30\xbe\xbb\x3f\xfc\x3e\x5c\xe0\x76\xf7\x83\x54\xd6\xee\x10\x6e\x72\xc2\x16\xda\xf5\x5a\x2c\x78\x08\xdc\x9e\x1e\x46\x1a\xe2\x5f\x44\xe8\xf4\x62\xd4\xf3\x43\x55\xae\xec\x17\xa5\xa0\xdd\xcf\xac\xb4\x0e\xf5\xbf\xc3\x4f\x35\x07\xf9\xf6\x76\x5a\xfa\xeb\x1b\x83\x18\x0c\x96\x98\x47\x9b\x97\x5e\xc4\xa3\x7f\x56\xfc\xc2\x9a\xe9\x95\x8c\xf7\xe0\x0c\xef\xf1\x85\xa7\x95\xda\x71\xcb\x48\xd4\x71\xdf\x5e\xa8\x9c\x19\x13\x9b\x47\xb1\xce\x1a\xa2\x4e\xae\x63\x31\x8e\xe2\x56\xfb\x9c\x8d\x97\x63\xf2\xc3\xc5\xed\x11\x99\x7e\xb8\x3d\x22\x4c\x47\xe3\x17\xe4\x7d\x9e\x68\x9e\x76\xf9\x39\x2c\x88\x80\xef\x5f\x5d\x1f\x1a\x35\x6c\x09\x49\x96\xbf\x2e\xbf\x55\x4a\xf5\x6a\x8f\x73\x3c\x9c\x9a\xe7\xbf\xc4\x31\x76\x9d\x60\x37\x45\xf1\x4f\x10\x96\x39\x2e\x8e\x0a\xb7\xe9\xce\xa2\xef\x61\x10\xc2\xc6\xcb\x13\x32\x22\xec\x81\x46\xfa\x84\x1c\x2f\xa4\x24\x23\x1b\x24\x76\x42\x8e\xe7\x34\x23\x97\x57\xb7\x17\x27\x18\x80\xc6\x84\xce\xb6\x64\xdd\x25\x9e\x5f\x5d\xbe\xfb\x8b\xa5\x9c\x5b\xc2\x38\x18\x60\x28\x99\x1d\xc0\x24\x68\x45\x36\x7f\xe2\x2c\xce\xd6\x31\x26\xb7\x5d\xdb\xdf\xd0\x84\xc7\xb4\x30\xf6\x41\x62\x06\xf6\x52\xd3\xa1\xe6\x69\xe5\xa7\x0f\xce\xd5\xf2\x47\x6e\x6f\xa7\x06\xc2\x1e\x03\xa0\x02\x01\x6f\x00\xdd\x9f\x57\x4d\x34\xc4\xc7\xce\x99\x03\x84\xb5\x23\x2e\x64\xb6\x3e\x71\x60\x9f\xe5\x2f\x5f\x7e\x15\x99\x81\xe1\x5f\xec\xc4\x16\x1b\xea\x65\xf6\x42\x54\x83\x55\xc1\x70\x86\x60\x64\xc5\x11\x96\x43\x8f\x2c\xbc\x3f\x6b\x06\x1c\xa3\x23\xd4\x64\x8f\x7a\x0d\x08\x80\xa7\x55\x23\xed\xd6\x9f\x72\xd0\xbe\x05\x15\x7a\x10\xa4\xee\xa1\x78\xb4\xee\xc9\x33\x27\x67\xef\xa7\x7d\x23\x40\x80\x18\x35\xaf\xdd\xa7\x52\x5e\xff\x3b\xb3\x5a\x9b\xa3\x89\x5d\xfc\x60\x4a\xab\x60\xd8\xee\xa5\x2d\xfa\x15\x46\xe8\xef\xca\xb4\x7c\x51\xf5\x4f\x15\x7d\x14\x0b\xaf\xb9\x99\xa7\x4d\xb4\x05\x7f\xba\x79\x68\xf3\xa6\xc5\x4e\xd9\x0b\x13\xa3\xf6\xc2\x30\x75\x3e\x0f\x92\x89\x14\x3e\x94\x00\x28\x11\x76\x13\xdd\x43\x59\x83\xa4\x26\x03\x60\x8c\xca\x87\x10\x55\xe8\xd4\xea\xc3\xca\x7a\x2f\xc1\x35\xa9\x59\xb4\x12\x3c\xda\x2d\x5a\x56\xfd\x80\x59\x14\xcd\xff\x7c\x9d\x4a\xaf\x96\xf6\x9d\x11\xca\x93\x43\x45\x78\xaa\x31\x0f\x6e\xc1\x33\x76\x4f\x93\xa4\x63\xa9\x48\x2d\xac\x51\x36\x57\x18\x38\xc5\xc4\x42\x62\xbe\x80\x0d\xd1\xeb\xbe\x1a\x9d\x3e\x3c\x78\xec\xf3\x0f\xc3\x0c\x33\xc6\x58\x32\xf6\x00\x8e\xab\x2e\x17\x18\x9e\x81\x5c\x90\x6f\x31\xca\x1b\x76\x08\x63\x5d\x44\x2b\x49\xae\x91\x69\xdb\x66\x88\x29\x17\x4b\xd5\xee\x03\xeb\xb5\xdf\x1e\xc4\x20\x0d\xa7\xdb\x34\x00\x64\x32\x75\x69\x37\x9f\x1d\x18\x56\x31\x6e\xa1\x3c\xee\x43\x79\xea\x3c\x63\x8d\x50\xe8\x01\x81\x86\xc4\x89\x86\xcd\xbd\xb7\x4f\x7b\x61\xbd\x45\xa9\x3b\xc8\x07\xc9\xd6\x65\xaf\xb0\x50\x12\x4b\x75\x73\x9f\x45\x34\xc0\x18\x81\x4d\x94\xda\x3b\x07\xf4\x2d\xc6\x57\x7e\xfa\xb2\xa5\x6a\x47\xd3\x72\x3d\x36\xe1\x07\xbd\x76\x77\x6c\x6b\x51\x3b\xa5\xdc\x96\xda\x6b\x9f\xde\xa8\xac\x84\x3d\xe8\x8c\x56\x60\x4a\xe7\x32\xd7\x3d\x18\xc9\x53\x69\x8e\x42\x6a\x73\xfb\xfa\x61\xc6\x25\x3e\xdc\x11\xd1\x03\x8f\xb4\x47\xd6\x0d\x0c\x63\x60\x18\xff\xd9\x0c\x43\x48\xed\xc4\xaa\x46\xb0\xb4\x47\xdd\xf4\x8c\xb7\xe9\x17\x69\xb3\x13\x10\xea\x44\xbe\x8e\x98\x50\xfb\x58\x33\xc0\x3a\xee\x71\x8f\xd0\x9e\xc7\x05\xf5\xa4\xbf\x56\xe0\xce\x0e\x7c\xd8\x3e\x21\xef\xdf\x71\x6c\x81\x85\xd7\x97\x04\x1c\x4c\xc6\x80\xf5\x3c\x6b\xb3\xcc\xdb\xe8\x5c\x7b\xce\x17\x90\x6a\x74\x0d\x99\x72\x2e\xeb\x0b\xcd\xe6\xcf\xe7\x2c\xa2\xb9\xb2\x31\x71\x1d\xae\x84\x62\x89\x11\xcb\x60\x8c\x22\xae\xee\x05\x9a\xe2\xdf\xdb\xf4\xaf\x4a\x94\x60\x17\x8b\xc5\xf0\xc1\x13\x3f\x02\xee\xc8\x8f\x7f\xc3\x3f\x40\x53\xa9\xfc\xb5\x79\x53\xfe\x7d\x73\x76\x8b\xbf\x36\x4f\x63\x47\x7c\xc7\x35\x73\x41\x76\x54\x38\x04\x71\x4e\x59\x08\x35\x24\xaf\x46\xaf\xbf\xf9\xa6\xc5\xe4\xff\xe5\xd0\x1e\x03\x31\xfa\x71\xe3\x1b\x0c\xe7\xec\x97\x95\x46\xb4\x6c\x51\x20\x71\xa4\x21\x21\x6d\x48\x48\xeb\x76\x7b\x0e\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x35\xed\x78\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\xad\x69\x27\x03\x2d\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\xf0\x33\x24\xa4\x0d\x09\x69\xf5\xcf\x90\x90\x36\x24\xa4\x15\x9f\x21\x21\x6d\x48\x48\x1b\x12\xd2\x82\x83\x0e\x09\x69\x1e\x2c\x86\x84\xb4\x21\x21\x6d\x48\x48\xab\x7e\x7e\xc9\x84\xb4\x96\xf6\x0b\x84\x8c\x6c\x15\xdf\xd0\x6f\x7d\xda\xf8\x07\xe5\x04\x7b\x37\x1e\x51\xbe\xbb\x7a\xab\x86\xfa\xdd\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\x3b\xbc\xbc\xa1\x7e\xf7\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x95\x9f\x21\x5c\xaa\xfc\x0c\xe1\x52\x43\xb8\xd4\xaf\x2a\xc4\x60\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x2a\xf8\xf0\x7f\x18\x2d\x1b\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x2a\xf0\x19\xc2\xa5\x86\x70\xa9\xe2\x33\x84\x4b\x0d\xe1\x52\x43\xb8\x54\x70\xd0\x21\x5c\xca\x83\xc5\x10\x2e\x35\x84\x4b\x0d\xe1\x52\xd5\xcf\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\xae\x7c\x86\xfa\xdd\x43\xfd\xee\xa1\x7e\x77\xaf\x19\x86\xfa\xdd\x43\xfd\xee\xa1\x7e\xf7\x50\x8e\x75\x28\xc7\x3a\xd4\xef\x1e\xea\x77\x0f\xf5\xbb\x9b\xd7\x3f\xd4\xef\x1e\x18\xc6\xc0\x30\x86\xfa\xdd\x43\xfd\xee\xca\x67\xa8\xdf\x3d\xd4\xef\xae\x7d\x86\xfa\xdd\xcd\x0a\xe4\x50\xbf\x7b\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\x34\xff\x33\x24\xa4\x0d\x09\x69\xbf\xaa\x24\x8e\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xe0\xc3\xff\x61\xb4\x6c\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xc0\x67\x48\x48\x1b\x12\xd2\x8a\xcf\x90\x90\x36\x24\xa4\x0d\x09\x69\xc1\x41\x87\x84\x34\x0f\x16\x43\x42\xda\x90\x90\x36\x24\xa4\x55\x3f\xff\xb7\xeb\x77\x43\x51\xee\xae\xea\xdd\x57\xe6\xa1\x16\xfa\x5d\x3d\x74\x89\x4f\x07\xd7\x89\x61\x77\x58\x37\x19\x0c\x25\x66\x50\xf0\x2c\xc6\x63\xb4\x9d\x14\x96\xdf\x15\x5f\x1a\x45\x74\x76\x00\xe3\xcd\x0e\x80\x5d\xda\x67\x43\x43\xd3\x85\x51\xa0\x34\x08\x68\x30\x40\x22\xef\x59\x86\xab\xc1\x30\x46\x6f\x71\x8a\xc8\x35\xd7\xda\xd0\x5d\xee\x32\x60\x42\x83\x46\x52\x28\x8e\x65\xcb\xd1\xc6\x37\x3b\xe0\x62\xc1\x05\xd7\x6c\x76\x40\x46\x04\x82\xe7\xbc\xed\x38\xaa\x6e\xd7\x49\x12\xaa\xf4\x98\x14\x3b\x0b\x82\xc4\xac\x95\xc7\x4c\x68\x1e\xd1\xc4\x2e\xb0\x3e\x0e\x17\x84\x26\xe9\x8a\x8a\x7c\xcd\x32\xef\x39\xa8\x18\x1e\x1a\xd5\xd2\x72\x6b\x8e\xc2\x08\x91\xa0\x7e\x8a\xb8\x21\xf2\xf5\x7c\xd7\x52\xd8\x22\x36\xd6\x98\xfc\xad\x6f\xa6\x41\x44\xf1\x8c\x35\xb9\xb2\x3a\x27\x8f\xee\xf0\x3f\x32\x0f\xe2\xbf\x59\x72\x4d\xe9\xf6\x80\x6b\xd3\x35\x3c\xb0\x68\xe9\x78\x5e\xb3\xe9\xa0\x5c\x87\x11\x1d\x92\x44\xde\x23\x29\x40\x0b\x52\x61\x53\x41\xc1\xee\x8f\x68\x5e\xc0\xdb\xfe\x29\xe1\x9a\x65\x14\x34\xfb\xd0\xc8\xb3\x19\x19\x61\xba\x92\x41\x94\x75\x4a\x33\xae\xa4\x38\x22\x90\xb3\xe8\xcc\x02\x6e\xc8\x85\x94\x64\x4e\x33\xb0\x55\x14\xd3\xfd\x6e\xcf\xe9\xca\xf9\x0c\x67\x67\x7f\xcf\x69\xf2\x07\x8c\xb0\x75\x92\x2a\x5f\x58\x11\x95\x2b\x78\xc6\x59\xde\x8b\x29\xc3\xf7\xf2\x67\x58\x07\x2d\xe3\xc2\xe6\xe5\x3f\x23\xfc\xe7\x78\x3c\x26\xff\xf2\x56\xa0\xb3\x9c\xb9\x44\x99\x22\xd6\x14\xe7\xf8\x33\x09\xc7\xb6\x5b\x97\x43\xc7\x54\xe5\x5a\xcd\x06\xb8\xe8\xb1\xb8\xd0\x64\x7b\xae\x17\x26\x6b\x5b\x60\xf8\x48\xbc\x35\xaf\xa8\x7a\x0e\xe3\x7d\x32\xcc\xe5\x45\x39\xf5\x6d\x31\x33\xd5\xe5\xe9\x78\x27\xf3\x3b\x40\xd2\x20\xcd\xb7\x43\x14\xe6\x49\xb9\x80\x67\xc1\x3a\x05\xff\xcf\x5f\xbe\x7c\xfd\x06\xff\x8b\xbf\x14\xef\xdc\xac\x64\xa6\x47\x11\xcf\xa2\x9c\x6b\x90\xaa\xec\x4b\xa1\x89\xfe\xf9\xcf\xd6\xb7\xc1\x8f\xa1\x9f\xe3\x33\x2f\x8a\x87\x52\x9a\x31\x2b\x91\x2f\x33\x99\xa7\x46\x22\x9f\xcd\x34\x4d\x92\xe7\x41\x7f\x94\x2d\x69\x8f\x51\x29\x05\xbd\x70\xa3\x39\x1c\xa6\x49\xe2\x99\x98\xe0\x82\xbe\x43\x7c\x40\x1d\x2a\xac\x1e\x51\x73\xb5\x91\xce\xb8\x48\x4d\x9f\x64\xaa\x23\x32\x3a\x22\x9f\x00\x0e\xc7\x63\x72\x03\x57\x8e\xd8\x2b\xd7\x38\xe8\x5a\x66\x8c\xa4\x46\xfc\x57\x8a\x6f\x18\x99\x63\x8e\xc1\xd6\x99\x37\xad\xe1\x99\x30\x15\xd1\x94\x91\x68\x45\x33\x1a\x69\x96\xd9\x65\x5f\x60\xa8\x76\xf0\x32\x3c\x07\xc2\xbf\xa6\x31\x1b\xe5\x29\xa2\x85\x7a\x51\x90\x23\x48\x6c\xb3\xa4\xe3\x9e\xcd\x8d\xe2\xc0\x2c\xf1\xf0\x4f\x3c\x66\x69\x22\xb7\x6b\x26\x82\xe4\xd4\xbe\x9f\x66\x32\x76\x48\x0a\xe3\x9a\x3b\x05\x34\x29\x93\x42\x33\x11\x7b\xa8\x4e\xa3\x3b\xfb\xc5\xbf\xcc\xe3\xe5\xf8\xe4\x77\x7f\x6c\xba\x01\x31\xdb\xb8\xe1\x7f\x47\x6a\xb7\x20\x44\xca\xda\x24\xaa\xaa\x31\xb0\xc5\x5d\xdd\x62\x09\x6c\xb7\x5b\x2c\x30\x7e\xb5\x64\x0b\xa1\x6d\x39\x8e\x85\x38\x6a\x0d\x0a\xd8\x9e\x43\x0a\xb7\x48\x67\x2b\x08\xb9\x9d\xdb\xf6\x08\x4e\x87\x1e\x3c\x15\x7c\x13\x5c\xc4\x3c\x02\xd5\xf3\x7e\x05\x09\xd3\xbe\x20\xeb\x47\x65\x59\x2d\x27\x48\xa7\xcc\xbd\x93\xb6\x81\xc7\x91\xfd\x6b\x2e\xf5\x6a\x4c\x30\x50\x12\xb8\xc9\x43\x6a\x84\x14\x9d\x6c\x3d\x5d\xea\x39\x34\x1f\x09\x46\xc0\x7a\x74\x54\x90\x28\x63\x36\x3f\x43\xd9\xdb\x2d\x33\x22\x78\xf2\xe2\xc8\xe5\x58\xc4\x6c\x41\xf3\x44\x2b\x82\xdb\x32\xa0\xcb\xe2\x06\x91\x5a\x4b\x72\x6f\x68\xe5\xc4\x2a\x6e\x66\x11\x17\xf6\x9f\xe6\x3e\x5a\xca\x59\x74\xe0\xc0\x78\x3f\x30\xad\xdb\x69\x42\xa3\x72\x85\xb7\x6b\x44\xfe\x6a\xe5\x22\xb3\x14\x37\xc7\xdf\x8e\x2c\x73\x30\x52\x26\xb8\x0d\xdc\x94\xd8\x27\xe5\x39\x17\x51\x92\x37\xae\x78\xc5\x48\x44\x8d\xe4\x09\x03\x94\xc3\x10\x64\xcf\x42\x16\x9b\x81\xe1\x5e\x04\x56\x72\xd1\xd8\x7f\xa5\xbe\xb6\xca\xc2\x0c\x49\xaa\x0f\xdf\xbc\xcf\x20\x7a\xd4\xd7\xb0\x33\x21\x58\xb0\x02\xa7\x61\x35\xea\x20\x5d\x10\x88\x5a\x55\x59\x3f\x63\xd4\xdc\xa3\xe8\x8e\xd0\x25\xe5\xe2\xc8\x62\x03\xba\x3d\x92\x7b\xba\x55\x36\x0a\x3e\x88\xc5\x2e\x5a\x01\xc3\x14\x8e\x88\x60\x1b\x96\x55\xf0\x2d\xa8\xdd\xf7\x6c\xef\x53\x42\x81\x30\x60\x1a\x85\x43\x2f\x95\x4a\xf1\x79\xe2\x26\x2e\xe3\xb0\xcc\x0b\x37\x29\x8b\xc2\xfa\x1e\xee\xad\x39\x32\xad\x5d\xb3\x6c\x54\xda\xc2\xba\xde\xee\xb7\xc0\x33\x62\xdf\xdf\xae\xb4\xcc\xe8\x92\xb9\xaf\x94\xa6\x3a\x47\xc0\xa0\xcb\x89\xc5\x97\x9e\x33\xe0\x8e\x8b\xd8\xd0\x21\x07\xd2\x34\xc9\x33\x9a\x94\xdf\x44\x52\xa0\x07\x58\x9d\x90\xbf\xfe\xcd\x7c\x63\xc6\x67\xb1\xcd\xf0\xb4\xdf\xce\xc4\x68\x34\x9a\x09\x9a\x72\x97\x28\x4a\x68\xca\xd9\x83\x66\x02\x9e\x1a\xdf\x7d\xab\xc6\x5c\x1e\x6f\x5e\xcd\x04\xce\x78\x96\x2b\x2d\xd7\xd7\x0c\x5d\x59\xe7\x0c\xd4\x2d\xa0\xd3\x95\x74\x4c\x30\xc0\x10\x81\x21\xaf\x8a\x69\x35\x8e\xb2\x78\x9c\x66\xd2\x40\x20\x02\xa2\x33\x96\xd9\x72\x26\x0c\x35\x83\x37\x40\x44\x39\x21\x0d\x8f\x55\x3d\x21\xb8\x94\x32\x2e\x17\xbf\x4d\xb8\xd2\x7f\xaa\xfd\xf2\x8e\x2b\x5d\x05\x90\xb7\x26\x0b\x77\x2e\x96\x79\x42\x33\xff\x27\xf3\x0b\x10\xb2\x6c\xc3\x3e\x88\x3b\x21\xef\xc5\x5b\x83\x29\xea\x84\x2c\x68\xa2\xe0\xc4\x54\x24\xcd\xa1\x16\xd6\x15\xd0\xf4\x36\x0e\xbc\xe6\x8f\x91\x05\x83\x81\x1e\xcc\x14\xad\xd8\xba\x4c\x57\x95\x29\x13\xa7\xd3\xc9\x4f\x5f\xdd\x54\xbf\xdf\x0d\x8c\x75\xe1\xc7\x36\xc4\xab\x9c\x72\xc4\xfe\x9e\xf3\x0d\x4d\x0c\xc1\xb5\x78\x5f\x8f\x59\xf6\x90\xbb\xc1\x7c\xe6\x9d\x7e\x15\x97\xab\x55\x2d\xcc\x52\x6d\xf4\x00\x46\xdb\xe3\x62\xec\x8e\x59\x6c\xb7\x87\xeb\x00\x6a\x62\x59\x01\x0d\xd9\x45\xe4\x02\xb8\x3f\xdc\x88\x31\x88\x08\x2c\x53\x4e\x89\x8c\xa4\xd8\xb0\x4c\x93\x8c\x45\x72\x29\xf8\x3f\x8a\xc1\x95\x8b\x67\x80\xee\x5e\x3b\x8c\x84\x0b\xcd\x32\x23\x4c\x00\x29\x40\xab\xed\x9a\x6e\x49\xc6\xcc\x34\x24\x17\xde\x80\x2e\x9a\xea\xbd\x11\x22\xb9\x58\xc8\x13\xa8\x37\xa4\x4e\x8e\x8f\x97\x5c\x3b\xc4\x8f\xe4\x7a\x9d\x0b\xae\xb7\xc7\xe0\x61\xe5\xf3\x5c\xcb\x4c\x1d\xc7\x6c\xc3\x92\x63\xc5\x97\x23\x9a\x45\x2b\xae\x59\xa4\xf3\x8c\x1d\xd3\x94\x8f\x60\xed\x02\x6e\xde\x78\x1d\x3f\xcb\xec\x4d\x51\x87\x21\x3a\xb1\x4b\x5e\x00\xb5\xdb\x8e\xc1\x60\xb8\x4d\xd2\x45\x29\x19\xd9\x7c\x01\x6d\x17\x4a\x72\x7d\x71\x73\x4b\xdc\xec\xc1\x84\x66\x04\x7e\xf9\xa6\x2a\xcf\xc1\x00\x8d\x8b\x85\x93\x67\xc0\xa8\xed\xab\xff\xc8\x52\x13\x1e\x10\x6d\x55\x3e\x5f\x73\xad\xbc\x42\x35\x72\x4c\xce\x0a\x6b\x77\x9e\xc6\x54\xb3\x78\x4c\x26\x82\x9c\xd1\x35\x4b\xce\xa8\x62\x5f\xfc\x14\x40\xa8\x1b\x19\xd8\xf6\x3d\x87\x86\xe4\xf2\x26\x53\x5e\x41\xc6\x1a\x8e\xad\xbc\x8f\x86\x23\x55\xb3\x9b\x5c\x32\x5c\x99\x7e\x4e\x77\x68\x5b\xf9\x71\x47\x5a\x63\x5a\x2d\xa6\xf1\x86\x38\xfc\x9d\x16\x80\x2e\x54\x70\x32\x2d\x28\x21\x6a\xc5\x73\x96\x48\x83\x55\xd2\xda\x66\x58\xc8\xa1\xda\xcc\xc7\x7f\x13\x9c\x14\xf8\x28\xfc\xe7\x99\x4d\x61\x3b\x21\xc8\xc0\x8e\x35\x5b\xa7\x40\xaf\x8e\xf1\x0b\x88\xbe\x2b\x23\x36\x32\x35\xca\xe6\x34\x1a\x6f\xe9\x3a\x99\x89\x9f\x7f\xe6\x0b\xc2\xfe\x4e\xc6\xd7\xdf\x9f\x9e\x9d\x49\xb1\xe0\x4b\x32\x3b\x30\x0f\xcc\x0e\xfe\xf5\x2f\x33\xfa\x04\x44\x5d\x46\x28\x89\x92\x5c\x69\x96\x65\x32\x61\x45\x43\xba\xfa\xd8\x60\xfb\x92\x82\x09\x7d\x64\x5e\x86\x96\x76\x40\x41\xb4\x23\xa5\x0d\x8b\x72\x7a\x54\x19\xce\x60\x05\x00\x9c\xf4\x5a\x26\xac\x2a\x38\xc0\x26\x68\xae\x57\x32\xe3\xff\xc0\x50\x2e\x4f\x7a\x08\x48\x07\x0d\x13\xcf\x04\x08\xae\xf0\xe0\x33\x72\x29\x63\xb4\x2a\x90\x7b\x1b\xb1\xa5\x25\x59\x4b\xc1\x21\x32\x59\x66\x24\x66\x09\xc3\x7b\x8e\x2c\x97\xa6\xfc\x07\x23\x4a\x98\x73\x31\x47\xf8\x37\x3c\xd5\x82\x0e\x17\x28\x3a\x22\xc2\x8c\x8d\x7f\x6e\x58\x36\xf7\x7f\xba\xf7\xbd\x17\x23\xb8\x1a\xe5\x5f\x4b\xbc\x95\xcf\xc8\xd4\x55\x30\xf3\xd6\x56\x16\x96\x62\x0f\x5c\x69\xe8\xf7\x48\x15\x49\x69\x66\x2f\xd7\xe9\x7b\x52\xee\x76\xff\x45\xa7\x32\x6e\x58\xf3\x92\xe9\xa6\x15\x17\xdb\x79\x86\x0b\x28\x06\xb6\xf9\x6d\x82\xa7\xd0\x30\x13\x6c\xd9\xd8\x9d\x53\x81\x0b\xcb\x80\x08\x91\x26\x91\xd1\x9d\xa5\xde\xea\xc8\xec\xe8\x9e\x19\xb5\x40\x91\x94\x65\x5c\xc6\x3c\x22\x3a\xe3\xcb\x25\xcb\xc2\x07\x11\x96\xeb\xda\x36\xca\xad\x00\x86\x75\x29\xc2\x5b\x76\xbb\xfc\xfc\xd9\x60\x7f\x74\x81\xe2\x6c\x69\x13\x32\xcb\xa0\x6b\xf8\xb1\xf6\xdd\x8a\x8a\x38\x69\x42\x9f\x96\xa3\x00\x65\x9c\x95\x7f\x23\x48\xcb\xbf\x01\x9f\x59\xf0\xe8\xa6\x52\x26\xbb\x77\x81\x72\x6b\x4f\x23\x6b\x9a\x82\x91\x4f\x2e\x70\x3b\x58\x54\x60\x4a\x52\xf3\xde\x93\x9d\x0a\x8c\xd6\x7e\x1c\x3b\x2b\xdf\x21\x2e\x6b\x2a\xe8\x92\x29\xb2\x92\x4a\x7b\x01\x6b\x4f\xb2\xc4\xca\x98\x5f\xf0\x7c\x9e\x91\x4b\xc6\x62\xb0\x96\x18\x75\x5b\x4b\xfb\xac\xa3\xcb\x5e\x01\x94\xa7\xda\x5a\x60\xe4\x27\xdf\xa0\x77\x6c\x7f\xca\xe7\xec\xac\x3c\x35\x64\x47\x79\x56\x18\x93\xd0\x9e\xc2\xb5\x99\x4e\x11\x23\xf5\x45\xf0\xc8\xd3\x6c\xd6\x20\x8d\x87\x33\x91\x3f\x7b\x70\xdb\xcf\xd0\x82\x61\xd6\x21\xef\x85\xb7\x96\x1d\x98\x3c\xb3\x50\x20\xd4\xd9\xa4\x08\x5f\x10\x21\x05\x43\xaa\xad\x9a\xc0\xf5\xcc\x9d\x31\x0a\x15\x4d\x50\x7c\x86\x50\x04\x36\x10\xad\x2a\x79\x15\x05\x80\x41\x58\xd8\xe1\xa9\xdf\x73\x81\x66\xac\x2f\xc4\x5a\x65\xc2\xae\x19\xe6\x28\xb8\xf3\x69\x19\xdf\x3c\x16\x60\xfb\x9d\xd3\xa8\x1c\x04\x34\x73\x34\x23\x3b\x40\xd5\x0a\xdc\x63\x0c\x3f\xde\x01\x09\x88\xda\x2a\xcd\xd6\x16\x72\x85\xb4\x75\x4d\x45\xb4\x62\xd9\xc8\x89\xd1\x27\xe4\x0c\x20\xee\x0b\x37\xc0\xc6\xbc\x2d\x60\x6c\x87\xe1\xd6\x68\xff\x84\x3e\xcb\x34\xba\xbb\xa7\x59\x8c\x22\x13\xd5\x7c\xce\x13\xae\xb7\x7d\x04\x3a\x33\xbc\x2f\xc4\x75\x09\x69\xfe\xaa\xce\x29\x5b\x4b\x71\xc3\xba\xe4\x33\x78\xf8\x17\x92\xc9\xaa\x22\xd8\x07\x65\x1b\x1e\xa3\x1d\xb9\x8c\x83\x2d\xc3\xf1\xe4\x1d\x13\xca\x3a\xe1\x73\xaf\x02\xd0\xd9\xe5\xc4\xc8\xd3\x4b\xf4\x6b\xee\x25\xe7\x54\xb7\xaa\x8e\x61\x8e\xea\xe3\x97\x95\xe0\xd8\x11\x89\xa8\x70\xc5\x8a\xea\xf4\xb0\xbc\xc5\xcf\x40\xd7\x29\x17\x46\x04\x10\x71\x2d\x0d\x7d\x00\xe9\xea\x08\x05\x43\x34\x1f\xf8\x39\xd1\x8f\x17\xd5\x6a\xd2\xa6\x33\x0d\xe1\xc0\xad\x14\xfc\x19\x71\xc9\xe6\x37\x09\x77\x02\x5b\xee\x4e\xc4\x5e\x2a\xdb\x9b\xdc\x6a\x6d\xce\xa2\xeb\x4a\x6d\x3d\x73\xa5\x93\xd6\x2e\x5b\xa2\xbe\x8b\x98\xab\x48\x6e\x58\xb6\x75\xd7\xbe\x6d\x57\x05\x6b\x85\xf5\xec\x25\x3e\xef\x05\xbd\x9d\x48\xbe\x02\x27\x1a\x88\xff\x07\xeb\x16\x72\xbb\x29\xd0\x74\x32\x45\x2f\x28\x8d\x37\x46\x45\x56\x25\x20\x5a\x57\xdb\x30\xea\xed\x36\x5d\x51\x35\x0e\xab\x03\xe4\x6c\x72\x7e\x4d\x68\xae\xe5\x28\x66\x9a\x61\x73\x7b\x29\x80\x7e\xd1\x78\x6d\x91\xad\x94\x18\x90\x47\x19\xc9\xed\x11\xf8\x85\x2f\x9b\x77\x5b\x51\x68\x7f\x9d\xe8\xd8\xe7\x6e\x75\x30\x1b\xa1\xc7\x11\x84\x84\x51\xb0\x41\x19\x2d\xcd\x9a\x2c\x3e\x08\xba\xa1\x3c\xa1\x73\x43\xef\x12\xba\xf4\x00\x95\xfa\x70\x7e\xe6\x7c\x4f\xa0\x4d\x2b\x4c\x20\x8c\xaa\x12\x86\x57\x41\xce\x5c\x54\xd4\x45\x8a\x52\x75\xe3\x10\xf7\x7d\x46\x3e\xd6\x39\xaf\x81\xb3\x17\x89\xea\xd7\x61\xe0\x0d\xd7\xda\xde\x24\x2e\x96\x7d\x6e\x84\x7d\x3a\xad\xc4\x11\xf5\xbc\x12\x16\xc1\xe6\x5b\x07\x0e\xb3\x70\xe7\x92\x29\xf7\xff\xd9\xc4\xa7\x46\x6d\x02\x14\x76\x4f\x91\xbe\x46\x45\x53\x97\xe1\x23\x63\x87\x3e\x8f\x5b\x73\x0b\xee\x79\x18\x54\x60\x8f\x35\x05\x28\xb2\xa1\x19\x97\xb9\x22\x67\xd7\xe7\x78\xdb\x11\x97\x9e\x48\xf0\xc6\xb2\x24\x0b\x96\xf0\x07\x1c\xd7\x83\xa3\xf7\x6d\x55\x3a\x05\xbd\x72\x99\xa6\x8c\x65\xaa\x3e\xd4\x7c\x99\xee\x0c\x54\x7c\xb7\x3b\x4c\x45\xed\x6a\xd2\x8e\x9b\xd4\x55\x9c\x31\x88\xa5\x3b\x3f\x2b\xe6\x13\xdc\xc6\x77\x82\x4f\x37\x6a\x27\x0d\x5a\x59\xab\xde\x8d\x07\x03\xe4\x08\x10\xe2\x11\xaa\xf6\xfd\x2e\xb6\xe4\x4a\x17\xa2\xbf\x88\x0b\x61\xde\xd0\x1e\x40\x1c\x29\x8c\x64\x9f\xe9\x3c\xfd\x12\xfa\x72\x27\xb6\xf4\xd6\xef\x9a\x95\xb8\xea\x5e\xeb\x1b\x0c\xec\x8a\x34\x6e\x8b\xb4\xf1\x9e\x9e\xc7\x13\x58\x58\x3f\x82\x6f\x63\x24\xcd\x0c\x4f\x6a\xd9\xeb\x87\x2f\xb7\xe0\xca\x76\xb1\x45\x52\xa0\xdc\x05\xe1\xec\x2e\x0c\x18\x88\x4c\x9e\x2e\x33\x1a\xdb\xe4\xcc\xcd\xeb\xf1\x1b\x94\x1a\x23\x2c\xe3\xf4\xcc\xc8\xc3\x19\x5b\xcb\x0d\x8b\x6d\x08\xac\x7b\x41\x66\x66\x87\x8b\x8c\xa9\x15\xe1\x42\x69\x9a\x24\x4f\x6a\x29\x68\xa1\x25\x55\x92\xd4\x17\xb3\x7a\x5b\xb7\x77\x95\xa1\xb7\x09\x15\x82\x25\x55\x35\xe5\x19\x99\xe6\x90\xaf\x08\xa0\xf3\x9c\x3e\xab\x7c\x3e\x8e\xe4\xfa\x38\x92\x19\x93\xea\x78\x81\x2f\x1f\xcf\x13\x39\x3f\x5e\x53\x33\xc0\xf1\xb9\x8c\xf2\xb5\xf3\x2c\x1e\x83\x6e\x68\x1f\xb3\x13\x9b\x79\x9f\x5a\x35\xb2\x33\xf8\xba\xd1\xd3\x1a\x6e\x9f\x0a\xc3\x1b\x90\xfa\x49\xc5\xc0\x82\x15\x5b\xa4\xf8\xde\xe8\xac\x90\xce\xba\x7b\xd6\xa5\x22\x2b\x68\x52\xb3\x03\x84\x54\xd8\xa7\x32\x81\x08\x9a\x8c\xca\x43\x7b\x52\xc3\x47\x31\xec\x5e\x86\x0e\xab\x9d\xb6\x9a\x35\x7e\x01\x7b\x46\x7f\xb0\x36\x1f\x4d\x23\xc0\x0b\x03\xc2\x17\x30\x34\x3d\x2d\xb8\x7f\xfe\x99\x89\xf8\x5f\xff\xda\x8b\xae\x15\x24\x0d\x6a\xb0\xac\xa9\xe0\x0b\xa6\xb4\x23\xe0\xca\x43\x73\xeb\xe1\x65\x59\xe1\x2b\x01\xf3\x8e\xaa\x99\x45\x30\x60\xcb\x29\xee\x56\x1b\x94\xc2\x3c\x0b\x49\x64\x48\xf0\xe0\x21\xf3\x04\xcb\x50\x0b\x02\x73\xbf\xa7\xd3\x58\xb9\xa1\xb8\x4d\x85\x51\xa9\x1e\xdb\x93\xaa\xd6\xfb\xd2\x06\x2f\x62\xc3\x60\x9d\xdb\xf4\x5b\x35\xa2\x69\x5a\xbc\x58\x78\xc0\x6b\x79\x09\x10\x37\xfc\xce\x7f\x73\xf7\x5d\x62\xb9\xcc\x8d\xce\xa8\x66\xcb\xed\x89\xf5\x83\x8e\x3f\x54\xbe\x36\x87\xf5\xf3\xcf\x44\xcb\xbf\xd0\x75\x52\xff\x91\xfc\x93\x70\x11\x33\xa1\xc9\xd7\xf8\x1c\x4b\x14\x33\xff\x22\x85\xd7\xf8\x5a\x26\x09\x17\xcb\x0f\x9e\xa9\x36\xf3\xbf\x2a\xd6\xb7\xa6\x0f\x9e\x1a\x7b\x42\x5e\x79\xd8\x42\x88\xc3\x0c\xb7\xc1\x7a\xa4\x40\x52\xdd\x6c\x68\xbb\xb5\x80\x01\x73\xa6\x81\x68\xda\xb2\x4a\x8b\xb9\x90\x52\x9d\x90\x84\x8b\xfc\xc1\x01\xe7\xd2\x7b\xcb\x6d\x94\x90\x9f\x7f\xb6\xe5\x5e\xff\xdf\xdd\x11\xf9\x7f\x1b\x72\xf2\xc7\xea\x93\xa4\x7c\x14\x1e\xfe\x7f\x77\xe4\x5f\xff\x3a\x21\xb3\x03\xf3\xef\x8d\xf9\xf5\xc0\x1b\x8a\x89\x98\x58\x70\xba\xed\x9b\x8f\x11\xe6\xad\x1e\x5d\x2d\x19\xa3\x65\xc2\xb2\x9d\xca\xf6\xcf\xc8\x7b\x7a\xc7\x88\xca\x33\x77\x3d\xc0\x61\xa0\xa2\x15\x8b\xf3\x04\xc3\x76\x69\x92\x20\xd7\xf1\x62\x0b\x46\xb6\x18\xc3\x09\xb9\x94\x37\xf6\xe1\xf2\x57\x88\xa0\xca\xa8\x81\x19\xb9\xa8\x58\xed\x71\xc6\xec\xce\xc6\x07\xc6\x98\x65\x1c\x65\x1c\xb3\x78\x68\x1c\x8f\x6c\xa4\x45\xc6\xec\x22\x8c\xaa\xef\x4f\x7c\xc7\xb6\x27\xe4\xcc\xbe\x71\x1a\xc7\x52\xa8\xab\x5a\xfe\x67\xf3\xec\xfe\xba\x2f\x1e\x58\x94\xeb\x5e\xcb\xee\xf2\xfd\xe3\x53\xd5\x20\xec\xcb\xea\xe5\xc5\x61\x2a\x67\xf5\x8c\xbc\xe7\x82\xaf\xf9\x3f\x18\x89\xe5\xbd\xd0\x7c\xcd\x48\x9c\x83\xd9\x86\x3a\xfc\xf7\xc5\x52\xe7\x50\xff\x03\xd1\x2c\x49\x7c\x2a\xa3\x25\x89\x25\x74\x5f\x02\x73\x62\x39\x81\x7b\x65\x76\x50\x86\xef\x54\x91\x37\x96\x91\x3a\x8e\xa4\x88\x58\xaa\xd5\xb1\xab\x51\xa9\x8e\x41\xe3\x4f\x65\x7c\xfc\xcc\xa5\xf1\x72\x29\x46\x72\x31\x32\x3f\x14\x07\xe2\xfd\xf6\x43\x46\x23\x36\x05\x97\xf3\x0d\x8b\xa4\x88\xd5\x09\x79\x59\xae\xc4\x32\xcf\xb2\xc0\x34\xda\x80\xdc\x03\x69\xc6\x65\xc6\xf5\xf6\x2c\xa1\x4a\x21\xe8\x7e\xfe\x99\x8c\xcf\x28\xb4\x58\xa8\xfd\x46\xfe\x59\x38\x87\x66\x07\x48\x05\x51\xb8\x75\x88\x34\x3b\xf0\x2e\x93\x51\x60\xcf\x1c\xd1\xaf\x22\x3f\x30\x8b\x82\x21\x54\xb9\x85\x61\x05\x73\x2e\x68\x56\x49\x40\x43\x47\x80\xf9\xad\xc6\x1a\x16\x3c\x81\x90\x6e\x60\x0e\x85\x6e\xe4\xb0\x0e\x29\xb9\x1d\x7f\x14\x09\xee\x63\x1d\x5f\x43\x4c\xcc\xcf\x3f\x8f\xcf\x2e\x27\x13\xf3\x87\x4f\x09\xec\xef\x46\x26\xc7\xc8\xd9\x13\x32\x59\x40\xc9\x75\x88\x0d\xf3\x1f\x8c\xe4\x7a\x4d\x0d\x97\xf9\xeb\xec\xe0\x58\xa6\xfa\x38\x12\xfc\x78\xce\xc5\xb1\x9d\xb8\x10\x2c\xf1\xc3\xc4\xe6\x6d\x26\xd7\x95\xd0\x20\x67\xbb\x7c\x4f\x53\x27\x24\xf8\x9f\x67\xe4\x14\x52\xc1\xfe\xf4\xe1\xfb\x8b\xeb\xcb\x8b\xdb\x8b\x9b\x4f\x37\x17\xd7\x3f\x4d\xce\x2e\x3e\xfd\x78\x75\x73\x0b\xc0\x09\xfc\x36\xbd\xba\xbe\xb5\x4e\x08\xb9\x61\x59\xc6\xe3\x98\xe1\x35\x67\xdf\x4f\xdf\x92\x75\x15\x5c\xf8\x41\x90\x79\xf5\xb0\x9c\x8d\x79\xe4\x8c\x15\xf5\x37\x5c\xc6\xc2\x6e\xad\x2c\x26\x36\xb5\xad\x3c\x23\x37\x4c\xdb\x2c\x73\xdf\xd8\x56\xc8\x6b\xb9\x2a\xbd\x42\x56\x3d\x2e\x85\x83\x71\x7d\xb0\x8f\x60\xfa\xb7\x92\x96\x15\x04\x94\x66\x34\x26\x72\x51\x11\x0d\xef\x57\x4c\x90\x5c\x99\x9b\xed\x04\x72\xcf\xa4\x59\x1d\xd6\xa1\xcd\xd9\xe9\xbb\xc9\xd9\xd5\xa7\xb3\xcb\x49\x01\xd0\xd3\xb3\xb3\xab\x0f\x97\xb7\x75\x08\x40\xc4\xe1\xce\x99\xe2\x07\x02\xaa\x43\x67\x5a\xfc\x38\xa5\x7a\x75\x02\x17\x74\xbc\x4b\xca\xea\x3b\xbe\xb4\x39\xd8\xee\xaa\xf8\xd7\xc0\x88\xbb\xa0\xac\x36\x6d\xe8\x72\xf2\xe9\xec\xea\xf2\xed\xa7\xcb\xd3\xf7\x17\xc1\x3d\x18\xb6\xf7\xea\xe5\x08\xe0\x39\x36\x43\x83\xea\x74\x50\x5f\x84\x33\x75\xd6\xee\x22\xa4\x75\x00\xc6\x37\xdd\xc8\xfa\x6a\x2e\x2f\x6e\x3f\x5e\x5d\xff\x09\x56\x35\xf9\x61\x1f\xb0\x16\xd7\xe5\x4f\x6c\xdb\x04\xdd\x8a\x18\x5e\xf1\x7d\xfb\x1f\x60\x6c\x91\xe0\x9f\xec\x6e\x3e\x85\x1e\x2d\xf1\xd6\x70\x7a\x40\xd6\x22\xbf\x06\xa2\xcc\xbe\x55\x28\x88\x9a\x9f\x1a\x36\xec\x5d\xd0\xcb\xab\xf3\x8b\xe6\x53\x78\x0a\x4c\x32\x8b\x09\xe1\x8f\x39\xb6\xf7\xb7\x1f\x88\xe5\xa6\x1b\x9a\x71\x23\xd2\x35\x1f\xd1\xfb\xdb\x0f\xff\xc6\x73\xd9\x30\xbd\xfa\xb4\xd6\x79\x7d\x1b\xd3\x8c\x6d\x98\xb0\xbd\xd8\x4a\x4e\x02\xa6\x13\x95\x30\x06\x61\x3f\x0b\x69\x9e\xaa\xf7\x6c\x74\x9b\xbb\x79\x77\x71\xb1\xd3\xf8\xb4\xb8\x05\x18\xd5\x5e\xc1\xfc\x8d\x4c\xf2\x35\x7b\x1f\x2a\xfb\x34\x22\x6b\xf3\x35\xc2\xff\xd8\xa0\x88\xcf\x07\xc2\x24\x36\x12\x7c\x34\xe7\x62\x14\xf3\xac\x73\x30\xa6\x23\x18\x4c\x30\x3d\xde\x49\xa0\x2e\x87\x13\x4c\xd7\x87\x53\x2c\xca\x81\x89\x4b\xa1\xd9\x43\xbd\x39\x60\x9a\xf1\x0d\x4f\xd8\xb2\x1a\x2e\x4a\x4a\x26\x6d\x98\xb8\x07\xdf\x35\x96\xae\xc2\x02\x7a\x11\x53\x8a\x66\x5b\xa0\x3d\x28\x0d\x28\x70\xe7\x95\xde\x6e\xc3\x64\xa0\xc5\x54\x9a\x50\x51\x19\x1c\x32\xd1\xe7\xe9\x82\x50\x4d\x8e\xd5\x56\x1d\x2f\xd4\x31\xfc\x29\x62\x12\x41\xe6\xc3\x6b\xf8\x29\xcb\x85\x55\x37\x8f\xf1\xeb\xb1\x2b\xf0\x65\xa9\x3d\xd7\x9c\x26\x5c\x95\xe9\x5c\x28\x5d\xc6\x95\xc9\x04\x99\x1b\xad\x94\x2d\x16\x32\xd3\x64\x41\xd5\x8a\x4b\x71\x84\x8b\x10\x92\x2c\x28\x4f\x8c\x24\x0e\x8c\x31\xcb\x64\xa6\x8e\x30\xd4\x4f\x93\x98\xab\x2c\x4f\xc1\x0d\xee\x65\x8d\x09\xd7\xc0\xa7\xce\x42\x1d\x6e\xcd\x0e\x00\x52\xa3\x79\xba\x58\xa8\x2a\x16\x95\x52\x87\x51\x42\x9e\x4a\xec\xf0\x78\x1d\x24\x47\x1e\x8c\x0c\x68\xec\x3f\xcd\xe6\x47\xb8\xf9\x9a\x28\xd2\x1b\xa5\xf1\x88\xc2\x98\xa7\xb6\x6a\xb4\xfb\xdb\x33\xf2\x3d\x8f\x79\x86\x1e\x5f\x9a\x60\x3a\x95\x35\x14\x43\xf3\x22\x50\x7e\x8a\xa4\x79\xc1\xee\x71\x42\x72\xcf\xc8\xda\x28\x47\x35\xcc\x48\x33\x99\x52\x5b\xb5\x50\x16\x94\x78\x77\x56\x25\x71\x50\xae\x89\xcc\x75\xc2\x37\x36\x2d\xa3\x8a\xc9\x3b\x62\x0f\x6e\xd6\xce\x01\xb6\x81\xca\xf2\xdb\x60\xb3\xa1\x99\x87\xa7\x61\x18\x6d\x68\x36\xca\x72\x31\x0a\x3f\xf3\x24\xb0\xda\xb9\x2a\xbf\x2a\x90\x3d\x23\x80\x65\xe4\x38\xcd\x64\x74\x6c\x6d\xdc\x52\x69\x5b\x63\x23\x57\x39\x4d\x92\xad\xcd\x81\x85\x89\xd3\x4c\x2e\x33\xba\x86\xbd\x19\xbc\x36\x2f\x8e\xc9\x44\x1f\xfa\x54\x06\xd6\x20\x14\x6a\x0c\xdb\xa3\xfa\x9c\x8e\x1a\x98\x47\xbd\x2b\x72\x84\x31\xd3\x66\x3d\x99\x94\xba\xa0\x38\x0b\xd5\x00\x49\x2d\x09\xd5\xda\x08\x34\x67\xb7\xef\xbe\x77\x4b\x33\x3a\x4c\x66\xf6\x9b\xd4\xbb\xa9\x54\x11\xc4\xad\x3e\x8c\x1a\x4d\xbf\x66\x8c\xc6\x46\xc3\xde\x15\xab\x1f\x47\xd3\xa3\xb0\x2e\x76\x9d\x0b\x55\x37\xd1\x15\xe2\x9b\xa7\xeb\x82\x24\x57\xeb\x50\xfa\xcc\x7b\xa5\x80\x49\x2d\xe8\xc6\x50\xf4\x4c\xe6\x1a\x8b\x1b\x99\x51\xfd\xf7\x0d\x0a\x04\xe8\xa7\x4f\xce\xbe\x08\xed\xfc\x6d\xeb\x60\x1f\x14\xf3\x8f\xf6\x74\x3a\x71\x86\xd8\x39\x8d\x8c\x46\x04\x5c\x1b\xdc\x92\x0d\xc2\xd3\xf9\xe9\xed\xe9\xcd\xed\xd5\xf5\xc5\xa7\xdb\xbf\x4c\x9b\x75\x89\x72\x0b\xbb\x4a\x84\x0b\x9e\x65\x88\x1e\x84\x2e\x97\x99\xab\x1b\x51\xc8\xd6\xa9\x8d\x20\x6a\x58\xc6\x87\x1b\x03\xe0\xf3\x4f\xe6\x91\xc6\x45\x00\x44\x76\xa6\xff\x48\xb9\x2e\x34\xcd\xae\xed\x7e\x3c\x9d\xdc\x7e\x7a\x7b\x75\xfd\xa9\xd8\xf7\x9e\xb3\x19\xed\x61\x6f\x85\xc1\x68\x09\xff\x16\x25\x61\xd0\xd1\x5b\x80\xd6\xad\xa3\x9f\x4b\x71\xa8\x09\x13\x20\x21\x7e\xff\xc3\xb4\x7d\xed\x56\x07\x9e\x5c\xfe\xf0\xe9\xfb\xd3\xb3\x3f\x5d\x5c\x9e\x37\xe2\x96\x90\x22\x80\x5b\xd6\x41\x84\xdd\xa5\x8d\x0e\x0e\xd5\x99\x16\x28\x82\x7b\x25\x31\xcc\xef\x0d\x2b\x79\xf7\xe1\xe6\xf6\xe2\xba\xe3\x2e\x7f\xab\x8e\xd0\xac\xba\xb3\x02\x34\x3f\x1e\x19\xc1\x58\xa1\x0d\xf2\xc8\x30\x52\x64\xed\x10\xdf\x41\x32\x36\x72\xd5\x1f\x68\x92\x94\x0d\x30\x95\xa6\xba\x61\x55\x6f\x2f\xde\x4d\xfe\xfc\x69\x32\xbd\x3d\xfd\xfe\xdd\xc5\xcd\xf5\xc5\xdb\xeb\x8b\x9b\x1f\x27\x97\xb7\x17\xd7\x3f\x9d\xbe\x6b\x5c\xe6\x9b\x97\xbb\xeb\xbb\x94\x5e\x83\x1a\x2b\x3d\x34\x1c\xca\xa4\x59\x25\x0c\xdb\x41\x9c\x45\x74\x32\xdd\x7c\x0d\x89\x25\xa5\x19\xc6\x0b\x9e\xa9\x45\xd3\x8f\x21\x34\x72\x32\x2d\x5a\x81\xd5\x47\x8e\x56\x52\x19\x36\x81\x79\xa6\x46\x1e\xa4\x62\xc9\xc6\xe8\xf9\xc4\x8c\x56\xd7\xf3\xc0\xc6\x51\xf8\x31\x13\x38\xea\x8a\x6e\x76\xc6\x15\xd2\x5a\xe2\x6d\xd7\x04\x9b\x5f\xbc\x30\x67\x62\x2b\xcf\xfd\xef\x68\x64\xbd\x67\xa3\x88\xc7\xd9\xff\xee\x5c\xe8\x1a\xfe\x4e\xa6\x3f\x7d\x3d\xbd\xba\x7a\x17\x20\xc2\xcf\x2a\x76\xa5\xef\x5e\x8f\x5f\xbd\xf9\x76\xfc\x72\xfc\xf2\xf8\xd5\x9b\x5d\x60\x9e\x73\x85\x31\x92\x3c\x61\x24\x91\x4b\xd8\xa6\x92\xe4\x7f\x21\xed\x41\x27\xe6\x3b\xf5\xbf\xe0\xf5\xab\x17\x71\xa8\xad\xe8\x7c\x72\x63\x50\xe6\xd3\xdb\xc9\xbb\x8b\x4f\xef\xae\x7e\xf8\x61\x72\x19\xb6\x2d\xb5\xd3\xeb\xb7\x80\xb8\x65\x86\xaf\x44\x81\xd5\x1d\x38\x96\xb7\x33\x5f\x9f\x9e\x9d\x5d\x4c\x6f\x1b\xd6\x84\x58\x7c\x7e\xf1\xf6\xf4\xc3\xbb\xdb\x8b\xcb\xf3\xe9\xd5\xe4\xf2\xf6\xf6\xca\x88\x0c\xa7\x67\xb7\x93\xab\xcb\xc6\x95\xe1\xb0\xcd\x80\x9a\x4c\x37\x6f\x0c\x8a\x95\x9c\xbc\x75\x09\x93\xe9\x4f\x6f\x6e\x3e\x4c\x8d\x3c\xb2\x8f\xd5\xc3\x73\x22\x78\x1e\x78\xa8\x73\x80\x21\x63\xca\x80\x0a\x66\x78\x77\xf5\x83\x01\xf9\xf4\xf4\xf6\x47\xd4\x9f\x05\xb3\x81\xc2\x78\xb0\x00\x4f\x77\xb2\x5a\xc2\x49\xb7\xad\xd8\x1b\x6f\x4f\x92\xd8\x7f\xc1\x37\x17\x3f\x5d\x5c\x4f\x6e\xff\x72\xf3\x97\x1b\x5c\xb3\xbd\x54\x70\xf3\x8a\x54\x18\xb1\x90\xad\x3b\x51\x5b\x95\xc8\x65\xc7\x5e\xbc\xa9\xf6\xa0\x31\x25\x26\x7a\xf3\xcd\x0e\xee\x69\x26\xb8\x58\xf6\xd9\xfa\x4d\x70\xbf\x67\xd7\x17\x17\x97\x66\xac\x8f\x38\xd2\xee\x8e\xfb\x6e\x07\x46\x6a\xdc\xd1\xc7\xf0\x42\xab\xc3\xfd\x78\x71\xfa\xee\xf6\xc7\x8b\x4b\x73\x6d\x9b\xd9\x5f\xf8\xaa\xb6\x6d\xd8\x31\x0f\xcb\x58\x41\x8f\xcb\x35\x86\x83\x98\x7f\x78\x21\xe9\x0b\x22\x16\xc8\x93\xfa\x70\xa3\x2e\x4e\x6d\x06\xaf\x2e\xf5\xb1\x86\xb8\x50\x38\x92\xfb\x1e\x0b\x0a\xec\x48\x2d\x51\x9a\x9f\x90\xd7\xdf\xbc\xac\xd4\x7a\x4f\xf8\x82\x45\xdb\x28\xa9\xd7\x4a\x4d\x33\x76\xa3\x65\xba\x33\x88\x51\x9d\x83\xf6\x5d\x34\x3a\xed\xfe\x32\x22\xe0\xf3\x6a\x50\xdd\xdc\x33\x23\xb5\xca\x75\x2c\xef\x45\x75\x6d\x1b\x26\x98\x52\xd3\x4c\xce\xeb\xeb\x0b\xae\xa3\x69\x15\xdd\x6b\x18\x91\x11\xdc\xde\x91\x99\xb3\x06\x89\xaa\x13\xf5\xd5\xcb\xea\xcf\xd6\xd6\x78\xce\x12\xba\x6d\x7c\xc8\x9a\x12\x6f\x57\x19\x53\x2b\x99\xc4\x27\xe4\x4d\xf5\x01\xcd\xd7\x4c\xe6\xba\x61\x00\xa3\xf3\xf3\x26\x48\xac\xb4\x4e\x7f\x60\x75\xcc\x81\x3e\x37\xab\x13\x72\x5c\xbc\xbb\xf3\xbb\xcc\xf4\x09\xf9\xee\xe5\x77\xdf\xd5\x7f\x31\xfc\xec\x84\x24\x32\xa2\xc9\xae\x65\xa8\x03\x1c\xed\x1b\x69\x31\x2c\x3e\x83\x16\x90\x2e\x4b\xd7\x50\x1e\x2f\x6a\xde\xa8\xa2\x51\xc6\x40\x82\xa5\xc9\x2e\x43\x7b\x42\xcb\x38\xa9\xd8\x58\x8a\x2a\x36\x4d\xb3\x25\x7c\x7e\xbc\x96\x71\x1e\xa8\x8f\x87\xd3\x24\x7c\x3e\x6a\x78\xa0\xd9\x94\x53\x9f\x25\xcb\xc5\xf1\x03\x92\xa1\x71\x22\xa3\xbb\xf0\x54\xf6\x89\x51\xe8\x89\x3d\xb6\xf4\xf9\x86\xcb\x3d\x27\x33\x30\xec\x9a\xcc\x80\xf1\x51\x93\xe1\x10\x68\x75\x52\x5b\xb1\x63\x4f\x0b\xed\xdc\x50\x08\xba\xdc\x29\xda\x82\x28\x5a\xd8\x67\x8e\xc8\x3d\x03\xad\xc1\xda\x71\x40\x06\x28\x2c\x88\xce\xd1\x51\xba\x41\xea\xa6\x6b\x25\xc1\x50\x0b\x4f\x63\x15\xb8\xfa\x74\x50\x99\x52\x13\xb4\x9e\xca\x6c\xd7\x9c\x88\x9b\x43\x77\x42\xcb\xbe\xca\x49\xc3\x03\x98\xab\x90\xc8\x65\xe8\x2a\xec\x9c\x95\x5c\x16\x46\xd0\x6a\xdc\x04\x69\xc1\xe8\x9d\xd8\x8e\x2c\x17\xaa\x50\xe7\x51\xb9\x2f\xaa\x72\x60\x4f\xd0\xd1\x7a\x89\xb1\x99\x4c\x54\xbc\x36\xc0\xa3\x13\x43\x9c\x30\xc5\x72\xa7\x81\xe8\xc8\xb3\x93\x95\x71\xad\xe5\x1a\xbd\xf8\x0e\xa3\xb6\xda\xa0\xeb\xc9\x7a\x59\xb5\x19\x96\x6e\x14\x62\xc3\x37\x0c\x0b\xb1\xe3\xc5\xd6\x85\x32\xe2\xe9\x68\x4d\xd5\xdf\xdd\x9f\xb5\xf5\x97\xa9\x01\xf8\x79\x3c\xb3\xdf\x35\xd7\xb9\x6d\x4e\xaf\xce\xbf\x98\xcb\xd8\x85\xec\x8d\xc5\x8e\x39\xa3\x3e\xfd\xcd\xf4\xf4\xec\xcb\xaf\x21\xd0\x46\xb9\x10\xc4\xde\x9d\x5e\x5e\x5e\xbc\x3b\xff\x34\x79\xbb\xe7\x4a\x9e\x3a\x66\xc0\x3c\xf4\x89\x2f\x7a\xac\x74\xfa\xe9\xfd\xe9\xcd\x7f\xff\x1b\xd7\x6a\x70\x37\x67\x19\xad\x0a\x44\x8d\x5c\x7a\x1f\xa6\xd4\xc5\x92\x5a\xc8\xf6\xa8\x1a\x3d\x3e\x8a\x16\xb5\x1d\xf8\xab\x30\x9c\xde\xbf\xea\xc7\xee\x51\xdc\x45\xd5\xab\xe1\x72\x08\x31\x92\x65\x97\x66\x34\x30\x6b\x23\x52\xc0\x74\xb5\x0b\xdb\x22\x02\x8c\x3a\x19\x65\xfb\xa0\x4d\x4c\x78\xd4\xc9\x13\xbb\xc7\x0d\xf1\xdb\x51\xc7\x81\xb5\x8f\xda\x8e\x0a\x18\x55\xfc\x96\x27\xec\x2a\x3b\xab\xa4\xcd\x94\xf3\xee\x7a\x8b\xdb\x67\xb4\x2c\x2d\x34\xd1\xb9\x63\x97\xcd\xb3\xed\x70\xcc\x5e\x93\xed\xf0\xcf\xda\x7c\x3e\xa6\xad\x4b\xb7\x66\xc5\x55\x59\x4b\xfe\xf7\xe2\x01\xaa\x91\x91\x8d\xae\xc8\x00\xd6\x86\x5c\x85\xed\x1b\xaa\x3e\x5d\xde\x0b\x7b\x87\x02\x73\x34\xdc\xc5\x82\x1e\x9d\x84\x6e\x7f\x98\x06\x95\xb9\xe2\x2e\x2c\xec\xec\x72\x12\xf2\xf6\x85\x23\x61\xda\x77\x16\x8c\xaf\x19\xb5\x8b\xfc\xed\x23\x36\xa8\x12\xe5\x2e\x6c\x96\xba\x51\x57\x12\xb9\x0c\x1d\x50\x83\x7c\xd5\xe3\xa6\x36\x48\x5b\xe5\xe4\xd6\xa4\x9c\xb2\x6c\x94\xca\x98\x7c\x10\xfc\x81\x9c\x4b\xa3\x46\x91\x1b\x59\x6b\x8e\xd7\x2e\x0c\x37\xac\xa6\xf3\x4e\x91\x5d\xa2\xe5\xc9\xcf\x90\x34\xd2\x15\xb0\xed\xe7\x5e\x94\xf9\x34\xf5\x8c\x95\xc7\x24\x63\xec\x9b\xbc\x52\x2f\xaf\x52\x24\xb2\xdc\x30\x16\x4a\xbe\xab\x24\x1b\x1e\xef\x16\x67\x09\x66\x95\xd8\xdc\x13\xaf\xea\xf9\x3e\xa5\x69\x1e\x93\x79\xd2\x54\x7e\xc6\x25\x57\xa0\xcf\xa2\x52\x0e\xcf\x75\x25\x82\x66\x91\x14\xaa\xbf\x26\x0c\xac\xdb\x1b\x74\xd5\x51\x61\x8b\x2b\x66\x2c\x4d\x78\x44\x15\xe4\x7f\xec\x9b\xd7\xd2\xb8\x49\x55\xe6\xb8\x94\x68\x78\xcd\xca\xb4\xcb\xae\xf4\x92\x4e\x30\x12\xd2\x06\x4a\xd2\x91\xa1\xd2\x32\xec\x67\xe6\xac\x8c\x08\x5f\x90\xf1\x6d\x99\x21\xe2\x45\xcf\x57\xf3\x46\xbc\x24\x1f\xff\xf1\x22\xc3\xe7\x0d\xa6\xa4\x8c\x08\x4b\x14\x6b\x1c\xa5\x24\x2a\x61\x9b\xa9\xf7\xb4\x73\x53\x37\xd6\x42\x94\x04\x6b\xcf\x26\x0c\xe2\x86\xb2\x5c\x34\xe5\xac\x54\x73\x5d\x4a\x77\xef\x90\xf1\x52\x79\x11\x4e\xcf\x26\x17\xe1\x33\x9f\x93\xfd\xd2\x7a\x17\x76\xf2\x61\x1e\x9b\x24\x62\x66\xa9\x95\x44\xeb\x95\x34\x52\xf8\x17\x43\x79\x23\xc1\x38\xa5\x51\xbf\x5b\x4e\xaa\x6a\x7f\xf9\xc0\x67\xc6\x0a\xed\x98\x30\xcf\x56\x12\x3a\x37\x81\x87\xdb\xbf\x18\x5a\x9a\xbb\xd0\x60\xbf\xb1\x0e\x8e\x4f\x67\x57\x97\xb7\xd7\x57\xef\xde\x5d\x5c\x37\x79\x82\x76\x4d\xd7\x7b\x45\xde\xdc\x05\xfb\xb3\x3d\xa5\x99\x3d\x57\x19\x9a\xda\x57\x2c\xba\x1b\x55\x8b\xbf\x95\x8f\x8d\x6a\x51\x80\xbf\x76\x13\xfb\x17\x82\x42\xd6\x09\x85\x2f\x2f\x3f\xed\x2d\x64\xd4\x25\xaa\x6a\x86\x2f\xb2\x67\x43\x53\xa7\x32\x26\xe7\x18\x26\xcd\xa5\x20\xdf\xe7\xf1\x92\x61\x64\x55\x79\xff\x40\x7a\xc6\xe8\xb9\x6f\x55\x11\xb0\x72\x9a\x6b\xa9\x22\x6a\x7f\x67\x1b\x1e\x69\x03\x09\x7f\x93\x28\xc1\x7a\xc2\xd4\x54\xc6\xe5\x64\x38\xd7\xbf\x5f\xaa\x0a\xa4\xc7\x3e\x91\x78\x74\x70\xf4\xff\x23\x84\x1c\xa0\x7e\xb5\xf9\x6a\xfc\xfa\x9b\xf1\xcb\x83\x13\x72\x60\x0e\x04\xac\x9a\xe4\xd6\x4a\x47\x65\x78\x19\x7e\x6f\x1f\xee\x2d\x10\xdb\xea\x40\x95\x7c\xee\x33\xa7\xf4\x11\xae\x8a\x26\x33\x51\x11\xb7\x47\xcd\x1e\x17\x23\x28\x64\x13\xdb\x69\xfd\x30\x94\xb2\x96\x81\x1b\x67\x17\x83\x9b\xf3\xe6\x0b\x65\xb2\xe9\xbc\x8a\xd7\x9e\x61\x09\x32\xb3\x48\xeb\xa1\xc7\xe8\x1e\x6d\xbe\xfd\x64\x19\xe4\x27\x17\x99\x5f\x46\x0c\xa0\x30\x0c\x35\xf2\x17\x34\x2a\x75\x75\x8c\x86\x35\x18\x0c\x01\x1f\xd0\xef\x29\x72\x6d\x9f\xe0\x2b\x5b\x7f\x3d\x2a\x4b\x51\x3d\x2b\x9a\x3f\xce\x13\x2a\xee\x8e\x8a\x06\xb9\xde\xf8\x5c\xb9\xb8\x9e\xd2\x10\x6e\x08\xfd\xa1\xc2\x11\x1c\x9f\x84\x78\x48\x18\xd5\x33\x31\x62\x46\x32\x9a\xb2\x27\x6e\x48\x97\x9c\xfc\x8c\x7c\xb4\xed\x76\x64\x06\x79\x0b\x50\x07\xd7\x99\xfc\xca\x8e\xb1\x92\xc4\x4c\x69\x9b\x39\x8a\x4d\xc4\x30\xea\x07\x07\x71\xb2\x92\x0d\xbb\x1b\x23\x6e\xbb\x61\x7c\x17\x3c\x3e\x5f\x86\x70\x9a\x37\xdf\xdf\x7e\xf0\xa3\x03\x5d\x4e\x6b\x09\x00\xcc\xed\xd7\xb9\x10\xcc\xba\xf6\xfe\x3f\xf6\xfe\x46\xb9\x71\x1b\x4d\x18\x85\x6f\x05\xeb\xf9\xaa\xec\xde\xd7\x52\xff\x25\x9e\xc4\x53\x53\x5f\xb9\xdb\xdd\x89\x6b\xbb\xdd\x7a\x6d\x77\x92\x3d\xd1\x6c\x0a\x22\x21\x09\xaf\x29\x82\x43\x80\xb2\x35\xbb\x5b\x75\xee\xe1\xdc\xe1\xb9\x92\x53\x78\x1e\x00\x04\x25\x80\xa4\x6c\x77\x92\xd9\x50\x55\x33\x69\x4b\xf8\x7d\x00\x3c\xff\x3f\x7f\x22\x6f\x36\x76\xdb\xc7\x30\x00\x97\x7e\xb2\x38\x5b\x69\xd6\xaf\xf6\xc3\x94\x72\x0e\x50\x58\x23\xc9\x38\x31\x99\x84\xfa\xd6\x73\xde\x4c\xf0\xef\xa2\x42\x19\x07\x9d\x6f\xd9\x76\x2e\xba\xd9\x86\x14\xa5\x58\xf3\x14\xe3\x7f\x73\x91\x8f\xfe\xc1\x4a\xe3\x06\x32\xae\xd9\x74\xbd\x38\xcb\x65\xf3\x39\xc9\x19\x7e\xf5\xc2\x70\x2e\x36\x50\xc9\x1c\xd3\xc7\x9b\xcf\x78\x36\x86\xad\x0b\xf0\xe7\x7e\x8f\x97\x5f\x7d\xfd\x62\xab\x75\x3c\xce\xce\x26\x07\x8a\x85\xdb\x41\x37\x60\xe5\x50\x64\xfe\x93\x2d\x04\x63\xcb\x8a\x9a\x70\x3d\x57\xb5\xb1\x52\x62\x45\x81\x11\xcb\x36\xa4\x10\x26\xf3\x35\x5e\xc0\x9d\xb8\xb8\x53\xf2\x5f\x23\xc4\x5f\xff\x69\xd1\xd8\xf4\x00\xcc\x06\x07\xc6\x4b\x70\x54\x88\x74\x64\x3a\x79\x95\xe8\xa6\x07\x49\x6e\xdf\x3e\xb6\x7d\x31\x7e\x3d\x7e\xd9\x68\x61\x72\x40\xe8\x9f\x7f\xae\x69\xe6\x7f\xfa\xe4\x73\x7a\x00\x7e\x8c\x30\x80\xd1\x6d\x36\xab\xdd\x4d\x0f\x32\xb1\xf8\x25\x63\x6b\x96\x61\x2b\xf0\x65\x09\xb5\x99\xf3\x8c\xfd\x52\x50\xb5\xc4\x76\x01\x45\x8c\xfe\xdf\x38\x13\x8b\x9d\xee\xce\x61\xf8\x97\x7a\x35\xbe\xb3\xf3\x56\x73\x7d\x2e\x35\x8c\x7e\xf9\x25\x14\x0a\xf8\xcb\x2f\x3b\xdd\x56\xaa\xd2\x3d\x7e\xf9\xc5\x04\xe2\xfd\xf2\xcb\x56\x03\x5e\xd0\x95\x6e\xf1\x9f\xdb\x4c\x87\x0f\x25\x8d\xb1\x46\x60\xe4\x0f\xd4\x05\x9c\x1e\xa0\x15\x0b\x9b\x56\x92\x4d\x44\xfa\x96\xa7\x65\xd3\x79\xe5\xbf\xb7\xe6\x45\xb2\xdc\x39\xf3\xed\x37\xb2\x7d\x1c\x1f\x64\xc1\xb1\x4c\xca\x63\x4d\x09\x3c\xd0\x61\xb8\xe8\x2f\xd6\x39\x4c\x43\xae\x31\x4b\xfd\x87\x3f\x61\xf4\x1a\x15\xa2\x54\x2b\x5a\xec\x80\x5f\xe6\x14\xe0\xa2\x91\xde\xd6\x4f\x09\x2d\x28\xa4\x8f\xe1\x76\xe9\x30\xca\x47\x4c\x38\x2e\x6d\xaf\x7d\x57\x32\xa3\x79\x7a\xc7\x53\x7d\x23\xbb\x27\xf4\x1a\xef\xce\x66\xff\x69\xcc\x92\x06\xa1\xbc\x6f\xfa\x55\x37\x11\xca\x18\x43\x74\x20\xe7\xbd\x89\x17\xb2\x86\xdb\x66\x10\x50\xce\x14\x90\xe7\xf1\xff\x91\x9a\x8c\xff\xd7\x0e\x3a\xb8\xb4\x8f\xdf\x12\x2d\x64\xf8\xde\x5e\x9c\x5f\x69\xac\xe8\x3d\xf8\x37\xc6\xee\xdb\x3c\x7d\xac\x26\xe7\xba\x9b\x55\x9b\xb6\x63\xfd\x9b\x9f\x95\xe3\xbf\xdd\x16\xbb\x58\x9d\xdb\x34\x1d\x25\x65\x6a\x95\x7d\x5f\xae\xce\xd3\x4e\xb2\xb1\x2f\x50\xed\xe9\xcd\x77\x93\x46\xfe\x71\xfc\xad\xae\xf9\xb4\xfd\xfb\x6e\xe5\xa7\x48\x4a\xb4\xba\xfe\xd3\x76\x83\x69\xff\x2a\x50\xe6\xc8\xa7\x5f\xa6\x04\xd4\xf6\xde\x9a\xf5\x63\x9a\x64\x12\x2b\x28\x6e\x74\x1f\xe0\xac\x9a\x6a\x9e\xa1\x04\xd4\x50\x02\xca\x3f\x82\xa1\x04\xd4\xaf\x56\x02\x6a\xfb\x11\xef\x16\x82\x6a\x16\x30\xd4\x0f\xb8\x49\xb0\xb6\xd4\x2a\xf1\x8a\x4f\x54\x5e\x42\xc9\xf0\x80\x1b\xc5\xd6\x83\xbe\xc6\x86\xb6\xb2\x9c\x15\xc9\xce\xae\x4d\xd1\x71\x27\x24\x52\xc3\x6c\xff\x7c\x8e\x4d\x82\x1e\x1a\x27\x5f\x7d\xfd\xf2\xd5\xdf\x0e\x77\x7f\xc2\xb4\x9e\xa7\xfa\x75\xbe\x7e\xb5\xfb\x33\x82\x54\x3f\xdd\xc5\x6e\x9d\xf3\x19\xcf\xd3\x8f\x22\xdd\xd6\x5d\xed\xc2\xd7\xb4\x0b\x15\x65\x15\x40\x28\x4c\x20\xa2\x01\x6c\x8e\x12\x51\xa4\x16\x36\x68\xe7\x4d\x08\x0d\x93\xe4\xe8\x52\xe4\xec\x19\x66\xed\xcc\x36\x7e\x72\xd2\x43\xb0\x29\x89\x1c\xf4\xec\x75\xd8\x4d\x68\xd4\x4b\x0d\x41\x7d\xec\xe3\x37\xdf\x4d\xc6\x17\x93\xf5\x4f\x67\x26\x46\xe7\x08\x02\x3c\x27\xcf\xc6\xc4\x80\x97\xcc\xd8\x92\xae\xb9\xa8\xf0\x68\xec\xfa\x43\xa3\x06\xb6\xb4\xb3\xfe\x3d\x6b\xe0\xda\xc7\x16\xba\x5b\x5b\x50\x7f\x5b\x37\x45\x94\x64\xab\x88\xe1\x92\xcc\xa3\xb5\x57\x9b\x62\x96\xc8\x5d\x77\x3c\xfd\xa1\xe5\x8c\xab\x92\x96\x1b\x53\x4a\x1a\x62\xee\x28\x06\x01\x60\x48\xed\x5e\x65\xc7\x82\xcb\xdc\xd4\x2f\x4e\x2a\x9a\xa7\xb4\x4c\xf5\xa1\x66\xb4\x5c\xb0\xed\xe5\x86\x06\x25\xb0\x05\x8d\xdc\x02\x81\x8c\xf8\x69\x79\x97\xf8\x01\x8e\x20\xfc\xd3\x76\xd5\x38\xba\x62\x64\xc1\xd7\x2c\x47\x4d\x54\x63\x79\xc1\xc9\x49\x67\xbd\x35\xe2\xd4\xe6\xbd\x96\xf0\x03\x90\x16\xc8\x25\x3c\x83\x4c\x3c\xf8\x94\xc9\xf4\x80\xd2\xd3\x3c\x9f\x1e\x40\xf5\x71\xfc\xe3\x74\xb5\x9a\x1e\x44\x97\x45\xc0\xcb\xd4\x41\xbd\xde\x4d\x25\x99\x37\x1c\x8e\x7f\x6c\x6a\xcb\xe8\xef\xa7\x07\x1a\xe8\xf1\x61\xa7\x07\xd0\x91\x96\x8c\xbc\x3c\x21\x33\xae\x0c\xee\x1a\xc3\x84\xdb\x47\xeb\xcd\x06\xeb\x8d\x8f\x1b\x5a\xc9\xb1\x9b\x2d\x4f\xb5\xc4\xba\x32\x13\xbf\x7e\xd5\x98\xf8\x47\xdd\x25\x58\xcd\xd7\x2e\x19\xb6\x85\xe1\xff\x67\xd7\x04\xb1\x70\x6c\xf0\x82\x95\xa3\xb3\x6b\x1b\xe8\xc8\x03\xb9\x09\xec\xa7\xa0\x4a\xb3\x3f\xa7\xe4\x3f\x8e\xa6\xd3\xf4\x7f\x3d\x3b\xc5\xff\xfc\xff\xfe\xab\xf9\xb7\xfd\xfa\xa1\x37\x28\x46\x02\xfd\x5f\x03\x15\xfd\x08\xe1\x8b\x5c\x94\x2c\x75\x0a\xbd\x4e\xf4\x72\xb1\xdd\xc1\xc3\xee\x98\x1b\x02\x25\x3b\x4f\xe9\xa6\x96\x34\x58\x61\xda\xd5\xf9\x98\x31\xc2\xee\xa1\x3c\x4b\x8a\x41\xb8\x68\x23\x59\x90\x94\x41\xb9\x88\x07\xe0\x9a\x07\x96\x38\x24\x06\xad\x4f\x44\x19\x22\xa8\x0d\x48\x7c\x70\x2d\x2d\xb1\x86\xda\xf6\x78\x39\x35\xb2\x2d\x4a\xa1\x44\x22\x32\xcb\x41\xe3\xd0\xc1\xab\x72\x6e\xcb\x7d\x2b\x41\x5e\xfe\x79\x27\x4e\x02\x34\xfc\x7c\x55\xad\x4e\xc9\xc9\xd7\x5f\xbf\xfe\x3a\xf0\x3b\xcf\xf1\xf7\x97\x7b\x12\xf3\x4c\x2c\xae\xd9\x9a\x95\x5c\x6d\xae\x93\x92\xb1\x6d\x79\x63\x67\xdb\x87\x1f\xb6\x7b\xd8\xed\x67\x62\x41\xa4\xf9\x85\xd0\x99\x58\x5b\xfb\x64\x26\x16\x41\xf2\xab\x9f\x12\x94\x26\x37\x02\x84\x54\xa9\xa8\x94\xc7\xd2\x90\x8b\xcb\xf7\x9f\x42\xec\x4b\xdb\xf1\x6a\x1e\xe0\x23\x93\xcb\x8f\xf4\xfe\x8a\x41\xf8\xeb\x0d\x0f\xe2\xf7\x66\xbd\x4d\x8e\xb1\xe5\x68\x25\xd2\x94\x4e\x8a\xb9\xba\xd3\x4b\x2c\x71\x14\xf8\x12\xd2\x0d\x2a\x31\x5a\x31\xb9\x24\x05\x63\x7a\x01\xd2\xd4\x85\x0f\x6d\xd1\xd5\x86\x3f\x46\xae\xdd\x69\x3f\xab\x92\xa5\x36\xe9\xc1\xa2\xa4\x09\x9b\x57\x99\x9b\xc9\x58\x10\x5b\xc6\xd5\x9c\x7b\x63\x6c\x46\xde\x5c\x5c\x9d\x3b\x7e\x51\xcc\xc9\xcb\x57\x2f\xa4\xb5\x9b\x98\x68\x5b\x54\x57\x9b\x5c\xe8\xdb\x1f\xe0\xa3\x66\x0c\xc2\x13\x0d\x3b\x65\x47\xdb\x11\x77\xad\x5b\x0e\x66\xd7\x40\x85\x77\xf0\x88\x21\xaf\xcb\xa5\x39\x11\xc8\x8f\x04\x51\xe9\x01\xe2\xd1\xe7\x48\x27\x54\xca\x3b\x51\x86\xa2\xbf\x1a\x87\xf9\xc9\x64\xa3\xc0\x67\x68\x3a\xc1\xf9\xcd\x2b\xe3\xe3\xb1\x7b\x88\xa1\xe5\x37\xa1\xf6\x20\x10\x05\x2f\xbe\x07\xb5\x3d\x40\xd4\xc1\xc8\x48\x96\x94\x4c\xb5\xf8\x6b\x6f\x41\x09\x9d\x85\x34\x8b\x78\xcb\x36\x20\xfc\x9b\x21\x4c\x90\x08\xe6\x87\x28\x44\x7a\x28\x6b\x1b\x58\x84\xd2\x75\xf2\x58\xe8\x07\x1e\x27\xc0\x3b\xc5\x6f\xcd\x9a\x30\x0d\x04\xac\x4a\x09\x63\xd3\x04\xd9\x77\x4c\xc8\x47\x64\x82\xe2\x83\x12\x42\x35\x6b\xc5\x53\x3b\xc4\x2d\xdb\x0e\x6d\xf1\x3f\xdd\x7c\x5a\x07\xaf\xb8\x8d\x2a\xfd\x64\x89\x25\x9b\xb3\x92\xe5\x2a\x28\x57\xb7\xe5\x66\x15\x6b\x56\xae\x39\xbb\x7b\x6e\x32\x51\x8c\xee\xb8\x5a\x8e\x90\xd6\xcb\xe7\x70\x30\xcf\xff\x04\xff\x69\x03\xc4\xcd\xa7\xf3\x4f\xa7\xe4\x2c\x4d\x89\x00\x09\xac\x92\x80\x71\xe0\x6e\xcb\xb1\xa7\x6f\x3a\x06\x75\xc7\x31\xa9\x78\xfa\xff\x0f\x60\xde\x7d\x60\xe5\x92\xc2\xf4\x84\xd7\x35\x20\xb4\x4d\x2d\x25\x2e\x19\xb9\xc6\x83\x13\x25\xf0\xf8\xfa\x52\xac\xba\x4f\x1d\x75\x61\x2d\x1c\x2a\xae\x7e\x26\x44\xc6\xc2\xc8\x90\x38\x33\x5e\x64\xf1\xe0\x9e\x15\xfe\xa9\x0f\x33\x16\xfe\x55\x3f\xb8\x1b\x61\x71\xc1\x3b\xc4\x03\x9d\x04\xf9\x32\xd4\x4b\xe3\xa8\x5a\xde\x76\x68\xcf\x96\x90\x0d\xad\x5c\x23\xcb\x55\x13\x07\xf9\xb4\x58\x95\x15\x8b\xd3\xe2\x08\x2c\x8b\x92\xcd\xf9\xfd\x99\x5f\xe7\xab\x93\xc5\x9c\x04\xfa\xd4\x52\x22\x38\x20\x43\x8b\x66\xf9\xb0\xd0\x8e\xda\xb4\x35\xa4\xbf\xac\x1a\x58\x50\x4d\xc5\x65\x73\x19\x1e\x26\x0c\xdf\x0e\x9b\xb8\xc6\x51\xef\x50\x7e\x21\x0b\xbc\x0e\xa4\x9a\xf0\x34\xa4\x52\x0a\x6c\x01\xaa\xa0\x81\x55\x1c\x38\xb2\x7a\x64\xcb\x9c\xce\x58\xbd\x8f\xed\xdc\x24\xf5\xa7\xfb\xd5\xb7\x6b\x2a\x42\x2b\xf3\xf4\x15\x9a\xc6\xce\xea\xba\xe7\x8c\xc3\xe5\xad\x45\xc5\x0e\x2c\x47\x33\x2d\x38\x6c\xec\xf3\xd7\x64\x6c\x7a\xa0\x91\x8a\x1c\x7b\xb3\xa0\x84\xdc\x4b\xb5\x40\x50\x29\xde\x29\x61\xb7\x08\xd2\xed\x22\x67\xbb\x84\xdd\x2e\x48\xc7\x47\xee\x92\xb0\x3b\x05\xe9\xb6\x45\x77\x48\xd8\x9d\x72\x74\xaf\xb1\xfb\x0b\xd8\xf1\x27\x8c\x9f\x3e\x74\xaa\x45\x1c\x24\x8f\x11\xae\x8d\xe7\x8f\x31\x45\x5d\x4c\x3a\x31\xdf\xf5\x76\x07\x00\x06\xa4\xb9\xd2\xef\xd7\xd4\x90\x06\xcd\x3f\xbe\x63\x33\x43\x10\xf7\x19\x27\x37\x3b\x8a\x09\x65\x05\x35\xff\xdc\x97\x1d\x4c\x06\x2d\xf0\xc6\x70\x28\x40\x4f\x1a\xbe\xbc\xb8\x88\x46\xc1\x71\x9a\x6f\x1a\xd3\x99\x44\x3e\x6a\xc9\x56\x0f\x47\xba\xdb\xb0\x78\x03\xf5\xce\x6b\xc3\x88\x17\x2a\xa0\x45\x36\x8d\x47\x6d\xd3\xf0\x39\xd7\x20\xfc\x02\xc8\xf6\x8b\x29\x68\xcc\x09\xbf\xbb\x47\x2b\x5a\xff\x4b\xe4\xf5\x08\xdf\x22\x51\x7a\x99\x7b\x42\x6b\x36\x03\x11\x3b\x92\x3e\xdb\xb1\x9f\xb7\x6f\xbb\x81\xcb\x27\x65\xe4\xa4\xa0\xe8\xe3\x88\x0c\xe1\xc0\x18\x6f\xb0\x7e\x3a\x5e\x19\x91\x5b\x7e\x59\x32\xb3\xd0\x47\xdf\xa0\x7a\x75\x9d\x57\x28\x7c\xba\xde\xfe\xff\xb9\x2f\xd1\x07\x41\xd3\x37\x34\xd3\x52\xe9\x1e\xd8\x68\xab\xd7\x23\x2f\x93\x3f\x5a\xf4\x42\x99\x72\x95\x7e\xdb\xf1\x45\xbe\x88\x99\x71\xb6\xef\xdd\x6f\x70\xc9\x9a\x40\x7a\xe0\x45\xdb\x82\xcd\x3f\xe5\x65\x0b\x77\xdb\xfd\x16\x7c\x38\x1a\xf9\x07\xa4\x12\x25\x44\x4e\xe0\x57\x78\x07\x60\xf9\x34\xd1\x92\x30\x4b\x2f\x77\x7c\x50\xea\x84\x55\xd6\xa7\xc4\x7e\x93\x88\x3c\xe5\x18\x78\x44\x7e\x06\x27\x24\x70\x97\x4b\x7f\xb0\xce\x20\xf0\xed\xde\x2e\x3b\x5f\xd0\x61\x07\x4a\x00\x7e\x19\x3f\x9d\x09\xb3\x8a\xdf\x86\x7b\x8e\xfe\x3a\xe8\x95\xe3\x55\x23\x6c\x38\xe3\x14\x66\x9c\xdf\xca\x07\x67\x70\x96\x19\x9c\x65\xfc\x23\x18\x9c\x65\x7e\x4d\x67\x19\x8d\x2e\x76\x7d\x64\x6c\xcc\x9e\xe7\xec\x66\x1b\xbb\xd3\x7b\x7a\x47\x99\x9b\x25\xab\xc5\x4b\xab\x62\xd5\xe8\x29\x40\x29\x1f\xe3\xeb\x72\xcb\x58\xf1\xa9\xe4\x0b\x9e\xd3\xec\x92\xdd\xab\xef\x03\x99\xea\x82\xc6\x07\xfd\xce\x75\x67\x58\x98\x30\x23\x90\x9c\xdd\xab\xa5\x28\x8c\x49\x01\x6d\x9d\x60\xdc\x0c\xb2\xca\x9e\x79\x0c\x60\x4a\x34\x50\xf5\x1d\xc7\x08\x04\x1b\x0d\xe1\xeb\xa2\x50\x5d\x9e\x41\xe8\x82\xee\x12\x1a\x57\x8f\x22\x9d\x36\xb0\x42\x61\x4f\x4b\xe8\xec\x5e\x11\xbd\x3a\xbd\xee\xbf\x68\x29\xbe\xce\x93\xec\xfd\x2a\x59\x36\xff\xcb\xf4\xe0\xc8\x58\x3e\x9e\x85\xa6\x30\x06\x04\x17\xcf\x39\x2b\x69\x9e\x2c\xed\x39\x5d\xea\xa9\x45\x4e\xa6\x07\x33\x5e\xa6\xe3\x64\xbe\x08\x7a\x29\xb4\x2a\x16\x57\x4f\x6c\xdd\x33\xb6\x36\x4f\x30\x0e\x32\x45\x0f\xb5\xe1\x6d\x19\xec\xc2\x63\x77\xd8\xf0\x62\x10\x8a\xdb\xcc\xfa\xbc\x22\x97\x04\xdc\xe5\x6d\xb6\x08\xd8\x28\x06\x5c\xca\x6c\x30\xf8\xc5\x8c\xf9\x5c\x12\x45\xcb\x05\x53\xb6\xfa\x0a\x97\xf8\x1e\xc9\xc5\xdc\x81\x0d\x80\xc0\x14\xd2\xb5\x5c\x34\x42\xd6\x23\x83\x36\x8d\x9c\x26\x80\x04\xcc\x7a\x1a\xc1\x48\x6b\xc2\xb2\x91\xdb\xf6\xe6\xd5\xf5\x37\xf7\x85\x59\x20\x84\x3e\x08\x3b\x57\xbe\xd1\x2a\x74\x71\x7e\xb0\xe6\x19\x2e\x00\x32\x1a\x38\x48\xf0\x7c\xd1\x62\xd0\xb5\x20\x02\xf0\xb8\x47\x82\x78\xc2\x3a\xfb\xb0\x55\xa1\x42\xf6\xab\xd6\x2d\x55\xab\x33\x94\x39\x3e\x88\x84\x66\xd6\xbf\xb0\x53\xf8\xfb\x88\x0e\x07\xd6\xeb\x50\xcc\x31\x4d\x63\xed\x88\x68\xb6\x6a\x55\x4b\x77\xa0\x6f\x8d\xdd\xeb\xb3\x6b\xc8\xdc\x61\xe2\xdd\x13\xc6\xd7\xcc\x56\x65\x30\xa6\x69\x2c\xca\x8d\x47\x9b\x09\x51\x68\x1e\xd3\x10\xc0\x20\x6e\xcc\x5d\xd8\x95\x15\xfa\x2a\x23\xee\xd1\x99\x14\x59\xa5\x58\xb6\x31\x35\x82\x24\xdd\x49\x68\x47\x1e\x49\x16\x8a\x47\x1b\xa2\x2d\xbd\xe2\xf9\x42\x92\x05\xcb\x59\x49\xbd\xa7\x13\xda\x72\x07\x51\x25\x83\x81\x78\x30\x10\x0f\x06\xe2\xff\xd9\x06\x62\x8d\x31\x2e\x26\x7d\xc8\xba\x57\x6f\xc0\xe3\x8e\xc9\x5c\x18\x5c\x3d\xdb\x80\xf8\x6a\xf1\x53\x21\xca\xb0\x8f\x1e\xa2\x7f\x25\xb0\xbb\xbe\x59\x40\xd1\xc1\xd5\x2d\x77\xae\xea\xe0\x12\x7b\x6c\x0d\x65\xb5\x49\x71\x7a\xf0\x33\x46\x2f\x5f\x4c\xd6\x27\x18\xc0\xfc\xb7\x53\x98\x2b\xe8\xe6\x09\x76\x35\xd7\xe1\x2b\xec\x70\x8a\x5f\x40\x2f\xf8\x02\x0d\x58\x50\xf0\x00\xd6\xd2\xd8\x84\xb7\x28\xcb\x6d\xc4\xe8\x87\xa3\xcc\x00\xac\x3c\x25\xce\xf9\x7e\xc6\x32\xa1\xf1\x32\x30\xde\x46\x25\x84\x25\x42\xb8\x5a\x7a\x8e\x7f\x61\x24\x0b\xe8\x71\xdb\x1f\xc8\xb0\x2f\x77\xcc\x30\xdc\x54\xe1\x72\x0d\x64\xf7\xa4\xea\xba\xcb\x83\x19\x15\x4d\x6a\x95\xe3\x57\x1a\x27\x8b\xbc\x6a\x8c\x02\xf9\xec\xc9\x04\x6e\x62\x13\x6c\x88\x2b\xb6\xd8\x15\xf4\x32\x6e\xd6\x5d\x6a\x6e\x44\xf3\x9b\x33\xa6\xee\x98\x09\x58\x47\x46\x03\xe0\x8d\xe9\xf2\x8d\x38\xe3\xaf\x1b\x52\xe2\x3a\x2e\x3c\x7c\xc2\xa6\x24\x86\x99\x81\xcf\xc9\x4c\xa8\x25\x61\x79\x2a\x91\x33\xd3\x1c\xd6\x9b\xef\x26\xe0\xff\xaf\x9b\x5a\xdf\xff\x76\x36\x5d\x2f\x09\xc7\x3e\xe9\x3f\xf6\xc9\xce\xd8\x63\xa2\x9f\x69\x68\x02\xb3\xcd\x3a\xe2\x23\x11\xe0\x7c\x6f\x55\x18\x1e\x18\x0e\x65\x63\x22\x7b\x10\xc1\x75\x9b\xc3\x5f\x64\x62\x46\xb3\x3a\xcf\xfe\xdc\x94\x5e\x73\xcf\x65\xcf\x9b\x58\xea\x93\xa5\xb3\x8c\xbd\x09\x11\xef\xc6\x45\xd4\xb4\x85\xe6\x84\xdd\xd3\x44\x99\xe2\x87\xcf\x5f\xbf\x3a\x06\x6d\x3f\x4f\x4c\x15\x26\x25\xee\x68\x99\xba\x67\x19\x66\x29\x45\x99\x1a\xa4\x84\x4c\xa2\xe9\x3b\xcf\x30\xfc\x75\x4c\xae\xea\x55\x35\xb5\x15\x2d\xc1\x20\x06\x4d\x2e\xa8\x62\x77\x74\x63\x1d\x25\xf4\x3a\x8c\x5b\x02\x6c\x15\x50\xe7\x9e\x30\x42\x7e\xcd\x5c\x81\xce\xe7\x6a\x6e\x48\xed\xbc\xa3\x6f\xdc\x52\xdc\xed\xe4\xbe\x40\xc5\x58\xcb\x8e\xba\xf9\xcc\x5d\xa6\xd2\xf9\x22\xc7\xfd\x22\xa6\x07\x9f\x25\xc3\xf8\x98\xe9\x01\x59\x31\x9a\xcb\xe6\xda\x1c\x6b\xa8\x11\x84\xd1\x49\x34\x16\x3b\x86\x20\xdd\x40\xe5\x0c\xfc\xe0\x90\x26\x8d\x44\x7c\xcb\x7b\x9e\x82\x52\xd9\xb5\x49\x8b\xdc\x49\x40\x6f\x3e\xd8\xa6\xc6\x13\xca\x08\xf9\x00\xbf\x0c\xd4\xaf\x37\x37\x1f\x5c\x9a\x65\xb2\x62\xc9\x92\xe6\x5c\xae\x42\xdb\x39\xfa\xee\xe6\xfa\xe3\xb3\xda\xf3\x46\x21\x53\xbd\xd0\x97\x52\x11\x59\x08\x31\x67\x29\x29\x28\x24\x51\xd4\x27\x03\x4e\xf9\x10\x64\x63\x44\xa5\x20\xe6\x34\xed\x81\x24\x51\x22\x57\x14\x13\xdd\x2c\xe1\x89\x15\x88\x32\xf5\x22\x31\x36\x05\x98\x02\x4c\x34\x61\x75\xc7\x31\x31\x5e\x9f\x9e\x93\xfa\x96\xa2\x90\xe4\x88\xa5\x0b\x26\x9f\x35\xb0\x34\x9a\x2b\xf6\x92\x9b\x06\xdb\xd0\xc3\x6c\x43\x99\x48\x6e\xe9\x1c\xdb\xb0\x2f\x62\x22\xd2\x33\x9c\xe1\x0c\x9b\x1d\x43\x91\xff\x63\xc0\x5c\xd4\x5c\xdd\x8e\xd5\xc8\xfb\x79\x33\xd8\x8e\xcc\x2a\x07\xdb\xd1\x60\x3b\xfa\x03\xd9\x8e\x7c\x0c\xd2\xd3\x82\xb4\x8b\x91\xea\xcf\xfe\x66\xa5\x88\x27\x44\x1b\xbb\x90\xb2\x8c\xa9\x6e\xef\xeb\x73\x6c\xd6\x88\x82\x83\x32\xc9\x5c\x22\xee\x23\x16\xf9\xe9\x7b\x3b\x63\x18\xd6\x06\x7d\xba\x22\x4e\xfc\x7b\x3e\x47\x97\xd5\x82\x2a\x0e\x59\x58\x36\x48\xf7\x45\x96\x02\xf3\x96\x31\x2a\x5b\x22\xed\x56\x5c\x2a\x7a\xcb\xf2\x6c\x43\x54\xc9\xec\xf2\x70\x16\x5a\xcf\xf2\x34\x16\x86\x56\x4e\x58\xd5\x79\x74\xfb\xf5\x89\x68\x59\x46\x70\xa4\xdb\xdf\x19\xc0\x6e\x7f\x1d\x4a\x66\x19\xa8\xfb\x38\xb0\x27\x0f\x62\x4f\x8c\xa9\x45\xe3\xaf\x72\xf5\xc5\xb2\xcd\x58\xe7\xce\x7a\x96\x6d\x3e\x65\xb7\xc5\x2e\xb3\x12\x58\xeb\x36\xc3\xb2\xdb\xe4\xb7\xe4\x5a\x9a\xae\xf2\x3b\x3b\xdc\xca\x3b\x63\x7c\x70\x9d\xd9\xd5\xdb\xc4\x90\x72\x66\xe0\x84\x06\x4e\xe8\xb7\xe6\x84\x76\x5f\x70\x5b\xd2\x19\xec\x3a\x0b\xe9\x32\xa2\x26\xee\x36\x26\x08\x50\x6c\xf8\x8d\xef\xae\xd4\x6f\x6c\xd5\x02\xe6\x91\xeb\xb5\x19\xe7\x00\xc3\xec\xb8\xd5\x44\x74\x0a\x65\x95\xe7\x2d\x91\xf8\x91\xa4\x27\x38\xe4\x77\x9f\x2f\xce\x3b\x57\x5b\x37\xb5\x6b\x85\x7f\x1b\x9d\x5e\x74\x71\x3d\xa6\xbf\xd1\x4d\xfa\x4d\xaf\x9b\xda\x43\x33\x68\x11\x6a\x62\x3f\x66\x15\x2e\xd1\xe3\x15\xa3\x69\xa7\xe2\xea\xbc\xd1\xda\x65\xcd\x4d\x2b\x40\x11\x92\x2f\x72\x60\xb4\x73\x55\x8f\x4b\x56\x7c\xd1\x48\xbf\xb6\xb5\x36\x01\xdd\x68\x66\x12\x9e\x14\x22\x07\x8f\x66\x59\x25\x4b\xcd\x3b\x62\x69\x58\xd4\x21\x3b\xcb\xcf\x1d\xe5\xfa\x95\xcf\x45\x44\x35\x0f\x75\x4c\x2c\x86\x8a\xd5\xbe\x27\x5d\x66\xb8\x35\x2d\x39\xcd\x3b\xf3\x34\xfc\x80\xcd\x48\xca\x92\x8c\x96\xa0\x57\xe5\xc9\xd2\xf6\xf6\xee\xb2\x17\x09\x07\xc5\x27\xf6\x62\x87\xff\x29\x99\x47\xf3\x9f\xa7\xe7\x0c\x01\xcf\x37\xea\x3e\xd4\x59\xa5\x47\x0b\x96\x8f\x6f\xab\x19\x9b\x55\x5c\x8b\x2f\x30\x81\x9d\xfe\x08\x90\x39\xf8\x94\x41\x86\x6f\x2e\xf2\x1b\xbe\x62\x52\xd1\x55\x71\x4a\xf2\x2a\xcb\xa6\x5b\x29\xb6\xc1\x1c\x04\x30\xfb\x22\xaa\x31\xbc\x1b\x97\x22\x65\xd7\x5e\x76\x75\x8f\xeb\xdc\xfa\x3d\xc0\x73\xee\x2c\x73\x87\xe5\xdc\x6a\x31\xa8\xc9\xcc\x2a\x07\xe6\x70\x60\x0e\xff\x40\xcc\xe1\x16\x2a\xe9\xa7\x29\x0b\x23\xa8\xfa\xf3\x00\x65\x59\x46\xa5\xec\x91\x68\x0e\x9b\xd5\x74\xd5\xf2\x3b\xc0\xbb\x7a\xa2\x27\x56\x98\xcb\x79\xc4\xc9\x13\xad\x94\x5c\xfa\x8e\x16\xf8\x2c\xc1\xaf\x10\x83\xcb\xd0\x09\x80\xaf\x6d\x6c\x98\xbe\x91\xa2\x54\x11\xdf\x22\x3a\x13\x95\x22\x09\x2b\x35\xe8\xf4\x6d\x83\x64\x08\xcd\x55\xfd\x3a\xe9\xa4\x1e\xec\x85\xcb\x0d\x40\x83\x4e\xb8\xf3\x30\x24\xa1\x91\x89\x9d\xdb\x8f\xcb\xc4\x17\x37\x69\xd4\x05\xe9\x58\xf5\xe7\xdd\x2e\x2e\x0f\x16\x7c\x49\xa8\x32\xac\x56\xd7\x15\xd5\x9f\x9a\xf9\x72\xaf\x1f\x4b\x42\x91\x17\x50\x36\x00\xeb\x2a\xec\x0c\x45\x4a\x36\x2f\x99\x5c\x06\x75\xa9\xd6\x87\x15\x47\xb4\xcb\xe2\x12\x22\x00\x53\xfa\xb4\x4e\xa1\xd1\x57\x5f\xf3\x73\x11\x48\xee\xbc\x7b\xdc\x99\x4f\x40\xc5\x0c\xf9\x46\x54\x5b\xd6\x3c\x6b\xdd\x69\x67\x2f\x97\x02\x3d\x1b\xf1\x09\xe6\x8c\xa5\x0c\x3d\x4f\xcd\x03\x92\x5c\xdf\x24\x0e\xae\x1f\x06\xe4\x64\xb6\x31\xe3\xee\x11\xb0\xb1\x60\xdd\x2c\xf8\x99\x6e\x44\x96\x22\x4b\x25\x76\xb0\x8b\xf0\xd2\x76\xee\xef\xce\x3a\xe3\x65\xfa\xc3\x57\x7d\x1c\x59\xdf\x5c\x5c\x9d\xff\xf0\x95\x1f\x90\x59\xf3\x07\x4d\xd8\x56\x80\x26\xf4\xc8\x5f\x3d\xdc\x91\x35\xa3\x52\xbd\x11\x22\x16\x99\x10\x5c\xe2\x07\xaf\x8f\x81\x94\x53\x06\x80\xf7\xb5\xf7\x7b\x7c\x48\x82\x64\x18\xc3\x2a\x54\x46\x44\xa5\x8a\x2a\xe4\xd2\x63\x3f\x7d\xbc\x34\xf5\xd4\x57\xac\x91\x4b\x65\xdf\x9d\x05\xba\xc7\x36\x69\x9b\xfe\x06\x1b\x05\x2f\xa2\x32\xa8\x6d\x08\xee\xec\x0a\xda\x93\x8b\x73\x97\x94\x17\xd6\xf3\xb8\x45\xc4\x4c\x24\xc1\x15\x40\xa5\x0d\x8b\x12\x6c\x8e\xe2\x73\xca\x56\x41\xfa\xb6\xcf\x32\xd6\x51\x35\x51\x70\x21\x3f\xd4\x9a\x21\xbb\x8c\x14\x96\xf1\x98\x55\xb4\xfb\xc9\x1a\x04\x70\xd2\x1b\x01\x9c\xec\x87\x00\x4e\x06\x04\xe0\x6d\x67\x40\x00\x81\x9d\x0d\x08\xe0\xb7\x44\x00\x6d\xbf\xce\x16\x9d\x71\x9a\x7a\x89\x78\x05\x81\x6f\xd6\x7f\x46\x79\xe7\x8e\x37\x8f\xee\x72\xef\xa4\xa2\xb3\x8c\xcb\x25\xeb\xc9\x96\xe8\xc3\x53\x42\xd1\xcc\xf3\xb7\x03\x9f\x65\x56\x8f\xa4\x77\x42\x24\x93\xa8\x8f\x6b\x03\x53\x24\x54\x29\xbc\xbe\x5e\x58\x33\xb2\xbe\x93\x2f\xb4\xbe\x4b\xa1\x9e\x0e\x84\xb9\xc8\x47\xbf\xca\x32\x1f\x07\xc9\x2f\xb1\x4c\xf0\xcc\xec\x07\xbe\x09\x36\xf5\x09\x23\x40\xcf\x06\x58\xca\x7e\x8c\x3a\xe9\x4c\xc4\x15\x11\x78\xc0\xf7\xb8\xa9\xe2\x70\x34\xd8\xad\x21\x8e\x41\xba\x57\xd5\x8b\x5c\xb7\xc4\xd5\x44\x76\x10\x89\xae\xb9\x5b\x0a\xc9\x6a\x15\x3c\xb9\x63\x84\x86\x4d\x20\xf5\xc7\x29\x32\x5a\xf0\x75\x3f\x8c\x4d\x50\xa6\xeb\xbf\x8b\x6b\x8e\x11\xbd\x8e\x84\x94\xa4\x64\x54\x8a\x1c\xe8\xb0\x29\xc2\xdb\x46\xce\x7a\xaf\xab\x83\xa4\x6d\xaf\x0b\x56\x63\x94\x09\x80\x97\xf1\x45\xe0\x38\x4f\xb0\x1e\x15\xb6\xe9\x45\x96\x03\x66\xbd\x40\x0d\x0b\x17\x3e\xd4\x08\x08\x6f\x3f\xed\x35\xa7\xee\xca\x8e\x94\xa9\x44\xbd\x62\x72\x79\xac\xa1\xaf\x7f\x65\xb9\xab\x36\x68\x83\x35\xda\x72\xfd\x11\xac\xe7\x3a\xb2\x34\x0c\x5e\x94\x51\x99\x3f\x16\x50\x5d\xfc\x77\x67\xe6\x3c\xc4\x44\xbd\x30\x24\x62\xa2\x93\x2d\x4c\x74\x32\x60\xa2\x8e\x1d\x0c\x98\x68\xbf\x75\x0d\x98\xc8\x7c\xfe\x48\x98\xa8\x25\x54\x77\x14\x62\xde\xfb\x35\x3b\x89\x37\xdb\x66\x65\x7b\xb7\x0c\x8c\xd9\xb6\x77\xfd\x3a\x50\x11\xdf\xe9\xa8\xfc\xa1\x6e\x8a\xa6\x41\x65\xed\xea\xbb\x76\x41\xd0\x87\x94\xd0\x22\x04\x6d\xc8\x5b\xb3\xa3\x89\x37\xa6\x42\x78\xb0\xb5\x05\x0f\xf4\xcb\x6e\x82\x68\x92\x88\xab\xf7\x6f\x5f\xbf\x7e\xfd\x2d\xe8\xdf\xb1\xa2\x0f\xa4\xf2\xf8\x7c\xf3\xb6\x45\x49\xaf\xe7\x18\x85\x17\x99\x57\x99\xa9\x85\x5d\x3b\x5a\xec\x02\x35\x12\xd2\x08\x79\x29\xba\xe0\x09\xb2\xbf\xb5\x43\x49\xd3\x89\x80\xb1\xde\x1a\xa0\x8d\xed\xa6\x5d\x16\x7e\x94\x0a\x1c\x67\xed\xc7\xeb\x5f\x99\xb6\x3b\xcc\xbe\x59\xfa\x17\x22\xac\x30\x6d\x1b\x65\x8d\x27\x40\xea\x03\xa0\x5e\x60\x72\x0b\xb4\xa5\xa7\xfb\xa3\xdc\xf3\xba\x93\x4b\xd4\xe0\xca\x63\xc7\x3e\xfd\x70\xbf\x89\x34\xed\xbf\x96\xef\x4c\x68\xaa\x8d\xeb\xf4\x36\xf4\x04\xcb\x71\x15\x7b\xf6\x60\x3e\x5c\x69\xf1\xc0\x92\x1e\xbf\xa2\x8c\xd1\x32\x67\xe9\xfb\x52\xac\xfa\xaf\xe9\x43\xdd\xa9\xbe\x75\xbe\x35\xba\x64\x0b\x5a\xa6\xad\x13\x13\x44\x72\xa5\xc9\xde\x83\xd1\xc5\x26\x89\x57\x2c\x70\xc3\x7e\x7a\x5d\x45\xd2\x8f\xd3\xdb\xd9\xdc\xc5\xdc\xc4\xc0\x22\x27\x20\xeb\xba\x21\x58\x73\x4e\xd3\xdc\x63\x12\xcb\x80\xec\x7f\xb6\x98\x46\xd4\x7c\x9a\xec\x45\x2c\x57\xa4\x92\xde\xde\x5b\x37\x4c\x7a\x9f\x27\x71\xb1\xd0\x11\xa7\xca\x96\x9d\xdf\x78\x8e\x94\xc6\x5f\x05\x4f\x88\x9a\xe3\xe1\xd2\xde\x97\xee\xcd\x43\x7a\x98\xa7\xda\x53\x37\x6f\x42\x1e\xcb\xe8\x71\xef\x90\xea\x30\x22\xd0\x39\x47\x5c\x01\xbc\xbd\x8a\xf2\x0e\xef\xbb\xa9\xcd\xff\x5b\x33\x63\x8e\x6a\xf5\x92\x0b\x0d\xd5\xda\x15\x0c\x07\xaa\xd5\xb2\x91\x81\x6a\xb5\x2c\x68\xa0\x5a\xbb\x9f\x81\x6a\x0d\x54\x2b\xd6\x6a\xa0\x5a\xad\xdd\xff\x29\x3d\xff\xbf\x54\x30\xe8\x9c\x65\xfc\xbe\x59\xd4\xff\x0b\x38\xe5\x43\xd0\x49\x23\xbd\x16\xfe\x5a\xbb\xe5\xef\xb6\xd8\x75\xcc\x0f\xac\xd5\x9c\x8b\xf3\xcc\xdf\x6d\x32\xfd\xbd\x04\x83\x62\xe0\x4d\xb3\xe6\x60\x33\x1a\xb4\xf1\x93\x26\x75\xd0\x65\x08\x04\x1d\x7c\xfd\x07\x5f\xff\xdf\xda\xd7\x7f\x17\x3f\xb5\x05\x82\xea\xbf\xf0\xbd\xb7\x55\xb4\x6b\xf3\xd2\xcd\x32\x71\x77\x31\xb9\x98\x4c\x30\x6b\x94\xe6\x33\x7f\x14\xe5\x6d\x26\x68\xb7\xa7\xf7\xe1\x59\x5b\x6f\x1b\xd9\x55\x9b\x23\x60\xa5\x41\xbd\x31\x96\x98\x4a\x35\xf7\x53\x65\x90\x90\x3b\x2d\x45\x41\xf4\xd0\x84\xe5\x09\x2d\x64\x95\x81\x82\x5a\x95\x74\x3e\xe7\x89\x29\x75\x65\xa7\x0a\x8d\x59\xd7\x27\x04\xf4\xbb\x77\x81\x42\x80\xcc\x0f\x3f\x7d\x38\xbb\x7c\x38\x68\xa2\xdd\x9f\x00\x36\x30\xf6\x6f\x06\x9c\x3b\x79\x5d\x26\xe7\x52\xbd\x5d\xb2\xe4\xb6\x13\x18\xd7\x4c\x19\x2e\x77\xe4\x49\x54\xa3\x44\x77\xd6\x02\xf1\xd9\x8f\xd7\xe4\xdd\xdb\x57\x2e\x8e\x41\x8e\xc9\x99\x61\x74\x42\xab\x5f\x37\x2b\xdd\x63\xd5\x9e\xe9\xc1\xb9\xb8\x14\x6a\xa9\x9f\x27\xd4\xac\xc3\x7a\x97\xb6\x28\xdf\x39\xc6\x09\x4c\x0f\xbc\xca\x95\xa1\xb1\xdd\x20\x21\x98\xb0\xbc\x0a\x89\x6e\xa3\xba\x57\xe8\x47\xb3\x90\x50\x37\xb3\xa8\xbd\xac\x10\xb3\x62\xfe\x56\xe4\x39\x4b\xc0\xe3\xb3\x2e\x0d\xc4\xf3\x45\xdf\xc2\xa0\x6f\x26\xef\x3b\x86\x40\x53\x0e\xcf\xc9\x9b\xc9\x7b\xb2\x12\x69\xb8\x44\x7e\xf8\x16\xe3\x31\x66\x99\xe3\x36\xf4\x44\xfa\xbc\x15\x5f\x31\xa2\xef\x24\x99\xd9\xe2\x4d\xd1\x64\x97\xa6\x5b\xa0\x0f\xda\x8d\xd0\x6e\xe7\x04\xf5\xa5\x90\xca\x54\x8c\x87\x70\x10\x25\x82\xfa\x25\x46\x93\xa5\x5f\x57\xca\xd4\xbf\x92\x68\x59\x52\x84\xaf\x8a\x12\xb2\x8d\x9b\x68\x15\x10\xb3\xf3\x04\x2e\x58\x21\xd2\x91\x12\xa3\xb6\xca\x7a\x6e\xab\x12\x37\x86\x29\xc8\x8d\xc1\xda\x0b\x56\xc1\xe0\x0a\xbd\xf6\x94\xcd\xaa\xc5\x42\x93\xe2\xa2\x2a\x0b\x21\xf5\xd5\x6f\xbf\xa0\x0f\xaa\xb6\x3a\x2b\xe6\xe7\x54\xd1\x8b\x39\x4d\xd8\x84\x2a\xcd\xfc\x74\x7a\x41\x4e\xde\x6f\x77\x41\x6e\xa2\x64\xc0\x03\x13\x76\xaf\xd9\x01\x60\xf3\x40\xce\xb6\x97\x21\x88\xc4\x20\xdc\xc7\x2b\xfd\x8f\x17\xc5\x70\x71\x54\x29\x7d\x2e\xfa\xaa\x15\xa5\x58\x94\x74\x05\xec\x1b\xcf\x5d\x3e\xcf\x20\xb4\xa9\x4a\x96\x0e\xe7\x29\xf1\xdc\x31\x1f\x39\x53\x1a\xfb\x8d\x4d\xd2\xa4\x9c\xb1\x14\x06\x5c\x61\x8f\x25\xf3\x56\x12\x04\xb1\xde\x8e\xad\x7e\x68\xd0\x68\x8d\x5c\x21\xf4\x4c\xac\x59\xb9\x5d\xe9\xb0\xc7\xa0\x4b\x9a\xa7\xfa\xfc\xf3\x44\xac\x80\xff\x72\xab\x07\x85\x20\x5a\x0c\x31\xb7\xad\xb9\x98\xb0\x29\x51\x29\xc9\xc3\xb5\x79\xfd\x84\x0f\x84\x5c\xb8\x48\x7b\xcd\x45\xd5\xfb\x75\xbb\xf0\x8e\xe0\xa8\x92\x15\xcd\xb2\xa0\x22\x56\xcb\x21\x29\xc4\xdd\x8d\xc7\xe3\x67\x7b\xc6\x8c\xe9\xcb\x86\x17\xfd\x73\x5e\x94\x7c\xcd\x33\xb6\xe8\x87\x94\x02\xdd\x8e\x09\x9f\xdb\xa2\xc3\xc7\xf6\xda\x30\xe3\xa7\x7f\xab\xdf\x71\x36\xae\xbc\xf6\xbf\xcc\x8a\xf9\x2f\xe6\x9d\x05\x89\x87\xdc\xc8\x44\x65\xfe\x6b\xf4\xbb\x43\x12\x66\x31\xd7\x77\xd1\x5e\x1f\x96\xcb\xca\x95\x63\xf7\xdb\x86\x46\xaf\xa4\xe6\x8a\x13\xe4\x62\x31\x9d\x81\xb9\x49\x87\x87\x12\x91\x29\x2d\xf0\x88\x4d\x23\x9e\x4b\x2d\xc1\xa8\x25\xe3\x25\x11\x77\x41\x3d\xe3\xee\xcb\xd0\xa7\xc8\x4c\xe5\xba\x7a\x82\x47\x57\x65\x9e\x15\xf3\x3d\x68\xc8\x3b\x7b\x2c\xf5\x11\x99\x13\x02\xa6\xc5\x16\x90\xd1\xab\xd7\x1c\x72\x91\xd1\x3c\xac\x7b\x7b\x2c\x3b\x02\xcb\x9e\x8b\x32\x61\x57\x93\xf7\xfd\x56\x6e\x5b\x13\x86\xff\x84\xbb\x9c\x28\xa2\xbf\x12\x39\xd4\x0d\xf1\xde\x8a\x06\x73\xe7\xc1\xa0\x26\x36\x33\x6a\xc8\x3b\x93\x3d\xd9\x50\x92\x91\x37\x9a\x28\x8d\xdb\x4c\xf0\x7e\x62\x11\x9f\x31\x99\x08\x29\xb9\xbe\x9f\x86\xdd\xa7\x25\xb3\x0c\x43\xaa\x87\xb8\x86\x05\xfb\x47\x8e\xdf\xc4\xa1\x17\x7d\xae\xef\xee\xd5\x8d\xb0\x75\x55\x45\x9e\xaf\x68\xd9\xcd\xd4\x69\x30\x06\xfa\x35\x98\x06\x4b\x14\x08\x25\xaf\x5f\xcd\x78\x38\x07\x9d\xee\x64\x73\x4d\x4b\xa6\x08\xea\x2b\x2c\x25\x45\x0c\x08\xb9\x6b\x8d\xcc\x8e\xe2\x24\xe6\x60\x87\x94\xe0\x61\x30\xc2\xaa\x4c\x11\x11\x98\xc3\x44\x0d\x57\x36\x29\x31\x2c\x6c\x29\xee\x5c\xc6\x5c\x31\x77\x94\xcc\xcc\x1e\x1a\x19\x6a\x03\x89\x4a\x33\xdc\x75\x3d\x5b\x64\x40\x6c\x42\x66\xa3\x68\x86\x0c\xe0\xfa\xd8\x8b\xd2\x96\xbf\xb9\x9a\xbc\x0f\xd2\x32\xcd\x09\xfb\x47\xf9\x22\x7e\x8a\x11\x07\x6f\x3c\x46\x80\x90\x39\x91\x8f\x3d\x42\x8c\xcd\x29\x6e\x77\x0b\x1e\xa2\x84\xbd\x79\x47\x13\xda\x89\x4f\xaf\x1a\xb9\xc7\xa0\x06\x87\x21\x6a\x47\xa6\x3e\x88\xa5\x76\x5e\x8d\xe0\x60\xd5\x28\x0d\x72\xa3\xf8\xd5\x62\x8e\xb0\xa9\xce\x9d\x8c\xa3\x49\xdf\x1c\x2e\x8f\x12\x64\x7a\x70\x53\xe5\x39\xcb\xa6\x07\x98\x5a\x7f\x26\xc2\x8f\xd7\x28\x1e\x60\x05\x25\x93\x85\xc8\x35\xc2\x32\x14\x59\xbf\x5c\x18\x05\x27\xdc\xca\xaf\x0e\xf3\x45\x5e\x2f\x2e\xe1\xfc\xfa\x4a\x8b\x21\xd8\x0f\xe7\x09\x0d\x3d\xab\x94\x69\xd3\x9c\x3f\x34\x36\x3c\x8f\x5c\x91\x94\x97\x2c\x51\xd9\x26\x98\xf9\x5d\xaf\x2c\xb7\xf3\x9b\xf3\xab\x9b\x04\x69\x3d\xe4\xd3\x2f\x0a\x46\x4b\xe9\xd7\xfd\xba\x98\x58\x0d\x03\xc7\x0a\xab\xd0\xf2\x2f\x56\x67\x07\x0c\xb8\x24\x34\x34\x64\xc1\xca\x15\x97\x92\xaf\x19\xf9\xf0\xca\x63\xc7\xea\xfb\x8d\x27\xf4\x00\x54\xf5\xbd\x90\x4a\xa3\x1a\x55\xd2\xe4\xf6\xcd\xa6\xa0\xdd\x89\xd3\xf5\x1d\x0f\x74\x23\x6f\xb7\xa5\x17\x2d\x3f\xe0\x4f\x1f\x78\x5e\x05\xa5\xf1\xc4\x8e\xe1\xbf\x10\xac\x9f\xef\x64\x7b\x9f\x7f\xdb\xa6\xc8\xa1\x31\x47\x8d\x59\xeb\x29\x1e\x42\x06\xb5\x6c\x33\x29\xc5\xfd\xe6\x9d\x51\xc0\x5d\x67\x7a\x19\x3d\x89\xfa\x9b\xc9\xfb\xf6\x01\xc2\x78\x21\xcc\xf1\x7b\x12\xe1\xa1\x24\x6c\x35\x63\xa9\x7e\xbd\xb7\xd5\x8c\x8d\x0a\x3d\x83\x31\x66\x48\xd2\x9c\x2a\x6e\xd7\xe9\xbd\xf9\x8b\x42\x41\x6e\xf6\xb7\xba\x61\x55\xec\xc1\xd2\x74\x0c\xd1\x60\x75\x10\x16\x41\x92\x06\xe0\xf1\x58\xa1\xa2\x14\x98\x3a\x2a\xdb\x90\x44\x8f\x48\x2a\x2c\x00\x58\x15\x52\x95\x8c\xae\x7c\xa1\xb4\x86\xd0\xe1\x61\xb8\xdc\x86\x59\x1b\x49\x96\x94\x83\xac\x79\xdd\xac\x78\xe5\x56\x38\xf7\xc1\x6d\x4a\x39\x98\x94\x6b\x5f\x4a\xce\x74\x10\xfc\xc8\xf3\xeb\x4d\x9e\x60\x22\x88\xbd\x60\xdf\xe8\x79\x1c\xa1\x45\x2a\xac\x37\x58\xf1\x1c\x52\x3b\x80\xde\xc0\xa6\xa5\x47\x5d\xb2\xb3\x09\x38\x66\xb4\x36\x7e\x1c\x7a\x57\x34\x34\x6c\x0d\xc6\x31\x21\x1f\xc4\x1d\x2b\x2d\x5b\xb6\xd0\x58\xae\x64\x69\x95\x30\xfd\xec\xd5\xa8\x2a\xc0\xe8\x90\x27\xba\xe9\xf7\x7c\xb1\x74\x6d\xc3\x44\x48\xf7\xb4\x46\x9b\xc9\x67\x52\x49\xba\x60\x10\x31\xaa\xa5\x37\x30\x8c\x16\x64\x25\x4a\xa4\x76\x0d\x24\xfa\x52\x3e\x00\x81\x7e\x78\xbd\xa7\x16\xa0\xd9\xa1\x5d\x07\x80\x2c\x56\xf0\x3a\x09\x30\xc2\x19\xca\x47\x52\x86\x9c\x40\xc6\x6f\xb5\x10\xa3\xc7\xa3\x25\xb0\xb5\xeb\xfb\x8c\xe6\xe4\x88\x8f\xd9\xf8\x98\x7c\x78\x6d\x5b\xc6\xaa\x49\xd2\xd4\x04\x32\x28\x11\x52\x59\x68\xfe\x0f\x38\xcb\x63\x3b\xb3\xc7\x87\xe7\x22\xc8\x90\x42\x7e\x31\x3f\xe9\xc5\xf1\xbe\x1a\x81\x20\x0f\xb3\xad\x24\xd8\x4f\x23\xd0\xc2\xe3\xca\x28\xd3\xb5\xbf\xe0\xfe\x41\x2c\x3e\xb0\x35\x0b\x15\xde\xda\x79\xaf\xb6\x6d\xe3\x4d\x92\x4c\x2c\x48\x06\x5f\xdb\x88\x5f\x4f\x46\x8a\x50\x0a\xa7\x69\xac\x5f\xe6\x0a\x79\x99\x4f\x56\xb9\xfb\x69\x3e\x47\xb5\xee\x45\x3e\x17\xfa\x5f\xa8\xd5\x65\xb3\x6a\x31\x3d\x88\xab\x11\x33\xb1\x40\xc9\x89\xad\xb8\x52\x35\x2f\xa7\x27\xd3\x44\x96\x91\x82\x17\xec\xd8\x66\x1e\xd4\xe2\x16\x88\xd4\xa8\xb9\x5c\xad\x22\x90\x9f\x1e\xa8\x84\xb0\x7b\x96\x68\x98\xa1\x12\xaf\xa1\x59\x26\x9f\xe6\xf3\xbf\x8d\xf7\x7f\x9c\x1f\x69\x71\xcd\xff\xc1\x1c\xa7\xd2\xe7\x18\xb6\xfb\xd4\xea\x11\xc9\xff\x51\xbb\x32\x39\xb6\x22\x2c\x83\x15\x56\xdd\xb1\xa2\x85\x53\xad\x67\xb4\x5c\x68\x6a\x22\xaa\xc5\x52\x43\x6e\x29\x32\xac\xd4\x93\xab\x12\xfd\xb6\x40\xa1\x8a\xa4\xad\x5d\x23\x3a\x26\xe4\x47\x5a\x6a\xc2\x73\x8a\x51\x3b\x2e\xa4\x40\x2f\xd2\x26\xc2\x74\x7b\xd0\xab\x48\xc2\x05\xd6\x12\xaa\x39\xd4\x94\xcb\xb2\x02\x28\xc4\xc1\x1c\x97\x94\x0c\xcc\x2e\x26\xd7\x4c\x75\xf2\x8f\x35\x8c\xb1\x7d\x00\xc0\xbc\x80\xef\x2c\x18\x59\xc4\x67\xc9\x36\xda\x17\xc0\xd6\x9a\x1a\x3e\x3a\x65\x8a\x0f\x11\xb6\x66\xe5\xc6\x64\xc4\xd2\x8b\xca\x3d\xf7\xa2\xe7\x9e\xe1\xc5\xf4\x81\x40\x0a\xc3\x9c\x07\xb9\x78\x91\x71\x20\x62\xb6\x50\x58\x9d\xdc\x73\x7a\x40\xb3\xec\xe8\xd9\xf4\x00\x4a\x20\x95\x4c\x42\xc9\xa8\xdc\xec\xc7\xd6\x01\x15\x41\x11\x49\xef\x8d\x6b\x21\x50\xe4\xcc\x6c\xb4\x60\x65\x6d\x31\xe6\x56\x9f\x4c\x25\x8b\xab\x1e\xbb\xcf\x76\x7e\x1d\x09\xe9\x8a\x1d\x2e\x76\x08\x9d\xee\x1c\x83\xcf\xdc\xf1\x06\x69\x51\xdd\x68\xdf\xe3\x45\x12\x17\x1a\xf4\x08\xd4\x0a\xff\xab\x16\x2e\x9e\x81\x72\x0a\xb4\x0d\x0f\x07\xcd\xe5\xd9\x8d\xad\xa0\x10\x00\x4f\xff\x41\xde\xd0\xe4\x96\xed\x78\x21\xb4\x80\xb8\xee\x13\x80\x72\x4e\x15\x99\xe9\xb7\xcf\xc0\x19\xa3\x88\x57\x41\x30\x5a\xb5\xed\xb8\x79\x7b\x83\x6c\xe5\x58\x8d\xcc\x84\xd4\x82\x32\xb0\x4f\x6a\x19\xc6\x27\xdb\x48\xa8\x1e\xd0\x09\x71\x8f\x01\xd2\xfb\x52\xe4\x6a\x5f\x28\xd9\x4e\x11\x30\xcd\xf5\xcf\x7a\xbf\x51\x5c\x6e\x07\xf8\x48\x0b\x2f\x83\x5a\xbf\xfb\x18\x53\x12\x68\x5e\xe4\xb8\x56\xc3\x99\x22\x7f\x70\x83\xa1\x62\x21\xcf\xf1\x0f\xab\x7a\x7b\x30\xd4\xc0\xc7\xba\x3f\xbc\xd0\x25\x3b\x4c\xf5\x8c\x33\x78\xeb\xcb\xad\xdb\x74\x81\xaa\x89\xb1\xec\xa3\x0c\x72\x7b\x79\xaa\x9f\x29\xcd\xd3\x79\x95\xe1\xe5\x44\xac\xa7\x3b\xc2\xa3\x3e\xaa\xc7\x4e\x80\x77\xe4\x4a\x12\x71\x97\x93\x8b\x49\x94\xe1\x33\x2c\xec\xc5\x44\x3e\x04\x31\x4e\xae\x2f\xcf\x6e\x26\x9a\xa1\x0c\xc0\x96\xe6\x9b\x4f\xa1\xda\xbf\xa3\xae\xb4\x12\xa3\x0e\x27\xcb\x1d\x7e\xa5\x5e\x46\x7d\x66\x25\xcd\x17\xcc\xf8\x2d\x80\xa9\xf0\x0e\xbe\x4b\xc5\x2a\x6c\x9f\x2a\x78\x72\x4b\xa8\xb9\x76\xf0\x6c\x4b\x66\x7c\x9d\xd0\x8d\x09\x7e\x49\x44\x96\x71\x09\xcc\x07\x20\x04\x77\xba\x41\x36\xb4\xd6\xe5\xb2\x62\xc9\x56\xac\xa4\x99\x59\x17\xb5\x39\xf7\x50\x85\xfb\xfe\x2d\x39\x79\xf1\xf5\x09\x39\x7a\xf9\xe2\xd5\x57\xff\xef\xff\xfd\xff\x9c\x7c\xfd\xf5\xeb\xaf\x9f\xc5\xce\xac\x80\xf2\xbd\x74\x96\x6d\x1a\x1c\xfa\xf6\x24\xd2\x65\x0a\xd2\x6c\xa7\xc8\x89\x28\x58\x49\x63\x79\x2c\xe5\x46\x2a\xb6\x92\x63\xa3\x32\xaa\x24\x93\xe4\xf5\xab\x3f\x9f\x7c\xa3\x97\xf3\xe2\xdb\x6f\xbf\x3d\xd6\x70\xcc\x18\x96\xec\x75\x78\xd0\xa9\xf6\xce\x2e\xcf\x42\xc3\xda\x5d\xe2\xb6\xbf\xfa\xf6\xe5\xd7\xaf\xec\xfe\x6c\xc4\x66\x2e\x94\xa9\x9e\x4d\x4b\x9e\x6d\xf4\x21\x94\x62\x96\xb1\x15\x9e\x43\xb8\x3e\x28\x8e\xa7\x6f\x79\x46\x0b\x59\x73\xd8\x6e\x8f\xf5\x86\xde\xb8\x72\x99\xd6\x95\x5b\xf7\x8d\x29\x85\x79\xae\x25\x1d\xbe\x66\x3e\xef\xfd\xea\xc5\x8b\x17\x2f\x4e\x5f\x7d\xfb\xed\xb7\xdf\x86\xe4\xe3\xc2\x48\xbe\xe4\x3f\xc6\xff\xba\xfb\xeb\xfd\xa8\xae\xa8\x3c\xe2\xb9\x1a\x89\x72\x84\x57\x3b\xac\xc0\xd3\xef\x0a\xf8\x24\x10\x45\xfa\xeb\xd9\x76\x3b\xa1\x20\xa4\xe7\xb0\xaa\xa3\x92\x25\xa2\x4c\xf5\xe5\x53\x94\x47\xcc\x99\x7e\x28\x00\x66\x37\x75\x32\x17\xcc\xe0\x44\xaf\x63\xf3\xb2\x4c\xcd\x4a\x76\x4f\x57\xb1\x4a\xc7\xb5\x04\x04\x12\xef\x48\xcb\x38\x46\x18\x1a\x65\x3c\xd7\x94\x57\x64\xfb\xea\xe7\x40\x57\x75\x01\xc6\xce\x5e\x86\x89\xb7\xcd\xf6\x31\x5f\x93\xa5\x10\xb7\xbe\x31\x38\xa2\x32\x53\xa2\x18\xa1\x54\xba\xa5\x3c\x83\xb2\x8a\x30\x8b\xbe\x86\xc6\xc7\xca\x94\x2e\x50\xa2\x30\xb7\x30\x6c\xb3\xa1\xe0\xa1\x00\x15\x93\x8b\x82\xe5\xe9\xee\x08\x33\xa1\x94\x58\x8d\xad\x91\xd7\x30\x2e\x92\xce\x99\x2d\xb4\x1a\x7c\xdd\x36\x03\xa7\xa9\x62\xea\x9b\x90\xf5\xe8\x46\xe0\x47\xb7\x79\xd4\x1d\x83\xa3\xe4\x9c\x6c\x44\x45\xe4\x1d\x57\x61\x22\xae\x84\x59\xa8\xd1\xa5\xcd\x18\x91\x58\x96\xd3\x2c\x17\x0b\x7c\xe3\x14\x06\x17\x1a\x28\x61\xaa\xff\xe0\x33\x04\x25\x2e\x38\xc9\xcc\x36\x64\x4e\xb3\x0c\x25\xbb\xd2\x52\x37\x2f\xe0\x19\x46\x3e\xc6\x69\xee\x38\x22\xa3\xd0\x98\xa6\xb9\xb9\xc1\xa0\x41\x9d\x31\x6f\xa7\xf5\x5b\x47\xc0\xee\xab\x06\x73\x6a\x86\xf3\x92\xaf\x59\x67\xa1\xe4\xf3\x66\x73\x32\xe7\x19\xcb\xbd\x02\xed\x8e\x25\xaa\xd5\x17\x29\xb4\x8c\x1c\x42\x25\x51\xb5\x81\x18\x19\xd4\xb4\x9f\x25\xbb\x30\x3e\xc9\xdb\xb3\x19\xab\xa8\x12\x68\x1c\xdf\x53\xa7\xe3\x96\xf4\xa3\x96\xf9\x52\x01\xd9\xf3\x44\xd5\x99\x99\xf5\xf0\x3c\xd2\xd1\x5e\xe2\x92\xd1\x94\xe7\x4c\xca\xe7\x19\x5f\x33\xfd\x0f\xd0\xb9\x8a\x2a\x78\xa5\x6d\x70\x47\xad\x6d\x3d\xb2\x3e\xd8\xcf\x76\xc0\x36\x26\x17\x79\x52\x32\x2a\x4d\xc0\x52\xbc\x28\x29\xde\x78\x76\x5f\xb0\x92\x33\x7d\x05\x65\x51\x95\x5c\x54\x12\xf2\x67\x95\x50\xeb\x02\xcc\x09\xf9\x48\xaf\x92\x98\xe7\x04\x98\x36\xea\x71\xc9\x25\xa9\xf2\x54\xf3\x69\x8c\xae\x37\xe0\x7c\x36\x26\xe7\xcc\xad\xc8\xa6\x25\x54\x82\x2c\x98\xc2\x50\x00\x34\x4a\x62\x9d\x71\x33\x59\x68\x68\xb3\x16\x5c\x18\x48\x25\x7f\xaf\x78\x72\x9b\x6d\xfc\x3b\xfd\xed\x8b\xbd\xf5\xba\xa0\x81\x32\xce\x01\x1f\xc4\xe2\xbc\x14\x50\xef\x38\x2a\xdd\x45\x70\x34\x0c\xf3\x91\xad\x44\xb9\x99\x94\x42\x5f\xf3\x09\x55\xcb\xe8\x28\x2d\x6b\xb9\xe6\x2b\x70\x4a\x7d\x4b\xb3\xe4\xbb\x92\x16\xcb\xef\x69\xbe\x38\x9b\xab\xe0\x63\xeb\x3d\x9a\xbb\x93\x0f\x1f\x0d\x60\x6c\x0d\x4e\x37\xe2\x7b\x21\xd5\x59\x12\x89\xa1\xdc\x7a\x10\xf1\xbe\x3e\x71\x02\x9d\xae\xc6\xb2\x32\xe2\xb7\xe6\x34\xbc\xba\xe9\x42\x58\x6c\x4e\x6b\xc5\x72\xed\x3c\x2f\x6a\xdf\x02\xae\x24\xcb\xe6\xe4\x88\xce\x23\xd5\x74\x80\x62\x99\xb1\x97\xdc\x30\xd6\x6e\x28\x86\x26\x5c\x44\xa9\xcf\xc6\xe4\xcd\xc6\x95\xfa\x46\x6c\x1b\x1a\x12\xea\x14\xca\xb0\x5f\x71\x2d\x6e\x87\x96\x89\xc5\x87\x83\xf2\xb6\x23\xc0\xd3\x83\xf3\xab\x4f\x93\xe9\x01\xe8\x0f\x35\x93\x6e\x08\xd8\x1d\x35\xde\x1d\x59\x26\xee\x88\x14\x2b\x48\xfb\x43\xb3\xac\xcd\x38\x0e\x6b\xf3\x01\xa7\x57\x73\x8c\x98\x13\xb2\xe0\xd0\x92\xae\x98\x71\x44\xb8\x7a\x77\xf3\xf9\xea\x52\x8f\x7a\xf6\xf6\xed\xbb\xc9\xcd\x58\xe3\xdf\xd0\xa8\xa6\xa1\xc1\x33\x50\xc0\x7d\x23\x2a\xf0\xd3\x6a\x92\x49\x6f\x53\x17\x97\x93\xcf\x37\xd3\x03\xa4\x9c\x7f\x69\x21\x6f\x40\xd7\x2c\x67\xa0\x2c\x69\xdf\xe6\x3d\xa8\xc2\x91\x8e\xd1\x99\x61\x7a\x80\x6b\x0a\x17\xc8\xb6\x9e\x2c\xe6\x44\xb6\x16\x43\x84\xe1\x2b\x96\x54\x42\xc9\x1e\xac\x50\x59\x94\xc2\x96\xdd\x69\x13\x69\xc3\x57\x09\x40\x67\xc0\x08\xb4\x2d\x77\xe1\x66\x34\xcb\xac\x8d\xd7\x2e\x2c\x7a\x72\x9e\xf5\x5c\xdf\xef\xd0\x9a\x62\x0b\x08\x8d\x59\x23\x53\x8d\x0a\xf7\xc7\xa6\x6b\x9e\xa0\x5a\x61\x52\x0a\x25\x12\xd1\x69\x0f\x01\xf9\xd2\x8f\x76\xc2\xe0\xc6\xc2\x74\x27\x34\x35\x9e\x2b\x86\x1d\x5f\xb1\xb4\x45\xed\x87\x1a\x89\x63\xcd\x50\xd9\x47\x0a\x97\xd8\x72\x42\x57\x37\x93\xab\x4f\x37\xbf\xbc\xf9\xf4\xe9\x06\x69\x59\xc6\xe6\x8a\xcc\x32\x9a\xdf\xee\xab\x17\xf0\xf6\x7a\xbd\x4f\x35\x7a\x5f\x11\x07\xc9\x62\x9a\x25\xd8\xad\x23\x89\xc8\xbd\x1d\x87\x45\x4e\x3d\xbf\xd9\x71\x03\x2d\xa9\x9d\xea\xf0\x18\x14\x6b\x77\x7a\x4c\x32\x46\xd7\x11\x01\xb9\x16\x08\x40\xc1\xb2\x14\xc2\x90\xee\xad\x11\x35\x5f\xb2\x2f\x47\x15\x81\xd8\xc5\x64\x1d\x4a\x5c\xd0\x06\xb5\x93\x3f\x10\xd4\x90\x39\x71\x56\xaa\x8b\x1c\x8a\x10\xc4\xe2\x47\x5a\xd9\x14\x8b\x08\xae\x6c\x5e\xba\x73\x96\x05\x13\x0f\xb4\x2d\x68\x67\x90\xb8\xec\xde\xbe\x18\xc3\xfc\x5f\x8a\x94\x41\x91\xa7\xae\x3b\xf0\xce\xef\xf0\xf6\xe2\xfc\x4a\x77\x42\xe5\x15\x58\xc8\xc5\x9c\xe8\x6f\x0f\x41\x03\x62\x47\x1f\x69\xb6\xd1\x88\xe3\x50\x0f\x2a\x6c\x49\xd5\x02\xfe\x8a\x6e\xec\x79\x19\x7d\xa1\xa5\xdf\xe0\x9e\xa8\x69\x18\x10\x18\xe7\xdd\x66\x7e\x0d\xab\xc5\x6c\xc0\x31\x01\x8b\x8c\x2b\x39\x12\xd2\x89\x7f\x81\x2a\x29\x73\xca\x33\x2d\x2d\x5f\xe4\x33\x51\xe5\xa9\xe6\xb8\x62\x0a\xcc\x26\xb3\xf6\x3e\xd2\xb1\x09\xe7\xcf\xe7\x93\xe7\x37\x6f\x27\xe8\x89\x18\x53\xe3\xea\xc3\x30\xc6\x7a\xcf\xa3\x07\x99\x93\x90\xd9\x1e\xd8\x20\xc7\x1c\x05\xa5\x80\x9c\xf0\xb2\x64\xb2\x30\x95\x6b\x6c\x1e\x00\x96\x54\x25\x57\x1b\x47\x59\x2d\xb6\xa8\x24\x9b\x57\xf0\x24\xe9\x5a\xf0\xb0\xbe\x39\x49\xa0\x3e\x0c\xd0\xdc\xa4\x02\x17\x62\x22\xe6\x73\x63\x2b\x42\x7e\x4c\xaf\xb6\x2c\x59\xa2\xb6\xa2\x05\xc9\xfb\x70\xd4\xfd\x8c\x26\xb7\xa3\x46\x71\xe9\x63\x1b\xbb\xef\x08\x9b\x51\x09\x9a\x02\x44\xe0\x21\xa5\x2c\x32\x8a\x39\x82\x4c\x0f\x54\x52\x4c\x0f\x80\xe1\xa3\x00\xdf\xf0\x30\x1e\xa0\x7d\x16\x34\xb8\x7f\x0c\x92\xd3\xd8\x49\x23\xc4\x9b\xda\xbb\x1f\x3d\xb9\xe1\x16\x20\x28\xe0\xb0\x8f\x9d\x2e\x34\x2a\x5c\xe6\x22\x07\xf7\x61\xa7\xaa\x31\x62\x9f\x71\x23\x96\x72\x69\x1d\xfc\xf5\x2d\x39\xff\xfe\xed\xa4\xe1\xec\x97\x14\xa7\xaf\x5e\x05\xa3\xa6\xaa\xb4\x38\x3d\xf9\xe6\x18\x9a\xbc\xfc\xf3\xb7\xf8\x8f\x57\xaf\xeb\x7f\x7d\xf3\x02\xff\x75\xf2\xd5\x57\xaf\xcd\xbf\x4e\x4e\x4e\xdc\xbf\xfe\x1c\xe2\x67\xe2\x8f\xaf\x99\x4d\x55\x9f\xdb\x44\xa0\x2e\x2a\x11\xab\x99\x97\x0c\xc6\x9e\xe9\x31\x41\x4b\x8f\xbd\xfc\x91\x0c\x0b\x13\xc7\xdb\xe4\x29\xea\xdb\xad\xd9\xd3\x9d\x62\xb0\x67\x67\x46\x91\x9c\x85\x3d\xd2\x48\xaf\x84\x0e\x7a\x25\x1d\xdd\x5b\x52\x64\x13\x07\x85\x07\x2f\xa1\x25\xa7\x24\x21\x23\x58\x5f\xe4\x17\x33\x73\x1c\x83\xb6\x27\xbc\x6f\xc5\xa0\x9f\x2a\xf5\x40\x14\xba\xd3\xf3\x89\x71\xa8\xa8\xd4\x42\xf8\x38\x14\x04\x82\x6e\x2c\xaa\xc4\x80\x45\x7f\x55\x2c\x2a\xcc\x45\x78\x1a\x34\x2a\x40\x45\xc2\x54\x92\x1e\x1e\x42\x0e\xe7\x3c\xa5\x65\x6a\x82\x02\x94\x30\x61\x57\x70\x67\x42\xc3\xe2\x35\x4a\x05\xba\xf1\x81\x22\x2e\xa9\x14\x1c\x16\xaa\x02\x54\x92\x36\x02\xf4\x34\x00\xf4\x71\x6a\x44\x1d\xb3\xd5\x9d\x5f\x5e\x6f\xe3\xf0\x7d\x10\x74\xf0\xa0\x0c\xce\x3e\x06\xb4\xff\xf5\x6b\xfc\xef\x80\xc3\x07\x1c\x1e\xfc\x35\x8c\xc3\x19\x55\x55\xc9\xce\x99\x62\x89\xfa\xb4\x66\x65\xc9\xbb\x0d\x68\xef\x43\x9d\x5c\xe1\x67\x25\xc0\x1c\x0b\xdf\x99\xe1\x49\x0a\x4d\x23\x51\x4f\x33\xaa\xbb\x89\x9c\xd0\x4a\x89\x11\x36\x65\x29\x29\x32\xaa\x20\x35\x6f\x42\x0b\x0a\xd8\x8d\x43\x08\xf3\x0f\x75\xcc\x9a\xbb\x49\x61\xf3\x25\xa1\x68\x5b\x24\x92\x15\xb4\x04\xc7\x5b\x20\x2d\x80\x6b\x73\x41\x64\x41\x13\x26\x8f\xc1\x60\x59\x64\xec\x2f\x64\x7a\x70\x7d\x79\x76\xf3\xbe\xca\xb2\xcd\x15\xb8\x08\xfc\x15\x6c\xa6\x1f\xcf\xae\xff\xb7\xff\x25\x18\x4b\x8e\xaf\x18\xe4\x3a\xba\xae\x0a\x40\x2c\x1f\x44\x72\xfb\x57\xf0\x17\x9d\x1e\x80\x35\x37\xa8\x45\x03\xd7\x52\x4c\xda\x73\x80\xe8\x13\x43\x04\x35\x9e\x33\xc0\x3a\x26\x6c\x55\x28\x30\x2e\x08\xe3\x59\xea\x85\xe9\x35\x60\xb4\xa7\xa0\x6c\x26\xf8\x8e\xf6\x48\x35\xfc\xde\x6b\xeb\x1f\x2d\xfa\xff\xeb\xc5\x59\xfc\xad\x58\xb2\x1c\x15\x25\x5b\x73\x76\xd7\xa2\x92\x34\x93\xcb\x71\xf0\x00\xe3\xa7\x15\x94\x46\xe3\x07\xd8\x92\x7f\xe0\x47\x51\xde\xd2\x52\x93\x99\xbf\xda\xa8\xdf\x9f\x36\xff\xd7\x5f\xcd\x69\xb4\xfa\x84\x6d\xed\xde\xee\xc5\x78\xa6\x97\x0c\x08\xc5\x5c\x5f\x11\xfd\x4c\xd3\x2a\x31\xf9\xf3\x68\x1a\x52\x22\xb6\x9e\x51\x26\xc0\x6d\xe1\x62\xd2\x7d\x44\x75\xd3\x3a\x03\x7b\x6d\xc4\xc6\x58\x97\xad\x50\x91\x45\x49\x83\xe4\x39\x17\xf9\xe8\x53\xc1\xf2\x6b\x45\x93\x5b\xb7\x08\x2f\xd3\x3f\x3c\xbd\x23\xd7\x64\x94\xb2\x92\xaf\x59\xea\x9a\x86\x06\x05\x77\x23\x7d\x67\xb3\x3b\xba\x91\x9e\xde\xe9\x78\x2b\xa0\x15\x34\x90\x36\x3a\x35\xe0\x8e\x1f\x4d\x8e\x61\x14\x2b\xa1\x9f\xce\xa3\x81\xda\x6d\xe0\x5f\xb0\x9c\x95\x3c\xf9\xe9\x7c\xd2\x37\xb2\xe7\xbb\xed\x1e\xe6\x92\x48\x62\x7e\x21\x3f\x9d\x4f\x88\x14\xd6\x1d\x96\x24\xb4\x0c\x67\x4e\x81\xcb\x94\x8a\xfc\xf0\x50\x11\x89\x58\x05\xfa\x8a\xf9\x1c\x94\xd4\xfa\xcd\xa1\xdd\x76\x25\x52\x06\xa1\xe0\xc0\x23\xfd\x74\x3e\x41\x56\x34\x62\x71\x84\xc8\x1c\xa6\xdf\x16\xcb\x53\x96\xd6\x3e\x00\x9a\xc5\x81\xd9\x8a\x52\xac\x35\xba\x9e\x31\x05\x1a\xf2\x3a\x3b\x45\x64\x9d\xb9\xb3\x4a\x8c\x1f\x1d\x61\xbd\x64\x34\x53\xcb\x07\xaa\xc8\xb0\xb3\x96\x1f\xf6\xd4\xd1\x61\xc7\x49\x98\x1b\x68\xe5\x03\xb0\xa7\x31\x59\x5b\xea\xd7\xf9\x58\xbf\x0f\xf6\xb2\x12\xbf\x4b\x1c\x91\xd3\x8c\xdc\x19\xab\xb8\x35\x7a\x87\x15\x3d\x73\xc8\x7a\xb8\xe6\x69\x45\x33\x22\xab\x99\x16\x03\x44\xce\x8c\xd1\x6c\xc6\x2c\x11\x4e\x59\x3e\x26\xdb\x92\x4a\x24\x17\xa2\xbe\x9f\xe0\x69\x02\x58\xd2\x52\x2a\x52\x08\xc9\xc1\x0d\xff\x80\x6c\x1b\xe4\xa5\x75\xa8\xce\x89\x48\x92\x2a\x38\x2a\xcf\x49\x41\x4b\xc5\x93\x2a\xa3\x65\xb6\xd1\x07\xc2\xa4\xd4\xcb\xa8\x4d\x33\xe0\x0a\x0d\x41\x4a\x58\x4e\x42\xaa\x92\xf2\x9c\xa5\x63\x12\x93\x7d\x6a\x31\x91\x9a\x22\xcd\x3e\x0c\x8e\x89\x64\xcc\x45\x08\x66\x62\xb1\x9f\x56\xb1\x9b\x09\xa5\x2d\xb5\x08\x7b\x14\x99\x8b\x7a\x4a\xf4\x1b\xa1\x83\x89\xd4\xab\x0b\xff\xd2\xe2\x47\xf1\x60\x1e\xd2\xc5\x1d\xbd\xbb\x4f\xb2\xaa\x87\xff\xd5\xc5\x56\x07\x94\xfa\x81\xf8\x8f\xb6\x58\x35\xb8\xe6\x9d\xb9\x4f\x1a\x29\x5f\x98\x19\x14\xac\x57\xa6\x06\xb8\xbe\xd4\x73\x51\x6e\x89\xfe\xe3\x98\xdb\x6e\x53\x9c\x6c\x64\xe9\x30\x69\x88\x16\xb9\xd0\x5f\xd5\xa1\x95\x87\x87\xe4\x62\xf2\xc3\x35\x49\xab\xd5\x2a\xe8\x57\xea\xb6\x61\xbd\xe5\x2c\x5b\x61\xdf\x7d\xb6\x21\xb3\x4d\x23\x1a\xb0\x69\xb4\x0e\x0d\x6a\xf7\xba\xaa\x32\xc5\x8b\xcc\xcb\x3e\x83\x19\x2c\x49\x25\xd1\x73\x4c\xff\xc7\xe6\x7b\xc0\xa8\xed\x18\x6f\x65\x28\x8f\x0c\x04\xe2\x49\x50\x44\x84\x7e\x80\x75\x82\x7c\x77\x57\xd2\x22\x66\xff\x41\x70\x02\xf3\x76\x78\xf8\xfc\xf0\x10\x87\x33\xcc\x1b\x59\x82\xed\xc8\xf2\xba\x87\x87\xcf\xff\x43\xc3\xe2\xf9\xf1\x9a\xa9\xe5\xcb\xc3\x00\x55\x31\x09\xcc\x2c\x0c\xb6\xf2\x6a\xc0\x69\xcd\xd8\x82\xe7\x76\x46\x3d\xdc\xe1\xa1\xa9\xf2\x2e\x45\xcc\x43\xac\x06\xe1\xe1\xa1\x99\xdb\x27\x72\x70\x40\xbc\x58\xcb\x96\x3c\x0a\xe1\x87\xeb\x06\x9e\x94\x6c\xce\xef\xfb\x3f\x13\x6c\x6f\x8d\x7b\xcd\x23\x06\x27\x60\x7e\x6f\xb2\x5c\xb8\x3a\xee\x31\xec\xbe\xe5\x5e\x01\xf1\xe4\xa0\x8a\xd1\xac\x57\xc5\xe5\x12\x6d\xcc\xab\x80\xa6\xac\x15\x56\x72\x4c\x2e\x85\x02\xa2\x49\x58\xbe\xe6\xa5\xc8\x57\x40\x8b\x84\xa9\x16\x44\x73\x32\xd3\xbc\xe0\x8a\x29\x9a\xe1\x0d\x14\x65\xb2\x64\x1a\xd1\x2b\x11\x2e\x73\xe5\x98\x5a\x64\x10\x69\xa1\xd1\x72\xc9\xa9\x62\xd9\xa6\x79\x77\x44\x55\xfa\x61\xce\xa0\x35\x17\xc9\x6d\x58\x88\x07\xba\x6e\x92\xaf\x1a\x2f\x0e\x7d\xd6\x09\xcd\xf8\xe1\xa1\x9f\xb6\x53\x8f\x5a\x33\xc5\x5e\xb7\xe0\xbb\xb1\x0e\xe7\x87\x87\x8a\x16\x76\x20\xff\xe6\xe8\x09\x1e\x7c\x67\xae\xb0\xe6\x3c\xdc\x89\x35\xed\x74\x1a\xb8\x88\xf4\x8b\x95\xcb\x8f\x7a\xac\x95\x4c\x26\x34\x97\x98\x0d\xa5\xf1\xbe\x04\x59\xb3\x92\xcf\x37\x26\xbf\x10\x56\xa7\x02\x6d\x1c\xf6\x31\xee\xc0\x41\xfc\x6a\x73\xcd\xcc\x36\x96\xed\xaf\xaf\xb6\x5e\xa5\x12\xe4\xc5\x9e\x82\x13\x2f\x78\xef\x68\xfc\x8b\xc9\x85\xe3\xd6\x85\xe3\xc5\x9a\xde\xbf\x75\x1a\x58\xbc\x83\x61\xfd\x33\xe6\x91\xac\x9f\xa4\xa8\x53\xb6\x8c\xc9\xa7\x02\x7d\x55\x08\xb5\x59\xc9\xb4\xe0\x5e\xae\x8c\x27\x47\x98\x61\x77\xda\x10\x74\xff\xc4\x97\xa9\x05\xb1\x42\x88\xac\xc1\x6e\xe7\x3c\x23\x47\x55\x2e\x99\x7a\xb6\x37\xd3\xad\xa1\xf5\xf1\xe6\x73\x2f\x48\x7d\xbc\xf9\x6c\xaf\x8d\xfe\x27\x64\x5b\x51\x76\x85\x8d\xa0\xeb\x31\xb9\x66\x61\xaf\x5b\x03\x45\xbd\x15\x3d\x86\x17\x68\xfe\xd5\x57\xfb\x27\xa4\xc1\x98\xc8\x3d\x9f\xc4\xe1\x45\xa8\x57\xeb\x83\x20\x25\xc3\x4c\x92\x61\xeb\x43\xe6\xb9\x7c\x63\x84\x5e\x53\xb9\x4c\x72\x61\xf0\x9f\xf1\x39\x02\xef\x28\xdf\x12\x10\xbc\x00\xa5\xb8\x75\xb5\xae\x9c\x5f\xb6\x06\x2d\x38\x9f\xbd\x68\x64\xfb\xb3\xd3\x97\xb8\xab\x8e\x0c\x94\x0f\x70\xff\xb4\x33\xf4\x0c\xc8\xbb\x68\x36\x77\x0a\x1e\x69\xc0\x3a\x33\xdf\x6b\xbe\xce\xae\x5d\x53\xf1\x20\x20\x18\x7a\x83\x34\x34\xfc\x5c\x92\xb3\x4a\x89\xbd\x91\x03\xce\xf5\x9e\x67\x8a\x95\x90\x40\x35\xea\x9a\xd9\x67\x9c\x0f\x22\xb9\x7d\x1f\xf7\x61\xdd\xbe\x77\xbb\x9d\xec\xb5\xd3\x68\xd5\xaf\x98\x61\x27\x08\xc1\x23\x13\xc9\x2d\x38\x88\x8f\xc9\xbf\x6b\x76\x8b\x6e\x20\xff\x20\xfa\xd3\x40\x18\x0c\x90\x49\x63\x00\x72\xad\xad\x0a\x20\x5c\x04\x8d\x2b\xcf\x42\xe2\x56\x73\x34\xf7\x88\xab\xef\xa2\xb8\xa2\x45\xc1\x30\x9f\x65\xae\x84\x73\xb9\x8e\x50\x6f\xa5\x65\xb8\x52\x3f\x2a\x4a\x52\x3e\x9f\xb3\x92\xe5\x8a\x14\x54\x2d\x9f\xf9\x88\xec\x79\x59\xe5\xcf\xef\x8d\x3e\x41\xaf\xfb\xa1\x97\x54\x43\x78\x52\x8a\x19\xdb\x03\x27\x44\x7a\xba\x48\x50\xbe\x62\xdb\xd6\xc5\x20\x73\x45\xb9\x72\x49\x41\xa8\x52\x6c\x55\xa0\x24\x4e\x13\x10\xd5\x9a\xae\x9c\x70\x38\x7c\x6e\xb2\x75\x46\x92\x45\xd0\x35\xe5\x50\x50\x6e\xdc\x4c\x0b\xb2\xa2\xb7\x36\xab\x07\xf8\x79\x9b\x04\x4f\x5a\x06\xc6\x38\x1f\x73\xfa\x11\x75\x50\x82\xe1\x9b\x2c\x3d\x86\x14\x51\x95\x64\x38\xcc\xdb\xc9\x67\xff\x50\xbe\x7e\xb1\x7a\x30\xb2\xd0\xd0\xec\x1b\x0c\x70\xb1\xdb\xa7\x0d\xf6\x00\xe8\xd0\xce\x6c\x58\x66\x03\xc6\x90\xcb\xe1\xc5\xb1\x87\x32\xc1\xf4\x58\x59\xf7\x7f\xa7\x72\x8f\xf2\x3f\x20\xd4\xc8\x25\x0d\x9e\x20\x3c\x2f\xf4\x47\xce\xb2\x26\xaa\x37\x12\x48\x98\x6e\x68\xe1\x43\x1f\xa2\x3d\xa9\x31\xf9\x51\x1f\x9c\x49\x9f\x53\xa7\xba\xe5\x5a\xac\xa9\x1f\xd2\x71\x3c\x0a\xce\xe6\xcc\xd2\x23\xea\xe7\x64\x32\x79\x89\x72\x63\x31\x8b\x97\xc6\x76\x25\x2a\x53\x16\xd1\x38\xf3\xa2\xf7\xd5\xf3\x5c\x84\x13\x81\x8a\xd2\xb6\x98\xdb\x84\xe0\xb8\xa0\x46\x5a\x39\xe9\xd8\xba\x87\x5e\x9b\x8f\x54\x0b\xa9\x8f\xc7\xce\x1f\x69\x79\xfb\x91\xca\xee\x14\x17\x17\x5b\x1d\xec\xc5\x5b\xe9\x7f\xfb\x9a\x05\xc8\x52\x20\x35\xb2\x0c\xeb\xb9\x6f\xf0\x52\xe8\x71\xc8\x4c\xa3\x54\xa8\x9b\x62\x73\x27\xcd\x18\x24\x29\xd4\xbf\x90\x25\xbb\xa7\x29\x4b\xf8\xaa\x8e\x2f\x8f\x65\x80\xa4\x8a\x64\x8c\x4a\x45\xbe\xc1\x31\x25\x53\xc7\x60\xf3\xc6\x1c\x90\x10\x71\x97\x51\xb9\xb4\x1e\xf1\x1b\x73\x03\x57\x76\x15\x11\x65\x9c\x71\x03\x05\x8f\x06\x88\x8d\x6c\x1c\xe3\xfd\x7c\xfe\x02\x3e\xa1\x53\xb4\x55\x30\x79\xae\x5e\xbf\xda\x9b\x69\x43\x60\x5f\x9e\xdd\x7c\x32\x7e\x19\x4e\x4a\x41\xba\xfc\xc0\xe3\x9e\x08\xa9\x7e\x2c\xb9\x62\xe0\xf1\xb9\x37\xea\x0f\x77\xdf\xe6\x0b\xc1\x75\x3c\x8a\x25\x34\x5f\x97\xea\x93\xa1\xe4\x4e\x0f\xb5\x9b\x0e\x0a\xe5\x73\x05\x35\x24\x52\xf4\xc6\x87\xbc\x93\x25\x05\x33\x51\x58\x12\xc0\x5c\x70\x36\x53\x31\xa6\x72\xc4\xa4\xbb\x30\xc9\x1d\x45\xca\x9e\x64\x62\x36\x63\x25\xca\x53\x34\x6f\xe0\xa1\xb8\x59\x4b\x7a\x89\xbd\x40\x77\xab\x09\x92\xed\x4d\x8b\x22\xe3\x96\x35\xf1\xef\x8a\x33\x1a\x44\x84\xc5\x82\x25\x6a\x17\x53\x8e\x1f\x95\x5a\xca\x0e\xb5\x3f\xc3\x1f\xec\xf7\x00\x19\xd8\x48\x01\x36\x79\x21\xc8\xfa\x26\x3c\xc3\x3b\xe2\x76\xe6\x3f\x76\x6f\x1a\x9e\x41\xfb\x30\xff\x2d\x89\x60\x9c\x38\x80\x4a\x19\xe5\x31\xd0\x48\x27\x6d\xe8\x1b\x78\x70\x03\x73\x01\x2a\x9a\x88\x4a\xcc\x04\x6f\xe2\xa0\x4e\x4a\x97\xe0\xfc\x02\x6a\x25\x63\x30\xd0\x63\x53\x13\x38\x6e\x9c\xbd\x67\xd5\x22\x4a\x08\xf5\xfd\x9d\xf3\x7b\xb4\xfe\x9a\xf6\xa6\x94\x0b\xf9\x6a\xfc\xf2\xa5\xd3\x80\x6a\xea\x8b\x9a\xcc\xb5\xfe\x1e\xb2\xdc\x42\x26\xad\xa0\x7e\x67\x63\x98\x63\x1b\xec\xe3\x02\x75\x94\x38\x26\x94\x2c\xbd\xbc\x69\x18\x5b\xd7\x4c\x93\x16\x1a\x12\x32\xa7\x35\x2e\xf1\x43\x24\xa9\xf5\x89\x71\x16\xe8\x94\xa2\x26\xae\x69\x2c\x38\xd9\x1a\x19\xad\xa1\x30\x62\xd1\x81\x48\x80\x23\x3e\xb7\xed\x10\x47\xa0\xae\x65\x04\xc9\x8e\xec\xf5\x8d\xa7\x7d\x88\xa8\x10\x6e\xab\x19\x83\x2a\xf6\xa2\x54\x57\x90\x67\xa0\xf3\x41\xfe\xdb\x4e\x17\x48\x7e\x21\x9d\xae\x1f\xb6\xe2\x27\x2d\x88\x6c\xcb\xe4\x01\x21\x75\xb2\xd7\x71\x33\xe8\x75\xee\xd4\x2d\x9a\x6e\x7b\x99\x0a\x0d\x8f\x15\x21\x8d\xbc\x58\x4b\x93\x1f\x0c\xc1\x5c\x21\x23\xc7\x24\xb3\xcb\x82\x0b\x85\x36\x8a\x3a\x33\x6f\x5b\x70\x93\xf1\x8c\xf3\x6f\xcf\x6b\x48\x23\xf0\xfa\xd5\x9f\x4f\xfe\x1c\x4c\xe5\x15\x37\x4c\xc5\x72\x69\xf4\xc8\xa6\xd1\x9d\x4f\xa3\x2b\x81\xc1\xfe\x29\x0c\x5a\xed\x46\x99\x58\x40\x92\x82\xf7\x26\xe6\xf9\x8a\x2d\x58\xa7\x56\xfc\x43\xa8\x93\xff\x48\x34\x26\x37\x31\x0a\x09\x24\x50\xe5\x11\x71\xda\x86\x2b\xf0\x92\xc0\x88\x90\x5e\x4e\x54\xaa\xd0\x02\x48\x0e\x36\x85\xd4\x22\x79\x30\x20\xe2\x0d\x83\xb4\x6f\x31\x2f\x47\x98\xcc\xb8\xa7\x80\xfd\x05\x28\x41\x9d\x2c\x7f\xc1\xd7\x2c\x0f\xa5\x38\x74\x19\x27\x52\xb0\x79\x46\xec\x52\x73\x60\x93\x90\x64\x03\x85\xc6\xfb\x68\x96\x0f\x39\x08\x22\xa6\xce\xb6\x83\xcf\xc4\xa2\xb7\x2e\xe3\x43\xdd\xd6\x92\xd1\x79\x95\x65\x20\xd3\x5b\xa6\x07\x5f\x4e\x26\x16\x96\x6c\x85\xb6\x02\x7c\xac\x47\xcc\x40\x94\xca\x04\x14\xac\x68\xe8\x06\xd6\xb4\x7c\x9e\x89\xc5\x73\x5f\x02\x19\x67\x22\x58\x44\xa5\x63\x97\x3d\xed\x2e\x1f\x6c\xcb\x5a\x49\xb3\x68\x98\x59\x3c\xd4\x00\x02\x77\xa9\xc5\xe9\xd8\x93\xfa\xf0\xe9\x3b\x4b\xc4\x9b\xa6\x80\x44\x8c\x30\x74\xf1\x01\x3b\xb9\x66\x6b\x56\x72\xb5\xd1\x67\xd1\x67\x3f\x7e\x7b\x7f\x57\xd2\x7c\x4f\xe8\x4c\x80\xfa\x40\xbf\x1e\x7d\x85\x82\xb8\xa7\x64\x98\x25\xda\xd6\x3f\x13\x0b\xa3\x8e\xaa\x37\x76\x91\xcf\xc5\x23\xf6\x73\x9d\x94\x8c\x75\xc7\x4b\x7f\xd8\xee\xf1\x64\x7b\x92\x2a\x15\x95\x7a\xca\x1d\x6d\xba\xc9\xe2\x87\x46\xf3\xa7\xdb\xcb\x46\x7a\x8f\x90\x5c\x0a\x93\x95\x36\x17\xf6\xa1\x01\x31\x33\xad\x5a\x15\xc7\x0f\x01\xc2\x8a\xde\x83\xc6\xfd\x9a\xff\x23\x74\x47\x5b\xa9\x95\xad\x7c\x76\x96\xa6\x9d\x29\x34\x0e\x3f\x7a\x8d\xeb\x08\xc8\xba\x6e\x6b\x49\x52\xb1\xa2\x3c\x27\x5e\x62\x8d\x18\x53\x61\x2b\xbb\x26\x34\x27\x34\x97\x9a\x31\xfe\xe1\x23\xf9\x7b\xc5\x20\xc3\x96\x86\x5e\x92\x89\x2a\x1d\xf1\x9c\x2b\xb7\x4a\x28\x24\xe7\x0c\x85\x61\x5f\xed\x25\x68\xde\x4a\xd4\xd5\xa5\x2e\x8c\x7a\x45\x93\x25\xcf\x99\x53\xfd\xe4\x62\x4d\x47\xb4\xe0\xe4\x08\xb3\x2c\x7e\x9e\x55\xb9\xaa\x82\x43\xda\xa6\x23\xbb\x8c\x67\x63\x72\x66\x3d\xe0\xe7\x88\x60\x8f\x12\x2a\x19\x04\x82\xe7\xe8\xc2\xf3\x8c\xac\x18\xcd\xe3\xba\xa9\x86\xed\x0b\x1c\xfe\x99\x22\x55\x01\xda\x85\xcb\xb3\x1b\xcc\x40\x63\x55\x6d\x76\x62\xc0\xfe\x1d\x37\xe8\xe5\xab\x3f\x8f\x5f\x8c\x5f\x8c\x5f\xee\x7d\x8d\xcc\x24\x11\x57\xad\xf0\x55\xb0\x2e\xec\x20\xe6\xe9\x7f\x1b\x25\x98\x5b\x31\x9e\x35\xba\xcd\x45\xea\x4f\xad\x66\x90\xb0\x0a\x88\x39\xd6\xd4\x18\x37\x6e\x9a\xe6\xaa\x35\x84\x0e\x0f\xf5\xcb\x3a\x3c\x7c\x76\xec\x79\x8a\x46\x24\x33\x00\xa5\x03\xe4\x31\x5a\xd9\x5f\x9e\x7c\x3b\x7e\xf5\xf5\x57\x63\xf3\xdf\xd3\x6f\x40\xca\xf3\xe7\x3a\xf5\xf7\x15\x94\xe8\x2f\x72\x48\xc4\x05\x99\x2d\x4d\x3d\x62\xef\x10\xad\x99\x60\xc6\x8c\xa5\x20\xf5\x10\xdc\x37\x7f\xfe\xf3\xd7\x2d\x09\x65\x63\x2f\x54\x55\xfb\x24\x7b\xfe\x78\xf3\xf9\xd7\x28\xf7\x04\x76\xe7\x86\xca\x84\x66\x09\xe4\xf7\x70\x3a\xd0\xb0\xb1\xe2\xe3\xcd\xe7\x66\x26\xb7\xba\xc8\x51\x5b\x81\xa3\xc7\x55\x33\xca\xa9\xb2\x9a\xb0\x9e\xa1\xf1\x9e\xee\xcc\xf4\xf0\x2c\x6c\x34\xdf\x0e\xf6\x06\xee\xc4\x78\x73\xc6\xd2\xbd\x21\xab\xac\xaf\x24\x3c\x6b\x5b\x48\x22\x27\xd4\x5f\x1f\x58\x9f\x5d\x29\x15\x13\xe7\x1d\x43\xa4\xae\x2a\xc3\x56\xf0\xb8\x1f\xe3\x0d\x37\xa0\x5e\xb0\xd1\x31\x39\x10\x87\x71\x68\xa3\x86\x86\x5d\x84\xc8\xc9\x11\x07\x7f\x56\x2b\xac\xd5\xba\xa7\x8f\x67\xd7\xff\xfb\xf3\xbb\xab\xb3\xf3\x77\x44\xd1\x72\xc1\x54\xc0\xb9\xb8\xe3\x84\x9c\xac\xfa\x9b\x65\x36\x34\x39\x0d\x61\x11\xde\x71\xd7\xc9\x0d\x8d\xe0\x2c\xdd\xf9\x68\x00\xc7\x6c\x24\x18\x8a\x43\x21\x89\x0f\x5e\x90\x14\x0e\xd8\xc5\xca\x5d\x9e\xdd\x18\x7b\x04\xf8\x16\xf8\xca\xa3\xb0\x95\x76\x49\xd7\x5c\x94\x2e\xc7\xa9\x71\x73\x96\xe8\x34\x13\x8d\xe8\x7f\xda\x5c\x79\x39\x53\x19\xcf\x5b\x8c\x4e\x6d\xf0\x86\x78\x31\xbd\xdc\x2b\xb6\xe8\x93\xae\xe7\x53\xb3\xbd\x25\x34\x7e\xde\xae\x12\x7f\xc1\xf8\x00\xcf\xfd\x35\x4e\x73\x67\x2c\x13\xf9\x02\x4b\xd5\x5e\xe8\xd7\x07\x3e\x7d\x23\x33\x10\x2a\x04\x9f\xd7\xde\x48\x29\x2b\x32\xb1\x59\xb1\x5c\xc5\xf9\x0d\x1b\x70\xe5\x7c\x58\x52\x48\x79\xb3\x14\x77\x75\x82\x60\x9c\xfc\x08\xb3\x5c\xd6\x1a\xcd\x95\x48\x59\x16\x1c\x19\xf9\x12\x14\xc3\x92\x39\x94\x4a\xc7\x6c\x40\xce\xe9\x4b\xbf\x48\x18\x3b\x11\xab\xa2\x32\xc5\x63\x9e\x99\x4a\xc8\x55\xd8\xeb\xb0\x16\x91\x7f\x46\xd9\xe8\x6f\xf5\xa9\xfc\x62\x60\x80\xac\x8d\xb7\x19\xc8\x31\x5d\xa9\x52\xe4\x63\xfd\x6d\x70\xb5\x66\x29\x58\xbf\xa6\x26\x7a\xef\x56\x85\xda\xec\xcb\x8a\x60\xd8\x27\xd4\x8f\xa0\x6a\xd9\x53\x9a\x9c\x04\x3a\xf9\x21\x25\xb3\x8d\x39\x03\xc8\xd6\x0a\x35\x86\x13\x1a\x2e\xa7\x63\x92\xd6\x21\x09\xc7\x48\x46\x9b\x1e\xce\xe6\x13\x3e\xc6\xb2\x07\x67\x9e\xfa\x3e\xa3\x1b\x56\xf6\xcb\x68\xf3\x30\xa8\x94\x62\xc5\xd4\x92\x55\xf2\x3b\xf1\x91\xa9\x92\x27\x7d\x6b\xc2\x1c\x4e\xa2\x5d\xad\x5e\x40\x92\xef\x84\x66\x8e\xc1\x14\xbc\xc2\x26\x61\x76\x2d\xcb\x30\xc2\xcc\xba\xd7\xea\xbb\x54\x8f\x6f\x2b\x7b\x41\x54\x67\x9d\xfb\xe6\x18\x31\xa0\x64\x61\x8f\x68\x9b\x17\x0f\x39\x03\x54\x14\xcb\xad\x4c\xce\x66\x51\x26\x45\x1b\xc6\xb6\xa4\x55\x12\x21\xb7\xde\x8a\x30\xf9\xdb\x23\xab\xea\xd5\xc0\x7f\x30\xe8\xb7\x00\x6f\x15\xcb\x5b\xf0\x6b\x81\xbd\x91\x9b\x78\x6e\x0d\xd7\xae\x5c\x96\xde\xd2\xe3\x03\x44\x76\xf6\x18\x09\xf7\xe8\xd8\xe0\xf7\x42\x3a\x99\x00\x8d\xe1\x36\x37\x65\xdd\x34\x88\x9a\xcc\x01\x9b\x6d\xda\x4c\xbf\x3c\x4f\x01\x57\xd7\xbb\x63\x8f\x7b\x3d\x66\x99\xbd\xe4\x9c\x9d\xcd\xf9\x02\x8f\x0d\x99\x7f\xf2\x0d\x7e\xfb\xe2\xdb\x16\xf1\x2d\xc2\xec\xd4\x1b\x9c\xa0\x1d\xec\xc1\x17\x35\xd8\xbf\x46\x14\xd6\xc7\x6e\xc0\x12\x2d\x2f\xe8\x47\x5e\xb2\xef\x2a\x5a\xa6\x0f\x3e\x85\xc8\x08\xf5\x39\xb8\x92\x3b\x6d\x77\xed\xa1\x27\x11\x16\x09\xf1\x70\x1e\x78\x12\xa1\x21\xed\xe1\x3c\xf9\x49\x94\x6c\x25\xd6\xcc\xe6\x69\x82\x4c\x5f\x9d\x42\xdf\x8f\xcd\x80\x4e\x53\xa3\x70\xcd\x9a\xa9\xba\x6c\xcd\x9f\x35\x8b\xf9\x93\xcd\x18\xf3\x93\x7f\x39\xce\x63\x6c\x62\x25\x51\xa2\xb3\xb9\xe0\x30\xad\x83\x63\x30\x3c\x87\x80\x58\xd6\x08\xf0\x6b\xa2\x69\xba\x9d\x42\xcc\xc6\x9e\xd9\xd2\x61\x5e\xea\x39\x93\x56\x8a\xd1\xf0\xa0\x77\x0c\xd7\x62\xf6\x6b\x17\x93\x6d\x4c\xd2\x3b\x33\xc3\xde\x67\x60\xd2\x72\xf5\x76\x24\xb8\xda\xee\xd1\x88\xc5\xd0\x7f\xef\xf8\x0d\x47\x73\x96\x18\x87\x4b\x55\xc9\xda\xff\x4a\x73\xdc\x10\x4c\x0e\xee\x6a\x0d\x6f\xb5\x8f\x86\x87\xcf\x45\x3e\xfa\x07\x2b\x83\x8a\x25\xee\x69\x1f\x3d\xc1\x40\x36\x4d\x8e\x7b\x1b\xac\x1d\x9c\x6e\x6e\x3e\xf4\x07\xd1\xcd\xcd\x07\xdf\x7f\x6f\xa4\x04\xe6\xc7\xb5\x7e\xfe\x20\x83\x22\xaa\x1e\xdd\x45\x2a\x4f\x1b\xf8\x18\x28\x3e\x32\x81\x2d\x5c\x92\x7d\x5d\x47\xae\x02\x9d\x1e\xe1\x2a\xee\xd5\x8b\xd8\xd7\x6d\x84\x2c\x69\x58\xdb\xff\x50\xb7\x11\x4c\x1f\x69\x3d\x44\xda\x05\x82\x87\x82\x1b\xb3\x17\xf6\x83\xf2\xb5\x35\xd6\xfa\x11\xec\xa5\x35\x23\x2e\x18\xfa\xdd\xd9\xaa\xb7\xe1\xfb\xef\x12\xd5\x8f\xc9\x88\xfc\x68\x14\x76\x17\x13\x79\x8a\x6a\xb0\x60\x5e\x59\x8c\x32\xad\x42\xc1\x8e\xc4\xe1\xae\x91\x81\xe9\xc5\xe4\xec\x63\xd3\x8f\x66\x04\x43\xeb\xef\xe1\x2c\x1b\x23\xda\xee\x0f\x02\xdd\x26\x4f\x6c\xec\x7a\x17\x00\xaf\xb6\x3b\x20\xba\x6c\x64\xd6\xc1\x3a\x08\x22\x97\x56\x11\x18\x56\x0d\x19\x05\x1c\x5e\x0e\x85\xb8\xe7\xba\xe6\xe2\x81\xea\x54\xb9\x57\xd6\x69\x64\xa4\x51\xa8\x52\x2a\xf2\x2c\x9e\xe8\x20\x86\x86\xf5\x54\xe0\x38\x19\x53\xaf\x35\x33\xa5\xb3\xa2\x64\x09\x45\xbf\x55\x32\xa7\x6b\x54\x39\x5d\x35\x47\x91\x63\x97\xe1\xbd\xa5\x2e\x9c\xad\xec\x47\x33\xe3\xac\xe4\x6d\x1b\xad\x3c\x6b\x8a\xb9\xbe\x8b\xaa\x2c\x04\x24\x3f\xd8\x9a\x28\x88\xb6\x1a\xba\x39\x9e\xa7\x58\x73\x74\xbe\x0d\x59\xd9\x28\xfa\x67\xf8\xed\x2a\x98\x7f\xbd\x23\x10\x79\x45\x43\x0a\x08\xd2\x27\x95\xcd\x8a\x87\x14\x5d\x3d\xba\xb6\xc4\x1e\x8f\xf4\x82\x82\x5f\x87\x82\x0f\xda\x02\x8e\xb7\x2e\x47\x27\x8f\xb4\x75\xe8\xfd\x4f\x38\xa8\x67\x89\x1d\x7a\x43\xdb\x8e\x51\x50\x73\x1c\x53\x9f\x36\xbb\x37\x3e\x42\x61\x0a\x10\x3c\xf1\xfa\x5a\x4b\x83\x0e\xeb\xd9\x0e\x8f\xbd\xe0\xb4\x9d\x1f\x9f\x36\x9e\x3d\x7e\x91\x7a\x65\x45\x8a\x5f\xa6\x1e\xdd\x3b\x82\xd9\x83\x57\x2a\x7a\xa9\x1e\x11\xc7\x6e\x74\x68\x1f\x84\x28\x26\x58\x1d\xa3\x8f\x32\xf8\x47\x94\x3e\xd0\x1f\x0d\xcc\xce\x6b\x0d\x69\xc9\x40\x15\x5a\xb3\xbd\xc7\xb6\xe4\x46\x1b\x25\xcb\x84\x28\xa4\x57\xcf\x1c\x52\xa8\x34\x92\xcc\xa0\xff\x36\xe6\x6f\x36\xa9\xf8\x09\xc4\x64\xeb\xed\x46\xbd\xba\x4c\xea\x6e\x4c\x30\xe2\xb2\x9a\x9d\x5f\x9e\xdd\x1c\x1e\xa6\xdb\x61\xe7\x9f\x73\xc8\xcb\x52\xd7\x1b\xb7\x99\x54\x0e\x82\xb2\x12\xcf\x5d\xf9\x17\xc9\xb0\x8c\x9f\xad\x50\x8f\xdb\x49\x44\xae\x78\x8e\x34\x64\x66\x92\x5c\x36\x4a\x6d\x84\x46\x7d\x48\x72\x6d\xc9\x53\x96\xd0\xf2\x2c\x49\x58\x66\xa8\x5e\x5f\xf9\xf6\x3a\xda\xd5\x29\xc4\xb0\x14\xc4\x0a\x58\x2e\x3b\x55\x84\x31\x73\x63\x3c\x5a\xf7\x05\x8e\xa7\x3d\xf2\x08\x37\x77\xf3\x39\xd4\xcb\xb2\xd3\x84\xe6\x22\xdf\xac\x34\x75\x33\xf8\xc8\xf8\xdc\x06\x4d\x79\x28\x37\xfb\x95\xf4\xa1\x08\x1a\xa6\x1b\xd7\x77\x0e\xd5\xf5\x63\x51\x2e\xc6\xe4\x83\x58\x48\x72\x87\xb5\x38\x35\xfb\xae\xaa\x32\x52\x07\xc8\x38\xa1\x62\x45\x62\x6b\x8c\xf7\x22\xba\x21\x8f\x21\x85\xda\x30\x7c\xce\x13\x9a\xab\x3a\xfb\xe2\xba\xca\x72\x56\x62\x4a\xb0\x60\x04\xe5\x92\x4a\x14\x76\x53\x2e\xa1\x00\x5a\xed\xc8\x67\xdd\x8b\xc5\xdc\x6e\x1e\x4b\xdd\x54\xb2\xf3\x46\x3e\x48\xde\x6f\x9e\xdf\x45\xce\x15\xa7\x59\x2c\xa7\x74\xdb\x21\xfa\x5d\x9b\x55\x71\x6d\x59\xea\x54\xff\x14\x96\xfb\xe7\xc2\xf1\xd3\x2b\x7a\xcb\xd0\xf6\xae\x07\xde\x72\x4a\xdd\x9b\xd9\xdf\xde\x5e\x4f\xe9\x6a\x7b\x6b\x46\xbe\x6a\x6c\x6b\x47\xb4\x8e\x9b\xce\x70\x4f\x01\x69\xf1\x9b\x93\xaf\x1e\xb4\xa9\x58\xc1\x9c\xae\x8d\xc5\x4b\xed\x60\x5e\x4e\xaf\x00\x17\x30\xea\x5a\x82\x88\xc6\xe9\xec\x14\xfe\xb1\xaa\x1b\xc4\xac\x0b\x9e\x8c\x09\xb9\x98\x23\x62\xa9\xd3\x71\x66\xb4\xca\xc3\xc0\xc2\x80\x93\x70\x39\x21\x7c\xe1\xb5\xf9\xc9\xe4\x23\x55\x58\x7b\x1a\x52\x0f\xce\xaa\xf9\xbe\x2c\x3e\x14\xdc\xee\x8b\xb4\x7e\xf8\xe9\xc3\xd9\x65\xdf\xa8\x7c\xf0\xfe\x8f\xf9\x1f\xc0\x48\xcd\xc8\x74\x60\xf9\xa0\x98\x00\xfe\x68\x84\x18\x70\x36\x6d\x0b\xd3\x0f\xb3\x72\x5c\xfe\x4a\x61\xfa\x00\xc0\x3e\x71\xfa\xb0\xab\xd6\x40\x7d\x6f\xf3\x08\x99\xd0\xd6\xbc\x30\xfe\xd6\x98\xfd\x97\xfb\xc7\xec\xdb\xad\xfc\xd0\x59\xc9\xc0\x6d\xe6\x87\x93\xd6\xed\x9c\x3c\xd5\x76\x5e\x7f\xfb\xc0\xed\x3c\x24\x7d\x18\x74\xfc\xe1\xf2\x62\xdf\x7e\x4e\xad\xde\xf7\x3d\xfd\xb8\xd5\x61\x37\x92\xc4\xb5\xf0\xd8\xd4\x10\x18\xdd\xdb\x39\x62\x79\x42\x0b\x59\x65\x36\x3b\xe0\xfa\x2b\xe7\x91\x83\x45\xea\x73\xfc\x12\x8a\x5c\x65\x10\xa0\x0e\xef\x2c\xe4\x19\x45\x1e\xcd\x1c\x6d\x83\xa4\xc7\xd5\xda\x06\xca\x0f\x27\x8f\x06\xcb\x49\x00\x2c\x27\x21\xb0\x9c\xfc\xda\x60\xf9\x5e\x48\xf5\x2e\x4f\xca\x4d\xb1\x0f\x2b\xfc\x63\x6b\xf7\x16\x70\x05\x59\x31\x21\xd5\x48\x89\x91\xc9\x24\x64\x07\xf3\x20\xfb\x78\xfb\xb0\xdb\xaf\x0b\x27\xbd\x0c\x67\x67\x8b\xec\xb3\xd1\x6d\x4b\x89\x03\x3e\x3d\xc6\x9b\x2e\x12\x8b\xe4\x90\xab\x77\x6f\xec\x88\xfe\xe6\xdc\x32\xc7\x0f\x49\x04\x14\xde\xe4\x3e\x37\x7e\xab\xe3\x83\x37\x7a\xd2\xb9\xd1\xc5\x68\x7d\xf2\xb8\x4d\xfe\x1b\x63\xc5\x59\xc6\xd7\x7b\x9c\xa2\xeb\x52\xdf\xd0\x7a\x9d\x13\xcd\xf6\x4b\xc5\x72\xa5\x9b\xd1\x68\x0d\x3d\xac\xfa\x0f\x8a\xcf\xa6\x19\xc6\x0b\x90\x7e\xf0\xa6\x3e\xc0\x0a\x78\xbe\xe8\x65\xe2\xff\x31\xd8\xad\xc9\x23\x67\xf6\x27\xb4\xf7\xc7\xdc\xfe\x66\x9b\xad\x0b\xda\xc8\xf3\xf0\xf2\x9b\x57\xfb\x93\xbf\xf0\xa6\xf6\xb9\x8e\x5b\x1d\xdb\x36\x16\xda\x93\x2d\x69\xdc\xbc\x90\xdb\x1b\xdb\xdf\x5d\xc1\x6d\xac\x0f\xd7\xf5\xa3\xd7\xb8\xb9\x01\xfd\x85\xcf\x78\xb5\x22\x49\xef\x15\x75\x31\x5e\x0f\x48\x96\xe4\xef\x68\x9f\x03\x42\x06\xac\x65\x57\x27\x4f\xb6\xab\xc7\x5c\xc0\x2b\xd4\x35\x5d\x55\x19\x9b\x94\x5c\x94\x5c\x75\x8b\xd6\x3f\xb6\x74\x6e\xee\xb8\xb0\xdf\x46\x8b\x10\xd4\x38\x13\x3a\xd4\x38\xc7\x2a\xc1\xca\xaa\x89\x40\xc2\xa5\xa3\xdb\x37\x6b\x0c\x58\x68\x2a\xbb\x2e\x84\x98\x87\x4b\x70\x36\xfd\x06\x82\xbd\x76\x09\x78\x21\x52\x97\x4c\x38\x86\xf7\x8d\xd2\x0e\x87\x42\x27\x46\xf0\x38\xcf\x85\x42\x45\x17\x70\xe7\x79\x5d\xf2\x09\x73\x52\x18\xf7\xf2\xd0\xa8\x5e\x84\x8e\x75\x5b\x06\xef\x86\x25\xe3\xa5\xe7\x34\xe0\xa7\x8a\x33\xa6\x37\xf4\x4e\x0e\x1a\x60\xac\xca\xf2\x2c\xdf\x4c\x0f\x8e\xeb\x9d\x95\xec\xef\x15\x83\x58\xdd\x8d\x89\xe4\xdb\xd3\x55\xff\x3e\xed\x9d\x5c\x2e\x90\x09\xfa\xa7\xf3\x49\x53\x2d\xa8\x6f\x8b\xac\x38\x9a\x0e\x2a\x2c\x5b\x16\xcb\x62\x6f\xca\x40\xa5\x2c\xdf\xec\x06\x12\x3e\x48\x29\x75\x9f\x16\xfb\xda\xc3\x7f\x3a\x9f\x3c\x6d\xe2\x34\x48\x8a\xfd\xa0\x9c\x69\xc6\xd8\x1d\x1a\xb8\xb6\x7f\xbf\x99\xbc\x27\x2b\x5a\x40\xf4\x17\x55\x8a\x26\x4b\xac\x46\x09\xd6\xa1\xb0\x5d\xfc\xa7\xf3\x60\x3e\x85\xdd\xcc\x6a\xfb\x5b\xc5\xc3\x26\x89\xdd\x6f\x41\x11\x9a\xfa\x1e\xee\x52\x89\x92\x2e\x98\xfd\x0a\x1d\x23\xe0\xb4\x6c\xf5\x34\xcd\xcd\x59\xab\xce\x2d\xcf\xd3\x53\x32\x3d\xb0\xb5\x07\x8a\xac\x2a\x69\x56\x7f\xe3\xea\x67\xca\x53\xf2\xf3\xdf\xf4\x37\xe0\x75\x92\xfe\x80\x5a\x51\xf3\xed\x34\x1f\x8d\x46\xd3\xfc\x4f\xc4\x58\xf1\x6d\xf2\x1f\xc5\x56\x45\x46\x15\x93\xcf\x6f\xd3\x74\x94\x94\xa9\x1c\x6f\xe8\x2a\x9b\xe6\xb4\xe0\x66\x84\x53\x42\x0b\xce\xee\x15\xcb\x31\x5f\xec\xed\x37\x72\xcc\xc5\xf3\xf5\xcb\x69\x8e\x6b\x7b\x5b\x49\x25\x56\x57\x0c\xf1\xc2\x39\x9b\xf3\x9c\x63\x46\x4d\x1b\x9a\x05\x5b\x81\xf4\xca\x26\xea\xca\xc8\x4a\x60\x6e\xe6\x4c\x8e\x93\x32\x1d\xef\xe8\x9e\xa7\xb9\x66\x67\xa1\xef\xa2\x14\x55\x71\x4a\x22\xcd\x70\xec\x26\xc0\xbe\x83\x79\x2e\x71\x1e\xf4\xd7\xc6\x9f\x35\x1b\xf2\x6f\xb1\x26\x1f\x5c\x02\x5d\x0b\xe6\xe0\x7a\xcd\x39\xf2\x1c\x62\x9d\x42\x8d\x60\xb2\xa2\x64\x70\xfa\x9f\xf3\xdb\x5c\xdc\xe5\xef\x39\xcb\x52\x69\x24\x22\x38\xa8\x44\xe8\xdb\xf2\x16\x95\xf0\xfa\x9b\xb5\x3d\x34\xfd\xc7\xc8\x80\x4c\x43\x1a\xe6\x4b\x96\x6c\x45\xdd\xb3\x16\x05\xcb\xcf\x26\x17\x3f\xbc\xbe\x6e\x7e\x1f\xb5\x0c\x7a\x47\xda\xbc\xca\x4d\xb4\xa0\xc7\x34\x1a\x75\xbf\x42\xa9\x59\x1a\x4b\xcd\x3a\x5c\x8e\xff\x92\xc1\x3e\x73\x15\x4c\xa3\x2a\xe6\x5a\x52\xc6\x07\xa1\xdf\x68\xa9\xc7\xf1\x12\x71\xae\x59\x89\x99\xec\x17\x39\xff\x87\x1b\xdc\xc5\x52\xc2\xdd\xdc\x61\x16\x9d\x22\xd5\x4b\xec\xba\xa2\x1b\x63\x31\x23\x55\xee\x0d\x88\x09\xd6\xc6\xe4\xa3\x80\x68\x88\xb9\x38\x25\x4b\xa5\x0a\x79\xfa\xfc\xf9\x82\x2b\x7b\x9b\x8d\x9a\x54\x6d\x9e\x03\x29\xe5\xb3\x4a\x89\x52\x3e\x4f\xd9\x9a\x65\xcf\x25\x5f\x8c\x68\x99\x2c\xb9\x62\x89\xaa\x4a\xf6\x9c\x16\x7c\x04\x6b\x07\x73\xa2\x1c\xaf\xd2\x3f\x95\xe6\xfa\xcb\xc3\x10\x9a\xd8\x45\x20\x70\x4b\xdb\x8e\x41\xdf\x51\x0c\xa9\xc3\xce\x26\x54\xc2\x41\xdb\xe6\x57\xbd\x7a\x77\x7d\x43\xec\xec\xc1\x64\x62\x08\xfc\xba\xa7\xac\xcf\x41\x03\x8d\xe7\x73\x66\xd2\xc7\x40\xe8\xa2\xf2\xeb\x40\x43\x26\x31\x70\xdb\xdc\x1e\x55\x56\xb3\x15\xf8\xf0\x20\x19\xc6\x20\x97\xb7\xc0\x3d\x40\x96\xc7\x22\xa5\x8a\xa5\x10\xf7\xf2\x96\xae\x58\xf6\x96\x4a\xf6\xc5\x4f\x41\x43\x5b\x8e\x34\x6c\xfb\x9e\x43\x03\x45\x6d\x37\xdf\x35\x38\x3b\x8c\x54\x7f\x5a\xec\xf0\xb4\x28\xb2\xcd\xa7\xfc\xbd\x28\xef\x68\xd9\xc9\x65\x9c\x35\x5a\xa3\xaf\x09\x38\x11\x28\x81\x23\xa1\xcf\x49\x5d\x47\x9a\xdb\xa2\xc6\x41\xb9\x17\x38\x12\x18\xc9\x66\x2b\xd9\x93\xa5\x48\xc5\xa5\x50\x37\x9a\x8d\xe9\xf4\xe3\x71\x2d\xbd\x55\x3b\x56\xd4\x58\xaa\x21\x1c\xa8\xce\x55\x03\xfb\x08\x73\x47\xfe\xd6\x2c\xaa\x58\x68\x7c\x50\x8a\x6a\xb1\x74\xae\x76\x04\x8c\x1d\x87\x60\x8c\xce\xd1\xf1\x98\x00\xd7\xc5\xf3\x45\xd0\xaa\x0d\x76\x6c\x2a\x8d\xf7\x48\x62\x6b\xcb\xa2\xc9\xe5\xa6\xb4\x59\xd4\x43\x10\x26\x34\x92\x2d\x18\x32\x76\xa4\xd6\x1e\xa7\x79\xd1\x7a\x69\xc1\x85\x61\xed\x2c\x03\x13\xc3\x82\x47\x04\xfc\xad\xf9\x21\x09\x1c\x83\x32\x65\xc6\x67\x78\xc6\x88\x61\x33\xf7\x3d\x5b\xac\x89\xdd\x75\xae\x37\x90\xd1\x3b\x05\x63\xab\xf1\x8c\x31\xc5\xb4\x0d\xd3\x4a\xde\xd1\x64\x89\x01\xe4\x26\x81\x60\x98\x39\xb4\xbd\x71\xdf\x26\x32\x2c\x29\xb9\x62\x25\xa7\x98\xbd\xdd\x8b\xa4\x87\xf4\xf6\x89\x15\x41\xe0\xea\xef\xe5\x19\xd3\xd8\xc3\xf4\xe0\x8c\x68\x59\x90\xd4\x0a\x5d\xdf\xd3\x27\xb4\x94\x20\x1f\x4a\x5c\xdd\x79\xf2\x46\xa8\xa5\xc9\x1f\x28\xca\x11\x5a\x8d\x9c\x25\x7b\x62\xce\x2b\xf7\xbf\x2b\x45\x34\x65\x0d\x70\xa3\xac\x64\x79\x62\x6f\xde\xc8\xab\x96\x24\x2a\x85\x19\xb9\x6c\x36\x25\x6c\xa2\x65\x8d\x99\x80\xea\x82\x70\x1e\x91\x05\xe7\xa9\x2b\x7e\xee\x01\x1e\x0c\x64\xd3\x69\x8e\x87\x67\x0b\x81\x6c\x43\x22\xe2\xa2\xaa\x0f\x33\x67\x0b\x58\x9c\x61\x09\x8e\x8d\xf8\x65\x03\xeb\xa7\xd3\xe9\xc1\xa5\x50\xfa\x3f\x63\x72\x96\x65\x26\x29\x82\x3f\x7a\x78\x64\xdd\x1b\x82\x94\xe1\x42\xb9\xd2\x72\x54\x71\x09\xf5\xa4\x30\x15\x99\xd9\x8a\x12\x38\xe6\x98\x9c\x99\x4a\x08\x11\xe8\xc2\xe5\xa4\xb9\xbd\xa0\x26\x7f\x80\xd9\xb4\x06\x11\x6c\x47\xff\xe1\x39\x12\x50\x1c\x3c\x0e\x57\x80\x7e\x78\x89\x16\x87\xd4\x4b\x8c\x54\xdf\xef\x72\xe0\xa2\xb1\x84\x99\xf8\xe9\x2e\x49\x92\x32\xa9\x4c\xb5\xbf\xe8\x28\x5b\x0e\x99\xae\x83\x7b\xd0\x81\xe3\x33\xee\x4b\xfa\x61\xc6\x86\x05\x25\x8a\x37\x3f\xd1\x54\x5a\x85\x83\x15\x7b\x01\x83\x98\x0a\x2d\x50\x1f\xec\xda\x3c\xbe\x96\xb6\x3b\x68\xe0\x72\xbb\xb3\x09\x57\x17\xd6\x54\x3c\xd7\xfc\x79\x34\x8b\x46\xfd\x71\x80\xa1\x0e\x09\x78\xe9\x0e\x4c\x4a\x29\x57\xe1\x59\x43\x4a\x94\x7c\xa1\xe1\x10\xc3\x00\xf6\x03\xfc\xd7\x91\xbe\x42\x60\xaa\x46\x4c\xa5\x9e\x79\x3e\xce\xe6\x89\x40\x2a\x18\x98\x3b\x4c\x3c\x02\x20\x33\x21\x20\x33\x66\x09\xb1\x09\x08\x87\x8b\xbc\x03\x9b\xf6\x41\x11\x4b\xa2\x48\xef\x40\x40\xa1\x26\xe0\x1c\x12\x6c\xd8\xf4\x92\x74\xc5\x4c\x56\x0c\x15\x51\xef\xd4\x1f\xc8\x80\x15\x72\xeb\xb6\xae\x72\x1e\x03\x31\xf3\x31\x70\x07\x50\xed\xb6\x2d\xbc\x7c\x06\x04\xf1\xe0\x7b\x51\x92\x86\x18\x78\x1c\xa5\x01\xf6\x83\xe5\xfc\x02\x57\x6a\x65\x32\x78\xd9\x30\x3d\xff\xb2\x65\x7c\xc5\x3b\x0f\x0c\x94\x6e\x19\x3a\xfe\x45\x61\xc2\x3d\xf8\xba\x13\xee\x38\x33\x7c\xc8\x8d\x7d\x46\xb7\x7f\x88\x12\xed\xd1\xb3\x60\x89\x96\xfa\xf3\xeb\x00\xa0\x21\xa8\x5f\x6b\xba\x5d\x12\x34\x64\x22\x3c\x60\x1b\xed\x83\xea\x3d\x06\xe4\xfd\x63\x70\xa0\x69\x3f\xcb\x8e\xd5\xfa\x5b\xf4\xf2\xb7\x85\x0a\xb3\x24\xa5\x90\xc0\xf3\xf5\x7d\xb2\x11\xc2\xe1\xe6\xee\x24\x00\x04\xd3\x28\xb4\xe1\xd4\xed\xc4\x14\xcc\x54\x6c\x0e\x22\x46\x2d\x68\xaa\x92\x27\x58\x16\xa5\x7d\x1b\x96\x04\xba\xcc\x76\x1b\x0c\x3c\x08\xe2\x45\x87\xfa\x3a\xa0\xdd\xc4\x8b\x7e\x29\x43\x48\x6f\x92\xbb\xd4\xd8\x98\x95\x4f\x56\x33\xbd\xfd\x28\xd5\x21\xad\x7c\xa4\x37\x6f\x2f\x48\xb7\x7a\x22\xd7\x9f\x5c\xa8\xcb\xfd\xce\x04\x3b\xb8\x9c\x14\x4d\xf6\xcb\xee\x58\x37\xe9\x20\x2f\xfa\x1c\x7f\x77\xb0\x88\x95\x17\xaf\x3f\xdb\xc0\x70\x65\xc5\x5b\xa0\x31\x89\xc5\xea\xd5\x1f\x04\x07\xb9\x86\xd2\x89\x70\x4b\xa5\x58\xd5\x55\xb6\x25\x06\x5e\x9a\xc2\xd5\x90\x47\x79\x13\x2f\x5b\x5e\x7f\xb6\x6a\xa0\xaa\x66\x22\x77\x57\x42\x19\x39\x2a\x83\xc8\xb5\x80\xd2\x89\x15\x81\x86\x19\x63\xc8\xcd\xdb\xc9\xf4\x00\x2b\xcf\x7e\x3e\x9f\x44\x2a\x9d\xda\x4f\x9f\x53\x8d\x27\x21\xad\x3f\x3d\xd2\x91\xee\x36\xee\xbe\x28\xdd\x29\x4a\xeb\xcf\xfe\xc9\x4a\xeb\x4f\xdf\x0b\xb9\x3f\x73\x79\x59\x77\xea\xb8\x96\xfd\xf8\x2b\x73\x33\xc1\xc6\xea\x06\x46\x2c\x8c\x56\xa6\x99\xca\x98\xe2\x2e\x2d\x29\xce\xd5\x3e\xa6\xe3\x96\x5a\xaf\x4a\xbf\x33\x2b\xf6\x7b\xb2\xd3\x03\xf7\x62\xbb\xc8\x4a\x37\xb1\xed\x41\x56\xc0\xba\x64\xb3\x60\x1d\x79\x42\x48\x20\x53\xd4\xf6\xb6\xbc\xec\xae\x4c\x12\x93\x98\xdf\x4f\x16\xfc\xdc\x2a\x94\x6f\x5c\xc2\xed\xf6\x51\xb9\x2f\xbe\x9b\xa7\x03\x36\x2c\x84\xb2\xb4\x10\x30\xda\xd9\x96\x78\xa3\xfa\x63\xb3\x43\x21\x03\xd7\x17\x83\x75\x62\x00\x93\x72\x6a\x1f\x0c\xd6\xb1\xf7\x1a\xbd\x6d\x61\xb0\x29\xe2\xb0\xa9\xc1\x62\x53\xc4\x63\x53\x8d\xc9\x5a\x79\x9e\x01\x97\xc1\xa7\x17\x2e\x93\x0f\x90\x92\xbb\x85\xe3\x56\x4d\x5f\xfd\x09\x0a\xc7\xe4\x48\x32\x66\x55\x64\x80\xca\xb0\x1c\x91\xdc\xe4\x8a\xde\x87\x5d\x27\xeb\xcf\x74\xda\x2a\x5b\x1b\x1e\x32\x26\x3b\xb7\x8f\x6d\x35\x63\x9e\x68\x2d\xca\x5d\x91\x59\x3f\xb7\x4b\xa1\xd0\xae\x7d\x1a\xa9\xbf\xe4\x01\xc1\x84\x2c\x5a\x73\x56\x07\x55\x40\xf0\x78\xd4\xa4\x7d\xf4\x19\xcb\xc4\xdd\xb3\xe3\xe6\x92\x3d\x60\x23\x54\x09\x57\x92\x65\x2e\x5b\x7c\x07\x1c\x50\x19\x26\xb0\xbe\x30\x23\xea\x4e\xc0\x5d\x83\x90\x57\xfb\x1b\x22\x08\x4d\x84\x36\x75\x09\xa8\x8e\xb3\xfb\x94\xdb\xdd\x4b\xb3\xde\x5a\xfd\xca\x3c\x29\xc9\x94\x91\x04\xd5\x82\x69\xdf\x4d\x13\xee\x96\x22\x33\x87\x74\x0a\x47\x34\x9d\xd6\x04\xf9\xaf\x80\x5d\xfe\x65\x49\xe5\xd1\x6a\xf3\x4b\x46\x67\x2c\x7b\x06\x78\xc7\x20\xf9\xae\xe7\xec\xc5\xd9\xe9\x7d\xc3\x25\xc3\xf5\xa1\x6b\xc2\xc8\x38\xdf\x64\x2c\xd5\xf3\xf6\xbc\x6f\x7e\xdc\x9e\xcd\x5a\x4e\x60\x71\xb0\x5c\xbb\x52\x54\xa2\x9a\x2d\xf5\xbe\x18\xb8\xe5\xe8\x8e\x77\x37\x05\xa5\xee\x23\xf9\xcf\xeb\x4f\xfb\x7e\xdd\x96\xba\xb6\xd3\xf5\xc8\x73\xb8\x79\x6c\x3e\x67\x89\xc9\x7f\x64\x54\x09\x19\xa0\x56\x93\xca\x04\x5c\x25\xdc\x4e\xba\x17\x9f\x8b\x7c\x64\x63\x75\xd1\x52\x8b\x39\x09\x8c\x5e\x04\xa2\xe8\x7d\x25\x05\x84\xc3\xe1\xe8\x3d\x94\x76\xbb\xa0\xa9\x2b\x12\x3f\x85\x10\x6f\x62\x47\xcf\x92\x44\x54\xf9\x3e\xbc\xd7\x75\xb3\xe3\xaf\xc6\x83\x6d\xa1\xe5\xf6\x31\x03\x2a\x4f\x4a\x0a\x91\xba\x14\xca\xc0\xd0\x39\x14\x6d\x80\xd1\x81\x7a\x71\xc7\xad\xb7\xad\x97\xd2\x99\x90\xa6\x7f\x49\xfc\xd3\x94\x09\xa0\x56\xc0\xa3\xc1\x4d\x1e\x02\xf2\xee\x21\x63\x9a\xe6\x00\xd8\x7b\x41\x9b\xd4\x10\xd7\xd8\x58\x1a\xe7\x73\xee\x54\x95\x9a\x01\xee\x78\xf9\xfd\x98\x3b\xb2\x87\x0a\x82\xf4\xe5\x94\x48\x5f\x6e\x89\xec\xbe\xaf\x4e\x7e\xe9\x7f\xee\x49\x37\x64\xa5\x5a\xeb\x86\x78\xdf\xc2\x73\x4c\x2e\x3a\x24\x0f\xfd\xa9\xcd\x10\x60\x5d\xb8\xf6\xad\x0a\xb5\x2c\xa2\x4c\x2d\xc4\xa8\x3d\xbe\xf9\x39\xbb\x3c\x3f\x0c\xda\xc6\x9b\x9f\xfd\x34\x5a\xb1\x2c\x04\xf6\x63\xd3\x76\xee\xc7\x75\x63\x9f\x47\x73\xdd\xd8\x13\x0d\xc4\x0e\x5f\x7a\x55\xb4\xed\x44\x50\x86\xc9\xc1\x35\xe8\x2d\xe1\x0d\xda\xc9\x74\x6f\x5f\xaf\xbe\x5c\x77\xc0\x9c\x65\xe1\x77\x24\x9f\x6d\xb3\xdf\xa6\x82\x77\xde\x66\x75\x24\xa0\x2b\x7b\x0e\xab\x82\x2c\xb1\x76\x25\x87\x92\x60\x74\x34\x48\xcc\x16\xde\x89\x73\x58\x72\xc0\xe8\x82\x45\xd3\xb2\xa5\x5f\x8e\xbd\xac\xc7\x3e\xeb\x7e\xbc\x6b\x51\xe8\x00\xf3\x25\xd3\xec\xaf\x55\xf6\x8a\x72\x9b\x76\xe3\xd2\x27\x26\xde\x3f\x75\x9a\xd0\x0e\x6b\xa5\xbe\x4f\xfa\x00\xfd\x3d\xa2\xde\xc8\x41\x41\xe4\xd6\x91\xc0\x38\x76\xb4\xb3\x2c\x7b\x91\xcd\xfd\xa9\x66\x28\x8a\x09\x4c\xf2\xf5\x3d\xee\x7e\xfa\x66\x6f\x9e\x0d\xfe\x89\x90\x80\x67\x9f\x79\x00\x43\xa0\xbb\x05\xf6\x87\xdf\xc7\xcb\x58\x34\x3f\x88\x65\xcd\x0e\xe1\x25\x67\x6c\xae\xd0\x8e\x55\xbb\x30\xe1\xeb\xe9\xa1\xa4\x21\xfe\x43\x74\x1e\x47\x87\xb2\x5e\xd9\xaf\x8a\x41\xbb\xdb\x2c\x95\x2a\xfa\xf9\x33\x7c\x7f\x73\x33\xa9\xed\xf5\x51\x27\x06\x7d\x4b\x74\xd3\xf8\xd2\xad\x97\xe3\xe3\xfc\x17\x56\x4c\x2d\x45\xba\x07\x65\xf8\x88\x1d\x9e\x96\x6b\xc7\x2d\x23\x52\xc7\x7d\x7b\x4e\x9c\x7a\x4c\x2c\x26\xaa\xef\x63\xf7\xa0\x10\xd5\x95\xe2\x28\x76\xb5\x47\x6c\xbc\x18\x93\xef\xde\xdd\x1c\x93\xc9\xe7\x9b\x63\xc2\x54\x32\x7e\x46\x3e\x56\x99\xe2\x45\x97\x9d\xc3\x80\x08\xe8\xfe\xa7\xab\x43\x2d\x86\x2d\xc0\x8f\xf0\xf7\x65\xb7\x2a\xa8\x5a\xee\x71\x8e\x87\x13\xdd\xfe\x4b\x1c\x63\xd7\x09\x76\x63\x14\xff\x04\x61\x99\x63\x77\x54\xb8\x4d\x7b\x16\x7d\x0f\x83\x10\x36\x5e\x9c\x92\x11\x61\xf7\x34\x51\xa7\xe4\xf9\x5c\x08\x32\x32\x4e\x62\xa7\xe4\xf9\x8c\x96\xe4\xf2\xd3\xcd\xbb\x53\x74\x40\x63\xb9\x2a\x37\x64\xd5\xc5\x9e\x7f\xba\xfc\xf0\xef\x06\x73\x6e\x08\xe3\x58\xd1\x94\x4c\x0f\x60\x12\xd4\x22\xeb\x3f\x71\x16\xab\xeb\x18\xc7\xaa\xae\xd5\x9f\x35\xcd\x78\x4a\x9d\xb2\x0f\xeb\xb1\x6a\xf6\x89\xab\x50\xae\xbf\xfa\xd3\xe7\xce\x35\x2f\x81\x06\x31\x54\x59\x6b\xd4\xf7\x00\xc0\xdb\x5a\x6b\xfd\x68\xd5\x85\x02\xcf\xed\x19\xb3\x80\x30\x7a\xc4\xb9\x28\x57\xa7\x16\xec\xd3\xea\xc5\x8b\xd7\x89\x1e\x18\xfe\xc5\x4e\x6d\x66\xd6\x3e\x6a\x2f\xbc\x6a\xb0\x2a\x18\x4e\x23\x8c\xd2\x1d\x61\x3d\xf4\xc8\xc0\xfb\x51\x33\xe0\x18\x1d\xae\x26\xbd\x99\x0e\x62\x00\xf0\xb4\x62\x64\x11\xab\x0c\xf0\xf0\x41\xfb\x89\x13\xbd\x10\x52\xf7\x50\x3c\x59\xf5\xa4\x99\x17\x6f\x3f\x4e\xfa\x7a\x80\x00\x32\x8a\xaf\xdd\xc7\x52\xd4\xde\xfa\x04\x56\x6b\x92\xd3\xa4\x80\xa3\x60\x4a\x57\x53\x13\x2c\x6b\x2d\xf2\x95\x57\xe3\xb8\xc1\xd3\xf2\x79\xd3\x3e\x85\x8b\xe6\x5e\xd6\x33\x3d\x4f\x1b\x6b\x0b\xf6\x74\xdd\x68\x7d\xd2\xa2\xa7\xec\x75\x13\xf5\xd6\xf6\xa0\xf3\xc0\x99\x88\xdc\x87\x12\x00\x25\x81\x1a\x17\xfb\x08\x6b\x90\x2d\x5e\x03\x18\xe3\x45\xc0\x45\x15\xb2\x38\xfb\xb0\xaa\x63\x31\x29\x51\x2c\x59\xe6\x3c\xa1\x1d\x5e\x49\xa0\x16\x45\xf5\x3f\x5f\x15\x42\xd6\x8e\x74\x58\xe5\xf7\x50\xd6\x25\x7a\xe6\xbc\x64\x77\x34\x0b\x17\x1b\xa9\x3f\x88\x2d\x8c\x52\x16\x0b\xfd\x08\xc2\xf2\xb9\xc0\x48\x16\xe3\xa2\xd7\xfd\x34\x3a\x6d\x78\xd0\xec\xf1\x87\xa1\x87\x19\x13\x3f\xa5\x59\x97\x09\xcc\x55\x6e\xfb\x06\xbd\xbc\x61\x87\x30\xd6\xbb\x64\x29\xc8\x95\x09\x61\x3d\xe2\x63\x36\x26\x05\xcf\x17\xb2\xdd\x06\xd6\x6b\xbf\x3d\x90\x41\x11\x0e\x04\x8b\x00\xe4\x62\x62\x03\xc2\x1e\xed\x18\xd6\x50\x6e\x21\x3f\xee\x43\x79\x62\x2d\x63\x51\x28\xf4\x49\x5c\x19\x0e\xe9\x89\x6c\xce\x96\x61\xf3\xdc\x7a\xeb\x3c\xa3\x5e\x16\x62\x57\x64\xbb\x7d\x73\x8f\x42\x1a\x75\xec\x75\x3b\x91\xab\x57\x38\xe9\x4b\x15\xfb\x92\xa5\x66\x44\x52\xbd\x1e\x13\x8a\x86\x56\xbb\x5b\x66\x82\xe7\x49\x41\x79\x19\xaf\x3c\x58\x7f\xb4\xc8\x6a\x4a\xe3\xfb\x30\xa5\x33\x51\xa9\x1e\x84\xe4\xa9\x24\xc7\x5c\x28\xfd\xfa\xfa\xdd\x8c\x4b\x6c\xdc\xe1\xd1\x03\x4d\xda\x3d\xeb\x06\x82\x31\x10\x8c\x7f\x6e\x82\x91\x0b\x65\xd9\xaa\x28\x58\xda\xbd\x6e\x7a\xfa\xdb\xf4\xf3\xb4\xd9\x71\x08\xb5\x2c\x5f\x87\x4f\xa8\x69\x16\x07\x58\xc7\x3b\xee\xe1\xda\xf3\x30\xa7\x9e\xe2\xf7\x0a\xdc\xe9\x81\x0f\xdb\x27\xa4\xfd\x3b\x86\x2d\xd0\xf0\xfa\x9c\x80\x85\xc9\x18\x6e\x3d\x2f\xdb\x34\xf3\xc6\x3b\xd7\x9c\xf3\x3b\x08\x35\xba\x82\x48\x39\x1b\xf5\x85\x6a\xf3\xa3\x19\x4b\x68\x25\x8d\x4f\x5c\x87\x29\xc1\x2d\x31\x61\x25\x8c\xe1\xfc\xea\x9e\xa1\x2a\xde\xd6\xf1\x68\x78\x09\x76\x91\x58\x74\x1f\x3c\xf5\x3d\xe0\x8e\x7d\xff\x37\xfc\x03\x24\x95\xc6\x5f\xeb\x93\xfa\xef\xeb\xb7\x37\xf8\x6b\x7c\x1a\x33\xe2\x07\xae\x98\x75\xb2\x83\x32\xaa\x70\x41\xac\x51\x16\x4b\x4d\xbe\x1c\xbd\xfa\xfa\xeb\x16\x95\xff\x97\xbb\xf6\x32\x56\x52\x02\x3f\x4d\x43\xab\x2b\x29\xd1\x23\x2a\x2d\x52\xad\xd7\x9f\x75\x08\x48\x1b\x02\xd2\x7a\x98\x3d\x87\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x62\x3b\x1e\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x8b\xed\x64\xc0\x65\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x1a\x7e\x86\x80\xb4\x21\x20\x6d\xfb\x33\x04\xa4\x0d\x01\x69\xee\x33\x04\xa4\x0d\x01\x69\x43\x40\x5a\x70\xd0\x21\x20\xcd\x83\xc5\x10\x90\x36\x04\xa4\x0d\x01\x69\xcd\xcf\xaf\x19\x90\xd6\x51\xeb\x1c\xb3\xf8\x86\x7e\x7b\x70\x55\x73\xf3\x36\x1e\x90\xbe\xbb\xf9\xaa\x86\xfc\xdd\x43\xfe\xee\x21\x7f\xf7\x90\xbf\x3b\xbc\xbc\x21\x7f\xf7\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\xd5\x9f\xc1\x5d\xaa\xfe\x0c\xee\x52\x83\xbb\xd4\xef\xca\xc5\x60\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x2a\xd8\xf8\x9f\x0c\x97\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x15\xf8\x0c\xee\x52\x83\xbb\x94\xfb\x0c\xee\x52\x83\xbb\xd4\xe0\x2e\x15\x1c\x74\x70\x97\xf2\x60\x31\xb8\x4b\x0d\xee\x52\x83\xbb\x54\xf3\x33\xe4\xef\x1e\xf2\x77\x0f\xf9\xbb\x1b\x9f\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\xdd\x6b\x86\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x3d\xa4\x63\x1d\xd2\xb1\x0e\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\xf8\xfa\x87\xfc\xdd\x03\xc1\x18\x08\xc6\x90\xbf\x7b\xc8\xdf\xdd\xf8\x0c\xf9\xbb\x87\xfc\xdd\x5b\x9f\x21\x7f\x77\x5c\x80\x1c\xf2\x77\x0f\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\xe6\x7f\x86\x80\xb4\x21\x20\xed\x77\x15\xc4\x31\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x16\x6c\xfc\x4f\x86\xcb\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x0b\x7c\x86\x80\xb4\x21\x20\xcd\x7d\x86\x80\xb4\x21\x20\x6d\x08\x48\x0b\x0e\x3a\x04\xa4\x79\xb0\x18\x02\xd2\x86\x80\xb4\x21\x20\xad\xf9\xf9\x9f\x9d\xbf\xbb\x8f\xdb\x41\xf8\xa8\xdb\xb9\x83\x39\x7a\x89\xd4\x12\x7b\x68\xd5\x95\x44\x59\x04\xf1\xa3\x21\xdb\x98\x04\x5b\xe4\x0d\x5b\x61\x64\x4b\xe1\x53\x81\x44\xe3\x5d\xfb\xf8\xa4\x1b\xb5\xd0\xa4\xe6\x45\x16\xd8\x3a\xb8\x0b\x74\x25\xc4\x5c\xd0\xa0\xfc\xd1\x83\x82\xb5\x34\x1d\xa3\x3e\xc8\x69\xb3\x97\x7c\xa1\x85\xeb\xe9\x01\x8c\x37\x3d\x00\x16\xc0\xb4\x0d\x0d\x4d\xe7\x5a\x28\x54\xc0\x74\xc2\x00\x99\xb8\x63\x25\xae\x06\x5d\x33\xbd\xc5\x49\x22\x56\x5c\x29\x4d\x4b\xb8\x8d\xea\x09\x0d\x9a\x88\x5c\x72\x4c\xc5\x8e\x7a\xcb\xe9\x01\xcf\xe7\x3c\xe7\x8a\x4d\x0f\xc8\x88\x80\x43\xa0\xb7\x1d\x4b\xa9\xcc\x3a\x49\x46\xa5\x1a\x13\xb7\xb3\x20\x48\xf4\x5a\x79\xca\x72\xc5\x13\x9a\x99\x05\x6e\x8f\xc3\x73\x42\xb3\x62\x49\xf3\x6a\xc5\x4a\xaf\x1d\x5c\x80\xd0\xa8\x86\x3e\x19\x15\x1b\x7a\xbd\x04\x65\x6e\xbc\x1c\x79\xb5\x9a\xed\x6a\x3f\x8b\x92\x9d\x5f\x9e\xdd\x74\x5d\x8f\x09\x36\x23\x3c\x4f\x79\x82\x9a\x1d\x17\x81\xb2\xb4\xe9\xd5\x9b\x58\x85\xcc\xd8\x5c\x84\x59\x37\x9a\x6f\x88\x1e\x2e\xba\xd6\x99\x10\x19\xdb\x75\xcc\x68\xe1\xdb\xb7\xb8\xac\x1b\x5f\x4f\x86\xb7\xda\xd3\x96\xd9\x87\x56\xf0\xe4\x16\xff\x4f\x54\x41\x04\xa4\xf7\xb6\xa5\xf5\xf0\x6e\x82\x89\x97\xf1\xce\x50\x09\xcb\x74\xc4\x75\x37\xf5\x3a\x34\xef\x96\x65\xe2\x0e\xa1\x86\x2a\x3c\xa7\xd4\x42\xce\xfa\xaf\xa8\xdf\xc1\x87\xfd\x4b\xc6\x15\x2b\x29\xa8\x56\x42\x23\x4f\xa7\x64\x84\xf1\x62\xfa\x56\xaf\x0a\x5a\x72\x29\xf2\x63\x02\x41\xa3\x56\x2f\x63\x87\x9c\x0b\x41\x66\xb4\x04\x65\x91\x9b\xee\x5f\xf6\x9c\xae\x9e\x4f\xb3\x56\xec\xef\x15\xcd\xfe\x82\x2e\xce\x56\x54\xe0\x73\x23\x23\x70\x09\x6d\xac\xe9\xc3\x4d\x19\x46\x22\xff\x09\xeb\xa0\xb5\x63\xde\xac\xfe\x67\x82\xff\x1c\x8f\xc7\xe4\xbf\xbd\x15\xa8\xb2\x62\x36\x52\xc9\x39\xfb\xe2\x1c\x3f\x91\x70\x70\x81\xb1\xf9\x74\x4c\x55\xaf\x55\x6f\x80\xe7\x3d\x16\x17\x9a\x6c\xcf\xf5\xc2\x64\x6d\x0b\x0c\x1f\x89\xb7\xe6\x25\x95\x47\x30\xde\x2f\x9a\x74\x3c\xab\xa7\xbe\x71\x33\x53\x55\x9f\x8e\x77\x32\xff\x02\x97\x34\x48\x74\xcd\x10\x4e\x3f\x2c\xe6\xd0\x16\xd4\x83\xf0\xdf\xea\xc5\x8b\x57\x27\xf8\xff\xf8\x8b\xeb\x73\xbd\x14\xa5\x1a\x25\xbc\x4c\x2a\xae\x80\xad\x35\x9d\x42\x13\xfd\xd7\x7f\xb5\xf6\x06\x43\x92\x3a\xc2\x36\xcf\x5c\xa3\x82\x96\xcc\x88\x44\x8b\x52\x54\x85\x16\x89\xa6\x53\x45\xb3\xec\x28\x68\x10\x34\x35\x05\xd0\x2d\xc8\xe1\x0b\x3b\x9a\xbd\xc3\x34\xcb\x3c\x1d\x1f\x3c\xd0\x0f\x78\x1f\x50\x88\x8d\x20\x39\xfd\xb4\x11\xcf\x58\x57\x59\x1f\xbf\xcb\x63\x32\x3a\x26\xbf\x00\x1c\x9e\x8f\xc9\x35\x3c\x39\x62\x9e\x5c\x74\xd0\x95\x28\x19\x29\xb4\xfc\x25\x25\x5f\x33\x32\xc3\x20\x8f\x8d\xd5\x2f\x1b\xcd\x3f\x61\x32\xa1\x05\x23\xc9\x92\x96\x34\x51\xac\x34\xcb\x7e\x87\xbe\xf2\xc1\xc7\x70\x04\x54\x6a\x45\x53\x36\xaa\x0a\xbc\x16\xf2\x99\x43\x47\x10\x59\x68\x50\xc7\x1d\x9b\x69\xc9\x8d\x19\xe4\xe1\x9f\x78\xca\x8a\x4c\x6c\x56\x2c\x0f\xa2\x53\xd3\xbf\x28\x45\x6a\x2f\x29\x8c\xab\xdf\x14\xe0\xa4\x52\xe4\x8a\xe5\xa9\x77\xd5\x69\x72\x6b\xbe\xf8\x6f\xdd\xbc\x1e\x9f\xfc\xcb\x5f\x63\x2f\x20\x65\x6b\x3b\xfc\xbf\x90\xad\x57\x10\x42\x65\x6d\xcc\x53\x53\x1b\xdb\x97\x2b\xbc\x0e\xf6\xfa\x62\xac\xa1\x59\xa4\x55\xd6\xec\xcb\x20\x82\xd5\xa7\x07\x4d\x05\xe3\x50\xcd\x01\xdc\x2d\x21\x62\xbd\x41\xf3\x3d\xb7\x38\x23\x66\x06\xf1\x94\x7e\x77\xc2\x54\x50\x39\x36\x7f\xcd\x84\x5a\x8e\x09\x7a\xaa\x02\x35\xb9\x2f\x34\x47\xa5\xb2\x8d\x27\xcc\x1e\x41\xf5\x97\xa0\x0b\xb2\x87\x47\x73\x92\x94\xcc\x04\xc8\x48\xf3\xba\x45\x49\x72\x9e\x3d\x3b\xb6\x41\x2e\x29\x9b\xd3\x2a\x53\x92\xe0\xb6\x34\xe8\xca\x34\x22\xd3\x28\x41\xee\x34\xae\xbc\x30\x92\xb3\x5e\xc4\x3b\x4f\x88\x06\xbe\xd5\xe2\x4f\x57\x08\x05\xdd\x2e\x63\x71\xf2\x66\x7e\xc2\x25\xbe\xb1\x11\xf9\xd9\xb0\x72\x7a\x41\x76\xa6\xbf\x1d\x1b\x12\xa1\x19\x63\xb0\xde\x34\x26\x0e\xbe\x63\x9e\x27\x59\x95\x5a\x03\x67\x42\x35\xb3\x0c\x03\xd4\xc3\x10\x24\xd2\xb9\x70\x5b\x82\xe1\x9e\xc5\xbc\x2b\x9b\x8b\x7b\x17\x5e\x5b\x03\x22\x1a\x31\xd5\xc3\x07\x85\x3b\x68\x17\xdd\xfa\x71\xe7\x84\xa1\x41\x41\xb7\x18\x3b\x26\xc4\x81\x3f\x1a\xc5\xa2\x27\x9e\x94\x8c\xea\xd7\x94\xdc\x12\xba\xa0\x3c\x0f\x5e\x59\xbc\x26\x68\x90\xca\xee\xe8\x46\xee\xc4\x27\xa0\xb7\xc8\x31\xc9\xd9\x9a\x95\x8d\x5b\x17\x54\xb2\xf4\xac\xb2\x54\x43\x81\x30\x20\x1d\xce\xae\x5a\x08\x29\xf9\x2c\xb3\x13\xd7\xee\x70\xba\xc3\x75\xc1\x92\xb0\xd8\x8d\x1b\x89\x3b\x08\xb6\x0b\xf8\x51\xd9\x39\x2c\x72\xef\x7e\x0b\x94\x23\xf5\xdd\x1e\xa4\x12\x25\x5d\x30\xfb\x95\x54\x54\x55\x08\x18\xb4\xfc\xb1\xf4\xd2\xb3\xc9\xdc\xf2\x3c\xd5\xd8\xc8\x82\xb4\xc8\xaa\x92\x66\xf5\x37\x89\xc8\xd1\x10\x2f\x4f\xc9\xcf\x7f\xd3\xdf\xe8\xf1\x59\x6a\x02\x6d\xcd\xb7\xd3\x7c\x34\x1a\x4d\xf3\x3f\x99\xe0\x87\x53\x92\x00\x56\x78\xae\xd8\xaa\x80\x3a\x56\xcf\x6f\xd3\x74\x94\x94\xa9\x1c\x6f\xe8\x2a\x9b\xe6\xb4\xe0\x36\xb2\x97\xd0\x82\xb3\x7b\xc5\x72\x18\x6f\x7c\xfb\x8d\x1c\x73\xf1\x7c\xfd\x72\x9a\xe3\xda\xde\x56\x52\x89\xd5\x15\x43\xdb\xe3\x39\x03\x59\x12\xf0\x7a\x23\x7e\x16\x34\x66\x04\xbd\xaf\x73\xf4\x54\x96\x4c\xc9\x71\x52\xa6\xe3\xa2\x14\x1a\x62\xb8\xa8\xb1\x28\x17\xd3\x5c\xe3\x40\xe8\x07\x8c\xcd\x29\x89\x34\x6b\x1a\xb0\x70\x41\xdb\x4e\xd5\xf8\x5b\xc6\xa5\xfa\xb7\xe0\xef\x1f\xb8\x54\x4d\xe0\xee\xac\xd2\x9c\x1c\xcf\x17\x55\x46\xcb\xdd\x06\xfa\x77\x40\x88\xe5\x9a\x7d\xce\x6f\x73\x71\x97\xbf\xd7\x37\x4e\x9e\x92\x39\xcd\x24\x9c\xbc\x4c\x84\xbe\x1c\x6f\xb3\x4a\x2a\x14\x4c\xd7\xf6\x8c\xf4\x1f\x23\x03\x21\x0d\x58\x98\x2c\x59\xb2\x55\x1d\x7a\x2c\x0a\x96\x9f\x4d\x2e\x7e\x78\x7d\xdd\xfc\x7e\xeb\xf9\xec\x38\x94\x37\x42\x3a\xc0\x31\x81\x96\x33\xae\x4a\x5a\x6e\xc8\xc5\x84\xc8\x6a\x36\xb2\xdb\x78\xfe\xf6\xe2\xfc\xaa\x81\xbb\x50\x15\xb2\xd4\xd8\x0e\x19\x24\x10\x83\x41\x86\x43\x74\xa6\x04\x46\x17\x1a\x2f\x90\x15\x59\x73\xea\xf9\xe3\xa1\xa7\x05\x76\xf5\xc7\x15\xf3\xdd\x85\x5a\x63\xbd\xd3\xfb\xf8\xcf\x35\xa2\x97\xf5\x6e\x69\xf3\x75\x36\xd3\xa5\x68\xb8\x19\xb7\x14\x0c\xe3\x40\x84\x62\xc0\xcf\x52\x03\x6b\xc4\x28\x80\x1f\x0d\x71\xa3\x21\x85\x9b\x06\x61\x6e\xde\xf8\x18\x58\x1f\x56\x4a\x2b\x1c\x27\x22\x5f\xb3\x52\x91\x92\x25\x62\x91\xf3\x7f\xb8\xc1\xa5\x75\x94\x81\xe7\xb6\xc3\x2e\xf2\x5c\xb1\x52\x33\x49\x80\xdc\xd0\x1c\xb0\xa2\x1b\x52\x32\x3d\x0d\xa9\x72\x6f\x40\xeb\xa6\xf7\x51\x33\xc7\x3c\x9f\x8b\x53\x48\x64\x25\x4f\x9f\x3f\x5f\x70\x65\x1f\x68\x22\x56\xab\x2a\xe7\x6a\xf3\x1c\x4c\xf7\x7c\x56\xe9\x23\x79\x9e\xb2\x35\xcb\x9e\x4b\xbe\x18\xd1\x32\x59\x72\xc5\x12\x55\x95\xec\x39\x2d\xf8\x08\xd6\x9e\x03\x2e\x19\xaf\xd2\x3f\x95\xe6\x45\xcb\xc3\x10\xe6\xdb\x45\x98\xf0\xf8\xda\x8e\x41\xbf\x3e\x13\xfd\x8d\xdc\x3f\xb2\x2f\x0e\xda\x96\x84\x5f\xbd\xbb\xbe\x21\x76\xf6\x60\xa4\x3c\x02\xbf\xee\x29\xeb\x73\xd0\x40\xe3\xf9\xdc\xf2\x69\x60\x2d\xf1\xd5\x1a\xc8\x24\x64\x3c\xc0\xb2\xcb\x6a\xb6\xe2\x4a\x7a\x19\x90\xc4\x98\xbc\x75\x66\x94\xaa\x48\xa9\x62\xe9\x98\x5c\xe4\xe4\x2d\x5d\xb1\xec\x2d\x95\xec\x8b\x9f\x02\x30\xab\x23\x0d\xdb\xbe\xe7\x10\xc9\x5a\x10\xd3\x11\x3b\x44\x1b\x39\xb6\xed\x87\xaa\x29\x6d\x33\x78\xce\xc6\x5a\xd6\xd9\x0d\x28\xd9\xc6\xbe\xf5\xc7\x1e\xec\x16\x31\x6e\xb1\xbc\x44\xc2\x3c\x76\x2a\x4c\x5a\x4f\xd4\x8b\x09\xb1\x28\x0d\x31\xd8\x8c\x65\x42\xdf\x2d\x61\x34\x4f\x2c\x64\xaf\x8f\xf3\x27\x03\x87\xf0\x6b\x72\x08\x4b\x21\x6b\xcf\xab\x2f\xc0\x1d\xf8\xe1\x55\xdb\x9c\x81\xff\xdb\x2e\x57\xd0\x58\xd9\x36\x47\xe0\xff\xf8\x5b\x72\x03\x03\xa5\x1c\x28\xa5\x7f\x04\x03\xa5\xfc\xd5\x28\xa5\x8f\x3d\xfa\x51\xc9\x5d\x5c\x54\x7f\xf6\xa7\x93\xec\xbe\x00\x3f\x93\x8b\x49\x1f\xed\x96\x3e\x69\xd3\xa1\x19\x6d\x78\x74\x31\x59\x7f\x05\xcf\xea\x62\xb2\x3e\x79\x66\xe5\x6c\x7b\x2d\x82\x42\xf4\x05\x2a\xed\x2f\xf4\xdb\x9c\xd3\x84\x81\x6d\x6e\x3a\x3d\xd8\x32\x83\x38\x6d\x14\xe8\x15\x32\x21\x6e\xad\x3a\x90\xdb\x9e\x41\x2d\xb0\x75\xf7\xf1\xa2\x20\x2f\x26\x0d\x07\x3c\x0c\xdc\x06\x03\x9d\xd1\x73\x00\x12\xa1\x6a\x0c\x4e\xed\x41\xba\x3e\x9d\x2a\x50\x8e\x54\x72\xc7\x3b\x7e\x2b\x1f\x00\x04\x60\x3a\x47\x12\x51\x1a\x55\x5e\x68\xd0\xed\xf2\xcd\xd3\xa9\x1e\xcf\xd4\x6d\x76\xfb\x37\xc8\x4f\x36\x67\xe5\x79\x38\xdb\x80\x13\xdd\xfc\x73\x1a\x43\xe4\xaf\x26\x3b\x0d\x5f\x65\xf4\x92\x78\x57\x5f\x05\x54\x7d\x84\x86\xe5\x12\xf5\xac\x98\x8f\x8a\x2a\x52\x54\x65\x21\xf4\x4b\x3d\xba\x98\x1b\xd7\xa8\x25\xab\x8f\x46\xcf\x63\x7d\x1f\xdb\x1d\xac\xac\xce\x51\x30\x3c\xfe\x8c\xd1\x32\x77\xc7\x66\x4e\xb0\x1e\x57\x2f\xa0\x92\xa0\x17\x8f\x3a\x75\x4c\xa7\xca\x1e\xc7\x38\xa8\xd5\x7e\x72\xfe\x8d\xd4\x2b\xbc\x0c\x7b\xfb\x6c\x3d\xa9\x77\x98\x42\x53\xdf\xfb\x7f\x45\x95\xbe\xb1\xb7\xd4\x7e\x3e\x2e\x2d\xc9\x07\x9e\x57\xf7\xed\xb7\xde\x59\x9c\xdd\x85\xfe\x0b\x5c\xbd\x55\xa1\x36\x63\x52\x4f\xe3\x1b\xa9\xd1\x62\xcb\x65\x2b\x66\xd1\x9f\x85\x58\xb3\x32\x47\x5b\x8f\xf3\x7f\x13\xc7\xb5\xcf\xdb\xb2\x14\xd5\x02\xfd\x1a\xac\xea\xd6\x30\xd5\xed\x61\xf9\xe6\x70\xe1\x5e\xea\x86\x2e\x29\x01\x16\xf3\x4e\x11\x2d\xc0\x9d\xfc\x0b\x61\x7a\xff\xf8\xb0\x53\x7d\x49\xd6\xf8\x10\xc3\x69\x2a\x6a\x6f\xa2\x35\xd4\x57\xdf\xd4\xe0\x3b\x26\xbe\x12\x58\x48\x8c\x65\x78\xae\x04\xf8\xc6\xeb\xb5\x58\x25\x47\xd8\xb5\x20\x13\x09\xcd\x5c\x60\xbb\x51\x9c\x5e\xcc\x49\x03\x9f\x59\x5c\xe6\x9d\x6f\x2f\x50\xc3\x43\xb2\xf0\x6e\xf8\x1a\xc2\xf6\x01\x9f\xe8\xbd\x1b\x5e\x0b\x20\xe7\x81\x3f\x88\x64\xec\x35\xaa\xdf\x90\x83\x75\x63\xcd\x70\x05\x47\xe4\x4e\xa3\xb9\x26\x72\x0e\xe3\x03\xd4\xe2\x8e\x1a\xc7\x1f\x98\xcc\xc5\x22\xd6\x0a\x61\xfd\xb2\x83\x83\xe6\x3e\x32\x82\x34\xba\x25\x38\x4a\x1c\x07\x56\xe5\x96\x70\x4c\x28\x60\x8d\x5d\xf6\x8f\x18\x3b\xb6\x4f\xbb\x5c\xf5\xf4\x3a\xc9\x18\x86\x53\x69\xa1\xa4\xc4\xf4\x7b\x66\x16\x49\x8e\x64\x15\xc6\x30\x54\xc2\xd1\x32\xb5\x7c\xa1\xff\xfb\xcc\xc4\x02\x81\x81\x91\xa5\x44\xaf\xfb\x2f\x84\x2b\xc2\x65\x7e\xa8\x6a\x6d\x74\x37\x25\x27\xf8\x98\x8b\x52\x68\xee\xc5\xbb\x02\x08\x63\x0f\x2b\x34\xef\x61\xbd\xea\x20\xcd\xb5\x01\x5b\xa7\xb8\x57\x88\x8f\x04\xee\x07\x63\x28\xd1\x3e\xa5\x39\xae\x55\x91\xb1\x95\xbe\x6b\x88\xea\x6b\xc4\xe1\x2f\x5a\xfe\x25\x7c\x7a\x5c\x71\x9a\x65\x1b\xf2\x7f\x34\x8c\x8b\x92\x8d\xc0\x2f\xc6\x59\x7b\x26\xfa\x90\x98\x49\x76\xec\xd0\x7e\x52\xad\x62\x32\x81\xfe\xd8\xda\xf6\xc8\xe0\x9b\x1a\xfa\x22\x0f\x9a\x0d\xda\x90\x77\x1e\xce\x74\xb7\xa3\x18\xd0\xed\x8c\xd7\x3e\x38\x25\xcd\x37\x96\xe0\x9b\x15\x43\x03\xae\x05\xed\x3c\x08\xec\xb6\x45\xc4\x22\x86\xb7\xac\x1a\x9a\xd8\x37\xf8\x41\xcf\x7b\x17\xdf\xae\x09\x66\xb5\x99\x8f\x83\x9e\xc0\x33\x86\xfa\x56\x96\x27\xe8\x42\xe5\xd8\x0d\x73\xe0\xc6\xc9\x75\x0f\xea\xd8\xe9\xf2\xda\xea\xea\xda\xed\x1e\xa9\xb7\xd5\xd1\xbd\x35\x52\xf5\xf7\x94\xd1\xec\x4b\x25\xb0\xea\x70\xfc\xcc\x23\x08\x7b\x04\xc0\x8d\xfc\xd2\x92\xa2\xee\xc1\xee\xa2\x05\xb2\xb1\x9d\xd7\xfd\xac\x8e\x0a\xc7\x07\xc7\x81\xce\xcd\x3d\xee\x18\x47\x32\x8b\x88\x27\xfe\xac\xa3\x44\x34\xa9\x75\x32\x08\x26\x7c\x37\xcb\xf1\x3c\x2e\xad\x48\x80\xae\x84\xb1\x41\x31\xcc\xa2\x28\x18\x2d\x9d\x13\x1f\x44\xf1\x10\xb7\xae\xda\xce\x6d\x47\xb6\xce\x98\x35\xbf\x3e\x8a\xba\x2a\x6e\xbd\xca\x41\xdb\xf8\xbb\xd5\x36\xf2\x82\xae\x66\x99\x48\x6e\xbf\x84\xaa\xf1\x62\x72\xf6\xf1\x8d\x1e\x7c\x5b\xcf\xe8\x7e\xd8\x55\x32\xd6\x0b\xda\xd6\x30\xba\x5f\x06\xf5\xa2\x59\xe5\xa0\x5e\x1c\xd4\x8b\x7f\x1c\xf5\xa2\x43\x1a\xbd\x74\x8b\xf9\x36\xf6\xa9\x3f\xfb\x6b\x16\xb5\xc0\xa2\x61\xd7\x49\xf7\x4d\x3b\x2b\x13\x02\xba\x32\x5e\x4c\x5c\xe2\x9f\x56\x6e\xc4\x38\x3d\xa6\x82\x0a\x24\xae\x5c\xbc\x80\x57\x91\x84\x4c\x0f\xb4\x74\x7c\x8a\x55\x43\xf4\x3f\x81\x33\x02\xef\xd5\xe9\x01\x0c\x08\x4e\xa1\x4c\x1d\x7b\x13\x46\x44\x5d\xdd\x12\xf6\x85\x35\x70\x40\xee\xde\x93\xf5\xa7\x99\x16\xd8\x62\x59\xd6\x9b\x90\xd1\x14\x1b\x30\x56\xdd\x87\xf0\x7c\x54\x99\xd0\x0e\xcb\x86\xc0\x8a\xc7\x24\xe7\x19\x94\xb3\x89\x04\x58\xac\x18\x45\x3e\xa7\x1e\x8d\xc0\x1b\x63\x0c\xd5\x82\xb9\xc8\x47\xde\x18\x5a\x9a\xe6\x79\xca\xee\x09\x3f\x8e\xe9\x14\xcc\xef\x2e\xe0\x85\x6b\x24\x68\x80\xef\x4d\xb3\xb3\x58\xc0\x90\x91\x31\x11\xaf\x98\x31\x71\x02\x3b\xa2\x94\x22\xe1\x90\x31\x84\x2a\x7c\x8e\xcc\x29\x74\xcf\xdc\x37\x41\x96\x50\x83\xf2\x01\x2c\x55\x8b\x04\xf0\x27\x72\xf3\xe9\xfc\xd3\x29\x26\x3e\xca\xab\x2c\xa3\x33\x64\x2b\x57\x34\xaf\x40\xfc\xa5\x69\x0a\xdc\xe5\x98\xfc\xc8\x2c\x89\x41\x3c\x44\x5c\x66\x84\x72\xb4\x08\x67\x02\xfd\x93\xbe\x61\x4b\x9a\xa7\x19\x23\x3f\xff\xed\x5f\x35\xf2\xc3\xc7\x96\x6d\x4c\x0a\x93\xa0\x80\x6f\x17\x12\x93\x1b\x5a\x18\xf5\x1a\xa6\x9d\x17\xd3\x83\x3e\xb8\xeb\x52\x77\x53\x9d\x9f\x90\x45\x64\xde\xa9\x85\xd6\x0b\x0e\xd5\xcd\xfb\x5d\x63\x81\x31\xb9\x11\x64\xae\x09\x8f\x77\xde\xa8\x3b\xc1\xa0\xbf\xba\x63\x10\x23\xe8\x87\xd2\x08\x1d\x68\xde\xcb\x43\x69\xca\x3f\xd9\x2b\xe4\x2d\x23\x1a\x21\x4f\x03\x17\x93\xa1\xae\xc4\xc9\x05\xfb\xdf\xb6\x4e\x81\x1a\x6f\xc2\x2f\x3c\x2c\xee\x91\x5e\x52\xb5\x64\x9a\xd1\xa6\x65\x08\x25\x9b\xcd\xed\x57\xda\xa1\x8f\xf8\xdb\x15\xbf\xf8\x60\xb9\x32\xe1\x69\xa7\x8f\xf9\x8d\xbd\x49\x87\x92\xbc\xbd\x38\xbf\xda\x13\x57\xa7\x2c\x63\x2a\x28\x61\x37\x66\x39\xc7\x66\xe6\x2d\x38\x66\xd0\x04\x68\x39\xbf\xf4\x3b\x51\xde\xd2\x52\x54\xfa\x3a\x7b\xf5\x09\x22\x0a\x50\x7d\xaf\xbc\x48\xf5\xb3\xc9\x05\x7a\x28\xcf\x36\xb8\x2c\xc4\xab\x19\x06\xdc\x94\x4c\x55\x65\x4e\xa0\x8c\xc8\x3c\xe3\x61\x48\xb3\xb2\x14\xa5\x8d\xa6\xa9\xc9\xea\x8c\xb1\xdc\x63\x8f\x94\xc5\x54\x36\x10\x9c\x29\x87\xd1\xf6\x8f\x45\xfb\x7b\xc5\xf2\x84\x5d\x42\x58\x5d\x10\x8c\x60\x25\x38\x25\x2f\x3a\x40\xac\x11\xa8\x16\x09\xc1\xac\x85\x83\x9a\x60\x3d\xd4\x2b\x73\x69\xb7\x80\x61\xee\x8a\x87\xb5\x1f\xf5\xd6\xb9\x24\x77\x25\x57\x8a\xe5\x46\x31\xd0\xa0\x57\xe0\xc1\x2c\x85\x99\x14\x05\x78\x9c\x36\x8c\x74\x61\x25\x3e\x03\x43\x4c\x18\x9c\x5e\x08\xe8\x34\x94\x74\x0e\xf7\x26\xd5\x74\xc9\x32\x46\x65\xe4\xe9\x00\x2f\x76\x4c\x0a\x2a\x3d\x43\x63\x73\xe3\x1e\x39\x04\x2c\xda\x44\x6e\xc1\x41\xb3\x4c\xdc\x49\x52\x49\x5f\xb5\x0c\xee\xdc\x52\x11\x4a\x4a\x8a\x29\xce\x4d\x92\x2e\x4d\xa3\x59\x2e\x2b\x03\x80\x8b\x60\x81\xca\x25\x05\xcd\x36\x5c\x22\xdc\x90\xa6\xce\x79\x4a\x4a\x36\x32\x8b\xd1\x52\x14\xa4\xe4\x83\x28\x48\x6c\x63\xd9\xf4\xc0\x8d\xc2\xfa\x2c\x40\x7a\x4f\xbe\x8a\x5d\xb8\x08\x5d\x6e\x5e\xb8\xf7\xa2\xac\x51\x7a\xe0\xf6\xf5\xc6\x76\x1d\x4b\xea\x64\x16\xb6\xea\x75\x14\x1e\x4f\xc7\x52\xc7\x37\x79\xd9\x1f\xf0\x0a\x41\x2c\xcb\xa3\x6e\x5d\x7d\x1d\xc6\x3e\x32\xb1\x36\xd6\xe8\x1d\x21\x75\x80\xed\x2d\xdb\xd8\xfc\x19\x85\x3c\x26\x12\xe5\xe0\x5b\x06\x41\x01\x09\x95\xca\x94\x57\x03\x04\x1a\x45\x10\x61\xfc\x8e\x89\x60\xce\x7a\x0a\x0a\xd7\x8d\xd6\x36\xb4\xd7\x49\x2c\x7a\x3d\xa9\x96\x29\x11\xaa\xfa\x0e\xe6\x41\xcb\x78\x26\xf2\x05\x2b\x11\x2d\x1b\x3b\x23\xd6\xad\xf9\x2c\x71\xb8\xb7\x22\x9f\xf3\xc5\xf6\x7c\xfa\x91\x30\x1a\x8a\x07\x68\xc5\x81\x55\xee\x4e\xba\x6b\x83\x9f\xeb\xa6\x36\x0c\xaa\xc4\xa0\x6b\xab\x19\xf5\x19\x25\xd4\xf9\x47\x62\x3c\x34\x57\xdf\x64\xa5\x9e\x90\xf7\x8d\x12\xe5\x88\x4a\x7a\xe4\xaf\x7b\xe7\xa7\x08\xdf\x3e\x02\x02\xbf\xfd\x5d\xf3\xc6\x6c\xff\xea\xc1\x7a\x50\x74\x3e\x91\xa2\x33\x81\xc7\xf0\xa5\x34\x9d\xf8\xd4\x42\xaa\x4e\xfc\x25\xac\xeb\x34\x6b\x0a\x29\x3b\x13\x37\xe0\xa0\xed\x1c\xb4\x9d\x83\xb6\xf3\x0f\xa7\xed\x44\xbc\xb1\x87\xba\xd3\x47\x41\xf5\xe7\x01\xfa\xce\x4a\x09\xc3\x6e\x32\x60\x48\x42\xb4\xb5\x95\x55\x58\xd1\x7b\xec\x38\x61\xe5\xf7\xa0\xb3\xec\xe2\x24\x9b\xed\x41\x69\x9a\x8b\x7c\xf4\x0f\x56\x8a\x63\xab\x42\x5b\xd1\x7b\x8f\x55\xf4\xcd\x44\x5b\x4b\x83\xb4\x6a\x34\x87\x5c\x1d\x4e\xc7\x09\xd2\x54\x44\xcd\xb9\xa2\xf7\x7c\x55\xad\x4e\xc9\xab\x97\x5f\xfd\xf9\xab\x6f\x5e\x9f\x7c\xf5\xe7\x40\x23\x9e\x63\xa3\x80\x88\xd7\xce\xcb\x77\x31\x87\x2d\xb0\x8c\x33\x22\x3b\x87\xb4\x0f\x87\x31\xb0\x11\x0f\x66\x23\x50\x7f\xf5\xa5\xd8\x88\xef\x61\xf4\x10\x1b\x81\xbf\x84\xd9\x08\xb3\xa6\x10\x1b\xb1\x74\x03\x0e\x6c\xc4\xc0\x46\x0c\x6c\xc4\x1f\x8e\x8d\x40\xbc\xb1\x07\x1b\xe1\xa3\xa0\xfa\xb3\x3f\x1b\x01\x04\xfa\x31\xca\xaa\x5e\xc2\x7b\x58\x1f\x13\xd7\x77\xb7\xf2\x2d\x88\x2c\x2f\xce\xa3\xfd\x42\xda\xf5\x28\x89\x0e\xd8\x5f\x47\x6e\x8a\x81\x1e\x3f\x09\x3d\x2e\x84\xc8\xbe\x0c\x2d\x9e\x08\xeb\x3e\xe8\xd3\x61\xfd\x6d\x88\x06\xc3\x3a\x76\xe9\x6f\x61\x06\x19\x68\xef\x40\x7b\x07\xda\xfb\x07\xa3\xbd\x1a\x57\xf4\xa6\xbb\xba\xf1\x43\x64\x75\xcc\x3b\xf7\x59\xf6\xf0\x75\x70\x4d\xad\xd3\x86\xc4\x44\x57\x68\x7c\x20\x1a\x57\x39\xbf\x23\x1b\x1a\x07\x89\x56\x43\xc4\x19\x5c\x8d\x5c\xa6\x2e\x1b\x99\x75\x5c\x67\xda\x52\x82\xfc\x3c\x3d\xb8\xa9\xf2\x9c\x65\x90\xe0\xed\xe0\x47\x13\xd9\x31\x3d\xf8\x1b\xec\x7b\x46\x93\xdb\x11\xa4\xae\x54\x7c\xc6\xb3\x1d\x21\x95\x7c\x99\xb8\x36\x20\xcb\xd7\xfc\x1f\xbd\x82\x27\xd0\x18\x25\xf9\x3f\x40\x87\x50\x49\x8c\x78\xa9\x23\x11\x09\x95\x92\x2f\xf2\x95\x7e\x4c\xd1\x82\x18\x26\x67\x9a\xc8\xc6\xe4\xdc\x03\xcf\xab\x13\x33\x98\x09\x38\x7d\xf9\xea\x95\xfd\xe2\x24\x6a\x9c\x89\xb0\x43\x7d\x7d\x08\xe0\x90\x1f\xe2\x40\xc0\x25\x9d\x65\xec\xcd\x77\x93\x77\xf7\x91\x98\x86\x26\xd2\x3a\xc7\x0e\x84\x41\x73\x8d\xa2\x4a\x51\xb9\xbc\xf2\x00\x91\x8b\x09\xd1\xb7\xfe\xd0\xb8\x34\x10\xb1\x0e\xfb\x27\xbd\xf9\x6e\x32\x26\x3f\x9f\x5b\x0b\x3b\x10\xcd\xbf\x05\x0a\xd8\xb6\xb2\x76\x66\x03\x9d\xa6\x2b\x30\x68\xdb\xc6\xa0\x79\x2a\xab\x3a\x72\x55\xf3\xc7\xb5\xb3\x02\x9e\x7d\x1d\x94\x1a\x5a\x7c\xbd\x5d\xb8\x00\x7b\xae\x9a\x17\xbc\xe8\x06\xb5\xb3\x15\x9e\x1a\xe4\x0d\xa9\x06\x39\x16\x66\xaf\xa3\x5c\xcf\x26\x17\xeb\x97\xf0\xea\xee\x68\x99\x06\x57\xdb\x78\x8d\x9a\x38\x28\x43\x5d\xfc\x51\x61\xeb\x88\x4c\x8e\x9b\x3f\x05\x01\x80\xa1\xbd\x48\xa5\xf5\x03\xd2\x8b\x1a\x07\x8e\xaf\xc3\x73\x88\xe5\xb1\xf3\x0b\x9f\xa1\x69\x5f\x1f\xa1\x86\x25\x51\x80\x8f\xf4\x9e\x7c\x4c\x17\x1e\x13\xe2\xd6\x52\x96\xf1\x35\x2b\xeb\xd2\x4a\xfa\x2b\x57\x78\x50\x6e\x25\x58\x0f\x9e\x30\xe9\x3a\x65\x02\xb9\x3e\x83\xd1\x5c\x3b\x7b\xbb\x01\x64\x7d\x31\x81\x0e\x90\x62\x0a\xac\xd7\xb9\x97\xa0\x6e\x7a\x80\x39\xeb\x6c\x21\x51\x28\x4f\x3c\xc2\x92\xb9\xd3\x83\x31\x21\x67\xb1\xfd\xea\x31\xb7\x46\xa8\x3d\x48\x2a\x69\x66\xae\x61\xa8\xcf\x56\x3f\x6b\xb8\x23\xd1\x52\xf1\x1e\xbc\x9a\xb1\xf6\x3b\xb0\x23\xe4\xcc\x5b\x43\x73\xdd\xb1\xd1\x61\x81\xf6\xa2\x6f\x2f\xf0\xce\xa6\xff\xf3\xd7\x80\xf1\x6e\xfa\x75\xc4\xc6\xa4\x75\xf9\x33\x53\x6a\xd8\x72\xa1\xb6\x40\x86\x1e\x3c\xb7\x27\x50\x07\x09\xb7\x96\x8d\x3c\xe2\xf3\x26\xd9\x7c\xa6\x57\x51\xc3\xba\xf5\xea\xb4\x13\xba\xb0\x14\xac\x6f\xfc\xc7\x1e\x51\x82\x6f\x2d\x7f\x82\x36\xc7\xaa\xac\x79\x93\xc0\x81\xb7\x5f\xf5\x8b\xad\x3d\x1e\xdb\xda\x2e\x5c\xa2\x5f\x03\x00\x0a\xfd\xc8\xa6\x07\x97\x6c\x0d\xa9\xe0\x8f\x20\xef\x7a\x73\xb2\xd0\xe8\x7a\x04\x83\x9b\x43\x45\x05\x5b\xc3\x25\xa9\x1a\x89\x4a\x2d\x04\xcf\x17\x7f\x14\x94\xda\x8a\x75\x72\xaa\x3e\xf5\x84\x07\xa6\x69\xad\xdb\xd7\x48\xd5\xa2\x45\x48\x86\xea\x55\x4c\x23\xad\x11\xe7\x86\x21\xd6\x72\x87\xff\xfe\x77\x90\xab\xa8\x94\xe4\x29\x73\x02\xa6\x63\x51\x43\x83\x42\x3d\x19\xf9\xf7\x8a\x95\x34\x0d\x16\x07\x6a\x87\x86\x48\x7b\x97\x81\x38\x43\xef\x33\xc3\xb4\x9b\xa4\x80\xfa\xb6\x18\x97\x5e\x17\xd1\x0c\x98\x66\xb6\xc1\x1c\x80\xa1\x35\xbb\x5a\x4a\xfb\xdd\xe5\xf5\x7d\x46\xf3\x47\xbe\xec\x1f\x7e\xfa\x70\x76\xf9\xab\x3d\x6d\x98\x2d\xc8\x1b\xbb\x05\x3c\xf8\x6d\x47\x15\x70\xbb\x7e\x37\xff\xd3\xf4\x6c\xf8\xc5\x48\xdf\xb3\x51\x39\xa3\xc9\x17\xd7\xb7\xa1\x1e\x0b\x9f\xe7\x17\x51\xbb\x5d\xd5\x13\xec\x6a\xdf\xbc\x1f\x43\x4a\x38\x7f\x71\xbb\xba\xb8\xb2\x39\xf2\xa0\x92\x1b\x54\x72\x83\x4a\xee\x0f\xa6\x92\xf3\x10\x48\x6f\xcd\xdc\x0e\x46\xaa\x3f\xfb\xeb\xeb\x0c\xd2\x49\x21\xd9\x70\x17\xf5\xbe\xf2\x1b\x37\xeb\xcd\xe3\x57\x34\x4f\x9f\x37\xd4\x51\x61\x1d\x04\x38\xc4\xec\x68\x30\xd8\x7d\x92\x55\xa9\x29\x7c\x9c\xb3\x3b\xdf\xb7\x75\x88\xd9\xff\xdd\xd3\xe2\xdb\x6a\xc6\xea\xe0\x3b\xd9\x60\xf0\xbe\x04\x69\xfe\xb7\x6a\xc6\xde\xd6\xf3\xbd\xf5\xe7\xdb\xa6\xd4\x6d\x6d\x77\x09\x77\xeb\x4e\xb6\xe9\x78\x5b\xe3\x81\xac\x9b\x55\x0e\x64\x7d\x20\xeb\x7f\x1c\xb2\xde\x86\x6d\x76\xa9\x7c\xa3\x7e\xc6\x36\x80\xbd\xd0\x22\x0f\xc9\x34\xa5\xe7\xfe\xc4\xde\x1b\xa2\x8f\xa0\x6e\x67\x43\xcd\x35\x56\x34\xb1\x33\x9b\x5a\x3c\x6b\x9e\x56\x34\xeb\x28\x98\xea\x4d\xbb\xb7\x96\xbd\xab\x06\x6a\xa4\xf2\x69\x64\xc9\xcd\x32\xa8\xf5\xba\xa2\x75\x47\xdf\x19\xa5\x3d\xc4\x86\x82\x3a\xe1\x18\xe2\x36\x95\x80\xa4\x00\x4a\x58\x15\x41\x64\x84\x1e\x15\x6c\x35\x9a\xca\x13\x9e\xb1\x72\xc2\x4a\x2e\xe2\x61\xc8\xdb\xc8\xe1\x6a\xab\xa3\x75\x4b\x2e\xf0\x2f\x25\xf4\xbf\x20\x51\x83\x9d\x82\x47\xe3\x17\xed\xc7\x85\x3b\xda\xe4\x71\x54\x51\xe0\x3e\x7c\x83\xd7\xd7\xab\x90\xb5\xcb\x7e\xba\x43\x97\xbb\x02\x97\x23\x89\xe4\x76\x20\x70\x29\xd2\xf6\x93\xd6\xbf\xff\x3e\x0e\x79\xe9\xe5\xf6\xeb\x7b\xc0\x7e\x3e\xc0\xda\x42\x2e\x37\x79\x62\x95\xfd\x40\x21\x21\x43\x65\x9d\xa2\xbd\xed\x74\xcf\xad\x19\xf1\xa1\x3b\xed\xb9\x5b\x62\x9c\xf6\xdf\x96\x8c\x46\xb2\xfd\x46\xf6\x7c\x78\xe6\xba\xd5\x27\x5b\x29\xb1\xa2\x8a\x27\x75\x5d\x2d\xd1\x59\xe8\xbd\x09\x15\x10\x9e\xd8\x9a\x95\x1b\x63\x24\xa9\x2f\xb3\x85\x49\xdb\x95\x26\xbd\x2b\x0f\xf7\xa9\x3b\x9c\x31\x7a\xfb\x5d\x49\x13\xb6\xe7\x7b\xff\xd0\xec\xb7\xf5\xdc\x9b\x41\x97\xf6\xce\xb7\xed\x09\x94\xdb\x58\x4d\x1d\x0a\x32\x52\xdf\x1a\x56\x07\xb0\xeb\xe5\x6a\x1a\x7e\x8d\xf7\x24\x10\x6c\xd0\x1c\xd2\xd8\xd9\x2f\x26\x64\x41\xcb\x19\x5d\xe8\xe5\x64\x19\x4b\x30\x56\xb6\x06\xfc\xcb\xc7\xa2\x91\x3f\x22\xea\x24\xf0\xfe\xa1\xfe\x63\xdb\xf3\x6b\xee\xf6\xda\x75\xf1\x1d\x6d\x4c\xf9\x3c\x41\x12\x51\x6c\x7a\x96\x3c\x07\x8c\x5a\xd7\x1e\xf2\xf2\x75\x4a\x7f\x97\x06\xa1\x7e\x59\x2a\x81\xc9\xfc\xfa\xd0\x09\x93\xfb\xbb\x85\x52\x98\x74\x9d\xbf\x0f\x5a\xf1\xc7\xbb\xd5\x5d\x47\xdd\x2c\x83\xd9\xe7\xc8\x9b\x25\x30\xdb\x8e\xde\x8c\x1d\x5b\xbe\x29\x6a\xe9\x5f\x8d\xe1\x0e\xfc\x16\x77\xc0\xa6\x61\xee\xe0\xa2\x9a\x66\xe2\xad\x3e\x6d\xf7\xc0\x8e\x1f\xdb\x03\xdb\xe2\xc4\x86\x9b\xf0\xdb\xdc\x84\xf6\x28\x8b\x59\xb5\x30\x39\x63\x27\x3d\x9c\x02\xcf\xb7\xda\xef\x92\x85\x52\x61\xae\x90\x72\xcd\xc8\x8a\xad\x44\x19\xce\x5c\xa5\xaf\x53\x51\xb9\x84\xbc\x44\x73\x3a\xbb\xd6\x69\xfc\x79\xcb\xb4\xdc\x9e\xa7\xe5\xf5\xab\x18\x04\x22\x7e\x97\x4c\x25\xe9\x0f\xaf\xdf\x8a\x55\x41\x81\xe3\x8a\x5e\x9a\xe6\x65\x79\x17\xec\xb6\x75\x65\x66\x4c\xdd\x69\x8e\x50\xcf\xb1\x7e\x1d\x96\xf4\xed\x00\x4e\x25\x54\x33\x8e\xfe\x73\xf0\xf9\xc0\x17\xc1\xfb\xd2\x76\x4f\x96\x8c\x66\x6a\xf9\x76\xc9\xc2\xa1\xc0\xcd\xad\x7d\xef\x35\x76\x08\x40\x94\x76\x29\xd2\x55\xad\xd6\x32\x02\x8e\x1c\xdc\x1a\x0e\xd0\x8b\xc9\x69\x5b\x7b\x26\x16\xd7\x5a\x12\xe1\x6a\x73\x9d\x94\x8c\x85\xd2\xe7\x6c\xf1\xfd\xdb\x3d\xec\xb1\x64\x62\x41\xa4\xf9\x85\xd0\x99\x58\x33\x93\xba\x24\x13\x8b\x48\xae\x3e\x86\x8e\x31\x46\xb1\x2a\x55\x2a\x2a\xe5\x1f\xc6\x45\x3e\x17\xfb\xee\xa8\x28\xc5\x4a\x33\x93\x95\xfc\xc8\x54\xc9\x13\xd9\xe7\xe9\x1d\x4e\x42\xbd\xec\xce\x6e\xde\x4e\xcc\xe3\xb3\xfe\xe0\x75\xf3\xd0\xc6\x56\x38\x04\x3e\xd4\xd2\x6a\x96\x67\x3c\x4f\x41\x23\xd9\x71\x03\xbf\x7d\xf1\xed\x57\xf1\x4d\x07\x1f\x5a\xdc\xc5\x23\xa6\xeb\x8a\x2a\x13\x6b\x63\x51\x04\x54\xad\xea\x44\xe8\xed\xa9\x75\xcd\xb9\xea\x6f\x03\x5a\x78\x23\x1c\x7a\xba\x43\x72\xa1\x0e\xa1\xf0\xcc\xbc\xca\xd0\xc4\x98\xae\x40\x33\x29\x20\x5a\x5d\x4b\x72\x80\x00\x31\xc7\x14\x4d\x54\x45\x77\x1c\x87\x70\x44\x3c\xab\x3b\xea\xb2\x7f\xdb\xe4\xf9\xc6\x19\x74\x25\x52\xf4\xcd\x9f\x69\x56\x7c\xcd\x4b\x01\x5e\xea\x64\x4d\x4b\x0e\x0f\x71\x67\xbd\xe8\x29\x79\x5b\xcd\xd8\xc8\x57\x7e\x16\xa5\x48\x98\xdc\xd6\x74\xb4\x55\x62\xaa\x67\xfb\x81\x06\x55\x9f\x7b\x86\x00\xc6\xa8\x57\xe3\xd8\xde\x35\x67\xdd\x2e\x37\x10\x00\x40\xc4\x01\x34\x08\x04\xcc\xcd\x96\xcf\xb3\x0a\x8b\x0f\x80\x15\xa0\xca\x73\x9e\x2f\xf0\x82\xec\x99\x30\xaa\xf4\xfb\x76\xda\x81\xfd\xc6\x5b\x1b\x9b\xcf\xb5\xa8\xbf\x66\x8d\x5b\xc1\xa5\x9d\x20\xb4\x41\x1e\x3b\x68\x91\x1e\x9b\x44\xef\x2b\x56\x2e\xac\xb1\xe3\x6c\x72\x51\xdb\x3a\x34\x47\x12\x26\xc9\x91\x5b\x16\x80\x4b\x07\x17\xd6\xae\x35\xdf\x01\xce\x53\x6a\xce\x49\x97\xf6\xbc\xc7\xf2\x49\x0f\x2d\xfa\xce\x26\xf6\xd3\xa4\xb7\xb1\x8c\x4f\xc9\x2e\xf7\xdc\x2d\xd9\x8f\x6d\xde\xd9\x7c\x7f\xd6\xb9\x4b\x0b\xd9\xe4\xac\x7b\xb1\xcf\x5d\x43\xb6\x73\xd7\xe4\x49\x35\x95\x2d\x8a\x78\xf2\xa5\x94\xf1\xe4\x09\x94\x2c\xa4\xff\x3d\xe9\xa9\x98\xdf\xd9\xee\x1e\xca\xf9\xae\x13\xad\x75\xf7\x4f\xa3\xa0\xdf\x63\xf7\x64\x1f\x45\xfd\x0e\x0c\xfa\x29\xeb\xbb\x07\x05\xd6\xe4\xc9\x15\xf6\xa4\xf7\x53\x20\x3d\x9f\x03\xd9\x4b\x79\x4f\x1e\xae\xc0\xef\xda\x58\xfd\x8c\xf6\x54\xe2\x77\x0d\x1c\x60\x94\x3b\x15\xf9\x5d\x63\x76\xe8\xf9\xc9\x1e\xc7\x34\x20\xf5\x4e\x10\xf5\x32\x0f\xec\x02\xe7\xe9\x4c\x04\xe4\x49\xcd\x04\xfd\xb7\xde\xe7\x01\xb7\x9a\x0c\x76\x80\xf2\x94\x66\x03\xf2\xeb\x52\xb5\xe1\xa1\x3c\xc1\x6d\xe9\x65\x75\x20\x5f\xcc\xf2\x40\xbe\x90\xf5\x81\x0c\xd7\xe8\x57\xbd\x46\x3d\x0d\x17\xe4\x4b\x1a\x2f\xc8\x97\x32\x60\x90\xe1\x32\xfd\x8a\x97\xa9\xab\x45\x0f\xfb\x07\xf9\x52\x36\x10\xf2\xf4\x76\x10\xd2\x6d\x0b\x21\x7d\xea\xc9\xf4\xb6\x89\xec\x00\xe7\xa9\xec\x22\xe4\x69\x6d\x23\xa4\xc7\x9d\xea\xb0\x91\xec\x6e\xf5\x89\xec\x24\x64\x4f\x5b\x49\x9f\xbd\xf4\xb1\x99\xec\x6e\x68\x6f\xbb\x49\x6c\x3b\x99\x58\xc8\x47\xd8\x4e\xfa\xec\xb0\xaf\x0d\x65\x77\x97\x4f\x6a\x47\x21\x8f\xb5\xa5\xc4\x06\x8d\x99\x58\x48\xf7\xfb\x6d\xa9\xc6\xda\x62\x6e\x21\xad\xe8\x72\x08\xf5\x79\x54\xa8\x8f\x89\xa5\x07\xf1\x87\x7f\x91\xd4\xb3\x97\x38\x03\x8a\x60\xf8\x43\x1d\xcd\xd3\xf8\x71\x37\x7c\x67\x6b\x75\xe6\xdc\x5c\xc0\x8e\xff\x33\x0c\xdd\x33\x42\xc7\xa9\xc4\x81\xcb\x1a\x82\x74\x86\x20\x9d\x21\x48\xe7\x9f\x2b\x48\xa7\xcd\x44\xbc\x28\x99\xec\xf4\x25\xb9\xb1\xb5\xac\xf5\xf5\x67\x10\xf7\x8a\x1d\x4d\xa1\x77\x82\xf5\xae\xf4\x1f\xce\x2a\x1a\xa2\x79\xd4\xf6\xc6\x6c\x25\x64\x45\x55\xb2\x24\x49\xc9\x15\x2b\x39\x85\x47\x42\x49\x22\xca\x92\xc9\x42\x53\x88\x7c\x41\x0c\xe7\xa8\x04\xd6\xe0\xde\x2b\x1e\xb6\xb1\x87\xe9\xc1\x19\xb9\xd2\x0b\x64\x79\x42\x0b\x59\xc1\xbb\xad\x57\x14\x5a\x4a\x44\x85\x4f\x8d\x26\x98\xbc\x11\x6a\xb9\x55\x86\xdb\x2b\x2d\x8e\x3a\x32\x3d\xd0\x76\xb9\xf1\x08\x0b\xe2\x4a\xea\x9b\xb2\xdf\x23\x22\x59\x41\x4b\xac\xe8\x54\x29\x42\xfd\xb8\x63\x6c\x02\xd9\xfb\xf4\x2a\x78\x0e\xe7\x11\x59\x70\x9e\xda\xf3\xf2\x01\xcf\xf3\xc5\x98\x4c\xa7\xb9\xa9\x62\x2e\x24\x07\xfb\xf5\x16\x24\x96\x34\x36\x2a\xc9\xd9\x02\x16\x67\x10\xaf\x16\x70\xd8\x9c\xdf\xdb\xea\x61\xd3\xe9\xf4\xe0\x52\x28\xfd\x9f\x31\x39\xcb\x32\x53\x3b\xc0\x1f\x3d\x3c\xb2\x49\x47\x45\xf1\x42\xad\x2a\x89\x65\xe3\xa8\xe2\x12\x1c\x29\x30\xb9\x8b\xd9\x8a\x12\x38\xe6\x98\x9c\x01\xb1\xdb\xcd\x98\x6c\xa0\x0b\x97\x93\xe6\xf6\x82\x1a\x21\xcf\x6c\x1a\x6a\x3b\xe9\xed\xe8\x3f\xcc\x7e\x80\x32\xe0\xe0\x71\xb8\x02\xf4\xc3\x4b\x84\xe2\x64\x15\x3a\x92\xe0\x12\xc3\xc9\xb3\x3a\xf5\x08\x78\xe1\xa2\x3c\x66\xb7\x94\xed\xe5\xf2\x89\x8e\xb2\x25\x1c\xd7\x59\xba\x1a\x6e\x0e\x5b\x97\x03\xd8\x6b\x78\x98\x2d\xe2\x7d\x23\x97\x10\xd1\xb8\x50\x85\xde\x71\x4f\x60\x10\xdf\xac\xdf\x92\x28\x28\xb2\xb3\xe9\xc1\xe5\x76\x67\x5b\x19\xab\x40\x4f\x18\x93\xf1\x29\x56\xb5\xbf\xfe\x38\xc0\x50\x87\x04\x08\xbb\xd7\x24\x4c\x02\x7e\xf8\x94\x67\x1b\xa2\x4a\x3a\x9f\xf3\x04\x21\x65\x93\x96\x75\x59\x12\x80\xca\x1d\xe9\x2b\x04\x06\x2e\xc4\x54\xea\x99\x67\x26\xf4\x2a\xbb\xe1\xdc\xf1\xdc\x79\x5b\x20\x93\x2e\xe1\x1e\x9c\xa5\x26\x80\x90\x55\x0a\x2e\xf2\x0e\x6c\xda\x07\x45\x2c\x29\xc0\x5a\xe2\x40\xa0\x05\x46\x64\xcb\x52\xeb\xca\x24\xe9\x0a\x9f\x02\x66\x2a\x6a\x1f\x14\x12\x7b\x59\xc5\x9e\xb7\x65\xbc\x6b\xa5\x5b\x37\x99\x6d\x70\xd1\x76\xe6\x0e\xa0\xda\x6d\x5b\x78\xd9\xa0\x21\xbd\x2e\xc4\x83\xef\x45\xd9\xe4\xb1\x8f\xa3\x34\xc0\x7e\x20\xd9\xea\x2e\xd8\x08\x5f\x15\x19\x67\xb2\x96\x3f\xfd\xcb\x06\x95\x3a\xbb\x0e\x0c\x54\x4f\x60\x75\xcc\x17\x51\x98\x70\x0f\xbe\xbd\xbc\x52\x5c\xb5\xd9\xc6\x3e\xa3\xdb\x3f\x5c\x64\x62\x46\xb3\xa3\x67\x1d\x8a\xbe\x5f\x07\x00\xdf\xc1\x62\xcc\x12\xb5\x3c\x2e\xca\x86\x3f\x02\x6c\xa3\x7d\x50\xbd\xc7\xc6\x30\xf5\x41\x77\x9d\x65\xc7\x6a\xfd\x2d\xa2\x23\xa0\xb4\x25\x5a\xb7\x0e\x8d\x42\x3e\x45\x42\xc3\xd9\xd3\xea\x4f\xfd\x64\x23\x84\xc3\xcd\xdd\x4b\xcd\x9a\x33\xd5\xae\xa8\x6e\xba\xb5\x30\x25\xe3\x88\x51\xb3\xf3\x50\xd5\x46\x76\x9b\xed\x2d\x09\x84\x23\x04\x5a\x01\xa2\x53\x18\x2f\x3a\xd4\xd7\x01\xed\x26\x5e\x6c\x24\xb3\xd4\x9c\x43\xee\x6a\xbf\x63\x55\x67\xcc\x1d\xd9\x1e\x24\x1a\xe7\x23\xbd\x79\x7b\x5a\xa3\x5b\xb2\x1e\xd7\x9f\x5c\xa8\xcb\xfd\xce\x04\x3b\x58\x25\xd7\x16\xfb\x65\x77\xac\x9b\x74\x90\x17\x7d\x8e\xbf\x3b\x58\x4c\x44\xb9\x27\x30\xa0\x47\x07\x34\xa0\x4d\x1f\x70\x90\x6b\xa8\x28\x0b\xb7\x54\x8a\x15\x83\x6a\xb6\x22\x11\x99\x24\x4b\xba\x46\x7b\x80\x3c\x46\x57\x93\x0d\xfe\xd5\x81\x68\x4b\xe6\x25\xe6\xe6\xca\x2a\xf4\xa4\xd5\x47\xc2\xe8\x86\xa3\x32\x88\x5c\x0b\x28\x9d\x58\xd1\x94\x50\x86\xe4\x7e\x37\x6f\x27\x36\xbb\xec\xe7\xf3\x49\x34\x75\x29\x7e\xfa\x9c\x2a\xcd\x37\x9f\xe6\x1d\x6d\x46\xdd\xa6\x87\xdd\xc6\x7d\x9c\x91\x0a\xaa\x14\x2b\xf3\x53\xf2\x1f\xe3\x7f\x6d\x6f\x79\x3f\xba\x75\x5e\x19\x23\x9e\xab\x91\x28\x47\x38\x43\xac\x4c\x7d\xfd\xe9\x7b\x21\xf7\x67\x2e\x2f\xeb\x4e\x1d\xd7\xb2\x1f\x7f\x65\x6e\x26\xb9\x66\x1e\x71\x41\x2c\xac\x05\x0c\x59\xcd\x54\xc6\x34\xaf\x8c\x02\x97\x99\xab\x7d\x4c\xc7\x2d\xb5\x5e\x95\x7e\x67\x56\xec\xf7\x64\xa7\x07\xee\xc5\x76\x91\x95\x6e\x62\xdb\x83\xac\x2c\x41\x62\x36\x7a\xa7\x23\x4f\x08\x79\xd6\x71\x0d\x9d\xe5\x00\x59\x4d\x69\x13\x3a\xab\x25\x93\x8c\x94\x34\x5f\x30\xf9\xdc\xaa\xed\x20\xf1\x73\x6b\xbe\x61\xfc\x34\xd2\x86\x99\xa7\x03\x86\x26\x84\xb2\xb4\x10\x30\x3a\x30\x33\x4d\x07\xaf\x3c\xc7\x33\x40\x06\xae\x2f\x06\xeb\xc4\x00\xd8\x74\x2f\x0c\xd6\xb1\xf7\x1a\xbd\x6d\x61\xb0\x29\xe2\xb0\xa9\xc1\x62\x53\xc4\x63\x53\x8d\xc9\x5a\x79\x9e\x01\x97\xc1\xa7\x17\x2e\x93\x0f\x90\x92\xbb\x85\xe3\x56\x4d\x5f\xfd\x09\x0a\xc7\xe4\x48\x32\x66\x55\x64\x80\xca\xe8\xaa\xc8\x18\x91\x9b\x5c\xd1\xfb\x50\xd6\x59\xff\x33\x9d\xb6\xca\xd6\x86\x87\x8c\xc9\xce\xed\x63\x5b\xcd\x98\x27\x5a\x8b\x72\x57\x64\xd6\xcf\xed\x52\x28\x06\x73\xeb\xdb\xd3\x01\x04\x13\x67\x63\x8d\x06\x1d\x54\x01\xc1\xe3\x51\x93\xf6\xd1\x67\x2c\x13\x77\xcf\x8e\x9b\x4b\xf6\x80\x8d\x50\x25\x5c\x49\x96\xcd\xad\x39\xbb\x03\x0e\xa8\x0c\x03\x35\xe7\xcd\x92\x11\x75\x27\xe0\xae\x41\xbe\x26\xfb\x1b\x22\x08\x4d\x84\x36\x75\x9e\xf6\x8e\xb3\xfb\x94\xdb\xdd\x5b\x67\xb0\x5a\xfd\xca\x3c\x29\x09\x77\x83\xaa\x05\xd3\xbe\x9b\x26\xdc\x2d\x45\x66\x0e\xe9\x14\x8e\x68\x3a\xad\x09\xf2\x5f\x01\xbb\xfc\xcb\x92\xca\xa3\xd5\xe6\x17\xf0\xd2\x7c\x06\x78\xc7\x20\xf9\xae\xe7\x6c\xca\x0e\x58\x2d\x04\x5c\x32\x5c\x1f\xfa\xd0\xd4\x21\x3c\xa9\x9e\xb7\xe7\x7d\x83\xf1\x52\x01\xae\x22\x80\xa5\xd1\xa6\x34\x63\x19\x2c\xd7\xae\x14\x95\xa8\x66\x4b\xbd\x2f\x06\x6e\x39\xba\xe3\xdd\x4d\xe9\x55\xc4\x8a\xa7\xd4\x9f\xf6\xfd\xba\x2d\x75\x6d\xa7\xeb\x91\xe7\x70\xf3\x30\xb0\x0a\xd9\x29\xa3\x4a\xc8\x00\xb5\x9a\x8a\x08\x60\x7d\x76\x3b\xe9\x5e\x7c\x2e\xf2\x91\x71\x7a\x32\xf6\x30\x72\xb7\x64\x25\x33\x7a\x91\xb9\x28\x57\xcc\x57\x52\x80\x8f\x15\x8e\xde\x43\x69\xb7\x0b\x1a\x2f\x43\xd1\x13\x08\xf1\x4d\xdf\xcc\x3d\x78\xaf\xa6\x7b\xe6\xaf\xc7\x83\x6d\xa1\xe5\xf6\x31\x03\x2a\x4f\x4a\x0a\x91\xda\x20\x3a\x34\x81\x38\x14\xdd\xc3\x91\xd4\xb9\x92\xb6\xde\xb6\xde\x51\x23\xbe\xc1\x3e\xfe\xd9\x8d\x28\x7b\x3c\xb8\xc9\x43\x40\xde\x3d\x64\x4c\xd3\x1c\x00\x7b\x2f\x68\x13\xcf\x79\xf7\x6e\x29\x24\xaa\x25\xf5\xf6\x0d\x0b\xa8\x19\xe0\xce\x70\x8c\x3e\xcc\x1d\xd9\x2b\xcc\xa5\x27\xa7\x44\xfa\x72\x4b\x64\xf7\x7d\x75\xf2\x4b\xff\x73\x4f\xba\x21\x2b\xd5\x5a\x37\xc4\xfb\xae\xb4\x42\xa4\x80\x59\xf3\x53\x9b\x21\xc0\xba\x70\xed\x5b\x15\x6a\x59\xc4\xd4\x3b\x60\x1b\xfd\x7d\xf7\xa0\x67\x97\xe7\x87\x3d\xa2\x80\xf6\xd3\x68\x75\xc5\x4c\x19\x28\xee\x25\x1f\x1b\x2c\xdd\x86\x2f\xfa\x71\xdd\xd8\x13\x0d\xc4\x0e\x5f\x7a\x49\x35\xed\x44\xe0\xa6\x5a\xbb\xa8\xf6\xb0\xcc\xb4\x32\xdd\xdb\xd7\xab\x2f\xd7\x1d\x30\x67\x59\xf8\x1d\xc9\x67\xdb\xec\x37\xba\xd3\xe8\xd5\x74\xe9\xca\x9e\xc3\xaa\xa0\xe2\xbc\x5d\xc9\xa1\x04\xe9\xd6\x48\xcc\x16\xde\x89\x73\x0b\x71\xc0\xe8\x82\x45\xd3\xb2\xa5\x5f\x8e\xbd\xac\xc7\x3e\xeb\x7e\xbc\x6b\x51\xe8\x00\xf3\x25\xd3\xec\xaf\x55\xf6\x8a\x72\x9b\x76\xe3\xd2\x51\x95\xa2\x01\x61\x35\xa1\x1d\xd6\x4a\x7d\x9f\xf4\x01\xfa\x7b\x44\xbd\x91\x83\x82\xc8\xad\x23\x81\x71\xec\x68\x67\x59\xf6\x22\x9b\xfb\x53\x4d\xb7\xcc\x3a\xea\x1a\x4d\xf2\xfd\x03\xb2\x88\xdd\x9b\x67\x83\x7f\x22\x24\xd0\x2f\xb8\x3c\xb2\x35\x0c\x31\xdf\xdd\x1f\x7e\x1f\x4e\x89\xbb\xfb\x41\x2c\x6b\x76\x08\x2f\x39\x63\x73\x65\x0b\x40\x3a\x1a\x02\xaf\xa7\x87\x92\x86\xf8\x0f\x11\xea\xcf\x68\xf1\xfc\x50\xd6\x2b\xfb\x55\x31\x68\x77\x9b\xa5\x52\xa1\xa2\x7c\xf8\x69\x46\x2d\xdf\xdc\x4c\x6a\x7b\x7d\xd4\x89\x41\xdf\x12\xdd\x34\xbe\x74\xe7\xc1\xfe\x28\xff\x85\x15\x53\x4b\x91\xee\x41\x19\x3e\x62\x87\xa7\xe5\xda\x71\xcb\x88\xd4\x71\xdf\x9e\xab\x9c\x1e\x13\x2b\x5a\xb1\xce\xac\xa3\x96\xaf\x63\x29\x8e\x62\x57\x7b\xc4\xc6\x8b\x31\xf9\xee\xdd\xcd\x31\x99\x7c\xbe\x39\x26\x4c\x25\xe3\x67\xe4\x63\x95\x29\x5e\x74\xd9\x39\x0c\x88\x80\xee\x7f\xba\x3a\xd4\x62\xd8\x02\xc2\x32\x7f\x5f\x76\xab\x82\xaa\xe5\x1e\xe7\x78\x38\xd1\xed\xbf\xc4\x31\x76\x9d\x60\x37\x46\xf1\x4f\x10\x96\x39\x76\x47\x85\xdb\xb4\x67\xd1\xf7\x30\x08\x61\xe3\xc5\x29\x19\x11\x76\x4f\x13\x75\x4a\x9e\xcf\x85\x20\x23\xe3\x24\x76\x4a\x9e\xcf\x68\x49\x2e\x3f\xdd\xbc\x3b\x45\x07\x34\x96\xab\x72\x43\x56\x5d\xec\xf9\xa7\xcb\x0f\xff\x6e\x30\xe7\x86\x30\x0e\x0a\x18\x4a\xa6\x07\x30\x09\x6a\x91\xf5\x9f\x38\x8b\xd5\x75\x8c\xc9\x4d\xd7\xf6\xd7\x34\xe3\x29\x75\xca\x3e\x08\xe5\xc0\x02\x6f\x2a\x54\xd1\xad\xfe\xf4\xb9\x73\x5b\x11\x27\x37\x37\x13\x0d\x61\x8f\x00\xd0\x1c\x01\xaf\x01\xdd\x9f\x56\x5d\x28\xf0\x8f\x9d\x31\x0b\x08\xa3\x47\x9c\x8b\x72\x75\x6a\xc1\x3e\xad\x5e\xbc\x78\x9d\xe8\x81\xe1\x5f\xec\xd4\xa4\x27\xea\xa5\xf6\xc2\xab\x06\xab\x82\xe1\x34\xc2\x28\xdd\x11\xd6\x43\x8f\x0c\xbc\x1f\x35\x03\x8e\xd1\xe1\x6a\xb2\x47\x86\x07\x04\xc0\xd3\x8a\x91\x66\xeb\x4f\x39\x68\xdf\x14\x0c\x3d\x10\x52\xf7\x50\x3c\x59\xf5\xa4\x99\x17\x6f\x3f\x4e\xfa\x7a\x80\x00\x32\x8a\xaf\xdd\xc7\x52\x5e\x55\x3e\xbd\x5a\x13\xd5\x89\xb5\x05\x61\x4a\x23\x60\x98\x92\xaa\x2d\xf2\x15\x7a\xe8\xef\xf2\xb4\x7c\xde\xb4\x4f\xb9\xe2\x8e\xce\x6a\xae\xe7\x69\x63\x6d\xc1\x9e\xae\x1b\xad\x4f\x5a\xf4\x94\xbd\x6e\x62\xd2\x9e\x4a\x66\x9b\xce\x03\x67\x22\x72\x1f\x4a\x00\x94\x04\x4b\x9c\xee\x21\xac\x41\x18\x94\x06\x30\x7a\xe5\x83\x8b\x2a\x94\x8f\xf5\x61\x65\xac\x97\x60\x9a\x54\x2c\x59\xe6\x3c\xd9\x4d\x73\xd6\xfc\x80\x5a\x14\xd5\xff\x7c\x55\x08\x2f\xfb\xf6\xad\x66\xca\xb3\x43\x49\x78\xa1\x30\x72\x6e\xce\x4b\x76\x47\xb3\xac\x63\xa9\x88\x2d\x8c\x52\xb6\x92\xe8\x38\xc5\xf2\xb9\xc0\x78\x01\xe3\xa2\xd7\xfd\x34\x3a\x6d\x78\xd0\xec\xf1\x87\xa1\x87\x19\xa3\x2f\x19\xbb\x07\xc3\x55\x97\x09\x0c\xcf\x40\xcc\xc9\x37\xe8\xe5\x0d\x3b\x84\xb1\xde\x25\x4b\x41\xae\x90\x68\x9b\x12\x8d\x05\xcf\x17\xb2\xdd\x06\xd6\x6b\xbf\x3d\x90\x41\x11\x0e\xb7\x89\x00\xe4\x62\x62\xc3\x6e\x1e\xed\x18\xd6\x50\x6e\x21\x3f\xee\x43\x79\x62\x2d\x63\x51\x28\xf4\x80\x40\x24\x70\x22\xb2\xb9\x8f\xa6\xb5\xe7\xd6\xeb\x92\xe3\x41\x3c\x48\xb9\xaa\xeb\x91\x85\x82\x58\x9a\x9b\x7b\x14\xd2\x00\x65\x04\x96\x5d\x6a\xaf\x35\xd0\x37\x7d\x5f\xfd\xe9\x4b\x96\x9a\x75\x56\xeb\xf5\x98\x80\x1f\xb4\xda\xdd\xb2\x8d\xb9\xda\x05\xe5\x26\x39\x5f\xfb\xf4\x5a\x64\x25\xec\x5e\x95\xb4\x01\x53\x3a\x13\x95\xea\x41\x48\x9e\x4a\x72\xcc\x85\xd2\xaf\xaf\xdf\xcd\xb8\xc4\xc6\x1d\x1e\x3d\xd0\xa4\xdd\xb3\x6e\x20\x18\x03\xc1\xf8\xe7\x26\x18\xb9\x50\x96\xad\x8a\x82\xa5\xdd\xeb\xa6\xa7\xbf\x4d\x3f\x4f\x9b\x1d\x87\x50\xcb\xf2\x75\xf8\x84\x9a\x66\x71\x80\x75\xbc\xe3\x1e\xae\x3d\x0f\x73\xea\x29\x7e\xaf\xc0\x9d\x1e\xf8\xb0\x7d\x42\xda\xbf\x63\xd8\x02\x0d\xaf\xcf\x09\x58\x98\x8c\xe1\xd6\xf3\xb2\x4d\x33\x6f\xbc\x73\xcd\x39\xbf\x83\x50\xa3\x2b\x88\x94\xb3\x51\x5f\xa8\x36\x3f\x9a\xb1\x84\x56\xd2\xf8\xc4\x75\x98\x12\xdc\x12\x13\x56\xc2\x18\xce\xaf\xee\x19\xaa\xe2\x3f\x9a\xf0\xaf\x86\x97\x60\x17\x89\x45\xf7\xc1\x53\xdf\x03\xee\xd8\xf7\x7f\xc3\x3f\x40\x52\x69\xfc\xb5\x3e\xa9\xff\xbe\x7e\x7b\x83\xbf\xc6\xa7\x31\x23\x7e\xe0\x8a\x59\x27\x3b\x9a\xdb\x0b\x62\x8d\xb2\xe0\x6a\x48\x5e\x8e\x5e\x7d\xfd\x75\x8b\xca\xff\xcb\x5d\x7b\x74\xc4\xe8\x47\x8d\x31\x17\x40\xcf\xa8\x34\xa2\x44\x8b\x00\x89\x23\x0d\x01\x69\xff\x1f\x7b\x6f\xbf\xdc\x46\x6e\x2d\x0e\xfe\xbf\x4f\x81\x2b\xdf\x2a\xd9\xfb\x13\x29\x7f\xcc\x28\x33\x4a\xa5\xb6\x64\x49\xf6\x70\x23\x4b\xfc\x49\xb2\x9d\x6c\x98\x9f\x2f\xd8\x0d\x92\x58\x35\x81\x4e\x03\x4d\x99\x99\xa4\x6a\xdf\x61\xdf\x70\x9f\x64\x0b\xe7\x00\xdd\xe8\x26\xba\x9b\x94\xe4\x99\xcc\x4d\xb3\x2a\x19\x8b\xc4\xc7\xc1\x01\x70\x70\xbe\x4f\x1f\x90\xd6\x6d\xf6\xec\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\x6b\x5a\x71\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\xd3\x4a\x7a\x5a\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xe1\xa7\x0f\x48\xeb\x03\xd2\xea\x9f\x3e\x20\xad\x0f\x48\x2b\x3e\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\x05\x07\xed\x03\xd2\x3c\x5c\xf4\x01\x69\x7d\x40\x5a\x1f\x90\x56\xfd\xfc\x92\x01\x69\x2d\x05\x1b\x08\x19\xd8\x2c\xbe\xa1\xdf\xb6\x29\xfc\x1f\xe4\x13\xec\xdd\x78\x40\xfa\xee\xea\xad\xea\xf3\x77\xf7\xf9\xbb\xfb\xfc\xdd\x7d\xfe\xee\x30\x78\x7d\xfe\xee\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\x2a\x3f\xbd\xbb\x54\xf9\xe9\xdd\xa5\x7a\x77\xa9\x7f\x29\x17\x83\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\x60\xe3\xdf\x18\x2d\xeb\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xde\x5d\x2a\xf0\xe9\xdd\xa5\x7a\x77\xa9\xe2\xd3\xbb\x4b\xf5\xee\x52\xbd\xbb\x54\x70\xd0\xde\x5d\xca\xc3\x45\xef\x2e\xd5\xbb\x4b\xf5\xee\x52\xd5\x4f\x9f\xbf\xbb\xcf\xdf\xdd\xe7\xef\xae\x7c\xfa\xfc\xdd\x7d\xfe\xee\x3e\x7f\xf7\x56\x33\xf4\xf9\xbb\xfb\xfc\xdd\x7d\xfe\xee\x3e\x1d\x6b\x9f\x8e\xb5\xcf\xdf\xdd\xe7\xef\xee\xf3\x77\x37\xc3\xdf\xe7\xef\xee\x1f\x8c\xfe\xc1\xe8\xf3\x77\xf7\xf9\xbb\x2b\x9f\x3e\x7f\x77\x9f\xbf\xbb\xf6\xe9\xf3\x77\x37\x0b\x90\x7d\xfe\xee\x3e\x20\xad\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xeb\x03\xd2\xfc\x4f\x1f\x90\xd6\x07\xa4\xfd\x4b\x05\x71\xf4\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\x05\x1b\xff\xc6\x68\x59\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x81\x4f\x1f\x90\xd6\x07\xa4\x15\x9f\x3e\x20\xad\x0f\x48\xeb\x03\xd2\x82\x83\xf6\x01\x69\x1e\x2e\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xab\x7e\xfe\x7b\xe7\xef\x86\xa4\xdc\x5d\xd9\xbb\xaf\x4c\xa3\x16\xfa\x5d\xdd\x74\x89\xad\x83\x70\xa2\xdb\x1d\xe6\x4d\x06\x45\x89\x19\x14\x2c\x8b\xf1\x10\x75\x27\x85\xe6\x77\xc1\xe7\x46\x10\x9d\xec\xc1\x78\x93\x3d\x78\x2e\x6d\xdb\xd0\xd0\x74\x66\x04\x28\x0d\x0c\x1a\x0c\x90\xc8\x7b\x96\x21\x34\xe8\xc6\xe8\x01\xa7\x88\x5c\x72\xad\x0d\xdd\xe5\x2e\x02\x26\x34\x68\x24\x85\xe2\x98\xb6\x1c\x75\x7c\x93\x3d\x2e\x66\x5c\x70\xcd\x26\x7b\x64\x40\xc0\x79\xce\x5b\x8e\xa3\xea\x16\x4e\x92\x50\xa5\x87\xa4\x58\x59\x10\x25\x06\x56\x1e\x33\xa1\x79\x44\x13\x0b\x60\x7d\x1c\x2e\x08\x4d\xd2\x05\x15\xf9\x92\x65\x5e\x3b\xc8\x18\x1e\x1a\xd5\xd2\x72\xab\x8e\x42\x0f\x91\xa0\x7c\x8a\x67\x43\xe4\xcb\xe9\xa6\xa6\xb0\x85\x6d\xac\x3d\xf2\xb7\xbe\x9a\x06\x0f\x8a\xa7\xac\xc9\x95\x95\x39\x79\x74\x87\xff\x27\xf3\xe0\xf9\x37\x20\xd7\x84\x6e\x0f\xb9\x36\x5c\xc3\x43\x8b\x96\xee\xcd\x6b\x56\x1d\x94\x70\x18\xd6\x21\x49\xe4\x3d\x92\x02\xd4\x20\x15\x3a\x15\x64\xec\xfe\x80\xea\x05\xbc\xed\x5f\x12\xae\x59\x46\x41\xb2\x0f\x8d\x3c\x99\x90\x01\x86\x2b\x99\x83\xb2\x4c\x69\xc6\x95\x14\x07\x04\x62\x16\x9d\x5a\xc0\x0d\x39\x93\x92\x4c\x69\x06\xba\x8a\x62\xba\xff\xd8\x71\xba\x72\x3e\xf3\xb2\xb3\xbf\xe5\x34\xf9\x3d\x7a\xd8\x3a\x4e\x95\xcf\x2c\x8b\xca\x15\xb4\x71\x9a\xf7\x62\xca\xf0\xbd\xfc\x19\xe0\xa0\xa5\x5f\xd8\xb4\xfc\x67\x84\xff\x1c\x0e\x87\xe4\x9f\x1e\x04\x3a\xcb\x99\x0b\x94\x29\x7c\x4d\x71\x8e\x3f\x91\xb0\x6f\xbb\x35\x39\x74\x4c\x55\xc2\x6a\x16\xc0\xc5\x16\xc0\x85\x26\xdb\x11\x5e\x98\xac\x0d\xc0\xf0\x96\x78\x30\x2f\xa8\x7a\x0e\xe3\x7d\x31\x8f\xcb\x8b\x72\xea\xdb\x62\x66\xaa\xcb\xdd\xf1\x76\xe6\x3f\xe0\x90\x06\x69\xbe\x1d\xa2\x50\x4f\xca\x19\xb4\x05\xed\x14\xfc\x37\x7f\xf9\xf2\xf5\x11\xfe\x3f\xfe\x52\xf4\xb9\x59\xc8\x4c\x0f\x22\x9e\x45\x39\xd7\xc0\x55\xd9\x4e\xa1\x89\xfe\xf1\x8f\xd6\xde\x60\xc7\xd0\xcf\xb1\xcd\x8b\xa2\x51\x4a\x33\x66\x39\xf2\x79\x26\xf3\xd4\x70\xe4\x93\x89\xa6\x49\xf2\x3c\x68\x8f\xb2\x29\xed\xd1\x2b\xa5\xa0\x17\x6e\x34\x77\x86\x69\x92\x78\x2a\x26\xb8\xa0\x17\x78\x1e\x50\x86\x0a\x8b\x47\xd4\x5c\x6d\xa4\x33\xce\x53\xd3\x27\x99\xea\x80\x0c\x0e\xc8\x17\xc0\xc3\xe1\x90\xdc\xc0\x95\x23\xf6\xca\x35\x0e\xba\x94\x19\x23\xa9\x61\xff\x95\xe2\x2b\x46\xa6\x18\x63\xb0\x76\xea\x4d\xab\x78\x26\x4c\x45\x34\x65\x24\x5a\xd0\x8c\x46\x9a\x65\x16\xec\x73\x74\xd5\x0e\x5e\x86\xe7\x40\xf8\x97\x34\x66\x83\x3c\xc5\x63\xa1\x5e\x14\xe4\x08\x02\xdb\x2c\xe9\xb8\x67\x53\x23\x38\x30\x4b\x3c\xfc\x1d\x8f\x59\x9a\xc8\xf5\x92\x89\x20\x39\xb5\xfd\xd3\x4c\xc6\xee\x90\xc2\xb8\xe6\x4e\x01\x4d\xca\xa4\xd0\x4c\xc4\xde\x51\xa7\xd1\x9d\xfd\xe2\x9f\xa6\x79\x39\x3e\xf9\x8f\x3f\x34\xdd\x80\x98\xad\xdc\xf0\xff\x41\x6a\xb7\x20\x44\xca\xda\x38\xaa\xaa\x32\xb0\xc5\x5c\xdd\xa2\x09\x6c\xd7\x5b\xcc\xd0\x7f\xb5\x7c\x16\x42\xcb\x72\x2f\x16\x9e\x51\xab\x50\xc0\xf2\x1c\x52\x38\x20\x9d\xae\x20\x64\x76\x6e\x5b\x23\x18\x1d\xb6\x78\x53\xc1\x36\xc1\x45\xcc\x23\x10\x3d\xef\x17\x10\x30\xed\x33\xb2\xbe\x57\x96\x95\x72\x82\x74\xca\xdc\x3b\x69\x0b\x78\x1c\xd8\xbf\xa6\x52\x2f\x86\x04\x1d\x25\xe1\x35\xf9\x9a\x1a\x26\x45\x27\x6b\x4f\x96\x7a\x0e\xc5\x47\x82\x1e\xb0\x1e\x1d\x15\x24\xca\x98\x8d\xcf\x50\xf6\x76\xcb\x8c\x08\x9e\xbc\x38\x70\x31\x16\x31\x9b\xd1\x3c\xd1\x8a\xe0\xb2\x0c\xea\xb2\xb8\x81\xa5\xd6\x92\xdc\x1b\x5a\x39\xb2\x82\x9b\x01\xe2\xdc\xfe\xd3\xdc\x47\x4b\x39\x8b\x0a\x1c\xe8\xef\x07\xaa\x75\x3b\x4d\x68\x54\xae\xf0\x76\x0d\xc8\x5f\x2c\x5f\x64\x40\x71\x73\xfc\xf5\xc0\x3e\x0e\x86\xcb\x04\xb3\x81\x9b\x12\xeb\xa4\x3c\xe7\x22\x4a\xf2\x46\x88\x17\x8c\x44\xd4\x70\x9e\x30\x40\x39\x0c\xc1\xe7\x59\xc8\x62\x31\x30\xdc\x8b\x00\x24\xe7\x8d\xf5\x57\xea\xb0\x55\x00\x33\x24\xa9\x3e\x7c\xf3\x3a\x83\xc7\xa3\x0e\xc3\xc6\x84\xa0\xc1\x0a\xec\x86\x95\xa8\x83\x74\x41\xe0\xd1\xaa\xf2\xfa\x19\xa3\xe6\x1e\x45\x77\x84\xce\x29\x17\x07\xf6\x34\xa0\xd9\x23\xb9\xa7\x6b\x65\xbd\xe0\x83\xa7\xd8\x79\x2b\xa0\x9b\xc2\x01\x11\x6c\xc5\xb2\xca\x79\x0b\x4a\xf7\x5b\x96\xf7\x29\xb1\x40\x18\x3c\x1a\x85\x41\x2f\x95\x4a\xf1\x69\xe2\x26\x2e\xfd\xb0\x4c\x87\x9b\x94\x45\x61\x79\x0f\xd7\xd6\xec\x99\xd6\x2e\x59\x36\x0a\x6d\x61\x59\x6f\xf3\x5b\x78\x33\x62\xdf\xde\xae\xb4\xcc\xe8\x9c\xb9\xaf\x94\xa6\x3a\x47\xc4\xa0\xc9\x89\xc5\x97\x9e\x31\xe0\x8e\x8b\xd8\xd0\x21\x87\xd2\x34\xc9\x33\x9a\x94\xdf\x44\x52\xa0\x05\x58\x1d\x93\xbf\xfc\xd5\x7c\x63\xc6\x67\xb1\x8d\xf0\xb4\xdf\x4e\xc4\x60\x30\x98\x88\x67\xd6\xeb\xfe\x98\x44\x40\x0f\x0e\x35\x5b\xa6\x50\x40\xe9\x10\xbf\x18\x08\x19\xb3\x41\x36\xa5\xd1\x70\x4d\x97\xc9\x44\xd0\x94\xbb\xd0\x52\x42\x53\xce\xbe\x6a\x26\x60\xdc\xe1\xdd\x0f\x6a\xc8\xe5\xe1\xea\xd5\x44\x20\x8c\xa7\xb9\xd2\x72\x79\xcd\xd0\xf8\x75\xc6\x40\x40\x03\xca\x5e\x09\xe0\x04\x95\x0d\x11\xe8\x24\xab\x98\x56\xc3\x28\x8b\x87\x69\x26\x0d\xce\x10\x8a\xa1\xcc\xe6\x13\x61\xe8\x1f\xf4\x00\xa6\xe6\x98\x34\x34\xab\xda\x4e\x10\x94\xd2\x93\x17\xbf\x4d\xb8\xd2\x7f\xac\xfd\x72\xc1\x95\xae\xa2\xd4\x83\xc9\xee\x14\x17\xf3\x3c\xa1\x99\xff\x93\xf9\x05\x48\x5f\xb6\x62\x1f\xc5\x9d\x90\xf7\xe2\x9d\x39\x5b\xea\x98\xcc\x68\xa2\x60\x8f\x55\x24\xcd\x31\x28\xf4\x31\x20\x1b\xae\xdc\x86\x98\x3f\x06\x16\x0d\x06\x7b\x30\x53\xb4\x60\xcb\x32\xc0\x55\xa6\x4c\x9c\x8c\x47\x9f\xde\xdc\x54\xbf\xdf\x74\xa5\x75\x0e\xcb\xd6\x29\xac\x9c\x72\xc0\xfe\x96\xf3\x15\x4d\x0c\x89\xb6\x37\xa5\xee\xe5\xec\x5d\x87\x06\x85\x9b\xb7\xfb\xd5\xd3\x5f\xcd\x83\x61\x40\xb5\xfe\x06\xe8\x9f\x8f\xc0\xd8\x15\xb3\xd8\x2e\x0f\xe1\x00\xfa\x63\x1f\x0f\x1a\xd2\xa4\xc8\x19\xf0\x0b\x70\x87\x86\xc0\x54\xb0\x4c\x39\xb1\x33\x92\x62\xc5\x32\x4d\x32\x16\xc9\xb9\xe0\x7f\x2f\x06\x57\xce\x03\x02\x8e\xf3\xc6\xd3\xc3\x85\x66\x99\x61\x3f\x80\x78\xa0\x9e\x77\x49\xd7\x24\x63\x66\x1a\x92\x0b\x6f\x40\xe7\x7f\xf5\xc1\xb0\x9d\x5c\xcc\xe4\x31\x64\x28\x52\xc7\x87\x87\x73\xae\xdd\xc1\x8f\xe4\x72\x99\x0b\xae\xd7\x87\x60\x93\xe5\xd3\x5c\xcb\x4c\x1d\xc6\x6c\xc5\x92\x43\xc5\xe7\x03\x9a\x45\x0b\xae\x59\xa4\xf3\x8c\x1d\xd2\x94\x0f\x00\x76\x01\x77\x75\xb8\x8c\x9f\x65\xf6\xa6\xa8\xfd\x10\x65\xd9\x24\x48\x70\xb4\xdb\xb6\xc1\x9c\x70\x1b\xd6\x8b\x7c\x35\x32\x06\x05\xb6\x9d\xf3\xc9\xf5\xf9\xcd\x2d\x71\xb3\x07\x43\xa0\x11\xf9\x65\x4f\x55\xee\x83\x41\x1a\x17\x33\xc7\x01\x81\x1a\xdc\x57\x18\xe0\x23\x9c\xf0\x00\x33\xac\xf2\xe9\x92\x6b\xe5\xa5\xb6\x91\x43\x72\x5a\xe8\xc7\xf3\x34\xa6\x9a\xc5\x43\x32\x12\xe4\x94\x2e\x59\x72\x4a\x15\xfb\xe6\xbb\x00\x6c\xe0\xc0\xe0\x76\xdb\x7d\x68\x08\x47\x6f\x52\xfe\x15\x64\xac\x61\xdb\xca\xfb\x68\xde\xb0\x6a\x3c\x94\x0b\x9f\x2b\x03\xd6\xe9\x06\x6d\x2b\x3f\x6e\x4b\x6b\xcf\x5c\x8b\x32\xbd\xc1\x73\x7f\xa3\x68\xa0\x73\x2e\x1c\x8d\x0b\x4a\x88\x72\xf4\x94\x25\xd2\x9c\x2a\x69\xb5\x39\x2c\x64\x82\x6d\x7e\xf9\xff\x2d\xde\x5e\x78\x79\xb7\x7c\x7e\xef\xf2\x29\x2b\x7d\x3c\x32\xe5\x3f\xc5\x3f\xff\xcc\x67\x84\xfd\x8d\x0c\xaf\xdf\x9e\x9c\x9e\x4a\x31\xe3\x73\x32\xd9\x33\x0d\x26\x7b\xff\xfc\xa7\x19\x7d\x04\xcc\x31\x23\x94\x44\x49\xae\x34\xcb\x32\x99\xb0\xa2\x84\x5d\x7d\x6c\xd0\x96\x49\xc1\x84\x3e\x30\x9d\xa1\x08\x1e\x50\x10\xed\x48\x69\x03\x50\x4e\xf2\x2a\x1d\x20\x2c\x03\x80\x93\x5e\xcb\x84\x55\x19\x07\x58\x04\xcd\xf5\x42\x66\xfc\xef\xe8\xfc\xe5\x71\x0f\x01\xee\xa0\x61\xe2\x89\x00\x56\x17\x1a\x3e\x23\x97\x32\x46\x3d\x04\xb9\xb7\x3e\x5e\x5a\x92\xa5\x14\x1c\x7c\x99\x65\x46\x62\x96\x30\xbc\xe7\xf8\xe4\xd2\x94\xbf\x37\xac\x84\xd9\x17\xb3\x85\x7f\xc5\x5d\x2d\xe8\x70\x71\x44\x07\xc4\xb0\x41\x96\x2a\xae\x58\x36\xf5\x7f\xba\xf7\xed\x1d\x03\xb8\x1a\xe5\x5f\x73\xbc\x95\xcf\xc8\xd8\xe5\x3c\xf3\x60\x2b\x53\x51\xb1\xaf\x5c\x69\xa8\x10\x49\x15\x49\x69\x66\x2f\xd7\xc9\x07\x52\xae\x76\x77\xa0\x53\x19\x37\xc0\x3c\x67\xba\x09\xe2\x62\x39\xcf\x10\x80\x62\x60\x1b\x11\x27\x78\x0a\x25\x36\x41\xfb\x8d\xf5\x3c\x15\x18\xbd\x0c\x8a\xf0\xd0\x24\x32\xba\xb3\xd4\x5b\x1d\x98\x15\xdd\x33\x23\x48\x28\x92\xb2\x8c\xcb\x98\x47\x44\x67\x7c\x3e\x67\x59\x78\x23\xc2\x7c\x5d\xdb\x42\xb9\x65\xc0\x30\x93\x45\x78\xc9\x6e\x95\x8f\x9f\x0d\xd6\x47\x67\xc8\xce\x96\x5a\x24\x03\x06\x5d\xc2\x8f\xb5\xef\x16\x54\xc4\x49\xd3\xf1\x69\xd9\x0a\x10\xdf\x59\xf9\x37\xa2\xb4\xfc\x1b\xce\x33\x0b\x6e\xdd\x58\xca\x64\xf3\x2e\x50\x6e\x35\x70\x64\x49\x53\x50\x0b\xca\x19\x2e\x07\xd3\x10\x8c\x49\x6a\xfa\x3d\xd9\xae\xc0\x68\xed\xdb\xb1\x01\xf9\x06\x71\x59\x52\x41\xe7\x4c\x91\x85\x54\xda\x73\x71\x7b\x12\x10\x2b\x63\x7e\xc3\xfd\x79\x46\x2e\x19\x8b\x41\xbf\x62\x04\x74\x2d\x6d\x5b\x47\x97\xbd\x94\x29\x4f\xb5\xb4\xc0\xc8\x4f\xbe\x40\x6f\xdb\xfe\x98\x4f\xd9\x69\xb9\x6b\xf8\x1c\xe5\x59\xa1\x7e\x42\x0d\x0c\xd7\x66\x3a\x45\x0c\xd7\x17\x41\x93\xa7\x59\xac\x39\x34\xde\x99\x89\xfc\xd9\x83\xcb\x7e\x86\x3a\x0f\x03\x87\xbc\x17\x1e\x2c\x1b\x38\x79\x66\xb1\x40\xa8\xd3\x62\x11\x3e\x23\x42\x0a\x86\x54\x5b\x35\xa1\xeb\x99\xdb\x63\x64\x2a\x9a\xb0\xf8\x0c\xb1\x08\xcf\x40\xb4\xa8\x44\x62\x14\x08\x06\x66\x61\xe3\x4d\x7d\xcb\x05\x2a\xbe\xbe\xd1\xd3\x2a\x13\x76\xcd\x30\xaa\xc1\xed\x4f\xcb\xf8\xa6\x59\xe0\xd9\xef\x9c\x46\xe5\xc0\xa0\x99\xad\x19\xd8\x01\xaa\x7a\xe3\x2d\xc6\xf0\x3d\x24\x90\x80\xa8\xb5\xd2\x6c\x69\x31\x57\x70\x5b\xd7\x54\x44\x0b\x96\x0d\x1c\x1b\x7d\x4c\x4e\x01\xe3\x3e\x73\x03\xcf\x98\xb7\x04\xf4\x06\x31\xaf\x35\x6a\x4c\xa1\x32\x33\x8d\xee\xee\x69\x16\x23\xcb\x44\x35\x9f\xf2\x84\xeb\xf5\x43\xf4\x29\x5d\x4c\x9a\x0f\xd5\x19\x65\x4b\x29\x6e\x58\x17\x7f\x06\x8d\x7f\x21\x9e\xac\xca\x82\x7d\x54\xb6\x44\x32\x6a\x9e\x4b\xcf\xd9\xd2\x81\x4f\xde\x31\xa1\xac\xd9\x3e\xf7\x72\x06\x9d\x5e\x8e\x0c\x3f\x3d\x47\x4b\xe8\x4e\x7c\x4e\x75\xa9\xea\x10\xe6\xa8\x36\xbf\xac\xb8\xd3\x0e\x48\x44\x85\x4b\x6f\x54\xa7\x87\xe5\x2d\x7e\x06\xb2\x4e\x09\x18\x11\x40\xc4\xb5\x34\xf4\x01\xb8\xab\x03\x64\x0c\x51\x7d\xe0\x47\x51\x3f\x9c\x55\xab\x71\x9b\x4e\x35\x84\x03\xb7\x52\xf0\x67\xc4\x85\xa7\xdf\x24\xdc\x31\x6c\xb9\xdb\x11\x7b\xa9\x6c\x35\x73\x2b\xb5\x39\x1d\xb0\x4b\xce\xf5\xcc\x25\x5b\x5a\xba\xf8\x8a\xfa\x2a\x62\xae\x22\xb9\x62\xd9\xda\x5d\xfb\xb6\x55\x15\x4f\x2b\xc0\xb3\x13\xfb\xbc\x13\xf6\x36\x7c\xff\x8a\x33\xd1\x40\xfc\x3f\x5a\x43\x92\x5b\x4d\x71\x4c\x47\x63\xb4\x9b\xd2\x78\x65\x44\x64\x55\x22\xa2\x15\xda\x86\x51\x6f\xd7\xe9\x82\xaa\x61\x58\x1c\x20\xa7\xa3\xb3\x6b\x42\x73\x2d\x07\x31\xd3\x0c\xcb\xe1\x4b\x01\xf4\x8b\xc6\x4b\x7b\xd8\x4a\x8e\x01\xdf\x28\xc3\xb9\x3d\xe0\x7c\x61\x67\xd3\xb7\xf5\x08\xed\x2e\x13\x1d\xfa\xaf\x5b\x1d\xcd\x86\xe9\x71\x04\x21\x61\x14\x74\x50\x46\x4a\xb3\x2a\x8b\x8f\x82\xae\x28\x4f\xe8\xd4\xd0\xbb\x84\xce\x3d\x44\xa5\x3e\x9e\x9f\x39\x6b\x15\x48\xd3\x0a\x43\x0e\xa3\x2a\x87\xe1\xe5\x9c\x33\x17\x15\x65\x91\x22\xb9\xdd\x30\xf4\xfa\x3e\x23\x9f\xeb\x2f\xaf\xc1\xb3\xe7\xbb\xea\x67\x6e\xe0\x0d\xd7\xda\xde\x24\x2e\xe6\xdb\xdc\x08\xdb\x3a\xad\x78\x1e\x6d\x79\x25\xec\x01\x9b\xae\x1d\x3a\x0c\xe0\xce\x88\x53\xae\xff\xd1\xc4\xa7\x46\x6d\x02\x14\x76\x47\x96\xbe\x46\x45\x53\x17\x13\x24\x63\x77\x7c\x1e\x06\x73\xcb\xd9\xf3\x4e\x50\x71\x7a\xac\x2a\x40\x91\x15\xcd\xb8\xcc\x15\x39\xbd\x3e\xc3\xdb\x8e\x67\xe9\x89\x18\x6f\x4c\x64\x32\x63\x09\xff\x8a\xe3\x7a\x78\xf4\xbe\xad\x72\xa7\x20\x57\xce\xd3\x94\xb1\x4c\xd5\x87\x9a\xce\xd3\x8d\x81\x8a\xef\x36\x87\xa9\x88\x5d\x4d\xd2\x71\x93\xb8\x8a\x33\x06\x4f\xe9\xc6\xcf\x8a\xf9\x04\xb7\xb1\x4f\xb0\x75\xa3\x74\xd2\x20\x95\xb5\xca\xdd\xb8\x31\x40\x8e\xe0\x40\x3c\x40\xd4\xbe\xdf\x3c\x2d\xb9\xd2\x05\xeb\x2f\xe2\x82\x99\x37\xb4\x07\x0e\x8e\x14\x86\xb3\xcf\x74\x9e\x7e\x0b\x79\xb9\xf3\xb4\x6c\x2d\xdf\x35\x0b\x71\xd5\xb5\xd6\x17\x18\x58\x15\x69\x5c\x16\x69\x7b\x7b\xb6\xdc\x9e\x00\x60\xdb\x11\x7c\xeb\x55\x69\x66\x78\x52\xcd\xde\x76\xe7\xe5\x16\x8c\xdf\xce\x1b\x49\x0a\xe4\xbb\xc0\x01\xde\x39\x0e\x03\x91\xc9\xd3\x79\x46\x63\x1b\xce\xb9\x7a\x3d\x3c\x42\xae\x31\xc2\xc4\x4f\xcf\x0c\x3f\x9c\xb1\xa5\x5c\xb1\xd8\x3a\xcd\xba\x0e\x32\x33\x2b\x9c\x65\x4c\x2d\x08\x17\x4a\xd3\x24\x79\x52\x4d\x41\x0b\x2d\xa9\x92\xa4\x6d\x4f\xd6\x83\x8d\xcb\xcf\xc8\xbb\x84\x0a\xc1\x92\xaa\x98\xf2\x8c\x8c\x73\x88\x70\x04\xd4\x79\x46\x9f\x45\x3e\x1d\x46\x72\x79\x18\xc9\x8c\x49\x75\x38\xc3\xce\x87\xd3\x44\x4e\x0f\x97\xd4\x0c\x70\x78\x26\xa3\x7c\xe9\x2c\x8b\x87\x20\x1b\xda\x66\x76\x62\x33\xef\x53\x8b\x46\x76\x06\x5f\x36\x7a\x5a\xc5\xed\x53\x9d\xf0\x86\x43\xfd\xa4\x6c\x60\xf1\x14\xdb\x43\xf1\xd6\xc8\xac\x10\x00\xbb\xb9\xd7\xa5\x20\x2b\x68\x52\xd3\x03\x84\x44\xd8\xa7\x52\x81\x08\x9a\x0c\xca\x4d\x7b\x52\xc5\x47\x31\xec\x4e\x8a\x0e\x2b\x9d\xb6\xaa\x35\x7e\x01\x7d\xc6\xf6\x68\x6d\xde\x9a\x46\x84\x17\x0a\x84\x6f\xa0\x68\x7a\x5a\x74\xff\xfc\x33\x13\xf1\x3f\xff\xb9\x13\x5d\x2b\x48\x1a\x64\x6d\x59\x52\xc1\x67\x4c\x69\x47\xc0\x95\x77\xcc\xad\x85\x97\x65\x85\xad\x04\xd4\x3b\xaa\xa6\x16\x41\x17\x2f\x27\xb8\x5b\x69\x50\x0a\xd3\x16\xc2\xce\x90\xe0\x41\x23\xd3\x82\x65\x28\x05\x81\xba\xdf\x93\x69\x2c\xdf\x50\xdc\xa6\x42\xa9\x54\xf7\xed\x49\x55\xeb\x7d\x69\xc3\x17\xb1\x8e\xb3\xce\x6c\xfa\x83\x1a\xd0\x34\x2d\x3a\x16\x16\xf0\x5a\x24\x03\x78\x1a\x5f\xf8\x3d\x37\xfb\x12\xfb\xca\xdc\xe8\x8c\x6a\x36\x5f\x1f\x5b\x3b\xe8\xf0\x63\xe5\x6b\xb3\x59\x3f\xff\x4c\xb4\xfc\x33\x5d\x26\xf5\x1f\xc9\x3f\x08\x17\x31\x13\x9a\x7c\x87\xed\x58\xa2\x98\xf9\x17\x29\xac\xc6\xd7\x32\x49\xb8\x98\x7f\xf4\x54\xb5\x99\xff\x55\x01\xdf\x92\x7e\xf5\xc4\xd8\x63\xf2\xca\x3b\x2d\x84\xb8\x93\xe1\x16\x58\xf7\x14\x48\xaa\x8b\x0d\x2d\xb7\xe6\x30\x60\xf6\x34\xe0\x7f\x5b\xe6\x75\x31\x17\x52\xaa\x63\x92\x70\x91\x7f\x75\xc8\xb9\xf4\x7a\xb9\x85\x12\xf2\xf3\xcf\x36\x41\xec\x7f\xde\x1d\x90\xff\x5c\x91\xe3\x3f\x54\x5b\x92\xb2\x29\x34\xfe\xcf\x3b\xf2\xcf\x7f\x1e\x93\xc9\x9e\xf9\xf7\xca\xfc\xba\xe7\x0d\xc5\x44\x4c\x2c\x3a\xdd\xf2\xcd\xc7\x30\xf3\x56\x8e\xae\x26\x99\xd1\x32\x61\xd9\x46\x2e\xfc\x67\xe4\x03\xbd\x63\x44\xe5\x99\xbb\x1e\x60\x30\x50\xd1\x82\xc5\x79\x82\x8e\xbe\x34\x49\xf0\xd5\xf1\x7c\x0b\x06\x36\x7d\xc3\x31\xb9\x94\x37\xb6\x71\xf9\x2b\x78\x50\x65\xd4\xe0\x8c\x9c\x57\xb4\xf6\x38\x63\x76\x67\x3d\x0a\x63\x8c\x4b\x8e\x32\x8e\x71\x3f\x34\x8e\x07\xd6\xd3\x22\x63\x16\x08\x23\xea\xfb\x13\xdf\xb1\xf5\x31\x39\xb5\x3d\x4e\xe2\x58\x0a\x75\x55\x8b\x18\x6d\x9e\xdd\x87\xfb\xfc\x2b\x8b\x72\xbd\x15\xd8\x5d\xb6\x7f\x6c\x55\x75\xdb\xbe\xac\x5e\x5e\x1c\xa6\xb2\x57\xcf\xc8\x07\x2e\xf8\x92\xff\x9d\x91\x58\xde\x0b\xcd\x97\x8c\xc4\x39\xa8\x6d\xa8\x3b\xff\x3e\x5b\xea\x0c\xea\xbf\x27\x9a\x25\x89\x4f\x65\xb4\x24\xb1\x84\x7a\x4d\xa0\x4e\x2c\x27\x70\x5d\x26\x7b\xa5\xfb\x4e\xf5\xf0\xc6\x32\x52\x87\x91\x14\x11\x4b\xb5\x3a\x74\x59\x2d\xd5\x21\x48\xfc\xa9\x8c\x0f\x9f\xb9\xc0\x5f\x2e\xc5\x40\xce\x06\xe6\x87\x62\x43\xbc\xdf\xde\x67\x34\x62\x63\x30\x39\xdf\xb0\x48\x8a\x58\x1d\x93\x97\x25\x24\xf6\xf1\x2c\x53\x52\xa3\x0e\xc8\x35\x48\x33\x2e\x33\xae\xd7\xa7\x09\x55\x0a\x51\xf7\xf3\xcf\x64\x78\x4a\xa1\x28\x43\xed\x37\xf2\x8f\xc2\x38\x34\xd9\x43\x2a\x88\xcc\xad\x3b\x48\x93\x3d\xef\x32\x19\x01\xf6\xd4\x11\xfd\xea\xe1\x87\xc7\xa2\x78\x10\xaa\xaf\x85\x79\x0a\xa6\x5c\xd0\xac\x12\xb2\x86\x86\x00\xf3\x5b\xed\x69\x98\xf1\x04\x9c\xc0\xe1\x71\x28\x64\x23\x77\xea\x90\x92\xdb\xf1\x07\x91\xe0\xfe\xa9\xe3\x4b\xf0\x89\xf9\xf9\xe7\xe1\xe9\xe5\x68\x64\xfe\xf0\x29\x81\xfd\xdd\xf0\xe4\xe8\x6b\x7b\x4c\x46\x33\x48\xd2\x0e\xbe\x61\x7e\xc3\x48\x2e\x97\xd4\xbc\x32\x7f\x99\xec\x1d\xca\x54\x1f\x46\x82\x1f\x4e\xb9\x38\xb4\x13\x17\x8c\x25\x7e\x98\x58\xbd\xcb\xe4\xb2\xe2\x1a\xe4\x74\x97\x1f\x68\xea\x98\x04\xff\xf3\x8c\x9c\x40\xf0\xd8\x1f\x3f\xbe\x3d\xbf\xbe\x3c\xbf\x3d\xbf\xf9\x72\x73\x7e\xfd\x69\x74\x7a\xfe\xe5\xa7\xab\x9b\x5b\x40\x4e\xe0\xb7\xf1\xd5\xf5\xad\x35\x42\xc8\x15\xcb\x32\x1e\xc7\x0c\xaf\x39\x7b\x3b\x7e\x47\x96\x55\x74\xe1\x07\x51\xe6\x65\xd0\x72\x3a\xe6\x81\x53\x56\xd4\x7b\xb8\x18\x87\xcd\xec\x5a\x4c\xac\x6a\x4b\x79\x46\x6e\x98\xb6\x71\xe9\xbe\xb2\xad\xe0\xd7\x72\x55\x5a\x85\xac\x78\x5c\x32\x07\xc3\xfa\x60\x9f\x41\xf5\x6f\x39\x2d\xcb\x08\x28\xcd\x68\x4c\xe4\xac\xc2\x1a\xde\x2f\x98\x20\xb9\x32\x37\xdb\x31\xe4\x9e\x4a\xb3\x3a\xac\x3b\x36\xa7\x27\x17\xa3\xd3\xab\x2f\xa7\x97\xa3\x02\xa1\x27\xa7\xa7\x57\x1f\x2f\x6f\xeb\x18\x00\x8f\xc3\x8d\x3d\xc5\x0f\xb8\x60\x87\xf6\xb4\xf8\x71\x4c\xf5\xe2\x18\x2e\xe8\x70\x93\x94\xd5\x57\x7c\x69\xa3\xb6\xdd\x55\xf1\xaf\x81\x61\x77\x41\x58\x6d\x5a\xd0\xe5\xe8\xcb\xe9\xd5\xe5\xbb\x2f\x97\x27\x1f\xce\x83\x6b\x30\xcf\xde\xab\x97\x03\xc0\xe7\xd0\x0c\x0d\xa2\xd3\x5e\x1d\x08\xa7\xea\xac\xdd\x45\x08\x04\x81\x13\xdf\x74\x23\xeb\xd0\x5c\x9e\xdf\x7e\xbe\xba\xfe\x23\x40\x35\x7a\xbf\x0b\x5a\x8b\xeb\xf2\x47\xb6\x6e\xc2\x6e\x85\x0d\xaf\xd8\xbe\xfd\x0f\x3c\x6c\x91\xe0\x5f\xec\x6a\xbe\x84\x9a\x96\xe7\xd6\xbc\xf4\x70\x58\x8b\x88\x1c\xf0\x32\xfb\x41\x21\x23\x6a\x7e\x6a\x58\xb0\x77\x41\x2f\xaf\xce\xce\x9b\x77\xe1\x29\x4e\x92\x01\x26\x74\x7e\xcc\xb6\x7d\xb8\xfd\x48\xec\x6b\xba\xa2\x19\x37\x2c\x5d\xf3\x16\x7d\xb8\xfd\xf8\x2b\xee\xcb\x8a\xe9\xc5\x97\xa5\xce\xeb\xcb\x18\x67\x6c\xc5\x84\xad\xde\x56\xbe\x24\xa0\x3a\x51\x09\x63\xe0\xf6\x33\x93\xa6\x55\xbd\xca\xa3\x5b\xdc\xcd\xc5\xf9\xf9\x46\xa9\xd4\xe2\x16\xa0\x57\x7b\xe5\xe4\xaf\x64\x92\x2f\xd9\x87\x50\xa2\xa8\x01\x59\x9a\xaf\x11\xff\x87\xe6\x88\xf8\xef\x40\x98\xc4\x46\x82\x0f\xa6\x5c\x0c\x62\x9e\x75\x0e\xc6\x74\x04\x83\x09\xa6\x87\x1b\x21\xd7\xe5\x70\x82\xe9\xfa\x70\x8a\x45\x39\x3c\xe2\x52\x68\xf6\xb5\x5e\x4e\x30\xcd\xf8\x8a\x27\x6c\x5e\x75\x17\x25\xe5\x23\x6d\x1e\x71\x0f\xbf\x4b\x4c\x76\x85\x29\xf7\x22\xa6\x14\xcd\xd6\x40\x7b\x90\x1b\x50\x60\xce\x2b\xad\xdd\xe6\x91\x81\xa2\x54\x69\x42\x45\x65\x70\x88\x5d\x9f\xa6\x33\x42\x35\x39\x54\x6b\x75\x38\x53\x87\xf0\xa7\x88\x49\x04\x91\x0f\xaf\xe1\xa7\x2c\x17\x56\xdc\x3c\xc4\xaf\x87\x2e\x25\x98\xa5\xf6\x5c\x73\x9a\x70\x55\x06\x80\x21\x77\x19\x57\x26\x13\x64\x6a\xa4\x52\x36\x9b\xc9\x4c\x93\x19\x55\x0b\x2e\xc5\x01\x02\x21\x24\x99\x51\x9e\x18\x4e\x1c\x1e\xc6\x2c\x93\x99\x3a\x40\x57\x3f\x4d\x62\xae\xb2\x3c\x05\x33\xb8\x17\x67\x26\x5c\xc9\x9f\xfa\x13\xea\xce\xd6\x64\x0f\x30\x35\x98\xa6\xb3\x99\xaa\x9e\xa2\x92\xeb\x30\x42\xc8\x53\xb1\x1d\xde\x5b\x07\xe1\x94\x7b\x03\x83\x1a\xfb\x4f\xb3\xf8\x01\x2e\xbe\xc6\x8a\x6c\x7d\xa4\x71\x8b\xc2\x27\x4f\xad\xd5\x60\xf3\xb7\x67\xe4\x2d\x8f\x79\x86\x16\x5f\x9a\x60\x00\x96\x55\x14\x43\xb9\x23\x10\x7e\x8a\x30\x7b\xc1\xee\x71\x42\x72\xcf\xc8\xd2\x08\x47\xb5\x93\x91\x66\x32\xa5\x36\xcf\xa1\x2c\x28\xf1\xe6\xac\x4a\xe2\xa0\x5c\x13\x99\xeb\x84\xaf\x6c\x58\x46\xf5\x24\x6f\xb0\x3d\xb8\x58\x3b\x07\xe8\x06\x2a\xe0\xb7\xe1\x66\x45\x33\xef\x9c\x86\x71\xb4\xa2\xd9\x20\xcb\xc5\x20\xdc\xe6\x49\x70\xb5\x71\x55\xfe\xa5\x50\xf6\x8c\xc0\x29\x23\x87\x69\x26\xa3\x43\xab\xe3\x96\x4a\xdb\xac\x1c\xb9\xca\x69\x92\xac\x6d\xd4\x2c\x4c\x9c\x66\x72\x9e\xd1\x25\xac\xcd\x9c\x6b\xd3\x71\x48\x46\x7a\xdf\xa7\x32\x00\x83\x50\x28\x31\xac\x0f\xea\x73\x3a\x6a\x60\x9a\x7a\x57\xe4\x00\x7d\xa6\x0d\x3c\x99\x94\xba\xa0\x38\x33\xd5\x80\x49\x2d\x09\xd5\xda\x30\x34\xa7\xb7\x17\x6f\x1d\x68\x46\x86\xc9\xcc\x7a\x93\x7a\xfd\x95\xea\x01\x71\xd0\x87\x8f\x46\xd3\xaf\x19\xa3\xb1\x91\xb0\x37\xd9\xea\x87\xd1\xf4\x28\x2c\x8b\x5d\xe7\x42\xd5\x55\x74\x05\xfb\xe6\xc9\xba\xc0\xc9\xd5\x6a\x9a\x3e\xf3\xba\x14\x38\xa9\x39\xdd\x18\x8a\x9e\xc9\x5c\x63\x3a\x24\x33\xaa\xdf\xdf\x1c\x81\x00\xfd\xf4\xc9\xd9\x37\xa1\x9d\xff\xde\x32\xd8\x47\xc5\xfc\xad\x3d\x19\x8f\x9c\x22\x76\x4a\x23\x23\x11\xc1\xab\x0d\x66\xc9\x06\xe6\xe9\xec\xe4\xf6\xe4\xe6\xf6\xea\xfa\xfc\xcb\xed\x9f\xc7\xcd\xb2\x44\xb9\x84\x4d\x21\xc2\x39\xcf\x32\x3c\x1e\x84\xce\xe7\x99\xcb\x34\x51\xf0\xd6\xa9\xf5\x20\x6a\x00\xe3\xe3\x8d\x41\xf0\xd9\x17\xd3\xa4\x11\x08\xc0\xc8\xc6\xf4\x9f\x29\xd7\x85\xa4\xd9\xb5\xdc\xcf\x27\xa3\xdb\x2f\xef\xae\xae\xbf\x14\xeb\xde\x71\x36\x23\x3d\xec\x2c\x30\x18\x29\xe1\x57\x11\x12\x7a\x19\xbd\x05\x69\xdd\x32\xfa\x99\x14\xfb\x9a\x30\x01\x1c\xe2\xdb\xf7\xe3\x76\xd8\xad\x0c\x3c\xba\x7c\xff\xe5\xed\xc9\xe9\x1f\xcf\x2f\xcf\x1a\xcf\x96\x90\x22\x70\xb6\xac\x81\x08\xeb\x51\x1b\x19\x1c\xf2\x39\xcd\x90\x05\xf7\x92\x68\x98\xdf\x1b\x20\xb9\xf8\x78\x73\x7b\x7e\xdd\x71\x97\x7f\x50\x07\xa8\x56\xdd\x80\x00\xd5\x8f\x07\x86\x31\x56\xa8\x83\x3c\x30\x0f\x29\x3e\xed\xe0\xdf\x41\x32\x36\x70\xf9\x22\x68\x92\x94\x25\x33\x95\xa6\xba\x01\xaa\x77\xe7\x17\xa3\x3f\x7d\x19\x8d\x6f\x4f\xde\x5e\x9c\xdf\x5c\x9f\xbf\xbb\x3e\xbf\xf9\x69\x74\x79\x7b\x7e\xfd\xe9\xe4\xa2\x11\xcc\xa3\x97\x9b\xf0\x5d\x4a\xaf\xa4\x8d\xe5\x1e\x1a\x36\x65\xd4\x2c\x12\x86\xf5\x20\x4e\x23\x3a\x1a\xaf\xbe\x83\xc0\x92\x52\x0d\xe3\x39\xcf\xd4\xbc\xe9\x87\xe0\x1a\x39\x1a\x17\xc5\xc3\xea\x23\x47\x0b\xa9\xcc\x33\x81\x71\xa6\x86\x1f\xa4\x62\xce\x86\x68\xf9\xc4\x88\x56\x57\x25\xc1\xfa\x51\xf8\x3e\x13\x38\xea\x82\xae\x36\xc6\x15\xd2\x6a\xe2\x6d\x9d\x05\x1b\x5f\x3c\x33\x7b\x62\x73\xd5\xfd\xd7\x60\x60\xad\x67\x83\x88\xc7\xd9\x7f\x6d\x5c\xe8\xda\xf9\x1d\x8d\x3f\x7d\x37\xbe\xba\xba\x08\x10\xe1\x67\x15\xbd\xd2\x8f\xaf\x87\xaf\x8e\x7e\x18\xbe\x1c\xbe\x3c\x7c\x75\xb4\x89\xcc\x33\xae\xd0\x47\x92\x27\x8c\x24\x72\x0e\xcb\x54\x92\xfc\x17\x84\x3d\xe8\xc4\x7c\xa7\xfe\x0b\xac\x7e\xf5\xb4\x0f\x35\x88\xce\x46\x37\xe6\xc8\x7c\x79\x37\xba\x38\xff\x72\x71\xf5\xfe\xfd\xe8\x32\xac\x5b\x6a\xa7\xd7\xef\xe0\xe0\x96\x11\xbe\x12\x19\x56\xb7\xe1\x98\x10\xcf\x7c\x7d\x72\x7a\x7a\x3e\xbe\x6d\x80\x09\x4f\xf1\xd9\xf9\xbb\x93\x8f\x17\xb7\xe7\x97\x67\xe3\xab\xd1\xe5\xed\xed\x95\x61\x19\x4e\x4e\x6f\x47\x57\x97\x8d\x90\xe1\xb0\xcd\x88\x1a\x8d\x57\x47\xe6\x88\x95\x2f\x79\x2b\x08\xa3\xf1\xa7\xa3\x9b\x8f\x63\xc3\x8f\xec\xa2\xf5\xf0\x8c\x08\x9e\x05\x1e\xf2\x1c\xa0\xcb\x98\x32\xa8\x82\x19\x2e\xae\xde\x1b\x94\x8f\x4f\x6e\x7f\x42\xf9\x59\x30\xeb\x28\x8c\x1b\x0b\xf8\x74\x3b\xab\x25\xec\x74\x1b\xc4\xde\x78\x3b\x92\xc4\xed\x01\xbe\x39\xff\x74\x7e\x3d\xba\xfd\xf3\xcd\x9f\x6f\x10\x66\x7b\xa9\xe0\xe6\x15\xa1\x30\x62\x26\x5b\x57\xa2\xd6\x2a\x91\xf3\x8e\xb5\x78\x53\xed\x40\x63\xca\x93\xe8\xcd\x37\xd9\xbb\xa7\x99\xe0\x62\xbe\xcd\xd2\x6f\x82\xeb\x3d\xbd\x3e\x3f\xbf\x34\x63\x7d\xc6\x91\x36\x57\xbc\xed\x72\x60\xa4\xc6\x15\x7d\x0e\x03\x5a\x1d\xee\xa7\xf3\x93\x8b\xdb\x9f\xce\x2f\xcd\xb5\x6d\x7e\xfe\xc2\x57\xb5\x6d\xc1\xee\xf1\xb0\x0f\x2b\xc8\x71\xb9\x46\x77\x10\xf3\x0f\xcf\x25\x7d\x46\xc4\x0c\xdf\xa4\x6d\x5e\xa3\xae\x97\xda\x0c\x5e\x05\xf5\xa1\x8a\xb8\x90\x3b\x92\xfb\x1e\x13\x0a\x6c\x70\x2d\x51\x9a\x1f\x93\xd7\xdf\xbf\xac\x64\x87\x4f\xf8\x8c\x45\xeb\x28\xa9\x67\x57\x4d\x33\x76\xa3\x65\xba\x31\x88\x11\x9d\x83\xfa\x5d\x54\x3a\x6d\xfe\x32\x20\x60\xf3\x6a\x10\xdd\x5c\x9b\x81\x5a\xe4\x3a\x96\xf7\xa2\x0a\xdb\x8a\x09\xa6\xd4\x38\x93\xd3\x3a\x7c\x41\x38\x9a\xa0\xe8\x86\x61\x40\x06\x70\x7b\x07\x66\xce\x1a\x26\xaa\x46\xd4\x57\x2f\xab\x3f\x5b\x5d\xe3\x19\x4b\xe8\xba\xb1\x91\x55\x25\xde\x2e\x32\xa6\x16\x32\x89\x8f\xc9\x51\xb5\x81\xe6\x4b\x26\x73\xdd\x30\x80\x91\xf9\x79\x13\x26\x16\x5a\xa7\xef\x59\xfd\xe4\x40\x65\x9c\xc5\x31\x39\x2c\xfa\x6e\xfc\x2e\x33\x7d\x4c\x7e\x7c\xf9\xe3\x8f\xf5\x5f\xcc\x7b\x76\x4c\x12\x19\xd1\x64\x53\x33\xd4\x81\x8e\xf6\x85\xb4\x28\x16\x9f\x41\xd1\x48\x17\xa5\x6b\x28\x8f\xe7\x35\x6f\x44\xd1\x28\x63\xc0\xc1\xd2\x64\xf3\x41\x7b\x42\xcd\x38\xa9\xe8\x58\x8a\x2c\x36\x4d\xb3\x25\x7c\x7a\xb8\x94\x71\x1e\xc8\xa8\x87\xd3\x24\x7c\x3a\x68\x68\xd0\xac\xca\xa9\xcf\x92\xe5\xe2\xf0\x2b\x92\xa1\x61\x22\xa3\xbb\xf0\x54\xb6\xc5\x20\xd4\x62\x87\x25\x3d\x5e\x71\xb9\xe3\x64\x06\x87\x5d\x93\x19\x34\x3e\x68\x32\x1c\x02\xb5\x4e\x6a\x2d\x36\xf4\x69\xa1\x95\x1b\x0a\x41\xe7\x1b\x49\x5b\xf0\x88\x16\xfa\x99\x03\x72\xcf\x40\x6a\xb0\x7a\x1c\xe0\x01\x0a\x0d\xa2\x33\x74\x94\x66\x90\xba\xea\x5a\x49\x50\xd4\x42\x6b\xcc\x1b\x57\x9f\x0e\x72\x59\x6a\x82\xda\x53\x99\x6d\xaa\x13\x71\x71\x68\x4e\x68\x59\x57\x39\x69\x78\x00\x73\x15\x12\x39\x0f\x5d\x85\x8d\xbd\x92\xf3\x42\x09\x5a\xf5\x9b\x20\x2d\x27\x7a\xc3\xb7\x23\xcb\x85\x2a\xc4\x79\x14\xee\x8b\xac\x1c\x58\x45\x74\xb0\x9c\xa3\x6f\x26\x13\x15\xab\x0d\xbc\xd1\x89\x21\x4e\x18\x62\xb9\x51\x72\x74\xe0\xe9\xc9\x4a\xbf\xd6\x12\x46\xcf\xbf\xc3\x88\xad\xd6\xe9\x7a\xb4\x9c\x3f\xda\xde\x42\xac\x9f\x87\x79\x6b\xec\xc4\xb1\xb5\xb5\x0c\x78\x3a\x58\x52\xf5\x37\xf7\x67\x6d\xa1\x65\x0c\x01\x7e\x1e\xce\x15\x6c\xea\xf5\x1c\x3e\xc6\x57\x67\xdf\xcc\xb6\xec\x7c\xfb\x86\x62\x43\xef\x51\x9f\xfe\x66\x7c\x72\xfa\xed\x61\x08\x54\x68\x2e\x38\xb6\x8b\x93\xcb\xcb\xf3\x8b\xb3\x2f\xa3\x77\x3b\x42\xf2\xd4\xce\x05\xa6\xd1\x17\x3e\xdb\x02\xd2\xf1\x97\x0f\x27\x37\xff\xf3\x57\x84\xd5\x9c\xdd\x9c\x65\xb4\xca\x39\x35\x3e\xe7\xbb\xbc\x5e\x5d\x6f\x57\x0b\x7d\x1f\x54\xdd\xcc\x07\xd1\xac\xb6\x02\x1f\x0a\xc3\x12\xf8\x34\xe1\xd0\x35\xc5\x55\x54\xcd\x1f\x2e\xd8\x10\x5d\x5e\x36\x89\x4b\xc3\xab\x6e\x78\x0f\x98\xae\x76\x61\x5b\x78\x85\x41\xe7\x8b\xda\x3e\x68\xd3\x6b\x3d\xe8\x7c\x3c\xbb\xc7\x0d\x3d\xcc\x83\x8e\x0d\x6b\x1f\xb5\xfd\x28\xa0\xfb\xf1\x3b\x9e\xb0\xab\xec\xb4\x12\x5f\x53\xce\xbb\x69\x56\x6e\x9f\xd1\xbe\x7d\xa1\x89\xce\xdc\xbb\xda\x3c\xdb\xc6\xd3\xba\xd5\x64\x1b\x0f\x6d\x6d\x3e\xff\xa4\x2d\x4b\xfb\x67\xc5\xa6\x59\xcb\x12\xe0\x39\x0e\x54\x5d\x28\x1b\x6d\x96\x81\x53\x1b\xb2\x29\xb6\x2f\xa8\xda\xba\xbc\x17\xf6\x0e\x05\xe6\x68\xb8\x8b\x05\x3d\x3a\x0e\xdd\xfe\x30\x0d\x2a\x83\xca\x9d\xff\xd8\xe9\xe5\x28\x64\x16\x0c\xbb\xcc\xb4\xaf\x2c\xe8\x88\x33\x68\x97\x0d\xda\x47\x6c\x90\x39\xca\x55\xd8\x70\x76\x23\xd7\x24\x72\x1e\xda\xa0\x06\x46\x6c\x8b\x9b\xda\xc0\x96\x95\x93\x5b\xdd\x73\xca\xb2\x41\x2a\x63\xf2\x51\xf0\xaf\xe4\x4c\x1a\x79\x8b\xdc\xc8\x5a\xdd\xbd\x76\xae\xb9\x01\x9a\xce\x3b\x45\x36\x89\x96\xc7\x68\x43\x74\x49\x97\x67\xb7\x1f\xa4\x51\x06\xde\xd4\x43\x5b\x1e\x12\xb5\xb1\x6b\x94\x4b\x3d\x0f\x4b\x11\xf1\x72\xc3\x58\x28\x4a\xaf\x12\x95\x78\xb8\x99\xc5\x25\x18\x7e\x62\x83\x54\xbc\x84\xea\xbb\xe4\xb0\x79\x48\x88\x4a\x53\x9e\x1a\x17\x85\x81\xc6\x8d\x4a\xde\x3c\x57\xf0\x08\xea\x50\x52\x48\x13\x9b\x30\x50\x83\xaf\xd0\xa6\x47\x85\xcd\xc2\x98\xb1\x34\xe1\x11\x55\x10\x28\xb2\x6b\x00\x4c\xe3\x22\x55\x19\x0c\x53\x1e\xc3\x6b\x56\xc6\x67\x76\xc5\xa1\x74\xa2\x91\x90\x36\x54\x92\x8e\x50\x96\x96\x61\x1f\x19\xdc\x32\x20\x7c\x46\x86\xb7\x65\x28\x89\xe7\x66\x5f\x0d\x30\xf1\xa2\x81\xfc\xe6\x45\x28\xd0\x11\xc6\xae\x0c\x08\x4b\x14\x6b\x1c\xa5\x24\x2a\x61\xe5\xaa\xd7\xda\xd9\xb3\x1b\x93\x26\x4a\x82\x49\x6a\x13\x06\x0e\x46\x59\x2e\x9a\x82\x5b\xaa\x41\x31\xa5\x5d\xb8\x0f\x8d\xa9\x74\x84\xdd\xb3\x51\x48\xd8\xe6\x31\x61\x32\xad\x77\x61\x23\x70\xe6\xa1\xd1\x24\x66\x96\x5a\xee\xb4\xad\xa2\x4b\x0a\x43\x64\x28\xc0\x24\xe8\xd0\x34\xd8\xee\x96\x93\xaa\x7e\xa0\x6c\xf0\x48\xa7\xa2\x0d\x5d\xe7\xe9\x42\x42\x51\x28\x30\x85\xfb\x17\x43\x4b\x73\x17\x1a\x14\x3d\xd6\x12\xf2\xe5\xf4\xea\xf2\xf6\xfa\xea\xe2\xe2\xfc\xba\xc9\x64\xb4\xa9\xe3\xde\xc9\x45\xe7\x2e\x58\xfa\xed\x29\xf5\xf1\xb9\xca\x50\x27\xbf\x60\xd1\xdd\xa0\x9a\x25\xae\x6c\x36\xa8\xb9\x0b\xfe\xab\xeb\xe2\xbf\x11\x16\xb2\x4e\x2c\x7c\x7b\xfe\x69\x67\x26\xa3\xce\x51\x55\x43\x81\xf1\x79\x36\x34\x75\x2c\x63\x72\x86\xfe\xd4\x5c\x0a\xf2\x36\x8f\xe7\x0c\x5d\xb0\xca\xfb\x07\xdc\x33\xba\xd9\xfd\xa0\x0a\xcf\x96\x93\x5c\x4b\x15\x51\xfb\x3b\x5b\xf1\x48\x1b\x4c\xf8\x8b\x44\x0e\xd6\x63\xa6\xc6\x32\x2e\x27\xc3\xb9\x7e\x7d\xae\x2a\x10\x47\xfb\x44\xec\xd1\xde\xc1\xff\x46\x08\xd9\x43\xf9\x6a\xf5\x66\xf8\xfa\x68\xf8\x6a\x90\x21\xb9\x7e\xbd\x77\x4c\xf6\xcc\xce\x80\x1e\x94\xdc\x5a\x36\xa9\x74\x48\xc3\xef\x6d\xaf\xad\x39\x63\x9b\x4f\xa8\x12\x01\x7e\xea\xa4\x3f\xc2\x55\x51\xc8\x26\x2a\x3c\xfd\xa8\x59\xec\x6c\x00\xa9\x6f\x62\x3b\xad\xef\xb8\x52\x66\x3f\x70\xe3\x6c\x1e\xe5\xe6\x48\xfb\x42\xaa\x6c\xda\xb8\xa2\xdb\x33\x4c\x5a\x66\x80\xb4\x36\x7d\xf4\x07\xd2\xe6\xdb\x2f\xf6\xa5\xfc\xe2\x7c\xf9\x4b\x1f\x03\xe4\x8a\x21\xab\xfe\x8c\x46\xa5\xd0\x8e\xfe\xb3\xe6\x28\x83\x8b\x08\xd4\x94\x8a\x5c\x69\x29\xf8\xca\x66\x6c\x8f\xca\xe4\x55\xcf\x8a\x02\x93\xd3\x84\x8a\xbb\x83\xa2\x08\xaf\x37\x3e\x57\xce\x13\xa8\x54\x9d\x1b\x8a\xbf\xaf\x70\x04\xf7\x60\x82\x07\x25\x8c\xea\xe9\x1a\x31\x86\x19\x95\xdf\x23\x37\xa4\x0b\x67\x7e\x46\x3e\xdb\x92\x3e\x32\x83\x48\x07\xc8\x9c\xeb\x74\x7f\x65\x55\x5a\x49\x62\xa6\xb4\x8d\x35\xc5\x42\x65\xe8\x27\x84\x83\x38\xa6\xc9\x3a\xea\x0d\xf1\x90\xbb\x61\x7c\xa3\x3d\xb6\x2f\x9d\x3e\x4d\xcf\x0f\xb7\x1f\x7d\x7f\x42\x17\x05\x5b\x22\x00\xb3\x01\xe8\x5c\x08\x66\x8d\x81\xcf\xc8\xdb\xb5\x5b\xf6\x01\x0c\xc0\x95\x9f\x5e\xce\x55\xb3\xf5\x2b\x0a\x31\xad\x0b\x97\x29\xac\xc3\x64\xdd\x9e\x6c\x0a\x7e\xe7\x6b\x6f\x27\xf8\xb3\xcc\x51\xd8\x41\x77\x5d\x56\xcf\x5e\x37\x5d\x93\x34\x93\x2b\x1e\x63\xc4\xb0\x90\x62\xf0\x77\x96\x59\xc7\x91\x61\xc9\xaf\x1b\xe0\x1c\xbb\xcd\x67\x44\x30\xfc\xea\xa5\x65\x61\x5c\x68\x93\xdd\xa6\x0f\xb7\x1f\x71\x6f\x2c\x7f\x17\x60\xd4\xfd\x1e\xaf\xbe\xfb\xfe\x65\xad\x75\x73\x64\x9e\x4b\x27\xd4\x14\xa0\x07\xdd\x80\xa7\x43\xd9\xf9\x99\x2b\x36\xe3\x4a\x97\xda\x00\xbf\xa2\x32\x64\xae\xe5\x92\x02\x47\x96\xac\x49\x2a\x6d\xae\x6c\x3c\x80\x1b\x91\x74\xc7\xe4\x1f\x03\x24\x64\x3f\x3b\x7a\x36\xd9\x03\xfb\xc1\x9e\xf5\x2b\x1c\xa4\x32\x1e\xd8\x4e\x5e\xb5\xbb\xc9\x5e\x24\xdc\xdd\xc7\xb6\x2f\x87\x6f\x86\xaf\x2a\x2d\x6c\xd6\x08\xf3\xf3\x5f\xca\xc7\xf3\x67\xff\x1d\x9d\xec\x81\xe7\x23\x0c\x60\x95\x9c\xd5\x8a\x7a\x93\xbd\x44\xce\xbf\x24\x6c\xc5\x12\x6c\x05\xde\x2f\xa1\x36\x33\x9e\xb0\x2f\x29\xd5\x0b\x6c\x17\xd0\xc8\x98\xff\x0d\x13\x39\xdf\xe8\x5e\xb8\x18\x7f\x29\xa1\xf1\xdd\xa3\x6b\xcd\xcd\xbe\x94\x38\xfa\xf2\x25\x14\x3c\xf8\xe5\xcb\x46\xb7\xa5\xce\x4d\x8f\x2f\x5f\x6c\xe8\xde\x97\x2f\xb5\x06\x3c\xa5\x4b\xd3\xe2\xe7\x3a\xf7\xe1\x63\xc9\x50\xac\x01\xb8\x05\x04\x6a\x0f\x4e\xf6\xd0\x9c\x85\x4d\x73\xc5\xc6\x32\x3e\xe5\x71\x56\x75\x77\xf9\x67\x6d\x5e\x7c\x9f\x3b\x67\xbe\xfb\x41\xb5\x8f\xe3\xa3\x2c\x38\x96\x4d\x92\x6c\x5e\x02\x0f\x75\x18\x60\xfa\xc5\xb9\x93\x19\xcc\x55\x66\x29\xff\xf0\x27\x6c\x3c\x46\xa9\xcc\xf4\x92\xa6\x1b\xe8\x57\x82\x02\x5e\x0c\xd1\xab\xfd\x14\xd1\x94\x42\xc2\x19\xee\x40\x87\x51\x3e\x60\x8a\x72\xe5\x7a\xed\x0a\xc9\x94\x8a\xf8\x9e\xc7\xe6\x44\x76\x4f\xe8\x35\xde\x9c\xcd\xfd\xd3\xda\x27\x2d\x41\x79\x57\xf5\xc4\xae\x12\x94\x21\x06\xf5\x40\x96\x7c\x1b\x61\xe4\x4c\xbd\xd5\xb0\x21\xc1\x34\x3c\xcf\xc3\xff\x5b\x99\x67\xfc\x1f\x1b\xe4\xe0\xd2\x5d\x7e\xf7\x68\x21\xe7\x77\x3a\x3a\xbb\x36\x54\xd1\xbb\xf0\x6f\xad\xa5\xb8\xba\xfb\x58\xb1\xae\xe8\x6e\xa1\xb6\x6d\x87\xe6\x37\x3f\x8f\xc7\x3f\x8b\x25\x76\xb1\x3a\x77\x71\x3c\x88\xb2\xd8\x69\xfd\xbe\x5d\x65\xa8\x8d\xf4\x64\xdf\xa0\x3e\xd4\xdb\xf7\xe3\x4a\xc6\x72\xfc\xad\xac\x12\x55\xff\x7d\xb3\x56\x54\x43\x12\xb5\xb2\x62\x54\xbd\xc1\x64\xfb\xba\x51\x76\xcb\x27\xdf\xa6\x68\x54\x7d\x6d\xd5\x8a\x33\xd5\x67\x12\xab\x34\xae\x4d\x1f\xe0\xac\xaa\xfa\x9e\xbe\x68\x54\x5f\x34\xca\xdf\x82\xbe\x68\xd4\x2f\x56\x34\xaa\x7e\x89\x37\x4b\x47\x55\x8b\x24\x9a\x0b\x5c\x7d\xb0\x6a\xfa\x95\xe6\x1a\x51\x54\x5d\x42\x59\xf2\x80\x3f\x45\xed\x42\xdf\x60\x43\x57\x8b\xce\x89\x64\x27\x37\xb6\xb0\x79\x21\x24\x52\xcb\x6c\xff\xe5\x0c\x9b\x04\x5d\x35\x8e\xbe\xfb\xfe\xd5\xeb\xbf\xee\x6f\xfe\x84\x89\x40\x8f\xcd\xed\x7c\xf3\x7a\xf3\x67\x44\xa9\xb9\xba\xf3\xcd\x5a\xea\x53\x2e\xe2\x0f\x32\xae\x2b\xb1\x36\xf1\x6b\xdb\x85\x0a\xbf\x4a\x78\x28\x6c\xe8\xa2\x45\xac\x40\x89\xa8\xa1\xde\x36\xa8\xe9\x6d\xd0\x0d\x53\xe4\xf9\xa5\x14\xec\x05\xe6\xf9\x4c\xd6\x7e\x3a\xd3\x7d\x30\x2e\x49\x01\x0a\xf7\x32\x50\x27\x34\xea\xa5\xc1\xa0\xd9\xf6\xe1\xdb\xf7\xe3\xe1\x68\xbc\xfa\xd3\x89\x8d\xea\x79\x0e\x21\xa1\xe3\x17\x43\x62\xd1\x4b\xa6\x6c\x41\x57\x5c\xe6\xb8\x35\x0e\xfe\xd0\xa8\x81\x25\x6d\xc0\xbf\x63\x9d\x5d\x77\xd9\x42\x67\xab\x86\xf5\xd3\xb2\x29\x92\x24\x57\x77\x0c\x41\xb2\x97\xd6\x1d\x6d\x8a\x79\x25\x37\x1d\xf8\xcc\x87\x66\x53\xae\x33\x9a\xad\x6d\xb9\x6a\x88\xd2\xa3\x18\x36\x80\x41\xb8\x3b\x15\x2a\x0b\x82\xb9\x2e\x6f\x9c\xd2\x54\xc4\x34\x8b\xcd\xa6\x26\x34\x9b\xb3\x3a\xb8\xa1\x41\x09\x2c\xc1\x10\xb7\x40\xe8\x23\x7e\x5a\xee\x25\x7e\x80\x23\x08\xff\x54\xaf\x33\x47\x97\x8c\xcc\xf9\x8a\x09\xd4\x44\x55\xc0\x0b\x4e\x4e\x3a\x2b\xb4\x91\x42\x7f\xbe\x15\x08\x9f\xe0\x69\x81\xec\xc3\x53\xc8\xdd\x83\x57\x99\x4c\xf6\x28\x3d\x16\x62\xb2\x07\x15\xce\xf1\x8f\xe3\xe5\x72\xb2\xd7\x08\x16\x01\xbf\xd4\x02\xeb\xe5\x6a\x72\xc5\xbc\xe1\x70\xfc\x03\x5b\x8d\xc6\x7c\x3f\xd9\x33\x48\x6f\x1e\x76\xb2\x07\x1d\x69\xc6\xc8\xab\x23\x32\xe5\xda\xd2\xae\x21\x4c\x58\xdf\x5a\x6f\x36\x80\xb7\x79\xdc\x10\x24\x07\xc5\x6c\x22\x36\x12\xeb\xd2\x4e\xfc\xe6\x75\x65\xe2\xcf\xa6\x4b\xb0\x62\xb0\x03\x19\x96\x85\x09\x03\x4e\x6e\x08\x52\xe1\xa6\xc1\x53\x96\x0d\x4e\x6e\x5c\x68\x24\x0f\x64\x33\x70\x9f\x94\x6a\xc3\xfe\x1c\x93\xff\xf5\x7c\x32\x89\xff\xc7\x8b\x63\xfc\xcf\x7f\xfe\xa3\xfa\xb7\xfb\xfa\xa1\x27\xa8\xe9\x09\xf4\x7f\x0d\xd4\x00\x24\x84\xcf\x85\xcc\x58\x5c\x28\xf4\x3a\xc9\xcb\xa8\xde\xc1\xa3\xee\x98\x4d\x02\x25\x3b\x4f\xe9\xa6\x17\x34\x58\xc5\xba\xa8\x0c\x32\x65\x84\x7d\x85\x82\x2e\x31\x86\xed\xa2\xb1\x64\x4e\x62\x06\x05\x26\x1e\x40\x6b\x1e\x58\x14\x91\x58\xb2\x3e\x96\x59\xe8\x41\xad\x60\xe2\xa2\x68\xe9\x1e\x6b\xa8\x9f\x8f\x87\xd3\x10\xdb\x34\x93\x5a\x46\x32\x71\x1c\x34\x0e\x1d\x3c\x2a\x67\xae\xa4\xb8\x96\xe4\xd5\xef\x36\x22\x2b\x40\xd5\xcf\x97\xf9\xf2\x98\x1c\x7d\xff\xfd\x9b\xef\x03\xbf\x73\x81\xbf\xbf\xda\xf1\x31\x4f\xe4\xfc\x86\xad\x58\xc6\xf5\xfa\x26\xca\x18\xab\xcb\x1b\x1b\xcb\xde\xbf\xa8\xf7\x70\xcb\x4f\xe4\x9c\x28\xfb\x0b\xa1\x53\xb9\x72\x86\xca\x44\xce\x83\xcf\xaf\xb9\x4a\x50\xfe\xdc\x0a\x10\x4a\xc7\x32\xd7\x1e\x4b\x43\x46\x97\xef\xae\x42\xec\x4b\xdb\xf6\x1a\x1e\xe0\x03\x53\x8b\x0f\xf4\xeb\x35\x83\x80\xd9\x5b\x1e\xa4\xef\xd5\x0a\x9d\x1c\xa3\xd1\xd1\x5c\x64\x5e\x3a\x25\x67\xfa\xde\x80\x98\xe1\x28\xf0\x25\x24\x28\xd4\x72\xb0\x64\x6a\x41\x52\xc6\x0c\x00\xca\xd6\x9e\x0f\x2d\xb1\xa8\x3f\x7f\x80\x5c\x7b\xa1\xfd\xcc\x33\x16\xbb\x34\x09\xf3\x8c\x46\x6c\x96\x27\xc5\x4c\xd6\x94\xd8\x32\xae\xe1\xdc\x2b\x63\x33\xf2\x76\x74\x7d\x56\xf0\x8b\x72\x46\x5e\xbd\x7e\xa9\x9c\xdd\xc4\xc6\xe7\xa2\xba\xda\x66\x4f\xaf\x7f\x80\x8f\x9a\x32\x08\x68\xb4\xec\x94\x1b\x6d\x43\xdc\x75\xfe\x39\x98\x8f\x03\x15\xde\xc1\x2d\x86\x4c\x30\x97\x76\x47\x20\xa3\x12\xc4\xb1\x07\x1e\x8f\x6d\xb6\x74\x4c\x95\xba\x97\x59\x28\x5e\xac\xb2\x99\x57\x36\x7f\x05\x5e\x43\xdb\x09\xf6\x6f\x96\x5b\x67\x8f\xcd\x4d\x0c\x81\x5f\xc5\xda\x83\x50\x14\x3c\xf8\x1e\xd6\x76\x40\x51\x07\x23\xa3\x58\x94\x31\xdd\xe2\xb8\x5d\xc3\x12\x7a\x0d\x19\x16\xf1\x8e\xad\x41\xf8\xb7\x43\xd8\xb0\x12\xcc\x28\x91\xca\x78\x5f\x95\x36\xb0\x86\x97\xae\x93\xc7\x42\x87\xf0\xe6\x07\x78\xa3\x5c\xae\x85\x09\x13\x47\x00\x54\x5a\x5a\xe3\x26\xc8\xbe\x43\x42\x3e\x20\x13\xd4\x3c\x28\x21\xd4\xb0\x56\x3c\x76\x43\xdc\xb1\x7a\x30\x8c\xff\xe9\xe6\xd3\x3a\x78\xc5\x3a\xa9\xf4\xd3\x2b\x66\x6c\xc6\x32\x26\x74\x50\xae\x6e\xcb\xe6\x2a\x57\x2c\x5b\x71\x76\x7f\x68\x73\x57\x0c\xee\xb9\x5e\x0c\xf0\xad\x57\x87\xb0\x31\x87\xcf\xe0\x3f\x6d\x88\xb8\xbd\x3a\xbb\x3a\x26\x27\x71\x4c\x24\x48\x60\xb9\x02\x8a\x03\x67\x5b\x0d\x3d\x7d\xd3\x01\xa8\x3b\x0e\x48\xce\xe3\xff\x23\x40\x79\x77\xc1\x55\x91\x46\x66\x4b\x7c\xdd\x00\x41\x5b\x97\x52\xe2\x82\x91\x1b\xdc\x38\x99\x01\x8f\x6f\x0e\xc5\xb2\x7b\xd7\x51\x17\xd6\xc2\xa1\x22\xf4\x53\x29\x13\x16\x26\x86\xa4\x30\xe3\x35\x00\x0f\x7e\x5a\xe1\x9f\xb6\x61\xc6\xc2\xbf\x9a\x0b\x77\x2b\x1d\x2d\x38\x47\x3a\xd0\xf9\x20\x5f\x86\x7a\x19\x1a\x55\xca\xdb\x05\xd9\x73\x45\x67\x43\x90\x1b\x62\xb9\xac\xd2\x20\xff\x2d\xd6\x59\xce\x9a\xdf\xe2\x06\x5c\xa6\x19\x9b\xf1\xaf\x27\x7e\x65\xb0\x4e\x16\x73\x1c\xe8\x53\x4a\x89\xe0\x89\x0c\x2d\xaa\x05\xc7\x42\x2b\x6a\xd3\xd6\x90\xed\x65\xd5\x00\x40\xe5\x2b\xae\xaa\x60\x78\x94\x30\x7c\x3a\x5c\xaa\x9b\xe2\xf5\x0e\x65\x24\x72\xc8\xeb\x20\xaa\x11\x8f\x43\x2a\xa5\xc0\x12\xa0\x6e\x1a\x58\xc5\x81\x23\x2b\x47\x76\xcc\xe9\x94\x95\xeb\xa8\x67\x33\x29\x3f\xdd\xb7\xbe\x5d\x53\x11\x82\xcc\xd3\x57\x98\x37\x76\x5a\x56\x4a\x67\x1c\x0e\x6f\x29\x2a\x76\x50\x39\x9a\x18\xc1\x61\xed\xae\xbf\x79\xc6\x26\x7b\x86\xa8\xa8\xa1\x37\x0b\x4a\xc8\x5b\xa9\x16\x08\x2a\xc5\x3b\x25\xec\x16\x41\xba\x5d\xe4\x6c\x97\xb0\xdb\x05\xe9\xe6\x91\xbb\x24\xec\x4e\x41\xba\x0d\xe8\x0e\x09\xbb\x53\x8e\xde\x6a\xec\xed\x05\xec\xe6\x2b\x8c\x9f\x6d\xde\xa9\x16\x71\x90\x3c\x46\xb8\xb6\x9e\x3f\xd6\x14\x35\x1a\x77\x52\xbe\x9b\x7a\x07\x40\x06\x24\xc6\x32\xf7\xd7\x56\x9d\x06\xcd\x3f\xde\x63\x3b\x43\x90\xf6\x59\x6f\x37\x37\x8a\x0d\x7e\x05\x35\xff\xcc\x97\x1d\x6c\xce\x2d\xf0\xc6\x28\x48\x80\x99\x34\x7c\x78\x11\x88\x4a\x89\x72\x2a\xd6\x95\xe9\x6c\xea\x1f\xbd\x60\xcb\x87\x13\xdd\x3a\x2e\xde\x42\x85\xf4\xd2\x30\xe2\xc5\x0c\x18\x91\xcd\xd0\x51\xd7\x34\xbc\xcf\x25\x0a\xbf\x01\xb1\xfd\x66\x0a\x1a\xbb\xc3\xe7\x5f\xd1\x8a\xb6\xfd\x21\xf2\x7a\x84\x4f\x91\xcc\xbc\x5c\x3f\x21\x98\xed\x40\xc4\x8d\x64\xf6\x76\xe8\x67\xfa\xab\x37\x28\x32\x50\x59\x39\x29\x28\xfa\x14\x8f\x0c\xe1\xc0\x18\xaf\xb1\xe2\x3a\x1e\x19\x29\x1c\xbf\xac\x98\x05\xf4\xd1\x27\xa8\x84\xae\xf3\x08\x85\x77\xd7\x5b\xff\x6f\xfb\x10\x5d\x48\x1a\xbf\xa5\x89\x91\x4a\x77\xa0\x46\xb5\x5e\x8f\x3c\x4c\xfe\x68\x8d\x07\xca\x16\xb8\xf4\xdb\x0e\x47\x62\xde\x64\xc6\xa9\x9f\xbb\x5f\xe1\x90\x55\x91\xf4\xc0\x83\x56\xc3\xcd\x6f\xf2\xb0\x85\xbb\x6d\x7e\x0b\x3e\x1c\x95\x44\x04\x4a\xcb\x0c\x42\x28\xf0\x2b\x3c\x03\x00\x3e\x8d\x8c\x24\xcc\xe2\xcb\x0d\x1f\x94\x32\xc5\x95\xf3\x29\x71\xdf\x44\x52\xc4\x1c\x23\x90\xc8\x5f\xc0\x09\x09\xdc\xe5\xe2\x4f\xce\x19\x04\xbe\xdd\xd9\x65\xe7\xe9\x1d\x76\xbc\x8a\xbb\x76\x69\xa5\x27\xf6\x60\xce\xc4\xf0\x2e\x9f\xb2\x69\xce\x93\x98\x65\x30\x81\x9b\xfe\x39\x98\xda\x5f\xc0\x62\x6d\x2e\xf1\x5b\xbe\x64\x4a\xd3\x65\x7a\x4c\x44\x9e\x14\x81\x8b\xe0\x48\x33\xe3\x89\x66\xd9\x37\x72\x04\x7a\x07\x83\xe3\x97\x15\x0f\x20\xfc\x21\xe8\xfa\x63\x01\xb2\x9b\xef\xfb\xfc\xcc\x8a\xd1\xbe\x95\x33\x4f\xef\x75\xd3\x7b\xdd\xf8\x5b\xd0\x7b\xdd\xfc\x92\x5e\x37\x48\x14\x36\xdd\x6d\x20\xe9\xa9\x39\xa9\x90\x8b\x12\xa9\x00\x94\xd9\x57\x44\xce\xea\xd8\x75\x1e\x39\x38\xd8\xf6\xae\x38\xec\x6b\x2a\x33\xfd\xe9\xbb\x4e\x83\xd0\x82\x11\x99\xc5\x2c\x43\x5d\x9a\xb9\xa6\x00\x5f\x01\xbf\x85\x8c\x46\x70\xd0\xa4\xb0\x23\x37\x3c\xa7\x36\x69\xb9\x96\x84\x82\xc9\xe1\xe1\x1c\x47\x01\xc0\x75\x9e\xb0\x4f\xdf\x15\x24\x88\x02\x3a\x3c\xac\x19\xe4\x2a\xae\x9a\x20\x22\x25\x57\x02\x0b\x2b\xb9\x0d\xd8\x03\xea\x86\xb2\x99\x49\x51\x6f\xc5\xd5\x23\xd4\x55\x38\xd2\x83\x39\x92\x47\x32\x34\x36\x16\xea\xca\x85\xc0\x3e\x74\x9c\x56\xc5\xf0\xc0\x2e\x32\xfc\x9b\x81\x3f\xfc\x4b\x05\xb4\x27\xe5\xfd\xed\x79\x3f\x7a\xd8\x79\x3f\xfa\x57\x3b\xef\x47\x4f\x74\xde\x8f\xfa\xf3\xbe\xe5\x38\xbf\xb1\xf3\xce\x97\xdf\x8a\xbe\xe3\xc8\xed\xe7\x1d\xf8\x83\x9e\xc2\xf7\x27\x7e\xe3\x97\x6f\x7e\xe2\xbf\x01\x85\xff\x95\x4e\x7c\x4f\xe3\xb7\xef\xfe\x6f\x78\xe2\x7f\x5b\x2a\xa6\x5f\x5d\xc1\x54\x68\x80\xcc\x15\xfd\x46\xfa\x9f\x31\x0b\x6a\x7f\xcc\xd7\x41\xdd\x0f\x80\x12\xd0\xfc\xa4\x76\x9c\x5f\x2b\xc8\xab\xd7\x0b\xf5\x7a\x21\x7f\x0b\x7a\xbd\xd0\x2f\xa9\x17\x32\xe4\x62\x53\x2b\xe4\xb2\x43\x79\xd1\x94\xae\x71\xb1\x7b\x4f\x1f\x89\x65\x98\xa5\xc2\x7f\xc1\xf9\xf0\x35\x30\x39\x8f\x09\xa6\xb2\x5a\xf0\x07\xf0\x6e\x05\xcf\xa4\x08\xd6\x42\xb2\xd5\xc0\xb8\x42\xb7\xd7\x5d\x19\xb2\x07\xbb\xcc\xdf\x31\x96\x5e\x65\x7c\xce\x05\x4d\x2e\xd9\x57\xfd\x53\xa0\xfe\x43\xd0\x41\xd7\x90\x2a\xd3\x19\x70\x2b\xed\x08\x44\xb0\xaf\x7a\x21\x53\xeb\x76\x8b\xf1\x00\xc0\x6a\x86\x80\xf6\x5d\xc8\x91\x59\x34\xe7\xc2\x5c\x53\xcc\xd2\xe1\x32\x86\xf8\xfe\x5a\xe8\x52\x9a\x40\x7a\x0f\xd3\x25\x34\xae\x19\x45\x15\x1e\x73\x39\x3a\x44\x90\xc9\x9e\x01\x8e\x18\xe8\x0c\xdc\xbf\x9f\xec\xf9\xd5\xc7\xbc\x5f\x15\x4b\x66\xbf\x9f\xec\x3d\xb7\xde\xc1\x2f\x42\x53\x58\x27\xdb\x22\xf9\xd9\x14\xf2\xeb\xb8\xa3\x76\x69\xa6\x96\x82\x4c\xf6\xa6\x3c\x8b\x87\xd1\x6c\x1e\x8c\xe4\x69\x75\xbe\x5b\x3e\xb1\x07\xbc\xf5\x47\xf7\x9c\x47\x82\xe7\xe8\xa1\x7e\xee\x35\xa7\xf6\xf0\xd8\x1d\x7e\xee\x4d\x18\x6a\xf6\x2b\xdf\xe6\xe6\x15\xa5\xf5\x8a\x6a\x68\xee\x0d\xb1\xce\x33\x45\x21\x3a\x70\x8a\x6f\x0a\x78\xe1\x8a\x68\x9a\xcd\x99\x76\x35\x8d\xb9\xc2\x6b\x4a\x46\xb3\x02\x6d\x80\x04\xa6\xf1\x69\x16\xb2\x92\xdf\xb1\x61\xd0\x6a\x20\x40\x8d\x06\xd8\xa3\xae\xca\x34\x87\xee\xe4\x59\x97\x9d\x07\xe0\x2c\x90\x6f\x32\x88\x3b\xd7\xae\x70\x7a\xc4\xf9\xc1\xe3\xdd\x32\x32\x90\xfe\xb3\xc0\x04\x17\xf3\x96\xa0\x07\x87\x22\x40\x4f\x71\x49\x90\x4e\xb8\x80\x38\xb6\x4c\x75\xc8\xc7\xbb\x75\x49\xf9\xf2\x04\xed\xf2\x17\x32\xa2\x89\x8b\xc1\xed\x24\xca\x1f\x30\x28\xc7\x45\xe6\xca\x19\x16\x3f\x29\x83\x75\xed\x52\x9d\xfb\xd5\x3d\xf8\x24\x36\x9d\xeb\x93\x1b\x48\x73\x6b\x93\x43\x46\x8c\xaf\x98\xab\x75\x6a\xc3\x37\x32\xb6\x94\x2b\x86\x5b\x9b\x48\x99\x1a\x36\xd9\xbe\xe1\x41\xda\x28\x8a\xd4\x44\xce\x31\x22\xb7\x2e\x11\x74\xaa\x64\x92\x6b\x96\xac\x6d\xe5\x6d\x45\x37\xca\x44\x90\x47\xbe\x6c\xe9\xa3\x83\x35\xdc\x93\xcb\xc5\x5c\x91\x39\x13\x46\x92\x2c\xaf\x4e\x68\xc9\x1d\x7c\x01\xe9\x83\x28\xfa\x20\x8a\x3e\x88\xe2\xbf\x77\x10\x85\xa1\x18\xa3\xf1\x36\xcf\xba\x57\xc5\xd3\x63\xf0\xc9\x4c\x5a\x5a\x3d\x5d\x83\x04\xee\xe8\x53\x2a\xb3\x70\x1c\x2b\x92\x7f\x2d\xb1\xbb\x39\x59\xf0\xa2\x43\x38\xa8\x28\xd2\x39\x40\xd8\xf8\x81\x73\x26\x2f\xdd\xee\x27\x7b\x7f\xc1\x0c\x7f\xa3\xf1\xea\x08\x93\xfc\xfd\xf5\x18\xe6\x0a\x86\x42\x83\xef\x79\xd1\xe1\x3b\xec\x70\x8c\x5f\x40\x2f\xf8\x02\x9d\xbc\x41\xed\x0f\xb0\x54\x16\xe1\x01\xe5\xb8\x8d\xa6\xf7\xa3\x78\x99\x01\x59\x22\x26\x45\x82\x8a\x29\x4b\xa4\xa1\xcb\xc0\x78\x5b\xad\x16\x16\xde\xe5\x7a\xe1\x05\xc7\x86\x89\x2c\x90\xc7\x7a\xcc\x9c\x65\x5f\xee\x99\x65\xb8\xa9\x46\x70\x2d\x66\x77\x7c\xd5\x4d\x97\x07\x33\x2a\xe6\xa9\xd5\x05\xbf\x52\xd9\x59\xe4\x55\x9b\x5e\x20\x9f\x3d\x19\xc3\x49\xac\xa2\x0d\x69\x45\x8d\x5d\xc1\x48\xfc\x6a\x35\xf3\xea\x42\x0c\xbf\x39\x65\xfa\x9e\xd9\xa4\x8e\xc8\x68\x00\xbe\xb1\x08\xa5\x15\x67\x7c\xb8\xa1\xd0\x54\xc1\x85\x87\x77\xd8\x16\x9a\xb5\x33\xf0\x19\x99\x4a\xbd\x20\x4c\xc4\x0a\x39\x33\xc3\x61\xbd\x7d\x3f\x86\x1c\x19\xa6\xa9\xcb\x8f\xd1\xce\xa6\x83\xae\x5d\xa0\x0a\x7e\xeb\xb1\x8f\x36\xc6\x1e\x12\x73\x4d\xc3\xfa\x6a\x58\x66\x99\x15\x25\x92\x4b\xe6\x69\x61\x3c\x34\xec\xab\xca\x44\x6e\x23\x82\x70\xdb\xcd\x9f\x27\x72\x4a\x93\xb2\x7a\xe5\x0c\xcf\x62\x79\x5d\x76\x3c\x89\x99\xd9\x59\x3a\x4d\xd8\xdb\xd0\xe3\x5d\x39\x88\xe6\x6d\xa1\x82\xb0\xaf\x34\xd2\x07\x84\x0f\xd9\x90\x1c\xbe\x79\x7d\x00\x1e\xb1\x3c\xb2\xb5\xcd\xb5\xbc\xa7\x59\x5c\x5c\xcb\x30\x4b\x09\xda\x02\x38\xba\xc8\x24\xda\xbe\xb3\x04\x53\xc4\x0d\xc9\x75\x09\x55\x55\xe1\xd2\x92\x30\xc5\x92\xc9\x39\xd5\xec\x9e\xae\x5d\x30\x91\x81\xc3\x86\xee\xc0\x52\x81\x74\xee\x88\x23\xe4\xd7\xec\x11\xe8\xbc\xae\xf6\x84\x94\x01\x6e\xe6\xc4\x2d\xe4\xfd\x46\x7e\x58\xd4\xed\xb5\xac\xa8\x9b\xcf\xdc\x64\x2a\x8b\x78\xfd\xe6\xd8\xa1\xc9\xde\x47\xc5\x30\x87\xcc\x64\x8f\x2c\x19\x15\xaa\x0a\x5b\xc1\x1a\x1a\x02\x61\x75\x12\x15\x60\x87\x90\xc8\x2e\x50\x8f\x16\x3f\x38\xa4\x4d\xb5\xda\xbc\xe4\x1d\x77\x41\xeb\xe4\xc6\xd6\x10\xeb\x7c\x40\x6f\x2f\x5c\x53\x1b\x2d\x68\x85\x7c\xc0\x5f\x02\x1a\xe4\xdb\xdb\x8b\xa2\x26\x19\x59\xb2\x68\x41\x05\x57\xcb\xd0\x72\x9e\xbf\xbf\xbd\xf9\xf0\xa2\x8c\x4e\xd3\xc8\x54\xcf\xcd\xa1\xd4\x44\xa5\x52\xce\x58\x4c\x52\x0a\x15\x47\xcc\xce\x40\xe2\x0a\x48\x44\x63\x45\xa5\x20\xe5\xb4\xed\xe1\x49\xa2\x44\x2d\x29\x66\x85\x5e\xc0\x15\x4b\x91\x64\x1a\x20\x31\x7f\x0b\x30\x05\x98\x8c\xd5\xa9\xbf\x9b\xc4\x78\xb3\x7b\x85\xd4\xb7\x90\xa9\x22\xcf\x59\x3c\x67\xea\x45\x85\x4a\xa3\xc5\x65\x27\xb9\xe9\xb7\x65\xdc\xfa\xd7\x31\x6f\x25\x32\xba\xa3\x33\x6c\xc3\xbe\x89\x95\xcb\xcc\x70\x82\x33\x58\x9e\xd5\xb3\x75\xf9\x3f\x06\x2c\x5e\x55\xe8\x26\x75\xc3\x97\xf7\x33\x0c\xdd\x9b\xbf\x7a\xf3\x57\x6f\xfe\xfa\xf7\x32\x7f\xf9\x14\x64\x4b\x23\xd8\x26\x45\x2a\x3f\xbb\x5b\xc6\x1a\x1c\x51\xda\xd8\x85\x98\x25\x4c\x77\x67\x28\x38\xc3\x66\x95\x4c\x51\x54\xe3\xc9\xb1\xce\x39\x76\x15\xe6\xdc\x4e\x19\xa6\x7e\x82\x3e\x5d\x59\x59\xfc\x73\x3e\xc3\xb0\xee\x94\x6a\x0e\x99\x8a\xd7\xf8\xee\xcb\x24\x06\xe6\x2d\x61\x54\xb5\x64\xa3\x5a\x72\xa5\xe9\x1d\x13\xc9\x9a\xe8\x8c\x39\xf0\x70\x16\x5a\xce\xf2\x34\x16\x86\x56\x4e\x58\x97\x45\xa7\xb6\xeb\xd3\xa0\x65\x09\xf9\xe6\x0c\x1c\x62\xeb\x5f\x87\x2a\xbf\x00\x24\x3d\x7b\xf2\x04\xec\x89\x35\xb5\x18\xfa\x95\x2d\xbf\x59\x46\x66\x17\x00\x5d\xce\x52\xe7\x53\x36\x5b\x6c\x32\x2b\x01\x58\xeb\x0c\xcb\x66\x93\x5f\x93\x6b\xa9\xa6\x93\xd8\x58\x61\x2d\x37\xb3\x8d\x53\x2f\xcc\xae\xde\x22\xfa\xb4\xcc\x3d\x27\xd4\x73\x42\xbf\x36\x27\xb4\x79\x83\xdb\x12\x33\x63\xd7\x69\x48\x97\xd1\x68\xe2\x6e\x63\x82\x80\xc4\x86\xef\xf8\x26\xa4\x7e\x63\xa7\x16\xb0\x97\xdc\xc0\x66\x9d\x03\x2c\xb3\x53\x40\xd3\xa0\x53\xc8\x72\x21\x5a\x5c\x6f\x1a\x12\x03\xe3\x90\xef\x3f\x8e\xce\x3a\xa1\x2d\x9b\x3a\x58\xe1\xdf\x56\xa7\xd7\x08\xdc\x16\xd3\xdf\x9a\x26\xdb\x4d\x6f\x9a\xba\x4d\xb3\x64\xd1\x4c\xf0\x28\x28\x8a\x62\x28\xd7\x8c\xc6\x9d\x8a\xab\xb3\x4a\xeb\xa2\xb2\x54\x9c\x03\x89\x50\x7c\x2e\x80\xd1\x16\xba\x1c\x97\x2c\xf9\xbc\x52\xa2\xa0\x06\x9b\x84\x6e\x34\xb1\x49\x81\x53\x29\x20\xea\x5f\xe5\xd1\xc2\xf0\x8e\xef\x58\xc2\xbf\x5a\x1d\x72\x61\xf9\xb9\xa7\xdc\xdc\xf2\x99\x6c\x50\xcd\x43\xd1\x5f\x47\xa1\x0a\x48\x76\x75\x01\x5a\xd1\x8c\x53\xd1\x99\xcb\xf4\x13\x36\x23\x31\x8b\x12\x9a\x81\x5e\x95\x47\x0b\xd7\xdb\x3b\xcb\x5e\xb6\x28\xa8\xd4\xba\x13\x3b\xfc\x9b\x64\x1e\xed\x7f\x7e\xa3\x81\xff\x48\xcf\xc0\x1c\x04\x38\xfb\x26\xaa\x31\x3c\x1b\x97\x32\x66\x37\x5e\x29\x42\x8f\xeb\xac\xfd\x1e\xe0\x39\x37\xc0\xdc\x60\x39\x6b\x2d\x7a\x35\x99\x85\xb2\x67\x0e\x7b\xe6\xf0\xdf\x88\x39\xac\x91\x92\xed\x34\x65\x61\x02\x55\x7e\x1e\xa0\x2c\x4b\xa8\x52\x5b\x14\x63\xc0\x66\xe5\xbb\xea\xf8\x1d\xe0\x5d\x3d\xd1\x13\x0a\x26\x4a\xc1\x1b\x9c\x3c\x8b\x40\x35\xcf\xd1\x02\xaf\x25\xf8\x15\x62\x02\x26\x74\x02\xe0\x2b\x97\x3f\xc9\x9c\xc8\xe6\xf0\x3d\x3a\x95\xb9\x26\x11\xcb\x0c\xea\xcc\x69\x83\x84\xa1\x55\xa8\x7e\x19\xff\xf1\x07\x7b\xe1\x72\x8b\xd0\xa0\x13\xee\x2c\x8c\x49\x68\x64\xf3\x4b\xed\xc6\x65\xe2\x8d\x1b\x57\x8a\xe8\x76\x40\xfd\x71\xb3\x4b\x91\x2b\x1e\xbe\x24\x54\x5b\x56\xab\xeb\x88\x9a\x4f\xc9\x7c\x15\xb7\x1f\xeb\xa7\x93\x97\x50\x5a\x13\x6b\x8f\x6e\x0c\x45\x32\x36\xcb\x98\x5a\x04\x75\xa9\xce\x87\x15\x47\x74\x60\x71\x05\x59\xb2\x62\xfa\xb4\x4e\xa1\x8d\xb7\xbe\xe4\xe7\x1a\x30\xb9\x71\xef\x71\x65\xfe\x03\x2a\xa7\xc8\x37\xa2\xda\xb2\xe4\x59\xcb\x4e\x1b\x6b\xb9\x94\xe8\xd9\x88\x57\x50\x30\x16\x33\xf4\x3c\xb5\x17\x48\x71\x73\x92\x38\xb8\x7e\x58\x94\x93\xe9\xda\x8e\xbb\x43\xcc\xc9\x9c\x75\xb3\xe0\x27\xa6\x11\x59\xc8\x24\x56\xd8\xc1\x01\xe1\x95\xb6\xd9\xdd\x9d\x75\xca\xb3\x38\x18\x0b\xbf\x31\xff\xdb\xd1\xf5\xd9\xa7\xef\xfc\xa4\x65\x25\x7f\x50\xc5\x6d\x0e\x64\xc2\x8c\xfc\xdd\xc3\x1d\x59\x13\xaa\xf4\x5b\x29\x9b\x22\x13\x82\x20\x5e\x78\x7d\x2c\xa6\x0a\x65\x00\x78\x5f\x7b\xbf\x37\x0f\x49\xf0\x19\xc6\xb0\x0a\x9d\x10\x99\xeb\x34\x0f\xb9\xf4\xb8\xcf\x36\x5e\x9a\x66\xea\x6b\x56\xc9\x37\xbc\xeb\xca\x02\xdd\x9b\x16\xe9\x9a\xfe\x0a\x0b\x05\x2f\xa2\x2c\xa8\x6d\x08\xae\xec\x1a\xda\x93\xd1\x59\x51\xb8\x0a\xe0\x79\x1c\x10\x4d\x26\x92\x20\x04\x50\x8d\xd6\x91\x04\x97\x35\xe8\x8c\xb2\x65\xf0\x7d\xdb\x05\x8c\x55\xa3\x9a\x28\x08\xc8\xa7\x52\x33\xe4\xc0\x88\x01\x8c\xc7\x40\xd1\xee\x27\x6b\x09\x40\x28\x35\xc0\x06\x78\x40\x00\x8e\x76\x23\x00\x47\x3d\x01\xf0\x96\xd3\x13\x80\xc0\xca\x7a\x02\xf0\x6b\x12\x80\xb6\x5f\xa7\xf3\xce\x38\x4d\x03\x22\x1e\x41\xe0\x9b\xcd\x9f\x8d\xbc\x73\xc7\x9d\x47\x77\xb9\x73\xa5\xe9\x34\xe1\x6a\xc1\xb6\x64\x4b\xcc\xe6\x69\xa9\x69\xe2\xf9\xdb\x81\xcf\x32\x2b\x47\x32\x2b\x21\x8a\x29\xd4\xc7\xb5\xa1\xa9\x21\x54\x29\x0c\xdf\x56\x54\xb3\x01\xbe\xa3\x6f\x04\xdf\xa5\xd4\x4f\x87\x42\x21\xc5\xe0\x17\x01\xf3\x71\x98\xfc\x16\x60\x82\x67\xe6\x76\xe8\x1b\x63\x53\xff\x61\x74\x89\xa2\x70\x98\xed\x18\x75\xd2\x99\xac\xbe\x41\xe0\x01\xdf\xe3\xaa\x8a\xa3\x78\x83\x0b\x18\x9a\x29\x48\x37\x54\x5b\x3d\xd7\x2d\x71\x35\x0d\x2b\x68\x88\xae\xb9\x5f\x48\xc5\x4a\x15\x3c\xb9\x67\x84\x86\x4d\x20\xe5\xa7\x50\x64\xb4\xd0\xeb\xed\x28\x36\x41\x99\x6e\xfb\x55\xdc\x70\x8c\xe8\x2d\x9e\x90\x8c\x64\x8c\x2a\x29\xe0\x1d\x26\xd1\x82\x8a\x79\x4b\xc1\x8c\x1d\xe0\xea\x78\xd2\xea\x70\x01\x34\x56\x99\x00\x74\x19\x6f\x04\x8e\xf3\x04\xf0\xe8\xb0\x4d\xaf\x01\x1c\x30\xeb\x05\xea\xbc\x16\xe1\x43\x95\x80\xf0\xf6\xdd\x5e\x71\x5a\x1c\xd9\x81\x96\x03\x78\x7a\x96\x4c\x2d\x0e\x0c\xf6\xcd\xaf\x0c\xdc\xb7\x13\x1e\x71\xed\x82\x35\xda\xea\x61\x10\x38\xbd\xd9\xc0\xbd\x61\x70\xa3\xac\xca\xfc\xb1\x88\xea\xe2\xbf\x3b\xab\x4b\x20\x25\xda\x8a\x42\x22\x25\x3a\xaa\x51\xa2\xa3\x9e\x12\x75\xac\xa0\xa7\x44\xbb\xc1\xd5\x53\x22\xfb\xf9\x77\xa2\x44\x2d\xa1\xba\x83\x10\xf3\xbe\x5d\xb3\xa3\xe6\x66\x75\x56\x76\xeb\x96\x81\x31\xdb\xd6\x6e\x6e\x07\x2a\xe2\x3b\x1d\x95\x2f\xca\xa6\x68\x1a\xd4\xce\xae\xbe\x69\x17\x04\x7d\x48\x06\x2d\x42\xd8\x86\xbc\x35\x1b\x9a\x78\x6b\x2a\x84\x0b\x5b\x5a\xf0\x40\xbf\x5c\x4c\xd0\x98\x24\xe2\xfa\xdd\xe9\x9b\x37\x6f\x7e\x04\xfd\x3b\x56\xbd\x86\x54\x1e\x1f\x6f\x4f\x5b\x94\xf4\x66\x8e\x41\x18\x48\x91\x27\x09\x9d\x26\xcc\x77\xb4\xd8\x44\x6a\x43\x48\x23\xe4\xa5\xe8\xc2\xe7\x35\xa6\x88\x44\xa2\xa9\x5c\xc6\x48\x30\xd6\x3b\x03\xb4\xb5\xdd\xb4\xcb\xc2\x8f\x52\x81\xe3\xac\xdb\xf1\xfa\xd7\xb6\xed\x06\xb3\x6f\x41\xff\x46\x0f\x2b\x4c\xdb\xf6\xb2\x36\x27\x40\xda\x06\x41\x5b\xa1\xa9\x00\x50\x73\x41\x5b\x73\x5a\x6e\x2c\xe4\xac\xec\x54\x24\x6a\x30\x00\x3f\x01\xed\xb7\x91\xa6\xdb\xc3\xf2\xde\x86\xa6\xba\xb8\x4e\x6f\x41\x4f\x00\x4e\x51\xd5\x7a\x07\xe6\xc3\x75\x09\x81\xf4\x78\x88\x12\x46\x33\xc1\xe2\x77\x99\x5c\x6e\x0f\xd3\x45\xd9\xa9\x3c\x75\xbe\x35\x3a\x63\x73\x9a\xc5\xad\x13\x13\x24\x72\x99\xcd\xde\x83\xd1\xc5\x36\x89\x57\x53\xe0\x86\xfb\x6c\x75\x14\xc9\x76\x9c\xde\xc6\xe2\x46\x33\x1b\x03\x8b\x9c\x80\x2a\x6b\xeb\xca\xcc\xbd\xb9\x07\xa4\xa9\x4a\x98\xff\xa9\x31\x8d\xa8\xf9\xb4\xd9\x8b\x98\xd0\x24\x57\xde\xda\x5b\x17\x4c\xb6\xde\x4f\x52\xc4\x42\x37\x38\x55\xb6\xac\xfc\xd6\x73\xa4\xb4\xfe\x2a\xb8\x43\xd4\x6e\x0f\x57\xee\xbc\x74\x2f\x1e\xd2\xc3\x3c\xd5\x9a\xba\x79\x13\xf2\x58\x46\x8f\x7b\x9b\x54\x86\x11\x81\xce\xb9\xc1\x15\xc0\x5b\xab\xcc\xee\xf1\xbc\x13\xa8\xf1\xfd\xab\x33\x63\xc5\xab\xb5\x95\x5c\x68\x5f\xad\x4d\xc1\xb0\x7f\xb5\x5a\x16\xd2\xbf\x5a\x2d\x00\xf5\xaf\xd6\xe6\xa7\x7f\xb5\xfa\x57\xab\xa9\x55\xff\x6a\xb5\x76\xff\x4d\x7a\xfe\x7f\xab\x60\xd0\x19\x4b\xf8\xd7\x8a\xa9\xff\x5b\x38\xe5\x43\xd0\x49\x25\xbd\x16\xfe\x5a\xba\xe5\x6f\xb6\xd8\x74\xcc\x0f\xc0\x6a\xf7\xa5\xf0\xcc\xdf\x6c\x32\xf9\x57\x09\x06\xc5\xc0\x9b\xca\x12\x6b\xd1\xa0\x95\x9f\xcc\x53\x07\x5d\xfa\x40\xd0\xde\xd7\xbf\xf7\xf5\xff\xb5\x7d\xfd\x37\xe9\x53\x5b\x20\xa8\xf9\x0b\xef\x7b\xe5\x52\xef\xe0\xa5\x9b\x24\xf2\x7e\x34\x1e\x8d\xc7\x98\x35\xca\xf0\x99\x9f\x65\x76\x97\x48\xda\xed\xe9\xbd\x7f\xd2\xd6\xdb\x45\x76\x95\xe6\x08\x80\x34\xa8\x37\xc6\x32\xec\xb1\xe1\x7e\xf2\x04\x12\x72\xc7\x99\x4c\x89\x19\x9a\x30\x11\xd1\x54\xe5\x09\x28\xa8\x75\x46\x67\x33\x1e\xd9\x72\xf0\x6e\xaa\xd0\x98\x7f\xb1\xe9\xca\x2c\xf9\xfd\x6b\x20\x23\x69\x6b\x10\x21\x60\xe6\xd3\x9f\x2e\x4e\x2e\x1f\x8e\x9a\xc6\xee\x4f\x80\x1b\x18\xfb\x57\x43\xce\xbd\xba\xc9\xa2\x33\xa5\x4f\x17\x2c\xba\xeb\x44\xc6\x0d\xd3\x96\xcb\x1d\x78\x12\xd5\x20\x32\x9d\x8d\x40\x7c\xf2\xf9\x86\x9c\x9f\xbe\x2e\xe2\x18\xd4\x90\x9c\x58\x46\x27\x04\x3d\x12\x32\x97\x4d\xd2\x56\xb6\x9e\xec\x9d\xc9\x4b\xa9\x17\xe6\x7a\xee\x1d\x90\xc9\xde\x39\xe4\x67\x9b\xec\x61\xf2\xd0\x33\x8c\x13\x98\xec\x0d\xcb\xc5\x87\xc6\x2e\x06\x09\xe1\x84\x89\x3c\x24\xba\x0d\xca\x5e\xa1\x1f\x2d\x20\xa1\x6e\x16\xa8\x9d\xac\x10\xd3\x74\x76\x2a\x85\x60\x11\x78\x7c\x96\xe5\xb3\xb9\x98\xe3\x4c\x9d\x16\x9f\xfd\xb7\xe3\x77\x1d\x43\xa0\x29\x87\x0b\xf2\x76\xfc\x8e\x2c\x65\xcc\x82\xa9\x23\xc3\xa7\x18\xb7\x31\x49\x0a\x6e\xc3\x4c\x64\xf6\x5b\xf3\x25\x23\xe6\x4c\x92\xa9\x2b\x70\xde\x98\xec\xd2\x76\x0b\xf4\x41\xbb\x11\xda\xed\x0a\x41\x7d\x21\x15\xc4\x84\x4c\x19\x81\x70\x10\x2d\x83\xfa\x25\x46\xa3\x85\x5f\x7b\xdd\xd6\x88\x57\x68\x59\xd2\x84\x2f\xd3\x0c\xb2\x8d\xdb\x68\x15\x10\xb3\x45\x04\x07\x2c\x95\xf1\x40\xcb\x81\xed\xd2\x02\x33\xbc\x25\x04\xab\x57\x88\x64\xed\x0c\xd6\x5e\xb0\x0a\x06\x57\x18\xd8\x63\x36\xcd\xe7\x73\xf3\x14\xa7\x79\x96\x4a\x65\x8e\x7e\xfb\x01\x35\x22\xc1\xce\xf7\x75\x9a\xce\xce\x6e\xae\xaf\x52\x2d\x73\x7d\x3a\x3a\xbb\xee\xa4\x5f\x6f\xc7\xef\xaa\x1d\x90\x93\x30\x7c\x34\x04\x99\xc0\x57\x18\xc4\x43\x33\x46\xd8\xd7\x28\xc9\xe3\xf0\x6d\x05\x6a\x74\x76\x73\x3d\x24\xb7\x98\x50\xf4\xc0\x32\x04\x36\x27\xbf\x54\xcc\x8d\x07\xa4\x0e\x62\xc0\x19\x3a\x5f\x82\x09\x2d\x34\x28\x05\x29\xf2\xed\xf8\xdd\xf9\x57\xe4\xe4\x6c\x49\xfa\x0f\x90\x8c\x97\x42\x3e\x5a\x83\xf1\xdb\x5c\x08\x96\xfc\x32\x21\x5d\x06\xc9\x54\xd3\xd1\x8c\x46\x6c\x4c\xb5\x81\x6b\x1b\x34\xd7\xba\x20\xa2\x33\x06\x82\x06\x61\x5f\x0d\xcf\x05\xbc\x34\x28\x33\xdc\x8d\x0b\xbe\x14\xb0\x1d\x85\xde\xcb\x85\xe0\x5b\x56\x99\x6a\x6d\x0e\xbf\xb9\xcf\x69\x26\xe7\x19\x5d\x02\x8f\xcc\x45\x91\x34\x35\x78\xa4\xa9\x8e\x16\xc5\xc3\xa2\xe5\x61\xc1\xe1\x09\xa6\xcd\x13\x33\xb4\x99\xa9\x04\x63\x31\x0c\xb8\xc4\x1e\x0b\xe6\x41\x12\x44\xb3\x59\x8e\x35\x84\xba\xb7\xaa\x7c\xc1\x20\xbe\x4f\xae\x58\x66\x76\xfa\x9e\x99\x73\x61\x2e\xe9\x7a\x9b\x41\x17\x54\xc4\xe6\x92\x89\x48\x2e\x81\xc9\x2d\xa0\x2f\xcf\x94\x4d\x20\x6c\x6f\x3f\x2c\x4a\xe6\x5a\xf1\x7a\x3e\x28\x37\x6c\x99\x55\x83\x90\x51\x91\xce\xc0\xb0\xaa\xe5\x7a\x8b\x55\x78\x5b\xf0\x3c\x57\x39\x4d\x92\xa0\xb6\xdb\x08\x7b\x31\x04\x37\x0e\x87\xc3\x17\x3b\x06\xe6\x99\xc3\x86\xd4\xe4\xa3\x48\x33\xbe\xe2\x09\x9b\x6f\x47\xf9\x03\xdd\x0e\xcc\x65\xc2\x7c\xa6\xf1\x81\x3b\x36\xcc\x06\x43\xdc\x19\x62\x99\x0c\x73\xaf\xfd\x97\x69\x3a\xfb\x62\x89\x59\xf0\xce\xab\xb5\x8a\x74\xe2\x93\x3c\xbf\x3b\x64\xba\x96\x70\x7d\xdd\xf1\x61\x42\xd9\x32\x35\x54\x57\xda\x86\x46\xcf\x95\x11\x3d\x22\x14\x15\x90\x5e\xd8\x93\xb4\xbf\xaf\xf0\xc5\xa2\x29\x6e\xb1\x6d\xc4\x85\x32\x62\xa2\x5e\x30\x9e\x11\x79\x1f\x54\xe6\x6e\xde\x0c\xb3\x8b\x2c\xb3\xc9\xbd\x8b\x09\x3c\x06\xe2\xc1\xc4\x78\x87\x87\xfa\xdc\x6d\x4b\xb9\x45\x76\x87\x80\x5c\xba\x2a\x3d\x06\x7a\x23\x86\xa4\x09\x15\x61\x05\xe7\x63\x79\x3e\x00\x7b\x26\xb3\x88\x5d\x8f\xdf\x6d\x07\xb9\x6b\x4d\x18\xfe\x13\xce\x72\xa4\x89\xf9\x4a\x0a\x28\xce\xe2\xdd\x15\x83\xe6\xce\x8d\x41\x75\x77\x62\x75\xbd\xf7\x36\x45\xb5\x7d\xae\x07\xde\x68\x32\xb3\xbe\x49\xc1\xf3\x89\x95\x92\x86\x64\x2c\x95\xe2\xe6\x7c\x5a\x99\xca\x3c\x66\xf6\x82\xc4\x07\xe4\x06\xc1\x95\x19\xb9\x90\xd2\x48\x9f\x25\x0e\xe1\x8b\x66\x1c\x36\x5e\xda\xf3\xaf\xfa\x56\xda\xc7\xca\xf0\x60\x4b\x9a\x75\xf3\xcf\xf8\xce\x6d\xf4\xab\xf0\x67\xee\x69\x20\x94\xbc\x79\x3d\xe5\xe1\x74\x7f\xa6\x93\x4b\xeb\x0d\x15\xb5\x84\xcf\xb4\xd8\xb2\xa6\x82\x30\xfb\xa8\xda\x87\x1a\xd3\xdd\x43\xf6\xf5\x30\x32\x01\x2a\x5b\xaf\x05\xe6\xb0\x01\xda\xb9\xcb\xff\x0c\x80\x2d\xe4\x7d\x91\x9c\x58\xce\x8a\xf7\xcc\xce\x1e\x7c\xe5\x33\xab\x25\x8e\xe1\x70\xd8\xe2\x22\xc0\xeb\xb9\xdc\xd7\x56\xa7\x0f\xc9\xd6\xcd\xe6\xa7\x99\xab\x34\x74\x3d\x7e\x17\x7c\xd1\x8c\xd0\xe1\xef\xe4\xcb\xe6\x5d\x6c\xf0\xa5\xc7\x6d\xac\xb3\x1d\x5b\xee\xe2\x06\xb7\x12\xda\x44\x05\x6b\xf3\xb6\xa6\x91\xb1\xb2\xaf\x56\x25\xcd\x1b\x94\x3b\xb1\x4f\xdb\x73\x5b\x8a\xc5\xbd\x79\xae\xcd\x68\xac\x82\x05\xba\x0c\xca\xad\x8e\xdd\x48\x94\xd2\x65\x95\x2f\xc4\x49\xf3\x00\xce\x1c\x7b\x35\xd9\x43\x06\x6b\xb2\x87\x55\x0c\xa6\x32\x7c\x85\xad\x8e\x07\x20\xc8\x98\x4a\xa5\x30\x64\xcb\xbe\xcb\xe6\xfe\xc2\x28\x38\x61\x2d\x95\x3d\xcc\xd7\x70\x87\x11\x84\xb3\x9b\x6b\x23\xf1\x61\x3f\x9c\x27\x34\xf4\x34\xd7\xb6\x4d\x75\xfe\xd0\xd8\x70\x3d\x84\x26\x31\xcf\x58\xa4\x93\x75\x30\xc9\xbe\x81\x4c\xb8\xf9\xed\xfe\x95\x4d\x82\x2f\x3e\x94\x2e\x48\x53\x46\x33\xe5\x97\x58\x1b\x8d\x9d\x32\x87\x8b\x39\xd8\xb1\x4c\xcb\xdf\x3b\xf5\x28\xc8\x3a\x8a\xd0\xd0\x90\x29\xcb\x96\x5c\x29\xbe\x62\xe4\xe2\xb5\xc7\x94\x95\xe7\x1b\x77\xe8\x01\xa4\xea\x27\xa9\xb4\x21\x35\x3a\xa3\xd1\xdd\xdb\x75\x4a\xbb\x73\xd4\x9b\x33\x1e\xe8\x46\x4e\xeb\x82\xa2\x11\xd5\xf0\xa7\x0b\x2e\xf2\xa0\xe2\x23\x72\x63\xf8\x37\x04\x84\xa6\xe2\x2c\x56\xb8\xb8\xfa\xbb\x1c\x1a\x73\x50\x99\xb5\x9c\xe2\x21\x8f\xa1\x11\x23\xc7\x99\xfc\xba\x3e\xb7\xba\xce\x9b\xc4\x80\xb1\xe5\xd3\xfe\x76\xfc\xae\x7d\x80\x30\x5d\x08\xf3\xfd\x9e\xf0\xbd\xaf\x08\x5b\x4e\x59\x6c\x6e\xef\x5d\x3e\x65\x83\xd4\xcc\x60\xed\x46\x8a\x54\xa7\x6a\x36\xa1\x6d\xbd\xf8\x51\xaa\x21\x0d\xfe\xa9\x69\x98\xa7\x3b\x30\x36\x1d\x43\x54\x18\x1e\xc4\x45\xf0\x49\x03\xf4\x78\x0c\x51\x9a\x49\xcc\xd2\x95\xac\x49\x64\x46\x24\x39\xd6\x5a\xcc\x53\xa5\x33\x46\x97\xbe\xfc\x5f\x62\x68\x7f\x3f\x5c\xd9\xc4\xc2\x46\xa2\x05\xe5\x20\xd6\xdf\x54\x8b\x8b\x15\x10\xce\x7c\x74\xdb\xaa\x19\x36\xbb\xdd\xb7\x12\xe9\x0b\x0c\x7e\xe0\xe2\x66\x2d\x22\xcc\xb9\xb1\x13\xee\x2b\x3d\x0f\x1a\xde\x22\x1d\x56\xd1\x2c\xb9\x80\x2c\x1a\xa0\xa2\x71\x15\x00\x50\x6d\x5f\x98\x5f\x0a\x96\xb4\xb4\x33\xed\x7b\x47\x34\x34\x6c\x89\xc6\x21\x21\x17\xf2\x9e\x65\x8e\x39\x9b\x1b\x2a\x97\xb1\x38\x8f\xb0\x20\xe8\x20\x4f\xc1\xbe\x23\x22\xd3\xf4\x27\x3e\x5f\x14\x6d\xc3\x8f\x90\xe9\xe9\xec\x63\xe3\x8f\x24\x57\x74\xce\x20\x38\xd7\xc8\x70\x60\x83\x4e\xc9\x52\x66\xf8\xda\x55\x88\xe8\x2b\xf5\x00\x02\x7a\xf1\x66\x47\x5d\x40\xb5\x43\xbb\x26\x00\x59\xac\xe0\x71\x92\xa8\xa7\xc1\x97\x8f\xc4\x0c\x39\x81\x84\xdf\x19\x51\xc6\x8c\x47\xb3\x18\x7c\xf9\xbf\x26\x54\x90\xe7\x7c\xc8\x86\x07\xe4\xe2\x8d\x6b\xd9\x54\xb8\x93\xc6\x36\x66\x44\xcb\x90\xe2\xc2\xd3\xef\xd8\x99\x3d\x6e\x5c\xc8\x20\x43\x0a\xa9\xdc\xfc\xfc\x22\x07\xbb\xea\x05\x1a\x94\x43\x55\x55\xc1\x6e\x7a\x81\x16\x1e\x57\x35\x32\x5d\xbb\x8b\xef\x17\x72\x7e\xc1\x56\x2c\x54\xe3\x6c\xe3\xbe\xba\xb6\x95\x3b\x49\x12\x39\x27\x09\x7c\xed\x82\xab\x3d\x49\xa9\xe1\xa5\x28\x94\xba\xe5\xcd\x5c\x22\x2f\x73\xe5\xf4\xe8\x57\xb3\x19\x6a\xd0\x47\x62\x26\xcd\xbf\x50\x81\xce\xa6\xf9\x7c\xb2\xd7\xac\xb1\x4d\xe4\x1c\xe5\x27\xb6\xe4\x5a\x97\xbc\x9c\x99\xcc\x3c\xb2\x8c\xa4\x3c\x65\x07\x2e\xc9\xa3\x11\xba\x40\xb0\x46\x25\xf1\x72\xd9\x80\xf9\xc9\x9e\x8e\x08\xfb\xca\x22\x83\x33\xd4\x97\x56\x94\xf8\xe4\x6a\x36\xfb\xeb\x70\xf7\xcb\xf9\x81\xa6\x37\xfc\xef\xac\xe0\x54\xb6\xd9\x86\x7a\x9f\x52\x49\xa2\xf8\xdf\x4b\xaf\xb1\x82\xad\x08\xcb\x60\xa9\x53\x7a\x2c\x69\x5a\x58\x31\x12\x9a\xcd\xcd\x6b\x22\xf3\xf9\xc2\x60\x6e\x21\x13\x2c\x8a\x24\x74\x86\x2e\x72\xa0\xbb\xc6\xa7\xad\x5d\xf9\x3c\x24\xe4\x33\xcd\xcc\xc3\x73\x8c\x01\x52\x45\xf4\x86\x01\xd2\xe5\x1c\x2d\xd6\x60\xa0\x88\xc2\xb5\xec\x22\x6a\x38\xd4\x98\xab\x2c\x07\x2c\x34\xa3\xb9\x59\x52\xb2\x38\x1b\x8d\x6f\x98\xde\x46\xed\x5c\x69\x1f\x40\x30\x4f\xe1\x3b\x87\x46\xd6\xe0\x1e\xe6\x1a\xed\x8a\x60\x67\xb8\x0e\x6f\x9d\xb6\x75\x9e\x08\x5b\xb1\x6c\x6d\x93\x8f\x19\xa0\x84\xe7\xc9\x75\xe8\xd9\xb8\x6c\x1f\x50\x75\x5b\xe6\x3c\xc8\xc5\xcb\x84\xc3\x23\xe6\x6a\xb2\x95\x79\x54\x27\x7b\x34\x49\x9e\xbf\x98\xec\x41\xb5\xa9\x8c\x29\xa8\xce\x25\xec\x7a\x5c\xc9\x55\x19\x14\x91\xcc\xda\xb8\x11\x02\xa5\x60\x76\xa1\x29\xcb\x4a\xe3\x3c\x77\x5a\x65\xaa\x58\xb3\x02\xb2\x7b\x6f\x67\x37\x0d\xd1\x73\x4d\x9b\x8b\x1d\x42\xbb\x3b\xc3\x38\xbf\x62\x7b\x83\x6f\x51\xd9\x68\xd7\xed\xc5\x27\x2e\x34\xe8\x73\x50\x2b\xfc\x8f\x52\xb8\x78\x01\x2a\x2a\xd0\x36\x3c\x1c\x35\x97\x27\xb7\xae\x58\x45\x00\x3d\xdb\x0f\xf2\x96\x46\x77\x6c\xc3\xe1\xa3\x05\xc5\x65\x9f\x00\x96\x05\xd5\x64\x6a\xee\x3e\x03\xbf\x97\xb4\xb9\xe0\x84\xd5\xad\xd5\x53\x14\xb8\x13\xe4\x8a\xf4\x1a\x62\x26\x95\x11\x94\x81\x7d\xd2\x8b\x30\x3d\xa9\x13\xa1\x72\xc0\x42\x88\x7b\x0c\x92\xde\x65\x52\xe8\x5d\xb1\xe4\x3a\x35\xa0\x69\x66\x7e\x36\xeb\x6d\xa4\xe5\x6e\x80\x0f\x34\xf5\x92\xd5\x6d\x77\x1e\x9b\x94\x04\x86\x17\x39\x28\xd5\x70\xb6\x9e\x22\x9c\x60\x28\x0e\xc9\x05\xfe\xe1\x54\x6f\x0f\xc6\x1a\xb8\xb3\x6f\x8f\x2f\xf4\x7e\x0f\xbf\x7a\xd6\xef\xbe\xf5\xe6\x96\x6d\xba\x50\x55\xa5\x58\xee\x52\x06\xb9\x3d\x11\x9b\x6b\x4a\x45\x3c\xcb\x13\x3c\x9c\x48\xf5\x4c\x47\xb8\xd4\xcf\xcb\xb1\x23\xe0\x1d\xb9\x56\x44\xde\x0b\x32\x1a\x37\x32\x7c\x96\x85\x1d\x8d\xd5\x43\x08\xe3\xf8\xe6\xf2\xe4\x76\x6c\x18\xca\x00\x6e\xa9\x58\x5f\x85\xca\x2c\x0f\xba\x32\x78\x0c\x3a\x6c\x93\x1b\xfc\x4a\x09\x46\xb9\x67\x19\x15\x73\x66\x5d\x44\xc0\x60\x78\x0f\xdf\xc5\x72\x19\xb6\x52\xa5\x3c\xba\x23\xd4\x1e\x3b\xb8\xb6\x19\xb3\x6e\x65\xe8\x31\x06\xbf\x44\x32\x49\xb8\x02\xe6\x03\x08\x42\xb1\xbb\x41\x36\xb4\xd4\xe5\xb2\x74\xc1\x96\x2c\xa3\x89\x85\x8b\xba\xf4\x86\xa8\xc2\x7d\x77\x4a\x8e\x5e\x7e\x7f\x44\x9e\xbf\x7a\xf9\xfa\xbb\xff\xef\xff\xf9\x7f\x8f\xbe\xff\xfe\xcd\xf7\x2f\x9a\xf6\x2c\x85\x4a\xc9\x74\x9a\xac\x2b\x1c\x7a\x7d\x12\x55\x24\x65\x32\x6c\xa7\x14\x44\xa6\x2c\xa3\x4d\x29\x43\xd5\x5a\x69\xb6\x54\x43\xab\x32\xca\x15\x53\xe4\xcd\xeb\xdf\x1d\xfd\x60\xc0\x79\xf9\xe3\x8f\x3f\x1e\x18\x3c\x26\x0c\xab\x23\x17\x74\xb0\x50\xed\x9d\x5c\x9e\x84\x86\x75\xab\xc4\x65\x7f\xf7\xe3\xab\xef\x5f\xbb\xf5\xb9\xe0\x58\x21\xb5\x2d\x54\x4e\x33\x9e\xac\xcd\x26\x64\x72\x9a\xb0\x25\xee\x43\xb8\x14\x2b\x8e\x67\x4e\x79\x42\x53\x55\x72\xd8\xc5\x1a\xcb\x05\xbd\x2d\x2a\x93\x3a\xaf\x79\xd3\xb7\x49\x29\xcc\x85\x91\x74\xf8\xaa\x62\x05\x79\xfd\xf2\xe5\xcb\x97\xc7\xaf\x7f\xfc\xf1\xc7\x1f\x43\xf2\x71\x6a\x25\x5f\xf2\xbf\x86\xff\xfb\xe6\xaf\x5f\x07\x65\xf1\xea\x01\x17\x7a\x20\xb3\x01\x1e\xed\xb0\x02\xcf\xdc\x2b\xe0\x93\x40\x14\xd9\x5e\xcf\xb6\xd9\x09\x05\x21\x33\x87\x53\x1d\x65\x2c\x92\x59\x6c\x0e\x9f\xa6\xbc\xc1\xa8\xe9\x47\x5d\x60\x22\xd9\x42\xe6\x82\x19\x0a\xd1\xeb\xc0\xde\x2c\x5b\x1e\x94\x7d\xa5\xcb\xa6\xa2\xd2\xa5\x04\x04\x12\xef\xc0\xc8\x38\x56\x18\x1a\x24\x5c\x98\x97\x57\x86\xdc\x17\x5a\x55\x43\xa0\xab\x1a\x81\xc9\x73\x2b\xc3\xc4\x69\xb5\x7d\x93\x5b\xcf\x42\xca\x3b\xdf\x24\xdc\xa0\x32\xd3\x32\x1d\xa0\x54\x5a\x53\x9e\x41\x05\x4b\x98\xc5\x1c\x43\xeb\xce\x66\xab\x44\x68\x99\xda\x53\x18\xb6\xd9\x50\xf0\x53\x80\xe2\xd4\x69\xca\x44\xbc\x39\xc2\x54\x6a\x2d\x97\x43\x67\xea\xb5\x8c\x8b\xa2\x33\xe6\x6a\xda\x06\x6f\xb7\x4b\x76\x6a\x0b\xc6\xfa\x86\x64\x33\xba\x15\xf8\x31\x42\x01\x75\xc7\xe0\x93\x3a\x23\x6b\x99\x13\x75\xcf\x75\xf8\x11\xd7\xd2\x02\x6a\x75\x69\x53\x46\x14\x56\x40\xb5\xe0\x62\x2d\x75\x9c\xc2\xd2\x42\x8b\x25\xac\xaa\x10\xbc\x86\xa0\xc4\x05\x7f\xa4\xe9\x9a\xcc\x68\x92\xa0\x64\x97\xb9\xd7\xcd\x8b\x2d\x87\x91\x0f\x70\x9a\x7b\x8e\xc4\x28\x34\xa6\x6d\x6e\x4f\x30\x68\x50\xa7\xcc\x5b\x69\x79\xd7\x11\xb1\xbb\xaa\xc1\x0a\x35\xc3\x59\xc6\x57\xac\xb3\x26\xf5\x59\xb5\x39\x99\xf1\x84\x09\xaf\x16\x7e\xc1\x12\x95\xea\x8b\x18\x5a\x36\x6c\x42\xae\x50\xb5\x81\x14\x19\xd4\xb4\x1f\x15\x1b\x59\xf7\xef\xfa\x6c\xbc\xf0\x1b\x02\x13\xf9\x8e\x3a\x9d\x02\xa4\xcf\x46\xe6\x8b\x25\x24\x2a\x94\x79\x67\x12\xdc\xfd\xb3\x86\x8e\xee\x10\x67\x8c\xc6\x5c\x30\xa5\x0e\x13\xbe\x62\xe6\x1f\xa0\x73\x95\x79\xf0\x48\xbb\x38\x9a\x52\xdb\xfa\xdc\xb9\xbb\xbf\xd8\x40\xdb\x90\x8c\x44\x94\x31\xaa\x6c\x6c\x58\x73\xfd\x57\x3c\xf1\xec\x6b\xca\x32\xce\xcc\x11\x54\x69\x9e\x71\x99\x2b\x48\x55\x96\x41\x59\x11\x30\x27\x88\x81\x81\x92\xd8\xeb\x04\x94\xb6\xd1\xb9\x95\x2b\x92\x8b\xd8\xf0\x69\x8c\xae\xd6\xe0\xe7\x37\x24\x67\xac\x80\xc8\x65\x80\xd4\x92\xcc\x99\xc6\xa8\x0b\x34\x4a\x62\x49\x77\x3b\x59\x68\x68\x0b\x0b\x02\x06\x52\xc9\xdf\x72\x1e\xdd\x25\x6b\xff\x4c\xff\xf8\x72\x67\xbd\x2e\x68\xa0\xac\x8b\xc0\x85\x9c\x9f\x65\x12\x4a\x4b\x37\x4a\x77\x0d\x34\x1a\x86\xf9\xc0\x96\x32\x5b\x8f\x33\x69\x8e\xf9\x98\xea\x45\xe3\x28\x2d\xb0\xdc\xf0\x25\xf8\xff\x9e\xd2\x24\x7a\x9f\xd1\x74\xf1\x13\x15\xf3\x93\x99\x0e\x5e\xb6\xad\x47\x2b\xce\xe4\xc3\x47\x03\x1c\x3b\x83\xd3\xad\xfc\x49\x2a\x7d\x12\x35\x84\xab\xd6\x2e\x44\x73\x5f\xff\x71\x02\x9d\xae\xa1\xb2\xaa\xc1\x7b\xad\xd0\xf0\x9a\xa6\x73\xe9\xa8\x39\x2d\x15\xcb\x65\x9c\x82\x2c\x7d\x0b\xb8\x56\x2c\x99\x91\xe7\x74\xd6\x50\xb8\x08\x5e\x2c\x3b\xf6\x82\x5b\xc6\xba\x18\x8a\xa1\x09\x17\x49\xea\x8b\x21\x79\xbb\x2e\xaa\xaa\x23\xb5\x0d\x0d\x09\x25\x21\x55\xd8\x85\xbb\x14\xb7\x43\x60\x62\x9d\xe7\xa0\xbc\x5d\x3c\xc0\x93\xbd\xb3\xeb\xab\xf1\x64\x0f\xf4\x87\x86\x49\xb7\x0f\xd8\x3d\xb5\xde\x1d\x49\x22\xef\x89\x92\x4b\xc8\xb0\x44\x93\xa4\xcd\x38\x0e\xb0\xf9\x88\x33\xd0\x1c\x20\xe5\x84\x84\x43\x34\xa3\x4b\x66\x1d\x11\xae\xcf\x6f\x3f\x5e\x5f\x9a\x51\x4f\x4e\x4f\xcf\xc7\xb7\x43\x43\x7f\x43\xa3\xda\x86\x96\xce\x40\xad\xfc\xb5\xcc\xc1\x5b\xab\xfa\x4c\x7a\x8b\x1a\x5d\x8e\x3f\xde\x4e\xf6\xf0\xe5\xfc\x7d\xcb\xf3\x06\xef\x9a\xe3\x0c\xb4\x7b\xda\xeb\xbc\x07\xd5\x38\xd2\x01\x3a\x33\x4c\xf6\x10\xa6\x70\x2d\x72\xe7\xc9\x62\x77\xa4\x06\x0c\x91\x96\xaf\x58\x50\x05\xd5\x91\xb0\x18\x68\x9a\x49\x57\xe1\xa8\x4d\xa4\x0d\x1f\x25\x40\x9d\x45\x23\xbc\x6d\xa2\x88\xec\xa3\x49\xe2\x6c\xbc\x0e\xb0\xc6\x9d\xf3\xac\xe7\xe6\x7c\x87\x60\x6a\x02\x20\x34\x66\x49\x4c\x0d\x29\xdc\x9d\x9a\xae\x78\x84\x6a\x85\x71\x26\xb5\x8c\x64\xa7\x3d\x04\xe4\x4b\x3f\xb0\x0c\xe3\x48\x53\xdb\x9d\xd0\xd8\x7a\xae\x58\x76\x7c\xc9\xe2\x16\xb5\x1f\x6a\x24\x0e\x0c\x43\xe5\x2e\x29\x1c\x62\xc7\x09\x5d\xdf\x8e\xaf\xaf\x6e\xbf\xbc\xbd\xba\xba\xc5\xb7\x2c\x61\x33\x4d\xa6\x09\x15\x77\xbb\xea\x05\xbc\xb5\xde\xec\x52\xf8\xdf\x57\xc4\x41\x5e\x9e\x6a\xb5\x7b\xe7\x48\x22\x85\xb7\xe2\xb0\xc8\x69\xe6\xb7\x2b\xae\x90\x25\xbd\x51\x88\x1f\xe3\x8f\xdd\x4a\x0f\x48\xc2\xe8\xaa\x41\x40\x2e\x05\x02\x50\xb0\x2c\xa4\xb4\x4f\x77\x6d\x44\xc3\x97\xec\xca\x51\x35\x60\x6c\x34\x5e\x85\x72\x44\xb4\x61\xed\xe8\xdf\x08\x6b\xc8\x9c\x14\x56\xaa\x91\x80\x7a\x0f\x4d\xa1\x3a\xad\x6c\x8a\x23\x04\xd7\x2e\x05\xe0\x19\x4b\x82\x39\x1e\xda\x00\xda\x18\xa4\x59\x76\x6f\x07\xc6\x32\xff\x97\x32\x66\x50\x4f\xab\xeb\x0c\x9c\xfb\x1d\x4e\x47\x67\xd7\xa6\xd3\x66\x24\xc3\x3e\x68\x40\xdc\xe8\x03\xc3\x36\x5a\x71\x1c\x4a\x6f\x85\x2d\xa9\x46\xc0\x5f\xd2\xb5\xdb\x2f\xab\x2f\x74\xef\x37\xb8\x27\x9a\x37\x0c\x1e\x98\xc2\xbb\xcd\xfe\x1a\x56\x8b\xb9\xd8\x6e\x02\x16\x99\xa2\xba\x4b\x48\x27\xfe\x0d\xa2\x17\x66\x94\x27\x46\x5a\x1e\x89\xa9\xcc\x45\x6c\x38\xae\x26\x05\x66\x95\x59\x7b\xd7\xd0\xb1\x8a\xe7\x8f\x67\xe3\xc3\xdb\xd3\x31\x69\x8e\xe8\x10\xb1\x0d\x03\x81\x87\xd8\xf3\xe8\x41\xe6\x24\x64\xb6\x07\x36\xa8\x60\x8e\x82\x52\x80\x20\x3c\xcb\x98\x4a\x6d\x91\x20\x97\x72\x81\x45\x79\xc6\xf5\xba\x78\x59\x1d\xb5\xc8\x15\x9b\xe5\x70\x25\xe9\x4a\xf2\xb0\xbe\x39\x8a\xa0\x14\x0f\xbc\xb9\x51\x0e\x8e\xc4\x44\xce\x66\xd6\x56\x84\xfc\x98\x81\x36\xcb\x58\xa4\x6b\x81\x99\xe4\x5d\x38\xc1\xc1\x94\x46\x77\x83\x4a\x1d\xef\x03\x97\x26\xa1\x78\xd8\xac\x4a\xd0\xd6\x7a\x02\x0f\x29\xed\x88\x51\x93\x23\xc8\x64\x4f\x47\xe9\x64\x0f\x18\x3e\x0a\xf8\x0d\x0f\xe3\x21\xda\x67\x41\x83\xeb\xc7\x78\xc4\x0c\xa2\x74\x86\xe4\xb6\xf4\xf1\x47\x7f\x6e\x38\x05\x88\x0a\xd8\xec\x83\x42\x17\xda\x28\x5c\x0a\x29\xc0\x7d\xb8\x50\xd5\x58\xb1\xcf\xba\x11\x2b\xb5\x70\x6e\xfe\xe6\x94\x9c\xfd\x74\x3a\xae\x38\xfb\x45\xe9\xf1\xeb\xd7\xc1\x00\xb5\x3c\x4e\x8f\x8f\x7e\x38\x80\x26\xaf\x7e\xf7\x23\xfe\xe3\xf5\x9b\xf2\x5f\x3f\xbc\xc4\x7f\x1d\x7d\xf7\xdd\x1b\xfb\xaf\xa3\xa3\xa3\xe2\x5f\xbf\x0b\xf1\x33\xcd\x97\xaf\x9a\xb8\xd6\xec\xdb\x58\xa2\x2e\x2a\x92\xcb\xa9\x97\x77\xc7\xed\xe9\x01\x41\x4b\x8f\x3b\xfc\x0d\xc9\x2c\xc6\x05\x6f\x23\x62\xd4\xb7\x3b\xb3\x67\xb1\x8b\xc1\x9e\x9d\xc9\x5b\x04\x0b\x7b\xa4\x91\xad\x72\x67\x18\x48\x3a\xba\xb7\x64\x23\x27\x05\x16\x1e\x0c\x42\x4b\xfa\x4e\x42\x06\x00\x5f\xc3\x2f\x76\xe6\x66\x0a\xda\x5e\x5b\xa0\x95\x82\x5e\xe5\xfa\x81\x24\x74\xa3\xe7\x13\xd3\x50\x99\xeb\xb9\xf4\x69\x28\x08\x04\xdd\x54\x54\xcb\x9e\x8a\xfe\xa2\x54\x54\xda\x83\xf0\x34\x64\x54\x82\x8a\x84\xe9\x28\xde\xdf\x87\x74\xd9\x22\xa6\x59\x6c\x83\x02\xb4\xb4\xc1\x57\x70\x66\x42\xc3\xe2\x31\x8a\x25\xba\xf1\x81\x22\x2e\xca\x35\x6c\x16\xaa\x02\x74\x14\x57\xc2\xf4\x0c\x02\xcc\x76\x1a\x42\xdd\x64\xab\x3b\xbb\xbc\xa9\xd3\xf0\x5d\x08\x74\x70\xa3\x2c\xcd\x3e\x00\xb2\xff\xfd\x1b\xfc\x6f\x4f\xc3\x7b\x1a\x1e\xfc\x35\x4c\xc3\x19\xd5\x79\xc6\xce\x98\x66\x91\xbe\x5a\xb1\x2c\xe3\xdd\x06\xb4\x77\xa1\x4e\x45\x8d\x6d\x2d\xc1\x1c\x0b\xdf\xd9\xe1\x49\x0c\x4d\x1b\xa2\x9e\xa6\xd4\x74\x93\x82\xd0\x5c\xcb\x01\x36\x65\x31\x49\x13\xaa\x21\x0b\x72\x44\x53\x0a\xd4\x8d\x43\xb4\xf8\xa7\x32\x72\xad\x38\x49\x61\xf3\x25\xa1\x68\x5b\x24\x8a\xa5\x34\x03\xc7\x5b\x78\x5a\x80\xd6\x0a\x49\x54\x4a\x23\xa6\x0e\xc0\x60\x99\x26\xec\xf7\x64\xb2\x77\x73\x79\x72\xfb\x2e\x4f\x92\xf5\x35\xb8\x08\xfc\x01\x6c\xa6\x1f\x4e\x6e\xfe\xa7\xff\x25\x18\x4b\x0e\xae\x19\xa4\x95\xba\xc9\x53\x20\x2c\x17\x32\xba\xfb\x03\xf8\x8b\x4e\xf6\xc0\x9a\x1b\xd4\xa2\x81\x6b\x29\xe6\x47\xda\x43\xf2\x89\x81\x82\x86\xce\x59\x64\x1d\x10\xb6\x4c\x35\x18\x17\xa4\xf5\x2c\xf5\x82\xf5\x2a\x38\xda\x51\x50\xb6\x13\xbc\xa7\x5b\x64\x75\x7e\xe7\xb5\xf5\xb7\x16\xfd\xff\x0d\x70\x8e\x7e\x6b\x16\x2d\x06\x69\xc6\x56\x9c\xdd\xb7\xa8\x24\xed\xe4\x6a\x18\xdc\xc0\xe6\xdd\x0a\x4a\xa3\xcd\x1b\xd8\x92\xea\xe1\xb3\xcc\xee\x68\x66\x9e\x99\x3f\xb8\xd8\xdf\x3f\xad\xff\xaf\x3f\xd8\xdd\x68\xf5\x09\xab\xad\xde\xad\xc5\x7a\xa6\x67\x0c\x1e\x8a\x99\x39\x22\xe6\x9a\xc6\x79\x64\x53\x15\xd2\x38\xa4\x44\x6c\xdd\xa3\x44\x82\xdb\xc2\x68\xdc\xbd\x45\x65\xd3\x32\xd9\x7d\x69\xc4\xc6\x58\x97\x5a\xa8\xc8\x3c\xa3\xc1\xe7\x59\x48\x31\xb8\x4a\x99\xb8\xd1\x34\xba\x2b\x80\xf0\x8a\x2a\xc0\xd5\x7b\x5e\x34\x19\xc4\x2c\xe3\x2b\x16\x17\x4d\x43\x83\x82\xbb\x91\x39\xb3\xc9\x3d\x5d\x2b\x4f\xef\x74\x50\x0b\x6b\x05\x0d\xa4\x8b\x51\x0d\xb8\xe3\x37\xe6\x21\xb1\x8a\x95\xd0\x4f\x67\x8d\xe1\xda\x6d\xe8\x9f\x33\xc1\x32\x1e\xfd\xe9\x6c\xbc\x6d\x64\xcf\xfb\x7a\x0f\x7b\x48\x14\xb1\xbf\x90\x3f\x9d\x8d\x89\x92\xce\x1d\x96\x44\x34\x0b\x27\xa9\x81\xc3\x14\x4b\xb1\xbf\xaf\x89\x42\xaa\x02\x7d\xe5\x6c\x06\x4a\x6a\x73\xe7\xd0\x6e\xbb\x94\x31\x83\x80\x70\xe0\x91\xfe\x74\x36\x46\x56\xb4\xc1\xe2\x08\x91\x39\xcc\xdc\x2d\x26\x62\x16\x97\x3e\x00\x86\xc5\x81\xd9\xd2\x4c\xae\x0c\xb9\x9e\x32\x0d\x1a\xf2\x32\x11\x48\x03\x9c\xa2\xb0\x4a\x0c\x1f\x1d\x67\xbd\x60\x34\xd1\x8b\x07\xaa\xc8\xb0\xb3\x91\x1f\x76\xd4\xd1\x61\xc7\x71\x98\x1b\x68\xe5\x03\xb0\xa7\x35\x59\xbb\xd7\xaf\xf3\xb2\xfe\x14\xec\xe5\x24\xfe\x22\x7d\x84\xa0\x09\xb9\xb7\x56\x71\x67\xf4\x0e\x2b\x7a\x66\x90\x60\x72\xc5\xe3\x9c\x26\x44\xe5\x53\x23\x06\x48\xc1\xac\xd1\x6c\xca\xdc\x23\x1c\x33\x31\x24\x75\x49\xa5\x21\xed\xa4\x39\x9f\xe0\x69\x02\x54\xd2\xbd\x54\x24\x95\x8a\x83\x1b\xfe\x1e\xa9\x1b\xe4\x95\x73\xa8\x16\x44\x46\x51\x1e\x1c\x95\x0b\x92\xd2\x4c\xf3\x28\x4f\x68\x96\xac\xcd\x86\x30\xa5\x0c\x18\xa5\x69\x06\x5c\xa1\x21\x48\x09\x2b\x77\x28\x9d\x51\x2e\x58\x3c\x24\x4d\xb2\x4f\x29\x26\x52\x5b\x0f\xdb\xc7\xc1\x01\x51\x8c\x15\x11\x82\x89\x9c\xef\xa6\x55\xec\x66\x42\x69\x4b\xd9\xc7\x2d\xea\xf9\x35\x7a\x4a\x6c\x37\x42\x07\x13\x69\xa0\x0b\xff\xd2\xe2\x47\xf1\x60\x1e\xb2\x88\x3b\x3a\xc7\xac\x38\x9d\x24\x73\x54\xeb\x80\x52\x3f\x3c\xfe\x83\x1a\xab\x06\xc7\xbc\x33\x03\x4a\x25\xf1\x8b\xcd\xcd\x83\xd6\x2b\x5b\x6e\xdd\x1c\xea\x99\xcc\x6a\xa2\xff\xb0\xc9\x6d\xb7\x2a\x4e\x56\x72\x75\xd8\x8c\x4f\x73\x21\xcd\x57\x65\x68\xe5\xfe\x3e\x19\x8d\x3f\xdd\x90\x38\x5f\x2e\x83\x7e\xa5\xc5\x32\x9c\xb7\x9c\x63\x2b\xdc\xbd\x4f\xd6\x64\xba\xae\x44\x03\x56\x8d\xd6\xa1\x41\xdd\x5a\x97\x79\xa2\x79\x9a\x78\x39\x68\x30\x59\x28\xc9\x15\x7a\x8e\x99\xff\xb8\xac\x0f\x18\xb5\xdd\xc4\x5b\xd9\x97\x47\x05\x02\xf1\x14\x28\x22\x42\x3f\x00\x9c\x20\xdf\xdd\x67\x34\x6d\xb2\xff\x20\x3a\x81\x79\xdb\xdf\x3f\xdc\xdf\xc7\xe1\x2c\xf3\x46\x16\x60\x3b\x72\xbc\xee\xfe\xfe\xe1\xff\x32\xb8\x38\x3c\x58\x31\xbd\x78\xb5\x1f\x78\x55\x6c\xae\x38\x87\x83\x5a\x76\x0d\xd8\xad\x29\x9b\x73\xe1\x66\x34\xc3\xed\xef\xdb\x82\xfa\x4a\x36\x79\x88\x95\x28\xdc\xdf\xb7\x73\xfb\x8f\x1c\x6c\x10\x4f\x57\xaa\x25\x8f\x42\xf8\xe2\x16\x03\x8f\x33\x36\xe3\x5f\xb7\xbf\x26\xd8\xde\x19\xf7\xaa\x5b\x0c\x4e\xc0\xfc\xab\xcd\x72\x51\x94\xcc\x6f\xa2\xee\x35\xf7\x0a\x88\x27\x07\x55\x8c\x61\xbd\x72\xae\x16\x68\x63\x5e\x06\x34\x65\xad\xb8\x52\x43\x72\x29\x35\x3c\x9a\x84\x89\x15\xcf\xa4\x58\xc2\x5b\x24\x6d\x61\x26\x2a\xc8\xd4\xf0\x82\x4b\xa6\x69\x82\x27\x50\x66\xd1\x82\x19\x42\xaf\x65\xb8\xa2\x58\xc1\xd4\x22\x83\x48\x53\x43\x96\x33\x4e\x35\x4b\xd6\xd5\xb3\x23\xf3\xcc\x0f\x73\x06\xad\xb9\x8c\xee\xc2\x42\x3c\xbc\xeb\x36\xcf\xad\xf5\xe2\x30\x7b\x1d\xd1\x84\xef\xef\xfb\x19\x52\xcd\xa8\x25\x53\xec\x75\x0b\xde\x1b\xe7\x70\xbe\xbf\xaf\x69\xea\x06\xf2\x4f\x8e\x99\xe0\xc1\x67\xe6\x1a\xcb\xfb\xc3\x99\x58\xd1\x4e\xa7\x81\x51\x43\x3f\x2f\x79\x0c\x97\x60\x79\x43\x62\xd4\xe8\xb1\x96\x31\x15\x51\xa1\x30\x1b\x4a\xe5\x7e\x49\xb2\x62\x19\x9f\xad\x6d\x96\x21\x2c\x04\x06\xda\x38\xec\x63\xdd\x81\x83\xf4\xd5\xf2\xe6\x86\xe0\x59\xb6\xbf\x3c\xda\x06\x4a\x2d\xc9\xcb\x1d\x05\x27\x9e\xf2\xad\xa3\xf1\x47\xe3\x51\xc1\xad\xcb\x82\x17\xab\x7a\xff\x96\x19\x77\xf1\x0c\x86\xf5\xcf\x98\xb2\xb3\xbc\x92\xb2\x4c\xd9\x32\x24\x57\x29\xfa\xaa\x10\xea\x72\x93\x19\xc1\x3d\x5b\x5a\x4f\x8e\x30\xc3\x5e\x68\x43\xd0\xfd\x13\x6f\xa6\x11\xc4\x52\x29\x93\x0a\xbb\x2d\x78\x42\x9e\xe7\x42\x31\xfd\x62\x67\xa6\xdb\x60\xeb\xc3\xed\xc7\xad\x30\xf5\xe1\xf6\xa3\x3b\x36\xe6\x9f\x90\x6d\x45\x3b\x08\x2b\x41\xd7\x43\x72\xc3\xc2\x5e\xb7\x16\x8b\x66\x29\x66\x0c\x2f\xd0\xfc\xbb\xef\x76\x4f\x48\x83\x31\x91\x3b\x5e\x89\xfd\x51\xa8\x57\xeb\x85\x20\x19\xc3\xa4\x9d\x61\xeb\x43\xe2\xb9\x7c\x63\x84\x5e\x55\xb9\x4c\x84\xb4\xf4\xcf\xfa\x1c\x81\x77\x94\x6f\x09\x08\x1e\x80\x4c\xde\x15\x65\xc5\x0a\xbf\x6c\x83\x5a\x70\x3e\x7b\x59\x49\xac\xe8\xa6\xcf\x70\x55\x1d\xc9\x3e\x1f\xe0\xfe\xe9\x66\xd8\x32\x20\x6f\x54\x6d\x5e\x28\x78\x5c\xf2\xc4\xa9\xfd\xde\xf0\x75\x0e\x76\xf3\x8a\x07\x11\xc1\xd0\x1b\xa4\xa2\xe1\xe7\x8a\x9c\xe4\x5a\xee\x4c\x1c\x70\xae\x77\x3c\xd1\x2c\x83\x5c\xb5\x8d\xae\x99\xdb\x8f\x73\xc6\xc4\x7a\x3b\x0f\xcf\x51\x43\xbf\x46\xef\xce\x36\x7f\x44\x97\xd0\x2a\x66\x82\x23\x0d\x75\xaa\x05\x67\x97\xda\xf0\xc0\xac\xb9\x5b\x36\xea\xd4\x3c\xc1\xbe\xd3\x87\x32\x57\x0c\x5c\x06\xff\xcf\xf3\xd3\xdb\xa2\x55\xf8\xbd\x55\x9a\xd1\x18\x3a\xc3\xbb\x50\x3c\xeb\x1c\x22\xfb\x16\x2c\xdb\xd5\xf5\xdc\x01\x79\x21\xa3\xbb\x77\xcd\xbe\xc4\xf5\xfb\xbf\xd9\xc9\x5d\x7f\xf3\xbc\xf9\x45\x62\xdc\x04\xa1\xf5\x18\x54\x82\xa3\xfe\x90\xfc\xd9\xb0\xbd\x74\x0d\xd9\x20\xd1\xaf\x09\xc2\x91\x80\x5d\xb1\x86\xb8\xa2\xb5\x53\xc5\x84\xeb\xfe\x71\xed\x59\xaa\x0a\x68\x9e\xcf\x3c\x26\xc7\x77\x15\x5d\x9a\x93\x82\x29\x5c\x85\x96\x85\xeb\x7b\x03\x17\xa5\x8d\x2c\x9d\x19\xe2\x46\x49\xcc\x67\x33\x96\x31\xa1\x49\x4a\xf5\xe2\x85\xff\xa0\x1c\x66\xb9\x38\xfc\x6a\xf5\x3a\x06\xee\x87\x12\x0b\x83\xe1\x71\x26\xa7\x6c\x07\xda\xdc\xd0\xb3\x88\xc8\xe5\x4b\x56\xb7\xf2\x06\x8f\x31\xe5\xba\x48\xce\x42\xb5\x66\xcb\x14\x35\x22\x34\x02\x91\xb9\xea\x52\x0b\x9b\xc3\x67\x36\x41\x6d\x43\xd2\x0e\xba\xa2\x1c\x6a\x28\x0e\xab\xe9\x59\x96\xf4\xce\x65\x57\x01\x7f\x7b\x9b\x68\x8b\xaf\xac\xec\xe9\x76\xbf\x41\x2d\x17\x61\x18\x2d\x8b\x0f\x20\x55\x97\xb9\x4e\x30\xcc\xe9\xf8\xa3\xbf\x29\xdf\xbf\x5c\x3e\x98\x68\x1b\x6c\x6e\x1b\x94\x31\xda\xec\xd3\x86\x7b\x40\x74\x68\x65\x2e\x3c\xb6\x82\x63\xc8\xa9\xf1\xf2\xc0\x7b\xba\xc0\x04\x9c\xbb\x30\x8c\xc2\xf4\xd1\xc8\x87\x82\x70\xa9\x16\x34\xb8\x83\x70\xbd\x90\x80\x25\x49\xf5\xc9\xb5\x92\x60\xf8\xfd\x36\x42\xa0\xd9\x44\xb7\x53\x43\xf2\xd9\x6c\x9c\x4d\x63\x54\x66\x77\xe6\x46\xbc\x2c\x2f\xd2\x41\x73\x34\xa2\xcb\x5d\x66\x46\x34\xd7\xc9\x66\x54\x93\xd9\xda\x51\x16\x2f\x73\xf3\x52\xe6\xb6\x12\xa8\x75\xaa\x46\x2f\xb8\x43\x21\xc3\x69\x59\x65\xe6\x5a\xcc\x5c\x0e\x7c\x04\xa8\x92\xde\x4f\x15\xec\xf5\x43\x8f\xcd\x07\x2a\xe6\x09\x7b\xfc\x2b\xf9\x81\x66\x77\x1f\xa8\xea\x4e\x35\x32\xaa\x75\x70\x07\x6f\x69\xfe\xed\x6b\x78\x20\x5b\x84\x32\xc4\x32\x6c\x6f\xb8\xc5\x43\x61\xc6\x21\x53\x43\x52\xa1\x54\x90\xcb\x61\x35\x65\x90\x2c\xd2\xfc\x42\x16\xec\x2b\x8d\x59\xc4\x97\x65\x9c\x7f\x53\x3e\x4e\xaa\x49\xc2\xa8\xd2\xe4\x07\x1c\x53\x31\x7d\x00\xbe\x07\x98\x91\x13\x22\x1f\x13\xaa\x16\xee\x09\x5d\xdb\x13\xb8\x74\x50\x34\x28\x45\xad\x3b\x2e\x78\x96\x40\x8c\x6a\x65\x1b\xbf\xce\x66\x2f\xe1\x13\xda\x45\x57\xf8\x95\x0b\xfd\xe6\xf5\xce\xcc\x33\x22\xfb\xf2\xe4\xf6\xca\xfa\xc7\x14\xd2\x22\xf2\x27\x0f\xdc\xee\xb1\x54\xfa\x73\xc6\x35\x03\xcf\xdb\x9d\x49\x7f\xb8\x7b\x9d\x3f\x07\x17\xfe\x46\x2a\x61\xf8\xeb\xd8\xec\x0c\x25\xf7\x66\xa8\xcd\xb4\x5c\xc8\x3c\x69\x28\x9b\x12\x63\x54\x04\xe4\xff\xcc\x28\x98\xeb\xc2\x12\x19\xe6\xe4\x73\x79\xa3\x31\xa5\x26\xa6\x40\x86\x49\xee\x29\xbe\xec\x51\x22\xa7\x53\x96\x21\x4f\x46\x45\x85\x0e\x35\x9b\x17\x95\x97\x60\x0d\x74\xe8\xe6\x41\x72\xbd\x69\x9a\x26\xdc\xb1\x26\xfe\x59\x29\x8c\x37\x0d\x42\x7b\xca\x22\xbd\x49\x29\x87\x8f\x4a\xf1\xe5\x86\xda\x5d\xf0\x0a\xf6\x7b\x80\x2e\xc2\x4a\x63\x2e\x89\x24\xe8\x5c\x6c\x98\x8c\xb7\xc5\xed\x42\x58\xd3\xb9\xa9\x78\x68\xed\x22\x84\xb5\x24\xe4\x29\xc4\x32\x54\x8e\x69\x4f\x90\xc1\x77\xd2\x85\x20\x82\x27\x3d\x30\x17\xa0\x2a\x6b\x50\x4d\xda\x20\x5a\x1c\xb4\xd0\x96\x28\x70\x42\x02\xf5\x9e\x35\xdc\x98\xb1\xa9\x0d\xe0\xb7\x4e\xf7\xd3\x7c\xde\xf8\x10\x9a\xf3\x3b\xe3\x5f\xd1\x0a\x6f\xdb\xdb\xea\x45\xe4\xbb\xe1\xab\x57\x05\xeb\x6f\x5e\x5f\xd4\x28\xaf\xcc\xf7\x90\x73\x18\x32\x9a\x05\xf5\x6c\x6b\xcb\x1c\x3b\x81\xa1\x08\x98\xd2\xf2\x80\x50\xb2\xf0\xf2\xd7\x61\x8c\x63\x35\x5d\x5d\x68\x48\xc8\x60\x57\x39\xc4\x0f\x91\x68\x57\x47\xd6\x69\xa3\x53\x6c\x1b\x17\x4d\x9b\x82\xc4\x9d\xb1\xd7\x19\x6c\x1b\x2c\x6b\x10\x91\xf1\x9c\xcf\x5c\x3b\xa4\x11\xa8\xf3\x1a\x40\xd2\x29\x77\x7c\x9b\xd3\x6f\x34\xa8\x72\xee\xf2\x29\xbb\x94\x31\x1b\xcb\x4c\x5f\x43\xbe\x87\xce\x0b\xf9\xc7\x8d\x2e\x90\x84\x44\x15\x36\x17\x58\x8a\x9f\x3c\xa2\x61\x59\x36\x1f\x0b\x29\x93\xee\x0e\xab\xc1\xc7\xb3\x42\xed\x65\xde\x6d\x2f\x63\xa4\xe5\xb1\x1a\x9e\x46\x9e\xae\x94\xcd\xd3\x86\x68\xce\x91\x91\x63\x8a\x39\xb0\xe0\x40\xa1\xad\xa8\xcc\x90\xdc\x16\x64\x66\x65\x5f\xff\xf4\xbc\x81\x74\x0e\x6f\x5e\xff\xee\xe8\x77\xc1\x94\x6a\xcd\x06\xc2\xa6\x9c\x26\x5b\x64\x35\xe9\xce\x6b\xd2\x95\x48\x62\xf7\x54\x12\xad\xf6\xbb\x44\xce\x21\x59\xc4\x3b\x1b\x7b\x7e\xcd\xe6\xac\xd3\x3a\x71\x11\xea\xe4\x5f\x12\x43\xc9\x6d\xac\x48\x04\x89\x6c\x79\x83\x38\xed\xc2\x46\x78\x46\x60\x44\x48\xf3\x27\x73\x9d\x1a\x01\x44\x60\x9d\x0d\x47\xe4\xc1\x90\x8b\x27\x0c\xd2\xef\x35\x79\x9b\xc2\x64\xd6\x4d\x08\xec\x60\xf0\x12\x94\xa5\x0b\xe6\x7c\xc5\x44\x28\xd5\x64\x91\xf9\x23\x06\xdb\x73\x83\x7d\x70\x06\x6c\x12\x3e\xd9\xf0\x42\xe3\x79\xb4\xe0\x43\x2e\x88\x06\x93\x73\xdb\xc6\x27\x72\xbe\xb5\x2e\xe3\xa2\x6c\xeb\x9e\xd1\x59\x9e\x24\x20\xd3\x3b\xa6\x07\x6f\x4e\x22\xe7\xee\xd9\x0a\x2d\x05\xf8\x58\xef\x31\x03\x51\x2a\x91\x50\xa3\xa5\xa2\x1b\x58\xd1\xec\x30\x91\xf3\x43\x5f\x02\x19\x26\x32\x58\x37\xa8\x63\x95\x5b\xda\xbf\x2e\x5c\xcb\x52\x49\x33\xaf\x98\xbb\x3c\xd2\x00\x02\x77\x66\xc4\xe9\xa6\x2b\x75\x71\xf5\xde\x3d\xe2\x55\x93\x4c\x24\x07\x18\x42\xfa\x80\x95\xdc\xb0\x15\xcb\xb8\x5e\x9b\xbd\xd8\x66\x3d\x7e\x7b\x7f\x55\xca\x7e\x4f\xe8\x54\x82\xfa\xc0\xdc\x1e\x73\x84\x82\xb4\x27\x63\x98\xad\xdb\x95\xfc\x93\x73\xab\x8e\x2a\x17\x36\x12\x33\xf9\x88\xf5\xdc\x44\x19\x63\xdd\x71\xeb\x17\xf5\x1e\x4f\xb6\x26\xa5\x63\x99\xeb\xa7\x5c\xd1\xba\xfb\x59\xbc\xa8\x34\x7f\xba\xb5\xac\x95\x77\x09\xc9\xa5\xb4\xd9\x81\x85\x74\x17\x0d\x1e\x33\xdb\xaa\x55\x81\xff\x10\x24\x2c\xe9\x57\xb0\x7c\xdc\xf0\xbf\x87\xce\x68\xeb\x6b\xe5\x8a\xfd\x9d\xc4\x71\x67\x2a\x93\xfd\x0f\x5e\xe3\x32\x12\xb5\x2c\x55\x9c\x91\x58\x2e\x29\x17\xc4\x4b\x70\xd2\xc4\x54\xb8\x62\xc6\x11\x15\x84\x0a\x65\x18\xe3\x4f\x1f\xc8\xdf\x72\x06\x99\xce\x0c\xf6\xa2\x44\xe6\xf1\x80\x0b\xae\x0b\x28\xa1\x76\x62\x61\xb0\x0d\xfb\xcc\x2f\x40\xf3\x96\xa1\xae\x2e\x2e\xc2\xd9\x97\x34\x5a\x70\xc1\x0a\xd5\x8f\x90\x2b\x3a\xa0\x29\x27\xcf\x31\xdb\xe5\xc7\x69\x2e\x74\x1e\x1c\xd2\x35\x1d\x38\x30\x5e\x0c\xc9\x89\x8b\x44\x98\x21\x81\x7d\x1e\x51\xc5\x20\x20\x5f\xa0\x2b\xd5\x0b\xb2\x64\x54\x34\xeb\xa6\x2a\x36\x48\x08\xbc\x60\x9a\xe4\x29\x68\x17\x2e\x4f\x6e\x31\x13\x90\x53\xb5\xb9\x89\x81\xfa\x77\x9c\xa0\x57\xaf\x7f\x37\x7c\x39\x7c\x39\x7c\xb5\xf3\x31\xb2\x93\x34\xb8\xcc\x85\x8f\x82\x0b\x25\x00\x31\xcf\xfc\xdb\x2a\xc1\x0a\x88\x71\xaf\xd1\x7d\xb1\xa1\xe4\xda\x72\x0a\x89\xc3\xe0\x31\xc7\x0a\x27\xc3\xca\x49\x33\x5c\xb5\xc1\xd0\xfe\xbe\xb9\x59\xfb\xfb\x2f\x0e\x3c\x8f\xdd\x06\xc9\x0c\x50\x59\x20\xf2\x00\xbd\x1d\x5e\x1d\xfd\x38\x7c\xfd\xfd\x77\x43\xfb\xdf\xe3\x1f\x40\xca\xf3\xe7\x3a\xf6\xd7\x15\x94\xe8\x47\x02\x12\xa2\x41\x86\x51\x5b\x82\xdb\xdb\x44\x67\x26\x98\x32\x6b\x29\x88\x3d\x02\xf7\xc3\xef\x7e\xf7\x7d\x4b\x62\xdf\xa6\x1b\xaa\xf3\x5d\x92\x6e\x7f\xb8\xfd\xf8\x4b\x14\xdf\x02\xfb\x7f\x45\x65\x42\x93\x08\xf2\xac\x14\x3a\xd0\xb0\xb1\xe2\xc3\xed\xc7\x6a\x46\xbd\xb2\xe4\x54\x5b\xb9\xa9\xc7\xd5\x96\x12\x54\x3b\x4d\xd8\x96\x29\x0a\x3c\xdd\x99\xed\xe1\x59\x3a\xa9\xa8\x07\xdd\x03\x77\x62\xbd\x6a\x9b\xd2\xee\x21\xab\x6c\x8e\x24\x5c\x6b\x57\xd0\x43\x10\xea\xc3\x07\x5e\x00\x85\x05\xd0\xc6\xdb\x37\x11\xd2\xa2\x3a\x46\x2d\x88\xdf\x8f\xb5\x87\x13\x50\x02\x6c\x75\x4c\x05\x8a\xc3\x34\xb4\x52\xcb\xc4\x01\x21\x05\x79\xce\xc1\xa6\xe7\x84\xb5\x52\xf7\xf4\xe1\xe4\xe6\x7f\x7e\x3c\xbf\x3e\x39\x3b\x27\x9a\x66\x73\xa6\x03\x4e\xde\x1d\x3b\x54\xc8\xaa\xbf\x5a\x86\x49\x9b\x5b\x12\x80\xf0\xb6\xbb\x4c\x32\x69\x05\x67\x55\xec\x8f\x41\x70\x93\x8d\x04\x43\xa2\x28\x24\x53\xc2\x03\x12\xc3\x06\x17\x31\x8b\x97\x27\xb7\xd6\x1e\x01\x3e\x1e\xbe\xf2\x28\xa8\xa5\x64\x0b\xba\xe2\x32\x2b\x72\xcd\x5a\x9b\xb0\x42\xe7\xa5\xc6\xcc\x0a\x4f\x9b\xb3\x50\x30\x9d\x70\xd1\x62\x74\x6a\xc3\x37\xc4\xed\x19\x70\xaf\xd9\x7c\x9b\xb4\x49\x57\xd5\xf6\xee\xa1\xf1\xf3\xa7\x65\xf8\x0b\xc6\x69\x78\x6e\xc8\xcd\x6f\xee\x94\x25\x52\xcc\xb1\x3a\xf3\xc8\xdc\x3e\xf0\xad\x1c\xd8\x81\x50\x21\x78\x58\x7a\x85\xc5\x2c\x4d\xe4\x7a\xc9\x84\x6e\xe6\x37\x5c\xe0\x5b\x61\xf8\x8e\x21\xf5\xd0\x42\xde\x97\x89\x9a\x71\xf2\xe7\x98\x6d\xb4\xd4\x68\x2e\x65\xcc\x92\xe0\xc8\xc8\x97\xa0\x18\x16\xcd\xe6\xc4\xf2\x02\x9e\xf3\x9d\xb9\x91\x30\x76\x24\x97\x69\x6e\x8b\xf8\xbc\xb0\xc5\xbf\xf3\xb0\xf7\x67\x29\x22\xff\x05\x65\xa3\xbf\x96\xbb\xf2\xc5\xe2\x00\x59\x1b\x6f\x31\x90\xeb\x3b\xd7\x99\x14\x43\xf3\x6d\x10\x5a\x0b\x0a\xd6\x11\x2a\x1f\xbd\xf3\x65\xaa\xd7\xbb\xb2\x22\xe8\xe6\x00\x75\x3c\xa8\x5e\x6c\x29\x4d\x8e\x03\x9d\xfc\xd0\x9e\xe9\xda\xee\x01\x64\xcd\x85\xb2\xda\x11\x0d\x97\x35\xb2\xc9\x03\xf1\x09\xc7\x88\x52\x97\xa6\xcf\xe5\x75\x3e\xc0\xf2\x13\x27\x9e\xfa\x3e\xa1\x6b\x96\x6d\x97\x59\xe8\x61\x58\xc9\xe4\x92\xe9\x05\xcb\xd5\x7b\xf9\x81\xe9\x8c\x47\xdb\xd6\xe6\xd9\x1f\x37\x76\x75\x7a\x01\x45\xde\x4b\xc3\x1c\x83\x29\x78\x89\x4d\xc2\xec\x5a\x92\x60\xa4\x9f\x73\x73\x36\x67\xa9\x1c\xdf\x55\x58\x83\xe8\xda\x32\x07\xd1\x01\x52\x40\xc5\xc2\x9e\xe9\x2e\x3f\x21\x72\x06\xa8\x28\x56\xb5\x8c\xda\x16\x28\x9b\x2a\x0f\x63\x8c\xe2\x3c\x6a\x78\x6e\x3d\x88\x30\x09\xdf\x23\x6b\x1c\x96\xc8\x7f\x30\xea\x6b\x88\x77\x8a\xe5\x1a\xfe\x5a\x70\x6f\xe5\x26\x2e\x9c\xe1\xba\x28\x5b\x66\x96\xf4\xf8\x40\x9d\x8d\x35\x36\x84\xdd\x74\x2c\xf0\x27\xa9\x0a\x99\x00\x8d\xe1\x2e\x47\x68\xd9\x34\x48\x9a\xec\x06\xdb\x65\xba\x8c\xcb\x5c\xc4\x40\xab\xcb\xd5\xb1\xc7\xdd\x1e\x0b\xe6\x56\x72\xce\xc6\xe2\x7c\x81\xc7\xa5\x2e\x78\xf2\x05\xfe\xf8\xf2\xc7\x16\xf1\xad\x81\xd9\x29\x17\x38\x46\x3b\xd8\x83\x0f\x6a\xb0\x7f\x49\x28\x9c\xaf\x63\x4f\x25\x5a\x6e\xd0\x67\x9e\xb1\xf7\x39\xcd\xe2\x07\xef\x42\xc3\x08\xe5\x3e\x14\xa5\x8f\xda\xce\xda\x43\x77\x22\x2c\x12\xe2\xe6\x3c\x70\x27\x42\x43\xba\xcd\x79\xf2\x9d\xc8\xd8\x52\xae\x98\xcb\x97\x05\x19\xd7\x3a\x85\xbe\xcf\xd5\xc0\x5a\x5b\x2b\x72\xc5\xaa\x29\xd3\x5c\xed\xa5\x15\x6b\xf2\x27\x9b\x32\xe6\x27\x61\x2b\x38\x8f\xa1\x8d\x59\x45\x89\xce\xe5\xe4\xc3\xf4\x1a\x05\x83\xe1\x39\x04\x34\x65\xef\x00\xbf\x26\x1a\xc7\xf5\x54\x6e\x2e\x06\xd0\x95\x70\xf3\x52\x00\xda\xf4\x5e\x8c\x86\x07\xbd\x67\x08\x8b\x5d\xaf\x03\x26\x59\xdb\xe4\x83\x76\x86\x9d\xf7\xc0\xa6\x47\xdb\xda\x91\xe0\xba\xde\xa3\x12\x13\x63\xfe\xde\xf0\xdf\x6e\xcc\x1d\x63\x1d\x2e\x75\xae\x4a\xff\x2b\xc3\x71\x43\x50\x3f\xb8\xab\x55\xbc\xd5\x3e\x58\x1e\x5e\x48\x31\xf8\x3b\xcb\x82\x8a\x25\xee\x69\x1f\x3d\xc1\x40\x55\x4d\x8e\x3b\x1b\xac\x0b\x3c\xdd\xde\x5e\x6c\x8f\xa2\xdb\xdb\x0b\xdf\x7f\x6f\xa0\x25\xe6\x29\x76\xf1\x16\x20\x83\x22\xa9\x1e\xdc\x37\xd4\x01\xb7\xf8\xb1\x58\x7c\x64\x22\x61\x38\x24\xbb\xba\x8e\x5c\x07\x3a\x3d\xc2\x65\xdf\xab\xdb\xb1\xab\xdb\x08\x59\xd0\xb0\xb6\xff\xa1\x6e\x23\x98\xc6\xd3\x79\x88\xb4\x0b\x04\x0f\x45\x37\x66\x91\xdc\x0e\xcb\x37\xce\x58\xeb\x67\x12\xc8\x9c\x19\x71\xce\xd0\xef\xce\x55\x1f\x0e\x9f\xff\xa2\x60\xc0\x90\x0c\xc8\x67\xab\xb0\x1b\x8d\xd5\x31\xaa\xc1\x82\xf9\x7d\x31\xda\x37\x0f\x05\x9d\x92\x82\x76\x0d\x2c\x4e\x47\xe3\x93\x0f\x55\x3f\x9a\x01\x0c\x6d\xbe\x87\xbd\xac\x8c\xe8\xba\x3f\x08\x75\x6b\x11\xb9\x1c\x02\x5d\x08\xbc\xae\x77\x40\x72\x59\xc9\x70\x84\xf5\x28\xa4\x50\x4e\x11\x18\x56\x0d\x59\x05\x1c\x1e\x0e\x8d\xb4\xe7\xa6\xe4\xe2\xe1\xd5\xc9\x85\x57\x5e\x6b\x60\xa5\x51\xa8\x16\x2b\x45\xd2\x9c\x70\xa2\x89\x0c\x9b\xa9\xc0\x71\xb2\x49\xbd\x56\xcd\x58\xcf\xd2\x8c\x45\x14\xfd\x56\xc9\x8c\xae\x50\xe5\x74\x5d\x1d\x45\x0d\x8b\x4c\xfb\x2d\xf5\xf9\x5c\x85\x45\x9a\x58\x67\x25\x6f\xd9\x68\xe5\x59\x51\xcc\xb9\x9e\xe6\x59\x2a\x21\x09\x45\x6d\xa2\x20\xd9\xaa\xe8\xe6\xb8\x88\xb1\xf6\xeb\xac\x8e\x59\x55\x29\xbe\x68\xf9\xed\x3c\x98\x07\xbf\x23\x20\x7c\x49\x43\x0a\x08\xb2\x4d\x4a\xa1\x25\x0f\x29\xba\xb6\xe8\xda\x12\x03\x3e\x30\x00\x05\xbf\x0e\x05\x1f\xb4\x05\x7e\xd7\x0e\x47\x27\x8f\x54\xdb\xf4\xed\x77\x38\xa8\x67\x69\xda\xf4\x8a\xb6\x1d\xa3\xd1\x66\x38\xa6\xd9\x6d\xf6\xd5\xfa\x08\x85\x5f\x80\xe0\x8e\x97\xc7\x5a\x59\x72\x58\xce\xb6\x7f\xe0\x05\x09\x6e\xfc\xf8\xb4\x79\x05\x9a\x0f\xd2\x56\xd9\xa9\x9a\x0f\xd3\x16\xdd\x3b\x92\x0a\x04\x8f\x54\xe3\xa1\x7a\x44\x3e\x01\xab\x43\xbb\x90\x32\x1d\x63\x95\x92\x6d\x94\xc1\x9f\x51\xfa\x40\x7f\x34\x30\x3b\xaf\x0c\xa6\x15\x03\x55\x68\xc9\xf6\x1e\xb8\xd2\x27\x6d\x2f\x59\x22\x65\xaa\xbc\xba\xf2\x90\xca\xa6\x92\xec\x07\xfd\xb7\x31\x8f\xb6\x2d\x89\x40\x20\x36\xde\x2c\xb7\xd1\xab\xcb\xa6\x50\xc7\x44\x2f\x45\x76\xb9\xb3\xcb\x93\xdb\xfd\xfd\xb8\x1e\xfe\xff\x51\x40\x7e\x9c\xb2\xee\xbb\xcb\x68\xb3\x17\x94\x95\xb8\x28\xca\xf0\x28\x86\xe5\x14\xed\x0a\xed\x72\x22\x29\x34\x17\xf8\x86\x4c\x6d\xb2\xd1\x4a\xc9\x93\xd0\xa8\x0f\x49\x72\xae\x78\xcc\x22\x9a\x9d\x44\x11\x4b\xec\xab\xb7\xad\x7c\x7b\xd3\xd8\xb5\x50\x88\x61\x49\x8e\x25\xb0\x5c\x6e\xaa\x06\xc6\xac\x18\xe3\xd1\xba\x2f\x70\x3c\xdd\x22\x9f\x73\x75\x35\x1f\x43\xbd\x1c\x3b\x4d\xa8\x90\x62\xbd\x34\xaf\x9b\xa5\x47\xd6\xe7\x36\x68\xca\x43\xb9\x99\x8a\xd8\x15\xe0\xc5\x62\x74\x98\xf6\xdd\x9c\x39\x54\xd7\x0f\x65\x36\x1f\x92\x0b\x39\x57\xe4\x1e\x6b\xa2\x1a\xf6\x5d\xe7\x59\x43\x3d\x26\xeb\x84\x8a\x95\xa1\x9d\x31\xde\x8b\xac\x87\x7c\x92\x14\x6a\xf4\xf0\x19\x8f\xa8\xd0\x65\x16\xcc\x55\x9e\x08\x96\x61\x6a\xb6\x60\x24\xeb\x82\x2a\x14\x76\x63\xae\xa0\x10\x5d\xe9\xc8\xe7\xdc\x8b\xe5\xac\x88\x50\x84\x92\x43\xb9\xea\x3c\x91\x0f\x92\xf7\xab\xfb\x37\x12\x5c\x73\x9a\x34\xe5\xf6\x6e\xdb\x44\xbf\x6b\xb5\x3a\xb1\x2b\x0f\x1e\x9b\x9f\xc2\x72\xff\x4c\x16\xfc\xf4\x92\xde\x31\xb4\xbd\x9b\x81\x6b\x4e\xa9\x3b\x33\xfb\xf5\xe5\x6d\x29\x5d\xd5\x97\x66\xe5\xab\xca\xb2\x36\x44\xeb\x66\xd3\x19\xae\x29\x20\x2d\xfe\x70\xf4\xdd\x83\x16\xd5\x54\xb8\xa8\x6b\x61\xcd\x25\x8f\x30\x3f\xaa\x57\x08\x0d\x18\x75\x23\x41\x34\xc6\xe9\x6c\x14\x60\x72\xaa\x1b\xa4\xac\x73\x1e\x0d\x09\x19\xcd\x90\xb0\x94\x69\x51\x13\x9a\x8b\x30\xb2\x30\xe0\x24\x5c\xd6\x09\x6f\x78\x69\x7e\xb2\x79\x61\x35\xd6\x00\x87\x14\x90\xd3\x7c\xb6\x2b\x8b\x0f\x85\xcf\xb7\x25\x5a\x9f\xfe\x74\x71\x72\xb9\x6d\x76\x04\xf0\xfe\x6f\xf2\x3f\x80\x91\xaa\x19\x02\x80\xe5\x83\xa2\x0e\xf8\xa3\x15\x62\xc0\xd9\xb4\x2d\x5d\x42\x98\x95\xe3\xea\x17\x4a\x97\x00\x08\xdc\x26\x5f\x02\xac\xaa\x35\x61\x82\xb7\x78\xc4\x4c\x68\x69\x5e\x3a\x85\xd6\xdc\x09\xaf\x76\xcf\x9d\xe0\x96\xf2\xa9\xb3\xa2\x44\xb1\x98\x4f\x47\xad\xcb\x39\x7a\xaa\xe5\xbc\xf9\xf1\x81\xcb\x79\x48\x1a\x37\xe8\xf8\xe9\x72\xb4\x6b\xbf\x42\xad\xbe\xed\x7d\xfa\x5c\xeb\xb0\x19\x49\x52\xb4\xf0\xd8\xd4\x10\x1a\x8b\xbb\xf3\x9c\x89\x88\xa6\x2a\x4f\x5c\x96\xc6\xd5\x77\x85\x47\x8e\x44\x2a\x82\x5f\x42\xb1\xb1\x84\x16\x19\x02\x42\x9e\x51\xe4\xd1\xcc\x51\x1d\x25\x5b\x1c\xad\x3a\x52\x3e\x1d\x3d\x1a\x2d\x47\x01\xb4\x1c\x85\xd0\x72\xf4\x4b\xa3\xe5\x27\xa9\xf4\xb9\x88\xb2\x75\xba\x0b\x2b\xfc\xb9\xb5\x7b\x0b\xba\x82\xac\x98\x54\x7a\xa0\xe5\xc0\x66\x74\x72\x83\x79\x98\x7d\xbc\x7d\xb8\x58\x6f\x11\x4e\x7a\x19\xce\x92\xd7\xb0\xce\x4a\xb7\x9a\x12\x07\x7c\x7a\xac\x37\x5d\x43\x2c\x52\x41\x5c\xbd\x73\xe3\x46\xf4\x17\x57\x80\x39\x7c\x48\x42\xa6\xf0\x22\x77\x39\xf1\xb5\x8e\x0f\x5e\xe8\x51\xe7\x42\xe7\x83\xd5\xd1\xe3\x16\xf9\x47\xc6\xd2\x93\x84\xaf\x76\xd8\xc5\xa2\x4b\x79\x42\x4b\x38\xc7\x86\xed\x57\x9a\x09\x6d\x9a\xd1\xc6\x5a\x86\x29\xea\x90\x6f\x98\xae\x99\x61\xbc\x00\xe9\x07\x2f\xea\x02\x20\xe0\x62\xbe\x95\x89\xff\x73\xb0\x5b\x95\x47\x4e\xdc\x4f\x68\xef\x6f\x72\xfb\x9b\xae\x6b\x07\xb4\x92\xe7\xe1\xd5\x0f\xaf\x77\x7f\xfe\xc2\x8b\xda\xe5\x38\xd6\x3a\xb6\x2d\x2c\xb4\x26\x57\x5a\xba\x7a\x20\xeb\x0b\xdb\xdd\x5d\xa1\x58\xd8\x36\x5c\xd7\x67\xaf\x71\x75\x01\xe6\x0b\x9f\xf1\x6a\x25\x92\xde\x2d\xea\x62\xbc\x1e\x90\xb4\xca\x5f\xd1\x2e\x1b\x84\x0c\x58\xcb\xaa\x8e\x9e\x6c\x55\x8f\x39\x80\xd7\xa8\x6b\xba\xce\x13\x36\xce\xb8\xcc\xb8\xee\x16\xad\x3f\xb7\x74\xae\xae\x38\x75\xdf\x36\x16\x83\x28\x69\x26\x74\x28\x69\x8e\x53\x82\x65\x79\x95\x80\x84\x4b\x78\xb7\x2f\xd6\x1a\xb0\xd0\x54\x76\x93\x4a\x39\x0b\x97\x42\xad\xfa\x0d\x04\x7b\x6d\x3e\xe0\xa9\x8c\x8b\xa4\xce\x4d\x74\xdf\x2a\xed\x70\x28\x74\x62\x04\x8f\x73\x21\x35\x2a\xba\x80\x3b\x17\x65\xe9\x2d\xcc\x49\x61\xdd\xcb\x43\xa3\x7a\x11\x3a\xce\x6d\x19\xbc\x1b\x16\x8c\x67\x9e\xd3\x80\x9f\xb2\xcf\x9a\xde\xd0\x3b\x39\x68\x80\x71\x2a\xcb\x13\xb1\x9e\xec\x1d\x94\x2b\xcb\xd8\xdf\x72\x06\xb1\xba\x6b\x1b\xc9\xb7\xa3\xab\xfe\xd7\x78\xeb\x24\x7f\x81\x8c\xdc\x7f\x3a\x1b\x57\xd5\x82\xe6\xb4\xa8\x9c\xa3\xe9\x20\xc7\xf2\x71\x4d\xd5\x04\x6c\x39\xae\x98\x89\xf5\x66\x20\xe1\x83\x94\x52\x5f\xe3\x74\x57\x7b\xf8\x9f\xce\xc6\x4f\x9b\xc0\x0e\x92\x93\x3f\x28\x77\x9d\x35\x76\x87\x06\x2e\xed\xdf\x6f\xc7\xef\xc8\x92\xa6\x10\xfd\x45\xb5\xa6\xd1\x02\xab\x82\x82\x75\x28\x6c\x17\xff\xd3\x59\x30\x9f\xc2\x66\x86\xbb\xdd\xad\xe2\x61\x93\xc4\xe6\xb7\xa0\x08\x8d\x7d\x0f\x77\xa5\x65\x46\xe7\xcc\x7d\x85\x8e\x11\xb0\x5b\xae\x8a\x9d\xe1\xe6\x9c\x55\xe7\x8e\x8b\xf8\x98\x4c\xf6\x5c\x0d\x88\x34\xc9\x33\x9a\x94\xdf\x14\x75\x4c\xd5\x31\xf9\xcb\x5f\xcd\x37\xe0\x75\x12\x7f\x42\xad\xa8\xfd\x76\x22\x06\x83\xc1\x44\x3c\x23\xd6\x8a\xef\x92\xff\x68\xb6\x4c\x13\xaa\x99\x3a\xbc\x8b\xe3\x41\x94\xc5\x6a\xb8\xa6\xcb\x64\x22\x68\xca\xed\x08\xc7\x84\xa6\x9c\x7d\xd5\x4c\x60\xde\xde\xbb\x1f\xd4\x90\xcb\xc3\xd5\xab\x89\x40\xd8\x4e\x73\xa5\xe5\xf2\x9a\x21\x5d\x38\x63\x33\x2e\x38\xe6\x6f\x73\xa1\x59\xb0\x14\x48\x73\x6d\xa3\xae\xac\xac\x04\xe6\x66\xce\xd4\x30\xca\xe2\xe1\x86\xee\x79\x22\x0c\x3b\x0b\x7d\xe7\x99\xcc\xd3\x63\xd2\xd0\x0c\xc7\xae\x22\xec\x3d\xcc\x73\x89\xf3\xa0\xbf\x36\xfe\x6c\xd8\x90\x3f\x36\x35\xb9\x28\x12\x19\x3b\x34\x07\xe1\xb5\xfb\xc8\x05\xc4\x3a\x85\x1a\xc1\x64\x69\xc6\x60\xf7\x3f\x8a\x3b\x21\xef\xc5\x3b\xce\x92\x58\x59\x89\x08\x36\x2a\x92\xe6\xb4\x9c\xa2\x12\xde\x7c\xb3\x72\x9b\x66\xfe\x18\x58\x94\x19\x4c\xc3\x7c\xd1\x82\x2d\x69\x71\xad\x65\xca\xc4\xc9\x78\xf4\xe9\xcd\x4d\xf5\xfb\x46\xcb\xa0\xb7\xa5\xd5\xa3\x5c\x25\x0b\x66\x4c\xab\x51\xf7\x2b\xc5\x5a\xd0\x58\x6c\xe1\x28\x6a\x2d\x64\x0c\xd6\x29\x74\x30\x9d\xad\x9c\x19\x49\x19\x2f\x84\xb9\xa3\x99\x19\xc7\x4b\x88\xba\x62\x19\x56\x14\x98\x0b\xfe\xf7\x62\xf0\x22\x96\x12\xce\xe6\x06\xb3\x58\x28\x52\xbd\x04\xbb\x4b\xba\xb6\x16\x33\x92\x0b\x6f\x40\x4c\xb0\x36\x24\x1f\x24\x44\x43\xcc\xe4\x31\x59\x68\x9d\xaa\xe3\xc3\xc3\x39\xd7\xee\x34\x5b\x35\xa9\x5e\x1f\xc2\x53\xca\xa7\xb9\x96\x99\x3a\x8c\xd9\x8a\x25\x87\x8a\xcf\x07\x34\x8b\x16\x5c\xb3\x48\xe7\x19\x3b\xa4\x29\x1f\x00\xec\x60\x4e\x54\xc3\x65\xfc\x2c\xb3\xc7\x5f\xed\x87\xc8\xc4\x26\x01\x81\x53\xda\xb6\x0d\xe6\x8c\x62\x48\x1d\x76\xb6\xa1\x12\x05\xb6\x5d\x9e\xdb\xeb\xf3\x9b\x5b\xe2\x66\x0f\x26\x13\x43\xe4\x97\x3d\x55\xb9\x0f\x06\x69\x5c\xcc\x98\x4d\x1f\x03\xa1\x8b\xda\xaf\xc7\x0d\x99\xc4\xc0\x6d\xb3\x3e\xaa\xca\xa7\x4b\xf0\xe1\xc1\x67\x18\x83\x5c\x4e\x81\x7b\x80\x6c\x9b\x69\x4c\x35\x8b\x21\xee\xe5\x94\x2e\x59\x72\x4a\x15\xfb\xe6\xbb\x60\xb0\xad\x06\x06\xb7\xdb\xee\x43\x85\x44\xd5\x9b\x6f\x1a\x9c\x0b\x8a\x54\x7e\x5a\xec\xf0\x34\x4d\x93\xf5\x95\x78\x27\xb3\x7b\x9a\x75\x72\x19\x27\x95\xd6\xe8\x6b\x02\x4e\x04\x5a\xe2\x48\xe8\x73\x52\xd6\xf3\xe6\xae\xb8\x74\x50\xee\x05\x8e\x04\x46\x72\xd9\x4a\x76\x64\x29\x62\x79\x29\xf5\xad\x61\x63\x3a\xfd\x78\x8a\x96\x1e\xd4\x05\x2b\x6a\x2d\xd5\x10\x0e\x54\xe6\xaa\x81\x75\x84\xb9\x23\x7f\x69\x8e\x54\xcc\x0d\x3d\xc8\x64\x3e\x5f\x14\xae\x76\x04\x8c\x1d\xfb\x60\x8c\x16\xe8\x78\x4c\x80\xeb\xe2\x62\x1e\xb4\x6a\x83\x1d\x9b\x2a\xeb\x3d\x12\xb9\x1a\xbf\x68\x72\xb9\xcd\x5c\x36\xfb\x10\x86\x09\x6d\xc8\xda\x0c\x19\x3b\x62\x67\x8f\x33\xbc\x68\x09\x5a\x10\x30\xac\x61\x66\x71\x62\x59\xf0\x06\x01\xbf\x36\x3f\x24\x81\x63\x50\x2e\xce\xfa\x0c\x4f\x19\xb1\x6c\xe6\xae\x7b\x8b\xb5\xc9\xbb\xf6\xf5\x16\x32\xab\xc7\x60\x6c\xb5\x9e\x31\xb6\xa8\xb9\x65\x5a\xc9\x39\x8d\x16\x18\x40\x6e\x13\x08\x86\x99\x43\xd7\x1b\xd7\x6d\x23\xc3\xa2\x8c\x6b\x96\x71\x8a\x59\xf4\xbd\x48\x7a\x28\x33\x10\x39\x11\x04\x8e\xfe\x4e\x9e\x31\x95\x35\x4c\xf6\x4e\x88\x91\x05\x49\xa9\xd0\xf5\x3d\x7d\x42\xa0\x04\xf9\x50\x52\xe4\xae\x25\x6f\xa5\x5e\xd8\xfc\x81\x32\x1b\xa0\xd5\xa8\xb0\x64\x8f\xed\x7e\x09\xff\xbb\x4c\x36\xa6\xac\x01\x6e\x94\x65\x4c\x44\xee\xe4\x0d\xbc\xaa\x55\x32\xd7\x98\x91\xcb\x65\x53\xc2\x26\x46\xd6\x98\x4a\xa8\xf2\x08\xfb\xd1\x00\xb0\x88\x8b\x22\xf4\x1e\xe2\xc1\x40\x36\x99\x08\xdc\x3c\x57\x90\xa5\x8e\x89\x06\x17\x55\xb3\x99\x82\xcd\x01\x38\xcb\x12\x1c\x58\xf1\xcb\x05\xd6\x4f\x26\x93\xbd\x4b\xa9\xcd\x7f\x86\xe4\x24\x49\x6c\x52\x04\x7f\xf4\xf0\xc8\xa6\x37\x04\x29\xc3\x81\x2a\x4a\xfc\x51\xcd\x15\xd4\xf5\xc2\x54\x64\x76\x29\x5a\xe2\x98\x43\x72\x62\x2b\x52\x34\x60\x17\x0e\x27\xa6\x0a\x36\x07\xd4\xe6\x0f\xb0\x8b\x36\x28\x82\xe5\x98\x3f\x3c\x47\x02\x8a\x83\x37\xe3\x15\xb0\x1f\x06\xd1\xd1\x90\x12\xc4\x70\xfd\xb6\x4e\x07\x2e\xda\x94\x30\x13\x3f\xdd\xa5\x61\x62\xa6\xb4\xad\xba\xd8\x38\x4a\xcd\x21\xb3\xe8\x50\x5c\xe8\xc0\xf6\x59\xf7\x25\x73\x31\x9b\x86\x05\x25\x8a\x37\x3f\x31\xaf\xb4\x0e\x07\x2b\x6e\x85\x0c\x62\x2b\xe5\x40\x9d\xb6\x1b\x7b\xf9\x5a\xda\x6e\x90\x81\xcb\x7a\x67\x1b\xae\x2e\x9d\xa9\x78\x66\xf8\xf3\xc6\x2c\x1a\xe5\xa7\x40\x0c\x2d\x88\x80\x97\xee\xc0\xa6\x94\x2a\x2a\x6d\x1b\x4c\xc9\x8c\xcf\x0d\x1e\x9a\x28\x80\xfb\x00\xff\xf5\xdc\x1c\x21\x30\x55\x23\xa5\xd2\x2f\x3c\x1f\x67\x7b\x45\x20\x15\x0c\xcc\x1d\x7e\x3c\x02\x28\xb3\x21\x20\x53\xe6\x1e\x62\x1b\x10\x0e\x07\x79\x03\x37\xed\x83\x22\x95\x44\x91\xbe\x40\x01\x85\xda\x8c\x33\x48\xb0\xe1\xd2\x4b\xd2\x25\xb3\x59\x31\x74\x83\x7a\xa7\xfc\x40\x06\xac\x90\x5b\xb7\x73\x95\xf3\x18\x88\xa9\x4f\x81\x3b\x90\xea\x96\xed\xf0\xe5\x33\x20\x48\x07\xdf\xc9\x8c\x54\xc4\xc0\x83\xc6\x37\xc0\x7d\xb0\xac\x62\xe0\x48\x2d\x6d\x06\x2f\x17\xa6\xe7\x1f\xb6\x84\x2f\x79\xe7\x86\x81\xd2\x2d\x41\xc7\xbf\x46\x9c\x70\x0f\xbf\xc5\x0e\x77\xec\x19\x5e\xe4\xca\x3a\x1b\x97\xbf\x8f\x12\xed\xf3\x17\xc1\x52\x39\xe5\xe7\x97\x41\x40\x45\x50\xbf\x31\xef\x76\x46\xd0\x90\x89\xf8\x80\x65\xb4\x0f\x6a\xd6\x18\x90\xf7\x0f\xc0\x81\xa6\x7d\x2f\x3b\xa0\xf5\x97\xe8\xe5\x6f\x0b\x15\xc8\x89\x32\xa9\x80\xe7\xdb\xf6\xca\x36\x3c\x1c\xc5\xdc\x9d\x0f\x00\xc1\x34\x0a\x6d\x34\xb5\x9e\x98\x82\xd9\xca\xd9\x41\xc2\x68\x04\x4d\x9d\xf1\x08\xcb\xd3\xb4\x2f\xc3\x3d\x81\x45\x66\xbb\xb5\x57\x8b\xa0\x4e\x17\x0b\xd2\xd7\x81\xed\x2a\x5d\xf4\x4b\x4a\x42\x7a\x13\x51\xa4\xc6\xc6\xac\x7c\x2a\x9f\x9a\xe5\x37\xbe\x3a\xa4\x95\x8f\xf4\xe6\xdd\x0a\xd3\xad\x9e\xc8\xe5\x47\x48\x7d\xb9\xdb\x9e\x60\x87\x22\x27\x45\x95\xfd\x72\x2b\x36\x4d\x3a\x9e\x17\xb3\x8f\xff\x72\xb8\x68\x2a\xf3\x5e\x7e\xea\xc8\x28\xca\xbb\xb7\x60\x63\xdc\x14\xab\x57\x7e\x10\x1d\xe4\x06\x4a\x58\xc2\x29\x55\x72\x59\x56\x3b\x57\x18\x78\x69\x0b\x88\x43\x1e\xe5\x75\x73\xf9\xf8\xf2\x53\xab\x45\xab\xab\x89\xdc\x8b\x52\xd6\xc8\x51\x59\x42\x6e\x04\x94\x4e\xaa\x08\x6f\x98\x35\x86\xdc\x9e\x8e\x27\x7b\x58\x01\xf8\xe3\xd9\xb8\xa1\xe2\xac\xfb\x6c\xb3\xab\xcd\x49\x48\xcb\xcf\x16\xe9\x48\x37\x1b\x77\x1f\x94\xee\x14\xa5\xe5\x67\xf7\x64\xa5\xe5\x67\xdb\x03\xb9\x3b\x73\x79\x59\x76\xea\x38\x96\xdb\xf1\x57\xf6\x64\x82\x8d\xb5\x18\x18\xa9\x30\x5a\x99\xa6\x3a\x61\x9a\x17\x69\x49\x71\xae\xf6\x31\x0b\x6e\xa9\xf5\xa8\x6c\xb7\x67\xe9\x6e\x57\x76\xb2\x57\xdc\xd8\xae\x67\xa5\xfb\xb1\xdd\xe2\x59\x01\xeb\x92\xcb\x82\xf5\xdc\x13\x42\x02\x99\xa2\xea\xcb\xf2\xb2\xbb\x32\x45\x6c\x62\x7e\x3f\x59\xf0\xa1\x53\x28\xdf\x16\x09\xb7\xdb\x47\xe5\xbe\xf8\x6e\xaf\x0e\xd8\xb0\x10\xcb\xca\x61\xc0\x6a\x67\x5b\xe2\x8d\xca\x8f\xcb\x0e\x85\x0c\xdc\xb6\x14\xac\x93\x02\xd8\x94\x53\xbb\x50\xb0\x8e\xb5\x97\xe4\xad\x46\xc1\x26\x48\xc3\x26\x96\x8a\x4d\x90\x8e\x4d\x0c\x25\x6b\xe5\x79\x7a\x5a\x06\x9f\xad\x68\x99\x7a\x80\x94\xdc\x2d\x1c\xb7\x6a\xfa\xca\x4f\x50\x38\x26\xcf\x15\x63\x4e\x45\x06\xa4\x0c\xcb\x11\xa9\xb5\xd0\xf4\x6b\xd8\x75\xb2\xfc\x4c\x26\xad\xb2\xb5\xe5\x21\x9b\x64\xe7\xf6\xb1\x9d\x66\xcc\x13\xad\x65\xb6\x29\x32\x9b\xeb\x76\x29\x35\xda\xb5\x8f\x1b\xea\x2f\x79\x48\xb0\x21\x8b\xce\x9c\xd5\xf1\x2a\x20\x7a\xbc\xd7\xa4\x7d\xf4\x29\x4b\xe4\xfd\x8b\x83\x2a\xc8\x1e\xb2\x11\xab\x84\x6b\xc5\x92\x22\x5b\x7c\x07\x1e\x50\x19\x26\xb1\xce\x33\x23\xfa\x5e\xc2\x59\x83\x90\x57\xf7\x1b\x12\x08\xf3\x08\xad\xcb\x12\x50\x1d\x7b\x77\x25\xdc\xea\x95\x85\xb7\x54\xbf\x32\x4f\x4a\xb2\xe5\x3c\x41\xb5\x60\xdb\x77\xbf\x09\xf7\x0b\x99\xd8\x4d\x3a\x86\x2d\x9a\x4c\xca\x07\xf9\x0f\x40\x5d\xfe\x63\x41\xd5\xf3\xe5\xfa\x4b\x42\xa7\x2c\x79\x01\x74\xc7\x12\xf9\xae\xeb\xec\xc5\xd9\x99\x75\xc3\x21\x43\xf8\xd0\x35\x61\x60\x9d\x6f\x12\x16\x9b\x79\xb7\x3c\x6f\x7e\xdc\x9e\xcb\x5a\x4e\x00\x38\x00\xd7\x41\x8a\x4a\x54\xbb\xa4\xad\x0f\x06\x2e\xb9\x71\xc5\x9b\x8b\x32\x50\x34\xe5\x3f\x2f\x3f\xed\xeb\x2d\x96\xd4\xb5\x9c\xae\x4b\x2e\xe0\xe4\xb1\xd9\x8c\x45\x36\xff\x91\x55\x25\x24\x40\x5a\x6d\x2a\x13\x70\x95\x28\x56\xd2\x0d\xbc\x90\x62\xe0\x62\x75\xd1\x52\x8b\x39\x09\xac\x5e\x04\xa2\xe8\x7d\x25\x05\x84\xc3\xe1\xe8\x5b\x28\xed\x36\x51\x53\x56\x86\x7e\x0a\x21\xde\xc6\x8e\x9e\x44\x91\xcc\xc5\x2e\xbc\xd7\x4d\xb5\xe3\x2f\xc6\x83\xd5\xc8\x72\xfb\x98\x01\x95\x27\x25\xa9\x8c\x8b\x14\xca\xc0\xd0\x15\x24\xda\x22\xa3\x83\xf4\xe2\x8a\x5b\x4f\xdb\x56\x4a\x67\x42\xaa\xfe\x25\xcd\x9f\xaa\x4c\x00\xb5\x02\x1e\x8d\x6e\xf2\x10\x94\x77\x0f\xd9\xa4\x69\x0e\xa0\x7d\x2b\x6c\x93\x12\xe3\x86\x1a\x2b\xeb\x7c\xce\x0b\x55\xa5\x61\x80\x3b\x6e\xfe\x76\xcc\x1d\xd9\x41\x05\x41\xb6\xe5\x94\xc8\xb6\xdc\x12\xd9\xbc\x5f\x9d\xfc\xd2\x7f\xdf\x9d\xae\xc8\x4a\xa5\xd6\x0d\xe9\xbe\xc3\xe7\x90\x8c\x3a\x24\x0f\xf3\x29\xcd\x10\x60\x5d\xb8\xf1\xad\x0a\xa5\x2c\xa2\x6d\x2d\xc4\x46\x7b\x7c\xf5\x73\x72\x79\xb6\x1f\xb4\x8d\x57\x3f\xbb\x69\xb4\x9a\xb2\x10\xb8\x8f\x4b\xdb\xb9\x1b\xd7\x8d\x7d\x1e\xcd\x75\x63\x4f\x34\x10\x17\xf4\xd2\xab\x66\xee\x26\x82\x32\x4c\x05\x5e\x83\xde\x12\xde\xa0\x9d\x4c\x77\xfd\x78\x6d\xcb\x75\x07\xcc\x59\x0e\x7f\xcf\xd5\x8b\x3a\xfb\x6d\x2b\xa9\x8b\x36\xab\x23\x01\x5d\xd9\x21\x40\x05\x59\x62\x1d\x24\xfb\x8a\x60\x74\x34\x48\xcc\x0e\xdf\x51\xe1\xb0\x54\x20\xa3\x0b\x17\x55\xcb\x96\xb9\x39\xee\xb0\x1e\xf8\xac\xfb\xc1\xa6\x45\xa1\x03\xcd\x97\xcc\xb0\xbf\x4e\xd9\x2b\xb3\xfa\xdb\x8d\xa0\x8f\x6d\xbc\x7f\x5c\x68\x42\x3b\xac\x95\xe6\x3c\x99\x0d\xf4\xd7\x88\x7a\xa3\x02\x0b\x52\x38\x47\x02\xeb\xd8\xd1\xce\xb2\xec\xf4\x6c\xee\xfe\x6a\x86\xa2\x98\xc0\x24\x5f\x9e\xe3\xee\xab\x6f\xd7\xe6\xd9\xe0\x9f\x88\x08\x78\xf6\x99\x07\x30\x04\xa6\x5b\x60\x7d\xf8\x7d\x73\x19\x8b\xea\x07\xa9\xac\x5d\x21\xdc\xe4\x84\xcd\x34\xda\xb1\x4a\x17\x26\xbc\x3d\x5b\x28\x69\x88\x7f\x11\x0b\x8f\xa3\x7d\x55\x42\xf6\x8b\x52\xd0\xee\x36\x0b\xad\xd3\xed\xfc\x19\x7e\xba\xbd\x1d\x97\xf6\xfa\x46\x27\x06\x73\x4a\x4c\xd3\x66\xd0\x9d\x97\xe3\xe3\xfc\x17\x96\x4c\x2f\x64\xbc\xc3\xcb\xf0\x01\x3b\x3c\x2d\xd7\x8e\x4b\x46\xa2\x8e\xeb\xf6\x9c\x38\xcd\x98\x58\x4c\xd4\x9c\xc7\xee\x41\x21\xaa\x2b\xc6\x51\x1c\xb4\xcf\xd9\x70\x3e\x24\xef\xcf\x6f\x0f\xc8\xf8\xe3\xed\x01\x61\x3a\x1a\xbe\x20\x1f\xf2\x44\xf3\xb4\xcb\xce\x61\x51\x04\xef\xfe\xd5\xf5\xbe\x11\xc3\xe6\xe0\x47\xf8\xaf\x65\xb7\x4a\xa9\x5e\xec\xb0\x8f\xfb\x63\xd3\xfe\x5b\x6c\x63\xd7\x0e\x76\x53\x14\x7f\x07\x01\xcc\x61\xb1\x55\xb8\x4c\xb7\x17\xdb\x6e\x06\x21\x6c\x38\x3f\x26\x03\xc2\xbe\xd2\x48\x1f\x93\xc3\x99\x94\x64\x60\x9d\xc4\x8e\xc9\xe1\x94\x66\xe4\xf2\xea\xf6\xfc\x18\x1d\xd0\x98\xd0\xd9\x9a\x2c\xbb\xd8\xf3\xab\xcb\x8b\x3f\x5b\xca\xb9\x26\x8c\x63\x45\x53\x32\xd9\x83\x49\x50\x8b\x6c\xfe\xc4\x59\x9c\xae\x63\xd8\x54\x75\xad\xfc\xac\x68\xc2\x63\x5a\x28\xfb\xb0\x1e\xab\x61\x9f\xb8\x0e\xe5\xfa\x2b\x3f\xdb\x9c\xb9\xea\x21\x30\x28\x86\x2a\x6b\x95\xfa\x1e\x80\x78\x57\x6b\x6d\xbb\xb7\x6a\xa4\xc1\x73\x7b\xca\x1c\x22\xac\x1e\x71\x26\xb3\xe5\xb1\x43\xfb\x24\x7f\xf9\xf2\x4d\x64\x06\x86\x7f\xb1\x63\x97\x99\x75\x1b\xb5\x17\x1e\x35\x80\x0a\x86\x33\x04\x23\x2b\xb6\xb0\x1c\x7a\x60\xf1\xfd\xa8\x19\x70\x8c\x0e\x57\x93\xad\x99\x0e\x62\x11\xf0\xb4\x62\x64\xda\x54\x19\xe0\xe1\x83\x6e\x27\x4e\x6c\x45\x90\xba\x87\xe2\xd1\x72\xcb\x37\x73\x74\xfa\x61\xbc\xad\x07\x08\x10\xa3\x66\xd8\x7d\x2a\x45\xdd\xa9\x8f\x00\x5a\x9b\x9c\x26\x06\x1a\x05\x53\x16\x35\x35\xc1\xb2\xd6\x22\x5f\x79\x35\x8e\x2b\x3c\x2d\x9f\x55\xed\x53\x08\x34\xf7\xb2\x9e\x99\x79\xda\x58\x5b\xb0\xa7\x9b\x46\xab\xa3\x16\x3d\xe5\x56\x27\xd1\x2c\x6d\x87\x77\x1e\x38\x13\x29\x7c\x2c\x01\x52\x22\xa8\x71\xb1\x8b\xb0\x06\xd9\xe2\x0d\x82\x31\x5e\x04\x5c\x54\x21\x8b\xb3\x8f\xab\x32\x16\x93\x12\xcd\xa2\x85\xe0\x11\xed\xf0\x4a\x02\xb5\x28\xaa\xff\xf9\x32\x95\xaa\x74\xa4\xc3\x2a\xbf\xfb\xaa\x2c\xd1\x33\xe3\x19\xbb\xa7\x49\xb8\xd8\x48\xf9\x41\x6a\x61\x95\xb2\x58\xe8\x47\x12\x26\x66\x12\x23\x59\xac\x8b\x5e\xf7\xd5\xe8\xb4\xe1\x41\xb3\xc7\x6f\x86\x19\x66\x48\xfc\x94\x66\x5d\x26\xb0\xa2\x72\xdb\x0f\xe8\xe5\x0d\x2b\x84\xb1\xce\xa3\x85\x24\xd7\x36\x84\xf5\x39\x1f\xb2\x21\x49\xb9\x98\xab\x76\x1b\xd8\x56\xeb\xdd\x82\x18\xa4\xe1\x40\xb0\x06\x84\x8c\xc6\x2e\x20\xec\xd1\x8e\x61\x15\xe5\x16\xf2\xe3\x3e\x96\xc7\xce\x32\xd6\x88\x85\x6d\x12\x57\x86\x43\x7a\x1a\x16\xe7\xca\xb0\x79\x6e\xbd\x65\x9e\x51\x2f\x0b\x71\x51\x64\xbb\x7d\x71\x8f\x22\x1a\x65\xec\x75\xfb\x23\x57\x42\x38\xde\xf6\x55\xdc\xf6\x59\xaa\x46\x24\x95\xf0\xd8\x50\x34\xb4\xda\xdd\x31\x1b\x3c\x4f\x52\xca\xb3\xe6\xca\x83\xe5\xc7\x88\xac\xb6\x34\xbe\x8f\x53\x3a\x95\xb9\xde\xe2\x21\x79\x2a\xc9\x51\x48\x6d\x6e\xdf\x76\x27\xe3\x12\x1b\x77\x78\xf4\x40\x93\x76\xcf\xba\xfe\xc1\xe8\x1f\x8c\xdf\xf6\x83\x21\xa4\x76\x6c\x55\x23\x5a\xda\xbd\x6e\xb6\xf4\xb7\xd9\xce\xd3\x66\xc3\x21\xd4\xb1\x7c\x1d\x3e\xa1\xb6\x59\x33\xc2\x3a\xee\xf1\x16\xae\x3d\x0f\x73\xea\x49\xff\x55\x91\x3b\xd9\xf3\x71\xfb\x84\x6f\xff\x86\x61\x0b\x34\xbc\x3e\x27\xe0\x70\x32\x84\x53\xcf\xb3\x36\xcd\xbc\xf5\xce\xb5\xfb\x7c\x0e\xa1\x46\xd7\x10\x29\xe7\xa2\xbe\x50\x6d\xfe\x7c\xca\x22\x9a\x2b\xeb\x13\xd7\x61\x4a\x28\x40\x8c\x58\x06\x63\x14\x7e\x75\x2f\x50\x15\xef\xea\x78\x54\xbc\x04\xbb\x9e\x58\x74\x1f\x3c\xf6\x3d\xe0\x0e\x7c\xff\x37\xfc\x03\x24\x95\xca\x5f\xab\xa3\xf2\xef\x9b\xd3\x5b\xfc\xb5\x79\x1a\x3b\xe2\x05\xd7\xcc\x39\xd9\x41\x19\x55\x38\x20\xce\x28\x8b\xa5\x26\x5f\x0d\x5e\x7f\xff\x7d\x8b\xca\xff\xdb\x1d\x7b\xd5\x54\x52\x02\x3f\x55\x43\x6b\x51\x52\x62\x8b\xa8\xb4\x86\x6a\xbd\xfe\xac\x7d\x40\x5a\x1f\x90\xb6\x85\xd9\xb3\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x69\xc5\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x4d\x2b\xe9\x69\x59\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\x86\x9f\x3e\x20\xad\x0f\x48\xab\x7f\xfa\x80\xb4\x3e\x20\xad\xf8\xf4\x01\x69\x7d\x40\x5a\x1f\x90\x16\x1c\xb4\x0f\x48\xf3\x70\xd1\x07\xa4\xf5\x01\x69\x7d\x40\x5a\xf5\xf3\x4b\x06\xa4\x75\xd4\x3a\xc7\x2c\xbe\xa1\xdf\x1e\x5c\xd5\xdc\xde\x8d\x07\xa4\xef\xae\xde\xaa\x3e\x7f\x77\x9f\xbf\xbb\xcf\xdf\xdd\xe7\xef\x0e\x83\xd7\xe7\xef\xee\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xf2\xd3\xbb\x4b\x95\x9f\xde\x5d\xaa\x77\x97\xfa\x97\x72\x31\xe8\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\x0a\x36\xfe\x8d\xd1\xb2\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x7a\x77\xa9\xde\x5d\xaa\x77\x97\xea\xdd\xa5\x02\x9f\xde\x5d\xaa\x77\x97\x2a\x3e\xbd\xbb\x54\xef\x2e\xd5\xbb\x4b\x05\x07\xed\xdd\xa5\x3c\x5c\xf4\xee\x52\xbd\xbb\x54\xef\x2e\x55\xfd\xf4\xf9\xbb\xfb\xfc\xdd\x7d\xfe\xee\xca\xa7\xcf\xdf\xdd\xe7\xef\xee\xf3\x77\x6f\x35\x43\x9f\xbf\xbb\xcf\xdf\xdd\xe7\xef\xee\xd3\xb1\xf6\xe9\x58\xfb\xfc\xdd\x7d\xfe\xee\x3e\x7f\x77\x33\xfc\x7d\xfe\xee\xfe\xc1\xe8\x1f\x8c\x3e\x7f\x77\x9f\xbf\xbb\xf2\xe9\xf3\x77\xf7\xf9\xbb\x6b\x9f\x3e\x7f\x77\xb3\x00\xd9\xe7\xef\xee\x03\xd2\xfa\x80\xb4\x3e\x20\xad\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\x3e\x20\xcd\xff\xf4\x01\x69\x7d\x40\xda\xbf\x54\x10\x47\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\xb0\xf1\x6f\x8c\x96\xf5\x01\x69\x7d\x40\x5a\x1f\x90\xd6\x07\xa4\xf5\x01\x69\x7d\x40\x5a\x1f\x90\x16\xf8\xf4\x01\x69\x7d\x40\x5a\xf1\xe9\x03\xd2\xfa\x80\xb4\x3e\x20\x2d\x38\x68\x1f\x90\xe6\xe1\xa2\x0f\x48\xeb\x03\xd2\xfa\x80\xb4\xea\xe7\xbf\x77\xfe\xee\x6d\xdc\x0e\xc2\x5b\xdd\xce\x1d\xcc\xd0\x4b\xa4\x94\xd8\x43\x50\xe7\x0a\x65\x11\xa4\x8f\xf6\xd9\xc6\x24\xd8\x52\x54\x6c\x85\x0d\x4b\x0a\xef\x0a\x24\x1a\xef\x5a\xc7\x95\x69\xd4\xf2\x26\x55\x0f\xb2\xc4\xd6\xc1\x55\xa0\x2b\x21\xe6\x82\x06\xe5\x8f\x19\x14\xac\xa5\xf1\x10\xf5\x41\x85\x36\x7b\xc1\xe7\x46\xb8\x9e\xec\xc1\x78\x93\x3d\x60\x01\x6c\xdb\xd0\xd0\x74\x66\x84\x42\x0d\x4c\x27\x0c\x90\xc8\x7b\x96\x21\x34\xe8\x9a\xe9\x01\xa7\x88\x5c\x72\xad\xcd\x5b\xc2\x5d\x54\x4f\x68\xd0\x48\x0a\xc5\x31\x15\x3b\xea\x2d\x27\x7b\x5c\xcc\xb8\xe0\x9a\x4d\xf6\xc8\x80\x80\x43\xa0\xb7\x1c\xf7\x52\x59\x38\x49\x42\x95\x1e\x92\x62\x65\x41\x94\x18\x58\x79\xcc\x84\xe6\x11\x4d\x2c\x80\xf5\x71\xb8\x20\x34\x49\x17\x54\xe4\x4b\x96\x79\xed\xe0\x00\x84\x46\xb5\xef\x93\x55\xb1\xa1\xd7\x4b\x50\xe6\xc6\xc3\x21\xf2\xe5\x74\x53\xfb\x99\x66\xec\xec\xf2\xe4\xb6\xeb\x78\x8c\xb1\x19\xe1\x22\xe6\xd1\xff\xcf\xde\xbb\x37\xb7\x8d\x63\xfb\xa2\xff\xdf\x4f\x81\xb1\xf7\xa9\x24\xe7\x9a\x92\x9d\xd7\x64\x3c\x95\xba\xe5\xb6\x9d\x6e\xdf\x4e\x1c\x1d\xdb\xe9\xde\xbb\x5a\x73\xb3\x21\x12\x92\xb0\x4d\x01\x1c\x00\xb4\xe3\xc9\xe4\xbb\xdf\xc2\x8b\x04\x49\xf0\x21\x5b\x4e\x9c\x0e\x58\x35\x3d\xb1\x08\xe2\x8d\x85\x85\xdf\xfa\xad\x05\x8d\xec\x14\x1e\x28\x4b\x1b\x5e\xbd\x2a\x55\xc0\x0c\xcd\xa9\x5f\x75\x83\xe4\x06\xc8\xec\x5a\xeb\x3a\xa3\x34\x45\x4d\x62\x46\x87\xde\x5e\xd3\xb2\x2e\x5c\x9c\x4c\xcf\x6a\x07\x2d\xb3\x0b\x2d\xc3\xf1\xa5\xfe\x0f\xcd\xbd\x02\x48\xb6\xad\x86\x7a\x38\x33\xc1\xf8\xcb\x38\x63\x28\xa8\x55\x3a\xda\xb1\x9b\xb2\x1e\x52\x77\x4b\x53\x7a\xad\x7b\x4d\x43\x78\x05\xa8\xa5\x35\xeb\xd7\x1a\xdf\xd1\x0b\xfb\x63\x8a\x05\x62\x50\x41\x2b\xbe\x9c\xa7\x53\x10\x69\x7f\x31\x39\xab\x57\x19\x64\x98\x53\xb2\x03\x94\xd3\xa8\xc5\x65\x6c\x96\x73\x4a\xc1\x0c\x32\x05\x16\x15\xc5\xfd\x65\xcd\xe2\xca\xf2\xa4\x6a\x85\xfe\x99\xc3\xf4\xef\x9a\xe2\x6c\x8f\x0a\x78\x6e\xce\x08\x98\xab\x34\xd6\xf4\x51\x14\xe9\x17\x22\x9f\x55\x3d\x60\x49\xcc\x9b\x95\xff\x8c\xf5\x3f\x47\xa3\x11\xf8\xe2\xd4\x40\xb0\x1c\x59\x4f\xa5\x82\xec\xab\xcb\xf8\x4f\xe0\x77\x2e\x30\x36\x9f\x9e\xa2\xca\xba\xca\x06\x60\x32\xa0\x72\xbe\xc2\xd6\xac\xaf\x2a\xac\xab\x82\xfe\x21\x71\xea\xbc\x84\xfc\xb1\xca\xef\xa3\xdc\x3a\x9e\x94\x45\x5f\x14\x25\x43\x51\x8e\x8e\x33\x32\x7f\x51\x93\xd4\xbb\xe9\x9a\x2c\x0a\x7c\x98\xce\x55\x5a\x05\x0f\xaa\xff\xcf\x77\x77\x9f\xbe\xd4\xff\xd5\x6f\x8a\x6f\xce\x97\x94\x89\x28\xc6\x2c\xce\xb1\x50\x6a\xad\xf9\xc8\x57\xd0\xbf\xff\xdd\xf9\xb5\x32\x24\x89\xc7\x3a\xcd\x93\x22\x51\x06\x19\x32\x47\xa2\x05\xa3\x79\x26\x8f\x44\xd3\xa9\x80\x69\xfa\xd8\x6b\x10\x34\x77\x0a\x68\x5a\x50\x21\x2f\x6c\x6e\x76\x0e\xc3\x34\x75\x30\x3e\xb5\x40\xdf\xea\xf9\xa0\x0f\xb1\x2d\x42\x4e\x2e\x6d\x2d\x67\x2c\x55\xd6\x95\xef\x7c\x07\x44\x3b\xe0\xa3\xea\x87\xf1\x08\x9c\xab\x25\x07\xcc\x92\x6b\xcd\x74\x45\x19\x02\x99\x3c\x7f\x71\x8e\xaf\x10\x98\x69\x27\x8f\x1b\x8b\x2f\x1b\xe4\x1f\x20\x1e\xc3\x0c\x81\x78\x09\x19\x8c\x05\x62\xa6\xda\xc7\x9a\x2b\xef\x5d\x0c\x8f\xd5\x2e\xb5\x82\x09\x8a\xf2\x4c\x4f\x0b\xfe\xa4\x10\x47\xca\xb3\xd0\x88\x8e\x6b\x34\x93\x27\x37\x64\x84\x87\x3b\xe2\x09\xca\x52\x7a\xb3\x42\xc4\x2b\x4e\xcd\xf7\x19\xa3\x89\x9d\xa4\x2a\x5f\xb9\xa6\x94\x4c\x62\x94\x08\x44\x12\x67\xaa\xc3\xf8\xd2\xfc\xf0\x45\x26\x2f\xf3\x07\x7f\x79\xdd\xb6\x02\x12\x74\x65\xb3\xff\x0b\xa8\xad\x02\x9f\x28\xeb\x52\x9e\xaa\x68\xec\x50\xad\xf0\xdc\xfb\xd5\xbd\xa9\x86\xa6\x92\x16\xac\x59\x57\x41\x54\x56\x9f\x01\x7b\xaa\x32\x0e\x95\x1a\xc0\xf5\x52\x79\xac\x57\xf6\x7c\x87\x16\x67\x8e\x99\x5e\x39\x25\xd7\x1d\x35\x37\xa8\xec\x98\xbf\x66\x54\x2c\x47\x40\x33\x55\xd5\x6e\xf2\x29\x93\x1a\x95\x48\x6f\x9c\xc3\xec\x63\x75\xfb\x8b\x97\x82\xec\xc8\x51\x02\x62\x86\x8c\x83\x0c\x37\xab\x9b\x32\x40\x70\xfa\x64\xc7\x3a\xb9\x24\x68\x0e\xf3\x54\x70\xa0\x9b\x25\xbb\x8e\x25\x2d\x67\x1a\x41\xc1\xb5\x94\x95\x27\xe6\xe4\x2c\x2b\x71\xec\x1c\xa2\x95\xde\x6a\xe5\x67\x71\x11\x8a\xa6\x5d\xb6\xf9\xc9\x9b\xf2\x01\xe6\x7a\x8d\x45\xe0\x0f\xa3\xca\xc9\x0a\xd9\x92\xfe\xb1\x63\xb6\x08\xa9\x18\x2b\xeb\x4d\xa5\x60\xef\x3a\xc6\x24\x4e\xf3\xc4\x1a\x38\x63\x28\x95\x65\x95\x41\x99\x0d\xd0\x9b\x34\xa1\x45\x93\x54\x76\x4f\xda\xd8\x95\xd5\xca\x1d\xfb\xeb\x56\xe9\x11\x29\x98\xca\xec\xbd\x87\x3b\x95\xae\xb5\xe9\x3b\xbd\x05\xfa\x32\x55\xd8\x62\xdb\x30\x69\x19\xf8\xbb\x01\x16\x9d\xe3\x09\x43\x50\xae\xa6\xf8\x12\xc0\x05\xc4\xc4\x3b\x65\xf5\x34\xd1\x06\xa9\xf4\x1a\xde\xf0\x86\x7f\x82\x66\x8b\xec\x00\x82\xae\x10\xab\xcc\x3a\x2f\xc8\x32\xf0\x96\xa5\xb2\x17\x00\x52\x5b\x47\x61\x57\xcd\x28\xe7\x78\x96\xda\x82\x4b\x3a\x9c\xfc\xe0\x3c\x43\xb1\xff\xd8\xad\x1b\xd2\x4e\x10\xec\x3e\xe0\xb7\x9e\x9d\xfd\x47\xee\xe6\xaf\x6a\xe7\x48\x5c\xda\x03\x17\x94\xc1\x05\xb2\x3f\x71\x01\x45\xae\x3b\x46\x5b\xfe\x50\x72\xea\xd8\x64\x2e\x31\x49\xa4\x34\xb2\x5d\x9a\xa5\x39\x83\x69\xf9\x4b\x4c\x89\x36\xc4\xf3\x7d\xf0\xc7\x3f\xe4\x2f\x32\x7f\x94\x18\x47\x5b\xf3\xeb\x94\x44\x51\x34\x25\xdb\xc6\xf9\x61\x1f\xc4\x4a\x2a\x8c\x05\x5a\x65\xea\x1e\xab\xf1\x65\x92\x44\x31\x4b\xf8\xe8\x06\xae\xd2\x29\x81\x19\xb6\x9e\xbd\x00\x66\x18\x7d\x12\x88\xa8\xfc\x46\x97\xaf\xf8\x08\xd3\xf1\xd5\xde\x94\xe8\xba\x1d\xe6\x5c\xd0\xd5\x19\xd2\xb6\xc7\x23\xa4\xce\x92\x4a\xae\x57\xfc\x67\x15\x62\x06\x34\xfb\x9a\x68\xa6\x32\x47\x82\x8f\x62\x96\x8c\x32\x46\x65\x8f\xe9\x4a\x8d\x28\x5b\x4c\x89\x94\x81\xea\x3b\xa5\xd8\xec\x83\x96\x64\x55\x03\x96\xae\x50\x9d\x54\xad\xdf\xa5\x98\x8b\x5f\xbd\xef\xdf\x62\x2e\xaa\x9d\xdb\xa8\xa5\x19\x39\x4c\x16\x79\x0a\x59\x33\x81\x7c\xaf\x04\x22\xbb\x42\x1f\xc8\x25\xa1\xd7\xe4\x8d\x9c\x71\x7c\x1f\xcc\x61\xca\xd5\xc8\xf3\x98\xca\xc9\x71\x98\xe6\x5c\xe8\x83\xe9\x95\x1d\x23\xf9\x47\x64\x7a\x48\x76\xac\x2a\x2c\x5e\xa2\x55\xe9\x7a\x4c\x33\x44\x0e\x26\x27\xbf\x3d\x3b\xaf\xfe\x5e\x5b\x3e\x0d\x42\x79\xc5\xa5\x43\x11\x13\x20\x9b\x61\xc1\x20\xbb\x01\x27\x13\xc0\xf3\x59\x64\x9b\x31\x3e\x3c\x39\x3a\xab\xc8\x2e\x0d\x85\x2c\xa5\xb4\xd3\x0a\x92\x3a\x06\xab\x33\x9c\x16\x67\x82\x6a\xef\x42\xc3\x02\x59\x81\x2b\x0c\x1d\x3e\x9e\x66\x5a\xe8\x4f\xdd\x7c\xe9\xbc\x59\x51\x6b\xac\x2f\x70\x1f\x77\xb9\xb6\xe0\xb2\xce\x2c\xad\xae\xce\x6a\xb8\x14\xd9\x6f\x86\x96\xa2\xdd\x38\xb4\x40\x31\xdd\x8f\x12\xd3\xd7\x5a\xa2\x28\xf9\x68\x36\x37\xe8\x03\xdc\x64\x17\x12\xb3\xc6\x47\x4a\xf5\x41\x8c\xdb\xc3\x71\x4c\xc9\x15\x62\x02\x30\x14\xd3\x05\xc1\xff\x2a\x32\xe7\x96\x28\xa3\x96\x5b\x43\x5d\xc4\x44\x20\x26\x95\x24\x25\xdc\xb4\x39\x60\x05\x6f\x00\x43\xb2\x18\x90\x13\x27\x43\x4b\xd3\x7b\x27\x95\x63\x4c\xe6\x74\x5f\x05\xb2\xe2\xfb\xe3\xf1\x02\x0b\xbb\x40\x63\xba\x5a\xe5\x04\x8b\x9b\xb1\x32\xdd\xe3\x59\x2e\x87\x64\x9c\xa0\x2b\x94\x8e\x39\x5e\x44\x90\xc5\x4b\x2c\x50\x2c\x72\x86\xc6\x30\xc3\x91\xaa\x3b\x51\xb2\x64\xb4\x4a\xb6\x99\x59\xd1\xfc\x91\x4f\xf2\x35\x05\xa6\x5a\x7c\x5d\xc3\x20\x57\x9f\xf1\xfe\xd6\xda\xbf\x56\x5f\x8a\xde\xb6\x5b\xf8\xd9\xf1\xf9\x05\xb0\xa5\x7b\x3d\xe5\x75\xe7\x97\x5f\xf2\x72\x1c\x64\xa7\x61\x32\xb7\x7a\x9a\xb2\x96\xb8\xb0\x86\x56\x12\x52\xec\x51\xd9\x79\x3e\x5b\x61\xc1\x9d\x08\x48\x74\x04\x0e\x0b\x33\x4a\x9e\x25\x50\xa0\x64\x04\x4e\x08\x38\x84\x2b\x94\x1e\x42\x8e\xee\x7d\x14\x94\xb2\x1a\xc9\xbe\x1d\x3a\x0e\x2d\x51\x0b\xda\x30\xe2\x42\xd0\xb6\x0c\x5b\x7d\xa1\xca\x9d\xb6\xea\x3c\x67\x7d\x2d\xcb\xe8\x06\x10\xd4\xa5\x6f\xf9\xd8\x81\xad\x6d\xc6\x1d\x96\x97\x16\x37\x8f\xc6\x0d\x93\x96\x89\x7a\x32\x01\x56\xa4\x69\x09\x36\x43\x29\x95\x73\x8b\x1a\xe4\x09\xf9\xec\xf5\xed\xfa\x49\xd0\x10\xbe\xa6\x86\xb0\xa4\xbc\x64\x5e\xdd\x83\x76\xe0\xba\x57\xd5\x35\x03\xf7\x5d\x53\x2b\xa8\xd4\xac\xae\x11\xb8\x2f\xbf\xa5\x36\x10\x76\xca\xb0\x53\xba\x43\x10\x76\xca\xaf\xb6\x53\xba\xd2\x63\xd8\x2e\xd9\x94\x45\xe5\xb3\xfe\x3e\x89\x3e\x65\x8a\x67\x72\x32\x19\x82\x6e\xc9\x91\x36\x1f\x54\xbd\x0d\x1f\x9f\x4c\xae\x9e\xab\x65\x75\x32\xb9\x7a\xf9\xc4\x9e\xb3\xed\xb4\xf0\x1e\xa2\x4f\x34\x68\x7f\x22\xd7\xe6\x1c\xc6\x48\xd9\xe6\xa6\xd3\xad\x9a\x19\xa4\x40\xa3\x14\xae\x90\x52\x7a\x69\xe1\x40\x6c\xbf\xf4\xa2\xc0\x96\xee\xe3\x78\x41\x9e\x4c\x2a\x04\x3c\xed\xb8\xad\x0c\x74\x06\xe7\x50\x42\x04\x8a\x91\x22\xb5\x7b\xf7\xf5\xe9\x54\x28\x70\x24\xe7\x0d\x76\x7c\x2d\x1e\x80\x72\xc0\x2c\x88\x24\x94\x19\x28\xcf\x97\x69\xfd\xfa\xe6\xe9\x54\xe6\x67\xee\x6d\x2e\xda\x6f\x84\x1f\xaf\x96\x8a\x89\x3f\xda\x40\x71\x74\x73\xc7\x69\xa4\x3c\x7f\xe5\xb6\x53\xe1\x2a\x6b\x96\xc4\x71\x39\x15\x34\xf4\xe1\xcb\x16\x73\x8d\xb3\xea\x78\x54\x50\x80\x2c\x67\x19\x95\x2b\xf5\xf1\xc9\xdc\x50\xa3\x96\xa8\x1c\x1a\x59\x8e\xe5\x3e\x76\x13\xac\x2c\xe6\x48\x91\x1e\xfe\x14\x41\x46\x8a\x61\x33\x23\x58\xe6\x2b\x2b\x90\x73\x85\x8b\xb7\x92\x3a\xa6\x53\x61\x87\x63\xe4\x45\xb5\x37\xae\xbf\x81\xb2\x86\xa7\x7e\xb6\x4f\x6d\x49\x1d\xeb\x10\x9a\x72\xde\xff\x6f\x0d\xe9\x1b\x7b\x4b\xc9\xf3\x29\xc2\x92\xbc\xc5\x24\xff\xd4\x3d\xeb\x0b\x8b\x73\x31\xa1\xff\xae\xa6\xde\x2a\x13\x37\x23\x50\x16\xe3\x1a\xa9\xb5\xc5\x16\xf3\x4e\xc9\x22\x9f\x05\xbd\x42\x8c\x68\x5b\x4f\xc1\x7f\xa3\x3b\x25\xe7\x6d\xc9\x68\xbe\xd0\xbc\x06\x0b\xdd\x1a\xa5\xba\xdb\x2d\xdf\x0c\xae\x9a\x97\x32\x61\x11\x94\x40\x5f\xe6\x9d\x68\xb1\xa0\xe6\xe4\xdf\x01\x92\xed\xd7\x0b\x3b\x91\x93\xe4\x4a\x2f\x44\x7f\x98\x8a\x92\x4d\x74\xa5\xee\x57\xbf\x29\xbb\x6f\x07\xb8\x20\x30\xe5\xda\x97\x61\x2c\xa8\xe2\xc6\xcb\xba\x58\x90\xc3\x4f\x2d\x48\x69\x0c\xd3\xc2\xb1\xdd\x00\xa7\x27\x73\x50\x91\x67\x56\x96\x39\xe3\x3b\xa8\xab\xd5\x42\xb2\xfd\x5d\xe1\x1a\xaa\xe6\x2b\x79\x22\xdb\x6e\x74\x2d\xd5\x73\x4e\xf7\x7b\x85\x8c\x9d\x46\xe5\x1a\x2a\xfa\xba\x52\x67\x35\x05\x23\x70\x2d\xc5\x5c\x55\x38\xfb\xe5\x81\x46\x71\xa3\xca\xf0\x7b\x0a\x2b\x7c\x11\x4b\x40\x58\xae\x6c\x6f\xa6\xc4\x15\x46\x2a\x8c\x2e\x53\x44\x89\x1d\x4f\xad\x8a\x2a\xec\x00\xa8\xa4\x46\x53\xfd\x03\xc6\x8e\xed\xee\x5d\xc5\xed\xe9\x65\x90\x31\xed\x4e\x25\x0f\x25\x4c\x87\xdf\x33\xa5\x70\xf0\x98\xe7\x7e\x09\x03\xb9\x1a\x5a\x24\x96\xbb\xf2\xff\x9f\x18\x5f\x20\x65\x60\x44\x09\x90\xf5\xfe\x3b\xc0\x02\x60\x4e\x1e\x89\x12\x8d\xee\xdf\xc9\x81\x5e\xcc\x19\xa3\x52\x7b\x71\xa6\x80\xee\x63\x47\x2a\x54\xe7\x61\x59\x6b\xef\x9e\x6b\x1d\xb6\xf6\x75\x5b\x95\x7f\xa4\xd2\x7e\xb4\x0f\xa5\xb6\x4f\x49\x8d\x6b\x95\xa5\x68\x25\xe7\x9a\x16\xf5\xa5\xe0\x70\x2b\xcd\xff\xee\x1f\x3d\x2c\x30\x4c\xd3\x1b\xf0\x3f\xb2\x8f\x33\x86\x22\xc5\x8b\x29\xac\x3d\x13\x39\x48\xc8\x04\x3b\x2e\xc4\x7e\x9c\xaf\xda\xce\x04\xf2\xb1\x77\xdb\x6b\x05\xdf\xdc\xa1\x4f\x89\xd7\x6c\xd0\x25\xbc\x89\x3f\xd2\x5d\x03\x18\x90\xe9\x0c\x6b\x5f\x91\x92\xe6\x37\x76\xc3\x37\x35\x56\x09\xb0\x3c\x68\x13\x6f\x67\x77\x55\xa2\xcd\x63\xb8\x66\xd5\x90\x9b\x7d\x45\x1f\x74\xd8\xbb\x7a\xed\x1a\x67\x56\x1b\xf9\xd8\xcb\x04\x9e\x21\x8d\xb7\x22\x12\x6b\x0a\x55\xa1\x6e\x98\x01\x37\x24\xd7\x35\x76\xc7\x5e\xca\x6b\x27\xd5\xb5\x9f\x1e\x29\x9b\xd5\xf3\x79\xa7\xa7\xea\x43\x8a\x68\x76\x5f\x01\xac\x7a\x88\x9f\xa4\x45\x60\x47\xaa\x73\x5b\xde\x74\x84\xa8\xbb\x35\x5d\x34\xd3\x6a\x6c\xef\x74\x3f\x28\xbd\xc2\xf5\x82\xc3\x6a\x9f\x9b\x3b\xda\xb1\xce\xc9\x54\xa2\x3d\xf0\x67\xe9\x25\x22\xb7\xda\xe2\x0c\xa2\x03\xbe\x9b\xea\x38\x8c\x4b\x7b\x24\xd0\x54\xc2\xb6\x4c\xb5\x9b\x45\x96\x21\xc8\x0a\x12\x9f\xf2\xe2\x01\x45\xbd\x4a\x3b\xb7\xcd\xd9\x92\x31\x4b\x7d\x3d\x6a\xa5\x2a\xd6\x56\x65\x40\x1b\x1f\x2c\xda\x88\x33\xb8\x9a\xa5\x34\xbe\xbc\x0f\xa8\xf1\x64\x72\xf0\xee\x27\x99\x79\x1d\x67\x2c\x5e\x34\x41\xc6\xb2\x42\x75\x84\xb1\x78\x13\xe0\x45\x53\xcb\x00\x2f\x06\x78\xf1\xc7\x81\x17\x0b\xa1\x31\x08\x5b\x24\x75\xe9\x53\x3e\xeb\x23\x8b\xf2\xc0\x22\xfb\xae\x77\xdf\x37\xe9\xec\x99\x50\x89\x2b\xc3\x62\xc2\x5c\xff\x69\xcf\x8d\xda\x4f\x0f\x09\x2f\x80\x84\x45\xe1\x2f\xe0\xdc\x48\x02\xa6\x5b\xf2\x74\xbc\xaf\x6f\x0d\x91\xff\x54\x9a\x91\x62\xaf\x4e\xb7\x54\x86\x8a\x14\x8a\xc4\x8e\x53\x60\xcb\x51\x57\xa6\x54\xed\xd2\x77\xe0\xa8\x73\xf7\x9a\xaa\x3f\x4c\xe5\x81\xad\x2d\xca\x7a\xb5\x67\xe4\x8e\xad\x24\x56\xf9\x0d\xc0\x24\xca\x8d\x6b\x87\x55\x43\x54\x8d\x47\x80\xe0\x54\x5d\x67\xd3\xe2\x60\xb1\x42\x50\xeb\x39\x65\x6e\x40\xad\x31\x84\x34\x2c\x48\x28\x89\x9c\x3c\xe4\x69\x1a\x93\x04\x7d\x02\x78\xa7\x0d\x53\x30\xef\x0b\x87\x17\x2c\x85\xa0\xe9\x7c\xa7\x98\x46\x65\x95\x84\x6c\xc9\x53\xcb\x15\x93\xa7\x2e\xc0\xe6\xc8\x39\x8d\xb1\x8a\x18\x02\x85\x5e\x8e\xa8\x00\x74\x0f\x8a\x5f\xbc\x2a\xa1\xec\xca\x5b\xa8\x54\x1d\x27\x80\x6d\x70\xf1\xfe\xe8\xfd\xbe\x0e\x7c\x44\xf2\x34\x85\x33\xad\x56\xae\x20\xc9\xd5\xf1\x17\x26\x89\xd2\x2e\x47\xe0\x77\x64\xb7\x18\x2d\x87\x40\x11\x19\x81\x45\x0b\x7f\x24\xd0\x6d\x39\xc3\x96\x90\x24\x29\x02\x7f\xfc\xe3\x7f\x4b\xe1\xa7\x17\x5b\x7a\x63\x42\x98\x78\x0f\xf8\xb6\x22\x6d\xe7\x86\x0e\x45\xbd\xec\xd3\xde\x89\xe9\xf4\xbe\xa2\xeb\xc2\x62\xa6\x16\x3c\x21\x2b\xc8\x9c\x51\xf3\xd5\x57\x11\xaa\xab\xf3\xbb\x94\x02\x23\x70\x41\xc1\x5c\x6e\x3c\xce\x78\x6b\xec\x44\x3b\xfd\x95\x1f\x7a\x25\x82\x5c\x28\x15\xd7\x81\xea\xbc\x7c\xc4\xcd\xf5\x4f\x76\x0a\x39\xd5\x68\xf5\x90\x87\x9e\x89\x89\x34\x56\x52\x9c\x0b\xd6\x9f\x6d\xbd\x07\x6a\x3d\x13\x3e\x62\xff\x71\x0f\x0c\x3a\x55\x73\x24\x15\x6d\xc8\x7c\x22\xd9\x34\x6e\xbd\xab\x1d\x86\x1c\x7f\xfb\xfc\x17\x6f\x7d\xae\x8c\x71\xd2\xcb\x31\xbf\xb0\x33\xe9\x11\x07\x87\x27\x47\x67\x6b\xca\xea\x04\xa5\x48\x78\x4f\xd8\x95\x52\x8e\x74\x32\xb3\x16\x0a\x65\xd0\x38\x68\x15\xbc\xf4\x6b\xca\x2e\x21\xa3\xb9\x9c\xce\xce\xfd\x04\x2d\x00\xa8\x9c\x57\x8e\xa7\xfa\xc1\xe4\x44\x33\x94\x67\x37\xba\x5a\x5a\xae\xa6\xda\xe1\x86\x21\x91\x33\x02\xd4\x35\x22\xf3\x14\xfb\x7b\x1a\x31\x46\x99\xf5\xa6\x29\xb7\xd5\x19\x42\xc4\x51\x8f\x84\x95\x54\xd6\x11\x1c\x89\x42\xa2\xad\xef\x8b\xf6\xcf\x1c\x91\x18\x9d\x2a\xb7\x3a\x6f\x37\x2a\x2b\xc1\x3e\xd8\xed\xe9\x62\x29\x40\xe5\x91\x50\x99\xb5\x74\xa6\xc6\x59\x4f\xe3\xca\x98\xdb\x26\x68\x37\x77\x81\xfd\xe8\x47\xd9\x74\xcc\xc1\x35\xc3\x42\x20\x62\x80\x81\xca\x7e\xa5\x18\xcc\x9c\x9a\x42\xf5\x01\x5e\x17\xeb\x17\xba\xaa\x26\xae\x02\x03\x8c\x1b\x9c\xac\x88\xc2\x34\x04\x2f\x08\xf7\x26\xd4\x34\x43\x29\x82\xbc\x65\xe9\x28\x5d\x6c\x07\x64\x90\x3b\x86\xc6\x6a\xc3\x9d\xed\x50\x49\xd1\xaa\x70\xf3\x66\x9a\xa6\xf4\x9a\x83\x9c\xbb\xd0\xb2\xa2\x73\x73\x01\x20\x60\x50\x87\x38\x37\x41\xba\xe4\x1e\x8d\x08\xcf\x4d\x07\x9c\x78\x2f\xa8\x5c\x42\x85\x6c\xab\x49\xa4\x1b\x24\x77\x67\x92\x00\x86\x22\x53\x19\x79\x8a\x52\x21\xf9\x94\x17\xa4\x4e\x63\xd5\x74\xcf\x8c\xd2\xf7\xb3\xa8\xad\xf7\xe5\xf3\xb6\x09\xd7\xb2\x2f\x57\x27\xdc\x1b\xca\x4a\x91\xee\x99\x7d\x83\xa5\x5d\x4f\x95\x7a\x95\x85\xda\x7d\x1d\x99\xa3\xd3\xa1\xa4\xd0\x9b\x9c\xe8\x0f\x7a\x0a\x29\x5f\x96\x3b\xcd\xba\x72\x3a\x8c\x5c\x61\x62\x6d\xac\xad\x73\x04\x94\x0e\xb6\x97\xe8\xc6\xc6\xcf\xc8\xf8\x0e\xe0\xfa\x1c\x7c\x89\x94\x53\x40\x0c\xb9\x30\xd7\xab\x29\x01\xda\x2a\x20\xfc\xf2\x5d\x07\x82\x39\x18\x78\x50\x38\xaf\xa4\xb6\xae\xbd\xc5\x89\x45\xd6\x27\x91\x67\x4a\xdd\xab\x72\x0e\x12\xaf\x65\x3c\xa5\x64\x81\x98\x16\xcb\xc6\xce\xa8\xef\xad\xf9\xc0\x75\x76\x87\x94\xcc\xf1\xa2\x5e\x9e\x5c\x24\x08\xfa\xfc\x01\x3a\x65\x60\x4e\x8a\x91\xee\x6b\xe0\x87\x32\xa9\x75\x83\x62\xda\xe9\xda\x22\xa3\xae\xa2\xa4\x31\xff\x16\x1f\x0f\xa9\xd5\x57\x55\xa9\x0d\xea\xbe\xad\x9b\x72\x0b\x24\x1d\xb9\xf5\x6e\xbc\x6a\xd1\xdb\x23\xb5\xc1\xd7\x7f\xab\xce\x98\xfa\x5b\xa7\xaf\x03\xd0\xb9\x21\xa0\x33\x56\x8b\xe1\xbe\x90\x4e\xbd\xd4\x7c\x50\xa7\x7e\xe3\xc7\x3a\x4d\x9d\x7c\x60\x67\x5c\x64\x18\xd0\xce\x80\x76\x06\xb4\xf3\x87\x43\x3b\xb5\xdc\x58\x03\xee\x74\x45\x50\xf9\xdc\x02\xef\xcc\x05\x35\xea\x26\x52\x0a\x89\x6f\x6f\xed\x54\x15\x56\xf0\x93\xfe\x70\x82\xd8\x2f\x0a\xb3\xec\xd3\x24\xab\xe9\x15\x68\x4a\x28\x89\xfe\x85\x18\xdd\xb1\x10\xda\x0a\x7e\x72\x54\x45\xd7\x4c\x54\xab\x9a\x0a\xab\x06\x89\x8a\xd5\x51\x60\x9c\xea\x34\xd5\x02\x73\xae\xe0\x27\xbc\xca\x57\xfb\xe0\xe9\xde\xf3\xbf\x3e\x7f\xf5\xec\xe5\xf3\xbf\x7a\x12\x61\xa2\x13\x79\x8e\x78\xdd\xba\x7c\x9f\x72\xd8\xd1\x97\xed\x8a\x48\x63\x90\xd6\xd1\x30\x82\x1a\x71\x6b\x35\x42\xe3\x57\xf7\xa5\x46\xfc\xa2\x72\xf7\xa9\x11\xfa\x8d\x5f\x8d\x30\x75\xf2\xa9\x11\xcb\x22\xc3\xa0\x46\x04\x35\x22\xa8\x11\x3f\x9c\x1a\xa1\xe5\xc6\x1a\x6a\x84\x2b\x82\xca\x67\x7d\x35\x42\x6d\xd0\x77\x01\xab\x06\x1d\xde\xfd\x78\x4c\x3b\xde\xdd\xa9\xb7\x68\x61\x79\x72\xd4\xfa\x9d\x0f\x5d\x6f\xdd\xa2\x3d\xf6\xd7\xa8\x28\x22\xec\xc7\x1b\xd9\x8f\x33\x4a\xd3\xfb\xd9\x8b\x27\xd4\xd2\x07\xdd\x7d\x58\xfe\xea\xdb\x83\x55\x3d\x9a\xfb\x6f\x66\x32\x09\x7b\x6f\xd8\x7b\xc3\xde\xfb\x83\xed\xbd\x52\x56\x0c\xde\x77\x65\xe2\xdb\x9c\xd5\x75\xdc\xb9\x0f\x7c\x00\xd7\xa1\x48\x6a\x49\x1b\x5c\x07\xba\xd2\xc6\x07\x20\x65\x55\xc1\x3b\xb2\xae\x71\x2a\xd0\xaa\x6f\x73\x56\x54\xa3\x22\x52\x97\xf5\xcc\xda\x29\x23\x6d\x09\x0a\xfe\x98\x6e\x5d\xe4\x84\xa0\x54\x05\x78\xdb\xfa\xdd\x78\x76\x4c\xb7\xfe\xa1\xda\x3d\x83\xf1\x65\xa4\x42\x57\x0a\x3c\xc3\x69\xe3\x90\x0a\xee\xc7\xaf\x4d\x6d\xcb\xe7\xf8\x5f\x83\x9c\x27\xb4\x31\x8a\xe3\x7f\x29\x0c\x21\xe7\xda\xe3\xa5\xf4\x44\x04\x90\x73\xbc\x20\x2b\xb9\x98\x5a\x2f\xc4\x30\x31\xd3\x68\x3a\x02\x47\x4e\xf7\x3c\x7d\x69\x32\x33\x0e\xa7\x7b\x4f\x9f\xda\x1f\x5e\xb6\x1a\x67\x5a\xd4\xa1\xa1\x1c\x02\x35\xc8\xb7\x21\x10\x60\x0e\x67\x29\xfa\xe9\xe7\xc9\xf1\xa7\x16\x9f\x86\xaa\xd0\x3a\xd2\x1f\x00\xa4\x92\x4b\x11\xc5\x68\x5e\xc4\x95\x57\x3d\x72\x32\x01\x72\xd6\x3f\x32\x94\x06\x40\xaf\xfc\xfc\xa4\x9f\x7e\x9e\x8c\xc0\x1f\x47\xd6\xc2\xae\x36\xcd\x7f\x78\x2e\xb0\xed\x54\xed\x4c\x03\x7a\x4d\x57\xca\xa0\x6d\x13\x2b\xe4\x89\xe5\xa5\xe7\xaa\xd4\x8f\x4b\xb2\x82\x1e\xfb\xd2\x29\xd5\x57\xf9\xb2\xb9\x6a\x02\xac\x59\x6b\x9c\xe1\xac\xbf\xab\x0b\x5b\xe1\xbe\x11\xde\x2a\xd4\x20\xd6\x17\xb3\x97\x5e\xae\x07\x93\x93\xab\x3d\xb5\xea\xae\x21\x4b\xbc\xb5\xad\xac\x46\xb9\x39\x08\xb3\xbb\xb8\xb9\xaa\xa6\x6b\x61\xb2\x53\x7d\xe5\xed\x00\xed\xda\xab\x77\x69\xb9\x80\x64\xa5\x46\x9e\xe1\xeb\x61\x0e\x21\xd2\x36\x7e\xfe\x31\x34\xe9\xcb\x21\x94\x7d\x09\x84\x92\x47\xb2\x4d\xae\xa4\xf3\xe7\xa9\xfc\xd6\x12\x94\xe2\x2b\xc4\xca\xab\x95\xe4\x4f\xc5\xc5\x83\xbc\x16\x60\xdd\x3b\xc2\xa0\x6f\x94\x81\x8a\xf5\xe9\xf5\xe6\x6a\xb4\xed\x42\x09\xeb\x93\x89\xfa\x40\x85\x98\x52\xd6\x6b\xe2\x04\xa8\x9b\x6e\xe9\x98\x75\xf6\x22\x51\x75\x3d\x71\xa4\xaf\xcc\x9d\x6e\x8d\x00\x38\x68\x6b\xaf\xcc\xb3\x96\x43\xc9\x20\xc9\xb9\x29\xb9\xec\x43\x39\xb6\x72\x59\xab\x39\xd2\x7a\x55\xbc\xd3\x5f\x55\x5f\xfb\x46\xdf\x01\x70\xe0\xd4\xa1\x5a\xef\xb6\xdc\x55\x05\xed\x44\xaf\x57\xf0\xda\x86\xff\x73\xeb\xa0\xfd\xdd\xe4\xea\x68\xcb\x13\x96\xd7\x9f\x99\xab\x86\xad\x16\x6a\x2f\xc8\x90\x99\x13\x3b\x02\xa5\x93\x70\xe7\xb5\x91\x8f\xf1\xbc\xba\x6d\x3e\x91\xb5\x28\xfb\xba\x73\xea\x74\x6f\x74\xfe\x53\xb0\x9c\xf1\xef\x06\x78\x09\x1e\x5a\xfd\x44\xdb\x1c\x73\x56\xea\x26\x9e\x01\xef\x9e\xea\x27\xb5\x36\xee\xd8\xbb\x5d\x30\xd7\xbc\x06\xd5\x51\x9a\x47\x36\xdd\x3a\x45\x57\x2a\x14\xfc\x63\x15\x77\xbd\x5a\x98\x2f\x77\x99\x83\x91\xcd\xbe\x4b\x05\x3b\xdd\x25\xa1\x88\x68\x2e\x16\x14\x93\xc5\x8f\x22\x52\x3b\xa5\x0e\x81\xe2\xfd\xc0\xfe\xd0\x61\x5a\xcb\xf4\xa5\x50\xb5\x62\x51\x05\x43\x75\x6e\x4c\x03\x9d\x1e\xe7\x46\x21\x96\xe7\x0e\x77\xfd\x37\x84\x2b\xcd\x05\xc7\x09\x2a\x0e\x98\x85\x8a\xea\xcb\x54\xdd\x27\xc3\xff\x99\x23\x06\x13\xef\xe5\x40\xdd\xbd\x41\x93\xc1\xd7\x40\x1c\x68\xf6\x99\x51\xda\x4d\x50\x40\x39\x5b\x0c\xa5\xb7\xf0\x68\x56\x92\x66\x76\xa3\x63\x00\xfa\xea\x5c\xdc\xa5\xb4\xde\x5c\xbe\xfa\x94\x42\x72\xc7\x95\xfd\xdb\x7f\xbe\x3d\x38\xfd\x6a\x4b\x5b\x95\xe6\xd5\x8d\x8b\x0a\xdc\x7a\x6d\xb7\x02\x70\x4d\xde\xcd\x9f\x0d\x67\xd3\x3f\x44\x72\x9e\x45\x6c\x06\xe3\x7b\xc7\xdb\x34\x8e\xa5\x97\xe7\xbd\xc0\x6e\x67\x65\x01\x4d\xf4\xcd\x79\xe9\x03\xe1\xdc\xca\x35\xb1\x38\x56\xcd\x39\x40\x72\x01\x92\x0b\x90\xdc\x0f\x06\xc9\x39\x02\x64\x30\x32\xd7\x90\x48\xe5\xb3\x3e\x5e\x67\x84\x4e\xa2\x82\x0d\xf7\xed\xde\x67\x6e\xe2\xea\x7d\xf3\xfa\x27\x48\x92\x71\x05\x8e\xf2\x63\x10\x8a\x10\xd3\x40\x30\xd0\xa7\x38\xcd\x13\x73\xf1\x31\x41\xd7\x2e\xb7\x35\xf8\xec\x3f\xf8\xbd\xf8\x32\x9f\xa1\xd2\xf9\x8e\x57\x14\xbc\xfb\xd8\x9a\x7f\xcd\x67\xe8\xb0\x2c\xef\xd0\x2d\xaf\xbe\x53\x77\xa5\x6d\x6e\xdc\x9d\x2d\xa9\xef\xe3\x5d\x89\xc3\xb6\x6e\x6a\x19\xb6\xf5\xb0\xad\xff\x38\xdb\x7a\x97\xb4\x69\xee\xf2\x95\xfb\x33\xea\x1d\xec\xb8\x16\x39\x42\xa6\x7a\x7a\x1e\xbe\xd9\x3b\x59\x0c\x39\xa8\xdb\xd2\x34\x72\xad\x6f\x34\xb1\x25\x9b\xbb\x78\xae\x70\x92\xc3\xb4\xe7\xc2\x54\xa7\xd8\xb5\x51\xf6\xbe\x3b\x50\x5b\x6e\x3e\x6d\xa9\x72\xf5\x1a\xd4\xb2\x5e\xad\xf7\x8e\x1e\x1b\xd0\x5e\xf9\x86\x2a\x38\x61\x47\xf9\x6d\x0a\xaa\x82\x02\x08\x6a\x21\x82\x96\x1c\x06\xdc\x60\x2b\xc5\x14\x89\x71\x8a\xd8\x04\x31\x4c\xdb\xdd\x90\xeb\xc2\xe1\xac\xf6\xa1\xa5\x25\x67\xfa\x2f\x41\xe5\xbf\x54\xa0\x06\x5b\x04\x6e\xf5\x5f\xb4\x4f\xe1\xee\x68\x83\xc7\x41\x01\x95\xf6\xe1\x1a\xbc\x5e\xac\x7c\xd6\x2e\xfb\xf4\xbb\x2e\xf7\x39\x2e\xb7\x04\x92\x6b\xf4\xc0\x29\x4d\xba\x47\x5a\xbe\x7f\x18\x83\xbc\x74\x62\xfb\x0d\x1d\x60\x37\x1e\x60\x69\x21\xe7\x37\x24\xb6\x60\xbf\xda\x21\x55\x84\xca\x32\x44\x7b\xd7\xe8\x1e\x59\x33\xe2\x6d\x5b\x3a\xb0\xb5\xc0\x90\xf6\x0f\x19\x82\x2d\xd1\x7e\x5b\xda\xfc\xe8\xa0\xf8\xac\x1c\xd9\x5c\xd0\x15\x14\x38\x2e\xef\xd5\xa2\xbd\x17\xbd\x57\x7b\x45\x1d\x9e\xd0\x15\x62\x37\xc6\x48\x52\x4e\x66\xdb\x27\x5d\x53\x1a\x0c\xbe\x79\x78\xc8\xbd\xc3\x29\x82\x97\x3f\x33\x18\xa3\x35\xd7\xfb\xdb\xea\x77\xb5\xe5\x5e\x75\xba\xb4\x73\xbe\xab\x4d\x0a\xdc\xd6\xb7\xa9\xab\x0b\x19\xa1\x6b\x0d\x2b\x1d\xd8\x65\x75\xe5\x1e\x7e\xae\xe7\x89\xc7\xd9\xa0\x9a\xa5\xb1\xb3\x9f\x4c\xc0\x02\xb2\x19\x5c\xc8\xea\xa4\x29\x8a\xb5\xaf\x6c\xd9\xf1\x7b\x77\x15\x23\x3f\xa2\xe8\x04\x6a\xfd\xab\xfb\x1f\xbb\x96\x5f\xb5\xb5\xe7\xc5\x27\x2e\xd1\xc6\x5c\x9f\x47\x41\x4c\xb3\x9b\x81\x57\x9e\x2b\x89\x5a\xde\x3d\xe4\xc4\xeb\xe4\x6e\x2b\x8d\x40\xbd\xdf\x5d\x42\x07\xf3\x1b\xb2\x4f\x98\xd8\xdf\x1d\x3b\x85\x09\xd7\xf9\x30\xf6\x8a\x1f\x6f\x56\xf7\x0d\x75\xf5\x1a\xcc\x21\x43\x5e\xbd\x02\xb3\x6b\xe8\x4d\xde\x6d\xd5\x37\x97\x5a\xba\x53\x23\xcc\x81\x6f\x31\x07\x6c\x18\xe6\x1e\x2d\xaa\x6a\x26\xae\x7d\xd3\x35\x0f\x6c\xfe\x6d\x6d\x40\x35\x4d\x2c\xcc\x84\x6f\x33\x13\xba\xbd\x2c\x66\xf9\xc2\xc4\x8c\x9d\x0c\x20\x05\x1e\xd5\xd2\x37\xb7\x05\x26\x74\xac\x10\x76\x85\xc0\x0a\xad\x28\xf3\x47\xae\x92\xd3\x29\xcb\x8b\x80\xbc\x40\x6a\x3a\x4d\xeb\xb4\x7e\x5d\x33\x2d\x77\xc7\x69\x79\xf6\xb4\xad\x07\x5a\x78\x97\x48\xc4\xc9\x6f\xcf\x0e\xe9\x2a\x83\x4a\xe3\x6a\x9d\x34\xd5\xc9\x72\xec\xfd\xac\x36\x65\x66\x48\x5c\x4b\x8d\x50\x96\x71\xf5\xcc\x7f\xd2\xb7\x19\x14\x90\x50\xa9\x38\xba\xcb\xc1\xd5\x03\x77\xbd\xf3\xa5\x6b\x9e\x2c\x11\x4c\xc5\xf2\x70\x89\xfc\xae\xc0\xd5\xa6\xfd\xe2\x24\x2e\x04\x00\x65\xb6\x2a\xbc\xb8\xb5\x5a\x9e\x11\x74\xce\xde\xa6\xe9\x0c\x06\x29\x39\x5d\x75\x4f\xe9\xe2\x5c\x9e\x44\xb0\xb8\x39\x8f\x19\x42\xbe\xf0\x39\x35\xbd\xbf\xfe\x85\x1d\x96\x94\x2e\x00\x37\x6f\x00\x9c\xd1\x2b\x64\x42\x97\xa4\x74\xd1\x12\xab\x0f\x69\x62\x8c\x01\x56\xb9\x48\x68\x2e\xdc\xc1\x38\x21\x73\xba\x6e\x8b\x32\x46\x57\x52\x99\xcc\xf9\x3b\x24\x18\x8e\xf9\x90\xa5\xf7\x68\xe2\xfb\xca\xb6\xec\xe2\x70\x62\x16\x9f\xe5\x83\x97\xc9\x7d\x0d\x5b\xe9\x2c\xf4\x42\x65\x16\x59\x9e\x61\x92\x28\x44\xb2\x67\x06\xfe\x6d\xf7\x6f\xcf\xdb\x1b\xed\x5d\x68\xed\x14\x8f\x36\xac\xab\x15\x4c\x2c\x8d\x45\x2d\x5d\xd5\x09\x27\xaa\xaf\x1d\x58\xd7\x8c\xab\xfc\xd5\x83\xc2\x9b\xc3\xa1\x83\x1d\x82\x13\xf1\x48\x5d\x3c\x33\xcf\x53\x6d\x62\x4c\x56\x0a\x99\xa4\xca\x5b\x5d\x9e\xe4\x94\x00\xd4\x31\xa6\x60\x2c\x72\xd8\x20\x0e\xe9\x1c\xf5\x58\x5d\xc3\x22\xfa\xb7\x0d\x9e\x6f\xc8\xa0\x2b\x9a\x68\x6e\xfe\x4c\xaa\xe2\x57\x98\x51\xc5\x52\x07\x57\x90\x61\xb5\x10\x1b\xf5\xd5\x4c\xc9\xcb\x7c\x86\x22\x17\xfc\xcc\x18\x8d\x11\xaf\x23\x1d\x5d\x37\x31\x95\xa5\xfd\x06\xbd\xd0\xe7\x9a\x2e\x80\x6d\xbb\x57\x65\xd8\x8e\xab\xa5\xd6\xaf\x1b\xf0\x74\x40\x0b\x01\xd4\xdb\x09\x3a\x36\x1b\x99\xa7\xb9\xbe\x7c\x40\x59\x01\x72\x42\x30\x59\xe8\x09\xb2\x66\xc0\x28\xe6\x7e\xdb\x6b\x07\x76\x13\xd7\x1a\x36\x9f\xcb\xa3\xfe\x15\xaa\xcc\x0a\xcc\x6d\x01\xbe\x06\xe2\xb6\x81\xa6\xc9\x8e\x09\xf4\xbe\x42\x6c\x61\x8d\x1d\x07\x93\x93\xd2\xd6\x21\x35\x12\xff\x96\xdc\x32\xcb\x3c\xfd\xd2\xa3\x85\x75\xa3\xe6\x8d\xce\xd9\x24\x72\x0e\xfa\xd0\xf3\x01\xd5\x07\x03\x50\xf4\x46\x23\xd6\x43\xd2\xbb\x54\xc6\x4d\xaa\xcb\x03\x5b\x0b\xd6\x53\x9b\x1b\x8d\x1f\xae\x3a\xf7\xa1\x90\x55\xcd\x7a\x90\xfa\xdc\x97\x65\xb7\x76\x0d\x36\x8a\x54\x76\x00\xf1\xe0\xbe\xc0\x78\xb0\x01\x90\x05\x0c\x9f\x27\x03\x81\xf9\x46\x73\xd7\x00\xe7\xfb\x46\xb4\xc4\xee\x37\x03\xd0\xaf\xd1\x7a\xb0\x0e\x50\xdf\xe8\x83\x61\x60\x7d\x7f\xa6\x4a\x35\xd9\x38\x60\x0f\x06\x2f\x05\x30\x70\x39\x80\xb5\xc0\x7b\x70\x7b\x00\xbf\xaf\x61\xe5\x32\x5a\x13\xc4\xef\xcb\xd8\xa3\x28\xf7\x02\xf9\x7d\x79\xf6\xe0\xfc\x60\x8d\x61\x0a\x42\xbd\xb7\x8b\x06\x99\x07\x9a\x9d\xb3\x39\x13\x01\xd8\xa8\x99\x60\x78\xd3\x87\x2c\xe0\x4e\x93\x41\xa3\x53\x36\x69\x36\x00\x5f\x77\x57\x0b\x0b\x65\x03\xb3\x65\x90\xd5\x01\xdc\x9b\xe5\x01\xdc\x93\xf5\x01\x84\x69\xf4\x55\xa7\xd1\x40\xc3\x05\xb8\x4f\xe3\x05\xb8\x2f\x03\x06\x08\x93\xe9\x2b\x4e\xa6\xbe\x14\x03\xec\x1f\xe0\xbe\x6c\x20\x60\xf3\x76\x10\xd0\x6f\x0b\x01\x43\xee\x93\x19\x6c\x13\x69\x74\xce\xa6\xec\x22\x60\xb3\xb6\x11\x30\x60\x4e\xf5\xd8\x48\x9a\x4d\xdd\x90\x9d\x04\xac\x69\x2b\x19\xd2\x96\x21\x36\x93\x66\x83\xd6\xb6\x9b\xb4\x35\x27\xa5\x0b\x7e\x07\xdb\xc9\x90\x16\x0e\xb5\xa1\x34\x5b\xb9\x51\x3b\x0a\xb8\xab\x2d\xa5\x2d\xd3\x36\x13\x0b\xe8\x5f\xbf\x1d\xb7\xb1\x76\x98\x5b\x40\xa7\xb8\x0c\xae\x3e\x77\x72\xf5\x31\xbe\xf4\xea\xf8\x83\xef\x25\xf4\xec\xa9\x2e\x41\x1f\xc1\xf4\x8b\xd2\x9b\xa7\xf2\xb2\xe9\xbe\x53\xab\x9d\x19\xb7\xc2\x61\xc7\x7d\xad\xb2\x1e\xe8\xa1\x53\x40\xe2\x4a\xcb\x0a\x4e\x3a\xc1\x49\x27\x38\xe9\x7c\x5f\x4e\x3a\x5d\x26\xe2\x05\x43\xbc\x97\x4b\x72\x61\xef\xb2\x96\xd3\x1f\x29\xbf\x57\xfd\xa1\xb9\xe8\x1d\xe8\xfb\xae\xe4\x1f\x85\x55\xd4\xb7\xe7\x41\xfb\xb5\x8e\x56\x02\x56\x50\xc4\x4b\x10\x33\x2c\x10\xc3\x50\x2d\x12\x08\x62\xca\x18\xe2\x99\xdc\x21\xc8\x02\x18\xcd\x51\x50\x7d\x07\xf7\x5a\xfe\xb0\x95\x36\x4c\xb7\x0e\xc0\x99\xac\x20\x22\x31\xcc\x78\xae\xd6\x6d\x59\x23\x5f\x55\x5a\x20\x7c\x68\x90\x60\xf0\x13\x15\xcb\xda\x35\xdc\xce\xd5\xe2\x1a\x23\x93\x19\xd5\xaf\x1b\x6f\x51\x41\x8a\x2b\xf5\xcd\xb5\xdf\x11\xe0\x28\x83\x4c\xdf\xe8\x94\x0b\x00\x5d\xbf\x63\x9d\x44\x45\xef\x93\xb5\xc0\x44\x8d\x47\x4b\x85\x49\x62\xc7\xcb\xed\x78\x4c\x16\x23\x30\x9d\x12\x73\x8b\x39\xe5\x58\xd9\xaf\x6b\x3d\xb1\x84\x6d\xb9\x02\x82\x16\xaa\x72\x46\xf0\xca\x03\x0e\x9a\xe3\x4f\xf6\xf6\xb0\xe9\x74\xba\x75\x4a\x85\xfc\xbf\x11\x38\x48\x53\x73\x77\x80\x9b\xbb\x3f\x67\x13\x8e\x0a\xea\x09\xb5\xca\xb9\xbe\x36\x0e\x0a\xcc\x15\x91\x42\x07\x77\x31\x4d\x11\x54\xe7\x39\x02\x07\x6a\xb3\x6b\x46\x4c\x36\xbd\xab\x26\x27\x24\x76\x82\x9a\x43\x9e\x69\xb4\xba\xdb\x49\x36\x47\xfe\x61\xda\xa3\x76\x06\x9d\x79\x7b\xbf\xaa\xde\xf7\x57\x51\x5d\x4e\x96\x6b\x22\x89\xae\xa2\x3f\x78\x56\x2f\x8e\xa0\x27\x5c\xab\x8e\xd9\x7f\xca\x76\x62\xf9\xb4\xe6\x52\x3b\x1c\x97\x51\xba\x2a\x34\x87\xda\xe4\x50\xea\xb5\x5a\x98\x1d\xc7\xfb\x4a\x2c\x21\x20\x65\xa1\xf0\xad\xe3\x81\x9d\x01\x5c\xb3\x7e\x47\xa0\xa0\x96\x96\x4d\xb7\x4e\xeb\x1f\xdb\x9b\xb1\x32\xcd\x84\x31\x11\x9f\xda\x6e\xed\x2f\x9f\xa2\x63\x60\x21\x04\x00\xfa\x24\xb7\x30\xae\xe4\xc3\x7b\x92\xde\x00\xc1\xe0\x7c\x8e\x63\xdd\x53\x36\x68\x59\x9f\x25\x41\xed\x72\x8f\xe5\x14\x52\x06\x2e\x2d\xa9\xc4\x13\xc7\x4c\xe8\xdc\xec\xa6\xcb\x6e\x8f\x9d\x57\xeb\x32\x5e\x04\xdc\x53\x63\x29\x37\x40\x15\x55\x4a\x4d\xe4\x46\xdf\x74\x67\xaa\xa5\x24\x55\xd6\x92\xa2\x0b\xe4\x81\x51\xab\x65\x89\xa5\x32\x71\xb8\xd2\x4b\x41\x47\x2a\xea\xce\x54\x05\xf6\xb2\xc0\x9e\xd3\x64\x3d\xd7\x58\x51\x6f\x30\xbb\xd1\x95\xb6\x25\xf7\x74\xaa\x6d\xb6\xed\x2f\xeb\x34\x24\xeb\xa5\xe5\xe0\x1b\xca\xaa\x3a\xf6\x4e\xeb\x1e\x60\x1f\x15\x6c\xb5\xd9\x6d\x00\xaf\xb2\x14\x23\x5e\x9e\x3f\xdd\xc9\xa6\x6e\xea\xec\x1b\x30\x05\x3d\x29\xab\x23\x59\xb4\xf6\x09\x76\xfa\x77\x10\x2b\xa5\xb8\x6d\xb6\xd2\xce\xd6\xe6\x3f\x5a\xa4\x74\x06\xd3\xc7\x4f\x7a\x80\xbe\xaf\xd3\x01\x3f\xab\xca\x98\x2a\xca\xf3\x38\x65\x15\x3e\x82\x6a\x46\x77\xa6\xb2\x8d\x95\x6c\xca\x81\xee\x1b\xcb\x9e\xda\xba\x4d\xd4\x44\x40\x6e\xaf\x68\xad\x0d\x1a\x54\xf1\x14\x01\xf4\x47\x4f\x2b\x9f\x72\xc9\xb6\x6c\x1c\x45\xd9\x83\x60\x56\x82\x44\x37\x50\x5d\xa5\xb5\x20\xc1\xdb\x05\xa3\x54\xe7\xd5\xad\x36\xbc\xdf\x6c\x6f\xb7\x40\x35\x84\x6a\xaf\x50\x47\x27\xbf\x5c\x2c\x44\x5f\x4f\x6f\x57\xe5\x62\x25\x98\xa5\xd4\x1c\x48\x71\xf7\xbb\xbe\xd5\x59\xc7\x8e\xec\x76\x12\x6d\xd7\x23\x9d\x72\x07\x5a\xa3\x3b\xa2\x1e\x97\x0f\xa1\xe2\x74\xbd\x31\xd1\x1f\x58\x90\xab\xa6\x7e\xd9\x16\xcb\x24\x3d\xdb\x8b\x1c\xc7\x07\xd7\x17\x13\xca\xd6\xec\x0c\xf5\x45\x4f\x6f\xa8\x34\x43\xba\x03\x9c\xab\x1b\x65\xd5\x2c\xe5\x74\x85\xd4\x6d\xb6\x34\xa6\x29\x07\x4b\x78\xa5\xed\x01\x7c\x47\x53\x4d\x6e\xf4\x5f\x3d\x82\x96\x21\x27\x30\x37\x16\x16\xd0\xe3\x16\x8f\x54\xb9\x1b\x8d\xca\x08\x72\x79\x40\xe9\x95\x8a\xe6\x0a\x65\x15\xdc\xef\xe2\x70\x62\xa3\xcb\x7e\x38\x9a\xb4\x86\x2e\xd5\xcf\x90\x51\x85\xe4\xe6\xfd\xbc\x27\x4d\xd4\x6f\x7a\x68\x26\x1e\x42\x46\xca\xa0\x10\x88\x91\x7d\xf0\xff\x8d\xfe\x77\x77\xca\x4f\xd1\x65\xc1\xca\x88\x30\x11\x11\x65\x91\x2e\xa1\xed\x9a\xfa\xf2\x19\x3a\x21\xd7\x57\x2e\x4f\xcb\x8f\x7a\xa6\xe5\x30\xfd\xca\xcc\x4c\x70\x8e\x9c\xcd\x45\x4b\x61\x79\xc0\xe0\xf9\x4c\xa4\x48\xea\xca\xfa\xc0\x65\xca\xea\xce\xb3\xd0\x96\x3a\xa7\xca\xb0\x31\xcb\xd6\x5b\xb2\xd3\xad\x62\xc5\xf6\x6d\x2b\xfd\x9b\xed\x80\x6d\x65\xa9\x4e\xcc\x06\x77\x7a\xec\x1c\x42\x9e\xf4\x4c\xc3\xc2\x72\xa0\x55\x4d\x6e\x03\x3a\x8b\x25\xe2\x08\x30\x48\x16\x88\x8f\x2d\x6c\xa7\x02\x3f\x77\xc6\x1b\xd6\x4f\x25\x6c\x98\x59\x3a\xca\xd0\xa4\x7b\x99\xdb\x1e\x30\x18\x98\x29\xa6\x47\x57\x9e\xeb\x31\xd0\x0a\xdc\x50\x09\xd6\x2b\x01\x74\xd2\xb5\x24\x58\x4f\xdb\x4b\xf1\x56\x93\x60\x53\x2d\xc3\xa6\x46\x8a\x4d\xb5\x1c\x9b\x4a\x49\xd6\xa9\xf3\x04\x59\xa6\x9e\x41\xb2\x8c\xdf\xe2\x94\xdc\x7f\x38\xee\x44\xfa\xca\xc7\x7b\x38\x06\x8f\x39\x42\x16\x22\x53\xa2\x0c\xae\xb2\x14\x01\x7e\x43\x04\xfc\xe4\x8b\x3a\xeb\x3e\xd3\x69\xe7\xd9\xda\xe8\x90\x6d\x67\xe7\xee\xbc\x2d\x32\xe6\x1c\xad\x29\x6b\x1e\x99\xe5\x72\x3b\xa5\x02\xa9\xb2\xe5\xec\xe9\xe9\x04\xe3\x67\x63\x8d\x06\x3d\xbb\x82\xee\x1e\x67\x37\xe9\xce\x7d\x86\x52\x7a\xfd\x64\xa7\x5a\x65\xa7\xb3\x75\xaf\x02\x2c\x38\x4a\xe7\xd6\x9c\xdd\xd3\x0f\x1a\x0c\x53\x30\xe7\xc5\x12\x01\x71\x4d\xd5\x5c\x53\xf1\x9a\xec\x3b\x2d\x20\xe4\x26\x74\x53\xc6\x69\xef\x19\xbb\xf7\xc4\xb6\xde\x92\xc1\x4a\xf8\x15\x39\xa7\x24\xdd\x1a\x0d\x2d\x98\xf4\xfd\x7b\xc2\xf5\x92\xa6\x66\x90\xf6\xd5\x10\x4d\xa7\xe5\x86\xfc\x5a\x49\x97\xbf\x2c\x21\x7f\xbc\xba\xf9\xa8\x58\x9a\x4f\x94\xdc\x31\x42\xbe\x6f\x39\x9b\x6b\x07\x2c\x0a\xa1\x26\x99\xae\x9f\xe6\xd0\x94\x2e\x3c\x89\x2c\x77\xe0\x7c\x53\xf9\x25\x54\x51\x45\x94\x94\xd6\x36\xa5\x19\x4a\x55\x75\x6d\x4d\x35\x88\x6a\x9a\x34\x78\x62\xe8\x26\xb7\xb6\xb8\xd9\x28\x59\x8b\xb6\xcb\x53\xca\xa7\xbb\xbd\x45\x93\xfa\x9a\xd3\xb7\xc8\x89\x9a\x79\xda\xb1\x4a\xab\x53\x06\x4a\x48\x95\x68\x35\x37\x22\x28\xeb\x73\xd1\x92\xfe\xca\x13\x4a\x22\x43\x7a\x32\xf6\x30\x70\xbd\x44\x0c\x19\x5c\x64\x4e\xd9\x0a\xb9\x20\x85\xe2\x58\xe9\xdc\x07\x80\x76\xcd\xae\x71\x22\x14\x6d\xe0\x10\x5f\xe5\x66\xae\xa1\x7b\x55\xe9\x99\x5f\x4f\x07\xab\x89\xe5\xee\x3c\x3d\x90\x27\x04\x19\x4d\xac\x13\x9d\x36\x81\x14\x22\x7a\x00\x91\xb4\xa0\x92\x76\xce\xb6\xc1\x5e\x23\xae\xc1\xbe\xfd\x69\x7a\x94\xdd\xbd\xbb\xc1\x6d\xba\xbc\x3f\xcb\x36\xa4\xd9\xd3\xed\x83\x7a\x1b\x38\xe4\xdd\xeb\x25\xe5\x1a\x96\x94\xcd\x37\x2a\xa0\x54\x80\x7b\xdd\x31\x86\x28\x77\x60\x2d\x37\x97\x81\x9a\x12\x18\xaa\x2d\x81\xe6\xfa\xea\xd5\x97\xfe\xbc\x23\x5d\x39\x2b\x95\xa8\x9b\x96\xfb\xc5\xd5\x0a\x2d\x17\x98\x55\x9f\xd2\x0c\xa1\xac\x0b\xe7\xae\x55\xa1\x3c\x8b\x98\xfb\x0e\xd0\x8d\xfc\xbd\x3f\xd3\x83\xd3\xa3\x47\x03\xbc\x80\xd6\x43\xb4\xfa\x7c\xa6\x4c\x2f\xae\x75\x3e\x36\x52\xba\x4b\x5e\x0c\xd3\xba\xf5\x97\xda\x40\x5c\xc8\x4b\x27\xa8\xa6\x2d\x48\xd1\x54\x4b\x8a\xea\x00\xcb\x4c\xa7\xd2\x5d\x9f\x5e\x43\xb5\x6e\x8f\x39\xcb\xf6\xdf\x63\xfe\xa4\xae\x7e\x6b\x3a\x8d\xac\x4d\x1f\x56\x36\x56\xb5\x52\x37\xce\xdb\x9a\x3c\xe2\xea\x74\x6b\x4e\xcc\xb6\xbf\xe3\x82\x16\x52\x74\x46\x5f\x5f\x54\x2d\x5b\x72\xe5\xd8\xc9\xba\xe3\xaa\xee\x3b\x4d\x8b\x42\x4f\x37\x9f\x22\xa9\xfe\x5a\xb0\x97\xb2\xfa\xde\xad\xab\xae\xa1\x14\xd9\x11\x16\x09\xed\xb1\x56\xca\xf9\x24\x07\xd0\x6d\xa3\xc6\x8d\x8a\x5e\xa0\xc4\x12\x09\x0c\xb1\xa3\x5b\x65\x59\x6b\xdb\x5c\x7f\xd7\x2c\xaa\x59\x7a\x5d\x6b\x93\xfc\x70\x87\x2c\x60\xdb\xe6\xd8\xe0\x37\x24\x04\x86\x39\x97\xb7\x34\x4d\xbb\x98\x37\xdb\xa7\x7f\xf7\x87\xc4\x6d\x3e\x5a\xca\x9a\x16\xaa\x95\x9c\xa2\xb9\xb0\x17\x40\x16\x7b\x88\x5a\x3d\x03\x40\x1a\xe0\x2e\x44\x75\xff\x8c\x3c\x9e\x3f\xe2\x65\xcd\xbe\xaa\x04\xed\x4f\xb3\x14\xc2\x77\x29\x9f\x7e\xaa\x5e\xcb\x17\x17\x93\xd2\x5e\xdf\x4a\x62\x90\xb3\x44\x26\x6d\xaf\x7a\xc1\x60\xbf\x13\x7f\x61\x85\xc4\x92\x26\x6b\xec\x0c\xef\xf4\x07\x9b\xd5\xda\x75\x93\xb5\x50\xd7\xed\x76\xa8\x72\x32\x4f\x7d\xa3\x15\xea\x8d\x3a\x6a\xf5\x3a\x94\xe8\x5c\x6c\x6d\x1f\xa3\xd1\x62\x04\x7e\x3e\xbe\xd8\x01\x93\x0f\x17\x3b\x00\x89\x78\xf4\x04\xbc\xcb\x53\x81\xb3\x3e\x3b\x87\xe9\x22\xb5\xef\xbf\x3f\x7b\x24\x8f\x61\x0b\xe5\x96\xf9\xb0\xec\x56\x19\x14\xcb\x35\xc6\xf1\xd1\x44\xa6\xbf\x8f\x61\xec\x1b\xc1\x7e\x89\xe2\x8e\xa0\xaa\xe6\xa8\x18\x2a\xdd\x4c\x3b\x16\x43\x07\x03\x00\x34\x5a\xec\x83\x08\xa0\x4f\x30\x16\xfb\x60\x3c\xa7\x14\x44\x86\x24\xb6\x0f\xc6\x33\xc8\xc0\xe9\xfb\x8b\xe3\x7d\x4d\x40\x43\x44\xb0\x1b\xb0\xea\x53\xcf\xdf\x9f\xbe\xfd\x2f\x23\x39\x6f\x00\xc2\x0a\x80\x81\x60\xba\xa5\x0a\xd1\x28\xb2\xfc\x53\x97\x62\xb1\x8e\x11\xb8\xe8\x6b\xfe\x15\x4c\x71\x02\x0b\xb0\x4f\xb9\x72\xe8\x0b\xde\x84\xef\x46\xb7\xf2\x19\x32\xe7\x6a\x1e\x27\x17\x17\x13\xd9\xc3\xce\x06\x00\x89\xee\x78\xd9\xd1\xc3\xf7\xaa\x13\xa1\xf8\xb1\x33\x64\x3b\xc2\xe0\x88\x73\xca\x56\xfb\xb6\xdb\xa7\xf9\xee\xee\xb3\x58\x66\xac\xfe\x85\xf6\x4d\x78\xa2\x41\xb0\x97\x9e\x6a\xaa\x56\x2a\x3b\x29\x30\x58\x31\x84\x65\xd6\x91\xe9\xef\x3b\x95\xa0\xf3\xe8\xa1\x9a\xac\x11\xe1\x41\x77\xc0\x66\x8f\x91\xa6\xe9\x9b\xcc\x74\x68\x08\x86\x01\x02\xa9\x3f\x2b\x1c\xaf\x06\xee\x99\x27\x87\xef\x26\x43\x19\x20\x4a\x18\xb5\xd7\xdd\x95\x52\xce\xad\x7c\xb2\xb6\xc6\xab\x53\xdf\x2d\xa8\x8a\x34\x07\x0c\x73\xa5\x6a\xc7\xf9\x4a\x33\xf4\x9b\x3a\x2d\x9e\x57\xed\x53\xc5\xe5\x8e\x85\xd5\x5c\x96\xd3\xa5\xda\x2a\x7b\xba\x4c\x74\xf5\xb2\x03\xa7\x1c\x34\x13\xe3\xee\x50\x32\xf5\x7d\x5e\x69\x26\x94\xb8\xbd\xa4\x3a\x25\xd6\x57\x9c\xae\x71\x58\x53\x6e\x50\xb2\x83\x35\x2b\x5f\x51\x54\xd5\xf5\xb1\x6e\x5f\x19\xeb\xa5\x32\x4d\x0a\x14\x2f\x09\x8e\x9b\x61\xce\xaa\x8f\x82\x45\x35\xfc\x8f\x57\x19\x75\xa2\x6f\x5f\x4a\xa5\x3c\x7d\xc4\x01\xce\x84\xf6\x9c\x9b\x63\x86\xae\x61\x9a\xf6\x54\x55\x4b\x0b\x03\xca\xe6\x5c\x13\xa7\x10\x99\x53\xed\x2f\x60\x28\x7a\xfd\x4b\xa3\xd7\x86\xa7\x92\xdd\x7d\x30\x64\x36\x23\xcd\x25\x43\x9f\x94\xe1\xaa\xcf\x04\xa6\xc7\x80\xce\xc1\x2b\xcd\xf2\x56\x2d\x54\x79\x1d\xc7\x4b\x0a\xce\xf4\xa6\x6d\xae\x68\xcc\x30\x59\xf0\x6e\x1b\xd8\xa0\xf6\x0e\x10\x06\x99\xdf\xdd\xa6\xa5\x43\x4e\x26\xd6\xed\xe6\xce\xc4\xb0\x0a\xb8\xa5\xf5\x71\xb7\x97\x27\xd6\x32\xd6\xda\x0b\x03\x7a\xa0\xc5\x71\xa2\xa5\x71\xef\x4c\x6a\x87\xd6\x5b\x04\xc7\x53\xfe\x20\x6c\x55\xde\x47\xe6\x73\x62\xa9\x36\xee\x4e\x42\x43\x81\x11\xfa\xda\xa5\xee\xbb\x06\x86\x86\xef\x2b\x9f\xa1\xdb\x52\xf5\x9e\xd5\xb2\x3e\xc6\xe1\x47\x5b\xed\x2e\xd1\x8d\x99\xda\x19\xc4\x26\x38\x5f\x77\xf1\xf2\xc8\x0a\xd0\x27\xc1\x60\xa5\x4f\xe1\x8c\xe6\x62\xc0\x46\xb2\xa9\x93\x23\xa1\x42\xae\xbe\x61\x33\xe3\x54\x27\xee\x61\xf4\xa8\x24\xdd\xcc\xba\xb0\x61\x84\x0d\xe3\xfb\xde\x30\x08\x15\x56\xad\x6a\xed\x96\x6e\xd6\xcd\x40\xbe\xcd\x30\xa6\x4d\x83\x10\x6a\x55\xbe\x1e\x4e\xa8\x49\xd6\xde\x61\x3d\xeb\x78\x00\xb5\xe7\x76\xa4\x9e\xec\xa1\x76\xee\x74\xcb\xed\xdb\x0d\xee\xfd\x0d\xc3\x96\x42\x78\x5d\x4d\xc0\xf6\xc9\x48\xcd\x7a\xcc\xba\x90\x79\xc3\xce\x35\xe3\x7c\xac\x5c\x8d\xce\x94\xa7\x9c\xf5\xfa\xd2\xb0\xf9\xe3\x19\x8a\x61\xce\x0d\x27\xae\xc7\x94\x50\x54\x31\x46\x4c\xe5\x51\xf0\xea\x9e\x68\x28\xfe\x9d\x71\xff\xaa\xb0\x04\xfb\xb6\x58\x4d\x1f\xdc\x77\x19\x70\x3b\x2e\xff\x4d\xff\xa1\x4e\x2a\x95\xbf\xae\x5e\x96\x7f\x9f\x1f\x5e\xe8\xb7\xed\xc5\x98\x1c\xdf\x62\x81\x2c\xc9\x0e\x12\x3b\x41\xac\x51\x56\x51\x0d\xc1\x5e\xf4\xf4\xc5\x8b\x0e\xc8\xff\xfe\xa6\xbd\x26\x62\x0c\xdb\x8d\x75\x2c\x80\x81\x5e\x69\x40\xd0\x8e\x03\xa4\xce\x29\x38\xa4\x05\x87\xb4\x7e\xb3\x67\x70\x48\x0b\x0e\x69\xc1\x21\x2d\x38\xa4\xb5\xb5\x38\x38\xa4\x05\x87\xb4\xe0\x90\x16\x1c\xd2\x82\x43\x5a\x70\x48\x0b\x0e\x69\xc1\x21\xad\xad\x25\x41\x96\x05\x87\xb4\xe0\x90\x16\x1c\xd2\x82\x43\x5a\x70\x48\xd3\x4f\x70\x48\x0b\x0e\x69\xf5\x27\x38\xa4\x05\x87\xb4\xe2\x09\x0e\x69\xc1\x21\x2d\x38\xa4\x79\x33\x0d\x0e\x69\x4e\x5f\x04\x87\xb4\xe0\x90\x16\x1c\xd2\xaa\xcf\xd7\x74\x48\xeb\xb8\xb0\x01\x80\xc8\x44\xf1\xf5\xbd\x1b\x72\xf1\xbf\x57\x4f\x30\x6b\xe3\x16\xe1\xbb\xab\xab\x2a\xc4\xef\x0e\xf1\xbb\x43\xfc\xee\x10\xbf\xdb\x5f\xbd\x10\xbf\x3b\xd0\xa5\x02\x5d\x2a\xd0\xa5\x02\x5d\x2a\xd0\xa5\x02\x5d\xaa\x7c\x02\x5d\xaa\x7c\x02\x5d\x2a\xd0\xa5\x1e\x14\xc5\x20\xd0\xa5\x02\x5d\x2a\xd0\xa5\x02\x5d\xca\x9b\xf8\x3b\x93\x65\x81\x2e\x15\xe8\x52\x81\x2e\x15\xe8\x52\x81\x2e\x15\xe8\x52\x81\x2e\xe5\x79\x02\x5d\x2a\xd0\xa5\x8a\x27\xd0\xa5\x02\x5d\x2a\xd0\xa5\xbc\x99\x06\xba\x94\xd3\x17\x81\x2e\x15\xe8\x52\x81\x2e\x55\x7d\x42\xfc\xee\x10\xbf\x3b\xc4\xef\xae\x3c\x21\x7e\x77\x88\xdf\x1d\xe2\x77\x0f\x2a\x21\xc4\xef\x0e\xf1\xbb\x43\xfc\xee\x10\x8e\x35\x84\x63\x0d\xf1\xbb\x43\xfc\xee\x10\xbf\xbb\xbd\xfe\x21\x7e\x77\xd8\x30\xc2\x86\x11\xe2\x77\x87\xf8\xdd\x95\x27\xc4\xef\x0e\xf1\xbb\x6b\x4f\x88\xdf\xdd\x7e\x80\x0c\xf1\xbb\x83\x43\x5a\x70\x48\x0b\x0e\x69\xc1\x21\x2d\x38\xa4\x05\x87\xb4\xe0\x90\xe6\x3e\xc1\x21\x2d\x38\xa4\x3d\x28\x27\x8e\xe0\x90\x16\x1c\xd2\x82\x43\x5a\x70\x48\xf3\x26\xfe\xce\x64\x59\x70\x48\x0b\x0e\x69\xc1\x21\x2d\x38\xa4\x05\x87\xb4\xe0\x90\x16\x1c\xd2\x3c\x4f\x70\x48\x0b\x0e\x69\xc5\x13\x1c\xd2\x82\x43\x5a\x70\x48\xf3\x66\x1a\x1c\xd2\x9c\xbe\x08\x0e\x69\xc1\x21\x2d\x38\xa4\x55\x9f\x3f\x77\xfc\x6e\x15\x94\xbb\x2f\x7a\xf7\x7b\x99\xa8\x43\x7e\x57\x07\x9d\xea\xd4\xde\x7a\x6a\xda\x9d\x8e\x9b\xac\x80\x12\x99\xa9\xb2\x2c\x26\x23\x8d\x9d\x14\xc8\xef\x12\x2f\xe4\x41\x74\xba\xa5\xf2\x9b\x6e\xa9\xed\xd2\xa4\xf5\x65\x0d\xe7\xf2\x00\x25\x94\x82\xa6\x32\x48\xe9\x35\x62\xba\x36\x9a\xc6\xe8\x54\x8e\x03\xba\xc2\x42\x48\xb9\x8b\xad\x07\x8c\x2f\xd3\x98\x12\x8e\x75\xd8\x72\x8d\xf1\x4d\xb7\x30\x99\x63\x82\x05\x9a\x6e\x81\x08\x28\xf2\x9c\xd3\x1c\x2b\xd5\x4d\x3d\x41\x0a\xb9\x18\x81\xa2\x65\xde\x2e\x91\x75\xc5\x09\x22\x02\xc7\x30\x35\x15\xac\xe7\x83\x09\x80\x69\xb6\x84\x24\x5f\x21\xe6\xa4\x53\x11\xc3\x7d\xb9\x1a\x59\x6e\xe0\x28\xcd\x10\xf1\x9e\x4f\xf5\xdc\x20\xf9\x6a\xd6\x44\x0a\x3b\xd4\xc6\xda\x26\x7f\xe1\xc2\x34\x7a\xa2\x38\x60\x4d\xce\xcd\x99\x13\xc7\x97\xfa\x3f\x34\xf7\xce\x7f\x59\xe5\xda\xa1\xdb\xe9\x5c\xe3\xae\xe1\x74\x8b\xa0\x76\xcf\x6b\x87\x0e\xca\x7a\x48\xd5\x21\x4d\xe9\xb5\x16\x05\x1a\x41\x2a\x30\x15\xad\xd8\xbd\xd6\xf0\x82\x5e\xed\x1f\x53\x2c\x10\x83\xea\x64\xef\xcb\x79\x3a\x05\x91\x76\x57\x92\x13\x65\x95\x41\x86\x39\x25\x3b\x40\xf9\x2c\x5a\x58\xc0\x66\x39\xa7\x14\xcc\x20\x53\x58\x45\x51\xdc\x5f\xd6\x2c\xae\x2c\x4f\xee\xec\xe8\x9f\x39\x4c\xff\xae\x19\xb6\x56\x53\xc5\x73\xa3\xa2\x62\xae\xd2\x58\xe4\xbd\x28\xd2\xbf\x2e\x3f\xab\x7a\xc0\x92\x17\x36\x2b\xff\x19\xeb\x7f\x8e\x46\x23\xf0\xc5\xa9\x81\x60\x39\xb2\x8e\x32\x05\xd7\x54\x97\xf1\x9f\xc0\xcf\x6d\x37\x26\x87\x9e\xa2\xca\xba\xca\x06\x60\x32\xa0\x72\xbe\xc2\xd6\xac\xaf\x2a\xac\xab\x82\xfe\x21\x71\xea\xbc\x84\xfc\xb1\xca\xef\xa3\xdc\x5c\x9e\x94\x45\x5f\x14\x25\x43\x51\x8e\x8e\x33\x32\x7f\x51\x93\xd4\x2b\xf3\x4d\x16\x05\x3c\x49\xe7\x2a\xad\x42\xa7\xd4\xff\xe7\xbb\xbb\x4f\x5f\xea\xff\xea\x37\xc5\x37\xe7\x4b\xca\x44\x14\x63\x16\xe7\x58\x28\xad\xca\x7c\xe4\x2b\xe8\xdf\xff\xee\xfc\x5a\xd9\x31\xc4\x63\x9d\xe6\x49\x91\x28\x83\x0c\x19\x8d\x7c\xc1\x68\x9e\x49\x8d\x7c\x3a\x15\x30\x4d\x1f\x7b\xed\x51\x26\xa4\xbd\x66\xa5\x14\xf2\xc2\xe6\x66\xe7\x30\x4c\x53\x07\x62\x52\x0b\xf4\xad\x9e\x0f\xfa\x0c\xe5\x3f\x1e\x41\xb9\xb4\xb5\x9c\xb1\x4c\x4d\x57\x64\xf2\x1d\x10\xed\x80\x8f\xaa\x1f\xc6\x23\x70\xae\x96\x1c\x30\x4b\xae\x35\xd3\x15\x65\x08\x64\x52\xfd\xe7\x1c\x5f\x21\x30\xd3\x3e\x06\x37\x16\xde\x34\xc0\x33\x40\x3c\x86\x19\x02\xf1\x12\x32\x18\x0b\xc4\x4c\xb5\x8f\x35\x55\xdb\xbb\x18\x1e\x2b\xc1\xbf\x82\x09\x8a\xf2\x4c\x4f\x0b\xfe\xa4\x10\x47\xca\xb1\xcd\x88\x8e\x6b\x34\x93\x07\x07\x64\x84\x87\x3b\xe2\x09\xca\x52\x7a\xb3\x42\xc4\x2b\x4e\xcd\xf7\x19\xa3\x89\x9d\xa4\x2a\x5f\xb9\xa6\x94\x4c\x62\x94\x08\x44\x12\x67\xaa\xc3\xf8\xd2\xfc\xf0\x45\x26\x2f\xf3\x07\x7f\x79\xdd\xb6\x02\x12\x74\x65\xb3\xff\x0b\xa8\xad\x02\x9f\x28\xeb\xd2\xa8\xaa\x60\x60\x87\xb9\xba\x03\x09\xec\xc6\x2d\xe6\x9a\xbf\x5a\x6e\x0b\xbe\x66\xd9\x1d\x4b\xcf\x51\x03\x28\xe8\xeb\x39\x28\xb1\x95\xb4\x58\x81\xcf\xec\xdc\xd5\x46\x65\x74\x18\xb0\xa7\x2a\xdb\x04\x26\x09\x8e\xd5\xd1\xf3\x7a\xa9\x1c\xa6\x5d\x45\xd6\x65\x65\x99\x53\x8e\x57\x4e\xc9\x75\x47\xcd\x05\x1e\x3b\xe6\xaf\x19\x15\xcb\x11\xd0\x44\x49\xb5\x9b\x7c\xca\xa4\x92\x22\xd2\x1b\xe7\x2c\xf5\x58\x5d\x3e\xe2\x65\xc0\x3a\x72\x94\x80\x98\x21\xe3\x9f\xc1\xcd\xea\xa6\x0c\x10\x9c\x3e\xd9\xb1\x3e\x16\x09\x9a\xc3\x3c\x15\x1c\xe8\x66\xc9\xae\x63\x49\x8b\x4a\x2d\x28\xb8\x96\xb2\xf2\xc4\x1c\xdc\x64\x25\x8e\xcd\x3f\xe5\x7a\x34\x92\xb3\xb8\x81\x43\xf3\xfd\x14\xb4\x6e\x8a\xf1\xe5\x8a\xb9\x5e\x5d\x11\xf8\xc3\xe8\x45\xb2\x2a\xb6\x8c\x7f\xec\x98\xcd\x41\x6a\x99\xca\x6c\x60\x8b\xd4\xf7\xa4\x3c\xc6\x24\x4e\xf3\xd6\x1a\x2f\x11\x88\xa1\xd4\x3c\x55\x06\x65\x36\x40\x6f\xcf\x84\x16\x8d\x51\xd9\x3d\xf1\xd4\xe4\xb8\xf5\xfe\x95\x7a\xdd\x2a\x15\x93\x22\xa9\x9e\x7d\x7b\x3b\xbd\xd3\xa3\x5e\x87\x46\x81\x0a\xc1\xf2\x8c\x86\x39\x51\x7b\xe5\x02\xd1\x53\xab\xaa\xeb\x33\x04\xe5\x3a\x8a\x2f\x01\x5c\x40\x4c\x76\xcc\x6c\xd0\x66\x8f\xf4\x1a\xde\x70\xc3\x82\xf7\xce\x62\xcb\x56\xd0\x34\x85\x1d\x40\xd0\x15\x62\x95\xf9\xe6\x3d\xdd\x0f\xbc\xde\xa7\xec\x05\x80\xd4\xa6\x51\x18\xf4\x32\xca\x39\x9e\xa5\xb6\xe0\x92\x87\x25\x3f\x38\xcf\x50\xec\x3f\xef\xe9\xb6\xb5\x33\xd3\xba\x4f\x96\xad\x87\x36\xff\x59\xaf\xf9\xab\xda\x33\x12\xd7\xde\xce\x05\x65\x70\x81\xec\x4f\x5c\x40\x91\xeb\x8e\xd1\x26\x27\x94\x9c\x3a\xc6\x80\x4b\x4c\x12\x29\x87\x6c\x97\x66\x69\xce\x60\x5a\xfe\x12\x53\xa2\x2d\xc0\x7c\x1f\xfc\xf1\x0f\xf9\x8b\xcc\x1f\x25\xc6\xc3\xd3\xfc\x3a\x25\x51\x14\x4d\xc9\xb6\x61\xdd\xef\x83\x58\xc9\x83\xb1\x40\xab\x4c\x5d\xa0\x34\xd6\x3f\x44\x84\x26\x28\x62\x33\x18\x8f\x6e\xe0\x2a\x9d\x12\x98\x61\xeb\x5a\x0a\x60\x86\xd1\x27\x81\x88\xca\x77\x74\xf9\x8a\x8f\x30\x1d\x5f\xed\x4d\x89\xae\xe3\x61\xce\x05\x5d\x9d\x21\x6d\xfc\x3a\x42\xea\x80\xa6\x24\x7b\xc5\x81\x53\x41\x36\x80\x68\x92\x2c\x47\x82\x8f\x62\x96\x8c\x32\x46\x65\x9f\xe9\x5a\x8c\x28\x5b\x4c\x89\x94\x7f\xea\x0b\xa5\xd4\xec\x83\x96\x64\x55\xdb\x89\xae\x4a\xc9\xe4\xd5\xbf\xa6\x98\x8b\x5f\x6b\x6f\xde\x62\x2e\xaa\x5d\xea\xd4\xc9\x8c\x14\x26\x8b\x3c\x85\xcc\x7d\x25\xdf\x28\xd1\xc7\xae\xd0\x07\x72\x49\xe8\x35\x79\x23\xe7\x16\xdf\x07\x73\x98\x72\x35\xc6\x3c\xa6\x72\x1a\x14\x78\x8c\x3a\x1b\x5e\xd9\x01\x91\x7f\x44\xa6\x1b\x64\xef\xa9\x92\xe2\x25\x5a\x95\x0e\xae\x34\x43\xe4\x60\x72\xf2\xdb\xb3\xf3\xea\xef\x4d\x2a\xad\x25\x2c\x1b\x52\x58\x59\x64\x84\xfe\x99\xe3\x2b\x98\x4a\x11\x6d\x56\x4a\x9d\xe5\xec\x2c\x87\x16\xc0\xcd\x19\xfd\xea\xec\xaf\xc6\xc1\x90\x55\x35\x7c\x03\xcd\xcf\xd7\x95\x31\x2d\x46\x89\x69\x9e\xae\x87\x92\x3f\x66\xf3\x80\x3e\x24\x85\xce\x95\xbe\xa0\xd6\xd0\x48\x29\x15\x88\x71\x7b\xec\x8c\x29\xb9\x42\x4c\x00\x86\x62\xba\x20\xf8\x5f\x45\xe6\xdc\x32\x20\xd4\x74\x6e\x6c\x3d\x98\x08\xc4\xa4\xfa\xa1\x84\x87\xc6\x79\x57\xf0\x06\x30\x24\x8b\x01\x39\x71\x32\xb4\xfc\xab\x77\x52\xed\xc4\x64\x4e\xf7\x55\x84\x22\xbe\x3f\x1e\x2f\xb0\xb0\x13\x3f\xa6\xab\x55\x4e\xb0\xb8\x19\x2b\x9b\x2c\x9e\xe5\x82\x32\x3e\x4e\xd0\x15\x4a\xc7\x1c\x2f\x22\xc8\xe2\x25\x16\x28\x16\x39\x43\x63\x98\xe1\x48\xd5\x9d\xa8\xb5\x3a\x5a\x25\xdb\xcc\xac\x14\xfe\xc8\x27\x59\x9a\x02\x49\x4d\xed\xae\x61\x90\x33\xdc\xb8\xf5\x6a\xbd\x5a\x2b\x06\x45\x6f\x5b\xf2\xc9\xd9\xf1\xf9\x05\xb0\xa5\x7b\x5d\xa0\x75\xe7\x97\x5f\xf2\x72\x1c\x64\xa7\x61\x32\xb7\x1a\x90\x82\xc1\x5d\xc0\x40\x6f\xc2\x29\xf6\x28\xc3\x3c\x9f\xad\xb0\xe0\x4e\x68\x1b\x3a\x02\x87\x05\x3e\x9e\x67\x09\x14\x28\x19\x81\x13\x02\x0e\xe1\x0a\xa5\x87\x90\xa3\x7b\x1f\x05\xa5\x06\x46\xb2\x6f\x87\x8e\x43\x8b\x3b\x7a\x1b\xf8\x57\x88\xb1\x96\x61\x2b\xd7\xa3\xdc\xc3\xaa\xfe\x50\xd6\x7d\xae\x74\x58\x87\x0d\xd9\x56\x3e\x76\x48\x6b\xdb\x5c\x07\x98\xde\xc2\xdc\x6f\x5c\x1a\x68\xc9\x85\x27\x93\x42\x12\xea\x73\xf4\x0c\xa5\x54\xce\x2a\x6a\xd0\x1c\xe4\x33\xc1\xb6\xef\xfc\x3f\xc4\xde\xab\x76\xde\x81\xdb\xef\x65\x3e\x43\x25\xc7\x83\x71\x77\x2b\xfe\xfc\x19\xcf\x01\xfa\x27\x18\x9d\xfd\x74\x70\x78\x48\xc9\x1c\x2f\xc0\x74\x4b\x26\x98\x6e\x7d\xf9\x22\x73\x3f\x51\xca\x31\x02\x10\xc4\x69\xce\x05\x62\x8c\xa6\xa8\xb8\xc2\xae\x9e\xb7\x42\xcb\x28\x41\x44\xec\xc8\x8f\xd5\x25\x78\x4a\x82\x08\x2b\x4a\x5b\x2a\x65\x4f\x5e\x25\x01\xc2\x28\x00\xba\xd0\x33\x9a\xa2\xaa\xe2\xa0\x1a\x01\x73\xb1\xa4\x0c\xff\x4b\x93\xbf\x1c\xed\xc1\xa3\x1d\xb4\x14\x3c\x25\x4a\xd5\x55\x09\xb7\xc1\x29\x4d\x34\x0e\x01\xae\x0d\xc7\x4b\x50\xb0\xa2\x04\x2b\x2e\x33\x65\x20\x41\x29\xd2\xeb\x5c\x6f\xb9\x30\xc3\x3f\x4b\x55\x42\x8e\x8b\x1c\xc2\x7f\xe8\x51\x2d\xe4\x70\x31\x45\x23\x20\xd5\x20\x23\x15\xaf\x10\x9b\xb9\xaf\xae\x5d\x7b\x47\xa4\x96\x46\xf9\xd7\x42\xaf\xca\x6d\x30\xb1\x31\xcf\x9c\xba\x95\xa1\xa8\xd0\x27\xcc\x85\xba\x21\x12\x72\x90\x41\x66\x16\xd7\xc1\x3b\x50\xb6\x76\xfd\x4a\x67\x34\x69\xa9\xf3\x02\x89\xb6\x1a\x17\xcd\xd9\xd6\x15\x28\x32\x36\x1e\x71\x04\x67\xea\x8a\x4d\x85\x7e\xeb\xfb\x3c\xb9\x32\x7a\xc9\x2e\xd2\x93\x26\xa5\xf1\xa5\x91\xde\x7c\x47\xb6\xe8\x1a\xc9\x83\x04\x07\x19\x62\x98\x26\x38\x06\x82\xe1\xc5\x02\x31\xff\x40\xf8\xf5\xba\xae\x86\x62\xa3\x80\xe9\x48\x16\xfe\x26\xdb\x56\xde\xbd\x34\xd5\x3e\x38\xd7\xea\x6c\x89\x22\xc9\x6a\xc0\x95\x7a\x59\xfb\x6d\x09\x49\x92\xb6\x4d\x9f\x8e\xa1\x50\xc7\x77\x54\xfe\xad\xbb\xb4\xfc\x5b\xcd\x67\xe4\x1d\xba\x09\xa5\x69\x73\x2d\x40\x6c\x10\x38\xb0\x82\x99\x82\x05\xe9\x5c\x37\x47\x87\x21\x98\x80\x4c\x7e\xb7\xb1\x51\x51\xb9\x75\x0f\x47\xa3\xe6\x0d\xe1\xb2\x82\x04\x2e\x10\x07\x4b\xca\x85\x43\x71\xdb\x48\x15\x2b\x79\xde\xe3\xf8\x6c\x83\x53\x84\x12\x85\xaf\xc8\x03\xba\xa0\x26\xad\x95\xcb\x4e\xc8\x94\x4d\x35\xcd\x93\xf3\xc6\x1b\xe8\x0c\xdb\xaf\xf9\x0c\x1d\x96\xa3\xa6\xb7\xa3\x9c\x15\xf0\x93\x46\x60\xb0\x90\xc5\x71\x20\xb5\xbe\x58\x25\xd9\x4c\x63\xe5\xa4\x71\xe6\x4c\xec\x96\xee\x6d\xf6\xb6\xc6\x3c\x64\x3d\xe8\x35\x71\xea\xd2\xe8\x93\x6d\xd3\x0b\x00\x5a\x14\x0b\xe0\x39\x20\x94\x20\x2d\xb5\x79\x5b\x77\x6d\xdb\x31\xd6\x4a\x45\x5b\x2f\x6e\xeb\x5e\x54\xdb\x40\xbc\xac\x78\x62\x14\x1d\xac\x94\x85\xc6\x9e\xfa\x13\x26\x1a\xf8\xba\xa7\xad\x95\xa6\xe8\x0c\x69\xaf\x06\x3b\x3e\x1d\xf9\xcb\x64\x9e\x6d\xbf\xb7\x18\x9e\x2b\x05\x4d\x0e\x4d\x64\x32\xa8\xe2\xc6\x03\xf2\x70\x19\x12\x5a\x80\xf0\x1b\x2e\xd0\xca\xf4\x5c\xa1\x6d\x9d\x41\x12\x2f\x11\x8b\xac\x1a\xbd\x0f\x0e\x55\x8f\xbb\xca\x8d\xda\xc6\x9c\x26\x68\x36\x88\xdc\xad\x35\x62\xaa\x6e\x66\x86\xf1\xe5\x35\x64\x89\x56\x99\xa0\xc0\x33\x9c\x62\x71\x73\x1b\x3c\xa5\x4f\x49\x73\x6b\x75\x04\xd1\x8a\x92\x73\xd4\xa7\x9f\xa9\xc4\x5f\x49\x27\xab\xaa\x60\x1f\xb8\xb9\x22\x59\x23\xcf\x25\x73\xb6\x24\xf0\xd1\x4b\x44\xb8\x31\xdb\xe7\x4e\xcc\xa0\xc3\xd3\x13\xa9\x4f\x2f\xb4\x25\x74\x2d\x3d\xa7\xda\x54\x3e\x56\x65\x54\x93\x9f\x56\xe8\xb4\x11\x88\x21\x29\xc3\x1b\x45\xb6\xe3\x62\x82\xa3\xb2\x0e\x4d\x51\x59\x2e\xf0\x6d\x75\x0c\x2a\xeb\x0c\x88\x92\xef\x82\x4a\xd1\xa1\x14\xaf\x1d\xad\x33\x6a\x64\xc1\x75\xb0\xbe\xbd\x16\x57\x53\x44\x2d\x6a\xa4\x33\xee\x14\xee\xdb\xc0\x7a\xae\x9f\xa7\xd8\xea\x72\xb9\x1d\x2c\xb3\xde\xcc\x45\xe7\xe6\x40\x67\xe1\x61\x1b\xb7\x6b\xdb\xc6\x61\x5a\x59\xd7\x8b\x7a\x2b\x12\xcc\x63\x7a\x85\xd8\x8d\x95\x08\x5d\xad\x2a\x76\x5d\x55\x9f\xb5\x34\xeb\xb5\x7a\xaf\x41\x0b\x2c\xa6\x4b\xcb\xbe\xf0\xc1\xd8\x98\x6c\x6b\x8a\x19\x7c\x32\xd1\x26\x55\x98\x5c\xc9\xd3\x33\x2f\x3b\xa2\xb3\xb6\x2d\xb9\x5e\xdc\x64\x4b\xc8\x47\xfe\x93\x02\x38\x3c\x39\x3a\x03\x30\x17\x34\x4a\x90\x40\xfa\xa6\x7c\x4a\x94\x68\x83\xc9\xca\x4c\xb6\x52\x99\xd0\xdb\x97\x54\xea\x6e\x31\xbf\xf4\xc7\xf2\xdb\xce\x29\xb4\xfe\x71\x69\xec\x6e\x7c\xf5\x6e\x96\xfa\x90\x95\x15\x29\x82\x0a\x9e\x92\x07\x38\x83\x66\x7c\x20\xf0\x0a\xe2\x14\xce\xa4\x28\x4c\xe1\xc2\xe9\xa8\xcc\xed\xe7\x6d\x6b\xc8\x52\x07\x6d\xae\xbd\x11\xe3\xaa\xf2\xe1\x84\xa3\x93\x0b\x55\x1f\x53\x8a\xb8\x77\x23\xdf\xc6\xbc\x0d\x7e\xaf\x6f\xca\xb2\x9f\x1d\x5a\xab\x1b\xd4\x01\xb7\x2c\x6b\xb3\x92\x30\x59\x0c\x59\x11\x26\x75\x56\x21\x25\x0d\x5c\x12\x66\x82\xcd\x6e\x6c\x77\xc8\x8a\x5b\xfb\x4e\xd9\xfe\x3b\x0b\x9f\x9a\xb4\xf1\x08\xdf\x35\xb5\xfd\x9a\x14\xcd\xac\xbb\x10\x4d\xec\xf4\xb9\x5d\x9d\x3b\xe6\x9e\x33\x83\x8a\xd9\x63\x50\x02\x0e\xae\x20\xc3\x34\xe7\xe0\xf0\xec\x48\xaf\x76\x3d\x97\x36\xa4\x93\xeb\x18\x27\x73\x94\xe2\x4f\x3a\x5f\xa7\x1f\x9d\x5f\xab\x8a\xab\x3a\x72\x2e\xb2\x0c\x21\x56\xfd\x65\x8e\x53\x51\xf9\x4d\x67\x3f\x5b\x64\x8d\xcc\x8b\xdf\x9a\x59\x57\x4e\x69\x6d\x87\xe9\xb6\xd3\xad\x2e\xd1\x3b\x73\x1b\xaf\x39\x72\x85\x70\xeb\x37\xde\xd4\xad\x87\x99\x96\x43\x5c\xe7\x31\x5d\x0f\x96\x12\x51\x6a\x92\xdc\xe2\x64\x7e\xdd\x9c\x41\x39\x17\xc5\x49\x81\x24\x85\xee\x2f\xe5\x91\x9a\x4c\x94\xc8\x83\x00\x13\x79\x76\x1f\xc7\xeb\xde\x19\x34\xf8\x38\xd8\x7e\xe6\xab\xb6\xb5\xde\x40\x4f\xab\x40\x6b\xb3\x40\xd7\x7e\x34\x70\x78\x3c\x15\x1b\xb6\x09\x18\x12\xa6\x2c\x61\xa3\x40\xe0\xb0\xf9\x72\xa1\x6c\xe5\x96\xbc\x44\x89\xd6\xc5\x14\x5f\xde\xf2\x8c\x95\xe0\xc9\xb3\x05\x83\x89\xf1\xfe\xbc\x7a\x3a\x7a\xa9\x35\xc9\x58\xc7\x89\xda\x96\xea\x33\x43\x2b\x7a\x85\x12\xc3\xb1\xb5\x1f\x50\x26\x5b\x38\x67\x88\x2f\x01\x26\x5c\xc0\x34\xdd\x28\xb0\xd0\x21\x4b\xaa\x62\x6a\xe8\xcc\xba\xb5\x2d\x7a\x5b\x6d\x1d\x66\x66\x03\xa6\x8e\x34\xf7\x84\x3c\xbb\x27\x83\xf2\xc0\xf3\xd5\xf5\xf8\x7b\xd9\x07\x6f\xdd\xfb\x6f\x52\x48\x08\x4a\xab\xbd\xbd\x0d\x26\xb9\x72\x47\x55\x13\xd7\xb1\xd0\x2d\xf3\xd9\x28\xa6\xab\x71\x4c\x19\xa2\x7c\x3c\xd7\x1f\x8f\x67\x29\x9d\x8d\x57\x50\x66\x30\x3e\xa2\x71\xbe\xb2\x66\xe0\xb1\x3a\xc8\x9b\x64\xa6\x60\x59\xee\xa6\x47\xd8\x94\xb0\x81\x71\xdd\x98\xe6\xbc\x96\x12\xb5\x51\xc5\xbc\x3e\x29\x7e\xc2\x24\xd1\xde\xca\xcd\xb1\x2e\x51\x07\x02\xd3\x1a\x68\xe3\xc3\x1b\x36\x85\x57\x11\x98\x46\xe5\xa0\x6d\x14\xa5\x2a\xb2\x5d\x0b\x95\x32\x50\x42\x27\x06\xf5\x15\xc0\xa7\xe1\xdd\xda\x3e\x34\xad\x1d\x5e\xa0\x3d\xf7\x80\x0a\x6e\xb6\xbb\x3f\x7f\x46\x24\xf9\xf2\x65\x23\x0c\xa7\x8d\x76\x63\x73\x23\xb9\x0f\x84\xd5\x2d\x60\x7d\x6c\xb5\x8a\x80\xf5\xcc\xe8\x21\x3d\x5b\x6c\x16\x2a\x78\xd1\x0a\x12\x3c\x47\x5c\x58\xc5\x84\x3b\x02\xc4\x10\x1d\x10\x2b\x4c\x86\x0a\xe5\xe4\x35\x74\x50\x33\x1d\x2d\x48\x65\x90\x0f\x4a\x64\x5a\xe5\x7d\xa9\xb7\x12\x95\x48\xa6\x40\x4c\x9f\xf8\x95\xd5\xcb\x39\xbf\x1b\xad\xa1\x90\x53\x05\xb6\x5a\xa7\xb8\x65\xbc\x53\x12\x75\x75\x13\x30\xfc\x71\xcb\x1e\x78\xc5\x23\x98\x65\xc5\x87\x05\x11\xa4\xe6\xd0\xa3\x08\xf7\x6f\xdd\x2f\x9b\xdf\x02\xa3\x3d\x9d\x0b\x06\x05\x5a\xdc\xec\x1b\x3a\xc0\xe8\x43\xe5\x67\xb9\x0c\x3e\x7f\x06\x82\xfe\x17\x5c\xa5\xf5\x97\xe0\xdf\x00\x93\x04\x11\x01\x9e\xeb\x74\x28\xe5\x48\xfe\x0b\x14\xe4\x89\x33\x9a\xa6\x98\x2c\x3e\x38\x16\x0b\xe6\xfe\x54\xd4\x6f\x05\x3f\x39\x90\xcd\x3e\xd8\x73\xd6\x21\x00\x76\x66\xd8\x06\xd6\x09\x33\x69\xb5\xb1\xbe\xe6\xd6\x78\x33\x72\x4c\x3d\x34\xf4\x32\xbc\x91\x5c\xa3\x94\xef\x83\x14\x93\xfc\x93\xed\x9c\x53\xe7\x2b\xdb\x50\x00\x3e\x7f\x36\x71\x92\xff\xe3\x72\x07\xfc\xc7\x15\xd8\x7f\x5d\x4d\x09\xca\xa4\x2a\xf1\x7f\x5c\x82\x2f\x5f\xf6\xc1\x74\x4b\xfe\xfb\x4a\xbe\xdd\x72\xb2\x42\x24\x01\xa6\x3b\x6d\xf3\xe5\x23\x0f\xa9\x06\x33\xaa\xc6\x5a\x12\x34\x45\xac\x71\x25\xc4\x36\x78\x07\x2f\x11\xe0\x39\xb3\xcb\x43\xd9\xcd\x78\xbc\x44\x49\x9e\x6a\xbe\x3b\x4c\x53\xbd\x9f\x3b\x14\x9b\xc8\x44\x31\xd9\x07\xa7\xf4\xdc\x24\x2e\xdf\x2a\x22\x21\x83\xb2\xcf\xc0\x71\xc5\x78\xa5\x4b\x64\x97\x86\x58\x9b\x68\xf7\xfc\x98\x61\xed\xfe\x06\x93\x24\x32\x84\x23\x86\x4c\x25\x30\x59\x54\x0a\xbe\x44\x37\xfb\xe0\xd0\x7c\x71\x90\x24\x94\xf0\xf7\x35\xc7\xe9\xf6\xd2\xdd\x7a\x1f\x7f\x42\x71\x2e\x06\x55\xbb\x8f\x02\xa3\x53\x55\xbd\x17\x4e\xab\x8b\x57\x67\x53\x19\xab\x6d\xf0\x0e\x13\xbc\xc2\xff\x42\x20\xa1\xd7\x44\xe0\x15\x02\x49\xae\x20\x4a\x68\xe7\xbf\x7b\xdc\xb2\xbc\x92\xbf\x03\x81\xd2\xd4\x95\x32\x82\x82\x84\xaa\x6b\xcb\x14\x74\x5e\x16\x60\x3f\x99\x6e\x95\x2c\xb6\xea\xe4\x4d\x68\xcc\xc7\x31\x25\x31\xca\x04\x1f\xdb\xe0\xae\x7c\xac\xb4\xfa\x8c\x26\xe3\x6d\xeb\xff\x8e\x29\x89\xe8\x3c\x92\x2f\x8a\x01\x71\xde\xfd\xcc\x60\x8c\x26\x8a\x79\x71\x8e\x62\x4a\x12\xbe\x0f\x76\xcb\x9a\x18\xb5\xa4\x8c\xcc\xae\xf1\x4e\x9b\x20\x63\x98\x32\x2c\x6e\x0e\x53\xc8\xb9\xee\xba\xcf\x9f\xc1\xe8\x10\xaa\xbb\x49\x6a\xef\xc0\xbf\x0b\x1b\xe9\x74\x4b\x4b\x41\xbd\xbd\xda\x89\x34\xdd\x72\x16\x13\x26\x58\x1c\x5a\xa1\x5f\x9d\xfc\x6a\xb3\x28\x36\x84\xea\x6e\x21\xb7\x82\x19\x26\x90\x55\x3c\x37\xb5\x3d\x4c\xbe\xab\x6d\x0d\x73\x9c\x2a\x5f\x08\xb5\x39\x14\x67\x7e\x3b\xeb\xb4\x24\x37\xf9\xcb\xdd\xcf\x9d\x75\x78\xa5\xa8\x61\x9f\x3f\x8f\x0e\x4f\x4f\x4e\xe4\x1f\xae\x24\x30\xef\xe5\x69\x47\x53\xce\xf7\xc1\xc9\x5c\xdd\x55\xa0\x28\x92\x6e\xc2\x98\xae\x56\x50\xee\x32\x7f\x4c\xb7\xc6\x34\x13\xe3\x98\xe0\xf1\x0c\x93\xb1\x29\xb8\x50\xd9\xf5\x83\xc8\xd5\x1b\x46\x57\x15\x86\x9c\xc5\xe9\xdf\xc1\xcc\xaa\x0c\xee\xb3\x0d\x0e\x94\x0f\xe5\xaf\x1f\x7e\x3a\x3e\x3b\x3d\xbe\x38\x3e\xff\x78\x7e\x7c\xf6\xdb\xc9\xe1\xf1\xc7\x5f\xde\x9f\x5f\xa8\xce\xf1\xbc\x9b\xbc\x3f\xbb\x30\xb6\x38\x7a\x85\x18\xc3\x49\x82\xf4\x32\x47\x3f\x4d\xde\x80\x55\xb5\xbb\xf4\xa3\xbb\xcc\x09\x24\x67\xed\x29\x91\x05\xe1\xea\x5f\x58\x57\x9f\x66\x90\x39\x44\xae\x6a\x4d\xd9\x06\xe7\x48\x98\xf0\x0c\x2e\xb0\x5c\x68\xc2\x39\x2f\x8d\xa3\x06\xf6\x29\x95\x83\x51\x3d\xb3\xdf\x95\x99\xcb\xe8\xb0\x46\x11\xe0\x02\xc1\x04\xd0\x79\x45\xe9\xbe\x5e\x22\x02\x72\x2e\x57\xb6\x3d\xea\x38\xf0\x7d\x35\x5b\x3b\x6d\x0e\x0f\xde\x9e\x1c\xbe\xff\x78\x78\x7a\x52\x74\xe8\xc1\xe1\xe1\xfb\x0f\xa7\x17\xf5\x1e\x50\xc4\xdb\xc6\x98\xea\x47\x79\x22\xf8\xc6\xb4\x78\x39\x81\x62\xb9\xaf\x16\xe8\xa8\x29\xca\xea\x2d\x3e\x35\xc1\x0b\xec\x52\x71\x97\x81\x3c\x48\x28\x10\xa6\xad\x41\xa7\x27\x1f\x0f\xdf\x9f\xbe\xf9\x78\x7a\xf0\xee\xd8\xdb\x06\xb9\xed\xed\xed\x46\xaa\x3f\x47\x32\x6b\x75\x28\xdd\xaa\x57\xc2\xc2\xfa\xb5\xb5\xa8\xfc\xa1\xd4\x8c\x6f\x5b\x91\xf5\xda\x9c\x1e\x5f\xfc\xfe\xfe\xec\x57\x55\xab\x93\x9f\xd7\xe9\xd6\x62\xb9\xfc\x8a\x6e\xda\x7a\xb7\x72\xc0\xa9\x50\x40\xdc\x47\x6d\x6c\x31\xc1\x1f\x4d\x6b\x3e\xfa\x92\x96\xf3\x56\xee\xf4\x6a\xb2\x16\x8e\x69\x8a\x6c\xf9\x8a\x6b\x45\x54\xbe\x6a\x69\xb0\xb3\x40\x4f\xdf\x1f\x1d\xb7\x8f\xc2\x26\x66\x92\xac\x8c\x6f\xfe\xc8\x61\x7b\x77\xf1\x01\x98\xdd\xf4\x0a\x32\x2c\x55\xba\xf6\x21\x7a\x77\xf1\xe1\x1b\x8e\xcb\x15\x12\xcb\x8f\x2b\x91\xd7\x9b\x31\x61\xe8\x0a\x11\x73\x89\x61\xb9\x93\x28\x50\x8a\xa7\x08\x29\xf6\xdb\x9c\xca\x54\xf5\xcb\x4e\x6d\xe3\xce\xdf\x1e\x1f\x37\x6e\x0c\x2e\x56\x81\x76\xee\xa8\xcc\xfc\x2b\x9a\xe6\x2b\xf4\xce\x17\x2f\x2d\x02\x2b\xf9\xb3\xee\xff\xb1\x9c\x22\xee\x3e\xe0\x17\xb1\xf2\x2c\x36\xc3\x24\x4a\x30\xeb\xcd\x0c\x89\x58\x65\x46\x90\x18\x35\x22\x0f\x94\xd9\x11\x24\xea\xd9\x71\x14\xe7\x6a\x13\xa7\x44\xa0\x4f\xf5\x5b\x35\x33\x86\xaf\x70\x8a\x16\x55\xd6\x34\x28\x37\x69\xb9\x89\x3b\xfd\xbb\xd2\x31\xdf\x74\xe4\xc9\x18\x71\x0e\xd9\x8d\x92\x3d\x5a\x1b\xe0\xca\x74\x5d\x92\x3e\xe4\x26\xa3\xee\x66\xcb\x52\x48\x2a\x99\xab\x10\x0e\xb3\x6c\x0e\xa0\x00\x63\x7e\xc3\xc7\x73\x3e\x56\x7f\x92\x04\xc4\xca\x01\xe8\xa9\x7a\xc5\x72\x62\x8e\x9b\x63\xfd\xf3\xc8\x46\xc6\x33\xd2\x1e\x0b\x0c\x53\xcc\x4b\x3f\x48\xad\x5d\x26\x95\xc2\x08\x98\xc9\x53\x29\x9a\xcf\x29\x13\x60\x0e\xf9\x12\x53\xb2\xa3\x2b\x41\x28\x98\x43\x9c\x4a\x4d\x5c\x6d\x8c\x8c\x51\xc6\x77\x34\xe3\x55\x80\x04\x73\x96\x67\x8a\xf2\xe1\xb8\x5b\x12\x7b\xf3\x55\x7d\x0b\xb5\x73\x6b\xba\xa5\x7a\x2a\x9a\x65\xf3\x39\xaf\xce\xa2\x52\xeb\x90\x87\x90\x4d\xa9\x1d\xce\x5e\xa7\xbc\x8a\xb7\x22\xd9\x35\xe6\x9f\xb2\xf1\x91\x6e\x7c\x4d\x15\x19\x3c\xa5\xf5\x10\xf9\x67\x1e\xbf\xe1\x51\xf3\xdd\x36\xf8\x09\x27\x98\x69\x76\x03\x4c\xb5\x1f\xa2\x31\x80\xa8\x5b\xbf\xd4\xe1\xa7\x88\x36\x41\xd0\xb5\x2e\x10\x5c\x23\xb0\x92\x87\xa3\xda\xcc\xc8\x18\xcd\xa0\x09\xf7\x49\x0b\x49\xdc\x2c\x95\x53\x9d\x29\x16\x80\xe6\x22\xc5\x57\xc6\x3b\xa9\x3a\x93\x1b\x6a\x8f\x6e\xac\x29\x43\x61\x03\x95\xea\x77\xf5\xcd\x15\x64\xce\x3c\xf5\xf7\xd1\x15\x64\x11\xcb\x49\xe4\x4f\xb3\x91\xbe\x6a\x2c\x95\x07\xd5\x65\xdb\x40\xcd\x32\x30\xce\x18\x8d\xc7\xc6\x7a\x40\xb9\x30\xc1\x69\x72\x9e\xc3\x34\xbd\x31\xce\xe3\xaa\xe0\x8c\xd1\x05\x83\x2b\xd5\x36\x39\xaf\xe5\x87\x23\x70\x22\x1e\xb9\x52\x46\xd5\x81\x70\x7d\x62\xb8\xd9\xa9\x97\x69\xa5\x81\x4c\xea\x2c\x91\x1d\xed\x3a\x20\xeb\xc3\x28\x15\x85\xc4\x99\xf3\x96\x9e\x14\x14\x40\x21\xa4\x42\x73\x78\xf1\xf6\x27\x5b\x35\x79\x86\x61\xb2\xbd\x69\xfd\x1a\xa2\xea\x04\xb1\xb5\xf7\x4f\x8d\xb6\xb7\x0c\xc1\x44\x9e\xb0\x9b\x6a\xf5\xed\x64\x7a\xec\x3f\x8b\x9d\xe5\x84\xd7\x21\xba\x42\x7d\x73\xce\xba\x4a\x93\xab\x5d\xed\xbb\xed\x7c\x52\xf4\x49\x8d\x60\x26\x25\x3a\xa3\xb9\xd0\x51\xc1\x64\xae\xee\xf7\x72\x0a\x78\xe4\xa7\x2b\xce\xee\x45\x76\xfe\xd8\x67\xb0\x0f\x1c\xb9\x43\x7b\x30\x39\xb1\x40\xec\x0c\xc6\xf2\x44\xa4\x76\x6d\x65\x6e\x6f\x51\x9e\x8e\x0e\x2e\x0e\xce\x2f\xde\x9f\x1d\x7f\xbc\xf8\xaf\x49\xfb\x59\xa2\x6c\x42\xf3\x10\x61\x39\xe4\x48\x4f\x0f\x00\x17\x0b\x66\x03\xae\x14\xba\x75\x66\xd8\x72\x2d\xd5\xf8\x70\x2e\x3b\xf8\xe8\xa3\x4c\xd2\x5a\x09\xd5\x23\x8d\xe2\x7f\x87\x58\x14\x27\xcd\xbe\xe6\xfe\x7e\x70\x72\xf1\xf1\xcd\xfb\xb3\x8f\x45\xbb\xd7\x2c\x4d\x9e\x1e\xd6\x3e\x30\xc8\x53\xc2\x37\x39\x24\x84\x33\x7a\x47\xa7\xf5\x9f\xd1\x8f\x28\x79\x24\x00\x22\x4a\x43\xfc\xe9\xe7\x49\x77\xdd\xcd\x19\xf8\xe4\xf4\xe7\x8f\x3f\x1d\x1c\xfe\x7a\x7c\x7a\xd4\x3a\xb7\x08\x25\x9e\xb9\x65\xcc\x45\xfa\x5a\x76\x79\x06\x57\x61\xcd\xe6\x5a\x05\x77\x62\xc9\xc8\xf7\x2d\x35\x79\xfb\xe1\xfc\xe2\xf8\xac\x67\x2d\xbf\xe2\x3b\x1a\x56\x6d\xd4\x40\xc3\x8f\x3b\x52\x31\xe6\x1a\x83\xdc\x91\x1b\xa9\xde\xda\x15\x6f\x09\x30\x14\xd9\xb0\x29\x30\x4d\xcb\x9b\x63\xb9\x80\xa2\xa5\x56\x6f\x8e\xdf\x9e\xfc\xe7\xc7\x93\xc9\xc5\xc1\x4f\x6f\x8f\xcf\xcf\x8e\xdf\x9c\x1d\x9f\xff\x72\x72\x7a\x71\x7c\xf6\xdb\xc1\xdb\xd6\x6a\xbe\xdc\x6d\xd6\xef\x94\x3a\x37\x3b\x19\xed\xa1\x65\x50\x4e\xda\x8f\x84\x7e\x1c\xc4\x22\xa2\x27\x93\xab\xe7\xca\xbf\xaa\x84\x61\x1c\x52\x58\xcd\xa9\x64\xa4\x68\xc0\x27\x93\xe2\x0e\xbd\x7a\xce\xf1\x92\x72\xb9\x4d\x68\x77\x6b\xa9\x0f\x42\xb2\x40\x23\x6d\x53\xd6\x8e\xdd\xf6\xb2\x10\xc3\x0f\x72\xb9\x40\x3a\xd7\x25\xbc\x6a\xe4\x4b\xa8\x41\xe2\xcd\x75\x23\xc6\xcd\x7e\x2e\xc7\xc4\x84\x6c\xfc\xef\x28\x32\xd6\xb3\x28\xc6\x09\xfb\xef\xc6\x82\xae\xcd\xdf\x93\xc9\x6f\xcf\x27\xef\xdf\xbf\xf5\x08\xe1\xed\x0a\xae\xf4\xb7\xa7\xa3\xbd\x97\xaf\x46\xbb\xa3\xdd\xf1\xde\xcb\x66\x67\x1e\x61\xae\xf9\xc0\x38\x45\x20\xa5\x0b\xd5\x4c\x4e\xc1\x7f\x2b\xef\x1f\x91\xca\xdf\xf8\x7f\x2b\xab\x5f\x3d\xfa\x49\xad\x46\x47\x27\xe7\x72\xca\x7c\x7c\x73\xf2\xf6\xf8\xe3\xdb\xf7\x3f\xff\x7c\x72\xea\xc7\x96\xba\xe5\xf5\x1b\x35\x71\x4b\x47\x77\xaa\x15\x56\x3b\xe0\x3a\x2e\xa4\xfc\xf9\xe0\xf0\xf0\x78\x72\xd1\x52\x27\x3d\x8b\x8f\x8e\xdf\x1c\x7c\x78\x7b\x71\x7c\x7a\x34\x79\x7f\x72\x7a\x71\xf1\x5e\xaa\x0c\x07\x87\x17\x27\xef\x4f\x5b\x6b\xa6\xb3\x6d\xef\xa8\x93\xc9\xd5\x4b\x39\xc5\xca\x9d\xbc\xb3\x0a\x27\x93\xdf\x5e\x9e\x7f\x98\x48\x7d\x64\x1d\xd4\xc3\x31\x22\x38\xdc\x06\x15\xee\x43\x53\x21\xb9\xec\x2a\x55\xc2\xdb\xf7\x3f\xcb\x2e\x9f\x1c\x5c\xfc\xa2\xcf\xcf\x04\x19\x52\xbc\x1e\x58\xd5\x9f\x76\x64\x05\x55\x23\xdd\x55\x63\x27\xbf\x35\x45\xe2\xf0\x0a\x9f\x1f\xff\x76\x7c\x76\x72\xf1\x5f\xe7\xff\x75\xae\xeb\x6c\x16\x95\x5a\x79\x85\x47\x18\x99\xd3\xce\x96\xf0\x1b\x9e\xd2\x45\x4f\x5b\x9c\xa2\xd6\x90\x31\xe5\x4c\x74\xca\x9b\x6e\x5d\x43\x46\x30\x59\x0c\x69\xfa\xb9\xb7\xbd\x87\x67\xc7\xc7\xa7\x32\xaf\xdf\x75\x4e\xcd\x16\x0f\x6d\x8e\xca\xa9\xb5\x45\xbf\xfb\x2b\x5a\xcd\xee\x97\xe3\x83\xb7\x17\xbf\x1c\x9f\xca\x65\xdb\xbe\xfd\xf9\x97\x6a\x57\x83\xed\xe6\x61\x36\x56\x75\x8e\xcb\x85\x26\xda\xc8\x7f\x38\xee\x17\x73\x40\xe6\x7a\x4f\x1a\xb2\x1b\xf5\xed\xd4\x32\xf3\x6a\x55\x6f\x0b\xc4\xf9\x88\x5e\xf6\x77\x1d\x57\xa3\xa1\xb5\xc4\x59\xbe\x0f\x9e\xbe\xd8\xad\x5c\x92\x90\xe2\x39\x8a\x6f\xe2\xb4\x1e\x64\x38\x63\xe8\x5c\xd0\xac\x91\x89\x3c\x3a\x7b\xf1\x5d\x0d\x3a\x35\xdf\x44\x40\xd9\xbc\x5a\x8e\x6e\x36\x4d\xc4\x97\xb9\x48\xe8\x35\xa9\xd6\xed\x0a\x11\xc4\xf9\x84\xd1\x59\xbd\x7e\xde\x7a\xb4\xd5\xa2\xbf\x0e\x11\x88\xd4\xea\x8d\x64\x99\xb5\x9e\xa8\x1a\x51\xf7\x76\xab\xaf\x0d\xd6\x78\x84\x52\x78\xd3\x9a\xc8\x40\x89\x17\x4b\x86\xf8\x92\xa6\xc9\x3e\x78\x59\x4d\x20\xf0\x0a\xd1\x5c\xb4\x64\x20\xcf\xfc\xb8\xad\x27\x96\x42\x64\x3f\xa3\xfa\xcc\x51\x17\x44\x2d\xf7\xc1\xb8\xf8\xb6\xf1\x9e\x32\xb1\x0f\xfe\xb6\xfb\xb7\xbf\xd5\xdf\xc8\xfd\x6c\x1f\xa4\x34\x86\x69\x13\x19\xea\xe9\x8e\xee\x86\x74\x00\x8b\xdb\xea\xee\x54\xeb\xac\x2e\x25\x8f\xe3\x21\x22\x8f\xa2\x31\x43\x4a\x83\x85\x69\x73\x43\xdb\x20\x32\x0e\x2a\x18\x4b\x11\xcc\xa9\xad\xb4\x14\xcf\xc6\x2b\x9a\xe4\x9e\xc0\x92\xba\x98\x14\xcf\xa2\x96\x04\xed\x50\x4e\xbd\x14\x96\x93\xf1\x27\x2d\x86\x46\x29\x8d\x2f\xfd\x45\x99\x14\x91\x2f\xc5\x1a\x4d\xba\x3b\x70\xb9\x66\x61\xb2\x0f\xfb\x0a\x93\xdd\x78\xab\xc2\x74\x16\x1a\x75\xe2\x37\xa4\x81\xa7\xf9\x5a\x2e\x25\x04\x5c\x34\x62\x17\xe9\x29\x5a\xe0\x33\x3b\xe0\x1a\xa9\x53\x83\xc1\x71\x94\x0e\x50\x20\x88\xd6\xd0\x51\x9a\x41\xea\xd0\x35\xa7\x0a\xa8\x55\xa9\x75\xf8\xc4\x7a\x71\x2a\xa4\xab\x00\x1a\x3d\xa5\xac\x09\x27\xea\xc6\x69\x73\x42\x47\xbb\xca\x42\xfd\x19\xc8\xa5\x90\xd2\x85\x6f\x29\x34\xc6\x8a\x2e\x0a\x10\xb4\xca\x9b\x00\x1d\x33\xba\xc1\xed\x60\x39\xe1\xc5\x71\x5e\x1f\xee\x8b\xe0\x34\xfa\x32\xdd\x68\xb5\xd0\xac\x57\x44\x2a\x56\x1b\xb5\x47\xa7\x52\x38\x69\x4f\xe3\xc6\xcd\xbb\x91\x83\x93\x95\x8c\xe1\xb2\x8e\x0e\xbf\x43\x1e\x5b\x0d\x9d\xfd\x64\xb5\xb8\xb3\xbd\x05\x18\x9e\x87\xdc\x6b\x4c\xc1\x89\xb1\xb5\x44\x38\x8b\x56\x90\xff\xd3\xfe\x59\x6b\x68\xe9\x1b\xa3\x9f\xdb\x6b\x05\x4d\x5c\xcf\xf6\xc7\xe4\xfd\xd1\xbd\xd9\x96\x2d\xb7\x6f\x44\x1a\xb8\x47\xbd\xf8\xf3\xc9\xc1\xe1\xfd\xd7\xc1\x73\x51\x79\xa1\xb1\xbd\x3d\x38\x3d\x3d\x7e\x7b\xf4\xf1\xe4\xcd\x9a\x35\xd9\x34\xb9\x40\x26\xfa\x88\xe7\x03\x6a\x3a\xf9\xf8\xee\xe0\xfc\xff\x7c\xc3\xba\xca\xb9\x9b\x23\x06\xab\x9a\x53\xeb\x76\xbe\xce\xee\xd5\xb7\x77\x75\xc8\xf7\xa8\x4a\xe0\x8f\xe2\x79\xad\x05\x6e\x2d\xa4\x4a\xe0\xca\x84\xb1\x4d\xaa\x5b\x51\x35\x7f\x58\xc7\x5a\x4d\x79\x69\x0a\x97\x96\x5d\x5d\xea\x1e\xaa\xb8\xda\x82\xed\xd0\x15\xa2\xde\x1d\xb5\x3b\xd3\xb6\xdd\x3a\xea\xdd\x3c\xfb\xf3\xf5\x6d\xcc\x51\xcf\x80\x75\xe7\xda\x3d\x15\x34\xfd\xf8\x0d\x4e\xd1\x7b\x76\x58\xf1\x1b\x2b\xcb\x6d\x9a\x95\xbb\x4b\x34\x7b\x9f\xaf\xa0\x23\xbb\xaf\xb6\x97\xd6\xd8\x5a\x07\x15\xd6\xd8\x68\x6b\xe5\xb9\x33\x6d\x55\xda\x3f\x2b\x36\xcd\x5a\xb0\x0c\x87\x38\x50\xa5\x50\xb6\xda\x2c\x3d\xb3\xd6\x67\x53\xec\x6e\x50\x35\x75\xb9\x2e\xcc\x1a\xf2\x94\xd1\xb2\x16\x0b\x79\xb4\xef\x5b\xfd\x7e\x19\x54\x06\x50\xb0\xfc\xb1\xc3\xd3\x13\x9f\x59\xd0\x4f\x99\xe9\x6e\x99\x97\x88\x13\x75\x9f\x0d\xba\x73\x6c\x39\x73\x94\xad\x30\xa1\x1b\xe4\xb9\x26\xa5\x0b\xdf\x00\xb5\x28\x62\x03\x56\x6a\x8b\x5a\x56\x16\x6e\xb0\xe7\x0c\xb1\x28\xa3\x09\xf8\x40\xf0\x27\x70\x44\xe5\x79\x0b\x9c\xd3\xda\xf5\x93\xdd\x5a\x73\x4b\x6d\x7a\xd7\x14\x68\x0a\x2d\x47\xd1\x56\xde\x25\x7d\xcc\x6e\xd7\x49\xa3\xf4\xc5\xa9\x7b\xb7\xdc\xc6\x6b\xa3\xea\x3f\x74\x8f\xf5\x58\xc3\xe1\x66\x5d\x9f\xa6\x7a\x88\xa4\xc2\x0b\xe7\x1c\x21\x9f\x4f\x66\xc5\x03\x78\xdc\x0c\xb0\xe4\x75\x89\x31\x8e\x33\xce\x5d\x07\xeb\x84\x97\xba\x8d\xdb\x4c\x5b\x08\x29\xeb\x19\xa2\x0d\x2e\x95\x90\x96\xf6\x2e\x32\x75\x45\x2c\x54\x11\x9c\x53\xa4\xa0\xf9\x2b\x6d\x67\x84\xc4\x04\x48\x65\x28\x4b\x71\x0c\xb9\x72\x5e\x59\xd7\x29\xa7\xb5\x91\xbc\x74\xd0\x29\x97\xc6\x19\x2a\x7d\xa1\xfb\x7c\x63\x7a\xbb\x11\x80\xae\xae\x04\x3d\xee\x35\x1d\xd9\xde\xd1\xe1\x26\x02\x78\x0e\x46\x17\xa5\x7b\x8b\x43\xfd\xaf\x3a\xbd\x38\x1e\x4a\x6e\xf2\xc2\x3d\xe9\xa5\xf6\xa7\x89\x00\x4a\x39\x6a\xcd\xa5\x14\x74\x7e\xc0\xd7\x49\x6d\x6d\xec\xad\xf1\x4c\x29\xd0\xf1\xa3\x53\xa4\x48\x4f\x2c\x27\x6d\x0e\x37\x55\x47\x9d\xd2\x56\x1d\xdc\x75\x2a\x1f\xaa\xd1\x33\x9e\x51\x3a\xcd\x5d\x5c\x77\x3a\xd7\x42\xc3\x99\xe7\xb6\x1e\x2e\xb2\x94\x5a\x58\xc3\x41\x1e\x2f\x85\x71\xd4\xe7\xf4\xe2\x25\x59\x45\xc3\x56\x39\xa8\x62\x16\x65\x82\x3b\x12\x9d\x1a\xf8\xeb\xe1\x92\xaa\xfb\xda\x94\x79\xde\x5d\x18\x82\xca\xb5\xd0\x02\x3e\x19\xeb\xcc\xc7\xc3\xf7\xa7\x17\x67\xef\xdf\xbe\x3d\x3e\x6b\x33\x63\x35\x71\xf7\xb5\x68\x43\x97\xde\x5b\x19\x37\x69\x23\xc8\x39\xd3\x76\x82\x25\x8a\x2f\xa3\x6a\x00\xc7\x32\x59\x54\xa3\x30\x3e\x74\xfb\xc0\x3d\xf5\x02\xeb\xed\x85\xaf\xa4\x4b\xad\xa3\x64\xd4\x35\xaa\xaa\x7b\xb2\xde\x9e\xa5\x4c\x9d\xd0\x04\x1c\x69\x8e\x37\xa6\x04\xfc\x94\x27\x0b\xa4\x69\x61\xe5\xfa\x53\x1a\xbd\xa6\xfe\xbd\xe2\x05\xdb\xe6\x20\x17\x94\xc7\xd0\xbc\x47\x57\x38\x16\xb2\x27\xdc\x46\x6a\xad\xda\x51\xa6\x26\x34\x29\x0b\xd3\x65\x7d\x7b\xad\xca\xe3\xdb\xbb\x21\xf5\x68\x6b\xe7\xff\x02\x00\x6c\xc5\x94\xa1\x84\xf0\xe8\x6a\x6f\xb4\xf7\x72\x6b\x1f\x6c\x15\xf3\x45\xe9\x10\xf7\x32\x63\x74\x91\x5d\x1d\xa6\xaa\x70\x87\x60\x00\xb5\x72\xab\xbd\x5f\x51\x9b\x66\x94\x0a\xa9\x27\xaa\x90\xcc\xba\x9c\xc8\x5e\xcc\x54\x56\x59\xd7\x6b\xbf\xa8\xb9\x0d\x57\xe2\xc6\xff\x98\xaa\x78\x20\x96\x25\x50\xb5\x0b\xd7\x62\x21\x56\xe3\x20\x96\x61\x4c\xea\xb1\x68\xca\xf8\x20\x6e\x04\x46\x1b\x98\x76\x70\xd9\x45\x5c\x13\x37\x3f\x35\xbd\xef\xda\xcf\xfe\xa0\x0b\x4e\x84\x3f\xd3\xe7\xbe\x6c\x2b\xc3\x00\x73\x41\xb5\x57\x7d\x95\x4b\xb0\xf9\x91\xdb\x68\xdc\x87\x7a\xee\xeb\x04\x7d\xe8\x5f\x05\xae\xe2\xd6\x18\x29\x67\x3c\x2c\xa8\x73\xdb\xd5\x56\x7c\x71\x48\x19\x9a\x63\x29\x67\xfe\xad\x7b\x7c\xb4\xff\xe2\x19\xf8\x5c\xee\x31\xda\x01\xa7\xfc\x7b\x89\x60\x2a\x1c\xce\xb8\xdc\x02\x6f\x7c\x27\x14\xa5\x34\xe9\x1e\xd4\x70\xc7\x97\x2f\x52\xd3\x93\xa7\x94\x33\x74\x85\x18\x47\x87\x27\x47\x67\xf2\x98\x22\xf5\xbf\xe6\x4f\xe6\xf4\xf1\xf9\xb3\xba\x6e\x36\x82\x49\xc2\x46\x90\x65\x10\xe0\xec\xa5\xfa\x87\x52\xf4\x8a\x10\x00\x6e\x9d\x81\x5a\x5e\xf2\xbc\x89\xe2\xbc\x7a\xa7\xe1\x1c\xa6\xa9\x58\x32\x9a\x2f\x96\xc0\x9f\x6b\x91\xd8\x51\xf0\x32\x46\x57\x48\x2c\x51\xce\xc1\xfe\xdf\xf6\x5e\x3c\x9b\x92\xa9\xb0\x47\xae\x0f\x19\x17\x0c\xc1\x95\x8a\x79\x6b\x6e\x69\x71\x95\xc3\x39\x65\xd7\x90\x25\x60\x04\x3e\x7f\x36\x81\x0f\x70\x11\xf8\xc0\xf3\xb1\x6c\x13\x9e\x83\xff\xc0\xaa\xbf\xd4\xb6\xf9\xf9\xf3\x48\xfe\xc7\x6c\xa1\xba\xe8\xda\xe1\xcc\x2d\x67\xba\xa5\x20\x31\x29\x13\xd2\x2b\xe5\x36\x2a\x57\x96\xf9\xac\x72\x2a\x00\x20\x86\xf1\x12\x81\x67\x8e\x56\x93\x52\x9a\xb9\xc3\x9b\x52\x98\xb8\x6f\x61\x32\x83\xa9\x3c\xc6\xeb\x1f\x7d\x13\x75\x4d\xcc\xa2\x7f\xba\xb6\xed\xa6\x2a\x51\x62\x63\xa2\x55\x85\x85\xf5\xfc\x92\x33\xfc\xe8\xf4\x5c\x76\x41\x19\x02\xe4\xbb\x88\xe3\xb1\xce\xa6\xef\xf6\xc4\xed\xe3\x7f\x54\xfb\xd3\x27\xd6\x81\x36\x92\xc6\x74\x95\x8d\xac\xb1\x74\xa4\xae\x18\xad\x89\xf7\x8c\x26\xfb\xe0\x51\x42\xe3\x4b\xc4\xc6\x46\x48\x3f\xf2\x20\x1d\x9e\xf3\x60\xdb\xc1\x6e\x80\x86\x62\x2b\xe8\x39\xc6\xda\x59\xd6\x5c\x05\x7e\x60\xc3\x9c\xd9\xa7\x5b\x9e\x53\xfb\x96\xff\xf8\x3d\xdd\x32\x07\xf0\xad\x3b\x9c\xdd\x7d\x1f\xae\x03\x56\xb4\x40\x47\x33\x24\xea\x43\xe4\xe0\x47\x3a\xcd\xfd\x84\x66\x31\x53\x49\x87\x06\xbd\x71\xaa\x24\x6b\x7a\xd0\xfc\xb9\xbc\x01\xfe\x48\x45\x01\x39\x2f\x10\x95\x93\x05\xa1\xc5\xcf\xba\x33\x9b\x77\xa3\xb9\xed\xbf\x40\xcc\x73\xf5\x51\xa4\x97\xd2\x71\x79\x27\xb6\x97\x3e\xa7\x86\x5f\x87\xab\xa2\x29\xaa\xf5\x9d\x0e\x76\xd4\xfc\xac\x7d\x5c\x3c\x50\x44\xd4\x94\x80\xfa\x71\x61\x07\x25\xbd\x1a\x90\xc3\x40\xc0\xc1\xcf\x55\x4c\xf1\x0a\x37\x78\x60\x2b\xb4\xa2\xec\x66\x1f\xec\xfd\x75\xf7\x1d\xae\x8f\x86\x87\xd7\xa8\x58\x8d\x7b\xbb\x55\x56\x63\x99\x4d\x35\x17\xc8\x16\x26\x44\x69\xa4\xf7\xa3\x1d\xbb\x4b\x99\xb6\x8f\xad\x22\x52\x65\x64\xb4\x18\xba\xcb\x8e\x93\x12\x20\xd2\xa9\xdc\x7a\xd4\xed\xcf\x8d\x1e\x6e\xa7\xcc\x64\x94\xd5\xca\x2a\x46\x6e\xa2\x98\x7b\x72\xfb\x2f\xb3\xd1\x15\xa9\xe5\x9d\x31\x2a\x68\x4c\xd3\x7d\xf0\xe1\x68\xb2\x7e\x56\x91\x88\x33\x7f\x76\x17\x87\x5d\xd9\x69\xd5\xa4\x9e\xe1\x0a\x09\x86\xe3\x96\xfa\x55\x32\x6c\xc7\x74\xfc\x5c\x47\x63\x54\xaa\xab\x84\xa0\x20\x39\xbe\xda\x7d\x55\x03\x5c\xd4\x6d\x81\x68\x1f\xfc\x72\x71\x51\xf1\xec\xf0\xa2\x35\x2f\x2b\x1f\xd7\xa1\x98\x17\xee\x4b\x9e\x2b\x1b\x9f\x03\xe4\xec\x55\xd5\xbe\x3a\xce\xf3\xa2\xaa\xc2\xb6\xa0\x38\x9d\xed\xae\xa9\xbe\x4e\xb3\xf7\x5e\xed\x0d\x69\x76\x17\xdb\x48\x21\x1c\x13\x4b\x38\x3a\xe6\x31\x4c\x8d\x57\x6f\x83\x8d\x11\xc3\x0c\xaa\xa8\x84\xcd\x3b\xe6\x60\x52\x87\x9a\x22\x70\x7a\x7c\xf1\xf1\xa7\x93\xd3\x23\xeb\xa1\x55\x7d\x9f\xb0\x06\xf9\x38\x92\x95\xf1\x2d\x9d\x33\x4a\xc5\x9b\x82\x66\x57\x5d\x48\x09\xe1\x56\x34\x1d\x55\xaf\x23\x6e\xd2\x3e\x7a\x97\x73\x8f\x11\xbb\xb9\xb8\xfd\xb7\xde\x59\x18\xde\x8a\x9a\x9a\xf4\xd6\xc3\x5a\xbe\xed\x38\x80\x99\x23\x9e\x57\x9f\x75\x95\xa8\x76\x85\xb6\xa9\x5a\x95\x87\x0c\xad\x3f\xc9\x99\x34\xdd\x52\x6b\x7a\xcb\x97\x82\xc7\x0c\x66\x9d\x87\xe7\x21\x6a\xb2\xd5\xb2\x8c\xce\x54\xe7\xf5\xaf\xa1\x53\x57\x75\x0e\x6f\xe1\xa6\xb0\x93\xc9\xbe\x7b\x3a\x3c\x3d\xd7\xb7\x5b\xea\xfd\xad\x94\xbf\x51\x5d\xb8\x66\x15\xa1\xd9\x10\xb2\x91\x4f\x82\xb6\x7d\x63\x04\x5f\xe4\x13\x92\x59\x4d\x9a\xd6\xbe\xda\xcc\x79\x27\x82\x05\x62\x79\x9b\xa3\x8f\x2f\x97\xdb\x85\x38\xf4\x56\xe7\x0e\x31\x04\xbd\xf9\x15\x5a\xff\x06\x74\xf8\x4a\xd6\x4d\x75\xfe\x0e\x0a\xf0\x0f\xaf\xa4\xfa\x8e\x42\x9d\x27\x98\xb6\x8c\xba\x4f\x2f\xb7\xd0\x91\xeb\xd3\x09\xf8\xd4\xe4\x83\x5c\xd0\x73\x95\xa8\xa1\x30\xaf\xed\xb5\x63\x34\xdc\xe9\xd6\xd3\xdd\x95\xef\x42\x75\xab\xe8\x4e\xb7\xf6\xa4\xaa\xeb\xa4\xf0\xd9\x78\x22\x50\x48\xda\x8c\x51\x29\x60\x54\x7c\x80\xc6\x2a\xb1\xa9\xa3\xa8\x10\x08\xaf\x3d\x1c\x03\x9b\xa8\xb8\x4d\xe6\x75\xdb\xb2\x2b\xd3\x0a\xc8\x16\x48\xbc\x2e\xa5\x93\x4f\x2b\xde\xd6\x17\xd6\xdb\x28\xef\x98\x1b\x92\x78\x2a\x3f\xd6\xb0\xf2\xe3\x6b\x2c\x96\x60\x45\x19\x52\x0b\x92\x3f\x91\xba\xbc\xfa\xd7\x04\xb1\x33\x4d\xeb\x98\x6e\x59\x57\xd6\x84\xaa\xc8\x88\x55\x9f\xfa\x6d\x70\x32\x37\x19\xf3\x55\x61\xa9\xdf\x51\xfe\x83\x49\x6f\x3e\x1a\xb2\x79\x8b\x09\x82\xac\x34\xfb\x4c\x20\x83\x2b\x5e\x35\xcb\xca\x66\x1b\xec\x21\xca\xd4\xfb\xd7\x9f\xa7\x5b\xa9\xfa\x72\xba\xb5\xff\xf9\x73\x6b\x2e\x0d\x64\x67\x58\x86\x9e\x8e\xd8\xdf\x7b\xfa\x6a\xc7\xd3\xb0\xfd\xe7\x3b\xd3\xad\x15\x26\x32\xc5\xce\x74\x2b\xd3\x11\xb4\xce\x15\x63\x66\x42\x31\x11\x6f\xb4\xce\x3a\xdd\xda\x97\x1b\xb2\x27\xc8\xa9\xad\x50\x4a\x17\x82\x72\x91\x20\xc6\x5e\xd7\x69\xe9\xf2\xfd\xd5\xeb\xa7\x43\xe4\x6e\xbf\xba\x33\xc0\xc4\x33\x70\x57\xf3\x5f\xb1\x77\xc7\x58\xe5\x55\x68\xbe\x52\x93\xb5\x82\xcd\xab\xcb\x84\x94\x01\xc5\xbe\xd3\x56\x14\xf9\xbb\x0e\xc0\xb7\xa3\x3c\x3e\x45\xbc\x34\x29\x06\x66\x6a\x38\x4f\xb2\x29\x8e\x61\x6e\xac\x2a\xe9\x29\x6b\x81\x4c\x51\xe6\xea\x06\x7f\x59\xe8\x93\x40\x44\x6d\x10\xd3\xad\x9d\xe9\x96\xd4\x45\x5a\x8a\x2f\x63\x0f\x14\x65\xca\xdc\x2d\x13\x0b\x89\xbb\x56\xa5\xa5\x5c\xe7\xca\xab\x8e\x9c\x0d\x47\x6b\xeb\x1f\xf7\x7b\x01\x63\xc7\x24\x71\x4c\x39\x6a\x6b\x6d\x31\xe6\x74\xcf\xf8\xf6\x39\xef\xda\xa1\x06\x1b\x98\x6a\xb9\x0f\xb2\x5f\x95\x2a\x91\xc7\xe2\xfb\xd7\x60\xf1\x0d\x16\xdf\x60\xf1\x0d\x16\xdf\x35\x2d\xbe\x55\xfb\x6a\x0a\x57\x28\xc9\xe3\x4b\xf0\xc2\x49\x58\xd1\xb6\x83\x55\x38\x58\x85\xbf\x33\xab\x70\x9d\x92\x1e\x8c\xc4\x0f\xc5\x48\x7c\x6b\x56\xb1\x1e\xe5\xbb\xf0\x88\x37\x6e\x73\xf6\x50\xf5\xbf\x0e\x53\xff\xfb\x33\x68\x6f\x14\xdb\x0b\xc6\x6d\x37\xd1\x86\x71\x43\xb5\xb7\x1e\x10\x81\x37\xdf\xe4\x48\x8b\x22\xcf\xa8\xdb\x67\x78\x83\x8d\x0c\xeb\x6e\xd9\x49\x23\x40\x38\xb0\x64\x78\x7d\x64\x2d\x04\x60\x35\x78\x33\x50\x2b\x2f\xa3\x29\x5d\xdc\xfc\xaa\x4a\xab\x74\xaa\x0d\x54\x3f\xed\xc7\x3a\x03\x1f\x20\xf0\x01\x02\x1f\x20\xf0\x01\xdc\x6f\x02\x1f\xc0\x6d\x61\xe0\x03\x34\x53\x04\x3e\x40\xe0\x03\x04\x3e\x80\x7b\x66\xe8\x38\x36\xda\x53\x98\x63\x38\x36\x06\xc0\xc6\x59\xb1\xac\x43\xf7\x29\xb3\x2f\x8f\xc0\x54\xd8\xcc\x89\xe3\x1b\x1d\xa0\xbf\x0a\x0d\xa2\x39\x47\x02\x25\xc2\xa6\x0e\x94\x88\x40\x89\x18\x4a\x89\x90\x59\xeb\x2d\xe9\x75\xb7\xc8\x51\x84\x89\x1d\xaf\xc4\x7d\x5d\x11\xb8\x20\x90\x2d\x02\xd9\x22\x90\x2d\x02\xd9\x62\x0d\xb2\xc5\xab\x07\xc3\xb5\x68\x28\xe8\x6b\x1d\xfa\x14\x6e\x40\xc9\x0a\x12\xb8\x40\xac\x26\x28\x57\x34\xd1\x31\x96\x28\x89\xfd\xc7\xe4\x6f\xc6\xeb\x58\xaf\xde\x81\x07\xf2\xfd\xf2\x40\x06\x8c\xf4\xb1\xba\xb5\xaf\x54\xcf\x03\x75\xe4\xd6\xc2\x63\xcd\xbe\xde\x5c\xb0\x81\x87\xce\x23\xc9\x0d\x71\x63\x5a\x81\x9a\x07\x73\x4b\x00\x10\x22\xad\xd0\x2e\x02\xdb\xe4\xbb\x66\x9b\xf4\xec\xab\xeb\xed\x4e\x21\xc0\xc1\x77\xc9\x5d\x09\x01\x0e\x42\x80\x83\x3f\x39\x22\xab\x7f\x0f\x84\x86\x40\x68\x08\x84\x86\x3f\x13\xa1\xe1\xee\xed\x0e\x8c\x06\x5b\x40\x60\x34\x3c\x50\x46\xc3\x3d\x2a\xe1\x81\x01\x11\x18\x10\x21\x22\xc2\xf7\xad\xd5\x86\x88\x08\xce\x13\xcc\xff\xc1\xfc\xff\x75\xcc\xff\x7f\xae\x70\x07\x9d\xb6\x8d\x0d\xea\x27\xc1\xd2\x7f\x2f\x96\xfe\x60\xe0\x0f\x06\x7e\xbf\x81\x7f\xf4\x4c\x9b\xf8\xb7\xc1\x4f\x90\xeb\x8b\x67\x2c\xde\x53\xce\x8f\x71\xb9\x6a\xed\x06\xa3\x6e\x88\x1a\xc9\x2f\x74\x2e\x0f\x82\x24\xf0\x70\x0c\xf7\xdf\x93\x21\x3e\xc1\x3c\xa6\x57\x88\xdd\x38\x26\xe1\xd6\x7a\xa4\x78\x50\x21\x7f\x62\x4b\x7d\x30\xbb\x87\x88\x0d\x21\x62\xc3\x03\xb4\xa1\x83\x6d\x70\x7e\xf1\xe1\xa7\xa3\xf7\xef\x0e\x4e\x4e\xcf\x41\xd4\xee\x3b\xf1\x30\x6d\xed\x5d\x48\xdc\x76\x11\xdb\x41\x9e\xdf\x08\x15\xb6\x51\x28\x01\x98\x14\xb4\x8d\x02\xe3\xd9\x29\xc2\x03\x60\x0e\xf6\x46\x40\xe7\xf1\x3b\x4e\x53\x30\x43\x40\xe4\x44\x7f\xc7\x10\x4c\x15\x6a\x2f\x27\xd0\xd1\xe9\x39\x50\x82\x4a\x9e\xd8\x53\x75\x3a\x8f\xa4\xaa\x21\x8f\x74\x98\x03\x91\x33\xa2\x14\x04\xef\xed\x87\xc1\x5c\xff\x50\xcc\xf5\x21\xd4\x44\x08\x35\xa1\x9e\x40\x33\x78\x98\x80\x6c\x77\xa8\x89\x8c\xa1\x39\x62\xb7\x6c\x73\x04\xae\x11\x5e\x2c\x85\x32\xfb\xd7\xea\x24\x0b\x35\x05\xca\xde\x68\xb6\xb4\x2f\x4a\xc5\x90\xce\x1a\x14\xa9\x62\x40\xb0\x8a\xc1\xf1\x2a\x42\xc0\x8a\xc0\xef\x08\xfc\x8e\x1f\x95\xdf\x11\x02\x56\x04\x7a\xc7\x9f\x9d\xde\x11\xe8\x1a\x81\xae\xf1\xdd\xd0\x35\x42\xc0\x0a\x23\x9e\xff\x54\xe7\x96\x10\xb0\x22\x30\x56\x02\x63\xe5\xcf\xce\x58\x09\x01\x2b\x42\xc0\x8a\x87\x4d\x63\x09\x01\x2b\x02\x9f\xa5\xba\x63\x7b\x19\x2d\x11\xd3\x3a\xe8\xd3\x40\x6d\x09\xd4\x96\x40\x6d\x09\xd4\x96\x40\x6d\x09\xd4\x96\x40\x6d\x09\xd4\x96\x40\x6d\x09\xd4\x96\x40\x6d\x09\xd4\x96\x40\x6d\xa9\x4c\x85\x40\x6d\x09\xd4\x96\x40\x6d\x71\x04\x54\xa0\xb6\x04\x6a\x8b\xfb\x32\x50\x5b\x02\xb5\xa5\xf2\x2a\x50\x5b\x02\xb5\xa5\xeb\x9b\x40\x6d\x09\xd4\x96\x40\x6d\xf9\x1e\xce\x2d\x81\xda\xf2\xfd\x51\x5b\xda\x35\xc9\x4e\x4d\x6c\x90\xa2\xf9\xaf\x7b\xd7\x34\x33\xc4\x30\x4d\x8a\x97\x7b\xbb\x6b\x68\x9a\x1d\x5a\x6a\x87\x9e\xd9\xec\x95\x67\x5f\xb7\x57\x36\xd9\x64\xe7\x65\xa0\x38\x05\x8a\x53\xa0\x38\x05\x8a\x53\xa0\x38\x05\x8a\xd3\x9f\x9e\xe2\x34\x4f\x21\x21\x28\x8d\xae\x76\x47\x7b\xcf\x47\xbb\xce\xc5\x3c\x6e\x67\x66\x0a\x15\x19\x5f\xed\x49\xe1\x53\x2c\xfe\x89\xda\x7c\x15\x1a\xa4\x61\x13\x6f\xbf\x66\x3c\x1b\x99\x52\x46\x39\xc9\x2c\x3a\x94\xf8\x01\x85\x41\x86\x3d\x85\x33\xa1\x64\xc2\xe8\x1c\xa7\x48\x19\xe0\xf7\x41\xd5\xce\xb7\x46\x6e\xe6\x0b\x27\x37\x7f\x66\x30\xcb\x20\x5b\x51\x56\xe6\xe6\x11\xc5\xde\xaa\xb1\x9c\x48\x7d\xe3\x16\xd9\xf9\xea\xd6\xc8\xad\x38\x42\x97\x9d\xeb\x20\x6e\x2e\x74\x15\x95\xa8\xd4\xd4\xd0\xa3\x62\x86\x0c\x13\x09\xad\x32\x71\x73\x84\x99\xfe\x6b\x49\xb9\x02\xa3\xd5\x30\xe9\x46\xfd\x62\x7e\xb2\x79\x49\x5d\x6e\xc2\xd0\x1c\x7f\xda\x2f\x90\x71\x82\xc7\x04\x89\x51\xa2\x15\x6b\x6f\x1a\x35\xf7\xcd\x8c\x68\x49\xc6\x72\x32\xae\xa4\x68\x43\xef\x8a\x56\x6e\x83\x0f\x1c\x31\x0e\x20\x49\xc0\x42\x09\x1e\xf5\x59\x4e\x0e\xb8\x7c\x61\xd9\x4f\x79\x8a\xf6\xc1\x99\xfc\xf5\x80\x28\x18\x94\xe7\x59\x96\x22\x29\xfa\x60\xea\x70\xbc\x7c\x49\xe7\x5c\xaf\xb0\xb6\xf7\xdb\xa0\x80\x3e\x41\x89\x7d\x16\xfd\xd7\x8d\x8b\x9a\xc1\x3c\xe8\x4f\xb9\x0d\x0e\x1d\xec\xd4\x19\x1e\xf7\xe7\x7d\xf0\xc7\xa3\xd3\xe3\x8b\x8f\x07\x47\xef\x4e\x4e\x1f\xed\x00\xf5\xc7\xd9\xc1\xef\x8f\xfe\xe1\x16\x96\xd4\xbf\xf9\x87\xee\x6b\x73\x14\x67\x34\xf3\xbd\xdf\x06\x72\x22\xd4\x18\x74\x6a\xba\x9c\x1c\x39\xf5\x94\xbf\x9c\x4c\x0e\x6b\xbf\x9c\x22\x21\x95\x99\x12\x77\x55\x1f\x3a\xf0\xd9\x0a\x93\x7d\xb0\x6b\x31\xa0\x4f\xfb\xe0\xe5\x8b\x17\xcf\x5e\xe8\x72\xcf\x8f\xdf\x5a\x35\x87\x23\xf5\x4f\x33\x18\xc5\x2b\xa5\xf1\x92\x9c\x6b\xb2\xc6\x21\x84\xe7\x13\x77\xb8\x1e\xd9\xf1\x7a\x34\x58\xef\xd9\xb4\x2e\x62\xa7\xb5\x97\xda\x08\xfe\x78\x54\xee\xda\x8f\xcc\x68\x94\x3b\xe6\xa3\x8c\x26\x56\x5a\x28\x91\x8c\x91\x49\x65\xb7\xcd\x47\x39\x47\xd5\xef\x8c\x08\xfa\xe3\x51\x9b\x1c\x96\xc9\x87\xd3\x2b\x2d\x83\xb2\x79\x8b\xd6\xdd\x6e\xe2\xba\xeb\xcd\x5e\x63\x2e\xa0\xc8\x1b\xd9\x66\x0e\xbb\xf2\x9e\xf4\x86\x72\x40\x37\x4a\x68\x2c\xb2\x5d\x83\xc9\x58\x7c\xb3\x06\xe1\x77\x2d\x5d\x7e\x40\x01\x46\xc7\xa8\xaf\x9f\x72\xdb\xa9\x17\xde\x66\x8d\xb0\x9a\x49\x3c\x5f\x74\x95\x57\x83\x75\x05\x46\x4c\x43\x78\xc5\x2e\xeb\x54\xbb\x28\x27\x26\x58\x1d\xbe\x47\xff\xc3\x65\x3d\x0c\xc9\xb2\xe0\x21\x4e\xb7\x94\x15\x7c\x4b\x6e\x46\xf1\x8c\xed\x4a\x05\xba\x78\x15\x13\xdb\x00\x9d\x60\x77\xf4\x6c\xb4\x57\x49\x91\xa5\xf9\x02\x4b\xb5\x5b\x2a\xb2\xc5\x99\xab\xc2\x72\x9c\x6e\x89\x9b\xcc\x94\x50\xec\x74\x3b\xd5\x14\x09\x4a\xd1\x42\xa9\xbe\xfb\xd5\x8f\xe5\xcb\x39\x65\x31\x3a\x48\x12\x86\xb8\x2a\x48\x9d\x0d\xeb\x89\x96\x10\xb3\x0c\x93\x77\xb2\x3b\xda\xd2\x60\x6e\x6c\x5d\x3f\x43\x81\xae\xe1\x8d\x4d\xe8\xa6\x73\xce\xac\x5f\x76\x06\xb4\x28\xa3\x4c\xac\x60\xd6\x68\x91\x6b\xf5\xf3\xb6\x4a\x7e\xf8\x4e\x13\x89\x79\x5f\x45\xec\x3f\xcd\xc9\x41\xfd\x4d\x90\xe8\x1e\x57\xb3\xff\xe8\x6a\x96\xf6\x9c\xc3\x93\xa3\xb3\x2f\x5f\x2a\x83\xf8\x13\x8c\x2f\x11\x49\x6a\xd5\x9c\x6e\x5d\x14\xad\xfc\xfc\x79\xf4\x46\x0f\x9d\x49\x3b\x92\xef\x2a\xd9\xc8\x0f\x7e\x3b\x3d\x51\x99\x34\x52\xff\x76\x7a\xf2\xe5\x4b\x25\xa9\xdc\x08\xfd\x69\xe5\x9b\x12\x3a\xf8\x52\x34\xb9\xd7\xae\x03\xd1\x8a\x92\x73\xe4\x5f\xcf\x15\x55\xec\xf6\x8b\xac\xb0\xa3\x94\x42\xeb\x36\x56\x1d\xa7\x22\x6b\x9b\x72\xea\x55\x6a\xcb\xb8\x46\xfd\x7b\x30\x26\x8a\x01\x06\x0a\x4b\x13\xaa\x41\x3f\xf5\x64\x7d\x54\x21\xc3\x12\x6a\xbe\x88\xac\xf5\x46\x03\x74\x2e\x7b\xad\xc7\x1c\x74\x3f\xe4\xb7\x1a\x5c\xe6\xd1\x1e\x07\xd8\xce\x7e\xcd\x67\xc8\x2c\xa5\x5b\x58\xcd\x7a\xbf\xae\x52\x2f\x1f\x62\xb7\xb5\x5f\xb3\xa6\xc0\xc6\xf2\x8e\x35\x9d\xdc\x67\x55\x32\x7d\xb9\x40\xc0\x8a\x4b\x23\x6d\xc0\x74\xeb\x6a\x6f\xb4\xf7\xd4\x90\x59\xed\x34\x6a\xa7\xf1\xb5\x1b\x9a\x86\x7d\x55\xb3\x69\x79\xac\x62\x3d\x36\x3c\x83\xae\x65\x29\x24\x03\x2c\x63\xdd\x15\xee\x2c\x08\x89\x38\x59\xaf\x00\x5f\xdb\x2a\x56\x36\x9f\x75\xb9\x22\xd9\x3a\x0d\x71\x98\x70\x01\xd3\x34\x8a\x89\x43\x71\x73\x2c\x71\xa7\x27\x0d\xdb\x9b\x35\x84\x80\x3f\xa6\x5b\x63\xe7\xfb\x11\x5f\x56\x78\x85\x88\x5c\x39\xe2\x64\x1b\x5c\x2c\x11\x38\x3c\x3d\x91\x9b\xb1\x5c\xad\x06\x73\x00\x82\xda\x4a\x00\x4a\x00\x82\xf1\x52\xf5\x9e\x63\x59\xb0\x75\x3d\x3c\x3d\xf9\x78\x7a\x7c\xf1\xfb\xfb\xb3\x5f\x3f\x1e\xbe\x3f\x7d\x73\xf2\xb3\x2b\xad\x94\x00\x7b\xc3\x68\x9d\x90\x59\x40\x1b\xbf\xa2\x1b\xab\x87\xbb\x4f\xbb\x6e\xe9\x3e\x6a\x54\x2b\xea\xa1\xbf\x7e\xb2\x5e\x1f\x4f\x0f\xde\x1d\x37\xaa\xa6\x6d\x8b\xb6\x0c\xe5\xc4\xa1\xc1\xe1\x32\x65\x1f\x45\x90\x54\xc8\x8c\x2e\x31\x50\x4a\xc1\x1a\xd2\xd2\xf8\x5c\xa6\x91\xe3\x14\xcd\x30\xe9\xcc\x87\x66\x42\xe5\x33\xc3\x64\x5c\x9f\x2f\x75\xd5\xa0\x3e\x61\x5a\x67\x8b\x5b\x1f\x55\x82\xcc\xdd\x64\xe4\x54\x56\xb1\x2b\xdd\xb4\x51\x84\xb3\x68\x05\xf9\x3f\xab\x3f\x6a\x3d\x24\x9f\x49\xcd\x6e\xb5\x60\xae\x40\xd4\x12\xde\xc8\xe7\x13\x22\x10\x9b\xc3\xb8\x52\x27\x95\xab\xfc\xf1\x75\xa9\x51\x79\x13\x36\x4c\x33\x7e\xbb\x73\x17\xad\x54\x0e\x7a\xd3\xe4\x5c\x9a\x9b\x5f\xd4\xcc\xcd\x2d\x94\xd6\x5b\xe5\xd5\x45\xca\x33\x48\xc9\xfb\xac\xce\xd8\x07\x85\xb3\x08\xbb\x44\x1f\xcd\x62\xfd\x28\xdc\x04\x5e\x40\xb1\xa8\x69\x37\x85\x4f\x4a\x8d\x02\x82\xd2\x48\xbe\x01\xa1\x3a\x84\x87\x9d\x7d\x93\xf7\x47\xfe\xc5\xe5\x59\xf7\x73\x8c\xd2\xc4\xb7\xe0\xd5\x0b\x3d\xdf\xad\x02\x39\x72\xd9\xcd\xcd\xe2\xce\x27\x07\x87\xf7\x53\xa6\xd2\xaa\x07\x0b\x00\x96\xb7\x2e\xdc\xca\xab\x01\x02\xa3\x47\x56\xb4\x48\xc2\x7a\x0e\xae\x34\x28\x44\x45\x3b\x29\xb2\x56\x7f\x8b\x25\xb7\x50\x52\x07\xb4\xa8\x3b\x87\xdb\xb5\xb1\x9b\xa0\xd9\xbe\x4f\xf4\x89\xd9\xee\xba\x3a\x32\x57\xbe\xcf\x2b\x8e\x5d\x0f\xcd\x19\xec\xe9\xee\xff\x72\x14\x4a\xbf\xc9\xa8\xe6\x16\x1f\x6c\x47\xc1\x76\x14\x6c\x47\xc1\x76\x14\x6c\x47\xc1\x76\x14\x6c\x47\xc1\x76\x14\x6c\x47\xc1\x76\x54\xfc\x33\xd8\x8e\x82\xed\x28\xd8\x8e\x82\xed\x28\xd8\x8e\x82\xed\x28\xd8\x8e\x82\xed\x28\xd8\x8e\x6a\x55\x0b\xb6\xa3\xa2\x3e\xc1\x76\x14\xec\x3d\xc1\xde\x13\xec\x3d\x9e\x1c\x82\xbd\xe7\x5b\xd9\x7b\xfe\x36\x32\x66\x9e\x87\x88\x80\x4e\x03\xfa\x18\xd0\xc7\x80\x3e\x06\xf4\xd1\x49\x17\xd0\xc7\xb2\x8a\x01\x7d\x0c\xe8\x63\x40\x1f\x1f\x3a\xfa\xa8\xbf\xb9\x0d\xa8\xe8\x09\x3b\x5c\xc5\xe9\xb6\x7a\xc2\x07\x05\xb0\x2e\x80\x75\x01\xac\x0b\x60\x5d\x00\xeb\x02\x58\xa7\x9e\x1f\x13\xac\xb3\x05\x1f\xff\x76\x7c\x7a\xf1\xf1\xff\x7c\x38\xfe\x70\xfc\xf1\xe8\x78\x72\xf1\x8b\x57\x02\xbc\xd8\xdd\xdd\x5d\x63\xc9\x77\x43\x7d\xe3\xc6\x42\xdc\x04\x70\x57\xe6\xf2\x49\xc0\x59\x8a\x78\x94\xd2\xf8\xb2\xab\x1a\x26\xdd\xc8\x4d\x57\x87\xff\xbc\x2d\xf2\x82\x61\x59\x6b\xfb\xba\x25\x59\x57\x66\x35\x5c\x0d\xb4\x49\xd5\xae\x3c\xbc\xe2\xb5\xb3\xc3\xfd\x18\x62\xf7\x86\xd3\xdd\xf7\x7d\x1d\xe6\x1b\x09\x50\x08\x87\x37\x38\x45\xef\xd9\xa1\x8e\x90\xf4\xdd\xc3\x8b\x4f\xf7\x46\xcf\x03\xbc\xe8\xc9\xe3\x2b\xe0\x8c\x9e\xcc\xcc\xae\x83\xc9\xc2\x02\x7f\xde\xdc\x4d\xb0\xc1\x18\x27\x6c\xe0\x3d\x67\x01\xcf\x0c\x78\x66\xc0\x33\x03\x9e\x19\xf0\xcc\x80\x67\xda\x44\x01\xcf\x74\xf3\x0f\x78\x66\xc0\x33\x03\x9e\x19\xf0\x4c\xf5\x04\x3c\x33\xe0\x99\x01\xcf\x0c\x78\x66\xc0\x33\x1b\xb9\x04\x3c\xd3\xcd\x23\xe0\x99\x0f\x09\xcf\xdc\x1b\xed\xbd\xf8\x5a\x68\xa6\x89\xad\x31\x04\xd2\x04\xa0\xc7\x6b\x7c\xa8\xdf\xb8\xcf\x73\x7c\x4d\xdf\xf1\x6a\x5d\xca\x09\x66\x81\x4c\xdf\x76\x56\x42\xad\x2e\xd4\xa8\xdf\x14\x60\xe9\xfa\x99\x16\xe0\x6b\x33\x57\x0b\x62\xea\xbf\x0c\x90\x79\x87\x52\x1c\x24\xb6\x59\xd8\x66\x79\x9f\x43\xe6\x45\x00\x4b\x57\xce\x2a\x6e\x94\x54\x2e\x8f\x10\xc3\xe6\x7b\x8f\x61\x03\xea\x51\x6c\x40\x25\x8e\x0d\xa8\x45\xb2\x01\x43\x62\xd9\x80\x41\xd1\x6c\x5a\x52\x35\xe3\xd9\x78\x12\x86\x88\x36\x1b\x8d\x68\xf3\x43\x84\xb1\x19\x12\xc5\xe6\x47\xb0\x0a\x7d\x2b\xa3\x50\xb0\xf7\xd4\x47\xec\x4f\x6f\xef\x69\x57\x14\xbe\xb5\xe9\xe7\x87\xb3\xe1\x0c\xb2\xe2\x14\x50\xb8\xf7\x46\xbd\x66\x6a\x17\x0d\x3f\xa5\xc2\x67\xd1\xe9\xb0\xe9\xe8\xf2\xae\x31\x49\xe8\x75\x91\xb9\x67\x3b\x78\x98\x26\x1f\xff\x65\xb3\x6d\xd6\x81\xbb\xdc\x97\x5c\x03\x54\x6a\xf5\xe8\xb0\x13\x04\xdc\xf7\x4f\x12\xb0\xf8\xb6\x38\xb0\x0f\x08\xfe\xe1\xb1\xdf\x3f\x85\xe3\x79\x30\x05\xda\x27\x98\x02\x87\x98\x02\x43\xa0\x82\x1f\x3b\x50\xc1\xde\x68\xef\x65\x40\xde\x03\xf2\x1e\x90\xf7\xef\x1a\x79\x0f\x91\xe3\x03\xea\x1e\x50\xf7\x80\xba\x07\xd4\x3d\xa0\xee\x45\x8a\x80\xba\x07\xd4\x3d\x78\x59\x04\x84\xfe\xdb\x21\xf4\x21\x72\xb4\x93\x55\xb0\x17\x04\x7b\x41\xb0\x17\x04\x7b\x41\xb0\x17\x04\x7b\x41\xb0\x17\x04\x7b\xc1\x77\x6a\x2f\x78\x75\x37\x73\xc1\x0f\x1b\xbf\xe2\xde\x03\xb0\x04\x3b\x45\x9b\x9d\xe2\x2b\x84\xf7\x98\x6e\xb9\x23\xae\x2a\x7d\x9f\xb0\xd2\xdd\x50\xa5\x5e\x50\x69\x10\xa6\xd4\x17\xdd\x63\x28\xa4\x74\x27\x44\x69\x30\xa0\xd4\x87\x27\x05\x38\xe9\x01\x90\x38\xd7\x5d\x45\x81\xc8\xe9\x3e\x0f\x1d\x26\x7a\x98\xf8\xcb\xdd\x42\x2e\xac\x0d\x8d\xa8\x57\x93\x3c\x4d\xb5\x45\x76\x1f\x9c\xcc\x4f\xa9\x98\x30\xc4\x11\x71\x7c\xbc\xfd\x98\x43\x3b\x4a\xf0\x6c\x77\x77\x35\xf5\x22\x04\x2f\x76\x77\xdf\xd5\x27\x61\x1b\x6e\xb1\xf7\xa2\x2d\x97\x97\xcf\xdf\xb9\x5d\xdd\x0f\xb7\x54\x4e\x87\x0d\xe8\x67\x6b\x67\xba\x55\x82\x3c\xfa\xaf\x3a\xba\x63\xd2\x74\x40\x36\xee\x29\xd3\xc6\x09\xd9\x70\x1d\xea\x25\x54\x91\xa1\xa1\x58\x4b\x75\x73\x09\x70\x49\x80\x4b\x02\x5c\xf2\x43\xc0\x25\x5e\x73\x3a\x08\x31\x98\x1e\x72\x0c\x26\xa7\xc4\x5a\x61\x84\x8a\x88\x21\x98\xdc\x0c\xa9\x78\x7b\x6d\x02\x86\xf6\x63\x61\x68\xf7\xce\x0b\x34\x20\x9d\xfc\x2d\x21\xdc\x25\xf5\xf6\x72\x00\x50\x96\xd2\x9b\x15\x6a\x29\x5b\x95\x22\xb3\x84\xb9\xa0\x3c\x86\x29\x62\x5d\xf5\xa8\x9d\xaa\x8a\xd3\x93\x37\x9b\x5b\xf1\x00\x5a\x2a\xb4\xf6\x61\xaf\x2f\xc3\x70\xc8\xab\x3f\xeb\x71\x01\x1a\x55\x69\x93\xdf\x72\x67\x44\xac\xbb\x4e\x55\xe9\xe9\x3b\xaf\x79\x47\x71\x20\xf9\xe0\xe8\xf4\xfc\xa0\xf8\xea\x96\x14\x84\x01\x79\x54\x89\x08\xba\xf8\x8b\x52\x09\x68\xe3\x03\x38\xe2\xcb\x49\x5d\xca\xae\x97\x45\xde\xd5\xfd\xd9\xcf\x2a\x68\xdd\x05\xdb\xbb\x3b\x5a\x73\x8b\x6b\xee\xa7\x1d\xa7\xe7\xfa\xa2\x03\x15\x2d\xda\xe9\xd9\x73\x95\xa8\xa1\x53\xfb\x4f\xc9\xad\x67\x5c\x50\xda\xd4\x9f\x36\x4d\xea\xa0\x62\x56\xdf\xab\x99\xd5\x9b\x94\x06\x45\x6a\x30\x11\xbd\xa3\x8c\xd1\x8c\x32\xd9\xdf\x30\x6d\xc8\x12\x9b\x3a\x8a\x0a\xc9\xf9\xba\x26\x38\xdd\x44\x7a\x83\x5d\xc1\xec\x75\xab\x74\x2a\x13\x0b\xc8\x16\x48\xbc\x2e\x05\xf9\xd8\x7e\xe4\xa6\xdc\x06\xbf\x2f\x11\xb1\xf1\xc7\x15\x03\x93\x63\xb2\x00\xa9\xfc\x5a\x03\xe9\x8f\xaf\xb1\x58\x82\x15\x65\x08\xc4\x94\x21\xfe\x64\x07\x4c\xb7\xd4\xbf\x26\x88\x9d\xa1\x2c\xc5\x31\x9c\x6e\x01\xbe\xa4\x79\x9a\x80\x84\xae\x30\x81\xc2\x3d\x6f\xc8\x52\x4e\xe6\x26\x63\xbe\x92\x27\x13\x95\xb1\xcc\x47\xfd\xa3\x27\x1f\xbd\x83\xbf\xc5\x04\x41\xe6\xac\x26\xc8\xe0\x8a\xbb\x83\xae\xdb\x6d\xf8\xb1\x51\xa6\xde\xbf\xfe\x3c\xdd\x4a\xd5\x97\xd3\xad\xfd\xcf\x9f\x5b\x73\x69\x6c\xf4\xc3\x32\xf4\x74\xc4\xfe\xde\xd3\x57\x3b\x9e\x86\xed\x3f\xdf\x99\x6e\xad\x30\x91\x29\x76\xa6\x5b\x19\x43\x57\x88\x88\x73\x4c\x16\x29\x9a\x50\x4c\xc4\x1b\x88\xd3\x9c\x21\x03\x39\x7b\x00\x29\x5b\xa1\x94\x2e\x04\xe5\x22\x41\x8c\xbd\xae\xa3\xd3\xf2\xfd\xd5\xeb\xa7\x77\xd5\x2d\xee\xb8\xbf\x57\x55\x7e\xb3\x12\x8c\x7c\x96\x6b\x48\xd5\xda\xac\x21\x98\x24\x94\xac\x20\x81\x0b\xc4\x6a\x7b\xc0\x8a\x26\x52\xd9\x42\x31\x25\x31\x4e\xd1\x37\xbb\xd2\xc0\xb0\xd4\xbd\x9d\xd2\xe6\x98\x34\xdd\x2a\x0e\xef\xae\x43\x92\x99\x18\xc5\x3b\xeb\x84\x24\x27\x95\x3c\xbc\xca\x35\xa1\x6d\x5f\x5b\x0d\x0f\xa3\x8e\x4c\x99\x9e\x65\xb2\x2d\xe6\x84\x95\x22\xc6\xc7\xaa\x92\x9e\xb2\x16\xc8\x14\xa5\xb5\xe5\x96\xb2\x4a\x1c\x5f\x81\x60\x52\x43\x6c\x29\x3e\x29\x84\x4c\x51\xa6\xcc\xdd\xd4\x8a\x23\x71\xd7\xaa\xb4\x94\x5b\x08\x44\x5f\x87\x16\x39\xc7\x3a\x14\x9e\x4c\x71\x9f\xa6\xe7\xae\x59\xe2\x98\x8d\x95\xe6\xd3\x62\x38\xee\x59\x7e\xed\x0b\xd0\xb5\x76\x77\x98\xb1\xbb\xaa\x38\xd0\x4c\xee\x6e\xe3\x9b\x91\x31\x0f\x41\xb0\x6c\xe8\x38\x74\x97\x33\xd0\x3d\xb7\xb0\x38\xb6\x6c\x03\xbb\x2c\xa5\xf2\x2d\xac\x0e\x8c\x12\xb0\x44\x0c\x99\x24\x7b\x23\x70\x42\x00\x65\x09\x62\x40\x50\xb0\x82\x97\x08\x1c\xc8\xd2\xc0\x3b\x5d\x1c\x48\xa8\xfa\x9a\xd9\x12\x80\x58\x62\x5e\x64\x0d\xd4\x66\x89\x04\x62\x23\x9d\xe1\xd3\x11\x30\xf6\x5d\xa9\x63\xec\x99\x5f\x9f\x8d\xc0\xef\x38\x4d\xc1\x0c\x01\x91\x13\xed\xf8\xc1\x10\x4c\x81\xc0\x2b\x24\x25\xfd\xd1\xe9\x39\x50\x93\x50\xaa\x8a\xa9\x52\x0b\x23\x39\x61\xa5\x26\x81\x39\x10\x39\x93\x5f\x51\xa2\xf2\xe3\xf7\x75\xe8\x6f\x3d\xdb\x9f\xe7\x4c\xaa\xa4\x7b\xf2\x54\x5f\xfc\x58\x39\xf0\xef\x56\x76\xf1\xdb\x9c\x68\x37\x73\x8c\x2d\x0e\xac\x0d\xbf\x3d\xf9\x70\xa3\xbf\x33\xaf\x9b\x9d\x8d\x15\x1f\x65\x34\xd9\x07\x8f\x1e\x55\xce\xc1\xc3\x0f\x53\xb7\x3f\x42\x7d\xaf\x0c\x6e\x0f\x3a\x90\xd1\xe4\x80\x08\xec\x05\x08\x32\x86\xe6\x88\xdd\x0e\x21\x88\xc0\x35\xc2\x8b\xa5\x90\x93\x71\xb7\x86\x93\xd1\xc4\x16\x77\x81\x58\x1d\xce\x37\x93\xa7\xd1\x41\xe5\x33\x00\x56\x28\x4e\xf3\x66\xde\xf9\xc1\x80\xee\x9b\x1c\x40\x89\x25\xc8\xdd\xbb\x98\xb8\xae\x09\x44\x3f\x82\x66\x34\xa5\x8b\x9b\x5f\x9b\x17\x48\x2c\x29\x17\x55\xb3\x56\x80\x63\x2a\xe5\x7d\x0d\x38\xe6\x9b\xa1\x18\xaa\x05\xd3\xad\x43\x23\xaf\xd4\x86\xc5\xdf\x93\xf4\xc6\x3d\xaf\x97\xf5\x9d\x6e\x99\x1a\x6f\x7d\x63\x20\xa4\x2d\x8a\x76\xa1\xa7\x69\x3d\xd7\xc5\x1c\x7a\x42\x4e\xd7\x4e\xf9\x34\xd3\x00\x44\xd5\xd4\xd4\xc3\x5e\xa8\xe4\xd1\x00\x5f\x06\x42\x2e\xdb\xe0\xe2\xfd\xd1\x7b\xa9\x0f\x0a\x83\xa1\x18\xae\x02\xb8\x5e\x22\x02\xae\xd1\xa3\x2b\x04\x32\xed\x24\x9d\x00\xb1\x44\x65\xad\xc0\x9c\x32\x8d\x43\x54\x33\x34\x4a\x11\xdf\x91\xc9\x09\xe0\x48\x58\x58\x07\xbc\xd6\x99\x4b\x95\xe5\x12\xa1\x4c\xeb\x24\x65\x86\x55\xb3\xc2\x36\x58\xe4\x90\x41\x22\x10\x4a\x40\x2c\xb7\x96\x11\x38\xcc\x19\x43\x44\xa4\x37\x3b\xf5\x6f\xe7\x30\x4d\x39\xc0\x44\x50\x59\x6c\x35\x9f\xe9\xd6\x2c\x67\x5c\x05\xe5\x9e\x6e\x81\x58\x2a\x14\xb2\xa1\x5c\x25\x55\x7d\x99\x22\x01\x12\x8a\x38\x79\x24\xc0\x0c\xc6\x97\x74\x3e\x07\x73\x46\x57\xb2\xd7\x04\x64\x42\xe9\x33\xa2\x82\x99\x78\x29\x1d\x16\x86\xda\xfb\xeb\xee\x3b\x5c\x97\x66\xad\xe4\x8d\x56\x0a\x48\x35\x97\x14\x5f\x21\x82\x38\x9f\x30\x3a\x43\x95\x8c\x96\x42\x64\x3f\x23\xe1\x37\xc0\x2c\x11\x4c\xc5\x32\x5e\xa2\xf8\x72\xdc\x98\x37\x2a\x1d\x65\x7a\x5f\x7a\xf1\xbc\xfa\x42\xaa\x1d\x72\xb6\xfd\x72\x71\x31\x71\xdf\x48\x61\x8d\x61\x7a\x84\x52\x78\x73\x2e\x15\xcc\x84\xef\x83\x97\x95\x6d\x4d\x2a\x88\x34\x17\xc5\xdb\x17\xee\x4b\x9e\xc7\x31\xe2\xfc\x62\xc9\x10\x5f\xd2\x34\xd9\x07\x7b\xee\xeb\xb9\x06\x5a\x9c\xd7\x2f\xdc\x69\x0c\x13\x7c\x8b\x5e\x28\xbe\xf3\xb5\xfd\xd5\xee\xab\xbd\x61\x4d\xdf\x06\xd7\x08\x64\x54\x1b\xef\x33\x9a\x00\x35\x3d\xf2\x4c\x2d\x06\x39\x9b\x7e\x2d\xc4\x32\x58\x41\x85\xd9\x99\xc3\x01\x80\x24\xa9\xe6\x44\x49\x7a\x23\x97\x47\x9e\xa9\x2f\xcb\x2a\xaa\x52\xd5\x77\x88\x01\x4a\x62\xa9\xbc\x43\xf1\x88\x83\x42\x71\x1d\xf5\x0e\xc7\xb3\x81\xa3\xe1\x71\xe1\x4a\xe8\x0a\x62\xf2\xba\xa4\x3e\x1e\xa9\x1f\xbe\x7c\x19\xd5\xd2\x11\x1e\xc9\xfe\x7b\x2d\xa7\xce\xb3\xea\x3b\x2d\x01\xa3\x04\xb3\xd7\xe3\x56\x31\x59\x80\x61\xf6\x87\x16\x82\xcd\xd9\xfb\x77\xc7\x17\xbf\x1c\x7f\x38\xff\x38\x79\x7f\x76\xe1\x36\xcc\x61\x1a\xec\xbe\x78\xe1\x6e\x23\x59\xe1\xf6\x6e\x33\x2b\x64\xc5\xa4\x98\xef\xcf\x9a\xe2\x59\xd6\x33\xa5\x31\x4c\xab\x9a\x1f\x15\x34\xa6\xe9\x3e\xf8\x70\x34\xb9\x5d\x9e\x22\xce\xba\xf2\xbd\x38\xec\xcb\xf7\x45\x33\xdf\x15\x12\x0c\xc7\x7c\x40\x8e\x3d\x4c\x8b\xd6\x11\xaa\xb2\x25\x5a\x92\x45\x65\x33\xab\xae\x7f\xe5\xa6\x74\x74\x7a\xfe\x0e\xf2\x7f\x36\x36\xa5\x0d\x88\xb4\x46\xa9\xe0\x7b\x13\x69\xcd\x25\x58\x59\x14\x11\x70\x11\xe5\xca\xef\x7a\x1c\x8e\xe4\x22\x53\xcc\xa7\x57\x5c\x76\x87\xed\x92\x88\x40\x42\x6e\x2a\x1f\x98\xed\xec\x48\x27\xa8\xa1\xd3\x72\x39\x56\xfe\xba\xac\xad\x69\x18\x2f\x51\xc4\xf1\xbf\x90\x5c\xf1\xbb\xd5\x97\x29\x5d\x44\x73\x18\xe3\x14\x8b\x9b\xd7\xd5\x6c\x22\x2d\xc9\x5e\x8f\x9b\x12\x65\xbc\xf7\xf4\xaf\xa3\xdd\xd1\xee\x68\x6f\xdb\xac\x9d\xa9\xb0\xea\xe9\x19\xba\x42\x8c\xa3\xc3\x93\xa3\x33\xae\x94\x31\xfd\x4a\x1f\x0b\x9b\x6f\x5b\x0a\x6c\x2f\xc3\xea\x78\xe6\xaf\xaa\x02\x5b\xcd\x07\x93\x08\x26\x09\x1b\x41\x96\xc1\x66\x76\xde\x2f\xb2\x97\x2d\xa9\xab\x85\xbb\x13\xb6\x53\x5c\xb5\xc8\x95\xdb\x48\xa9\x0e\x11\x35\x40\x94\x6c\x03\x8e\xd0\xbe\x5a\x9f\x7c\x7f\x3c\x5e\x60\xb1\xcc\x67\xa3\x98\xae\xc6\xe5\x89\xc4\xfd\x27\xe6\x3c\x47\x7c\xfc\xf4\x6f\xbb\x2f\x5e\xa8\x5d\x32\x41\x02\xe2\x94\xf7\x69\xa6\xb7\xa3\xbb\x3e\xad\x68\x4c\x9b\x11\x7b\xbd\x4b\xcb\xe6\xc7\x71\x82\x62\xd8\x65\x12\x3d\xd7\x29\x36\x25\x07\x3d\x1b\xc0\x77\x2f\xfb\x1a\xc2\xaf\x55\xfa\x45\x99\xec\xad\xd7\x46\xa7\xdd\x29\x56\xda\xbe\x5a\x69\x3b\xce\x01\xd9\x98\x08\x47\xfc\x2a\x1e\x35\x85\xd0\xce\x8b\x9d\x03\x5f\xc6\x66\xac\x9d\x8c\x6f\x9f\xeb\x20\x75\xe4\xf9\x5d\xb6\xf8\xb5\x56\x91\x7f\xb9\x80\xf2\x44\x52\x2c\xaf\x84\x70\x4b\x78\xb7\x00\x31\xd8\x06\x47\x54\x9e\x94\x72\x8e\x0a\xcb\xf4\xd1\xe9\x79\xa1\x1e\x76\x31\x3d\x86\x58\x25\xbe\x57\x0c\xbf\x99\xb9\xae\xfa\x74\xcb\x2c\x7f\x99\x69\x1b\x7d\xca\x5b\x59\x53\xb9\x93\x89\x66\x27\x9b\x19\x76\x7a\x7e\xae\xb6\x19\x2d\x41\x32\x27\xc0\x53\x6d\x5f\xc8\x2a\xf2\xbe\xb1\x3f\x44\x3e\xe1\xdf\xf6\x8d\x9a\x6c\x1d\x63\xe7\x78\xe5\xdd\x72\xf4\xcc\x27\x76\xff\xff\x90\x71\xc1\x10\x5c\xa9\x50\x6f\xaa\xbd\x76\xa3\xcf\x9b\x6f\x0a\x47\xae\x3f\x3e\x7f\x36\xc0\x31\x2e\x80\x63\x4f\x4e\x5f\xbe\x28\x48\xfa\x3f\xf0\x97\x2f\x3b\x36\x70\xc4\xe7\xcf\x19\xc3\x44\xcc\xc1\x74\xeb\x7f\xfd\x73\xba\x05\x46\xf2\x27\xf5\xe6\x1f\x7e\x1a\xd0\xb9\xc8\x67\x7a\xb9\xdb\x9a\xf1\xf2\x97\xd2\xb5\xec\x33\xf8\x19\x89\x5f\xb5\x94\x72\x3f\x69\x7c\x5f\x96\xd1\x24\x06\xbe\xea\xe6\x05\x56\xdd\xb8\x1e\x00\x39\x30\x30\xfb\xea\x89\xfe\x8c\x50\xb2\xfe\x7d\x30\xb3\x4f\x27\xff\x66\x14\x37\xfd\x7b\xa0\xb5\xd9\xd4\x81\xd6\xf6\x63\xd1\xda\x02\x67\x2d\x70\xd6\x1e\x10\x67\x2d\x50\xd5\x02\x55\xed\x07\xa0\xaa\x75\x84\x5b\x08\xac\xb5\xc0\x5a\x0b\xac\x35\x0f\x6b\x2d\xf0\xc5\x02\x5f\x2c\xf0\xc5\xc0\x43\x3a\xe4\x7f\xcf\x94\x2e\xd3\x95\x81\xc6\x15\x68\x5c\x81\xc6\x55\x3c\x81\xc6\x15\x68\x5c\x81\xc6\x15\x68\x5c\xb5\x4d\x29\xd0\xb8\x02\x8d\x2b\xd0\xb8\x02\x8d\x2b\xd0\xb8\x6c\x2e\x81\xc6\x15\x68\x5c\xe5\xa0\x04\x1a\x57\xa0\x71\x05\x1a\x57\xa0\x71\x0d\xa7\x71\x99\xd5\xaf\xeb\x1c\x5d\xed\x8e\x5e\x8c\x76\xd7\xba\x8c\x61\xb8\x31\xd1\x63\xb1\xab\x0c\xa3\x7f\x61\x99\x0a\x1a\xb5\x47\xbf\x6c\x2f\x07\x2e\x16\x4c\xc5\x92\x8f\x04\x8d\x60\xa2\x2e\x95\xac\xae\xb6\x81\xdf\xa2\x04\x8b\x5b\x7e\x7a\x85\xd1\x75\xf5\xd3\x8a\x59\xb2\x48\x9b\x44\xb6\x6d\xf2\x58\xee\x1a\xd7\xeb\x17\x17\x44\xb6\x17\x9c\x1b\x27\xaa\xc2\xb8\xbc\x73\xc1\xb9\x28\xa1\xbc\xb9\xc0\xb9\x78\xc1\xde\x95\x50\xdc\x93\xf0\x8d\x46\xb1\xd2\x27\xf5\xd7\xed\x1d\x61\x6f\x6f\x18\xd0\x7c\xf7\x32\x07\x5e\x0a\xa3\xf2\xee\x52\x7b\x2d\xae\xb2\xac\xdf\x6f\x7f\x55\xec\xef\x77\xe8\xaf\xea\xef\x91\x2c\xb5\x98\x3d\xc3\xec\xe6\x6b\x5d\x68\x52\xb5\xab\x17\xd6\xe2\x08\x66\xd8\xa9\x01\x22\xc2\x90\x31\x8a\xba\xac\x71\xd7\x89\xbf\xa9\x83\xee\xc2\x5e\x73\xa6\x6e\x7e\x00\xf6\xed\x9a\x96\xe3\x60\xae\xb1\xa0\x6c\xd3\x37\xc8\xb4\x14\xf2\xa7\xed\xe3\x36\xa1\x70\x1f\x9d\x5a\x2f\xe4\x5e\x3a\x75\x13\x6c\x92\xbb\x4c\xd3\xb5\x06\xbc\x4f\x57\xbe\xaf\x8a\x94\x17\x9a\x37\xb4\x4d\x85\x04\xb8\xba\xe3\xf3\xe7\x7e\xe5\x51\x1d\x24\x15\xcb\x53\x1f\x79\x8a\x0f\xdb\x34\xe1\x7a\xf5\xee\x18\xcc\x69\x78\x6b\x87\xf6\x63\x85\x74\x60\x98\x93\x86\xe2\x59\xb2\x5a\x3e\x7f\xae\xbc\xba\x25\xff\xa2\x5e\x74\x1b\xa5\xa4\xc6\x3b\x19\xcc\x2f\xb1\x75\xea\xe3\x76\xb4\x75\x25\xe8\xe4\x7d\xf8\xd2\x07\x56\x7e\xf5\x79\x00\x06\xfb\x87\xc9\x9e\xf1\xc1\x09\xcd\xe5\xf0\x23\x05\xd8\x6d\x12\x12\xd0\x2a\x13\x37\x47\x98\xed\x83\xcf\x4e\x8f\xeb\xc5\x2a\x56\x59\x94\xe0\x62\x0a\x74\x04\xf6\xd2\x09\x5a\x62\x76\xbd\xd3\x5d\xae\xa1\x87\x66\xe4\xae\x7f\x03\x83\x87\x81\xe9\x96\x96\xa3\x91\x85\x56\x2c\x63\xab\x72\x9b\x41\x07\xbb\xc1\x2f\x5d\x1c\x38\xb5\x56\x19\x05\xa7\x82\x5b\xdc\xb9\xd3\x0e\xbb\x36\x41\xcb\x0a\x68\xde\x89\xca\xca\x5c\xff\x35\xf5\x60\xb2\xce\x4e\x69\x1f\x17\x93\x3d\x77\x5f\x65\x88\x61\x9a\x14\x80\xeb\x9e\x03\xc7\x7a\x30\xd3\x18\x31\xa1\x8d\xad\x62\x95\x4d\x6b\x16\x89\x38\x67\x48\x1b\x6a\x8b\x9d\xd9\x3f\x0f\xf6\xe5\xa0\x10\x14\x2b\xba\x83\xa0\x05\x33\x42\x7b\x42\x60\xa2\xb3\x02\xc2\x05\xef\xed\x2d\xcd\x29\x12\x91\x4d\x11\xb5\xa6\x28\x98\x6d\xca\x9e\x82\x38\x8f\xc4\x4d\x86\xf8\x6b\x75\xc7\x0f\x81\xe9\xc9\xa4\xfa\x9d\x9e\x09\x91\x3c\x4f\xa6\x4a\x9a\xbf\xde\x7b\x51\xcb\xda\x8b\x0e\xbb\x72\xc9\x88\xa5\xf7\x99\x5e\xe7\x55\x1b\x0f\x88\x22\x2b\x96\x5e\x17\x32\xc9\xcd\x66\x6d\x43\x4d\xa5\x8f\x41\x53\x47\x32\xd9\xb4\x81\xb8\xad\xec\x86\xbb\xcc\x48\x75\x85\xc5\x9d\xa7\xa4\xd7\x4e\xf0\x74\x77\xe0\xac\xbd\x85\x95\xa7\x95\x17\xf3\x74\xb7\x82\x5b\x77\x5d\xca\x24\x9b\xfe\x9e\xa4\x37\x67\x94\x8a\x37\x38\x45\xe6\x64\x01\xea\xbe\x2a\x2c\x27\x07\xfc\x94\x12\x99\xae\xe5\xed\x07\x8e\x98\xaa\x95\xd3\xaa\x56\x0b\x93\x6b\x40\xaa\xac\xc9\x86\x54\xf6\x68\xb5\x98\xa1\x05\x56\x7a\x9c\xf7\x44\x77\x30\x39\xd9\x84\xf6\x6f\x48\xe5\xa3\x3a\x7c\x55\x28\x66\x0b\x7d\x88\x6b\xc2\x5b\xea\x85\xdd\x02\xde\x61\x82\x57\xf9\xaa\x20\x9c\x5a\x29\x70\x7e\x89\xb3\x8b\xb7\xe7\xbf\x21\x86\xe7\x37\x65\x97\x5a\x9c\x5d\x57\xb2\x5d\xe0\xb7\xeb\xe6\x57\xe5\x61\xc8\xb0\xe2\x8b\xdf\x6c\x9d\x4c\x65\x54\xd7\xb6\x63\xa9\x4f\x03\x96\x1a\xb0\xd4\x80\xa5\x06\x2c\x35\x60\xa9\x01\x4b\x0d\x58\x6a\xc0\x52\x03\x96\x1a\xb0\xd4\x80\xa5\x06\x2c\x35\x60\xa9\x01\x4b\x0d\x58\xaa\x9b\x32\x60\xa9\x4d\x2c\xf5\xe1\x83\xa9\x3b\xc7\x9f\x8a\x7f\xfe\xd2\xf0\x88\xfd\x6e\x01\xd6\x80\xb0\xfe\x40\x08\x2b\x00\x30\x4d\xe9\xf5\xc4\x5e\xae\x7f\xcc\x63\x98\xaa\xad\x63\x1f\xcc\x61\xca\x87\x5c\x38\x1f\xc0\xd8\x87\x0e\xc6\xbe\x1c\xed\xdd\x1a\x8c\x7d\x68\xe7\xca\x00\x0e\x07\x70\xf8\x1b\x81\xc3\x1a\x07\x76\x9c\x46\x1a\x8d\xbf\x13\xd0\x1c\x70\xe3\x80\x1b\x07\xdc\xf8\xdb\xf7\xf1\x0f\x8e\x1b\x07\x9c\x76\x00\x4e\x3b\xa4\x57\x00\xb8\x43\xbf\x04\xa4\x56\xbf\x0b\x48\x6d\x40\x6a\x03\x52\x1b\x90\xda\x80\xd4\x06\xa4\xf6\xdb\x21\xb5\x01\x90\xad\x4e\xc7\x1f\x18\x90\xed\xc1\x4b\xcb\x84\xd3\xaf\x87\xe2\x06\x68\xf6\x3b\x85\x66\xf7\x46\x4f\x43\xc8\x81\x80\x84\x7e\x77\x48\x68\xa0\xc9\x06\xb8\x33\xc0\x9d\x7f\x8e\x3e\xfe\xc1\xe1\xce\x40\x93\xfd\x0e\xe1\xd7\x40\x93\x0d\xe0\xab\x93\x6b\x00\x5f\x6b\x75\x0a\xe0\x6b\x00\x5f\x03\xf8\x3a\x0d\xe0\xeb\x03\x00\x5f\xab\xdf\x05\xbe\xeb\x80\x09\xb7\x19\x78\xb5\x63\xc6\x05\x9f\xfe\x80\x55\xae\x8f\x55\xbe\xba\x17\xa8\xb2\x72\xf7\x5e\xef\xd9\x36\xe0\x02\xdd\x1d\xb8\x5e\xcf\x05\x48\xeb\x2e\xe0\xeb\x03\x00\x55\x07\x82\xa8\x9e\x3a\xb8\x57\xbe\xfa\x6a\xe3\xdc\xf8\xba\x46\x41\xf7\x82\x67\xfd\x88\x38\x55\xeb\x96\x56\x59\xed\xad\xfb\xda\xc0\xfd\xea\xee\x5b\x4b\xeb\x8e\xe7\xdb\x73\x7a\x36\xba\xce\x4d\xb2\x63\xbf\xba\xf5\x05\xb5\x77\x90\x1c\x01\xa9\x0a\x48\x55\x40\xaa\x36\x87\x54\x75\x80\x18\x9f\x3f\x2b\x24\xa8\x07\xae\x28\x4f\x7d\xb7\x83\x3b\xcc\x8d\xc1\x25\x64\x15\x90\xb3\xef\x01\x39\xfb\xba\xa8\xd3\x41\x7a\x0d\x6f\x9c\x85\x10\xd3\xd5\x0a\x92\xa4\x72\x8e\x1d\xb7\x95\xeb\x9c\x9b\xcc\x36\x02\xa6\x5b\x57\xbb\xa3\x67\x15\x18\xed\x1b\x01\x30\x6d\x77\x74\x29\x9d\xf0\xb5\xb3\xae\x79\xbe\x5a\x41\x76\xf3\x11\x66\x78\xdf\x5e\x53\xe5\xbf\xb6\xe7\xff\x31\x55\xfc\x45\xa6\xd2\xb7\xa1\xe5\xbb\xbb\x4f\x5f\x9a\x9f\x27\xfa\x72\xc3\xa7\x2f\x76\xf5\xcf\x39\x47\xd5\x2d\xdb\xf9\xc4\x76\x43\xed\x4e\x35\xdf\x5d\x5f\x9b\xc7\x92\x6e\x79\xa5\xce\xed\xf7\x7c\xef\x25\x37\xef\xaa\xd9\x0d\xb9\xeb\xa6\x59\x03\xd7\xd8\xb7\x9e\x6d\x4f\xa5\x33\xc0\x00\x59\x60\xf2\x09\x93\x85\x9a\x6d\x57\xbb\xa3\xe7\xaf\xac\x7f\xe9\x36\xf8\x09\x72\x75\x49\x7b\xcf\x15\x66\xf6\x6b\x95\xd5\x78\x96\xd2\xd9\x58\xae\x64\x46\xd3\x54\xbb\xac\xca\x3c\xc7\xfa\x0c\xa2\x4e\x3f\x38\x1e\x67\x8c\x5e\xe1\x04\xb1\x71\x9c\xd2\x3c\x31\x2f\x47\x37\x70\x95\xb6\x0d\xcf\xa9\xed\x70\xef\x00\x55\xea\xd0\x18\x05\x98\x65\x23\xdf\x48\x34\xbe\xf2\x25\xc5\x84\x0b\x48\xe2\x66\x72\x33\x9b\xba\x21\x14\x35\xeb\xb6\xc1\xb9\x5a\x7b\xb5\x2c\xc6\x56\x4b\xe2\x6e\x87\x99\x7d\x01\xea\x85\xd3\xd9\x27\xc3\xcd\xde\xf7\xd3\x03\xfe\xe4\xc5\x69\x41\x8f\x7c\x5b\xb2\x98\xae\x32\x4a\x10\x11\x0a\xd8\x36\xad\x2f\x47\x54\x15\x11\xd9\x02\xab\x9d\x52\x5b\x80\xb5\x5a\xc1\x5c\x50\x05\x40\x56\xbb\xe7\x82\x5e\x22\x62\x0f\x28\x8d\xf3\xda\x5a\x43\x54\x90\x9f\x3a\x47\xa7\xed\x9e\xa7\x3f\xc5\xc0\xe8\x2e\xc8\xb5\xe6\xd0\x3d\x1e\x56\x89\x71\x45\xb7\x73\x83\x55\xb7\x84\x6f\xd3\xae\xea\xb7\x4c\xd5\x6e\x9c\xea\x5a\x8d\x43\xc7\x5b\x63\x0a\x4a\x17\x6e\x0e\xf3\x06\xa9\x7e\xdf\x78\x0a\x78\x0b\xb3\x88\x97\xdc\x5c\xaa\x78\x93\xde\x70\x1f\x3d\xd2\xff\x6e\x12\xb7\xeb\xd4\x40\xa3\x1a\x92\x24\xa3\x98\xb8\xda\x62\x01\x8c\xe9\x3f\x2d\x62\xa6\xff\xe2\x28\x66\xc8\xa6\x2e\xf1\x2a\xfd\xd2\x42\x55\xfa\x2f\x03\x57\xdd\xa6\xa6\x4e\x15\xea\x65\x14\xb8\xd8\xba\x79\x1a\x49\xd5\x9d\xed\x2d\xda\xe1\x60\x7c\x65\xfd\x91\x90\xe7\x32\x4c\x16\x66\xf2\x29\xc3\xe1\xe5\x2b\x0e\xf6\x46\x7b\xcf\xff\xef\xf6\x4a\x9a\xd1\xde\x7c\x2d\xbb\x7a\x06\x5d\x21\xd2\x36\xa4\x31\x43\xb0\x3c\x64\x44\x20\xfb\x16\x9d\xa1\x94\x93\xbc\xa5\x86\xb9\x42\x3e\xda\xab\x74\xd7\xe2\xd5\xbd\xfd\xb7\x1f\x90\xf5\x85\xda\x4c\xe3\xb3\x77\x97\x6d\x03\x88\x8b\x0f\x52\xc4\x6d\x14\x6c\xae\x65\xee\x80\xcc\x0a\x5a\x69\x81\x99\x87\x2a\x3b\x5d\xdb\xeb\xfa\xea\xcb\x1d\xb6\xb4\x07\xbe\x97\xdd\x42\x9d\x69\x14\xd5\xde\xd3\x77\xd9\x14\xab\xa6\x9e\x0d\xee\x37\xbe\xdd\xb6\x63\x2f\xf5\x6c\xc6\x5f\x47\xfa\xff\xd8\xfb\x62\xd8\xb0\x36\x31\x87\xea\x73\xdd\xa6\x51\xd8\x80\x49\xb7\x6d\x6f\x5f\xe6\x40\x50\x30\xdd\x9a\xe6\xbb\xbb\xcf\x62\x85\xaa\x60\x4a\x22\x9c\xa8\x1f\x50\xa4\x7f\xb7\x2b\x5c\x35\x46\xbf\xb1\xd8\xed\x36\xf8\x05\x31\x05\xd7\xd4\x92\x96\x82\x34\xd5\x06\x6e\x37\x43\x2d\x2a\x6a\x19\x5d\x2c\x31\x07\x4b\xa8\x6a\x34\x43\x00\x26\x30\x13\x28\x91\xe7\x94\x1b\x9a\x1b\x6c\x1c\x20\x2c\x96\x88\x81\x0c\x32\xb8\x42\xc2\x82\x8d\xdb\xe0\x7a\x89\x08\x48\x61\x4e\xe2\xa5\x62\x7e\x2d\x51\x6d\xbb\x28\x2b\x34\x6a\x0c\x52\xb3\xb6\xae\x4c\xed\x1c\xb5\xbe\xf9\xb3\xce\x40\xb5\xab\x7b\x5f\x45\x8d\xbc\xdd\x16\x79\x37\x05\xe9\xfb\xd0\x8c\xee\x79\xc3\xdc\x0c\xd5\xe4\xdb\xe9\x56\x77\x83\x89\x4c\x59\xd1\x35\x9a\x2d\x29\xbd\x1c\x02\xe5\xfd\x89\xa7\x8a\x2b\x8a\x60\xb2\xc2\xca\x28\xda\x3d\x7f\x0a\x54\x5c\xdc\x64\xa8\x50\xbc\xb5\x15\xc4\x65\x83\x56\xbc\x5d\x6c\x77\x5b\x29\x90\xd5\x2f\x9b\x72\xa1\x70\x27\x6d\x0d\x79\xff\x9a\xbd\xdd\xd2\x8d\xeb\xcf\xb8\x92\xe8\xe3\x99\x6c\x75\x9a\x03\x44\x2b\x4a\xce\xd1\x9f\x1a\x37\x6e\xa6\xe8\x99\x69\x03\xc8\x14\xca\x1e\xd3\x82\x71\xd6\xf8\x11\xf6\x16\x7e\xf7\xc7\xb5\x08\x15\xae\x4d\x8c\xa1\x2b\x2c\x3b\xe8\x17\xcc\x05\x65\x37\x6f\xf1\x0a\x0b\x4b\x05\x5e\x61\x72\x86\x60\x52\x86\x5e\x50\xbf\xf6\xb1\x30\x1a\x4c\x0b\x5f\xd3\x9c\x77\x43\xa7\xc2\x2d\xa6\xc3\x1a\x53\x62\xcd\x69\x11\x28\x22\xf5\xe7\x01\x50\x44\xf4\xef\x0e\x58\x7f\xaa\x4f\x23\xef\x68\x82\xc0\x74\x6b\x49\xb9\x30\xbf\x68\x16\xb2\x4e\xef\xfc\x5c\x65\xa9\x9b\x85\x52\xa6\xb4\xeb\xf1\xe8\xf4\x5c\xdb\xfb\xcb\x57\x09\xe1\x96\x02\xf0\xf9\xb3\x2f\x41\x5b\x66\x1d\x24\x69\x9d\xce\xc7\xe8\xe8\xd7\x3e\x7c\xa6\xef\x6f\x46\xca\x30\xc5\x23\xb6\xc2\x44\x95\xff\x33\x83\x31\x9a\x54\xbd\x0f\x9e\x95\x3e\x00\x1e\xca\x46\xb9\x1d\x77\x89\x62\xfb\x38\x04\x8e\x13\x9d\xb0\x49\xdd\x18\xec\x32\x04\x40\x8a\xe7\x28\xbe\x89\x53\x54\x9b\xdd\x19\x43\xe7\x82\x66\x8d\x39\x8f\x3e\x39\xa2\xa1\x7c\x9a\x5c\x90\xf2\x89\xc0\xf8\x1a\x62\x11\xf1\x65\x2e\x12\x7a\x5d\x59\x61\x35\xef\x1f\x93\x7c\x48\x3f\x38\x53\x56\x1f\x5f\x7f\x82\xf1\x65\x65\x16\xda\xec\xa2\xc8\xf0\x32\xa2\x99\x4e\x62\x67\xd5\xeb\xff\x78\x3c\x79\x7f\xf4\xf1\xf4\xe0\xdd\xf1\xf9\xe4\xe0\xf0\xf8\xc9\xd8\x26\x94\x7a\x91\x4d\xdd\x2c\xb4\xa5\x14\xe7\xc8\xfc\xba\xfd\xec\xdb\xf8\xac\x72\xa2\x7e\x5d\x93\xf0\x36\x51\x71\x3e\x6c\xd6\xb9\xc5\xbc\x58\xfd\xfe\x0a\xa6\x38\x81\x02\x93\x85\xd5\xf6\x5e\xef\xbf\xaa\x79\xff\xb4\xa5\x54\xfe\x58\x78\x8e\x63\x28\xd0\xeb\x71\xce\xd9\x38\xa5\x31\x4c\xc7\xce\xcf\x5c\xfd\x31\x28\xb3\x4b\x74\xd3\x9a\xc9\x25\xba\x71\xf3\xa8\x18\x3b\x2d\xad\xec\xf8\x93\x60\xf0\x80\x2d\x38\xf0\x8d\x81\xb5\x7e\x2a\x06\x1b\x41\xf2\xa3\xe9\x96\x32\x63\x16\x34\x97\x1a\xab\x0c\xb4\x50\x69\xba\xfd\x84\xcc\xdc\x23\xa8\x2e\x88\x09\x25\xa8\x46\x69\x92\x4f\x0c\x33\x38\xc3\x29\x16\xd8\xb3\x8f\x24\xcc\xb3\xd0\x64\x7b\x0e\xde\xbe\xad\xff\x0c\x13\xdf\x22\x8b\xc0\xe9\xf1\xc5\xc7\x9f\x4e\x4e\x8f\x3e\x9e\x1f\x9f\xfd\x76\x72\x78\xdc\xdf\xbc\x9a\x9b\xd2\x5e\xf5\x5d\x7b\xa4\xa7\xba\xb3\x13\x22\x57\x8d\x15\xac\xc5\x99\x9d\xa8\xf5\xfa\xaa\xed\xf4\x0d\xa3\x2b\x4f\x4b\xe6\x18\xa5\x89\x3d\x02\x7b\x5f\x6a\x2f\x29\xab\x9a\x8d\xaa\xe1\xcc\x7c\xc5\xab\x75\x72\xef\x75\x30\x54\x1b\x5f\x45\xde\x1e\x7d\x9c\x9c\x1d\xbf\x7d\x7f\x70\xe4\xad\xc5\x3e\x70\xd6\x43\x8a\x67\xf2\x7f\x2b\xbc\x92\x23\x10\x8f\x38\x2d\x75\x65\x35\xf5\x8f\xc9\x95\xe1\x33\x17\x2a\x71\xf1\x7b\xa9\x0d\xef\x3d\x6d\xaa\xc3\xf6\x69\xf7\x13\xf5\x39\xee\xbd\xa8\x26\xf0\xbb\xee\x15\xce\x7b\x4b\x04\x53\xb1\xfc\x57\xe3\xad\x3a\x3b\xee\xed\x3e\x7d\xf1\xbc\xfe\xca\xf5\xe0\xab\xbe\xf3\x46\x48\xdb\xdb\xad\xed\x53\xed\x7e\x7e\x2a\xf7\x3c\x8e\x11\xe7\x4e\x7b\x6a\xf3\x5c\xe0\x15\xa2\xb9\x28\x33\xa8\xaa\xb3\xad\x1e\x8e\xbd\x3e\x8e\x3f\x58\x57\xd5\x7d\x4d\x81\x33\xff\x6b\xf8\x82\x7d\x6a\xce\xa8\xcd\xed\xa8\xd5\xf3\x14\xd4\x20\x8c\xfa\x67\xeb\xaa\xc9\x6d\x35\xda\xf5\x65\xac\xa8\xa2\x78\x0e\x28\x03\x8f\xfd\x25\xc8\xaf\xa7\x5b\x4f\x7c\xaf\xf5\xf6\xf0\xa4\xb7\xe8\xcf\x9f\xaf\xb1\x58\x82\xc7\x72\x39\x7f\x72\x37\xbd\xe9\x96\xd2\x4d\x32\x5d\x84\xdc\xcd\x46\x6a\x4b\x4b\x39\xfa\xf2\xe5\xd5\xae\x67\x73\xeb\xed\x10\x5d\xdd\xe6\x47\xf6\x9d\x52\xfb\xe5\x9c\x93\x7f\xf8\xf3\xf6\xed\x2e\xed\x6f\x3c\xb1\x56\x36\x3e\x76\x9e\xc9\xf4\x50\x06\x8f\xb7\x8c\xde\xf3\xe7\xcf\xee\x75\xf8\xce\x37\x33\x7e\x2d\x3e\xcc\xa0\xb9\xe0\xa3\xa6\x52\x08\x2a\x9e\xce\x2d\x6a\x60\xfd\x13\xeb\x94\xed\x72\x11\x8b\xfd\xf0\x37\xa7\x3a\xc0\xb7\x31\x56\x12\x38\x1b\x64\x1b\x13\xae\xcd\x71\xa1\xc5\xf1\xc1\xa3\xa2\xde\xda\xf3\xa1\x93\xa1\x37\x3a\x95\x8a\xbe\x39\xf3\x1d\x16\xe7\x8a\x5b\x38\x83\xac\x93\x51\x7f\xb8\x8e\xfe\x61\xd7\xf6\xf4\xda\x5c\xd1\x3f\x9e\x7a\x60\x6f\x07\xeb\xf6\x8c\x74\xd7\x20\x3b\xe3\xfb\xaa\x5e\xf9\x81\xd8\x70\x51\xb8\x3d\xb0\xf0\x71\xf3\x10\x63\xb0\xe2\x6d\x30\x43\x73\xca\x90\x36\x48\x6a\x5b\x23\xe6\x5a\xa9\xdb\x01\xf1\x12\xc5\x97\xca\xfa\x68\x51\x31\x87\xdc\x6e\x3d\xfa\x64\x26\x1e\x47\x02\x4c\xc7\x09\x8d\xf9\x58\xb9\x37\x20\x12\xa3\x31\x54\x9b\xb3\x72\x18\x26\xea\xbf\xff\x1a\x1b\x13\xf9\x2c\x45\x65\x97\x39\x07\x4e\x3e\xde\xce\x18\x52\x65\x73\x2c\x10\xaf\x61\xdb\xf6\x8b\xee\xd8\x01\xbf\x15\x6d\xff\x5d\x37\xfd\xb0\x7a\xce\xfc\x5e\x81\xf0\xc6\x30\x4f\x5b\x6c\x30\xce\x64\xb4\x13\xc2\x98\xd1\x8c\x97\xa9\xee\x20\x34\x52\xc9\x47\xe6\xe3\x6a\xc1\xba\x3e\x0a\xba\xb4\x70\xcc\xf1\x3f\x73\x7c\x05\xd3\x02\x8c\x29\x99\x32\x7a\x41\x35\x6d\xbc\xc0\xcf\x41\x28\x5f\x97\xa3\x5b\xff\xc8\x71\x42\xd5\x8f\x86\xb1\x3c\x29\x0f\xcf\x8e\x0f\x2e\x8e\xab\xbf\x7d\x98\x1c\x55\x7e\xf3\x87\x1e\x6e\x50\x41\x8c\x7a\x6c\x1b\xfc\x06\xe2\x54\xbf\xe0\x38\x41\xc7\x0a\x63\xe3\xfb\xe0\x54\x6e\xa9\x7a\xb8\x6c\x47\x9f\xa1\x2b\x8c\xae\x1b\x4d\x89\x94\xed\xcf\xdb\xa4\x38\xc5\x88\x08\x3d\x33\x8b\xf4\x55\xef\x5e\xd0\x69\xb5\x74\x53\x0c\x35\xc2\x19\x09\xab\x37\xb2\x72\x58\xac\x93\xf2\xd8\xe9\x8e\xcd\x51\xac\x3d\xd2\xe9\x7f\xe8\x2c\x52\x56\xfb\xf1\xa6\xfc\x20\x7a\x96\x41\x77\x47\x42\x42\xa8\xa8\xcc\xad\x25\x4a\x57\x23\xbe\x1c\xcb\xea\xee\x83\x8c\xa1\x48\xad\xee\x34\xdd\x91\xff\xce\xb3\x05\x83\x09\xda\xc9\x28\x17\xe5\x0b\xf9\x87\x79\xd3\xcc\x44\x05\xa0\x10\x28\xca\xcc\xd4\xd2\x42\x38\xd2\x5b\x0f\x43\xaa\xf0\x1d\xf5\x97\x3a\xd2\xa0\x04\x25\xdf\xbf\x74\xda\xc4\x04\xb9\x4f\x82\x7e\xef\xa4\x09\x13\xe3\x7e\x26\x46\x1f\xc7\xb2\x6b\xa3\x37\x7b\x8f\x87\x33\x54\xea\x3c\xa6\xa0\x0a\xbe\x3c\x84\xc3\x66\xd9\x50\x1b\x9e\xb8\xf7\x4c\xc2\x0e\xd3\xf8\x5b\x4d\xe3\xfb\x23\x97\xbb\x03\xb8\x26\x15\xaa\x63\x22\x6c\x80\x61\xde\x39\xe7\x37\xcb\x39\x0f\x7b\xfa\x43\x9c\xf3\x77\xa0\xc7\x77\xfa\x7b\x55\x04\xb1\xa5\x78\x6e\x6a\x52\xde\x17\xcb\x33\x4c\xd1\x87\x38\x45\xef\x81\x90\xfa\xf5\xe5\xf1\x66\x70\xa0\x72\x19\xc8\x7f\xe9\x65\x75\xae\x96\xa1\x67\x2d\xcc\x54\xc2\x72\xde\xff\xbf\x74\xb6\xce\x7c\x8f\x4a\x62\xf6\x3d\x4c\xfb\x30\xb9\xd5\xe4\x2e\xd9\xb2\x83\x82\x2f\xf5\x0f\x15\x68\xa1\x08\x7e\x27\x34\x40\x2f\x28\x56\x63\x03\x56\x50\x70\xe7\x9a\xa7\x3a\xd3\x6e\x1f\xa4\x98\xe4\x45\x25\xbf\x11\x3f\x0b\x38\x57\x51\x75\x32\xaf\xaa\x63\x08\xbc\x3c\x2b\x83\x80\xde\x96\x69\xe5\xa5\x3a\x35\xcb\xd5\x3c\x96\x25\xe5\xe2\x75\x3f\x10\xb5\xd3\x9f\x64\x54\x27\x0c\x8d\xf8\x55\xdc\x2c\xb0\x90\x32\x0d\x82\x51\x33\xad\xd6\x3d\xd4\x27\xaf\x3b\x25\xb2\x7e\xfa\x09\x22\xdf\x80\xa1\xc1\x10\x17\x90\x09\x3b\x68\xef\xc9\x1b\x8d\x57\xd6\xe0\xc3\x0a\x35\xb1\xa7\xad\xed\x7c\xa1\xae\x68\xc1\x0e\x09\xe7\xe9\x6e\x11\xd5\x6f\x03\x1b\x94\xfa\xd7\xef\xad\x9e\x14\x77\xdd\xa0\x0a\x87\xf3\x3b\xed\x4f\x41\xfd\xfa\x1a\x3b\x54\x31\x56\x20\x6c\x50\xdf\xe9\x06\x55\x19\x42\xf0\xd5\xf6\xa7\x46\xb1\x7a\x07\xb0\x96\xde\xa1\x5b\xc0\xfa\x7b\x8c\x2a\x38\x5a\xe5\x42\x81\x90\xaf\xd5\xf5\x92\x77\xde\x89\xdc\xac\x8d\x7d\xca\xc8\x93\xd7\xa5\x7d\x4a\x3f\x61\xd3\x5a\x6b\xd3\x6a\xe7\x62\xdf\x31\x78\x6c\x1b\x23\xbb\x2e\xd7\xdb\x53\x0e\xf0\x61\x2a\x83\xc6\x2a\x49\x34\xd4\xa5\xa9\xad\xc4\xdb\x79\x11\xb5\x73\xcf\x83\x3b\x4e\xf5\x79\x30\xee\x38\x3d\x6e\x1f\x2f\x9b\x0b\xe3\x97\x8b\x8b\x89\x59\x1c\xb7\x20\xee\x0c\xcd\xc4\xc7\x1e\xfa\xe1\x23\xa2\x76\xfb\x76\x6c\x83\x03\x72\xa3\x37\x4b\x80\x39\xc8\xe4\xc8\x72\x45\xae\x01\x90\x83\x94\x92\x05\x80\xee\x94\xdb\x06\x7b\x23\x70\x22\x94\xc8\x45\x1c\x40\xf0\x7c\xf7\x39\xc8\xe4\xd7\x50\x80\xb1\x9b\xee\xa9\x9b\xee\xe9\xee\x2e\xa0\x04\xc0\x82\xfe\x5b\xc4\x16\x29\x3f\x69\xee\xec\x66\xb0\x2b\x3b\x7b\x3b\x8b\xbb\xf3\x76\x15\x2f\xeb\x38\x33\x74\xd7\x3a\xe1\xb5\x8d\x70\xec\xa5\x1b\x3f\xab\x7c\x5c\x27\x0b\x3b\x34\xf2\xde\x6b\x69\xaa\x15\xf1\xf3\x4d\x52\xbc\xc2\x6d\x17\x5d\xb7\xde\x73\xed\x5e\x73\xdd\x77\x5b\x76\x67\x26\xb7\x8c\x8a\xba\xfe\x16\x35\x7c\xa3\xf3\xde\x69\x98\x55\x78\xcc\xae\x1f\xb7\xed\xe3\xa6\x13\x77\x5b\x01\xee\x62\x6b\x8b\x85\xfa\xb7\xd1\xb3\x8d\xc7\x42\xfd\xdb\xe8\x59\x88\x85\xfa\x43\xc6\x42\xfd\xdb\xe8\xd9\x80\x63\xf3\x1d\x43\x6e\x84\xe0\xa7\x5f\x6f\x24\x06\x47\x17\x30\xad\xf7\xdd\xe9\xa6\x1c\xd3\x22\x4e\x70\x96\x21\x11\x39\x00\x53\x71\x63\x9f\x52\x0f\xe5\x26\xce\x91\x00\x82\x02\x75\x76\x94\xff\x30\x31\xc2\xc1\xe1\x6f\xc7\xd1\xd3\xdd\xa7\x7b\xd1\xd3\x17\x7f\x7d\xfe\x74\x2d\x01\x85\x39\xcf\x11\x1f\xff\xf5\xd5\xff\xcf\xde\xbb\xee\xb8\xad\xdc\x69\xbf\xdf\xd7\x55\x14\x7a\x0d\xb0\x26\x18\x8b\xad\x63\x1f\xfc\xc2\x1f\x1c\xdb\x93\xe5\x1d\xc7\xcb\xb0\x9d\x59\x7b\x63\x1c\x18\x6c\xa9\xda\xcd\xb4\x44\x2a\x24\xd5\x76\x4f\xde\x00\xfb\x36\xf6\xed\xed\x2b\x79\xc1\xf3\xf9\x24\x91\x6a\x4a\xfa\x09\x48\x96\x5b\x22\xab\xc8\x62\xb1\xea\xa9\x5f\x55\x3d\xff\xc9\x65\xf8\xf2\x7a\xab\xbe\x83\xd5\xfe\x81\x1b\xeb\x97\xb3\xc2\x2b\xfd\x72\xf6\x07\xbf\x2b\x2f\x3c\x24\xd7\xbd\x35\x52\x5d\xa5\xe7\x79\x63\xe5\x1c\xcb\xd7\x32\xe3\xd8\x68\x43\xe3\xbf\xdd\x97\x5f\x3b\x3e\xb3\x7b\x7a\xdb\xf0\x99\xcd\xcb\x03\x9f\xd9\xd6\x4b\x1b\x9f\x59\x7c\x66\xfb\xd4\xc4\xf5\xc8\x67\x36\xe7\xc6\x30\x96\x7d\x7a\xd1\x8e\xb1\x2c\xc6\xb2\xbd\xba\xca\x43\xee\xa1\xda\xa8\xeb\x18\xcb\x62\x2c\x8b\xb1\x6c\x8f\x3b\xcc\x3e\x18\xcb\x36\x12\x53\x38\xc9\x76\xc2\xdd\x70\x92\x6d\xe2\x24\x9b\xc5\x8f\x6f\x75\x5b\xea\xce\x9b\xa2\x2e\x97\x8f\xc2\x94\x2b\xe3\x41\x2e\xdc\xae\x20\x3a\xfd\x17\x4b\xbc\x33\xd4\xc5\x1f\xd5\xa5\x73\x21\x66\x20\xb8\xb6\xab\xc2\x7e\xd5\x3d\x61\x6b\xdb\xed\x5f\x82\xa7\xb1\xb6\xf5\x7e\xa9\x5d\x79\x9e\x09\x75\xe1\xf4\x4d\x7e\x61\x8b\xef\xda\x72\x29\x56\xea\xbd\x74\x6b\x95\x9f\xb6\x1f\x91\x5c\xfc\xdd\xb8\x71\x77\xd6\x8b\x85\xbb\x76\x23\xca\x4c\x75\xf5\xa2\xbf\x7a\x52\xdc\xc8\xb9\xba\xb1\xa4\x9b\xb5\x12\xdc\x86\xd0\x2c\xa1\xad\x56\x1b\x5b\xbd\x59\xca\x67\xc2\x32\xdc\x0c\xfc\x5c\x75\xe9\x54\x63\xc3\xbb\x49\xa1\xce\x4d\xc3\xb2\xc2\x85\x2c\x81\x5b\x85\x15\xcb\xaf\xc9\xa2\xc1\xbc\xc3\x2b\x16\x0d\xe6\x9d\x52\xf0\xb4\xb1\x12\xee\x7c\x89\x66\xf8\x0a\x36\x7c\x0d\x53\x6b\x97\x5a\x35\x99\x65\x21\x54\x7f\x16\x42\x75\xe7\x4b\xfc\xc4\xc6\xbe\xe5\x9b\x46\x30\xe8\xcd\xe9\x58\xa3\x4f\x83\x2e\xd0\xed\x89\x0c\x75\x21\x6e\x52\xa2\xc9\xe9\xb4\xd4\xa5\x65\x04\x87\xa6\x73\x70\x17\xf4\x6e\x6e\x96\x9a\x75\x57\x6c\xeb\x5b\x36\x09\x1d\x7d\xf0\x13\x6e\x50\x58\x98\x0a\x63\x2a\x8c\xa9\x70\xd7\xd7\x80\xa9\xf0\xf1\x39\xe5\x62\x2a\x5c\xbb\xa8\xca\x4c\x85\xf1\xfd\xc5\xf7\x37\xa7\x00\xf1\xfd\xed\xca\xf7\x57\x74\xe9\xe7\xfd\xf4\xa6\xc2\xb5\x07\x2b\xce\xa1\xb1\x54\xa2\x69\xb1\x9f\x93\xc9\x87\x9b\x0b\x7e\x4e\x15\x93\xb7\xbf\x60\xb8\xca\xfc\x12\xec\x31\xb8\x76\xf7\x18\xe0\x72\xfc\x34\x2e\xc7\xbb\x04\x2f\x2a\x99\xc3\xf2\x4e\xaa\x1f\x28\x08\x9b\x65\x6c\x96\x7b\x6c\xb3\x5c\x6f\x52\x06\x9b\x65\x6c\x96\xb1\x59\xc6\x66\xf9\x60\x5a\x27\x6c\x96\xa9\x18\xd8\x2c\x63\xb3\x7c\xb4\xd5\x18\x9b\x65\x6c\x96\x4f\xad\xce\x63\xb3\x4c\x15\xed\x79\x15\xc5\x66\x19\x9b\xe5\x63\xad\xdc\xa7\x61\xb3\x5c\x7f\x89\x64\x1d\x17\xcb\x5e\x2f\x7b\xc3\x2b\x19\xaf\xe4\x1d\x6d\x27\x73\xa7\x99\x4a\x4c\x5a\x2b\x66\xad\xf6\x31\x41\x15\xdc\x2b\x26\xcf\x4d\x7b\x47\xc4\x1f\x26\xcf\xa7\xd3\x3d\xe2\xd4\x8c\x53\x33\x5d\x66\xfb\x5d\x26\x16\xd3\x58\x4c\x9f\xde\xce\x2a\x2c\xa6\x73\x52\x09\xca\x1a\x8b\x69\x81\xc5\x34\x16\xd3\xa7\x63\x31\x3d\x52\x46\xca\xb0\x5d\x87\x69\x37\x49\x0c\xa6\x4f\xcf\x60\xda\x7d\xf0\x35\x46\xec\xf8\x4b\x1f\xca\x83\xc0\x5e\x1a\x7b\x69\xec\xa5\x6b\xbe\x6c\xb8\x4b\xe7\xe5\xd1\x3b\x77\xe9\x82\x95\xe8\xc7\xe8\x1d\xbd\xcd\xad\xb6\xeb\xbb\x59\x99\x21\x5e\xd0\x7b\x6e\x8f\xb0\x82\x3e\x54\x2b\xe8\x3d\xc9\x6b\x9c\xa0\x7b\xe8\x04\xdd\x87\x4e\xeb\xf8\x7b\x93\x36\x6a\x26\xbe\xcd\x32\xcf\xb7\x39\x85\xd4\x83\x5d\xc4\xce\x2d\x46\x80\xb4\xa6\xb5\x73\x0e\xcd\x2e\x39\x33\x76\x4e\xe4\x08\x80\x3b\xf4\x69\xba\x43\xef\xab\x0f\xc5\x1c\xfa\xe0\xcc\xa1\xbb\x80\x66\xbd\xf4\x86\xf6\xef\xf0\x43\xe8\x1c\x12\xba\xc7\xe0\x1a\x8d\x6b\x74\x07\x6f\x47\x91\x34\xc8\xf7\xb3\x7c\x6d\x88\xf7\xbf\x7d\x0e\x14\x88\x2b\x2d\xd4\x95\x7c\x26\x54\xa1\xcb\xef\xc2\x11\x84\xae\xad\xa5\x6b\xea\x7c\x23\x7d\x1b\x67\xb9\x10\xea\xad\x2d\xcd\xa4\x6b\x73\xcd\x97\x0e\x57\x6a\x5c\xa9\x4f\xd7\x95\x1a\xab\xe9\x13\x5f\x10\x85\xd5\x74\x54\x46\x58\x4d\x07\x1f\xac\xa6\xb7\xb6\x9a\xae\xc5\x3a\xa2\x0b\xaa\xe5\x4a\x9d\x6e\xc7\x45\x3e\x07\x69\x98\x6a\xad\xdb\xf1\xdd\xad\xc3\xc5\x11\xae\x0b\xb6\x3f\xea\x2f\xe8\x65\x62\xa7\x61\x8a\x8d\x29\xb6\xff\xc1\x14\x1b\x53\x6c\x4c\xb1\x63\x29\x63\x8a\xdd\x8b\xa2\xc2\x14\xfb\xa8\x4c\xb1\x4b\x4c\x91\x05\x8e\xd9\x07\xee\x98\x5d\xeb\xe1\x62\xa7\x1d\x4b\x05\x3b\x6d\xec\xb4\xb1\xd3\xde\x61\x72\x33\xbe\xb6\x24\x34\xd0\xfe\x5d\x8a\x85\xa1\xff\x62\x0b\x6b\xb3\x76\x9a\xd4\x68\x9e\x61\x11\xa4\xe9\x3e\x41\xf1\x28\x6d\x2f\x3f\xa1\xc6\xd7\xd0\x09\x55\x5f\x24\xbf\xf1\xa7\xcc\x85\x66\x85\xc4\x33\x39\x57\x94\x59\x0e\x13\x9b\x38\x8a\x33\x86\xe3\x9b\x3b\xfa\x52\xb1\xdd\xaa\x12\xb8\x64\x0d\x35\x12\x0f\x35\x75\x9b\x56\xc8\x88\xdc\x9f\x9d\x66\xc2\x6d\x82\xcf\x82\xbc\xfc\x8e\x32\xc4\xe3\xd1\x85\x3f\x17\xf9\x60\x04\x13\xf7\x13\x30\x71\xaf\x5b\xcf\x4f\xcc\xc3\xfd\x4b\x0a\xd4\x1f\xaa\x7d\x7b\xcf\xdc\xda\x31\x6a\xc7\x31\xb3\xc5\x16\x08\x9f\x76\xea\x05\x36\xed\xd8\xb4\x1f\x69\x2d\xc6\xa5\x1d\x97\xf6\x13\xab\xf2\x98\xb4\x53\x43\xfb\x5d\x43\xf1\x68\xc7\xa3\xfd\x48\xeb\xf6\x09\x58\xb4\xc7\x4a\x67\x9b\x12\x12\x87\x64\x41\x8b\x43\xfb\x89\x39\xb4\x8b\x8a\x45\x74\x65\xab\xcc\x12\x86\xbd\xf8\xd6\x62\xf5\x8e\xd5\x7b\xcf\xbb\xd9\x1e\x3b\xbd\x9f\x52\x2f\x8b\xd1\x3b\x46\xef\xee\x87\x9e\xb7\x9f\x3d\x2f\x8e\xf1\x38\xc6\x9f\xde\x06\x49\x1c\xe3\x73\x52\x09\xca\x1a\xc7\x78\x81\x63\x3c\x8e\xf1\x27\xe6\x18\x3f\x30\xbd\xb5\xe8\x63\xac\xe3\xb1\x8e\xef\x93\xf9\x52\xf9\x7b\x86\x75\xfc\xde\x1e\x44\x53\xeb\xf8\x3a\x7e\xe7\x89\xc7\x92\x29\xc9\x74\x51\xe7\xbc\xfb\xf6\x7c\x3d\x88\x5b\x74\x56\xac\xb1\xd8\x26\x8b\xcd\xa2\x6e\x16\x18\xac\x37\xac\x92\x18\xac\xe7\xe5\x81\xc1\x3a\x06\xeb\x18\xac\xf7\xa7\x3d\xc2\x60\x1d\x83\x75\x0c\xd6\x31\x58\xdf\xcf\x35\x1c\x56\x6f\xd2\x46\xcd\xc4\x60\x5d\xa6\x0d\xd6\xfd\x91\x84\xaa\x2f\xc4\xbf\x27\x83\x5b\xc5\xfd\x1f\x02\xde\x93\xbc\xfd\xb3\x3f\x78\x7e\x13\xae\xdb\x94\x1f\x89\xea\x0f\x75\x9d\xd5\x9b\x39\xb1\x17\xed\x3a\xc7\x8c\x1d\x33\x76\xcc\xd8\x77\x5b\x52\x8c\x19\x3b\x66\xec\x98\xb1\x57\x9e\x8f\x19\x7b\x91\x8c\xc0\x8c\x1d\x33\x76\xcc\xd8\x31\x63\xf7\x3e\xac\x35\x4a\xe4\x87\x19\x3b\x66\xec\xc1\x07\x33\xf6\x43\x34\x63\xef\x84\x8d\x44\xf7\xb1\xad\xdb\xfa\x4e\xee\xed\xe9\xee\x44\x94\xf8\x66\x3e\xb5\x89\x7b\x7c\xe6\xbd\x2c\xc5\xf4\x0c\x7d\x32\x95\xf8\xe4\x7a\x59\x2a\xe9\x49\xf8\x64\x2a\xc7\x6f\x28\x9f\x0a\x0e\x5f\x50\xbb\xbb\x36\xa1\x2f\xfa\xb6\xd0\xa1\xd6\xa5\xc4\xe1\x55\x3a\x87\x19\x1b\x3b\x7c\x17\xf3\x2e\xb7\xe4\x8c\x17\xae\xc1\x6d\x32\x67\xcf\xec\xb6\x59\x32\x69\xcf\xf8\x9c\xdb\xc7\x6d\x1f\xb7\xfd\xfa\xd7\x80\xdb\xfe\xf1\x59\xc8\xe3\xb6\x5f\xbb\xa8\x70\xdb\xc7\x6d\xbf\xcd\x07\x8b\xdb\x3e\x6e\xfb\xa9\x74\x71\xdb\xc7\x6d\x1f\xb7\x7d\xdc\xf6\x71\xdb\x6f\xdf\x6d\xbf\x1b\x9e\x96\x82\x61\xad\xf9\xf5\xc7\xeb\x22\x76\xfd\xd8\xf5\x63\xd7\x2f\x04\x76\xfd\xd8\xf5\x63\xd7\x7f\xe0\x2d\x10\x76\xfd\xd4\x0b\xec\xfa\xb1\xeb\x3f\xd2\x5a\x8c\x5d\x3f\x76\xfd\x27\x56\xe5\xb1\xeb\xa7\x86\xf6\xbb\x86\x62\xd7\x8f\x5d\xff\x91\xd6\x6d\xec\xfa\x8f\xca\x48\x18\xbb\x7e\xec\xfa\x53\x89\x61\x1a\x8c\x5d\x3f\x76\xfd\xc7\xd1\xcd\x62\xd7\xdf\x8b\x5e\x16\xbb\x7e\xec\xfa\xdd\x0f\x3d\x6f\x3f\x7b\x5e\xec\xfa\xb1\xeb\x3f\xbd\x2d\xb4\xd8\xf5\xe7\xa4\x12\x94\x35\x76\xfd\x02\xbb\x7e\xec\xfa\x4f\xd4\xae\x7f\x82\x5d\x3f\x76\xfd\x7d\xb2\xe7\x2a\x7f\xcf\xb0\xeb\xdf\xdb\x83\x68\xdb\xae\xbf\x78\xfc\x83\x91\x3f\x46\xfe\x18\xf9\x63\xe4\xbf\x7b\x59\x62\xe4\xdf\xa0\x80\x31\xf2\xc7\xc8\x1f\x23\x7f\x8c\xfc\x31\xf2\xef\xbe\xd3\x3a\xfe\xde\xa4\x8d\x9a\x89\x91\xbf\x4c\x1b\xf9\x8b\xac\x79\x5e\x7c\xaf\x71\x23\x97\x7d\x91\xef\x31\x57\xea\xe7\x2f\xb2\x3e\x7a\x98\xf3\x63\xce\x8f\x39\xff\x6e\x0b\x88\x31\xe7\xc7\x9c\x1f\x73\xfe\xca\xf3\x31\xe7\x2f\x92\x06\x98\xf3\x63\xce\x8f\x39\x3f\xe6\xfc\xde\x87\x95\x45\x89\xfc\x30\xe7\xc7\x9c\x3f\xf8\x60\xce\x7f\x88\xe6\xfc\xe5\xac\x23\xba\xa0\xdd\x5c\xf1\x77\xf2\xda\xaf\x75\x3b\x98\xec\x47\xa9\x1c\xbf\xc9\xbe\x68\xdd\x30\x1f\x1f\x79\x7c\xe4\xeb\x5f\x03\x3e\xf2\xc7\x67\x8e\x8e\x8f\x7c\xed\xa2\xc2\x47\x1e\x1f\xf9\x36\x1f\x2c\x3e\xf2\xf8\xc8\xa7\xd2\xc5\x47\x1e\x1f\x79\x7c\xe4\xf1\x91\xc7\x47\xbe\x7d\x1f\xf9\x1a\xf0\xa7\x35\x17\xf8\x04\xb0\xc1\x06\x1e\x1b\x78\x6c\xe0\x85\xc0\x06\x1e\x1b\x78\x6c\xe0\x0f\xbc\x05\xc2\x06\x9e\x7a\x81\x0d\x3c\x36\xf0\x47\x5a\x8b\xb1\x81\xc7\x06\xfe\xc4\xaa\x3c\x36\xf0\xd4\xd0\x7e\xd7\x50\x6c\xe0\xb1\x81\x3f\xd2\xba\x8d\x0d\xfc\x51\x19\xd4\x62\x03\x8f\x0d\x7c\x2a\x31\xcc\x68\xb1\x81\xc7\x06\xfe\x38\xba\x59\x6c\xe0\x7b\xd1\xcb\x62\x03\x8f\x0d\xbc\xfb\xa1\xe7\xed\x67\xcf\x8b\x0d\x3c\x36\xf0\xa7\xb7\x59\x13\x1b\xf8\x9c\x54\x82\xb2\xc6\x06\x5e\x60\x03\x8f\x0d\xfc\x89\xda\xc0\x4f\xb1\x81\xc7\x06\xbe\x4f\x46\x50\xe5\xef\x19\x36\xf0\x7b\x7b\x10\xd8\xc0\x63\x03\x8f\x0d\x3c\x36\xf0\x7d\x73\xd4\xc5\x06\xbe\x25\xe3\x5e\x6c\xe0\xb1\x81\xc7\x06\x1e\x1b\x78\x6c\xe0\xbb\xef\xb4\x8e\xbf\x37\x69\xa3\x66\x62\x03\x2f\xd3\x36\xf0\xfe\x48\x42\xd5\x17\xe2\xdf\xbd\x41\x55\x9e\x33\x44\x40\x82\x92\xb7\x7f\xf6\x07\xcf\x89\xc2\xf5\xa1\xf2\x66\xd6\xce\xfe\x50\xd7\xff\xbd\x99\x5f\x7c\xd1\x7e\x74\x2c\xe3\xb1\x8c\xc7\x32\x7e\xb7\xc5\xc6\x58\xc6\x63\x19\x8f\x65\x7c\xe5\xf9\x58\xc6\x17\xc9\x08\x2c\xe3\xb1\x8c\xc7\x32\x1e\xcb\x78\xef\xc3\x2a\xa4\x44\x7e\x58\xc6\x63\x19\x1f\x7c\xb0\x8c\x3f\x44\xcb\xf8\x4e\xd8\x48\x74\x1f\xdb\x7a\xc2\xef\xe4\x31\x9f\xee\x4e\x44\x89\xa3\x26\x56\xf3\x51\x2a\xc7\x6f\x35\x1f\x99\xbf\xff\xdb\x7d\x71\xed\xee\xda\x9e\xbe\xe8\xdb\x42\xef\x5a\x97\x12\x87\x57\xe9\x1c\x66\x6c\xec\xf0\x5d\xcc\xbb\xdc\x92\x33\x5e\xb8\xd6\xb7\xc9\x9c\x3d\x1b\xdc\x66\xc9\xa4\xdd\xe4\x73\x6e\x1f\x1f\x7e\x7c\xf8\xeb\x5f\x03\x3e\xfc\xc7\x67\x2e\x8f\x0f\x7f\xed\xa2\xc2\x87\x1f\x1f\xfe\x36\x1f\x2c\x3e\xfc\xf8\xf0\xa7\xd2\xc5\x87\x1f\x1f\x7e\x7c\xf8\xf1\xe1\xc7\x87\xbf\x7d\x1f\xfe\x6e\x78\x5a\x0a\x86\xb5\xe6\xe4\x1f\xaf\x8b\x18\xf9\x63\xe4\x8f\x91\xbf\x10\x18\xf9\x63\xe4\x8f\x91\xff\x81\xb7\x40\x18\xf9\x53\x2f\x30\xf2\xc7\xc8\xff\x48\x6b\x31\x46\xfe\x18\xf9\x9f\x58\x95\xc7\xc8\x9f\x1a\xda\xef\x1a\x8a\x91\x3f\x46\xfe\x47\x5a\xb7\x31\xf2\x3f\x2a\x8b\x61\x8c\xfc\x31\xf2\x4f\x25\x86\x9d\x30\x46\xfe\x18\xf9\x1f\x47\x37\x8b\x91\x7f\x2f\x7a\x59\x8c\xfc\x31\xf2\x77\x3f\xf4\xbc\xfd\xec\x79\x31\xf2\xc7\xc8\xff\xf4\xb6\xd0\x62\xe4\x9f\x93\x4a\x50\xd6\x18\xf9\x0b\x8c\xfc\x31\xf2\x3f\x29\x23\xff\x99\x67\xdf\xdf\x82\x8d\xfe\xd6\xae\xd8\x21\xd0\x8a\xaf\x07\x6c\x5a\xc4\xa9\x43\x42\x4b\xf1\xad\x1d\xc5\x8f\xce\x50\xbc\x7c\xa1\x7a\xf5\xfb\x51\xb6\xfe\x2b\xe9\x54\x90\x5c\x5b\x56\xe3\xd6\xeb\xce\x0d\x3a\x92\xa4\xf6\xfa\xa2\x94\x7b\x42\xb4\x2e\xa4\x7a\x3e\xf5\xcb\x59\x20\xc6\xfb\xef\x0c\x5e\x7e\xad\xdb\x7a\x83\x97\xa7\xda\x95\xd1\xea\x97\x33\x7f\x29\xb2\xa1\x5b\xd1\x70\xc8\xf9\x3e\xbb\x5e\xb5\xe4\xf2\x52\xcb\x48\x9d\xaf\x16\xae\x5f\x97\x55\x6f\x22\xbc\xb5\xf2\x2f\xf7\x82\xcc\x9b\x14\xa8\x74\x15\x6f\xbb\x88\x6a\x79\xc4\x6e\xff\x92\xd6\x7c\x3b\xcd\xd8\x2c\xf0\x76\xc6\xc8\xcd\x5f\xd9\x0a\x07\xe3\x9d\xdc\x94\x9b\x5d\x4d\x9e\x6b\x6d\x8b\xbe\xb5\x2d\x3a\xd7\xee\xe8\x5d\xdb\xdc\xbd\x36\x2a\xd0\x2a\xa7\x93\xb3\x1a\x2f\x76\x95\x5f\x6c\xb3\xc7\xd6\xd4\x31\xb6\x3c\xf5\x3a\x8e\xd9\xbb\xbd\x87\x65\xab\x69\xb2\xaf\xe3\x40\xd7\x2c\x75\x70\x13\x9c\xb3\x07\x13\xd5\xbc\x26\xa1\xe1\xba\x8f\x2a\x1d\xd2\xb9\x12\xa9\x5f\xc6\x31\x41\x92\x2a\xea\x76\x17\x38\x96\xc8\xa0\x3d\x16\x6e\x5a\x4f\x6f\x61\xad\x59\x6e\x51\x59\x5e\x43\x77\x75\x90\x74\xd5\x73\xca\x9e\x70\x67\x3b\xc3\x70\x93\x77\x8b\xce\x84\xd9\x39\x48\xe1\xed\xa5\x5e\x49\xfb\x4e\x6e\xdc\xda\xeb\x0d\x31\x7f\x71\xcd\x21\x7e\x29\x3a\xc8\x9a\x9b\xea\x5a\x3e\x17\xbf\xd8\xe6\x46\xfa\x47\x41\x35\x93\x9f\xde\x50\xcd\x12\xa3\xbf\xed\x8d\x20\xfd\xea\xe9\x25\x11\x9f\xc9\xa8\xdc\x01\xde\xe2\x44\x48\x0c\x8a\x26\x3c\x11\xaa\x86\xb3\xde\x51\x79\xd3\x42\xd5\xad\x58\x22\x5f\xef\x8b\x27\x9e\x69\x8d\xf9\x44\xbd\x5c\xae\x35\x5d\x7a\x5e\x87\x8e\xa0\x88\xae\xd1\x79\xed\x5e\xe5\xc1\xd4\xac\x29\xe1\x40\x58\x77\xf1\xbf\x06\xf3\xc4\x6f\x8f\xd6\xdc\x5e\x8a\xc1\x77\xa1\x4b\x5b\x99\x1b\xa6\x54\x2c\x63\xa5\xfe\x98\x1b\xba\xfe\x62\x32\xbe\xbc\xb8\xfa\x5f\xa9\x63\xb4\xf5\xc3\x54\xd1\xd6\x5f\x5d\x2f\x85\xaf\x4e\xfb\xf2\xd5\xad\x02\x2f\xbe\x9c\x8d\x86\xe3\xa9\xb8\x98\xcd\x26\xb3\xe8\xb1\xc6\x80\x69\xfc\x7e\xe2\xf5\xa2\xe6\x2c\xb0\xd7\x27\x78\x17\x13\x7d\x5b\x36\xe5\xb8\x0e\xe6\x1a\x17\xb9\x96\x98\xe5\x60\x3a\x42\xd3\x75\xac\x19\xa3\x9b\x8c\x3b\x54\x26\x67\xbb\x77\x31\x7e\x6c\xd9\x23\xb1\xc2\xce\xaf\x80\xd2\x25\xcf\xef\x93\x93\x5f\xac\x2b\x1c\xac\x4d\x79\xab\xfd\x78\x51\xb9\xb7\x36\xa8\x0b\xf5\xdd\xf4\xc4\x4e\xce\x78\x05\xc6\x78\x7e\xdb\x56\xfc\xae\x57\xd5\xf2\x0a\xab\xb8\x66\x66\x71\xdb\xd9\xc5\x25\xa6\x9c\x27\x93\xf4\x2d\x66\x6f\x1c\x07\xb8\xf8\x02\x0a\xaf\xdb\xdd\xc2\xab\x2d\x53\xcb\xb2\x9e\x5a\xc5\x8e\x5a\xa5\xbe\x58\x25\x86\x4d\xe5\xb6\x4b\xcd\xac\xe2\x4e\xd9\xff\xec\x60\xac\xe2\x3a\x28\x85\x58\x8d\x8f\x3b\x14\x25\x2b\x73\xca\xfc\xa9\xae\xb5\x51\xe2\xd5\xc8\x64\x14\xcb\x23\xb2\xd2\xa9\xeb\x67\xe3\x27\xca\xb2\x19\x96\xcd\x1c\xef\x00\xb3\xc6\xb2\x19\xff\xc0\xde\x2d\x49\xdd\x65\x31\x89\xfa\xa4\x8b\x49\x52\x6b\x49\x58\x4a\x22\xa2\xdb\x67\x29\xc9\x7e\x97\x92\x14\x2e\x1f\x51\x46\x63\x6f\x05\xc9\xcf\x9e\x67\x55\x18\xa1\x46\xb3\x84\xa6\xdb\x52\x5f\xc8\x85\xb8\x35\x4c\xb1\xb1\xa4\xb8\x79\x14\xde\x7c\xd2\x0b\x7f\x00\x3d\x54\x26\x63\x65\xc8\xf2\x13\x96\x9f\xb0\xfc\x24\xea\xb0\x58\x7e\xd2\xd1\xf2\x93\x68\xfe\xb7\xd6\xbd\xc5\x56\x5a\xc4\xae\x2c\x67\x9d\x85\xf8\xd9\x0d\xf6\x35\x52\x46\xd3\xff\x28\xbe\xec\xd4\xb2\x94\xfd\x2c\x41\x69\x35\xa4\x7d\x57\x05\x72\x1a\x8b\x50\xf6\xb8\xa2\xa4\xc6\xfa\x96\xce\x22\x74\xf3\xee\x36\x29\xad\x27\x7d\xa5\x58\xbe\xb4\xa7\xe5\x4b\x55\x8b\x97\xaa\x2b\xd5\x01\x2f\x5d\x4a\x77\x32\x2d\xde\xd7\xb6\x81\xb6\x59\x43\xc5\x1a\x2a\xd6\x50\xb1\x86\x8a\x35\x54\xc1\xe7\xe4\x11\x77\x77\xc1\x55\x5b\x58\x84\x95\x8d\x38\xe2\x2b\x95\x5e\x05\xc3\x60\xa1\xd8\x21\x4f\x94\xf4\x6b\x71\x53\x9f\xc2\xc4\xb6\xb1\x32\x6a\x8b\x20\xb0\xce\x69\x89\x71\xd1\x8b\x94\xd5\x8c\x60\xd5\x55\x5b\xab\xae\xf6\x16\xa5\x73\x1f\x4b\xaf\x9a\x47\xea\x64\xed\xd5\xd3\xaf\xbd\xda\x2e\xe4\x5d\x45\x24\xc3\xae\xa2\xdd\x75\x19\xc5\x70\x8b\x38\x77\xb5\x22\x18\x16\xbd\x16\xf9\xdf\x97\xac\x76\x6b\xe5\x49\x65\x42\xde\xf5\xe3\x51\x35\x0d\x4b\xd8\xc6\xc3\xca\x0d\x49\xd8\xec\x69\xb1\xc4\x30\xf6\x39\x8e\x25\x86\x4f\x55\x54\x87\xbd\x0e\xd1\x25\x43\xc5\xe2\x99\xf5\x89\xac\x4f\x3c\x42\x78\x53\x63\xd8\x5d\x03\xa1\xe0\xf8\x75\x88\x8e\x5f\x2c\xd2\x64\x91\x66\x36\x91\x53\x5c\xa4\x59\xc3\xef\x6b\xac\x0c\x07\xa6\xd7\x0e\x8e\x82\x75\x9b\x7f\x54\x2d\xb9\x70\x6a\x7c\x10\x3f\xf4\x9b\x66\xdf\x6d\x6e\x94\xb9\xb1\x8a\x85\x12\x4d\x86\x41\x3d\xbf\x59\x1a\x37\xf1\xd0\xbc\x5e\xda\xe7\x0b\x57\x44\xb8\x8b\x0f\xb4\xf9\xf9\xda\x34\x1e\xb4\x85\x34\xcf\xe7\x4b\x63\xb3\xf0\x7f\x2c\x8d\x35\xd8\x68\xc9\xe7\x5e\x0c\xaf\x93\x92\xaa\x2c\x2c\x63\xa3\x50\xc6\x6d\xc5\x5f\xec\x83\xe5\xf7\x78\xeb\x98\xc2\x99\x9c\x8a\xdf\x33\x75\x63\x1b\x6e\xec\xf6\x64\x71\x7c\x36\xee\xa5\x1e\x4c\xc0\xec\x16\x5d\x3a\x64\x9e\xa5\x4f\x23\xb6\x42\xf6\x58\x1f\x44\xed\x29\xe1\x70\x99\xf3\x60\xeb\x75\xce\x83\xa3\x5b\xe8\xdc\x56\xf8\xd6\x2e\x23\x70\xf6\xa8\xb2\xe6\xe6\xb5\x4b\xc0\xb3\x7e\xad\x8f\x2e\xbb\xd2\x6d\x57\x47\x97\x87\x7b\xeb\xc6\x9a\xaf\x20\x60\xf4\x5e\xd7\x4a\x96\xdd\x77\x8b\xab\x9c\xb7\xb9\xd5\x9d\x96\x5b\x36\xcf\xd0\x9d\x0e\xdc\xbe\x80\x9b\xb7\x40\x1d\xc7\x52\xed\x7d\x7b\xd4\x5d\xcc\xd1\xdd\x62\xdb\x45\x3f\xec\x14\x5f\x34\xa6\x82\xda\x8d\x26\xda\xa3\x07\xdb\xad\x3c\xdd\xa5\xc7\xda\x69\x63\x40\xd3\xae\xf0\xa9\xb6\x05\x9c\x6a\xa7\x75\xfc\xbd\x49\x1b\x35\x33\x6f\x0f\x41\x6b\x3b\x08\x5a\xdb\x3f\xb0\xd3\xee\x81\xa6\x7b\x07\xfc\x91\x84\xaa\x2f\xc4\xbf\x7b\x83\xaa\xbc\x39\xdb\x80\x04\x25\x6f\xff\xec\x0f\xde\x0c\xb1\xbb\x22\xc6\x8b\xa4\x73\xf6\x87\x18\x82\x2d\xd9\x91\x90\x4b\x8f\x6b\xec\x60\x48\x73\xde\x9d\x76\x33\x34\xa9\x3a\x4d\xf7\x32\xb4\xac\x22\xb7\xeb\x61\xbb\x8a\x8d\x7c\x3a\xfd\x6d\x07\x01\x87\xbb\x95\x62\xbb\xc1\x29\xbf\x8b\x0c\x22\x99\xd5\x01\x86\xc7\x5b\x35\x72\xa3\x9f\x96\xd7\x97\x28\xba\xe0\xe3\x5a\x86\xba\xfc\xad\x3b\x69\x12\x9f\xee\x48\x2c\xfb\x49\xc6\xde\x0b\x66\x61\x62\x2b\x77\xe2\xbc\x3e\x75\xac\xba\x5e\x7f\x30\x0d\xdb\x98\x1b\xcb\xd8\x22\xa2\x2c\xcc\xdf\xdb\x63\x28\x28\x60\xbf\x2a\xa6\x27\x47\x9f\x8b\xb7\xba\x2d\x75\xe7\x15\x52\x97\xcb\x47\x61\xca\x95\xf1\x20\x17\x6e\xa7\x15\x9d\xfe\x8b\x25\xde\x19\xea\xe2\x8f\xea\xd2\xb9\x10\x33\x10\x72\xdb\xd5\x6d\xbf\x4e\x37\x7f\x37\x16\xe1\xca\x85\x9c\xd7\xa2\xe6\xce\x98\xc3\x7e\x3b\x8a\x64\x84\xa3\x3a\xb2\x4f\xf6\xb5\x21\xde\xff\xf6\x39\x50\x2b\xae\x0c\x51\x57\xf2\x99\x50\x85\x2e\xbf\x0b\x47\x3c\x2e\x0d\x75\x21\xbe\x6b\xcb\xa5\x23\x72\xbc\xe2\x95\x0b\xa1\xde\xda\xd2\x14\xaa\xbb\x0f\x35\x16\xba\xb4\xbb\x2d\x43\xde\x2f\xb5\x2b\xe7\x33\xa1\x2e\x9c\x3e\xd1\x7f\x98\xde\x0d\xac\xd4\x7b\xef\x1e\xfd\xb4\xfd\xdb\x11\x7f\x37\x6e\xdc\xe5\x4e\x62\xe1\x2e\xbe\x88\x32\x4b\xdc\x9f\xb8\x91\x73\x75\x63\x49\x37\x6b\x25\xb8\x0d\xd7\xdc\x64\xb5\xda\xd8\xea\xcd\x52\x3e\x13\x96\xe1\x66\xe0\xe7\xaa\x4b\xe7\x35\x31\xbc\x9b\x14\xea\xdc\x34\xac\x98\x2d\x8a\xff\xb8\xad\x58\x7e\x4d\x42\x92\xe6\x1d\x5e\x11\x92\x34\xef\x94\x82\xea\x14\xac\x43\x48\x6d\xba\xda\x79\x97\x56\x5c\x19\x9a\xf2\x41\x73\x4a\xe0\x57\xcd\xb2\x0d\xf3\xf1\x9d\xb6\xd2\xec\x60\xe1\xd6\x4a\xd3\x3f\x4a\x75\x11\xcd\x58\xbb\xdf\xb6\xb8\xb5\xeb\x69\x02\xc0\x16\xbe\xbc\xa9\x15\x45\xe1\x3a\x94\xad\xb6\x0a\xa5\xb6\x2e\xb0\x3c\xa9\x3f\xcb\x93\xba\xdb\x5b\xd6\xe7\x6d\x44\x15\x1b\x87\x44\x62\xe7\xd0\xb6\x51\x80\x97\xda\xad\x9c\x3f\xce\x97\xe9\x95\xac\x6b\x53\x7e\xb2\x73\x36\x5a\xc8\x1f\xb1\x17\x2e\xfa\x64\x3d\xb2\xe3\xd5\xe1\xfc\xbb\xaa\xd9\x03\xeb\x6e\x63\x2f\x8c\xef\x89\xaa\xb6\xcb\x16\xa7\x06\xfd\x9a\xdb\xbd\x38\x7d\xf2\x4d\x4a\x69\x39\x3d\x91\xba\xb4\x8c\xe0\xd0\x74\x0e\x6e\xfc\xe0\xcd\xcd\x52\xb3\xee\x8a\x37\x46\x95\x4d\xfe\x46\x9f\x3e\xed\xc8\xea\x92\x8d\x44\xf7\xb1\xc5\x9e\xad\x1c\x76\xd2\x30\xbd\x74\x77\x22\x4a\xd6\xc2\xfb\x1b\xd3\xc2\x05\x0c\xee\x26\x31\x9f\x16\x14\xf4\x4e\xa2\x7a\x3f\x5b\xbd\xea\xd0\xb7\x8d\x67\x0f\xea\x52\x5b\xb8\xc1\xb7\x83\x51\xdb\x8b\xe7\x57\x99\x4d\x16\xf9\x47\x0e\xe6\xd2\xb4\x9d\x17\x50\xb5\xe5\x8b\xf3\x8d\x65\x9e\xbb\x4e\xf6\xe7\xb1\xaf\x2d\xf7\x8f\x5a\x89\xdd\xcb\xc7\xc2\x44\xee\xe5\x63\x3c\x8d\xdc\xa8\xd1\x45\x9b\xde\xa2\x7d\x68\xff\x76\x5f\x5c\xbb\xdb\xdc\x28\x97\x57\xeb\x8a\xbe\x2d\xdc\x55\xe2\x52\xe2\xf0\x2a\x9d\xc3\x8c\x8d\x1d\xbe\x8b\x79\x97\x5b\x72\xc6\x0b\x77\x53\x4a\x32\x67\x6f\x83\x4a\xb3\x64\x92\xc1\xb1\x63\x3b\xad\xa3\xaf\xf6\xb6\x25\xb0\xc9\x86\xc0\xfd\x6c\x07\x2c\x8b\xcb\x9e\x2e\x39\xb6\x0e\xe6\xc7\xbd\x8f\x2e\xe4\xdd\xeb\xaf\x1f\x3e\xbe\x79\xf7\xdb\xcb\xd7\xb9\x57\xf1\x5c\xc4\x1a\x8b\xa5\x76\xe3\xfc\x6f\xa5\xad\x9c\x27\x30\x57\x2c\x23\x1a\x95\x6d\xb1\x21\x71\xf7\xad\x52\xb3\xe4\x01\x27\xb0\xff\x27\xfa\x91\xad\x52\xb5\x8b\x2a\xbb\xd1\x55\x94\x6c\x75\xdd\x76\x0b\x65\xe5\x76\xd7\xee\x76\x51\x76\xbb\xe5\x75\xab\x7d\x94\x35\xb7\xbd\x16\x77\x00\x65\xbf\xac\x43\x76\xfd\xf9\xd5\x87\xe2\xe7\x9a\x19\x3d\xb7\xf4\x60\x33\xc2\xad\x3f\x4f\xb6\xe9\x0e\xd9\xb6\x9e\x6d\xee\x2e\xd9\xce\x1e\x6e\x6a\x36\xa3\xa0\xa8\xb2\x02\xbb\x24\xf1\xd4\x9e\xc9\x92\x5c\x07\x59\xad\x2d\x84\xbb\xf8\xdb\xeb\x79\x8b\xd4\x75\xfa\x14\xa7\x01\xff\x4d\x5f\x3e\x06\xaa\xa5\xf6\x88\xdb\x39\x34\x96\x4a\x34\x51\xfc\x73\x32\xf9\x70\x7b\xca\xcf\xa9\x62\xf2\x76\xa8\x0c\x57\x99\x5f\x82\x5d\x2a\xd7\xee\x2e\x95\x44\xd7\x9e\xd8\x34\x9a\xd7\xc7\x17\xed\x2a\x2d\xdc\x4f\x56\xe0\xa6\x53\xe0\xc6\x93\x33\x14\xd9\xda\x8e\x27\x79\x2d\x99\xeb\x7a\x7a\xaf\xa2\xb2\x55\xda\xe5\xbe\x40\x25\xd3\xba\xde\x49\x15\x9b\x11\x27\xc3\xb0\xd3\x8a\x76\xf9\xd6\x7d\x11\xbc\xf5\x5a\xa9\xb7\xc7\xfb\x32\xe7\xea\xe2\x93\xa3\x39\x55\xad\xac\x96\x65\x37\x18\xef\x32\x7b\x1d\x5f\x68\xe4\xcf\xd1\xfd\x2c\x7e\x97\x62\x61\xe8\xbf\xd8\xc2\xda\xac\x9d\x26\x35\x9a\x48\x5a\x04\x69\xba\x4f\x50\x3c\x4a\xdb\xcb\x4f\xa8\xf1\x05\x95\x2e\xfe\x51\x73\x16\x97\x0a\xcd\x0a\x91\x76\x72\x32\x30\xb3\x36\x2a\x36\x33\xf8\x36\x96\xe5\xf1\x4d\x0e\x7e\xa9\xb3\x6b\xa1\x65\x9e\x96\x82\x61\x59\x5f\xbd\x44\xb5\x48\x15\x94\x15\x62\x44\xf7\x67\xa7\xa1\x71\x1b\xf1\xd4\xae\x91\x70\x02\x25\xba\xf3\xe7\x22\x1f\x81\xd5\xac\xb6\xe1\x3b\x13\x00\x1d\xeb\x3c\x0b\x79\xc2\x4a\x7c\x23\x6f\x0d\x53\x7a\x73\xa9\xde\xa2\x2e\xcd\xf2\xc6\x75\xcf\xc4\xfc\x4e\xce\xef\x5d\x76\x1b\xd4\x46\x11\xdd\x64\x30\x13\xe8\x24\x12\x6c\xbc\x4b\x16\xc1\xc2\x98\x5b\xe7\xa6\xbc\x95\xa6\xd4\xe7\xf2\x5c\x75\xf5\xf9\x40\xdd\xd8\x77\xba\xfb\xff\xff\x73\xee\x9b\x07\xdf\x2c\x65\xf4\xa6\xc7\x80\x9d\x75\xfe\xf3\xda\x94\x6e\xde\x96\x66\x4b\x2b\x35\x31\x1e\x9c\x61\xca\x6f\x9a\x65\x9b\x05\x6b\x8d\xfe\x2b\xbc\xf7\xdf\xbd\x5b\x7f\x95\x34\xba\x3a\xd0\x17\x25\xf3\x94\xbf\x14\x2c\x35\x89\x35\xa1\x41\x7d\xf0\x57\x07\x79\x47\xfb\x75\x43\x2a\x95\x36\x57\xee\x24\x58\x30\x9f\xf1\xe6\x1f\x1b\xed\x41\x5d\x86\xb3\x19\xd1\xfa\x61\xaf\x1b\xc8\xae\x5c\x13\x65\xab\x3b\xbd\xfb\x0d\x1e\x6e\xfa\xa4\x87\xd8\x58\xcd\x9b\xca\xc9\x39\xe8\xd5\xc7\x37\x2f\x3f\xbf\x49\x7e\xf7\xd7\x0f\xaf\x13\xdf\xe5\xef\xf4\xcd\xac\x9e\xf5\xc7\xc6\xc1\xbd\xfe\xa7\xaa\xf9\xd1\x39\x2d\x6d\x21\xdf\xb8\xf3\x4c\xd6\x73\xf1\xde\xd1\xe3\xde\x93\x0a\xca\xf8\xa3\x7c\xd0\xe4\xf7\xcc\x5d\x44\x77\x30\x5f\x6a\x52\xb7\xbd\x2a\xf8\x3c\xd5\x4b\xc7\x67\x3a\x4b\xb6\xeb\x46\x47\xd4\x5d\x55\xe4\x4b\x10\x4f\x7a\x46\x0f\xe0\xfc\x61\x74\x1e\xbb\xf1\xf6\x76\x7e\xe5\xb4\x40\x7f\x37\x6e\x06\xee\x82\xc3\xf3\xb6\x36\x8e\x56\xd4\xf5\xf2\x32\xcc\x36\xe5\x77\x72\xb9\x52\xac\xbb\x73\xe7\x72\x9f\x8b\xb5\x29\x07\xee\x1b\xbc\x5c\x3e\x73\xfe\xed\xaf\xa6\x78\xb6\x36\x2c\x3b\xfa\xc1\xf9\x23\xb6\x8e\x24\x99\xc8\x60\x21\x97\xd2\x96\x83\xb5\x5f\x89\xbc\x86\x76\xe0\xa9\x22\x53\xba\x99\x3f\x73\xff\x72\xc9\x85\x5c\xc8\x5c\x3b\x92\x83\x6a\x81\xda\xa8\x1f\x5d\x6e\x1b\xac\xac\x33\xd4\x8b\x4e\xea\x45\xd5\xe6\x92\xb2\xae\xdc\xef\x5e\x72\x16\x3b\x47\xaa\xc6\xcf\x28\x61\x61\x59\x67\x3b\x40\x22\x34\x47\x7b\xf5\xb6\xe3\xcd\x66\xd4\xe2\x27\xaa\xc5\xdd\x6d\xa2\x8b\x3f\xbf\x5d\xd6\x70\xa7\xfb\xfd\x9d\x37\xd6\x95\x56\xf9\x76\xb7\xda\xd1\xa1\xf7\xb0\xca\xef\xb0\x2b\xb0\x74\x0f\x7a\xa2\x19\x0e\x76\xa6\xb4\x55\x27\xbb\xda\x9c\x42\x0d\xed\x61\x0d\xed\x60\x1f\xcd\xfe\x5b\xe3\x2d\xe8\x64\xe9\x5b\xe0\xfc\xcb\x7b\xab\x3e\xb9\x6f\x61\xce\xab\x70\xe3\x1e\x18\x55\xfb\xff\xcb\xb8\x69\x52\xdd\x07\xd1\x76\xb2\x0e\x6a\x3d\x75\xdb\xa9\xdb\xd1\x9e\x9f\x8a\x15\xe4\x75\x9f\x94\x28\x58\x6d\xbe\xf7\x15\xe5\x79\xa5\xb3\x4d\x09\x89\xf4\x12\xf4\x5e\xaf\x27\x4e\x3c\x07\x91\xbb\x96\xd8\x67\x94\xdb\xae\x26\xce\x5d\xce\x9b\xcd\xd7\x5b\x5f\x76\x67\x58\xf6\x8b\x6a\x82\xf4\xac\xfa\x10\x25\xbd\xd6\x51\xb1\x1e\xe6\xd9\x0c\xc3\x86\x22\xb3\x36\x32\x7b\xac\xa7\x1e\xdc\x53\x5e\x94\x36\xaa\xde\xa7\x7a\x15\xd7\x13\x2d\xa3\x2a\x5b\x85\x57\xb6\x4c\xcd\x9b\x88\xf0\x0f\x36\xa5\x65\xab\xa6\x1d\x3c\xfd\xdf\xf4\xff\xf4\x00\xe5\x97\xba\xd3\x7c\xd9\x42\xcb\x9d\x43\x15\x22\xbd\x73\xe1\xb9\x58\x6a\xfa\xe6\x47\xe5\x94\xec\x3e\x66\x5f\xab\x0a\xd4\x5d\x0f\xf8\xde\xd0\x3f\x1a\x86\x9d\x5e\xe7\x17\x5b\x2b\x38\x1e\x0e\x87\xed\xf5\xb2\xee\xbf\x7e\x2f\xdc\xd4\xba\x6b\x2f\x1b\x5a\xfd\xec\xd4\xc9\x22\x21\xf7\xd0\xcd\x86\x8f\x4a\xd0\xcb\x3e\x61\x2f\x9b\x78\x0c\x62\x6f\x9d\x6c\x26\x5b\x7f\x0d\xb7\xbf\x0e\xa2\x6e\x3f\xd6\xbc\xa3\x74\x33\x1e\xac\x36\xb6\x4b\x42\x5f\x24\xfa\x8d\xe8\xa8\x86\xdd\x69\x3c\x69\x7f\x32\xcc\x6f\x12\x5e\x44\x93\x61\xde\x87\x9e\x97\x9e\xb7\x51\xcf\x5b\xbc\x0f\xab\x32\x2a\x24\x0e\xff\x38\xfc\xc7\x3e\x87\xb4\x85\xb6\x86\xc3\x3f\x36\xfe\x87\x6c\xe3\xaf\x3d\xa9\x8d\xbf\x48\xf9\xf8\x0b\x8c\xfc\x45\x74\xfb\x18\xf9\xf7\xd9\xc8\x7f\x8c\x91\x3f\x46\xfe\x7d\xb2\xe7\x2a\x7f\xcf\x30\xf2\xdf\xdb\x83\xc0\xc8\x1f\x23\x7f\x8c\xfc\x31\xf2\xef\x9b\x27\x32\x46\xfe\x2d\x59\x2f\x63\xe4\x8f\x91\x3f\x46\xfe\x18\xf9\x63\xe4\xdf\x7d\xa7\x75\xfc\xbd\x49\x1b\x35\x13\x23\x7f\x99\x36\xf2\x17\x59\xf3\xbc\xf8\x5e\xe3\x46\x2e\xfb\x22\xdf\x63\xae\xd4\xcf\x5f\x64\x7d\xf4\x30\xe7\xc7\x9c\x1f\x73\xfe\xdd\x16\x10\x63\xce\x8f\x39\x3f\xe6\xfc\x95\xe7\x63\xce\x5f\x24\x0d\x30\xe7\xc7\x9c\x1f\x73\x7e\xcc\xf9\xbd\x0f\x2b\x8b\x12\xf9\x61\xce\x8f\x39\x7f\xf0\xc1\x9c\xff\x10\xcd\xf9\xcb\x59\x47\x74\x41\xbb\xb9\xe2\xef\xe4\xb5\x5f\xeb\x76\x30\xd9\x8f\x52\x39\x7e\x93\x7d\xd1\xba\x61\x3e\x3e\xf2\xf8\xc8\xd7\xbf\x06\x7c\xe4\x8f\xcf\x1c\x1d\x1f\xf9\xda\x45\x85\x8f\x3c\x3e\xf2\x6d\x3e\x58\x7c\xe4\xf1\x91\x4f\xa5\x8b\x8f\x3c\x3e\xf2\xf8\xc8\xe3\x23\x8f\x8f\x7c\xfb\x3e\xf2\x35\xe0\x4f\x6b\x2e\xf0\x09\x60\x83\x0d\x3c\x36\xf0\xd8\xc0\x0b\x81\x0d\x3c\x36\xf0\xd8\xc0\x1f\x78\x0b\x84\x0d\x3c\xf5\x02\x1b\x78\x6c\xe0\x8f\xb4\x16\x63\x03\x8f\x0d\xfc\x89\x55\x79\x6c\xe0\xa9\xa1\xfd\xae\xa1\xd8\xc0\x63\x03\x7f\xa4\x75\x1b\x1b\xf8\xa3\x32\xa8\xc5\x06\x1e\x1b\xf8\x54\x62\x98\xd1\x62\x03\x8f\x0d\xfc\x71\x74\xb3\xd8\xc0\xf7\xa2\x97\xc5\x06\x1e\x1b\x78\xf7\x43\xcf\xdb\xcf\x9e\x17\x1b\x78\x6c\xe0\x4f\x6f\xb3\x26\x36\xf0\x39\xa9\x04\x65\x8d\x0d\xbc\xc0\x06\x1e\x1b\xf8\x53\xb2\x81\x9f\x29\xa3\xce\x6c\xe0\x67\xca\x08\x1b\xf8\x53\xb4\x81\x9f\x29\xa3\x1a\x08\x00\x1b\xf8\x43\x79\x10\xd8\xc0\x63\x03\xbf\xb7\xca\x7a\xe4\x36\xf0\x73\xc3\x30\x17\xfe\x08\xa4\x72\x69\xdd\x52\xaa\x85\x76\xac\x98\xcf\x63\x3e\x9f\xbe\xd5\xe3\xb0\x0b\x5e\x68\xd6\xdc\x78\x90\xe6\x63\xe5\x75\x84\xaf\xf1\xb2\xb8\xb2\x15\x64\x1d\xbb\x48\x4c\xf0\x9b\xb6\xc6\x98\xe0\x1f\xae\x09\xfe\x5e\xc4\x39\x26\xf8\x98\xe0\xd3\xab\x61\x82\x8f\x09\x7e\x1b\xd5\xa1\xa9\x09\x7e\xe5\x18\x83\x7a\xd5\xe7\x7a\xd5\x74\x24\xd8\xa8\xde\xb5\x36\xfe\xdc\x73\x24\x86\x43\x1b\x2c\x9c\x4e\x44\x88\xfd\x08\x4a\x22\x42\x1c\x60\x44\x88\xf6\xf9\x33\x11\x21\x88\x08\x71\x2c\x11\x21\xb6\x7f\x3b\x8a\xf4\x0c\x11\x21\x88\x08\x41\x44\x08\x22\x42\x78\x1f\x16\x19\x26\xf2\x23\x22\x04\x11\x21\x82\x0f\x11\x21\x88\x08\x91\x6a\xc7\x05\x11\x21\x88\x08\x41\x44\x88\xc4\x87\x88\x10\xd1\x87\x88\x10\x44\x84\xf0\x3f\x4f\x1f\xe6\x80\x88\x10\xb5\x8b\x8a\x88\x10\x44\x84\x68\xf3\xc1\x12\x11\x82\x88\x10\xa9\x74\x89\x08\x41\x44\x08\x22\x42\x10\x11\xe2\x44\x23\x42\xec\x38\x8f\xf5\x85\x88\x10\x44\x84\x38\x84\x88\x10\xf5\xea\x39\x11\x21\xd2\x07\x11\x11\x82\x88\x10\xd8\xf3\x3e\x69\x0b\x44\x44\x08\xea\x05\x11\x21\x88\x08\x71\xa4\xb5\x98\x88\x10\x44\x84\x38\xb1\x2a\x4f\x44\x08\x6a\x68\xbf\x6b\x28\x11\x21\x88\x08\x71\xa4\x75\xfb\x24\x22\x42\x84\xa5\xb3\x4d\x09\x89\x43\xf2\xaa\x26\x22\x04\x11\x21\x52\x89\xe1\x4b\x4d\x44\x08\x22\x42\x1c\x47\x37\xdb\xeb\x88\x10\xa7\xd3\xcb\x12\x11\x82\x88\x10\xee\x87\x9e\xb7\x9f\x3d\x2f\x11\x21\x88\x08\x71\x7a\x9b\x35\x89\x08\x91\x93\x4a\x50\xd6\x44\x84\x10\x44\x84\x20\x22\xc4\x29\x45\x84\xb8\x54\x86\x41\x44\x88\x51\xdb\x11\x21\x2e\x95\xe1\x11\x46\x84\x20\x1e\x44\xc5\x18\xf7\xb2\x56\x48\x48\xe2\x41\x1c\xca\x83\x20\x1e\x04\xf1\x20\xf6\x56\x59\x89\x07\x11\x4b\x99\x78\x10\xfd\xb3\xb4\x26\x1e\x44\xc7\xce\xd9\x7d\xb5\x78\x3d\xa9\x78\x10\xa5\xad\x31\xf1\x20\x0e\x37\x1e\xc4\x5e\xc4\x39\xf1\x20\x88\x07\x41\xaf\x86\x49\x3f\x26\xfd\xb5\x2a\x29\x26\xfd\x98\xf4\x1f\x62\x2f\x8f\x49\xff\x01\x9a\xf4\xb7\x0f\x05\x31\xe9\xc7\xa4\xff\x58\x4c\xfa\xb7\x7f\x3b\x8a\xf4\x0c\x26\xfd\x98\xf4\x63\xd2\x8f\x49\xbf\xf7\x61\xdd\x57\x22\x3f\x4c\xfa\x31\xe9\x0f\x3e\x98\xf4\x63\xd2\x9f\x6a\xc7\x05\x26\xfd\x98\xf4\x63\xd2\x9f\xf8\x60\xd2\x1f\x7d\x30\xe9\xc7\xa4\xdf\xff\x3c\xbd\xf3\x3c\x26\xfd\xb5\x8b\x0a\x93\x7e\x4c\xfa\xdb\x7c\xb0\x98\xf4\x63\xd2\x9f\x4a\x17\x93\x7e\x4c\xfa\x31\xe9\xc7\xa4\xff\x44\x4d\xfa\x77\x9c\xc7\xfa\x82\x49\x3f\x26\xfd\x87\x60\xd2\x5f\xaf\x9e\x63\xd2\x9f\x3e\x08\x93\x7e\x4c\xfa\x71\x4c\x7d\xd2\x16\x08\x93\x7e\xea\x05\x26\xfd\x98\xf4\x1f\x69\x2d\xc6\xa4\x1f\x93\xfe\x13\xab\xf2\x98\xf4\x53\x43\xfb\x5d\x43\x31\xe9\xc7\xa4\xff\x48\xeb\xf6\x49\x98\xf4\x87\xa5\xb3\x4d\x09\x89\x43\xb2\x0f\xc6\xa4\x1f\x93\xfe\x54\x62\x58\x05\x63\xd2\x8f\x49\xff\x71\x74\xb3\xbd\x36\xe9\x3f\x9d\x5e\x16\x93\x7e\x4c\xfa\xdd\x0f\x3d\x6f\x3f\x7b\x5e\x4c\xfa\x31\xe9\x3f\xbd\xcd\x9a\x98\xf4\xe7\xa4\x12\x94\x35\x26\xfd\x02\x93\x7e\x4c\xfa\x4f\xc9\xa4\xff\xca\x73\xe6\x6f\xc1\x21\x7f\x6b\xcb\xeb\x90\x67\xc5\x97\x03\x36\x2d\xe1\xd4\x21\xa1\x5f\xf8\xd6\x76\xe1\x47\xe7\x16\x5e\xbe\xcc\xbc\xfa\xf5\x28\x5b\xfe\x95\xdc\x12\x9f\x5c\x5a\x56\xe3\xd6\xeb\x4e\x0d\x3a\x8a\xa4\xf6\xf2\xa2\xd4\x36\xfd\x68\x59\x48\xf5\x74\xea\x97\xb3\x40\x8b\xf7\xdf\xf6\xbb\xfc\x5a\xb7\xb5\xe0\x2e\x4f\xb5\x2b\x1f\xd1\x2f\x67\xfe\x4a\x64\x43\xb7\xca\xf2\x4f\x2d\x13\x75\x8d\x01\x5d\xe7\x27\xab\xde\x44\x77\x6b\x05\x5c\xee\x6e\x98\x07\xfd\x2b\x1d\x0e\x1b\x97\x41\x2d\x13\xd3\xed\x5f\xb3\x9a\xef\x97\x19\x9b\xc6\xdd\xce\xb9\xb7\xf9\x4b\x57\x61\xb1\xbb\x93\xdd\x6f\xb3\xab\xc9\x73\x5a\x6d\xd1\x6b\xb5\x45\xb7\xd5\x1d\xfd\x56\xb7\x73\x5c\xf5\x0a\xb4\xca\x9b\xe3\xac\xc6\x9b\x5b\xe5\x77\xda\xec\xb1\x35\x35\x39\x2d\x4f\xbd\x8e\xa5\xf3\x6e\xef\x61\xd9\x72\x98\xec\xeb\x38\xd0\x35\x4b\x1d\xdc\x04\xe7\xec\xc1\x6f\x33\xaf\x49\x68\xb8\x70\xa3\x4a\x49\x74\xae\x25\xea\x97\x71\x4c\x52\xa4\x8a\xba\xdd\x15\x8a\x25\x42\x66\x8f\x85\x9b\x56\xc4\x5b\xb8\x30\x96\xbb\x19\x96\xd7\xd0\x5d\xcd\x06\x5d\xfd\x9b\x72\xb2\xdb\xd9\xf9\x2e\xdc\x64\xdd\xa2\x89\x5d\x76\x12\x51\x78\x7b\x99\x57\xd2\xbe\x93\x1b\xb7\xf6\x7a\x63\xc4\x5f\x5c\x73\x86\x5f\x8a\x0e\xb2\xe6\xa6\xba\x96\xcf\xc5\x2f\xb6\xb9\x91\xfe\x51\x60\xc9\xe4\xa7\x37\x58\xb2\xc4\x13\x6e\x7b\xcf\x40\xbf\x7a\x7a\x49\xc4\xa7\x22\x2a\x77\x60\xb7\x38\x93\x11\xa3\x9a\x09\x4f\x82\xaa\x01\xa9\x77\x54\xde\xbc\x4e\x75\x2b\x96\xc8\xd7\xfb\xe2\x89\xa7\x4a\x63\x3e\x4d\x2f\x97\x6b\x4d\x97\x9e\x2d\x9e\x23\x28\xa2\x6b\x74\x5e\xbb\x57\x79\x34\x34\xeb\x5f\x37\x10\xd6\x5d\xfc\xaf\xc1\x3c\xf1\xdb\xa3\x35\xb7\x97\x62\xf0\x5d\xe8\xd2\x56\xe6\x86\x29\x15\xcb\x58\xa9\x3f\xe6\x86\xae\xbf\x98\x8c\x2f\x2f\xae\xfe\x57\xea\x18\x6d\xfd\x30\x55\xb4\xf5\x57\xd7\xcb\xe0\xab\xd3\xbe\x7c\x75\xab\xc0\x8b\x2f\x67\xa3\xe1\x78\x2a\x2e\x66\xb3\xc9\x2c\x7a\xac\x31\xe2\x19\xbf\x9f\x78\xbd\xa8\x39\x8d\xeb\xf5\x09\xde\xc5\x44\xdf\x96\xcd\x19\xae\x83\xc9\xc2\x45\xae\x7b\x62\x39\x59\x8e\xd8\x72\x1d\x17\xbf\xe8\x26\xe3\x66\x86\xc9\xe9\xea\x5d\x3c\x02\x5b\xb6\xd3\xab\x70\x8c\x2b\xe0\x6c\xc9\xf3\xfb\x64\x16\x17\xeb\x0a\x07\x6b\x53\xde\x6a\x3f\x5e\x54\x6e\x8e\x0d\xea\xc2\xbe\x0c\xdb\x72\x8c\x4d\x62\x1b\x38\x8b\xdf\xf5\xaa\x5a\x5e\x61\xd5\xd6\xcc\xac\x6d\x3b\xbb\xb6\xc4\x9c\xf1\x64\x92\xbe\xc5\xec\x8d\xe3\xc0\x16\x5f\x01\xe1\x75\xbb\x5b\x78\xa5\x65\x6a\x59\xd6\xd3\xaa\xd8\xd1\xaa\xd4\x97\xaa\xc4\x30\xa9\xdc\xf6\xa8\x99\x55\xdb\x29\xfb\x8f\x1d\x8c\x55\x5b\x07\xa5\x10\xab\xf1\x71\x87\xa0\x64\x65\x4e\x99\x2f\xd5\xb5\x16\x4a\xbc\x1a\x99\x8c\x62\x79\x44\x56\x36\x75\xfd\x64\xfc\x44\x59\xf7\xc2\xba\x97\xe3\x1d\x60\xd6\x58\xf7\xe2\x1f\xd8\xbb\x35\xa5\xbb\xac\x06\x51\x9f\x74\x35\x48\x6a\x31\x08\x6b\x41\x44\x74\xfb\xac\x05\xd9\xef\x5a\x90\x82\xf5\x1f\xd7\xca\x74\x60\x7a\x5e\x84\x23\x6f\x29\xc8\xcf\xe2\x8f\xaa\x25\x17\x4e\x2d\x0f\xfc\xa4\xbe\x69\xf6\xdd\xe6\x46\x99\x1b\xab\x98\xb5\x54\xd2\x16\xeb\xfc\x66\x69\xdc\xc4\x9d\xd6\xbc\xb4\xcf\xbd\x78\x2c\xee\x1c\xa5\x36\x3f\x5f\x9b\xc6\x83\xb6\x90\xe6\xf9\x7c\x69\x6c\x16\xfe\x8f\xa5\xde\x33\x8d\x96\xa0\xec\x65\x03\x84\x5b\x79\x6a\x98\xf4\x6c\x13\x24\x69\x67\x37\x9e\x3e\x6c\x00\xb9\x56\xa6\x45\x47\xb5\x17\x21\x4e\xdd\xd8\x86\x6b\xc4\x99\x2c\x8e\xcf\xc6\xbd\x0c\xbd\xc1\x77\xb3\x0a\x0c\xb1\x45\xe9\xd3\x88\xad\xd7\x39\xd6\x07\x51\x7b\x8e\x26\x5c\x74\x35\xd8\x7a\xd5\xd5\xe0\xe8\x96\x5d\xb5\x65\xe6\xd5\xa5\x1f\x53\x8f\x2a\x6b\x6e\x5e\xbb\xd8\x5f\xf4\x6b\xb5\x56\x6b\xf1\x58\x5b\x8b\x09\xbd\xed\x0a\xb1\x53\x8d\x33\xbd\xa7\x40\xb7\xa7\x1b\xce\xba\xaf\x21\x7e\xf7\xe6\x2b\xd6\xfb\xd6\xb8\x3b\xff\xad\x6e\x63\xf4\x6e\x17\xcc\xb9\x3d\x67\xad\x1e\x3d\xd8\x8e\xc3\x37\xef\xd0\x5f\xef\xb4\x6a\xb3\xa9\x10\xa8\x58\x41\x5a\x67\x45\x5f\xeb\x9d\xc8\x31\x77\x9e\xa7\xdb\xab\x55\x0a\xbf\xf8\xd2\xe1\xd6\x16\x0e\xb7\xb6\x6c\x78\xa7\x45\xc3\xdb\x2c\x19\xae\x15\x03\x30\x7c\x68\xe5\xf1\xfe\x72\xf6\x3f\x96\x9c\x19\x3b\x27\x42\xb6\x4d\xe5\x79\xa3\x45\xcb\xad\x0d\x0a\xaa\xd6\x2f\xef\x49\xbb\xf6\x55\xc1\x25\xfb\xf5\xae\xdc\x09\x4f\xa7\x97\xef\xc0\xf2\xaf\x5b\x01\xb8\x1b\x10\xf4\x3b\xe6\x54\xe8\x86\x26\xd3\x08\x47\x54\x35\x0a\x4d\xee\x6b\xcc\x61\xdb\x8f\x6b\x19\x8e\x06\xde\xba\x53\x53\xf1\x49\xa5\xc4\x2a\x95\x41\x2a\xfe\xd3\x3a\xbd\x3c\x25\x3e\x2b\x92\x3a\x56\x5d\xaf\x3f\x84\x31\xa0\xc2\x35\x2f\xd9\x29\x93\xbd\x3d\x86\x82\x02\xf6\xab\x62\xcd\x90\x50\x6e\xef\x19\x9d\xfe\x8b\x25\xde\x19\xea\xe2\x8f\xa9\xd0\xc1\xdb\xd5\x6d\xbf\x4e\x37\x7f\x37\x16\xe1\xd2\x88\x9c\xd7\xa2\xe6\xf6\x80\xc3\x7e\x3b\x8a\xf4\x4c\x7e\x24\xe8\xd7\x86\x78\xff\xdb\xe7\x40\x36\xb9\x7a\x48\x5d\xc9\x67\x42\x15\xba\xfc\x2e\x1c\xc9\xea\x06\x84\xfe\xae\x2d\x97\x8e\xda\xf2\x8a\x57\x2e\x84\x7a\x6b\x4b\x53\xa8\xe2\xfe\xca\x12\x31\xf3\xb0\xee\xf6\x4d\x78\xbf\x34\x08\x66\xad\x2e\xdc\xc8\x47\xde\xc3\xf4\x6e\x60\xa5\xde\x7b\xf7\xe8\xa7\xed\xdf\x8e\xf8\xbb\x71\xe3\x2e\x89\x12\x0b\x77\x75\x47\x94\x59\xe2\xfe\xc4\x8d\x9c\xab\x1b\x4b\xba\x59\x2b\xc1\x6d\x08\xcd\x12\xda\x6a\xb5\xb1\xd5\x9b\xa5\x7c\x26\x2c\xc3\x8b\xa2\xed\xe5\xaa\x4b\xe7\x35\x31\xbc\x9b\x14\xea\xdc\x34\x2c\x2b\x5c\xea\x12\x04\xcc\xb1\x62\xf9\x35\x31\x05\xcb\x3b\xbc\xc2\x14\x2c\xef\x94\x82\xea\x14\xe8\xde\xd4\xce\x93\x9d\xb7\xaa\xc4\xd7\x6b\x9a\xf2\x41\x73\x4a\xe0\x57\xcd\xb2\x0d\xf3\xf1\x9d\xb6\xd2\xec\x60\x05\xd8\x4a\xd3\x3f\x4a\x75\x11\xad\x0b\x70\xbf\x6d\x71\x7f\xcb\xd3\x58\xb0\x15\xbe\xbc\xa9\x25\x4b\xe1\xb0\x63\xab\x0d\x17\xa9\xf0\xdf\xac\x7f\xea\xcf\xfa\xa7\xa6\xe1\x40\x4b\x36\xe4\xa4\x9e\x72\xff\x16\x4c\x45\x12\xaa\x62\x5b\x83\x48\xec\x6b\xd8\xd6\x87\x6f\xa9\xdd\xca\xf9\xe3\x7c\x99\x5e\xed\xba\x36\xe5\x27\x3b\x67\x91\xba\xfc\x11\x7b\xe1\xa2\x4f\x76\x93\x4b\xbc\x3a\x9c\x7f\x57\x35\x7b\x60\xdd\x6d\xec\x85\xf1\x3d\x51\xd5\x76\xd9\x80\xd1\xa0\x5f\x73\xbb\x17\xa7\x4f\xbe\x49\x29\x2d\xa7\x27\x52\x97\x96\x11\x85\xec\x4c\xe6\xe0\x3a\xf8\x6d\x6e\x96\x9a\x75\x57\xbc\xb9\xa3\x6c\xc2\x3d\xfa\x14\x5b\xb6\x25\xef\xbe\xd5\x5d\x25\x99\x0a\x9f\x7b\x2d\xf9\x80\x26\xba\xa0\x18\xbc\x7a\x51\x0b\xda\x24\xb2\x4f\xc2\x9b\x86\xa9\xd6\xba\x1d\x7f\xef\x4c\xb8\xf8\xc3\xb9\x8f\x17\xf9\xf1\xff\x72\x4e\x2b\xda\xdf\x52\xef\xb1\xf6\x6d\xdf\x4d\x36\x4c\xe1\x8b\xe7\xd9\x00\xbb\xf9\x47\x0e\x62\x71\x70\x5f\x14\x85\xc7\xcd\x46\xd5\x2d\x48\xec\x5e\x3e\x16\x26\x72\x2f\x1f\xe3\x69\xe4\xfa\x2f\x76\xb3\xe7\x27\x6f\xef\x4b\xd9\x5e\x9e\xd8\xe6\xbf\xbc\x40\xd0\x99\x6b\x2b\xdd\xf9\xd3\x64\xdf\xcf\x36\xbb\x7e\x8a\x82\x35\xc7\xf6\x02\x8d\x86\xa9\xbd\x00\xc5\x26\x9e\x49\x0f\x4a\xb6\x08\x15\x99\xa4\x46\x17\xf2\xee\xf5\xd7\x0f\x1f\xdf\xbc\xfb\xed\xe5\xeb\xdc\xab\x48\xc4\x9c\x5e\x6a\x37\xce\xff\x56\xda\xca\x79\x02\x73\xc5\x32\x52\xe1\x75\x9b\x6d\x3c\xca\x7b\xf0\xcd\x76\xfe\xcc\x92\x07\xb0\xf3\xa7\xb8\xa8\x4e\x79\x93\x54\x76\x43\x9b\x28\xd9\xd2\xd6\x5a\x2c\xff\xf4\xfa\xf8\xfe\x84\xf2\x2f\x88\xe4\x7f\x35\xec\x34\x90\xff\x5e\xe3\xf8\xe7\xec\x39\x6c\xed\xc1\xe6\x04\xff\xef\xcb\x93\xb5\x0a\x1e\xed\x74\x3a\xe9\xf4\xd9\x7e\xda\xeb\xc3\x4d\x81\xf7\x82\xa2\xca\x6a\xc8\x92\xc4\x53\xfb\x04\x4b\x72\xcd\xc4\xa6\x77\x3e\xee\xda\x70\xaf\xe7\x2d\x12\x90\xe9\x53\x9c\x06\xfc\x37\x7d\xf9\x18\xa8\x96\xda\x83\x43\xe7\xd0\x58\x2a\xd1\x34\xe7\xcf\xc9\xe4\xc3\xfd\x2a\x3f\xa7\x8a\xc9\xdb\xb2\x32\x5c\x65\x7e\x09\xb6\xad\x5c\xbb\xdb\x56\x72\x22\xe7\xfb\x1b\x25\x8b\xc3\xe7\x67\x77\x52\x16\xda\x0d\x17\x58\x7c\x14\x58\x84\x74\xef\x76\x1e\x5e\x97\x33\x78\x0a\xc6\x97\xe1\x10\x6a\x0b\x2f\xe6\x26\x09\xe5\x5c\xc8\x56\x66\x25\x25\x33\x90\xde\x49\x15\x1b\xf3\x26\xc3\xb0\xd3\x8a\x76\xb6\xd6\x7d\x11\xbc\x05\x4d\xa9\xb7\xc7\xfb\xb2\xc2\x22\x3f\xa7\xaa\x95\xd5\xb2\xec\xa6\xda\x5d\x26\x5a\xe3\x2b\x71\xc2\x00\xf9\xbf\x4b\xb1\x30\xf4\x5f\x6c\x61\x6d\xd6\x4e\x93\x1a\xcd\x79\x2c\x82\x34\xdd\x27\x28\x1e\xa5\xed\xe5\x27\xd4\xf8\x8a\x43\xa1\xea\x8b\xe4\x37\xfe\xf4\xbd\xd0\xac\x90\xbe\x26\xe7\xad\x32\x8b\x87\x62\x93\x58\x71\xde\x71\x7c\xf3\x58\x5f\x2a\x76\xb5\x55\xc2\x9f\xac\x8b\x55\xe2\xa1\xa6\x6e\xd3\x0a\x79\x95\xfb\xb3\xd3\x4c\xb8\x4d\xf0\x59\x90\x97\xdf\x51\x86\xa8\x3e\xba\xf0\xe7\x22\x1f\xd2\x64\xb6\xf8\x95\x3d\x4c\xbf\x9f\xf5\x40\x67\xb3\xa7\x59\x1d\xb1\x65\xe7\xc7\xda\xa0\xc2\xac\x55\xd3\x1e\x18\xb7\x6d\xae\xf7\x6d\x3c\xbb\x2f\xdd\xaf\xfd\xe5\x1b\xff\x74\x6b\xc3\xda\x69\xd0\xea\x4c\x3f\x36\x2e\xdc\x2d\xa6\x87\x6a\x17\xb0\x17\x68\xe5\xf3\xe3\x3a\x5c\xcb\xea\xd7\x73\xef\x8f\x37\xfe\xbf\xb7\x8f\x60\x95\x05\x5e\x61\x6b\xe7\xc5\x7b\xf2\xe6\x87\xbd\x15\x73\x9a\xe5\x01\x80\x67\x62\x7e\x27\xe7\xf7\x2e\x8f\x0e\x9a\xad\x58\xd0\x92\x60\x76\xd3\x49\x24\xd8\xbe\x99\xbc\xdb\x85\x31\xb7\xce\x4d\x79\x2b\x4d\xa9\xcf\xe5\xb9\xea\x0e\xe4\x06\xea\xc6\xbe\xd3\xdd\xff\xff\x9f\x73\xdf\x80\xf6\x66\x29\xe3\xd1\x0b\xc3\x57\xce\x3a\xff\x79\x6d\x4a\x37\x6f\x4b\xb3\xa5\x95\x9a\xec\x2f\x89\x21\x1e\x7b\xe5\xfe\x2b\xbc\x77\x3f\x0a\xd0\xab\xa4\x2f\xd1\x81\xb6\xa8\xb9\xd5\xb4\xe2\xad\x0a\xea\x83\x5f\xc9\xbc\xa3\xfd\xba\x21\x95\x4a\xc7\x23\xf7\x55\x0a\xe6\x68\xde\xfc\x63\xa3\x3d\xa8\xcb\x70\x86\x26\x5a\x89\xed\xe9\x85\xec\x72\x3d\x51\xb6\x4e\xd6\xbb\xdf\xe0\xe1\xa6\x4f\x7a\x88\x0d\xea\xbd\xe9\xa9\x9c\x83\x5e\x7d\x7c\xf3\xf2\xf3\x9b\xe4\x77\x7f\xfd\xf0\x3a\xf1\x5d\xfe\x1e\xf1\xcc\x3a\x64\x1f\xa2\x04\xf7\x1a\x45\x40\xb2\xb4\x85\x7c\xe3\xce\x9d\x59\xcf\xc5\x7b\x67\xe0\xe6\x3d\xa9\xa0\x8c\x3f\xca\x07\x4d\x7e\xcf\xdc\x45\x74\x07\xf3\xa5\x26\x75\xdb\xab\x82\xcf\x53\x72\x2e\x3e\x7b\x5b\xd2\x25\x46\x47\xd4\x5d\x29\xe5\x7d\x7c\xc0\x13\x3d\x80\xf3\x87\xd1\x79\xec\xc6\xdb\xdb\x41\x58\x1a\x43\xaf\xad\x0d\xc8\x3b\xf4\x20\xc4\x66\xee\xa8\x05\x6a\xa3\x7e\x74\xb9\xfd\xb4\xb2\xce\x50\x2f\x3a\xa9\x17\x55\xdb\x74\xca\xba\x72\xbf\x7b\xc9\x59\xd3\x1d\xa9\x1a\x3f\xa3\x84\xe3\x60\x93\xf5\xf2\x2d\xd7\xdb\x8e\xb7\xed\x51\x8b\x9f\xa8\x16\x77\xb7\x1d\x71\xff\x01\xe8\xdb\xa8\xf2\xed\x6e\x5a\xa4\x43\xef\x61\x95\xdf\x61\x7f\x65\xa9\x97\x41\xa2\x19\x0e\x76\xfd\xb4\x55\x27\xbb\xda\x70\x43\x0d\xed\x61\x0d\xed\x60\x6f\xd0\xfe\x5b\xe3\x2d\x30\x76\x65\xa0\x72\xef\xad\xfa\xe4\xbe\x85\x1d\x04\x2a\x8f\xb6\xea\x75\x50\xeb\xa9\xdb\x2d\xc6\x29\x4f\x6e\xaa\xec\x5b\xa0\xf2\xb0\x74\xb6\x29\x21\x71\x48\x81\xca\xd3\x11\xba\xf6\x15\xa9\x3c\x9b\xaf\xb7\x2a\xf1\xce\xb0\xec\x17\xd5\x04\xe9\x59\xf5\x21\x4a\x7a\xdd\xa7\x62\x3d\xcc\xb3\x19\xea\x0d\xa2\x9c\x37\x8c\x5f\x4e\x50\x72\x82\x92\x37\x0a\x4a\xde\x56\x2f\xeb\xfe\xeb\xf7\xc2\x8d\xba\xbb\xf6\xb2\xe1\x06\xf8\x9d\x3a\x59\x24\xe4\x1e\xba\xd9\x75\xdc\x30\x80\x5e\xf6\xa9\x7a\xd9\xc4\x63\x10\x7b\xeb\x64\x33\xd9\x7a\xdd\x58\xb0\x60\xa6\x6e\x3f\xd6\xbc\xa3\x74\x33\x1e\xac\x36\xb6\x4b\x42\x5f\x24\xfa\x8d\xe8\xa8\x86\xdd\x69\x3c\x69\x7f\x32\xcc\x6f\x12\x5e\x44\x93\x61\xde\x87\x9e\x97\x9e\xb7\x51\xcf\x5b\xbc\xb7\x8c\xb0\x08\x84\x45\x38\xd6\x6d\xc1\x35\xc2\x22\xa4\x5e\x8c\x5f\x3f\x7f\xfe\xe0\xbf\x1c\x5b\x2c\x41\xad\x9b\x48\xde\x3a\xd8\xcf\x51\xf7\x5e\xb4\xfb\x38\xb6\x3a\x33\x76\x74\xb4\x38\xf3\x22\x4c\x3b\xb9\xa3\xf2\xc9\x94\x43\xad\xa0\x6d\xbb\x04\x80\xd0\x9e\x34\x00\x84\x48\x45\x80\x10\x84\x80\x10\xd1\xed\x13\x02\x62\xbf\x21\x20\xe2\x2f\x5b\x10\x0e\xc2\x58\x48\x77\x6b\xc4\xe0\x61\xa4\x8c\x66\x5e\x04\x88\xea\xf5\xee\x5b\x2f\x0c\x72\x5b\x6e\x2f\xc3\x85\x9e\xf6\x4e\x77\x1a\xf3\x81\xf5\x68\xd9\x72\x95\x29\xb7\xd4\xc0\xc8\x9b\xba\x0d\xf6\x30\x27\x17\x0c\xbb\xfb\x5e\x0d\x7d\xa5\xea\xea\x37\x69\xa6\xba\x88\x95\xb1\x90\xcf\xc5\x47\xa7\x52\xcf\xb5\x65\x5e\x90\x80\xe6\x95\xc2\xbd\xee\x85\x6e\x0d\x36\x6b\xcb\x36\xa5\xba\x6a\x72\x5f\x57\xd6\xc0\x7d\x64\x41\x22\x1d\xdf\x6e\x36\x71\xef\x1e\xbe\x9c\xfd\x79\x73\x23\x5f\xbf\xff\xf4\xd7\xe0\x1e\xce\x0a\x6a\xa4\xff\x22\x04\x57\xea\x55\xd0\x99\xbf\xb1\x27\xda\xce\xf3\xd7\xd7\x1f\xb2\x75\xd6\x3b\x2c\x96\xc6\xc0\x9e\xaf\xcb\xd3\x09\xb7\x05\x65\xd3\x49\xd5\xfc\x9c\xa2\x2c\x79\xa0\x45\x81\x1b\x76\xac\xa7\x4d\x9e\x45\x98\xe7\x2b\xc3\x94\xb7\xda\x52\x3e\x17\xff\xdb\x4b\xe5\x9f\xff\x54\xfc\xd5\x09\xaf\x8d\x95\xaa\xe9\xff\xfa\xd7\xf3\xd9\x44\xfc\x33\x6a\xd0\xa4\x69\x1a\x66\x4c\x20\xcd\xd5\xf9\x9d\x8c\x1f\x10\x76\x00\xde\x46\x4d\x71\x7d\x7d\x35\x4d\x35\xf0\xde\x67\x21\x75\x4d\x5d\x7a\xbf\xc7\x9a\xf8\x7f\xc5\x9b\xef\xa5\xa1\xc6\x3a\xda\xa5\x61\xc4\x76\x68\xde\x68\xfa\xc2\x0d\x75\xf4\xe1\xe5\x62\xe1\x34\x7c\xff\xfa\x57\xfc\xf2\xdf\x7f\x72\xde\x1c\x69\xc6\x3b\xbe\x5b\xc3\xfc\xae\x9a\x0b\xa1\x88\xaf\x5f\x3f\xbc\x7d\xf7\xee\xe5\xc7\xaf\x5f\x5f\xbd\xfb\xeb\xa7\xcf\x6f\x3e\x7e\xfd\xfa\xfa\xfd\xa7\xaf\x5f\xf3\xee\xe4\xd6\x30\xe7\xf2\x6b\x58\x5f\x52\x17\x19\xc5\xbe\x16\xcf\xaf\xc7\xb3\xd8\x3e\x33\xaf\xbf\x4c\x5d\xe2\xf3\x64\x0f\xe5\x27\xa4\xe9\x03\x75\xb1\x30\x15\xd5\x5c\xab\xb5\x0a\x7c\x32\x3c\x9a\x62\x0a\x8a\x60\x7d\x71\xca\xb7\xaf\xf4\xf3\xbe\xff\xfa\xe1\xd3\xe7\x8f\x6f\x5e\xfe\xe5\xab\xeb\xd8\xf0\xe6\x63\xfb\x37\xbf\x63\x4c\xff\xad\xbb\xf5\xa0\xcd\xce\xa6\xd0\x61\x27\x18\xf6\x6b\x39\x86\x6a\x59\xf3\xb5\xd4\xb6\xb7\x0a\xa3\x35\x6f\x7b\xaf\x77\x4d\xa6\xb1\x74\x06\xeb\xde\x19\xa1\x48\x5d\xa9\x3f\xfe\xaa\xab\x0f\xaa\xb6\x54\x6f\x9c\x36\x7f\x94\x08\xfa\x5a\x03\x5d\x94\x14\x5a\x15\xb8\xc8\x92\x8b\x8a\x67\xe0\x17\x55\x76\x2f\xac\xef\x5d\xf8\xa5\x7c\xbc\xfb\xde\x58\xc8\x77\x4e\x8a\xaf\xdf\x7f\xca\x8e\x74\xff\x77\x20\x54\xc5\x97\x33\xaf\x82\x0c\xdc\x6b\x98\x9b\x9a\xad\xcd\xd5\xa5\xbf\xbe\x7d\x97\xfd\x97\xe9\x7b\xca\x0e\x38\xc1\x31\x0d\x71\x4c\x8e\x35\x9a\xf7\xda\xc4\xf1\x66\xe5\xfe\xe1\x16\xe9\x68\x8c\x94\x24\x76\xd4\xc7\x1c\xfb\x7c\xee\xe2\x5a\xab\xbb\xbb\x48\x37\x96\x14\x7e\x8b\x22\x5e\xbf\xff\xa4\x7c\x29\x25\x21\x5b\x44\xab\xf4\x2a\xb2\xd3\x5d\x7c\xc9\x72\x01\xf7\x5e\xdd\x5a\x99\x89\x28\x9f\x3f\x58\x2e\x1b\xe9\x8e\x67\x05\x23\xdd\x59\x7c\xb4\xec\x4e\x8f\x88\xff\x16\x5f\xce\xbc\xd7\x41\x5b\x7f\x39\x7b\xe6\x16\x68\xbc\x73\x7a\x96\xdf\x39\xb9\x47\xba\x86\x52\xde\x3f\xcf\xa5\x3d\x3f\x0f\x54\xab\xff\x6b\x30\xf8\xb1\x1e\xe6\xde\x37\xd9\x61\xd1\x99\xf8\x5b\x74\x41\xdb\xc4\xf8\xaf\x81\x1e\x66\x09\x8b\x81\xd4\x60\x25\x48\x3d\x33\x48\x69\x92\xd4\x20\xd1\xc1\x16\x5a\x18\x64\x92\x4b\xf6\xb9\x41\x82\x2b\x69\x9b\xda\xbc\xe0\xfa\x12\x09\x36\xe5\x45\xce\x7b\xfa\x3c\x25\x3e\x92\x47\x24\x88\x52\xea\xa7\x5c\xa0\x94\x8b\x8d\x2e\xea\x62\xa3\x02\x4b\x87\x41\xc2\xac\xc1\xdc\xe8\xe7\x3f\x5c\x57\x57\x4b\x59\x1a\xf3\xfb\x6c\x89\xf9\xbf\x0e\xd2\xbf\x46\xfe\x0d\xa9\xd9\xb6\x98\x1b\xe2\xad\xf6\x6d\xe0\x5d\x46\xfc\xcc\x78\xfe\x4e\xcd\x9e\x3b\x8d\x79\xbc\xce\x0c\xd2\x23\x7d\x2f\xa9\xb2\x34\x92\xe3\xf9\xec\xee\xfd\x41\xe9\xdd\xb8\x7e\x1e\x4e\x62\x89\x7a\x51\x5d\x42\x9e\xb5\xf6\x7f\x6a\x4b\xf9\x9b\xf9\x2a\xe5\xda\x5f\x71\x0b\xf3\x60\x40\xfc\x3c\x5b\xe4\xe9\x9b\x11\x6e\xbf\xe2\xf9\x60\x24\xdf\xd0\x8a\xb2\x2e\xcb\x24\x4f\x7e\xf8\xd5\xce\x96\x99\xde\xd2\xef\x06\xc3\x46\x28\xd5\x77\x79\x65\x15\xfc\xaa\xdc\xa8\x4e\x85\xc8\x83\x5e\xe3\x6c\xd8\xd3\x58\x8c\x53\xbf\x8b\x38\x77\xd5\xa5\x75\xbe\xd0\xad\xf3\xf0\xec\xf4\x1f\xee\x3a\x13\xe1\x26\xa9\x8c\xa0\x68\x50\x34\x28\x1a\x14\xed\x58\xf8\x08\x14\x0d\x8a\x56\xfb\xf6\x0f\x87\xa2\xd5\xbc\x29\xe8\x18\x74\x0c\x3a\xe6\x7f\xa0\x63\x89\xfc\xa0\x63\xd0\x31\xe8\x18\x74\x0c\x3a\x06\x1d\x8b\x7e\x39\x40\x3a\xe6\xef\xbd\x7a\xe9\x8c\xf5\x16\x4b\x67\xb8\x1b\x8f\x70\x12\xfe\xe1\xda\x1d\x47\x7f\xbe\xfd\x20\x6e\x36\xb6\xd0\x74\xcb\x96\xea\x42\x18\xb7\x6e\x94\x94\x81\x17\x25\xc5\xb5\xd7\xb4\xbd\x28\x60\xa6\xb4\x37\xa6\xee\xfa\xd6\xbd\xfd\x60\x39\x07\x1a\x1b\x53\xa8\x96\x65\xcc\x35\xd5\x96\x0b\xf1\xc1\x58\x58\x8a\x6f\xf5\xe9\x74\x40\xae\xe7\x9d\x6d\x08\xf9\x63\x6d\x58\x32\x68\x0a\x9c\x6f\x3e\x84\x5a\x5d\xd9\x21\x00\x63\x89\xb2\x6b\xaa\xdb\x23\x63\xca\x20\xa8\x61\xe4\x43\x96\x17\xda\x30\xd5\xac\xad\x33\x2d\x60\x1c\xd3\x04\xdf\x17\x81\x9a\xf4\x65\xfa\x94\xf3\xbb\x54\x1f\xa4\xbb\xac\xef\xc2\x23\x9c\xfe\xf3\x75\x03\xf9\x86\xdc\x46\xcc\x55\x5d\xdc\xb8\x05\xee\x86\x4c\x0b\xcc\x7a\xa4\xfb\x88\x97\xb7\xee\x76\x54\xb9\x10\xbf\x3b\xa9\x89\xf7\xd2\x7b\xd2\xea\xd2\xdb\x96\x51\x58\xfc\xef\xdc\xa0\xad\x51\xcd\x1c\x88\xf4\x71\xee\x2d\x14\x6e\xdb\x2f\xd8\xe4\xe5\xdd\x93\x1e\xb9\x54\x14\x0f\xa4\x92\x39\x86\xe3\xb5\x28\xdb\xd8\x98\xad\x49\x8e\x99\x21\x42\xe3\x2b\x4b\x6d\x07\xb0\xb2\x9b\x4e\xf2\x86\x35\x25\x59\xa5\x86\x35\xb9\x77\xe3\x7c\xb2\x1b\x12\x83\x8f\xe5\x2f\xd5\x36\x15\x75\xb9\xbe\x4b\x2b\xe7\x60\xc0\x31\x58\x1b\x8b\xe7\xa1\xb9\x48\xbd\x73\xe3\x8a\x51\x04\x51\xa6\x53\xad\xd1\x7f\xff\xf3\xcb\xd9\xbd\x7c\xfc\x72\xf6\xfc\xcb\xd9\x42\x2e\x5c\x7b\xee\xc5\x97\xb3\x67\x5f\xce\x02\x65\xe9\xfe\xf4\xe6\x1f\x1b\x67\xd0\xf3\xec\xcb\x99\xab\xc8\xdd\xef\x56\xaa\xf3\xba\xb9\x5f\x7a\x0b\xcf\xdd\x6f\x63\x6b\xcf\xcf\xfe\xf5\xb7\x78\x76\x39\x03\xbc\xc2\x62\x4d\x3d\x27\x91\x3f\x1a\x12\x65\x23\x22\xb1\xeb\xa8\x48\xd4\x1a\x19\x89\xba\xa3\x23\xb1\xc5\x08\x49\xd4\x1b\x25\x89\xaa\x91\x92\x48\x8e\x96\x4a\xc6\xcc\xc1\x86\x07\xb7\xcd\x79\x2f\xed\xb2\x7d\x16\xa2\x78\x74\x5d\x7e\x7a\x72\x87\x45\xf1\x00\x2d\xfd\x04\x52\x77\xd7\x68\xa8\x16\x9e\x52\x32\x60\x0b\x8f\x29\x18\xb6\x89\xa2\x9d\x96\x22\x61\x08\xae\x3e\x64\x3a\xfd\xe2\x00\x6b\x03\x71\x7e\x67\xac\xe4\xb9\x7b\xda\xb9\x17\xa7\x5d\xb1\xee\xd2\x07\x66\xf7\x14\xc6\xf3\xfc\xf5\xb7\x4f\x9f\xf3\x02\xf8\x88\x8a\x6d\x85\xa2\x6a\x6b\xa1\x48\x98\x90\x3e\x4f\xd8\x8e\xe6\x24\xe3\xa9\x4c\x37\x58\xa8\xf3\xdc\xde\x67\x42\xfe\xc4\x2f\xfa\xed\x87\x97\xef\xde\xfd\xf6\xea\xeb\xc7\x97\xef\xff\x54\x7c\xe5\xde\x93\x0a\x86\x7e\xaf\xde\xbe\xfe\x98\x7d\x62\x22\x16\x13\xcd\xad\x79\x1f\x54\xcb\xfa\x6e\x98\x39\x11\x1e\xa2\xec\x7f\x7f\xf3\xf2\xbf\xde\x7c\xfd\xf0\xf2\xd3\xa7\xdf\x7f\xfb\x98\x09\xf8\x93\xce\x3f\x9d\x6c\xc1\x15\xe4\x46\x95\x88\x2e\xee\x2f\x9f\xff\x9a\x53\x29\x13\x51\xaa\x9c\x43\x86\xb9\x07\x25\x2f\xfc\x2f\x9f\xff\x5a\x75\xcd\x7f\xf9\xfc\xd7\xd2\x2b\x2d\xbc\x94\xfc\xdf\x22\x46\x90\x41\x03\xde\xa7\x34\x0a\x8f\x28\x09\xb4\x23\xc2\x31\xe1\x68\x7c\xa9\x0c\x95\xa1\x92\x5b\xcd\xfc\x51\x86\x65\xab\xf6\x26\xb7\xb9\xf4\xb4\xdc\xc5\xe5\x55\x26\x22\x4f\xad\x5d\x37\xa2\x10\x72\x04\xbf\xe5\xa2\x0e\xef\x93\xbf\xf1\xa5\x6a\xcf\xad\x28\x45\x0a\xde\xa7\x24\x1a\x87\x48\xb7\x3b\x8b\x9b\xbc\x6b\x8b\x8f\x00\x0b\x0f\x0b\xc7\x47\xba\x36\xb8\xd1\x72\xfb\x99\x78\x3a\xce\xf3\x3a\x37\xd6\x99\xe0\x1f\x99\x84\xc6\xb5\x52\x72\xda\xc0\xf2\xa4\x5c\xc6\x53\x27\x29\x69\xcf\x8b\x53\x5a\xdc\xe4\x57\x9d\x4c\x2a\x0f\xaa\xe9\xc6\xf8\xca\x3f\x21\x48\x6e\xa9\xdd\x0c\x56\x86\xa3\x76\x2a\x53\x75\x12\x2b\x3c\xb4\x7c\xcc\x9d\x9f\x60\xd9\x68\x3b\x55\x2d\x06\xfa\x3a\x53\x26\x47\xd3\xa3\x44\xed\xd2\xab\xf7\x6f\x0b\x9b\xa6\x43\x7d\xad\xbb\xaa\x11\xeb\xe5\xe6\x9b\xa6\x67\xaa\x62\xa9\x50\x31\xd6\xf6\xb9\x79\x2f\x07\xb6\x61\x2c\xad\xf3\x44\x3a\x83\xb9\xae\xe5\xc8\x96\xe8\xd9\xb8\x1d\xe8\x3b\xc3\x58\xdf\xa8\xf3\xfb\x82\xa7\xb4\xb7\x42\xad\xd9\xc6\xa5\x9a\xb7\xc2\xb8\xc4\xc1\x8f\x1f\xde\xbe\xce\xfe\x90\xf2\x4b\x78\xb9\xfc\xae\x3e\x26\x8a\xbd\xfc\xae\x2d\xf9\x4e\xd3\x37\x3f\x7e\x5b\xfb\xe3\xb8\x7f\xa6\x42\x5f\x66\x27\x96\x72\x06\x53\xf9\xb3\x07\xa2\x74\x06\xc1\xfb\x94\x6d\x29\x6e\x72\x76\x66\x17\x73\x5e\x4c\x1d\x51\xdd\x9d\xe5\xe2\x47\xef\xe3\xcb\x83\xa0\xe1\xce\xd1\xe1\x15\x8f\xbf\x3a\xed\x4c\x7f\x57\xd5\xd7\x55\x27\x99\xed\xf8\xaa\x3a\xbd\xea\x34\x33\x3d\x60\x59\xef\x57\xbf\x44\xb3\x67\xd7\xe8\x06\xab\x93\x2f\xec\x18\xeb\x34\x81\xd5\xc9\x17\x35\x8a\x6d\xce\xb0\x5f\xe5\x0e\x16\x3d\xe4\xfd\x31\x3e\xd5\x5e\x67\xca\xb8\x7a\x0d\x5f\xd9\xfa\xc4\xc4\xdb\x9f\x40\x2e\x39\xbf\x17\x81\xb2\xcc\x25\x94\xb9\xc4\xde\x48\x5b\xad\xed\x34\xdf\xe0\xf2\x76\x71\xda\x5d\x1b\x8b\x98\x2f\x42\x78\x9b\xf1\xef\x8c\x85\xac\xe3\xc4\xbb\x74\x69\x6a\xf0\xd7\xf7\xc0\xd3\x28\xff\x92\x0a\x42\x79\xe4\x5d\xa1\x7f\xa8\x6b\x21\xa4\xb5\x7f\x25\x65\x85\xe3\xde\x7a\x62\x18\x95\xce\x37\x61\xdd\x94\x32\x85\xdf\xb5\x5a\x94\x19\x09\x37\xa9\x1d\x31\x97\xdb\x12\x4f\xf1\x44\x8a\xb5\xdc\x70\x1b\xda\xdb\xa6\x7a\xdb\xf6\xdf\xa8\x36\x5e\xa5\xe2\xeb\x6a\xfa\x92\x39\x12\x23\xfe\x7b\xea\xf6\xf3\xaa\x5b\x18\x0b\xbd\x49\xfc\x81\x6d\xea\x75\x55\x46\x09\x53\xed\xad\x9f\x45\x4b\xf5\xb7\xe4\x91\x64\x6a\x76\x3f\xab\x74\x8c\x77\xa5\xa7\xbd\xc6\x43\xa6\xbd\x7a\x3c\xed\xf5\xb3\xf8\x5d\xd5\x6c\x31\x73\x86\x1e\x86\xbe\x70\xe7\x75\x97\xd2\x76\x7a\x4d\xe7\x69\xe8\x72\x6e\x07\x51\xd0\xfc\x85\x82\x42\x97\x3f\xdc\xdf\x83\x24\x76\x9f\x39\x5b\x69\xfa\x47\xa9\x2e\x1e\xb3\xeb\x31\x98\x53\x63\x4e\x8d\x39\xb5\x13\x9a\x53\x73\x2a\xda\xab\x5a\xf3\x6a\x03\xe7\xd0\xf4\x05\x54\x4e\x4c\xd4\x9d\x7d\x73\x12\xaf\x39\xf7\xd6\x37\x54\x75\xa0\x38\xbe\xbf\xfc\xdc\xfb\x14\xae\xdc\xeb\xe9\x44\xf0\xdb\xf7\x6f\x3f\x7f\x7d\xf5\xdb\xfb\xcf\x2f\xdf\xbe\x7f\xf3\x31\xef\x8e\xc2\x09\xc2\xf8\x16\x85\xbc\xa4\x0e\x68\x06\x80\x39\x65\xe6\x94\xf3\x2e\xfc\x28\xe6\x94\x67\x47\x30\xa7\xdc\xd2\xac\x6b\xbc\x3d\xce\xbb\xab\xf4\x8a\xed\xa0\xff\x39\x5f\xa9\xf3\x3b\x4d\x97\x03\x6d\x91\x97\x68\xd4\xa9\x95\x1f\x57\x9d\xf9\xde\x3b\x21\xe6\x79\xd3\x45\x75\xa8\xaf\x1a\xf3\xbc\x1d\x14\x6a\x07\xf3\xbc\xb1\xad\x5b\xbe\x7e\xf8\x4f\xcd\xb4\xec\xdf\x35\xfb\xee\x57\xef\xbc\x74\x52\xee\xac\x70\xe6\xcd\x65\x5a\x98\x69\xe1\xbe\x4c\x0b\x97\x77\x7d\xb5\x12\x2e\xec\x62\x99\x7a\x2e\xeb\xdc\x8b\x77\x45\x31\x3d\xcd\xf4\xb4\xf7\x27\xd3\xd3\x4c\x4f\x33\x3d\xcd\xf4\x34\xd3\xd3\xad\x4d\x4f\x8f\x99\x9e\x66\x7a\xba\xfc\x6a\x99\x9e\x66\x7a\x9a\xe9\x69\xa6\xa7\x99\x9e\x66\x7a\x9a\xe9\x69\xa6\xa7\x8b\x92\x61\x7a\x9a\xe9\x69\xa6\xa7\x13\x1f\xa6\xa7\x99\x9e\x4e\x67\xca\xf4\xb4\x38\xe8\x57\x8d\xe9\xe9\x0e\x0a\x95\xe9\x69\xa6\xa7\x99\x9e\x66\x7a\xba\x28\x79\xa6\xa7\x8f\x7f\x7a\x9a\x99\x69\x66\xa6\x2b\x6b\x04\x93\xd2\xb5\x4b\x8d\xf9\xe8\x27\x9d\x8f\x66\x2a\xba\xd9\x54\xf4\x15\x33\xd1\xf2\x87\x2d\x75\x77\x0a\x2d\x5a\xcf\x20\x7a\x37\x29\xcd\xac\x2f\xb3\xbe\x07\x37\xeb\x7b\x68\x33\xad\xbd\x9c\xb4\x3a\x20\x06\xc9\x4c\x13\x33\x4d\x79\x17\x7e\x14\x33\x4d\x98\xeb\xf6\x7d\xb9\x04\xe6\xba\xc1\xe7\x68\x7a\x14\xcc\x75\x99\xd5\x6a\x58\xa8\x98\xeb\x46\x25\xc2\x34\x55\xfd\xb4\x0f\x7d\x9a\x8a\x29\x24\xcc\x75\xd9\xbd\xc8\x1c\x11\xbb\x17\x7b\x3d\x51\xc4\xee\xc5\xfe\xcc\x16\xb1\x7b\xb1\xce\x94\xd1\x4f\x42\xfc\xeb\xd9\x4f\xc1\xac\xd1\xd9\x73\xf1\x4f\x77\x0e\xc9\x03\xfd\x2f\x46\xca\xe8\x42\x19\x0e\xdc\x79\x01\x0f\xfe\xcf\x47\xca\x78\xa8\x4c\x07\xa6\xb7\xe3\x67\x34\x18\x9d\x3d\x4f\xc6\xa4\x7c\x96\x4c\x20\x75\x74\x94\xca\x58\x19\x16\xa5\x32\x1e\x66\x52\x29\x3b\x7a\x9c\x3e\xfa\x2a\x3a\x78\x18\x66\x18\xdd\x49\xe2\xec\x2b\xb7\x08\x7e\x72\x4b\xe1\xec\xcf\x57\x96\x5f\xb7\xde\xea\xb7\x86\x5f\x1a\x67\xce\x7d\x0d\xc3\xa2\x59\xa9\x3f\x3e\xfe\xf9\x8d\x7f\x98\x93\xd4\x50\x19\x2b\xc1\x25\x38\x3f\x7a\x19\xc7\x0e\x70\x7e\x0e\xcb\xd9\x4d\x4c\x19\x85\x37\x13\xa6\xbb\x90\x6b\x53\xce\x55\x5b\x16\xa7\x1e\x1d\x52\x9d\xc7\xa8\xcd\x0b\x1e\xb7\x99\xd8\xa4\x2c\xb1\x89\x32\x2a\x4f\xcc\x39\x20\x91\xdc\xb4\x38\xb9\x91\x32\x54\x86\x55\xc9\x4d\x92\xc9\xcd\xca\x92\x1b\x29\xd7\xd7\xe5\xe9\x4d\x9d\x23\x92\x09\x2a\xa3\x51\xb2\xea\xfa\xc9\x6b\x7a\xc9\xd5\x6a\x7a\xbd\xab\x4d\x24\x3e\xee\x32\xf1\x49\x79\xe2\x97\x55\x89\x5f\x66\x12\x1f\xe7\x16\x4b\x5e\x05\xab\x2a\xf5\x71\x5e\xa9\x87\xc9\x8f\xcb\x0b\x66\xa4\x8c\x07\xe6\xbc\xa2\x70\xa6\x4e\x2b\x36\x1f\x96\x65\x52\x5a\x40\x23\x65\x52\x27\x93\x59\x55\x26\xd3\xf2\x4c\xa6\x75\x32\xb9\xa8\xca\x64\x56\x9e\xc9\xac\x95\x4c\x2e\xf6\x91\xc9\xe5\x3e\x32\xb9\xea\x2a\x93\x59\xed\x17\xe4\xaa\xf2\xfd\x48\xa6\x7d\x51\xd6\xca\x8d\xa3\x97\x39\x3f\xb9\x59\xfa\x65\xbe\x50\x46\xc3\xa8\x3c\x4a\xdb\xb8\xed\xdf\xb6\x64\x26\x1d\xbd\xd2\x17\xca\x68\x52\xb3\xb5\x6e\x2b\x93\x8a\x3b\xd9\xb6\xfa\x5c\x28\xa3\xe9\x3e\xee\x24\xbf\x92\x76\x97\x49\x77\x0f\x7e\x56\xb3\xb3\x6b\x2b\x93\x8a\xb6\x7c\xfb\x4c\xae\x3a\xd3\x1b\x89\xb4\x5b\x96\x1b\x17\xca\x75\xed\xeb\xae\x56\x1b\xd9\x72\xb9\x2c\x6f\xf3\xaa\x34\xc6\x2c\xa3\x31\x2e\xeb\x2b\xbb\xed\x9f\xe6\x65\x91\x4e\x6a\x39\x93\xee\x5b\xbd\xcb\x26\xad\xde\x0e\x99\x74\xdf\xea\x5d\x2a\xa3\x8b\x3d\x67\xd2\x5d\x71\x5d\x74\xde\xea\x5d\x2a\xa3\xcb\x7d\x14\xd7\xe5\x3e\x8a\xeb\x72\xaf\xc5\xd5\x99\x98\x4a\x66\xb2\x87\xe2\xaa\x1c\x1f\xb5\x93\x49\x47\x7d\xea\x65\x1a\x79\xb5\xd8\xef\x25\xd2\x6e\xb9\x4f\xbd\x2c\x18\x43\xb4\xd6\xa7\x2a\x17\x7b\xa8\xaa\x17\x7b\xa8\xa9\x75\xb5\x47\x4b\x79\x74\x24\xfa\xaf\xca\x34\xce\xa4\x52\xe3\x5c\x64\x34\xce\x55\x6c\xd0\x55\x59\x32\xdb\x22\x8e\x64\x26\x15\x45\xb3\x43\x26\xf5\x85\x54\x3b\x99\x74\x77\x27\xf5\x35\xce\x0e\x99\xd4\x1f\xd9\xed\x90\x49\x7d\x21\xb5\x43\x26\xf5\xe5\x47\x3b\x99\x74\xf7\xe0\xeb\x0e\xed\xda\xca\xa4\xb3\x3b\x19\xef\xa3\x59\x19\xef\xa3\x59\x89\x67\xd2\x11\x03\xbe\x52\x26\xb5\xbb\xd9\x56\xf2\xe8\xac\xb0\xf6\xf1\xba\xd7\x1f\x36\x6d\xdd\xcd\xd6\x46\x2c\xbb\xdc\x47\x7d\x49\xb2\x6d\x1e\xd7\x65\xc9\xba\x53\xae\xf3\xf8\xfc\x59\x89\x9e\xc8\xcf\x74\x96\x49\xa2\x96\xe8\xb8\xae\x8f\x23\x52\x17\x59\x7e\x19\xe9\x4c\xea\xf6\xa2\x6d\x65\x52\x5a\x1b\x77\xca\xa4\x6e\x57\xdd\x56\x26\xdd\xdd\x49\xdd\x06\x62\xec\x96\x6c\x75\x2e\xa3\x51\x55\x36\x15\xf7\xd2\x56\x36\xa5\x5d\x43\x7b\xd9\x94\x0e\x80\xdb\xcb\xa6\x74\x8a\xb0\xbd\x6c\x4a\x27\x09\xdb\xca\xa6\xa2\x4b\xdd\x21\x9b\xf1\xb0\xf3\x06\xf6\x62\x8b\x06\x76\x3c\xac\x3f\xaa\xab\xf9\x32\x67\x3b\xc9\x54\x26\x6d\xb4\x18\xf9\x99\xd4\x65\xf0\x6d\x65\xd2\xdd\x9d\xd4\x1d\x9f\xee\x54\x23\xeb\x8f\x50\x77\xcc\xa6\x7e\x17\xbe\x53\x36\xf5\x3b\xf1\x76\xb2\xe9\xb2\xb5\x68\xd2\x91\xb7\x95\x4d\x97\x55\xa0\xee\x8c\x6a\x7b\xd9\x74\xd5\xfd\x25\xb2\xd9\x53\x15\xa8\x18\x86\xed\x96\x4d\xdd\xc1\xc5\xf6\x0d\x5a\x69\xb2\x93\xdd\xfb\xbe\x8b\xad\x06\x17\xe3\x92\xb5\x8c\x5b\x21\xd2\xf1\xb8\x7e\x67\x3a\xa9\x33\x52\xbb\x50\x26\x03\x77\x1d\xff\x30\x93\x4f\xdd\xae\x6e\xd7\x7c\xea\x36\xdd\xbb\xe6\x53\xb7\xb5\xdb\x35\x9f\xba\x83\x8a\x5d\xf3\xa9\xcb\x19\x77\xcc\xa7\x6e\x97\xb7\x63\x36\x7b\x7a\x3a\x75\x9b\xd5\x1d\xb3\xd9\x53\x1d\xd8\x53\x15\xa8\x0b\x9b\x77\xcc\xa6\x6e\x2f\xb1\x53\x36\xa5\xd2\x60\xa2\x5c\xd5\x49\x79\x9a\x9b\x72\xa9\x1a\x98\xb8\xed\x5c\x75\xd2\x97\xb9\x49\x97\x0e\x80\xa7\x75\x3a\xcd\x4b\x65\x9c\x9b\x72\xe9\x98\xb7\x66\xca\xb3\xbc\x94\x4b\x26\x07\x1b\xaf\xe2\x2f\x9a\x17\x6c\x77\x17\xc3\x55\xbc\xcb\xeb\x28\x8f\xeb\x16\x4b\xe5\x3a\xf6\x5e\xb6\x7c\xb9\xfe\x0e\x15\xff\x80\xd7\xf2\x56\xdd\x2c\xed\x68\xbf\x8a\xe5\x67\x77\x36\x56\x9c\xd7\xc9\x9f\x70\xfe\xe1\xa6\xef\x4e\xde\x0f\x83\x6f\x67\xf1\x6f\x47\xb9\xdf\x8e\x73\xbf\x0d\xd3\xbd\x88\xbe\x9d\xe6\xe4\x35\x8d\xf2\x4a\x7c\x3b\xca\xfd\x76\x9c\xfb\x6d\xde\x3d\x4c\x0b\x72\x9b\x05\xdf\x5e\x45\xdf\x06\xdf\x8d\x87\xb1\xef\xa2\xeb\xba\x8e\x7f\x3b\xca\xfd\x76\x9c\xfb\xed\x24\xf7\xdb\x69\xee\xb7\xb3\xdc\x6f\x2f\x72\xae\x2c\xfc\x6e\x1c\xfb\x2e\xbc\xda\xf1\x28\xfe\xed\x28\xf7\xdb\x71\xee\xb7\x93\xfc\x6f\xbd\xb6\x21\x3f\x21\xff\xc7\x82\xf4\xbc\x1f\xf3\x93\x9d\xe6\xde\x44\xf8\x20\x26\xf1\x6f\x2f\x72\xbf\xbd\x0c\xbe\x9d\x46\xdf\x5e\x46\xc5\x90\xf8\x76\x94\xfb\x6d\x78\xd9\xb3\xf8\xb7\x93\xdc\x6f\xa7\x99\x6f\x17\xde\x4b\x15\x7c\xef\x54\xf3\xe0\xad\xfb\xf3\x9b\xe2\x37\x6e\x18\x7f\x33\x12\xca\x39\x3f\xd5\xa8\x49\x73\x06\x78\x99\x9d\x67\xaf\x8d\xf9\xbd\x34\xe3\xfb\xcf\xfc\xed\x67\xff\xed\x36\x15\x23\x65\x14\x14\xbb\xfb\xc7\x38\xfe\xc7\x24\xfa\xe3\x52\x19\xc6\xfe\xba\x52\x86\x17\x89\xbf\xae\xa3\xbf\xae\xe3\x47\xba\xd4\xce\xbd\x71\xf1\xb7\x67\x7e\xe6\xa3\xa7\xcc\x7c\xbc\x63\xe6\x97\x89\xcc\x2f\x13\x99\xef\x74\x61\x93\xbe\x5e\xd8\x34\x7e\x61\xfb\xcf\x7e\xf6\xb4\xd9\x5f\x3c\x6d\xf6\x97\x4f\x9b\xfd\xd5\xd3\x66\x7f\xfd\xa4\xd9\x8f\x87\x4f\x9b\xfd\xe8\x69\xb3\x1f\x3f\x6d\xf6\x93\xfd\x67\xef\xff\x35\x51\x62\x7f\x4c\x95\xf4\x85\x3d\x41\x7b\x58\xef\xc2\x9e\xa0\xa5\xac\x77\x61\x4f\xd0\x86\xd6\xba\xb0\xab\x6d\xbb\xdc\x58\x1a\xd7\x4f\x21\x66\x32\x22\xef\x77\xcf\x45\xd7\xb7\x72\xf0\x3d\xc2\x02\xbd\x97\xdc\x86\x2e\xed\xf9\xe2\xec\xb9\xd0\x37\xcb\xa5\x97\xf0\xfd\xe6\x46\xaa\x6b\x2d\xf3\xdd\x52\xda\xc1\x49\xe2\x4c\x5d\x2c\x4c\x69\x59\xde\x40\x73\x18\xad\x1c\x17\x67\xaa\x6e\xe8\x8f\x2b\x63\x63\x0d\xd4\x8d\x7d\xe7\x1c\xe0\x06\xe8\x09\x7f\xde\xd8\x77\x52\xb7\xb5\xb9\xeb\x44\x31\xb0\x8d\x7b\xa9\x0f\xbe\xcb\x9b\x3b\xc3\xb8\x77\x0e\xb6\xcd\x4d\xe2\xd8\xd0\xb4\x62\xb0\x32\x16\xd2\x39\xe2\x77\xff\x60\xff\xa0\xb9\x34\xed\xc1\x42\x33\x9d\x9f\xfe\xfb\xc3\xc7\x37\xff\xf9\xf6\xff\xfe\xfa\xe1\xe5\xe7\x5f\xff\x16\xda\x53\xf9\x17\x7f\xbe\xbe\xd7\xc2\x93\xbe\xb9\xfe\x21\x83\xb5\x34\x07\xff\x30\xac\xcc\x55\xfa\xb6\x5d\xf9\xe9\x1a\x6b\xfb\x7c\xae\x6b\xe7\x37\x9a\x1e\x3f\x7e\x6e\xe8\xb7\xf9\x27\x48\x7b\xee\x9e\xa0\x4b\x5b\x59\x04\xa7\x48\xfd\xd6\x30\xe7\x72\xa0\x1b\x0b\x39\x50\x97\x4b\x63\xae\xba\x66\x54\xce\xe9\xbf\xfc\x12\x1e\xf5\x20\x75\x7b\xf0\x8f\xb5\x57\xd2\xc1\xb7\xb7\x52\xb5\x37\xa6\x1c\x7c\x53\x6d\xe9\xfe\xf2\xeb\xe3\x5a\x9a\xff\x15\x06\x7a\x7d\xe1\x94\xe2\x33\xbf\x12\xfc\xe9\x2f\x9f\x5e\xbe\x88\x17\xab\xeb\xbd\x37\x58\x6f\x96\xcb\xc1\xda\x34\xbe\x39\xcf\x71\xb0\x90\xea\x62\xa9\xe9\x6e\xee\x93\xe1\x2a\x38\xd4\xf5\xf5\x30\xa5\x25\xcd\x07\xe9\xd4\x92\xb3\xf9\x7a\xf3\x62\x36\x1c\xae\x9e\xad\xe4\xca\x30\x1f\x9d\x7f\xff\x45\x7b\x26\xd7\x77\x72\x25\x4d\x75\x39\xb0\x6c\xc3\x54\xbf\xc9\x17\xa3\x3f\x85\x65\xbd\x52\xef\xe5\x40\x5b\xfb\x5e\x5d\x1b\x5b\x5b\x0e\xe6\x77\xaa\xe6\xd6\xc7\xc4\xe3\xf6\x9d\x8f\x7c\xe7\x40\x37\x37\x3d\x4c\xc5\x94\xea\x62\x60\xe8\xcb\xc7\xc1\xda\x30\xed\x44\x69\x98\xd2\x32\x96\x0f\x6e\xf9\x27\x0b\xcf\xb2\x4d\xa9\xae\x34\xfd\xdb\xc0\x0f\xbd\xed\x54\x23\x6d\xb1\x94\x03\x5b\x5b\x49\x63\x63\xa7\xee\xd6\x33\x30\xc9\xdc\xef\x68\x18\xbb\xe1\xf1\x9f\xf2\x6e\x77\x1c\xdd\xae\xbd\xb4\x06\x73\x6d\x7d\x27\xcd\x81\xb5\xd1\xfc\xe7\xf3\xf9\xdd\xa7\xaf\x6f\x5e\xbd\xfe\xf5\x8d\xf3\xff\x9f\x5e\x7e\xfd\xfd\xed\xe7\x5f\xbf\xbe\x7c\xf3\xe9\xeb\x68\x7c\xf5\xf5\x4f\xaf\xfe\xf2\xf5\xd3\xaf\x2f\xc7\xb3\x8b\x67\x85\xc7\x8d\x67\x17\xc1\x71\x93\xab\x69\xfe\x71\xaf\x7e\x7d\xf9\xea\xd7\x97\xe3\xe1\xd7\x0f\xbf\xbd\xfb\x7f\x46\x93\xe1\x2c\x76\xd8\xc7\x5a\x99\x7e\xac\x95\xe5\xc7\xc2\x0c\x83\x32\x78\x70\xc9\x52\xf8\x97\xeb\xe7\xe7\x3f\xd6\x7a\xaf\xaa\x77\x8a\x6f\x21\xe9\x34\x71\x1e\x03\xf3\x2a\xe4\xda\x34\x7e\x3c\x46\x4d\x91\xd4\x9d\x9a\x35\x58\x58\x66\xe6\x35\xce\xbc\x27\xbf\x6b\xfa\x6f\x0f\xd2\x5c\xaa\x8f\x89\x37\xe2\x4e\xaa\x4b\xfb\xee\x7f\x9c\x57\x7e\x31\x88\x35\x6d\xa1\xeb\x70\x70\xa0\x9b\x75\xd8\x12\xdd\x4b\x53\x97\x4b\xd7\x02\x27\x75\xe7\xa9\x2b\x76\x5e\x4c\xd3\x58\x2e\xa5\x99\x68\x55\x43\x67\x7c\xff\xdb\x82\x2d\xf4\xb4\xd0\xb4\xd0\xb4\xd0\xb4\xd0\xb4\xd0\xfd\x6a\xa1\x2f\x69\xa1\x69\xa1\x69\xa1\x69\xa1\x69\xa1\x7b\xda\x42\x5f\xd1\x42\xd3\x42\xd3\x42\xd3\x42\xd3\x42\xf7\xb4\x85\xbe\xa6\x85\xa6\x85\xa6\x85\xa6\x85\xa6\x85\xee\x67\x0b\x1d\xdb\x62\x4a\x0b\x4d\x0b\x4d\x0b\x4d\x0b\x4d\x0b\xdd\xaf\x16\x7a\x44\x0b\x7d\xc0\x2d\x34\x6d\x2c\x6d\xec\x89\xb6\xb1\x6f\x3f\x3c\x5c\xbc\xde\xa8\xcb\x4f\xb6\x3a\xbf\x7f\x91\x38\xb6\x8f\xed\xec\x98\x76\x96\x76\x96\x76\x96\x76\x96\x76\xb6\xdb\x76\x36\x7f\xf7\x39\x8d\x2e\x8d\x2e\x8d\x2e\x8d\x2e\x8d\x6e\x17\x8d\xee\x84\x76\x96\x76\x96\x76\x96\x76\xb6\xe7\xed\x6c\x2f\xdb\xce\xfc\x08\x2b\x34\xa4\x34\xa4\x34\xa4\x34\xa4\x34\xa4\x75\x1b\xd2\x29\x6d\x67\x59\xdb\xb9\x4b\xc3\x46\x6b\x45\x6b\x45\x6b\xd5\x6a\x6b\x85\x87\x02\xad\x15\xad\x15\xad\xd5\x61\xb4\x56\xf8\x09\xd0\x5a\xd1\x5a\xd1\x5a\xf5\xba\xb5\xf2\x8d\xac\x5e\x69\xd6\x2b\x43\xbf\xd5\xbe\x7d\x50\x4d\x75\x15\x1a\x57\x45\x56\xa7\x5e\x43\x76\x23\xf5\xf9\xdd\x4a\x35\xef\x63\x7e\xc6\xe6\xbd\x1c\xcc\x35\x6b\x30\x52\x66\xc9\x88\x4c\xb3\xed\x4e\xbb\xd8\xee\xb4\xcb\xed\x4e\xbb\xda\xee\xb4\xeb\xad\x4e\x8b\x2d\xed\xaf\x73\x5a\xf4\x6c\xfe\x98\x3a\x3a\x6e\x26\xeb\x9d\x11\x33\x46\x57\x75\xf5\x9b\xdb\x4a\xb8\x75\xce\x7b\xf4\x2b\x4d\xff\xf3\xe6\xc6\xa9\x3f\xb6\xb4\x92\xb1\x06\x27\x67\x7e\xed\xb8\xd7\xd6\x6b\xb9\x78\x75\x27\xe7\xf7\x56\xa2\xde\xe8\x86\xfd\x72\xbd\x5e\x6a\x73\xa7\x42\x27\x7e\x0f\x6f\x2e\xb8\xec\x6d\x2f\x62\xd6\xc6\x45\x44\xe5\x97\x57\x1a\xee\xba\xfb\x6d\xaf\xc3\x7f\xa7\x47\x8a\xef\x9e\x7b\xf6\xc6\x79\xbb\x35\xfd\x9b\x78\xb9\xfc\xae\x3e\x5a\x1f\x36\xcb\xe5\xdb\x95\xfa\x4d\x5a\x62\xae\xea\x62\x63\x49\x61\x69\xdf\x74\xed\x56\x9b\xab\xba\x2d\x6e\x54\x7d\xf1\x5d\x5b\xd8\x77\x4a\xf0\xe2\xba\x71\xa7\xdd\x94\x7e\xbf\x93\xba\xf8\x26\x75\x69\xaa\xb6\x93\xa0\xd3\xc8\x3b\xff\x75\x3a\x5d\xf7\x7c\x5b\x5a\xcf\xc4\xed\x46\x77\xfb\x09\x75\xa9\xd9\x8f\x62\x6e\x6c\x96\x0b\x71\x63\x4a\xf5\x5e\x68\xba\x98\x1b\xfa\xdf\xfd\xdf\xc5\x77\xcd\xbe\x13\x77\x86\x65\xeb\xea\x4a\x0a\xe3\x41\x9a\xa6\xb6\x90\x96\xf8\x7e\xa7\xcd\xef\x84\x6a\x4a\x61\xca\x7f\x6c\x34\x53\x2e\xc4\xad\x61\xba\xb9\xa8\x4e\x12\x4b\x63\xb3\x10\x6b\xd3\x78\xd0\x16\xd2\xb4\x92\xd7\x39\x4d\xdc\xf1\x07\x63\x21\x3e\xc9\xf9\xc6\x74\xae\xe4\x83\xb1\xd4\xe6\x8f\xee\x4d\xcf\x55\xe7\xb6\x55\xef\x21\xb9\xfe\x77\xc2\x36\xc4\x46\x97\x3f\xd6\x72\x6e\xcb\xc5\xf2\x51\xdc\xaa\xda\x32\x91\xf4\x24\x99\xb4\xd4\xe7\xe6\xa3\xeb\x9d\x27\xe6\x77\xaa\xee\x14\xe7\x9d\xf1\x5d\x2c\x54\x5b\x75\xb3\xb8\x71\xae\x7e\xee\xdc\x94\x5c\x08\xd5\xf2\x7e\xd0\xac\xe0\x3c\xb9\x48\x26\x3e\xeb\x32\x71\xd7\xf2\xfa\x8d\x23\x4f\x3e\xaa\xb6\x7c\xa7\xad\x34\x5b\xe8\x52\x2e\xdc\xbb\xbe\x91\xc2\xde\xe8\x72\x21\x16\x72\x2d\xf5\x85\x93\xbd\xa1\x0b\xfb\x4e\x8a\xf9\x72\x63\xd9\xd2\x8c\xa5\x35\xf6\x5c\xae\x5f\x2e\xdc\xc3\xec\x3b\xcd\x12\xaa\xf9\x6d\xb3\x92\xba\x2d\xd6\xa6\x2b\x80\x2c\xe1\xdb\xc4\xff\x62\x89\x95\xa1\x6b\xb6\x61\xba\xc7\x1a\xc6\xd2\xc9\x6d\xee\xb4\xf5\x73\x5b\xac\xa4\x6d\x6a\x73\x2b\xc8\x2a\x6c\xef\x63\x99\x4d\x3c\x53\xee\xf6\x33\x9b\x87\x7d\x8e\xf0\xde\xb9\x78\xae\x53\xcf\xf6\xf9\xec\xa5\xf0\xb4\x8c\x57\xc9\xe7\x52\xa8\xf3\xb9\xb1\xd1\x6d\xa7\x98\x13\xd5\xd2\x51\xcc\xde\x03\x58\x68\xa6\x9c\xdb\x86\xf9\x28\x8c\xef\xba\x34\xad\x3b\x6d\xad\x88\x8f\xf2\x56\x9a\xce\xc5\x44\x57\x7a\xa7\x9a\x0b\xa9\x3b\x17\xfa\x6d\xa3\x2d\xa4\x9b\xca\xca\x30\xa5\x58\x48\x5b\xd5\x96\xee\x75\x3a\x8f\xdb\xbd\x03\xa7\xa7\xdb\x98\xd2\xbb\xff\x28\xdd\xe8\x82\x7d\xe7\xf1\x0e\xea\xbc\xef\x5e\xde\x49\xca\x5d\xbd\xa7\x97\xca\xac\x93\x94\xc7\x8a\xef\x84\xde\xf3\x46\xd0\xb9\x4e\xf7\x75\xff\xe4\xd5\xde\xa5\x7c\x90\xcb\xb0\x1a\xf9\x77\x9a\x48\x75\x6d\x6a\x86\x5b\x41\xdd\xc4\x9c\x0e\xc6\x7b\xdd\xc2\xf7\xdf\xb9\x62\xc3\x5c\x48\xd3\xbd\x80\xe4\x7b\xe8\xb5\x1f\x96\x74\xff\xe5\x74\x5b\x4a\x5c\xe0\xe5\x77\x84\xb1\x0e\xea\xda\x55\xf6\x77\x32\x4a\x70\x30\x30\xe5\x5a\xd5\xcc\xc1\x4a\x5d\xde\x1a\xe6\x4a\x2e\x06\x9b\xf5\xc2\x29\x53\x71\xa7\x5a\xe2\x46\x4a\x5d\x98\x72\x65\x3c\x78\x0d\x9f\x71\x2b\xa2\xfe\x51\x3c\x78\x1d\xa4\x18\x29\xa3\x69\xa2\x21\x71\x4b\xe4\x95\x77\x3b\x56\x74\xa3\x72\x21\x6e\x1e\xc5\xc7\x3f\xbf\x11\x77\xaa\xbe\x58\x3a\x3d\x62\xf4\x10\x85\x69\xd8\x6e\x79\xf9\xef\xf5\xf2\x51\xd8\x77\xa6\xb1\xf9\x76\xe7\x9c\x91\x6c\x31\xaa\x92\x5f\x18\xd2\xd2\x7f\xb1\x83\x42\x17\xce\x0b\xaf\x6a\xee\x36\x3b\xa1\x26\x9f\x8e\xb8\xd5\x96\x5e\x93\xe0\x8e\x1c\xd5\xb5\xe6\x0e\xa5\x4c\xe5\x8b\xfe\x72\x99\x7a\x92\x4e\x5b\xb4\x56\x2d\x4b\x2e\x9c\x67\xa4\x46\xcf\xc5\x12\xaa\xed\x36\x73\xee\x3e\x3e\x61\x6e\x74\xe1\x8c\xd7\x92\x17\x3d\xa9\x73\xd5\x42\x37\x6c\xe1\x8c\xd1\xa4\x5b\x25\xee\xa3\xc2\xf6\x05\xb7\xfb\x95\x77\x55\x62\x6e\xca\x85\x33\x9a\x57\x97\x96\x77\x1b\x7e\x83\xeb\x8c\x9b\xad\x64\xe6\xd3\x27\xcc\x7c\x7c\x88\x8f\xab\xd6\xd3\x6a\x7c\xd1\x51\x57\x38\x08\xba\xc2\xb6\x2f\xbc\xd6\x93\xee\xe3\x85\xcf\x3a\xb9\xf0\x48\xe9\xb4\x7d\xbd\x95\x8d\x5c\xcf\xae\xf7\xb2\x93\xeb\x75\xe4\x58\xeb\x97\x7a\x75\x18\x97\xea\x8a\x94\xca\xd6\x6d\xfb\xbe\xce\x4d\xbf\xb2\x21\xda\x2d\xfd\xca\xa2\x9e\x07\xbf\xa9\xfa\x42\xac\x0c\xcb\x4e\x6b\xa1\xf0\x21\x04\xaa\x2a\xae\x8e\xc6\xbe\x8a\xab\x7c\x98\xff\xff\xff\xfb\xff\x35\x7c\x9c\x41\x17\xb5\x94\x76\xcb\x4f\x75\x5c\xb3\xf5\xdf\xe9\x9a\x83\x81\x4e\xeb\xd7\x5e\xaf\x03\xe8\xe7\xb5\x5f\x1f\x4a\x5d\x71\x55\x77\x0e\x5e\xca\xe3\x5c\xad\xe1\xa5\xc3\x1a\x28\x8f\x3d\x60\xdb\xc5\xa8\x73\xac\x4c\x26\x9d\x01\x9c\x71\x97\xe8\xc9\x0f\x00\xd7\xef\x41\xed\x34\x6c\xb6\xfb\x7f\x9d\x4f\x3b\xf8\xf6\x2f\x64\xa6\x78\x6f\xfe\x59\x6c\x70\xec\x5f\x6e\x34\x76\x4a\xbd\xaf\x01\x0c\xdc\x58\xb1\x0a\x32\x0b\x90\x5f\xeb\x2f\xcd\x2c\xe8\xd5\x3a\x49\xb9\x1b\xbc\xe4\xa4\xdc\x0d\x5e\x9a\x05\x91\x2f\xc3\x94\xdf\x7b\x53\xb9\x5e\xa2\x9a\x0f\xeb\x7d\xec\x19\x56\xc4\x44\x06\xb7\xa6\xb1\x12\x73\x63\xb5\xda\xe8\xee\x77\xfa\x37\xaf\x7e\x4b\x75\x7e\x27\x0c\xfb\x2e\x86\x39\x67\x41\xcc\xc4\xbc\xfa\xa1\x86\x35\xc4\x15\x4f\x6b\x75\xde\x90\xea\x1c\x20\x0e\xa9\xa3\x6b\x3b\x23\x12\xa3\xa7\xc4\x21\xfe\xec\xe7\xe1\x0c\x1c\xfd\x79\xd7\x83\xba\xe0\x6e\x86\xba\x9d\x33\x10\x7f\xd2\xf9\x20\xaf\xfc\x00\x21\xdf\xe8\x50\x21\xdf\xe8\x50\x21\xdf\xe8\xc0\x20\xdf\xe8\xc0\x20\xdf\xe8\x70\x20\x5f\x0d\xf2\xd4\x97\x4b\xed\x74\x3e\x6b\x5a\x5b\xc0\xf5\x8f\xd8\x4c\xc3\x49\xda\x43\x40\x36\xb1\x8b\xae\xd7\x59\xf5\xb3\xc0\x0f\x06\x91\xc5\x61\x42\x17\x90\x3c\x44\x70\xfe\x62\xb8\xfb\x49\xb8\x38\x51\x5d\xaf\xfd\x18\xee\x56\x10\x02\x34\x58\x39\xbd\x5e\xbf\x57\x57\xee\x9a\x49\x7f\x97\x70\x70\x9d\x8b\xd4\x09\xc1\x29\xde\x49\x31\x58\xf7\x65\x33\x1c\x4e\xe4\x0b\xe1\xc6\xed\x1f\x0c\x85\xfb\xf7\xdc\xfd\x73\x36\x08\x96\xf8\x46\x09\x26\x30\x9f\x1b\x30\xdf\x3b\xe0\x5f\xcf\x6a\xe7\x32\x4b\xe6\x72\x59\x99\xcb\x64\x9b\x5c\x2e\xe3\xb9\x5c\x2a\xe3\xca\x5c\xa6\xcd\x73\x71\x93\x8d\xe7\x52\x5d\x62\xb3\x6d\x72\x99\x25\x73\x19\x0d\x87\x95\xf9\x5c\x44\xf9\xb8\xff\xf9\x5b\x50\xbf\xbc\x68\xb2\xf3\x3b\x55\xd7\xe5\x32\x5d\x9f\x96\xaa\x2d\xad\x30\xe0\xff\x58\x19\x5d\xfe\xc7\xfd\xc4\x0a\x57\xe9\xea\x7e\x5d\x0b\x56\xcb\x26\xd3\x34\xe5\x52\xaa\x96\x4c\xa7\xb9\x52\x7f\xbc\xf2\x72\xfb\xe4\xca\xde\xd8\x75\x3e\x38\x0f\xea\xfa\x3a\x5c\xa8\xae\xe9\xa5\x47\x0e\x07\xea\x72\x7d\xa7\x86\x97\xf3\x10\xfb\xdd\x19\x6c\x28\xe3\xa1\x77\xb9\x11\x6e\xd8\xf7\x35\x5c\x2b\xa3\x8b\x27\xbe\x86\xf1\x50\x19\xcd\x0a\xae\x41\xfd\x26\x75\xfb\xa5\xf9\x2d\x42\x2e\xe2\x6c\x61\xcc\xef\xdd\x95\xd2\xff\x4c\x55\xa8\xc4\x9a\x56\x77\x65\xfd\xe3\xda\x7d\xfc\x37\x86\xb1\x94\xaa\x9e\xaa\xc7\x67\xb7\x4b\xf7\x9a\x83\x7d\x00\xff\x4c\x9f\x66\xd9\xa6\xa6\x7f\x2b\x3a\x4b\xbb\x55\xe7\xb2\xfe\x69\xee\x50\xca\x5b\x35\xae\x9a\xdf\xf2\xce\x53\x4d\x53\x7d\xcc\x3b\x6d\x29\xed\x46\xe7\xac\xd5\x8d\x25\x07\xee\xf6\xfd\xfa\xd7\xb7\x36\x0d\x5b\xce\xed\x81\xb7\x94\x7d\x10\x6b\x8e\x77\x2d\xe6\xe4\x6e\x8b\x9a\x97\x63\xc9\xa5\xa6\x6f\x7e\xb4\x90\xbd\xa5\xab\x6b\xeb\xce\xb0\xed\x64\x9d\xc9\xcf\xfe\xa7\xd8\xa9\x95\x2f\xc0\x74\xdb\xfa\xef\x0d\xa7\x53\xd5\xda\x27\xe0\x83\xb9\xb6\xa8\x71\xa1\xcf\x52\x67\x2d\x74\x6b\x8b\x93\x0c\x47\x97\xd4\x3f\x6f\xa1\xda\xaa\x0b\xe4\x06\x73\xd5\x11\x2e\x5b\x9d\x29\x4d\x7b\xdb\x73\xa5\xbe\x58\x1b\x9a\x6e\x6f\x73\xee\xbd\x7c\x6c\x98\xad\x57\xdd\x06\x4b\x63\x1e\xed\xdb\x19\xac\x55\x77\x5b\x57\xdd\x34\x34\xcb\xdf\x38\x15\x9e\x60\x84\x01\xc8\x7d\x99\xe3\x3c\x0f\xc3\x94\xce\x03\x7c\x16\x7e\xe3\xab\xd7\xe5\x4d\xec\x3b\xdb\x54\xe5\xad\x76\x1f\xfb\x26\x71\x69\xb1\xef\xfd\x05\xc0\x03\xaf\x9e\xf9\x17\xe5\x75\x7a\xa2\xb2\xf5\xf0\xaf\x39\xc2\x3e\x2d\xbc\x83\x41\x9a\xee\x4c\xd2\x60\x1e\xdf\x04\xd3\x5a\xd2\x19\x78\xd2\x62\xe2\xfe\x36\xc1\xb6\x92\x8b\xfa\x82\x16\x13\x0d\x37\xc3\xb9\xd3\x32\x2d\x26\x1c\xdf\x9c\xb4\x6b\x9a\x4e\x41\x0e\xe4\x8f\xb5\x61\xc9\x81\x5f\x4b\x5b\xec\xc8\x6f\xd4\xf9\xbd\xd4\x17\x55\xaf\x9b\x6e\xe8\xf1\xb7\xe5\xe1\xc7\x52\xd5\x63\x7f\x6b\x6b\x4b\xce\x63\x7f\xdf\x19\x96\x3d\xf8\xf6\x3d\xf6\xcd\x77\xcd\x94\xdf\x36\xaa\xb9\x28\x7e\xb5\xa4\xbe\x59\xe5\x4a\x80\xf0\xb5\x6a\x2c\x03\x32\x6f\x4f\x50\xd1\xb7\x48\xa9\x85\x34\xc2\x6a\xd1\xe8\x54\x4b\xce\x4d\x69\x5b\x83\x68\x52\xbf\x8d\x2e\xde\x6b\x2d\x1b\x76\x9d\xc1\x59\xee\x36\xd7\xb5\x61\xda\x03\x53\xd5\x9b\x48\x26\x7b\x69\x0d\x2c\x35\xb7\xff\x4c\xdc\x7b\x42\x54\xa4\xb4\xef\x48\x99\x22\x7d\x91\xbe\x48\x5f\xa4\x2f\xd2\x57\x20\x7d\x91\xbe\x48\x5f\xa4\x2f\xd2\xf7\x24\xa4\x2f\xd4\x17\xe9\x2b\x90\xbe\x48\x5f\xa4\xaf\x40\xfa\x22\x7d\x91\xbe\x48\x5f\xa4\xef\xe9\x48\xdf\x31\xd2\x17\xe9\x1b\xd6\x4b\xa4\x6f\x9d\x72\x42\xfa\x22\x7d\x91\xbe\x48\x5f\xa4\x2f\xd2\xb7\x41\x4a\x48\xdf\xde\x48\xdf\xa2\xf5\xc6\x48\x5f\xa4\xef\xae\xef\x05\xd2\x17\xe9\x8b\xf4\x45\xfa\x22\x7d\x7b\x22\x7d\x9b\xf4\x65\x68\x65\xb4\x32\x5a\x39\xa1\x95\x2f\xd1\xca\x68\x65\xb4\x32\x5a\x19\xad\x2c\xd0\xca\x68\x65\xb4\x72\xfc\x04\xb4\x32\x5a\x19\xad\x1c\x68\xe5\x2b\x96\x54\xa0\x95\x7b\xa0\x95\xc3\x93\xbc\xe0\xa0\x81\x5e\x32\xe5\x37\xcd\xb2\xcd\x47\xc4\x76\xea\x24\xc4\x36\x62\x1b\xb1\x8d\xd8\x46\x6c\x23\xb6\x11\xdb\x07\x22\xb6\xaf\x01\xd3\x88\x6d\xc4\x76\xd1\x81\x13\xc4\x36\x62\xdb\x3f\x01\xb1\x8d\xd8\x46\x6c\x23\xb6\xd3\x57\x8a\xd8\x46\x6c\xd7\x13\xdb\xa3\x22\x9b\x68\xd4\x36\x6a\x7b\xd7\x17\x03\xb5\x8d\xda\x46\x6d\xa3\xb6\x51\xdb\xa8\x6d\xd4\x36\x6a\x1b\xb5\x3d\x46\x6d\xa3\xb6\x51\xdb\xa8\x6d\xd4\xb6\x40\x6d\xa3\xb6\x51\xdb\xa8\x6d\xd4\x36\x6a\x3b\x95\x40\x4b\x6a\x7b\x82\xda\x46\x6d\x1f\x9d\xda\xbe\x95\xaa\xbd\x31\xa5\xaf\x9d\xe3\x75\x38\x7a\xf5\x1d\x15\x37\x08\xa2\xec\x3a\xe9\x8d\x95\xa1\x32\x3c\x4b\xa4\x83\x6a\x4f\xf7\xe3\xa8\x76\x54\x3b\xaa\x1d\xd5\x8e\x6a\x47\xb5\xa3\xda\x9f\x4a\xb5\x13\xb5\x10\xd5\x2e\x7a\xa0\xda\x13\xd5\xb4\xbd\x88\xf5\xa8\x65\xd4\x72\x59\x6f\x8c\x5a\x46\x2d\xa3\x96\x51\xcb\xa8\x65\xd4\x72\x95\x5a\x1e\x13\xe2\x1b\xb1\x9c\xae\x97\x88\xe5\x5a\x05\x85\x58\x46\x2c\x23\x96\x11\xcb\x88\x65\xc4\x32\x62\xf9\x24\xc4\x32\x91\x11\x11\xcb\xa2\x07\x62\x39\x3c\x69\x2f\xab\xaf\x51\xdb\xa8\x6d\xd4\x76\xad\xb7\x18\xb5\x2d\x50\xdb\xa8\x6d\xd4\x36\x6a\x7b\x77\xb5\x4d\x30\x46\xd4\xb6\x40\x6d\xa3\xb6\x51\xdb\xa9\x34\x50\xdb\x02\xb5\x8d\xda\x46\x6d\xa3\xb6\x51\xdb\x2d\xa9\x6d\xc2\x39\xa2\xb6\x05\x6a\x1b\xb5\x8d\xda\x4e\xa5\x81\xda\x16\xa8\x6d\xd4\x36\x6a\x1b\xb5\x8d\xda\x6e\x49\x6d\x13\xa3\x06\xb5\x2d\x50\xdb\xa8\x6d\xd4\x76\x2a\x0d\xd4\xb6\x40\x6d\xa3\xb6\x23\xf1\xfc\xcd\x94\x96\x53\x31\x97\x72\x6e\x1b\xe6\x60\x65\x2c\x1a\xbc\x92\x68\xf5\xa2\x37\x19\xad\x8e\x56\xaf\xa7\xd5\x09\x71\x83\x58\x4f\x57\xcc\x23\x10\xeb\xfb\xb2\x01\x44\xf4\x23\xfa\x11\xfd\xb5\x5a\x03\x44\xbf\x40\xf4\x23\xfa\x05\xa2\x1f\xd1\xff\xd4\xa2\x7f\xc4\x5e\x4f\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\xb9\x09\x23\xfa\x0b\xb4\x08\xa2\xbf\x6e\x4a\x88\xfe\xfe\x88\x7e\x02\xfe\x20\xfa\x05\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\xb9\x09\x23\xfa\x0b\xb4\x08\xa2\xbf\x6e\x4a\x88\xfe\xfe\x88\xfe\x19\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\x88\x7e\x44\x7f\x6e\xc2\x88\xfe\x02\x2d\x82\xe8\xaf\x9b\x12\xa2\xbf\x3f\xa2\x1f\x73\x49\x44\xbf\x40\xf4\x23\xfa\x11\xfd\x88\x7e\x44\x3f\xa2\x3f\x37\x61\x44\x7f\x81\x16\x41\xf4\xd7\x4d\x09\xd1\xdf\x1f\xd1\x8f\xc7\x25\xa2\x5f\x1c\x9d\xe8\x6f\x4f\xac\x4f\x11\xeb\x88\x75\xff\x04\xc4\x3a\x62\xfd\x84\xc5\x3a\x72\xbb\xe0\x5d\x44\x6e\x23\xb7\xeb\xc8\xed\x89\x32\x45\x6d\xa3\xb6\x51\xdb\xa8\x6d\xd4\x76\x2a\x0d\xd4\xb6\x40\x6d\xa3\xb6\x51\xdb\xa8\x6d\xd4\x76\x4b\x6a\x9b\x05\x2d\xa8\x6d\x81\xda\x46\x6d\xa3\xb6\x53\x69\xa0\xb6\x05\x6a\x1b\xb5\xcd\x42\x14\xb4\x3a\x5a\xbd\x17\x5a\x9d\x75\x28\x68\x75\x71\x74\x5a\xbd\x7f\x8b\xcf\xd1\xfc\x68\xfe\x32\x55\x80\xe6\x47\xf3\xa3\xf9\xd1\xfc\x02\xcd\x8f\xe6\xef\x58\xf3\x5f\xe1\x27\x8f\xe6\x47\xf3\x6f\xa5\xf9\x2f\xd1\xfc\x68\x7e\x34\x7f\xbd\xd6\x00\xcd\x2f\xd0\xfc\x68\x7e\x81\xe6\x47\xf3\x3f\xb1\xe6\x27\x72\x2c\xa2\x3f\x5d\x31\x11\xfd\x88\x7e\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\xc7\x26\xfa\x09\x22\x85\xe8\x17\x88\x7e\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\xe7\x26\x8c\xe8\x2f\xd0\x22\x88\xfe\xba\x29\x21\xfa\xfb\x23\xfa\x31\xbb\x41\xf4\x0b\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x73\x13\x46\xf4\x17\x68\x11\x44\x7f\xdd\x94\x10\xfd\xfd\x11\xfd\x44\x8e\x45\xf4\x0b\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x73\x13\x46\xf4\x17\x68\x11\x44\x7f\xdd\x94\x10\xfd\xfd\x11\xfd\x18\x6d\x22\xfa\x05\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\xb9\x09\x23\xfa\x0b\xb4\x08\xa2\xbf\x6e\x4a\x88\xfe\xfe\x88\x7e\x1c\x3b\x11\xfd\x02\xd1\xbf\x95\xe8\x6f\xe2\xd8\x79\x89\xe8\x47\xf4\xfb\x27\x20\xfa\x11\xfd\x88\x7e\x44\x7f\xf8\x37\xa2\x1f\xd1\x5f\x2b\x81\x36\x44\xff\x54\x19\xe3\xd8\x89\xe6\x47\xf3\x77\x0e\xfa\xd1\xfc\x68\xfe\x32\x55\x80\xe6\x47\xf3\xa3\xf9\xd1\xfc\x02\xcd\x8f\xe6\xef\x58\xf3\xb3\x8d\x17\xcd\x2f\xd0\xfc\x68\x7e\x34\x3f\x9a\x1f\xcd\x8f\xe6\xcf\x4d\x18\xcd\x5f\xa0\x45\xd0\xfc\x75\x53\x42\xf3\xf7\x46\xf3\xb3\xb6\x07\xcd\x2f\xd0\xfc\x68\x7e\x34\x3f\x9a\x1f\xcd\x8f\xe6\xcf\x4d\x18\xcd\x5f\xa0\x45\xd0\xfc\x75\x53\x42\xf3\xf7\x46\xf3\x5f\xa1\xf9\xd1\xfc\x68\x7e\x34\x3f\x9a\x1f\xcd\x8f\xe6\x47\xf3\xe7\x26\x8c\xe6\x2f\xd0\x22\x68\xfe\xba\x29\xa1\xf9\x7b\xa3\xf9\xaf\x59\xcf\x8f\xe6\x47\xf3\xa3\xf9\xd1\xfc\x68\x7e\x34\x3f\x9a\x3f\x37\x61\x34\x7f\x81\x16\x41\xf3\xd7\x4d\x09\xcd\xdf\x1b\xcd\x3f\x1a\x02\xfa\x11\xfd\x88\x7e\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\xe7\x26\x8c\xe8\x2f\xd0\x22\x88\xfe\xba\x29\x21\xfa\xfb\x23\xfa\x47\x88\x7e\x44\x3f\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\xb9\x09\x23\xfa\x0b\xb4\x08\xa2\xbf\x6e\x4a\x88\xfe\xfe\x88\xfe\x09\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\x88\x7e\x44\x7f\x6e\xc2\x88\xfe\x02\x2d\x82\xe8\xaf\x9b\x12\xa2\xbf\x3f\xa2\x1f\xbf\x4e\x44\xbf\x40\xf4\x23\xfa\x11\xfd\x88\x7e\x44\x3f\xa2\x3f\x37\x61\x44\x7f\x81\x16\x41\xf4\xd7\x4d\x09\xd1\xdf\x1f\xd1\x3f\x43\xf4\x23\xfa\x11\xfd\x88\x7e\x44\x3f\xa2\x1f\xd1\x8f\xe8\xcf\x4d\x18\xd1\x5f\xa0\x45\x7a\x2e\xfa\xef\xe4\x72\x35\xf8\xbb\x71\xd3\x54\x93\x30\x58\x60\xb0\x90\x33\x58\xb8\x60\xb0\xc0\x60\x81\xc1\x02\x83\x05\x06\x0b\x0c\x16\x18\x2c\x30\x58\xc8\x4d\x98\xc1\x42\x81\x16\x61\xb0\xc0\x60\xe1\x88\x06\x0b\xa9\xe3\x07\x96\x9c\x6f\x4c\xcd\xce\x95\x5f\xa9\x3b\x4c\xe8\xa6\xec\x38\x83\x28\x62\x8c\x33\x04\xe3\x8c\x8e\xc7\x19\x97\xca\x98\x71\x06\xe3\x0c\xff\x04\xc6\x19\x8c\x33\x18\x67\x30\xce\x08\xff\x66\x25\x12\xe3\x85\x5a\x09\xb4\x31\xb9\x30\x23\x72\x30\x9a\x3f\x5d\x2f\xd1\xfc\x68\x7e\x34\x3f\x9a\x1f\xcd\x8f\xe6\x47\xf3\xa3\xf9\xd1\xfc\x47\xa6\xf9\xaf\xd1\xfc\x68\x7e\x34\x3f\x9a\x1f\xcd\x8f\xe6\x47\xf3\xa3\xf9\x73\x13\x46\xf3\x17\x68\x11\x34\x7f\xdd\x94\xd0\xfc\xbd\xd1\xfc\x44\x11\x43\xf4\xa7\x2b\xe6\x61\x8a\xfe\x20\x81\x87\xb5\x3e\x50\x37\x4d\x64\x59\x70\xc6\xa0\x9e\x22\x4c\xbc\x50\x8c\x2e\x18\x5d\x30\xba\x60\x74\xc1\xe8\xa2\x9d\x84\x19\x5d\x14\x88\x1e\x46\x17\x75\x53\x62\x74\xd1\x9f\xd1\x05\xe1\xca\x18\x5d\x08\x46\x17\x8c\x2e\x6a\x14\x14\xa3\x0b\x46\x17\x8c\x2e\x18\x5d\x30\xba\x60\x74\x91\xba\x4c\xf6\x42\x33\x2a\x69\x71\x54\x32\x66\x54\xc2\xa8\x84\x51\x09\xa3\x92\x1a\x05\xc5\xa8\x84\x51\x09\xa3\x12\x46\x25\x8c\x4a\x18\x95\xa4\x2e\x93\x51\x09\xa3\x92\x26\xa3\x92\xd4\xf1\x6d\x39\x34\xcd\x08\x10\xcd\x80\x26\x53\xa7\x19\xd0\x94\x9e\x96\x78\xa1\x18\xd0\x30\xa0\x61\x40\xc3\x80\x86\x01\x4d\x3b\x09\x33\xa0\x29\x10\x3d\x0c\x68\x18\xd0\x30\xa0\xa9\x31\xa0\x71\xe3\xe0\x8d\x6b\x0e\x68\xd2\xdd\xcf\x60\x79\x53\xe3\x0a\xc2\x46\x8b\xf1\x10\xe3\x21\xc6\x43\x82\xf1\x10\xe3\x21\xc6\x43\xfe\xf7\x8c\x87\x18\x0f\x31\x1e\x62\x3c\xc4\x78\x88\xf1\x50\x1f\xc6\x43\x6e\xa8\xbf\x29\x13\x3c\x0c\x68\xc2\x3a\x7d\x98\x03\x9a\x44\x3d\xef\xdf\x38\x63\xc6\x38\x83\x71\x86\x7f\x02\xe3\x0c\xc6\x19\x8c\x33\x18\x67\x84\x7f\x37\x19\x67\xe4\x7c\x37\xd0\x55\x5b\x7b\x90\xcd\x86\x20\x0c\x25\x4e\x73\x28\x91\xd0\x37\xa9\xf1\xc0\x85\x32\x63\xbd\x17\xc3\x81\x63\x18\x0e\x04\x09\x9c\xfa\xfc\x06\xe3\x0e\xc6\x1d\x65\xca\x84\x71\x07\xe3\x0e\xc6\x1d\x8c\x3b\x04\xe3\x0e\xc6\x1d\x4f\x37\xee\xb8\x60\xdc\xc1\xb8\x83\x71\x07\xe3\x8e\x1a\x05\xc5\xb8\x83\x71\x07\xe3\x0e\xc6\x1d\x8c\x3b\x18\x77\x08\x96\x5c\x31\x5e\x79\x82\xf1\x0a\x51\xcc\x19\xaf\x08\xc6\x2b\x8c\x57\x6a\x14\x14\xe3\x15\xc6\x2b\x8c\x57\x18\xaf\x30\x5e\x61\xbc\x22\x18\xaf\x30\x5e\x39\xa4\x2d\x22\x17\xca\x15\x43\x1d\x86\x3a\x0c\x75\x18\xea\xd4\x28\x28\x86\x3a\x0c\x75\x18\xea\x30\xd4\x61\xa8\xc3\x50\x47\x30\xd4\x61\xa8\x73\x58\x43\x1d\x2f\x66\x3d\xee\x60\x0c\x95\x18\x2a\x09\x86\x4a\x0c\x95\x18\x2a\x31\x54\x62\xa8\xc4\x50\x89\xa1\x12\x43\x25\x86\x4a\x0c\x95\x62\x43\xa5\x51\x6c\xa8\xf4\x93\x10\x7f\xfb\xc9\x3d\xf6\xcc\xbc\x97\x63\x3f\xf1\x33\x75\xbd\x7e\x1d\x09\x70\xf7\xbd\x0a\xc6\x53\xeb\xf5\x7b\x75\xe5\xe6\x6a\xaa\xfa\xfc\x4e\x9a\x81\xc2\x5a\xa4\x4e\x10\xd1\x75\xaa\xeb\x75\x4c\x9f\x7d\xd9\x0c\x87\x13\xf9\x42\x8c\x95\x0b\x65\x38\x18\x0a\xf7\xef\xb9\xfb\xe7\x6c\x30\x0c\x5f\xb8\x20\xc1\xd8\x99\x23\x65\x3c\x56\x7e\xa4\x4a\xa8\x46\x2e\xb3\x64\x2e\x97\x95\xb9\x4c\xb6\xc9\xe5\x32\x9e\xcb\xa5\x32\xae\xcc\x65\xda\x3c\x17\x37\xd9\x78\x2e\xd5\x25\x36\xdb\x26\x97\x59\x32\x97\xd1\x70\x58\x99\xcf\x45\x94\x8f\xfb\x9f\xbf\x85\x15\xcc\x39\xef\x6c\xee\xa9\xf5\x74\x7d\x5a\xaa\xb6\xb4\xec\xa0\x76\x8e\x95\xd1\xe5\x7f\x38\x15\xd1\x0c\x85\xbb\xee\xd7\xb6\xe0\x2d\x4f\xa6\x6a\xca\xa5\x54\x2d\x99\x4e\xb5\x7c\x1c\x71\x51\x7b\x1c\xe1\x54\xd0\xe4\x38\x22\xf9\x3a\x8d\xae\x95\xd1\x45\x70\xc1\x3f\xa5\xd9\xc3\xbe\xae\x62\x3c\x54\x46\x33\xef\x2a\x6a\x12\x10\x75\xb3\xd0\x6c\x5f\xb6\xd4\x1c\xef\x45\x03\x99\x82\xfe\x44\xfe\xb0\x4d\x75\x20\xf5\x87\xda\x4d\x5b\x45\x52\x2b\x63\x93\x3f\xee\x28\x49\x6c\x6d\x1a\x0f\xda\xc2\x19\xd2\x19\xfa\xad\x96\xdb\xc3\x94\xdd\x56\x78\xba\x5f\xeb\x72\xfa\x18\x7d\xb3\x5c\x86\x2f\x82\xf3\x87\x3f\xda\xb0\xcd\x4d\xd4\xf5\xe4\x69\x12\xf5\x7b\x7c\xb4\xa1\xfe\xcf\xc6\x8c\x4b\x94\x6f\xf3\x75\xec\x2f\xbf\x69\x1d\x3c\x58\xeb\x3b\x99\x38\x4e\xfe\xb0\xa5\xa9\xab\xcb\x66\xe2\xc3\x2f\xe3\xc1\x7a\xa9\xea\x72\x60\x4a\xcb\xd8\x98\x73\x39\x58\x6a\x2b\xcd\x6e\x32\x88\xcd\x4f\xc6\x94\xff\xd8\x48\xab\x49\x42\xbe\x48\x6c\x5a\x61\x62\xa7\x35\xab\x1c\x29\x11\xd5\x3c\xe7\xdc\x04\xb6\xb8\x86\x56\xde\x9b\xf2\x94\xb6\xb8\xaa\xed\xb0\xa0\x7f\xda\x96\xd7\x1f\x3f\x79\x8b\x4b\x8e\x84\xe4\x96\xf9\xa7\x13\x68\x7e\x0d\x8d\xb1\xa8\x69\xa4\x9b\xda\x26\xed\xc7\x5c\xb3\x06\x23\x65\x16\x6b\x0b\xbc\x6f\x2e\x9a\x35\x05\xfd\xe7\xac\xf1\x6c\x5a\xe3\xa2\x3f\xc5\x92\x71\xb4\x88\x19\xbf\xe5\x74\x7b\x3b\x98\xaf\xb5\x78\x92\xa6\x5c\x1b\x31\xc5\x3b\xf0\xcf\x0f\x0b\x26\xd6\x1d\x8f\x86\xc3\x08\x6b\xc6\xca\x26\x9d\x81\xd5\x76\x06\xf7\x72\x3c\x98\xab\x4b\x6d\x6e\x94\x25\xec\x1d\x56\x9c\xfa\xc3\xc4\xd1\x34\xe3\xc1\x78\x38\x29\xc9\x61\x30\x37\x17\x3b\xe5\x32\x52\x86\xca\x68\x38\x2a\xc8\xc2\xe9\xde\x76\xbc\x87\x89\x32\x19\x0e\x07\x37\x1b\x6d\xb9\x18\x0f\xc7\xa3\xe1\x78\x3c\x19\x5e\xe4\x67\xa7\x2d\xb5\xcd\x6a\x97\xfc\x46\xca\xb5\x72\x35\xbc\xce\x4f\xdd\xc7\x8c\x3b\x25\x3f\xba\x50\xc6\xc3\x51\xec\x6e\x2e\xc7\x93\xe1\x55\x6e\x7e\x9a\xee\xd1\x1e\xfd\x9b\xa6\xff\xd8\x25\xd7\x89\x32\x99\x2a\xc3\x82\x5a\x90\x82\x9d\x3b\x64\x33\x56\x46\x23\x77\x74\x91\x7c\x54\xe3\xfc\x6c\x37\x4b\x7b\xb3\x53\x59\x3e\x4c\x9c\xc1\x4c\x2c\xb3\xe9\xe8\x62\x38\xcd\x6d\x23\xaa\xc4\xfb\x74\x5b\xed\x9e\x3b\x13\xb1\x93\x20\xef\xfd\x24\xc6\x5c\xd7\xf2\xfb\x97\x33\xbf\xc5\x2a\xef\xf8\xdc\x06\x21\xde\xed\xb9\x6f\x6c\xec\x8b\x64\x22\xe2\xcc\xab\x28\xcf\xd2\x27\x06\x5f\xa7\xcf\x0f\x0f\x77\x93\x29\xec\x4d\xf3\x87\x1d\x86\x6e\xab\x9a\xee\xd4\xbd\x8d\x6e\x6b\xab\xad\x66\x4c\xea\x4d\x59\x24\x1a\x94\x67\xc9\xaf\x93\xef\x7d\xea\xc7\x56\xe6\x26\xca\xe6\x11\xca\x7a\xec\x4e\x01\x7c\x2e\x27\x2f\xbb\x9a\x6e\xe8\xb4\x9b\xea\x9e\xb9\x6e\x74\xea\x36\x19\x77\xc4\x83\xb7\xb9\x94\x2d\x07\x1f\xdb\x91\xe4\xd4\xa9\x5b\x5c\xaf\xa3\xfa\x9b\xcd\x48\x6e\xb5\x1c\x22\x68\x4d\x1a\x9e\xf6\x44\x50\x7b\xab\x35\x0e\x6d\xec\xe7\x1e\x29\x53\xc0\xd7\x49\x80\xaf\x3b\xd5\x7c\x90\x8e\xfa\x00\x86\x65\x4e\x03\x86\x01\xc3\x80\x61\xc0\xb0\x76\x60\x58\xd8\xd2\x0e\x92\x7d\xc3\x2e\x03\xef\xa1\x32\x52\xc6\xc3\x0c\xb5\x8a\x65\x65\x69\x83\x85\xa9\xed\x88\x13\x9c\x6c\x26\xd9\x6c\xc0\x7b\x19\xbc\x37\x05\xef\xd5\xe7\x6f\x43\x65\x5a\x80\xa4\xe0\x7b\x27\xcf\xf7\x46\xf0\x3d\xf8\x1e\x7c\x0f\xbe\x97\x3c\x07\xbe\x07\xdf\x83\xef\xed\xce\xf7\x66\x85\xcb\xeb\xe0\x7b\xf5\x6f\x0b\xbe\x07\xdf\x83\xef\xc1\xf7\xe0\x7b\xf0\x3d\xf8\xde\x09\xf0\xbd\x19\x7c\xaf\x19\xdf\x2b\x00\xa2\xf0\x3d\xf8\x1e\x7c\x0f\xbe\x07\xdf\x83\xef\x09\xf8\x5e\x4e\x32\xf0\x3d\xf8\x5e\xe9\xb3\x4b\x74\xcb\x45\x7c\x8f\xf5\x7b\xf0\x3d\xf8\xde\x36\xdd\x07\x7c\x0f\xbe\x07\xdf\x83\xef\xc1\xf7\xe0\x7b\x07\xc2\xf7\xc6\xc3\x38\xc4\x19\x0d\x87\x17\x45\xdb\x8d\x0f\x83\xee\x4d\x86\xe9\xdb\xc9\x07\x60\xad\xd1\xbd\xa9\x32\x54\x26\x05\x75\x00\xb8\x07\xdc\x03\xee\x09\x01\xdc\x4b\x26\x00\xdc\x03\xee\x01\xf7\x80\x7b\xf5\x4e\x6a\x07\xee\x15\x7b\xe3\x01\xf7\xea\xdf\x16\x70\x0f\xb8\x07\xdc\x03\xee\x01\xf7\x80\x7b\x5d\xc1\xbd\x1c\xea\xd6\x05\xdc\x9b\x76\x0d\xf7\x46\xca\xf0\x3f\x36\x6b\x0f\x60\x75\x8c\xf9\xbc\xac\xc6\xca\x04\xdc\xd7\x08\xf7\x8d\x46\xd7\x45\x3c\xee\x30\x70\xdf\x74\x98\xbe\x9d\xfc\xb2\x6b\x19\xf7\xe5\x2f\x80\xec\x12\xf7\x95\x3c\xaa\xf6\x71\x9f\x9b\xd9\x05\xb8\x0f\xdc\x07\xee\x3b\x1d\xdc\xf7\xf4\xa1\x65\xe0\x83\xf0\x41\xf8\xe0\xd3\xf0\xc1\x4b\x16\xff\xc1\x07\x0b\xfb\x40\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\x3e\x3d\x1f\xbc\xda\x0f\x1f\xbc\x86\x0f\xc2\x07\xe1\x83\xf0\x41\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\xc2\x07\xe1\x83\xde\xaf\xa7\xc7\x07\xaf\xe0\x83\xf0\xc1\xc2\x3e\x10\x3e\x08\x1f\x84\x0f\xc2\x07\xe1\x83\xf0\x41\xf8\x60\x4e\x2e\xc7\xc3\x07\x27\x21\x07\x1a\x0f\x47\xa3\xe9\x61\x9b\x01\xc2\x07\xe1\x83\xf0\x41\xef\x6f\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\xc2\x07\x9b\xf3\xc1\x6b\xf6\x17\xc3\x07\x0b\xfb\x40\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\x3e\x3d\x1f\x1c\x0d\xf7\x03\x08\xf3\xf2\x81\x10\x1e\x3d\x21\x1c\x29\xd3\x18\x21\x1c\x8f\xaf\x8a\x32\x83\x10\x42\x08\x73\xda\xc1\xd6\x08\xe1\x04\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\xc2\x5a\x67\x41\x08\xbb\x24\x84\xa3\x21\x4b\x08\x41\x84\x85\x9d\x20\x88\x10\x44\x08\x22\x04\x11\x82\x08\x7b\x80\x08\x73\x78\x5a\x27\x88\xb0\x0e\xb7\x2b\x47\x84\xd5\x10\x67\x9c\xcb\xbb\x9a\xd1\xc1\x6a\x9c\x32\x53\x46\x03\xff\xe8\x62\xbc\x06\x23\xcc\x63\x84\x93\xd1\x65\x97\x8c\x70\xa4\x8c\x8b\x62\x9a\xb4\xc2\x08\x2f\x95\x3c\xd0\xdd\x32\x13\x1c\x29\xc3\x82\x32\x82\x09\xc2\x04\x61\x82\x42\xc0\x04\x93\x09\xc0\x04\x6b\x5e\x3f\x4c\x10\x26\x08\x13\x7c\x22\x26\x38\x66\xd9\x20\x4c\xb0\xb0\x13\x84\x09\xc2\x04\x61\x82\x30\x41\x98\x20\x4c\x10\x26\x08\x13\x84\x09\xa6\x99\x60\x41\x04\x60\x98\x20\x4c\x10\x26\x28\x60\x82\xc9\x04\x60\x82\x35\xaf\x1f\x26\x08\x13\x84\x09\x3e\x2d\x13\x64\x9d\x20\x4c\x10\x26\xb8\x4d\xff\x01\x13\x84\x09\xc2\x04\x61\x82\x30\xc1\x66\x4c\x70\x0c\x13\x3c\x69\x26\x38\x2b\x4a\xfe\xb0\x98\x60\x3e\xd8\x84\x09\xc2\x04\x61\x82\x42\xc0\x04\x93\x09\xc0\x04\x6b\x5e\x3f\x4c\x10\x26\x08\x13\x7c\x22\x26\x38\x81\x09\xc2\x04\x0b\x3b\x41\x98\x20\x4c\x10\x26\x08\x13\x84\x09\xc2\x04\x61\x82\x30\xc1\x83\x61\x82\xd7\xca\x14\x26\xd8\x2d\x13\xbc\x95\xaa\xbd\x31\xa5\x4f\xf8\xe2\x2d\xa0\xd4\xe7\xe6\xa3\xdb\xeb\x0c\xee\xe5\xe3\xc0\x34\x6c\xd5\x0e\x6f\x67\x18\x18\x7d\xc2\x16\x61\x8b\x02\xb6\x08\x5b\x8c\x9d\x00\x5b\x84\x2d\xc2\x16\x8f\x85\x2d\x4e\xd9\x83\x0c\x5b\x2c\xec\x04\x61\x8b\xb0\x45\xd8\x22\x6c\x11\xb6\xf8\xf4\x6c\x71\xb2\x1f\xb4\x98\xc7\x64\x08\x5c\x52\x1e\x16\x38\x8f\x93\xb6\x8c\x15\xc7\x05\xbb\x5d\x5b\x0a\x6c\x9c\xc6\x49\x05\x71\x45\x08\x5b\x52\x80\x19\x09\x5b\x52\x46\xfd\xae\xaf\xe1\x83\xf0\x41\xf8\xa0\xa8\x92\x24\xf0\x41\xf8\x20\x7c\x10\x3e\x98\x4a\xe0\xa9\xf8\xe0\x58\x99\xb2\xf4\x10\x3c\x58\xd8\x07\x82\x07\xc1\x83\xe0\x41\xf0\x20\x78\xf0\xe9\xf1\xe0\xd5\x7e\xf0\xe0\x35\x78\x10\x3c\x08\x1e\x04\x0f\x82\x07\xc1\x83\xe0\xc1\x66\x37\x08\x1e\x04\x0f\x82\x07\xc1\x83\xb9\x67\x1d\x22\x1e\x9c\x81\x07\xc1\x83\x85\x7d\x20\x78\x10\x3c\x08\x1e\x04\x0f\x82\x07\xc1\x83\xe0\xc1\x9c\x5c\x8e\x05\x0f\x4e\x62\x9b\x92\x47\xa3\x69\x01\xea\x02\x0f\x82\x07\xf3\xda\x40\xf0\x20\x78\x30\x75\x6f\xe0\x41\xf0\x20\x78\x10\x3c\x08\x1e\x3c\x68\x3c\x78\xc1\xe6\x62\xf0\x60\x61\x1f\x08\x1e\x04\x0f\x82\x07\xc1\x83\xe0\xc1\xa7\xc7\x83\xa3\x9c\xf0\x0c\x9d\x18\x17\xe6\x85\x81\x68\xdb\xb8\x70\x94\x1b\x6c\xa2\x6d\xe3\xc2\x69\xdc\xb8\xb0\x4b\x42\x38\x52\xa6\x85\xf8\xae\x15\x42\x58\x91\x47\xeb\xbe\x85\xe3\xf1\x55\x97\xbe\x85\x20\xc2\xad\xeb\x34\x88\x50\xec\x3c\x12\x01\x11\x82\x08\x41\x84\x20\x42\x10\x21\x88\x10\x44\x58\x85\x08\x2f\x59\x41\x08\x22\x2c\xec\x03\x41\x84\x20\x42\x10\x21\x88\x10\x44\xd8\x03\x44\x78\x5c\xb1\x4d\xf2\xe2\x74\x1c\x6a\x6c\x93\xe3\x43\x84\x9d\x87\x36\x19\x17\x44\x05\x39\xb0\x70\xc7\xf9\x65\x04\x12\x04\x09\x82\x04\xfd\xbc\x41\x82\x20\x41\x90\x20\x48\x10\x24\x78\x20\x48\xf0\x9a\x55\x83\x20\xc1\xc2\x3e\x10\x24\x08\x12\x04\x09\x82\x04\x41\x82\x20\x41\x90\x20\x48\x10\x24\x98\x42\x82\xf9\x0f\x04\x24\x08\x12\x04\x09\xfa\x79\x83\x04\x41\x82\x20\x41\x90\x20\x48\xf0\xb0\x90\x20\xab\x04\x41\x82\x20\xc1\x6d\xba\x0f\x90\x20\x48\x10\x24\x08\x12\x04\x09\x36\x43\x82\x79\xde\x7c\x07\x8c\x04\x67\x45\x1b\x63\x5b\x44\x82\xc5\x79\xb4\x80\x04\xc7\xca\x38\x86\x04\x67\xc3\xeb\x22\xfe\xd8\x0e\x12\x9c\x15\x3d\x8f\xc3\x42\x82\xf9\x5c\xf3\x90\x91\xe0\x55\x3c\xab\x61\x8c\x42\x27\x5a\x3d\x80\x20\x40\x30\x75\x6f\x00\xc1\x23\x00\x82\x5e\x31\x59\x72\x29\xe7\xb6\x61\x0e\x56\xc6\xa2\xc1\xab\x06\x4e\x04\x27\x82\x13\x4f\x1a\x27\x8e\x86\xf0\x44\x78\x62\x61\x17\x0a\x4f\x84\x27\xc2\x13\xe1\x89\xf0\x44\x78\x22\x3c\x11\x9e\xd8\x26\x4f\x2c\x48\xbe\x15\x9e\x78\xad\x4c\xe1\x89\xed\xf0\xc4\x49\x6e\xab\x77\x2b\x55\x7b\x63\x4a\x1f\x0e\xc6\x9b\x3f\xa9\xcf\xcd\x47\xb7\xcb\x19\xdc\xcb\xc7\x81\x69\xd8\xaa\x1d\xde\xcc\x30\x08\x20\x04\x97\x84\x4b\xba\x1f\xb8\x64\xe2\xe2\xe0\x92\x70\x49\xb8\x24\x5c\x32\x79\xda\x09\x72\xc9\x11\x5b\x9f\xe1\x92\x85\x5d\x28\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\x7b\xc0\x25\x27\x70\x49\xb8\x64\x7e\x1e\x87\xc6\x25\xc7\x85\x46\x82\x07\xc6\x25\x0b\x00\x21\x5c\x12\x2e\x99\x38\x0b\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x64\x0d\x2e\x39\x81\x4b\xc2\x25\x0b\xbb\x50\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x47\xcd\x25\xa7\x31\x2b\xbe\xf1\x68\x38\x1a\x75\xcb\x25\x0b\x93\x87\x4b\xc2\x25\xe1\x92\x70\xc9\xd4\xad\xc1\x25\xe1\x92\x70\x49\xb8\x24\x5c\xf2\x34\xb8\xe4\x8c\x7d\xdc\x70\xc9\xc2\x2e\x14\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\xb2\x3d\x2e\x39\x61\xbd\x24\x5c\x12\x2e\x09\x97\x84\x4b\xc6\x2f\x0e\x2e\x09\x97\x84\x4b\xc2\x25\x93\xa7\x9d\x20\x97\xbc\x64\xbd\x24\x5c\xb2\xb0\x0b\x85\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x64\x0f\xb8\x64\x4e\x08\x8e\x4e\xb8\x64\x5e\xa8\x8f\xb6\xb9\xe4\x28\x37\xa0\x48\xdb\x5c\x72\x1a\xe7\x92\xf9\x9c\xaa\x1d\x2e\x99\x1f\x91\xbb\x45\x2e\x39\x52\x86\xca\x78\x7f\x11\xac\xc7\xe3\xab\x6e\x23\x58\x17\x16\x57\x2b\x58\xf2\x42\x99\x0e\xd3\x81\x98\xf3\xf3\x6b\x11\x53\x0e\x95\x49\x14\xed\xf9\x68\x30\xe5\xfe\x23\x5a\x4f\x01\x8c\x00\x46\x00\x63\x4f\x00\x23\x88\x10\x44\x08\x22\x3c\x5d\x44\x38\x51\xa6\xac\x5c\x84\x10\x16\xf6\x81\x10\x42\x08\x21\x84\x10\x42\x08\x21\xec\x01\x21\x64\xe5\x22\x2b\x17\xbb\x43\x84\xec\xa8\x66\xe5\x62\xfd\x95\x8b\xac\x38\x04\x08\xa6\xee\x0d\x20\x78\x04\x40\x90\x15\x87\xe0\x44\x70\x22\x38\xb1\xf8\xd9\x25\x64\x40\x76\xc5\xe1\x05\x2b\x0e\xe1\x89\x85\x5d\x28\x3c\x11\x9e\x08\x4f\x84\x27\xc2\x13\x7b\xc0\x13\x8f\x2b\xa2\x75\x1e\xe0\x3b\x58\x9e\x78\x6c\x2b\x0e\x27\xa3\xcb\x6e\x57\x1c\x8e\x0b\x62\x41\xb7\x83\x13\x2f\x73\xd7\xb3\x76\x80\x13\xf3\xcb\xe8\x90\x71\x22\x2b\x0c\x93\x67\x01\x14\x01\x8a\xa7\x04\x14\x41\x82\x20\x41\x90\xe0\xe9\x22\xc1\x89\x02\x11\x84\x08\x42\x04\x21\x82\x10\x41\x88\x20\x44\x10\x22\x08\x11\x84\x08\x42\x04\xeb\x12\xc1\xfc\x07\x02\x11\x84\x08\x42\x04\xfd\xbc\x21\x82\x10\x41\x88\x20\x44\x10\x22\x78\x58\x44\x90\x3d\xc7\x10\x41\x88\xe0\x36\xdd\x07\x44\x10\x22\x08\x11\x84\x08\x42\x04\x4f\x78\xcf\xf1\x44\x19\x15\x21\xae\xd6\xf6\x1c\x97\xe5\xd1\x02\x12\x1c\x2b\xe3\x18\x12\x9c\x0d\xaf\xbb\xdc\x73\x3c\x52\x66\x9d\xda\x12\xee\x0d\x09\xe6\x3f\x90\x43\x46\x82\xe9\x3d\xc7\x63\x80\x20\x40\x10\x20\x78\x22\x40\x90\x3d\xc7\xe0\x44\x70\x22\x38\xb1\xf8\xd9\x25\x64\x40\x06\x27\x5e\x82\x13\xc1\x89\x85\x3d\x28\x38\x11\x9c\x08\x4e\x04\x27\x82\x13\xc1\x89\xe0\x44\x70\x62\x9b\x38\xf1\x28\x2c\x0c\x8f\x1f\x27\x1e\x4a\xf0\x65\xb0\x24\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\xe2\xc0\xb1\xe4\x15\xfb\x9e\xc1\x92\x85\x3d\x28\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\x7b\x80\x25\x89\xac\x02\x96\x3c\x12\x2c\x39\x2e\x74\x11\x3c\x30\x2c\x79\xaa\x91\x55\xf6\x83\x25\x2f\xc1\x92\x60\x49\x21\xc0\x92\xc9\x04\xc0\x92\x79\x27\x80\x25\xc1\x92\x60\xc9\x23\xc1\x92\xa3\x21\x5c\x12\x2e\x59\xd8\x85\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\xd9\x2a\x97\x9c\xe6\x82\xa9\xb6\xb9\xe4\xc5\xbe\xb8\xe4\xb4\x38\x82\x71\x6b\x5c\xb2\x2c\x8f\x4e\x22\x3e\x17\x40\xd0\x43\x89\xf8\x9c\xff\xbc\x5b\xe6\x92\xb3\x7d\x73\x49\xef\xd1\x5c\xec\x83\x4b\xa6\x6a\x41\xa2\xd5\x83\x27\xc2\x13\x53\xf7\x06\x4f\x84\x27\xc2\x13\xe1\x89\xf0\xc4\x53\xe6\x89\x13\x78\x22\x3c\xb1\xb0\x0b\x85\x27\xc2\x13\xe1\x89\xf0\x44\x78\x22\x3c\x11\x9e\x58\xce\xfa\xba\x5e\xe7\x58\x96\xc7\xe1\xf1\xc4\x09\x3c\xf1\x90\x79\x22\xeb\x1c\x9b\x9d\x05\x97\x84\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\xb2\x06\x97\x9c\xc2\x25\xe1\x92\x85\x5d\x28\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x70\xc9\x32\xa8\x57\x18\x35\xa5\x45\x2e\x59\x9c\x47\x2b\x5c\x72\x16\x23\x52\xe3\x61\x61\x81\xb5\xc3\x25\xa7\xc7\xc1\x25\xaf\x9e\x86\x4b\x5e\x76\xc7\x25\xaf\xe3\x59\x8d\xaf\x22\xf2\x9a\x68\xf5\xe0\x92\xcd\xce\x82\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x59\x83\x4b\xce\xe0\x92\x70\xc9\xc2\x2e\x14\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x3d\xe0\x92\x39\x56\x77\x9d\x70\xc9\xd9\x5e\xb8\x64\x1e\xf7\x82\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\x32\x75\x6b\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x3c\x0d\x2e\x79\x01\x97\x84\x4b\x16\x76\xa1\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\x8b\xa1\xde\xac\x38\xfe\x4a\x6b\x5c\xb2\x2c\x8f\x16\xb8\xe4\x4c\x89\xe0\xd7\x64\x38\x1e\x5e\x77\xcb\x25\xf3\x2a\x19\x5c\x32\xa7\x0e\xc3\x25\xfd\x23\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x2c\x3f\x15\x2e\x99\x38\xeb\x20\xb9\xe4\x25\x5c\x12\x2e\x59\xd8\x85\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\xb2\x07\x5c\x32\x67\x7f\xf5\xc1\xee\xe3\x26\x8e\xf6\x49\xc7\xd1\x1e\x29\xb3\xce\xd7\x4b\xee\x25\x8e\x76\xfe\x03\x21\x8e\x76\x3b\x5c\xf2\xa2\x01\x97\xbc\x84\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x79\xd0\x5c\x72\xaa\x8c\xc1\x92\x60\xc9\xc2\x1e\x14\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\x3d\xc0\x92\xc7\x64\x2f\x09\x96\x3c\x69\x2c\x39\x2e\x5e\xfa\x79\x58\x58\xb2\x80\x0f\x82\x25\xf7\xbe\x5c\x12\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\x60\x49\xb0\xa4\x38\x70\x2c\x49\xd4\x1b\xb0\x24\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\x44\xbd\xd9\x36\x52\x76\x01\xc5\x6b\x35\x1a\x77\x51\x1e\x87\x17\x8d\xbb\xf0\x5e\x0e\x6b\x17\x37\xd1\xb8\xc1\x92\x60\x49\xb0\x24\x58\x52\x80\x25\xc1\x92\x62\xd7\x61\x20\x58\x12\x2c\xe9\x68\x51\x36\x71\x83\x25\xc1\x92\x60\x49\xb0\x24\x58\x12\x2c\x09\x96\xdc\x1b\x96\xac\x93\xcb\xee\x58\x72\x1c\x61\xc9\x02\x33\xc3\xd6\xb0\x64\xd7\xab\x25\xcb\xf2\x38\x3c\x2c\x39\x01\x4b\x82\x25\xc1\x92\x60\x49\xb0\x64\xfc\xe2\xc0\x92\x60\x49\xb0\x24\x58\x32\x79\xda\xe9\x61\xc9\x2b\xb0\x24\x58\xb2\xb0\x07\x05\x4b\x82\x25\xc1\x92\x60\x49\xb0\x24\x58\x12\x2c\x49\x2c\x6e\x62\x71\x13\xf3\xc6\x3d\x07\x2c\xd9\xec\x2c\xb0\x24\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\xd5\x58\xf2\xda\xc3\x92\x63\xb0\x24\x58\x12\x2c\x59\xe7\x44\xb0\x24\x58\x12\x2c\x19\x5c\x05\x58\x92\x50\xdc\x3d\x0e\xc5\x0d\x96\x04\x4b\x82\x25\x1b\x61\x49\x65\x12\x0b\xc9\x3e\x8a\x87\x64\x4f\xb4\x7b\x80\xc9\x66\x67\x01\x26\x01\x93\x80\x49\xc0\x24\x60\x12\x30\x09\x98\xac\x06\x93\xa3\x21\x0b\x26\x21\x93\x85\x5d\x28\x64\x12\x32\x09\x99\x84\x4c\x42\x26\x21\x93\x90\xc9\x62\xac\x37\x2b\x8e\xe2\xd2\x1a\x99\x2c\xcb\xa3\x05\x32\x39\x53\x86\x31\x22\x35\x8e\x13\xa9\x2e\xc8\x64\x5e\x25\x83\x4c\xe6\xd4\x61\xc8\x24\x64\x12\x32\x09\x99\x14\x55\x72\x06\x32\x09\x99\x84\x4c\x42\x26\x8f\x85\x4c\x8e\x20\x93\x90\xc9\xc2\x2e\x14\x32\x09\x99\x84\x4c\x42\x26\x21\x93\x27\x44\x26\x2f\xf6\x42\x26\xc7\xfb\xdd\xca\x9d\x97\x5d\xbb\x64\xb2\xeb\xc0\x37\x65\x79\x74\x42\x26\x3b\x8c\xc7\x3d\x51\x86\x9d\x93\xc9\xfc\xcb\x6f\x91\x4c\xce\x72\x63\xca\x1f\x1f\x99\x1c\x43\x26\x85\x80\x4c\x42\x26\x21\x93\x90\x49\xc8\x64\xdd\x4b\x81\x4c\x42\x26\x4b\x9f\x5d\x42\x06\x64\xc9\xe4\x04\x32\x09\x99\x2c\xec\x42\x21\x93\x90\x49\xc8\x24\x64\x12\x32\x09\x99\x6c\x95\x4c\xce\xf6\x60\x32\x39\x51\x86\xfb\x0a\xc9\x7d\x14\x64\x72\x14\x23\x52\xb3\x51\x21\xca\x6d\x87\x4c\x16\x26\x0f\x99\x2c\x25\x93\xce\xa3\x99\x15\x2d\xd5\x84\x4c\x42\x26\x21\x93\x90\x49\xc8\x24\x64\x12\x32\x09\x99\x3c\x68\x32\x39\x85\x4c\x42\x26\x0b\xbb\x50\xc8\x24\x64\x12\x32\x09\x99\x84\x4c\x3e\x35\x99\x1c\xe7\xb1\x1c\xc0\x24\x60\xb2\x33\x30\xd9\xe1\x66\xee\x8e\xc1\xe4\x78\x5a\x58\x56\x80\x49\xc0\x24\x60\x12\x30\x59\x56\x0e\x80\x49\xc0\x64\x94\x2a\x60\x12\x30\x09\x98\xdc\x3f\x98\x9c\x01\x26\x01\x93\x85\x5d\x28\x60\x12\x30\x09\x98\x04\x4c\x02\x26\x01\x93\x80\xc9\x42\xaa\x77\x91\x7b\x3b\xed\x82\xc9\xb2\x3c\x3a\x01\x93\x13\xc0\x64\x29\x98\x2c\x7e\x20\x87\x0b\x26\xa7\xca\x50\x19\xc7\x32\xbb\x1c\x5e\xe2\x32\x19\x08\x56\xc0\x24\x60\x12\x30\x09\x98\x04\x4c\x02\x26\x01\x93\x5d\x83\xc9\x0b\xc0\x24\x60\xb2\xb0\x0b\x05\x4c\x02\x26\x01\x93\x80\x49\xc0\x24\x60\x12\x30\x79\xcc\x60\xf2\x22\x01\x26\xaf\x86\x9d\x6e\xe5\x9e\x76\x6b\x32\x09\x98\xdc\xb6\x22\xa4\xc1\xe4\xd5\x28\x76\x8f\x89\x66\x0f\x30\xd9\xec\x2c\xc0\x24\x60\x12\x30\x09\x98\x04\x4c\x02\x26\x01\x93\x39\xc7\x0f\x2c\x39\xdf\x98\x9a\x9d\x3b\xfe\x4a\xbd\xa0\x09\x05\x91\x65\x9a\x97\x30\x4d\x98\x66\x61\xef\x0b\xd3\x84\x69\xc2\x34\x8f\x95\x69\x8e\x27\x20\xcc\x9e\x22\xcc\x23\x0c\xe1\xbd\xd7\x40\x39\x84\xf0\x26\x84\x77\xcb\x0c\xf3\xe4\x42\x78\x27\x32\x0b\x86\x37\x05\xb4\xa5\xf9\x43\xbb\x2c\xdc\x44\x9f\x93\xd5\xae\x2f\x54\xad\xec\x1e\xd4\xa5\xb6\x70\xf9\xeb\xe0\xbb\xbc\xb9\x33\x8c\xfb\x5d\xb3\x3c\x14\x20\x7c\xa9\x8c\x01\xc2\x00\x61\x80\x30\x40\x18\x20\x0c\x10\x06\x08\xf7\x1e\x08\x27\x64\x40\x8a\xea\xce\x14\xa0\x2e\x50\x17\xa8\x0b\xd4\x05\xea\x02\x75\xab\xde\x7c\xa0\xee\x31\x42\x5d\xa2\x9f\x9f\xa6\x95\x27\xd1\xcf\x9b\x41\xdd\x93\x8b\x7e\x0e\xd4\x05\xea\x02\x75\x81\xba\x7e\x79\x00\x75\x81\xba\x40\x5d\xa0\x6e\xce\xd9\x40\xdd\x7e\x41\xdd\x6b\xa0\x2e\x50\xb7\xb0\x07\x05\xea\x02\x75\x81\xba\x40\xdd\x30\x53\xa0\x2e\x50\x17\xb7\x81\xa3\x80\xba\x04\x8e\x3f\x00\xa8\xfb\x94\xf1\x99\xba\x87\xba\xb5\xb3\x6a\x07\xea\x56\x64\xd7\x05\xd4\x3d\x0c\x4f\x59\xa0\x2e\x50\x17\xa8\x0b\xd4\x05\xea\x02\x75\x81\xba\xc9\xb3\x0e\x11\xea\x8e\x86\x50\x5d\xa8\x6e\x61\x17\x0a\xd5\x85\xea\x42\x75\xa1\xba\x61\xa6\x50\x5d\x2c\x64\x81\xba\xc7\x08\x75\x09\xba\x0f\xd4\x05\xea\x02\x75\x85\x00\xea\x02\x75\x81\xba\x40\xdd\x9d\xee\x1e\xa8\x0b\xd4\x05\xea\x3e\x11\xd4\x1d\x01\x75\x81\xba\x85\x5d\x28\x50\x17\xa8\x0b\xd4\x05\xea\x86\x99\x02\x75\x81\xba\x27\x0f\x75\x8f\x20\x2e\x58\x16\xea\x4e\x80\xba\x27\x1f\x17\xec\x72\x78\xb9\x4f\x4f\x5d\xa0\x2e\x50\x17\xa8\x0b\xd4\x05\xea\x0a\xa0\x2e\x50\x57\xec\x3a\x86\x06\xea\x02\x75\x5d\x69\x3f\x06\xea\x02\x75\x0b\xbb\x50\xa0\x2e\x50\x17\xa8\x0b\xd4\x0d\x33\x05\xea\x02\x75\x81\xba\x87\x0f\x75\x2f\x12\x50\xf7\x6a\xd8\xa9\xfd\xc2\xb4\x5b\x4f\x5d\xa0\xee\xb6\x15\x21\x0d\x75\xaf\x46\x45\xf7\x08\xd4\xdd\x22\xcb\x09\x9e\xba\xfe\xa9\x40\x5d\xa0\x2e\x50\x17\xa8\x0b\xd4\x05\xea\x0a\xa0\xee\xce\x50\x37\x75\xfc\xc0\x92\xf3\x8d\xa9\xd9\xb9\x83\xd9\xd4\x0b\x9a\x50\x10\x59\x1e\x3c\x81\x07\xc3\x83\x0b\x7b\x5f\x78\x30\x3c\x18\x1e\x7c\x94\x3c\x38\x31\x78\x81\x0e\x43\x87\xa1\xc3\xdb\x93\xdb\xb2\xf4\xdb\xa2\xc3\x45\x79\x1c\x1e\x1d\xee\x7e\xc9\xef\x45\xd7\x74\xf8\xaa\xf0\x26\xba\xa6\xc3\xa3\x82\x6c\xa1\xc3\xbd\xa7\xc3\x63\xe8\xb0\x10\xd0\x61\xe8\x30\x74\x18\x3a\xdc\x77\x3a\x5c\xc4\x98\xda\x60\xc4\x70\x66\x38\xf3\x89\x71\xe6\x99\xc7\x99\xc7\x70\x66\x38\x33\x9c\xb9\xce\x89\x70\x66\x38\x33\x9c\x19\xce\x2c\xe0\xcc\xdb\x64\x73\x84\x9c\x79\xb2\x87\x55\xc8\xc5\x79\xb4\xc2\x99\x63\x3e\xb1\xa3\xd1\xf0\xba\x5b\xce\x9c\x13\xd1\x10\xce\x9c\xcd\x05\xce\x0c\x67\x86\x33\xc3\x99\xe1\xcc\xcd\x6e\x10\xce\x0c\x67\x86\x33\xe7\x25\x03\x67\x86\x33\xd7\x7a\x76\xed\x73\xe6\x0b\xd6\x33\xc3\x99\x0b\xfb\x71\x38\x33\x9c\x19\xce\x7c\x94\x9c\x19\xb2\xdc\x67\xb2\x3c\x52\x46\x39\x34\x0e\xb4\xdc\x0f\xb4\x7c\x94\xa1\xe8\x3a\x44\xcb\x1d\xbb\x16\x8f\xae\x95\x29\xa1\xe8\xb6\xab\x08\x84\xa2\xc3\xb5\x58\xb9\x54\x66\xa0\x65\xd0\x32\x68\x19\xb4\x7c\xca\x68\x19\x20\x0c\x10\x3e\x10\x20\x9c\x90\x01\x29\xaa\x7b\xa1\xcc\x80\xba\x40\xdd\xc2\x1e\x14\xa8\x0b\xd4\x05\xea\x02\x75\xc3\x4c\x81\xba\x2c\x17\x86\xe9\x1e\x23\xd3\x2d\x28\xb0\x03\x60\xba\xfb\x31\x2d\x86\xe9\xc2\x74\x61\xba\x30\x5d\x98\x6e\x59\x39\xc0\x74\x61\xba\x51\xaa\x30\x5d\x98\x2e\x4c\x77\xef\x4c\x97\x85\xba\x30\x5d\x98\x2e\x4c\x17\xa6\x0b\xd3\xad\x7a\xf3\x61\xba\x30\x5d\x98\xee\x51\x04\xa2\xcb\x32\xdd\x09\x4c\xf7\xe4\x03\xd1\x5d\x0e\x2f\x0b\x5e\x1c\x98\x2e\x4c\x17\xa6\xeb\xfd\x04\xd3\x2d\x2e\x07\x98\x2e\x4c\x37\x4a\x15\xa6\x0b\xd3\x85\xe9\xee\x9d\xe9\x5e\xc2\x74\x61\xba\x85\x3d\x28\x4c\x17\xa6\x0b\xd3\x85\xe9\x86\x99\xc2\x74\x61\xba\x30\xdd\xc3\x67\xba\x7b\x0e\x1f\x37\x84\xe9\x1e\x02\xd3\xc5\xd6\xb7\x65\x5b\xdf\x21\x4c\x57\x08\x98\x2e\x4c\x17\xa6\x0b\xd3\x85\xe9\xd6\xbd\x14\x98\x2e\x4c\xb7\xd6\xb3\x6b\xd9\x8c\xf7\x42\xb9\x02\x07\x83\x83\x0b\x3b\x5f\x70\x30\x38\x18\x1c\x7c\x94\x38\x38\x31\x76\x01\x0e\x03\x87\x81\xc3\xdb\x83\xdb\xb2\xf4\xdb\x82\xc3\x45\x79\x1c\x1e\x1c\xee\x7e\xc1\x2f\x31\xdf\x80\xc3\xfd\x83\xc3\x87\x12\xf3\x0d\x38\x0c\x1c\x06\x0e\x03\x87\x4f\x1a\x0e\x13\xf3\x2d\x67\x78\x0b\x66\x06\x33\x6f\x85\x99\x47\x43\x8f\x33\x8f\xe1\xcc\x70\x66\x38\x73\x9d\x13\xe1\xcc\x70\x66\x38\x33\x9c\x59\xc0\x99\xb7\xc9\xe6\x08\x39\xf3\x64\x0f\x8b\x90\x8b\xf3\x68\x85\x33\xc7\x4c\x62\x47\xa3\xe1\x75\xb7\x9c\x39\x27\x9a\x21\x9c\x39\x9b\x0b\x9c\x19\xce\x0c\x67\x86\x33\xc3\x99\x9b\xdd\x20\x9c\x19\xce\x0c\x67\xce\x4b\x06\xce\x0c\x67\xae\xf5\xec\xda\xe7\xcc\xa3\xc4\x7a\xe6\x9f\x84\xf8\xdb\x4f\xe2\x5f\x3f\xfd\xeb\xff\x04\x00\x00\xff\xff\x58\x26\xa8\x64\xf8\xe3\x6b\x00") +var _dataDataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x73\xa4\x38\x9a\xff\x0f\x3f\x9f\x57\x41\xf8\xf7\x60\xee\x7b\xa3\x48\x3b\x8f\x3e\x44\xec\x03\xb7\xed\xae\x76\x74\x95\xcb\x6b\xbb\x6a\x76\x62\x3d\xe1\xc0\xa0\x4c\x33\x26\x81\x06\x32\xab\xdc\x35\xfd\xde\xff\x21\x71\x06\x41\x4a\x90\x99\xce\xc3\xd7\x1b\xb1\xd3\x95\x48\x42\x08\x71\x7d\x3f\xba\x24\x5d\xfa\xf9\x37\xe5\xe0\xf7\x13\xff\x1b\xf1\x7c\xd3\xb1\xef\x89\x37\x37\x75\xf2\xc5\x0d\x4c\xc7\xf6\x0f\xce\x94\x9f\x7f\x53\x94\x83\x79\xb7\xd3\x3d\x8a\xfe\xa1\x1c\x90\x40\x37\x0e\xce\x14\x7b\x66\x59\x1f\xd8\x0f\xaf\xb3\x67\xa2\xb9\x66\x9c\x40\x39\xd0\x2c\xcb\xf9\xae\xba\x9e\x39\x37\x2d\x32\x21\x34\xf5\x41\xe0\xcd\xc8\xc1\x87\xe8\xba\xed\xd8\x6f\x53\x67\xe6\xab\xda\x2c\x78\xa1\x57\xc7\x9a\xe5\x27\x97\x9f\x4d\xdb\x50\x35\xc3\xf0\x88\x4f\xab\x70\x70\xd4\x61\xff\x17\x5f\x26\xb6\xf6\x6c\x11\x55\x33\xa6\xa6\x4f\xeb\xac\xba\xd6\x6c\x62\xb2\xda\x1e\xdc\x68\x53\xe2\xbb\x9a\x4e\x3e\x99\x63\xa2\xbf\xe9\x16\xf9\xf0\xc9\x9c\x9a\xc1\x9d\x66\x4f\x88\xf7\x21\x7a\xbc\x73\x5d\x77\x66\x76\xf0\xe1\x92\x8c\xb5\x99\x15\xdc\x07\x8e\xa7\x4d\xc8\x85\xa5\xf9\x7e\xfc\xdb\x83\x63\x11\x4f\x0b\x58\x93\xe8\x8e\x6d\xf8\x1f\x3e\xcf\x02\x2d\x30\xed\xc9\x79\x7c\xdf\x7f\x90\xe7\x17\xc7\x79\xfd\xf0\x4d\xb3\x4c\x83\x7f\xe9\x8e\xf8\xce\xcc\xd3\xc9\xff\xcc\x9c\x40\xfb\x70\xe3\x18\xe4\x8e\xf8\x81\x67\xea\xb4\xe0\xf8\x79\x4c\xdb\x27\xfa\xcc\x23\xaa\xeb\x78\x01\x7b\xde\xf8\x0a\x6d\x58\x8b\x04\xaa\xeb\x91\x31\xf1\x3c\x92\xb4\x8a\x1a\xbc\xb9\x84\x3d\xf0\xb5\x1d\x10\xcf\xd6\xac\xeb\xdb\x0f\x57\x3f\x92\xff\xfc\xcd\xf1\x03\x5b\x9b\x26\x2d\xea\x7a\xce\xd8\xb4\x4c\x7b\x52\x6a\x6b\x8f\xfc\x31\x23\x7e\xf0\x42\x34\x83\x78\x2a\xf9\x11\x78\x9a\x1a\xfe\xc3\x67\xb7\x35\x7f\xd0\x2c\xff\xab\xde\x91\xa9\x13\x10\xf5\x8a\x25\xe0\x67\x9e\x78\xce\xcc\x8d\x33\xe7\x72\x7d\xa4\x57\xf8\x99\x66\x3e\xad\xf3\x94\x70\xf3\x7d\xf5\x89\x97\x64\x9b\xd9\x81\x39\x25\xaa\xee\xd8\x63\x93\x3d\x07\xed\x3b\x8e\x67\xfe\xc9\xde\x52\xe7\xf5\xc4\xef\x98\xce\xe1\xbc\xfb\x4c\x02\xad\xfb\xdf\xd9\xee\x56\x68\xde\xd1\x60\xd0\x4f\x2f\xb1\x0e\xa1\x6a\x61\x8f\x50\x2d\xc7\x79\x9d\xb9\xc5\xfe\xea\x87\x1d\x44\x7d\xd6\xf4\x57\x62\xb3\xee\x4c\x3f\x82\xa4\x94\xc0\xf2\x55\xdd\x74\x5f\x88\xa7\xfa\x33\x33\x08\xdf\xcc\xc3\xa7\xfb\xa7\xab\x8b\xcb\xdf\xae\xe8\xff\xbf\x3f\x7f\xfa\xc7\xf5\xc3\x6f\x4f\xe7\x57\xf7\x4f\xdd\xde\xc9\xd3\xc7\x8b\xcf\x4f\xf7\xbf\x9d\xf7\x86\xa3\x0f\x95\xe9\x7a\xc3\x51\x9c\xae\x7f\x32\xe0\xa7\xbb\xf8\xed\xfc\xe2\xb7\xf3\xde\xd1\xd3\xed\x97\x4f\xff\xec\xf6\x8f\x86\x99\x64\x77\x42\x37\xbd\x13\xba\xe5\x5d\xe5\x0d\x0f\x68\x13\xfc\x95\x1a\x02\x8b\x04\x19\x43\x50\xf9\x11\xb7\x34\x11\xf4\x47\x62\x07\xa6\xce\x5e\xbe\x1a\x38\xaf\xc4\x56\xbf\x87\x5f\x5d\xa9\xa8\x6c\x3f\x51\xa7\x8e\x41\x68\x8a\xe8\x13\x8d\x13\xe9\xac\xf7\xfa\xaa\x4b\x3c\xf5\x0f\x27\x7c\x81\x99\x32\x74\xdb\x54\x9f\x4d\x5b\x35\x4c\x8f\x5e\x3a\x74\xdc\xe0\x50\xb7\xcd\xc3\x67\xd3\xce\x26\xa1\x9d\x33\x49\x43\x02\x9d\xa5\xb1\x49\xd0\x31\x52\xe3\x35\x76\x3c\x9d\xa8\xb6\x63\x10\x95\x36\x82\xae\x05\xd4\x9c\xd1\x1c\x49\x9a\x39\xb1\x03\xf5\x0f\xd7\xcf\x19\x83\xa9\xf6\x4a\x54\xd3\x65\xa9\x7d\x75\x16\x98\x96\xaa\xbf\x68\x91\xdd\xcb\x3e\xaf\x4d\x82\xef\x8e\xf7\x1a\x99\x45\x7a\x55\xb7\xcd\xf4\xeb\xd3\x0c\xd5\xb1\xad\xb7\xb2\xb5\xf1\x88\xef\x58\x73\xf6\x0c\x49\xfd\xc3\xdf\x3a\xec\xb7\xe4\x63\xf0\x88\x36\x35\xed\x09\x4d\x69\x13\x66\xca\x54\xd3\xb0\x88\x4a\xbf\x4f\x67\xc6\x0a\xed\x1f\x4d\xf1\x71\x1c\x0d\xe3\x36\x98\xd3\x67\xee\x25\xff\x72\xac\xd9\x94\x44\xef\x27\xe9\x2e\x73\xcd\x3b\xb4\xcc\xe7\xc3\xe8\x23\x3a\x0c\x53\xc5\xda\x56\xf8\xca\x5c\xcf\xf9\xf1\x96\x7e\x67\x2f\x44\xb3\x82\x97\x3f\xd5\xa2\x72\x76\x7b\xc7\xec\xb3\xeb\x16\x2a\x52\x28\xed\xc2\xb1\x03\xcf\xb1\x2c\xe2\x89\x7e\xba\xba\x16\x44\x7d\x58\x37\x0d\xaf\xd4\x05\xc3\xaf\x7b\x66\x07\xda\x64\x42\x0c\x55\xb7\x9c\x59\xe9\x0b\x0f\x0d\x39\x35\xcc\xec\xb2\xea\x39\xb3\xa8\x73\xe4\xbe\xf4\x48\xed\x5f\x1c\x3f\x70\xb5\xe0\x45\x75\x3d\x67\x6e\x52\x8d\x65\x95\xcd\xa7\xb5\x22\x15\xb3\x88\x1e\x94\xbe\x0a\x5a\xd9\xa9\x63\x9b\x81\x43\xa5\x4a\xd3\x09\xfd\xd6\x4d\x87\xd5\x6b\x70\xe4\x27\x52\xe9\x18\x2a\x99\x87\x0a\x9d\xed\xd1\xc3\x69\x26\x4d\xa5\x9c\x06\xc4\x9b\x9a\xb6\x16\x10\x43\xa5\x05\x4d\x74\x35\x78\xf1\x88\xff\xe2\x58\xec\x3e\xdd\xa3\xa3\xa3\xea\x57\xe1\xeb\x2f\xc4\x98\x09\xbe\x85\xba\x67\xad\xae\x5f\xf6\xa6\x7f\x8b\x6e\xcc\xf0\xae\x0b\xbc\x03\xde\x01\xef\x80\x77\xc0\x3b\xe0\x1d\xf0\x0e\x78\x07\xbc\xdb\x25\xbc\xeb\x01\xef\x80\x77\xc0\x3b\xe0\x1d\xf0\x0e\x78\x07\xbc\x03\xde\x01\xef\x76\x09\xef\xfa\xc0\x3b\xe0\x1d\xf0\x0e\x78\x07\xbc\x03\xde\x01\xef\x80\x77\xc0\xbb\x5d\xc2\xbb\x01\xf0\x6e\xc9\x78\xf7\xe1\xd6\x33\x1d\xcf\x0c\xde\xc0\x79\xe0\xbc\x1d\x90\x32\x70\x1e\x38\x0f\x9c\x07\xce\x03\xe7\x6d\x35\xe7\x75\xba\x47\xaa\xa7\xd9\xfa\x0b\xf1\xba\x6a\x69\x49\x5e\x54\x1d\xdd\x32\xa9\x69\xd2\x89\x17\x24\x76\x39\x77\x63\x42\x3c\xb5\x32\x51\xa1\xd7\x81\x1d\xc1\x8e\x60\xc7\xbd\x96\x47\xb0\x23\xd8\x11\xec\x08\x76\x04\x3b\x6e\x37\x3b\x9e\x02\x1d\x81\x8e\x40\x47\xa0\x23\xd0\x11\xe8\x08\x74\x7c\xf7\x8f\x03\xe8\x08\x74\xdc\x0a\x74\x1c\x62\x7a\x79\x55\x9c\xf7\xe1\x41\x33\xed\x80\x5e\xf5\x7f\x79\xbb\x70\x6c\xc3\x0c\x2f\x13\xcf\x37\xfd\x80\xd8\xc1\x37\xf6\xa5\x5f\x58\x9a\x39\xbd\x23\xbe\xf9\x27\x01\x19\x82\x0c\x77\x40\xfc\x1a\x92\x21\xc8\x0f\xe4\xb7\xfd\x9d\x1f\xe4\x07\xf2\xdb\x0e\xf2\xc3\x84\x33\x68\x12\x34\x09\x9a\xdc\x70\x41\x05\x4d\x82\x26\xf7\xb6\xf3\x83\x26\x41\x93\xdb\x42\x93\x5d\xd0\x24\x68\x12\x34\x09\x9a\xdc\x64\x41\x05\x4d\x82\x26\xf7\xb6\xf3\x83\x26\x41\x93\x5b\x48\x93\xa5\x00\x86\xa0\x49\xd0\x24\x68\x12\x34\xf9\xee\x82\x0a\x9a\x04\x4d\xee\x6d\xe7\x07\x4d\x82\x26\xb7\x85\x26\x7b\xf0\x4d\x82\x26\x41\x93\xa0\xc9\x4d\x16\x54\xd0\x24\x68\x72\x6f\x3b\x3f\x68\x12\x34\xb9\x75\x34\xd9\x83\x6f\x12\x34\x09\x9a\x04\x4d\x6e\xa0\xa0\x82\x26\x41\x93\x7b\xdb\xf9\x41\x93\xa0\xc9\x2d\xa4\xc9\xd2\x59\x2e\xa0\x49\xd0\x24\x68\x12\x34\xf9\xee\x82\x0a\x9a\x04\x4d\xee\x6d\xe7\x07\x4d\x82\x26\xb7\x90\x26\x4b\xb1\x7d\x40\x93\xa0\x49\xd0\x24\x68\xf2\xdd\x05\x15\x34\x09\x9a\xdc\xdb\xce\x0f\x9a\x04\x4d\x6e\x21\x4d\x9e\x80\x26\x41\x93\xa0\x49\xd0\xe4\xc6\x09\x2a\x68\x12\x34\xb9\xb7\x9d\x1f\x34\x09\x9a\xdc\x12\x9a\x1c\x61\x4b\x37\x60\x12\x30\x09\x98\xdc\x64\x3d\x05\x4c\x02\x26\xf7\xb6\xf3\x03\x26\x01\x93\x5b\x02\x93\xc7\xd8\xd1\x0d\x98\x04\x4c\x02\x26\x37\x59\x4f\x01\x93\x80\xc9\xbd\xed\xfc\x80\x49\xc0\xe4\x96\xc0\x24\x8e\xcf\x06\x4c\x02\x26\x01\x93\x1b\xad\xa7\x80\x49\xc0\xe4\xde\x76\x7e\xc0\x24\x60\x72\x2b\x60\x72\x84\x03\xb5\x41\x7e\x20\x3f\x90\x1f\xc8\x0f\xe4\x07\xf2\x03\xf9\x81\xfc\xf6\x85\xfc\x32\x07\x6a\x23\x30\x24\x68\x12\x34\x09\x9a\xdc\x44\x41\x05\x4d\x82\x26\xf7\xb6\xf3\x83\x26\x41\x93\xdb\x42\x93\x7d\xcc\x4a\x83\x26\x41\x93\xa0\xc9\x4d\x16\x54\xd0\x24\x68\x72\x6f\x3b\x3f\x68\x12\x34\xb9\x85\x34\x09\xdf\x24\x68\x12\x34\x09\x9a\xdc\x3c\x41\x05\x4d\x82\x26\xf7\xb6\xf3\x83\x26\x41\x93\xdb\x42\x93\x03\xf8\x26\x41\x93\xa0\x49\xd0\xe4\x26\x0b\x2a\x68\x12\x34\xb9\xb7\x9d\x1f\x34\x09\x9a\xdc\x16\x9a\x1c\x82\x26\x41\x93\xa0\x49\xd0\xe4\x26\x0b\x2a\x68\x12\x34\xb9\xb7\x9d\x1f\x34\x09\x9a\xdc\x42\x9a\xc4\x4c\x37\x68\x12\x34\x09\x9a\xdc\x3c\x41\x05\x4d\x82\x26\xf7\xb6\xf3\x83\x26\x41\x93\x5b\x48\x93\x03\xd0\x24\x68\x12\x34\x09\x9a\xdc\x38\x41\x05\x4d\x82\x26\xf7\xb6\xf3\x83\x26\x41\x93\x5b\x42\x93\xd8\xd2\x0d\x98\x04\x4c\x02\x26\x37\x5a\x4f\x01\x93\x80\xc9\xbd\xed\xfc\x80\x49\xc0\xe4\x96\xc0\x24\xf6\xe0\x00\x26\x01\x93\x80\xc9\x8d\xd6\x53\xc0\x24\x60\x72\x6f\x3b\x3f\x60\x12\x30\xb9\x25\x30\x39\x02\x4c\x02\x26\x01\x93\x80\xc9\x4d\xd6\x53\xc0\x24\x60\x72\x6f\x3b\x3f\x60\x12\x30\xb9\x7d\x30\x89\x1d\x38\x80\x49\xc0\x24\x60\x72\xf3\xf4\x14\x30\x09\x98\xdc\xdb\xce\x0f\x98\x04\x4c\x6e\x09\x4c\x1e\xc3\x33\x09\x98\x04\x4c\x02\x26\x37\x59\x4f\x01\x93\x80\xc9\xbd\xed\xfc\x80\x49\xc0\xe4\x96\xc0\xe4\x09\x60\x12\x30\x09\x98\x04\x4c\x6e\xb2\x9e\x02\x26\x01\x93\x7b\xdb\xf9\x01\x93\x80\xc9\xed\x83\x49\x4c\x73\x03\x26\x01\x93\x80\xc9\xcd\xd3\x53\xc0\x24\x60\x72\x6f\x3b\x3f\x60\x12\x30\xb9\x15\x30\x79\xdc\x90\x1f\xa3\xd7\x33\xef\x01\x2c\x01\x96\x00\x4b\x80\x25\xc0\x12\x60\x09\xb0\x04\x58\x02\x2c\x01\x96\x14\x2c\x4f\x00\x96\x00\x4b\x80\x25\xc0\x72\x7b\xb4\x15\x60\x09\xb0\xdc\xdb\xce\x0f\xb0\x04\x58\x6e\x05\x58\x9e\x02\x2c\x01\x96\x00\x4b\x80\xe5\xf6\x68\x2b\xc0\x12\x60\xb9\xb7\x9d\x1f\x60\x09\xb0\xdc\x06\xb0\xec\x1d\xed\x0c\x58\x6a\xae\xa9\x6a\x33\xc3\x24\xb6\x1e\x76\xa7\x99\xfd\x6a\x3b\xdf\x6d\x80\xa7\x2c\x78\x8e\x89\x16\xd0\xef\x73\xa2\x45\x1f\x66\xfe\x01\xaf\x7d\x7f\x46\xbc\x4b\xd3\xd7\x9d\x39\xf1\xde\xfe\x3b\xf7\x16\x00\xad\x9b\x03\xad\x26\x7b\x51\x34\x95\xf7\x4a\x24\xc9\xb6\x90\xca\x37\x27\x36\x95\xfe\x57\xf2\xa6\x8e\xcd\x10\x5b\x18\x28\xd0\xb7\xea\xd9\x24\x20\xfe\xa1\xef\x5b\xec\x9f\x6a\x31\x73\x48\x69\xaf\xe4\xad\xe3\x92\x29\xd8\x19\xec\x0c\x76\x06\x3b\x83\x9d\xc1\xce\x5b\xce\xce\x4d\xf7\xb4\x83\x9d\x77\x97\x9d\xc1\xbf\xe0\x5f\xf0\x2f\xf8\x17\xfc\x0b\xfe\x05\xff\x82\x7f\x77\x99\x7f\xb7\x6e\x1b\x3e\x30\x17\x98\x0b\xcc\x05\xe6\x6e\x8a\xd2\x03\x73\x81\xb9\x7b\xdb\xf9\x81\xb9\xc0\xdc\xed\xc0\xdc\x6c\x50\xfc\xa6\xcc\x4b\x7e\xd0\x26\x9d\x12\x3b\xd0\x2c\xd5\xb4\xcd\xc0\xd4\x2c\x55\x77\x3c\x6f\xe6\x06\xaa\xfe\x42\xf4\x92\x6d\x06\x25\x83\x92\x41\xc9\xa0\xe4\xbd\x07\x05\x50\x32\x28\x79\x6f\x3b\x3f\x28\x19\x94\xbc\x15\x94\xdc\x87\x33\x18\x98\x0b\xcc\x05\xe6\x02\x73\x81\xb9\xc0\x5c\x60\x2e\x30\x17\x98\xbb\x83\x98\xdb\x19\xc0\x19\x0c\x4a\x06\x25\x83\x92\x41\xc9\xa0\x64\x50\x32\x28\x19\x94\x0c\x4a\x06\x25\xe7\x28\x79\x00\x67\xf0\xbe\x62\x2e\x60\x16\x30\x0b\x98\xdd\x23\x98\x5d\x03\x83\x02\x33\x81\x99\x62\x98\x09\x98\x5c\x1b\x4c\x2e\x19\x19\x87\x40\x46\x20\x23\x90\x11\xc8\x08\x64\x04\x32\x02\x19\xb7\xac\x5b\x02\x19\x81\x8c\x6b\x47\xc6\x11\x90\x11\xc8\x08\x64\x04\x32\x02\x19\x81\x8c\x40\xc6\x2d\xeb\x96\x40\x46\x20\xe3\xda\x91\xb1\xe9\xc9\xff\x40\x46\x20\x23\x90\x11\xc8\xb8\x27\xda\x0c\x64\x04\x32\x6e\x60\xb7\x04\x32\x6e\x28\x32\x6e\x29\x0e\x96\x4e\x55\xb5\x67\x96\x55\xc5\x71\x09\x42\xe9\xe1\xfb\x3d\x28\x1d\x8c\xf4\x61\x01\x51\x15\x21\xe5\x93\xf6\x4c\x2c\x2e\x58\xe5\x59\xa8\x12\xb3\x0a\x90\x94\xef\x49\x38\xa1\xb5\x1e\x29\xe3\xe7\xc1\xbe\x9c\xcd\x21\x46\x1c\xb3\xba\x2e\x54\x6b\x39\x2a\xc5\x86\x19\x6c\x98\xd9\x82\x8f\x63\x8b\x81\x11\x1b\x66\x36\xc0\xfb\xb8\xea\x0d\x33\x7f\x63\xf7\x3e\xf8\xfd\xc4\xff\x46\xd9\xd0\xb1\xef\x7e\xbf\xba\x7f\xf3\x03\x32\xbd\x9e\x6a\x13\xf6\x3a\x7e\x46\xac\xda\x3d\xea\x1c\xa5\x3b\xcf\x4b\x47\x4f\x1d\x44\x97\x0e\x75\xc7\x23\x8e\xaf\xd2\x9f\xcf\xe6\xfd\x4e\xb7\xd3\x8d\x3a\xfe\x81\x66\xb9\xa6\x4d\xb2\x69\xbd\x57\xa2\x06\x8e\x63\xf9\x67\xf3\xa3\x4e\xb7\x33\x88\x12\xda\x13\xd3\xfe\x71\x1b\x75\xf1\x45\x89\x75\xe2\x05\x97\xce\x77\xdb\x72\x68\x83\x08\x64\x48\x3d\x36\x11\x0e\xfa\xf7\xa6\x41\x74\x4d\x34\xaf\x11\x9a\xdc\x38\xe5\xeb\x89\xaf\x1a\xb6\xaf\x32\xcf\x0f\xfd\x0f\x6d\x6a\x8c\x06\x67\xdd\x4e\x77\xd0\x39\x89\xb2\x19\xb6\x3f\xd5\xfc\x3f\x78\xd9\xa2\x4b\xaa\xad\xd9\xf6\x1b\x2f\x6f\x74\x4b\x4e\x1d\xe3\x22\xfc\xf0\x52\x4d\xe6\xf3\x59\xe0\xf8\xba\x66\xe5\xdb\x47\xb7\x66\x7e\x40\x3c\xfa\x49\x51\x31\x30\x1d\x5b\xb3\xa8\xdc\x46\x49\x93\xf2\x92\x5e\x97\x69\xba\x6c\x39\x2f\x6f\x2e\xf1\xe8\xa5\xb3\x62\x37\x89\xb2\x8d\x2d\xcd\xb6\x89\xc5\xe9\x25\xd1\x15\xda\xc8\xa7\x9d\x42\xf2\x0b\xdb\xac\xce\xa1\xea\xb6\x49\x73\xf5\x92\xba\xe9\x9a\x65\xea\xce\x4d\x24\xef\x49\x2e\xf6\x2b\x33\x55\x51\x6f\xcc\x25\x2f\xde\x23\x4c\xcd\xca\xe6\x24\x0e\x2c\x5e\xe2\xc0\x3a\x9b\xf7\x32\x8d\xa4\x6b\xb6\x66\x49\xd4\xc3\xd6\x4a\x8f\x5a\x59\x0d\x5b\xb3\x7e\x95\x6b\xcc\xef\x44\x9b\x93\xb8\x36\xec\x1f\x14\x0e\xfc\x43\xf6\x9f\xac\xd3\x9e\xf5\x3a\xdd\x4e\x2f\x9b\x3c\xaa\x4e\x29\xb5\xed\xea\xb9\xc4\xae\x63\x5c\xdb\x63\x4f\xa3\xfa\xa1\x99\x76\xbe\x77\xb9\xda\xcc\x27\x51\x1f\xea\x27\xd5\x31\xed\x49\x6c\xd0\xe2\x84\xec\x6b\x57\xa3\x0b\xf1\xe0\xd6\x22\xde\xd9\x11\xed\x4c\xbd\xb8\x33\xf5\xf3\x25\xfc\x92\xb2\xf8\xa2\x82\x54\x23\x1c\xd3\x45\xf8\x7e\x46\x3f\xe7\xec\x28\xbc\x7b\xd4\xe9\xc6\x77\xe9\xad\xc6\xb2\x9d\xc8\x58\xb6\x13\x59\xcb\x76\xd2\xc2\xb2\x9d\xc0\xb2\x89\x5b\xb6\xb4\x9b\xc0\xb2\xc1\xb2\x6d\x87\x65\xeb\xae\x18\xda\xba\x7d\x19\xdb\x96\xa4\x16\x36\x6e\x49\x8e\x26\xd6\x2d\x97\x19\xe6\x6d\x91\x79\xeb\x82\xdc\x60\xdf\x96\x63\xdf\x46\xa9\x7d\xeb\x2e\xd5\xbe\x85\x65\x4d\x49\xe0\x99\x3a\xb3\x04\xf9\xca\x47\x17\xd8\x1c\x7c\xf2\x29\xb0\xee\xd6\x2d\x99\xc6\x1e\x4c\x23\x4c\xa3\xa0\x69\x2c\xf5\x66\x98\x46\x98\xc6\x9d\x35\x8d\xfd\x15\x8f\x87\xbb\x47\x52\x96\xf1\x48\xda\x32\x96\xbf\x6e\x09\xcb\x78\x04\xcb\x28\x6e\x19\xfb\x18\x13\xc3\x30\x6e\xd7\x98\x78\xb8\x6a\xee\x83\x75\xdb\x15\xeb\x36\x04\xf6\xc1\xba\x6d\xad\x75\x2b\xc5\x07\xc7\xa8\x16\xd6\x0d\xd6\x0d\xd6\x6d\x0f\x07\xb5\xdd\x4e\x93\x99\x90\x5e\xa7\x7b\xb2\xd7\x86\x31\xc1\xc5\x26\x96\xb1\xc8\x9a\x72\xa6\xb1\x98\x7b\x9d\xb6\x31\xdb\x5b\x60\x1b\x61\x1b\x77\xdd\x36\x36\x99\x0a\x81\x6d\xdc\x57\xdb\x88\xc9\x10\xd8\xc6\xbd\xb4\x8d\xc2\x03\x6a\x29\xdb\x38\x92\xb2\x8d\x23\x69\xdb\x38\x6a\x63\x1b\x47\xb0\x8d\x6b\xb0\x8d\xdd\xf4\x36\x32\xc6\xb1\x2f\x6b\x1c\xfb\x32\xc6\xb1\xbf\x3a\xe3\xd8\x97\x30\x8e\x7d\x69\xe3\x98\x69\x4d\x58\xc7\x15\x5b\xc7\xfe\xaa\xc9\x11\xd6\x71\x87\xac\x63\x1f\xd6\x11\xd6\x71\x8f\xac\x63\x93\xa9\x66\x58\xc7\x7d\xb5\x8e\xcd\xe6\x63\x60\x1d\x61\x1d\xb7\xd3\x3a\x8e\x56\x6d\x1d\x87\x52\xd6\x71\x28\x6d\x1d\x87\x6d\xac\xe3\x10\xd6\x51\xca\x3a\x8e\x60\x1d\x61\x1d\xf7\xc8\x3a\x9e\xc0\x3a\xc2\x3a\x0a\x5b\xc7\x13\x58\x47\x58\xc7\x3d\xb2\x8e\xa7\xb0\x8e\xb0\x8e\xc2\xd6\xf1\x14\xd6\x11\xd6\x71\x3f\xad\xe3\x4a\xe6\xac\x7b\x52\x11\x6d\x7a\xd2\x21\x6d\x7a\x6d\x62\xda\xf4\x1a\x06\xb5\x81\x75\x84\x75\x84\x75\xdc\x2f\xeb\xd8\x5f\xcd\xac\x8c\xda\x93\x9b\x97\x49\xd2\x4b\xcc\xcc\x24\x79\x9a\xcd\xcd\xe4\xb2\xc3\x4a\xc2\x4a\xc2\x4a\xc2\x4a\xa6\x56\xb2\xd7\x28\xdc\x6b\xaf\xd3\x1b\x88\x5b\x49\x39\x1b\x29\x6f\x21\x5b\xd9\xc7\x86\xd6\xb1\xdf\xc6\x3a\xf6\x5b\x59\xc7\xfe\x6a\xac\x23\x7d\xc5\x51\x0b\x44\xff\x79\x18\xfd\xef\x59\x97\xbe\xf0\x7c\xb2\x75\xda\xe4\x5e\xc3\x58\xb3\xb0\xc9\xb0\xc9\x5b\x60\x93\xfb\x65\x9b\xdc\x6c\x0f\x23\x6c\x32\x6c\xf2\xfa\x6c\x72\xb3\x9d\x93\xb0\xc9\xb0\xc9\x5b\x6a\x93\x9b\x82\x72\xf1\xc1\x16\x1f\x90\x20\x15\x58\x68\x20\x1d\x58\x68\xd0\x26\xb0\xd0\x40\x22\xb0\x50\x43\xbb\xdc\xd4\x22\x2f\xd1\x16\x57\x59\xe1\xec\x6b\xa6\x77\x5e\xb6\x35\x6e\x62\x87\x9b\xc3\x71\x45\xc6\x82\x99\x2a\x9b\xe2\x62\x3e\xd8\xe4\x16\x36\x79\x98\x4f\x5e\x6f\x93\xd3\xc4\x8b\x6d\x72\x63\x6b\xdc\xeb\xa6\xaf\x78\xa9\x31\x8c\x8a\xfd\x46\xd0\x2c\x0b\x18\x64\x89\xd9\xaf\x26\x06\x59\xca\xcd\x3b\x90\x76\xf2\x0e\xda\xb8\x78\x07\x12\x0e\x5e\x18\x64\x18\x64\x18\x64\x18\xe4\xd5\x18\xe4\x66\x7b\x44\x25\xbc\x16\x52\xab\x11\xba\xd2\xab\x11\xba\x6d\x56\x23\x74\x9b\xae\x46\x80\xd7\x62\x9d\x5e\x0b\xec\x4c\xdd\x3e\x83\x0c\xaf\x45\x73\xaf\xc5\x60\xc5\x36\xb9\x77\x2c\x63\x93\x93\xd4\xe2\x2b\xc4\x8e\x5b\xd8\xe4\x5c\x66\xd8\xe4\x4d\xb5\xc9\x25\x0c\x81\x4d\x86\x4d\xde\x61\x9b\xdc\x2c\x5a\x00\x66\xf7\x76\xcd\x26\x8b\x59\x47\x44\x0b\xd8\x3e\xeb\xb8\x32\x17\x42\x4b\xeb\x98\x75\x24\x6c\x81\x75\x94\xf2\xea\x82\x58\x77\xcb\x3a\x6e\x32\xb1\xc2\x26\xc3\x26\xef\x93\x4d\x6e\x16\xc1\x05\xc4\xba\x6b\x36\x59\xcc\x3a\x22\x82\x0b\xac\xe3\x9e\x5a\xc7\xd5\xae\x43\xd8\x19\x74\xdd\xbd\x75\x08\xab\x42\xd4\xb5\x9a\x5f\x2c\x3f\xd8\x65\x4b\xbc\xeb\xcb\x0f\x8e\x01\xa9\x80\x54\x61\x2b\x79\x0c\x48\x85\x69\xdc\x23\x48\x3d\x06\xa4\x02\x52\x37\x07\x52\x9b\x9b\x5f\x40\xea\x2e\x5b\xe2\x3d\x82\x54\x89\x98\x34\x4d\xcc\xf0\xae\x84\xee\xda\x3d\x33\x9c\x7d\xcd\x1b\xb2\x67\x01\xe6\x18\xe6\x78\xcf\xcd\xf1\x60\x35\x3e\x83\x5d\x0e\x11\x06\xdf\x01\x7c\x07\x7b\x6f\x22\xf7\xc0\x77\xd0\x2c\x08\x77\x03\x68\xed\x0f\x64\x8c\x65\x92\x5a\xd8\x54\x26\x39\x9a\x18\xca\x5c\x66\x40\xeb\xfb\x43\x6b\xf3\x48\x8d\x80\xd6\x5d\xb6\xc8\xbb\x0d\xad\x7d\x44\x07\x93\x87\xd5\xb4\xfb\xc8\xb3\xea\xb0\xd3\x22\x9a\x6d\x29\xf3\x3a\x49\xb5\xbf\xd1\x41\xba\x06\x85\xe4\xb5\x06\xa9\x94\x78\x79\x76\x71\x90\x4f\x2d\x5c\x8d\xad\xb3\x8b\x3b\x4f\xaa\x39\xd3\x88\xcd\x03\xfb\x6a\x1a\x17\xcc\x78\x8d\x96\x40\xab\x30\xc8\x30\xc8\x30\xc8\x22\x06\x79\xf5\xe1\xc5\x77\xd6\xc3\xba\x7b\x96\x59\xd0\x46\x6e\x72\xb8\x6f\x18\x49\x18\xc9\x55\x1a\x49\x44\x32\x14\x76\xb0\xca\xdb\xc7\x86\x96\x71\x79\x36\xb1\x89\x77\x75\x19\xbc\xba\x5e\x2b\xbc\x56\xf7\x2a\x0c\x32\xdc\xab\xcb\x75\xaf\x36\xf5\xaf\x4a\x5b\xe3\xe1\x91\x8c\x35\x4e\x52\x0b\x5b\xe3\x61\xf9\x8b\x17\xb7\xc6\xc3\x23\x58\xe3\x0d\xb2\xc6\xcd\x1d\x07\xb0\xc6\xb0\xc6\x25\x6b\x1c\x5e\x38\xea\xf4\x86\x65\x97\xd4\x26\xda\xe4\x1e\x6c\x32\x6c\xf2\xa6\xd9\xe4\x52\xa4\xb9\x5d\xb4\xc9\xc9\x47\xee\x73\x32\xb1\xce\x96\xda\x01\x1f\x56\x1d\x56\xbd\x89\x55\xef\xc1\xaa\xc3\xaa\x6f\x9a\x55\xef\xc1\xaa\xc3\xaa\xc3\xaa\xcb\x5a\xf5\x55\x87\x1c\xc7\xf2\xb4\x9d\x99\xe9\xdb\xe4\xc8\xdf\xf0\x64\x60\xa2\x6f\xd9\x13\x7d\x03\x04\x61\x68\x10\x84\x61\x87\x78\x77\x55\xeb\xd1\xd6\x6a\x7b\xb7\x08\x73\x61\x86\x31\xbd\x57\xb0\xc1\x38\x7d\x01\x78\x2a\x68\x22\x37\x39\xcc\x37\xec\x22\xf0\x74\xd9\x78\xda\xf4\xe8\x05\xe0\x29\xf0\x74\xd9\x78\xda\xdc\xf6\x02\x4f\x77\xd9\x0c\xef\x11\x9e\x22\x40\xd8\x3e\xda\xe0\xec\x3b\xde\x90\x29\x31\xd8\x62\xd8\xe2\x7d\xb4\xc5\x4d\x23\x8a\xef\x77\xdc\x1b\xd8\xe2\x55\xda\xe2\x2d\x89\xd4\x08\x5b\x0c\x5b\xbc\x54\x5b\xdc\x34\x06\x19\xdc\xb6\x7b\xe7\xb6\x6d\x1e\x17\x0c\x6e\xdb\x9d\xb3\x8b\x7b\xe0\xb6\x3d\x5d\xdb\xee\x61\xa9\x55\xb4\x03\xe9\x55\xb4\x83\x36\xab\x68\x07\x58\x45\xbb\x41\x98\xba\x25\xb1\x19\x61\x8e\x81\xa9\x4b\xc4\xd4\x41\xa3\xd8\x8c\xbc\xbd\xf6\x70\xdf\x6e\xbe\x2d\xee\x8b\x4d\xa1\xa5\x3d\xbe\xa5\x0d\xee\x4b\xd9\xe0\x41\x8b\x58\x63\xb0\xc1\xb0\xc1\x6b\xb4\xc1\xa5\xf9\x85\xa5\xd9\x60\x61\x1e\x86\x0d\xde\x21\x1b\x5c\xcd\xc3\xb0\xc5\xb0\xc5\xb0\xc5\xeb\xb4\xc5\x99\xd0\x66\x47\x2b\x35\xc6\xd8\xe2\x0b\x63\x2c\x6a\x8c\xdf\x2f\xb4\xd9\x70\x7d\xd6\x18\x5b\x7c\xb7\xc7\x9e\xaf\x7a\x8b\xef\x0a\xad\xfa\x6a\xdd\x1c\x43\xa9\x80\x95\x43\xe9\x80\x95\xc3\x36\x01\x2b\x87\x7b\x11\xb0\x12\x56\x1d\x56\x1d\x56\x7d\x0f\xac\x7a\x7f\x5d\x46\x1d\xcb\xdd\x60\xd4\x05\x8d\x7a\x1f\x7e\x13\x58\xe4\x3d\xf4\x9b\x34\xd9\xa5\xdc\xc8\x16\x63\x4d\x07\x6c\xb1\xa0\x2d\xc6\x36\x10\xd8\xe2\x7d\xb4\xc5\xa3\xb5\xd9\x62\x9c\xce\x01\x5b\x2c\x66\x8b\x47\xb0\xc5\xb0\xc5\x7b\x68\x8b\x9b\x6c\xc9\xc3\x74\x22\x6c\xf1\x2a\x6d\xf1\xfb\x6d\xc9\x5b\xa3\xdf\x19\xb6\x18\x5e\x63\xae\x45\x3e\x81\x45\x86\x45\xde\x30\x8b\x7c\xb2\x0f\x16\x19\x33\x81\xb0\xe9\xab\xb6\xe9\x12\xe7\x72\x34\xb3\xe9\x5d\x29\x9b\xde\x95\xb6\xe9\xdd\x36\x36\xbd\x0b\x9b\xbe\x81\x36\x7d\xed\xc7\x72\xc0\xa6\xc3\xa6\x6f\xbf\x4d\x6f\x12\x40\x03\x36\x1d\x36\x7d\x95\x36\xfd\xfd\x76\x89\xc3\xa6\xc3\xa6\xef\x94\x4d\x5f\xed\x4e\x47\x2c\xc3\x86\x4d\x87\x4d\x87\x4d\x87\x4d\x5f\xb1\x4d\x1f\x76\xd6\xb6\xb5\x06\xab\xb0\x61\xd3\x85\x6c\xfa\xb0\xd2\x34\x2f\x30\x1c\x9c\xd8\x69\x2b\x5d\x6d\x72\x9c\x84\x55\x13\xb0\xe9\xa5\xc4\xd2\x36\xbd\x54\xc2\xf2\x6c\x7a\xb6\xe8\x45\x36\xbd\x90\x56\xcc\xa6\x77\x65\x6d\x7a\x4f\xc6\xa6\xf7\x56\x6d\xd3\x37\x75\xbd\x4a\xbf\x68\xcd\xb1\x53\x12\x88\xbe\x71\xe6\xbc\xe9\x4e\xc9\x25\xd8\x73\x29\x46\x87\x3d\xdf\x17\x7b\xbe\xd9\x8c\x1e\xeb\xcb\x77\xd3\x36\x9c\xef\xfe\x6d\x5d\x2b\xd0\x06\xb6\x48\xa0\x86\xad\x11\xb2\x6c\x49\x14\xba\x08\x8a\x82\x35\x33\x9b\x26\x0a\x0d\x43\x54\x41\x14\x20\x0a\xfb\x29\x0a\x35\x56\x1d\xa8\x0f\xab\x0e\xab\x2e\x61\xd5\xbb\xc5\x73\x14\x6a\xad\x61\x39\xb5\xb4\x5d\x2f\x17\x21\x6a\xd8\xe9\xef\xbf\x5a\xe4\xc7\x37\x87\x97\xc1\x75\x8c\x9e\xa1\x91\xa9\x63\xab\x63\x8b\xfc\x98\x3b\x56\xe9\x6e\x8b\x95\xa1\x98\x5c\xbc\x31\x1a\x68\x43\x94\xa9\xf1\x03\x41\x5b\xb6\x6a\xc0\xb1\xe2\x89\x62\xa9\x63\x74\x86\xd2\xc7\xe8\x0c\xdb\x1c\xa3\x33\x94\x38\x46\x07\xd2\x04\x69\x82\x34\x41\x9a\x20\x4d\xeb\x93\x26\xe1\x03\x8f\x21\x4d\x90\xa6\x66\xf7\xa5\x66\xcc\x72\x74\xcd\xe2\x3d\x32\xbd\xa8\xea\x9a\xfe\x42\xc2\xa7\x3e\x86\x9e\x41\xcf\xa0\x67\xd0\x33\x19\x3d\xeb\xad\xcd\x0b\x08\x3d\x83\x9e\x09\x4a\x53\xef\xdd\xa4\x69\x24\x23\x4d\x27\x9d\x53\x71\x65\x2a\x25\x96\x16\xa6\x52\x09\xd5\xba\x94\x4f\xbc\x58\x56\x0a\xa9\x85\x1f\x64\x55\x73\x3b\xa3\x64\xfe\x48\x40\x14\xd2\xc4\x2b\x17\x85\x7e\x6f\x35\xe7\xab\x2e\x7b\x6e\xa7\x97\xee\x88\x86\x03\x0d\x56\x7d\x8b\x47\x29\xbd\x66\xfb\xa8\xd7\x2d\x05\xdd\xbe\xcc\x3c\x7f\x39\x75\x93\x51\x8a\xf0\x4c\x3f\x27\x75\x03\xaa\x1f\xc8\x0d\x53\xc4\x17\x0b\x14\x13\xaf\x6b\x98\x32\x80\x22\x6d\xdf\x30\xa5\xb7\x6a\xb7\x9b\xd4\x21\x89\x43\xe9\x43\x12\x87\x6d\x0e\x49\x1c\xe2\x90\xc4\x7d\x15\xb4\x5e\x52\x39\xe8\xd8\x4e\xe9\x58\x0f\x3a\xb6\xb3\x3a\x36\xa8\xd3\xb1\xc1\x6a\x75\xec\x54\x4a\xc7\x4e\xa5\x75\xec\xb4\x8d\x8e\x9d\x42\xc7\xa0\x63\xd0\x31\xe8\x18\x74\x6c\xeb\x75\x6c\xb8\x52\x1d\x1b\x49\x6d\xfb\x1f\x49\x6f\xfb\x1f\xb5\xd9\xf6\x3f\xc2\xb6\x7f\xe8\x18\x74\x0c\x3a\x06\x1d\xdb\x7e\x1d\x1b\xad\x56\xc7\x86\x52\x3a\x36\x94\xd6\xb1\x61\x1b\x1d\x1b\x42\xc7\xa0\x63\xd0\x31\xe8\xd8\xee\xe9\x18\x27\x1c\xd4\x6e\xeb\xd8\xf1\x6a\x75\x4c\x6a\xc1\xc7\x48\x7a\xc1\xc7\xa8\xcd\x82\x8f\x11\x16\x7c\x40\xc7\xa0\x63\xd0\xb1\xdd\xd6\xb1\xde\x5e\xe8\xd8\xc9\x6a\x75\x4c\x6a\x7e\x6c\x24\x3d\x3f\x36\x6a\x33\x3f\x36\xc2\xfc\x18\x74\x0c\x3a\x06\x1d\x83\x8e\x6d\xa7\x8e\xad\x6d\x57\xd5\x40\x2a\x62\xde\x40\x3a\x62\xde\xa0\x4d\xc4\xbc\x01\x22\xe6\x6d\xd0\xae\xaa\xf7\xdb\x54\x85\xa8\xd8\x08\x98\xb7\xcd\x51\xb1\xfb\x6b\xb3\xe6\x52\x91\xf2\x06\xd2\x91\xf2\x06\x6d\x22\xe5\x0d\x10\x29\x6f\x83\xac\x79\x1f\xd6\x1c\xd6\x1c\xd6\xbc\x81\x35\x1f\xac\x2d\xe2\x01\xa2\x59\xc3\x9a\x8b\x59\xf3\xc1\x76\xc4\xe2\x81\x35\xdf\x17\x6b\xbe\xe9\x51\x70\xaa\x6d\xfa\x8a\xe3\x1d\xc0\xa6\xc3\xa6\xc3\xa6\xc3\xa6\xc3\xa6\x6f\x96\x0b\xbe\x24\x09\x43\x60\x3e\x24\x61\xc3\x24\xa1\xf4\x85\x40\x12\x20\x09\x90\x04\x61\xcc\x1f\x02\xf3\x61\xd3\x61\xd3\x61\xd3\x61\xd3\xb7\xd7\xa6\xaf\x08\xf3\x57\x1e\xe9\xb2\x2b\x25\x09\x5d\x69\x49\xe8\xb6\x91\x84\x2e\x24\x61\x03\x25\x61\xed\x31\x2b\x21\x09\x90\x84\xbd\x97\x84\xd1\xda\x46\x09\x90\x04\x48\x82\x98\x24\x8c\x30\x4a\x80\x24\x40\x12\xde\x4b\x12\x8e\x71\xd6\x31\xce\x3a\xde\x30\x49\x38\x86\x24\x40\x12\x20\x09\xef\x25\x09\xa7\x90\x04\x48\xc2\x86\x49\xc2\x29\x24\x01\x92\x00\x49\x78\x1f\x49\x18\x65\x1e\x51\x4a\x12\x4a\x0f\x81\xe9\xe5\xcd\x97\x84\xe3\xa2\x8d\xaf\x97\x84\x51\xf2\xad\xb5\x94\x84\xf4\xbe\x22\x92\x30\x2a\x7f\x76\x9b\x29\x09\x27\x9d\xae\xb8\x24\x94\x12\x37\x38\x0a\x31\x5f\x82\x6c\x34\x85\x6c\x7e\x91\xd3\x11\xbb\xc2\x2a\x51\x48\xbb\x96\xb3\xac\xd2\x7b\x42\x64\x96\x2e\x32\x83\x65\x8b\x4c\x1a\xfe\x62\xd5\x2a\x83\xb3\x19\xa1\x32\x2b\x0b\x71\x94\xeb\xc9\xeb\xd6\x26\xc4\x3a\xda\xe8\x58\x47\x38\x9b\x71\x83\x63\xa8\xaf\x52\xd0\x64\xe6\xdb\x1b\x08\x1a\xce\x66\x84\xa0\x6d\xa0\xa0\x21\x66\xdf\x8e\xea\x18\x62\xf6\xed\xae\x8e\x0d\x4a\x3a\xd6\x30\xcc\x53\x03\x1d\xc3\xd9\x8c\xd0\xb1\x55\xea\x58\xc3\xe0\x50\xd0\x31\xe8\x18\x74\x6c\x97\x74\x6c\xb5\xe3\x31\x9c\xcd\x08\x1d\x83\x8e\x41\xc7\xa0\x63\xd0\xb1\x15\xe8\x58\xc3\x40\x8d\xd0\x31\xe8\xd8\x86\xe9\x58\xc3\x50\x60\xd0\x31\xe8\x18\x74\x6c\xeb\x75\xac\x61\x24\x32\xe8\x18\x74\x6c\xc3\x74\xac\x61\xac\x1b\xe8\x18\x74\x0c\x3a\xb6\x4b\x3a\xb6\x62\xbf\x22\xce\xca\x87\x8e\x41\xc7\xa0\x63\xd0\x31\x9c\x95\xbf\x52\x1d\xeb\xaf\x56\xc7\x70\x56\x3e\x74\x0c\x3a\x06\x1d\x83\x8e\xe1\x8c\xe1\x95\xea\xd8\x60\xb5\x3a\x86\xb3\xf2\xa1\x63\xd0\x31\xe8\x18\x74\x0c\x3a\xb6\x74\x1d\x6b\x78\x56\x3e\xa2\x6e\x40\xc6\x1a\xdc\x57\x4c\x91\xde\xef\xac\x7c\x44\xdd\x40\xd4\x0d\x44\xdd\x58\xfa\x26\xe5\xde\xda\x82\x6e\x20\x26\x38\x44\x46\x52\x64\x36\xfb\x98\x08\x88\x0c\x44\x06\x22\x23\x22\x32\xeb\xdb\x40\x0c\x91\x81\xc8\x88\x89\x4c\xc3\x2d\x54\x10\x19\x88\x0c\x44\x66\x13\x45\x66\x6d\xbb\xa2\x10\xb7\x1c\x22\x23\x28\x32\x0d\xf7\x37\xad\x5b\x64\xba\x47\x69\x03\x09\x4c\xe4\x94\x52\xcb\x4f\xe4\x14\x8b\x90\x9e\xc9\xc8\x16\x20\x30\x35\x53\x48\x2e\xfe\x7c\x6b\x0b\xed\x77\x94\x17\x0f\x68\xcd\x26\x6b\xcd\x08\x5a\x03\xad\xd9\x30\xad\xd9\x92\x93\xf4\xa0\x35\xd0\x1a\x68\x4d\x33\xad\x59\x71\x14\x59\x68\x0d\xb4\x06\x5a\xb3\x54\xad\x11\x3e\x92\x09\xc2\x04\x61\xda\x32\x61\x6a\x78\x76\x2c\x84\x09\xc2\xb4\x32\x61\xda\x92\xb3\x63\x21\x4c\x10\x26\x08\xd3\xaa\x84\xe9\x04\xc2\x04\x61\xda\x30\x61\x3a\xd9\x12\x61\xea\x17\x4c\xff\xa2\x4d\x2c\x47\x6d\x85\xa9\x54\xc4\x4a\x85\xa9\x2f\x75\x0a\x6e\x31\xb9\x78\x63\xac\xf1\x44\x28\x9c\xa3\xbb\x8d\xc2\xb4\x62\x57\x1e\x4e\x38\x84\x30\x41\x98\x20\x4c\x10\x26\x08\x93\x80\x30\x9d\xae\x6d\xc4\x04\x61\x82\x30\xad\x30\x62\xc2\x29\xd4\x0c\x6a\x06\x35\xdb\x67\x35\x3b\xce\x7c\xcb\xe2\x6a\x36\x28\x6f\x08\xc1\x6e\xa3\x1d\x14\xb3\xe1\x7b\x8c\xb2\x8e\x2b\xe5\x65\xc3\x74\x09\xbb\x8d\xb0\xdb\x68\x37\x35\x66\xb4\x3a\x8d\x11\x76\xe5\x35\xd2\x18\x4c\x31\x41\x63\x76\x4a\x63\xde\x7f\xed\x03\x96\x33\x60\x39\xc3\x16\x49\x4d\xb7\xbb\xa6\xf1\x0c\x8e\x49\x82\xd6\xac\xce\x39\x97\xeb\xc8\x52\x0a\x85\x70\xa6\x08\x67\xba\xd3\xe1\x4c\x37\xf2\x98\xa4\x96\x32\x36\x28\xc9\x58\x93\x78\xa6\x8d\x64\x0c\xa7\x24\x41\xc6\x56\x29\x63\x0d\x83\xa0\x42\xc6\x20\x63\x3b\x2d\x63\x1b\x79\x4a\xd2\xd2\x65\xac\x49\x30\x3b\xc8\x18\x64\x6c\xe3\x64\xac\x61\x04\x3c\xc8\x18\x64\x0c\x32\xb6\x4b\x32\xb6\xd2\x09\x2c\x9c\xf5\x07\x19\x83\x8c\x41\xc6\x20\x63\x38\x23\x69\x05\x32\xd6\x24\xea\x2b\x64\x0c\x32\xb6\x71\x32\xd6\x30\x54\x2c\x64\x0c\x32\x06\x19\xdb\x7a\x19\x6b\x12\x50\xb6\x91\x8c\x9d\x48\xc9\xd8\x89\xb4\x8c\x9d\xb4\x91\xb1\x13\xc8\xd8\xb6\xcb\x58\xc3\xc8\x80\x90\x31\xc8\x18\x64\x6c\xeb\x64\x2c\x52\x1d\xdd\xbc\xb0\xcd\x4b\xe2\x5a\xce\x5b\x2e\xaf\xed\x98\x9e\x73\xa8\xdb\xa6\xc1\xae\x9d\x0d\x3b\xdd\x4e\xb7\x73\xd4\xe9\x6a\xa4\xd7\x3f\xd1\xd2\xec\xbf\x39\x7e\xc0\xc9\xa9\xe9\x26\x7b\x7a\xf6\xb3\xaf\xbe\x38\x7e\x50\x5d\xc6\x17\x97\xf6\x1b\x4e\x29\x0e\xbb\x50\x9d\xf1\xb3\xae\x71\xef\xbe\x28\xdf\x97\xb9\xcf\xcd\x45\xec\xb9\xff\xdd\x0c\xf4\x97\xea\xac\xa9\x21\x59\xfc\xd4\x99\xde\x54\x59\xde\xc7\x67\x37\x7c\xe3\x9c\xe2\x26\xcf\x6e\xfc\xd2\x17\xb4\x5d\x65\x11\x61\x4b\x54\x95\x52\xc3\x32\xab\xf5\x2c\x83\x65\xc0\x32\x60\x19\xb0\x0c\x58\x06\x2c\xb3\xd2\x21\x79\x1f\x32\x06\x19\x83\x8c\x41\xc6\x20\x63\x90\xb1\x0d\x97\x31\x0c\xc9\x31\x24\x2f\xb1\x4c\x93\xa3\x1a\x1a\xb1\xcc\xa9\x14\xcb\x9c\x4a\xb3\xcc\x69\x1b\x96\x39\x05\xcb\x6c\x3b\xcb\x34\x3c\xdf\x01\x2c\x03\x96\x01\xcb\x80\x65\xc0\x32\x3b\xc5\x32\xab\x9d\x5e\x00\xcb\x80\x65\xc0\x32\x60\x19\xb0\x0c\x58\x66\xf9\xd3\x0b\xc7\xeb\x9a\x5e\x80\x8c\x41\xc6\x20\x63\x90\x31\xc8\x18\x64\x0c\x43\x72\x0c\xc9\x57\x39\x24\xef\xad\x76\x7a\xe1\x58\x2a\x18\xf2\xb1\x74\x30\xe4\xe3\x36\xc1\x90\x8f\x11\x0c\x79\x77\x58\xa6\x07\x96\x01\xcb\x80\x65\x76\x99\x65\x46\x60\x19\xb0\x4c\x2d\xcb\xac\x74\x7a\x01\x2c\x03\x96\x01\xcb\x80\x65\xc0\x32\x60\x99\x25\xb0\x4c\x8d\x8c\x55\x4f\x2f\x4c\x4d\xcf\xa3\xa6\x4c\x5d\x86\x9e\x0d\xa4\xf4\x6c\x20\xad\x67\x83\x36\x7a\x36\xa8\xd6\xb3\xa4\x11\xa4\x85\xad\x94\xb3\x91\xc2\x95\x4a\x91\x97\xba\xf4\x3d\xb6\xd3\xbc\x5c\x7f\x68\x24\x7e\x8d\x6a\xc2\x55\xc1\x52\xb3\xac\x41\x0e\x8b\xdf\xc3\x3a\x74\x31\xbd\xa7\x9c\x40\x16\xf3\x49\x2a\x65\x31\x7b\x13\xc9\x2c\x55\x41\x5c\x3b\x8b\x59\x9b\x89\xa8\x50\xdb\x95\xd5\x54\xa4\xe9\xf8\xb2\x2a\xd6\x41\xaa\xf4\x55\xfa\xa1\xdf\x4d\x68\x93\x9a\xae\x5f\x71\x93\x5b\xaf\x44\x7a\xe3\xc2\xe1\x4f\x80\x3f\x61\xed\xfe\x84\x01\x40\x0c\x20\x06\x10\x6b\x09\x62\xc3\x4e\xd3\x63\x2a\x01\x62\x7b\x01\x62\xc3\xe2\xd9\xcd\x00\x31\x80\x18\x40\x6c\xcf\x41\x6c\x5d\xa7\xcf\xe1\xc0\x6e\xcc\xeb\x08\xa2\x50\xc3\x73\xe4\x70\x60\xf7\xc2\xb9\x0a\x1c\xd8\x8d\x03\xbb\xdf\xef\xc0\xee\xde\x9a\x76\x28\x42\x6a\x20\x35\x90\x9a\xe5\x4a\x4d\xcd\xaa\x80\x5e\xe7\x28\x63\xc5\xa1\x4b\xd0\xa5\x2d\xd3\xa5\x75\x9d\x5c\x0a\x5d\x82\x2e\x09\xea\x52\xc3\xc3\xdb\xa0\x4b\xd0\x25\xe8\xd2\xae\xe8\xd2\xba\xce\x70\x83\x2e\x41\x97\x04\x75\xa9\xe1\x69\x6c\x6b\xd7\xa5\x7e\xc1\xf2\x2f\x5a\x37\x7c\xd4\x56\x97\x4a\x45\xac\x54\x97\xfa\x79\x19\x90\x69\x0d\x81\x45\xd4\x47\xeb\xd7\xa5\xf4\xa6\xd0\xa5\x6d\xd2\xa5\xd5\xfa\xf1\xa4\xce\x16\x1d\x4a\x9f\x2d\x3a\x6c\x73\xb6\xe8\x10\x67\x8b\x42\x97\xa0\x4b\xd0\x25\xe8\xd2\xa6\xe8\xd2\x70\x5d\xe3\x25\xe8\x12\x74\x69\x85\x5b\x54\x4b\x5f\x15\xc4\x0c\x62\x06\x31\xdb\x2f\x31\x1b\xad\x29\x76\x14\xc4\x0c\x62\xb6\x4a\x31\x1b\x35\x0b\xb7\xb0\x04\x31\x43\xdc\x85\x8d\x8e\xbb\xd0\x5e\xcd\xde\x7d\x17\xc2\x52\x36\x1f\xf4\xca\x3d\x7d\xa7\xd5\x6c\xb5\x2e\x43\xa9\x43\x23\x87\xd2\x87\x46\x0e\xdb\x1c\x1a\x39\xc4\xa1\x91\x7b\xaa\x66\x08\x1e\xb4\xa3\x22\x86\xe0\x41\xbb\x2b\x62\xa5\xb3\x09\x4e\xd7\xe5\x5f\x94\x3a\x9a\x60\x28\x7d\x34\xc1\xb0\xcd\xd1\x04\x43\x1c\x4d\xb0\xed\x22\x76\x8a\x93\x09\x20\x62\x10\xb1\xbd\x17\xb1\xd5\x1e\x13\x27\x15\x6e\x65\x24\x1d\x6e\x65\xd4\x26\xdc\xca\xa8\x26\xdc\x0a\x44\x0c\x22\x06\x11\x83\x88\x41\xc4\x36\x55\xc4\x4e\x3a\xdd\xa3\x75\x1d\xdc\x3e\x94\x52\xb1\xa1\xb4\x8a\x0d\xdb\xa8\xd8\x50\x56\xc5\x7a\x8d\x54\xac\xd7\x4c\xc5\x7a\xef\xa4\x62\xa7\x5b\xa3\x62\xb9\x8e\x0c\x19\x83\x8c\x41\xc6\x38\x21\xb9\xf6\x43\xc6\x56\x3b\x18\x93\x5a\xe4\x31\x92\x5e\xe4\x31\x6a\xb3\xc8\x63\x24\xbd\xc8\x03\x32\x06\x19\x83\x8c\x41\xc6\xb6\x4a\xc6\x76\xe6\x50\x8d\xb2\x8c\xad\x2b\x86\x20\x64\x0c\x32\xb6\x52\x19\x6b\x18\x0e\x0a\x32\x06\x19\x83\x8c\x6d\xbd\x8c\xad\x2b\xde\xc6\x48\x6a\x91\xe2\x48\x7a\x91\xe2\xa8\xcd\x22\xc5\x91\xf4\x22\x45\xc8\xd8\xa6\xc9\x58\xc3\xdd\xd0\x90\x31\xc8\x18\x64\x6c\xeb\x64\x2c\x52\x1d\x44\xf5\x3f\x40\x54\x7f\x1e\xcb\xac\xd6\xb3\x0c\x96\x01\xcb\x80\x65\xc0\x32\x60\x19\xb0\xcc\x4a\x87\xe4\xd5\xc7\x35\x43\xc6\x20\x63\x90\x31\xc8\x18\x64\x0c\x32\xb6\x19\x32\x86\x21\x39\x86\xe4\x25\x96\x59\x57\x78\xba\x91\xd4\xf6\xd1\x91\xf4\xf6\xd1\x51\x9b\xed\xa3\x23\xe9\xed\xa3\x60\x99\x4d\x63\x99\x86\xf1\xe9\xc0\x32\x60\x19\xb0\x0c\x58\x06\x2c\xb3\x53\x2c\xb3\xda\xe9\x05\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\x80\x65\x96\x3f\xbd\x30\x5c\xd7\xf4\x02\x64\x0c\x32\x06\x19\x83\x8c\x41\xc6\x20\x63\x18\x92\x63\x48\xbe\x82\x21\xf9\x68\x4d\xd3\x0b\xc7\x52\xa7\x85\x1e\x4b\x9f\x16\x7a\xdc\xe6\xb4\xd0\x63\xe9\xd3\x42\xc1\x32\x9b\xc6\x32\x23\xb0\x0c\x58\x06\x2c\xb3\x17\x2c\x33\x02\xcb\x80\x65\x6a\x59\x66\xa5\xd3\x0b\x60\x19\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\x2c\x81\x65\x6a\x64\x6c\xa5\xd3\x0b\x90\x31\xc8\x18\x64\x0c\x32\x06\x19\x83\x8c\x61\x48\x8e\x21\xf9\x2a\x86\xe4\xc7\x98\x5e\x00\xcb\xec\x02\xcb\x1c\x83\x65\xc0\x32\x60\x19\xb0\x0c\x58\x06\x2c\x83\xe9\x05\xb0\x0c\x58\x06\x2c\x03\x96\x01\xcb\x6c\x3c\xcb\xd4\xc8\x58\xf5\xf4\xc2\xd4\xf4\x3c\x6a\xca\xd4\x65\xe8\xd9\x40\x4a\xcf\x06\xd2\x7a\x36\x68\xa3\x67\x83\x6a\x3d\x4b\x1a\x41\x5a\xd8\x4a\x39\x1b\x29\x5c\xa9\x14\x79\xa9\x4b\xdf\x63\x3b\xcd\xcb\xf5\x87\x46\xe2\xd7\xa8\x26\x5c\x15\x2c\x35\xcb\x1a\xe4\xb0\xf8\x3d\xac\x43\x17\xd3\x7b\xca\x09\x64\x31\x9f\xa4\x52\x16\xb3\x37\x91\xcc\x52\x15\xc4\xb5\xb3\x98\xb5\x99\x88\x0a\xb5\x5d\x59\x4d\x45\x9a\x8e\x2f\xab\x62\x1d\xa4\x4a\x5f\xa5\x1f\xfa\xdd\x84\x36\xa9\xe9\xfa\x15\x37\xb9\xf5\x4a\xa4\x37\x2e\x1c\xfe\x04\xf8\x13\xd6\xe3\x4f\x38\x69\x34\x37\x52\xde\xb4\xb7\xbb\x00\x06\x87\xc2\x76\x38\x14\x4e\xe0\x50\x80\x43\x01\x0e\x85\x3d\x75\x28\x9c\x88\xf8\xc5\xab\x1d\x0a\xfb\x24\x68\xf0\x28\xec\x85\x47\x41\x44\x0f\xe1\x51\x80\x47\x01\x1e\x05\x78\x14\xe0\x51\x80\x47\x61\x49\x1e\x85\xde\xd1\xda\x3c\x0a\x43\x29\x00\x1b\x4a\x03\xd8\xb0\x0d\x80\x0d\xe1\x51\xd8\x72\x8f\x42\xa6\x27\xc3\xa3\x00\x8f\x02\x3c\x0a\x7b\xe5\x51\xc8\xea\xd8\xba\x3c\x0a\xdb\x2a\x68\xf0\x28\xec\x83\x47\x41\x48\x0f\xe1\x51\x80\x47\x01\x1e\x05\x78\x14\xe0\x51\x80\x47\x61\x05\x1e\x85\x26\x8b\x45\x41\x62\x20\x31\x90\x58\x4e\x68\x87\x9d\x2e\x48\x0c\x24\x26\xd2\x41\x40\x62\x20\x31\x90\x18\x48\x8c\xea\x4e\xb2\xed\xa6\xb7\xda\x40\x1a\xc3\x91\x0c\x7e\x25\xa9\x85\xf1\x2b\xc9\xd1\x04\xbf\x72\x99\x31\xb3\xb3\x8d\x33\x3b\xfd\xa2\x05\x17\x9b\xd8\xe9\x76\xaa\xb8\x0b\x33\x3c\xbb\x31\xc3\xd3\xc5\x0c\x0f\x83\x9c\x5e\xb9\xa7\x6f\xfd\x0c\x4f\xbf\x46\xcd\x56\x1a\x4a\x61\x78\x22\xa5\x66\x27\xd2\x6a\x76\xd2\x46\xcd\x4e\xa0\x66\xfb\xa9\x66\x58\xa6\xb0\xa3\x22\x86\x65\x0a\xbb\x2b\x62\xa5\x73\x20\xd7\x75\x74\xd2\x50\xea\x18\xc8\xa1\xf4\x31\x90\xc3\x36\xc7\x40\x0e\x71\x0c\xe4\xb6\x8b\x18\xc2\x34\x43\xc4\x20\x62\x10\xb1\xd5\x1e\xc9\x2f\xb5\x65\x6f\x24\xbd\x65\x6f\xd4\x66\xcb\xde\x08\x7b\xd0\x21\x62\x10\x31\x88\x18\x44\x6c\x2b\x45\xac\x59\x24\x15\x88\x18\x44\x6c\xb3\x44\x0c\x71\x54\x20\x62\x10\xb1\x3d\x15\xb1\xd3\x75\x89\x98\xd4\x02\xdb\x91\xf4\x02\xdb\x51\x9b\x05\xb6\x23\xec\xdd\xdd\x76\x11\x3b\x85\x88\x41\xc4\x20\x62\x75\xab\x57\x77\x55\xc4\x4e\x3b\x5d\xa1\x10\x14\x08\x06\xf6\xb2\x78\xc3\x48\xf7\xa8\x5a\xd9\x44\x76\x8c\x24\xf9\x9b\x6e\x19\x29\x16\xd0\x7a\xa7\xc6\x49\xc3\x3d\x23\xc7\xa9\x05\x59\xd2\x9e\x91\x93\x96\x7b\x46\xba\x7d\x09\x49\xcc\x7d\x15\x52\x9a\xd8\x5f\xf5\xaa\xc7\xca\x8d\x0f\xa3\xce\xb0\x4e\x25\xab\x76\x3e\x94\xb2\xb5\xd8\x34\x52\x2a\x4b\x6c\xd3\x48\x31\x5b\xf3\xfd\x13\xd9\x92\x64\x36\x8d\x14\xf2\x35\x68\x3a\x9a\x6b\x49\x2d\x27\x2c\xd3\x9c\xbe\xd6\x72\xff\x49\x5a\x0d\x21\xe1\x4e\xbf\x72\x01\xe1\x4e\x13\xcb\xed\x3f\xe9\x2d\x49\xc1\xb1\xff\x04\xfb\x4f\xf6\x68\xff\xc9\x69\xa7\xdb\x5b\x3f\xd8\xed\xe8\x4e\x60\x80\xdd\xee\x80\x5d\x0f\x60\x07\xb0\x03\xd8\x01\xec\x00\x76\x00\xbb\xed\x04\xbb\xfe\xfa\xc1\xee\x58\x0a\xec\x8e\xa5\xc1\xae\x3c\x61\x21\x01\x76\xc7\x00\x3b\x80\x5d\xb7\x34\xaf\x0a\xb0\x03\xd8\x01\xec\x00\x76\x00\x3b\x80\xdd\x76\x80\xdd\x60\xfd\x60\x27\xb5\xdd\xfe\x58\x7a\xbb\xfd\x71\x9b\xed\xf6\xc7\x35\xdb\xed\x01\x76\x7b\x03\x76\x83\x96\xf1\xfb\xfa\xeb\x8e\xa4\x0c\xb0\x03\xd8\x01\xec\x00\x76\x00\x3b\x80\x5d\x09\xec\xd6\x75\x3c\x06\xc0\x0e\x60\x07\xb0\x03\xd8\x01\xec\x00\x76\xab\x04\xbb\xc1\x49\xa7\x2b\xbe\x4a\x7e\x19\x60\x17\x65\xfa\x07\x79\x7e\x71\x9c\x57\x6e\xe9\xff\x26\x41\x40\xf4\x97\xb0\x23\x7c\x0f\x13\xaa\x54\xdb\x26\xc4\xa6\xd6\x27\x8d\xd8\x0d\x4a\x04\x25\x6e\x0a\x25\x0e\xe1\xfe\x03\x25\x82\x12\x0b\x94\x58\xea\xd5\xa0\x44\x50\x22\x28\x71\xbb\x28\x11\xee\x3f\x80\x1d\xc0\x0e\xee\x3f\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xd8\xed\x08\xd8\xc1\xfd\x07\x4a\x04\x25\x2e\x85\x12\x85\x4e\x27\x00\x25\x82\x12\xf7\x8a\x12\x45\xc2\x44\x83\x12\x41\x89\xa0\xc4\x4d\xa6\xc4\xd3\x72\xd8\xcb\x77\xa7\xc4\xb8\xdc\xf0\x2e\x55\xac\xd8\x05\x2b\x82\x15\x37\x99\x15\xe1\x51\x04\x2b\x82\x15\x97\xc2\x8a\xa9\x5f\x00\xac\x08\x56\x6c\xcf\x8a\x62\x7d\x0d\xac\x08\x56\x04\x2b\x82\x15\xd7\xc0\x8a\x7d\xb0\x22\x58\x11\xac\x08\x56\x04\x2b\x82\x15\xb7\x9e\x15\x99\xec\x01\x15\x81\x8a\x40\xc5\xe5\xa3\xe2\x00\xa8\x08\x54\x04\x2a\x02\x15\x81\x8a\x40\x45\xa0\x22\x50\x11\xa8\x08\x54\xe4\xa3\xe2\x10\xa8\x08\x54\x04\x2a\x02\x15\x81\x8a\x40\xc5\x1d\x40\x45\xa9\xc3\xcb\x81\x8a\x40\x45\xa0\xa2\x28\x2a\x8e\x80\x8a\x40\x45\xa0\x22\x50\x11\xa8\x08\x54\xdc\x09\x54\xdc\xbc\xdd\xcf\x40\x45\xa0\xe2\xd6\xa3\x62\x0f\x7b\xa0\x81\x8a\x40\xc5\xe2\x57\x01\x54\x04\x2a\x02\x15\x81\x8a\x40\x45\xa0\xe2\x7e\xa3\x62\x4f\x24\x5a\x4e\x19\x10\x4b\x5b\xcb\x16\x02\xe2\x68\x28\x03\x88\x49\x6a\x61\x40\x4c\x72\x34\x01\xc4\x5c\xe6\x02\x12\xc9\x73\x61\x3b\x1c\x6c\x41\x81\x2d\xe1\xaf\x31\xf3\xb5\x46\xbd\x25\x11\x5e\x6f\x43\xcf\x2e\x2e\xb3\x49\xb7\x8e\xeb\x4a\x4c\xd2\x15\xc1\xb9\x7a\x16\xe9\xd6\x51\x5c\x09\xde\xba\x8b\xe0\x6d\x11\x73\x74\xeb\x98\xad\xae\x39\xca\xa8\x56\xd3\x1a\xd5\x84\x26\xda\x18\xab\x08\x4e\x23\xda\x36\xef\xc6\x63\xcb\x8e\x44\xbd\x98\xc3\x56\x12\x80\x7a\xf9\x88\x34\x28\xaa\x63\x1f\xea\x08\x75\xdc\x15\x75\xdc\xd4\x93\xfd\xa1\x8e\x50\x47\xa8\xe3\x76\xab\x63\x75\xf4\xac\xa5\xa8\xe3\x48\x4a\x1d\x47\xd2\xea\x38\x6a\xa3\x8e\x23\xa8\x23\xd4\x11\xea\x08\x75\x84\x3a\xca\xab\xe3\xe2\x53\x8c\xb6\x55\x1d\x07\x6b\x1b\x3b\x42\x1d\xa1\x8e\x2b\x56\x47\x91\x33\xa6\xa1\x8e\x50\x47\xa8\x23\xd4\x51\x48\x1d\x85\x4e\xe9\x58\x8a\x3a\x4a\x2d\x4c\x1b\x49\x2f\x4c\x1b\xb5\x59\x98\x36\xaa\x59\x98\x06\x75\xdc\x1a\x75\x14\xd9\x83\xb0\x19\xea\x58\xbb\x9e\xac\xd9\x32\xb2\x16\xab\xc7\xe4\x17\x8d\xb5\x5a\x2b\x26\xb7\x44\xac\xd1\xca\xb0\x76\x0b\xc2\x56\xab\x8e\xef\xbe\x0e\x0c\xea\x58\xa9\x8e\x91\x98\x61\x69\xd6\x01\x96\x66\xc5\x88\x74\xbc\x36\x44\x3a\x95\x42\xa4\x53\x69\x44\x3a\x6d\x83\x48\xa7\x40\xa4\x1d\x40\xa4\x63\x20\x12\x10\x09\x88\x04\x44\x02\x22\x01\x91\x96\x86\x48\x27\xeb\x42\xa4\xe3\x9e\x0c\x22\x25\xa9\xc5\xb7\x37\xf6\x5a\x20\x52\x2e\x33\x10\x69\x5b\x11\xe9\x04\x88\x04\x44\x02\x22\x01\x91\xb0\xc1\x0f\x88\xb4\x34\x44\x3a\x05\x22\x01\x91\x76\x05\x91\x4e\x81\x48\x40\x24\x20\x12\x10\x09\x88\x04\x44\x5a\x0e\x22\xf5\x8e\x3a\xdd\x23\x11\x46\x42\xb8\xac\x17\x84\xcb\x12\x0f\x97\x75\xb2\xd5\xe1\xb2\xf2\x5f\x45\x35\x6c\xd5\x85\x30\xea\x27\x2d\xb0\xa6\x70\x59\xc7\x89\xe0\x49\x85\xcb\x2a\x65\x6b\x11\xf4\xa9\x54\x96\x58\xb8\xac\x62\xb6\xe6\xe1\x9e\xb2\x25\xc9\x84\xcb\x2a\xe4\x6b\xd0\x74\x2d\xc3\x65\x15\x8a\x5a\x3a\xb4\x49\xb7\x9f\x10\xbd\x9d\xe4\xd7\x1c\xd7\xd3\x5b\x9a\x78\x8d\xc7\xc0\x67\x9a\xa8\xbf\x10\xe3\x96\x11\x2f\xab\x49\x70\xab\x41\xda\x8c\x00\x3b\x80\xdd\x2a\xc0\xae\x7a\x87\x32\xc0\x0e\x60\x07\xb0\x03\xd8\x01\xec\x00\x76\x5b\x04\x76\x27\x1b\x18\x08\xf5\xdf\x24\x08\x88\xfe\x52\x19\x02\x75\xd8\x2a\x04\x2a\x28\x11\x94\xb8\x0a\x4a\xec\xc2\xfd\x07\x4a\x04\x25\x16\x28\xb1\xa4\x2e\xa0\x44\x50\x22\x28\x71\xcb\x28\x11\xee\x3f\x80\x1d\xc0\x0e\xee\x3f\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xd8\xed\x08\xd8\xc1\xfd\x07\x4a\x04\x25\x2e\x83\x12\x85\x8e\x40\x02\x25\x82\x12\xf7\x8a\x12\x45\xce\x52\x02\x25\x82\x12\x41\x89\x9b\x4c\x89\x9c\xb8\xf6\xef\x4e\x89\xeb\x38\x2d\x13\xac\x08\x56\x5c\x31\x2b\xc2\xa3\x08\x56\x04\x2b\x2e\x85\x15\xd7\x7e\xb0\x3a\x58\x71\xa7\x59\x51\xac\xaf\x81\x15\xc1\x8a\x60\x45\xb0\xe2\xaa\x58\x51\xe8\xf0\x58\xb0\x22\x58\x71\xaf\x58\x51\xe4\x9c\x3d\xb0\x22\x58\x11\xac\x08\x56\x04\x2b\x82\x15\xf7\x83\x15\x85\x0e\x8b\x04\x2b\x82\x15\xf7\x8a\x15\x45\x4e\x9d\x04\x2b\x82\x15\xc1\x8a\x60\x45\xb0\x22\x58\x71\xcf\x58\xb1\x07\x56\x04\x2b\x82\x15\x8b\x5f\x05\x58\x11\xac\x08\x56\x04\x2b\x6e\x13\x2b\x0e\xd3\x28\xe0\x60\x45\xb0\xe2\xd2\x58\x71\x08\xbf\x22\x58\x11\xac\x58\x60\xc5\x52\xaf\x06\x2b\x82\x15\xc1\x8a\xdb\xc4\x8a\x4c\xf6\x80\x8a\x40\x45\xa0\xe2\xf2\x51\x71\x4d\x5b\x5b\x4e\x8e\x64\x50\x31\x49\x2d\x8c\x8a\x27\x47\x2d\x50\xf1\xe4\x08\xa8\x08\x54\x04\x2a\x02\x15\x81\x8a\x9b\x80\x8a\x23\xa0\xe2\x8a\x51\xb1\xb2\xc9\x01\x8a\x00\x45\x3e\x28\xf6\x01\x8a\x00\x45\x80\x22\x40\x11\xa0\x08\x50\xdc\x01\x50\xec\x01\x14\x01\x8a\x00\xc5\xe5\x83\xe2\x00\xa0\x08\x50\x04\x28\x02\x14\x01\x8a\x00\xc5\x9d\x00\xc5\xcd\x8b\xbe\x0d\x50\x04\x28\x6e\x39\x28\xae\x6d\x47\x0b\x40\x11\xa0\xb8\x35\xa0\x88\x1d\x2d\x00\x45\x80\x22\x40\x11\xa0\x08\x50\x04\x28\x46\xa0\xb8\xae\x35\x8a\xc7\x52\xa0\x78\x2c\x0d\x8a\xc7\x6d\x40\xf1\x18\xa0\x08\x50\x04\x28\x02\x14\x01\x8a\x00\x45\x80\xa2\x18\x28\xf6\x3a\x7d\xda\xda\x46\x77\x78\x64\x34\x05\xc5\x8a\x32\x16\x83\x62\x45\xc6\x85\xa0\x58\x75\x43\x01\x50\xac\xc8\xda\x18\x14\x2b\xca\x13\x06\xc5\xda\xb6\x13\x06\xc5\x7c\x29\x05\x50\x14\x0a\xa7\x58\xc6\xc3\x52\xbc\xb9\xc5\xbb\x9d\x7b\x32\x78\x98\xa4\x16\xdf\xed\xdc\x6b\x81\x87\xb9\xcc\x05\x20\x92\xa7\xc2\x76\x30\xd8\x82\x01\x5b\xa2\x5f\x63\xe2\x6b\x0d\x7a\x4b\xe2\x3b\x91\x28\x88\x62\xa7\xa3\x2d\x17\xef\x24\xa9\xae\x19\xcc\xb5\x60\x38\x79\x74\x6b\x45\x6c\x72\xa0\xd6\x88\xcf\xda\x61\x59\xbb\x13\xf4\x36\x9e\xc6\x96\x12\x7f\x86\xd3\x20\xd5\x14\xd6\x02\xbe\xaa\x49\x09\x61\x04\xe1\x4b\x5b\x87\x2f\x4d\x28\x32\x0c\x10\x09\x88\xb4\x0d\x88\x24\xb2\xa6\x0e\x88\x04\x44\x02\x22\x01\x91\x80\x48\x40\x24\x31\x44\x1a\xad\x3f\x78\xde\x40\x8a\x95\x06\xd2\xac\x34\x68\xc3\x4a\x03\xcc\x36\x62\xb6\x71\xb4\xa1\xa8\x85\xc9\xc6\xfd\x9c\x6c\x6c\x87\x6c\x5b\x3c\xd9\xb8\x2c\x88\xeb\xaf\x65\xb6\x11\x07\x68\x00\xeb\x36\x04\xeb\x4e\xd6\x8f\x75\x43\x29\xac\x1b\x4a\x63\xdd\xb0\x0d\xd6\x0d\x81\x75\xc0\xba\x13\x60\x1d\xb0\x0e\x58\x07\xac\x03\xd6\x01\xeb\xb6\x12\xeb\x4e\xd7\x8f\x75\x52\x7b\x03\x8e\xa5\xf7\x06\x1c\xb7\xd9\x1b\x70\x8c\xbd\x01\xc0\xba\xcc\x47\x01\xac\x03\xd6\x01\xeb\x80\x75\xc0\x3a\x60\xdd\xf6\x60\x5d\xb7\xd3\x3d\x6a\xc9\x75\xa5\x09\xab\x3d\x0d\x0e\x72\xdc\x19\xb4\xc1\xba\x34\x7b\x33\xaa\x2b\xe5\x5f\x02\x4a\xf5\x1b\x42\xdd\x60\xe9\x50\xd7\x6f\x01\x75\x29\x64\x8a\x30\x5d\xee\x8b\xa8\x86\xba\x8d\xda\xef\x79\xda\x0c\xea\x4a\xd9\x5a\xa0\x49\xa9\x2c\x31\xa8\x2b\x66\x6b\x0e\x25\xa7\x0d\xa1\xee\xb4\x11\xd4\x15\x73\x2d\xa9\xe5\xde\x71\xbf\xe7\xe9\x06\x42\x1d\xce\xa4\xd8\x86\xfd\x9e\x80\xc4\xdd\x87\xc4\x1e\x20\x11\x90\x08\x48\xcc\x40\x62\x0f\x90\x08\x48\x04\x24\x6e\x37\x24\xe2\x3c\x0a\x40\x22\x20\x71\x59\x90\xd8\x07\x24\x02\x12\x01\x89\x19\x48\xec\x03\x12\x01\x89\x80\xc4\x6d\x87\x44\x44\x8e\x03\x24\x02\x12\x97\x03\x89\x42\xa1\xe3\x96\x0b\x89\x3b\x19\x62\x18\x90\xb8\x2b\x90\x28\x12\x7f\x0e\x90\x08\x48\x04\x24\x02\x12\x01\x89\x08\x2f\xbc\xeb\xe1\x85\xbb\x62\xe1\x85\x97\xca\x88\xc7\x27\x32\x8c\x98\xa4\x16\xdf\x6a\x72\xd2\x82\x11\x73\x99\xc1\x88\x7b\xc8\x88\x6d\x11\x71\x90\xdc\x0f\x88\x08\x44\x5c\x2d\x22\xa6\x7d\x6d\x07\x11\x31\xdd\x84\xd1\x68\xa3\xc9\xc9\x06\x52\xe2\xbf\x49\x10\x10\xfd\xa5\x92\x0f\x87\x6b\xe4\x43\xec\x5a\x81\x1b\x51\xc8\x8d\x28\x14\x5d\x19\x84\x08\x42\xdc\x17\x42\x14\x89\xd0\x0c\x42\x04\x21\x82\x10\x41\x88\x20\x44\x10\xe2\xce\x13\x62\xdb\xe0\xd2\x20\x44\x10\xe2\x4e\x11\xa2\x48\x60\x69\x10\x22\x08\x11\x84\xb8\xd9\x84\x78\xda\x29\xad\x2a\x7e\x77\x42\xdc\xbc\x99\x66\x70\x22\x38\x51\x96\x13\x7b\xe0\x44\x70\x22\x38\x11\xcb\x11\xc1\x89\x5b\xc2\x89\x3b\xbd\x1c\x11\x9c\x08\x4e\x04\x27\x6e\x0a\x27\x1e\xc3\x9f\x08\x4e\x04\x27\xa6\x9c\x78\x0c\x4e\x04\x27\x82\x13\xc1\x89\xe0\x44\x70\x22\x38\x31\xe6\xc4\xb6\xa7\xdf\x81\x13\xc1\x89\x3b\xc5\x89\x22\x27\xdf\x81\x13\xc1\x89\xe0\x44\x70\x22\x38\x11\x9c\xb8\x6f\x9c\xd8\x03\x27\x82\x13\xc1\x89\x99\x0f\x02\x9c\x08\x4e\x04\x27\x82\x13\xc1\x89\xe0\xc4\xbd\xe7\xc4\xb6\xc7\x2e\x83\x13\xc1\x89\x3b\xc5\x89\x22\x47\x2e\x83\x13\xc1\x89\xe0\xc4\x0d\xe6\x44\x9c\xcf\x07\x4c\x04\x26\xae\x06\x13\xd7\xb4\x8d\x05\x67\xaf\x00\x13\x81\x89\xc0\x44\x60\x22\x30\xb1\x0e\x13\x71\x88\xf3\x36\x44\xd5\x06\x22\xee\x38\x22\xf6\x3a\xdd\xa3\x36\xae\xc4\x61\xa2\xde\x20\xc3\x7d\x27\xc3\xd1\xd2\xc9\x70\xd8\x9c\x0c\x7b\xa9\xa9\x15\x21\xc3\xdc\x77\xb0\x1d\x68\x98\x79\x42\x19\x34\x2c\x67\x6b\x0e\x38\xe5\xb2\x84\xd0\xb0\x94\xad\x31\xda\xe4\x4a\x92\x40\xc3\x62\xbe\x06\x4d\xd7\x0e\x0d\x8b\x45\xd5\xa1\x61\xd4\x71\x74\xdb\xcc\xf5\xb7\xe3\x25\x45\xc3\xc9\x54\x65\x37\xf0\x70\x7f\x0f\x5d\xe9\x02\x0f\x81\x87\x4b\xc6\xc3\xee\xba\xf0\x10\xe7\xf1\x01\x0f\x37\x18\x0f\x4b\x9a\xb2\xe5\x78\x58\x46\x9b\xe2\x03\x02\x0f\x2b\xf0\x50\xa4\xe9\x80\x87\xc0\xc3\x7d\xc7\x43\x9c\xc9\xb7\xe3\x67\xf2\xf5\x3a\xdd\x3e\xf0\x10\x78\x08\x3c\xec\x96\x56\xb7\xef\x1a\x1e\x96\x1e\x10\x78\x28\x8a\x87\x9c\xa6\x03\x1e\x02\x0f\x81\x87\xc0\xc3\x5d\xc7\xc3\x56\x27\xf2\x01\x0f\x81\x87\x3b\x82\x87\x6d\x0f\xe2\x03\x1e\x02\x0f\x81\x87\xc0\xc3\x77\xc4\xc3\x1e\xf0\x10\x78\xb8\x64\x3c\x6c\x75\x1c\x9f\x0c\x1e\x4a\x6d\x5e\x3e\x91\xde\xbc\x7c\xd2\x66\xf3\xf2\x09\x36\x2f\xef\x3b\x1e\x6e\xdb\xe9\x2a\xc0\x43\xe0\x21\xf0\x10\x78\xf8\xce\x78\x38\x58\x02\x1e\x72\xca\x10\xc3\x43\x4e\x46\x21\x3c\xe4\xdd\x50\x10\x0f\x39\x59\x5b\xe1\x21\xa7\x3c\x29\x3c\xac\x6c\x3b\x29\x3c\x1c\x54\xe2\x61\xab\xd3\x55\x80\x87\xc0\xc3\x1d\xc1\xc3\x6d\x3b\x54\xa5\xd7\x4b\xda\x47\x04\x0f\x7b\x65\x59\x6b\x8f\x87\xa5\x2a\x88\xe1\x61\x31\x5b\x73\xb4\xc9\x96\x24\x83\x87\x85\x7c\x0d\x9a\xae\x25\x1e\x16\x2a\xf0\x9e\x78\x98\x56\x05\x78\x08\x3c\x94\xc5\xc3\xe1\x12\xf0\x90\x53\x86\x18\x1e\x72\x32\x0a\xe1\x21\xef\x86\x82\x78\xc8\xc9\xda\x0a\x0f\x39\xe5\x49\xe1\x61\x65\xdb\x49\xe1\xe1\x50\x04\x0f\xe5\xa3\xdb\x00\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\x04\x1e\x02\x0f\x77\x0c\x0f\x07\xed\x9c\x87\x47\xa2\x74\x88\xc0\xd8\xa0\xc3\x0d\xa6\xc3\xc1\xb6\xc1\x21\xc2\xda\xec\x47\x58\x9b\x15\x46\x3c\xdc\xc8\x69\xe5\x61\x0b\x30\xdc\xdf\x88\x87\x32\x9b\x52\x10\x16\x1b\x41\x6d\x84\x82\xda\xb4\xdc\x95\x02\x34\x04\x1a\xee\x02\x1a\xee\xda\xa6\x14\xa0\x21\xd0\x10\x68\x08\x34\x04\x1a\x02\x0d\x5b\xa3\x61\x93\x03\x98\x81\x86\x40\xc3\x1d\x43\xc3\x2d\x39\x76\x19\x68\x08\x34\x04\x1a\x02\x0d\x81\x86\x40\xc3\x55\xa1\x61\xcb\xcd\xca\x40\x43\xa0\xe1\x2e\xa0\xe1\xae\xed\x55\x06\x1a\x02\x0d\x81\x86\x40\x43\xa0\x21\xd0\xb0\x29\x1a\xb6\xdc\xa8\x2c\x8c\x86\x38\x43\x0f\x68\xb8\xc1\x68\xb8\x75\x1b\x51\x80\x86\xfb\x81\x86\x08\x63\x03\x3c\x5c\x3e\x1e\x2e\x63\x23\x0a\xe0\x70\x9f\xe0\xb0\xc9\x36\x65\xc0\x21\xe0\x10\x70\x08\x38\x04\x1c\x02\x0e\x01\x87\x80\x43\xc0\xe1\x2e\xc1\xe1\xe9\xba\x42\x1c\x02\x0e\x01\x87\x9b\x0b\x87\xa7\x80\x43\xc0\x21\xe0\x70\xfb\xe1\xb0\x07\x38\x04\x1c\x02\x0e\x97\x01\x87\xfd\x4e\xf7\x08\xc7\xe7\x35\x3f\x3e\x2f\x63\x5b\x9b\xd0\x61\x81\x61\xa4\xe9\xb0\x9c\x7f\x89\x4c\x26\x47\x87\xa7\xa9\x5a\x6d\x21\x1d\xe6\xbe\x83\x2d\xc1\xc3\x5e\x86\x0f\x44\x22\x1c\x96\x1e\x70\x19\x11\x0e\x8f\x9a\xe0\x61\x31\x5b\x9b\xe8\x7c\x47\x8d\xf0\xb0\x90\xaf\x41\xd3\xb5\x8e\x70\x78\xb4\x29\x78\x98\x56\x65\x57\xf0\x70\x3f\x23\x1c\x8e\xd6\x8e\x87\x38\x3e\x6f\xc7\x8f\xcf\xeb\x77\xba\x3d\xe0\x21\xf0\x10\x78\x98\xf9\x0e\x80\x87\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\xdc\x7b\x3c\x6c\x19\x01\x7b\xbf\xcf\x47\x01\x1e\xee\x0c\x1e\x6e\x5d\x08\x6c\xe0\x21\xf0\x10\x78\x08\x3c\x7c\x5f\x3c\xc4\xe9\xca\x3b\x7c\xba\x72\xbf\xd3\x6d\x19\x05\x1b\x78\x08\x3c\xdc\x09\x3c\xdc\xba\x30\xd8\x38\x3e\x0f\xc7\xe7\x2d\x07\x0f\x71\x7c\x1e\xf0\x10\xc7\xe7\xe1\xf8\x3c\x1e\x1e\x8e\xda\x45\xc2\x06\x1e\x02\x0f\x77\x02\x0f\x47\xdb\x16\x0a\x1b\x78\x08\x3c\x04\x1e\x96\xf1\x70\x98\xe2\x61\x0f\x78\x08\x3c\x04\x1e\x2e\x09\x0f\x9b\x44\xb5\x01\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x10\x78\xb8\x7f\x78\x38\x5a\x02\x1e\x72\xca\x10\xc3\x43\x4e\x46\x21\x3c\xe4\xdd\x50\x10\x0f\x39\x59\x5b\xe1\x21\xa7\x3c\x29\x3c\xac\x6c\x3b\x29\x3c\x1c\x89\xe0\x61\x1f\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x70\x21\x1e\x1e\x53\xed\xec\xea\xbd\xfe\xe8\xb4\x31\x1e\x72\xcb\x10\xc1\x43\x6e\x46\x01\x3c\xe4\xdf\x50\x08\x0f\xb9\x59\x5b\xe0\x21\xb7\x3c\x09\x3c\xac\x69\x3b\x09\x3c\xcc\x96\x52\xc0\xc3\x96\x3b\x53\x7a\xc2\x74\xb8\x33\x51\x0f\xab\x30\x04\x7c\xb8\xd5\x7c\xb8\x6b\x5b\x53\x4a\x6c\x96\x6e\xb4\x58\x22\x1e\xee\xe4\xd6\x14\x91\xa6\xc3\xd6\x94\x4d\xc5\xc3\x2e\xd6\x1e\x22\xee\x21\xe2\x1e\x2e\x27\xee\xe1\xa0\xdd\x89\x29\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\xc3\xdd\xc2\xc3\x11\xce\x4c\x01\x1e\x02\x0f\xb3\x1f\x02\xf0\x10\x78\x08\x3c\xdc\x5a\x3c\xdc\xd7\x53\x53\x80\x87\xc0\xc3\xa5\xe3\xe1\x31\xf0\xb0\xf9\x91\x7a\x80\xc3\x5d\x81\xc3\xad\x3b\x6f\x19\x70\x08\x38\x04\x1c\x22\xac\x0d\xe0\x10\x70\xb8\x32\x38\x3c\xc1\x91\x29\x38\x32\x05\x70\x78\xb2\x63\x70\x88\x90\xd8\x8d\xe1\x10\x21\xb1\x01\x87\x80\x43\x9c\x98\xb2\xf7\x27\xa6\x0c\x32\xe7\xcc\x36\x8b\x79\x38\x10\xa6\x43\xec\x5a\xde\x6d\x3a\xec\x6f\x31\x1d\xe6\xbe\x83\xad\xc1\x43\xec\x5a\xc6\xae\x65\xec\x5a\xc6\xae\xe5\x18\x0f\x7b\xef\x80\x87\x88\x79\xb8\xc3\x31\x0f\xb3\xb2\x38\x00\x1e\x02\x0f\x81\x87\xde\x00\x78\x08\x3c\x04\x1e\x02\x0f\x81\x87\xc0\xc3\xbd\xc7\xc3\x3e\xbc\x87\xc0\x43\xe0\x61\xe6\x3b\x00\x1e\x02\x0f\x81\x87\xef\x8a\x87\xc7\xc0\xc3\x75\xe3\xe1\x71\x33\x3c\x44\x48\xec\x1d\x0e\x89\x9d\xc7\xc3\x26\x51\x6d\x80\x87\xc0\x43\xe0\x21\xf0\x10\x78\x08\x3c\x04\x1e\xee\x1b\x1e\x22\x24\xf6\x4e\x87\xc4\x1e\x74\xba\xc3\x76\x3b\x53\x80\x87\xc0\xc3\x9d\xc0\xc3\x92\xd5\x07\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x70\x7f\xf1\xb0\x65\xd0\x43\xe0\x21\xf0\x70\x27\xf0\x70\x0b\x63\x1e\x02\x0f\x81\x87\xc0\x43\xe0\x21\xf0\x10\x78\xb8\x2a\x3c\x6c\x19\xf4\x50\x18\x0f\x4f\xa5\x82\x1e\x9e\x4a\x07\x3d\x3c\x6d\x13\xf4\xf0\x14\x41\x0f\xf7\x1d\x0f\xb7\x30\xea\x21\xf0\x10\x78\x08\x3c\x04\x1e\xbe\x0f\x1e\x8e\x3a\xd4\x8a\xb5\xc3\xc3\xca\x32\x16\xe1\x61\x65\xc6\x05\x78\x58\x7d\xc3\x85\x78\x58\x99\xb5\x21\x1e\x16\xcb\x2b\x80\x59\x6f\x5d\x6e\x3b\xc4\x1b\x04\x97\x6d\x2e\x97\xf5\xb6\x0f\xcb\x10\x6f\x10\xf1\x06\x11\x6f\x10\xf1\x06\x11\x6f\x50\xca\x6b\x87\x78\x83\xe2\xf1\x06\x07\x80\x43\xc0\x21\xe0\x70\xd7\x4e\x39\x06\x1c\x02\x0e\x01\x87\x80\x43\xc0\x21\xe0\xb0\x39\x1c\xae\x6d\xc1\x1f\xe0\x10\x70\xb8\xb9\x70\xb8\x85\xeb\xfd\x00\x87\x80\x43\xc0\x21\xe0\x10\x70\x08\x38\x5c\x11\x1c\xb6\x3c\xc6\x0e\xbb\x41\x00\x87\xbb\x00\x87\x38\xc6\x0e\x70\x08\x38\x04\x1c\x02\x0e\xa5\xe0\x70\xb0\x04\x38\xe4\x94\x21\x06\x87\x9c\x8c\x42\x70\xc8\xbb\xa1\x20\x1c\x72\xb2\xb6\x82\x43\x4e\x79\x52\x70\x58\xd9\x76\x52\x70\x38\xa8\x82\xc3\x53\xc0\x21\xe0\x10\x70\x78\xba\x7d\x70\x88\xad\x20\xd8\x0a\xb2\x9b\x5b\x41\x00\x87\xdb\x02\x87\x38\xa5\x64\x87\x4f\x29\x19\x76\xba\xdd\x76\x74\x38\xda\x6f\x3a\xec\x75\x4e\xda\xd0\x61\x9a\xbd\x19\x1d\x96\xf2\x2f\x81\xc9\x46\x0d\xe9\x70\xb0\x74\x3a\x1c\xb5\xa0\xc3\x5e\xa7\x5b\xde\x3a\x5e\x8d\x87\xb9\x0f\x41\x80\x0f\x2b\x34\xfb\xb4\xd3\x6b\xc8\x88\xc7\xcd\x18\x71\xd0\xe9\x4a\x30\xe2\xa0\xac\x9c\xed\x19\xb1\x54\x05\x31\x46\x2c\x66\x6b\xce\x37\xd9\x92\x64\x18\xb1\x90\xaf\x41\xd3\xb5\x64\xc4\x42\x05\x1a\x30\x62\xda\xdf\x5a\x32\xe2\x20\x0f\x7d\x1b\xc1\x88\xd8\x2e\xbc\xf9\xdb\x85\x11\x4d\xa6\x3d\x23\x6e\x78\x34\x99\x61\xa7\xdb\x72\xd7\x32\x18\x11\x8c\xb8\x1b\x8c\x28\xb5\x6f\x19\x8c\x08\x46\x04\x23\x82\x11\xc1\x88\x60\xc4\xdd\x67\xc4\xfe\x9a\x18\x71\x37\x23\x0e\x82\x11\x77\x86\x11\xfb\x60\x44\x30\x22\x18\x11\x8c\x08\x46\x44\xd8\xc1\x8d\x08\x3b\x38\xec\x74\x5b\x86\x96\x11\xa7\xb3\x91\x14\x9d\x8d\xa4\xe9\x6c\xd4\x86\xce\x46\xa0\xb3\x7d\xa7\x33\xa9\xe0\x32\xa0\x33\xd0\x19\xe8\x0c\x74\x06\x3a\x03\x9d\xad\x92\xce\x92\xa0\x16\xbd\x46\x74\x76\xba\xef\x74\xd6\x6b\x89\x67\xbd\xb6\x7c\x56\x2c\x00\x80\x96\x00\x5a\xaf\x3c\xe7\x5e\x0b\x68\xa3\xa2\x45\xdf\x06\x40\x1b\xa5\x7b\x63\x04\x00\x6d\xd4\x29\xf9\x08\xdb\x03\x5a\xa9\x0a\x62\x80\x56\xcc\xd6\x1c\x2e\xb2\x25\xc9\x00\x5a\x21\x5f\x83\xa6\x6b\x09\x68\x85\x0a\xbc\x27\xa0\xa5\x55\xd9\x0d\x40\x3b\x2d\x07\xf3\xdc\x0a\x40\xeb\x1d\xf5\xfa\xdd\xa3\x6e\x57\x3d\x79\x1e\xf6\x75\xed\x99\x1c\x81\xd6\x40\x6b\x65\x5a\xeb\x81\xd6\x40\x6b\xa0\x35\xd0\x1a\x68\x0d\xb4\x06\x5a\x03\xad\x35\xa5\xb5\xde\x12\x68\x8d\x53\x86\x18\xad\x71\x32\x0a\xd1\x1a\xef\x86\x82\xb4\xc6\xc9\xda\x8a\xd6\x7a\x55\xb4\xd6\xd2\xb5\x26\xbe\x75\x61\x27\xc3\x26\x63\xe2\x73\x63\x49\x4d\x72\xe2\x73\x2b\x41\x0d\xf3\x9e\x98\xf7\xdc\xd5\x79\xcf\x36\x11\x50\x30\xef\x89\x08\x28\x88\x80\xb2\xa4\x08\x28\x89\x32\x0e\x40\x88\x20\x44\x10\xa2\x37\x00\x21\x82\x10\x41\x88\x20\x44\x10\x22\x08\x11\x84\x38\x4c\x23\xc7\xae\xda\x87\x88\xf0\x27\x20\xc4\x0d\x26\xc4\x53\xf8\x10\x41\x88\x20\xc4\xcd\x21\x44\xec\x9d\xd8\xfc\xf9\xdd\x90\x2d\x46\x4b\x20\x44\x4e\x19\x62\x84\xc8\xc9\x28\x44\x88\xbc\x1b\x0a\x12\x22\x27\x6b\x2b\x42\xe4\x94\x27\x45\x88\x95\x6d\x27\x45\x88\x23\x01\x42\x6c\xb2\x24\x10\x84\x08\x42\x04\x21\x82\x10\x41\x88\x20\x44\x10\xe2\x3e\x12\x22\xe2\xe3\xed\x74\x7c\xbc\x51\xe6\x78\x01\xec\xf1\xc5\xae\x91\x1d\xa3\x44\xa9\x5d\x23\xb9\x6f\x41\x1c\x13\xb3\x9a\xdd\xeb\x76\x06\x0d\x19\xf1\xa4\x19\x23\x62\xcb\xc8\x5e\x6d\x19\xa9\xe8\x6c\xd8\x2f\x82\xfd\x22\x65\x5a\xec\xaf\x95\x16\xb1\xbb\xb7\x1d\x2d\xd6\xee\xee\xcd\x73\x1a\x76\xf7\x82\xd3\xc0\x69\xe0\x34\x70\x1a\x38\x0d\x9c\x06\x4e\x6b\xc0\x69\xd8\xd7\xbb\x92\x7d\xbd\xa3\xb4\x47\xaf\x7a\x4d\xde\xa9\xd4\x8c\xeb\xa9\xf4\x8c\xeb\x69\x9b\x19\xd7\xd3\xe6\x98\x76\xd4\x12\xd3\x8e\xda\x62\xda\x11\x30\xad\x0a\xd3\x64\x26\x5d\xb3\x9f\xc2\xb6\x50\xda\x30\x73\xb4\xfd\x62\x4a\x1b\xa6\xf7\x5b\x1e\xa5\x95\xaa\x20\x46\x69\xc5\x6c\xcd\x21\x63\x98\x3f\xde\xbf\x51\xdb\x2d\xa4\x34\x6e\xd3\xb5\xa4\xb4\x42\x05\xde\x8d\xd2\xd2\x7a\xec\x06\xa5\x1d\x97\xdf\xd5\xd6\x50\xda\x51\xbf\xdb\x53\x5f\x88\x35\x55\xf5\x17\xcd\x0b\xd4\x41\x67\xd8\xe9\xa9\xbd\x13\x75\x32\x1a\x69\xc7\xa3\xa3\xe3\xd3\xc1\x16\xa1\x1b\x26\x64\xf7\x60\x42\x76\xb4\xae\x33\x6d\x01\x90\x00\xc8\xcd\x06\xc8\x51\x83\x33\x31\x00\x90\x00\x48\x00\x24\x00\x12\x00\x09\x80\xdc\x4f\x80\x3c\x06\x40\x02\x20\x01\x90\xf9\x4f\x01\x00\x09\x80\x04\x40\x02\x20\x01\x90\x00\x48\x00\x64\x3d\x40\x9e\xac\xeb\x4c\xde\x23\x19\x80\x4c\x52\x8b\xaf\x34\x2c\xc3\x82\xc4\x4a\xc3\x23\x00\x24\x00\xf2\x04\x00\x09\x80\x04\x40\x02\x20\x01\x90\xcb\x5c\x7d\x88\x5d\x22\x2b\xda\x25\x72\xba\x2e\x74\xdb\xd5\x4d\x22\x40\xb7\x5d\x41\xb7\x53\xa0\x1b\xd0\x0d\xe8\x06\x74\x03\xba\x01\xdd\x36\x1e\xdd\x8e\xdb\xae\xfb\x3b\x06\xba\x01\xdd\xc2\xc6\xe8\x1e\xa5\xb1\xc7\xb6\x91\xdd\x8e\xb7\x70\xe1\xdf\x48\x2a\x56\xdf\x68\x15\xb1\xfa\x4a\x55\x10\xdd\xdf\xbb\xac\x58\x7d\xa3\x86\xb1\xfa\x46\x32\xb1\xfa\xb8\x4d\xd7\x7a\x7f\xaf\x6c\xac\xbe\x55\xed\xef\xdd\xad\x40\x7d\x27\xe5\x77\x05\x76\xc3\xbc\x2d\xe6\x6d\x57\x31\x6f\x7b\x9c\x4e\x56\x21\x92\x1f\x22\xc4\xec\x1c\x41\xca\x84\x88\xc9\x7e\x0b\xdb\x43\x90\x88\x10\x83\x08\x31\x88\x10\x83\x08\x31\xef\x0d\x8b\x70\xf4\xad\xd4\xd1\x77\x82\x40\x7e\xc0\x34\x60\x1a\x30\x0d\x98\x06\x4c\x03\xa6\x01\xd3\x10\xc8\x6f\xe3\x02\xf9\x9d\x08\x9e\x8b\x51\xa0\xb3\xa3\x4e\x57\x78\x1e\x56\xee\xc4\x34\x59\x38\x6b\x75\x5e\x5a\x35\x9a\x15\x89\x4c\xd5\xa6\xc6\x68\x40\x51\x64\xd0\x19\x56\x63\x19\x97\xc6\x78\x79\xab\x91\xac\x40\x62\x35\x99\xf9\x0c\xb4\x00\x7d\x92\xf2\x8e\x3a\x12\x53\x95\x27\x62\xa1\x88\xa3\x5e\x92\x91\x92\xd3\x4e\xb7\x16\x5b\xf2\x39\x62\x7a\xe9\x15\x96\x59\x15\x85\xb7\xa0\xb7\x5d\x99\x39\xc9\x52\xe2\x3c\x54\x64\x59\xa2\x97\x69\x24\x2e\x00\xd4\xd4\x63\x91\xec\x77\x17\x4e\xc5\xd5\x35\xa6\x90\x9a\x76\xd3\x63\x94\x16\xab\x69\x9a\xb8\x56\x4d\x99\x11\x8f\xfa\x50\x3f\x69\x1c\x19\x29\x3d\xa2\x34\xdf\x8b\x3b\x53\x7f\xa1\x8a\x8a\x8b\xe7\x20\x67\xd9\x4e\x33\x62\x2a\x6e\xd8\xba\x9d\x6e\x4f\xd4\xb0\x0d\x64\x0c\xdb\x40\xd6\xb0\x0d\x5a\x18\xb6\x41\x33\xc3\x76\xdc\xc2\xb0\x1d\xb7\x31\x6c\xc7\xef\x66\xd8\x4e\xcb\xc8\x05\xbb\x06\xbb\xb6\xd1\x76\xed\xb8\x01\xb0\xc9\xd8\xb5\x9d\x03\xb6\xbd\xb4\x6b\xc7\xe0\x35\xd8\xb5\x6d\xb5\x6b\xd5\xf3\x05\x2d\xec\x5a\xb7\x2f\x63\xd8\x92\xd4\xc2\x96\x2d\xc9\xd1\xc4\xb4\xe5\x32\xc3\xb6\xc1\xb6\xc1\xb6\xad\xc5\xb6\x8d\x52\xdb\xb6\xd8\xa3\x2b\x63\xdb\x16\xf9\x57\x73\x6e\xd5\xe8\x29\x58\x77\xeb\x32\xb3\xf8\x37\x66\x19\x0f\x7e\x3f\xf1\xbf\x11\xcf\x37\x1d\x9b\x18\x0f\x64\xea\x5a\x5a\xf8\x65\x50\xe3\x78\xa0\xe9\x66\x62\x27\x1f\x67\x47\x47\x7d\xf2\xdf\xdd\x4e\xf7\xb8\x73\xa4\x6a\x96\xfb\xa2\x29\xec\x37\xbd\xdb\xe9\x1d\x75\xba\xc3\xbc\x71\xa5\x79\xd5\xf9\x30\xd3\xa9\x92\x02\x8a\xa9\xd3\x62\xba\xe9\xa4\xd2\x51\xa6\x8c\x5e\xe2\x0f\x4e\xcb\xc8\x26\xcd\x16\xd0\x1d\xe4\x07\xe5\x75\xf5\x28\xa4\x4e\x8b\xe9\x89\xd7\xa3\xc7\xad\x47\x2f\xe3\xce\x5a\x5c\x8f\x42\xea\x5c\x31\x23\x7e\x31\xfc\xaa\xe4\x52\xe7\x8a\x39\xae\x2c\x26\xe9\x49\xb9\x82\x8e\xb9\x05\xf5\x2b\xdb\x25\x71\x1d\xa6\xa5\xf4\xb9\x2d\xd3\x2f\x06\xc5\xa9\x6b\x98\x7e\xd5\x0b\xea\x67\x7a\x90\xc8\x13\x15\xd2\xe7\x0a\x1a\xf1\x3b\x6e\xd5\x43\xe5\xd2\x57\x15\xd4\x2f\x14\x34\x5a\x50\x50\x3f\x2d\x68\x50\xd5\xc6\xc7\x89\x41\xcc\x96\x72\x52\xf5\x58\x15\xdf\x01\xaf\xe3\x0c\xb8\x6f\x6a\x50\xf5\xa6\xf8\x45\x74\xfb\x99\x51\x63\xb6\x94\xec\x85\x62\x03\x97\xdb\xa5\x90\x3e\x57\x50\x65\x27\xe6\x35\xcd\xa0\xaa\x13\x0f\x79\x0d\x1c\xad\x34\xe1\x94\xc2\x6f\xe0\x41\x31\x40\x40\x7d\xff\xcb\x27\xaf\x6a\x9d\x62\x39\xe5\xee\x37\xe4\xbe\xa9\x61\x5a\xba\x58\x21\xe9\x4d\x0b\x2d\xc3\xff\x18\xaa\x1a\x67\x58\xf5\x31\x8c\xaa\x9b\xb8\xc7\x29\xe5\x94\xdb\x73\x72\xbf\x2f\xee\x38\xf9\xe4\xb9\x87\xea\xcb\xf4\x9b\x11\xb7\x89\x4b\xb1\xbc\x16\x15\x52\x3c\x65\xb4\xbe\x0d\x46\x15\xdd\xac\xbe\x9c\x6e\x3a\xbe\x09\x79\x8b\x23\xd6\x5c\x2b\xdc\x2d\x7e\x03\x11\xae\xcd\x33\xc3\x84\xb4\x08\x6e\xa7\xeb\x0e\xcb\x12\x97\x29\xa5\xd4\xeb\x8a\xe9\x73\x05\xf5\x6a\x0a\x52\x5d\xcf\x9c\x9b\x16\x99\x10\x83\x57\x66\x6f\x61\x99\x51\xbb\x65\xcb\x4c\xc7\x74\xfc\xb2\xb2\x1d\xa8\x3b\x8a\x71\x47\xa6\x66\xa3\x12\x23\x75\x47\xd9\xa9\xfd\x7c\x51\xa5\xde\x9c\x4b\x9c\x2d\xe2\xa4\xea\xb5\x1d\x73\x8a\x38\xe1\xbc\xb6\xe3\xea\x37\x7f\x5c\xf7\x40\xc7\xdc\x4e\x70\x9c\x56\x73\x71\x85\xb2\x89\xd3\x22\x4e\x1b\x56\xe8\x94\x5b\xa1\xec\xfa\x89\xfc\x7b\xef\xb3\x97\xc2\x29\x26\x9b\x21\x4b\xb4\x45\x01\xcd\x15\x54\xb6\xaa\xf9\x0c\x5c\xa6\x2d\x17\xc4\xb3\x1d\xf9\x0c\x5c\x28\x2d\x17\x74\xca\xc5\xca\xaa\x82\x4a\x4a\x9a\x96\xd4\xeb\x72\xaa\x54\x09\x84\xf9\x0b\x85\xf6\xee\xf5\x38\xcd\x54\xc8\xc1\x65\xcb\x72\xa5\x7a\xe9\x2c\x4a\xd9\x78\xf6\x2b\x9e\x93\x03\x89\x0b\x9e\x53\x08\x13\xb9\xb5\xab\xe5\xbb\x82\xe4\x37\x7d\xce\x41\xc5\x73\x96\x59\x64\xc1\x63\x0e\x3a\x5d\x7e\x49\xc3\x16\x75\xab\x04\x9c\xfa\x22\xeb\x10\xa7\x06\x4e\x8a\x25\x0d\x16\xe2\x49\x97\x8b\x27\xe5\x3a\x65\xb6\xc5\xf2\x74\x9a\x5f\xb9\x51\x69\x95\x4b\xb6\xc8\x21\xe7\xe3\x2c\xe4\x48\x8b\x3a\x6e\x5c\xb9\xe3\x8a\xca\x95\xf6\xb3\x15\x4a\xe4\x14\x54\x9f\xa1\xb2\x0a\x27\x5c\x9b\x5c\x1c\x35\xa6\x16\xfe\x24\x0b\x30\x36\x5b\x20\xdb\x94\x5f\x6c\xcd\x6a\x8f\x2f\x71\x21\x6d\xe9\x25\x29\x67\x79\xf0\x92\x14\xd9\x86\x5d\x78\xf5\x8a\x16\x58\xf6\xbb\xfd\xd2\xb0\x45\x8c\x62\xe2\x42\x79\x10\x93\x7e\xfc\xd9\x3e\xce\x81\x90\xb8\x90\x63\xe1\x9a\x89\xf1\x51\x52\xae\x20\x1e\x15\xaa\x5c\x5d\xb9\xc6\x80\x54\x5d\x23\x3e\x1f\x65\x62\x38\xc8\x56\x88\x6b\xfd\x38\xc0\x25\xdb\xf8\xe2\xe8\xc5\x4a\x5e\x02\x79\xa5\xe5\xb4\x03\xaf\xb8\x9c\xb6\xdc\x15\x97\xd3\x1a\xbb\xa2\x82\x96\x40\x5d\x71\x49\xad\xa1\x2b\x53\xd0\x92\x98\xab\xee\x21\xe5\x90\xab\xee\x21\xa5\x88\x4b\xe8\x21\x65\x80\xab\xee\x19\xa5\x78\x4b\xb0\x66\x12\xb8\x55\xd7\x68\x52\xb4\x15\x17\xd4\x1a\xb6\xe2\x82\x96\xc7\x5a\x71\x89\xad\x51\x4b\xa8\x6a\x32\xa4\x95\x29\x50\x08\xb4\x44\x2a\x20\xca\x59\x91\x61\xcf\x62\x96\xe3\x91\xcb\x9b\x7b\x0e\x68\x71\xb4\xfe\x38\x47\x0f\xd1\xa6\x29\xbe\xd4\x2f\x98\x13\x8a\xad\x54\xa6\x8c\x92\xfe\x15\x33\xd4\x5a\xf2\xb4\xa0\x93\x74\x77\x4b\xf9\x45\x55\xd9\xf4\x6e\xf6\xfb\x29\x56\xed\x84\x3b\xdd\x54\x9f\x41\xf2\x55\x8d\x2a\x5a\x36\xf3\xa6\xd2\x19\xe7\xe2\x9b\xe2\x03\x6d\xae\xc8\x78\x8a\x99\x0f\xb3\xe5\x57\xcd\x1a\x8a\x9b\xbb\xec\x68\xed\x96\x73\x73\x6c\x75\x52\xc6\x51\xa7\x3b\xe0\x4f\xed\x88\x5a\xeb\x42\x51\x4d\xec\x75\xc9\x2a\x2e\xaa\x9e\x84\xc9\x16\xae\x5e\x95\xad\x2d\x5b\xc8\x6c\x91\xa7\x5c\x77\x71\x4d\x8e\xcc\xe6\xaa\x05\xbd\xb0\x38\x8a\xca\xbc\xf7\x4c\x47\x7c\x9d\x3d\x2f\x32\x19\x34\x73\xb4\x4c\x83\xdf\x69\x04\xbe\x82\x4c\xfe\xcc\xcd\x8b\xd3\xdb\x3f\xcb\x36\x63\xc0\xb5\xed\xbd\x32\x88\x44\x65\x45\x13\xe2\xf3\xa3\x0e\x4f\x2c\xaa\x68\xb2\x70\x23\x4e\x79\xdd\x34\x36\x5b\x8e\xbc\xaa\xf0\xa6\x38\x2b\xc1\xa9\x1e\x8f\xbb\x16\x66\xe3\x08\x0d\xb7\xf9\x39\xa0\x5d\x7a\xa2\xcc\x9b\x60\x4b\x13\xae\x93\xb5\x0f\xe5\x71\x7a\xf6\x83\x49\xe7\x33\xbb\xc5\xf9\x4c\x56\x4e\xbc\xc2\x81\x6f\x9f\x38\xf3\x91\xe1\xcf\x45\x23\x53\x2c\xeb\x84\x53\x54\x4a\x25\xd5\x1d\x5f\xa0\x4e\x1c\xa3\x1b\xfe\x5c\x7c\x1f\x8b\xeb\x54\x39\xf0\xcf\x46\x64\xe3\x17\x56\x35\xfc\xef\x73\x1f\xb2\xe4\x99\x10\x78\xce\x7c\x1d\xf8\x03\x63\xa9\xd2\xb8\x36\xaf\x5b\x46\x2f\xb1\x47\xad\x20\xaf\x6e\x29\xea\xa7\x48\xed\xf2\x99\xb2\x23\xd9\x92\x9c\x89\xd5\xee\xb4\x42\xd4\x0a\x17\xfa\xe5\x12\x8f\x3a\x83\xd3\x32\x76\x14\xf3\x55\x15\x38\xe0\x56\xb1\x46\x8b\x8a\xf9\xab\x0a\x1e\x2e\x28\x98\xe7\x1b\xc8\xe5\xcf\x5a\x9b\xfa\x6f\xae\x57\x0e\x4f\x9c\xb5\xca\x7c\x03\x26\xd0\xc3\x39\xef\xa9\x98\xb1\xca\xca\xf7\x44\xdf\x53\x31\x5f\x2d\x04\xcb\xbc\xa7\x6a\x26\xce\x5f\xe0\xf4\xa8\xfa\xf7\x54\xcc\x5f\xbd\x06\x4b\xea\x3d\x55\xad\xca\xaa\xff\x9c\x8e\x3a\x83\x13\xae\x43\xa6\xe2\x2d\x95\x3d\x32\x92\x95\xe4\x93\x67\xb7\x18\x50\x44\xec\xdd\xe7\xb3\xd5\x8d\x31\xa4\xde\x7c\x3e\x7b\x6e\x89\xdb\xc2\x4e\x5f\xf7\xe2\xab\xdd\x53\xc5\x15\x7c\x9c\x62\x39\xa5\xf1\x57\xf2\xf5\x4a\x2e\x92\x9a\x4a\xf2\x96\xb2\xf1\xfd\x1b\x65\x7f\x55\xcd\x9b\x97\xf1\x5a\x2d\xb4\xf7\x75\xb5\x95\x18\xcb\x14\xcb\x1d\xd6\xb9\x19\xfa\x15\x1d\x95\x33\xdc\x92\x6a\x86\x9a\xc1\x4d\xc9\xeb\x23\x55\xe1\x41\x87\xff\xc1\x72\x06\x60\x52\x15\x96\x70\x2e\x15\xcb\xe5\x04\x54\x68\xe4\x62\x2a\x96\xcb\x89\xa6\xdf\xc8\xe3\x24\x55\x5f\x71\xbf\x53\x89\x42\xcb\x01\x64\xeb\xdc\x50\x32\xb5\xaa\x72\x46\xe5\xc6\x03\x7c\x32\x4e\x07\x17\x99\x10\x39\x65\x77\x47\xda\x98\x55\x83\xc7\x24\x7f\x25\x87\x56\xad\x85\x11\x2e\x82\x3b\x3b\xc3\x71\x4d\x2d\x28\x67\x51\x8e\x5e\x66\x51\x57\x10\xad\xc7\xfe\x9d\xbc\xa5\x43\xae\xcc\x72\xd9\x33\xe5\xe0\xd1\xd6\x5c\x33\x5a\xc0\x7d\xa6\xcc\xbb\x8f\xf6\xab\x69\x1b\x67\xca\x8d\x36\x25\xbe\xab\xe9\xe4\xd1\x9e\x92\x40\x33\xb4\x40\x3b\x7b\xb4\x15\xc5\xd6\xa6\xe4\x4c\x29\x84\x72\xf0\xdf\xfc\x80\x4c\xe9\x65\x4b\x7b\x26\x96\xcf\x52\x2a\xc5\x54\xba\x63\x8f\xcd\x89\x3a\x8f\x6f\xf6\x78\xf0\xf3\x67\xe7\xc1\x79\x25\xf6\x5f\x7f\x3d\x1e\x84\x59\x6c\x12\x7c\x77\xbc\x57\xd5\xb5\x66\x13\xd3\x2e\xde\xe8\xd1\x56\x55\xf5\xd1\xfe\xf9\x53\x55\xcc\xb1\x42\xfe\x50\x3a\x5f\x7d\x72\xce\xa2\x74\xdc\x7a\xa6\xe3\x99\xc1\xdb\x85\xa5\xf9\xbe\xf2\x78\x10\x78\x33\xf2\x78\xf0\xd7\x5f\xf9\xe7\xf3\xf5\x17\x62\xcc\x2c\xd3\x9e\x74\x5e\x4f\xfc\x8e\xe9\x1c\xce\xbb\xcf\x24\xd0\x92\xc7\xce\x15\x53\xf5\xe8\xba\x6d\xaa\x6e\x94\xf0\xd1\x9e\x6b\xd6\x8c\x9c\x29\xdd\xa3\xf8\xef\xd1\x9e\x58\xce\xb3\x66\x5d\x86\x4b\xee\xcf\x94\xb1\x66\xf9\xe4\xd1\x36\x88\xaf\x7b\xa6\x1b\x44\x0f\xff\xf0\x62\xfa\x4a\x5c\x8c\xa2\xb3\x7a\x9b\xbe\x32\xf3\x89\xa1\x8c\x1d\x4f\x39\xbf\xb8\x56\x2f\x6e\xae\x15\x8f\xf8\xce\xcc\xd3\x89\x4f\xdb\x28\x79\x7e\x62\x1b\x0a\x7d\xba\xa8\x2d\x6c\x12\xb7\xc5\xb9\xfd\xf6\xfd\x85\x78\xe4\xe2\xee\x52\x79\x3c\x08\x6f\x5d\x6a\x07\xcd\x35\xc9\x8f\x80\xd8\xf4\x5f\x7e\x45\x53\x5c\xcc\xfc\xc0\x99\xde\x45\x77\xbf\x24\x63\xd3\x36\x69\xdd\xb9\xad\x42\xdc\x89\xdf\xd1\x74\xb3\xa3\x7d\x7f\xb4\x7d\x97\xe8\xec\xda\xc4\x73\x66\x2e\x6b\x32\xf6\x7b\x98\x38\xee\x1d\xe1\x5d\xae\xdc\x49\xf8\x4f\xcb\xf4\x83\xdf\xe3\x9f\x3e\x99\x7e\x10\xfe\xec\x5a\x33\x4f\xb3\xc2\x1b\xd0\x5f\x7c\xdd\x71\x49\xa6\x7b\x1a\xf4\xc7\x79\xb6\xff\xb2\x26\x5a\xe9\xc3\xb2\x6d\x15\x9a\x1e\x34\x7b\xe2\x8b\x28\x77\xf1\xb1\xe3\xdf\xcb\xcf\x9e\xdc\x6f\x53\x1a\xc0\x75\x0c\x73\xdc\xec\xe9\x6f\x1d\xe3\xfa\xd7\xe2\xa3\xb3\x1f\xcb\xcf\x1d\xde\x66\x53\x1e\x7a\xf2\xec\xfa\x7e\xa0\x05\xa4\xd9\x83\x7f\xfc\xe5\xf6\xfe\x9e\x66\x2f\x3e\x7c\x72\xa1\xdc\x00\xe9\x2d\xc5\x1a\x41\x51\xfc\xd9\x73\x62\x2f\xa2\xdb\xd3\x02\x66\xfe\x99\xf2\xf3\x2f\x8e\xf9\x58\x69\x8b\xf9\xb6\x16\x84\xa6\xd0\xb4\xc7\x4e\xd8\x6c\xf4\x37\x7e\xc3\x85\x57\x78\x4d\x77\x6f\x6b\xc1\x47\x56\xce\xb5\x3d\x76\x8a\xed\x97\xbf\x5a\x6e\xc4\x42\x2d\xa2\x46\x31\xed\xc9\xcc\xd2\xbc\xe2\xe5\x4d\xe9\x6c\xb4\x56\x4c\xd2\xdb\xb7\xdc\x27\x5a\x4c\x55\xc3\x25\x17\xf9\xed\x96\x56\x81\xd7\x6c\xc9\xd5\x4d\x6a\x35\xd7\xb1\x4c\xdd\x24\xed\xda\xec\x96\x16\xf2\xc6\x6b\xb0\xf0\x0a\xbf\xb5\xe2\x5b\xf3\xda\xca\x4d\x4a\x8c\x1a\xea\x22\xdc\x78\x2a\xf0\xd1\x2a\xca\x5c\xb3\x4c\x43\x63\xe0\x10\x5e\x76\x5c\x62\x9f\xdf\x5e\x7f\xeb\xdf\xeb\x2f\x64\xaa\x45\xbf\x2a\x8a\xeb\x39\x2e\xf1\x02\x33\x29\x87\x61\x58\xda\xe4\xe9\x8f\x8a\x92\xc3\x91\xbf\xd3\xd2\xc2\x44\x8a\x41\x1b\x99\xf8\x4a\xf0\x42\xe2\x17\x48\x0c\x86\x4e\x53\x4d\x71\xc6\x4a\x40\xc1\xc5\x23\xae\x47\x7c\x62\x07\x5a\xf8\x36\x94\xcc\x9f\x33\x56\x34\x5b\x71\x9e\xff\x4d\xf4\xa0\xa3\x84\x53\x2f\xbe\xe2\xbf\x38\x33\xcb\xa0\x62\x36\x27\x5e\xa0\x78\x44\x77\x26\xb6\xf9\x67\x52\xb4\xaf\x04\x0e\xbb\x27\xdb\x41\x18\xe4\x8b\x34\xed\x80\x78\xb6\x66\x29\x8c\xb6\x3e\x28\x9a\x6d\x28\x53\xed\x4d\xf1\x08\xbd\x89\x32\xb3\x33\xc5\xb1\x24\x7e\x47\xf9\xec\x78\x44\xa1\xdd\xf3\x4c\x79\x09\x02\xd7\x3f\x3b\x3c\x9c\x98\x41\xdc\xcf\x74\x67\x3a\x9d\xd9\x66\xf0\x76\xc8\xe4\xd5\x7c\x9e\x05\x8e\xe7\x1f\x1a\x64\x4e\xac\x43\xcd\x65\xd8\x39\x27\x76\xc0\xfa\xe6\xd4\xf8\x7f\xc9\x1b\xfa\x7b\xb6\x66\xc1\x1b\x7d\x97\x7e\xe0\x99\xf6\x24\xfd\x9d\x75\xa4\xea\xb6\xa6\xbd\x89\xa2\x9e\x16\x65\x0c\x6b\x9c\x36\x29\xfd\x89\x36\xc4\xdd\xd5\xfd\x43\x82\x7f\xac\xd9\x0b\xed\xcc\x5a\x38\xcd\xe7\xa7\x8d\x4d\xdb\xc6\xb4\xc7\xc4\x0b\xdf\xd6\xd8\x73\xa6\xac\x48\x62\x1b\xae\x63\xda\x01\xfb\x87\x6e\x99\xc4\x2e\x34\xb4\x3f\x7b\x9e\x9a\x01\x7d\xbf\x7f\xcc\x88\x1f\xd0\x97\xd2\x51\x2e\x34\xdb\x76\x02\xe5\x99\x28\x33\xd7\xd0\x02\x62\x74\x94\x6b\x5b\xb9\xd0\xa6\xc4\xba\xd0\x7c\xb2\xec\xa6\xa6\x8d\xea\xab\xb4\x11\x45\x1a\x3b\x67\x07\xf2\x49\xc3\x06\x4a\x7f\x4f\x0c\x41\xfc\xc7\xfd\x5e\x58\x4a\x62\x11\x3d\x70\xbc\xc2\xcf\x35\x39\xe8\x5f\x6e\xf4\x93\xff\xe3\x57\x48\xb0\x5c\xfa\xa7\x19\x86\x19\x6e\x4f\xbf\x5d\x94\xb4\xaa\xa5\xe2\x3f\x3b\xb6\xd1\x35\x35\xe5\xe7\xad\x7e\x0a\x6a\xe3\xae\xdd\x52\x81\x61\x06\xcd\xf3\xb4\xb7\xfc\x25\x83\xf8\x12\xe9\x8b\xf7\x2d\x50\x4f\xf4\xcf\xb0\x3d\xd4\x48\x0c\xc2\x4b\xf4\x55\x7a\x73\x62\x9c\x29\x6c\x44\x18\x19\x57\xc7\xd3\x26\x24\xfe\x69\xf5\xba\x44\x07\xe8\xed\x84\xfc\xc6\x31\x08\x4f\xc3\xe3\xdf\xcb\x82\x94\xdc\xb3\xa8\x46\xf1\x05\x51\xa4\xdc\xf4\xc6\xf5\x8c\xd0\xb1\xd0\xbc\x71\xef\x8c\x0b\x56\x42\xb1\x71\xe3\xdf\xcb\x8d\x9b\xdc\xb3\xd8\xb8\xf1\x85\x4d\x21\xa2\x3f\x1c\x3f\x07\x44\x7f\xd0\xfe\xc0\x6b\x9d\x3f\xc2\x8e\x52\x78\xf7\xe5\xb6\xfa\x1f\xc7\xe7\xc3\x51\x72\xa1\xdc\x5a\x99\x4a\x14\xdb\x2b\xbe\xf4\x56\xdd\x60\xab\x60\x1f\x41\xd9\xe6\x27\x13\x57\x11\xd7\x31\xee\xab\x84\x24\x8f\x04\x61\x32\x4a\x5f\xce\x98\x0e\x87\xf3\xc2\x57\x7b\x13\xfa\x37\xd5\x02\xfd\xe5\x53\x73\xf5\xc9\x56\xa6\x08\x5e\xcc\xdd\x2a\xa7\x83\xe1\xdb\xb6\x27\x4f\x9e\x16\xd4\x89\x0c\xa5\xba\x49\xc8\xc0\xa5\x27\x32\x6d\x73\x3a\x9b\x9e\x29\x47\x35\xc5\x3f\xcf\x3c\x3f\x58\x6e\xf9\x64\xbf\x1e\xd7\xf0\x75\x77\xaa\x79\xaf\x72\x0f\x4c\x73\x3d\xd1\x6c\xa6\x3d\x59\xfe\xf3\xd2\xee\xfc\x23\xbc\x3a\x1c\xe5\x5d\xbe\x36\x51\x3a\xd7\xb6\x1f\x68\x96\x75\xed\x07\xa6\xb3\x46\x0f\xa7\xa6\x9b\x26\xbd\x25\x6d\x16\x8d\xf2\x2b\xb3\xa7\xec\x27\xbe\x45\x8d\x2e\xf1\x8c\xe8\xb9\x6e\xb2\xea\x7f\x89\xca\x2a\xda\xd2\xe2\xf5\xb2\x49\x2d\xd5\xa6\x68\x58\x8b\x09\x24\x04\x29\xf2\x0f\x15\x5b\x34\x9d\x1b\x08\x55\xf1\xb3\xe6\x8a\xcc\x0d\xa4\x7a\x98\x62\xe7\xfb\xcd\x1f\x24\x75\xcd\x84\xc6\x09\xcb\x3d\x53\xfe\xa3\x86\x65\xfc\x4c\xbb\xe4\xe3\x81\xe5\x4c\x54\x8b\x0e\x54\x1e\x0f\xa2\x3b\xa6\x31\xae\x3f\x39\x93\x4f\xf4\x12\xbd\xfd\x87\x6c\x26\xcd\x35\x75\x16\xd5\xdb\xa7\xb9\x7e\xfe\xec\x9c\xbb\xa6\xfe\x1b\xfd\xf7\x5f\x7f\x95\x13\x7a\x64\xec\x11\xff\x25\x30\xa7\x24\xb9\x09\xcd\x70\x17\xfe\xfe\x60\x4e\x09\xff\x0e\x33\x9f\x8e\x89\x0b\xb9\xbe\xfa\xc4\xa3\x6f\x98\x9f\xc5\xf5\xcc\xb9\x16\x10\xf5\x95\xbc\xa9\xae\x16\xbc\x84\x59\x0f\x67\xbe\x77\xc8\xbc\x39\x87\x24\xd0\xc3\x40\xdd\xc4\x0b\x0e\xe9\x0d\x3a\xaf\xe4\xad\xe2\xe6\xaa\x69\xfb\x81\x1a\x68\x13\x5a\x0a\xc5\xbd\x7c\x2a\xdd\x54\x5d\x8f\x8c\xcd\x1f\x49\xfd\xee\xd9\x7b\xbe\x36\xe8\x58\x6f\x6c\x12\xaf\x5c\x47\xdd\x54\xe7\xd3\xa9\x4a\xed\x47\x98\xeb\xf7\x24\xda\x16\x4b\x9a\xb1\x03\xdf\xa6\xd3\x4b\x67\xaa\x99\xb6\xf2\x78\x10\x7e\xff\xe5\x72\x0c\x96\x20\xb9\x7f\x92\x25\xba\x31\xeb\xe9\x96\x4f\x84\x32\x57\x54\x3e\xf3\xb5\xe4\x2b\x97\xf6\x93\x9a\x0a\xa6\xdd\x30\x5b\xc9\x34\xab\x50\x45\x39\x85\x2c\xae\x6c\xe1\x45\x31\x08\x53\x03\x62\x6b\x76\x90\x94\xf2\xc0\xfe\x59\x7a\x4b\x1e\xf9\x63\x66\x7a\x44\xb5\x49\xe0\x3a\x96\xca\x9c\x03\x34\x0f\x33\xc5\xf9\x97\x74\x41\xbb\x64\xde\x4a\x67\xbe\xad\xe7\xcc\x8b\xbe\x71\x6c\x52\x5d\x47\x33\x34\xfa\x6a\x68\x54\xc3\x8f\x2a\x2b\x04\x85\xef\x8a\x25\x53\x5d\xcf\x19\x9b\x56\xfa\x79\xb0\x94\xb7\xe1\x8f\x99\x06\x29\x54\x35\x9d\x39\x2c\x36\x91\xf1\x6c\xa8\x46\xd4\x21\x66\xb6\x79\x18\xd8\x6a\xa6\x91\x0e\x7f\xb9\x54\x0b\x16\x8b\xfb\x22\x68\x41\xea\xb3\xc1\xe9\xf9\x74\x64\xb6\x9c\x5b\xb0\xb3\x60\xa2\x7b\x54\xbe\x73\x3f\x0c\xfd\xa7\xba\x2f\x6f\x3e\xed\xec\x35\x9d\x47\x75\xd9\xf5\x52\x8d\xe3\x22\x88\xad\x6b\x6e\x98\x7f\x6e\x69\xac\xce\x51\x60\xc1\x6f\x96\x66\x73\x3f\xf3\x38\xeb\xd4\xb1\xcd\xc0\xf1\x54\xe6\xe1\x9b\x6b\x56\xf4\x72\xa3\xec\x9f\xc3\xab\xd7\xd1\xc5\xa2\xf9\xa4\xaf\xe5\xd9\x53\x03\x4f\xd3\x29\x8b\xa8\xb6\x63\xab\x6c\x9c\x17\x16\x72\xfb\xcb\xdd\x43\x74\xe9\xc6\xb1\xef\x6d\x2d\xe0\x14\x30\xf7\xc6\xc5\x7e\xff\xed\xee\xd7\x8a\xae\x4f\x33\x58\x7d\x67\x96\xa6\xfd\xd4\xff\x32\xe3\xa7\x23\x3f\x02\x35\xd2\xa3\x58\x07\x58\xe2\xab\x1f\xa1\x2f\xf3\x26\xba\xc6\xea\x24\xd1\x11\xe7\xde\x38\x5b\xd3\x8c\xb1\xaf\x31\x13\x99\x3c\x5f\xe6\xc4\xb3\xb4\x37\x4e\xd6\x62\x2f\x89\x82\xc6\xa9\xb1\xd7\x50\x65\x78\xc3\x9e\x25\x8f\x6d\x8f\x07\x91\x01\x09\x97\x0c\x70\xed\x87\xd0\x13\x86\x85\xa5\xa2\x26\xd2\xdb\xff\x53\x48\x14\xd5\x9a\x22\x01\xaf\x41\x9a\xdc\x22\x29\x2b\xdf\x42\xf9\xce\x34\xd5\x7e\xb0\x0f\xcf\x57\xfd\xb9\xae\x4e\x3c\xcd\x7d\x89\x5e\xfb\x67\xed\xc7\x0d\xbd\x70\x3f\xd7\x3f\xd2\x9f\x0b\xbd\x30\x01\x23\x55\xa2\xc1\xf9\x08\x55\x4e\xb9\xf4\xd7\xb3\x8c\x57\x14\xd7\xb6\xfa\x0d\x2d\xb8\x4b\xa1\x80\xfc\x6b\x29\xbe\x1a\x25\xa3\x09\x09\x0f\x6f\x49\x4b\x45\x82\xd7\xb8\xa1\xf2\xf9\xc5\xdb\x69\xbb\xfa\xd3\xfa\x5b\x89\x45\xba\xdd\xae\x46\x7a\x8f\x8f\x4e\xd7\x82\xc0\x42\x43\x09\x37\x94\xeb\x39\x53\x12\xbc\x90\x99\x8f\xc6\x5a\xd8\x58\x96\x33\x99\x98\xf6\x04\x2d\x95\xb4\x14\xaf\xc9\x1e\x0f\x62\xd4\x36\x5d\xd5\x75\x1c\x46\xd8\xff\x97\xcf\xc8\x6d\x3e\x62\x1b\xe9\x90\x20\x2c\xe2\xfa\xf6\x8a\xdd\xf5\xe0\x03\x2f\x83\x1f\x68\x5e\x50\xce\x72\x4f\x7f\x4e\x5d\x34\x49\x1d\xd3\x7f\xfe\x2b\x5f\x5d\x5b\x0b\xd4\x78\xcd\x9b\xca\x9c\x56\x69\xa1\xb6\x16\xc4\x0b\xe5\xee\xe9\x95\x12\x79\xfb\x81\x16\x98\xba\xba\x8c\x67\x66\x25\x35\x79\xf2\x7c\x46\xd9\xe7\xa7\xe3\xc3\x16\xd5\xbe\x75\x0c\x99\xca\xb2\xe4\x4d\xaa\xe8\xcf\x9e\x6d\x12\xa8\xfa\xcb\xcc\x7e\x55\x7d\xf3\x4f\x12\x0f\xba\x1c\xe3\x9e\x5d\xba\xa0\x57\xee\xcd\x3f\x49\x11\x77\xe9\xe0\x74\x09\xef\x87\x22\x75\x83\xb7\x93\xcb\x26\xfb\xe0\xb9\xba\x87\x2d\xe0\x73\xea\x9e\xfd\x00\x18\xf1\x87\x2d\x92\xbf\x51\xbe\x64\x62\x6b\xcf\x16\x79\x8a\xc9\xdf\xb7\x4c\x3d\x6e\xd1\x2b\x76\xe9\x2a\xba\x72\x4f\xaf\xc4\x5f\x3e\xfb\x9f\x17\xc7\x0f\x54\x6d\x42\xec\xa0\xde\x97\xa9\xb9\x6e\xde\x27\x22\x36\xf4\xc9\xdb\xc9\x2b\xf7\x8e\x4c\x4c\x3f\xf0\xde\x38\x6e\x2d\xe2\xaa\x5e\x74\x35\x69\xef\x34\x43\xed\x28\xb5\x90\xd5\x9e\x59\x56\xa5\x77\x2d\x3c\x12\xf1\xb3\x63\x10\x4e\x1d\xc2\xe3\x0d\xd5\xa9\x63\xa4\x66\x23\xcd\x50\x5b\x87\x42\xd6\x72\x1d\xd2\xa4\x65\xbf\xf0\x6f\x8e\x1f\x9c\xd3\x97\x50\xed\x16\xd6\x4d\xe6\x9d\x50\x93\x01\x5f\xce\xae\x25\x7e\x79\xb8\x45\x37\xc6\x2d\x2a\xe4\xbf\xde\x48\xdf\x8d\xb4\x6b\x2b\xb6\x6a\x73\x4b\xb3\xf3\x4e\xb8\xd0\x87\x97\x4b\x4c\x87\x3f\x9a\x6b\x66\x13\xd3\x2e\x79\x7e\x7b\xcd\x49\x9c\xaa\x45\x3a\x89\x12\xae\x7e\xbc\xb8\xbe\xbc\x2b\x55\x24\xb4\xb1\xf9\xf4\xcc\x68\x27\x36\xb4\x60\x38\x75\xcd\xcd\x7c\x1a\xcc\x60\xea\x9a\xfb\xf0\xc6\xa1\x03\xda\x2a\xa6\x3d\xf6\xb4\x6c\xcd\xd9\x01\x0e\x49\xbd\xa3\xb7\xd9\xf9\xfc\xf0\xb5\xd0\x7b\x3f\x3f\x7c\x55\x8e\x8a\x7e\xe9\x80\x78\x63\x4d\x27\xea\x34\x98\xc5\xde\x1e\x9a\xb1\xfc\x09\x94\xde\x90\x6e\x9b\xaa\x4d\x82\x68\x82\x4c\x50\x00\x27\x5a\x40\xbe\x6b\x6f\x59\xf9\xfe\x18\xfe\x54\x29\x7f\x9e\x33\x63\x76\xa2\x74\x83\x9a\x1b\xa5\xb9\x0d\x3f\x7a\x0b\x47\x1d\xf6\x7f\x87\x47\xdc\xdb\x64\x6a\xf8\xbd\xa2\x72\xfc\x4c\x1c\x04\xfe\x17\x5f\xc5\x6b\x7b\x90\xa0\x7e\xef\xa3\x47\xb3\x98\xbb\xce\x87\x09\x57\x24\x5c\x91\x9b\xe3\x64\x83\x2b\x12\xae\x48\xb8\x22\xe1\x8a\xdc\xfc\xc6\x82\x2b\x52\xcc\x15\x19\x7a\x39\x54\xc3\x73\x5c\xda\x66\x11\x31\x5f\x7a\x8e\xfb\xc9\x99\x84\x7e\x8e\xbf\x78\x39\x1a\xf9\x45\xa2\xe1\xbc\x80\x67\x24\xae\x4a\xf1\xed\xe6\x47\xf8\xa1\x17\xa1\x34\xc6\xaf\x62\xa9\xf0\xf6\x51\xb9\x99\x3d\xeb\x61\x31\x17\x6c\xf3\xcd\xfd\xfd\x27\xfe\xea\x18\x46\xbc\x7e\xb8\x1a\x42\x79\x3c\x48\xbd\x19\x86\xe9\xd3\xa7\x36\x1e\x0f\xf8\xe3\x8a\xb4\x01\x32\xb7\xbc\x9b\xd9\x1f\x9f\xdd\xe4\x8c\xba\x42\xdf\x9a\x3c\xbb\xf1\x29\x6f\x85\x56\xfa\x59\x1a\x10\xcb\xac\x13\x12\x1e\xbc\x6e\x83\xeb\xa2\x6e\x64\xcf\x19\xe0\x7e\x7c\x76\x13\x47\x68\x66\xfd\x40\xa9\x6a\x02\x59\x4b\x6b\xef\xf8\x10\x2e\xb6\xe6\x30\x93\x38\xbb\x7c\xb0\xb4\x78\x90\x9f\x65\x09\xcb\x07\xc3\xd2\x5e\xb5\xf1\xab\x56\x69\x2d\x9f\x3d\xe7\x95\x78\xf1\x83\xfc\x4e\xd3\xfe\x12\xfe\x54\xaa\x58\x98\x21\xdc\xc9\x56\xac\x16\xad\x84\x7f\xc8\x6e\xa5\x86\x29\xb8\xb5\xc9\x15\x41\xf3\x2c\x28\x43\xf7\x82\xaa\x32\xb4\x8a\xfc\xba\x56\x93\x2b\x70\xe2\x77\xca\xed\x92\x8b\x04\xc8\x72\x66\x86\xca\x36\xf4\x54\x35\x67\x7c\xc6\x69\xe6\x65\x97\xef\xb3\x60\xcc\x4d\xf3\xb0\x7f\x84\x9f\x1b\xb7\x93\x84\x79\xa2\x2f\x3e\xf4\x35\x65\x53\x57\x0e\xd1\x4b\x86\x2c\xff\x43\x69\x97\x8c\xe8\x4a\x64\xe6\x6b\x8d\x47\x59\x9b\xba\x10\x99\x33\x7d\xc4\xb6\x19\x7b\xc1\x9d\x66\x4f\x48\x61\x82\xa2\x30\x43\x95\x4d\x19\xcd\x80\xc4\xe9\x5c\xc7\x0b\x7c\xd5\xa5\xaf\x3d\xeb\x09\x8f\xb3\xf8\xb7\xc4\xbb\x89\xfc\xe1\xb5\x4d\x7c\x4f\x74\x8f\x04\x95\x2b\xbd\xe9\x37\xce\x3a\xfd\x3a\x1a\x36\xb9\x7f\x6c\x59\x72\x86\xeb\x77\xf2\x16\xf6\x1f\x76\x55\xf7\x82\xdc\xd5\x0b\xd6\x8c\xa5\x00\x32\x65\xb3\x2e\xdd\x0c\x59\xe3\xc0\x9a\xc2\x1c\x9b\x7a\x1c\xb4\x61\x6d\x4d\x12\x9a\x98\xd4\x60\x86\x7c\x11\x3d\xb5\xa2\x14\x2d\x98\x58\xc2\xb8\x89\x33\x09\xa3\x56\x16\xdb\x29\x10\x39\x90\xcf\x75\xdd\x99\xd9\xd5\x9d\x28\xff\xbc\xb1\xd3\x7e\x0d\xad\x57\xdb\xef\x65\xab\x9e\x4e\xc3\xbd\x4b\xd5\xbd\x67\x4d\xef\x68\xb3\xe0\xc5\xf1\xcc\x3f\xd9\x86\xb9\x74\xdb\x4b\x62\x2f\x43\x25\xb8\x73\xac\x62\x5c\xa7\x55\xdb\x3b\x7e\x9b\x9d\x65\x5f\xb7\x37\xb3\xd8\x3e\x19\x55\xd1\x5c\xf3\xa3\xe7\xcc\xdc\x78\xcf\x29\xc5\x41\xfa\x5f\xf9\x28\x09\x2a\xdb\xca\xea\x3f\x26\xdb\x52\x59\x73\x47\xff\x76\x1d\x23\xfa\xaf\x64\xe4\x10\xfe\x33\x9a\xe6\x88\x2f\xce\x49\x72\xc5\x23\xae\x45\x3f\x5c\xd3\xb1\xd3\x6a\xf9\x82\x7b\x8f\x32\x45\x6b\x61\x97\xf1\x0b\xaa\x36\x27\xde\x73\x5c\x71\x2b\xda\xd0\xa3\x2a\xdf\xb5\x40\x7f\x09\xff\x73\x42\xa2\xdf\xdc\xf4\x37\xdd\x23\x51\xc8\x18\x55\x31\x88\x45\xe8\x7f\x8b\xb7\x4f\xf8\xe2\xa6\x9a\xeb\xcb\x55\x20\x7b\xd7\x70\xc7\x7f\xbe\x06\x42\x2d\xc2\xab\x66\x65\x1f\xad\xa8\x7f\xd8\x5d\x3d\xc7\x8a\xdf\x57\xe6\x97\x67\xd3\x36\x4c\x7b\x52\x7a\xb4\xbf\xff\xd7\xdf\xf9\x37\xe7\x6d\x09\xab\xb8\x2f\xdb\x18\x16\xff\x6a\x24\x1b\xc3\xc4\xef\x15\xed\x57\x08\x37\x81\x55\xde\x87\x5d\x8d\xfa\x9a\x6b\x69\x76\xfc\x94\xe5\xad\x5d\x62\x0f\x98\xec\x3a\xe3\xde\x8d\xbb\x67\xac\xfc\x33\xf7\x76\x59\x1c\xe3\xdc\x39\xfa\xfa\xd3\xb8\x6a\x15\xdf\x6b\x98\x2c\xbb\x19\x58\xac\x53\x8a\x47\x39\xab\x6a\x17\xed\x3b\xbf\x4a\x71\x5c\x31\x35\x1f\x65\x4b\xac\x5a\xb2\x37\x4b\x03\x5a\xa9\x85\xd8\x4e\xd9\x7f\x1f\x86\xc1\x5f\x9a\xbc\x07\xcd\x75\x7d\xfe\xad\x0d\xe2\x5a\xce\xdb\xb4\x64\xed\x7c\x12\xff\x60\x68\x64\xea\xd8\xe9\xbf\x59\x65\xc6\x33\x2b\xfe\x45\xa8\x0b\x2e\xb4\xd3\xb1\xf9\xad\x78\xc8\xd8\xda\xf0\xca\x8e\x76\x8a\xd0\x4e\x16\x9e\xf6\xdf\xd1\x9d\x29\xff\x86\xd1\x5d\xa2\x1c\xa5\xbb\x94\x0c\x5d\xd5\x8b\x0c\xf7\x92\x70\xef\x90\x89\xf7\x73\x38\x36\x6d\xcd\x32\xff\x24\xf1\x27\x95\xbb\x98\x3e\xa8\x9a\x0f\xca\xc0\x7b\xee\xa2\xf5\xad\xb7\xd3\x75\x8a\xb0\xb8\xfa\x85\xa0\x58\x6a\x29\x86\x51\xa1\xbe\x6a\x3e\xec\xc1\xf2\xe4\xa4\xaa\xfa\x7f\x38\x15\x9d\xb9\x10\x50\x60\x79\x35\xc9\xa8\x6f\xb9\x52\xf4\xe3\xea\x38\x2e\xb1\xfd\x17\x73\x1c\x74\xc2\xcd\xbd\xd5\xdf\x99\x74\x53\x95\xef\x68\x98\xbe\xee\xcc\x89\xf7\x16\x5b\x55\x9e\x01\xcb\x3a\x46\xab\x7b\x7a\xe9\xb6\xbb\xc1\x8f\x59\xe6\x7e\x0f\x7e\xac\x62\xc6\x06\xc2\x96\x73\x82\x97\xe1\xb2\xce\x32\x56\x48\x5b\xc2\xb6\xd9\xba\x64\x3f\x81\xa8\xab\xf3\x1d\x9e\x4b\x16\xda\xac\xf6\x85\xff\x5d\x21\x01\x8f\x07\xff\x55\x98\x57\x78\x0f\xe2\x58\xae\xba\xb6\xc3\x09\x31\x15\xaa\x31\xec\x0d\xec\xf6\x96\xd8\xe4\x45\x0d\x54\x10\xb0\x72\x4c\xc3\xaa\x4f\x23\x5b\x93\x5d\x31\xd9\xbf\x84\x23\x26\x01\x5f\xc6\x59\xde\x0d\xd3\xc6\xb8\xd3\xa1\xda\x1d\x19\xb3\xcc\x71\x63\xd5\xd4\x9c\x26\xe3\x68\x8d\x40\x35\xfd\x19\x0b\x6f\x13\x2a\x00\xdf\x87\xb3\x24\x9f\xd3\x1a\xdf\x43\xde\xa7\xb4\xb1\xef\x21\x5b\xcd\xe6\xef\x41\xd6\x81\xc6\x09\x9f\xe5\xfa\x99\x26\xbf\x64\x23\x9a\xfb\x1a\xef\x75\xe1\xe6\x62\xb7\x5d\x3d\xec\x24\xe1\x64\x42\x2b\x74\x1f\x78\x5a\x40\x26\x6f\xd1\x0d\xc3\xe0\x3a\x77\x8e\x65\x99\xf6\xe4\x6b\x62\xa7\x0a\x21\x0b\x79\x21\xa1\x6a\x1f\x5c\x8c\xc2\xe2\x90\xf2\xf1\x5d\x8a\xc1\x17\x4b\x21\x10\x17\xde\x53\xe4\xae\xac\x9d\x6d\xdb\x09\xa3\x8d\x66\x8b\x8f\x22\xba\x13\xaf\xc3\x02\xf1\x77\x5e\x93\x85\xf1\x2c\xf2\xa4\x67\x06\xa6\xae\x59\xaa\xeb\x18\x67\xca\xdf\x33\x41\xb5\xd2\xd5\x2d\x34\x9d\xaf\x7b\x1a\x6d\xd4\x78\x1e\xa0\x2a\x9d\xeb\x78\x01\x4d\x75\x3a\xea\xf6\xe2\x54\xb9\x70\x60\xf4\xc1\xa2\x7d\xfd\xd9\xa0\x78\xe1\x85\xdb\xeb\xcb\xf2\x8f\xd7\xb7\x17\xf9\x1f\xfd\xdc\xc7\x72\xb3\xe8\x43\xc9\xfa\xe2\xa6\xda\x84\xdc\xce\x2c\x2b\x9c\xac\x28\xcc\xa2\x9b\xf9\xab\xd9\x46\x8c\xa3\xfa\xfd\xfc\x59\x2c\x83\xbb\x78\x39\x70\x2c\xe2\x95\xde\x84\xaa\xc4\x1e\xa4\x33\xe5\xea\x87\xe9\x07\xc9\x9b\x33\x6d\x33\xb8\x48\x8d\x45\xf9\xbe\xba\x6d\x86\x04\xf5\x98\x99\x22\x64\xf5\x0d\xa7\x70\x58\x84\xff\x4b\x96\x22\x29\x27\x3f\x9f\x98\x3c\x5c\x18\x83\x2e\xff\x28\xe1\x6f\xf9\x0c\x3e\xd1\x67\x2c\xd0\xbf\x63\x07\xe4\x47\x70\x56\x3c\x55\xe0\x36\x39\xc8\xba\x6a\xd5\x44\xfa\x97\x1e\x7a\x1d\xbf\xc9\x8a\x45\x31\xba\xe6\x6a\xcf\xa6\x65\x72\xc3\x6a\x69\x86\xc1\x89\xa5\xa5\x2a\xf7\xff\xbc\x7f\x3a\xbf\xfc\x7c\x7d\x93\xbd\x38\x77\xac\xd9\x94\x7c\x66\x7e\xe6\x42\xae\x4c\xa3\xaa\xcf\xa6\x5d\x2c\x72\x4a\xf3\xdc\x6a\xc1\xcb\x99\x72\x38\xb5\x83\xc3\x24\x59\xa6\x23\xdd\x38\xd5\xc7\x29\x24\x8f\x9c\x5e\x0f\xfb\x68\x68\x1e\xd5\x78\xb2\x39\xfe\xf4\x78\xc3\x0b\xc1\x93\x1b\x2a\x6f\x55\x3a\x83\xa1\xd4\xde\x7a\x5d\x77\xab\x35\x46\x85\x8e\xf7\x9b\xe3\x07\xe8\x73\xb9\x8b\x37\x57\x0f\xd5\x17\x69\xce\xdb\x87\xbb\xf3\x8b\xab\xec\x55\x62\xcf\x2b\x7a\xe9\xef\x5f\x7f\xb9\xba\xbb\xb9\x7a\xb8\xba\x7f\xba\xf9\x72\x79\xf5\x74\x73\xfe\xf9\xaa\x58\x2e\x0b\x8f\xfc\xab\xe7\x4c\x39\x75\x1d\x9b\xc4\x32\x62\xae\xe1\x5e\x0c\xfb\x3a\xb5\xd2\x1d\x3a\x1a\xa0\x3d\x88\x5f\x95\x87\xab\x9b\xf3\x9b\x07\xee\xcd\x4b\xeb\x9c\x24\x56\x57\x95\x6f\xc4\x1e\xf4\xea\xf6\x63\xc5\xad\x0a\xdd\x33\x74\x52\x1c\xf0\x8b\xfa\x72\xfb\xeb\xa7\xab\xff\x7d\xfa\xfc\xe5\x92\xdf\x6a\x67\x8a\x13\x2e\xba\xaa\x5e\xe9\x27\x58\xab\x66\x0b\x0d\x93\xca\x73\x7b\xe7\x0a\xac\x58\x55\x19\x14\xcb\x44\x0a\x29\xa7\x8b\x4b\xa1\x66\x62\xae\x95\xa2\x19\x66\x0b\x49\xd7\x41\x95\x12\x66\x4b\xf1\x66\xb5\xcf\x53\xba\x2c\x91\x37\xad\x41\x65\x29\xd1\xaa\x48\x5a\x58\xcc\xaa\xec\x35\x88\x15\x4b\x02\xfd\x30\xb7\xae\xd2\x99\xfb\x87\xcf\x9a\x4f\x58\xcb\x75\x8c\xea\x9a\xab\x0d\xef\x96\xef\x51\x87\x45\xa3\xf9\x5b\x48\x5c\xb6\xff\x8d\x95\x5b\xf3\xf1\x15\xda\xf8\xd0\xa6\xb9\x8a\xf5\xc8\xd4\xd7\x9b\xd9\x2a\x37\x8d\x47\x34\xe3\x8b\x6d\xbd\xe5\xb9\x2d\xff\x24\x9e\xe3\x6a\x93\x30\x6c\xad\x42\xab\xf8\xe0\x24\xf6\xa1\xe2\x63\xb0\xcc\x39\xb1\x89\xef\xdf\x7a\xce\x73\x31\x8a\xe8\x4b\x10\xb8\x1f\x49\x39\xf6\xa7\x1b\x3e\x4d\xea\x48\xcb\x5d\x64\xb0\x7a\x72\x74\x7a\x54\x96\xc0\xec\x2b\x14\x33\xd4\x77\x57\xbf\x7c\xf9\xf2\xf0\xf4\x8f\xeb\x87\xdf\x9e\xbe\x7c\xbb\xaf\xb4\x12\x31\x40\xb7\xb0\x8f\xf7\xf7\x9f\xea\x2c\x5a\xb2\x02\x96\xdf\x8e\x39\xf9\x8e\xd6\xda\xee\x9d\x80\x73\x35\x5a\xc0\xdc\xc2\xc8\x35\x37\x72\x51\x8e\x65\xdd\x2f\xbe\x55\xfe\x43\x0a\x3b\x74\x78\xcc\x43\x7d\x27\x2b\x54\x2b\x5c\xe0\xbd\xe0\x43\x29\x94\xbb\xf4\xcf\x25\xdb\x14\xcb\xeb\xd7\x6c\xa9\x63\xa9\x43\x27\x9a\x71\xeb\x44\xcb\xdd\xb2\xcf\x48\x7f\xcc\xd7\x36\x20\xde\xd4\xb4\x99\xc9\xfe\x4c\x7c\x9f\x3e\x57\xf8\x9e\x0c\x32\x3f\xcc\x5c\x64\xfb\x16\xea\xf3\x45\xed\xf3\xab\x69\x11\xc9\xef\x2f\xf7\xb2\x5a\x76\xa5\xf2\x1b\x6f\xf3\x9d\x73\xac\x53\x5c\xd8\x54\xd7\xfc\x40\x0d\xd7\x0f\x54\x76\xb0\xcf\x34\x51\x45\xcf\xd2\x9d\xe9\x54\xb3\x8d\x33\xe5\xff\x1e\x0f\x0e\x9f\x4d\xfb\xd0\x7f\x79\x3c\xf8\x57\x36\x85\xe6\x4d\xfc\xf0\x72\x5a\x2d\x9a\xd0\xd2\x66\xb6\xfe\xa2\xb2\x1a\x84\x15\xe8\x94\xf2\x0a\xf6\xdb\xa6\xa6\xbc\xbe\x97\x0b\x9a\xf9\x9d\x36\xcd\x1e\x61\x0b\x9c\xe3\xe6\x3f\xb7\xbe\x6b\x6f\x09\xad\x84\x4f\x5e\xe1\x15\x2a\x32\x3d\xf3\xa2\xd1\x3b\x15\x1a\x39\xbc\xb9\xe3\x06\xfc\x52\x8a\x50\x5f\x5f\x0c\x09\xf4\x72\x31\x9c\xd6\xaf\x2f\x25\x97\xb8\xa6\x05\xeb\x4b\xc9\x25\x16\xa3\x69\x3d\x5e\x13\x5f\x28\x71\x41\x74\xee\xf4\xcf\x0c\xc8\xb4\x6c\x91\x55\x85\x2d\x06\x2e\xc5\x9a\x29\x5b\xe9\xb0\xea\x69\xc2\x4e\xbe\xf9\x65\x24\x9a\x4c\xdd\xe0\xed\xd2\x2c\x9e\x9e\x30\x25\x86\x39\x9b\x9e\x29\x9f\xc9\xd4\xf1\xde\x2a\x8b\x7e\xa7\x26\xe2\x6c\x3b\xab\x6a\x24\xf6\xa9\x44\xed\x93\xb7\x3f\x59\xad\xaa\x19\xd9\x08\xe9\x46\xa5\x03\x4e\x64\xec\xa4\x2e\x1c\x12\x2d\xec\xc1\xf1\x48\xab\x6e\x4f\x47\x9b\xa9\x1b\xc7\x25\xf6\xdc\xff\x6e\x46\x73\xb3\x7b\x37\x83\x53\x78\x7e\x91\xfa\x2d\x6b\x22\x87\x73\xeb\xf5\xcf\xe7\xec\xc1\x0c\x4c\xc3\xf9\x97\xbd\xf5\xe9\x73\xfb\x65\x69\xc8\x43\xec\xf9\x3d\x4b\xb3\xac\x11\x4f\xf1\x18\xc7\xf8\xcf\x32\xa7\x66\x09\xec\xe8\x47\x47\xf5\x2b\xde\x1d\xfb\xed\x3e\xd4\xb3\x4f\x34\x71\x31\xa6\xcd\x96\xbb\x1e\xe2\x8b\xf7\xff\xbc\x7f\xfa\xfc\xe5\xf2\xeb\xa7\x92\x73\x27\xbe\x7a\x73\x7d\xc1\xbd\x76\x7d\x7b\xf1\xf4\xe9\xcb\xc5\xef\x8f\x42\xde\xaa\x2f\xdf\xee\x9f\xee\xbe\xde\x5c\x5e\xdf\x55\x38\x91\xf2\xac\xcc\x54\xaa\xa2\xcf\xec\x34\x9a\x97\x4b\xc9\xd1\x6f\x5d\x29\xa5\x84\xd9\x52\xa6\x0e\x35\xe2\x25\x97\x64\xb6\x24\xcb\x7c\x3e\xe4\x24\xab\x73\x83\x92\x1f\x85\x93\xb7\x94\xcc\xe0\x91\xd7\x69\x8a\xa3\xc5\xa8\x6c\xd5\x99\xfb\x74\x9c\xd8\x6e\x7c\xc2\x69\xad\x1d\x18\x58\x70\x5e\x49\x7d\x49\xb9\xf7\xb8\x90\xeb\x92\x85\x92\x9b\xb7\x19\x50\x11\x44\x97\x85\x55\x4d\x78\x24\x5e\x05\x7a\xa6\x84\x87\x73\x73\x29\x90\xa4\xcb\x0e\x9b\x02\x60\xbe\x9d\xc4\x9e\x63\x11\xff\x89\xde\x48\xe0\xa5\x28\xc2\x38\x59\x2e\x7f\x53\x69\x52\x80\x11\xb3\x0f\xb3\x46\x46\x8c\xe3\x17\x3e\xa4\x94\xa8\x54\xb1\xe3\xcf\x9f\x4a\xe0\xfc\x53\x9b\x5a\xf9\xe4\xff\x51\x4c\xdb\x20\x76\xa0\x8c\x92\xf5\x3f\x96\x4f\x2a\x4b\x49\x2b\x58\xb5\x02\x88\xfe\x91\xf1\x98\xe8\xc1\x99\x72\xe3\xdc\x47\x6f\x25\xe1\x0e\xa5\xb0\xf4\xbc\x0d\xab\xb2\xe8\x91\x1b\x04\xaa\x92\xf3\x60\x59\x9e\x9d\x3c\xbb\x0b\xbc\xf6\x1f\x9f\x5d\x59\x97\xbd\x52\x24\x58\x45\x7e\x4e\xbe\x78\x76\xda\x52\xe7\x74\xeb\xa3\x1f\xa9\xf9\x4d\xf7\xc4\x0b\x6a\x21\x83\x93\x40\xe5\x45\x2f\x68\xf6\x04\xc4\x0b\x0e\x2b\xe0\xb9\x1a\x4d\x3f\xfe\x72\xfb\x74\x7f\x75\xf7\xed\xea\xee\xe9\xe2\xcb\xcd\xaf\x8b\xf9\x94\xd3\x60\x69\xc4\x9e\x8c\xf3\xa8\xc2\x3b\x2f\x60\x62\x8b\x8b\xed\x92\x24\xcb\x1a\x17\x55\xb7\xc6\x3f\xce\x1f\x2e\x7e\x63\xab\x7e\xee\x6f\xcf\xcb\xe4\x9f\x4c\x2b\x57\x2d\x80\x39\xbf\xb8\x7e\xba\xbf\x39\x7f\x10\x28\xa2\x32\x84\x55\x4d\xb9\x1f\x3f\x7d\xf9\xe5\xfc\xd3\xf5\xcd\xaf\x5f\xaa\x57\x26\x9d\x45\x31\xeb\xd3\x6d\x17\x75\x85\xde\x5d\xd2\xb7\x7e\xfd\xb1\xbe\x3c\xcf\x99\x05\xa6\x3d\x09\x03\x16\xc5\x4e\xc4\x8a\x52\xef\xff\x79\xff\x70\xf5\x79\x39\x0d\xf0\x3e\x5f\x3f\xef\x36\x4b\xfb\x3c\xd3\xe4\xab\x5b\x61\xd1\x2d\x8f\x16\x84\x2c\xda\x02\x6b\xe6\x33\x75\x2f\xd4\x29\xfc\xf1\x66\x51\xe8\x91\x05\x16\xa1\xae\x69\x17\xde\xb6\x14\xf8\x45\xbe\x87\xac\xd6\x05\x5f\xaa\x41\x79\x70\x18\xbe\xd8\x34\x61\xd9\x0b\x2f\xba\x6c\x25\xb9\x6b\x29\x8e\x5a\xd5\x5d\xeb\xcc\x77\x6d\xbf\x29\x0f\xaf\xd8\x8e\xbb\xcc\x00\xeb\xd6\x31\xae\x7f\xe5\x8e\xad\x4c\x9b\x04\x2a\x8b\x05\x5d\x18\x4c\x65\xe3\x87\xda\x61\x47\x67\xd9\x88\x3b\x29\xbd\x09\x56\x88\x33\x63\x2f\xdd\x74\x35\xc3\xf0\xce\x94\x34\x30\x74\xf6\x39\x0e\x3e\xfc\x4d\x51\x94\x30\xf4\xda\xb0\xd3\xeb\xf4\x0f\xce\x94\x03\xa1\x33\x7a\x9b\x1e\xcf\x9b\x56\x33\x7f\x46\xaf\x1e\x78\x16\xff\x88\xde\xf0\x4a\xc5\x09\xbd\xe9\x8a\xf5\x9a\x63\x7a\xcb\x89\xb8\x67\xf5\x72\xaa\x16\x0d\x36\xb2\x07\xf6\x96\x53\x3d\x2e\x38\xb5\x37\xd9\xe6\x16\x1d\xca\xcf\x46\x39\xa2\x47\xf3\xb3\x9f\x66\xcf\x65\x9f\x65\xd4\x07\x94\x9f\x51\x47\xf7\xf3\x07\xad\x57\x1d\xc0\x5e\x38\xd3\x9c\xfb\x40\x8a\xf3\xdd\xf6\x95\xe0\x85\x28\x96\x39\x26\xfa\x9b\x6e\x11\xc5\x19\x53\x61\x8c\x4e\x27\xf7\x15\xd3\x66\xd7\x23\x9f\x73\x5a\x78\xc5\x89\xd4\x15\x27\xbc\x57\x1d\xde\xce\x39\xe5\xbd\x3a\x69\x69\x50\x9c\x4d\x5e\x3e\x4d\xbd\x74\x30\x7c\xa1\x45\xb8\xfd\xe5\xde\x25\xba\xc2\x42\x8c\x90\xb0\x61\x0c\xe2\x9b\x1e\x31\x58\x69\xca\xd8\xf1\x58\xe3\x7c\x09\x1b\xa7\xe0\x80\xa9\x3e\xa3\x7b\x6c\x69\x73\xce\xa1\xf3\xd5\x8f\xaa\x24\x36\x59\x2a\x53\x65\x53\xa4\x66\x44\xaa\x31\x58\xb6\x5c\x73\xf8\x33\x5d\x27\xbe\x3f\x9e\x59\x8a\xee\x4c\x5d\x8b\xc4\xa7\xe4\xd7\x7c\xa2\x02\x0d\xc4\xad\x60\xfa\x44\xcf\x8e\x63\x11\xcd\x16\x79\xd8\xe8\x34\x5c\x23\x37\x10\xa6\x2f\x2f\xfd\x77\x3e\x63\x4d\xd0\xa9\xe4\x23\x17\xf1\x8e\xad\xcf\xeb\xc5\xf1\xea\x2d\xcf\x72\xd3\x01\x7b\xb8\x21\xbc\x13\xed\x1f\xe7\xda\x6a\xfa\x3b\xcf\x52\xdf\x38\x06\x89\x44\x4f\xc9\x59\xe7\xe4\x42\xd9\x22\xa7\xb7\x2c\x5a\xe1\xe4\x8a\xac\xe5\x95\xb1\xb9\xa2\xe6\x74\x2b\x2d\x5e\x55\xd2\xda\xaf\x31\x7c\x19\x95\x5f\xa3\xe6\x79\xda\x5b\xf9\x22\x1f\x01\xeb\x2b\xb1\xb0\x2a\xe1\x5f\xd2\xfb\xaf\x2f\x2b\x52\xd4\x9b\xd2\xf0\x8f\x12\x54\xf3\xdc\xe6\x98\x75\xae\x16\x05\x84\x80\xd6\xbc\x80\xa9\xa6\xb7\x2c\xc1\x75\x8c\x96\x0f\x41\x4b\xa8\x7a\x4b\x22\xf9\xe7\x01\x29\x8e\x31\x16\x65\x6f\x66\xd1\xe5\xdc\x8b\x59\x6b\x1a\x79\xa9\xd3\x58\x16\x87\xf3\xee\x33\x09\xb4\x14\xea\xb3\xc5\x54\xe2\x6f\xce\x29\x19\x0d\xfa\xbb\x47\xf1\xdf\xa3\x1d\xfa\x27\x2e\xc3\x73\x3d\xa2\xd3\xda\x1f\xed\x9c\x28\x3f\x1e\x3c\xbc\x98\x7e\xe2\xf5\x54\x74\x56\x6f\xd3\x57\x66\x3e\x31\x62\x18\x51\x2f\x6e\xae\xd3\x99\xee\x24\x16\x61\x85\x2f\x77\x41\x18\x11\x01\x55\xc9\x35\x85\x94\xb4\x10\x77\xd2\x4c\x54\xae\xdc\x49\x51\x4e\xae\xdc\x49\x59\x48\xe2\xe8\x61\x75\x4a\x11\xaa\x83\xa8\x84\x36\x7f\xd8\x24\x7e\x59\xa3\x27\x8e\x0f\x55\x2c\x3e\x76\xfc\x7b\xf9\xd9\x73\xf1\xd2\x36\xa1\x01\x5a\x40\x04\x17\x20\x2a\xe0\x21\x05\x87\x4d\x78\xe8\x34\x6c\x5c\xa3\x07\xff\xf8\xcb\xed\x3d\x85\x6e\x52\x7c\xf8\xe4\x42\xb9\x01\xf2\x91\xeb\x16\x37\x02\x77\x94\x99\x1d\x63\x96\xcc\xc7\xaa\x50\xb3\x10\x1c\xa7\x93\xc4\x8e\xe1\xb6\x59\x78\x85\xd7\x6a\xf7\xb6\x16\x7c\x64\xe5\x5c\xdb\x63\xa7\xd8\x74\xf9\xab\xe5\xf6\xe3\x84\xe8\xc9\x22\x68\xc1\x95\xbc\x01\x1c\x9a\x93\x88\xfc\xd3\x51\x6d\xa0\xa3\xb4\x30\x0f\x53\x08\x36\x68\xcb\x3f\xa2\x72\x7e\x7b\xbd\xe5\x58\x5b\x43\x8c\x93\xa4\x35\x78\x9c\xa2\x19\x06\xeb\x90\x9a\x75\x5b\x0f\x9d\xd5\x34\x2b\xc0\xab\x8c\xd5\xce\x0d\xc3\x23\x7e\x75\x12\x11\x5c\x0a\x9d\xda\x2c\xa0\x78\x5d\x41\x75\x95\x15\xae\x72\xf8\x47\xb8\x6b\x77\xf2\x7f\x53\xed\x87\x39\x9d\x4d\xcf\x94\xd1\x70\xd8\x1f\x2e\x4c\x6d\xda\x61\xea\xee\xa2\x94\x61\x7b\x98\x76\x40\x26\xc5\x9d\x32\xc5\x3f\xb6\x44\x68\xf3\x2b\xba\x68\xe4\x93\x4d\x55\x31\xac\x0a\xff\xe8\x27\x7c\x5d\x4d\xce\x62\x7d\x29\x2c\xe4\xab\x59\xf7\x86\x45\xcb\x09\xe7\x15\x6f\xea\x46\x13\x22\x85\x71\xe0\x3e\xfb\xa7\x66\x3e\xa4\xaa\x14\xe9\x17\x52\x95\x22\x7c\xee\xfa\xab\x5f\x4d\xa3\x2e\x41\xfa\xb8\xfc\x54\x8b\x5e\x74\xed\x2b\xae\xce\x5c\xd1\x3c\x6a\xd6\xca\x09\x1a\xd1\x85\x2e\xc0\xbc\x94\x70\x7c\x7f\xce\x73\x28\x64\x61\x2c\x5a\xc5\x19\x73\x95\xb7\xbe\x22\x0b\x7c\x6f\xcb\xc6\x8b\x34\xba\x5c\x2b\xba\xf8\x44\x8b\xa9\x82\x8b\xe4\x22\x9f\x2d\xf2\x01\xee\x8a\x68\x91\x5c\xdd\x04\xb2\xd8\x4a\x14\x28\xf5\xe1\xe4\x7d\x54\xfb\xf2\xb3\xfd\xb7\xf0\x6e\x17\xb4\x05\x7b\xfd\x71\x0e\x9e\x96\x56\x4b\xf1\x42\x09\x76\x1d\xa3\xd6\x9e\x0a\x79\x67\x92\xce\xd3\xae\x98\x3a\x91\x58\x5c\x40\x62\x31\xeb\x78\x63\x11\xb4\x08\x22\x8b\x41\xfc\x7a\x65\x14\xb9\x57\xf8\x27\xa2\x7d\xd9\x94\xb5\x8a\xad\xc4\xd3\xe7\x22\x25\x2d\xbe\xe7\x42\x00\x10\x2f\x6c\x81\xe6\x2a\x4a\x18\xef\xd3\xaf\xd4\x4c\x25\x59\x5d\x50\x77\xbd\x4e\x75\x15\x41\x36\x5a\xd0\xce\xb5\x4f\xa2\xc6\x9f\x43\xed\xc5\x68\x7e\xa7\x22\x45\x05\x15\xa8\xb9\x1e\x5e\xad\xf7\x55\x0f\x57\xf9\x58\x95\x7a\x9f\xda\x9c\x0d\x54\xd9\x38\xd2\x6c\x2b\x8d\x0d\x09\x8b\x27\xb0\xe1\x15\xbe\xba\xba\xb9\x77\x90\xd7\x56\x37\x29\x31\x12\xd6\x8b\x74\x12\x7b\x09\xaa\xba\xd4\xb9\x7a\xfe\x7b\xdc\x4a\x41\x6e\x34\xe5\x54\x58\x6b\x2f\x56\xde\x82\x32\x15\xde\x42\x77\xf1\x92\x95\x22\x5c\xfc\xfd\x9e\x55\x32\x9a\xf0\xbe\x75\x0c\xff\xef\x15\xfa\xb9\x48\xb9\x84\xbd\x10\x8a\x80\x51\xb7\x17\x28\x7e\x7d\xfe\xba\x36\xa8\xd4\x9c\x56\xf3\x80\xfc\x9a\x54\xca\xf8\xd2\xef\x25\x35\x42\x6a\xd0\x99\x85\x5e\x6e\xbe\x7a\x2b\x9f\xd1\x6f\x37\x04\xba\x71\x0c\xc2\x1b\xfd\xc4\xbf\xf3\xa7\xf4\xb9\x63\x9e\xf8\x02\x86\x3b\x42\x5d\x52\xca\xf3\x19\xcd\x0f\xf3\x7d\x8e\x75\xdf\x5e\x2a\x96\xd9\x77\x9f\xfd\x13\x36\x58\x35\xeb\x75\xea\x1e\xb4\x8d\xdf\xe2\x26\xea\x52\x42\x1e\x8b\x9b\x4c\xff\x5b\x74\xf3\x35\x52\x54\x72\x24\x40\xe3\x6f\xf4\xce\xb8\xc8\x2c\x72\x4d\xbf\xd1\xf8\xf7\xf2\x37\x9a\x3b\x86\x20\xfb\x8d\xc6\x17\xf0\x8d\x0a\x75\x50\xa9\x6f\x34\x3e\x90\x80\x18\xe1\x61\xae\x72\x2e\x04\x11\x29\xe7\x2a\xe5\xcc\x27\xde\x1a\x6f\xb8\xdf\x1f\x73\xe1\x94\x13\xf6\x49\xdb\x84\x5a\x58\xfe\x47\x1d\x5f\xe3\x4a\x6f\x58\x16\x7f\x70\x94\xbb\xc8\x11\xe1\xf2\x69\x2b\x39\x29\xce\x5c\x7e\x6b\xf8\xad\x37\x9a\xb3\x8c\xaa\xad\x44\x1b\xde\xc2\x6b\xcf\xf4\x2d\x7b\xda\x78\x6c\xea\xca\xd8\x72\xbe\x2b\x5a\xa0\x5c\xdf\x2a\x91\xa0\x29\x8e\xc7\xfc\xfc\x4a\x78\x04\xfc\xce\x9a\x07\xcd\x75\x2d\x93\x18\x0f\x0e\xe7\x6b\x5c\x30\xaa\x48\x86\x01\xf7\xd5\x43\x29\x81\x62\x94\x78\xa7\xf3\xd5\x0f\x97\xb6\x7c\x61\x53\x69\xf1\x6f\x89\x33\x8f\xaf\xe4\x6d\x89\x1e\xba\x64\xef\xeb\xf2\x8a\x64\x8b\xb8\x16\x7b\x11\xc5\x7c\x8d\x32\x37\x16\xf6\x37\x0a\x78\xf6\xa2\xed\x31\xf5\x09\x1c\xee\xfa\x6d\x5e\x95\x96\x30\xb5\xc9\xdb\x57\x5f\xfe\x93\x1a\x32\x2b\xc2\xcd\xbb\xf8\x29\x16\x2e\x5e\x75\x8c\x05\x5f\x5c\x7e\x1f\x86\x45\x8d\x9b\x69\x4f\x98\x59\x1b\x7b\xce\x34\x5c\xa2\xa1\x4d\x49\xfa\x09\xe3\xcb\xc5\x97\xcb\xf9\xc3\x97\x2b\xf5\x14\x22\x3e\x78\xfe\x55\x32\xa9\x18\x45\xe7\x27\x1b\x49\x40\x29\x34\x4c\xac\xb0\xf3\x0e\x15\x42\xbb\x9a\x16\x10\x43\x79\xd6\x7c\x62\x28\x4e\xb8\x7d\xca\xf1\x0c\xe2\x29\xa6\xad\x7c\x7f\x31\xf5\x17\xfa\xd3\x9b\xa2\x79\x44\xf1\x49\xd0\x91\xe1\xf1\xc5\x9e\x45\xe6\x9f\xac\x6c\xde\xc2\x9e\x1f\xe6\xcb\xa4\x84\x62\x8e\xcd\x88\xb2\xc3\x02\x94\xc0\x51\x9e\x49\x8c\x23\xf1\x53\xd0\x47\xe4\x54\x37\xdb\x9e\xb5\xeb\xef\xd9\x59\x8a\x9f\x9c\xc9\xc4\xb4\xab\x57\xe2\xe7\xaa\x78\x95\xcd\x92\xac\x7c\x0e\x1c\xc5\xb4\x0d\xb6\xb5\x56\x31\xc7\x0a\x0b\xfc\xa6\xf8\x2f\xce\xcc\x32\x94\x09\xb1\xe9\x17\x40\x14\xcb\x99\xb0\xf1\x83\x36\xb3\x02\x9a\x83\xad\x72\x5e\x50\xfb\x4a\xbf\x85\x52\x11\xd7\xb8\xa2\xda\x51\xcf\x60\xc4\xaa\xd9\x06\x7d\x6d\x81\xa3\x3b\x56\x68\xfd\x89\x71\x68\x10\x9b\xb6\xeb\xf3\x5b\xda\xae\xca\xf5\x58\x09\x5e\x4c\x3f\x3c\x26\x83\x3d\xab\xed\xd3\x72\xbc\x30\xee\xe6\x87\xf0\x2a\x4d\x1b\x7e\x78\xc4\xa7\xc5\x85\xd5\xaa\x7c\xae\x45\x26\x8d\x07\xe6\x21\x97\xdf\xd2\xca\x67\xd8\xfc\x85\x70\x9e\x27\x70\xc2\xba\xd0\xae\xad\xd5\xf7\x0f\x61\x3d\x21\xb6\xc1\x62\x44\xd7\x5b\xd6\x42\x37\x31\xa2\xea\xa6\xc3\x45\x62\x1b\xf4\x1d\x24\xf5\xf6\x34\x7b\x42\x3e\x28\xcf\x84\xf6\xa4\x38\x81\x69\xeb\xd6\xcc\x20\x86\xf2\xdd\x0c\x5e\xa2\xad\x8e\x2c\x61\x47\xb9\x0e\x14\x5d\xb3\x15\xc7\xb6\xde\xe8\xa7\x10\x7f\x25\x86\xf2\xfd\x85\xd0\x87\xb5\x67\x53\xe2\x99\xba\x16\xbe\x01\xfa\xbe\x92\x24\x35\x6d\x40\xff\xc6\x8e\x37\xd5\x02\xb6\x7e\xac\xdf\xab\x4f\x2a\xbc\xd0\xcc\x5d\xdc\x62\x9a\xfd\xf6\x85\x7f\x30\x4b\xfa\xa7\xca\xac\xc1\x53\x25\x84\x30\xf7\xba\x1e\xe2\x77\x12\xd9\x95\x89\x39\x27\x76\xd2\xa9\x3a\x0a\xdb\xf5\x40\x1b\xff\x99\x28\xc4\x0c\x5e\x88\x97\x6b\x6f\xc7\x63\xa4\x64\x24\x65\x68\xca\xad\x63\x70\x3e\x20\xdb\x09\x68\xa9\x73\xd3\x20\x46\xf4\xf9\x14\xbf\x9c\x90\xb9\x58\xa7\xb6\x67\xd3\x67\xe2\x55\x7f\x4a\xe1\xdf\x0f\x35\x8d\x5a\xa4\x9a\x76\xa0\x3a\x9e\x1a\x36\x00\xff\xfc\x89\xec\x5f\xfc\x84\x0b\xbb\x76\xb4\x27\xe4\xe1\xe2\x56\xb6\x55\xe3\x0f\xf3\xff\xf7\x70\x71\xfb\x41\xf9\x7a\x79\xfb\x81\x36\xd7\xfd\xc5\xc3\xed\xff\x3f\xd6\x9e\x68\x90\x3d\x9d\xf9\x41\xd8\x1c\xac\xe5\x68\x5b\x25\x1d\xf8\x43\xb6\x21\xa3\xea\xf8\xf4\x63\x7f\xb8\xb8\x5d\xd0\x3e\xcb\x12\x6f\x01\x00\x09\x78\xa3\x64\x4e\xc3\xdc\x51\x93\x99\xbc\x7b\x83\x4a\x46\xdc\x08\xa6\xcf\xba\xba\x6d\x44\xfb\x69\xa8\xf9\xb3\x1c\xcd\xf0\xa3\x09\xc9\xd8\x46\xc7\x8d\xc1\xe9\x64\xcc\x38\xd3\x46\x9e\x9a\xbe\x6f\xda\x93\x2a\x3b\x6d\x10\x3f\x88\x02\xd3\x37\x37\xd7\x82\x26\xd4\x74\x7f\xb1\x1c\xfd\x55\xc6\x84\x5e\xdf\xb2\x2c\x05\x8b\x7f\x7d\x1b\x2d\xbe\x24\xfe\x61\x94\x82\x5e\xd0\x82\x5c\x7b\x52\x5c\x38\xa4\x43\x99\x4e\x52\x8c\xce\x22\x80\x31\xc3\x49\x02\x45\xf3\x15\x57\xf3\x82\xd8\x1e\x9f\xc7\x5e\x8e\xb8\x51\x2f\x72\xa9\xa9\x2d\xa6\xd6\x4a\x71\xd8\xa7\x1f\x4f\x0d\x2f\xe8\x78\xc2\xa3\x15\x45\xd1\xcd\x9a\x5d\x74\x15\xed\x73\x71\x7d\x79\x47\x1f\x5a\x8b\xfa\xb6\xe2\x11\x3a\xca\x22\x76\x10\xeb\xc9\xf5\xad\x12\x3e\xfb\x37\xcd\x32\x0d\x85\xfc\xd0\xa6\x2e\x45\x42\xca\x79\x8f\x07\xdd\xd3\x5e\xa7\x3b\x3a\xe9\x74\x3b\xdd\xc3\xde\xe0\xf1\x80\xf6\x98\xc7\x83\xde\xd1\x51\xf7\xcc\x78\x3e\x3d\x3b\x3b\x1c\x0d\x8a\x11\x65\x78\x7f\x32\x43\x0f\xf2\x43\x27\xee\xe2\x45\xd2\x45\x2d\x65\xb9\xa2\x47\xb5\x4c\x9d\x79\x5a\xe9\xd3\x47\x2f\x3e\xe2\xac\xe8\x7d\x15\x05\x54\xb3\x97\xd1\x0e\x71\x25\xc2\x71\x9b\xf2\xdd\xb4\x2c\x7a\x33\x8f\xfc\x3b\xfc\x26\xcd\x71\x8a\xd0\xce\x2c\xf0\x4d\x83\xb0\x57\xc0\x5e\x12\xd3\xef\xc5\x0f\x2d\x3a\xd8\x93\x6b\x73\xe1\x01\x9f\xe0\x90\x8f\x1d\x9d\x61\x1a\x0b\x94\x58\x6c\x44\x27\xee\x23\x8c\xff\x0a\x50\x4b\xf3\x30\x5b\x76\xeb\x18\x91\xef\x22\x71\x16\xa7\xe6\x20\x36\x98\xf1\x77\xfb\x81\x7e\xfe\xa9\x61\x35\x6d\xe5\xc1\x39\xfc\x95\x66\x66\x5f\xbf\xcf\x6c\x6a\xf2\xdd\xdf\xa6\xee\x94\x0f\xe1\x7d\xe8\x4b\x8e\xcb\xae\xbd\x27\x49\xaf\xc4\x45\x08\x9a\x96\xe8\x53\xc9\xde\x9c\xf6\xcb\xab\x1f\x01\xf1\x6c\xcd\xba\xb2\x03\x33\x78\xbb\x5f\xba\x1d\x92\xf0\xd6\xc4\x7f\xe2\xbd\x56\xa2\x1e\xe1\x9f\x88\x17\x27\xfe\x93\xfb\x24\x14\x19\xaf\x4e\xfc\x97\xeb\x7b\x49\xc0\x92\xc4\xea\x52\xf3\xf4\x4a\xde\x7c\xc5\x23\x56\x28\xaa\x2f\xa6\x4b\x11\x45\x63\x2f\xda\x19\x47\xc6\xa3\x13\x99\xa1\x24\xd2\x0b\xeb\x4f\xd7\xf6\x07\xe5\xc6\x09\xe8\xff\x84\xa1\x11\x19\x01\x5e\x3a\xc4\xbf\x71\x02\xf6\xcb\x82\xb7\xdc\xa6\x29\x04\xbd\x51\xdc\x86\x88\x2c\x22\xb5\xce\x76\x68\x64\xe8\xa3\x46\x92\x14\x3f\xf1\x75\x28\xb3\x49\xa3\x99\xbe\x72\x6d\xd3\x0e\x1d\x3d\x32\xbd\x18\x15\x14\x16\xc1\x58\xf0\x99\x28\xb6\x63\xab\x8c\x67\xb8\x65\x44\x2d\xe5\x78\xb9\x86\xaa\x29\x2e\x2a\x8a\xe1\x7c\x78\x85\x82\x11\x71\x2d\x4d\x27\x86\x62\xcc\x58\xa5\xb5\x38\x10\x2b\x65\x52\xe2\x4d\x48\x78\xbc\xbc\x70\xfb\x8b\x7f\x11\xe1\x9f\xfc\xfb\x92\xb0\xe9\xe1\x9f\xa0\x65\x0f\xff\x16\x3a\xf5\xd2\x84\x22\xce\xbd\x7c\x95\x17\x4b\x42\x36\xb5\xd0\x03\x8a\x39\xfd\xe2\x3f\x69\xe7\x5f\xbe\x46\x72\xa2\x2b\xf2\xb4\xa2\x29\x17\xbb\xf5\xe3\x3f\x9e\x48\x66\x04\x32\xeb\x53\xf1\x53\x85\x2a\x89\x62\x02\xc5\x87\x75\xf2\x58\x52\xb8\xf5\x8b\x64\x39\x3f\x04\x11\x82\xd8\xa6\x29\x20\x88\x10\xc4\xf4\x0f\x82\x58\x53\xa3\xf7\x12\xc4\x25\x39\xec\x7e\xfd\xe3\xb2\x7a\x72\x4a\xc8\x40\xb3\xd6\xbe\xa9\x58\xa6\x9a\xfe\x89\x7c\x04\xa2\x2d\x2a\xd0\x17\x16\x76\x70\x35\x53\xf1\xfa\xf6\xab\x6e\xe3\x05\xbb\x9d\x72\xd3\x6b\xfc\x24\xe1\x0b\xe0\x5d\x6b\xb8\x5f\x49\x89\x57\x32\x08\xce\x95\xc6\xeb\x1e\x30\x59\xba\x81\x93\xa5\x6c\x62\x2b\x7c\x33\x19\x9c\xec\x28\xf7\x61\xe2\x67\xb2\xd4\xe9\x54\x4a\xa9\xad\xfd\xf7\x8e\x67\x4e\x4c\x5b\x0b\x48\x44\xdb\x4d\xfd\xf7\x55\x4e\xfb\x68\x7f\x17\xfc\xf5\xf0\xd7\xc3\x5f\x0f\x7f\xfd\xa6\xfb\xeb\x31\xd4\xe6\xfe\x61\xa8\x9d\xfc\x61\xa8\x8d\xa1\x76\xfa\x87\xa1\x76\x4d\x8d\xe0\x7b\x86\xef\xb9\xfe\x2f\xd7\xfa\xc5\xfc\x21\x91\x59\xa6\xcf\x04\x81\xc5\x21\x48\x1f\x27\xfa\x4a\xa7\x54\x4c\x3a\x6c\xe5\x56\xf6\x17\xd6\xa2\xe7\x37\x97\x0b\x57\x12\x2a\x50\x65\xa8\x32\x54\xb9\xf0\x07\x55\xae\xa9\x32\x54\xb9\x59\xca\xa5\x38\xc0\xb1\x85\x00\x5b\x08\xb0\x85\x80\x93\x18\x5b\x08\xb0\x85\x20\xf9\x5b\xdb\x16\x82\xc6\x93\x5e\x61\xcc\x84\x87\x37\x97\x6b\x87\xaa\x0d\x66\xae\xb1\xa3\xf0\x07\xb4\x94\x18\xd7\xf2\xb6\x32\x67\x4b\x59\x75\xc2\x6e\xcd\xfe\xcb\xf4\x95\x67\x12\x68\x2a\x0b\x88\x40\x6d\x67\xb7\x73\x52\xfd\x8c\x0d\x42\x86\xc4\xa7\x8e\x2c\x9a\xd9\x8b\x4f\x43\x61\xaf\x3e\x99\x19\x0b\xe7\xf0\x22\xe3\x99\x7f\x90\x10\xcf\xe7\x84\x76\x86\x70\x94\x97\xbd\x6e\x72\x67\x5b\x6a\x4d\x0a\xbb\xb8\xa0\x96\xac\xcd\x12\x5b\x4e\xeb\x51\x79\x17\x5e\x5b\x55\xc6\x65\xa4\x59\xf2\xbf\xf1\x3b\x95\xf4\x21\x36\x8a\x48\x28\x9d\x4c\x3c\x15\x4d\xa7\x03\x64\x62\xdc\x94\x42\x88\xa4\xa7\xf5\xc6\x81\x41\xe2\x5f\x74\xc7\x0e\x59\xcc\x3f\x53\xfe\xef\x5f\x8f\x76\x58\x3e\x31\xbe\xc5\x31\x3f\xd8\xaf\x2b\x8d\x95\x62\xd8\x3e\x2f\x5c\x4a\xf8\x73\x65\xc4\x94\xcc\x65\x5e\xd0\x94\x4b\xdb\xaf\x8d\x9b\x52\xbc\x5e\x0e\x9d\x52\xae\x56\xd4\xfe\x49\xf4\x94\x42\x0a\xe9\x00\x2a\xf4\xe3\x8d\xca\x6c\x14\x44\xc5\xb0\xfd\x38\x82\x8b\x92\x7d\x4a\x05\x51\x51\xb2\x7f\x88\x8a\x92\xfb\x43\x6c\x85\xaa\x3f\xc4\x56\x90\x7a\x0a\x44\x45\xd9\xd4\x2f\x77\xd3\xbd\xa4\x4b\xb7\x2c\xf0\x86\x72\xff\x60\x70\xe5\x2a\xbe\xd5\x06\x77\x83\x83\xd9\x2c\xb0\x97\x81\xf3\xeb\x1f\x46\xd5\x1a\x4c\x51\xdb\xbe\x68\x3d\xf0\xe2\x6f\x41\xe6\x35\xd5\x74\x23\x81\xe3\x8c\xea\x57\x01\xd7\xbf\xe6\x9a\xe2\xd5\xa8\x25\x65\xfa\x06\x86\xaa\x32\x43\xd5\x3f\x1c\x3f\x37\x46\xfd\xc3\xf1\xf9\xa3\xd3\x3f\xc2\xb0\xd7\xe5\x71\xe9\xff\x38\x3e\x7f\x40\x9a\x5c\x28\x8f\x44\x33\x77\x2d\x0e\x41\xe3\x4b\xd5\x63\x4f\xa6\xf9\xde\x9c\x7c\xb5\x5f\x6d\xe7\xbb\xfd\x2b\x9b\xd4\x4f\xce\x9a\xc5\x29\x08\x95\x49\x97\x78\x92\x76\x0d\x06\xcb\x9f\x2e\x50\x6f\x1e\x16\x98\xcb\xc5\x0a\xb7\x58\x86\xb2\x55\x2e\xa6\xa8\xde\x0a\xd0\xaa\xda\x61\xf7\xb7\x27\x4f\x94\x82\x6a\x2b\x5e\x3b\xe5\x90\x9c\xee\x77\x54\x7b\x93\xe7\x99\xe7\x57\x4d\x83\xb4\xba\x4b\xa5\x0c\xa3\x71\x14\xc5\xf0\x75\x77\xaa\x79\xbc\x15\xf0\x0b\xca\x4d\x66\x3a\x38\x35\xaf\x7b\xaa\xf4\x68\xc8\xfe\xea\xc3\x41\x8f\x2d\xe7\x7b\x31\x1c\x34\xfd\xad\x32\x1e\x74\x78\xb1\x22\x20\x34\xbd\x58\x19\x10\x3a\xbd\xc8\x0d\x08\x9d\xad\x49\x51\x4f\xb2\x97\x2b\x8e\xcd\x69\x28\x28\x9a\xe5\xbe\x68\x32\xaa\x92\x11\x86\xff\x57\xd4\x8b\xf8\x90\x5b\x3f\x3d\xe4\x76\x4e\x87\xaa\x1a\x5b\xd9\xaf\xb3\x57\x13\x7d\x4e\xe9\x54\xc2\x1e\x69\x0e\x7d\x87\xf7\xda\xd4\xb5\x4c\x7b\x12\xf6\x84\x65\x1b\x9d\xda\x23\xd7\x16\x91\x34\xcd\x5c\x33\x39\xdf\xda\x58\x89\x9d\xfa\x9a\x98\x8d\xde\xd1\x90\x9b\x84\xb6\xe2\x03\x7f\x62\x49\xe4\x29\x15\x85\xd8\xb3\xea\xfd\x4d\xaa\x92\xf9\xc8\xf9\x09\x4c\x77\x6c\xfe\x58\x50\xf9\x9a\x42\x34\x3d\x30\xe7\xe4\x57\xfa\x14\xe6\x94\x7c\x99\xad\xa3\xbd\xfb\xa3\xa3\x8a\x24\x49\x8d\x47\xdc\x04\xa6\x61\xad\xb9\xaa\x8b\x6b\xda\xe5\x76\x0b\x3f\xfa\xb0\xee\x56\x28\xb7\x99\x6a\x76\x8f\x16\xd6\x93\x73\xbd\x76\x98\x58\x75\xb0\x5f\xde\x22\xac\x54\x11\x89\xe7\xbb\x9a\x9d\x13\xc4\xf0\x27\xbe\x1e\xc6\xd7\x78\x72\x78\xc5\xae\xf1\xd5\x30\x7b\xad\x2c\x86\xf9\x4a\x14\xb5\x30\x73\x75\x73\xa4\x70\xbf\x74\xac\xf1\x91\x70\xf2\xc3\xaa\xd5\x1e\x22\xb7\x3d\xc7\xc1\x85\x5f\xef\xb2\x71\x41\x33\xa6\xa6\x7d\x1f\x54\x5b\xcc\xfc\x46\x6b\x9a\xda\x64\x3e\x6f\x73\x4e\xc2\xc3\x5e\x2a\x9c\xdd\x89\x0d\x64\xa7\xc1\xaf\x48\xa8\x6b\xca\x0e\x2f\x3b\xdc\x33\x4e\x0d\xd3\x23\x75\xdb\xcb\x73\xcf\x7c\x19\x27\x4e\x96\xa8\x68\xfa\x2b\x09\xd7\x4b\x4d\x1d\xdb\xac\xde\xe8\x90\x34\xc1\xb3\x13\xbc\xac\xa8\x05\xcc\x8a\x1d\xdc\xcc\x45\x3f\xab\x69\x1b\x5e\x9d\x32\x61\x50\x57\x82\xa5\xb7\x42\xed\x9d\x56\x42\xb9\xbe\x8d\x1b\xfd\xea\xee\xfe\xf6\xfc\x26\x6a\xfb\x8a\xf6\x5e\xd4\x98\x14\xc7\xae\x2f\x45\xea\xf0\xd5\x36\xff\x98\x91\xf0\xac\x9b\xeb\x4b\x99\x3a\xa4\x88\xd2\x1e\x40\x2a\x8a\xc8\x00\x48\xaf\xdf\x04\x30\x38\xab\x0e\xd7\x09\x18\x2c\x12\x82\xe1\x39\xae\xe5\x44\x67\xaa\x45\xff\xa8\x58\x4f\x14\x5f\xe4\x22\x06\x2b\xec\xd2\x73\xdc\x4f\x4e\xe9\x78\xb5\xdc\x45\x0e\x64\xe4\x2a\x52\x82\x8c\xec\x55\x3e\x65\xd4\x51\x44\xd3\x03\xd7\xf6\x79\x44\x5d\x30\x03\x35\x67\xc3\x73\x5e\x7b\xfd\x03\xd6\x3c\xa4\x12\x9e\xfc\xc6\x0a\x0c\x3f\xde\xa8\xdc\x45\x4e\xe1\xcb\x30\x53\x5c\xc5\x30\xfa\x46\xd4\x61\xe2\xee\xa3\x3c\xbf\x29\x9a\xae\xab\x6c\x99\x32\x6d\x48\x8e\xd9\x48\x4c\x46\x82\xa7\xf9\xbf\xda\x78\x1d\xb6\x63\xd4\x2d\x9f\x92\x80\x31\xfa\xd4\x8a\x95\x06\x28\x89\x9f\xc0\xb1\xd9\x4d\xb2\x51\x3b\xe2\x09\xc7\x90\xbd\x76\x09\xd9\x56\x6a\xf9\x5c\x6f\x66\x2f\xcb\xf0\xdd\xd2\xb2\x2a\xec\x5e\xf6\x5a\xd9\xec\xe5\x6a\x51\xb4\x7a\xd9\x8b\x30\x7a\x9b\x65\xf4\xca\xaf\xbc\xfe\xf9\x16\x7c\x2b\x2b\xb2\x1c\x63\xd3\x0a\x48\xb4\x22\x29\x8e\xba\x14\x38\x7b\x64\x42\x0a\x0d\x15\xbe\xaf\x5f\xc3\x56\x59\x36\x55\xfb\x9e\x5e\x09\xd5\x22\xbe\xde\xc6\x99\x7d\x4f\xff\x7c\x7e\xd1\xe2\xce\xcd\x73\xfb\x9e\xde\xc6\x45\xdd\xd6\xc5\x6d\xba\xb7\x9e\x53\x79\xba\x45\x21\xfb\x4a\xe5\x44\xd3\xf5\x04\x2b\x4c\xdb\x9d\x05\xa1\xa6\xe8\x81\x57\xb1\x32\x3f\xbc\xc2\x53\x93\x73\x5d\xbf\x8d\x8b\xba\xa6\x45\x15\x25\xa5\x94\xa0\xac\x2b\xe5\xea\x14\xc5\xa5\x94\xe2\x51\x72\x5d\xbe\xbc\xc8\x2c\x75\x05\x44\x7e\x55\x6c\xf1\x61\x72\xbb\x13\xc3\x5f\xc2\xa3\x9a\x67\x5e\x38\x98\xa5\x2a\x76\x7e\x71\xad\x5c\xdc\x5c\xbf\xab\x08\xb5\xdf\x0e\x50\x08\xbe\x57\xe8\x1a\xf7\x2e\xd1\x73\x8d\x91\x28\x19\xbd\x40\x5b\xa1\xdc\x76\x92\xda\xa5\xe9\xfa\x53\x52\xc2\x13\x2b\x62\xd9\xa6\x35\x5e\xdf\xf8\x34\xd5\x6c\x6d\x42\x8c\xa7\xf0\x65\xae\x4e\x72\xe2\xb0\x82\x4f\x33\xd7\xd0\x82\xda\x25\x73\xb5\x23\x02\x85\xb5\x8f\xb9\x86\xfa\xfa\x6f\xb6\xfe\x64\x39\x13\xb3\x3a\x4c\xa3\xe8\x1a\x50\xc1\x85\xdb\x3a\xf1\x82\xb1\x69\x55\xf9\x2a\xf3\xf7\x5c\xbc\x6c\xf6\x95\xbc\x2d\xa9\x34\xdd\x32\x89\x1d\x3c\xf9\x7e\xdd\xe6\xcf\x85\xaf\xcd\x26\xc1\x1a\x5e\x1b\x55\x27\x6f\xac\xe9\xe4\x69\x1a\xcc\x16\x56\x77\xc1\x56\x61\x6a\x86\x4d\x5a\x54\xe8\x09\x7d\x62\x85\xcf\xb5\xc5\xcd\xb0\xa0\x5c\xf7\xd9\x7b\x0a\x3c\x4d\x7f\x35\xed\xc9\x93\xed\xd8\x4f\xbe\xad\xd5\xed\x80\x5e\xd8\xb6\x4a\xb8\xe2\xeb\x29\x3c\x69\xfd\x49\x7f\x99\xd9\xaf\x4f\xbe\xf9\x67\xdd\xdb\x17\xaa\x69\xe4\x3b\x78\xfa\xae\x99\xc1\xd3\xd8\xf1\x9e\xa2\x9d\x5f\x6d\x2b\x6b\x44\xba\x21\x5f\x70\x4d\x85\x3d\x32\x31\xfd\xc0\xab\xda\xfc\xb0\x9c\xfe\x35\xd5\x26\xe4\xc9\xf5\xc8\xd8\xfc\xb1\xb0\xae\xf5\x9f\x55\x54\xd4\xcc\xb2\x9e\x7c\xa2\x7b\x64\x71\x0f\xa8\x2f\x2f\xb2\x8b\x81\x66\xda\xc4\xf3\x9f\x12\x1b\x3f\xe7\x6a\x6d\xcb\xd2\xe9\x7f\x7a\x8e\x65\x91\x15\x95\xff\xe2\xf8\xc1\xd2\x4a\xce\xea\xe9\x2a\x9a\xc5\x36\x97\x5d\xac\x6e\x9b\x06\x71\x2d\xe7\x6d\x49\xe5\x39\xee\xd8\x22\x3f\x9e\x58\x0c\xde\xa5\x15\x49\xec\xb9\xff\xdd\x0c\xf4\x97\x25\x95\x38\x79\x76\x97\x50\x92\x55\x1b\xb9\x78\x29\x46\x20\xd3\xf9\x2d\x67\xf2\xc4\x76\xc2\xb7\x7c\x76\xda\xdf\xc3\xb7\xb3\xac\x12\xc3\x57\xbe\xbc\x32\x4d\x3f\x30\x9d\xb5\x28\xb8\x1f\x68\x96\xf5\xc4\xee\xd7\x56\x67\xe2\xc2\x5c\xcf\x59\x00\x43\x8b\x1e\x7f\x3a\xb3\xe2\x6d\x04\x55\x99\x5b\x3e\x78\xa4\xb5\x6d\x1e\xd9\xf0\x1c\x97\xbd\xec\x75\xf1\x7c\x2b\x20\x74\x0c\xe2\x3a\x86\x39\xde\x8a\xda\xfa\x9e\xe9\xcc\xb7\xa2\xa6\xaf\xb3\x67\xb2\x86\x8a\x3a\x73\xff\x69\x4a\xa6\x8e\xf7\xf6\x64\x99\x53\xb3\x2d\xbd\xcc\x7c\x8a\x55\xe6\xdc\xb4\x48\x34\x20\x8d\x50\xa0\xb5\x09\x48\x31\xcb\xad\x5a\x94\x2a\x53\x51\x8f\x3c\x3b\x4e\xf0\x14\x29\xea\x77\x33\x78\x79\x72\xe6\x8b\x6b\x59\x5f\x28\x1d\x00\x3c\x09\xec\xb4\x5d\xea\x80\xd3\x75\xbc\xe0\x89\x45\x8c\x12\x1a\x24\x8a\x84\x34\x93\x88\xf4\xc8\x96\xb7\x2c\x4c\x25\x38\x4e\x89\xff\x48\xc9\x51\xd4\xba\x48\x16\xa3\xec\xc9\x25\xde\x13\x35\x58\xcb\x2c\x9d\x61\x84\xa6\x07\x4f\xa1\x9b\x70\x39\xc3\xfe\x78\xc4\xe6\x12\xcf\x74\x0c\x53\x67\x63\xcb\xa7\x89\xe5\x3c\x6b\xd6\x93\x69\x8f\x9d\x27\xff\xcd\x2e\xfa\xbc\xf8\x37\xe3\x7e\x58\x95\x9e\xb4\x74\x9b\x5d\xa6\x32\xf5\xbe\x34\x96\x25\xe7\x4d\xf3\x67\xba\x4e\x7c\x7f\x3c\xb3\x14\xdd\x99\xba\x16\x89\xd7\x26\x55\x38\x71\xe3\xbf\xba\xd5\x7c\xbc\x8a\x35\x7a\x48\xe9\xfd\x89\x25\x0f\x79\xc6\x19\xce\xec\xf3\x67\xcd\xad\xf0\x7e\x9b\x6a\x6a\x01\xd5\xd0\x98\xc7\x97\xc3\x35\x76\xc5\x34\xfe\x9b\x1f\x90\x29\x4d\x93\x9b\x3e\xe2\x96\xa4\xc6\x94\xad\x3c\x1e\xfc\xfc\xd9\x79\x70\x5e\x89\xfd\xd7\x5f\xf1\x0e\xc8\x68\x24\xae\xba\xd6\x6c\x62\xda\xc5\x1b\x3d\xda\x49\x5d\x53\x0c\x8e\xca\x3d\x53\xfe\xa3\x86\x65\xfc\x4c\x9b\xe4\xf1\xc0\x72\x26\x61\xb4\xa8\xc7\x83\xe8\x8e\x17\x49\xce\x4f\xce\xe4\x13\xbd\x44\x6f\xff\x21\x9b\x49\x73\x4d\x5d\xa5\x54\xec\xd3\x5c\x3f\x7f\x76\xce\x5d\x53\xff\x8d\xfe\xfb\xaf\xbf\xca\x09\x3d\x32\xf6\x88\xff\x12\x98\x53\x92\xdc\x84\x66\xb8\x0b\x7f\x7f\x30\xa7\x84\x7f\x07\x7f\xf6\x9c\x74\x51\xd5\x20\x96\xf6\x96\xb9\xdd\x7d\xe6\xe2\x25\xbd\xc6\xb9\xf5\x53\x72\x6b\xfd\x95\x78\x4f\x9a\xf1\xef\x99\x1f\xf0\xeb\x40\x13\x9c\xb3\xeb\xfc\xba\xcc\x7c\xe2\xd1\x17\x9c\xcb\xfd\xd5\x27\xde\x8d\x56\x55\x7d\xaa\x98\x5a\x40\xd4\x57\xf2\xa6\xba\x5a\xf0\x12\x66\x3d\x9c\xf9\xde\xa1\xe5\xe8\x9a\x75\x48\x02\xfd\x90\xbd\x40\xe2\x05\x87\xf4\x06\x9d\x57\xf2\x56\x2c\x49\x37\xd5\xd0\xa3\x91\xdc\xf9\x9e\xf5\xa6\x6b\x83\xd8\x81\x39\x36\x89\x57\xbe\xbb\x6e\xaa\xf3\xe9\x54\xa5\x1d\x3e\xcc\xf5\x7b\x12\x5a\x8e\x25\xfd\xf9\x53\x55\xcc\xb1\x62\x13\xa5\xf3\x6d\x3a\xbd\x74\xa6\x9a\x69\xb3\x4d\xb5\x7f\xfd\xc5\x2b\xc7\x60\x09\x92\xfb\x27\x59\xa2\x1b\xd3\xd2\x88\xe5\x13\xa1\xcc\x15\x95\x67\x65\xd8\x06\x2d\x22\x5f\xb9\xb4\x37\xd6\x54\x30\xed\xec\xd9\x4a\xa6\x59\x85\x2a\xca\x29\x64\x71\x65\x0b\x2f\x8a\x31\x8c\x1a\x10\x5b\xb3\xd3\x7e\xf6\xc0\xfe\x99\xc9\x1b\x3d\xdd\x05\xed\x42\xca\xe3\x41\xb8\xfa\xa6\xf0\x68\xd6\x73\xe6\xf5\xdd\x38\x36\xa9\x69\xa6\x68\x3d\xd0\x6d\xa4\x2a\xf7\xb6\x16\x7c\x64\x9a\x72\x6d\x8f\x9d\xfb\x37\xbb\xf2\x26\x91\x1e\xa9\xb1\x1e\xa9\x54\x8f\xd4\x50\x8f\x54\xaa\x47\x2a\xd5\xa3\xe8\xa3\x5b\x78\x17\xf6\x01\x72\xdb\x26\xe4\x31\xd5\x20\x73\x53\x27\xf4\x4b\x26\x01\x51\xa9\x3d\x70\x66\x41\x54\xfa\x17\x96\xe4\x92\xa5\xb8\x64\x09\x1e\xc2\xeb\x85\xcf\x3a\x1a\x34\xaa\x6c\x04\x1a\xe5\xbd\x0e\x7f\xbb\xa6\x3f\x15\x93\xd3\xdf\xd4\x68\x84\x99\xbc\x11\x96\xf2\x36\xfc\xb1\xfa\xbd\xb0\xd9\x3c\x4e\x8f\x73\x1d\xe3\xd9\x50\x8d\xa8\x4f\xcf\x6c\xf3\x30\xb0\xd5\xcc\x7b\x3e\xfc\xe5\x52\x2d\x98\x76\x6e\x5f\xa2\x05\xa9\xcf\x06\xe7\xe3\xa5\x30\xb3\x9c\x5b\xd0\x92\xe2\x7b\x54\x76\xdb\xc8\x95\xae\xba\x2f\x6f\x3e\xfd\x5e\x6b\xfa\xbf\xea\xb2\xeb\xa5\x1a\xc7\x45\x10\x5b\xd7\xdc\x30\xff\xdc\xd2\x58\x9d\xef\xc3\x4b\xdf\x2c\xcd\xe6\x5a\xaa\x38\x6b\xe4\xc8\x57\x63\x47\x7e\xf4\x72\xa3\xec\x9f\xc3\xab\xd7\xd1\xc5\xa2\xb1\xa7\xaf\xe5\xd9\x53\x63\xc7\xbd\x6a\x3b\x36\xeb\xcc\x51\x21\xb7\xbf\xdc\x3d\x44\x97\x6e\x1c\x9b\x76\x5d\x4e\x01\x73\x6f\x5c\xfc\x74\xbf\xdd\xfd\x9a\xfb\x7a\xf3\x19\xac\x7e\xd4\x7f\x59\xda\x4f\xfd\x2f\x33\x7e\x3a\xf2\x23\x50\x23\xe1\x8e\x05\x93\x25\x8e\x4f\x12\x8f\xc2\xce\xf9\xc9\x07\x24\xd8\x11\xe7\xde\x38\x5b\xd3\x8c\x12\xd5\x58\xba\x4c\x9e\x2f\x73\xe2\x59\xda\x1b\x27\x6b\xb1\x97\x44\x2b\x05\x55\x62\x1b\xae\x63\xda\x81\xca\x26\xf7\xd9\xb3\xe4\xe1\xec\xf1\x20\xb2\x81\x61\x6c\x26\x51\x13\x58\x7e\xc2\xb0\xb0\x54\x71\x45\x7a\xfb\x7f\x0a\x89\xa2\x5a\x53\x76\xe2\x35\x48\x93\x5b\x24\x65\xe5\x5b\x28\xdf\x99\xa6\xda\x0f\xf6\xe1\xf9\xaa\x3f\xd7\xd5\x89\xa7\xb9\x2f\xd1\x6b\xff\xac\xfd\xb8\xa1\x17\xee\xe7\xfa\x47\xfa\x73\xa1\x17\x26\x04\xa9\x4a\x34\x38\x9f\x35\xcb\x29\x97\xfe\x7a\x96\xf1\x8a\xe2\xda\x56\xbf\xa1\x05\x77\x29\x14\x90\x7f\x2d\xc5\x57\xa3\x64\x34\x21\x09\x23\xb4\x25\x2d\x15\x09\x5e\xe3\x86\xca\xe7\x17\x6f\xa7\xed\xea\x4f\xeb\x6f\xa5\xd7\xd9\x33\xd9\xb2\x46\x7a\x8f\x8f\x4e\xd7\x82\xc0\x42\x43\x09\x37\x94\xeb\x39\x53\x12\xbc\x90\x99\x8f\xc6\x5a\xd8\x58\xd1\xb4\x22\x5a\x2a\x69\x29\x5e\x93\x3d\x1e\xc4\xa8\x6d\xba\xaa\xeb\x38\x8c\xb0\xff\x2f\x9f\x91\xdb\x7c\xc4\x36\xd2\x21\x41\x58\xc4\xf5\xed\x15\xbb\xeb\xc1\x07\x5e\x86\x70\x77\x64\x29\xcb\x3d\xfd\x39\xf5\x65\x25\x75\x4c\xff\xf9\xaf\x7c\x75\xe9\x68\x34\x76\xc4\xaa\xcc\x11\x9b\x16\x6a\x6b\xc1\x45\x74\xe9\x9e\x5e\x29\x91\xb7\x1f\x68\x01\x1d\xd2\x2e\xe1\x99\x59\x49\x4d\x9e\x3c\x9f\x51\xf6\xf9\xe9\xf8\xb0\x45\xb5\x6f\x1d\x43\xa6\xb2\x2c\x79\x93\x2a\x86\x0b\x9b\x54\xb6\xb0\x49\xf5\xcd\x3f\x49\x3c\xe8\x72\x8c\x7b\x76\xe9\x82\x5e\xb9\x37\xff\x24\x45\xdc\xa5\x83\xd3\x25\xbc\x9f\x1b\xb6\xa1\x40\xfa\xed\xe4\xb2\xc9\x3e\x78\xae\xee\x61\x0b\xf8\x9c\xba\x67\x3f\x00\x46\xfc\x61\x8b\xe4\x6f\x94\x2f\x39\x5a\x8c\x19\x93\x3f\x3b\xbd\x35\x6a\xd1\x70\xf7\xd9\x55\x74\xe5\x9e\x5e\x89\xbf\x7c\xf6\x3f\x2f\x8e\x1f\xa8\x6c\x55\x41\xbd\xd3\x57\x73\xdd\xbc\x4f\x44\x6c\xe8\x93\xb7\x93\x57\xee\x5d\xb4\xa6\x8b\xe3\x99\x23\xae\x1a\xaf\xf8\x4a\xda\x3b\xcd\x50\x3b\x4a\x2d\x64\xb5\x67\x96\x55\xe9\xf9\x0a\xbd\x46\x9f\x1d\x83\x70\xea\x10\x79\x9d\xa6\x8e\x91\x9a\x8d\x34\x43\x6d\x1d\x0a\x59\xcb\x75\x48\x93\x96\x1d\xe8\xbf\x39\x7e\x70\x4e\x5f\x42\xb5\xff\x5c\x37\x43\x57\x5b\x1a\xc5\x38\x6b\xd7\x92\x25\xe9\xf0\xec\x6e\x8c\x67\x57\xc8\x05\xbf\x91\xbe\x1b\x69\xd7\x56\x6c\xd5\xe6\x96\x66\xe7\x9d\x70\xa1\x0f\x2f\x97\x98\x0e\x7f\x34\xd7\xcc\x26\xa6\x5d\xf2\xfc\xf6\x9a\x93\x38\x55\x8b\x74\xb6\x29\xdc\xe0\x77\x71\x7d\x79\x57\xaa\x48\x68\x63\xf3\xe9\x99\xd1\x4e\x6c\x68\xc1\x70\xea\x9a\x9b\xf9\x34\x98\xc1\xd4\x35\xf7\xe1\x8d\x43\x07\xb4\x55\x4c\x7b\xec\x69\xd9\x9a\x5f\xd3\x1f\x92\x7a\x47\x6f\xb3\xf3\xf9\xe1\x6b\xa1\xf7\x7e\x7e\xf8\xaa\x1c\xe5\x5b\x39\x59\xdb\xac\x4e\x83\x59\xec\xed\xa1\x19\xcb\x9f\x40\xfe\x6b\xa0\xa9\x7e\x23\x9a\x71\xe7\x38\xd3\xf2\x6d\xe2\x2b\xca\xe3\xc1\x51\xb1\x1b\xe5\x6e\xa9\xbe\x10\xcd\xf0\x9c\xd0\x79\x1b\xde\x3b\x2d\xb5\xb2\x0e\x69\x61\xba\x6d\xaa\x36\x09\xa2\xd9\x4c\x41\x11\x9e\x68\x01\xf9\xae\xbd\x65\x11\xe2\x63\xf8\x53\xa5\x04\x7b\xce\x8c\xd9\xaa\xd2\x0d\x6a\x6e\x94\xe6\x36\xe2\xe9\xbb\xa3\x0e\xfb\xbf\xc3\x23\xee\x6d\x32\x35\xfc\x5e\x51\x39\x7e\x26\x0e\x86\xff\x8b\x4f\x12\xb5\xbd\x58\x90\x21\xf6\xd1\xab\x5a\xcc\x5d\xe7\x47\x85\x3b\x14\xee\xd0\xcd\x71\xf4\xc1\x1d\x0a\x77\x28\xdc\xa1\x70\x87\x6e\x7e\x63\xc1\x1d\x2a\xe6\x0e\x0d\x3d\x2d\xaa\xe1\x39\x2e\x6d\xb3\x78\x9d\x4b\x18\x38\x21\xf4\xb5\xfc\xc5\xcb\x21\xee\x9b\xe1\xdd\x2e\x59\x5a\x1f\x65\xa4\x23\x9a\x5b\xc7\xb8\x1e\xd7\xdc\x51\x75\xe6\xbe\xfa\xf2\x5d\x75\xc6\x63\xcb\xd1\x8c\x78\x54\xe6\x99\xce\x3c\xce\x95\x71\x03\x45\xde\x0b\x01\x47\x50\xfc\xd4\xc5\x8e\x94\x77\x68\x84\x4e\x93\x92\x4b\xa3\x0a\xdb\xc2\xdb\x97\xca\xa5\xe3\xb9\x80\x3e\xb5\x72\xa6\xfc\x4c\x9e\xcc\x60\xff\x4e\xd6\x27\x29\xe9\x08\x88\xfc\x11\xfb\x77\x2e\xd8\x1e\xd7\xfb\xfb\x4f\xfc\x75\x4c\x8c\xc7\xfd\x70\xbd\x88\xf2\x78\x90\xfa\x7b\xa2\xe5\x4d\xc6\xe3\x01\x77\xe4\x45\x6f\x70\x37\xb3\x3f\x3e\xbb\x17\x71\x5f\xaa\xe8\xe7\x91\x33\xd9\x0f\x4c\xdd\x4f\xea\x1f\xde\x87\x55\xde\x19\x8f\xd3\xaa\x17\x91\x36\x79\x31\xc2\xb7\x9d\x3c\xbb\xcc\xb5\x58\x5e\xbb\xf9\xb3\xe4\x97\x58\xbc\xe2\x2c\x9f\x41\xc8\x87\xb0\x0d\x1e\xa4\x3a\x07\x0b\xc7\xcf\xf0\xf1\xd9\x4d\xfc\xd1\x99\x65\x1c\xa5\xaa\x09\x64\x2d\xad\xf4\xe4\x8f\x43\xc4\xd6\xc8\x66\x12\x67\x97\x98\x96\x16\x98\xf2\xb3\x2c\x61\x89\x69\x58\xda\xab\x36\x7e\xd5\x2a\x05\xe3\xd9\x73\x5e\x89\x17\x3f\xc8\xef\x34\xed\x2f\xe1\x4f\xa5\x8a\x85\x19\xc2\x5d\xe9\xc5\x6a\xd1\x4a\xf8\x87\xec\x56\x6a\x98\x82\x5b\x9b\x5c\x11\x34\xcf\x82\x32\x74\x2f\xa8\x2a\x43\xab\xc8\xaf\x6b\x35\xb9\x02\x27\x7e\xa7\xdc\x2e\xb9\x48\x83\x2d\x67\x66\xb0\xc5\x93\x95\xcd\xa9\x87\xde\x02\x35\xf3\xb2\xcb\xf7\x59\xe0\x76\xa0\x79\xd8\x3f\xc2\xcf\x8d\xdb\x49\xc2\x3c\xd1\x17\x1f\xba\xfc\xb2\xa9\x2b\xbd\x14\x25\x43\x96\xff\xa1\xf1\xca\x79\xe6\xf2\x8e\x07\x9a\x9b\xba\x70\x9e\x33\x8b\x67\x6b\x2c\x70\xcf\x9d\x66\x4f\x48\x61\x9e\xa8\x30\x51\x98\x4d\x19\x4d\x44\xc5\xe9\xd8\x56\x15\xd5\xa5\xaf\x3d\x3b\x21\x11\x67\xf1\x6f\x89\x77\x13\x4d\x4b\xd4\x36\xf1\x3d\xdb\x8e\x5e\xb9\x33\x81\x7e\xe3\xac\xd3\xaf\xa3\x61\x93\xfb\xc7\x96\x25\x67\xb8\x7e\x27\x6f\x61\xff\x61\x57\x75\x2f\xc8\x5d\xbd\x60\xcd\x18\x3e\x69\x46\x19\xcb\x66\x5d\xba\x19\xb2\xc6\x81\x35\x85\x39\x36\x75\x2d\x20\xfe\x5a\x9b\x24\x34\x31\xa9\xc1\x0c\x21\x26\x7a\x6a\x45\x29\x5a\x30\xb1\x84\x71\x13\x67\x12\x46\xad\x9c\xb4\x63\xf4\x91\x56\xb5\x1a\xf3\xe3\x9f\xeb\xba\x33\xb3\xab\x3b\x51\xfe\x79\xe3\xb9\x93\x35\xb4\x5e\x6d\xbf\x97\xad\x7a\x3a\x1b\xba\xb6\xaa\x67\x3a\xf2\x57\x9f\x44\x5e\xe1\x3b\xc7\x22\x95\x3d\xda\x7b\xd6\xf4\x8e\x36\x0b\x5e\x1c\xcf\xfc\x93\x85\xdd\xe0\x04\xe7\x4a\xcb\x29\x3c\xf7\xaa\xad\x22\xbf\x65\xcf\xb2\x9d\x82\x1d\x0a\x78\xf6\x68\xab\x8a\xe6\x9a\x1f\x3d\x67\xe6\xc6\xc1\xb3\xe2\x53\xda\xf2\x81\xb0\xd4\x30\x22\xdf\x63\x12\x5f\x8b\xbd\x94\xe8\xdf\xae\x63\x44\xff\x95\x0c\xb1\xc2\x7f\x46\x73\x52\xf1\xc5\x39\x49\xae\x78\xc4\xb5\xe8\xe7\x6d\x3a\x76\x5a\xad\x7c\x2e\x2d\xec\x33\xec\xc7\x39\xf1\x9e\xe3\x8a\x58\x51\x28\x31\x55\xf9\xae\x05\xfa\x4b\xf8\x9f\x13\x12\xfd\xe6\xa6\xbf\xe9\x1e\xd1\x02\x12\xfe\x77\x18\x24\x29\xfc\xef\x70\x27\x83\xcc\xb3\x87\x2f\x65\xaa\xb9\x92\x95\x69\x52\x03\x5e\xc8\xb7\x8a\x5a\xb1\xe8\x6f\xf1\xaf\x46\x12\xfd\xad\x54\xc9\xbf\xff\xd7\xdf\xf9\xf7\xaa\xec\xc6\x15\x37\x0c\x7b\xb4\xe7\x58\xf1\x2b\xcd\xfc\xf2\x6c\xda\x86\x69\x4f\xf8\x37\xcf\x8c\x00\xb2\xdb\x3e\xf2\x23\x43\x5e\x0d\xa3\x8d\x23\x1d\xe6\xd2\xac\xac\x18\xbb\x1a\xf5\x23\xd7\xd2\xec\xb8\x7a\xec\xf7\xe4\xd4\x5b\xe1\x66\xd1\x74\xb3\x93\xf8\x50\xcb\x77\xd3\x74\xb3\x5c\x70\xf9\xe7\xca\x86\x88\x81\x8c\x73\xe7\xe8\xcb\x36\xed\x49\xed\x8b\xe0\x9c\x67\x2f\xd6\x29\x33\xef\xe1\xab\x4f\xce\x75\xf3\xdc\x7e\xfb\xfe\x42\x3c\x72\x71\x77\xb9\xf8\x65\xd0\x76\xd1\xbe\xf3\xab\x44\xdc\x89\x9f\x7c\x2c\x6c\x7d\x97\x44\xb5\x64\x6f\xc6\x1c\x31\xd1\xed\x26\xcf\xae\xcf\x62\x9e\x96\xfe\x7d\x18\xee\x53\x6d\xf2\x1e\x34\xd7\xf5\xf9\xb7\x0e\x63\xc8\x4c\x4b\x96\xcc\x27\xf1\x0f\x86\x46\xa6\x8e\x9d\xfe\x9b\x55\x66\x3c\xb3\xe2\x5f\x84\xba\xe0\x42\x1b\x1c\x9b\xd6\x8a\x87\x8c\xad\x0d\xaf\xec\x68\xcb\x0e\xed\x64\xba\xe3\x11\xc7\xef\xe8\xce\x94\x7f\xc3\xe8\x2e\x51\x8e\xd2\x5d\x4a\x86\xae\xea\x45\x86\x9b\x7a\xb8\x77\xb0\xb5\x20\xee\xc7\x87\x63\xd3\xd6\x2c\xf3\xcf\x54\x09\xb2\x17\xd3\x07\x0d\x1b\x82\x0e\xd6\x2a\x9f\xbb\x68\x7d\xeb\xed\x74\xad\x3d\x5e\x58\xfd\x70\xe7\x5d\x52\x9d\x7c\xb5\x39\xf5\x55\x15\xcf\x08\x15\x65\x1d\x72\x12\x1d\x62\xca\xad\x7d\xe1\x40\xd2\xe5\xd5\x24\xa3\xc4\x55\x95\x8a\xcf\xbb\xaa\x32\x70\xc5\xd3\xed\xc4\x2b\x57\xd7\xf7\x33\x67\x10\xf1\xcd\x58\xe9\x24\xa1\xe5\xdd\xb7\xca\x9a\x25\xae\x65\x51\xf3\x40\xad\x53\xc7\x71\x89\xed\xbf\x98\xe3\x80\xaa\x44\xad\xa1\x92\xee\x6b\xe5\x3b\x1a\xa6\xaf\x3b\x73\xe2\xbd\xc5\xb2\xc4\x6b\xba\xac\x7b\xbd\xda\x54\x94\x6e\x5b\xd3\x41\x5c\xc7\x6a\x24\x80\xd5\x37\x6b\xf3\x19\x19\xb6\x5f\x57\xa7\xf0\xf2\x0a\xab\x55\x33\x56\xdc\xca\xf1\x48\x76\xa4\xf7\x1e\xe3\x91\xea\x31\x88\x34\x4c\xe5\x66\x9f\x8a\xf3\x1d\xf5\x96\xa1\xc2\x0e\x25\x63\xa5\x6c\x5d\xb2\x5d\x24\x32\xaf\x0b\x41\x66\xe9\xa3\x89\xf7\xa0\xcb\x2c\xf0\x85\xff\x5d\xc1\x3d\x8f\x07\xff\x55\x98\x51\x7c\x0f\xcc\x5e\x2e\x52\xb6\x63\x68\x31\xf4\x7a\xac\xa6\x99\x06\xb0\xb2\x55\x20\x12\x1f\x5f\xc1\xff\x0e\x4b\x87\xfe\xa8\xe5\x13\x31\x56\xf5\x82\x0a\xd4\x48\x13\xb2\xf9\x21\x2e\xf9\x56\xb5\x44\x53\xf2\xdd\x19\xc9\x5f\x1e\x8e\x45\xc6\xa5\xe4\xee\x94\x54\xdf\x5f\x42\x4f\x89\x80\x33\xf4\x2c\xef\xc7\x6d\xa3\xd3\x9e\x63\x91\x3b\x32\x66\x99\xe3\xf6\xa8\xa9\x39\x4d\xc6\xc1\x06\x81\x6a\xfa\xb3\xf0\x9c\x15\x26\xe6\x7c\x27\xf0\x92\x9c\xd6\x6b\x7c\x0f\x79\xa7\xf4\xc6\xbe\x87\x6c\x35\x9b\xbf\x07\x59\x0f\x3c\xe7\xd4\x0a\xd7\xcf\x34\xf9\x25\x73\x88\xdc\xd7\x4c\x7f\x15\x6e\x2e\x76\xdb\xd5\x73\x6b\x72\x94\x41\x68\x4f\xef\x03\x4f\x0b\xc8\x24\x8e\x76\x18\x06\x26\xbb\x73\x2c\xcb\xb4\x27\x5f\x13\x8b\x5b\x38\xea\x74\x4a\x8d\xd0\xa7\xfc\xf1\x33\xb5\x0f\x2e\x06\xd4\x01\x99\xba\x56\x7a\x0a\x67\xe9\x8c\x86\xd2\x81\x37\x0b\xef\x29\x72\x57\xd6\xce\xb6\xed\x04\xac\x8b\x66\x8b\xf7\xf5\x17\x62\xcc\x2c\xe2\x75\xd8\xa1\x1b\x9d\xd7\x64\x83\x13\xfd\xfc\x74\xcf\x0c\x4c\x5d\xb3\x54\xd7\x31\xce\x94\xbf\x67\x4e\x6d\x4d\x57\x08\xd2\x74\xbe\xee\x69\xb4\x51\xe3\x69\x97\xaa\x74\xae\xe3\x05\x34\xd5\xe9\xa8\xdb\x8b\x53\xe5\xce\x9d\xa0\x0f\x16\xc5\x67\xc9\x9e\xef\x11\x5e\xb8\xbd\xbe\x2c\xff\x78\x7d\x7b\x91\xff\xd1\xcf\x7d\x2c\x37\x8b\x3e\x94\xac\x87\x7b\xaa\x4d\xc8\xed\xcc\xb2\xc2\xd9\xce\xc2\x32\x1c\x33\x7f\x35\xdb\x88\xf1\xc9\x25\x3f\x7f\x16\xcb\xe0\x6e\x00\x09\x1c\x8b\x78\xa5\x37\xa1\x26\x47\x51\x9c\x29\x57\x3f\x4c\x3f\x48\xde\x1c\x05\xfa\x0b\x5e\x10\xd0\xf8\xbe\x49\x88\xec\xc7\xcc\x1a\x03\x56\xdf\x70\x0e\x58\x37\x2f\x6c\xf3\x92\xa5\x48\xca\xc9\x2f\x48\x48\x1e\x2e\x3a\xac\x3e\xf7\x28\xe1\x6f\xf9\x0c\x3e\xd1\x67\x9e\x19\xb0\xf2\xc8\x8f\xe0\xac\x38\x19\x77\x9b\xc4\x2f\x5d\xb4\xda\x8b\xf6\x91\x38\x6d\xfc\x26\x2b\x16\x16\xea\x9a\xab\x3d\x9b\x96\xc9\x3f\x2b\xc4\xe0\x1f\x85\x79\xff\xcf\xfb\xa7\xf3\xcb\xcf\xd7\x37\xd9\x8b\x73\xc7\x9a\x4d\xc9\x67\x36\x4f\x55\xc8\x95\x69\x54\xf5\xb9\x7c\xec\xea\x94\xe6\xb9\xd5\x82\x97\x33\xe5\x70\x6a\x07\x87\x49\xb2\x4c\x47\xba\x71\x6e\x3d\xd3\x61\xcd\x63\x69\xbe\xcf\x79\x70\x37\x7b\x3d\xec\xa3\xa1\x79\x54\xe3\xd5\x2a\xf1\xa7\x57\xb5\x94\x2e\x1c\xa8\x5d\xd8\x66\x83\x5b\x69\xba\x49\xab\x1d\x5f\xe1\xb4\x37\x37\xe6\xac\x2a\x62\x8c\x0a\x1d\xef\x37\xc7\x0f\xd0\xe7\x72\x17\x6f\xae\x1e\xaa\x2f\xd2\x9c\xb7\x0f\x77\xe7\x17\x57\x55\x59\xef\xce\xff\x91\xbd\x44\xec\x79\x45\x07\xfe\xfd\xeb\x2f\x57\x77\x37\x57\x0f\x57\xf7\x4f\x37\x5f\x2e\xaf\x9e\x6e\xce\x3f\x97\x0a\x9d\x6b\xd6\x8c\xfc\xea\x39\xbc\xa3\x87\xc7\x26\xb1\x8c\x18\x79\xb8\x17\xc3\xcf\x80\x1a\xf0\x0e\x85\x6f\xda\xb9\xf8\x55\x79\xb8\xba\x39\xbf\x79\xe0\xde\xbc\xb4\x86\x52\x78\xe5\x66\xed\x32\x16\x5e\x2d\x58\x2b\x5c\xdd\x7e\xac\xac\x47\xa1\x63\x87\x9e\xaa\x9a\x85\xd2\x4d\x0b\x16\x5a\xa7\x9d\xbf\x7b\xb9\x63\xc6\x37\xff\x72\xfb\xeb\xa7\xab\xff\x7d\xfa\xfc\xe5\x92\xff\x76\xcf\x14\x27\x5c\x78\xba\x41\xcf\x91\xdd\x75\xc9\x82\xc9\x47\xd1\x0e\x17\xbe\xc2\xcf\x5f\x3f\x3d\x7c\xbd\xaf\xa8\x5f\xe9\x3b\xce\xf4\x90\xe8\x06\xff\xd0\xcc\xe0\x57\xc7\x8b\x10\x63\xe1\xed\x2e\xaf\xef\xcf\x7f\xf9\x74\xf5\xf4\x8f\xf3\xeb\x87\xa7\x5f\xbf\xdc\x3d\xdd\x5c\x3d\xfc\xe3\xcb\xdd\xef\x8b\x2b\x50\xd3\xca\x97\x5f\xef\xce\x1f\xae\xbf\xdc\x88\x96\xca\xbe\x8f\xcb\xe8\x94\x98\xfc\x03\x54\x46\x48\x5b\x89\xc2\x55\x95\x41\x91\x5d\xa4\x90\x72\xba\xb8\x14\x2a\x21\x73\xad\x14\x21\x3a\x5b\x48\xba\xc8\xb6\x94\x30\x5b\x8a\x37\xab\x7d\x9e\xd2\x65\x89\xbc\x69\x0d\x2a\x4b\x89\xb6\x02\xd0\xc2\xe2\x71\x0c\x7b\x0d\x62\xc5\x92\x40\x3f\xcc\x6d\x26\x70\xe6\xfe\xe1\xb3\xe6\x13\xd6\x72\x1d\xa3\xba\xe6\x6a\xc3\xbb\xe5\x3f\xd5\xc3\xa2\xa0\xfe\x16\xd2\xb8\xed\x7f\x63\xe5\xd6\x7c\x2e\x85\x36\x3e\xb4\x69\xae\x62\x3d\x32\xf5\xf5\x66\xb6\xca\x4d\xe3\x11\xcd\xf8\xff\xd8\x7b\xb7\xe6\xb6\x71\x2c\x71\xfc\x7d\x3f\x05\xca\xbb\x55\xbd\xbb\x15\xca\xb9\x4c\xa7\xa6\x5d\xf5\x7f\x70\x6c\x27\xad\x6a\xc7\xd6\x5a\x4a\xfa\x37\x35\xee\x52\x41\x24\x24\x61\x4c\x01\x0c\x09\xc9\x51\x67\xf2\xdd\xff\x85\x1b\x09\x92\x00\x08\x5d\xec\x38\x1d\xb1\x1f\x3a\x16\x80\x83\x83\x83\x83\x73\x03\x70\x70\x4d\xd2\x75\xdd\xa6\xaf\x8f\x24\xa7\x19\x9c\xc9\xd7\xeb\x01\x47\x71\x44\x4b\x05\xb1\x1f\x29\x23\x1f\xb8\x88\x42\x79\xbb\x55\xdd\xba\x20\x53\xbc\x42\x04\x15\xc5\x20\xa7\x93\x66\x86\xf3\x29\xc4\xe9\x32\x47\xa3\x79\x8e\x8a\x39\x4d\x93\x13\xf0\xe2\x79\xbd\xc6\x9c\xb1\xec\x9d\xe5\x5d\xa4\x4c\xa2\x51\x05\xd5\x6b\x85\xc2\xdd\xfa\xfb\xf3\x5f\x9e\x37\x4b\xc4\x5b\x88\xe8\x04\xfc\x3a\x1a\x35\x5e\x89\x17\xbb\x07\x30\x15\x39\x9e\x87\x28\xa6\x24\x29\x4e\xc0\x8b\x97\x0d\x08\x32\x85\x6d\x59\xfe\xba\x51\xac\x72\x97\x9b\xe3\xa9\x57\x50\xd9\x68\x4b\x00\xaf\x9e\xb7\xcd\x4c\x73\x29\x84\x59\x3c\x37\x17\x6f\xae\xaf\x47\xe3\xdf\xfb\xa3\x5f\xc7\xd7\x1f\x5d\x6a\xa2\x72\x52\x37\xbe\x99\x52\x75\x35\x1c\x5e\xfa\x54\x6e\x79\x17\xc6\xce\x0b\x35\x13\x59\xdd\xba\xf9\xe1\x8c\x64\xab\x1d\x1c\xa0\xb6\x0e\xca\x62\x7b\x65\xa1\x5a\xec\xab\x3f\xdd\x55\x7d\x21\x49\x86\x1e\x8a\x2b\x55\x7e\x26\x6b\xa0\x25\x6f\x61\x75\x2c\x94\x06\xdc\x3a\x2b\xc6\x74\xb1\x80\x24\x39\x01\xff\xbc\x3d\x3a\x9e\x60\x72\x5c\xcc\x6f\x8f\xfe\x30\x6b\xc0\x7c\x56\xc8\xe2\x6a\x6c\xbc\x62\x0a\x97\x24\x9e\x47\x12\x13\x89\x48\xaf\xd5\x78\x0f\xab\xd1\xa4\xf4\xfe\x96\x8d\xb8\xee\xd0\x5a\x2f\xa5\x6a\x17\x0f\x21\x57\x79\xbf\x25\x09\xf9\x8f\x4e\x0d\x88\x58\x8e\xe3\x96\x42\x69\x00\xfc\xe5\xf5\xab\x97\x66\x15\x86\xf2\x05\x26\x42\x33\xbf\x47\x45\xc1\xe9\x22\xd9\x28\x41\xab\x63\xa3\x30\x4a\xeb\x2f\x9b\x5b\xda\x29\xfa\xbe\xc5\x29\xda\x50\x3c\xd4\x78\x69\x47\x4e\x6f\x33\xe4\x2e\x62\xc8\x22\x3c\x4b\x7a\xc7\xb0\x60\x91\x3c\x81\xe8\xe4\xff\xf7\xbc\xd2\x43\x31\xbe\xc0\x40\x22\xb0\x35\xdf\x6f\xab\x69\xfc\xab\x24\x50\x0b\xfd\xa5\x35\x47\x8e\xc4\x25\x29\x4d\xfe\xd3\xf4\x1e\xae\xcb\xd5\x29\x47\xee\x08\x0c\x37\x5d\x37\x11\x48\xe7\x3d\x35\x88\x2c\x3b\xa7\x19\xb3\x43\x69\xda\xc1\x7e\x30\x88\xc5\x6d\x30\x16\xea\xfb\xa1\xd4\x2a\x7b\x28\xe8\x87\x52\xab\x1c\xe6\x34\xc5\xfa\x5e\x5d\x03\x62\xc7\x8b\x34\xd5\x87\x19\x5a\xb4\x25\x7a\x04\xc4\x85\xa2\x56\xda\xc0\xb6\x94\x97\xa8\x57\x15\x7b\x75\xf2\x6f\x62\x41\xa0\x45\xc6\xd6\xe7\xb8\xf9\x92\xd6\x02\x25\x78\xb9\x38\x01\xef\xc5\xb3\x65\x4e\xd0\xdf\x88\x44\x96\x2b\xf5\x2e\x22\x89\xa5\xd2\xab\xfc\xae\x4a\xfe\x98\xba\xce\xe3\xc0\x06\xe9\x0d\x67\x0c\x3e\xc4\x45\x8e\x3a\x3d\xdf\x4e\x0e\xd6\x0e\x75\x88\x77\x5b\xe2\x00\xac\x9a\xc6\xed\xdb\x76\xae\x46\x81\x89\x04\x70\xec\xbf\xa3\xba\xcb\x4e\xb2\xf1\x9a\xea\xed\x8f\xb8\xa1\xdc\x18\x7f\x08\x7e\xfb\xda\x57\xb6\x74\xfd\xf8\xdb\xcb\x3f\xc0\x86\xf0\x96\xdb\xc1\x3f\xec\x16\xa3\x95\x2f\x5b\xde\x21\x22\xab\xa1\xa8\xb3\xaf\x58\x4a\xfd\x84\x59\xf5\x89\x47\x3e\xdb\xca\x4b\x3e\x01\xaa\xb3\x7d\x7c\x1c\x4a\xdd\x7a\xc9\x2b\x37\xd3\x14\x7e\xe7\x51\x1a\x5d\x38\xfc\xc7\x70\xfc\xfe\xfa\xfc\xc3\xa5\x75\xb7\x92\x97\x5e\xf5\xed\x3b\x99\xfd\xc1\xd9\xf8\xf2\xfa\xac\xb6\xe7\xe1\x0e\xec\x5d\x7f\x1c\x8e\x6f\x3e\x5c\x9d\xf7\x6f\x9a\xb0\x54\xbc\xad\x6e\xb7\x0b\x3d\xe5\xe0\x99\xbf\xb4\x9b\xd0\x86\x52\xb3\xc4\x7d\x50\x5a\x15\x4d\x28\x0b\xca\x85\x78\x2b\x1c\x60\x42\x4a\xf1\xe4\xd8\x52\xcd\x17\xf5\x46\x9f\x51\xfb\xf5\x4d\xed\xc8\xda\x98\xa6\xe9\xb9\x2a\xd8\x11\x5d\x15\xdc\x67\xdd\xcd\x57\xb2\x50\xeb\x2f\xe0\xe4\x58\xa6\xc4\x0f\xa9\x36\x8f\x9d\x76\x5d\x79\x02\xfe\xe9\x25\x37\x00\x81\xa6\x4b\x27\xaa\xa5\x3d\xa2\x8f\xf7\xab\xdd\x8c\xc2\x6a\x05\xa2\xea\x3c\xf7\xb6\x06\x60\x9d\x4e\x61\xe3\xe8\xb2\xff\x42\x3b\x0a\x98\x14\x10\x6c\x4e\xb6\xe1\x3f\x55\x6b\x32\xc0\x46\x34\x07\xf3\x88\x36\xa2\xce\x5b\x3d\xaa\xac\x44\xe0\xb2\x1d\xbf\x7c\x01\x8c\xfe\x03\x2e\xd2\x7a\xf5\x7f\x03\x4c\x12\x44\x18\x78\x5d\x1e\x47\x4c\x0b\xe4\x84\xa2\xd1\x43\xd3\x29\x8a\xd9\x09\xb8\xa2\x17\x9f\x51\xbc\x64\x86\xff\xef\x3a\xa9\x68\x82\xb2\x6c\x0e\x9a\x30\x87\x6a\x2e\xab\xa6\xc2\xf3\x27\x34\x41\x8d\x79\x25\x94\x45\x39\x82\xc9\xba\xbb\xff\xc0\x0e\xa2\x9c\xa6\xcd\x5e\x16\x90\xdb\xc4\xbe\x2e\x94\x55\x05\x1a\xce\xf7\x2e\x96\xb8\x40\xe6\x09\x99\xe1\x1b\x6e\x88\x9a\xd6\xfa\x6c\x92\x75\x6c\xdf\xbc\x9b\x64\xde\xbd\x1b\x8b\x79\x0e\x9a\xf6\x39\xd8\xfc\x90\x4b\xf3\x65\xe6\xbd\x1e\x92\x08\x3b\x78\xa6\x92\x0a\xa1\x9c\x79\x4d\x28\x4b\x85\xc8\x96\x6b\x6a\xbb\x11\xa0\x9c\x1d\x3b\x5c\x03\xb7\xe1\xfd\xee\xcd\x60\x3c\xbc\xb8\xf9\x78\x71\x33\x3e\xbb\xbe\x7a\xdb\x6d\x7d\x5b\x08\x56\xe5\x57\xec\x39\x8f\x47\x38\xfc\x3e\x9b\x02\x69\x9e\x6c\x2e\xab\xec\xcb\xeb\x73\x53\xe3\xf7\xd3\xd1\xd9\xaf\xe2\x1c\xe5\x70\x60\x39\xa1\x59\x9e\x2f\x68\xa6\xa4\xd7\xed\x4f\xcf\xfa\xe3\xe1\xd5\xe9\x28\x00\x84\x33\xe7\xaa\x07\xee\xbb\xcb\xeb\x37\xa7\x97\xfd\xab\xb7\xd7\xee\xb3\x9e\x27\xea\xa1\xa7\xea\xb6\xa0\x0f\xe8\xcd\x39\x9f\xf5\xfe\x3b\x3f\xbc\x9c\x2e\x19\x26\x33\x99\x5e\x52\x87\x6b\x1d\x50\x87\xff\x18\x8e\x2e\xde\xef\x87\x00\xdf\x66\xf5\xdb\xba\xd9\xdb\xf2\xac\xaa\x7f\xcb\xe3\x42\x2f\x9a\x25\x4f\xf7\xb8\x50\xe5\xcf\x05\x49\xe5\x0e\x89\x5c\x08\xfb\xab\x41\x35\xf9\xe3\x55\x57\xb2\xbb\x0e\xa9\xe6\x63\x8f\xce\x6e\x5b\xa9\x06\xeb\xf0\x43\xb8\xfc\x61\x37\x6c\x5a\x18\xb4\xdd\x77\xc9\x7a\x55\xc5\xf6\x9e\x4d\xe8\x19\xac\xb2\xd7\x56\xe6\x5e\x57\xaf\x3e\x15\xe4\xe5\x9b\xb6\x03\x2c\x2e\xa0\x1a\x2e\xf0\x80\x26\xfd\xb7\x56\xef\x17\x13\xc4\x22\xf1\x00\x4b\xc3\xdd\x35\x93\xf6\x13\xb9\x14\x45\x33\x94\xcd\x5a\x33\x21\x80\xd0\xa5\x98\x74\x9c\xc1\x24\xc9\x4f\x40\xf5\x1a\x8b\x39\x8e\xa3\x67\xff\x01\x00\x90\xc9\x7e\x7f\xee\xbd\xec\xbd\xea\xfd\xed\xe8\x04\x1c\x35\xfd\xf7\x76\x5a\x01\xf3\x92\xa5\xc8\x25\x70\xa3\xc2\x9e\xe7\x65\x2e\x01\x97\x77\x5f\x21\x5a\xe6\xd4\xea\x71\x0a\xc5\x2c\x4f\x0d\xc7\x79\x26\x2f\x4b\x56\x25\x8a\x1c\x8a\x9b\x64\xdf\x4a\x97\x4b\x70\xd7\x46\x2e\x2e\x20\xae\x06\xff\xe6\xae\x74\x89\xf5\x05\x94\x2c\x5d\xe6\x30\x75\xa1\xa6\x1c\x42\x4c\x66\xcb\x14\xe6\x8e\x5a\xc2\x71\x8f\x29\xf7\xe5\xcb\x87\xc1\xc4\x61\x2a\x15\x68\x28\x6f\x1b\x0b\x1a\xac\x5e\x08\x4f\x54\x89\x2b\xc1\x62\x89\xe9\x59\x16\x8c\xe6\xc2\x58\x31\x7e\x5a\x4e\xda\x71\x65\xc5\x05\xe0\x8b\x62\x75\x21\x70\x2b\xef\x9d\x66\x88\x9c\x0e\xfa\x1f\x5f\x0d\xeb\xbf\x03\x90\xa0\x22\xce\x71\xc6\x34\x73\xb6\x07\x04\xe8\x3d\x29\x00\x9b\x23\x90\xe2\x29\x8a\xd7\x71\x8a\x00\x9d\x72\xf5\x0e\xa8\xbc\x69\x0a\x30\x11\xe5\x6a\x5f\xa0\x02\x9e\xe5\x1c\x48\x2b\x5c\x6c\x30\x54\x43\x4c\x8b\x10\x48\xc1\x72\x71\x3b\xb7\xfa\x5d\x4c\x70\x58\xd5\x56\xe0\xc2\xac\x2e\xf1\xad\x49\xce\xac\x15\x42\xac\x51\xc4\xca\x2f\xc3\x0c\xc5\x40\x24\xca\x40\x92\x30\x09\x2a\x70\x8e\x12\x01\x0d\x4c\x69\x2e\x88\x73\x2d\x89\xd3\x50\x64\x76\x8a\xf0\x6f\x9a\xc2\x15\x6d\x6e\xb3\xfb\x86\x0a\x4a\xa9\xbc\x51\x23\x27\x29\x2a\x41\xb2\x11\x31\x44\xb3\x1a\x39\x94\x3a\x9e\x2e\x53\x10\xd3\x45\x96\x22\xde\x5c\xf0\x8c\x7b\x89\x06\x10\xc8\x8a\x60\x35\xa2\x09\xa5\x29\x82\x24\x64\xb0\x39\xfa\xb4\xe4\x13\x56\x8b\xa6\xf0\xc9\x33\xe2\x10\xb5\x86\x9e\x44\xa7\xe5\x22\x0f\x89\x60\x3e\x5e\x64\xd2\x12\x79\xdd\x9f\xe4\xae\x32\x25\xf4\x54\x42\x05\xab\xac\xe6\xbf\xdb\x24\xb5\x7e\x42\xe1\x6d\x53\x3a\x97\x05\x6d\x89\x5c\x4f\xce\x60\x4a\xe1\xea\x81\x86\x0d\x25\xef\x26\x32\x37\x54\x9c\x7e\x97\x12\xcf\x55\xd5\xbb\x1a\xe5\x64\x38\x57\x23\xcc\x73\xb8\x6e\x17\xda\x8d\x40\x3f\x12\x9d\xa8\xc8\xaf\xe4\xfe\xfe\xb9\xa3\x86\x5f\x94\xca\x8f\xdb\x50\xdb\xb7\xc6\x53\xc1\x5c\x3b\x00\x90\x26\xda\xf6\x00\x16\x30\xde\x11\x42\x46\x93\x1d\x07\xc1\x21\xb8\x66\x29\xa4\xfd\x8a\xa1\xa6\x97\xd1\xd5\x7c\x3b\x89\xbe\x59\x90\xd4\x94\xa6\x6a\x27\xa1\x4a\x24\x75\xbc\x7a\x31\x41\x0c\x56\x66\xbd\x09\xc6\x69\xfe\xd6\x42\xab\x2a\x74\xf1\xe2\xb9\xfe\x6e\x89\x8c\xb2\x9c\xcb\xe7\xf4\x4e\x80\x4c\xa4\x45\x6a\x4a\xf9\xf6\x68\x34\xc7\x45\x19\xbb\x05\xb1\xc0\x1b\x17\x60\x59\xa0\x44\x1b\x23\xd1\xd9\x55\xbf\x3a\x8d\x50\xcb\x7f\x6d\x89\x48\x77\xe4\xf0\x0a\xd0\x2a\x35\x52\x6c\xa4\x5a\x50\x36\xdb\x4e\xa9\x5c\x64\xb3\xa6\x3a\xb9\xc8\x66\x6d\x45\xa2\xf3\xd5\xfa\x34\x85\xd4\x0e\xa1\x2a\x74\xfb\xc1\x96\x19\x73\xb7\x1a\xb1\x7e\x4f\xbd\x39\x6c\xfd\x7b\x7b\xec\xb5\x0c\xbd\x4f\x81\x00\x3b\x18\x11\x56\x03\xc2\x61\x3c\x54\x86\xc3\x53\x18\x74\x95\xa8\x78\xab\x81\xbf\x7b\x33\x18\x72\xa3\x1b\x35\x07\x5f\x16\xb4\x09\x50\xcf\x95\xdc\x4d\x04\xab\x97\x69\xfa\x98\x2d\xf1\xf1\x50\xa6\x66\x23\x33\x5d\xaf\x4c\x9c\x66\xa5\x99\x2c\xb1\x51\x6d\x48\x20\x7b\x27\xe0\xf4\xc9\x94\x36\x49\x57\x2f\x6d\xd3\xcf\x92\x1f\xcf\x34\x41\x1b\x01\xf1\x27\x60\x87\xd6\x54\x44\x7d\x74\x5c\x37\x70\x2f\x4d\xb6\x11\x1a\x42\x38\x6d\xf5\x21\x82\xd3\x41\xff\x3b\x37\x6b\x3d\x16\xe3\xac\xa4\x86\xcd\x4e\x81\x49\x22\x18\x12\xa6\x03\xbf\xd1\xe9\xb6\x66\x03\xec\x55\x61\xab\x9d\x26\x49\x8e\x0a\x77\x95\x10\x73\x49\x06\xde\xc5\x23\x36\x3e\x40\x3e\x64\x83\x51\x96\x1f\xb2\x9e\xaf\xaa\x7f\x0b\xf8\x19\x2f\x96\x8b\x13\xf0\xfa\xe7\x9f\x5f\xfd\xdc\x59\x1b\x13\x59\xbb\xb5\x75\xd0\xfc\x24\x3d\x30\x61\x68\xd6\xbc\x59\xd5\xfc\xc4\x31\xae\xa7\x8f\x68\x97\xe7\x63\xd6\x72\xb8\x55\xf2\xe3\x4b\xb8\xef\xb6\x9c\xc3\x78\x49\x02\xf9\x80\x7d\x33\x1c\x0a\x47\xee\x8e\x5e\xf9\xbc\x89\x10\x60\x16\xe3\xde\xfc\x22\x63\x21\xb9\x6a\x54\x2b\xc4\x55\x43\x8e\xdb\x5f\xfa\x01\x27\xbe\x0a\xd5\x70\xed\xb5\xba\x26\xda\x3b\xc5\xee\xc6\x0e\xf2\x44\xa6\x94\x0b\x14\xa2\x9d\x21\xc0\xba\x2a\xb1\xc4\xfe\xe8\x44\x2a\x32\xf9\xfa\x01\xa0\x53\xab\xe6\xf5\x23\xd2\x11\x7b\xdb\xb7\x79\x51\xa5\x56\xdd\xc9\xba\xb8\xe4\x60\x5c\xc6\x45\x59\x68\xb7\x2d\xea\xd9\x5d\x9b\xa6\x45\x59\xfa\x14\x2c\x8b\xef\xd2\x14\x68\xf1\x70\x39\x1f\xee\x58\xbe\xc9\xbf\x8d\xb9\xed\xa0\x85\x98\x7e\xdd\xc2\xa6\x4b\xdd\xaa\xb8\x53\x05\x67\x34\xf1\xca\xd3\xa0\xe8\x4c\xc9\x3c\xbb\x81\xf1\x29\x89\x6e\x00\xa5\xc4\xf4\xd9\x1b\x5d\x46\x4b\xa0\xc9\x92\xa0\xc2\xaf\x19\x43\xfa\x92\x5f\x88\xee\x33\x6b\x7a\x35\x36\xd0\x1b\xe8\x21\x90\xba\xfb\xec\x34\x00\xc2\x81\x75\xe8\x5c\x00\x64\x12\xe9\xc2\xa9\x33\x41\x79\xbe\xc0\x57\xee\xd3\xba\x20\xd0\x36\xea\xa0\xb3\x77\x24\x91\x5e\x0e\xde\x42\xb5\xbf\xe3\xa8\xe1\xb0\x0a\xa2\x1a\x87\xbb\xf5\xbd\x6b\x70\xce\x61\x39\xf5\x7d\x25\x73\x9e\xa0\x96\xd5\xf9\xbb\x77\xd2\xb1\xd2\xc2\xb2\x29\x58\x59\x62\xd7\xae\x59\x6d\x0e\xea\xba\x35\x2b\x21\x2a\xc5\x7a\x56\x6d\x62\xef\x41\xab\xee\x75\xaf\xde\x3e\x8f\xdf\xa5\x42\xde\x6a\xcb\xa9\x71\x1f\x22\x0c\x5e\x07\x4c\x60\xbb\x8c\x10\x0e\x19\x34\x8d\x8b\x9f\x86\x02\x49\xb5\xe1\x3d\xa0\x49\xf1\x93\x43\x7f\x76\x69\xae\xe0\x28\x04\x08\x10\xea\xa4\x43\xe3\xfb\xdb\xfb\x68\xe0\xd4\x39\x3b\xed\x03\xda\x31\x71\xaa\xf1\xbd\xf7\xb5\x91\x87\xb4\x05\x33\x07\x4d\x6e\x1d\xbd\x07\xdf\xd1\xdf\xcd\x05\xba\xa2\x09\xb2\x79\x3f\xfa\x77\xfb\x96\xbe\xd5\xe7\xd1\x05\x07\x77\x27\x88\x25\x37\x8a\x7c\xaa\xfd\x61\x7b\xcc\xd1\xb7\xf6\x2a\x65\x69\xce\xbd\xf9\x05\x0b\x2c\xcf\x79\x1d\xdf\x40\x77\x89\x5b\x5c\x29\x96\x0a\x8a\x58\x5c\x19\xfc\xd7\xd5\xf9\x23\x5a\x51\xe5\x7b\x3c\x5b\xaf\xd1\x9b\xe4\xcc\x38\xe6\x5a\xad\x51\xfd\x7b\x7b\x8d\xd6\xde\x00\x32\xd7\xa8\x2e\x38\xac\xd1\x20\x06\xdd\x68\x8d\xea\x17\x78\x50\x52\x2c\x27\x04\x59\x32\x05\x6c\xab\x40\xbd\x9a\x72\x59\xa0\xfc\x11\x3b\xfc\xb1\x17\x73\xe3\x55\xa3\x9e\xf1\x0a\x92\x75\x51\xeb\x32\xab\xea\x95\xb0\xec\xce\x51\xad\xd0\xa2\x84\xdb\xaf\x2b\xd5\x54\xb1\x51\xbc\xde\x72\xad\x6f\xb5\x67\xa9\x33\x6c\xab\x6b\x7b\xb2\x6c\xc2\x67\x39\x87\xd3\x29\x8e\xc1\x34\xa5\xf7\x00\x32\xd0\x1f\x00\xa5\xd0\x00\xcd\x45\x9c\x1f\xa4\x68\x85\xd2\xbf\xae\x78\x80\x59\x96\x62\x94\x8c\xa8\x65\x35\x76\x78\x15\xa5\x1b\x30\x74\xbb\x52\x01\x60\x80\xbe\x8d\x7e\xf1\x39\xe3\x94\x6f\x5c\xb3\x6e\x7e\x7b\xdc\x79\xbc\x43\xeb\x3d\x46\xe8\xca\x3b\xba\xfb\x03\x29\x0e\x71\x75\x47\x11\xc3\x62\x8d\x9b\x74\x1c\x1c\x6f\x0c\x88\xec\xa9\x0b\x32\xfe\x0a\xd4\x7a\x7e\xdb\x86\xd2\x1e\xb6\x36\x6d\xb9\x0f\xda\xdf\x46\x2e\x33\x08\x26\x6f\xf7\x28\x3a\x0f\xaf\xd2\xa4\x63\xc5\xd5\xef\x61\xa4\x5c\xb8\x61\x32\x13\x62\x6d\x9a\xd3\x85\x3c\xa2\x01\x17\xa8\x5a\xc2\x87\x95\x7b\x58\xb9\x96\xef\xb0\x72\x37\x1a\x45\x48\x0c\xde\x5e\x8a\x66\x0e\x2f\xba\xbe\xd9\x88\x18\xb7\x42\x65\x65\x20\x5e\x3b\x06\x88\xb3\x1a\x64\x28\x01\x13\x58\xa0\x04\x50\x79\x7d\x8a\xe6\x09\xca\x01\x26\xe0\x7e\x8e\xe3\x39\xff\x69\x0d\x60\x8e\x40\x81\x58\x6f\x13\x7b\xbc\x3b\xb2\x28\xe2\x93\x4e\xf2\x36\xee\xfc\x88\x58\x26\xb7\x50\xf0\x14\x2b\x2b\x5b\x02\x00\x8c\x82\x09\xd2\xe6\x88\x1e\x05\x1f\xa2\x05\x5d\x93\x9e\xde\xf3\xf7\xe2\xdd\xd5\x4b\x3a\x9b\x61\xe2\x3e\x89\x5f\x43\xf1\xc2\x6c\x52\x9e\x7c\x66\x14\x60\x92\x88\xcb\xb5\x00\x4f\x81\x48\xce\x07\x8a\x39\x5d\xa6\x09\x98\x21\xc2\x57\x00\x02\x29\x9d\x09\xff\x01\x2e\x53\xc6\x5b\x88\x53\xce\x1d\xd8\x3b\xe3\x16\xc0\x91\x47\xdb\x81\xb6\xe2\x0c\x61\xb1\x42\x92\xf0\x69\x63\x34\xa6\xa9\x94\xfe\x28\x39\x4e\x10\xe1\x74\x9d\xac\x2b\xba\x82\xfe\x14\xb0\x39\x2e\xe4\xf3\x49\x62\xac\xa4\xe0\x70\x72\x99\xa7\xf5\x99\x2c\xe5\x75\xe5\xc2\x43\x05\x07\x27\xd1\x72\x8e\xab\x4b\xa4\xd9\x0c\x73\x69\x97\x0f\x38\xf2\x86\x6d\x3e\x47\x96\xf1\x30\x2a\x71\xe1\xac\x0d\xfd\xfc\x11\xac\x4f\x10\x49\x44\x0a\x71\xbf\x64\x6d\xb0\x49\xa2\xd0\xad\xdc\x45\x44\x12\x3e\x07\x25\xde\x39\x24\x33\xf4\x0c\x4c\x10\xe7\x24\x5d\x01\x93\x38\x5d\x26\x28\x01\xf7\x98\xcd\xd5\x55\x47\x51\xb1\x07\xfa\x0c\xc4\x90\x00\x4a\xd2\x35\x5f\x0a\x7a\x95\x24\xe0\x7e\x8e\xf8\x60\xc9\x72\x81\x72\x1c\x43\x39\x03\x7c\xbe\xca\x2a\x1e\x1a\xf0\x6f\x4a\xf3\x05\x64\xe2\xfc\x58\x3d\x47\x7a\xfb\x0b\x3e\x68\x96\x75\x53\x0c\x92\xf5\xb5\xfd\xc1\xae\xea\x8b\x36\x39\x83\x17\x6d\xa0\x08\x6b\xd3\x35\xd2\x73\xa2\xe4\xca\x0c\xaf\x10\x29\x99\xaa\x07\xc4\xad\x07\x4e\xfc\x09\x02\x08\xb3\x39\xca\x6b\xf4\xa6\xb9\xb0\x94\x92\x12\x06\x04\x03\x9a\x58\x16\x10\xa1\x8c\x43\x5d\xe1\x04\x25\x6a\xf9\x34\x57\x8e\xb4\xb9\x04\x53\x93\xe5\x62\x82\x72\xf7\x52\x92\xdf\xe7\xa8\xca\x0d\x14\x61\xc2\x22\x9a\x47\x92\x00\xf6\x67\x69\xcc\x4f\x8f\xb0\x93\xb5\xd5\x9d\x90\xd1\xd9\x60\x53\xaa\xea\x85\xf9\xdf\xa3\xb3\xc1\x33\xf0\xe1\x7c\xf0\x8c\x93\x6b\x78\x36\x1a\xfc\x8f\xd6\x3d\xca\xc9\x5e\x2c\x0b\x26\xc9\x21\x28\xc7\x69\x55\x32\xf0\x33\x93\x90\x0a\x9d\x82\x2f\xf6\xd1\xd9\xa0\x83\x3e\xfb\x52\xde\x01\x06\x08\xb3\x79\xc9\x16\xc2\xdc\x70\x91\x59\xce\x7d\xc2\x55\x86\x26\x02\x2e\x04\xab\x93\x44\xdd\xa7\xe1\xe2\x2f\xa5\x30\x29\xd4\x86\xa4\x96\xd1\x9a\x18\x16\x26\x13\xc2\x99\x13\x79\x81\x8b\x02\x93\x99\x4b\x4e\x27\xa8\x60\xea\x21\x83\xed\xc5\x75\xa0\x08\xc5\xd9\x9b\x94\xc6\x77\x9b\x88\xd0\xfe\x40\x34\x69\x48\xfc\xfe\x40\x1d\xbe\x44\xc5\xb1\xaa\xc1\x0b\x20\xab\xd1\x93\x9b\x0b\xc7\xdc\x95\xe9\x95\x60\x62\x91\xa5\x4d\x08\x4e\xc4\x00\x2c\x40\x06\x73\xa6\xe5\xf1\xa9\x8e\x72\x68\xa2\x9e\xd5\x6a\x73\x59\xcc\xa5\x15\xa0\x62\xe9\xeb\xad\xe1\x0e\xc6\x0b\xf6\x56\x00\x88\xb1\xe7\x16\x9d\x83\x3e\x67\xfd\xf3\x1b\x3e\x68\xa8\x78\x1b\xe4\x88\x7b\x59\x88\x30\xad\x4f\xfa\x03\x20\xc7\xfe\x11\xa6\x38\x01\xe8\x33\x5c\x64\xdc\x24\xe4\x76\xde\xed\xd1\x8b\x5f\x5e\xf6\x5e\xbc\xfe\x7b\xef\x45\xef\xc5\xf1\xcb\xbf\xdd\x1e\x71\x8e\xb9\x3d\x7a\xf9\xfc\xf9\x8b\x93\x64\xf2\xcb\xc9\xc9\xf1\xeb\xbf\x35\xf3\xe2\xd8\xbe\x4d\x5c\x0f\xf4\x39\x46\x59\xf7\x21\xe9\xa6\x2e\x15\xad\xd4\x50\x53\x1c\x8b\x48\x2b\x1f\xbd\x9a\x78\x65\x67\xa9\xf9\x6a\x2a\x50\x48\xf6\x41\x07\x8d\x84\xf4\xdb\xc0\x3d\x4e\x53\xde\x59\x8e\xfe\x25\xd7\x24\x9e\x56\x26\x34\x5d\xb2\x02\x27\x48\x4c\x81\x98\x24\xa1\xbf\xbb\x07\x1d\xea\xec\x6d\x46\xf3\x60\x87\x2f\xd0\xe5\x13\x4f\xb5\xe0\xa4\x43\x13\x87\x79\x74\xe1\x31\x42\xfd\x35\x8c\x5a\xde\x46\xc8\xb2\x01\x4d\x54\xec\xa2\x0c\x16\x57\xe2\x40\x0b\x4c\xbd\x6e\x9f\xf1\xe5\x5f\x09\x56\x4c\xc0\x88\x1e\xbf\xe5\x8d\xc5\xea\x2f\x84\x4c\x2d\xd7\xfd\xa0\x0a\xa7\x3c\x93\xfd\xf0\x49\xd6\xb0\xbd\x7d\xa2\xaa\x44\x83\x08\x14\x2d\x6a\xa9\x98\x9d\x73\xbe\xbc\xf8\xcc\x50\x4e\x60\x7a\x41\x18\x66\xeb\xe1\xde\xe5\xd0\x06\xd1\x1a\xfd\x85\x73\xed\x06\x78\xc8\x2f\x24\x8a\xa3\xbf\xcd\x96\x04\xd8\x24\xaa\xa3\xbf\x1a\xef\x95\x09\x4b\x4a\xa9\xcb\xc5\xd3\x1d\x5a\x17\x20\x47\xa9\x54\xaa\x73\x9c\x71\x13\x05\x8a\x89\xa6\x53\x25\x3c\x7a\x4a\x0c\x95\x99\x5e\x04\x3f\xf5\xc9\x33\x70\x45\x19\xff\x9f\x4c\xe1\x28\x2c\xc0\x73\x8a\x8a\x2b\xca\xc4\x2f\x1d\xb3\xbc\x0b\x29\x02\xa3\x51\x56\x42\x28\x89\xc8\xa5\x33\x91\x42\x86\x0f\x55\xa9\x24\x3d\xe2\xbe\x54\xb3\x25\xd1\x70\x01\xfa\x84\x33\xb4\x1a\x32\x2f\x54\x80\x24\x08\x61\x0b\x4e\x10\x20\x94\x44\xc2\x9e\xb1\xc2\x50\x94\xa2\x79\x8d\x50\x1e\x70\x0a\x94\x30\xe7\x65\x09\x37\x8c\x50\x96\xc2\x18\x25\x20\x59\x0a\xa4\xa1\x4e\x96\xcb\x6d\x52\x94\xcf\x10\xc8\x84\x51\x1a\x4a\x9e\xf0\x15\x21\xbf\xcd\xe7\x6b\x03\x99\x2e\xbf\x40\xc9\x2e\xbf\xce\xa0\x5e\x55\x31\x24\xb8\x57\x47\xb9\x5b\x25\x98\xb5\x83\x06\x18\x16\xf4\xd3\xdf\xc6\xc1\xbf\x3a\x46\x9b\x29\xdd\x90\xd1\x86\xd6\xec\x0e\xeb\xeb\xcf\xa6\x24\x0d\x05\x69\xc6\x54\x8a\x4a\x43\xb5\x94\x62\x69\x14\x1f\xfb\xd4\x63\x4b\xc3\x3d\xbe\x92\x6c\xb7\x3f\x28\xc4\x83\x42\xdc\x85\x14\x07\x85\x78\x50\x88\xd5\x77\x50\x88\x1e\x8c\xbe\x95\x42\xdc\x53\xc0\xee\xed\xa7\x73\xf7\xe6\x54\x90\x80\x16\xd4\xbe\x72\x1c\x53\xad\xbe\x90\x45\x10\x4a\xd1\x00\x5e\xe8\x64\xf0\xc8\x40\xdc\x4f\x3f\x37\x8d\x3b\x6e\x3b\xd5\xb6\xd7\xec\x55\xe4\x04\xd8\xca\xb6\xbc\xaf\x04\xf4\x49\x86\xc0\xbd\x52\x7d\xee\xe1\xb0\x59\xfa\x04\x37\x4b\xc5\xc6\x96\x9c\x19\xc3\x9c\xec\x81\xa1\xac\x3c\x41\x7b\xdd\x4e\xe5\x56\xea\xce\xf1\x7b\x9a\xe3\x19\x26\x90\x21\x65\x6d\x6f\x1b\xbf\x77\x05\xed\xd5\xfd\xae\x43\xbc\xfe\x10\xaf\x3f\xc4\xeb\x0f\xf1\xfa\xa7\x1e\xaf\x3f\xb8\xda\xd6\xef\xe0\x6a\x97\xdf\xc1\xd5\x3e\xb8\xda\xd5\x77\x70\xb5\x3d\x18\x1d\x62\xcf\x87\xd8\xb3\xff\xab\x51\xbf\xd9\x5e\x5a\x64\x29\x2e\x84\x42\x10\x79\x08\xaa\xe1\xa8\x55\xba\xe0\xca\xa4\x27\x4e\x6e\x99\xbf\x08\x8a\x9e\x5e\x9d\x77\x9e\x24\x04\x07\xad\x7c\xd0\xca\x07\xad\xdc\xf8\x0e\x5a\xd9\x83\xf2\x41\x2b\x6f\x57\x73\x2f\x01\xf0\xc3\x15\x82\xc3\x15\x82\xc3\x15\x02\x4b\xe5\xc3\x15\x82\xc3\x15\x82\xf2\x7b\xb4\x2b\x04\x5b\x6f\x7a\xc9\x9c\x09\xa3\x75\x66\x95\x43\x6e\x81\x59\x23\xb6\x4a\x7f\xc0\xa1\x68\x73\xad\x2e\x2b\x6b\xb2\x54\xa0\x23\xd9\x5a\xfc\x0b\x17\x60\x82\x18\x8c\x44\x42\x04\x2e\x3b\x5f\xf4\xfe\xee\x1e\xe3\x16\x29\x43\xf4\xab\x23\x5d\x3b\x7b\xfa\x35\x14\x31\xf5\xe5\xce\x98\xdc\xc3\x53\xc2\xb3\x3e\x10\x69\x9e\xaf\x10\x67\x06\xe9\xe5\x99\xe5\xd8\xba\xdb\xe2\x15\x29\xa2\xb0\x03\x4b\x41\xb3\x52\x96\x73\x3c\x9c\xbd\xd8\x68\xe5\xcc\xcb\xc8\x9b\xd4\x7f\xb3\x33\xd5\xc6\x8f\xd8\x80\x90\x54\x3a\x46\x3e\x15\x18\x73\x07\x19\x25\x57\xad\x14\x22\xd5\x9b\xc3\x3a\x31\x88\xfe\x25\xa6\x44\xda\x62\xc5\x09\xf8\xe7\x1f\xfc\x17\x0e\x1f\x25\x1f\x75\xce\x0f\xf1\xeb\x83\xe6\x4a\x49\x48\x61\x4b\x97\x22\x7f\x76\x66\x4c\x31\x8a\x6d\x49\x53\xce\x49\xe1\xcd\x9b\xd2\x2c\x6f\xa7\x4e\x69\xa3\xa5\xe8\x5f\x66\x4f\x69\xd4\xd8\x38\x81\x0a\x5f\xbc\x0a\xe6\x56\x49\x54\x12\x52\xe8\x0c\x2e\xc0\x1c\x25\x38\x64\x45\x31\xbf\x43\x56\x94\xda\x77\xc8\xad\xe0\xfa\x0e\xb9\x15\x36\x1a\xc5\x21\x2b\xca\x53\x5d\xb9\x4f\x3d\x4a\xba\x77\xc9\x72\x88\x86\x5a\xbf\x83\xc0\xdd\x0c\xf1\xef\x5a\xe0\x3e\xe1\x64\x36\x1d\xf2\x92\xd1\xb7\x9f\x12\xd7\x19\xcc\x50\xd9\xde\x75\x1e\xb8\x7b\x2d\x6c\x32\x4d\x1e\x36\x0a\x78\xce\xc8\x7f\x0a\xd8\x3f\xcd\x1e\xf0\x91\xa2\xe4\x26\xbc\x71\x70\x55\x37\x71\x55\x3f\xd1\xa2\xe6\xa3\x7e\xa2\x85\xdd\x3b\xfd\x24\xd3\x5e\xb7\xfd\xd2\xff\xa3\x85\xdd\x21\x2d\x0b\xda\x9e\xa8\xd1\x6b\xd3\x05\xd5\x45\x6e\xdf\x53\xe8\xfc\x7c\x85\x3e\x90\x3b\x42\xef\xc9\x5b\xb1\xa9\x5f\xbe\x35\x7b\x78\x05\xc1\x59\x75\x8f\x2f\x69\x7b\xcc\xe0\xcd\x5f\x17\xf0\x8b\x87\x0e\x71\xd9\xad\xe1\xba\xd5\x90\x89\x72\xb3\x86\xfb\x2a\xc0\x4e\x68\x4b\xf6\x27\xb3\x31\xb7\x82\xbc\x88\x7b\xb7\x1c\xca\xd7\xfd\x9e\x7b\x3b\x99\x2c\xf3\xc2\xb5\x0d\xb2\x53\x2f\x4e\x35\x7c\x20\x0e\x00\x49\x11\x67\x0b\x98\xdb\x4e\xc0\x77\xc0\x2d\x77\x3a\x2c\x98\xfb\x46\x55\x3d\x0d\xf9\xea\xe1\xd3\x41\x4f\x53\x7a\xdf\x4c\x07\xcd\x7f\x73\xe6\x83\x96\x85\x8e\x84\xd0\xbc\xd0\x99\x10\xba\x2a\xb4\x26\x84\x36\x31\x69\xea\x13\xb3\xd8\xf1\x6c\xce\x96\x0a\x05\xa6\xd9\x1c\x6e\xa2\x55\x0c\xc5\xf0\x9f\x4d\x7d\xa1\x1f\xb9\x2d\xaa\x47\x6e\x57\xdc\x55\x85\xe2\x64\x7f\x2c\xa6\x46\x2d\xa7\x6a\x2b\xe1\x07\xd2\x39\x7c\x0e\x87\x70\x91\xa5\x98\xcc\x24\x27\xec\x5b\xe8\x78\x9f\x5c\xeb\xb2\xa4\x79\x63\xcf\xe6\xfc\xce\xc2\x2a\xec\xd5\xd7\x52\x6c\xbc\x7c\xfe\xb3\xb5\x0a\xa7\xe2\xc8\xbe\xb1\x14\x32\x4a\x00\x10\x59\xba\xef\x37\x45\xc0\x58\xe4\xf6\x0a\x38\x9b\xe2\xcf\x1d\xc8\x7b\x80\xc0\x98\xe1\x15\x7a\xcb\x47\x81\x17\xe8\x7a\xf9\x18\xf4\x7e\xf5\xfa\xb9\xa3\x4a\x89\xf1\x6b\x6b\x05\x9c\xa4\x8f\x8c\x6a\x37\xa6\x2f\xac\x6c\x51\xa8\x85\x75\xf3\x80\xea\xd6\x40\xf3\xc5\xf3\x4e\x3c\x2d\xe5\x5e\x37\xd1\xf5\xb0\x5f\x5d\x22\x3c\xa8\x46\x44\x79\x91\x41\x52\x53\x88\xf2\x27\xbb\x3e\xd4\x65\x36\x75\x78\x21\xca\xec\xda\xd0\x2c\x6b\x2b\xc3\x3a\x12\x4d\x5d\x68\x94\x3e\x1d\x55\xf8\x63\xe9\xb1\xad\x9f\x84\xdb\xdc\xad\x7a\xd8\x47\xe4\xbe\x9f\xe7\xe0\xe4\xea\xdd\xb7\xb9\x00\x93\x05\x26\x43\xe6\x96\x98\xf5\x8b\xd6\xbc\x36\x16\x31\x6f\xbc\x42\xf2\xb1\x17\x47\xb0\xbb\x94\x81\xe2\x35\xf8\x07\x52\xd4\x1e\xd8\xb2\x98\x5a\xdf\x38\x4d\x70\x8e\x7c\xd7\xcb\x6b\x63\x3e\xd7\x95\xcb\x23\x2a\x30\xbe\x43\xf2\xbc\xd4\x82\x12\xec\xbe\xe8\x50\x92\x60\x42\xd9\xfc\x81\x28\x80\x1d\x37\xb8\x45\x88\x7e\xe9\xa1\x8d\x0d\x27\x23\x0d\xea\x83\x98\xa5\x83\x20\x7a\x57\x48\x80\xfe\x40\x13\xfd\xe2\x66\x38\x38\xbd\x52\xb4\x77\xd0\xbb\x8b\x98\xdc\x1c\xeb\x9f\x87\xe0\xf0\x81\xe0\x4f\x4b\x24\xdf\xba\xe9\x9f\x6f\x82\x43\x65\xa2\xec\x6e\x80\x38\x40\x18\x06\xc8\xcb\x57\xdb\x18\x18\x96\x53\x87\x8f\x69\x60\x88\x4c\x08\x49\x4e\xb3\x94\xaa\x37\xd5\xd4\x1f\x8e\xf3\x44\xba\xd0\x6a\x62\x08\x60\xe7\x39\xcd\x2e\x69\xeb\x79\xb5\x5a\xa1\xc5\xc8\xa8\x21\xd2\x32\x32\xcc\x52\xbb\x95\xe1\xb3\x22\xb6\x7d\x70\xed\x47\xf6\xa8\x1b\x62\xc0\xf3\x36\xbc\x65\xda\xfd\x03\xf4\x0c\x12\xc8\x97\xdf\x04\x40\xb9\x78\x15\xdc\xae\xa0\xf0\xb9\x6c\xa4\x51\x94\xd9\x37\x14\xc3\x68\xf6\x01\x93\x35\x80\x71\x1c\x89\x63\xca\x9c\x90\x16\xb1\x51\x8a\x8c\xd2\x3c\xad\x7f\xde\x7c\x1d\x84\x26\xbe\xe3\x53\x1b\x18\x63\x7c\xd4\x20\xad\x12\x94\xe8\x11\x50\x22\x3a\x31\xb3\x76\xe8\x0d\x47\x69\x7b\xfd\x95\x4c\xb6\x07\x95\x7c\x59\xbe\x24\xfb\x12\x7c\x03\x0e\xcb\x21\xf7\xcc\xb2\xb6\xd8\xab\x61\xd1\x94\x7a\x66\xe1\x41\xe8\x3d\x2d\xa1\xd7\x9e\x72\xff\xf8\x3a\xd6\xca\x03\x49\x8e\x29\x4e\x19\x52\x27\x92\x74\xd6\x25\x46\x7f\x20\x11\xd2\x20\x94\x9c\xaf\xb7\x92\x2a\xfb\xb6\xaa\x8b\x3c\x76\x1a\xd5\x21\xb1\xde\xad\x1b\x17\x79\xfc\xfe\xf4\x6c\x87\x9e\xb7\x6f\x5d\xe4\xf1\x2e\x21\xea\x5d\x43\xdc\x38\x1b\xe4\xd4\xf9\xba\x45\xa3\xf9\x83\xaa\x13\x18\xc7\xa5\x59\x81\x49\xb6\x64\x52\xa7\xc4\x2c\x77\x9c\xcc\x97\x25\x36\x6d\x72\x1a\xc7\x03\x0d\xaa\xcf\x41\x35\x55\x4a\xab\x42\x5b\xaf\xb4\xd1\x69\x2a\x97\x56\x8d\xdb\x0d\xcf\xe5\x6f\xae\x64\xf6\x7a\x02\xa2\x7e\x2a\xb6\x39\x98\xda\xed\x44\xf9\x8b\x7c\xaa\x79\x99\x4b\x67\x96\x6b\xb1\xd3\xb3\x3e\x38\xbb\xea\x7f\x53\x25\xb4\xfb\x75\x80\x46\xf2\xbd\x06\x6b\x0c\x33\x14\xd7\x88\x51\x6a\x32\x5e\xc0\xa9\xd0\xa6\xdd\x86\xba\x0b\xc6\xf1\xb8\x84\x30\x16\x20\xf6\x2d\x5a\xf5\xf9\xc6\xf1\x02\x12\x38\x43\xc9\x58\x4e\xe6\xc3\xa9\x1c\x9d\x56\x70\xbc\xcc\x12\xc8\xbc\x47\xe6\xbc\x1e\x01\x10\xf4\xc1\x8f\x80\x6f\xb1\x26\xf1\x38\xa5\x33\xec\x4e\xd3\x18\x7a\x06\x34\xf0\xe0\x76\x8c\x72\x36\xc5\xa9\x2b\x56\x59\xef\xb3\xfb\xd8\xec\x1d\x5a\xef\x09\x5a\x9c\x62\x44\xd8\xb8\x28\x7c\x97\x3f\x3b\xa7\x8d\x20\xf6\x08\xd3\xc6\xb5\x53\x3e\x85\x31\x1a\x2f\xd8\xb2\x13\xdd\x8e\xab\xc2\x5c\x0c\x63\x0e\x4a\x46\x42\xc7\x02\xf8\x0a\x76\x93\xa1\x03\x6e\x36\xc9\xc7\x2c\x87\xf1\x1d\x26\xb3\x31\xa1\x64\x5c\x10\xe8\xbb\x01\xdd\x49\x5b\x20\x4f\x7c\x8d\xe5\x4b\xeb\xe3\x78\xbe\x24\x77\xe3\x02\xff\xe9\x9b\xfd\x20\x4c\x55\xec\x60\x7c\x0f\x31\x1b\x4f\x69\x3e\x56\x37\xbf\x76\x45\x36\x51\x7a\x63\x73\xc0\x1e\x84\x73\x34\xc3\x05\xcb\x5d\x97\x1f\xf6\xc3\x5f\x0b\x38\x43\xe3\x2c\x47\x53\xfc\xb9\x13\x57\xff\xb2\x52\xa0\x96\x69\x3a\x2e\x50\x9c\xa3\x6e\x0e\xf0\xc3\x53\x72\x91\x41\x4c\x50\x5e\x8c\x4b\x19\xbf\xb2\xea\xda\x1d\xa1\xf3\x7f\xe6\x34\x4d\xd1\x03\xc1\x9f\xd3\x82\xed\x0d\xb2\xa9\x4f\x1f\x82\x2c\x04\xef\x1b\x6c\x4c\x70\x82\xb2\x94\xae\xf7\x04\x8f\x66\xd3\x14\x7d\x1e\x8b\x1c\xbc\x7b\x03\x89\xc8\xaa\xb8\xc7\x2c\x9e\xef\x09\xe2\x6c\x92\xed\x01\x52\xea\xcd\x5c\xbc\x17\x21\x60\x30\x7f\x4a\x67\x63\x71\x13\x7e\xc7\xb1\x73\x7e\x97\xb3\xb3\x2f\x88\x72\xca\xf7\x07\x13\x17\x0c\xd3\x47\xd1\xe0\x05\x83\x69\x3a\x16\xfd\xed\xaa\x67\x34\xb0\x2c\xa7\x1d\xc6\x50\xd7\xf0\x17\xcb\x54\x5f\x23\x70\x35\xde\x71\xe0\x4a\xd7\xee\x32\xe4\x24\xa7\x99\x98\xec\xc7\xb2\xe7\x77\x32\x08\x69\x82\x32\x9a\xe0\xe9\x77\x81\x6d\x91\x63\xba\xfa\x2e\x30\xbd\x5b\x4e\xd0\x23\x20\x4a\x57\xc5\x78\x81\x16\x34\x5f\x8f\x53\xbc\xc0\xbb\x5a\x2f\xcb\x82\x9b\x55\x78\x85\x53\xa4\x1c\x52\x65\x0a\xec\x2c\x02\x2a\x33\x2b\x73\x1d\x4a\xdd\x04\xd1\x1c\x4d\x28\x65\x63\xa5\x51\xef\x31\x9b\x8f\xe9\xaa\x1b\x4b\x3f\x50\xee\x00\x8c\x03\x6e\xda\xee\xd5\xe1\xcc\x68\xce\xc6\x22\x63\x54\x90\x93\x18\x92\xd2\x6c\x83\x4c\x8f\xe2\x78\x4b\x67\xad\x40\x3f\x45\x7f\xa8\x15\x28\xda\x19\xa4\xc8\x51\x36\xce\x50\x3e\xe6\x02\x6b\x9f\xd0\x85\x19\x01\x63\x36\x96\x61\xc2\xfd\xb8\xfd\xda\x63\xcb\x50\x8e\x69\x82\x63\xe1\x5b\x8e\x67\x29\x9d\xc0\x74\x8c\xc9\x94\x8e\x8b\x35\x69\xc6\xbc\xec\x9d\x59\x17\x96\x33\x92\x56\x5d\xb3\x33\x90\xf1\xc7\xd2\x44\x93\x5a\x34\xad\x58\xc6\x31\x2a\x8a\xe9\x32\x05\x31\x5d\x64\x29\xd2\x67\x93\x1c\x41\x5c\xfd\xf9\x4e\xf3\xd9\x10\xdb\x6a\x90\x1b\xdf\x4f\x6c\x45\xc8\x8d\x60\xb8\x90\xcf\xef\x61\xe6\x88\x7e\xe3\xa8\x92\x80\x91\x14\xe6\xba\x58\x9e\xb1\x6b\xd6\x29\xd6\x05\x43\x0b\x5e\xa7\xb6\x7d\x64\x85\x14\x69\x2b\x1b\xdc\x1e\x7d\xf9\xd2\x1b\xd1\x3b\x44\xbe\x7e\xd5\x37\x20\x95\x27\x1e\x65\xe9\x72\x86\x49\xb3\xa3\x5b\x52\xe2\x5a\x99\xc1\x0a\xee\x09\xf8\x77\x24\x61\x7c\xa9\x48\x72\x7b\x94\xd2\x99\xcc\x16\x75\x7b\xa4\x7a\x3c\x2b\x5b\x5e\xd2\xd9\x25\x2f\xe2\xdd\x3f\x33\x1b\xc1\x0c\xc7\x11\xb7\x8a\x0b\xde\xea\xcb\x97\xde\x69\x86\xe3\x5f\xf9\xdf\x5f\xbf\xb6\x2b\xe6\x68\x9a\xa3\x62\xce\xf0\x02\x95\x9d\xf0\x06\x37\xf2\xf7\x11\x5e\x20\x7b\x0f\xc5\x72\x52\xb2\x68\x94\xa0\x14\xae\x8d\xee\x86\x46\xe1\x39\x2f\xb3\x74\x3d\x2e\xbb\x8e\xef\x50\x3e\x86\xc9\xbf\x96\x05\xb3\xe3\xc0\x2b\x9c\x8a\x72\x3b\x2e\xcb\x02\xe5\x7c\x82\x6b\xad\x3f\x14\x28\xbf\x82\x2e\xf4\xb9\xc6\x84\x0c\x45\x77\x68\x1d\x65\x90\xcd\x65\xd3\xe3\x65\x91\x1f\xa7\x34\x86\xe9\x31\x62\xf1\xb1\x98\x40\x94\xb3\x63\xde\x41\xef\x0e\xad\x9b\x90\x62\x1c\xc9\x88\x46\xd9\xf3\x50\x70\x53\x3f\x41\x84\xe1\x29\x46\x79\xbb\xf7\x18\x47\xab\xc5\x22\xe2\x0c\x2f\x5b\xfd\x56\xa6\x96\x13\x55\xbf\x7c\x89\x00\x9e\x02\x82\x40\xef\xe3\x62\x71\x4e\x17\x10\x13\x71\xa9\xf6\xeb\x57\x1b\x9c\x44\x54\x28\xfb\x2f\x9b\xa8\x8e\x39\x34\x94\x16\x28\xa8\xb1\x03\x79\x01\x83\x24\x1c\x44\x1d\xb9\x8a\x1b\x3d\x08\x56\xcc\x6e\x22\x59\x35\x0d\x42\xd4\x02\xa4\x1b\xd9\xc6\x44\x09\x1b\x26\x62\x88\x40\x52\xf1\xd9\x48\xfc\x69\xb4\x55\xa3\x3b\xe3\x2c\x04\x6e\x8f\xe4\xe9\x9b\xc6\xd0\xd2\x89\x31\x7d\x57\x94\x20\x0f\x99\xae\xe8\xef\x10\xb3\xb7\x34\x1f\xca\x98\xe8\x45\x76\x83\x60\xc2\xe5\x76\xe1\x02\x4f\x68\x74\x0f\x31\x8b\xa6\x34\x8f\x54\x24\x35\x42\x59\x94\xeb\x76\x6a\xa1\x79\x20\x8b\xe5\x66\xc7\xe7\x34\x49\xf4\x23\xc9\x43\x11\xf4\x2c\x46\xf4\x26\x91\x62\xc8\x85\x10\x4c\x92\x08\xa9\x46\x91\x0c\x95\x16\x11\xa3\x51\xae\xda\xe9\x95\xef\x01\xed\xc1\x48\x9d\x98\x1a\x28\xbd\x3b\x24\x90\xbd\x13\x5a\xb7\x4f\xa6\x74\xb8\x26\xce\x69\x50\x1a\x3b\xd2\x1a\x3b\xe2\x1a\x3b\x92\x1a\x3b\xe2\x1a\x3b\xe2\x1a\x5b\x21\xd7\xd9\x4b\x13\xc3\xaa\x1f\x69\xb1\x46\x09\x12\x33\x91\xa0\x14\x31\x14\x71\x89\x49\x97\x4c\x41\xbf\x16\x55\xce\x45\x8d\x73\x51\x61\x24\xcb\x1b\x82\x4f\xb9\xd5\x91\xf0\xd1\x55\xdb\xbe\xfc\xad\xcf\x7f\x6a\x56\xe7\xbf\x45\xca\x07\x2f\x79\x56\xd4\x1c\xc8\x1f\xdd\x9c\x2b\xf6\x3b\x2d\x6b\x32\xa3\xc9\x24\x89\x12\xb5\xea\x97\x04\x1f\x33\x12\x19\x2b\xe1\xf8\xcd\x79\xd4\x50\x7e\xd6\xd5\xc6\x01\x45\x93\xc4\x22\xde\xb8\xb9\xb7\x9f\x2e\x38\x24\xdd\x87\x73\x61\xeb\x25\x92\xcd\xd7\x05\x97\x68\x1e\x09\x11\x65\xa2\xbc\x85\x71\xb9\xca\x48\x0c\x33\xd9\x7e\x95\x42\x81\xb3\x5a\x5c\x1f\x53\x48\xac\xb2\x5c\x37\x55\x5b\x1d\x91\xde\xea\x50\x93\xab\x9a\xbf\x97\xa5\x7d\x55\xd8\x54\x87\x7c\x5a\x26\x79\xa4\xb7\x36\x22\x42\x89\x60\x66\x05\x64\xf0\xe6\x66\xa4\x8a\xae\x28\xe1\xac\x6b\x01\xb0\xca\xa7\x4d\xe1\xf6\xf1\xe6\x6d\x4d\xbe\xd5\x1b\xa4\xaf\x14\xff\x8a\xba\x97\xaf\xae\x97\xf6\x7a\xe8\x33\x8b\x94\x69\xa3\x45\x8f\xa8\xac\xd7\xba\x4a\xcc\x57\x09\x9d\x40\x46\x5c\xe5\x53\x13\x53\x43\x57\x7b\x74\x81\xd1\xe6\x7a\x85\xf2\x14\xae\x2d\x4d\x9b\x5c\xa2\xce\x52\x46\x88\x24\x19\xc5\x84\x45\xe2\xf8\x83\x18\x4b\xdd\x7c\xbd\x3d\x52\x5a\x42\x66\xaf\x0a\x55\x12\xed\x11\x2a\x41\x5e\xda\x24\x21\xdc\xfe\xef\x46\x25\x85\x35\xb7\x2e\x6d\x04\xd9\xa6\x8b\x12\x56\x9d\x42\x75\x66\x5a\xc0\xcf\x62\xe1\x15\x51\xb1\x8a\xa3\x59\x0e\xb3\xb9\x9a\xf6\xf7\xf0\xf3\x15\x2f\x18\xae\xe2\x77\xfc\xe7\x06\x17\x96\x36\x76\xb4\x01\xc1\xed\xd6\x78\xbb\xe6\xde\xa7\x67\x1f\x53\xa4\xb1\x75\xcf\x50\x47\x2f\x0d\x00\xf5\x69\x69\x4e\x0d\x30\x74\x42\x99\x68\xe9\x3b\xa1\x94\x52\x78\x5b\x13\xaa\xde\x3e\x9c\x4e\xdf\x17\x3f\x3d\x3e\x95\xee\x96\x13\xf4\x9d\x11\xe9\x5b\x2c\xba\x18\x32\x96\x1e\x08\x15\x4c\xa8\x2c\xa7\x0b\xc4\xe6\x68\x59\x1c\x88\xd5\x49\x2c\xb5\xf1\x7a\xa0\x54\x49\x29\x1b\xc9\x6e\x8f\xb4\xa9\x8d\xb3\x28\xa3\x54\x58\xd8\xff\xac\x37\xb4\x92\x0f\x91\xa4\x72\x09\x24\x88\xfe\xe0\x42\xf4\x7a\xf4\xcc\xd6\x40\xde\x1f\x6d\x35\x19\xf2\x9f\xab\x68\x5f\x89\x63\xf5\xe7\x1f\xf5\xa9\x18\x32\xc8\x70\x5c\x77\x89\x2d\x81\x12\xe9\x59\x47\x85\xa8\x5d\x75\x6b\x69\xec\x8d\xc7\x9c\xaf\x09\x5c\x84\x77\x97\xc8\xea\x65\x7f\xd6\xe6\x3e\xa3\x5a\x38\xdb\x3a\x12\x1f\x89\x48\x7c\x85\x3c\x81\xec\x4c\x15\x0d\x79\x49\xcb\xb1\x90\xa3\x8d\xf6\x31\xa5\x02\xd2\x36\x13\x5b\x6f\x18\x36\xbd\x15\x30\xee\xfe\xee\x80\xf6\x80\x26\x9b\x20\x2b\xaa\x6f\x83\xa2\x0c\xd7\x44\xe2\x64\x5b\x54\xe0\x3f\x91\xf6\x29\x69\x22\xe7\xf8\x8c\x97\x0c\xf1\x9f\xa8\x69\xcd\x73\xdf\x7b\x0f\xf3\x73\x25\x6e\x94\x6c\x3c\x3b\xb5\x66\x9b\x0e\xbc\x86\xbb\x0a\x58\x59\x70\x37\xd7\xb7\x70\x68\x2a\xae\x77\x41\x56\xa7\x71\xb5\x63\x23\x9e\xef\x55\x14\x95\xd7\x0f\x2f\x54\xc9\x90\x97\xe8\x15\x23\xfe\x37\xa7\x05\x8b\xc4\xb1\x12\x7f\xd4\x1f\x66\x59\x3d\xe4\x13\xe6\xd9\xd5\x65\xcf\x45\x76\xa3\x0e\xf5\xd9\x44\x40\x16\xe9\x23\x7f\x25\xbd\xab\x06\x5e\x27\xbc\xd1\x94\x2c\xd3\xd4\x29\x91\x64\x50\xec\x3d\x4d\x90\x05\x07\x15\x54\x5b\xd0\xa4\x12\x1b\x55\x03\x2f\x0e\x8d\xa6\x6d\x1c\xaa\xaa\xed\x1d\x94\x5f\x69\xc1\x4e\xf9\x24\xb8\x37\x50\x62\x2c\x23\x89\x55\x1a\x6b\x53\xae\x95\x77\x12\x0e\xa1\xfd\x27\x13\xda\x0f\xda\x83\x79\x92\xa1\xa9\x8d\x23\x77\x5a\xaa\xad\x52\x48\xea\x31\x46\x19\xa2\xac\x55\xe6\xde\x1d\xcc\xb0\x59\x99\xb3\xe4\xe9\xa0\x6f\xa9\x5c\x69\x8b\x6a\xbb\x51\xde\xf0\x3c\xeb\x9f\xdf\xb4\x10\x91\x32\xb6\x5e\x5f\x08\x6d\xd3\x72\x30\x05\x67\x0c\x33\x63\x69\x08\x81\x19\xc3\x6c\xb4\xb6\x58\x07\x9c\x2a\x98\x4c\x73\x68\x62\xde\xe7\x3f\x94\x78\xab\xd9\xec\xbd\x1f\x7d\x68\x70\xef\xfb\xd1\x07\xf0\xbc\x4e\xe5\xf2\x70\x7b\xb4\x60\x4b\x1d\xcc\xe2\x0d\xdb\x4b\xa0\xbe\x1a\x78\xad\x5f\x11\x4c\x6e\x28\x5d\xb4\xbb\xd1\x25\xe0\xf6\xe8\x79\x93\x8d\x6a\x5d\x46\x73\x04\x93\x9c\xca\xd8\xb4\xec\xbb\x82\xea\xc4\xa1\x02\x16\x13\x1c\x11\xc4\xaa\xdd\x96\x10\x25\x3c\x83\x0c\xdd\xc3\xb5\x69\x42\xbc\x93\x3f\x39\x55\x70\x4e\x97\x42\x56\xb5\x3a\xf0\x74\x54\xb5\x4e\xf4\xfe\xed\xf3\x9e\xf8\xef\xf8\xb9\xb5\x1b\x03\xc3\x7b\x07\x72\xf6\x46\x16\x2f\xe3\x0f\xbb\x25\xe1\xe5\xe2\x40\x1b\xe2\x47\x0c\x1a\x37\x5b\xfb\xc2\xc4\x87\x68\xef\x21\xda\xfb\x74\xe2\x98\x87\x68\xef\x21\xda\x7b\x88\xf6\x1e\xa2\xbd\x4f\x9f\x58\x87\x68\x6f\x58\xb4\x57\x46\x5a\xa2\x24\xa7\x19\xa7\x99\xb2\x9c\x55\xa6\x13\x19\x6b\xf9\x6a\x6b\x11\x1e\x9b\xb1\x75\x57\xde\xad\xb8\xd5\x87\xac\x12\x34\xa0\x49\x7f\xea\xe9\x31\xa2\xab\x22\x9a\xdf\x47\x74\x3a\x4d\x29\x4c\xb4\x57\x96\x63\xba\xd2\xad\x8c\x30\x90\x8a\x5e\x04\x04\x82\xf4\xa8\x9b\x8c\x54\x0f\x68\xc8\xa0\x49\x2b\xa4\xe1\x32\xdb\x64\xf7\x2d\xb8\xdc\x9f\x63\x7c\xd4\xe0\x04\x7c\x29\x47\x96\x88\xbf\xcb\xe3\x57\xa0\xf2\x80\xd0\x27\x1d\xdf\x39\x13\x97\x9c\x87\xc3\x4b\xfb\x31\x2d\x61\x8f\x17\xf2\x38\x0c\xb8\x3d\xaa\xe2\x3d\xea\xf4\x56\x72\x7b\x64\xf5\xbc\x78\x07\x37\x4b\xf2\x6e\x92\x9d\x69\x5e\x72\xf0\xb9\x0a\x26\x17\x0c\xc7\x45\x89\xbf\xec\x47\x20\x4f\xa7\xd3\x0a\xf5\xa6\x49\x5b\x4e\x4c\x70\xb7\xb3\x49\x26\x42\x8b\xed\xc3\xbb\x5f\x5a\x71\x89\xee\x23\x87\xf5\x06\x41\x31\x84\xef\x21\x82\xe4\x0b\xb0\x58\xe2\x0c\xef\x26\x59\x19\x8f\x36\x4e\xa9\xb4\x50\x0b\x68\xda\x3a\xea\x6b\xf7\x43\xc2\x0e\x49\x1b\x95\xcd\x33\xc6\xad\x13\xc6\xf6\x26\x7b\x38\x63\x2c\xa1\xdd\xc1\xe9\x1d\x74\x2a\x8c\x49\x4e\xef\x50\xae\x07\xf2\x1b\xaf\xfb\x46\xfe\xd4\x42\x4c\x36\x90\x69\x09\x9a\x68\x71\x24\x8a\x63\xd1\x55\x24\x6b\x58\xb1\xa9\x81\xe0\x6d\x3a\x60\xc4\x39\x73\xc1\x80\x8e\xf6\x31\xf4\xb4\x62\x54\xcf\xa9\x95\x25\xbb\x74\x70\x4a\x97\x89\x38\x1b\xea\x24\x67\x2c\xa3\x05\x91\x31\xd9\xed\x7e\x3a\xc2\x0e\xbc\x8d\xf8\x43\x2e\x37\x2b\x93\xc8\x36\x6a\xc5\xcb\x90\x9f\x59\xdb\x19\xa5\x68\x09\xb2\xfa\x0f\x5b\x5f\x9d\x10\x21\x6f\xed\x68\x3e\xd5\x9b\x13\x96\x5d\x3c\x02\x45\xe6\xa6\x1b\x48\x66\xa8\xb1\x4f\xd4\xd8\x28\x34\x6b\xaa\x8d\x28\x5d\x4f\xdc\x55\x8a\x32\x3e\xed\xe6\x86\x84\x6e\x52\x0c\x50\x7e\xa5\xb6\x25\xbc\x24\x1e\x8a\x7c\x04\xce\xab\x29\x7c\x8d\x0b\xa6\x7f\x0c\xc2\x96\xfd\x6b\xc9\x52\x13\x5c\xbf\xa1\xb5\xe4\x1f\x51\x1a\xe7\xac\x56\x7a\x26\xc8\x28\x47\x6a\x68\xc6\xb6\x58\xdf\x98\x0c\xa6\x70\x10\xa4\xc0\x53\x1c\x43\x86\x8a\x47\x25\x89\x14\x31\x95\xc0\x94\x46\x8c\x1a\x35\x00\x4d\x09\x16\x56\x51\x93\xd8\xa8\xa8\xa8\x5c\xd2\x51\x2d\x52\x17\xd5\x44\x1c\xff\x34\x8e\xe9\x92\xb8\x99\xa8\x3e\x5e\xbd\x77\xf2\x08\xd4\xf3\xf2\xfd\xa6\xa8\x57\xbb\xa1\x8f\x86\xba\xc1\xc8\x1f\x0a\xa4\xa2\xc2\x37\x34\x45\x4e\x8e\xce\x27\x30\xee\xc1\x25\x9b\xd3\x1c\xff\x29\xf2\xae\x58\xb2\xb3\x55\x70\x1a\xe3\x7e\x68\xa9\x68\xa7\xec\x89\xc9\x14\xe2\x55\xc8\x93\x5b\x12\x01\x98\xe1\x77\x39\x5d\x66\x3a\x7b\x9a\x7e\xa6\xaf\x9e\x09\x2d\x92\x29\x19\x6f\xcb\x04\x6b\x62\x52\xd4\xdf\x19\x4d\xd4\xbf\x4a\x17\x4b\xfe\xa9\xf6\xa4\x74\xe1\x0a\x95\x25\x39\xca\x52\xbe\xbc\x31\x25\x15\x5a\xf5\x56\x50\xf2\x8c\xf8\x71\x85\xf2\x89\x46\x24\x55\xb9\xe4\x22\x70\x0f\x59\x3c\x97\xff\x9c\x21\xf5\x5b\x56\xfd\x16\xe7\x08\x32\x24\xff\x2d\xb3\x64\xc9\x7f\xcb\x8b\x1a\x9b\x8c\x5d\x4e\xca\x02\x66\x1b\x22\xb3\x0d\x06\xb6\x9c\x7f\x0e\xac\x44\xfa\x3f\xfd\x6b\x52\xa6\xff\x6b\x21\xf9\xd3\xff\xfe\x64\xef\xcb\xc9\xc6\x8e\x0e\x25\x47\xe7\x34\xd5\x53\x6a\xfc\x32\xc1\x24\xc1\x64\x66\xef\xdc\xf0\x00\xcc\x5b\x2d\x75\xcf\xd0\x86\xa1\xba\x17\xd3\x13\x21\x4d\x27\x62\xa2\x54\xf1\x51\x96\x42\xa2\xd1\x13\xbf\x97\xcf\x1e\x07\x93\x05\xc6\xb8\x57\xc6\x50\xdb\xbd\xc1\x18\xb7\x01\xb7\x7f\x76\x12\x42\x1b\x64\x96\x9e\xd5\xca\xc6\x64\xe6\x9d\x08\x55\xcd\x7c\xf1\x24\x8c\x29\x8d\x79\xf8\x50\xa0\xd3\x18\x9f\x92\xf5\xfd\x1c\xe5\xe8\xec\xe6\xbc\x7b\x32\x38\x5d\xe0\xbd\x1d\x25\x94\xcd\x8a\x72\xb1\x88\xf3\x5d\x1b\xa0\xb5\x69\x67\x22\x10\xa3\xba\x9b\x4d\xb2\x42\x24\xbd\x6d\xfd\x7d\x2c\x2f\x2a\x6f\x33\x0f\x30\xcb\x0a\x7b\xd7\x32\x89\xd0\xa2\x25\xc9\x0a\xa4\x7f\x48\x20\x5a\x50\x52\xfd\x2d\x90\x99\x2e\x53\xfd\x4b\x10\x0b\x76\xca\x60\x2d\x5a\x1d\x83\xd4\xd2\xc6\x06\x5b\xdd\x48\xe2\x4c\x16\xd3\x1c\xd1\xa2\x17\xd3\x85\xbd\x43\xd5\x8b\x6a\xd1\xea\xa5\x25\xe8\x5c\x13\x29\xef\x2c\x59\x7b\x20\x90\x69\x3e\x3e\x9e\x62\x02\x53\xfc\x67\xa5\x09\xcc\xc2\x6a\xa0\x92\x10\xdc\x59\x73\x8e\xbb\x29\x7d\xfd\x72\xda\x2b\x8f\x3b\xd1\x97\x17\x0b\x4b\x74\xea\x68\x5b\xf0\x8d\x80\xbe\x1f\xf9\x18\xea\x44\xbd\x62\x6b\xc5\xbe\xf1\x22\xed\xfe\x30\x31\x34\xb1\x0b\x29\xfd\xe0\x99\x4b\xc0\x35\x9f\x37\x0c\x47\xce\xc7\xfb\xc6\x23\x54\x76\x31\xd6\x7a\x4a\x6a\x7f\xfd\xba\xa4\x59\x19\x5a\x0e\x15\x0f\x5c\x3a\xf5\x68\x86\x48\x31\xc7\x53\xc6\xb5\x84\x57\x50\x6d\xcc\x6b\xed\x1e\x13\x5c\xc4\x74\x85\xf2\xb5\x56\x4b\x36\xd2\x99\xe1\x75\xb7\xa8\x68\x75\xeb\x61\x90\x8c\xa6\x5b\x29\x40\x77\x67\xbb\x2c\xa3\x84\x14\x3e\x9c\x64\xf1\x03\xa2\xe5\xf1\x15\xbf\x4b\x7f\xc4\xf4\xf4\xbe\x85\x3f\xe2\xf6\x41\x36\x36\xa6\x6a\xbb\x4f\xcd\xfd\x0e\xbf\x64\x70\xc8\xa1\xd2\x57\x32\x71\x31\x59\x44\x89\xd7\x4e\x43\x66\xef\xde\xc4\xb7\xb0\x2e\x4d\x83\x4f\xfe\xdb\x61\xf7\xdc\x1e\xfd\x6f\x63\x47\xf1\x5b\x98\xd9\xfb\x35\x29\x77\xb3\xa1\xc3\x4c\xaf\x5b\xb7\x35\xb3\x85\xb1\xf2\x5d\x19\x22\xfa\xfd\x12\xfb\x3a\x6c\xbd\xfa\x14\xb5\x9f\x44\x79\xa8\x09\x6a\x58\x8d\xbc\xa2\xd8\x1f\xb2\x5a\xbe\x2e\x4a\x6c\x6b\xf9\xfe\x65\x54\xfe\xfe\xcc\x31\x25\x5c\x5a\xe1\xce\x0d\xb5\xef\x1b\x19\x29\x09\x08\x86\x9e\xd4\xe3\xb8\xbb\xe8\xe9\x9c\xa6\xe8\x06\x4d\x45\x63\x4d\x0f\x0f\xe6\xbc\x9a\xc5\x6c\x08\x40\xb3\x58\xca\x87\x76\x84\x32\xb7\x07\x81\xf7\x14\xb4\x7e\xc4\x79\xa8\x07\xa5\x9f\xec\x3c\x98\x68\x6e\x3f\x0f\x9b\x46\xe0\x2d\xcf\x96\x64\x85\x41\xf2\x73\x11\x10\x19\x7a\xb6\xbf\x1a\x9d\x87\x75\xfb\xf0\x76\x6b\xf9\x96\x85\x94\xa7\x43\x96\x43\x86\x66\x3a\xdd\xa5\xcc\x4c\x77\x43\xd3\x14\x93\xd9\x87\x52\xe2\x36\xde\xba\x5d\x70\x21\x74\x59\x7f\x7f\xc8\x3b\xf0\x30\x83\x9a\xa1\x45\x96\x56\xcf\xb0\xb6\x1e\xe9\x68\xbd\x78\xd4\xd9\x67\x48\xaf\x82\xce\x84\x50\x26\x58\xd4\x04\x5f\xc4\x73\x94\x2c\x53\x94\xf7\xc4\xab\x2b\xbd\xbb\xf2\x82\x13\x5f\x7e\x71\x8e\x19\x8e\x61\x1a\x65\x34\x39\x01\x3f\x19\xcf\xf6\x56\x27\x04\x79\xbd\x22\xce\x21\x27\xaa\xde\x76\x71\xd5\xcb\x68\xce\x78\xad\x5f\x5e\xbf\x78\xa9\x6b\xd5\x1e\x1e\xe1\x03\x53\xe9\x67\xcc\x07\x5e\x64\xc1\xa0\x7f\xde\xfe\xb1\x3f\x38\xab\xff\x58\xd4\x16\xcb\x55\xd7\x42\x31\x23\xdc\x0b\x38\x43\x83\x65\x9a\xca\xdd\xce\xc6\x31\x1c\x5c\x2f\x35\x89\xa8\x9f\xae\xf9\xf2\xa5\x09\xc3\x7a\x01\x84\xd1\x14\xe5\xad\x99\x88\xca\xb7\x48\x4e\xc0\xc5\x67\x5c\xb0\x72\xe6\xb8\x41\x7f\x66\xcb\x02\xab\xfb\x2d\x73\xa4\xdf\x1a\x67\x0c\x04\xbe\x72\x0f\x38\xc6\x67\x04\x9f\x8b\x1a\x25\x9c\xfa\x81\x84\x72\x70\xf2\xa9\xee\xfa\x50\xe4\x6f\xf5\x06\x05\x8a\x97\x39\x66\x02\x1e\xfa\xcc\x4e\x9a\x9b\x71\x83\x32\x81\x6d\xd7\x69\x2f\xce\x23\xba\xae\x9e\x49\xc7\xc1\xc2\x18\x66\x70\x82\x53\x6c\x7f\x2c\x26\xb1\xbf\x85\x3a\xfc\xc7\x70\x7c\x7a\xfe\xbe\x7f\x65\x16\xae\x68\xba\x5c\xa0\xf7\x62\x9f\xaa\xd1\xca\x20\x6a\x34\x69\xbf\xbb\xbb\xe0\x6d\x06\x90\xcd\x4f\xc0\xf1\x82\xb0\xe3\xb2\x5a\x2d\x45\xdc\x20\xc7\x54\x90\x27\x85\x22\x2d\x5c\x73\xe0\x99\x59\x2e\x79\x54\x8a\xc7\x48\x9f\x56\xd1\x4b\xcf\x75\x94\x4e\x3a\x6a\x67\x04\x6f\xd1\x15\x8c\x31\x47\x5b\x97\x58\xe8\x6d\x4d\x3a\x1c\x85\x08\xa3\x06\xe3\xfd\x4a\x0b\x76\xe0\xb9\x5a\xe1\xd5\xc5\xc8\x5d\xc8\x5b\x0e\x46\x37\xa7\x67\x17\xae\xa6\x37\xa7\xbf\x9b\x45\x88\xac\x1c\x0c\xfc\xdb\x87\x37\x17\x37\x57\x17\xa3\x8b\xe1\xf8\xea\xfa\xfc\x62\x7c\x75\xfa\xbe\x05\x74\x05\xd3\x25\x7a\x9b\x53\xdb\xdb\xd3\x53\x8c\xd2\x44\x9b\x3c\xd6\x42\xb9\x0c\xb8\x00\xef\x71\xe3\x9b\x33\x97\x1d\x95\xd1\xc5\xd5\xe9\xd5\xc8\xda\x79\xeb\x0c\x65\xf0\xc9\x4d\xef\x31\x16\x1b\x16\x82\x0a\x17\x83\x77\x4e\x3c\x1a\x8c\x2d\x23\x55\x9e\x83\xd2\xdb\x02\x0e\x3a\xa7\x5d\xef\xbd\xcd\x98\xba\xf3\xeb\xc1\xdb\xcb\x8b\xff\x37\x7e\x7f\x7d\x6e\x9f\xdd\x13\x40\xe5\xc1\xd3\x27\x34\x0e\xf3\xd6\xa5\x78\x4d\x40\x25\x73\xec\x9c\xc2\xf7\x1f\x2e\x47\x1f\x86\x0e\xfc\x5a\xeb\xd8\xe0\x10\xd5\x81\x4a\xb0\xa9\x4c\x8c\xce\xee\xce\xfb\xc3\xd3\x37\x97\x17\xe3\xdf\x4f\xfb\xa3\xf1\xdb\xeb\x9b\xf1\xd5\xc5\xe8\xf7\xeb\x9b\xdf\xba\x11\xf0\x50\xf9\xfc\xc3\xcd\xe9\xa8\x7f\x7d\x15\x0a\x55\x66\xf3\x50\xcf\x04\xd5\x07\xe0\x4c\x00\xf7\x20\x1a\xce\x05\x83\x9b\xec\x21\x40\xda\xf5\x34\x14\xae\x42\x56\xb0\x95\x22\xdc\x04\x52\x1d\xb2\x6d\x55\x34\xa1\xe4\x4b\xef\x78\x5a\xc5\x1b\xb4\xad\x30\x70\x42\x51\x57\x01\x38\x30\xed\xc7\x88\x69\x08\x03\x8b\x58\x7c\x5c\xbb\x4c\x40\x57\xc5\xf1\x04\x16\x48\x50\xae\x97\xb8\x31\x8f\xb6\xec\xad\xbe\x54\x8f\x9b\x0a\xf5\x57\x69\x8d\x93\xe2\xa3\x80\xeb\x59\x2e\x0d\x1a\x1f\x13\xde\xaa\x89\x87\x81\x6f\xbe\x24\x91\xb5\x4e\x8e\x60\x72\x4d\xd2\x75\xdd\xa6\xaf\x8f\x24\xa7\x19\x9c\x41\x99\x4a\x9d\xa3\x38\xa2\xa5\x82\xd8\x8f\x94\x91\x2f\x9c\x44\xa1\xbc\xdd\xaa\x6e\x5d\x90\x29\x5e\x21\x82\x8a\x62\x90\xd3\x49\x33\xc5\xfd\x14\xe2\x74\x99\xa3\xd1\x3c\x47\xc5\x9c\xa6\xc9\x09\x78\xf1\xbc\x5e\x63\xce\x58\xf6\xce\xf2\x30\x56\x26\xd1\xa8\x82\xea\xb5\x42\xe1\x6e\xfd\xfd\xf9\x2f\xcf\x9b\x25\xe2\x31\x4c\x74\x02\x7e\x1d\x8d\x06\xf5\x32\xb1\x7b\x00\x53\x91\xe4\x7b\x88\x62\x4a\x92\xe2\x04\xbc\x78\xd9\x80\x20\x33\xf4\x96\xe5\xaf\x1b\xc5\x2a\x79\xbd\x39\x9e\x7a\x05\x95\x6c\xb7\x04\xf0\xea\x79\xdb\xcc\x34\x97\x42\x98\xc5\x73\x73\xf1\xe6\xfa\x7a\x34\xfe\xbd\x3f\xfa\x75\x7c\xfd\xd1\xa5\x26\x2a\x27\x75\xe3\x9b\x29\x55\x57\xc3\xe1\xa5\x4f\xe5\x96\x77\x61\xec\xbc\x50\x33\x91\xd5\xad\x9b\x1f\xce\x48\xb6\xda\xc1\x01\x6a\xeb\xa0\x2c\xb6\x57\x16\xaa\xc5\xbe\xfa\xd3\x5d\xd5\x17\x92\x64\xe8\xa1\xb8\x52\xe5\x67\xb2\x06\x5a\xf2\x16\x56\xc7\x42\x69\xc0\xad\xb3\x62\x4c\x17\x0b\x48\x92\x13\xf0\xcf\xdb\xa3\xe3\x09\x26\xc7\xc5\xfc\xf6\xe8\x0f\xb3\x06\xcc\x67\x85\x2c\xae\xc6\xc6\x2b\xa6\x70\x49\xe2\x79\x24\x31\x91\x88\xf4\x5a\x8d\xf7\xb0\x1a\x4d\x4a\xef\x6f\xd9\x88\xeb\x0e\xad\xf5\x52\xaa\x76\xf1\x12\x76\x95\xd6\x5c\x92\x90\xff\xe8\xd4\x80\x88\xe5\x38\x6e\x29\x94\x06\xc0\x5f\x5e\xbf\x7a\x69\x56\x61\x28\x5f\x60\x22\x34\xf3\x7b\x54\x14\x9c\x2e\x92\x8d\x12\xb4\x3a\x36\x0a\xc5\xf5\x4f\x7f\x3b\x45\xdf\xb7\x38\x45\x1b\x8a\x87\x1a\x2f\xed\xc8\xe9\x6d\x86\xdc\x45\x0c\x59\x84\x67\x49\xef\x18\x16\x2c\x92\x27\x10\x9d\xfc\xff\x9e\x57\x7a\x28\xc6\x17\x18\x48\x04\xb6\xe6\xfb\x6d\x35\x8d\x7f\x95\x04\x6a\xa1\xbf\xb4\xe6\xc8\x91\xb8\x24\xa5\xc9\x7f\x9a\xde\xc3\x75\xb9\x3a\xe5\xc8\x1d\x81\xe1\xa6\xeb\x26\x02\xe9\xbc\xa7\x06\x91\x65\xe7\x34\x63\x76\x28\x4d\x3b\xd8\x0f\x06\xb1\xb8\x0d\xc6\x42\x7d\x3f\x94\x5a\x65\x0f\x05\xfd\x50\x6a\x95\xc3\x9c\xa6\x58\xdf\xab\x6b\x40\xec\x78\x92\xa8\xfa\x30\x43\x8b\xb6\x44\x8f\x80\xb8\x50\xd4\x4a\x1b\xd8\x96\xf2\x12\xf5\xaa\x62\xaf\x4e\xfe\x4d\x2c\x08\xb4\xc8\xd8\xfa\x1c\x37\x9f\x52\x5b\xa0\x04\x2f\x17\x27\xe0\xbd\x78\xb7\xce\x09\xfa\x1b\x91\xc8\x72\xa5\xde\x45\x24\xb1\x54\x7a\x95\xdf\x55\xc9\x1f\x53\xd7\x79\x1c\xd8\x20\xbd\xe1\x8c\xc1\x87\xb8\xc8\x51\xa7\xe7\xdb\xc9\xc1\xda\xa1\x0e\xf1\x6e\x4b\x1c\x80\x55\xd3\xb8\x7d\xdb\xce\xd5\x28\x30\x91\x00\x8e\xfd\x77\x54\x77\xd9\x49\x36\x9e\xd3\xbd\xfd\x11\x37\x94\x1b\xe3\x0f\xc1\x6f\x5f\xfb\xca\x96\xae\x1f\x7f\x7b\xf9\x07\xd8\x10\xde\x72\x3b\xf8\x87\xdd\x62\xb4\xf2\x65\xcb\x3b\x44\x64\x35\x14\x75\xf6\x15\x4b\xa9\x9f\x30\xab\x3e\xf1\xca\x6b\x5b\x79\xc9\x37\x60\x75\xb6\x8f\x8f\x43\xa9\x5b\x2f\x79\xe5\x66\x9a\xc2\xef\x3c\x4a\xa3\x0b\x87\xff\x18\x8e\xdf\x5f\x9f\x7f\xb8\xb4\xee\x56\xf2\xd2\xab\xbe\x7d\x27\xb3\x3f\x38\x1b\x5f\x5e\x9f\xd5\xf6\x3c\xdc\x81\xbd\xeb\x8f\xc3\xf1\xcd\x87\xab\xf3\xfe\x4d\x13\x96\x8a\xb7\xd5\xed\x76\xa1\xa7\x1c\x3c\xf3\x97\x76\x13\xda\x50\x6a\x96\xb8\x0f\x4a\xab\xa2\x09\x65\x41\xb9\x10\x6f\x85\x03\x4c\x48\x29\x9e\x1c\x5b\xaa\xf9\xa2\xde\xe8\x33\x6a\x3f\xbf\xaa\x1d\x59\x1b\xd3\x34\x3d\x57\x05\x3b\xa2\xab\x82\xfb\xac\xbb\xf9\x4a\x16\x6a\xfd\x05\x9c\x1c\xcb\x94\xf8\x21\xd5\xe6\xb1\xd3\xae\x2b\x4f\xc0\x3f\xbd\xe4\x06\x20\xd0\x74\xe9\x44\xb5\xb4\x47\xf4\xf1\x7e\xb5\x9b\x51\x58\xad\x40\x54\x9d\xe7\xde\xd6\x00\xac\xd3\x29\x6c\x1c\x5d\xf6\x5f\x68\x47\x01\x93\x02\x82\xcd\xc9\x36\xfc\xa7\x6a\x4d\x06\xd8\x88\xe6\x60\x1e\xd1\x46\xd4\x79\xab\x47\x95\x95\x08\x5c\xb6\xe3\x97\x2f\x80\xd1\x7f\xc0\x45\x5a\xaf\xfe\x6f\x80\x49\x82\x08\x03\xaf\xcb\xe3\x88\x69\x81\x9c\x50\x34\x7a\x68\x3a\x45\x31\x3b\x01\x57\xf4\xe2\x33\x8a\x97\xcc\xf0\xff\x5d\x27\x15\x4d\x50\x96\xcd\x41\x13\xe6\x50\xcd\x65\xd5\x54\x78\xfe\x84\x26\xa8\x31\xaf\x84\x32\xf1\x54\xea\xba\xbb\xff\xc0\x0e\xa2\x9c\xa6\xcd\x5e\x16\x90\xdb\xc4\xbe\x2e\x94\x55\x05\xbe\x36\xdf\x83\xdd\xde\x12\x17\xc8\x3c\x21\x33\x7c\xc3\x0d\x51\xd3\x5a\x9f\x4d\xb2\x8e\xed\x9b\x77\x93\xcc\xbb\x77\x63\x31\xcf\x41\xd3\x3e\x07\x9b\x1f\x72\x69\x3e\xcd\xbd\xd7\x43\x12\x61\x07\xcf\x54\x52\x21\x94\x33\xaf\x09\x65\xa9\x10\xd9\x72\x4d\x6d\x37\x02\x94\xb3\x63\x87\x6b\xe0\x36\xbc\xdf\xbd\x19\x8c\x87\x17\x37\x1f\x2f\x6e\xc6\x67\xd7\x57\x6f\xbb\xad\x6f\x0b\xc1\xaa\xfc\x8a\x3d\xe7\xf1\x08\x87\xdf\x67\x53\x20\xcd\x93\xcd\x65\x95\x7d\x79\x7d\x6e\x6a\xfc\x7e\x3a\x3a\xfb\x55\x9c\xa3\x1c\x0e\x2c\x27\x34\xcb\xf3\x05\xcd\x94\xf4\xba\xfd\xe9\x59\x7f\x3c\xbc\x3a\x1d\x05\x80\x70\xe6\x5c\xf5\xc0\x7d\x77\x79\xfd\xe6\xf4\xb2\x7f\xf5\xf6\xda\x7d\xd6\xf3\x44\x3d\xf4\x54\xdd\x16\xf4\x01\xbd\x39\xe7\xb3\xde\x7f\xe7\x87\x97\xd3\x25\xc3\x64\x26\xd3\x4b\xea\x70\xad\x03\xea\xf0\x1f\xc3\xd1\xc5\xfb\xfd\x10\xe0\xdb\xac\x7e\x5b\x37\x7b\x5b\x9e\x55\xf5\x6f\x79\x5c\xe8\x45\xb3\xe4\xe9\x1e\x17\xaa\xfc\xb9\x20\xa9\xdc\x21\x91\x0b\x61\x7f\x35\xa8\x26\x7f\xbc\xea\x4a\x76\xd7\x21\xd5\x7c\xec\xd1\xd9\x6d\x2b\xd5\x60\x1d\x7e\x08\x97\x3f\xec\x86\x4d\x0b\x83\xb6\xfb\x2e\x59\xaf\xaa\xd8\xde\xb3\x09\x3d\x83\x55\xf6\xda\xca\xdc\xeb\xea\xd5\xa7\x82\xbc\x7c\xd3\x76\x80\xc5\x05\x54\xc3\x05\x1e\xd0\xa4\xff\xd6\xea\xfd\x62\x82\x58\x24\x1e\x60\x69\xb8\xbb\x66\xd2\x7e\x22\x97\xa2\x68\x86\xb2\x59\x6b\x26\x04\x10\xba\x14\x93\x8e\x33\x98\x24\xf9\x09\xa8\x5e\x63\x31\xc7\x71\xf4\xec\x3f\x00\x00\x32\xd9\xef\xcf\xbd\x97\xbd\x57\xbd\x9f\x8f\x4e\xc0\x51\xd3\x7f\x6f\xa7\x15\x30\x2f\x59\x8a\x5c\x02\x37\x2a\xec\x79\x5e\xe6\x12\x70\x79\xf7\x15\xa2\x65\x4e\xad\x1e\xa7\x50\xcc\xf2\xd4\x70\x9c\x67\xf2\xb2\x64\x55\xa2\xc8\xa1\xb8\x49\xf6\xad\x74\xb9\x04\x77\x6d\xe4\xe2\x02\xe2\x6a\xf0\x6f\xee\x4a\x97\x58\x5f\x40\xc9\xd2\x65\x0e\x53\x17\x6a\xca\x21\xc4\x64\xb6\x4c\x61\xee\xa8\x25\x1c\xf7\x98\x72\x5f\xbe\x7c\x18\x4c\x1c\xa6\x52\x81\x86\xf2\xb6\xb1\xa0\xc1\xea\x85\xf0\x44\x95\xb8\x12\x2c\x96\x98\x9e\x65\xc1\x68\x2e\x8c\x15\xe3\xa7\xe5\xa4\x1d\x57\x56\x5c\x00\xbe\x28\x56\x17\x02\xb7\xf2\xde\x69\x86\xc8\xe9\xa0\xff\xf1\xd5\xb0\xfe\x3b\x00\x09\x2a\xe2\x1c\x67\x4c\x33\x67\x7b\x40\x80\xde\x93\x02\xb0\x39\x02\x29\x9e\xa2\x78\x1d\xa7\x08\xd0\x29\x57\xef\x80\xca\x9b\xa6\x00\x13\x51\xae\xf6\x05\x2a\xe0\x59\xce\x81\xb4\xc2\xc5\x06\x43\x35\xc4\xb4\x08\x81\x14\x2c\x17\xb7\x73\xab\xdf\xc5\x04\x87\x55\x6d\x05\x2e\xcc\xea\x12\xdf\x9a\xe4\xcc\x5a\x21\xc4\x1a\x45\xac\xfc\x32\xcc\x50\x0c\x44\xa2\x0c\x24\x09\x93\xa0\x02\xe7\x28\x11\xd0\xc0\x94\xe6\x82\x38\xd7\x92\x38\x0d\x45\x66\xa7\x08\xff\xa6\x29\x5c\xd1\xe6\x36\xbb\x6f\xa8\xa0\x94\xca\x1b\x35\x72\x92\xa2\x12\x24\x1b\x11\x43\x34\xab\x91\x43\xa9\xe3\xe9\x32\x05\x31\x5d\x64\x29\xe2\xcd\x05\xcf\xb8\x97\x68\x00\x81\xac\x08\x56\x23\x9a\x50\x9a\x22\x48\x42\x06\x9b\xa3\x4f\x4b\x3e\x61\xb5\x68\x0a\x9f\x3c\x23\x0e\x51\x6b\xe8\x49\x74\x5a\x2e\xf2\x90\x08\xe6\xe3\x45\x26\x2d\x91\xd7\xfd\x49\xee\x2a\x53\x42\x4f\x25\x54\xb0\xca\x6a\xfe\xbb\x4d\x52\xeb\x27\x14\xde\x36\xa5\x73\x59\xd0\x96\xc8\xf5\xe4\x0c\xa6\x14\xae\x1e\x68\xd8\x50\xf2\x6e\x22\x73\x43\xc5\xe9\x77\x29\xf1\x5c\x55\xbd\xab\x51\x4e\x86\x73\x35\xc2\x3c\x87\xeb\x76\xa1\xdd\x08\xf4\x23\xd1\x89\x8a\xfc\x4a\xee\xef\x9f\x3b\x6a\xf8\x45\xa9\xfc\xb8\x0d\xb5\x7d\x6b\x3c\x15\xcc\xb5\x03\x00\x69\xa2\x6d\x0f\x60\x01\xe3\x1d\x21\x64\x34\xd9\x71\x10\x1c\x82\x6b\x96\x42\xda\xaf\x18\x6a\x7a\x19\x5d\xcd\xb7\x93\xe8\x9b\x05\x49\x4d\x69\xaa\x76\x12\xaa\x44\x52\xc7\xab\x17\x13\xc4\x60\x65\xd6\x9b\x60\x9c\xe6\x6f\x2d\xb4\xaa\x42\x17\x2f\x9e\xeb\xef\x96\xc8\x28\xcb\xb9\x7c\x4e\xef\x04\xc8\x44\x5a\xa4\xa6\x94\x6f\x8f\x46\x73\x5c\x94\xb1\x5b\x10\x0b\xbc\x71\x01\x96\x05\x4a\xb4\x31\x12\x9d\x5d\xf5\xab\xd3\x08\xb5\xfc\xd7\x96\x88\x74\x47\x0e\xaf\x00\xad\x52\x23\xc5\x46\xaa\x05\x65\xb3\xed\x94\xca\x45\x36\x6b\xaa\x93\x8b\x6c\xd6\x56\x24\x3a\x5f\xad\x4f\x53\x48\xed\x10\xaa\x42\xb7\x1f\x6c\x99\x31\x77\xab\x11\xeb\xf7\xd4\x9b\xc3\xd6\xbf\xb7\xc7\x5e\xcb\xd0\xfb\x14\x08\xb0\x83\x11\x61\x35\x20\x1c\xc6\x43\x65\x38\x3c\x85\x41\x57\x89\x8a\xb7\x1a\xf8\xbb\x37\x83\x21\x37\xba\x51\x73\xf0\x65\x41\x9b\x00\xf5\x5c\xc9\xdd\x44\xb0\x7a\x99\xa6\x8f\xd9\x12\x1f\x0f\x65\x6a\x36\x32\xd3\xf5\xca\xc4\x69\x56\x9a\xc9\x12\x1b\xd5\x86\x04\xb2\x77\x02\x4e\x9f\x4c\x69\x93\x74\xf5\xd2\x36\xfd\x2c\xf9\xf1\x4c\x13\xb4\x11\x10\x7f\x02\x76\x68\x4d\x45\xd4\x47\xc7\x75\x03\xf7\xd2\x64\x1b\xa1\x21\x84\xd3\x56\x1f\x22\x38\x1d\xf4\xbf\x73\xb3\xd6\x63\x31\xce\x4a\x6a\xd8\xec\x14\x98\x24\x82\x21\x61\x3a\xf0\x1b\x9d\x6e\x6b\x36\xc0\x5e\x15\xb6\xda\x69\x92\xe4\xa8\x70\x57\x09\x31\x97\x64\xe0\x5d\x3c\x62\xe3\x03\xe4\x43\x36\x18\x65\xf9\x21\xeb\xf9\xaa\xfa\xb7\x80\x9f\xf1\x62\xb9\x38\x01\xaf\x7f\xfe\xf9\xd5\xcf\x9d\xb5\x31\x91\xb5\x5b\x5b\x07\xcd\x4f\xd2\x03\x13\x86\x66\xcd\x9b\x55\xcd\x4f\x1c\xe3\x7a\xfa\x88\x76\x79\x3e\x66\x2d\x87\x5b\x25\x3f\xbe\x84\xfb\x6e\xcb\x39\x8c\x97\x24\x90\x0f\xd8\x37\xc3\xa1\x70\xe4\xee\xe8\x95\xcf\x9b\x08\x01\x66\x31\xee\xcd\x2f\x32\x16\x92\xab\x46\xb5\x42\x5c\x35\xe4\xb8\xfd\xa5\x1f\x70\xe2\xab\x50\x0d\xd7\x5e\xab\x6b\xa2\xbd\x53\xec\x6e\xec\x20\x4f\x64\x4a\xb9\x40\x21\xda\x19\x02\xac\xab\x12\x4b\xec\x8f\x4e\xa4\x22\x93\xaf\x1f\x00\x3a\xb5\x6a\x5e\x3f\x22\x1d\xb1\xb7\x7d\x9b\x17\x55\x6a\xd5\x9d\xac\x8b\x4b\x0e\xc6\x65\x5c\x94\x85\x76\xdb\xa2\x9e\xdd\xb5\x69\x5a\x94\xa5\x4f\xc1\xb2\xf8\x2e\x4d\x81\x16\x0f\x97\xf3\xe1\x8e\xe5\x9b\xfc\xdb\x98\xdb\x0e\x5a\x88\xe9\xd7\x2d\x6c\xba\xd4\xad\x8a\x3b\x55\x70\x46\x13\xaf\x3c\x0d\x8a\xce\x94\xcc\xb3\x1b\x18\x9f\x92\xe8\x06\x50\x4a\x4c\x9f\xbd\xd1\x65\xb4\x04\x9a\x2c\x09\x2a\xfc\x9a\x31\xa4\x2f\xf9\x85\xe8\x3e\xb3\xa6\x57\x63\x03\xbd\x81\x1e\x02\xa9\xbb\xcf\x4e\x03\x20\x1c\x58\x87\xce\x05\x40\x26\x91\x2e\x9c\x3a\x13\x94\xe7\x0b\x7c\xe5\x3e\xad\x0b\x02\x6d\xa3\x0e\x3a\x7b\x47\x12\xe9\xe5\xe0\x2d\x54\xfb\x3b\x8e\x1a\x0e\xab\x20\xaa\x71\xb8\x5b\xdf\xbb\x06\xe7\x1c\x96\x53\xdf\x57\x32\xe7\x09\x6a\x59\x9d\xbf\x7b\x27\x1d\x2b\x2d\x2c\x9b\x82\x95\x25\x76\xed\x9a\xd5\xe6\xa0\xae\x5b\xb3\x12\xa2\x52\xac\x67\xd5\x26\xf6\x1e\xb4\xea\x5e\xf7\xea\xed\xf3\xf8\x5d\x2a\xe4\xad\xb6\x9c\x1a\xf7\x21\xc2\xe0\x75\xc0\x04\xb6\xcb\x08\xe1\x90\x41\xd3\xb8\xf8\x69\x28\x90\x54\x1b\xde\x03\x9a\x14\x3f\x39\xf4\x67\x97\xe6\x0a\x8e\x42\x80\x00\xa1\x4e\x3a\x34\xbe\xbf\xbd\x8f\x06\x4e\x9d\xb3\xd3\x3e\xa0\x1d\x13\xa7\x1a\xdf\x7b\x5f\x1b\x79\x48\x5b\x30\x73\xd0\xe4\xd6\xd1\x7b\xf0\x1d\xfd\xdd\x5c\xa0\x2b\x9a\x20\x9b\xf7\xa3\x7f\xb7\x6f\xe9\x5b\x7d\x1e\x5d\x70\x70\x77\x82\x58\x72\xa3\xc8\xa7\xda\x1f\xb6\xc7\x1c\x7d\x6b\xaf\x52\x96\xe6\xdc\x9b\x5f\xb0\xc0\xf2\x9c\xd7\xf1\x0d\x74\x97\xb8\xc5\x95\x62\xa9\xa0\x88\xc5\x95\xc1\x7f\x5d\x9d\x3f\xa2\x15\x55\xbe\xc7\xb3\xf5\x1a\xbd\x49\xce\x8c\x63\xae\xd5\x1a\xd5\xbf\xb7\xd7\x68\xed\x0d\x20\x73\x8d\xea\x82\xc3\x1a\x0d\x62\xd0\x8d\xd6\xa8\x7e\x81\x07\x25\xc5\x72\x42\x90\x25\x53\xc0\xb6\x0a\xd4\xab\x29\x97\x05\xca\x1f\xb1\xc3\x1f\x7b\x31\x37\x5e\x35\xea\x19\xaf\x20\x59\x17\xb5\x2e\xb3\xaa\x5e\x09\xcb\xee\x1c\xd5\x0a\x2d\x4a\xb8\xfd\xba\x52\x4d\x15\x1b\xc5\xeb\x2d\xd7\xfa\x56\x7b\x96\x3a\xc3\xb6\xba\xb6\x27\xcb\x26\x7c\x96\x73\x38\x9d\xe2\x18\x4c\x53\x7a\x0f\x20\x03\xfd\x01\x50\x0a\x0d\xd0\x5c\xc4\xf9\x41\x8a\x56\x28\xfd\xeb\x8a\x07\x98\x65\x29\x46\xc9\x88\x5a\x56\x63\x87\x57\x51\xba\x01\x43\xb7\x2b\x15\x00\x06\xe8\xdb\xe8\x17\x9f\x33\x4e\xf9\xc6\x35\xeb\xe6\xb7\xc7\x9d\xc7\x3b\xb4\xde\x63\x84\xae\xbc\xa3\xbb\x3f\x90\xe2\x10\x57\x77\x14\x31\x2c\xd6\xb8\x49\xc7\xc1\xf1\xc6\x80\xc8\x9e\xba\x20\xe3\xaf\x40\xad\xe7\xb7\x6d\x28\xed\x61\x6b\xd3\x96\xfb\xa0\xfd\x6d\xe4\x32\x83\x60\xf2\x76\x8f\xa2\xf3\xf0\x2a\x4d\x3a\x56\x5c\xfd\x1e\x46\xca\x85\x1b\x26\x33\x21\xd6\xa6\x39\x5d\xc8\x23\x1a\x70\x81\xaa\x25\x7c\x58\xb9\x87\x95\x6b\xf9\x0e\x2b\x77\xa3\x51\x84\xc4\xe0\xed\xa5\x68\xe6\xf0\xa2\xeb\x9b\x8d\x88\x71\x2b\x54\x56\x06\xe2\xb5\x63\x80\x38\xab\x41\x86\x12\x30\x81\x05\x4a\x00\x95\xd7\xa7\x68\x9e\xa0\x1c\x60\x02\xee\xe7\x38\x9e\xf3\x9f\xd6\x00\xe6\x08\x14\x88\xf5\x36\xb1\xc7\xbb\x23\x8b\x22\x3e\xe9\x24\x6f\xe3\xce\x8f\x88\x65\x72\x0b\x05\x4f\xb1\xb2\xb2\x25\x00\xc0\x28\x98\x20\x6d\x8e\xe8\x51\xf0\x21\x5a\xd0\x35\xe9\xe9\x3d\x7f\x2f\xde\x5d\xbd\xa4\xb3\x19\x26\xee\x93\xf8\x35\x14\x2f\xcc\x26\xe5\xc9\x67\x46\x01\x26\x89\xb8\x5c\x0b\xf0\x14\x88\xe4\x7c\xa0\x98\xd3\x65\x9a\x80\x19\x22\x7c\x05\x20\x90\xd2\x99\xf0\x1f\xe0\x32\x65\xbc\x85\x38\xe5\xdc\x81\xbd\x33\x6e\x01\x1c\x79\xb4\x1d\x68\x2b\xce\x10\x16\x2b\x24\x09\x9f\x36\x46\x63\x9a\x4a\xe9\x8f\x92\xe3\x04\x11\x4e\xd7\xc9\xba\xa2\x2b\xe8\x4f\x01\x9b\xe3\x42\x3e\x9f\x24\xc6\x4a\x0a\x0e\x27\x97\x79\x5a\x9f\xc9\x52\x5e\x57\x2e\x3c\x54\x70\x70\x12\x2d\xe7\xb8\xba\x44\x9a\xcd\x30\x97\x76\xf9\x80\x23\x6f\xd8\xe6\x73\x64\x19\x0f\xa3\x12\x17\xce\xda\xd0\xcf\x1f\xc1\xfa\x04\x91\x44\xa4\x10\xf7\x4b\xd6\x06\x9b\x24\x0a\xdd\xca\x5d\x44\x24\xe1\x73\x50\xe2\x9d\x43\x32\x43\xcf\xc0\x04\x71\x4e\xd2\x15\x30\x89\xd3\x65\x82\x12\x70\x8f\xd9\x5c\x5d\x75\x14\x15\x7b\xa0\xcf\x40\x0c\x09\xa0\x24\x5d\xf3\xa5\xa0\x57\x49\x02\xee\xe7\x88\x0f\x96\x2c\x17\x28\xc7\x31\x94\x33\xc0\xe7\xab\xac\xe2\xa1\x01\xff\xa6\x34\x5f\x40\x26\xce\x8f\xd5\x73\xa4\xb7\xbf\xe0\x83\x66\x59\x37\xc5\x20\x59\x5f\xdb\x1f\xec\xaa\xbe\x68\x93\x33\x78\xd1\x06\x8a\xb0\x36\x5d\x23\x3d\x27\x4a\xae\xcc\xf0\x0a\x91\x92\xa9\x7a\x40\xdc\x7a\xe0\xc4\x9f\x20\x80\x30\x9b\xa3\xbc\x46\x6f\x9a\x0b\x4b\x29\x29\x61\x40\x30\xa0\x89\x65\x01\x11\xca\x38\xd4\x15\x4e\x50\xa2\x96\x4f\x73\xe5\x48\x9b\x4b\x30\x35\x59\x2e\x26\x28\x77\x2f\x25\xf9\x7d\x8e\xaa\xdc\x40\x11\x26\x2c\xa2\x79\x24\x09\x60\x7f\x96\xc6\xfc\xf4\x08\x3b\x59\x5b\xdd\x09\x19\x9d\x0d\x36\xa5\xaa\x5e\x98\xff\x3d\x3a\x1b\x3c\x03\x1f\xce\x07\xcf\x38\xb9\x86\x67\xa3\xc1\xff\x68\xdd\xa3\x9c\xec\xc5\xb2\x60\x92\x1c\x82\x72\x9c\x56\x25\x03\x3f\x33\x09\xa9\xd0\x29\xf8\x62\x1f\x9d\x0d\x3a\xe8\xb3\x2f\xe5\x1d\x60\x80\x30\x9b\x97\x6c\x21\xcc\x0d\x17\x99\xe5\xdc\x27\x5c\x65\x68\x22\xe0\x42\xb0\x3a\x49\xd4\x7d\x1a\x2e\xfe\x52\x0a\x93\x42\x6d\x48\x6a\x19\xad\x89\x61\x61\x32\x21\x9c\x39\x91\x17\xb8\x28\x30\x99\xb9\xe4\x74\x82\x0a\xa6\x1e\x32\xd8\x5e\x5c\x07\x8a\x50\x9c\xbd\x49\x69\x7c\xb7\x89\x08\xed\x0f\x44\x93\x86\xc4\xef\x0f\xd4\xe1\x4b\x54\x1c\xab\x1a\xbc\x00\xb2\x1a\x3d\xb9\xb9\x70\xcc\x5d\x99\x5e\x09\x26\x16\x59\xda\x84\xe0\x44\x0c\xc0\x02\x64\x30\x67\x5a\x1e\x9f\xea\x28\x87\x26\xea\x59\xad\x36\x97\xc5\x5c\x5a\x01\x2a\x96\xbe\xde\x1a\xee\x60\xbc\x60\x6f\x05\x80\x18\x7b\x6e\xd1\x39\xe8\x73\xd6\x3f\xbf\xe1\x83\x86\x8a\xb7\x41\x8e\xb8\x97\x85\x08\xd3\xfa\xa4\x3f\x00\x72\xec\x1f\x61\x8a\x13\x80\x3e\xc3\x45\xc6\x4d\x42\x6e\xe7\xdd\x1e\xbd\xf8\xe5\x65\xef\xc5\xeb\xbf\xf7\x5e\xf4\x5e\x1c\xbf\xfc\xdb\xed\x11\xe7\x98\xdb\xa3\x97\xcf\x9f\xbf\x38\x49\x26\xbf\x9c\x9c\x1c\xbf\xfe\x5b\x33\x2f\x8e\xed\xdb\xc4\xf5\x40\x9f\x63\x94\x75\x1f\x92\x6e\xea\x52\xd1\x4a\x0d\x35\xc5\xb1\x88\xb4\xf2\xd1\xab\x89\x57\x76\x96\x9a\xaf\xa6\x02\x85\x64\x1f\x74\xd0\x48\x48\xbf\x0d\xdc\xe3\x34\xe5\x9d\xe5\xe8\x5f\x72\x4d\xe2\x69\x65\x42\xd3\x25\x2b\x70\x82\xc4\x14\x88\x49\x12\xfa\xbb\x7b\xd0\xa1\xce\xde\x66\x34\x0f\x76\xf8\x02\x5d\x3e\xf1\x54\x0b\x4e\x3a\x34\x71\x98\x47\x17\x1e\x23\xd4\x5f\xc3\xa8\xe5\x6d\x84\x2c\x1b\xd0\x44\xc5\x2e\xca\x60\x71\x25\x0e\xb4\xc0\xd4\xeb\xf6\x19\x5f\xfe\x95\x60\xc5\x04\x8c\xe8\xf1\x5b\xde\x58\xac\xfe\x42\xc8\xd4\x72\xdd\x0f\xaa\x70\xca\x33\xd9\x0f\x9f\x64\x0d\xdb\xdb\x27\xaa\x4a\x34\x88\x40\xd1\xa2\x96\x8a\xd9\x39\xe7\xcb\x8b\xcf\x0c\xe5\x04\xa6\x17\x84\x61\xb6\x1e\xee\x5d\x0e\x6d\x10\xad\xd1\x5f\x38\xd7\x6e\x80\x87\xfc\x42\xa2\x38\xfa\xdb\x6c\x49\x80\x4d\xa2\x3a\xfa\xab\xf1\x5e\x99\xb0\xa4\x94\xba\x5c\x3c\xdd\xa1\x75\x01\x72\x94\x4a\xa5\x3a\xc7\x19\x37\x51\xa0\x98\x68\x3a\x55\xc2\xa3\xa7\xc4\x50\x99\xe9\x45\xf0\x53\x9f\x3c\x03\x57\x94\xf1\xff\xc9\x14\x8e\xc2\x02\x3c\xa7\xa8\xb8\xa2\x4c\xfc\xd2\x31\xcb\xbb\x90\x22\x30\x1a\x65\x25\x84\x92\x88\x5c\x3a\x13\x29\x64\xf8\x50\x95\x4a\xd2\x23\xee\x4b\x35\x5b\x12\x0d\x17\xa0\x4f\x38\x43\xab\x21\xf3\x42\x05\x48\x82\x10\xb6\xe0\x04\x01\x42\x49\x24\xec\x19\x2b\x0c\x45\x29\x9a\xd7\x08\xe5\x01\xa7\x40\x09\x73\x5e\x96\x70\xc3\x08\x65\x29\x8c\x51\x02\x92\xa5\x40\x1a\xea\x64\xb9\xdc\x26\x45\xf9\x0c\x81\x4c\x18\xa5\xa1\xe4\x09\x5f\x11\xf2\xdb\x7c\xbe\x36\x90\xe9\xf2\x0b\x94\xec\xf2\xeb\x0c\xea\x55\x15\x43\x82\x7b\x75\x94\xbb\x55\x82\x59\x3b\x68\x80\x61\x41\x3f\xfd\x6d\x1c\xfc\xab\x63\xb4\x99\xd2\x0d\x19\x6d\x68\xcd\xee\xb0\xbe\xfe\x6c\x4a\xd2\x50\x90\x66\x4c\xa5\xa8\x34\x54\x4b\x29\x96\x46\xf1\xb1\x4f\x3d\xb6\x34\xdc\xe3\x2b\xc9\x76\xfb\x83\x42\x3c\x28\xc4\x5d\x48\x71\x50\x88\x07\x85\x58\x7d\x07\x85\xe8\xc1\xe8\x5b\x29\xc4\x3d\x05\xec\xde\x7e\x3a\x77\x6f\x4e\x05\x09\x68\x41\xed\x2b\xc7\x31\xd5\xea\x0b\x59\x04\xa1\x14\x0d\xe0\x85\x4e\x06\x8f\x0c\xc4\xfd\xf4\x73\xd3\xb8\xe3\xb6\x53\x6d\x7b\xcd\x5e\x45\x4e\x80\xad\x6c\xcb\xfb\x4a\x40\x9f\x64\x08\xdc\x2b\xd5\xe7\x1e\x0e\x9b\xa5\x4f\x70\xb3\x54\x6c\x6c\xc9\x99\x31\xcc\xc9\x1e\x18\xca\xca\x13\xb4\xd7\xed\x54\x6e\xa5\xee\x1c\xbf\xa7\x39\x9e\x61\x02\x19\x52\xd6\xf6\xb6\xf1\x7b\x57\xd0\x5e\xdd\xef\x3a\xc4\xeb\x0f\xf1\xfa\x43\xbc\xfe\x10\xaf\x7f\xea\xf1\xfa\x83\xab\x6d\xfd\x0e\xae\x76\xf9\x1d\x5c\xed\x83\xab\x5d\x7d\x07\x57\xdb\x83\xd1\x21\xf6\x7c\x88\x3d\xfb\xbf\x1a\xf5\x9b\xed\xa5\x45\x96\xe2\x42\x28\x04\x91\x87\xa0\x1a\x8e\x5a\xa5\x0b\xae\x4c\x7a\xe2\xe4\x96\xf9\x8b\xa0\xe8\xe9\xd5\x79\xe7\x49\x42\x70\xd0\xca\x07\xad\x7c\xd0\xca\x8d\xef\xa0\x95\x3d\x28\x1f\xb4\xf2\x76\x35\xf7\x12\x00\x3f\x5c\x21\x38\x5c\x21\x38\x5c\x21\xb0\x54\x3e\x5c\x21\x38\x5c\x21\x28\xbf\x47\xbb\x42\xb0\xf5\xa6\x97\xcc\x99\x30\x5a\x67\x56\x39\xe4\x16\x98\x35\x62\xab\xf4\x07\x1c\x8a\x36\xd7\xea\xb2\xb2\x26\x4b\x05\x3a\x92\xad\xc5\xbf\x70\x01\x26\x88\xc1\x48\x24\x44\xe0\xb2\xf3\x45\xef\xef\xee\x31\x6e\x91\x32\x44\xbf\x3a\xd2\xb5\xb3\xa7\x5f\x43\x11\x53\x5f\xee\x8c\xc9\x3d\x3c\x25\x3c\xeb\x03\x91\xe6\xf9\x0a\x71\x66\x90\x5e\x9e\x59\x8e\xad\xbb\x2d\x5e\x91\x22\x0a\x3b\xb0\x14\x34\x2b\x65\x39\xc7\xc3\xd9\x8b\x8d\x56\xce\xbc\x8c\xbc\x49\xfd\x37\x3b\x53\x6d\xfc\x88\x0d\x08\x49\xa5\x63\xe4\x53\x81\x31\x77\x90\x51\x72\xd5\x4a\x21\x52\xbd\x39\xac\x13\x83\xe8\x5f\x62\x4a\xa4\x2d\x56\x9c\x80\x7f\xfe\xc1\x7f\xe1\xf0\x51\xf2\x51\xe7\xfc\x10\xbf\x3e\x68\xae\x94\x84\x14\xb6\x74\x29\xf2\x67\x67\xc6\x14\xa3\xd8\x96\x34\xe5\x9c\x14\xde\xbc\x29\xcd\xf2\x76\xea\x94\x36\x5a\x8a\xfe\x65\xf6\x94\x46\x8d\x8d\x13\xa8\xf0\xc5\xab\x60\x6e\x95\x44\x25\x21\x85\xce\xe0\x02\xcc\x51\x82\x43\x56\x14\xf3\x3b\x64\x45\xa9\x7d\x87\xdc\x0a\xae\xef\x90\x5b\x61\xa3\x51\x1c\xb2\xa2\x3c\xd5\x95\xfb\xd4\xa3\xa4\x7b\x97\x2c\x87\x68\xa8\xf5\x3b\x08\xdc\xcd\x10\xff\xae\x05\xee\x13\x4e\x66\xd3\x21\x2f\x19\x7d\xfb\x29\x71\x9d\xc1\x0c\x95\xed\x5d\xe7\x81\xbb\xd7\xc2\x26\xd3\xe4\x61\xa3\x80\xe7\x8c\xfc\xa7\x80\xfd\xd3\xec\x01\x1f\x29\x4a\x6e\xc2\x1b\x07\x57\x75\x13\x57\xf5\x13\x2d\x6a\x3e\xea\x27\x5a\xd8\xbd\xd3\x4f\x32\xed\x75\xdb\x2f\xfd\x3f\x5a\xd8\x1d\xd2\xb2\xa0\xed\x89\x1a\xbd\x36\x5d\x50\x5d\xe4\xf6\x3d\x85\xce\xcf\x57\xe8\x03\xb9\x23\xf4\x9e\xbc\x15\x9b\xfa\xe5\x5b\xb3\x87\x57\x10\x9c\x55\xf7\xf8\x92\xb6\xc7\x0c\xde\xfc\x75\x01\xbf\x78\xe8\x10\x97\xdd\x1a\xae\x5b\x0d\x99\x28\x37\x6b\xb8\xaf\x02\xec\x84\xb6\x64\x7f\x32\x1b\x73\x2b\xc8\x8b\xb8\x77\xcb\xa1\x7c\xdd\xef\xb9\xb7\x93\xc9\x32\x2f\x5c\xdb\x20\x3b\xf5\xe2\x54\xc3\x07\xe2\x00\x90\x14\x71\xb6\x80\xb9\xed\x04\x7c\x07\xdc\x72\xa7\xc3\x82\xb9\x6f\x54\xd5\xd3\x90\xaf\x1e\x3e\x1d\xf4\x34\xa5\xf7\xcd\x74\xd0\xfc\x37\x67\x3e\x68\x59\xe8\x48\x08\xcd\x0b\x9d\x09\xa1\xab\x42\x6b\x42\x68\x13\x93\xa6\x3e\x31\x8b\x1d\xcf\xe6\x6c\xa9\x50\x60\x9a\xcd\xe1\x26\x5a\xc5\x50\x0c\xff\xd9\xd4\x17\xfa\x91\xdb\xa2\x7a\xe4\x76\xc5\x5d\x55\x28\x4e\xf6\xc7\x62\x6a\xd4\x72\xaa\xb6\x12\x7e\x20\x9d\xc3\xe7\x70\x08\x17\x59\x8a\xc9\x4c\x72\xc2\xbe\x85\x8e\xf7\xc9\xb5\x2e\x4b\x9a\x37\xf6\x6c\xce\xef\x2c\xac\xc2\x5e\x7d\x2d\xc5\xc6\xcb\xe7\x3f\x5b\xab\x70\x2a\x8e\xec\x1b\x4b\x21\xa3\x04\x00\x91\xa5\xfb\x7e\x53\x04\x8c\x45\x6e\xaf\x80\xb3\x29\xfe\xdc\x81\xbc\x07\x08\x8c\x19\x5e\xa1\xb7\x7c\x14\x78\x81\xae\x97\x8f\x41\xef\x57\xaf\x9f\x3b\xaa\x94\x18\xbf\xb6\x56\xc0\x49\xfa\xc8\xa8\x76\x63\xfa\xc2\xca\x16\x85\x5a\x58\x37\x0f\xa8\x6e\x0d\x34\x5f\x3c\xef\xc4\xd3\x52\xee\x75\x13\x5d\x0f\xfb\xd5\x25\xc2\x83\x6a\x44\x94\x17\x19\x24\x35\x85\x28\x7f\xb2\xeb\x43\x5d\x66\x53\x87\x17\xa2\xcc\xae\x0d\xcd\xb2\xb6\x32\xac\x23\xd1\xd4\x85\x46\xe9\xd3\x51\x85\x3f\x96\x1e\xdb\xfa\x49\xb8\xcd\xdd\xaa\x87\x7d\x44\xee\xfb\x79\x0e\x4e\xae\xde\x7d\x9b\x0b\x30\x59\x60\x32\x64\x6e\x89\x59\xbf\x68\xcd\x6b\x63\x11\xf3\xc6\x2b\x24\x1f\x7b\x71\x04\xbb\x4b\x19\x28\x5e\x83\x7f\x20\x45\xed\x81\x2d\x8b\xa9\xf5\x8d\xd3\x04\xe7\xc8\x77\xbd\xbc\x36\xe6\x73\x5d\xb9\x3c\xa2\x02\xe3\x3b\x24\xcf\x4b\x2d\x28\xc1\xee\x8b\x0e\x25\x09\x26\x94\xcd\x1f\x88\x02\xd8\x71\x83\x5b\x84\xe8\x97\x1e\xda\xd8\x70\x32\xd2\xa0\x3e\x88\x59\x3a\x08\xa2\x77\x85\x04\xe8\x0f\x34\xd1\x2f\x6e\x86\x83\xd3\x2b\x45\x7b\x07\xbd\xbb\x88\xc9\xcd\xb1\xfe\x79\x08\x0e\x1f\x08\xfe\xb4\x44\xf2\xad\x9b\xfe\xf9\x26\x38\x54\x26\xca\xee\x06\x88\x03\x84\x61\x80\xbc\x7c\xb5\x8d\x81\x61\x39\x75\xf8\x98\x06\x86\xc8\x84\x90\xe4\x34\x4b\xa9\x7a\x53\x4d\xfd\xe1\x38\x4f\xa4\x0b\xad\x26\x86\x00\x76\x9e\xd3\xec\x92\xb6\x9e\x57\xab\x15\x5a\x8c\x8c\x1a\x22\x2d\x23\xc3\x2c\xb5\x5b\x19\x3e\x2b\x62\xdb\x07\xd7\x7e\x64\x8f\xba\x21\x06\x3c\x6f\xc3\x5b\xa6\xdd\x3f\x40\xcf\x20\x81\x7c\xf9\x4d\x00\x94\x8b\x57\xc1\xed\x0a\x0a\x9f\xcb\x46\x1a\x45\x99\x7d\x43\x31\x8c\x66\x1f\x30\x59\x03\x18\xc7\x91\x38\xa6\xcc\x09\x69\x11\x1b\xa5\xc8\x28\xcd\xd3\xfa\xe7\xcd\xd7\x41\x68\xe2\x3b\x3e\xb5\x81\x31\xc6\x47\x0d\xd2\x2a\x41\x89\x1e\x01\x25\xa2\x13\x33\x6b\x87\xde\x70\x94\xb6\xd7\x5f\xc9\x64\x7b\x50\xc9\x97\xe5\x4b\xb2\x2f\xc1\x37\xe0\xb0\x1c\x72\xcf\x2c\x6b\x8b\xbd\x1a\x16\x4d\xa9\x67\x16\x1e\x84\xde\xd3\x12\x7a\xed\x29\xf7\x8f\xaf\x63\xad\x3c\x90\xe4\x98\xe2\x94\x21\x75\x22\x49\x67\x5d\x62\xf4\x07\x12\x21\x0d\x42\xc9\xf9\x7a\x2b\xa9\xb2\x6f\xab\xba\xc8\x63\xa7\x51\x1d\x12\xeb\xdd\xba\x71\x91\xc7\xef\x4f\xcf\x76\xe8\x79\xfb\xd6\x45\x1e\xef\x12\xa2\xde\x35\xc4\x8d\xb3\x41\x4e\x9d\xaf\x5b\x34\x9a\x3f\xa8\x3a\x81\x71\x5c\x9a\x15\x98\x64\x4b\x26\x75\x4a\xcc\x72\xc7\xc9\x7c\x59\x62\xd3\x26\xa7\x71\x3c\xd0\xa0\xfa\x1c\x54\x53\xa5\xb4\x2a\xb4\xf5\x4a\x1b\x9d\xa6\x72\x69\xd5\xb8\xdd\xf0\x5c\xfe\xe6\x4a\x66\xaf\x27\x20\xea\xa7\x62\x9b\x83\xa9\xdd\x4e\x94\xbf\xc8\xa7\x9a\x97\xb9\x74\x66\xb9\x16\x3b\x3d\xeb\x83\xb3\xab\xfe\x37\x55\x42\xbb\x5f\x07\x68\x24\xdf\x6b\xb0\xc6\x30\x43\x71\x8d\x18\xa5\x26\xe3\x05\x9c\x0a\x6d\xda\x6d\xa8\xbb\x60\x1c\x8f\x4b\x08\x63\x01\x62\xdf\xa2\x55\x9f\x6f\x1c\x2f\x20\x81\x33\x94\x8c\xe5\x64\x3e\x9c\xca\xd1\x69\x05\xc7\xcb\x2c\x81\xcc\x7b\x64\xce\xeb\x11\x00\x41\x1f\xfc\x08\xf8\x16\x6b\x12\x8f\x53\x3a\xc3\xee\x34\x8d\xa1\x67\x40\x03\x0f\x6e\xc7\x28\x67\x53\x9c\xba\x62\x95\xf5\x3e\xbb\x8f\xcd\xde\xa1\xf5\x9e\xa0\xc5\x29\x46\x84\x8d\x8b\xc2\x77\xf9\xb3\x73\xda\x08\x62\x8f\x30\x6d\x5c\x3b\xe5\x53\x18\xa3\xf1\x82\x2d\x3b\xd1\xed\xb8\x2a\xcc\xc5\x30\xe6\xa0\x64\x24\x74\x2c\x80\xaf\x60\x37\x19\x3a\xe0\x66\x93\x7c\xcc\x72\x18\xdf\x61\x32\x1b\x13\x4a\xc6\x05\x81\xbe\x1b\xd0\x9d\xb4\x05\xf2\xc4\xd7\x58\xbe\xb4\x3e\x8e\xe7\x4b\x72\x37\x2e\xf0\x9f\xbe\xd9\x0f\xc2\x54\xc5\x0e\xc6\xf7\x10\xb3\xf1\x94\xe6\x63\x75\xf3\x6b\x57\x64\x13\xa5\x37\x36\x07\xec\x41\x38\x47\x33\x5c\xb0\xdc\x75\xf9\x61\x3f\xfc\xb5\x80\x33\x34\xce\x72\x34\xc5\x9f\x3b\x71\xf5\x2f\x2b\x05\x6a\x99\xa6\xe3\x02\xc5\x39\xea\xe6\x00\x3f\x3c\x25\x17\x19\xc4\x04\xe5\xc5\xb8\x94\xf1\x2b\xab\xae\xdd\x11\x3a\xff\x67\x4e\xd3\x14\x3d\x10\xfc\x39\x2d\xd8\xde\x20\x9b\xfa\xf4\x21\xc8\x42\xf0\xbe\xc1\xc6\x04\x27\x28\x4b\xe9\x7a\x4f\xf0\x68\x36\x4d\xd1\xe7\xb1\xc8\xc1\xbb\x37\x90\x88\xac\x8a\x7b\xcc\xe2\xf9\x9e\x20\xce\x26\xd9\x1e\x20\xa5\xde\xcc\xc5\x7b\x11\x02\x06\xf3\xa7\x74\x36\x16\x37\xe1\x77\x1c\x3b\xe7\x77\x39\x3b\xfb\x82\x28\xa7\x7c\x7f\x30\x71\xc1\x30\x7d\x14\x0d\x5e\x30\x98\xa6\x63\xd1\xdf\xae\x7a\x46\x03\xcb\x72\xda\x61\x0c\x75\x0d\x7f\xb1\x4c\xf5\x35\x02\x57\xe3\x1d\x07\xae\x74\xed\x2e\x43\x4e\x72\x9a\x89\xc9\x7e\x2c\x7b\x7e\x27\x83\x90\x26\x28\xa3\x09\x9e\x7e\x17\xd8\x16\x39\xa6\xab\xef\x02\xd3\xbb\xe5\x04\x3d\x02\xa2\x74\x55\x8c\x17\x68\x41\xf3\xf5\x38\xc5\x0b\xbc\xab\xf5\xb2\x2c\xb8\x59\x85\x57\x38\x45\xca\x21\x55\xa6\xc0\xce\x22\xa0\x32\xb3\x32\xd7\xa1\xd4\x4d\x10\xcd\xd1\x84\x52\x36\x56\x1a\xf5\x1e\xb3\xf9\x98\xae\xba\xb1\xf4\x03\xe5\x0e\xc0\x38\xe0\xa6\xed\x5e\x1d\xce\x8c\xe6\x6c\x2c\x32\x46\x05\x39\x89\x21\x29\xcd\x36\xc8\xf4\x28\x8e\xb7\x74\xd6\x0a\xf4\x53\xf4\x87\x5a\x81\xa2\x9d\x41\x8a\x1c\x65\xe3\x0c\xe5\x63\x2e\xb0\xf6\x09\x5d\x98\x11\x30\x66\x63\x19\x26\xdc\x8f\xdb\xaf\x3d\xb6\x0c\xe5\x98\x26\x38\x16\xbe\xe5\x78\x96\xd2\x09\x4c\xc7\x98\x4c\xe9\xb8\x58\x93\x66\xcc\xcb\xde\x99\x75\x61\x39\x23\x69\xd5\x35\x3b\x03\x19\x7f\x2c\x4d\x34\xa9\x45\xd3\x8a\x65\x1c\xa3\xa2\x98\x2e\x53\x10\xd3\x45\x96\x22\x7d\x36\xc9\x11\xc4\xd5\x9f\xef\x34\x9f\x0d\xb1\xad\x06\xb9\xf1\xfd\xc4\x56\x84\xdc\x08\x86\x0b\xf9\xfc\x1e\x66\x8e\xe8\x37\x8e\x2a\x09\x18\x49\x61\xae\x8b\xe5\x19\xbb\x66\x9d\x62\x5d\x30\xb4\xe0\x75\x6a\xdb\x47\x56\x48\x91\xb6\xb2\xc1\xed\xd1\x97\x2f\xbd\x11\xbd\x43\xe4\xeb\x57\x7d\x03\x52\x79\xe2\x51\x96\x2e\x67\x98\x34\x3b\xba\x25\x25\xae\x95\x19\xac\xe0\x9e\x80\x7f\x47\x12\xc6\x97\x8a\x24\xb7\x47\x29\x9d\xc9\x6c\x51\xb7\x47\xaa\xc7\xb3\xb2\xe5\x25\x9d\x5d\xf2\x22\xde\xfd\x33\xb3\x11\xcc\x70\x1c\x71\xab\xb8\xe0\xad\xbe\x7c\xe9\x9d\x66\x38\xfe\x95\xff\xfd\xf5\x6b\xbb\x62\x8e\xa6\x39\x2a\xe6\x0c\x2f\x50\xd9\x09\x6f\x70\x23\x7f\x1f\xe1\x05\xb2\xf7\x50\x2c\x27\x25\x8b\x46\x09\x4a\xe1\xda\xe8\x6e\x68\x14\x9e\xf3\x32\x4b\xd7\xe3\xb2\xeb\xf8\x0e\xe5\x63\x98\xfc\x6b\x59\x30\x3b\x0e\xbc\xc2\xa9\x28\xb7\xe3\xb2\x2c\x50\xce\x27\xb8\xd6\xfa\x43\x81\xf2\x2b\xe8\x42\x9f\x6b\x4c\xc8\x50\x74\x87\xd6\x51\x06\xd9\x5c\x36\x3d\x5e\x16\xf9\x71\x4a\x63\x98\x1e\x23\x16\x1f\x8b\x09\x44\x39\x3b\xe6\x1d\xf4\xee\xd0\xba\x09\x29\xc6\x91\x8c\x68\x94\x3d\x0f\x05\x37\xf5\x13\x44\x18\x9e\x62\x94\xb7\x7b\x8f\x71\xb4\x5a\x2c\x22\xce\xf0\xb2\xd5\x6f\x65\x6a\x39\x51\xf5\xcb\x97\x08\xe0\x29\x20\x08\xf4\x3e\x2e\x16\xe7\x74\x01\x31\x11\x97\x6a\xbf\x7e\xb5\xc1\x49\x44\x85\xb2\xff\xb2\x89\xea\x98\x43\x43\x69\x81\x82\x1a\x3b\x90\x17\x30\x48\xc2\x41\xd4\x91\xab\xb8\xd1\x83\x60\xc5\xec\x26\x92\x55\xd3\x20\x44\x2d\x40\xba\x91\x6d\x4c\x94\xb0\x61\x22\x86\x08\x24\x15\x9f\x8d\xc4\x9f\x46\x5b\x35\xba\x33\xce\x42\xe0\xf6\x48\x9e\xbe\x69\x0c\x2d\x9d\x18\xd3\x77\x45\x09\xf2\x90\xe9\x8a\xfe\x0e\x31\x7b\x4b\xf3\xa1\x8c\x89\x5e\x64\x37\x08\x26\x5c\x6e\x17\x2e\xf0\x84\x46\xf7\x10\xb3\x68\x4a\xf3\x48\x45\x52\x23\x94\x45\xb9\x6e\xa7\x16\x9a\x07\xb2\x58\x6e\x76\x7c\x54\xe5\x77\x39\xcc\xe6\x17\x24\xc9\x28\x26\xec\x34\x49\xc4\x2a\x05\xb7\x47\xcf\x9b\xc8\x68\x04\x66\xbc\x41\x84\x54\x8b\x08\x26\x89\x5e\xf5\xe0\xc4\x94\x5a\xb2\x95\x29\x10\x7c\x3d\xd6\xe4\x42\xad\x43\x31\xca\x7f\x72\xc4\x85\xa1\x05\xfe\x0b\x93\x04\x7d\x7e\x06\xfe\x0b\x33\xb4\x00\x27\xff\x9f\x0b\xac\xfa\xb9\x00\x5f\xbf\xaa\x51\xcb\x96\x5f\xbf\x3e\xfb\xf2\x45\x90\xe3\x0b\x30\xa0\xde\x3d\x03\xff\xb5\x02\x27\xff\x9f\x82\xcb\x19\xe1\xcb\x17\xf0\x5f\x77\xe2\x5f\x92\x47\x78\x05\xf9\x3b\x9e\x02\xf4\x89\x17\xde\x1e\x49\x71\x63\x00\xd5\xc4\xfe\xaa\x7e\xf8\xa3\x1a\x97\x7b\x32\x4e\x93\x44\xbf\x58\x3d\x14\x11\xe8\x62\x44\x6f\x12\xa9\x13\x5c\xdc\xc1\x29\x8f\x54\xa3\x48\xc6\xad\x8b\x88\xd1\x28\x57\xed\xb4\x18\xf6\x80\xf6\xb0\x87\x3a\xbe\x36\x50\x46\xd0\x90\x40\xf6\x4e\x98\x40\x7d\x32\xa5\xc3\x35\x71\xae\x09\x65\x3e\x45\xda\x7c\x8a\xb8\xf9\x14\x49\xf3\x29\xe2\xe6\x53\xc4\xcd\x27\x85\x5c\x67\x2f\x4d\x0c\xab\x7e\xa4\xfb\x10\x25\x48\x70\x65\x82\x52\xc4\x50\xc4\xd5\x17\x5d\x32\x05\xfd\x5a\x54\x39\x17\x35\xce\x45\x85\x91\x2c\x6f\x68\x21\x15\xe3\x88\x44\xc0\x44\xb5\xed\xcb\xdf\xfa\xfc\xa7\x66\x75\xfe\x5b\xa4\x02\x22\xa5\x00\x11\x35\x07\xf2\x47\xb7\x18\x11\x9b\xcf\x16\x01\x99\xd1\x64\x92\x44\x89\x12\xc1\x4b\x82\x8f\x19\x89\x0c\xb1\x74\xfc\xe6\x3c\x6a\x58\x22\x56\xd1\xc7\x01\x45\x93\xc4\xa2\x6b\xb8\xed\xbd\x9f\x2e\x38\x24\xdd\x87\x53\xca\x6a\x71\x91\xcd\xd7\x05\x57\x2f\x1e\x71\x1d\x65\xa2\xbc\x85\x71\x29\xf2\x48\x0c\x33\xd9\x7e\x95\x42\x81\xb3\x5a\xdc\x1f\x53\x48\xac\x8a\x55\x37\x55\xfb\x4e\x91\xde\x77\xaa\x4b\xa2\xf7\xb2\xb4\xaf\x0a\x9b\xb6\x09\x9f\x96\x49\x1e\xe9\x7d\xa6\x88\x50\x22\x98\x59\x01\x19\xbc\xb9\x19\xa9\xa2\x2b\x4a\x38\xeb\x5a\x00\xac\xf2\x69\x53\xd3\x7c\xbc\x79\x5b\x53\x36\xf5\x06\xe9\x2b\xc5\xbf\xa2\xee\xe5\xab\xeb\xa5\xbd\x1e\xfa\xcc\x22\x65\x67\x6a\x3d\x20\x2a\xeb\xb5\xae\xb2\x24\x56\x1a\x20\x90\x11\x57\xf9\xd4\xc4\xd4\x30\x9c\x3c\x8a\xd9\x68\x73\xbd\x42\x79\x0a\xd7\x96\xa6\x4d\x2e\x51\x07\x5b\x2b\x55\x22\xce\xa2\x88\xb1\x34\x55\x81\x52\xd9\x32\x95\x58\xa8\xc6\x6e\x8f\x50\x02\xab\x0c\xc4\x10\x6e\xff\x77\xa3\x92\xc2\x9a\x9b\xfa\x36\x82\x6c\xd3\x45\x09\xab\x4e\xa1\x3a\x33\x2d\xe0\x67\xb1\xf0\x8a\xa8\x58\xc5\x52\x09\xab\x69\x7f\x0f\x3f\x5f\xf1\x82\xe1\x2a\x16\x3a\xb0\xc1\x85\xa5\xc3\x13\x6d\x40\x70\xbb\x6b\xd4\xae\xb9\xf7\xe9\xd9\xc7\x14\x69\x6c\xdd\x33\xd4\xd1\x4b\x03\x40\x7d\x5a\x9a\x53\x03\x0c\x9d\x50\x66\xbd\xfa\x4e\x28\xa5\x14\xde\xd6\x84\xaa\xb7\x0f\xa7\xd3\xf7\xc5\x4f\x8f\x4f\xa5\xbb\xe5\x04\x7d\x67\x44\xfa\x16\x8b\x2e\x86\x8c\xa5\x07\x42\x05\x13\x2a\xcb\xe9\x02\xb1\x39\x5a\x16\x07\x62\x75\x12\x4b\xed\x82\x1f\x28\x55\x52\xca\x46\xb2\x2a\x2e\x80\xb3\x28\xa3\x54\x58\xd8\xff\xac\x37\xb4\x92\x0f\x91\xa4\x72\x09\x24\x88\xfe\xe0\x42\xf4\x7a\xf4\xcc\xd6\x40\x5e\xe6\x6d\x35\x19\xf2\x9f\xab\xd0\x6b\x89\x63\xf5\xe7\x1f\xf5\xa9\x18\x32\xc8\x70\x5c\x77\x89\x2d\x51\x2b\xe9\x59\x47\x85\xa8\x5d\x75\x6b\x69\xec\x0d\x8e\x9d\xaf\x09\x5c\x84\x77\x97\xc8\xea\x65\x7f\xd6\xe6\x3e\xa3\x5a\x38\xdb\x7a\x5b\x24\x12\xdb\x22\x15\xf2\x04\xb2\x33\x55\x34\xe4\x25\x2d\xc7\x42\x8e\x36\xda\xc7\x94\x0a\x48\xdb\x4c\x6c\xbd\x61\xd8\xf4\x56\xc0\xb8\xfb\xbb\x03\xda\x03\x9a\x6c\x82\xac\xa8\xbe\x0d\x8a\x32\x5c\x13\x89\x63\x86\x51\x81\xff\x44\xda\xa7\xa4\x89\x9c\xe3\x33\x5e\x32\xc4\x7f\xa2\xa6\x35\xcf\x7d\xef\x3d\xcc\xcf\x95\xb8\xde\xb3\xf1\xec\xd4\x9a\x6d\x3a\xf0\x1a\xee\x2a\x60\x65\xc1\xdd\x5c\xdf\xc2\xa1\xa9\xb8\xde\x05\x59\x1d\x8d\xd6\x8e\x8d\x78\x4b\x59\x51\x54\xde\x05\xd5\x71\xc1\x21\x2f\xd1\x2b\x46\xfc\x6f\x4e\x0b\x16\x89\x33\x3e\xfe\x2d\x18\x98\x65\xf5\x90\x4f\x98\x67\x57\x97\x3d\x17\xd9\x8d\x3a\x61\x69\x13\x01\x59\xa4\xcf\x5f\x96\xf4\xae\x1a\x78\x9d\xf0\x46\x53\xb2\x4c\x53\xa7\x44\x92\x41\xb1\xf7\x34\x41\x16\x1c\x54\x50\x6d\x41\x93\x4a\x6c\x54\x0d\xbc\x38\x34\x9a\xb6\x71\xa8\xaa\xb6\xb7\xb3\x7e\xa5\x05\x3b\xe5\x93\xe0\xde\xcd\x8a\xb1\x8c\x24\x56\x39\xc5\x4d\xb9\x56\x5e\x10\x39\xec\xb3\x3c\x99\x7d\x96\xa0\x0d\xb1\x27\x19\x9a\xda\x38\x72\xa7\xa5\xda\x2a\x85\xa4\x1e\x63\x94\x21\xca\x5a\x65\xee\xdd\xc1\x0c\x9b\x95\x39\x4b\x9e\x0e\xfa\x96\xca\x95\xb6\xa8\xf6\x7e\xe5\x75\xdb\xb3\xfe\xf9\x4d\x0b\x11\x29\x63\xeb\xf5\x85\xd0\x36\x2d\x07\x53\x70\xc6\x30\x33\x96\x86\x10\x98\x31\xcc\x46\x6b\x8b\x75\xc0\xa9\x82\xc9\x34\x87\x26\xe6\x7d\xfe\x43\x89\xb7\x9a\xcd\xde\xfb\xd1\x87\x06\xf7\xbe\x1f\x7d\x00\xcf\xeb\x54\x2e\x6f\x1a\x44\x0b\xb6\xd4\xc1\x2c\xde\xb0\xbd\x04\xea\xab\x81\xd7\xfa\x15\xc1\xe4\x86\xd2\x45\xbb\x1b\x5d\x62\xdb\xc4\xaa\x75\x19\xcd\x11\x4c\x72\x2a\x63\xd3\xb2\xef\x0a\xaa\x13\x87\x0a\x58\x4c\x70\x44\x10\xab\x76\x5b\x42\x94\xf0\x0c\x32\x74\x0f\xd7\xa6\x09\xf1\x4e\xfe\xe4\x54\xc1\x39\x5d\x32\x64\xd3\x94\x9e\x8e\xaa\xd6\x89\xde\x4c\x7f\xde\x13\xff\x1d\x3f\xb7\x76\x63\x60\x78\xef\x40\xce\xde\xc8\xe2\x65\xfc\x61\xb7\x24\xbc\x5c\x1c\x68\x43\xfc\x88\x41\xe3\x66\x6b\x5f\x98\xf8\x10\xed\x3d\x44\x7b\x9f\x4e\x1c\xf3\x10\xed\x3d\x44\x7b\x0f\xd1\xde\x43\xb4\xf7\xe9\x13\xeb\x10\xed\x0d\x8b\xf6\xca\x48\x4b\x94\xe4\x34\xe3\x34\x53\x96\xb3\x4a\x3b\x23\x63\x2d\x5f\x6d\x2d\xc2\x63\x33\xb6\xee\xca\x8b\x2e\xb7\xfa\xc4\x5b\x82\x06\x34\xe9\x4f\x3d\x3d\x46\x74\x55\x44\xf3\xfb\x88\x4e\xa7\x29\x85\x89\xf6\xca\x72\x4c\x57\xba\x95\x11\x06\x52\xd1\x8b\x80\x40\x90\x1e\x75\x93\x91\xea\x01\x0d\x19\x34\x69\x85\x34\x5c\x66\x9b\xec\xbe\x05\x97\xfb\x73\x8c\x8f\x1a\x9c\x80\x2f\xe5\xc8\x12\xf1\x77\x79\xfc\x0a\x54\x1e\x10\xfa\xa4\xe3\x3b\x67\xe2\xc6\xf9\x70\x78\x69\x3f\xa6\x25\xec\xf1\x42\x1e\x87\x01\xb7\x47\x55\xbc\x47\x9d\xde\x4a\x6e\x8f\xac\x9e\x17\xef\xe0\x66\x49\xde\x4d\xb2\x33\xcd\x4b\x0e\x3e\x57\xc1\xe4\x82\xe1\xb8\x28\xf1\x97\xfd\x08\xe4\xe9\x74\x5a\xa1\xde\x34\x69\xcb\x89\x09\xee\x76\x36\xc9\x44\x68\xb1\x7d\x92\xfa\x4b\x2b\x2e\xd1\x7d\xfe\xb3\xde\x20\x28\x86\xf0\x3d\x44\x90\x7c\x01\x16\x4b\x9c\xe1\xdd\x24\x2b\xe3\xd1\xc6\x29\x95\x16\x6a\x01\x4d\x5b\xe7\xae\xed\x7e\x48\xd8\x89\x75\xa3\xb2\x79\xe0\xbb\x75\xdc\xdb\xde\x64\x0f\x07\xbe\x25\xb4\x3b\x38\xbd\x83\x4e\x85\x31\xc9\xe9\x1d\xca\xf5\x40\x7e\xe3\x75\xdf\xc8\x9f\x5a\x88\xc9\x06\x32\x47\x44\x13\x2d\x8e\x44\x71\x2c\xba\x8a\x64\x0d\x2b\x36\x35\x10\xbc\x4d\x07\x8c\x38\x67\x2e\x18\xd0\xd1\x3e\x86\x9e\x56\x8c\xea\x39\xb5\xb2\x64\x97\x0e\x4e\xe9\x32\x11\x67\x43\x9d\xe4\x8c\x65\xb4\x20\x32\x26\xbb\xdd\x4f\x47\xd8\x81\xb7\x11\x7f\xc8\xe5\x66\x65\x12\xd9\x46\xad\x78\x19\xf2\x33\x6b\x3b\xa3\x14\x2d\x41\x56\xff\x61\xeb\x7b\x2c\x22\xe4\xad\x1d\xcd\xa7\x7a\x8d\xc5\xb2\x8b\x47\xa0\x48\xa3\x75\x03\xc9\x0c\x35\xf6\x89\x1a\x1b\x85\x66\x4d\xb5\x11\xa5\xeb\x89\x8b\x63\x51\xc6\xa7\xdd\xdc\x90\xd0\x4d\x8a\x01\xca\xaf\xd4\xb6\x84\x97\xc4\x43\x91\x1c\xc2\x79\x4f\x88\xaf\x71\xc1\xf4\x8f\x41\xd8\xb2\x7f\x2d\x59\x6a\x82\xeb\x37\xb4\x96\xfc\x23\x4a\xe3\x9c\xd5\x4a\xcf\x04\x19\xe5\x48\x0d\xcd\xd8\x16\xeb\x1b\x93\xc1\x14\x0e\x82\x14\x78\x8a\x63\xc8\x50\xf1\xa8\x24\x91\x22\xa6\x12\x98\xd2\x88\x51\xa3\x06\xa0\x29\xc1\xc2\x2a\x6a\x12\x1b\x15\x15\x95\x4b\x3a\xaa\x45\xea\xa2\x9a\x88\xe3\x9f\xc6\x31\x5d\x12\x37\x13\xd5\xc7\xab\xf7\x4e\x1e\x81\x7a\x5e\xbe\xdf\x14\xf5\x6a\x37\xf4\xd1\x50\x37\x18\xf9\x43\x81\x54\x54\xf8\x86\xa6\xc8\xc9\xd1\xf9\x04\xc6\x3d\xb8\x64\x73\x9a\xe3\x3f\x45\x12\x1c\x4b\xaa\xbc\x0a\x4e\x63\xdc\x0f\x2d\x15\xed\x94\x3d\x31\x99\x42\x3c\xd1\x79\x72\x4b\x22\x00\x33\xfc\x2e\xa7\xcb\x4c\xa7\xb2\xd3\x6f\x26\xd6\xd3\xd2\x45\x32\x3f\xe6\x6d\x99\xed\x4e\x4c\x8a\xfa\x3b\xa3\x89\xfa\x57\xe9\x62\xc9\x3f\xcb\xfb\x33\xb2\x70\x85\xca\x92\x1c\x65\x29\x5f\xde\x98\x92\x0a\xad\x7a\x2b\x28\x79\x46\xfc\xb8\x42\xf9\x44\x23\x92\xaa\xc4\x7e\x11\xb8\x87\x2c\x9e\xcb\x7f\xce\x90\xfa\x2d\xab\x7e\x8b\x73\x04\x19\x92\xff\x96\x29\xcb\xe4\xbf\xe5\x45\x8d\x4d\xc6\x2e\x27\x65\x01\xb3\x0d\x91\xd9\x06\x03\x5b\x02\x46\x07\x56\x22\x17\xa3\xfe\x35\x29\x73\x31\xb6\x90\xfc\xe9\x7f\x7f\xb2\xf7\xe5\x64\x63\x47\x87\x92\xa3\x73\x9a\xea\x29\x35\x7e\x99\x60\x92\x60\x32\xb3\x77\x6e\x78\x00\xe6\xad\x96\xba\x67\x68\xc3\x50\xdd\x8b\xe9\x89\x90\xa6\x13\x31\x51\xaa\xf8\x28\x4b\x21\xd1\xe8\x89\xdf\xcb\x37\xa8\x83\xc9\x02\x63\xdc\x2b\x63\xa8\xed\xde\x60\x8c\xdb\x80\xdb\x3f\x3b\x09\xa1\x0d\x32\x4b\xcf\x6a\x65\x63\x32\xf3\x4e\x84\xaa\x66\x3e\x3f\x13\xc6\x94\xc6\x3c\x7c\x28\xd0\x69\x8c\x4f\xc9\xfa\x7e\x8e\x72\x74\x76\x73\xde\x3d\x19\x9c\x2e\xf0\xde\x8e\x12\xca\x66\x45\xb9\x58\xc4\xf9\xae\x0d\xd0\xda\xb4\x33\x11\x88\x51\xdd\xcd\x26\x59\x21\x32\x10\xb7\xfe\x3e\x96\xb7\xc6\xb7\x99\x07\x98\x65\x85\xbd\x6b\x99\xd1\x69\xd1\x92\x64\x05\xd2\x3f\x24\x10\x2d\x28\xa9\xfe\x16\xc8\x4c\x97\xa9\xfe\x25\x88\x05\x3b\x65\xb0\x16\xad\x8e\x41\x6a\x69\x63\x83\xad\x6e\x24\x71\x26\x8b\x69\x8e\x68\xd1\x8b\xe9\xc2\xde\xa1\xea\x45\xb5\x68\xf5\xd2\x12\x74\xae\x89\x94\x77\x96\xac\x3d\x10\xc8\x34\x1f\x1f\x4f\x31\x81\x29\xfe\xb3\xd2\x04\x66\x61\x35\x50\x49\x08\xee\xac\x39\xc7\xdd\x94\xbe\x7e\x39\xed\x95\xc7\x9d\xe8\xcb\x8b\x85\x25\x3a\x75\xb4\x2d\xf8\x46\x40\xdf\x8f\x7c\x0c\x75\xa2\x9e\x14\xb6\x62\xdf\x78\x1e\x78\x7f\x98\x18\x9a\xd8\x85\x94\x7e\x7d\xce\x25\xe0\x9a\x6f\x4d\x86\x23\xe7\xe3\x7d\xe3\x45\x30\xbb\x18\x6b\xbd\xeb\xb5\xbf\x7e\x5d\xd2\xac\x0c\x2d\x87\x8a\x07\x2e\x9d\x7a\x34\x43\xa4\x98\xe3\x29\xe3\x5a\xc2\x2b\xa8\x36\xe6\xb5\x76\x8f\x09\x2e\x62\xba\x42\xf9\x5a\xab\x25\x1b\xe9\xcc\xf0\xba\x5b\x54\xb4\xba\xf5\x30\x48\x46\xd3\xad\x14\xa0\xbb\xb3\x5d\x96\x51\x42\x0a\x1f\x4e\xb2\xf8\x01\xd1\xf2\xf8\x8a\xdf\xa5\x3f\x62\x7a\x7a\xdf\xc2\x1f\x71\xfb\x20\x1b\x1b\x53\xb5\xdd\xa7\xe6\x7e\x87\x5f\x32\x38\xe4\x50\xe9\x2b\x99\xb8\x98\x2c\xa2\xc4\x6b\xa7\x21\xb3\x77\x6f\xe2\x5b\x58\x97\xa6\xc1\x27\xff\xed\xb0\x7b\x6e\x8f\xfe\xb7\xb1\xa3\xf8\x2d\xcc\xec\xfd\x9a\x94\xbb\xd9\xd0\x61\xa6\xd7\xad\xdb\x9a\xd9\xc2\x58\xf9\xae\x0c\x11\xfd\x98\x8c\x7d\x1d\xb6\x9e\xe0\x8a\xda\xef\xd3\x3c\xd4\x04\x35\xac\x46\x5e\x51\xec\x0f\x59\x2d\x5f\x17\x25\xb6\xb5\x7c\xff\x32\x2a\x7f\x7f\xe6\x98\x12\x2e\xad\x70\xe7\x86\xda\xf7\x8d\x8c\x94\x04\x04\x43\x4f\xea\x71\xdc\x5d\xf4\x74\x4e\x53\x74\x83\xa6\xa2\xb1\xa6\x87\x07\x73\x5e\xcd\x62\x36\x04\xa0\x59\x2c\xe5\xab\x47\x42\x99\xdb\x83\xc0\x7b\x0a\x5a\x3f\xe2\x3c\xd4\x83\xd2\x4f\x76\x1e\x4c\x34\xb7\x9f\x87\x4d\x23\xf0\x96\x37\x64\xb2\xc2\x20\xf9\xb9\x08\x88\x0c\x3d\xdb\x5f\x8d\xce\xc3\xba\x7d\x78\xbb\xb5\x7c\x58\x44\xca\xd3\x21\xcb\x21\x43\x33\x9d\x7b\x54\xa6\x09\xbc\xa1\x69\x8a\xc9\xec\x43\x29\x71\x1b\x0f\x0f\x2f\xb8\x10\xba\xac\x3f\x06\xe5\x1d\x78\x98\x41\xcd\xd0\x22\x4b\xab\x37\x71\x5b\x2f\xa6\xb4\x9e\x9f\xea\xec\x33\xa4\x57\x41\x67\x42\x28\x13\x2c\x6a\x82\x2f\xe2\x39\x4a\x96\x29\xca\x7b\xe2\x09\x9c\xde\x5d\x79\xc1\x89\x2f\xbf\x38\xc7\x0c\xc7\x30\x8d\x32\x9a\x9c\x80\x9f\x8c\x37\x94\xab\x13\x82\xbc\x5e\x11\xe7\x90\x13\x55\x6f\xbb\xb8\xea\x65\x34\x67\xbc\xd6\x2f\xaf\x5f\xbc\xd4\xb5\x6a\xaf\xc0\xf0\x81\xa9\xf4\x33\xe6\x6b\x3b\xb2\x60\xd0\x3f\x6f\xff\xd8\x1f\x9c\xd5\x7f\x2c\x6a\x8b\xe5\xaa\x6b\xa1\x98\x11\xee\x05\x9c\xa1\xc1\x32\x4d\xe5\x6e\x67\xe3\x18\x0e\xae\x97\x9a\x44\xd4\xef\x08\x7d\xf9\xd2\x84\x61\xbd\x00\xc2\x68\x8a\xf2\xd6\x4c\x44\xe5\xc3\x30\x27\xe0\xe2\x33\x2e\x58\x39\x73\xdc\xa0\x3f\xb3\xa5\xe4\xd5\xfd\x96\x09\xeb\x6f\x8d\x33\x06\x02\x5f\xb9\x07\x1c\xe3\x33\x82\xcf\x45\x8d\x12\x4e\xfd\x40\x42\x39\x38\xf9\x6e\x7a\x7d\x28\xf2\xb7\x7a\x83\x02\xc5\xcb\x1c\x33\x01\x0f\x7d\x66\x27\xcd\xcd\xb8\x41\x99\x4d\xb8\xeb\xb4\x17\xe7\x11\x5d\x57\xcf\xa4\xe3\x60\x61\x0c\x33\x38\xc1\x29\xb6\xbf\xdc\x93\xd8\x1f\xa6\x1d\xfe\x63\x38\x3e\x3d\x7f\xdf\xbf\x32\x0b\x57\x34\x5d\x2e\xd0\x7b\xb1\x4f\xd5\x68\x65\x10\x35\x9a\xb4\x1f\x41\x5e\xf0\x36\x03\xc8\xe6\x27\xe0\x78\x41\xd8\x71\x59\xad\x96\xaf\x6f\x90\x63\x2a\xc8\x93\x42\x91\xa3\xaf\x39\xf0\xcc\x2c\x97\x3c\x2a\xc5\x63\xa4\x4f\xab\xe8\xa5\xe7\x3a\x4a\x27\x1d\xb5\x33\x82\xb7\xe8\x0a\xc6\x98\xa3\xad\x4b\x2c\xf4\xb6\x66\x80\x8e\x42\x84\x51\x83\xf1\x7e\xa5\x05\x3b\xf0\x5c\xad\xf0\xea\x62\xe4\x2e\xe4\x2d\x07\xa3\x9b\xd3\xb3\x0b\x57\xd3\x9b\xd3\xdf\xcd\x22\x44\x56\x0e\x06\xfe\xed\xc3\x9b\x8b\x9b\xab\x8b\xd1\xc5\x70\x7c\x75\x7d\x7e\x31\xbe\x3a\x7d\xdf\x02\xba\x82\xe9\x12\xbd\xcd\xa9\xed\x21\xf0\x29\x46\x69\xa2\x4d\x1e\x6b\xa1\x5c\x06\x5c\x80\xf7\xb8\xf1\xcd\x99\xcb\x8e\xca\xe8\xe2\xea\xf4\x6a\x64\xed\xbc\x75\x86\x32\xf8\xe4\xa6\xf7\x18\x8b\x0d\x0b\x41\x85\x8b\xc1\x3b\x27\x1e\x0d\xc6\x96\x91\x2a\xcf\x41\xe9\x6d\x01\x07\x9d\xd3\xae\xf7\xde\x66\x4c\xdd\xf9\xf5\xe0\xed\xe5\xc5\xff\x1b\xbf\xbf\x3e\xb7\xcf\xee\x09\xa0\xf2\xe0\xe9\x13\x1a\x87\x79\xeb\x52\x3c\xed\xa0\x92\x39\x76\x4e\xe1\xfb\x0f\x97\xa3\x0f\x43\x07\x7e\xad\x75\x6c\x70\x88\xea\x40\x65\x3b\x55\x26\x46\x67\x77\xe7\xfd\xe1\xe9\x9b\xcb\x8b\xf1\xef\xa7\xfd\xd1\xf8\xed\xf5\xcd\xf8\xea\x62\xf4\xfb\xf5\xcd\x6f\xdd\x08\x78\xa8\x7c\xfe\xe1\xe6\x74\xd4\xbf\xbe\x0a\x85\x2a\xb3\x79\xa8\x37\x9b\xea\x03\x70\x26\x80\x7b\x10\x0d\xe7\x82\xc1\x4d\xf6\x10\x20\xed\x7a\x1a\x0a\x57\x21\x2b\xd8\xca\xd7\x6e\x02\xa9\x0e\xd9\xb6\x2a\x9a\x50\xf2\xa5\x77\x3c\xad\xe2\x0d\xda\x56\x18\x38\xa1\xa8\xab\x00\x1c\x98\xf6\x63\xc4\x34\x84\x81\x45\x2c\x3e\xae\x5d\x26\xa0\xab\xe2\x78\x02\x0b\x24\x28\xd7\x4b\xdc\x98\x47\x5b\xf6\x56\x5f\xaa\xc7\x4d\x85\xfa\xab\xb4\xc6\x49\xf1\x51\xc0\xf5\x2c\x97\x06\x8d\x8f\x09\x6f\xd5\xc4\xc3\xc0\x37\x5f\x92\xc8\x5a\x27\x47\x30\xb9\x26\xe9\xba\x6e\xd3\xd7\x47\x92\xd3\x0c\xce\xa0\xcc\x6b\xcf\x51\x1c\xd1\x52\x41\xec\x47\xca\xc8\xe7\x66\xa2\x50\xde\x6e\x55\xb7\x2e\xc8\x14\xaf\x10\x41\x45\x31\xc8\xe9\xa4\xf9\xde\xc0\x14\xe2\x74\x99\xa3\xd1\x3c\x47\xc5\x9c\xa6\xc9\x09\x78\xf1\xbc\x5e\x63\xce\x58\xf6\xce\xf2\x4a\x59\x26\xd1\xa8\x82\xea\xb5\x42\xe1\x6e\xfd\xfd\xf9\x2f\xcf\x9b\x25\xe2\x65\x52\x74\x02\x7e\x1d\x8d\x06\xf5\x32\xb1\x7b\x00\x53\x91\x59\x79\x88\x62\x4a\x92\xe2\x04\xbc\x78\xd9\x80\x20\x33\xf4\x96\xe5\xaf\x1b\xc5\xea\x25\x01\x73\x3c\xf5\x0a\x2a\xd9\x6e\x09\xe0\xd5\xf3\xb6\x99\x69\x2e\x85\x30\x8b\xe7\xe6\xe2\xcd\xf5\xf5\x68\xfc\x7b\x7f\xf4\xeb\xf8\xfa\xa3\x4b\x4d\x54\x4e\xea\xc6\x37\x53\xaa\xae\x86\xc3\x4b\x9f\xca\x2d\xef\xc2\xd8\x79\xa1\x66\x22\xab\x5b\x37\x3f\x9c\x91\x6c\xb5\x83\x03\xd4\xd6\x41\x59\x6c\xaf\x2c\x54\x8b\x7d\xf5\xa7\xbb\xaa\x2f\x24\xc9\xd0\x43\x71\xa5\xca\xcf\x64\x0d\xb4\xe4\x2d\xac\x8e\x85\xd2\x80\x5b\x67\xc5\x98\x2e\x16\x90\x24\x27\xe0\x9f\xb7\x47\xc7\x13\x4c\x8e\x8b\xf9\xed\xd1\x1f\x66\x0d\x98\xcf\x0a\x59\x5c\x8d\x8d\x57\x4c\xe1\x92\xc4\xf3\x48\x62\x22\x11\xe9\xb5\x1a\xef\x61\x35\x9a\x94\xde\xdf\xb2\x11\xd7\x1d\x5a\xeb\xa5\x54\xed\xe2\x59\xf2\x2a\xad\xb9\x24\x21\xff\xd1\xa9\x01\x11\xcb\x71\xdc\x52\x28\x0d\x80\xbf\xbc\x7e\xf5\xd2\xac\xc2\x50\xbe\xc0\x44\x68\xe6\xf7\xa8\x28\x38\x5d\x24\x1b\x25\x68\x75\x6c\x14\x8a\xeb\x9f\xfe\x76\x8a\xbe\x6f\x71\x8a\x36\x14\x0f\x35\x5e\xda\x91\xd3\xdb\x0c\xb9\x8b\x18\xb2\x08\xcf\x92\xde\x31\x2c\x58\x24\x4f\x20\x3a\xf9\xff\x3d\xaf\xf4\x50\x8c\x2f\x30\x90\x08\x6c\xcd\xf7\xdb\x6a\x1a\xff\x2a\x09\xd4\x42\x7f\x69\xcd\x91\x23\x71\x49\x4a\x93\xff\x34\xbd\x87\xeb\x72\x75\xca\x91\x3b\x02\xc3\x4d\xd7\x4d\x04\xd2\x79\x4f\x0d\x22\xcb\xce\x69\xc6\xec\x50\x9a\x76\xb0\x1f\x0c\x62\x71\x1b\x8c\x85\xfa\x7e\x28\xb5\xca\x1e\x0a\xfa\xa1\xd4\x2a\x87\x39\x4d\xb1\xbe\x57\xd7\x80\xd8\xf1\x3e\x54\xf5\x61\x86\x16\x6d\x89\x1e\x01\x71\xa1\xa8\x95\x36\xb0\x2d\xe5\x25\xea\x55\xc5\x5e\x9d\xfc\x9b\x58\x10\x68\x91\xb1\xf5\x39\x6e\xbe\x6b\xb7\x40\x09\x5e\x2e\x4e\xc0\x7b\xf1\x88\xa0\x13\xf4\x37\x22\x91\xe5\x4a\xbd\x8b\x48\x62\xa9\xf4\x2a\xbf\xab\x92\x3f\xa6\xae\xf3\x38\xb0\x41\x7a\xc3\x19\x83\x0f\x71\x91\xa3\x4e\xcf\xb7\x93\x83\xb5\x43\x1d\xe2\xdd\x96\x38\x00\xab\xa6\x71\xfb\xb6\x9d\xab\x51\x60\x22\x01\x1c\xfb\xef\xa8\xee\xb2\x93\x6c\xbc\x6d\x7c\xfb\x23\x6e\x28\x37\xc6\x1f\x82\xdf\xbe\xf6\x95\x2d\x5d\x3f\xfe\xf6\xf2\x0f\xb0\x21\xbc\xe5\x76\xf0\x0f\xbb\xc5\x68\xe5\xcb\x96\x77\x88\xc8\x6a\x28\xea\xec\x2b\x96\x52\x3f\x61\x56\x7d\xe2\xc9\xdd\xb6\xf2\x92\x0f\xf2\xea\x6c\x1f\x1f\x87\x52\xb7\x5e\xf2\xca\xcd\x34\x85\xdf\x79\x94\x46\x17\x0e\xff\x31\x1c\xbf\xbf\x3e\xff\x70\x69\xdd\xad\xe4\xa5\x57\x7d\xfb\x4e\x66\x7f\x70\x36\xbe\xbc\x3e\xab\xed\x79\xb8\x03\x7b\xd7\x1f\x87\xe3\x9b\x0f\x57\xe7\xfd\x9b\x26\x2c\x15\x6f\xab\xdb\xed\x42\x4f\x39\x78\xe6\x2f\xed\x26\xb4\xa1\xd4\x2c\x71\x1f\x94\x56\x45\x13\xca\x82\x72\x21\xde\x0a\x07\x98\x90\x52\x3c\x39\xb6\x54\xf3\x45\xbd\xd1\x67\xd4\x7e\x0b\x57\x3b\xb2\x36\xa6\x69\x7a\xae\x0a\x76\x44\x57\x05\xf7\x59\x77\xf3\x95\x2c\xd4\xfa\x0b\x38\x39\x96\x29\xf1\x43\xaa\xcd\x63\xa7\x5d\x57\x9e\x80\x7f\x7a\xc9\x0d\x40\xa0\xe9\xd2\x89\x6a\x69\x8f\xe8\xe3\xfd\x6a\x37\xa3\xb0\x5a\x81\xa8\x3a\xcf\xbd\xad\x01\x58\xa7\x53\xd8\x38\xba\xec\xbf\xd0\x8e\x02\x26\x05\x04\x9b\x93\x6d\xf8\x4f\xd5\x9a\x0c\xb0\x11\xcd\xc1\x3c\xa2\x8d\xa8\xf3\x56\x8f\x2a\x2b\x11\xb8\x6c\xc7\x2f\x5f\x00\xa3\xff\x80\x8b\xb4\x5e\xfd\xdf\x00\x93\x04\x11\x06\x5e\x97\xc7\x11\xd3\x02\x39\xa1\x68\xf4\xd0\x74\x8a\x62\x76\x02\xae\xe8\xc5\x67\x14\x2f\x99\xe1\xff\xbb\x4e\x2a\x9a\xa0\x2c\x9b\x83\x26\xcc\xa1\x9a\xcb\xaa\xa9\xf0\xfc\x09\x4d\x50\x63\x5e\x09\x65\xe2\xdd\xda\x75\x77\xff\x81\x1d\x44\x39\x4d\x9b\xbd\x2c\x20\xb7\x89\x7d\x5d\x28\xab\x0a\x7c\x6d\x3e\xce\xbb\xbd\x25\x2e\x90\x79\x42\x66\xf8\x86\x1b\xa2\xa6\xb5\x3e\x9b\x64\x1d\xdb\x37\xef\x26\x99\x77\xef\xc6\x62\x9e\x83\xa6\x7d\x0e\x36\x3f\xe4\xd2\x7c\x27\x7d\xaf\x87\x24\xc2\x0e\x9e\xa9\xa4\x42\x28\x67\x5e\x13\xca\x52\x21\xb2\xe5\x9a\xda\x6e\x04\x28\x67\xc7\x0e\xd7\xc0\x6d\x78\xbf\x7b\x33\x18\x0f\x2f\x6e\x3e\x5e\xdc\x8c\xcf\xae\xaf\xde\x76\x5b\xdf\x16\x82\x55\xf9\x15\x7b\xce\xe3\x11\x0e\xbf\xcf\xa6\x40\x9a\x27\x9b\xcb\x2a\xfb\xf2\xfa\xdc\xd4\xf8\xfd\x74\x74\xf6\xab\x38\x47\x39\x1c\x58\x4e\x68\x96\xe7\x0b\x9a\x29\xe9\x75\xfb\xd3\xb3\xfe\x78\x78\x75\x3a\x0a\x00\xe1\xcc\xb9\xea\x81\xfb\xee\xf2\xfa\xcd\xe9\x65\xff\xea\xed\xb5\xfb\xac\xe7\x89\x7a\xe8\xa9\xba\x2d\xe8\x03\x7a\x73\xce\x67\xbd\xff\xce\x0f\x2f\xa7\x4b\x86\xc9\x4c\xa6\x97\xd4\xe1\x5a\x07\xd4\xe1\x3f\x86\xa3\x8b\xf7\xfb\x21\xc0\xb7\x59\xfd\xb6\x6e\xf6\xb6\x3c\xab\xea\xdf\xf2\xb8\xd0\x8b\x66\xc9\xd3\x3d\x2e\x54\xf9\x73\x41\x52\xb9\x43\x22\x17\xc2\xfe\x6a\x50\x4d\xfe\x78\xd5\x95\xec\xae\x43\xaa\xf9\xd8\xa3\xb3\xdb\x56\xaa\xc1\x3a\xfc\x10\x2e\x7f\xd8\x0d\x9b\x16\x06\x6d\xf7\x5d\xb2\x5e\x55\xb1\xbd\x67\x13\x7a\x06\xab\xec\xb5\x95\xb9\xd7\xd5\xab\x4f\x05\x79\xf9\xa6\xed\x00\x8b\x0b\xa8\x86\x0b\x3c\xa0\x49\xff\xad\xd5\xfb\xc5\x04\xb1\x48\x3c\xc0\xd2\x70\x77\xcd\xa4\xfd\x44\x2e\x45\xd1\x0c\x65\xb3\xd6\x4c\x08\x20\x74\x29\x26\x1d\x67\x30\x49\xf2\x13\x50\xbd\xc6\x62\x8e\xe3\xe8\xd9\x7f\x00\x00\x64\xb2\xdf\x9f\x7b\x2f\x7b\xaf\x7a\xaf\x8f\x4e\xc0\x51\xd3\x7f\x6f\xa7\x15\x30\x2f\x59\x8a\x5c\x02\x37\x2a\xec\x79\x5e\xe6\x12\x70\x79\xf7\x15\xa2\x65\x4e\xad\x1e\xa7\x50\xcc\xf2\xd4\x70\x9c\x67\xf2\xb2\x64\x55\xa2\xc8\xa1\xb8\x49\xf6\xad\x74\xb9\x04\x77\x6d\xe4\xe2\x02\xe2\x6a\xf0\x6f\xee\x4a\x97\x58\x5f\x40\xc9\xd2\x65\x0e\x53\x17\x6a\xca\x21\xc4\x64\xb6\x4c\x61\xee\xa8\x25\x1c\xf7\x98\x72\x5f\xbe\x7c\x18\x4c\x1c\xa6\x52\x81\x86\xf2\xb6\xb1\xa0\xc1\xea\x85\xf0\x44\x95\xb8\x12\x2c\x96\x98\x9e\x65\xc1\x68\x2e\x8c\x15\xe3\xa7\xe5\xa4\x1d\x57\x56\x5c\x00\xbe\x28\x56\x17\x02\xb7\xf2\xde\x69\x86\xc8\xe9\xa0\xff\xf1\xd5\xb0\xfe\x3b\x00\x09\x2a\xe2\x1c\x67\x4c\x33\x67\x7b\x40\x80\xde\x93\x02\xb0\x39\x02\x29\x9e\xa2\x78\x1d\xa7\x08\xd0\x29\x57\xef\x80\xca\x9b\xa6\x00\x13\x51\xae\xf6\x05\x2a\xe0\x59\xce\x81\xb4\xc2\xc5\x06\x43\x35\xc4\xb4\x08\x81\x14\x2c\x17\xb7\x73\xab\xdf\xc5\x04\x87\x55\x6d\x05\x2e\xcc\xea\x12\xdf\x9a\xe4\xcc\x5a\x21\xc4\x1a\x45\xac\xfc\x32\xcc\x50\x0c\x44\xa2\x0c\x24\x09\x93\xa0\x02\xe7\x28\x11\xd0\xc0\x94\xe6\x82\x38\xd7\x92\x38\x0d\x45\x66\xa7\x08\xff\xa6\x29\x5c\xd1\xe6\x36\xbb\x6f\xa8\xa0\x94\xca\x1b\x35\x72\x92\xa2\x12\x24\x1b\x11\x43\x34\xab\x91\x43\xa9\xe3\xe9\x32\x05\x31\x5d\x64\x29\xe2\xcd\x05\xcf\xb8\x97\x68\x00\x81\xac\x08\x56\x23\x9a\x50\x9a\x22\x48\x42\x06\x9b\xa3\x4f\x4b\x3e\x61\xb5\x68\x0a\x9f\x3c\x23\x0e\x51\x6b\xe8\x49\x74\x5a\x2e\xf2\x90\x08\xe6\xe3\x45\x26\x2d\x91\xd7\xfd\x49\xee\x2a\x53\x42\x4f\x25\x54\xb0\xca\x6a\xfe\xbb\x4d\x52\xeb\x27\x14\xde\x36\xa5\x73\x59\xd0\x96\xc8\xf5\xe4\x0c\xa6\x14\xae\x1e\x68\xd8\x50\xf2\x6e\x22\x73\x43\xc5\xe9\x77\x29\xf1\x5c\x55\xbd\xab\x51\x4e\x86\x73\x35\xc2\x3c\x87\xeb\x76\xa1\xdd\x08\xf4\x23\xd1\x89\x8a\xfc\x4a\xee\xef\x9f\x3b\x6a\xf8\x45\xa9\xfc\xb8\x0d\xb5\x7d\x6b\x3c\x15\xcc\xb5\x03\x00\x69\xa2\x6d\x0f\x60\x01\xe3\x1d\x21\x64\x34\xd9\x71\x10\x1c\x82\x6b\x96\x42\xda\xaf\x18\x6a\x7a\x19\x5d\xcd\xb7\x93\xe8\x9b\x05\x49\x4d\x69\xaa\x76\x12\xaa\x44\x52\xc7\xab\x17\x13\xc4\x60\x65\xd6\x9b\x60\x9c\xe6\x6f\x2d\xb4\xaa\x42\x17\x2f\x9e\xeb\xef\x96\xc8\x28\xcb\xb9\x7c\x4e\xef\x04\xc8\x44\x5a\xa4\xa6\x94\x6f\x8f\x46\x73\x5c\x94\xb1\x5b\x10\x0b\xbc\x71\x01\x96\x05\x4a\xb4\x31\x12\x9d\x5d\xf5\xab\xd3\x08\xb5\xfc\xd7\x96\x88\x74\x47\x0e\xaf\x00\xad\x52\x23\xc5\x46\xaa\x05\x65\xb3\xed\x94\xca\x45\x36\x6b\xaa\x93\x8b\x6c\xd6\x56\x24\x3a\x5f\xad\x4f\x53\x48\xed\x10\xaa\x42\xb7\x1f\x6c\x99\x31\x77\xab\x11\xeb\xf7\xd4\x9b\xc3\xd6\xbf\xb7\xc7\x5e\xcb\xd0\xfb\x14\x08\xb0\x83\x11\x61\x35\x20\x1c\xc6\x43\x65\x38\x3c\x85\x41\x57\x89\x8a\xb7\x1a\xf8\xbb\x37\x83\x21\x37\xba\x51\x73\xf0\x65\x41\x9b\x00\xf5\x5c\xc9\xdd\x44\xb0\x7a\x99\xa6\x8f\xd9\x12\x1f\x0f\x65\x6a\x36\x32\xd3\xf5\xca\xc4\x69\x56\x9a\xc9\x12\x1b\xd5\x86\x04\xb2\x77\x02\x4e\x9f\x4c\x69\x93\x74\xf5\xd2\x36\xfd\x2c\xf9\xf1\x4c\x13\xb4\x11\x10\x7f\x02\x76\x68\x4d\x45\xd4\x47\xc7\x75\x03\xf7\xd2\x64\x1b\xa1\x21\x84\xd3\x56\x1f\x22\x38\x1d\xf4\xbf\x73\xb3\xd6\x63\x31\xce\x4a\x6a\xd8\xec\x14\x98\x24\x82\x21\x61\x3a\xf0\x1b\x9d\x6e\x6b\x36\xc0\x5e\x15\xb6\xda\x69\x92\xe4\xa8\x70\x57\x09\x31\x97\x64\xe0\x5d\x3c\x62\xe3\x03\xe4\x43\x36\x18\x65\xf9\x21\xeb\xf9\xaa\xfa\xb7\x80\x9f\xf1\x62\xb9\x38\x01\xaf\x7f\xfe\xf9\xd5\xcf\x9d\xb5\x31\x91\xb5\x5b\x5b\x07\xcd\x4f\xd2\x03\x13\x86\x66\xcd\x9b\x55\xcd\x4f\x1c\xe3\x7a\xfa\x88\x76\x79\x3e\x66\x2d\x87\x5b\x25\x3f\xbe\x84\xfb\x6e\xcb\x39\x8c\x97\x24\x90\x0f\xd8\x37\xc3\xa1\x70\xe4\xee\xe8\x95\xcf\x9b\x08\x01\x66\x31\xee\xcd\x2f\x32\x16\x92\xab\x46\xb5\x42\x5c\x35\xe4\xb8\xfd\xa5\x1f\x70\xe2\xab\x50\x0d\xd7\x5e\xab\x6b\xa2\xbd\x53\xec\x6e\xec\x20\x4f\x64\x4a\xb9\x40\x21\xda\x19\x02\xac\xab\x12\x4b\xec\x8f\x4e\xa4\x22\x93\xaf\x1f\x00\x3a\xb5\x6a\x5e\x3f\x22\x1d\xb1\xb7\x7d\x9b\x17\x55\x6a\xd5\x9d\xac\x8b\x4b\x0e\xc6\x65\x5c\x94\x85\x76\xdb\xa2\x9e\xdd\xb5\x69\x5a\x94\xa5\x4f\xc1\xb2\xf8\x2e\x4d\x81\x16\x0f\x97\xf3\xe1\x8e\xe5\x9b\xfc\xdb\x98\xdb\x0e\x5a\x88\xe9\xd7\x2d\x6c\xba\xd4\xad\x8a\x3b\x55\x70\x46\x13\xaf\x3c\x0d\x8a\xce\x94\xcc\xb3\x1b\x18\x9f\x92\xe8\x06\x50\x4a\x4c\x9f\xbd\xd1\x65\xb4\x04\x9a\x2c\x09\x2a\xfc\x9a\x31\xa4\x2f\xf9\x85\xe8\x3e\xb3\xa6\x57\x63\x03\xbd\x81\x1e\x02\xa9\xbb\xcf\x4e\x03\x20\x1c\x58\x87\xce\x05\x40\x26\x91\x2e\x9c\x3a\x13\x94\xe7\x0b\x7c\xe5\x3e\xad\x0b\x02\x6d\xa3\x0e\x3a\x7b\x47\x12\xe9\xe5\xe0\x2d\x54\xfb\x3b\x8e\x1a\x0e\xab\x20\xaa\x71\xb8\x5b\xdf\xbb\x06\xe7\x1c\x96\x53\xdf\x57\x32\xe7\x09\x6a\x59\x9d\xbf\x7b\x27\x1d\x2b\x2d\x2c\x9b\x82\x95\x25\x76\xed\x9a\xd5\xe6\xa0\xae\x5b\xb3\x12\xa2\x52\xac\x67\xd5\x26\xf6\x1e\xb4\xea\x5e\xf7\xea\xed\xf3\xf8\x5d\x2a\xe4\xad\xb6\x9c\x1a\xf7\x21\xc2\xe0\x75\xc0\x04\xb6\xcb\x08\xe1\x90\x41\xd3\xb8\xf8\x69\x28\x90\x54\x1b\xde\x03\x9a\x14\x3f\x39\xf4\x67\x97\xe6\x0a\x8e\x42\x80\x00\xa1\x4e\x3a\x34\xbe\xbf\xbd\x8f\x06\x4e\x9d\xb3\xd3\x3e\xa0\x1d\x13\xa7\x1a\xdf\x7b\x5f\x1b\x79\x48\x5b\x30\x73\xd0\xe4\xd6\xd1\x7b\xf0\x1d\xfd\xdd\x5c\xa0\x2b\x9a\x20\x9b\xf7\xa3\x7f\xb7\x6f\xe9\x5b\x7d\x1e\x5d\x70\x70\x77\x82\x58\x72\xa3\xc8\xa7\xda\x1f\xb6\xc7\x1c\x7d\x6b\xaf\x52\x96\xe6\xdc\x9b\x5f\xb0\xc0\xf2\x9c\xd7\xf1\x0d\x74\x97\xb8\xc5\x95\x62\xa9\xa0\x88\xc5\x95\xc1\x7f\x5d\x9d\x3f\xa2\x15\x55\xbe\xc7\xb3\xf5\x1a\xbd\x49\xce\x8c\x63\xae\xd5\x1a\xd5\xbf\xb7\xd7\x68\xed\x0d\x20\x73\x8d\xea\x82\xc3\x1a\x0d\x62\xd0\x8d\xd6\xa8\x7e\x81\x07\x25\xc5\x72\x42\x90\x25\x53\xc0\xb6\x0a\xd4\xab\x29\x97\x05\xca\x1f\xb1\xc3\x1f\x7b\x31\x37\x5e\x35\xea\x19\xaf\x20\x59\x17\xb5\x2e\xb3\xaa\x5e\x09\xcb\xee\x1c\xd5\x0a\x2d\x4a\xb8\xfd\xba\x52\x4d\x15\x1b\xc5\xeb\x2d\xd7\xfa\x56\x7b\x96\x3a\xc3\xb6\xba\xb6\x27\xcb\x26\x7c\x96\x73\x38\x9d\xe2\x18\x4c\x53\x7a\x0f\x20\x03\xfd\x01\x50\x0a\x0d\xd0\x5c\xc4\xf9\x41\x8a\x56\x28\xfd\xeb\x8a\x07\x98\x65\x29\x46\xc9\x88\x5a\x56\x63\x87\x57\x51\xba\x01\x43\xb7\x2b\x15\x00\x06\xe8\xdb\xe8\x17\x9f\x33\x4e\xf9\xc6\x35\xeb\xe6\xb7\xc7\x9d\xc7\x3b\xb4\xde\x63\x84\xae\xbc\xa3\xbb\x3f\x90\xe2\x10\x57\x77\x14\x31\x2c\xd6\xb8\x49\xc7\xc1\xf1\xc6\x80\xc8\x9e\xba\x20\xe3\xaf\x40\xad\xe7\xb7\x6d\x28\xed\x61\x6b\xd3\x96\xfb\xa0\xfd\x6d\xe4\x32\x83\x60\xf2\x76\x8f\xa2\xf3\xf0\x2a\x4d\x3a\x56\x5c\xfd\x1e\x46\xca\x85\x1b\x26\x33\x21\xd6\xa6\x39\x5d\xc8\x23\x1a\x70\x81\xaa\x25\x7c\x58\xb9\x87\x95\x6b\xf9\x0e\x2b\x77\xa3\x51\x84\xc4\xe0\xed\xa5\x68\xe6\xf0\xa2\xeb\x9b\x8d\x88\x71\x2b\x54\x56\x06\xe2\xb5\x63\x80\x38\xab\x41\x86\x12\x30\x81\x05\x4a\x00\x95\xd7\xa7\x68\x9e\xa0\x1c\x60\x02\xee\xe7\x38\x9e\xf3\x9f\xd6\x00\xe6\x08\x14\x88\xf5\x36\xb1\xc7\xbb\x23\x8b\x22\x3e\xe9\x24\x6f\xe3\xce\x8f\x88\x65\x72\x0b\x05\x4f\xb1\xb2\xb2\x25\x00\xc0\x28\x98\x20\x6d\x8e\xe8\x51\xf0\x21\x5a\xd0\x35\xe9\xe9\x3d\x7f\x2f\xde\x5d\xbd\xa4\xb3\x19\x26\xee\x93\xf8\x35\x14\x2f\xcc\x26\xe5\xc9\x67\x46\x01\x26\x89\xb8\x5c\x0b\xf0\x14\x88\xe4\x7c\xa0\x98\xd3\x65\x9a\x80\x19\x22\x7c\x05\x20\x90\xd2\x99\xf0\x1f\xe0\x32\x65\xbc\x85\x38\xe5\xdc\x81\xbd\x33\x6e\x01\x1c\x79\xb4\x1d\x68\x2b\xce\x10\x16\x2b\x24\x09\x9f\x36\x46\x63\x9a\x4a\xe9\x8f\x92\xe3\x04\x11\x4e\xd7\xc9\xba\xa2\x2b\xe8\x4f\x01\x9b\xe3\x42\x3e\x9f\x24\xc6\x4a\x0a\x0e\x27\x97\x79\x5a\x9f\xc9\x52\x5e\x57\x2e\x3c\x54\x70\x70\x12\x2d\xe7\xb8\xba\x44\x9a\xcd\x30\x97\x76\xf9\x80\x23\x6f\xd8\xe6\x73\x64\x19\x0f\xa3\x12\x17\xce\xda\xd0\xcf\x1f\xc1\xfa\x04\x91\x44\xa4\x10\xf7\x4b\xd6\x06\x9b\x24\x0a\xdd\xca\x5d\x44\x24\xe1\x73\x50\xe2\x9d\x43\x32\x43\xcf\xc0\x04\x71\x4e\xd2\x15\x30\x89\xd3\x65\x82\x12\x70\x8f\xd9\x5c\x5d\x75\x14\x15\x7b\xa0\xcf\x40\x0c\x09\xa0\x24\x5d\xf3\xa5\xa0\x57\x49\x02\xee\xe7\x88\x0f\x96\x2c\x17\x28\xc7\x31\x94\x33\xc0\xe7\xab\xac\xe2\xa1\x01\xff\xa6\x34\x5f\x40\x26\xce\x8f\xd5\x73\xa4\xb7\xbf\xe0\x83\x66\x59\x37\xc5\x20\x59\x5f\xdb\x1f\xec\xaa\xbe\x68\x93\x33\x78\xd1\x06\x8a\xb0\x36\x5d\x23\x3d\x27\x4a\xae\xcc\xf0\x0a\x91\x92\xa9\x7a\x40\xdc\x7a\xe0\xc4\x9f\x20\x80\x30\x9b\xa3\xbc\x46\x6f\x9a\x0b\x4b\x29\x29\x61\x40\x30\xa0\x89\x65\x01\x11\xca\x38\xd4\x15\x4e\x50\xa2\x96\x4f\x73\xe5\x48\x9b\x4b\x30\x35\x59\x2e\x26\x28\x77\x2f\x25\xf9\x7d\x8e\xaa\xdc\x40\x11\x26\x2c\xa2\x79\x24\x09\x60\x7f\x96\xc6\xfc\xf4\x08\x3b\x59\x5b\xdd\x09\x19\x9d\x0d\x36\xa5\xaa\x5e\x98\xff\x3d\x3a\x1b\x3c\x03\x1f\xce\x07\xcf\x38\xb9\x86\x67\xa3\xc1\xff\x68\xdd\xa3\x9c\xec\xc5\xb2\x60\x92\x1c\x82\x72\x9c\x56\x25\x03\x3f\x33\x09\xa9\xd0\x29\xf8\x62\x1f\x9d\x0d\x3a\xe8\xb3\x2f\xe5\x1d\x60\x80\x30\x9b\x97\x6c\x21\xcc\x0d\x17\x99\xe5\xdc\x27\x5c\x65\x68\x22\xe0\x42\xb0\x3a\x49\xd4\x7d\x1a\x2e\xfe\x52\x0a\x93\x42\x6d\x48\x6a\x19\xad\x89\x61\x61\x32\x21\x9c\x39\x91\x17\xb8\x28\x30\x99\xb9\xe4\x74\x82\x0a\xa6\x1e\x32\xd8\x5e\x5c\x07\x8a\x50\x9c\xbd\x49\x69\x7c\xb7\x89\x08\xed\x0f\x44\x93\x86\xc4\xef\x0f\xd4\xe1\x4b\x54\x1c\xab\x1a\xbc\x00\xb2\x1a\x3d\xb9\xb9\x70\xcc\x5d\x99\x5e\x09\x26\x16\x59\xda\x84\xe0\x44\x0c\xc0\x02\x64\x30\x67\x5a\x1e\x9f\xea\x28\x87\x26\xea\x59\xad\x36\x97\xc5\x5c\x5a\x01\x2a\x96\xbe\xde\x1a\xee\x60\xbc\x60\x6f\x05\x80\x18\x7b\x6e\xd1\x39\xe8\x73\xd6\x3f\xbf\xe1\x83\x86\x8a\xb7\x41\x8e\xb8\x97\x85\x08\xd3\xfa\xa4\x3f\x00\x72\xec\x1f\x61\x8a\x13\x80\x3e\xc3\x45\xc6\x4d\x42\x6e\xe7\xdd\x1e\xbd\xf8\xe5\x65\xef\xc5\xeb\xbf\xf7\x5e\xf4\x5e\x1c\xbf\xfc\xdb\xed\x11\xe7\x98\xdb\xa3\x97\xcf\x9f\xbf\x38\x49\x26\xbf\x9c\x9c\x1c\xbf\xfe\x5b\x33\x2f\x8e\xed\xdb\xc4\xf5\x40\x9f\x63\x94\x75\x1f\x92\x6e\xea\x52\xd1\x4a\x0d\x35\xc5\xb1\x88\xb4\xf2\xd1\xab\x89\x57\x76\x96\x9a\xaf\xa6\x02\x85\x64\x1f\x74\xd0\x48\x48\xbf\x0d\xdc\xe3\x34\xe5\x9d\xe5\xe8\x5f\x72\x4d\xe2\x69\x65\x42\xd3\x25\x2b\x70\x82\xc4\x14\x88\x49\x12\xfa\xbb\x7b\xd0\xa1\xce\xde\x66\x34\x0f\x76\xf8\x02\x5d\x3e\xf1\x54\x0b\x4e\x3a\x34\x71\x98\x47\x17\x1e\x23\xd4\x5f\xc3\xa8\xe5\x6d\x84\x2c\x1b\xd0\x44\xc5\x2e\xca\x60\x71\x25\x0e\xb4\xc0\xd4\xeb\xf6\x19\x5f\xfe\x95\x60\xc5\x04\x8c\xe8\xf1\x5b\xde\x58\xac\xfe\x42\xc8\xd4\x72\xdd\x0f\xaa\x70\xca\x33\xd9\x0f\x9f\x64\x0d\xdb\xdb\x27\xaa\x4a\x34\x88\x40\xd1\xa2\x96\x8a\xd9\x39\xe7\xcb\x8b\xcf\x0c\xe5\x04\xa6\x17\x84\x61\xb6\x1e\xee\x5d\x0e\x6d\x10\xad\xd1\x5f\x38\xd7\x6e\x80\x87\xfc\x42\xa2\x38\xfa\xdb\x6c\x49\x80\x4d\xa2\x3a\xfa\xab\xf1\x5e\x99\xb0\xa4\x94\xba\x5c\x3c\xdd\xa1\x75\x01\x72\x94\x4a\xa5\x3a\xc7\x19\x37\x51\xa0\x98\x68\x3a\x55\xc2\xa3\xa7\xc4\x50\x99\xe9\x45\xf0\x53\x9f\x3c\x03\x57\x94\xf1\xff\xc9\x14\x8e\xc2\x02\x3c\xa7\xa8\xb8\xa2\x4c\xfc\xd2\x31\xcb\xbb\x90\x22\x30\x1a\x65\x25\x84\x92\x88\x5c\x3a\x13\x29\x64\xf8\x50\x95\x4a\xd2\x23\xee\x4b\x35\x5b\x12\x0d\x17\xa0\x4f\x38\x43\xab\x21\xf3\x42\x05\x48\x82\x10\xb6\xe0\x04\x01\x42\x49\x24\xec\x19\x2b\x0c\x45\x29\x9a\xd7\x08\xe5\x01\xa7\x40\x09\x73\x5e\x96\x70\xc3\x08\x65\x29\x8c\x51\x02\x92\xa5\x40\x1a\xea\x64\xb9\xdc\x26\x45\xf9\x0c\x81\x4c\x18\xa5\xa1\xe4\x09\x5f\x11\xf2\xdb\x7c\xbe\x36\x90\xe9\xf2\x0b\x94\xec\xf2\xeb\x0c\xea\x55\x15\x43\x82\x7b\x75\x94\xbb\x55\x82\x59\x3b\x68\x80\x61\x41\x3f\xfd\x6d\x1c\xfc\xab\x63\xb4\x99\xd2\x0d\x19\x6d\x68\xcd\xee\xb0\xbe\xfe\x6c\x4a\xd2\x50\x90\x66\x4c\xa5\xa8\x34\x54\x4b\x29\x96\x46\xf1\xb1\x4f\x3d\xb6\x34\xdc\xe3\x2b\xc9\x76\xfb\x83\x42\x3c\x28\xc4\x5d\x48\x71\x50\x88\x07\x85\x58\x7d\x07\x85\xe8\xc1\xe8\x5b\x29\xc4\x3d\x05\xec\xde\x7e\x3a\x77\x6f\x4e\x05\x09\x68\x41\xed\x2b\xc7\x31\xd5\xea\x0b\x59\x04\xa1\x14\x0d\xe0\x85\x4e\x06\x8f\x0c\xc4\xfd\xf4\x73\xd3\xb8\xe3\xb6\x53\x6d\x7b\xcd\x5e\x45\x4e\x80\xad\x6c\xcb\xfb\x4a\x40\x9f\x64\x08\xdc\x2b\xd5\xe7\x1e\x0e\x9b\xa5\x4f\x70\xb3\x54\x6c\x6c\xc9\x99\x31\xcc\xc9\x1e\x18\xca\xca\x13\xb4\xd7\xed\x54\x6e\xa5\xee\x1c\xbf\xa7\x39\x9e\x61\x02\x19\x52\xd6\xf6\xb6\xf1\x7b\x57\xd0\x5e\xdd\xef\x3a\xc4\xeb\x0f\xf1\xfa\x43\xbc\xfe\x10\xaf\x7f\xea\xf1\xfa\x83\xab\x6d\xfd\x0e\xae\x76\xf9\x1d\x5c\xed\x83\xab\x5d\x7d\x07\x57\xdb\x83\xd1\x21\xf6\x7c\x88\x3d\xfb\xbf\x1a\xf5\x9b\xed\xa5\x45\x96\xe2\x42\x28\x04\x91\x87\xa0\x1a\x8e\x5a\xa5\x0b\xae\x4c\x7a\xe2\xe4\x96\xf9\x8b\xa0\xe8\xe9\xd5\x79\xe7\x49\x42\x70\xd0\xca\x07\xad\x7c\xd0\xca\x8d\xef\xa0\x95\x3d\x28\x1f\xb4\xf2\x76\x35\xf7\x12\x00\x3f\x5c\x21\x38\x5c\x21\x38\x5c\x21\xb0\x54\x3e\x5c\x21\x38\x5c\x21\x28\xbf\x47\xbb\x42\xb0\xf5\xa6\x97\xcc\x99\x30\x5a\x67\x56\x39\xe4\x16\x98\x35\x62\xab\xf4\x07\x1c\x8a\x36\xd7\xea\xb2\xb2\x26\x4b\x05\x3a\x92\xad\xc5\xbf\x70\x01\x26\x88\xc1\x48\x24\x44\xe0\xb2\xf3\x45\xef\xef\xee\x31\x6e\x91\x32\x44\xbf\x3a\xd2\xb5\xb3\xa7\x5f\x43\x11\x53\x5f\xee\x8c\xc9\x3d\x3c\x25\x3c\xeb\x03\x91\xe6\xf9\x0a\x71\x66\x90\x5e\x9e\x59\x8e\xad\xbb\x2d\x5e\x91\x22\x0a\x3b\xb0\x14\x34\x2b\x65\x39\xc7\xc3\xd9\x8b\x8d\x56\xce\xbc\x8c\xbc\x49\xfd\x37\x3b\x53\x6d\xfc\x88\x0d\x08\x49\xa5\x63\xe4\x53\x81\x31\x77\x90\x51\x72\xd5\x4a\x21\x52\xbd\x39\xac\x13\x83\xe8\x5f\x62\x4a\xa4\x2d\x56\x9c\x80\x7f\xfe\xc1\x7f\xe1\xf0\x51\xf2\x51\xe7\xfc\x10\xbf\x3e\x68\xae\x94\x84\x14\xb6\x74\x29\xf2\x67\x67\xc6\x14\xa3\xd8\x96\x34\xe5\x9c\x14\xde\xbc\x29\xcd\xf2\x76\xea\x94\x36\x5a\x8a\xfe\x65\xf6\x94\x46\x8d\x8d\x13\xa8\xf0\xc5\xab\x60\x6e\x95\x44\x25\x21\x85\xce\xe0\x02\xcc\x51\x82\x43\x56\x14\xf3\x3b\x64\x45\xa9\x7d\x87\xdc\x0a\xae\xef\x90\x5b\x61\xa3\x51\x1c\xb2\xa2\x3c\xd5\x95\xfb\xd4\xa3\xa4\x7b\x97\x2c\x87\x68\xa8\xf5\x3b\x08\xdc\xcd\x10\xff\xae\x05\xee\x13\x4e\x66\xd3\x21\x2f\x19\x7d\xfb\x29\x71\x9d\xc1\x0c\x95\xed\x5d\xe7\x81\xbb\xd7\xc2\x26\xd3\xe4\x61\xa3\x80\xe7\x8c\xfc\xa7\x80\xfd\xd3\xec\x01\x1f\x29\x4a\x6e\xc2\x1b\x07\x57\x75\x13\x57\xf5\x13\x2d\x6a\x3e\xea\x27\x5a\xd8\xbd\xd3\x4f\x32\xed\x75\xdb\x2f\xfd\x3f\x5a\xd8\x1d\xd2\xb2\xa0\xed\x89\x1a\xbd\x36\x5d\x50\x5d\xe4\xf6\x3d\x85\xce\xcf\x57\xe8\x03\xb9\x23\xf4\x9e\xbc\x15\x9b\xfa\xe5\x5b\xb3\x87\x57\x10\x9c\x55\xf7\xf8\x92\xb6\xc7\x0c\xde\xfc\x75\x01\xbf\x78\xe8\x10\x97\xdd\x1a\xae\x5b\x0d\x99\x28\x37\x6b\xb8\xaf\x02\xec\x84\xb6\x64\x7f\x32\x1b\x73\x2b\xc8\x8b\xb8\x77\xcb\xa1\x7c\xdd\xef\xb9\xb7\x93\xc9\x32\x2f\x5c\xdb\x20\x3b\xf5\xe2\x54\xc3\x07\xe2\x00\x90\x14\x71\xb6\x80\xb9\xed\x04\x7c\x07\xdc\x72\xa7\xc3\x82\xb9\x6f\x54\xd5\xd3\x90\xaf\x1e\x3e\x1d\xf4\x34\xa5\xf7\xcd\x74\xd0\xfc\x37\x67\x3e\x68\x59\xe8\x48\x08\xcd\x0b\x9d\x09\xa1\xab\x42\x6b\x42\x68\x13\x93\xa6\x3e\x31\x8b\x1d\xcf\xe6\x6c\xa9\x50\x60\x9a\xcd\xe1\x26\x5a\xc5\x50\x0c\xff\xd9\xd4\x17\xfa\x91\xdb\xa2\x7a\xe4\x76\xc5\x5d\x55\x28\x4e\xf6\xc7\x62\x6a\xd4\x72\xaa\xb6\x12\x7e\x20\x9d\xc3\xe7\x70\x08\x17\x59\x8a\xc9\x4c\x72\xc2\xbe\x85\x8e\xf7\xc9\xb5\x2e\x4b\x9a\x37\xf6\x6c\xce\xef\x2c\xac\xc2\x5e\x7d\x2d\xc5\xc6\xcb\xe7\x3f\x5b\xab\x70\x2a\x8e\xec\x1b\x4b\x21\xa3\x04\x00\x91\xa5\xfb\x7e\x53\x04\x8c\x45\x6e\xaf\x80\xb3\x29\xfe\xdc\x81\xbc\x07\x08\x8c\x19\x5e\xa1\xb7\x7c\x14\x78\x81\xae\x97\x8f\x41\xef\x57\xaf\x9f\x3b\xaa\x94\x18\xbf\xb6\x56\xc0\x49\xfa\xc8\xa8\x76\x63\xfa\xc2\xca\x16\x85\x5a\x58\x37\x0f\xa8\x6e\x0d\x34\x5f\x3c\xef\xc4\xd3\x52\xee\x75\x13\x5d\x0f\xfb\xd5\x25\xc2\x83\x6a\x44\x94\x17\x19\x24\x35\x85\x28\x7f\xb2\xeb\x43\x5d\x66\x53\x87\x17\xa2\xcc\xae\x0d\xcd\xb2\xb6\x32\xac\x23\xd1\xd4\x85\x46\xe9\xd3\x51\x85\x3f\x96\x1e\xdb\xfa\x49\xb8\xcd\xdd\xaa\x87\x7d\x44\xee\xfb\x79\x0e\x4e\xae\xde\x7d\x9b\x0b\x30\x59\x60\x32\x64\x6e\x89\x59\xbf\x68\xcd\x6b\x63\x11\xf3\xc6\x2b\x24\x1f\x7b\x71\x04\xbb\x4b\x19\x28\x5e\x83\x7f\x20\x45\xed\x81\x2d\x8b\xa9\xf5\x8d\xd3\x04\xe7\xc8\x77\xbd\xbc\x36\xe6\x73\x5d\xb9\x3c\xa2\x02\xe3\x3b\x24\xcf\x4b\x2d\x28\xc1\xee\x8b\x0e\x25\x09\x26\x94\xcd\x1f\x88\x02\xd8\x71\x83\x5b\x84\xe8\x97\x1e\xda\xd8\x70\x32\xd2\xa0\x3e\x88\x59\x3a\x08\xa2\x77\x85\x04\xe8\x0f\x34\xd1\x2f\x6e\x86\x83\xd3\x2b\x45\x7b\x07\xbd\xbb\x88\xc9\xcd\xb1\xfe\x79\x08\x0e\x1f\x08\xfe\xb4\x44\xf2\xad\x9b\xfe\xf9\x26\x38\x54\x26\xca\xee\x06\x88\x03\x84\x61\x80\xbc\x7c\xb5\x8d\x81\x61\x39\x75\xf8\x98\x06\x86\xc8\x84\x90\xe4\x34\x4b\xa9\x7a\x53\x4d\xfd\xe1\x38\x4f\xa4\x0b\xad\x26\x86\x00\x76\x9e\xd3\xec\x92\xb6\x9e\x57\xab\x15\x5a\x8c\x8c\x1a\x22\x2d\x23\xc3\x2c\xb5\x5b\x19\x3e\x2b\x62\xdb\x07\xd7\x7e\x64\x8f\xba\x21\x06\x3c\x6f\xc3\x5b\xa6\xdd\x3f\x40\xcf\x20\x81\x7c\xf9\x4d\x00\x94\x8b\x57\xc1\xed\x0a\x0a\x9f\xcb\x46\x1a\x45\x99\x7d\x43\x31\x8c\x66\x1f\x30\x59\x03\x18\xc7\x91\x38\xa6\xcc\x09\x69\x11\x1b\xa5\xc8\x28\xcd\xd3\xfa\xe7\xcd\xd7\x41\x68\xe2\x3b\x3e\xb5\x81\x31\xc6\x47\x0d\xd2\x2a\x41\x89\x1e\x01\x25\xa2\x13\x33\x6b\x87\xde\x70\x94\xb6\xd7\x5f\xc9\x64\x7b\x50\xc9\x97\xe5\x4b\xb2\x2f\xc1\x37\xe0\xb0\x1c\x72\xcf\x2c\x6b\x8b\xbd\x1a\x16\x4d\xa9\x67\x16\x1e\x84\xde\xd3\x12\x7a\xed\x29\xf7\x8f\xaf\x63\xad\x3c\x90\xe4\x98\xe2\x94\x21\x75\x22\x49\x67\x5d\x62\xf4\x07\x12\x21\x0d\x42\xc9\xf9\x7a\x2b\xa9\xb2\x6f\xab\xba\xc8\x63\xa7\x51\x1d\x12\xeb\xdd\xba\x71\x91\xc7\xef\x4f\xcf\x76\xe8\x79\xfb\xd6\x45\x1e\xef\x12\xa2\xde\x35\xc4\x8d\xb3\x41\x4e\x9d\xaf\x5b\x34\x9a\x3f\xa8\x3a\x81\x71\x5c\x9a\x15\x98\x64\x4b\x26\x75\x4a\xcc\x72\xc7\xc9\x7c\x59\x62\xd3\x26\xa7\x71\x3c\xd0\xa0\xfa\x1c\x54\x53\xa5\xb4\x2a\xb4\xf5\x4a\x1b\x9d\xa6\x72\x69\xd5\xb8\xdd\xf0\x5c\xfe\xe6\x4a\x66\xaf\x27\x20\xea\xa7\x62\x9b\x83\xa9\xdd\x4e\x94\xbf\xc8\xa7\x9a\x97\xb9\x74\x66\xb9\x16\x3b\x3d\xeb\x83\xb3\xab\xfe\x37\x55\x42\xbb\x5f\x07\x68\x24\xdf\x6b\xb0\xc6\x30\x43\x71\x8d\x18\xa5\x26\xe3\x05\x9c\x0a\x6d\xda\x6d\xa8\xbb\x60\x1c\x8f\x4b\x08\x63\x01\x62\xdf\xa2\x55\x9f\x6f\x1c\x2f\x20\x81\x33\x94\x8c\xe5\x64\x3e\x9c\xca\xd1\x69\x05\xc7\xcb\x2c\x81\xcc\x7b\x64\xce\xeb\x11\x00\x41\x1f\xfc\x08\xf8\x16\x6b\x12\x8f\x53\x3a\xc3\xee\x34\x8d\xa1\x67\x40\x03\x0f\x6e\xc7\x28\x67\x53\x9c\xba\x62\x95\xf5\x3e\xbb\x8f\xcd\xde\xa1\xf5\x9e\xa0\xc5\x29\x46\x84\x8d\x8b\xc2\x77\xf9\xb3\x73\xda\x08\x62\x8f\x30\x6d\x5c\x3b\xe5\x53\x18\xa3\xf1\x82\x2d\x3b\xd1\xed\xb8\x2a\xcc\xc5\x30\xe6\xa0\x64\x24\x74\x2c\x80\xaf\x60\x37\x19\x3a\xe0\x66\x93\x7c\xcc\x72\x18\xdf\x61\x32\x1b\x13\x4a\xc6\x05\x81\xbe\x1b\xd0\x9d\xb4\x05\xf2\xc4\xd7\x58\xbe\xb4\x3e\x8e\xe7\x4b\x72\x37\x2e\xf0\x9f\xbe\xd9\x0f\xc2\x54\xc5\x0e\xc6\xf7\x10\xb3\xf1\x94\xe6\x63\x75\xf3\x6b\x57\x64\x13\xa5\x37\x36\x07\xec\x41\x38\x47\x33\x5c\xb0\xdc\x75\xf9\x61\x3f\xfc\xb5\x80\x33\x34\xce\x72\x34\xc5\x9f\x3b\x71\xf5\x2f\x2b\x05\x6a\x99\xa6\xe3\x02\xc5\x39\xea\xe6\x00\x3f\x3c\x25\x17\x19\xc4\x04\xe5\xc5\xb8\x94\xf1\x2b\xab\xae\xdd\x11\x3a\xff\x67\x4e\xd3\x14\x3d\x10\xfc\x39\x2d\xd8\xde\x20\x9b\xfa\xf4\x21\xc8\x42\xf0\xbe\xc1\xc6\x04\x27\x28\x4b\xe9\x7a\x4f\xf0\x68\x36\x4d\xd1\xe7\xb1\xc8\xc1\xbb\x37\x90\x88\xac\x8a\x7b\xcc\xe2\xf9\x9e\x20\xce\x26\xd9\x1e\x20\xa5\xde\xcc\xc5\x7b\x11\x02\x06\xf3\xa7\x74\x36\x16\x37\xe1\x77\x1c\x3b\xe7\x77\x39\x3b\xfb\x82\x28\xa7\x7c\x7f\x30\x71\xc1\x30\x7d\x14\x0d\x5e\x30\x98\xa6\x63\xd1\xdf\xae\x7a\x46\x03\xcb\x72\xda\x61\x0c\x75\x0d\x7f\xb1\x4c\xf5\x35\x02\x57\xe3\x1d\x07\xae\x74\xed\x2e\x43\x4e\x72\x9a\x89\xc9\x7e\x2c\x7b\x7e\x27\x83\x90\x26\x28\xa3\x09\x9e\x7e\x17\xd8\x16\x39\xa6\xab\xef\x02\xd3\xbb\xe5\x04\x3d\x02\xa2\x74\x55\x8c\x17\x68\x41\xf3\xf5\x38\xc5\x0b\xbc\xab\xf5\xb2\x2c\xb8\x59\x85\x57\x38\x45\xca\x21\x55\xa6\xc0\xce\x22\xa0\x32\xb3\x32\xd7\xa1\xd4\x4d\x10\xcd\xd1\x84\x52\x36\x56\x1a\xf5\x1e\xb3\xf9\x98\xae\xba\xb1\xf4\x03\xe5\x0e\xc0\x38\xe0\xa6\xed\x5e\x1d\xce\x8c\xe6\x6c\x2c\x32\x46\x05\x39\x89\x21\x29\xcd\x36\xc8\xf4\x28\x8e\xb7\x74\xd6\x0a\xf4\x53\xf4\x87\x5a\x81\xa2\x9d\x41\x8a\x1c\x65\xe3\x0c\xe5\x63\x2e\xb0\xf6\x09\x5d\x98\x11\x30\x66\x63\x19\x26\xdc\x8f\xdb\xaf\x3d\xb6\x0c\xe5\x98\x26\x38\x16\xbe\xe5\x78\x96\xd2\x09\x4c\xc7\x98\x4c\xe9\xb8\x58\x93\x66\xcc\xcb\xde\x99\x75\x61\x39\x23\x69\xd5\x35\x3b\x03\x19\x7f\x2c\x4d\x34\xa9\x45\xd3\x8a\x65\x1c\xa3\xa2\x98\x2e\x53\x10\xd3\x45\x96\x22\x7d\x36\xc9\x11\xc4\xd5\x9f\xef\x34\x9f\x0d\xb1\xad\x06\xb9\xf1\xfd\xc4\x56\x84\xdc\x08\x86\x0b\xf9\xfc\x1e\x66\x8e\xe8\x37\x8e\x2a\x09\x18\x49\x61\xae\x8b\xe5\x19\xbb\x66\x9d\x62\x5d\x30\xb4\xe0\x75\x6a\xdb\x47\x56\x48\x91\xb6\xb2\xc1\xed\xd1\x97\x2f\xbd\x11\xbd\x43\xe4\xeb\x57\x7d\x03\x52\x79\xe2\x51\x96\x2e\x67\x98\x34\x3b\xba\x25\x25\xae\x95\x19\xac\xe0\x9e\x80\x7f\x47\x12\xc6\x97\x8a\x24\xb7\x47\x29\x9d\xc9\x6c\x51\xb7\x47\xaa\xc7\xb3\xb2\xe5\x25\x9d\x5d\xf2\x22\xde\xfd\x33\xb3\x11\xcc\x70\x1c\x71\xab\xb8\xe0\xad\xbe\x7c\xe9\x9d\x66\x38\xfe\x95\xff\xfd\xf5\x6b\xbb\x62\x8e\xa6\x39\x2a\xe6\x0c\x2f\x50\xd9\x09\x6f\x70\x23\x7f\x1f\xe1\x05\xb2\xf7\x50\x2c\x27\x25\x8b\x46\x09\x4a\xe1\xda\xe8\x6e\x68\x14\x9e\xf3\x32\x4b\xd7\xe3\xb2\xeb\xf8\x0e\xe5\x63\x98\xfc\x6b\x59\x30\x3b\x0e\xbc\xc2\xa9\x28\xb7\xe3\xb2\x2c\x50\xce\x27\xb8\xd6\xfa\x43\x81\xf2\x2b\xe8\x42\x9f\x6b\x4c\xc8\x50\x74\x87\xd6\x51\x06\xd9\x5c\x36\x3d\x5e\x16\xf9\x71\x4a\x63\x98\x1e\x23\x16\x1f\x8b\x09\x44\x39\x3b\xe6\x1d\xf4\xee\xd0\xba\x09\x29\xc6\x91\x8c\x68\x94\x3d\x0f\x05\x37\xf5\x13\x44\x18\x9e\x62\x94\xb7\x7b\x8f\x71\xb4\x5a\x2c\x22\xce\xf0\xb2\xd5\x6f\x65\x6a\x39\x51\xf5\xcb\x97\x08\xe0\x29\x20\x08\xf4\x3e\x2e\x16\xe7\xf4\xff\x67\xef\x6d\x9f\xdb\xb6\xb1\x85\xf1\xef\xcf\x5f\x81\xf1\xd3\x99\xde\xbb\x13\xca\x49\x73\x37\xbf\xad\x67\xf6\x83\x63\x39\x89\xa6\xb6\xac\x47\x92\xd3\xdb\x59\x77\x34\x10\x09\x49\x58\x53\x00\x4b\x52\x72\x5c\xaf\xff\xf7\xdf\xe0\x8d\x04\x48\x00\xa4\x5e\xec\x38\x8d\xd4\x0f\x8d\x09\xe0\xe0\xe0\xe0\xe0\xbc\x01\x38\x58\x42\x4c\xf8\xa5\xda\xc7\x47\x1b\x9c\x88\x57\x28\xfa\x2f\x9a\xc8\x8e\x19\x34\x14\x67\xa8\x55\x63\x07\xf2\x1c\x06\x89\x18\x08\x13\xb9\x92\x1b\x3d\x08\x96\xcc\xae\x23\x59\x36\x6d\x85\xa8\x05\x48\x33\xb2\x95\x89\xe2\x36\x4c\x90\x23\x02\x49\xc9\x67\x63\xfe\xa7\xd6\x56\x8e\xee\x8c\xb1\x10\xb8\x39\x12\xa7\x6f\x2a\x43\x8b\xa7\xda\xf4\xf5\x29\x41\x1e\x32\x7d\x4a\x92\xab\x24\xc7\x4b\xfc\xa7\xd8\xef\x71\x80\x5c\x24\x49\x40\xb5\x7a\x72\x31\x55\x5a\xf3\x65\x64\xef\xa7\x4f\x7f\x85\x38\xff\x40\xd3\x91\x88\xbd\x9e\x27\x43\x04\x23\xa6\x1f\x32\x57\x9f\x84\x06\x77\x10\xe7\xc1\x8c\xa6\x81\x8c\xd8\x06\x28\x09\x52\xd5\x4e\xe2\xe0\x81\xec\xc1\x47\x56\xfe\x98\xc2\x64\x71\x4e\xa2\x84\x62\x92\x9f\x46\x11\x97\x06\xe0\xe6\xe8\x75\x15\x19\x85\xc0\x9c\x35\x08\x90\x6c\x11\xc0\x28\x52\xd2\x05\x9c\xe8\xd2\x51\xb4\xd2\x05\x8f\xaf\x47\x43\xfe\x18\x1d\xf2\x51\xfe\x8b\x21\xce\x0d\x3a\xf0\x03\x26\x11\xfa\xf2\x0a\xfc\x80\x73\xb4\x04\x27\xff\x74\x81\x95\x9f\x33\xf0\xf8\x28\x47\x2d\x5a\x3e\x3e\xbe\x7a\x78\xe0\xe4\x78\x00\x1a\xd4\xdb\x57\xe0\x87\x35\x38\xf9\xa7\x84\xcb\x18\xee\xe1\x01\xfc\x70\xcb\xff\x25\x78\x91\x55\x10\xdf\xf1\x0c\xa0\x3f\x58\xe1\xcd\x91\x10\x6b\x1a\x50\x45\xec\x47\xf9\xe1\xf7\x72\x5c\xee\xc9\x38\x8d\x22\xf5\x32\xf6\x88\x47\xba\xb3\x31\x1d\x46\x42\xf7\xb8\xb8\x83\x51\x1e\xc9\x46\x81\x88\x8f\x67\x41\x4e\x83\x54\xb6\x53\xe2\xde\x03\xda\xc3\x1e\xf2\x98\xdc\x40\x1a\x5b\x23\x02\xf3\x8f\xdc\xd4\xea\x91\x19\x1d\xdd\x13\xe7\xda\x93\x66\x5a\xa0\xcc\xb4\x80\x99\x69\x81\x30\xd3\x02\x66\xa6\x05\xcc\x4c\x93\xc8\x35\xf6\x52\xc5\xb0\xec\x47\xb8\x29\x41\x84\x38\x57\x46\x28\x46\x39\x0a\x98\x9a\xa4\xab\x5c\x42\xbf\xe2\x55\xba\xbc\x46\x97\x57\x18\x8b\xf2\x8a\xb6\xcb\x62\x84\x12\xde\xd6\x8b\xec\x88\x55\x63\x10\x1c\x68\x96\x00\x65\x70\x26\xe0\x91\x1e\xd9\xba\x27\xbe\xf5\xd8\xa7\x6a\x75\xf6\x2d\x90\x91\x9c\x42\xf2\xf1\x9a\x03\xf1\xd1\x2d\xff\xf8\xae\xb9\x45\xb2\x27\x34\x9a\x46\x41\x24\x75\xc7\x8a\xe0\xe3\x9c\x04\x9a\x3c\x3d\x7e\xdf\x0d\x2a\x26\x94\x55\x66\x33\x40\xc1\x34\xb2\x28\x49\xe6\x34\xec\xa7\x0b\x06\x49\xf5\xe1\x54\x0f\x4a\xfe\x24\x8b\xfb\x8c\xe9\x45\x8f\x9e\x09\x12\x5e\x5e\xc3\xb8\x90\xa1\x24\x84\x89\x68\xbf\x8e\x21\xc7\x59\x4a\x8b\xcf\x31\x24\x56\x8b\x40\x35\x95\x1b\x66\x81\xda\x30\x33\x45\xdb\xa5\x28\xed\xc9\xc2\xaa\x51\xc5\xa6\x65\x9a\x06\x6a\x83\x2c\x20\x94\x70\x86\x93\x40\x06\xef\x87\x63\x59\xd4\xa7\x84\x31\x99\x05\xc0\x3a\x9d\x55\x55\xe4\xe7\xe1\x07\x43\x4b\x9a\x0d\xe2\xb7\x72\x41\xf0\xba\x17\x6f\xaf\x56\xf6\x7a\xe8\x4b\x1e\x48\x03\x59\x29\x16\x5e\x59\x09\x0f\x99\xde\xb1\x54\x29\x2d\x19\x71\x9d\xce\x74\x4c\x35\x8b\xcf\x63\x51\x68\x6d\xae\xd6\x28\x8d\xe1\xbd\xa5\x69\x95\x4b\xe4\x89\xdc\x52\x37\xf1\x43\x34\x7c\x2c\x55\xdd\x22\x6d\x0d\x91\x03\xad\xad\xa9\x51\x1f\xa1\x00\x56\x5a\xb6\x6d\xb8\xfd\x3f\x95\x4a\x12\x6b\xe6\xa3\xd8\x08\xb2\x4d\x17\x05\x2c\x93\x42\x26\x33\x2d\xe1\x17\xbe\xf0\xb2\x20\x5b\x87\x42\xab\xcb\x69\xbf\x84\x5f\xfa\xac\x60\xb4\x0e\xb9\x52\xad\x70\x61\xe1\xa9\x05\x1b\x10\xdc\xee\xd3\xd5\x6b\xee\x7d\x7a\xf6\x31\x45\x0a\x5b\xf7\x0c\x35\xf4\x52\x01\x60\x4e\x4b\x75\x6a\x80\xa6\x13\x8a\x74\x5d\xdf\x08\xa5\xa4\xc2\xdb\x9a\x50\x66\xfb\xf6\x74\xfa\xb6\xf8\xe9\xf9\xa9\x74\xbb\x9a\xa2\x6f\x8c\x48\x5f\x63\xd1\x85\x30\xcf\xe3\x03\xa1\x5a\x13\x2a\x49\xe9\x12\xe5\x0b\xb4\xca\x0e\xc4\x6a\x24\x96\xdc\xbe\x3f\x50\xaa\xa0\x94\x8d\x64\x65\xa0\x01\x27\x41\x42\x29\xb7\xb0\xff\x65\x36\xb4\x92\x0f\x91\xa8\x74\x09\x04\x88\xde\xe0\x9c\xf7\x7a\xf4\xca\xd6\x40\xdc\x42\xae\x35\x19\xb1\xcf\x65\xcc\xb8\xc0\xb1\xfc\xf3\x77\x73\x2a\x46\x39\xcc\x71\x68\xfa\xd8\x96\x70\x9b\x70\xd5\x83\x8c\xd7\x2e\xbb\xb5\x34\xf6\x46\xf5\xba\xf7\x04\x2e\xdb\x77\x17\x89\xea\x45\x7f\xd6\xe6\x3e\xa3\x9a\x3b\xc4\x6a\x3f\x27\xe0\xfb\x39\x25\xf2\x04\xe6\x67\xb2\x68\xc4\x4a\x6a\x8e\x85\x18\x6d\xb0\x8f\x29\xe5\x90\xb6\x99\x58\xb3\x61\xbb\xe9\x2d\x81\x31\xf7\x77\x07\xb4\x07\x34\xda\x04\x59\x5e\x7d\x1b\x14\x45\xfc\x27\xe0\xe7\x23\x83\x0c\xff\x89\x94\x4f\x49\x23\x31\xc7\x67\xac\x64\x84\xff\x44\x55\x6b\x9e\xf9\xde\x7b\x98\x9f\x3e\xbf\x97\xb4\xf1\xec\x18\xcd\x36\x1d\xb8\x81\xbb\x8c\x80\x59\x70\xd7\xd7\x37\x77\x68\x4a\xae\x77\x41\x96\x67\xba\x95\x63\xc3\x1f\x81\x96\x14\x15\x97\x58\x55\xa0\x71\xc4\x4a\xd4\x8a\xe1\xff\x5b\xd0\x2c\x0f\xf8\xe1\x24\xff\xde\x11\x4c\x12\x33\xe4\xd3\xce\xb3\x33\x65\xcf\x79\x32\x94\x47\x43\x6d\x22\x20\x09\xd4\xc1\xd1\x82\xde\x65\x03\xaf\x13\x5e\x69\x4a\x56\x71\xec\x94\x48\x22\xca\x76\x49\x23\x64\xc1\x41\x46\xe9\x96\x34\x2a\xc5\x46\xd9\xc0\x8b\x43\xa5\x69\x1d\x87\xb2\x6a\x7d\x1f\xee\x13\xcd\xf2\x53\x36\x09\xee\x6d\xb8\x10\x8b\x68\x5f\x99\x0c\x5d\x97\x6b\xc5\xcd\x96\xc3\x06\xd1\x8b\xd9\x20\x6a\xb5\x93\xf7\x22\x43\x53\x1b\x47\xee\x94\x54\x5b\xc7\x90\x98\x31\x46\x11\xa2\x34\x2a\x33\xef\x0e\x26\x58\xaf\xcc\x58\xf2\x74\xd0\xb3\x54\x2e\xb5\x45\xb9\x69\x2d\xee\x09\x9f\xf5\xba\xc3\x1a\x22\x42\xc6\x9a\xf5\xb9\xd0\xd6\x2d\x07\x5d\x70\x86\x30\xd1\x96\x06\x17\x98\x21\x4c\xc6\xf7\x16\xeb\x80\x51\x05\x93\x59\x0a\x75\xcc\x7b\xec\x43\x81\xb7\x9c\xcd\xce\xe5\xf8\xba\xc2\xbd\x97\xe3\x6b\xf0\xda\xa4\x72\x71\x45\x22\x58\xe6\x2b\x15\xcc\x62\x0d\xeb\x4b\xc0\x5c\x0d\xac\xd6\x27\x04\xa3\x21\xa5\xcb\x7a\x37\xaa\xc4\xb6\x2b\x66\x74\x19\x2c\x10\x8c\x52\x2a\x62\xd3\xa2\xef\x12\xaa\x13\x87\x12\x58\x48\x70\x40\x50\x5e\x6e\xdf\xb4\x51\xc2\x73\x98\xa3\x3b\x78\xaf\x9b\x10\x1f\xc5\x27\xa7\x0a\x4e\xe9\x2a\x47\x36\x4d\xe9\xe9\xa8\x6c\x1d\xa9\x53\x00\xaf\x3b\xfc\xbf\xe3\xd7\xd6\x6e\x34\x0c\xef\x1c\xc8\xd9\x1b\x59\xbc\x8c\xdf\xed\x96\x84\x97\x8b\x5b\xda\x10\xdf\x63\xd0\xb8\xda\xda\x17\x26\x3e\x44\x7b\x0f\xd1\xde\x97\x13\xc7\x3c\x44\x7b\x0f\xd1\xde\x43\xb4\xf7\x10\xed\x7d\xf9\xc4\x3a\x44\x7b\xdb\x45\x7b\x45\xa4\x25\x88\x52\x9a\x30\x9a\x49\xcb\x59\xe6\xcb\x11\xb1\x96\x47\x5b\x8b\xf6\xb1\x19\x5b\x77\xc5\x0d\x9d\x1b\x75\x84\x2e\x42\x03\x1a\xf5\x66\x9e\x1e\x03\xba\xce\x82\xc5\x5d\x40\x67\xb3\x98\xc2\x48\x79\x65\x29\xa6\x6b\xd5\x4a\x0b\x03\xc9\xe8\x45\x8b\x40\x90\x1a\x75\x95\x91\xcc\x80\x86\x08\x9a\xd4\x42\x1a\x2e\xb3\x4d\x74\x5f\x83\xcb\xfc\xb9\x9c\x8d\x1a\x9c\x80\x87\x62\x64\x11\xff\xbb\x38\xcf\x55\x61\xea\x9b\x23\x98\xdd\x93\xf0\xdf\x99\x3c\xf4\x58\x69\x66\xe2\x26\xff\xa9\x1a\x08\xc2\x44\x8f\x8f\xa0\xf4\xaa\xd0\x1f\x2a\x66\x74\xc6\xaf\xdf\x8f\x46\x17\xf6\xb3\x64\xdc\xc6\xcf\x62\xd5\x69\x19\x43\x92\x47\xcc\xa2\x9b\x23\xab\x37\xc7\x3a\x18\xae\xc8\xc7\x69\x72\xa6\xf8\xd3\xb1\x76\x64\x80\x3a\xcb\x71\x98\x15\x34\x11\xfd\x70\x82\xd0\x19\x23\x95\xdd\x5d\xab\xd0\x7b\x5d\x17\x8a\x9b\x11\x6e\x9d\xd9\xa9\x56\xf4\x57\x30\x57\xeb\x61\xce\xa7\x09\x0f\x8f\xd6\x8f\xb1\x3f\xd4\x62\x2b\xcd\x87\x6f\xcd\x06\xad\xe2\x20\xdf\x42\x14\xcc\x17\x24\xb2\xc4\x4a\x3e\x4e\x93\x22\xa6\xae\x9d\xb4\xa9\xa1\xd6\xa2\x69\xed\xd0\xbb\xdd\x97\x6a\x77\x5d\x40\xab\xac\x9f\xb6\xaf\x9d\xb5\xb7\x37\xd9\xc3\x69\x7b\x01\xed\x16\xce\x6e\xa1\x53\xe9\x4d\x53\x7a\x8b\x52\x35\x90\x5f\x58\xdd\xf7\xe2\x53\x0d\x31\xd1\x40\x24\xe8\xa8\xa2\xc5\x90\xc8\x8e\x79\x57\x81\xa8\x61\xc5\xc6\x00\xc1\xda\x34\xc0\x08\xd3\xdc\x05\x03\x3a\xda\x87\xd0\xd3\x2a\xa7\x6a\x4e\xad\x2c\xd9\x64\x47\xc4\x74\x15\xf1\x33\xa8\x4e\x72\x86\x22\xe2\x11\x68\x93\x5d\xef\xa7\x21\x74\xc2\xda\xf0\x3f\xc4\x72\xb3\x32\x89\x68\x23\x57\xbc\x08\x5b\xea\xb5\x9d\x91\x96\x9a\xe0\x34\x3f\x6c\x7d\x89\x88\x87\xed\x95\xb3\xfc\x52\xef\x10\x59\x76\x22\x09\xe4\x39\xcc\x86\x90\xcc\x51\x65\xaf\xab\xb2\xd9\xa9\xd7\x94\x9b\x69\xaa\x1e\xbf\xb5\x17\x24\x6c\xda\xf5\x4d\x15\xd5\x24\x1b\xa0\xb4\x2f\xb7\x56\xbc\x24\x1e\xf1\xcc\x1c\xce\x4b\x5a\x6c\x8d\x73\xa6\x7f\x0e\xc2\x16\xfd\x2b\xc9\x62\x08\xae\x5f\xd0\xbd\xe0\x1f\x5e\x1a\xa6\xb9\x51\x7a\xc6\xc9\x28\x46\xaa\x69\xc6\xba\x58\xdf\x98\x0c\xba\x70\xe0\xa4\xc0\x33\x1c\xc2\x1c\x65\xcf\x4a\x12\x21\x62\x4a\x81\x29\x8c\x26\x39\x6a\x00\xaa\x12\xac\x5d\x45\x45\x62\xad\xa2\xa4\x72\x41\x47\xb9\x48\x5d\x54\xe3\x7b\x11\xa7\x61\x48\x57\xc4\xcd\x44\xe6\x78\xd5\xfe\xcf\x33\x50\xcf\xcb\xf7\x9b\xa2\x5e\xee\xe8\x3e\x1b\xea\x1a\x23\x5f\x67\x48\x46\xb6\x87\x34\x46\x4e\x8e\x4e\xa7\x30\xec\xc0\x55\xbe\xa0\xa9\xbc\x8b\x64\xc9\x53\x58\xc2\xa9\x8c\xfb\xa9\xa5\x62\x0b\xa6\xe0\xef\xa3\x9e\xdc\x90\x00\xc0\x04\x7f\x4c\xe9\x2a\x51\x79\x04\xd5\x83\x95\x66\x4e\xc0\x40\x24\x27\xbd\x29\x52\x0d\xf2\x49\x91\x7f\x27\x34\x92\xff\x2a\xdc\x44\xf1\x67\x71\xa9\x48\x14\xae\x51\x51\x92\xa2\x24\x66\xcb\x1b\x53\x52\xa2\x65\xb6\x82\x82\x67\xf8\xc7\x35\x4a\xa7\x0a\x91\x58\x66\x55\x0c\xc0\x1d\xcc\xc3\x85\xf8\xe7\x1c\xc9\x6f\x49\xf9\x2d\x4c\x11\xcc\x91\xf8\xb7\xc8\x17\x27\xfe\x2d\x6e\xaf\x6c\x32\x76\x31\x29\x4b\x98\x6c\x88\xcc\x36\x18\xd8\xb2\x5f\x3a\xb0\xe2\x89\x30\xd5\xd7\xa8\x48\x84\x59\x43\xf2\xc7\xbf\xfd\x68\xef\xcb\xc9\xc6\x8e\x0e\x05\x47\xa7\x34\x56\x53\xaa\x7d\x99\x62\x12\x61\x32\xb7\x77\xae\x79\x00\xfa\xcd\x1c\xd3\x13\xb5\x61\x28\xef\xf6\x74\x78\x58\xd6\x89\x18\x2f\x95\x7c\x94\xc4\x90\x28\xf4\xf8\xf7\xe2\x01\xf0\xd6\x64\x81\x21\xee\x14\x71\xe0\x7a\x6f\x30\xc4\x75\xc0\xf5\xcf\x4e\x42\x28\x83\xcc\xd2\xb3\x5c\xd9\x98\xcc\xbd\x13\x21\xab\xe9\x6f\xff\xb4\x63\x4a\x6d\x1e\xae\x33\x74\x1a\xe2\x53\x72\x7f\xb7\x40\x29\x3a\x1b\x76\x9b\x27\x83\xd1\x05\xde\xd9\x51\x42\xc9\x3c\x2b\x16\x0b\x3f\xa3\xb6\x01\x5a\x9b\x76\xc6\x83\x49\xb2\xbb\xf9\x34\xc9\x78\xfa\xe7\xda\xdf\xc7\xe2\xca\xfe\x36\xf3\x00\x93\x24\xb3\x77\x2d\xd2\x69\x2d\x6b\x92\x2c\x43\xea\x43\x04\xd1\x92\x92\xf2\x6f\x8e\xcc\x6c\x15\xab\x2f\xad\x58\xb0\x51\x06\x2b\xd1\xea\x18\xa4\x92\x36\x36\xd8\xf2\x56\x15\x63\xb2\x90\xa6\x88\x66\x9d\x90\x2e\xed\x1d\xca\x5e\x64\x8b\x5a\x2f\x35\x41\xe7\x9a\x48\x71\xef\xca\xda\x03\x81\xb9\xe2\xe3\xe3\x19\x26\x30\xc6\x7f\x96\x9a\x40\x2f\x2c\x07\x2a\x08\xc1\x9c\x35\xe7\xb8\xab\xd2\xd7\x2f\xa7\xbd\xf2\xb8\x11\x7d\x71\x81\xb1\x40\xc7\x44\xdb\x82\x6f\x00\xd4\xa5\xd1\xe7\x50\x27\xf2\x3d\x67\x2b\xf6\x95\xb7\x99\xf7\x87\x89\xa6\x89\x5d\x48\xa9\xa7\xff\x5c\x02\xae\xfa\xd0\x67\x7b\xe4\x7c\xbc\xaf\x3d\xc7\x66\x17\x63\xb5\x47\xd5\xf6\xd7\xaf\x4b\x9a\x15\xe1\xf1\xb6\xe2\x81\x49\xa7\x0e\x4d\x10\xc9\x16\x78\x96\x33\x2d\xe1\x15\x54\x1b\xf3\x5a\xbd\xc7\x08\x67\x21\x5d\xa3\xf4\x5e\xa9\x25\x1b\xe9\xf4\x2d\x02\xb7\xa8\xa8\x75\xeb\x61\x90\x84\xc6\x5b\x29\x40\x77\x67\xbb\x2c\xa3\x88\x64\x3e\x9c\x44\xf1\x13\xa2\xe5\xf1\x15\xbf\x49\x7f\x44\xf7\xf4\xbe\x86\x3f\xe2\xf6\x41\x36\x36\xa6\x8c\x1d\xb4\xea\xfe\x8a\x5f\x32\x38\xe4\x50\xe1\x2b\xe9\xb8\xe8\x2c\x22\xc5\x6b\xa3\x21\xb3\x77\x6f\xe2\x6b\x58\x97\xba\xc1\x27\xfe\xed\xb0\x7b\x6e\x8e\xfe\x56\xd9\x15\xfd\x1a\x66\xf6\x7e\x4d\xca\xdd\x6c\xe8\x76\xa6\xd7\x8d\xdb\x9a\xd9\xc2\x58\xf9\xa6\x0c\x11\xf5\x92\x8f\x7d\x1d\xd6\xde\x3f\x0b\xea\x8f\x03\x3d\xd5\x04\x55\xac\x46\x56\x91\xef\x0f\x59\x2d\x5f\x17\x25\xb6\xb5\x7c\xff\x32\x2a\x7f\x7f\xe6\x98\x14\x2e\xb5\x70\xe7\x86\xda\xf7\xbd\x88\x94\x6c\x1e\xc7\xdd\x45\x4f\xa7\x34\x46\x43\x34\xe3\x8d\x15\x3d\x3c\x98\xb3\x6a\x16\xb3\xa1\x05\x9a\xd9\x4a\x3c\x39\xc5\x95\xb9\x3d\x08\xbc\xa7\xa0\xf5\x33\xce\x83\x19\x94\x7e\xb1\xf3\xa0\xa3\xb9\xfd\x3c\x6c\x1a\x81\xb7\x3c\xe0\x93\x64\x1a\xc9\xbb\x3c\x20\x32\xf2\x6c\x7f\x55\x3a\x6f\xd7\xed\xd3\xdb\xad\xc5\xab\x2e\x42\x9e\x8e\xf2\x14\xe6\x68\xae\x12\xbf\x8a\x1c\x8d\x43\x1a\xc7\x98\xcc\xaf\x0b\x89\x5b\x79\xf5\x79\xc9\x84\xd0\x85\xf9\x12\x97\x77\xe0\xed\x0c\xea\x1c\x2d\x93\xb8\x7c\x90\xb8\xf6\x5c\x4d\xed\xed\xaf\xc6\x3e\xdb\xf4\xca\xe9\x4c\x08\xcd\x39\x8b\xea\xe0\xb3\x70\x81\xa2\x55\x8c\xd2\x0e\x7f\x7f\xa8\x73\x5b\x5c\xd2\x62\xcb\x2f\x4c\x71\x8e\x43\x18\x07\x09\x8d\x4e\xc0\x8f\xda\x03\xd6\xe5\x29\x47\x56\x2f\x0b\x53\xc8\x88\xaa\xb6\x5d\x5c\xf5\x12\x9a\xe6\xac\xd6\xcf\xef\xde\xfc\xa4\x6a\x19\x4f\xf0\xb0\x81\xc9\x14\x3a\xfa\x53\x47\xa2\x60\xd0\xeb\xd6\x3f\xf6\x06\x67\xe6\xc7\xcc\x58\x2c\xfd\xa6\x85\xa2\x47\xb8\x97\x70\x8e\x06\xab\x38\x16\xbb\x9d\x95\x63\x38\xd8\x2c\xd5\x89\xa8\x1e\x71\x7a\x78\xa8\xc2\xb0\x5e\x62\xc9\x69\x8c\xd2\xda\x4c\x04\xc5\xab\x3c\x27\xe0\xfc\x0b\xce\xf2\x62\xe6\x98\x41\x7f\x66\xcb\x87\xac\xfa\x2d\x5e\x0b\xb8\xd1\xce\x18\x70\x7c\xc5\x1e\x70\x88\xcf\x08\xee\xf2\x1a\x05\x1c\xf3\x40\x42\x31\x38\xf1\x68\xbd\x39\x14\xf1\xcd\x6c\x90\xa1\x70\x95\xe2\x9c\xc3\x43\x5f\xf2\x93\xea\x66\xdc\xa0\x48\xe5\xdc\x74\xba\x8c\xf1\x88\xaa\xab\x66\xd2\x71\x38\x32\x84\x09\x9c\xe2\x18\xdb\x9f\x4d\x8a\xec\xaf\x02\x8f\x7e\x1b\x4d\x4e\xbb\x97\xbd\xbe\x5e\xb8\xa6\xf1\x6a\x89\x2e\xf9\x3e\x55\xa5\x95\x46\xd4\x60\x5a\x7f\x81\x7a\xc9\xda\x0c\x60\xbe\x38\x01\xc7\x4b\x92\x1f\x17\xd5\x8c\x24\x86\x83\x14\x53\x4e\x9e\x18\xf2\xc4\x85\xd5\x81\x27\x7a\xb9\xe0\x51\x21\x1e\x03\x75\x5a\x45\x2d\x3d\xd7\xd1\x3d\xe1\xa8\x9d\x11\xbc\x45\x57\x30\xc4\x0c\x6d\x55\x62\xa1\xb7\x35\xfd\x76\xd0\x46\x18\x55\x18\xef\x13\xcd\xf2\x03\xcf\x19\x85\xfd\xf3\xb1\xbb\x90\xb5\x1c\x8c\x87\xa7\x67\xe7\xae\xa6\xc3\xd3\x5f\xf5\x22\x44\xd6\x0e\x06\xfe\xe5\xfa\xfd\xf9\xb0\x7f\x3e\x3e\x1f\x4d\xfa\x57\xdd\xf3\x49\xff\xf4\xb2\x06\x74\x0d\xe3\x15\xfa\x90\x52\xdb\x2b\xec\x33\x8c\xe2\x48\x99\x3c\xd6\x42\xb1\x0c\x98\x00\xef\x30\xe3\x9b\x31\x97\x1d\x95\xf1\x79\xff\xb4\x3f\xb6\x76\x5e\x3b\x43\xd9\xfa\xe4\xa6\xf7\x18\x8b\x0d\x0b\x4e\x85\xf3\xc1\x47\x27\x1e\x15\xc6\x16\x91\x2a\xcf\x61\xef\x6d\x01\xb7\x3a\x6b\x6e\xf6\x5e\x67\x4c\xd5\xf9\xd5\xe0\xc3\xc5\xf9\xff\x4e\x2e\xaf\xba\xf6\xd9\x3d\x01\x54\x1c\x3c\x7d\x41\xe3\xd0\x6f\x8e\xf2\x77\x35\x64\x86\xcb\xc6\x29\xbc\xbc\xbe\x18\x5f\x8f\x1c\xf8\xd5\xd6\xb1\xc6\x21\xb2\x03\x99\x02\x56\x9a\x18\x8d\xdd\x75\x7b\xa3\xd3\xf7\x17\xe7\x93\x5f\x4f\x7b\xe3\xc9\x87\xab\xe1\xa4\x7f\x3e\xfe\xf5\x6a\xf8\x4b\x33\x02\x1e\x2a\x77\xaf\x87\xa7\xe3\xde\x55\xbf\x2d\x54\x91\x91\x44\x3e\x98\x65\x0e\xc0\x99\xc4\xee\x49\x34\x9c\x0b\x06\x33\xd9\xdb\x00\xa9\xd7\x53\x50\x98\x0a\x59\xc3\x5a\xb2\x7c\x1d\x48\x79\xc8\xb6\x56\x51\x87\x92\xae\xbc\xe3\xa9\x15\x6f\xd0\xb6\xc4\xc0\x09\x45\x5e\x67\x60\xc0\x94\x1f\xc3\xa7\xa1\x1d\x58\x94\x87\xc7\xc6\x85\x08\xba\xce\x8e\xa7\x30\x43\x9c\x72\x9d\xc8\x8d\x79\xb0\x65\x6f\xe6\x52\x3d\xae\x2a\xd4\x4f\xc2\x1a\x27\xd9\x67\x0e\xd7\xb3\x5c\x2a\x34\x3e\x26\xac\x55\x15\x0f\x0d\xdf\x74\x45\x02\x6b\x9d\x14\xc1\xe8\x8a\xc4\xf7\xa6\x4d\x6f\x8e\x24\xa5\x09\x9c\x43\xf1\xa8\x00\x43\x71\x4c\x0b\x05\xb1\x1f\x29\x23\xde\xfa\x09\xda\xf2\x76\xad\xba\x75\x41\xc6\x78\x8d\x08\xca\xb2\x41\x4a\xa7\xd5\xc7\x1e\x66\x10\xc7\xab\x14\x8d\x17\x29\xca\x16\x34\x8e\x4e\xc0\x9b\xd7\x66\x8d\x45\x9e\x27\x1f\x2d\x4f\xc4\x25\x02\x8d\x32\xa8\x6e\x14\x72\x77\xeb\x1f\xaf\x7f\x7e\x5d\x2d\xe1\xcf\xc2\xa2\x13\xf0\x69\x3c\x1e\x98\x65\x7c\xf7\x00\xc6\x3c\xdd\xf4\x08\x85\x94\x44\xd9\x09\x78\xf3\x53\x05\x82\x48\x5b\x5c\x94\xbf\xab\x14\xcb\x67\x1c\xf4\xf1\x98\x15\x64\x06\xe2\x02\xc0\xdb\xd7\x75\x33\x53\x5f\x0a\xed\x2c\x9e\xe1\xf9\xfb\xab\xab\xf1\xe4\xd7\xde\xf8\xd3\xe4\xea\xb3\x4b\x4d\x94\x4e\xea\xc6\x37\x61\xca\xae\x46\xa3\x0b\x9f\xca\x2d\xee\xde\xd8\x79\xc1\x30\x91\xe5\x2d\x9f\xef\xce\x48\xb6\xda\xc1\x2d\xd4\xd6\x41\x59\x6c\xaf\x2c\x64\x8b\x7d\xf5\xa7\xba\x32\x17\x92\x60\xe8\x11\xbf\x52\xe5\x67\xb2\x0a\x5a\xe2\x16\x56\xc3\x42\xa9\xc0\x35\x59\x31\xa4\xcb\x25\x24\xd1\x09\xf8\xd7\xcd\xd1\xf1\x14\x93\xe3\x6c\x71\x73\xf4\xbb\x5e\x03\xa6\xf3\x4c\x14\x97\x63\x63\x15\x63\xb8\x22\xe1\x22\x10\x98\x08\x44\x3a\xb5\xc6\x7b\x58\x8d\x3a\xa5\xf7\xb7\x6c\xf8\x75\x87\xda\x7a\x29\x54\x3b\x7f\x13\xbe\xbc\x4a\x27\x48\xc8\x3e\x3a\x35\x20\xca\x53\x1c\xd6\x14\x4a\x05\xe0\xcf\xef\xde\xfe\xa4\x57\xc9\x51\xba\xc4\x84\x6b\xe6\x4b\x94\x65\x8c\x2e\x82\x8d\x22\xb4\x3e\xd6\x0a\xf9\x15\x56\x7f\x3b\x49\xdf\x0f\x38\x46\x1b\x8a\x07\x83\x97\x76\xe4\xf4\x3a\x43\xee\x22\x86\x2c\xc2\xb3\xa0\x77\x08\xb3\x3c\x10\x27\x10\x9d\xfc\x7f\xc9\x2a\x3d\x15\xe3\x73\x0c\x04\x02\x5b\xf3\xfd\xb6\x9a\xc6\xbf\x4a\x5a\x6a\xa1\xbf\xb4\xe6\x48\x11\xbf\x24\xa5\xc8\x7f\x1a\xdf\xc1\xfb\x62\x75\x8a\x91\x3b\x02\xc3\x55\xd7\x8d\x07\xd2\x59\x4f\x15\x22\x8b\xce\x69\x92\xdb\xa1\x54\xed\x60\x3f\x18\x94\x87\x75\x30\x16\xea\xfb\xa1\x18\x95\x3d\x14\xf4\x43\x31\x2a\xb7\x73\x9a\x42\x75\xaf\xae\x02\xb1\xe1\x71\xae\xf2\x87\x73\xb4\xac\x4b\xf4\x00\xf0\x0b\x45\xb5\xd4\x87\x75\x29\x2f\x50\x2f\x2b\x76\x4c\xf2\x6f\x62\x41\xa0\x65\x92\xdf\x77\x71\xf5\x51\xc1\x25\x8a\xf0\x6a\x79\x02\x2e\xf9\x0b\x8e\x4e\xd0\x5f\x89\x44\x96\xb4\x00\x2e\x22\xf1\xa5\xd2\x29\xfd\xae\x52\xfe\xe8\xba\xce\xe3\xc0\xb6\xd2\x1b\xce\x18\x7c\x1b\x17\x39\x68\xf4\x7c\x1b\x39\x58\x39\xd4\x6d\xbc\xdb\x02\x07\x60\xd5\x34\x6e\xdf\xb6\x71\x35\x72\x4c\x04\x80\x63\xff\x1d\xd5\x5d\x76\x92\xb5\x87\xa5\x6f\xbe\xc7\x0d\xe5\xca\xf8\xdb\xe0\xb7\xaf\x7d\x65\x4b\xd7\xcf\xbf\xbd\xfc\x1d\x6c\x08\x6f\xb9\x1d\xfc\xdd\x6e\x31\x5a\xf9\xb2\xe6\x1d\x22\xb2\x1e\xf1\x3a\xfb\x8a\xa5\x98\x27\xcc\xca\x1f\x7f\xef\xb8\xae\xbc\xc4\x6b\xc8\x2a\xdb\xc7\xe7\x91\xd0\xad\x17\xac\x72\x35\xd5\xe2\x37\x1e\xa5\x51\x85\xa3\xdf\x46\x93\xcb\xab\xee\xf5\x85\x75\xb7\x92\x95\xf6\x7b\xf6\x9d\xcc\xde\xe0\x6c\x72\x71\x75\x66\xec\x79\xb8\x03\x7b\x57\x9f\x47\x93\xe1\x75\xbf\xdb\x1b\x56\x61\xc9\x78\x9b\x69\xb7\x73\x3d\xe5\xe0\x99\xbf\xb4\x9b\x50\x87\x62\x58\xe2\x3e\x28\xb5\x8a\x3a\x94\x25\x65\x42\xbc\x16\x0e\xd0\x21\xc5\x78\x7a\x6c\xa9\xe6\x8b\x7a\xa3\x2f\xa8\xfe\x10\xb1\x72\x64\x6d\x4c\x53\xf5\x5c\x25\xec\x80\xae\x33\xe6\xb3\xee\xe6\x2b\x59\xa8\xf5\x17\x70\x72\x2c\x53\xe2\x87\x64\xcc\x63\xa3\x5d\x57\x9c\x80\x7f\x79\xc9\x0d\x40\x4b\xd3\xa5\xf9\x60\xac\xb2\x47\xd4\xf1\x7e\xb9\x9b\x91\x59\xad\x40\x54\x9e\xe7\xde\xd6\x00\x34\xe9\xd4\x6e\x1c\x4d\xf6\x5f\xdb\x8e\x5a\x4c\x0a\x68\x6d\x4e\xd6\xe1\xbf\x54\x6b\xb2\x85\x8d\xa8\x0f\xe6\x19\x6d\x44\x95\x7b\x7b\x5c\x5a\x89\xc0\x65\x3b\x3e\x3c\x80\x9c\xfe\x06\x97\xb1\x59\xfd\x3f\x00\x93\x08\x91\x1c\xbc\x2b\x8e\x23\xc6\x19\x72\x42\x51\xe8\xa1\xd9\x0c\x85\xf9\x09\xe8\xd3\xf3\x2f\x28\x5c\xe5\x9a\xff\xef\x3a\xa9\xa8\x83\xb2\x6c\x0e\xea\x30\x47\x72\x2e\xcb\xa6\xdc\xf3\x27\x34\x42\x95\x79\x25\x34\xe7\x8f\xf9\xde\x37\xf7\xdf\xb2\x83\x20\xa5\x71\xb5\x97\x25\x64\x36\xb1\xaf\x0b\x69\x55\x81\xc7\xea\x8b\xc5\xdb\x5b\xe2\x1c\x99\x17\x64\x86\x6f\xb8\x21\xaa\x5b\xeb\xf3\x69\xd2\xb0\x7d\xf3\x71\x9a\x78\xf7\x6e\x2c\xe6\x39\xa8\xda\xe7\x60\xf3\x43\x2e\xd5\x47\xea\xf7\x7a\x48\xa2\xdd\xc1\x33\x99\x54\x08\xa5\xb9\xd7\x84\xb2\x54\x08\x6c\xb9\xa6\xb6\x1b\x01\x4a\xf3\x63\x87\x6b\xe0\x36\xbc\x3f\xbe\x1f\x4c\x46\xe7\xc3\xcf\xe7\xc3\xc9\xd9\x55\xff\x43\xb3\xf5\x6d\x21\x58\x99\x5f\xb1\xe3\x3c\x1e\xe1\xf0\xfb\x6c\x0a\xa4\x7a\xb2\xb9\xa8\xb2\x2f\xaf\xcf\x4d\x8d\x5f\x4f\xc7\x67\x9f\xf8\x39\xca\xd1\xc0\x72\x42\xb3\x38\x5f\x50\x4d\xab\xaf\xda\x9f\x9e\xf5\x26\xa3\xfe\xe9\xb8\x05\x08\x67\xde\x58\x0f\xdc\x8f\x17\x57\xef\x4f\x2f\x7a\xfd\x0f\x57\xee\xb3\x9e\x27\xf2\xb1\xaa\xf2\xb6\xa0\x0f\xe8\xb0\xcb\x66\xbd\xf7\xd1\x0f\x2f\xa5\xab\x1c\x93\xb9\x48\x2f\xa9\xc2\xb5\x0e\xa8\xa3\xdf\x46\xe3\xf3\xcb\xfd\x10\xe0\xeb\xac\x7e\x5b\x37\x7b\x5b\x9e\x65\xf5\xaf\x79\x5c\xe8\x4d\xb5\xe4\xe5\x1e\x17\x2a\xfd\xb9\x56\x52\xb9\x41\x22\x67\xdc\xfe\xaa\x50\x4d\x7c\xec\x37\x25\xbb\x6b\x90\x6a\x3e\xf6\x68\xec\xb6\x96\x6a\xd0\x84\xdf\x86\xcb\x9f\x76\xc3\xa6\x86\x41\xdd\x7d\x17\xac\x57\x56\xac\xef\xd9\xb4\x3d\x83\x55\xf4\x5a\xcb\xdc\xeb\xea\xd5\xa7\x82\xbc\x7c\x53\x77\x80\xf9\x05\x54\xcd\x05\x1e\xd0\xa8\xf7\xc1\xea\xfd\x62\x82\xf2\x80\x3f\x22\x53\x71\x77\xf5\x87\x07\x88\x58\x8a\xbc\x19\x4a\xe6\xb5\x99\xe0\x40\xe8\x8a\x4f\x3a\x4e\x60\x14\xa5\x27\xa0\x7c\x51\x46\x1f\xc7\xd1\xab\xff\x03\x00\x10\xc9\x7e\xff\xde\xf9\xa9\xf3\xff\x75\xde\x1c\x9d\x80\xa3\xaa\xff\x5e\x4f\x2b\xa0\x5f\xb2\xe4\xb9\x04\x86\x32\xec\xd9\x2d\x72\x09\xb8\xbc\xfb\x12\xd1\x22\xa7\x56\x87\x51\x28\xcc\xd3\x58\x73\x9c\xe7\xe2\xb2\x64\x59\x22\xc9\x21\xb9\x49\xf4\x2d\x75\xb9\x00\x77\xa5\xe5\xe2\x02\xfc\x6a\xf0\x2f\xee\x4a\x17\x58\x5d\x40\x49\xe2\x55\x0a\x63\x17\x6a\xd2\x21\xc4\x64\xbe\x8a\x61\xea\xa8\xc5\x1d\xf7\x90\x32\x5f\xbe\x78\xdc\x8c\x1f\xa6\x92\x81\x86\xe2\xb6\x31\xa7\xc1\xfa\x0d\xf7\x44\xa5\xb8\xe2\x2c\x16\xe9\x9e\x65\x96\xd3\x94\x1b\x2b\xda\xa7\xd5\xb4\x1e\x57\x96\x5c\x00\x1e\x24\xab\x73\x81\x5b\x7a\xef\x34\x41\xe4\x74\xd0\xfb\xfc\x76\x64\x7e\x07\x20\x42\x59\x98\xe2\x24\x57\xcc\x59\x1f\x10\xa0\x77\x24\x03\xf9\x02\x81\x18\xcf\x50\x78\x1f\xc6\x08\xd0\x19\x53\xef\x80\x8a\x9b\xa6\x00\x13\x5e\x2e\xf7\x05\x4a\xe0\x49\xca\x80\xd4\xc2\xc5\x1a\x43\x55\xc4\x34\x0f\x81\x64\x79\xca\x6f\xe7\x96\xdf\xf9\x04\xb7\xab\x5a\x0b\x5c\xe8\xd5\x05\xbe\x86\xe4\x4c\x6a\x21\x44\x83\x22\x56\x7e\x19\x25\x28\x04\x3c\x51\x06\x12\x84\x89\x50\x86\x53\x14\x71\x68\x60\x46\x53\x4e\x9c\x2b\x41\x9c\x8a\x22\xb3\x53\x84\xfd\x66\x31\x5c\xd3\xea\x36\xbb\x6f\xa8\xa0\x90\xca\x1b\x35\x72\x92\xa2\x14\x24\x1b\x11\x83\x37\x33\xc8\x21\xd5\xf1\x6c\x15\x83\x90\x2e\x93\x18\xb1\xe6\x9c\x67\xdc\x4b\xb4\x05\x81\xac\x08\x96\x23\x9a\x52\x1a\x23\x48\xda\x0c\x36\x45\x7f\xac\xd8\x84\x19\xd1\x14\x36\x79\x5a\x1c\xc2\x68\xe8\x49\x74\x5a\x2c\xf2\x36\x11\xcc\xe7\x8b\x4c\x5a\x22\xaf\xfb\x93\xdc\x65\xa6\x84\x8e\x4c\xa8\x60\x95\xd5\xec\xbb\x4d\x52\xab\x67\x20\x3e\x54\xa5\x73\x51\x50\x97\xc8\x66\x72\x06\x5d\x0a\x97\x8f\x4c\x6c\x28\x79\x37\x91\xb9\x6d\xc5\xe9\x37\x29\xf1\x5c\x55\xbd\xab\x51\x4c\x86\x73\x35\xc2\x34\x85\xf7\xf5\x42\xbb\x11\xe8\x47\xa2\x11\x15\xf1\x2b\xb8\xbf\xd7\x75\xd4\xf0\x8b\x52\xf1\x63\x36\xd4\xf6\xad\xf1\x8c\x33\xd7\x0e\x00\x84\x89\xb6\x3d\x80\x25\x0c\x77\x84\x90\xd0\x68\xc7\x41\x30\x08\xae\x59\x6a\xd3\x7e\x9d\xa3\xaa\x97\xd1\xd4\x7c\x3b\x89\xbe\x59\x90\x54\x97\xa6\x72\x27\xa1\x4c\x24\x75\xbc\x7e\x33\x45\x39\x2c\xcd\x7a\x1d\x8c\xd3\xfc\x35\x42\xab\x32\x74\xf1\xe6\xb5\xfa\xdd\x10\x11\x65\xe9\x8a\x27\x01\x4f\x80\x48\xa4\x45\x0c\xa5\x7c\x73\x34\x5e\xe0\xac\x88\xdd\x82\x90\xe3\x8d\x33\xb0\xca\x50\xa4\x8c\x91\xe0\xac\xdf\x2b\x4f\x23\x18\xf9\xaf\x2d\x11\xe9\x86\x1c\x5e\x2d\xb4\x8a\x41\x8a\x8d\x54\x0b\x4a\xe6\xdb\x29\x95\xf3\x64\x5e\x55\x27\xe7\xc9\xbc\xae\x48\x54\xbe\x5a\x9f\xa6\x10\xda\xa1\xad\x0a\xdd\x7e\xb0\x45\xc6\xdc\xad\x46\xac\xde\x84\xaf\x0e\x5b\x7d\xaf\x8f\xdd\xc8\xd0\xfb\x12\x08\xb0\x83\x11\x61\x35\x20\x1c\xc6\x43\x69\x38\xbc\x84\x41\x97\x89\x8a\xb7\x1a\xf8\xc7\xf7\x83\x11\x33\xba\x51\x75\xf0\x45\x41\x9d\x00\x66\xae\xe4\x66\x22\x58\xbd\x4c\xdd\xc7\xac\x89\x8f\xa7\x32\x35\x2b\x99\xe9\x3a\x45\xe2\x34\x2b\xcd\x44\x89\x8d\x6a\x23\x02\xf3\x8f\x1c\x4e\x8f\xcc\x68\x95\x74\x66\x69\x9d\x7e\x96\xfc\x78\xba\x09\x5a\x09\x88\xbf\x00\x3b\xd4\x50\x11\xe6\xe8\x98\x6e\x60\x5e\x9a\x68\xc3\x35\x04\x77\xda\xcc\x21\x82\xd3\x41\xef\x1b\x37\x6b\x3d\x16\xe3\xbc\xa0\x86\xcd\x4e\x81\x51\xc4\x19\x12\xc6\x03\xbf\xd1\xe9\xb6\x66\x5b\xd8\xab\xdc\x56\x3b\x8d\xa2\x14\x65\xee\x2a\x6d\xcc\x25\x11\x78\xe7\x8f\xd8\xf8\x00\xf9\x90\x6d\x8d\xb2\xf8\x21\xeb\xf9\x2a\xf3\xb7\x84\x5f\xf0\x72\xb5\x3c\x01\xef\xfe\xfe\xf7\xb7\x7f\x6f\xac\x8d\x89\xa8\x5d\xdb\x3a\xa8\xfe\x04\x3d\x30\xc9\xd1\xbc\x7a\xb3\xaa\xfa\xe3\xc7\xb8\x5e\x3e\xa2\x4d\x9e\x8f\x5e\xcb\xe1\x56\x89\x1f\x5b\xc2\x3d\xb7\xe5\xdc\x8e\x97\x04\x90\x6b\xec\x9b\xe1\xb6\x70\xc4\xee\x68\xdf\xe7\x4d\xb4\x01\x66\x31\xee\xf5\x5f\xa0\x2d\x24\x57\x8d\x72\x85\xb8\x6a\x88\x71\xfb\x4b\xaf\x71\xe4\xab\x50\x0e\xd7\x5e\xab\x69\xa2\xbd\x53\xec\x6e\xec\x20\x4f\xa0\x4b\xb9\x96\x42\xb4\x31\x04\x68\xaa\x12\x4b\xec\x8f\x4e\x85\x22\x13\xaf\x1f\x00\x3a\xb3\x6a\x5e\x3f\x22\x0d\xb1\xb7\x7d\x9b\x17\x65\x6a\xd5\x9d\xac\x8b\x0b\x06\xc6\x65\x5c\x14\x85\x76\xdb\xc2\xcc\xee\x5a\x35\x2d\x8a\xd2\x97\x60\x59\x7c\x93\xa6\x40\x8d\x87\x8b\xf9\x70\xc7\xf2\x75\xfe\xad\xcc\x6d\x03\x2d\xf8\xf4\xab\x16\x36\x5d\xea\x56\xc5\x8d\x2a\x38\xa1\x91\x57\x9e\xb6\x8a\xce\x14\xcc\xb3\x1b\x18\x9f\x92\x68\x06\x50\x48\x4c\x9f\xbd\xd1\x64\xb4\xb4\x34\x59\x22\x94\xf9\x35\x63\x9b\xbe\xc4\xaf\x8d\xee\xd3\x6b\x7a\x35\x36\x50\x1b\xe8\x6d\x20\x35\xf7\xd9\x68\x00\xb4\x07\xd6\xa0\x73\x01\x10\x49\xa4\x33\xa7\xce\x04\xc5\xf9\x02\x5f\xb9\x4f\xeb\x82\x96\xb6\x51\x03\x9d\xbd\x23\x09\xd4\x72\xf0\x16\xca\xfd\x1d\x47\x0d\x87\x55\x10\x18\x1c\xee\xd6\xf7\xae\xc1\x39\x87\xe5\xd4\xf7\xa5\xcc\x79\x81\x5a\x56\xe5\xef\xde\x49\xc7\x0a\x0b\xcb\xa6\x60\x45\x89\x5d\xbb\x26\xc6\x1c\x98\xba\x35\x29\x20\x4a\xc5\x7a\x56\x6e\x62\xef\x41\xab\xee\x75\xaf\xde\x3e\x8f\xdf\xa4\x42\xde\x6a\xcb\xa9\x72\x1f\xa2\x1d\xbc\x06\x98\xc0\x76\x19\xa1\x3d\x64\x50\x35\x2e\x7e\x1c\x71\x24\xe5\x86\xf7\x80\x46\xd9\x8f\x0e\xfd\xd9\xa4\xb9\x5a\x47\x21\x40\x0b\xa1\x4e\x1a\x34\xbe\xbf\xbd\x8f\x06\x4e\x9d\xb3\xd3\x3e\xa0\x1d\x13\xa7\x1a\xdf\x7b\x5f\x1b\x79\x48\x5b\x30\x73\xab\xc9\x35\xd1\x7b\xf2\x1d\xfd\xdd\x5c\xa0\x3e\x8d\x90\xcd\xfb\x51\xdf\xed\x5b\xfa\x56\x9f\x47\x15\x1c\xdc\x9d\x56\x2c\xb9\x51\xe4\x53\xee\x0f\xdb\x63\x8e\xbe\xb5\x57\x2a\x4b\x7d\xee\xf5\x5f\x6b\x81\xe5\x39\xaf\xe3\x1b\xe8\x2e\x71\x8b\xbe\x64\xa9\x56\x11\x8b\xbe\xc6\x7f\x4d\x9d\x3f\xa3\x15\x55\xbc\xc7\xb3\xf5\x1a\x1d\x46\x67\xda\x31\xd7\x72\x8d\xaa\xef\xf5\x35\x6a\xbc\x01\xa4\xaf\x51\x55\x70\x58\xa3\xad\x18\x74\xa3\x35\xaa\x5e\xe0\x41\x51\xb6\x9a\x12\x64\xc9\x14\xb0\xad\x02\xf5\x6a\xca\x55\x86\xd2\x67\xec\xf0\xfb\x5e\xcc\x95\x57\x8d\x3a\xda\x2b\x48\xd6\x45\xad\xca\xac\xaa\x57\xc0\xb2\x3b\x47\x46\xa1\x45\x09\xd7\x5f\x57\x32\x54\xb1\x56\x7c\xbf\xe5\x5a\xdf\x6a\xcf\x52\x65\xd8\x96\xd7\xf6\x44\xd9\x94\xcd\x72\x0a\x67\x33\x1c\x82\x59\x4c\xef\x00\xcc\x41\x6f\x00\xa4\x42\x03\x34\xe5\x71\x7e\x10\xa3\x35\x8a\xff\xba\xe2\x01\x26\x49\x8c\x51\x34\xa6\x96\xd5\xd8\xe0\x55\x14\x6e\xc0\xc8\xed\x4a\xb5\x00\x03\xd4\x6d\xf4\xf3\x2f\x09\xa3\x7c\xe5\x9a\x75\xf5\xb7\xc7\x9d\xc7\x5b\x74\xbf\xc7\x08\x5d\x71\x47\x77\x7f\x20\xf9\x21\xae\xe6\x28\x62\xbb\x58\xe3\x26\x1d\xb7\x8e\x37\xb6\x88\xec\xc9\x0b\x32\xfe\x0a\xd4\x7a\x7e\xdb\x86\xd2\x1e\xb6\x36\x6d\xb9\x0f\xea\xbf\x8d\x5c\x66\xd0\x9a\xbc\xcd\xa3\x68\x3c\xbc\x4a\xa3\x86\x15\x67\xde\xc3\x88\x99\x70\xc3\x64\xce\xc5\xda\x2c\xa5\x4b\x71\x44\x03\x2e\x51\xb9\x84\x0f\x2b\xf7\xb0\x72\x2d\xbf\xc3\xca\xdd\x68\x14\x6d\x62\xf0\xf6\x52\x34\x77\x78\xd1\xe6\x66\x23\xca\x99\x15\x2a\x2a\x03\xfe\xda\x31\x40\x8c\xd5\x60\x8e\x22\x30\x85\x19\x8a\x00\x15\xd7\xa7\x68\x1a\xa1\x14\x60\x02\xee\x16\x38\x5c\xb0\x4f\xf7\x00\xa6\x08\x64\x28\xef\x6c\x62\x8f\x37\x47\x16\x79\x7c\xd2\x49\xde\xca\x9d\x1f\x1e\xcb\x64\x16\x0a\x9e\x61\x69\x65\x0b\x00\x20\xa7\x60\x8a\x94\x39\xa2\x46\xc1\x86\x68\x41\x57\xa7\xa7\xf7\xfc\x3d\x7f\x77\xf5\x82\xce\xe7\x98\xb8\x4f\xe2\x1b\x28\x9e\xeb\x4d\x8a\x93\xcf\x39\x05\x98\x44\xfc\x72\x2d\xc0\x33\xc0\x93\xf3\x81\x6c\x41\x57\x71\x04\xe6\x88\xb0\x15\x80\x40\x4c\xe7\xdc\x7f\x80\xab\x38\x67\x2d\xf8\x29\xe7\x06\xec\x9d\x71\x0b\xe0\xc8\xa3\xed\x40\x5b\x72\x06\xb7\x58\x21\x89\xd8\xb4\xe5\x34\xa4\xb1\x90\xfe\x28\x3a\x8e\x10\x61\x74\x9d\xde\x97\x74\x05\xbd\x19\xc8\x17\x38\x13\xcf\x27\xf1\xb1\x92\x8c\xc1\x49\x45\x9e\xd6\x57\xa2\x94\xd5\x15\x0b\x0f\x65\x0c\x9c\x40\xcb\x39\xae\x26\x91\x66\x33\xcc\x85\x5d\x3e\x60\xc8\x6b\xb6\xf9\x02\x59\xc6\x93\x53\x81\x0b\x63\x6d\xe8\xe7\x8f\xd6\xfa\x04\x91\x88\xa7\x10\xf7\x4b\xd6\x0a\x9b\x44\x12\xdd\xd2\x5d\x44\x24\x62\x73\x50\xe0\x9d\x42\x32\x47\xaf\xc0\x14\x31\x4e\x52\x15\x30\x09\xe3\x55\x84\x22\x70\x87\xf3\x85\xbc\xea\xc8\x2b\x76\x40\x2f\x07\x21\x24\x80\x92\xf8\x9e\x2d\x05\xb5\x4a\x22\x70\xb7\x40\x6c\xb0\x64\xb5\x44\x29\x0e\xa1\x98\x01\x36\x5f\x45\x15\x0f\x0d\xd8\x6f\x46\xd3\x25\xcc\xf9\xf9\x31\x33\x47\x7a\xfd\xd7\xfa\xa0\x59\xd2\x4c\x31\x48\xee\xaf\xec\x0f\x76\x95\xbf\x60\x93\x33\x78\xc1\x06\x8a\xd0\x98\xae\xb1\x9a\x13\x29\x57\xe6\x78\x8d\x48\xc1\x54\x1d\xc0\x6f\x3d\x30\xe2\x4f\x11\x40\x38\x5f\xa0\xd4\xa0\x37\x4d\xb9\xa5\x14\x15\x30\x20\x18\xd0\xc8\xb2\x80\x08\xcd\x19\xd4\x35\x8e\x50\x24\x97\x4f\x75\xe5\x08\x9b\x8b\x33\x35\x59\x2d\xa7\x28\x75\x2f\x25\xf1\xfb\x12\x94\xb9\x81\x02\x4c\xf2\x80\xa6\x81\x20\x80\xfd\x59\x1a\xfd\xa7\x46\xd8\xc8\xda\xf2\x4e\xc8\xf8\x6c\xb0\x29\x55\xd5\xc2\xfc\xaf\xf1\xd9\xe0\x15\xb8\xee\x0e\x5e\x31\x72\x8d\xce\xc6\x83\xff\x56\xba\x47\x3a\xd9\xcb\x55\x96\x0b\x72\x70\xca\x31\x5a\x15\x0c\xfc\x4a\x27\xa4\x44\x27\x63\x8b\x7d\x7c\x36\x68\xa0\xcf\xbe\x94\x77\x0b\x03\x24\xb7\x79\xc9\x16\xc2\x0c\x99\xc8\x2c\xe6\x3e\x62\x2a\x43\x11\x01\x67\x9c\xd5\x49\x24\xef\xd3\x30\xf1\x17\x53\x18\x65\x72\x43\x52\xc9\x68\x45\x0c\x0b\x93\x71\xe1\xcc\x88\xbc\xc4\x59\x86\xc9\xdc\x25\xa7\x23\x94\xe5\xf2\x21\x83\xed\xc5\x75\x4b\x11\x8a\x93\xf7\x31\x0d\x6f\x37\x11\xa1\xbd\x01\x6f\x52\x91\xf8\xbd\x81\x3c\x7c\x89\xb2\x63\x59\x83\x15\xc0\xdc\xa0\x27\x33\x17\x8e\x99\x2b\xd3\x29\xc0\x84\x3c\x4b\x1b\x17\x9c\x28\x07\x30\x03\x09\x4c\x73\x25\x8f\x4f\x55\x94\x43\x11\xf5\xcc\xa8\xcd\x64\x31\x93\x56\x80\xf2\xa5\xaf\xb6\x86\x1b\x18\xaf\xb5\xb7\x02\x40\x88\x3d\xb7\xe8\x1c\xf4\x39\xeb\x75\x87\x6c\xd0\x50\xf2\x36\x48\x11\xf3\xb2\x10\xc9\x95\x3e\xe9\x0d\x80\x18\xfb\x67\x18\xe3\x08\xa0\x2f\x70\x99\x30\x93\x90\xd9\x79\x37\x47\x6f\x7e\xfe\xa9\xf3\xe6\xdd\x3f\x3a\x6f\x3a\x6f\x8e\x7f\xfa\x9f\x9b\x23\xc6\x31\x37\x47\x3f\xbd\x7e\xfd\xe6\x24\x9a\xfe\x7c\x72\x72\xfc\xee\x7f\xaa\x79\x71\x6c\xbf\x4d\x5c\x0f\xf4\x25\x44\x49\xf3\x21\xe9\xaa\x2e\xe5\xad\xe4\x50\x63\x1c\xf2\x48\x2b\x1b\xbd\x9c\x78\x69\x67\xc9\xf9\xaa\x2a\x50\x48\xf6\x41\x07\x85\x84\xf0\xdb\xc0\x1d\x8e\x63\xd6\x59\x8a\xfe\x2d\xd6\x24\x9e\x95\x26\x34\x5d\xe5\x19\x8e\x10\x9f\x02\x3e\x49\x5c\x7f\x37\x0f\xba\xad\xb3\xb7\x19\xcd\x5b\x3b\x7c\x2d\x5d\x3e\xfe\x54\x0b\x8e\x1a\x34\x71\x3b\x8f\xae\x7d\x8c\x50\xfd\x2a\x46\x2d\x6b\xc3\x65\xd9\x80\x46\x32\x76\x51\x04\x8b\x4b\x71\xa0\x04\xa6\x5a\xb7\xaf\xd8\xf2\x2f\x05\x2b\x26\x60\x4c\x8f\x3f\xb0\xc6\x7c\xf5\x67\x5c\xa6\x16\xeb\x7e\x50\x86\x53\x5e\x89\x7e\xd8\x24\x2b\xd8\xde\x3e\x51\x59\xa2\x40\xb4\x14\x2d\x72\xa9\xe8\x9d\x33\xbe\x3c\xff\x92\xa3\x94\xc0\xf8\x9c\xe4\x38\xbf\x1f\xed\x5d\x0e\x6d\x10\xad\x51\xbf\xf6\x5c\xbb\x01\x1e\xe2\xd7\x26\x8a\xa3\x7e\x9b\x2d\x09\xb0\x49\x54\x47\xfd\x0c\xde\x2b\x12\x96\x14\x52\x97\x89\xa7\x5b\x74\x9f\x81\x14\xc5\x42\xa9\x2e\x70\xc2\x4c\x14\xc8\x27\x9a\xce\xa4\xf0\xe8\x48\x31\x54\x64\x7a\xe1\xfc\xd4\x23\xaf\x40\x9f\xe6\xec\x7f\x22\x85\x23\xb7\x00\xbb\x14\x65\x7d\x9a\xf3\x2f\x0d\xb3\xbc\x0b\x29\x5a\x46\xa3\xac\x84\x90\x12\x91\x49\x67\x22\x84\x0c\x1b\xaa\x54\x49\x6a\xc4\x3d\xa1\x66\x0b\xa2\xe1\x0c\xf4\x08\x63\x68\x39\x64\x56\x28\x01\x09\x10\xdc\x16\x9c\x22\x40\x28\x09\xb8\x3d\x63\x85\x21\x29\x45\x53\x83\x50\x1e\x70\x12\x14\x37\xe7\x45\x09\x33\x8c\x50\x12\xc3\x10\x45\x20\x5a\x71\xa4\xa1\x4a\x96\xcb\x6c\x52\x94\xce\x11\x48\xb8\x51\xda\x96\x3c\xed\x57\x84\xf8\x6d\x3e\x5f\x1b\xc8\x74\xf1\x6b\x29\xd9\xc5\xaf\x31\xa8\x57\x56\x6c\x13\xdc\x33\x51\x6e\x56\x09\x7a\xed\x56\x03\x6c\x17\xf4\x53\xbf\x8d\x83\x7f\x26\x46\x9b\x29\xdd\x36\xa3\x6d\x5b\xb3\x39\xac\xaf\x7e\x36\x25\xa9\x29\x48\x3d\xa6\x92\x95\x1a\xaa\xa6\x14\x0b\xa3\xf8\xd8\xa7\x1e\x6b\x1a\xee\xf9\x95\x64\xbd\xfd\x41\x21\x1e\x14\xe2\x2e\xa4\x38\x28\xc4\x83\x42\x2c\x7f\x07\x85\xe8\xc1\xe8\x6b\x29\xc4\x3d\x05\xec\x3e\xfc\xd1\x75\x6f\x4e\xb5\x12\xd0\x9c\xda\x7d\xc7\x31\xd5\xf2\xd7\x66\x11\xb4\xa5\x68\x0b\x5e\x68\x64\xf0\x40\x43\xdc\x4f\x3f\x37\x8d\x1b\x6e\x3b\x19\xdb\x6b\xf6\x2a\x62\x02\x6c\x65\x5b\xde\x57\x02\xea\x24\x43\xcb\xbd\x52\x75\xee\xe1\xb0\x59\xfa\x02\x37\x4b\xf9\xc6\x96\x98\x19\xcd\x9c\xec\x80\x91\xa8\x3c\x45\x7b\xdd\x4e\x65\x56\xea\xce\xf1\x7b\x9a\xe2\x39\x26\x30\x47\xd2\xda\xde\x36\x7e\xef\x0a\xda\xcb\xfb\x5d\x87\x78\xfd\x21\x5e\x7f\x88\xd7\x1f\xe2\xf5\x2f\x3d\x5e\x7f\x70\xb5\xad\xbf\x83\xab\x5d\xfc\x0e\xae\xf6\xc1\xd5\x2e\x7f\x07\x57\xdb\x83\xd1\x21\xf6\x7c\x88\x3d\xfb\x7f\x06\xf5\xab\xed\x85\x45\x16\xe3\x8c\x2b\x04\x9e\x87\xa0\x1c\x8e\x5c\xa5\x4b\xa6\x4c\x3a\xfc\xe4\x96\xfe\x85\x53\xf4\xb4\xdf\x6d\x3c\x49\x08\x0e\x5a\xf9\xa0\x95\x0f\x5a\xb9\xf2\x3b\x68\x65\x0f\xca\x07\xad\xbc\x5d\xcd\xbd\x04\xc0\x0f\x57\x08\x0e\x57\x08\x0e\x57\x08\x2c\x95\x0f\x57\x08\x0e\x57\x08\x8a\xdf\xb3\x5d\x21\xd8\x7a\xd3\x4b\xe4\x4c\x18\xdf\x27\x56\x39\xe4\x16\x98\x06\xb1\x65\xfa\x03\x06\x45\x99\x6b\xa6\xac\x34\x64\x29\x47\x47\xb0\x35\xff\x17\xce\xc0\x14\xe5\x30\xe0\x09\x11\x98\xec\x7c\xd3\xf9\x87\x7b\x8c\x5b\xa4\x0c\x51\xaf\x8e\x34\xed\xec\xa9\xd7\x50\xf8\xd4\x17\x3b\x63\x62\x0f\x4f\x0a\x4f\x73\x20\xc2\x3c\x5f\x23\xc6\x0c\xc2\xcb\xd3\xcb\xb1\x75\xb7\xc5\x2b\x52\x78\x61\x03\x96\x9c\x66\x85\x2c\x67\x78\x38\x7b\xb1\xd1\xca\x99\x97\x91\x35\x31\xbf\xd9\x99\x6a\xe3\x47\x6c\x40\x9b\x54\x3a\x5a\x3e\x15\x18\x32\x07\x19\x45\xfd\x5a\x0a\x91\xf2\xcd\x61\x95\x18\x44\x7d\x09\x29\x11\xb6\x58\x76\x02\xfe\xf5\x3b\xfb\xc2\xe0\xa3\xe8\xb3\xca\xf9\xc1\xbf\x3e\x69\xae\x94\x88\x64\xb6\x74\x29\xe2\xb3\x33\x63\x8a\x56\x6c\x4b\x9a\xd2\x25\x99\x37\x6f\x4a\xb5\xbc\x9e\x3a\xa5\x8e\x96\xa4\x7f\x91\x3d\xa5\x52\x63\xe3\x04\x2a\x6c\xf1\x4a\x98\x5b\x25\x51\x89\x48\xa6\x32\xb8\x00\x7d\x94\xe0\x90\x15\x45\xff\x1d\xb2\xa2\x18\xbf\x43\x6e\x05\xd7\xef\x90\x5b\x61\xa3\x51\x1c\xb2\xa2\xbc\xd4\x95\xfb\xd2\xa3\xa4\x7b\x97\x2c\x87\x68\xa8\xf5\x77\x10\xb8\x9b\x21\xfe\x4d\x0b\xdc\x17\x9c\xcc\xa6\x41\x5e\xe6\xf4\xc3\x1f\x91\xeb\x0c\x66\x5b\xd9\xde\x74\x1e\xb8\x79\x2d\x6c\x32\x4d\x1e\x36\x6a\xf1\x9c\x91\xff\x14\xb0\x7f\x9a\x3d\xe0\x03\x49\xc9\x4d\x78\xe3\xe0\xaa\x6e\xe2\xaa\xfe\x41\x33\xc3\x47\xfd\x83\x66\x76\xef\xf4\x0f\x91\xf6\xba\xee\x97\xfe\x3f\x9a\xd9\x1d\xd2\xa2\xa0\xee\x89\x6a\xbd\x56\x5d\x50\x55\xe4\xf6\x3d\xb9\xce\x4f\xd7\xe8\x9a\xdc\x12\x7a\x47\x3e\xf0\x4d\xfd\xe2\xad\xd9\xc3\x2b\x08\xce\xaa\x7b\x7c\x49\xdb\x63\x06\x6f\xfe\xba\x80\x5f\x3c\x34\x88\xcb\x66\x0d\xd7\xac\x86\x74\x94\xab\x35\xdc\x57\x01\x76\x42\x5b\xb0\x3f\x99\x4f\x98\x15\xe4\x45\xdc\xbb\xe5\x50\xbc\xee\xf7\xda\xdb\xc9\x74\x95\x66\xae\x6d\x90\x9d\x7a\x71\xaa\xe1\x03\x71\x00\x88\xb2\x30\x59\xc2\xd4\x76\x02\xbe\x01\x6e\xb1\xd3\x61\xc1\xdc\x37\xaa\xf2\x69\xc8\xb7\x4f\x9f\x0e\x7a\x16\xd3\xbb\x6a\x3a\x68\xf6\xcd\x99\x0f\x5a\x14\x3a\x12\x42\xb3\x42\x67\x42\xe8\xb2\xd0\x9a\x10\x5a\xc7\xa4\xaa\x4f\xf4\x62\xc7\xb3\x39\x5b\x2a\x14\x18\x27\x0b\xb8\x89\x56\xd1\x14\xc3\xff\xad\xea\x0b\xf5\xc8\x6d\x56\x3e\x72\xbb\x66\xae\x2a\xe4\x27\xfb\x43\x3e\x35\x72\x39\x95\x5b\x09\xdf\x91\xce\x61\x73\x38\x82\xcb\x24\xc6\x64\x2e\x38\x61\xdf\x42\xc7\xfb\xe4\x5a\x93\x25\xcd\x1a\x7b\x36\xe7\x77\x16\x56\xed\x5e\x7d\x2d\xc4\xc6\x4f\xaf\xff\x6e\xad\xc2\xa8\x38\xb6\x6f\x2c\xb5\x19\x25\x00\x88\xac\xdc\xf7\x9b\x02\xa0\x2d\x72\x7b\x05\x9c\xcc\xf0\x97\x06\xe4\x3d\x40\x60\x98\xe3\x35\xfa\xc0\x46\x81\x97\xe8\x6a\xf5\x1c\xf4\x7e\xfb\xee\xb5\xa3\x4a\x81\xf1\x3b\x6b\x05\x1c\xc5\xcf\x8c\x6a\x33\xa6\x6f\xac\x6c\x91\xc9\x85\x35\x7c\x42\x75\xab\xa1\xf9\xe6\x75\x23\x9e\x96\x72\xaf\x9b\xe8\x7a\xd8\xcf\x94\x08\x4f\xaa\x11\x51\x9a\x25\x90\x18\x0a\x51\x7c\xb2\xeb\x43\x55\x66\x53\x87\xe7\xbc\xcc\xae\x0d\xf5\xb2\xba\x32\x34\x91\xa8\xea\x42\xad\xf4\xe5\xa8\xc2\xef\x4b\x8f\x6d\xfd\x24\xdc\xe6\x6e\xd5\xd3\x3e\x22\xf7\xed\x3c\x07\x27\x56\xef\xbe\xcd\x05\x18\x2d\x31\x19\xe5\x6e\x89\x69\x5e\xb4\x66\xb5\x31\x8f\x79\xe3\x35\x12\x8f\xbd\x38\x82\xdd\x85\x0c\xe4\xaf\xc1\x3f\x91\xa2\xf6\xc0\x16\xc5\xd4\xfa\xc6\x69\x84\x53\xe4\xbb\x5e\x6e\x8c\xb9\xab\x2a\x17\x47\x54\x60\x78\x8b\xc4\x79\xa9\x25\x25\xd8\x7d\xd1\xa1\x20\xc1\x94\xe6\x8b\x27\xa2\x00\x76\xdc\xe0\xe6\x21\xfa\x95\x87\x36\x36\x9c\xb4\x34\xa8\x4f\x62\x96\x0e\x5a\xd1\xbb\x44\x02\xf4\x06\x8a\xe8\xe7\xc3\xd1\xe0\xb4\x2f\x69\xef\xa0\x77\x13\x31\x99\x39\xd6\xeb\xb6\xc1\xe1\x9a\xe0\x3f\x56\x48\xbc\x75\xd3\xeb\x6e\x82\x43\x69\xa2\xec\x6e\x80\x38\x40\x68\x06\xc8\x4f\x6f\xb7\x31\x30\x2c\xa7\x0e\x9f\xd3\xc0\xe0\x99\x10\xa2\x94\x26\x31\x95\x6f\xaa\xc9\x3f\x1c\xe7\x89\x54\xa1\xd5\xc4\xe0\xc0\xba\x29\x4d\x2e\x68\xed\x79\x35\xa3\xd0\x62\x64\x18\x88\xd4\x8c\x0c\xbd\xd4\x6e\x65\xf8\xac\x88\x6d\x1f\x5c\xfb\x9e\x3d\xea\x8a\x18\xf0\xbc\x0d\x6f\x99\x76\xff\x00\x3d\x83\x04\xe2\xe5\x37\x0e\x50\x2c\x5e\x09\xb7\x29\x28\xdc\x15\x8d\x14\x8a\x22\xfb\x86\x64\x18\xc5\x3e\x60\x7a\x0f\x60\x18\x06\xfc\x98\x32\x23\xa4\x45\x6c\x14\x22\xa3\x30\x4f\xcd\x9f\x37\x5f\x07\xa1\x91\xef\xf8\xd4\x06\xc6\x18\x1b\x35\x88\xcb\x04\x25\x6a\x04\x94\xf0\x4e\xf4\xac\x1d\x6a\xc3\x51\xd8\x5e\x7f\x25\x93\xed\x49\x25\x5f\x92\xae\xc8\xbe\x04\xdf\x80\xc1\x72\xc8\x3d\xbd\xac\x2e\xf6\x0c\x2c\xaa\x52\x4f\x2f\x3c\x08\xbd\x97\x25\xf4\xea\x53\xee\x1f\x5f\xc3\x5a\x79\x22\xc9\x31\xc3\x71\x8e\xe4\x89\x24\x95\x75\x29\xa7\xdf\x91\x08\xa9\x10\x4a\xcc\xd7\x07\x41\x95\x7d\x5b\xd5\x59\x1a\x3a\x8d\xea\x36\xb1\xde\xad\x1b\x67\x69\x78\x79\x7a\xb6\x43\xcf\xdb\xb7\xce\xd2\x70\x97\x10\xf5\xae\x21\x6e\x9c\x0c\x52\xea\x7c\xdd\xa2\xd2\xfc\x49\xd5\x09\x0c\xc3\xc2\xac\xc0\x24\x59\xe5\x42\xa7\x84\x79\xea\x38\x99\x2f\x4a\x6c\xda\xe4\x34\x0c\x07\x0a\x54\x8f\x81\xaa\xaa\x94\x5a\x85\xba\x5e\xa9\xa3\x53\x55\x2e\xb5\x1a\x37\x1b\x9e\xcb\xdf\x5c\xc9\xec\xf5\x04\x84\x79\x2a\xb6\x3a\x18\xe3\x76\xa2\xf8\x22\x9e\x6a\x5e\xa5\xc2\x99\x65\x5a\xec\xf4\xac\x07\xce\xfa\xbd\xaf\xaa\x84\x76\xbf\x0e\x50\x49\xbe\x57\x61\x8d\x51\x82\x42\x83\x18\x85\x26\x63\x05\x8c\x0a\x75\xda\x6d\xa8\xbb\x60\x18\x4e\x0a\x08\x13\x0e\x62\xdf\xa2\x55\x9d\x6f\x9c\x2c\x21\x81\x73\x14\x4d\xc4\x64\x3e\x9d\xca\x51\x69\x05\x27\xab\x24\x82\xb9\xf7\xc8\x9c\xd7\x23\x00\x9c\x3e\xf8\x19\xf0\xcd\xee\x49\x38\x89\xe9\x1c\xbb\xd3\x34\xb6\x3d\x03\xda\xf2\xe0\x76\x88\xd2\x7c\x86\x63\x57\xac\xd2\xec\xb3\xf9\xd8\xec\x2d\xba\xdf\x13\xb4\x30\xc6\x88\xe4\x93\x2c\xf3\x5d\xfe\x6c\x9c\x36\x82\xf2\x67\x98\x36\xa6\x9d\xd2\x19\x0c\xd1\x64\x99\xaf\x1a\xd1\x6d\xb8\x2a\xcc\xc4\x30\x66\xa0\x44\x24\x74\xc2\x81\xaf\x61\x33\x19\x1a\xe0\x26\xd3\x74\x92\xa7\x30\xbc\xc5\x64\x3e\x21\x94\x4c\x32\x02\x7d\x37\xa0\x1b\x69\x0b\xc4\x89\xaf\x89\x78\x69\x7d\x12\x2e\x56\xe4\x76\x92\xe1\x3f\x7d\xb3\xdf\x0a\x53\x19\x3b\x98\xdc\x41\x9c\x4f\x66\x34\x9d\xc8\x9b\x5f\xbb\x22\x1b\x49\xbd\xb1\x39\x60\x0f\xc2\x29\x9a\xe3\x2c\x4f\x5d\x97\x1f\xf6\xc3\x5f\x4b\x38\x47\x93\x24\x45\x33\xfc\xa5\x11\x57\xff\xb2\x92\xa0\x56\x71\x3c\xc9\x50\x98\xa2\x66\x0e\xf0\xc3\x93\x72\x31\x87\x98\xa0\x34\x9b\x14\x32\x7e\x6d\xd5\xb5\x3b\x42\x67\xff\x4c\x69\x1c\xa3\x27\x82\xbf\xa0\x59\xbe\x37\xc8\xba\x3e\x7d\x0a\xb2\x10\xbc\x6f\xb0\x21\xc1\x11\x4a\x62\x7a\xbf\x27\x78\x34\x99\xc5\xe8\xcb\x84\xe7\xe0\xdd\x1b\x48\x44\xd6\xd9\x1d\xce\xc3\xc5\x9e\x20\xce\xa7\xc9\x1e\x20\xc5\xde\xcc\xc5\x7b\x11\x02\x1a\xf3\xc7\x74\x3e\xe1\x37\xe1\x77\x1c\x3b\xe3\x77\x31\x3b\xfb\x82\x28\xa6\x7c\x7f\x30\x71\x96\x63\xfa\x2c\x1a\x3c\xcb\x61\x1c\x4f\x78\x7f\xbb\xea\x19\x05\x2c\x49\x69\x83\x31\xd4\x34\xfc\xe5\x2a\x56\xd7\x08\x5c\x8d\x77\x1c\xb8\xd4\xb5\xbb\x0c\x39\x4a\x69\xc2\x27\xfb\xb9\xec\xf9\x9d\x0c\x42\x1a\xa1\x84\x46\x78\xf6\x4d\x60\x9b\xa5\x98\xae\xbf\x09\x4c\x6f\x57\x53\xf4\x0c\x88\xd2\x75\x36\x59\xa2\x25\x4d\xef\x27\x31\x5e\xe2\x5d\xad\x97\x55\xc6\xcc\x2a\xbc\xc6\x31\x92\x0e\xa9\x34\x05\x76\x16\x01\xa5\x99\x95\xb8\x0e\xa5\x6e\x82\x68\x8a\xa6\x94\xe6\x13\xa9\x51\xef\x70\xbe\x98\xd0\x75\x33\x96\x7e\xa0\xcc\x01\x98\xb4\xb8\x69\xbb\x57\x87\x33\xa1\x69\x3e\xe1\x19\xa3\x5a\x39\x89\x6d\x52\x9a\x6d\x90\xe9\x91\x1f\x6f\x69\xac\xd5\xd2\x4f\x51\x3f\x54\x0b\x14\xed\x0c\x92\xe7\x28\x9b\x24\x28\x9d\x30\x81\xb5\x4f\xe8\xdc\x8c\x80\x61\x3e\x11\x61\xc2\xfd\xb8\xfd\xca\x63\x4b\x50\x8a\x69\x84\x43\xee\x5b\x4e\xe6\x31\x9d\xc2\x78\x82\xc9\x8c\x4e\xb2\x7b\x52\x8d\x79\xd9\x3b\xb3\x2e\x2c\x67\x24\xad\xbc\x66\xa7\x21\xe3\x8f\xa5\xf1\x26\x46\x34\x2d\x5b\x85\x21\xca\xb2\xd9\x2a\x06\x21\x5d\x26\x31\x52\x67\x93\x1c\x41\x5c\xf5\xf3\x9d\xe6\xb3\x21\xb6\xd5\x20\x37\xbe\x9f\x58\x8b\x90\x6b\xc1\x70\x2e\x9f\x2f\x61\xe2\x88\x7e\xe3\xa0\x94\x80\x81\x10\xe6\xaa\x58\x9c\xb1\xab\xd6\xc9\xee\xb3\x1c\x2d\x59\x1d\x63\xfb\xc8\x0a\x29\x50\x56\x36\xb8\x39\x7a\x78\xe8\x8c\xe9\x2d\x22\x8f\x8f\xea\x06\xa4\xf4\xc4\x83\x24\x5e\xcd\x31\xa9\x76\x74\x43\x0a\x5c\x4b\x33\x58\xc2\x3d\x01\xff\x09\x04\x8c\x87\x92\x24\x37\x47\x31\x9d\x8b\x6c\x51\x37\x47\xb2\xc7\xb3\xa2\xe5\x05\x9d\x5f\xb0\x22\xd6\xfd\x2b\xbd\x11\x4c\x70\x18\x30\xab\x38\x63\xad\x1e\x1e\x3a\xa7\x09\x0e\x3f\xb1\xbf\x1f\x1f\x5f\xdd\x90\x87\x87\x00\xe0\x19\x20\x08\x74\x4e\x43\x7c\xb9\x8a\x73\x9c\xd0\x08\xdc\x1c\x89\x73\x06\x47\xe0\xf1\xd1\x80\x16\xe2\x60\x29\x2b\x29\x78\x65\xb3\x02\x22\x22\x51\xa5\x1d\xc3\x22\x45\xb3\x14\x65\x8b\x1c\x2f\x51\x31\x02\x86\xcd\x50\x7c\x1f\xe3\x25\xb2\xa3\x9f\xad\xa6\x05\xff\x07\x11\x8a\xe1\xbd\x36\x96\x91\x56\xd8\x65\x65\x1c\x0b\x13\xc2\xa4\xe8\x3a\xbc\x45\xe9\x04\x46\xff\x5e\x65\xb9\x1d\x07\x56\xe1\x94\x97\xdb\x71\x59\x65\x28\x65\xdc\x63\xb4\xbe\xce\x50\xda\x87\x2e\xf4\x99\x3a\x86\x39\x0a\x6e\xd1\x7d\x90\xc0\x7c\x21\x9a\x1e\xaf\xb2\xf4\x38\xa6\x21\x8c\x8f\x51\x1e\x1e\x73\xee\x40\x69\x7e\xcc\x3a\xe8\xdc\xa2\xfb\x2a\xa4\x10\x07\x22\x5c\x52\xf4\x3c\xe2\xac\xda\x8b\x10\xc9\xf1\x0c\xa3\xb4\xde\x7b\x88\x83\xf5\x72\x19\xb0\xd5\x24\x5a\xfd\x52\xe4\xad\xe3\x55\xb5\xd9\xff\xbc\x5c\x76\xe9\x12\x62\xc2\x6f\xec\xd6\x67\x9d\xc1\x89\x78\x85\xa2\xff\xa2\x89\xec\x98\xcf\x7c\x9c\xa1\x56\x8d\x1d\xc8\x6b\xdc\x63\x22\x57\xb2\xba\x07\xc1\x72\x25\xe9\x48\x96\x4d\x5b\x21\x6a\x01\xd2\x8c\x6c\x65\xa2\xb8\x81\x14\xe4\x88\x40\x52\xf2\xd9\x98\xff\xa9\xb5\x95\xa3\x3b\x63\x2c\x54\x2e\x39\x13\x5c\x3c\xd5\xa6\xaf\x4f\x09\xf2\x90\xe9\x53\x92\x5c\x25\x39\x5e\xe2\x3f\xc5\x66\x92\x03\xe4\x22\x49\x02\xaa\xd5\x93\x8b\xa9\xd2\xba\xba\x98\xb5\x7e\xfa\xf4\x57\x88\xf3\x0f\x34\x1d\x89\xc0\xee\x79\x32\x44\x30\x62\xca\x27\x73\xf5\x49\x68\x70\x07\x71\x1e\xcc\x68\x1a\xc8\x70\x70\x80\x92\x20\x55\xed\x24\x0e\x1e\xc8\x1e\x7c\x64\xe5\x8f\x29\x4c\x16\xe7\x24\x4a\x28\x26\xf9\x69\x14\x71\x69\x00\x6e\x8e\x5e\x57\x91\x51\x08\xcc\x59\x83\x00\xc9\x16\x01\x8c\x22\x25\x5d\xc0\x89\x2e\x7a\x45\x2b\x5d\xf0\xf8\x7a\x34\xe4\x8f\xd1\x21\x1f\xe5\xbf\x18\xe2\xdc\x5a\x04\x3f\x60\x12\xa1\x2f\xaf\xc0\x0f\x38\x47\x4b\x70\xf2\x4f\x17\x58\xf9\x39\x03\x8f\x8f\x72\xd4\xa2\xe5\xe3\xe3\xab\x87\x07\x4e\x8e\x07\xa0\x41\xbd\x7d\x05\x7e\x58\x83\x93\x7f\x4a\xb8\x8c\xe1\x1e\x1e\xc0\x0f\xb7\xfc\x5f\x82\x17\x59\x05\xf1\x1d\xcf\x00\xfa\x83\x15\xde\x1c\x09\xb1\xa6\x01\x55\xc4\x7e\x94\x1f\x7e\x2f\xc7\xe5\x9e\x8c\xd3\x28\x52\xcf\x6e\x8f\x78\x18\x3d\x1b\xd3\x61\x24\x14\x9b\x8b\x3b\x18\xe5\x91\x6c\x14\x88\xe0\x7b\x16\xe4\x34\x48\x65\x3b\x25\xee\x3d\xa0\x3d\xec\x21\xcf\xe0\x0d\xa4\x25\x37\x22\x30\xff\xc8\xed\xb8\x1e\x99\xd1\xd1\x3d\x71\xae\x3d\x69\x03\x06\xca\x06\x0c\x98\x0d\x18\x08\x1b\x30\x60\x36\x60\xc0\x6c\x40\x89\x5c\x63\x2f\x6e\xed\x28\x7c\xa0\x20\x42\x9c\x2b\x23\x14\xa3\x1c\x05\x4c\x4d\xd2\x55\x2e\xa1\x5f\xf1\x2a\x5d\x5e\xa3\xcb\x2b\x8c\x45\x79\x45\xdb\x65\x31\x42\x09\x6f\xeb\x45\x76\xc4\xaa\x31\x08\x0e\x34\x4b\x80\x32\xf2\x13\xf0\x30\x92\x6c\xdd\x13\xdf\x7a\xec\x53\xb5\x3a\xfb\x16\xc8\x30\x51\x21\xf9\x78\xcd\x81\xf8\xe8\x96\x7f\x7c\x4b\xde\x22\xd9\x13\x1a\x4d\xa3\x20\x92\xba\x63\x45\xf0\x71\x4e\x02\x4d\x9e\x1e\xbf\xef\x06\x15\xfb\xcc\x2a\xb3\x19\xa0\x60\x1a\x59\x94\x24\xf3\x48\xf6\xd3\x05\x83\xa4\xfa\x70\xaa\x07\x25\x7f\x92\xc5\x7d\xc6\xf4\xa2\x47\xcf\x04\x09\x2f\xaf\x61\x5c\xc8\x50\x12\xc2\x44\xb4\x5f\xc7\x90\xe3\x2c\xa5\xc5\xe7\x18\x12\xab\x45\xa0\x9a\xca\xdd\xb8\x40\xed\xc6\x99\xa2\xed\x52\x94\xf6\x64\x61\xd5\xa8\x62\xd3\x32\x4d\x03\xb5\xfb\x16\x10\x4a\x38\xc3\x49\x20\x83\xf7\xc3\xb1\x2c\xea\x53\xc2\x98\xcc\x02\x60\x9d\xce\xaa\x2a\xf2\xf3\xf0\x83\xa1\x25\xcd\x06\xf1\x5b\xb9\x20\x78\xdd\x8b\xb7\x57\x2b\x7b\x3d\xf4\x25\x0f\xa4\xf5\xad\x14\x0b\xaf\xac\x84\x87\xcc\x1d\x59\xb3\x80\x9b\x18\x71\x9d\xce\x74\x4c\x35\x8b\xcf\x63\x51\x68\x6d\xae\xd6\x28\x8d\xe1\xbd\xa5\x69\x95\x4b\xe4\x71\xdf\x52\x37\xf1\x13\x3a\x7c\x2c\x55\xdd\x22\x6d\x0d\x91\x60\xad\xad\xa9\x51\x1f\xa1\x00\x56\x5a\xb6\x6d\xb8\xfd\x3f\x95\x4a\x12\x6b\xe6\x00\xd9\x08\xb2\x4d\x17\x05\x2c\x93\x42\x26\x33\x2d\xe1\x17\xbe\xf0\xb2\x20\x5b\x87\x42\xab\xcb\x69\xbf\x84\x5f\xfa\xac\x60\xb4\x0e\xb9\x52\xad\x70\x61\xe1\x06\x06\x1b\x10\xdc\xee\x30\xd6\x6b\xee\x7d\x7a\xf6\x31\x45\x0a\x5b\xf7\x0c\x35\xf4\x52\x01\x60\x4e\x4b\x75\x6a\x80\xa6\x13\x8a\x5c\x60\xdf\x08\xa5\xa4\xc2\xdb\x9a\x50\x66\xfb\xf6\x74\xfa\xb6\xf8\xe9\xf9\xa9\x74\xbb\x9a\xa2\x6f\x8c\x48\x5f\x63\xd1\x85\x30\xcf\xe3\x03\xa1\x5a\x13\x2a\x49\xe9\x12\xe5\x0b\xb4\xca\x0e\xc4\x6a\x24\x96\x3c\x1b\x70\xa0\x54\x41\x29\x37\xc9\x94\xb9\x8d\x93\x20\xa1\x34\x6e\x08\x01\x14\xc1\x8c\xde\x60\x40\x69\xec\xf3\xf8\x6f\x8e\xc4\xcd\xe6\xc2\xa5\x67\x20\x3a\x23\xf6\x8d\xfb\xf6\xaf\xc0\xcd\x11\x22\x51\xa5\xfc\x9c\x23\x7f\x04\x0a\x9f\xde\x30\x88\x84\x13\x1e\x64\x39\xcc\x71\xd8\x8c\x2a\xaf\x66\xba\xe4\x1e\x8c\x1f\x78\xcb\x47\x6f\xcf\xd1\x3d\x81\xcb\x16\x5d\x77\x45\xbd\xfd\xf4\xcd\x3d\x65\xb5\x8b\x14\xf0\x5d\xa4\xd2\x25\x23\x30\x3f\x93\x45\x23\x56\x52\xf3\x38\x04\xb1\x82\x8d\xe7\x99\x37\x7b\xfa\xd9\x06\x9e\xe9\x66\x0e\x71\x5b\x7c\x07\x34\xfa\x3a\x3c\xc9\x90\x14\x31\xa1\x80\x1f\xc8\x0c\x32\xfc\x27\x52\x7e\x26\x8d\xc4\xd4\x9f\xb1\x92\x11\xfe\x13\x55\x2d\x7c\xe6\x8f\xdb\xa6\xc6\x5c\xa6\x56\x29\xa6\x21\xda\xe9\xf3\x8b\x50\x72\xae\x24\xbe\xaf\x6c\x8d\x8c\xf1\x9b\xcd\x38\x19\xca\xfd\xa1\x42\x64\x94\x7f\xfe\xee\xc6\x5d\x46\xc5\x2c\xb8\x0b\x36\xd5\x22\x87\x82\x22\x66\x47\x95\xc5\x26\x0e\x91\x2b\x67\x87\xbf\x3a\x2d\x29\x2a\x6e\xcd\xaa\xe0\xe3\x88\x95\x28\x61\xc7\xff\xb7\xa0\x59\x1e\xf0\xd3\x50\xfe\xcd\x2a\x98\x24\x66\x18\xa8\x9d\xb7\x67\xaa\x86\xf3\x64\x28\xcf\xa2\x5a\x82\xfe\x3c\x7c\x2c\x4a\x0b\x7a\x97\x0d\xbc\x8e\x79\xa5\x29\x59\xc5\xb1\x3b\x9e\xb9\xf7\x6d\x31\x3d\x34\xb9\x08\x93\x21\x22\xe8\xee\x12\x7e\x19\xa2\x3c\xbd\x3f\xa3\x2b\x92\x8b\x98\x75\xa5\x8f\x68\x11\x32\xac\x09\xba\x0b\x98\xbf\x9b\xb2\xda\x41\xc8\xaa\xab\x00\xa4\x15\x56\x43\xe7\x5a\x8c\xdc\xd6\x9f\x1e\xf3\x2e\xaa\x7b\x40\x8a\x30\xe5\x25\x8d\x90\x65\xc2\x64\x98\x73\x49\xa3\x52\xbc\x96\x0d\xbc\x13\x56\x69\x5a\x9f\xb0\xb2\x6a\x7d\x97\xf4\x13\xcd\xf2\x53\xc6\xb1\xee\x4d\xd2\x10\x8b\x70\x69\x99\xaa\x5e\x97\xff\xc5\xbd\xa3\xc3\x0e\xdb\x8b\xd9\x61\x6b\xb5\x15\xfa\x22\x63\x7b\x1b\x87\x3e\x95\x0a\x58\xc7\x90\x98\x41\x5a\x11\xe3\x35\x2a\x33\xf7\x18\x26\x58\xaf\xcc\x58\xf2\x74\xd0\x2b\x2a\x3f\xd7\x8e\x61\xd9\xbe\x54\xe1\xac\x65\xa3\x9d\xb1\x9b\x35\x27\xd4\x66\xd1\x9b\xb7\x33\xae\x9f\x77\xb3\x5b\x49\x08\x13\x6d\xfd\x73\x15\x1a\xc2\x64\x7c\x6f\x31\x15\xd9\xd4\x63\x32\x4b\xa1\x3e\x3d\x3d\xf6\xa1\x3a\x39\x9d\xcb\xf1\x75\x65\x89\x5e\x8e\xaf\xc1\x6b\x93\xae\xc5\x2d\x9d\x60\x99\xaf\x54\xc8\x93\x35\xac\xaf\x73\x73\xc9\xb3\x5a\x9f\x10\x8c\x86\x94\x2e\xeb\xdd\xa8\x12\xdb\xde\xa9\xd1\x65\xb0\x40\x30\x4a\xa9\xd8\xc1\x10\x7d\x97\x50\x9d\x38\x94\xc0\x42\x82\x03\x82\xf2\x72\x93\xaf\x89\x33\x64\xe4\xde\x6f\x82\xce\x61\x8e\xee\xe0\x7d\xc5\xc8\xfc\x28\xbe\x16\x66\x68\xc9\x21\xba\xa5\xaa\x78\x41\xd4\x49\xe9\x2a\x57\xbb\xb6\x4c\x25\xaa\x43\x23\xaf\x3b\xfc\xbf\xe3\xd7\xa2\xda\xfc\xce\xd3\x17\x78\xfc\xdd\xce\x39\xdf\x63\x8c\xbf\xda\xda\x17\xd5\x3f\x04\xe7\x0f\xc1\xf9\x97\x13\x76\x3e\x04\xe7\x0f\xc1\xf9\x43\x70\xfe\x10\x9c\x7f\xf9\xc4\x3a\x04\xe7\xdb\x04\xe7\x55\x10\x2c\x88\x52\x9a\x30\x9a\xa9\x28\x87\xc8\xc5\x23\xc2\x60\x8f\xb6\x16\xed\xc3\x66\xb6\xee\x8a\xdb\x5a\x37\xea\xc4\x63\x84\x06\x34\xea\xcd\x3c\x3d\x06\x74\x9d\x05\x8b\xbb\x80\xce\x66\x31\x85\x2a\xc2\x34\x4a\x31\x5d\xab\x56\x5a\x84\x4e\xc6\x4a\x5a\xc4\xe8\xd4\xa8\xab\x8c\x64\x86\x4f\x44\x88\xa6\x16\x40\x71\x99\x6d\xa2\x7b\x09\x57\x72\x12\xfa\x43\x85\x86\xce\x78\x0e\x84\xd1\xe8\xc2\xee\x6a\x72\x77\x37\x13\x47\x91\xc0\xcd\x51\x19\x2a\x92\x47\xf1\xa2\x9b\x23\x7b\xf0\x89\xf5\x30\x5c\x91\x8f\xd3\xe4\x4c\x71\x86\x83\x6b\x65\xc0\x3e\xcb\x71\x98\x89\x83\x9e\x45\x47\x80\xf5\x44\x67\x33\x66\xb4\x37\x84\xb8\x38\x39\x44\x66\x6a\x1e\x6b\xe3\x81\xb1\x31\x5e\xf2\x6e\xdf\x54\xa3\x69\xac\xd7\x9c\x15\x96\x3d\xca\x55\x28\xc2\x78\x7a\x98\xad\x09\xfe\xe3\x63\x15\x39\x63\x95\xd0\x9c\xb1\x96\xec\x44\xa6\xe7\x93\x23\x2b\x62\x97\xaf\xcc\x36\x30\xbb\x27\xe1\xbf\x33\xe9\xd6\x57\x9a\x99\x18\xc9\x7f\xaa\x06\x82\xfb\x22\x86\x92\x93\x1d\xd6\x75\x99\xbd\x59\x97\xeb\xac\xa1\xbf\x82\xf7\x5b\xf3\xc2\x7c\x9a\xf0\xc0\x7a\xfd\xc6\xc5\x43\x2d\xd0\xd4\x7c\x94\xdb\x6c\xd0\x2a\x28\xf4\x2d\x84\x04\x7d\x11\x33\x33\xa0\xc3\x61\x7f\x9c\x26\x45\xe8\x46\x3b\xb7\x55\x43\xad\x45\xd3\xda\x15\x0a\xbb\xab\xe7\xbf\xd9\x62\xa9\xac\xdf\xdd\xa8\xdd\xdc\xb0\x37\xd9\xc3\xdd\x0d\x01\xed\x16\xce\x6e\xa1\x53\x27\x4f\x53\x7a\xcb\xa5\x83\x08\xd8\xb1\xba\xef\xc5\xa7\x1a\x62\xa2\x81\xc8\x25\x53\x45\x8b\x21\x91\x1d\xf3\xae\x02\x51\xc3\x8a\x8d\x01\x82\xb5\x69\x80\x11\xa6\xb9\x0b\x06\x74\xb4\x0f\xa1\xa7\x55\x4e\xd5\x9c\x5a\x59\xb2\xc9\xcc\x89\xe9\x2a\xe2\x27\x9a\x9d\xe4\x0c\x45\x2a\xca\x40\x9b\xec\x7a\x3f\xf6\xed\xbb\x82\x33\x59\x1b\xfe\x87\x58\x6e\x56\x26\x11\x6d\xe4\x8a\x17\x31\x5c\xbd\xb6\x73\x9f\xaf\x16\x0f\x33\x3f\x6c\x7d\xdf\x8d\xef\x61\x28\x5f\xfe\xa5\x5e\x77\xab\xef\x92\x8e\x08\xe4\xe9\xf6\x86\x90\xcc\x51\x65\x97\xd4\xdc\x86\x35\x6a\xca\x6d\x58\x55\x8f\x5f\x30\x0d\x12\x36\xed\xfa\x0e\x93\x6a\x92\x0d\x50\xda\x97\xfb\x4c\x5e\x12\x8f\x78\x12\x19\xe7\x7d\x42\xb6\xc6\x39\xd3\x3f\x07\x61\x8b\xfe\x95\x64\x31\x04\xd7\x2f\xe8\x5e\xf0\x0f\x2f\x0d\xd3\xdc\x28\x3d\xe3\x64\x14\x23\xd5\x34\x63\x5d\xac\x6f\x4c\x06\x5d\x38\x70\x52\xe0\x19\x0e\x61\x8e\xb2\x67\x25\x89\x10\x31\xa5\xc0\x14\xa6\xa5\x1c\x35\x00\x55\x09\xd6\xae\xa2\x22\xb1\x56\x51\x52\xb9\xa0\xa3\x5c\xa4\x2e\xaa\xf1\x8d\x99\xd3\x50\xec\xcc\xb6\xbb\x94\xaa\x36\xc3\x9e\x81\x7a\x5e\xbe\xdf\x14\xf5\xf2\x2c\xc0\xb3\xa1\xae\x31\xf2\x75\x86\x64\xca\xe1\x21\x8d\x91\x93\xa3\xd3\x29\x0c\x3b\x70\x95\x2f\x68\x2a\xf7\xa9\x2c\x29\x35\x4b\x38\x95\x71\x3f\xb5\x54\x6c\xc1\x14\xfc\x29\xdf\x93\x1b\x12\x00\x98\xe0\x8f\x29\x5d\x25\x2a\xe5\xa5\x7a\x5b\xd5\x4c\x5f\x19\x88\x3c\xba\x37\x45\x56\x4c\x3e\x29\xf2\xef\x84\x46\xf2\x5f\x85\x17\x2b\xfe\x2c\xae\xa8\x89\xc2\x35\x2a\x4a\x52\x94\xc4\x6c\x79\x63\x4a\x4a\xb4\xcc\x56\x50\xf0\x0c\xff\xb8\x46\xe9\x54\x21\x12\xcb\x04\xa0\x01\xb8\x83\x79\xb8\x10\xff\x9c\x23\xf9\x2d\x29\xbf\x85\x29\x82\x39\x12\xff\x16\xa9\x0d\xc5\xbf\xc5\x5d\xa8\x4d\xc6\x2e\x26\x65\x09\x93\x0d\x91\xd9\x06\x03\x5b\xa2\x56\x07\x56\x3c\x67\xab\xfa\x1a\x15\x39\x5b\x6b\x48\xfe\xf8\xb7\x1f\xed\x7d\x39\xd9\xd8\xd1\xa1\xe0\xe8\x94\xc6\x6a\x4a\xb5\x2f\x53\x4c\x22\x4c\xe6\xf6\xce\x35\x0f\x40\xbf\xe7\x65\xfa\xeb\x36\x0c\xe5\x4d\xb1\x0e\x8f\x1a\x3b\x11\xe3\xa5\x92\x8f\x92\x18\x12\x85\x1e\xff\x5e\xbc\x55\xdf\x9a\x2c\x30\xc4\x9d\x22\x4c\x5d\xef\x0d\x86\xb8\x0e\xb8\xfe\xd9\x49\x08\x65\x90\x59\x7a\x96\x2b\x1b\x93\xb9\x77\x22\x64\x35\xfd\x99\xaa\x76\x4c\xa9\xcd\xc3\x75\x86\x4e\x43\x7c\x4a\xee\xef\x16\x28\x45\x67\xc3\x6e\xf3\x64\x30\xba\xc0\x3b\x3b\x4a\x28\x99\x67\xc5\x62\xe1\x07\x1b\x37\x40\x6b\xd3\xce\x78\xac\x4b\x76\x37\x9f\x26\x19\xcf\x54\x5e\xfb\xfb\x58\x64\x97\xd8\x66\x1e\x60\x92\x64\xf6\xae\x45\xe6\xb7\x65\x4d\x92\x65\x48\x7d\x88\x20\x5a\x52\x52\xfe\xcd\x91\x99\xad\x62\xf5\xa5\x15\x0b\x36\xca\x60\x25\x5a\x1d\x83\x54\xd2\xc6\x06\x5b\xde\xd1\x63\x4c\x16\xd2\x14\xd1\xac\x13\xd2\xa5\xbd\x43\xd9\x8b\x6c\x51\xeb\xa5\x26\xe8\x5c\x13\x29\x6e\xf1\x59\x7b\x20\x30\x57\x7c\x7c\x3c\xc3\x04\xc6\xf8\xcf\x52\x13\xe8\x85\xe5\x40\x05\x21\x98\xb3\xe6\x1c\x77\x55\xfa\xfa\xe5\xb4\x57\x1e\x37\xa2\x2f\xae\xc3\x16\xe8\x98\x68\x5b\xf0\x0d\x80\xba\x82\xfc\x1c\xea\x44\x3e\x3d\x6e\xc5\xbe\xf2\x8c\xf8\xfe\x30\xd1\x34\xb1\x0b\x29\xf5\x4a\xa5\x4b\xc0\x55\xdf\xa4\x6d\x8f\x9c\x8f\xf7\xb5\x97\x03\xed\x62\xac\xf6\xfe\xdf\xfe\xfa\x75\x49\xb3\x22\x7a\xdf\x56\x3c\x30\xe9\xd4\xa1\x09\x22\xd9\x02\xcf\x72\xa6\x25\xbc\x82\x6a\x63\x5e\xab\xf7\x18\xe1\x2c\xa4\x6b\x94\xde\x2b\xb5\x64\x23\x9d\xbe\x83\xe1\x16\x15\xb5\x6e\x3d\x0c\x92\xd0\x78\x2b\x05\xe8\xee\x6c\x97\x65\x14\x91\xcc\x87\x93\x28\x7e\x42\xb4\x3c\xbe\xe2\x37\xe9\x8f\xe8\x9e\xde\xd7\xf0\x47\xdc\x3e\xc8\xc6\xc6\x94\xb1\xc1\x57\xdd\x85\xf2\x4b\x06\x87\x1c\x2a\x7c\x25\x1d\x17\x9d\x45\xa4\x78\x6d\x34\x64\xf6\xee\x4d\x7c\x0d\xeb\x52\x37\xf8\xc4\xbf\x1d\x76\xcf\xcd\xd1\xdf\x2a\x9b\xb6\x5f\xc3\xcc\xde\xaf\x49\xb9\x9b\x0d\xdd\xce\xf4\xba\x71\x5b\x33\x5b\x18\x2b\xdf\x94\x21\xa2\x1e\x9d\xb2\xaf\xc3\xda\x53\x7d\x41\xfd\x1d\xab\xa7\x9a\xa0\x8a\xd5\xc8\x2a\xf2\xfd\x21\xab\xe5\xeb\xa2\xc4\xb6\x96\xef\x5f\x46\xe5\xef\xcf\x1c\x93\xc2\xa5\x16\xee\xdc\x50\xfb\xbe\x17\x91\x92\xcd\xe3\xb8\xbb\xe8\xe9\x94\xc6\x68\x88\x66\xbc\xb1\xa2\x87\x07\x73\x56\xcd\x62\x36\xb4\x40\x33\x5b\x89\xd7\xd1\xb8\x32\xb7\x07\x81\xf7\x14\xb4\x7e\xc6\x79\x30\x83\xd2\x2f\x76\x1e\x74\x34\xb7\x9f\x87\x4d\x23\xf0\x96\xb7\xa6\x92\x4c\x23\x79\x97\x07\x44\x46\x9e\xed\xaf\x4a\xe7\xed\xba\x7d\x7a\xbb\xb5\x78\x80\x48\xc8\xd3\x51\x9e\xc2\x1c\xcd\x55\x8e\x62\x91\x4e\x74\x48\xe3\x18\x93\xf9\x75\x21\x71\x2b\x0f\x94\x2f\x99\x10\xba\x30\x1f\x8d\xf3\x0e\xbc\x9d\x41\x9d\xa3\x65\x12\x97\x6f\x67\xd7\x5e\x56\xaa\x3d\x53\xd7\xd8\x67\x9b\x5e\x39\x9d\x09\xa1\x39\x67\x51\x1d\x7c\x16\x2e\x50\xb4\x8a\x51\xda\xe1\x4f\x65\x75\x6e\x8b\x1b\x6b\x6c\xf9\x85\x29\xce\x71\x08\xe3\x20\xa1\xd1\x09\xf8\x51\x7b\x6b\xbd\x3c\x84\xc9\xea\x65\x61\x0a\x19\x51\xd5\xb6\x8b\xab\x5e\x42\xd3\x9c\xd5\xfa\xf9\xdd\x9b\x9f\x54\x2d\xe3\xb5\x28\x36\x30\x79\xad\x43\x7f\x95\x4b\x14\x0c\x7a\xdd\xfa\xc7\xde\xe0\xcc\xfc\x98\x19\x8b\xa5\xdf\xb4\x50\xf4\x08\xf7\x12\xce\xd1\x60\x15\xc7\x62\xb7\xb3\x72\x0c\x07\x9b\xa5\x3a\x11\xd5\x7b\x63\x0f\x0f\x55\x18\xd6\xcb\x2e\x39\x8d\x51\x5a\x9b\x89\xa0\x78\x40\xea\x04\x9c\x7f\xc1\x59\x5e\xcc\x1c\x33\xe8\xcf\x6c\xa9\xbb\x55\xbf\xc5\xc3\x16\x37\xda\x19\x03\x8e\xaf\xba\x7d\x7a\x46\x70\x97\xd7\x28\xe0\x98\x07\x12\x8a\xc1\x89\x53\x66\xe6\x50\xc4\x37\xb3\x41\x86\xc2\x55\x8a\x73\x0e\x0f\x7d\xc9\x4f\xaa\x9b\x71\x83\x22\xeb\x78\xd3\x11\x3c\xc6\x23\xaa\xae\x9a\x49\xc7\xd9\xcd\x10\x26\x70\x8a\x63\x6c\x7f\xe1\x2b\xb2\x3f\x60\x3d\xfa\x6d\x34\x39\xed\x5e\xf6\xfa\x7a\xe1\x9a\xc6\xab\x25\xba\xe4\xfb\x54\x95\x56\x1a\x51\x83\x69\xfd\xb1\xf4\x25\x6b\x33\x80\xf9\xe2\x04\x1c\x2f\x49\x7e\x5c\x54\x7b\xd0\x53\x62\x0e\x52\x4c\x39\x79\x62\xc8\xd3\x60\x56\x07\x9e\xe8\xe5\x82\x47\x85\x78\x0c\xd4\x69\x15\xb5\xf4\x5c\xe7\x1b\x85\xa3\x76\x46\xf0\x16\x5d\xc1\x10\x33\xb4\x55\x89\x85\xde\xd6\x4c\xf1\x41\x1b\x61\x54\x61\xbc\x4f\x34\xcb\x0f\x3c\x67\x14\xf6\xcf\xc7\xee\x42\xd6\x72\x30\x1e\x9e\x9e\x9d\xbb\x9a\x0e\x4f\x7f\xd5\x8b\x10\x59\x3b\x18\xf8\x97\xeb\xf7\xe7\xc3\xfe\xf9\xf8\x7c\x34\xe9\x5f\x75\xcf\x27\xfd\xd3\xcb\x1a\xd0\x35\x8c\x57\xe8\x43\x4a\x97\x96\x61\xcc\x30\x8a\x23\x65\xf2\x58\x0b\xc5\x32\x60\x02\xbc\xc3\x8c\x6f\xc6\x5c\x76\x54\xc6\xe7\xfd\xd3\xfe\xd8\xda\x79\xed\x0c\x65\xeb\x93\x9b\xde\x63\x2c\x36\x2c\x38\x15\xce\x07\x1f\x9d\x78\x54\x18\x5b\x44\xaa\x3c\x67\xd1\xb7\x05\xdc\xea\x28\xbc\xd9\x7b\x9d\x31\x55\xe7\x57\x83\x0f\x17\xe7\xff\x3b\xb9\xbc\xea\xda\x67\xf7\x04\x50\x71\xf0\xf4\x05\x8d\x43\xbf\x61\xca\x9f\x80\x91\xf9\x52\x1b\xa7\xf0\xf2\xfa\x62\x7c\x3d\x72\xe0\x57\x5b\xc7\x1a\x87\xc8\x0e\x64\x42\x61\x75\x73\xb4\xa9\xbb\x6e\x6f\x74\xfa\xfe\xe2\x7c\xf2\xeb\x69\x6f\x3c\xf9\x70\x35\x9c\xf4\xcf\xc7\xbf\x5e\x0d\x7f\x69\x46\xc0\x43\xe5\xee\xf5\xf0\x74\xdc\xbb\xea\xb7\x85\xca\xd7\x47\x57\xbe\xed\x66\x0e\xc0\x99\x12\xf1\x49\x34\x9c\x0b\x06\x33\xd9\xdb\x00\xa9\xd7\x53\x50\x98\x0a\x59\xc3\xda\xbb\x0e\x3a\x90\xf2\x90\x6d\xad\xa2\x0e\x25\x5d\x79\xc7\x53\x2b\xde\xa0\x6d\x89\x81\x13\x8a\xbc\x6d\xc1\x80\x29\x3f\x86\x4f\x43\x3b\xb0\x28\x0f\x8f\x8d\xfb\x1a\x74\x9d\x1d\x4f\x61\x86\x38\xe5\x3a\x91\x1b\xf3\x60\xcb\xde\xcc\xa5\x7a\x6c\xac\x18\x33\xd5\x89\x58\x27\xc0\xc5\xd3\xd1\x42\x1c\x99\xf3\x75\xbd\x86\xe9\x71\x8c\xa7\xc7\x65\x5d\xa7\x65\xf3\x49\xb8\x01\x24\xfb\xcc\x07\xe4\x59\xa7\x95\xc9\x3d\x26\xac\x55\x15\x0b\x8d\x50\xe9\x8a\x04\xd6\x3a\x29\x82\xd1\x15\x89\xef\x4d\x67\xc2\x1c\x47\x4a\x13\x38\x87\xe2\xe1\x0d\x86\xe2\x98\x16\x9a\x69\x3f\xe2\x4d\xbc\x87\x15\xb4\x5d\x54\xb5\xea\x56\x49\x10\xe3\x35\x22\x28\xcb\x06\x29\x9d\x56\x1f\x44\x99\x41\x1c\xaf\x52\x34\x5e\xa4\x28\x5b\xd0\x38\x3a\x01\x6f\x5e\x9b\x35\x16\x79\x9e\x7c\xb4\x3c\xa3\x98\x08\x34\xca\x68\xbe\x51\xc8\xfd\xbc\x7f\xbc\xfe\xf9\x75\xb5\x84\x3f\x9d\x8c\x4e\xc0\xa7\xf1\x78\x60\x96\xf1\x6d\x0b\x18\xf3\xbb\x2d\x23\x14\x52\x12\x65\x27\xe0\xcd\x4f\x15\x08\x22\xfb\x76\x51\xfe\xae\x52\x2c\x9f\x3a\xd1\xc7\x63\x56\x90\x89\xb4\x0b\x00\x6f\x5f\xd7\xed\x5b\x7d\x0d\xb6\x33\xb5\x86\xe7\xef\xaf\xae\xc6\x93\x5f\x7b\xe3\x4f\x93\xab\xcf\x2e\xfd\x54\x7a\xc7\x1b\xdf\x53\x2a\xbb\x1a\x8d\x2e\x7c\xba\xbe\xb8\x1a\x65\xe7\x05\xc3\x36\x97\x97\xb0\xbe\x3b\xeb\xdc\x6a\x80\xb7\xd0\x97\x07\x2d\xb5\xbd\x96\x92\x2d\xf6\xd5\x9f\xea\xca\x5c\x48\x82\xa1\x47\xfc\x2e\x97\x9f\xc9\x2a\x68\x89\xeb\x5f\x0d\x0b\xa5\x02\xd7\x64\xc5\x90\x2e\x97\x90\x44\x27\xe0\x5f\x37\x47\xc7\x53\x4c\x8e\xb3\xc5\xcd\xd1\xef\x7a\x0d\x98\xce\x33\x51\x5c\x8e\x8d\x55\x8c\xe1\x8a\x84\x8b\x40\x60\x22\x10\xe9\xd4\x1a\xef\x61\x35\xea\x94\xde\xdf\xb2\xe1\xf7\x2c\x6a\xeb\xa5\xb0\x29\x06\x54\x9e\xb5\xd7\x49\xc8\x3e\x3a\x35\x20\xca\x53\x1c\xd6\x14\x4a\x05\xe0\xcf\xef\xde\xfe\xa4\x57\xc9\x51\xba\xc4\x84\x6b\xe6\x4b\x94\x65\x8c\x2e\x82\x8d\x22\xb4\x3e\xd6\x0a\xf9\xd5\x5e\x7f\x3b\x49\xdf\x0f\x38\x46\x1b\x8a\x07\x83\x97\x76\xe4\xf4\x3a\x43\xee\x22\x86\x2c\xc2\xb3\xa0\x77\x08\xb3\x3c\x10\x47\x1f\x9d\xfc\x7f\xc9\x2a\x3d\x15\xe3\x73\x0c\x04\x02\x5b\xf3\xfd\xb6\x9a\xc6\xbf\x4a\x5a\x6a\xa1\xbf\xb4\xe6\x48\x11\xbf\x9d\xa5\xc8\x7f\x1a\xdf\xc1\xfb\x62\x75\x8a\x91\x3b\x22\xd2\x55\x9f\x91\x47\xf0\x59\x4f\x15\x22\x8b\xce\x69\x92\xdb\xa1\x54\xed\x60\x3f\x18\x94\x87\x75\x30\x16\xea\xfb\xa1\x18\x95\x3d\x14\xf4\x43\x31\x2a\xb7\xf3\xd6\x42\x75\xa1\xaf\x02\xb1\xe1\x01\xbb\xf2\x87\x73\xb4\xac\x4b\xf4\x00\xf0\x9b\x4c\xb5\x6c\x9d\x75\x29\x2f\x50\x2f\x2b\x76\x4c\xf2\x6f\x62\x41\xa0\x65\x92\xdf\x77\x71\xf5\xe1\xcd\x25\x8a\xf0\x6a\x79\x02\x2e\xf9\x2b\xa7\xed\x3c\x4e\x7b\x9d\xeb\xe9\x8a\xe4\x2b\xbb\x6f\xea\xf3\x4b\x1b\xe7\x5e\x79\xa9\x89\x3d\x96\xb3\x17\xd8\x76\x0f\xd8\x21\xa4\x9b\x8c\xa7\xa7\x65\x1b\x4b\x0a\x09\x17\xe3\x70\xf1\xd1\x29\x7d\xd1\x52\x26\xeb\xfa\xdf\xe3\xd4\xb7\xd2\xa5\x3b\x85\x0d\x82\xc6\x68\x40\xe3\xaa\x56\x41\x86\x36\x1e\xbf\x9f\x3d\x3d\xfe\x7e\x33\x27\x31\x4c\x04\x80\x63\xff\x85\xe1\x5d\xb6\xf5\xb5\x07\xe9\x6f\xbe\xc7\xdd\xfd\xca\xf8\xdb\xe0\xb7\xaf\x4d\x7e\x4b\xd7\xcf\xbf\xd7\xff\x1d\xec\xce\x6f\xb9\x37\xff\xdd\xee\xf7\x5a\xf9\xb2\xe6\x31\x23\xb2\x1e\xf1\x3a\xfb\x8a\x2f\x99\xc7\xfd\xca\x1f\x7f\x27\xbd\xae\xbc\xc4\x2b\xea\x2a\xf5\xca\xe7\x91\xb0\x37\x2e\x58\xe5\x6a\xd6\xf5\x6f\x3c\x72\xa5\x0a\x47\xbf\x8d\x26\x97\x57\xdd\xeb\x0b\xeb\xd6\x31\x2b\xed\xf7\xec\xdb\xca\xbd\xc1\xd9\xe4\xe2\xea\xcc\xd8\x80\x72\x07\x3b\xaf\x3e\x8f\x26\xc3\xeb\x7e\xb7\x37\xac\xc2\x92\x31\x48\xd3\x97\xe1\x7a\xca\xc1\x33\x7f\x69\xd7\xa9\x0e\xc5\xf0\x4e\x7c\x50\x6a\x15\x75\x28\x4b\xca\x84\x78\x2d\x44\xa2\x43\x62\x46\xa6\xa5\x9a\x6f\x27\x00\x7d\x41\xf5\x07\xcc\x95\x73\x6f\x63\x9a\xaa\x37\x2f\x61\x07\x74\x9d\x31\x3f\x7e\x37\xff\xd1\x42\xad\xbf\x80\xe3\x67\x99\x12\x3f\x24\x63\x1e\x1b\xed\xba\xe2\x3a\xc2\xcb\xcb\x34\x01\x5a\x9a\x2e\xcd\xa7\x94\x95\x3d\xa2\xee\x5a\xc8\x1d\x9e\xcc\x6a\x05\xa2\xf2\x70\xfd\xb6\x06\xa0\x49\xa7\x76\xe3\x68\xb2\xff\xda\x76\xd4\x62\x52\x40\x6b\x73\xb2\x0e\xff\xa5\x5a\x93\x2d\x6c\x44\x7d\x30\xcf\x68\x23\xaa\x84\xe9\xe3\xd2\x4a\x04\x2e\xdb\xf1\xe1\x01\xe4\xf4\x37\xb8\x8c\xcd\xea\xff\x01\x98\x44\x88\xe4\xe0\x5d\xe1\xf4\xc7\x19\x72\x42\x51\xe8\xa1\xd9\x0c\x85\xf9\x09\xe8\xd3\xf3\x2f\x28\x5c\xe5\x9a\xff\xef\x3a\x36\xaa\x83\xb2\x6c\x98\xea\x30\x47\x72\x2e\xcb\xa6\xdc\xf3\x27\x34\x42\x95\x79\x25\x34\xe7\xef\x74\xdf\x37\xf7\xdf\xb2\x83\x20\xa5\x71\xb5\x97\x25\x64\x36\xb1\xaf\x0b\x69\x55\x81\xc7\xea\x63\xe4\xdb\x5b\xe2\x1c\x99\x17\x64\x86\x6f\xb8\x49\xac\x5b\xeb\xf3\x69\xd2\xb0\xa5\xf5\x71\x9a\x78\xf7\xb3\x2c\xe6\x39\xa8\xda\xe7\x60\xf3\x13\x47\xc5\xb2\x7d\x8a\x13\x2b\xed\x4e\x01\xca\x0c\x4f\x28\xcd\xbd\x26\x94\xa5\x42\x60\x4b\xfc\xb5\xdd\x08\x50\x9a\x1f\x3b\x5c\x03\xb7\xe1\xfd\xf1\xfd\x60\x32\x3a\x1f\x7e\x3e\x1f\x4e\xce\xae\xfa\x1f\x9a\xad\x6f\x0b\xc1\xca\x64\x97\x1d\xe7\x91\x11\x87\xdf\x67\x53\x20\xd5\x63\xe6\x45\x95\x7d\x79\x7d\x6e\x6a\xfc\x7a\x3a\x3e\xfb\xc4\x0f\xb5\x8e\x06\x96\xe3\xb2\xc5\x99\x8b\xea\x0b\x5b\xaa\xfd\xe9\x59\x6f\x32\xea\x9f\x8e\x5b\x80\x70\xe6\x18\xf6\xc0\xfd\x78\x71\xf5\xfe\xf4\xa2\xd7\xff\x70\xe5\x3e\x78\x7b\x22\x9f\x9b\x2b\xaf\x6e\xfa\x80\x0e\xbb\x6c\xd6\x7b\x1f\xfd\xf0\x52\xba\xca\x31\x99\x8b\x5c\x9f\x2a\x5c\xeb\x80\x3a\xfa\x6d\x34\x3e\xbf\xdc\x0f\x01\xbe\xce\xea\xb7\x75\xb3\xb7\xe5\x59\x56\xff\x9a\x47\xa8\xde\x54\x4b\x5e\xee\x11\xaa\xd2\x9f\x6b\x25\x95\x1b\x24\x72\xc6\xed\xaf\x0a\xd5\xc4\xc7\x7e\x53\xe6\xc1\x06\xa9\xe6\x63\x8f\xc6\x6e\x6b\x79\x1f\x4d\xf8\x6d\xb8\xfc\x69\x37\x6c\x6a\x18\xd4\xdd\x77\xc1\x7a\x65\xc5\xfa\x9e\x4d\xdb\x73\x69\x45\xaf\xb5\x34\xca\xae\x5e\x7d\x2a\xc8\xcb\x37\x75\x07\x98\xdf\x06\xd6\x5c\xe0\x01\x8d\x7a\x1f\xac\xde\x2f\x26\x28\x0f\xf8\x0b\x3e\x15\x77\x57\x7f\xa4\x82\x88\xa5\xc8\x9b\xa1\x64\x5e\x9b\x09\x0e\x84\xae\xf8\xa4\xe3\x04\x46\x51\x7a\x02\xca\xd7\x7f\xf4\x71\x1c\xbd\xfa\x3f\x00\x00\x91\x79\xf9\x5d\xe7\x75\xe7\x6d\xe7\xcd\xd1\x09\x38\xaa\xfa\xef\xf5\x1c\x0f\xfa\x8d\x57\x9e\xd8\x61\x28\xc3\x9e\xdd\x22\xb1\x83\xcb\xbb\x2f\x11\x2d\x12\x9c\x75\x18\x85\xc2\x3c\x8d\x35\xc7\x79\x2e\x6e\xae\x96\x25\x92\x1c\x92\x9b\x44\xdf\x52\x97\x0b\x70\x57\x5a\x62\x34\xc0\xef\x69\xff\xe2\xae\x74\x81\xd5\x6d\xa0\x24\x5e\xa5\x30\x76\xa1\x26\x1d\x42\x4c\xe6\xab\x18\xa6\x8e\x5a\xdc\x71\x0f\x29\xf3\xe5\x8b\x67\xf7\xf8\x01\x33\x19\x68\x28\xae\x7e\x73\x1a\xac\xdf\x70\x4f\x54\x8a\x2b\xce\x62\x91\xee\x59\x66\x39\x4d\xb9\xb1\xa2\x7d\x5a\x4d\xeb\x71\x65\xc9\x05\xe0\x41\xb2\x3a\x17\xb8\xa5\xf7\x4e\x13\x44\x4e\x07\xbd\xcf\x6f\x47\xe6\x77\x00\x22\x94\x85\x29\x4e\x72\xc5\x9c\xf5\x01\x01\x7a\x47\x32\x90\x2f\x10\x88\xf1\x0c\x85\xf7\x61\x8c\x00\x9d\x31\xf5\x0e\xa8\xb8\xf6\x0b\x30\xe1\xe5\x72\x5f\xa0\x04\x9e\xa4\x0c\x48\x2d\x5c\xac\x31\x54\x45\x4c\xf3\x10\x48\x96\xa7\xfc\xaa\x74\xf9\x9d\x4f\x70\xbb\xaa\xb5\xc0\x85\x5e\x5d\xe0\x6b\x48\xce\xa4\x16\x42\x34\x28\x62\xe5\x97\x51\x82\x42\xc0\xb3\x96\x20\x41\x98\x08\x65\x38\x45\x11\x87\x06\x66\x34\xe5\xc4\xb9\x12\xc4\xa9\x28\x32\x3b\x45\xd8\x6f\x16\xc3\x35\xad\x1e\x3d\xf0\x0d\x15\x14\x52\x79\xa3\x46\x4e\x52\x94\x82\x64\x23\x62\xf0\x66\x06\x39\xa4\x3a\x9e\xad\x62\x10\xd2\x65\x12\x23\xfe\x34\x1f\xe3\x19\xf7\x12\x6d\x41\x20\x2b\x82\xe5\x88\xa6\x94\xc6\x08\x92\x36\x83\x4d\xd1\x1f\x2b\x36\x61\x46\x34\x85\x4d\x9e\x16\x87\x30\x1a\x7a\xb2\xce\x16\x8b\xbc\x4d\x04\xf3\xf9\x22\x93\x96\xc8\xeb\xfe\x24\x77\x99\xb6\xa2\x23\xb3\x5b\x58\x65\x35\xfb\x6e\x93\xd4\xea\xc9\x90\x0f\x55\xe9\x5c\x14\xd4\x25\xb2\x99\x29\x43\x97\xc2\xe5\x83\x24\x1b\x4a\xde\x4d\x64\x6e\x5b\x71\xfa\x4d\x4a\x3c\x57\x55\xef\x6a\x14\x93\xe1\x5c\x8d\x30\x4d\xe1\x7d\xbd\xd0\x6e\x04\xfa\x91\x68\x44\x45\xfc\x0a\xee\xef\x75\x1d\x35\xfc\xa2\x54\xfc\x98\x0d\xb5\x7d\x6b\x3c\xe3\xcc\xb5\x03\x00\x61\xa2\x6d\x0f\x60\x09\xc3\x1d\x21\x24\x34\xda\x71\x10\x0c\x82\x6b\x96\xda\xb4\x5f\xe7\xa8\xea\x65\x34\x35\xdf\x4e\xa2\x6f\x16\x24\xd5\xa5\xa9\xdc\x49\x28\xb3\x7a\x1d\xaf\xdf\x4c\x51\x0e\x4b\xb3\x5e\x07\xe3\x34\x7f\x8d\xd0\xaa\x0c\x5d\xbc\x79\xad\x7e\x37\x44\x44\x59\xba\xe2\xf9\xc8\x13\x20\xb2\x9a\x11\x43\x29\xdf\x1c\x8d\x17\x38\x2b\x62\xb7\x20\xe4\x78\xe3\x0c\xac\x32\x14\x29\x63\x24\x38\xeb\xf7\xca\xd3\x08\x46\x32\x72\x4b\x44\xba\x21\xa1\x5a\x0b\xad\x62\x90\x62\x23\xd5\x82\x92\xf9\x76\x4a\xe5\x3c\x99\x57\xd5\xc9\x79\x32\xaf\x2b\x12\x95\x3c\xd8\xa7\x29\x84\x76\x68\xab\x42\xb7\x1f\x6c\x91\xbe\x78\xab\x11\x9f\xc9\xd6\xd5\x61\xab\xef\xf5\xb1\x1b\xe9\x92\x5f\x02\x01\x76\x30\x22\xac\x06\x84\xc3\x78\x28\x0d\x87\x97\x30\xe8\x32\x6b\xf4\x56\x03\xff\xf8\x7e\x30\x62\x46\x37\xaa\x0e\xbe\x28\xa8\x13\xc0\x4c\x5c\xdd\x4c\x04\xab\x97\xa9\xfb\x98\x35\xf1\xf1\x54\xa6\x66\x25\x4d\x60\xa7\xc8\x62\x67\xa5\x99\x28\xb1\x51\x6d\x44\x60\xfe\x91\xc3\xe9\x91\x19\xad\x92\xce\x2c\xad\xd3\xcf\x92\xac\x50\x37\x41\x2b\x01\xf1\x17\x60\x87\x1a\x2a\xc2\x1c\x1d\xd3\x0d\xcc\x4b\x13\x6d\xb8\x86\xe0\x4e\x9b\x39\x44\x70\x3a\xe8\x7d\xe3\x66\xad\xc7\x62\x9c\x17\xd4\xb0\xd9\x29\x30\x8a\x38\x43\xc2\x78\xe0\x37\x3a\xdd\xd6\x6c\x0b\x7b\x95\xdb\x6a\xa7\x51\x94\xa2\xcc\x5d\xa5\x8d\xb9\x24\x02\xef\xfc\x45\x21\x1f\x20\x1f\xb2\xad\x51\x16\x3f\x64\x3d\x5f\x65\xfe\x96\xf0\x0b\x5e\xae\x96\x27\xe0\xdd\xdf\xff\xfe\xf6\xef\x8d\xb5\x31\x11\xb5\x6b\x5b\x07\xd5\x9f\xa0\x07\x26\x39\x9a\x57\x6f\x9b\x55\x7f\xfc\x18\xd7\xcb\x47\xb4\xc9\xf3\xd1\x6b\x39\xdc\x2a\xf1\x63\x4b\xb8\xe7\xb6\x9c\xdb\xf1\x92\x00\x72\x8d\x7d\x33\xdc\x16\x8e\xd8\x1d\xed\xfb\xbc\x89\x36\xc0\x2c\xc6\xbd\xfe\x0b\xb4\x85\xe4\xaa\x51\xae\x10\x57\x0d\x31\x6e\x7f\xe9\x35\x8e\x7c\x15\xca\xe1\xda\x6b\x35\x4d\xb4\x77\x8a\xdd\x8d\x1d\xe4\x09\x74\x29\xd7\x52\x88\x36\x86\x00\x4d\x55\x62\x89\xfd\xd1\xa9\x50\x64\xe2\x29\x0a\x40\x67\x56\xcd\xeb\x47\xa4\x21\xf6\xb6\x6f\xf3\xa2\xcc\x73\xbb\x93\x75\x71\xc1\xc0\xb8\x8c\x8b\xa2\xd0\x6e\x5b\x98\xa9\x76\xab\xa6\x45\x51\xfa\x12\x2c\x8b\x6f\xd2\x14\xa8\xf1\x70\x31\x1f\xee\x58\xbe\xce\xbf\x95\xb9\x6d\xa0\x05\x9f\x7e\xd5\xc2\xa6\x4b\xdd\xaa\xb8\x51\x05\x27\x34\xf2\xca\xd3\x56\xd1\x99\x82\x79\x76\x03\xe3\x53\x12\xcd\x00\x0a\x89\xe9\xb3\x37\x9a\x8c\x96\x96\x26\x4b\x84\x32\xbf\x66\x6c\xd3\x97\xf8\xb5\xd1\x7d\x7a\x4d\xaf\xc6\x06\x6a\x03\xbd\x0d\xa4\xe6\x3e\x1b\x0d\x80\xf6\xc0\x1a\x74\x2e\x00\x22\xa3\x77\xe6\xd4\x99\xa0\x38\x5f\xe0\x2b\xf7\x69\x5d\xd0\xd2\x36\x6a\xa0\xb3\x77\x24\x81\x5a\x0e\xde\x42\xb9\xbf\xe3\xa8\xe1\xb0\x0a\x02\x83\xc3\xdd\xfa\xde\x35\x38\xe7\xb0\x9c\xfa\xbe\x94\x39\x2f\x50\xcb\xaa\x64\xea\x3b\xe9\x58\x61\x61\xd9\x14\xac\x28\xb1\x6b\xd7\xc4\x98\x03\x53\xb7\x26\x05\x44\xa9\x58\xcf\xca\x4d\xec\x3d\x68\xd5\xbd\xee\xd5\xdb\xe7\xf1\x9b\x54\xc8\x5b\x6d\x39\x55\xee\x43\xb4\x83\xd7\x00\x13\xd8\x2e\x23\xb4\x87\x0c\xaa\xc6\xc5\x8f\x23\x8e\xa4\xdc\xf0\x1e\xd0\x28\xfb\xd1\xa1\x3f\x9b\x34\x57\xeb\x28\x04\x68\x21\xd4\x49\x83\xc6\xf7\xb7\xf7\xd1\xc0\xa9\x73\x76\xda\x07\xb4\x63\xe2\x54\xe3\x7b\xef\x6b\x23\x0f\x69\x0b\x66\x6e\x35\xb9\x26\x7a\x4f\xbe\xa3\xbf\x9b\x0b\xd4\xa7\x11\xb2\x79\x3f\xea\xbb\x7d\x4b\xdf\xea\xf3\xa8\x82\x83\xbb\xd3\x8a\x25\x37\x8a\x7c\xca\xfd\x61\x7b\xcc\xd1\xb7\xf6\x4a\x65\xa9\xcf\xbd\xfe\x6b\x2d\xb0\x3c\xe7\x75\x7c\x03\xdd\x25\x6e\xd1\x97\x2c\xd5\x2a\x62\xd1\xd7\xf8\xaf\xa9\xf3\x67\xb4\xa2\x8a\xc7\x91\xb6\x5e\xa3\xc3\xe8\x4c\x3b\xe6\x5a\xae\x51\xf5\xbd\xbe\x46\x8d\x07\x99\xf4\x35\xaa\x0a\x0e\x6b\xb4\x15\x83\x6e\xb4\x46\xd5\x73\x48\x28\xca\x56\x53\x82\x2c\x99\x02\xb6\x55\xa0\x5e\x4d\xb9\xca\x50\xfa\x8c\x1d\x7e\xdf\x8b\xb9\xf2\xc4\x54\x47\x7b\x92\xca\xba\xa8\x55\x99\x55\xf5\x0a\x58\x76\xe7\xc8\x28\xb4\x28\xe1\xfa\x53\x57\x86\x2a\xd6\x8a\xef\xb7\x5c\xeb\x5b\xed\x59\xaa\x74\xe7\xf2\xda\x9e\x28\x9b\xb2\x59\x4e\xe1\x6c\x86\x43\x30\x8b\xe9\x1d\x80\x39\xe8\x0d\x80\x54\x68\x80\xa6\x3c\xce\x0f\x62\xb4\x46\xf1\x5f\x57\x3c\xc0\x24\x89\x31\x8a\xc6\xd4\xb2\x1a\x1b\xbc\x8a\xc2\x0d\x18\xb9\x5d\xa9\x16\x60\x80\xba\x8d\x7e\xfe\x25\x61\x94\xaf\x5c\xb3\xae\xfe\xf6\xb8\xf3\x78\x8b\xee\xf7\x18\xa1\x2b\xee\xe8\xee\x0f\x24\x3f\xc4\xd5\x1c\x45\x6c\x17\x6b\xdc\xa4\xe3\xd6\xf1\xc6\x16\x91\x3d\x79\x41\xc6\x5f\x81\x5a\xcf\x6f\xdb\x50\xda\xc3\xd6\xa6\x2d\xf7\x41\xfd\xb7\x91\xcb\x0c\x5a\x93\xb7\x79\x14\x8d\x87\x57\x69\xd4\xb0\xe2\xcc\x7b\x18\x31\x13\x6e\x98\xcc\xb9\x58\x9b\xa5\x74\x29\x8e\x68\xc0\x25\x2a\x97\xf0\x61\xe5\x1e\x56\xae\xe5\x77\x58\xb9\x1b\x8d\xa2\x4d\x0c\xde\x5e\x8a\xe6\x0e\x2f\xda\xdc\x6c\x44\x39\xb3\x42\x45\x65\xc0\x9f\x9e\x06\x88\xb1\x1a\xcc\x51\x04\xa6\x30\x43\x11\xa0\xe2\xfa\x14\x4d\x23\x94\x02\x4c\xc0\xdd\x02\x87\x0b\xf6\xe9\x1e\xc0\x14\x81\x0c\xe5\x9d\x4d\xec\xf1\xe6\xc8\x22\x8f\x4f\x3a\xc9\x5b\xb9\xf3\xc3\x63\x99\xcc\x42\xc1\x33\x2c\xad\x6c\x01\x00\xe4\x14\x4c\x91\x32\x47\xd4\x28\xd8\x10\x2d\xe8\xea\xf4\xf4\x9e\xbf\xe7\x8f\xe0\x5e\xd0\xf9\x1c\x13\xf7\x49\x7c\x03\xc5\x73\xbd\x49\x71\xf2\x39\xa7\x00\x93\x88\x5f\xae\x05\x78\x06\x78\x72\x3e\x90\x2d\xe8\x2a\x8e\xc0\x1c\x11\xb6\x02\x10\x88\xe9\x9c\xfb\x0f\x70\x15\xe7\xac\x05\x3f\xe5\xdc\x80\xbd\x33\x6e\x01\x1c\xb9\xc5\x1d\x68\x4b\xce\xe0\x16\x2b\x24\x11\x9b\xb6\x9c\x86\x34\x16\xd2\x1f\x45\xc7\x11\x22\x8c\xae\xd3\xfb\x92\xae\xa0\x37\x03\xf9\x02\x67\xe2\x2d\x2b\x3e\x56\x92\x31\x38\xa9\xc8\x5d\xfb\x4a\x94\xb2\xba\x62\xe1\xa1\x8c\x81\x13\x68\x39\xc7\xd5\x24\xd2\x6c\x86\xb9\xb0\xcb\x07\x0c\x79\xcd\x36\x5f\x20\xcb\x78\x72\x2a\x70\x61\xac\x0d\xfd\xfc\xd1\x5a\x9f\x20\x12\xf1\xb4\xea\x7e\xc9\x5a\x61\x93\x48\xa2\x5b\xba\x8b\x88\x44\x6c\x0e\x0a\xbc\x53\x48\xe6\xe8\x15\x98\x22\xc6\x49\xaa\x02\x26\x61\xbc\x8a\x50\x04\xee\x70\xbe\x90\x57\x1d\x79\xc5\x0e\xe8\xe5\x20\x84\x04\x50\x12\xdf\xb3\xa5\xa0\x56\x49\x04\xee\x16\x88\x0d\x96\xac\x96\x28\xc5\x21\x14\x33\xc0\xe6\xab\xa8\xe2\xa1\x01\xfb\xcd\x68\xba\x84\x39\x3f\x3f\x66\xe6\x8d\xaf\xff\x5a\x1f\x34\x4b\x9a\x29\x06\xc9\xfd\x95\xfd\xf5\xb4\xf2\x17\x6c\x72\x06\x2f\xd8\x40\x11\x1a\xd3\x35\x56\x73\x22\xe5\xca\x1c\xaf\x11\x29\x98\xaa\x03\xf8\xad\x07\x46\xfc\x29\x02\x08\xe7\x0b\x94\x1a\xf4\xa6\x29\xb7\x94\xa2\x02\x06\x04\x03\x1a\x59\x16\x10\xa1\x39\x83\xba\xc6\x11\x8a\xe4\xf2\xa9\xae\x1c\x61\x73\x71\xa6\x26\xab\xe5\x14\xa5\xee\xa5\x24\x7e\x5f\x82\x32\x37\x50\x80\x49\x1e\xd0\x34\x10\x04\xb0\x3f\xd5\xa3\xff\xd4\x08\x1b\x59\x5b\xde\x09\x19\x9f\x0d\x36\xa5\xaa\x5a\x98\xff\x35\x3e\x1b\xbc\x02\xd7\xdd\xc1\x2b\x46\xae\xd1\xd9\x78\xf0\xdf\x4a\xf7\x48\x27\x7b\xb9\xca\x72\x41\x0e\x4e\x39\x46\xab\x82\x81\x5f\xe9\x84\x94\xe8\x64\x6c\xb1\x8f\xcf\x06\x0d\xf4\xd9\x97\xf2\x6e\x61\x80\xe4\x36\x2f\xd9\x42\x98\x21\x13\x99\xc5\xdc\x47\x4c\x65\x28\x22\xe0\x8c\xb3\x3a\x89\xe4\x7d\x1a\x26\xfe\x62\x0a\xa3\x4c\x6e\x48\x2a\x19\xad\x88\x61\x61\x32\x2e\x9c\x19\x91\x97\x38\xcb\x30\x99\xbb\xe4\x74\x84\xb2\x5c\x3e\xee\xb0\xbd\xb8\x6e\x29\x42\x71\xf2\x3e\xa6\xe1\xed\x26\x22\xb4\x37\xe0\x4d\x2a\x12\xbf\x37\x90\x87\x2f\x51\x76\x2c\x6b\xb0\x02\x98\x1b\xf4\x64\xe6\xc2\x31\x73\x65\x3a\x05\x98\x90\x67\x69\xe3\x82\x13\xe5\x00\x66\x20\x81\x69\xae\xe4\xf1\xa9\x8a\x72\x28\xa2\x9e\x19\xb5\x99\x2c\x66\xd2\x0a\x50\xbe\xf4\xd5\xd6\x70\x03\xe3\xb5\xf6\x56\x00\x08\xb1\xe7\x16\x9d\x83\x3e\x67\xbd\xee\x90\x0d\x1a\x4a\xde\x06\x29\x62\x5e\x16\x22\xb9\xd2\x27\xbd\x01\x10\x63\xff\x0c\x63\x1c\x01\xf4\x05\x2e\x13\x66\x12\x32\x3b\xef\xe6\xe8\xcd\xcf\x3f\x75\xde\xbc\xfb\x47\xe7\x4d\xe7\xcd\xf1\x4f\xff\x73\x73\xc4\x38\xe6\xe6\xe8\xa7\xd7\xaf\xdf\x9c\x44\xd3\x9f\x4f\x4e\x8e\xdf\xfd\x4f\x35\x2f\x8e\xed\xb7\x89\xeb\x81\xbe\x84\x28\x69\x3e\x24\x5d\xd5\xa5\xbc\x95\x1c\x6a\x8c\x43\x1e\x69\x65\xa3\x97\x13\x2f\xed\x2c\x39\x5f\x55\x05\x0a\xc9\x3e\xe8\xa0\x90\x10\x7e\x1b\xb8\xc3\x71\xcc\x3a\x4b\xd1\xbf\xc5\x9a\xc4\xb3\xd2\x84\xa6\xab\x3c\xc3\x11\xe2\x53\xc0\x27\x89\xeb\xef\xe6\x41\xb7\x75\xf6\x36\xa3\x79\x6b\x87\xaf\xa5\xcb\xc7\x9f\xaf\xc1\x51\x83\x26\x6e\xe7\xd1\xb5\x8f\x11\xaa\x5f\xc5\xa8\x65\x6d\xb8\x2c\x1b\xd0\x48\xc6\x2e\x8a\x60\x71\x29\x0e\x94\xc0\x54\xeb\xf6\x15\x5b\xfe\xa5\x60\xc5\x04\x8c\xe9\xf1\x07\xd6\x98\xaf\xfe\x8c\xcb\xd4\x62\xdd\x0f\xca\x70\xca\x2b\xd1\x0f\x9b\x64\x05\xdb\xdb\x27\x2a\x4b\x14\x88\x96\xa2\x45\x2e\x15\xbd\x73\xc6\x97\xe7\x5f\x72\x94\x12\x18\x9f\x93\x1c\xe7\xf7\xa3\xbd\xcb\xa1\x0d\xa2\x35\xea\xd7\x9e\x6b\x37\xc0\x43\xfc\xda\x44\x71\xd4\x6f\xb3\x25\x01\x36\x89\xea\xa8\x9f\xc1\x7b\x45\xc2\x92\x42\xea\x32\xf1\x74\x8b\xee\x33\x90\xa2\x58\x28\xd5\x05\x4e\x98\x89\x02\xf9\x44\xd3\x99\x14\x1e\x1d\x29\x86\x8a\x4c\x2f\x9c\x9f\x7a\xe4\x15\xe8\xd3\x9c\xfd\x4f\xa4\x70\xe4\x16\x60\x97\xa2\xac\x4f\x73\xfe\xa5\x61\x96\x77\x21\x45\xcb\x68\x94\x95\x10\x52\x22\x32\xe9\x4c\x84\x90\x61\x43\x95\x2a\x49\x8d\xb8\x27\xd4\x6c\x41\x34\x9c\x81\x1e\x61\x0c\x2d\x87\xcc\x0a\x25\x20\x01\x82\xdb\x82\x53\x04\x08\x25\x01\xb7\x67\xac\x30\x24\xa5\x68\x6a\x10\xca\x03\x4e\x82\xe2\xe6\xbc\x28\x61\x86\x11\x4a\x62\x18\xa2\x08\x44\x2b\x8e\x34\x54\xc9\x72\x99\x4d\x8a\xd2\x39\x02\x09\x37\x4a\xdb\x92\xa7\xfd\x8a\x10\xbf\xcd\xe7\x6b\x03\x99\x2e\x7e\x2d\x25\xbb\xf8\x35\x06\xf5\xca\x8a\x6d\x82\x7b\x26\xca\xcd\x2a\x41\xaf\xdd\x6a\x80\xed\x82\x7e\xea\xb7\x71\xf0\xcf\xc4\x68\x33\xa5\xdb\x66\xb4\x6d\x6b\x36\x87\xf5\xd5\xcf\xa6\x24\x35\x05\xa9\xc7\x54\xb2\x52\x43\xd5\x94\x62\x61\x14\x1f\xfb\xd4\x63\x4d\xc3\x3d\xbf\x92\xac\xb7\x3f\x28\xc4\x83\x42\xdc\x85\x14\x07\x85\x78\x50\x88\xe5\xef\xa0\x10\x3d\x18\x7d\x2d\x85\xb8\xa7\x80\xdd\x87\x3f\xba\xee\xcd\xa9\x56\x02\x9a\x53\xbb\xef\x38\xa6\x5a\xfe\xda\x2c\x82\xb6\x14\x6d\xc1\x0b\x8d\x0c\x1e\x68\x88\xfb\xe9\xe7\xa6\x71\xc3\x6d\x27\x63\x7b\xcd\x5e\x45\x4c\x80\xad\x6c\xcb\xfb\x4a\x40\x9d\x64\x68\xb9\x57\xaa\xce\x3d\x1c\x36\x4b\x5f\xe0\x66\x29\xdf\xd8\x12\x33\xa3\x99\x93\x1d\x30\x12\x95\xa7\x68\xaf\xdb\xa9\xcc\x4a\xdd\x39\x7e\x4f\x53\x3c\xc7\x04\xe6\x48\x5a\xdb\xdb\xc6\xef\x5d\x41\x7b\x79\xbf\xeb\x10\xaf\x3f\xc4\xeb\x0f\xf1\xfa\x43\xbc\xfe\xa5\xc7\xeb\x0f\xae\xb6\xf5\x77\x70\xb5\x8b\xdf\xc1\xd5\x3e\xb8\xda\xe5\xef\xe0\x6a\x7b\x30\x3a\xc4\x9e\x0f\xb1\x67\xff\xcf\xa0\x7e\xb5\xbd\xb0\xc8\x62\x9c\x71\x85\xc0\xf3\x10\x94\xc3\x91\xab\x74\xc9\x94\x49\x87\x9f\xdc\xd2\xbf\x70\x8a\x9e\xf6\xbb\x8d\x27\x09\xc1\x41\x2b\x1f\xb4\xf2\x41\x2b\x57\x7e\x07\xad\xec\x41\xf9\xa0\x95\xb7\xab\xb9\x97\x00\xf8\xe1\x0a\xc1\xe1\x0a\xc1\xe1\x0a\x81\xa5\xf2\xe1\x0a\xc1\xe1\x0a\x41\xf1\x7b\xb6\x2b\x04\x5b\x6f\x7a\x89\x9c\x09\xe3\xfb\xc4\x2a\x87\xdc\x02\xd3\x20\xb6\x4c\x7f\xc0\xa0\x28\x73\xcd\x94\x95\x86\x2c\xe5\xe8\x08\xb6\xe6\xff\xc2\x19\x98\xa2\x1c\x06\x3c\x21\x02\x93\x9d\x6f\x3a\xff\x70\x8f\x71\x8b\x94\x21\xea\xd5\x91\xa6\x9d\x3d\xf5\x1a\x0a\x9f\xfa\x62\x67\x4c\xec\xe1\x49\xe1\x69\x0e\x44\x98\xe7\x6b\xc4\x98\x41\x78\x79\x7a\x39\xb6\xee\xb6\x78\x45\x0a\x2f\x6c\xc0\x92\xd3\xac\x90\xe5\x0c\x0f\x67\x2f\x36\x5a\x39\xf3\x32\xb2\x26\xe6\x37\x3b\x53\x6d\xfc\x88\x0d\x68\x93\x4a\x47\xcb\xa7\x02\x43\xe6\x20\xa3\xa8\x5f\x4b\x21\x52\xbe\x39\xac\x12\x83\xa8\x2f\x21\x25\xc2\x16\xcb\x4e\xc0\xbf\x7e\x67\x5f\x18\x7c\x14\x7d\x56\x39\x3f\xf8\xd7\x27\xcd\x95\x12\x91\xcc\x96\x2e\x45\x7c\x76\x66\x4c\xd1\x8a\x6d\x49\x53\xba\x24\xf3\xe6\x4d\xa9\x96\xd7\x53\xa7\xd4\xd1\x92\xf4\x2f\xb2\xa7\x54\x6a\x6c\x9c\x40\x85\x2d\x5e\x09\x73\xab\x24\x2a\x11\xc9\x54\x06\x17\xa0\x8f\x12\x1c\xb2\xa2\xe8\xbf\x43\x56\x14\xe3\x77\xc8\xad\xe0\xfa\x1d\x72\x2b\x6c\x34\x8a\x43\x56\x94\x97\xba\x72\x5f\x7a\x94\x74\xef\x92\xe5\x10\x0d\xb5\xfe\x0e\x02\x77\x33\xc4\xbf\x69\x81\xfb\x82\x93\xd9\x34\xc8\xcb\x9c\x7e\xf8\x23\x72\x9d\xc1\x6c\x2b\xdb\x9b\xce\x03\x37\xaf\x85\x4d\xa6\xc9\xc3\x46\x2d\x9e\x33\xf2\x9f\x02\xf6\x4f\xb3\x07\x7c\x20\x29\xb9\x09\x6f\x1c\x5c\xd5\x4d\x5c\xd5\x3f\x68\x66\xf8\xa8\x7f\xd0\xcc\xee\x9d\xfe\x21\xd2\x5e\xd7\xfd\xd2\xff\x47\x33\xbb\x43\x5a\x14\xd4\x3d\x51\xad\xd7\xaa\x0b\xaa\x8a\xdc\xbe\x27\xd7\xf9\xe9\x1a\x5d\x93\x5b\x42\xef\xc8\x07\xbe\xa9\x5f\xbc\x35\x7b\x78\x05\xc1\x59\x75\x8f\x2f\x69\x7b\xcc\xe0\xcd\x5f\x17\xf0\x8b\x87\x06\x71\xd9\xac\xe1\x9a\xd5\x90\x8e\x72\xb5\x86\xfb\x2a\xc0\x4e\x68\x0b\xf6\x27\xf3\x09\xb3\x82\xbc\x88\x7b\xb7\x1c\x8a\xd7\xfd\x5e\x7b\x3b\x99\xae\xd2\xcc\xb5\x0d\xb2\x53\x2f\x4e\x35\x7c\x20\x0e\x00\x51\x16\x26\x4b\x98\xda\x4e\xc0\x37\xc0\x2d\x76\x3a\x2c\x98\xfb\x46\x55\x3e\x0d\xf9\xf6\xe9\xd3\x41\xcf\x62\x7a\x57\x4d\x07\xcd\xbe\x39\xf3\x41\x8b\x42\x47\x42\x68\x56\xe8\x4c\x08\x5d\x16\x5a\x13\x42\xeb\x98\x54\xf5\x89\x5e\xec\x78\x36\x67\x4b\x85\x02\xe3\x64\x01\x37\xd1\x2a\x9a\x62\xf8\xbf\x55\x7d\xa1\x1e\xb9\xcd\xca\x47\x6e\xd7\xcc\x55\x85\xfc\x64\x7f\xc8\xa7\x46\x2e\xa7\x72\x2b\xe1\x3b\xd2\x39\x6c\x0e\x47\x70\x99\xc4\x98\xcc\x05\x27\xec\x5b\xe8\x78\x9f\x5c\x6b\xb2\xa4\x59\x63\xcf\xe6\xfc\xce\xc2\xaa\xdd\xab\xaf\x85\xd8\xf8\xe9\xf5\xdf\xad\x55\x18\x15\xc7\xf6\x8d\xa5\x36\xa3\x04\x00\x91\x95\xfb\x7e\x53\x00\xb4\x45\x6e\xaf\x80\x93\x19\xfe\xd2\x80\xbc\x07\x08\x0c\x73\xbc\x46\x1f\xd8\x28\xf0\x12\x5d\xad\x9e\x83\xde\x6f\xdf\xbd\x76\x54\x29\x30\x7e\x67\xad\x80\xa3\xf8\x99\x51\x6d\xc6\xf4\x8d\x95\x2d\x32\xb9\xb0\x86\x4f\xa8\x6e\x35\x34\xdf\xbc\x6e\xc4\xd3\x52\xee\x75\x13\x5d\x0f\xfb\x99\x12\xe1\x49\x35\x22\x4a\xb3\x04\x12\x43\x21\x8a\x4f\x76\x7d\xa8\xca\x6c\xea\xf0\x9c\x97\xd9\xb5\xa1\x5e\x56\x57\x86\x26\x12\x55\x5d\xa8\x95\xbe\x1c\x55\xf8\x7d\xe9\xb1\xad\x9f\x84\xdb\xdc\xad\x7a\xda\x47\xe4\xbe\x9d\xe7\xe0\xc4\xea\xdd\xb7\xb9\x00\xa3\x25\x26\xa3\xdc\x2d\x31\xcd\x8b\xd6\xac\x36\xe6\x31\x6f\xbc\x46\xe2\xb1\x17\x47\xb0\xbb\x90\x81\xfc\x35\xf8\x27\x52\xd4\x1e\xd8\xa2\x98\x5a\xdf\x38\x8d\x70\x8a\x7c\xd7\xcb\x8d\x31\x77\x55\xe5\xe2\x88\x0a\x0c\x6f\x91\x38\x2f\xb5\xa4\x04\xbb\x2f\x3a\x14\x24\x98\xd2\x7c\xf1\x44\x14\xc0\x8e\x1b\xdc\x3c\x44\xbf\xf2\xd0\xc6\x86\x93\x96\x06\xf5\x49\xcc\xd2\x41\x2b\x7a\x97\x48\x80\xde\x40\x11\xfd\x7c\x38\x1a\x9c\xf6\x25\xed\x1d\xf4\x6e\x22\x26\x33\xc7\x7a\xdd\x36\x38\x5c\x13\xfc\xc7\x0a\x89\xb7\x6e\x7a\xdd\x4d\x70\x28\x4d\x94\xdd\x0d\x10\x07\x08\xcd\x00\xf9\xe9\xed\x36\x06\x86\xe5\xd4\xe1\x73\x1a\x18\x3c\x13\x42\x94\xd2\x24\xa6\xf2\x4d\x35\xf9\x87\xe3\x3c\x91\x2a\xb4\x9a\x18\x1c\x58\x37\xa5\xc9\x05\xad\x3d\xaf\x66\x14\x5a\x8c\x0c\x03\x91\x9a\x91\xa1\x97\xda\xad\x0c\x9f\x15\xb1\xed\x83\x6b\xdf\xb3\x47\x5d\x11\x03\x9e\xb7\xe1\x2d\xd3\xee\x1f\xa0\x67\x90\x40\xbc\xfc\xc6\x01\x8a\xc5\x2b\xe1\x36\x05\x85\xbb\xa2\x91\x42\x51\x64\xdf\x90\x0c\xa3\xd8\x07\x4c\xef\x01\x0c\xc3\x80\x1f\x53\x66\x84\xb4\x88\x8d\x42\x64\x14\xe6\xa9\xf9\xf3\xe6\xeb\x20\x34\xf2\x1d\x9f\xda\xc0\x18\x63\xa3\x06\x71\x99\xa0\x44\x8d\x80\x12\xde\x89\x9e\xb5\x43\x6d\x38\x0a\xdb\xeb\xaf\x64\xb2\x3d\xa9\xe4\x4b\xd2\x15\xd9\x97\xe0\x1b\x30\x58\x0e\xb9\xa7\x97\xd5\xc5\x9e\x81\x45\x55\xea\xe9\x85\x07\xa1\xf7\xb2\x84\x5e\x7d\xca\xfd\xe3\x6b\x58\x2b\x4f\x24\x39\x66\x38\xce\x91\x3c\x91\xa4\xb2\x2e\xe5\xf4\x3b\x12\x21\x15\x42\x89\xf9\xfa\x20\xa8\xb2\x6f\xab\x3a\x4b\x43\xa7\x51\xdd\x26\xd6\xbb\x75\xe3\x2c\x0d\x2f\x4f\xcf\x76\xe8\x79\xfb\xd6\x59\x1a\xee\x12\xa2\xde\x35\xc4\x8d\x93\x41\x4a\x9d\xaf\x5b\x54\x9a\x3f\xa9\x3a\x81\x61\x58\x98\x15\x98\x24\xab\x5c\xe8\x94\x30\x4f\x1d\x27\xf3\x45\x89\x4d\x9b\x9c\x86\xe1\x40\x81\xea\x31\x50\x55\x95\x52\xab\x50\xd7\x2b\x75\x74\xaa\xca\xa5\x56\xe3\x66\xc3\x73\xf9\x9b\x2b\x99\xbd\x9e\x80\x30\x4f\xc5\x56\x07\x63\xdc\x4e\x14\x5f\xc4\x53\xcd\xab\x54\x38\xb3\x4c\x8b\x9d\x9e\xf5\xc0\x59\xbf\xf7\x55\x95\xd0\xee\xd7\x01\x2a\xc9\xf7\x2a\xac\x31\x4a\x50\x68\x10\xa3\xd0\x64\xac\x80\x51\xa1\x4e\xbb\x0d\x75\x17\x0c\xc3\x49\x01\x61\xc2\x41\xec\x5b\xb4\xaa\xf3\x8d\x93\x25\x24\x70\x8e\xa2\x89\x98\xcc\xa7\x53\x39\x2a\xad\xe0\x64\x95\x44\x30\xf7\x1e\x99\xf3\x7a\x04\x80\xd3\x07\x3f\x03\xbe\xd9\x3d\x09\x27\x31\x9d\x63\x77\x9a\xc6\xb6\x67\x40\x5b\x1e\xdc\x0e\x51\x9a\xcf\x70\xec\x8a\x55\x9a\x7d\x36\x1f\x9b\xbd\x45\xf7\x7b\x82\x16\xc6\x18\x91\x7c\x92\x65\xbe\xcb\x9f\x8d\xd3\x46\x50\xfe\x0c\xd3\xc6\xb4\x53\x3a\x83\x21\x9a\x2c\xf3\x55\x23\xba\x0d\x57\x85\x99\x18\xc6\x0c\x94\x88\x84\x4e\x38\xf0\x35\x6c\x26\x43\x03\xdc\x64\x9a\x4e\xf2\x14\x86\xb7\x98\xcc\x27\x84\x92\x49\x46\xa0\xef\x06\x74\x23\x6d\x81\x38\xf1\x35\x11\x2f\xad\x4f\xc2\xc5\x8a\xdc\x4e\x32\xfc\xa7\x6f\xf6\x5b\x61\x2a\x63\x07\x93\x3b\x88\xf3\xc9\x8c\xa6\x13\x79\xf3\x6b\x57\x64\x23\xa9\x37\x36\x07\xec\x41\x38\x45\x73\x9c\xe5\xa9\xeb\xf2\xc3\x7e\xf8\x6b\x09\xe7\x68\x92\xa4\x68\x86\xbf\x34\xe2\xea\x5f\x56\x12\xd4\x2a\x8e\x27\x19\x0a\x53\xd4\xcc\x01\x7e\x78\x52\x2e\xe6\x10\x13\x94\x66\x93\x42\xc6\xaf\xad\xba\x76\x47\xe8\xec\x9f\x29\x8d\x63\xf4\x44\xf0\x17\x34\xcb\xf7\x06\x59\xd7\xa7\x4f\x41\x16\x82\xf7\x0d\x36\x24\x38\x42\x49\x4c\xef\xf7\x04\x8f\x26\xb3\x18\x7d\x99\xf0\x1c\xbc\x7b\x03\x89\xc8\x3a\xbb\xc3\x79\xb8\xd8\x13\xc4\xf9\x34\xd9\x03\xa4\xd8\x9b\xb9\x78\x2f\x42\x40\x63\xfe\x98\xce\x27\xfc\x26\xfc\x8e\x63\x67\xfc\x2e\x66\x67\x5f\x10\xc5\x94\xef\x0f\x26\xce\x72\x4c\x9f\x45\x83\x67\x39\x8c\xe3\x09\xef\x6f\x57\x3d\xa3\x80\x25\x29\x6d\x30\x86\x9a\x86\xbf\x5c\xc5\xea\x1a\x81\xab\xf1\x8e\x03\x97\xba\x76\x97\x21\x47\x29\x4d\xf8\x64\x3f\x97\x3d\xbf\x93\x41\x48\x23\x94\xd0\x08\xcf\xbe\x09\x6c\xb3\x14\xd3\xf5\x37\x81\xe9\xed\x6a\x8a\x9e\x01\x51\xba\xce\x26\x4b\xb4\xa4\xe9\xfd\x24\xc6\x4b\xbc\xab\xf5\xb2\xca\x98\x59\x85\xd7\x38\x46\xd2\x21\x95\xa6\xc0\xce\x22\xa0\x34\xb3\x12\xd7\xa1\xd4\x4d\x10\x4d\xd1\x94\xd2\x7c\x22\x35\xea\x1d\xce\x17\x13\xba\x6e\xc6\xd2\x0f\x94\x39\x00\x93\x16\x37\x6d\xf7\xea\x70\x26\x34\xcd\x27\x3c\x63\x54\x2b\x27\xb1\x4d\x4a\xb3\x0d\x32\x3d\xf2\xe3\x2d\x8d\xb5\x5a\xfa\x29\xea\x87\x6a\x81\xa2\x9d\x41\xf2\x1c\x65\x93\x04\xa5\x13\x26\xb0\xf6\x09\x9d\x9b\x11\x30\xcc\x27\x22\x4c\xb8\x1f\xb7\x5f\x79\x6c\x09\x4a\x31\x8d\x70\xc8\x7d\xcb\xc9\x3c\xa6\x53\x18\x4f\x30\x99\xd1\x49\x76\x4f\xaa\x31\x2f\x7b\x67\xd6\x85\xe5\x8c\xa4\x95\xd7\xec\x34\x64\xfc\xb1\x34\xde\xc4\x88\xa6\x65\xab\x30\x44\x59\x36\x5b\xc5\x20\xa4\xcb\x24\x46\xea\x6c\x92\x23\x88\xab\x7e\xbe\xd3\x7c\x36\xc4\xb6\x1a\xe4\xc6\xf7\x13\x6b\x11\x72\x2d\x18\xce\xe5\xf3\x25\x4c\x1c\xd1\x6f\x1c\x94\x12\x30\x10\xc2\x5c\x15\x8b\x33\x76\xd5\x3a\xd9\x7d\x96\xa3\x25\xab\x63\x6c\x1f\x59\x21\x05\xca\xca\x06\x37\x47\x0f\x0f\x9d\x31\xbd\x45\xe4\xf1\x51\xdd\x80\x94\x9e\x78\x90\xc4\xab\x39\x26\xd5\x8e\x6e\x48\x81\x6b\x69\x06\x4b\xb8\x27\xe0\x3f\x81\x80\xf1\x50\x92\xe4\xe6\x28\xa6\x73\x91\x2d\xea\xe6\x48\xf6\x78\x56\xb4\xbc\xa0\xf3\x0b\x56\xc4\xba\x7f\xa5\x37\x82\x09\x0e\x03\x66\x15\x67\xac\xd5\xc3\x43\xe7\x34\xc1\xe1\x27\xf6\xf7\xe3\xe3\xab\x1b\xf2\xf0\x10\x00\x3c\x03\x04\x81\xce\x69\x88\x2f\x57\x71\x8e\x13\x1a\x81\x9b\x23\x71\xce\xe0\x08\x3c\x3e\x1a\xd0\x42\x1c\x2c\x65\x25\x05\xaf\x6c\x56\x40\x44\x24\x62\xed\x24\xf0\xce\x15\x97\xf1\x5d\xb4\xc6\x21\x1a\xa2\x90\x12\x82\xc2\xfc\x57\x88\xf3\x31\x5e\x22\xba\xca\x2b\x9d\x08\x95\x10\x44\xbc\x7e\x90\xaa\x06\xc1\x1d\xc4\x79\x90\x8b\x26\xb2\xf3\x26\xc8\x55\x8c\x2a\x74\x49\xd1\x2c\x45\xd9\x82\xc1\x2c\x68\xca\xe8\x33\x14\xdf\x19\x10\x3b\x41\xb3\xd5\xb4\x58\x91\x41\x84\x62\x78\xaf\x51\x77\xa4\x15\x76\x59\x19\xc7\xc2\x84\x30\x29\xba\x0e\x6f\x51\x3a\x81\xd1\xbf\x57\x59\x6e\xc7\x81\x55\x38\xe5\xe5\x76\x5c\x56\x19\x4a\x19\x3f\x1b\xad\xaf\x33\x94\xf6\xa1\x0b\x7d\x66\x20\xc0\x1c\x05\xb7\xe8\x3e\x48\x60\xbe\x10\x4d\x8f\x57\x59\x7a\x1c\xd3\x10\xc6\xc7\x28\x0f\x8f\x39\xbf\xa2\x34\x3f\x66\x1d\x74\x6e\xd1\x7d\x15\x52\x88\x03\x11\xc0\x29\x7a\x1e\xf1\xc5\xd3\x8b\x10\xc9\xf1\x0c\xa3\xb4\xde\x7b\x88\x83\xf5\x72\x19\xb0\xf5\x2d\x5a\xfd\x52\x64\xd2\xe3\x55\x35\x7e\xfc\xbc\x5c\x76\xe9\x12\x62\xc2\xef\x10\xd7\xf9\x90\xc1\x89\x78\x85\xa2\xff\xa2\x89\xec\x98\xcf\x7c\x9c\xa1\x56\x8d\x1d\xc8\xd7\xf9\x59\x22\x57\x2e\x3e\x0f\x82\xe5\xda\xd6\x91\x2c\x9b\xb6\x42\xd4\x02\xa4\x19\xd9\xca\x44\x71\x93\x2d\xc8\x11\x81\xa4\xe4\xb3\x31\xff\x53\x6b\x2b\x47\x77\xc6\x58\xa8\x14\x02\x26\xb8\x78\xaa\x4d\x5f\x9f\x12\xe4\x21\xd3\xa7\x24\xb9\x4a\x72\xbc\xc4\x7f\x8a\xed\x2d\x07\xc8\x45\x92\x04\x54\xab\x27\x17\x53\xa5\xb5\x43\xbc\xb0\x7e\xfa\x94\x2d\xfa\x0f\x34\x1d\x89\x50\xf3\x79\x32\x44\x30\x62\xea\x30\x73\xf5\x49\xa8\x10\x28\x33\x9a\x06\x32\x40\x1d\xa0\x24\x48\x55\x3b\x89\x83\x07\xb2\x07\x1f\x59\xf9\x63\x0a\x93\xc5\x39\x89\x12\x8a\x49\x7e\x1a\x45\x5c\x1a\x80\x9b\xa3\xd7\x55\x64\x14\x02\x73\xd6\x20\x40\xb2\x45\x00\xa3\x48\x49\x17\x70\xa2\x2b\x03\xd1\x4a\x17\x3c\xbe\x1e\x0d\xf9\x63\x74\xc8\x47\xf9\x2f\x86\x38\xb7\x5f\xc1\x0f\x98\x44\xe8\xcb\x2b\xf0\x03\xce\xd1\x12\x9c\xfc\xd3\x05\x56\x7e\xce\xc0\xe3\xa3\x1c\xb5\x68\xf9\xf8\xf8\xea\xe1\x81\x93\xe3\x01\x68\x50\x6f\x5f\x81\x1f\xd6\xe0\xe4\x9f\x12\x2e\x63\xb8\x87\x07\xf0\xc3\x2d\xff\x97\xe0\x45\x56\x41\x7c\xc7\x33\x80\xfe\x60\x85\x37\x47\x42\xac\x69\x40\x15\xb1\x1f\xe5\x87\xdf\xcb\x71\xb9\x27\xe3\x34\x8a\xd4\x43\xe0\x23\x1e\xd8\xcf\xc6\x74\x18\x09\x55\xeb\xe2\x0e\x46\x79\x24\x1b\x05\x62\x3b\x20\x0b\x72\x1a\xa4\xb2\x9d\x12\xf7\x1e\xd0\x1e\xf6\x90\xa7\x02\x07\xd2\xb6\x1c\x11\x98\x7f\xe4\x96\x65\x8f\xcc\xe8\xe8\x9e\x38\xd7\x9e\xb4\x4a\x03\x65\x95\x06\xcc\x2a\x0d\x84\x55\x1a\x30\xab\x34\x60\x56\xa9\x44\xae\xb1\x17\xb7\x76\x34\x55\x70\x84\x62\x94\x23\x8f\xea\xed\xf2\x0a\xba\xce\xd5\x38\x2d\x46\x28\xe1\x6d\xbd\xc8\x8e\x58\x35\x06\xc1\x81\x66\x09\x50\xc6\xa2\x02\x1e\xd8\x92\xad\x7b\xe2\x5b\x8f\x7d\xaa\x56\x67\xdf\x02\x19\xb8\x2a\x24\x1f\xaf\x39\x10\x1f\xdd\xf2\x8f\x1f\x12\xb0\x48\xf6\x84\x46\xd3\x28\x88\xa4\xee\x58\x11\x7c\x9c\x93\x40\x93\xa7\xc7\xef\xbb\x41\xc5\x62\xb4\xca\x6c\x06\x28\x98\x46\x16\x25\xc9\x7c\xa4\xfd\x74\xc1\x20\xa9\x3e\x9c\xea\x41\xc9\x9f\x64\x71\x9f\x31\xbd\xe8\xd1\x33\x41\xc2\xcb\x6b\x18\x17\x32\x94\x84\x30\x11\xed\xd7\x31\xe4\x38\x4b\x69\xf1\x39\x86\xc4\x6a\x11\xa8\xa6\x72\x7f\x30\x50\xfb\x83\xa6\x68\xbb\x14\xa5\x3d\x59\x58\x35\xaa\xd8\xb4\x4c\xd3\x40\xed\x07\x06\x84\x12\xce\x70\x12\xc8\xe0\xfd\x70\x2c\x8b\xfa\x94\x30\x26\xb3\x00\x58\xa7\xb3\xaa\x8a\xfc\x3c\xfc\x60\x68\x49\xb3\x41\xfc\x56\x2e\x08\x5e\xf7\xe2\xed\xd5\xca\x5e\x0f\x7d\xc9\x03\xe9\x0f\x28\xc5\xc2\x2b\x2b\xe1\x21\xb3\x59\xd6\x6c\xf2\x26\x46\x5c\xa7\x33\x1d\x53\xcd\xe2\xf3\x58\x14\x5a\x9b\xab\x35\x4a\x63\x78\x6f\x69\x5a\xe5\x12\x79\x00\xb9\xd4\x4d\xfc\xcc\x10\x1f\x4b\x55\xb7\x48\x5b\x43\xa4\x7c\x6b\x6b\x6a\xd4\x47\x28\x80\x95\x96\x6d\x1b\x6e\xff\x4f\xa5\x92\xc4\x9a\xb9\x64\x36\x82\x6c\xd3\x45\x01\xcb\xa4\x90\xc9\x4c\x4b\xf8\x85\x2f\xbc\x2c\xc8\xd6\xa1\xd0\xea\x72\xda\x2f\xe1\x97\x3e\x2b\x18\xad\x43\xae\x54\x2b\x5c\x58\x38\xa6\xc1\x06\x04\xb7\xbb\xb0\xf5\x9a\x7b\x9f\x9e\x7d\x4c\x91\xc2\xd6\x3d\x43\x0d\xbd\x54\x00\x98\xd3\x52\x9d\x1a\xa0\xe9\x84\x22\x3b\xd9\x37\x42\x29\xa9\xf0\xb6\x26\x94\xd9\xbe\x3d\x9d\xbe\x2d\x7e\x7a\x7e\x2a\xdd\xae\xa6\xe8\x1b\x23\xd2\xd7\x58\x74\x21\xcc\xf3\xf8\x40\xa8\xd6\x84\x4a\x52\xba\x44\xf9\x02\xad\xb2\x03\xb1\x1a\x89\x25\x4f\x2b\x1c\x28\x55\x50\xca\x4d\x32\x65\x6e\xe3\x24\x48\x28\x8d\x1b\x42\x00\x45\x30\xa3\x37\x18\x50\x1a\xfb\x3c\xfe\x9b\x23\x71\xd7\xba\x70\xe9\x19\x88\xce\x88\x7d\xe3\xbe\xfd\x2b\x70\x73\x84\x48\x54\x29\x3f\xe7\xc8\x1f\x81\xc2\xa7\x37\x0c\x22\xe1\x84\x07\x59\x0e\x73\x1c\x36\xa3\xca\xab\x99\x2e\xb9\x07\xe3\x07\xde\xf2\xd1\xdb\x73\x74\x4f\xe0\xb2\x45\xd7\x5d\x51\x6f\x3f\x7d\x73\x4f\x59\xed\x6b\x05\x7c\x5f\xab\x74\xc9\x08\xcc\xcf\x64\xd1\x88\x95\xd4\x3c\x0e\x41\xac\x60\xe3\x79\xe6\xcd\x9e\x7e\xb6\x81\x67\xba\x99\x43\xdc\x16\xdf\x01\x8d\xbe\x0e\x4f\x32\x24\x45\x4c\x28\xe0\x47\x44\x83\x0c\xff\x89\x94\x9f\x49\x23\x31\xf5\x67\xac\x64\x84\xff\x44\x55\x0b\x9f\xf9\xe3\xb6\xa9\x31\x97\xa9\x55\x8a\x69\x88\x76\xfa\xfc\x6a\x96\x9c\x2b\x89\xef\x2b\x5b\x23\x63\xfc\x66\x33\x4e\x86\x72\xc7\xaa\x10\x19\xe5\x9f\xbf\xbb\x71\x97\x51\x31\x0b\xee\x82\x4d\xb5\xc8\xa1\xa0\x88\xd9\x51\x65\xb1\x89\x63\xed\xca\xd9\xe1\xef\x60\x4b\x8a\x8a\x7b\xbc\x2a\xf8\x38\x62\x25\x4a\xd8\xf1\xff\x2d\x68\x96\x07\xfc\x7c\x96\x7f\xfb\x0c\x26\x89\x19\x06\x6a\xe7\xed\x99\xaa\xe1\x3c\x19\xca\xd3\xb1\x96\xa0\x3f\x0f\x1f\x8b\xd2\x82\xde\x65\x03\xaf\x63\x5e\x69\x4a\x56\x71\xec\x8e\x67\x3e\xd5\x46\x1d\x0f\x4d\x2e\xc2\x64\x88\x08\xba\xbb\x84\x5f\x86\x28\x4f\xef\xcf\xe8\x8a\xe4\x22\x66\x5d\xe9\x23\x5a\x84\x0c\x6b\x82\xee\x02\xe6\xef\xa6\xac\x76\x10\xb2\xea\x2a\x00\x69\x85\xd5\xd0\xb9\x16\x23\xb7\xf5\xa7\xc7\xbc\x8b\xea\x1e\x90\x22\x4c\x79\x49\x23\x64\x99\x30\x19\xe6\x5c\xd2\xa8\x14\xaf\x65\x03\xef\x84\x55\x9a\xd6\x27\xac\xac\x5a\xdf\xb7\xfd\x44\xb3\xfc\x94\x71\xac\x7b\xdb\x36\xc4\x22\x5c\x5a\x26\xcf\xd7\xe5\x7f\x71\x13\xea\xb0\xc3\xf6\x62\x76\xd8\x5a\x6d\x85\xbe\xc8\xd8\xde\xc6\xa1\x4f\xa5\x02\xd6\x31\x24\x66\x90\x56\xc4\x78\x8d\xca\xcc\x3d\x86\x09\xd6\x2b\x33\x96\x3c\x1d\xf4\x8a\xca\xcf\xb5\x63\x58\xb6\x2f\x55\x38\x6b\xd9\x68\x67\xec\x66\xcd\x09\xb5\x59\xf4\xe6\xed\x8c\xeb\xe7\xdd\xec\x56\x12\xc2\x44\x5b\xff\x5c\x85\x86\x30\x19\xdf\x5b\x4c\x45\x36\xf5\x98\xcc\x52\xa8\x4f\x4f\x8f\x7d\xa8\x4e\x4e\xe7\x72\x7c\x5d\x59\xa2\x97\xe3\x6b\xf0\xda\xa4\x6b\x71\x6f\x28\x58\xe6\x2b\x15\xf2\x64\x0d\xeb\xeb\xbc\x72\x48\xe4\x72\x7c\xfd\x09\xc1\x68\x48\xe9\xb2\xde\x8d\x2a\xb1\xed\x9d\x1a\x5d\x06\x0b\x04\xa3\x94\x8a\x1d\x0c\xd1\x77\x09\xd5\x89\x43\x09\x2c\x24\x38\x20\x28\x2f\x37\xf9\x9a\x38\x43\x46\xee\xfd\x26\xe8\x1c\xe6\xe8\x0e\xde\x57\x8c\xcc\x8f\xe2\x6b\x61\x86\x96\x1c\xa2\x5b\xaa\x8a\x17\x44\x9d\x94\xae\x72\xb5\x6b\xcb\x54\xa2\x3a\x34\xf2\xba\xc3\xff\x3b\x7e\x2d\xaa\xcd\xef\x3c\x7d\x81\xc7\xdf\xed\x9c\xf3\x3d\xc6\xf8\xab\xad\x7d\x51\xfd\x43\x70\xfe\x10\x9c\x7f\x39\x61\xe7\x43\x70\xfe\x10\x9c\x3f\x04\xe7\x0f\xc1\xf9\x97\x4f\xac\x43\x70\xbe\x4d\x70\x5e\x05\xc1\x82\x28\xa5\x09\xa3\x99\x8a\x72\x88\xec\x40\x22\x0c\xf6\x68\x6b\xd1\x3e\x6c\x66\xeb\xae\xb8\x3f\x76\xa3\x4e\x3c\x46\x68\x40\xa3\xde\xcc\xd3\x63\x40\xd7\x59\xb0\xb8\x0b\xe8\x6c\x16\x53\xa8\x22\x4c\xa3\x14\xd3\xb5\x6a\xa5\x45\xe8\x64\xac\xa4\x45\x8c\x4e\x8d\xba\xca\x48\x66\xf8\x44\x84\x68\x6a\x01\x14\x97\xd9\x26\xba\x97\x70\x25\x27\xa1\x3f\x54\x68\xe8\x8c\x67\x65\x18\x8d\x2e\xec\xae\x26\x77\x77\x33\x71\x14\x09\xdc\x1c\x95\xa1\x22\x79\x14\x2f\xba\x39\xb2\x07\x9f\x58\x0f\xc3\x15\xf9\x38\x4d\xce\x14\x67\x38\xb8\x56\x06\xec\xb3\x1c\x87\x99\x38\xe8\x59\x74\x04\x58\x4f\x74\x36\x63\x46\x7b\x43\x88\x8b\x93\x43\xe4\xca\xe6\xb1\x36\x1e\x18\x1b\xe3\x25\xef\xf6\x4d\x35\x9a\xc6\x7a\xcd\x59\x61\xd9\xa3\x5c\x85\x22\x8c\xa7\x87\xd9\x9a\xe0\x3f\x3e\x56\x91\x33\x56\x09\xcd\x19\x6b\xc9\x4e\x64\xc2\x40\x39\xb2\x22\x76\xf9\xca\x6c\x03\xb3\x7b\x12\xfe\x3b\x93\x6e\x7d\xa5\x99\x89\x91\xfc\xa7\x6a\x20\xb8\x2f\x62\x28\x39\xd9\x61\x5d\x97\xd9\x9b\x75\xb9\xce\x1a\xfa\x2b\x78\xbf\x35\x2f\xcc\xa7\x09\x0f\xac\xd7\xef\x80\x3c\xd4\x02\x4d\xcd\x47\xb9\xcd\x06\xad\x82\x42\xdf\x42\x48\xd0\x17\x31\x33\x03\x3a\x1c\xf6\xc7\x69\x52\x84\x6e\xb4\x73\x5b\x35\xd4\x5a\x34\xad\x5d\xa1\xb0\xbb\x7a\xfe\xbb\x36\x96\xca\xfa\xdd\x8d\xda\xcd\x0d\x7b\x93\x3d\xdc\xdd\x10\xd0\x6e\xe1\xec\x16\x3a\x75\xf2\x34\xa5\xb7\x5c\x3a\x88\x80\x1d\xab\xfb\x5e\x7c\xaa\x21\x26\x1a\x88\xec\x36\x55\xb4\x18\x12\xd9\x31\xef\x2a\x10\x35\xac\xd8\x18\x20\x58\x9b\x06\x18\x61\x9a\xbb\x60\x40\x47\xfb\x10\x7a\x5a\xe5\x54\xcd\xa9\x95\x25\x9b\xcc\x9c\x98\xae\x22\x7e\xa2\xd9\x49\xce\x50\x24\xc7\x0c\xb4\xc9\xae\xf7\x63\xdf\xbe\x2b\x38\x93\xb5\xe1\x7f\x88\xe5\x66\x65\x12\xd1\x46\xae\x78\x11\xc3\xd5\x6b\x3b\xf7\xf9\x6a\xf1\x30\xf3\xc3\xd6\x37\xf0\xf8\x1e\x86\xf2\xe5\x5f\xea\x05\xbc\xfa\x2e\xe9\x88\x40\x9e\x00\x70\x08\xc9\x1c\x55\x76\x49\xcd\x6d\x58\xa3\xa6\xdc\x86\x55\xf5\xf8\x95\xd7\x20\x61\xd3\xae\xef\x30\xa9\x26\xd9\x00\xa5\x7d\xb9\xcf\xe4\x25\xf1\x88\xa7\xb5\x71\xde\x70\x64\x6b\x9c\x33\xfd\x73\x10\xb6\xe8\x5f\x49\x16\x43\x70\xfd\x82\xee\x05\xff\xf0\xd2\x30\xcd\x8d\xd2\x33\x4e\x46\x31\x52\x4d\x33\xd6\xc5\xfa\xc6\x64\xd0\x85\x03\x27\x05\x9e\xe1\x10\xe6\x28\x7b\x56\x92\x08\x11\x53\x0a\x4c\x61\x5a\xca\x51\x03\x50\x95\x60\xed\x2a\x2a\x12\x6b\x15\x25\x95\x0b\x3a\xca\x45\xea\xa2\x1a\xdf\x98\x39\x0d\xc5\xce\x6c\xbb\x6b\xb2\x6a\x33\xec\x19\xa8\xe7\xe5\xfb\x4d\x51\x2f\xcf\x02\x3c\x1b\xea\x1a\x23\x5f\x67\x48\x26\x41\x1e\xd2\x18\x39\x39\x3a\x9d\xc2\xb0\x03\x57\xf9\x82\xa6\x72\x9f\xca\x92\xe4\xb3\x84\x53\x19\xf7\x53\x4b\xc5\x16\x4c\xc1\x1f\x17\x3e\xb9\x21\x01\x80\x09\xfe\x98\xd2\x55\xa2\x92\x70\xaa\xd7\x5e\xcd\x84\x9a\x81\xc8\xec\x7b\x53\xe4\xe9\xe4\x93\x22\xff\x4e\x68\x24\xff\x55\x78\xb1\xe2\xcf\xe2\x8a\x9a\x28\x5c\xa3\xa2\x24\x45\x49\xcc\x96\x37\xa6\xa4\x44\xcb\x6c\x05\x05\xcf\xf0\x8f\x6b\x94\x4e\x15\x22\xb1\x4c\x49\x1a\x80\x3b\x98\x87\x0b\xf1\xcf\x39\x92\xdf\x92\xf2\x5b\x98\x22\x98\x23\xf1\x6f\x91\x6c\x51\xfc\x5b\xdc\x85\xda\x64\xec\x62\x52\x96\x30\xd9\x10\x99\x6d\x30\xb0\xa5\x8e\x75\x60\xc5\xb3\xc8\xaa\xaf\x51\x91\x45\xb6\x86\xe4\x8f\x7f\xfb\xd1\xde\x97\x93\x8d\x1d\x1d\x0a\x8e\x4e\x69\xac\xa6\x54\xfb\x32\xc5\x24\xc2\x64\x6e\xef\x5c\xf3\x00\xf4\x7b\x5e\xa6\xbf\x6e\xc3\x50\xde\x14\xeb\xf0\xa8\xb1\x13\x31\x5e\x2a\xf9\x28\x89\x21\x51\xe8\xf1\xef\xc5\xeb\xf9\xad\xc9\x02\x43\xdc\x29\xc2\xd4\xf5\xde\x60\x88\xeb\x80\xeb\x9f\x9d\x84\x50\x06\x99\xa5\x67\xb9\xb2\x31\x99\x7b\x27\x42\x56\xd3\x1f\xce\x6a\xc7\x94\xda\x3c\x5c\x67\xe8\x34\xc4\xa7\xe4\xfe\x6e\x81\x52\x74\x36\xec\x36\x4f\x06\xa3\x0b\xbc\xb3\xa3\x84\x92\x79\x56\x2c\x16\x7e\xb0\x71\x03\xb4\x36\xed\x8c\xc7\xba\x64\x77\xf3\x69\x92\xf1\xdc\xe9\xb5\xbf\x8f\x45\xbe\x8b\x6d\xe6\x01\x26\x49\x66\xef\x5a\xe4\xa2\x5b\xd6\x24\x59\x86\xd4\x87\x08\xa2\x25\x25\xe5\xdf\x1c\x99\xd9\x2a\x56\x5f\x5a\xb1\x60\xa3\x0c\x56\xa2\xd5\x31\x48\x25\x6d\x6c\xb0\xe5\x1d\x3d\xc6\x64\x21\x4d\x11\xcd\x3a\x21\x5d\xda\x3b\x94\xbd\xc8\x16\xb5\x5e\x6a\x82\xce\x35\x91\xe2\x16\x9f\xb5\x07\x02\x73\xc5\xc7\xc7\x33\x4c\x60\x8c\xff\x2c\x35\x81\x5e\x58\x0e\x54\x10\x82\x39\x6b\xce\x71\x57\xa5\xaf\x5f\x4e\x7b\xe5\x71\x23\xfa\xe2\x3a\x6c\x81\x8e\x89\xb6\x05\xdf\x00\xa8\x2b\xc8\xcf\xa1\x4e\xe4\x63\xe8\x56\xec\x2b\x0f\x9b\xef\x0f\x13\x4d\x13\xbb\x90\x52\xef\x66\xba\x04\x5c\xf5\x95\xdc\xf6\xc8\xf9\x78\x5f\x7b\xcb\xd0\x2e\xc6\x6a\x2f\x12\xee\xaf\x5f\x97\x34\x2b\xa2\xf7\x6d\xc5\x03\x93\x4e\x1d\x9a\x20\x92\x2d\xf0\x2c\x67\x5a\xc2\x2b\xa8\x36\xe6\xb5\x7a\x8f\x11\xce\x42\xba\x46\xe9\xbd\x52\x4b\x36\xd2\xe9\x3b\x18\x6e\x51\x51\xeb\xd6\xc3\x20\x09\x8d\xb7\x52\x80\xee\xce\x76\x59\x46\x11\xc9\x7c\x38\x89\xe2\x27\x44\xcb\xe3\x2b\x7e\x93\xfe\x88\xee\xe9\x7d\x0d\x7f\xc4\xed\x83\x6c\x6c\x4c\x19\x1b\x7c\xd5\x5d\x28\xbf\x64\x70\xc8\xa1\xc2\x57\xd2\x71\xd1\x59\x44\x8a\xd7\x46\x43\x66\xef\xde\xc4\xd7\xb0\x2e\x75\x83\x4f\xfc\xdb\x61\xf7\xdc\x1c\xfd\xad\xb2\x69\xfb\x35\xcc\xec\xfd\x9a\x94\xbb\xd9\xd0\xed\x4c\xaf\x1b\xb7\x35\xb3\x85\xb1\xf2\x4d\x19\x22\xea\x19\x2c\xfb\x3a\xac\x3d\x1e\x18\xd4\x5f\xd6\x7a\xaa\x09\xaa\x58\x8d\xac\x22\xdf\x1f\xb2\x5a\xbe\x2e\x4a\x6c\x6b\xf9\xfe\x65\x54\xfe\xfe\xcc\x31\x29\x5c\x6a\xe1\xce\x0d\xb5\xef\x7b\x11\x29\xd9\x3c\x8e\xbb\x8b\x9e\x4e\x69\x8c\x86\x68\xc6\x1b\x2b\x7a\x78\x30\x67\xd5\x2c\x66\x43\x0b\x34\xb3\x95\x78\xaf\x8d\x2b\x73\x7b\x10\x78\x4f\x41\xeb\x67\x9c\x07\x33\x28\xfd\x62\xe7\x41\x47\x73\xfb\x79\xd8\x34\x02\x6f\x79\xfd\x2a\xc9\x34\x92\x77\x79\x40\x64\xe4\xd9\xfe\xaa\x74\xde\xae\xdb\xa7\xb7\x5b\x8b\x27\x91\x84\x3c\x1d\xe5\x29\xcc\xd1\x5c\x65\x4d\x16\x09\x4e\x87\x34\x8e\x31\x99\x5f\x17\x12\xb7\xf2\x64\xfa\x92\x09\xa1\x0b\xf3\x19\x3b\xef\xc0\xdb\x19\xd4\x39\x5a\x26\x71\xf9\x9a\x77\xed\xad\xa7\xda\xc3\x79\x8d\x7d\xb6\xe9\x95\xd3\x99\x10\x9a\x73\x16\xd5\xc1\x97\x87\x29\xd9\x72\xcb\xc2\x14\x32\xe2\xa8\xed\x13\x57\xbd\x84\xa6\x39\xab\xf5\xf3\xbb\x37\x3f\xa9\x5a\xc6\x3b\x54\x0c\x41\x79\x3d\x43\x7f\xef\x4b\x14\x0c\x7a\xdd\xfa\xc7\xde\xe0\xcc\xfc\x98\x19\x4c\xdf\x6f\x62\x78\x3d\x52\xbd\x84\x73\x34\x58\xc5\xb1\xd8\xb5\xac\x1c\xa7\xc1\x66\xa9\x4e\x0c\xf5\x92\xd9\xc3\x43\x15\x86\xf5\xd2\x4a\x4e\x63\x94\xd6\x28\x1a\x14\x4f\x53\x9d\x80\xf3\x2f\x38\xcb\x8b\x19\x60\x86\xf9\x99\x2d\x29\xb8\xea\xb7\x78\x32\xe3\x46\x3b\x2b\xc0\xf1\x55\xb7\x48\xcf\x08\xee\xf2\x1a\x05\x1c\xf3\x60\x41\x31\x38\x71\x5a\xcc\x1c\x8a\xf8\x66\x36\xc8\x50\xb8\x4a\x71\xce\xe1\xa1\x2f\xf9\x49\x75\x53\x6d\x50\xe4\x33\x6f\x3a\x4a\xc7\x78\x44\xd5\x55\x33\xe9\x38\x83\x19\xc2\x04\x4e\x71\x8c\xed\x6f\x87\x45\xf6\xa7\xb1\x47\xbf\x8d\x26\xa7\xdd\xcb\x5e\x5f\x2f\x5c\xd3\x78\xb5\x44\x97\x7c\xbf\xa9\xd2\x4a\x23\x6a\x30\xad\x3f\xc3\xbe\x64\x6d\x06\x30\x5f\x9c\x80\xe3\x25\xc9\x8f\x8b\x6a\xa6\x33\x24\x4e\x8a\xf0\x73\x99\x29\xa6\x9c\x52\x31\xb4\x67\xb6\x4c\xf4\x0a\x82\x5f\x85\xc8\x13\x79\xe0\xc2\x14\xe7\x38\x84\x71\x79\x14\x8a\xdf\xbd\x12\x0e\x57\xc9\x16\x9f\xd8\x02\xd1\x21\x3d\x16\x27\x56\x3d\x1d\x59\xe5\x43\x79\xe4\xaa\x84\xf0\xa0\x27\xee\xac\x0e\xa9\x3a\xad\xee\x11\xa9\x33\x35\x95\x41\xd5\x4e\x61\xca\xd1\x11\xbc\x45\x57\x30\xc4\x6c\x52\x54\x89\xff\x02\x99\x35\xd9\x7e\xd0\x46\x7a\x56\x56\x18\xa3\xff\x6e\x8b\x4b\x0e\x9f\xa6\xe0\xbf\xf8\x85\x71\x73\x6e\x2f\xf9\x7b\x03\x17\x78\x89\x73\xf0\xdf\x9e\x1a\x43\xf4\xc7\x0a\x65\x39\xf8\x6f\x13\x87\xfa\x73\x89\xe2\xc7\xdf\x2f\xc8\xca\xe5\xeb\xef\xb8\x7e\xa8\x5a\x3c\x83\x20\xef\xad\x35\x36\xf6\x9e\xcf\xf6\x80\x72\x80\xa9\x4b\x88\x54\x8c\xbe\xc5\x80\x14\x9d\xb6\x1c\x92\xd6\x7c\xb7\x41\x59\x00\x39\xef\x3a\x7e\xf3\x62\x57\x15\xf6\xcf\xc7\xee\x42\xd6\x72\x30\x1e\x9e\x9e\x9d\xbb\x9a\x0e\x4f\x7f\xd5\x8b\x10\x59\x3b\x64\xf8\x2f\xd7\xef\xcf\x87\xfd\xf3\xf1\xf9\x68\xd2\xbf\xea\x9e\x4f\xfa\xa7\x97\x35\xa0\x6b\x18\xaf\xd0\x87\x94\x2e\x2d\xc3\x98\x61\x14\x47\xca\x7a\xb7\x16\x0a\x4d\xc0\x6c\x98\x0e\x93\xd6\x4c\x02\xd9\x51\x19\x9f\xf7\x4f\xfb\x63\x6b\xe7\xb5\xe3\xc0\xad\x0f\x21\x7b\x4f\x64\xd9\xb0\xe0\x54\x38\x1f\x7c\x74\xe2\x51\x11\x79\x22\xe8\xea\xe1\xf0\x6d\x01\xb7\xba\xd5\x61\xf6\x5e\x67\x4c\xd5\xf9\xd5\xe0\xc3\xc5\xf9\xff\x4e\x2e\xaf\xba\xf6\xd9\x3d\x01\x54\x9c\xa1\x7e\x41\xe3\xd0\x2f\x4b\xf3\xf7\x95\x64\xea\xdf\xc6\x29\xbc\xbc\xbe\x18\x5f\x8f\x1c\xf8\xd5\xd6\xb1\xc6\x21\xb2\x03\x99\x1b\x5b\x5d\x82\x6e\xea\xae\xdb\x1b\x9d\xbe\xbf\x38\x9f\xfc\x7a\xda\x1b\x4f\x3e\x5c\x0d\x27\xfd\xf3\xf1\xaf\x57\xc3\x5f\x9a\x11\xf0\x50\xb9\x7b\x3d\x3c\x1d\xf7\xae\xfa\x6d\xa1\xf2\xf5\xd1\x95\x0f\x27\x9a\x03\xf0\xa8\x83\x27\x30\xf2\x5c\x30\x98\xf7\xd9\x06\x48\xbd\x9e\x82\xc2\x8c\x8b\x35\xac\x3d\x9a\xa2\x03\x29\xcf\x8b\xd7\x2a\xea\x50\xd2\x95\x77\x3c\xb5\xe2\x0d\xda\x96\x18\x38\xa1\xc8\x8b\x43\x0c\x98\x72\xc9\xf9\x34\xb4\x03\x8b\xf2\xf0\xd8\xb8\x7a\x44\xd7\xd9\xf1\x14\x66\x88\x53\xae\x13\xb9\x31\x0f\xb6\xec\xcd\x5c\xaa\xc7\xf6\x0e\xd6\x30\x8d\xe9\x5c\x6d\x33\xb9\x00\xaf\x21\x03\x3c\x3f\xb6\xd5\x4b\x11\x8c\xae\x48\x7c\x6f\xfa\xaa\xb6\x5e\xea\x1e\xb8\xaf\x2f\x77\xed\xb6\x3d\xe2\x69\x44\xc3\xdb\xfa\x73\x3d\xb5\xde\xf0\xf4\xd8\x5e\xb3\xda\x93\x26\x73\xcc\xbc\x47\x42\xd2\xd4\x4c\x2e\x85\x4d\xb4\x10\xe7\x67\x5b\x61\x52\xd4\x75\x3a\x10\x9f\x44\x2c\x81\x64\x9f\x39\x4b\x78\x24\x5d\x65\x79\x1c\x13\xd6\xaa\x8a\x85\xc6\x6a\xe9\x8a\x04\xd6\x3a\x3e\x9a\xab\x71\xa4\x34\x81\x73\x28\xde\x05\x62\x28\x8e\x69\xa1\xdb\xf7\xa3\x20\xc4\x73\x7d\x41\x5b\xb1\x54\xab\x6e\x95\xa5\x31\x5e\x23\x82\xb2\x6c\x90\xd2\x69\xf5\xbd\xa6\x19\xc4\xf1\x2a\x45\xe3\x45\x8a\xb2\x05\x8d\xa3\x13\xf0\xe6\xb5\x59\x63\x91\xe7\xc9\x47\xcb\x2b\xaf\x89\x40\xa3\xdc\xda\x33\x0a\x79\xb0\xe8\x1f\xaf\x7f\x7e\x5d\x2d\xe1\x2f\xbb\xa3\x13\xf0\x69\x3c\x1e\x98\x65\x7c\x0f\x13\xc6\xfc\xa2\xdb\x08\x85\x94\x44\xd9\x09\x78\xf3\x53\x05\x82\x48\xc5\x5f\x94\xbf\xab\x14\xcb\x97\x98\xf4\xf1\x98\x15\x64\x56\xfd\x02\xc0\xdb\xd7\x75\xdf\x51\x97\x62\xed\x8c\xd5\xe1\xf9\xfb\xab\xab\xf1\xe4\xd7\xde\xf8\xd3\xe4\xea\xb3\x4b\xc3\x97\x21\xb6\x8d\x2f\x2d\x96\x5d\x8d\x46\x17\x3e\x6b\xa9\xb8\x27\x69\xe7\x05\xc3\xef\x95\x37\x32\xf7\xe7\xf9\x6a\xb7\xf6\x6a\x3e\x6f\xad\x6c\x57\x6f\xd7\xd1\x59\x93\x1f\xe7\x6e\xf6\x35\x3c\x5c\x27\x55\x36\x1e\xc6\x33\x7a\xb5\xc0\xf2\xfb\x36\x3d\x5d\xab\x33\xdb\xc2\xf6\x3c\x58\x7c\xdb\x5b\x7c\xb2\xc5\xbe\xfa\x53\x5d\x99\x22\x55\x2c\x8f\x11\xbf\xe2\xeb\x67\xb2\x0a\x5a\xe2\x56\xf0\x76\x22\x33\xa4\xcb\x25\x24\xd1\x09\xf8\xd7\xcd\xd1\xf1\x14\x93\xe3\x6c\x71\x73\xf4\xbb\x5e\x03\xa6\xf3\x4c\x14\x97\xa3\x62\x15\x63\xb8\x22\xe1\x22\x10\x38\x08\x14\x3a\xb5\xc6\x7b\x08\xf4\xeb\x34\xde\xdf\x82\xe1\x17\xef\x6a\x2b\xa5\x30\x6f\x07\x54\x5e\xbe\xd2\x27\x85\x7d\x74\x5a\x41\x28\x4f\x71\x58\x33\x2a\x2a\x00\x7f\x7e\xf7\xf6\x27\xbd\x4a\x8e\xd2\x25\x26\xdc\x3a\xbb\x44\x59\xc6\xe8\x22\x18\x28\x42\xeb\x63\xad\x90\xe7\x7a\xf0\xb7\x93\xf4\xfd\x80\x63\xb4\xa1\x60\x30\xb8\x68\x47\x1e\xaf\xb3\xe2\x2e\x02\xc8\x97\xcc\x40\xe6\xeb\x54\x91\x16\xeb\xfa\x58\x86\x30\xcb\x03\x71\x60\xde\xb9\x3c\x2e\x59\xa5\xa7\x5a\x1d\x1c\x03\x81\xc0\xd6\x8b\xc3\x30\x57\x38\xb6\x62\xc7\xbb\x66\xae\xd4\xca\x76\x35\x57\x1c\x9d\x35\x29\x68\x77\xb3\xaf\x61\xae\x38\xa9\xb2\xf1\x30\x9e\x35\x08\xbf\xad\xf9\xe1\x17\xa0\x2d\x4d\x93\xbf\xa8\x39\x51\x1b\x6b\x8a\xf8\xa5\x6e\xb5\xfe\x4e\xe3\x3b\x78\x5f\xc8\x70\x41\x04\xc7\x06\x78\x35\x3e\xc7\x0f\x0c\xb0\x4e\x2b\xf4\x16\x78\xd0\x24\xb7\x43\xa9\x7a\xcc\x7e\x30\x28\x0f\xeb\x60\x2c\x13\xe1\x87\x62\x54\xf6\x10\xd3\x0f\xc5\xa8\xdc\x2e\x32\x16\xaa\x3c\x00\x15\x88\x0d\x2f\xf1\x96\x3f\x9c\xa3\x65\x5d\xef\x07\x80\x5f\x80\xae\x25\xf9\xae\xdb\x02\x02\xf5\xb2\x62\xc7\x24\xff\x26\x16\x26\x5a\x26\xf9\x7d\x17\x57\x5f\x10\x5f\xa2\x08\xaf\x96\x27\x40\xac\xf3\x3a\x68\x7b\x64\xaf\x71\xbe\x2c\x71\xbe\x36\x51\xbc\x76\x70\x6d\x6d\x9b\x22\x76\x2d\x20\x6b\xf1\xbb\x36\x11\x3a\x7b\x9d\xeb\xe9\x8a\xe4\x2b\x7b\x2c\xcf\x17\xc7\x6b\x89\xdf\x22\x4c\xec\x82\x7c\x2f\xb0\xed\x11\xc3\x8a\xb0\x6d\xeb\x62\x3c\xed\xe2\xb1\xe4\xdf\x72\x2d\x1f\x2e\x4f\x3b\x65\xec\xae\x54\x52\xba\xad\xec\x09\x82\xb6\xb2\x3b\x77\x0a\xb3\x06\x8d\xd1\xd3\x46\xd9\xa6\x82\xb2\x6d\x22\xa4\x7e\xf6\xf4\xc4\x47\x9b\x39\x89\x61\x22\x00\x1c\xfb\xb3\xad\xec\x72\x26\x92\x26\x88\xac\xb3\x3b\x2c\x8f\x6f\x7f\x77\x47\x23\x2b\xe3\x6f\x83\xdf\xbe\x4e\x48\x5a\xba\x6e\x77\x50\xf2\x3b\x38\xc6\xb8\xd5\x21\x46\xf0\xd5\x4f\xc6\x5d\x95\x53\xba\xf3\x01\x39\x83\x3d\x0e\xe7\xe4\x36\x58\x43\xb5\x18\x18\x22\xeb\x11\xaf\xb3\xaf\x23\xa9\x8d\x5e\x34\x30\x7e\xba\x53\xd8\xb9\xfa\x3c\xd2\x5c\xda\xfa\xf3\x3a\x9a\x1b\xdb\x06\x8a\xf4\x27\xab\x70\xbe\xf1\x98\xb6\x2a\x1c\xfd\x36\x9a\x5c\x5e\x75\xaf\x2f\xac\x07\xb4\x58\x69\xbf\x67\x3f\xbc\xd5\x1b\x9c\x4d\x2e\xae\xce\x8c\x63\x1e\xee\x0d\xb1\xab\xcf\xa3\xc9\xf0\xba\xdf\xed\x0d\xab\xb0\xe4\x3e\x95\xe9\xd0\x72\xdd\xec\xe0\xbd\xbf\xa8\xff\xec\x82\x62\xf8\xa5\x3e\x28\xb5\x8a\x3a\x94\x25\x8d\x56\x32\xf3\x8b\x0b\x12\x33\xac\xad\xd5\x0e\x27\x27\xb6\x39\x39\x51\x96\xf8\xf6\xdb\xd1\x17\xcd\xd4\x50\x3f\x15\x19\xb5\x2d\xbb\x6a\x28\x54\xc2\x0e\xe8\x3a\xeb\x64\x8b\x1d\x63\x2f\x16\x7e\xfb\x0b\x04\x4d\x2c\x4c\xed\x87\x64\x5d\x09\xdf\x77\x94\xa1\xd1\x27\x2a\xee\x41\xbf\xbc\x14\x77\xa0\xa5\xd9\xdf\x7c\x3d\x52\xf9\x05\xea\x92\xb7\x3c\x4d\x92\x59\x3d\x28\x54\xde\xea\xdd\xd6\x79\x32\xe9\xd4\x6e\x1c\x4d\xbe\x53\xdb\x8e\x5a\x4c\x0a\x68\xed\x8a\xd5\xe1\xef\xd3\x13\x6b\xe1\x5f\xe9\x08\x3c\xeb\x35\x31\xb5\x53\x32\x2e\x7d\x2c\xe0\xf2\xbc\x1e\x1e\x40\x4e\x7f\x83\xcb\xd8\xac\xfe\x1f\x80\x49\x84\x48\x0e\xde\x15\xb0\x99\x7f\xe4\xf7\xdf\x02\x80\x66\x33\x14\xe6\x27\xa0\x4f\xcf\xbf\xa0\x70\x95\x6b\x3a\xc9\x75\x3b\x4d\x07\x65\x39\x52\xa5\xc3\x1c\x85\x0b\xc4\x24\x64\xd9\x94\xc7\xba\x98\x33\xd7\xb9\x2d\x9e\xbc\xeb\x60\x7a\x4c\x68\x1e\x30\xe5\x78\xdf\xdc\x7f\xcb\x0e\x82\x94\xc6\xd5\x5e\x96\x90\x39\x59\xbe\x2e\xe4\xa4\x80\x4a\xb8\xe9\x6b\xb8\xb1\xe5\xf3\x78\x3b\x7b\xb1\x55\xc6\x7e\x22\x27\xd6\x36\xba\x6f\xc3\x83\xb5\x89\x9e\xea\x8d\xca\xa2\xca\x53\xdd\xfa\x2a\x7b\xf0\xdf\xfd\xaa\xd6\xdb\xeb\x0d\x30\x3b\x12\x1b\x6d\xb1\x3a\x41\x7c\xf5\xdb\x60\x2e\xca\xed\x34\xbc\xaf\x74\x33\xcc\xed\x46\xff\x7a\x3a\x3e\xfb\xc4\xaf\x3e\x8d\x06\x96\x4b\x55\xc5\xb9\xd2\x6a\xcc\x43\xb5\x3f\x3d\xeb\x4d\x46\xfd\xd3\x71\x0b\x10\xce\x47\x55\x3c\x70\x3f\x5e\x5c\xbd\x3f\xbd\xe8\xf5\x3f\x5c\xb9\xaf\x67\x9d\xc8\xf7\xb5\xcb\x5c\x35\x3e\xa0\xc3\xee\xd9\x55\xff\x43\xef\xa3\x1f\x5e\x4a\x57\x39\x26\x73\xf1\xb8\x81\xda\x62\x71\x40\x1d\xfd\x36\x1a\x9f\x5f\xee\x87\x00\x6d\x6e\xa5\x14\x2c\x75\xb8\xd5\xf0\x02\x7d\x73\x53\x6d\x14\xa9\xdc\xb7\x9b\x24\x94\xe6\xc7\x6d\x1d\xff\xa7\x3e\x68\xff\xa6\x5a\xf2\x72\x0f\xda\x97\xf1\x88\x56\x77\x20\x03\x33\xe9\x3c\x4a\x73\x83\x0a\x19\xb7\xc2\x2b\x54\x13\x1f\xfb\x4d\xc9\xea\x3d\x5b\xc8\x4d\xec\xd1\xd8\x6d\xed\xa9\x00\x13\x7e\x1b\x39\xf1\xb4\xdb\xd4\x35\x0c\xea\xe1\x27\xc1\x7a\x65\xc5\xfa\x4e\x75\xdb\xdb\x0b\x45\xaf\xb5\x97\x77\x5c\xbd\x96\x15\x3b\xce\xbb\x2d\xdf\x77\x8c\xc6\xbb\x7a\xea\x01\x1c\x9e\x46\x4b\x0b\xe1\x0c\x68\xd4\xfb\x60\x8d\xde\x60\x82\xf2\x80\x3f\x7d\x5b\x09\xd7\xe8\xaf\x3b\x12\x21\x90\x78\x33\x94\xcc\x6b\xfc\xc8\x81\xd0\x15\x67\x7d\x9c\xc0\x28\x4a\x4f\x40\xf9\x6c\x6e\xcb\xd7\x4e\xb8\xa1\xc8\xdf\xfa\xb0\x22\x2a\xec\xb0\x80\x9b\xc1\x41\x2a\xaa\xb5\x09\x65\x14\x61\x06\x6d\x7f\x29\x00\xf2\x95\xd9\x82\xf8\xca\xca\x6b\x32\x62\x79\x75\xd9\x58\x1a\x7e\x6d\x61\x54\xad\x56\x11\x4a\xd2\x2e\x95\x1d\xbd\xfa\x3f\x00\x00\xf1\x9c\xd3\xbb\xce\xeb\xce\xdb\xce\x4f\x47\x27\xe0\xa8\x1a\x9b\xab\x27\x8e\xd4\xd3\x68\xf1\x6c\x91\x43\xe9\x43\x74\x8b\x6c\x91\xae\xc8\x5d\x49\xb0\x22\x6b\x7a\x87\x71\x4f\x98\xa7\xb1\x46\xbb\xb9\x48\x87\x55\x96\x48\xca\xcb\xb1\x8b\xbe\xab\xbb\xb9\x45\xb6\x75\xc0\x93\xbf\xfd\xe2\xae\x74\x81\x55\xc6\x8e\x24\x5e\xa5\x30\x76\xa1\x26\x03\x47\x98\xcc\x57\x31\x4c\x1d\xb5\x78\x50\x2e\xa4\x8c\xb8\xc5\x5b\xfe\xfc\x7a\x82\x0c\x22\x16\xf9\xe4\xc4\xf2\x7c\x03\xe3\x64\x01\xa5\x42\xe3\x42\x28\xd2\x4d\x89\x2c\xa7\x29\x77\x27\xb5\x4f\xab\x69\xdd\x49\x93\x2b\x04\x3c\xc8\xd9\xe5\x2a\xb9\x8c\xcc\xd1\x04\x91\xd3\x41\xef\xf3\xdb\x91\xf9\x9d\x31\x53\x16\xa6\x38\xc9\xd5\xc2\xad\x0f\x08\xd0\x3b\x92\x81\x7c\x81\x40\x8c\x67\x28\xbc\x0f\x63\x04\xe8\x8c\x99\xd0\x80\x8a\x5c\x62\x00\x13\x5e\x2e\xb7\xa3\x4b\xe0\x49\xca\x80\xd4\xb6\x14\x35\x86\xaa\x28\x72\xce\x93\x59\x9e\xf2\xfc\x6b\xe5\x77\x3e\xc1\xed\xaa\xd6\x82\x92\x7a\x75\x81\xaf\xa1\x5b\x93\xda\x26\x89\x41\x11\x2b\xbf\x8c\x12\x14\x02\x9e\x0a\x15\x09\xc2\x44\x28\xc3\x29\x8a\x38\x34\x30\xa3\x29\x27\xce\x95\x20\x4e\x45\xbe\xda\x29\xc2\x7e\xb3\x18\xae\x69\xf5\x60\xa2\x6f\xa8\xa0\xd0\xdb\x1b\x35\x72\x92\xa2\x14\xb2\x1b\x11\x83\x37\x33\xc8\x21\x0d\xb6\xd9\x2a\x06\x21\x5d\x26\x31\xe2\xef\xfd\x33\x9e\x71\x2f\xd1\x16\x04\xb2\x22\x58\x8e\x68\x4a\x69\x8c\x20\x69\x33\x58\xe6\xf1\xb3\x09\x33\x42\x3c\x6c\xf2\xca\xbf\xcd\x86\x1e\xbd\x51\x2c\xf2\x36\xbb\x13\xcf\xb7\xeb\x60\xd9\x55\xd9\x9f\xe4\x2e\x73\x61\x76\x64\xca\x4c\xab\xac\x66\xdf\x6d\x92\x5a\xbd\x43\xfa\xa1\x2a\x9d\x8b\x82\xba\x44\x36\xd3\x6f\xea\x52\xb8\x7c\xe5\x74\x43\xc9\xbb\x89\xcc\x6d\x2b\x4e\xbf\x49\x89\xe7\xaa\xea\x5d\x8d\x62\x32\x9c\xab\x11\xa6\x29\xbc\xaf\x17\xda\xdd\x04\x3f\x12\x8d\xa8\x88\x5f\xc1\xfd\xbd\xae\xa3\x86\x5f\x94\x8a\x1f\xb3\x2f\xb7\x6f\x8d\x67\x9c\xb9\x76\x00\x20\xcc\xd7\xed\x01\x2c\x61\xb8\x23\x84\x84\x46\x3b\x0e\x82\x41\x70\xcd\x52\x9b\xf6\xeb\x1c\x55\xfd\xd0\xa6\xe6\xdb\x49\xf4\xcd\x36\x18\x74\x69\x9a\x89\x2d\xa4\x32\x55\xf8\xf1\xfa\xcd\x14\xe5\xb0\x74\x79\x74\x30\x4e\xf3\xd7\xd8\x96\x90\xe1\xc1\x37\xaf\xd5\xef\x86\x88\x48\x66\x57\x7a\x0b\x40\xec\x19\x11\x43\x29\xdf\x1c\x8d\x17\x38\x2b\xf6\x3d\x40\xc8\xf1\xc6\x19\x58\x65\x28\x52\xc6\x48\x70\xd6\xef\x95\xa1\x7d\xe3\x85\x33\xb5\x6f\xf5\x54\xba\xa2\x92\x3c\xbc\x53\xe4\xb6\xb6\xaa\x0c\x51\x62\x53\x1a\x23\x02\xf3\x8f\x1c\x4e\x8f\xcc\x68\x55\x73\x98\xa5\x75\xf5\x61\x49\x61\xae\xeb\x90\x4a\xd4\xf8\x05\x28\x12\x63\x8e\xcd\xd1\xb1\xc9\x65\x66\x96\x68\xc3\xa7\x98\x5b\x5d\xe6\x10\xc1\xe9\xa0\xf7\x8d\xeb\x25\x8f\xc8\x9f\x17\xd4\xb0\x09\x1a\x18\x45\x9c\x21\x61\x3c\xf0\x6b\x0d\xb7\x3a\xfa\xff\xd9\xfb\xdf\xe6\xb6\x71\x64\x5f\x1c\x7f\xfe\x7b\x15\x28\x67\xab\x32\xb3\x3f\x4b\x4e\xe6\x4f\x76\xc6\x5b\xe7\x81\x63\x3b\x19\xd5\x3a\xb6\xae\xa5\x64\xce\xd6\x7a\xaf\x17\x22\x21\x09\xc7\x14\xc0\x25\x29\xd9\xda\xec\xdc\x9a\x97\x71\x4f\xd5\x3d\x6f\x6e\x5e\xc9\xb7\xd0\x00\x48\x90\x04\x48\x4a\x96\x9d\x38\x03\x6d\xd5\x8e\x43\xfc\x6f\x34\x1a\x8d\x46\xf7\x07\x1d\x36\x1c\x10\xb6\x47\x61\x98\x90\xd4\x9d\xa5\x8b\xbc\x93\xb6\x55\xb0\x3d\x34\x55\xd4\xd4\xd9\xce\x5d\x96\x3f\x62\x75\x01\x2b\xff\x16\xf8\x8e\x2e\x96\x8b\x43\xf4\xea\xfb\xef\xbf\xfd\xbe\x35\x37\x65\x32\x77\xcd\x3a\x5c\xfd\x49\x7a\x50\x96\x91\x59\xdd\x9c\x5e\xfe\x81\xa7\xd9\xe7\xdf\xd1\x36\xd5\xc5\xcc\xe5\xd0\x8b\xe4\x4f\x2c\xe1\x81\x7b\xeb\xeb\xc6\x4b\xb2\x92\xf7\xb4\x69\x86\xbb\xd6\x23\x2f\xa0\xcf\x9b\xd4\x81\x2e\x95\x59\x76\x67\xf3\xd7\x33\x16\x92\x2b\x47\xb1\x42\x5c\x39\xe4\xb8\x9b\x53\xdf\xd3\xb0\x29\x43\x31\x5c\x7b\xae\xb6\x89\x6e\x9c\x62\x77\x61\x07\x79\x7a\xa6\x94\xdb\xd5\x19\xbe\xbc\x95\x58\x0e\xef\x7c\x22\x37\x32\xf9\x40\x9d\x38\xb5\xdb\x76\xde\xe6\x8e\xb4\x1c\x9e\x77\xad\x5e\x14\xaf\x5f\xdc\x4b\xbb\x38\x13\xd5\xb8\x94\x8b\x3c\xd1\xae\x5b\x94\x1f\xe0\xa8\xaa\x16\x79\xea\xe7\xa0\x59\x3c\x49\x55\xa0\xc6\xc3\xf9\x7c\xb8\x8d\x71\x26\xff\x56\xe6\xb6\x85\x16\x30\xfd\xba\x84\x6d\x2f\x75\x6f\xc5\xad\x5b\x70\xcc\xc3\x46\x79\xda\xe9\x78\x95\x33\xcf\xfd\xaa\x69\xda\x24\xda\x2b\xc8\x25\x66\x93\xbe\xd1\xa6\xb4\x74\x54\x59\x42\x92\x36\xef\x8c\x5d\xda\x92\xbf\x2e\x7b\x9f\x99\xb3\x71\xc7\x46\xfa\x8e\xb4\x4b\x4d\xed\x6d\xb6\x2a\x00\xdd\x2b\x6b\xd9\x73\x11\x92\xf7\x50\xa9\x73\xcf\x44\xf9\x2d\x62\x53\x7a\xd3\xae\x8b\x3a\xea\x46\x2d\x74\x6e\x1c\x49\x4f\x2f\x87\xc6\x44\x65\xa0\x75\xe4\x70\x68\x05\xbd\x12\x87\xbb\xf7\x7b\xd7\xe0\x9c\xc3\x72\xee\xf7\x85\xcc\xf9\x0c\x77\x59\xfd\xc4\xd2\xbd\xf6\x58\xa9\x61\xd9\x36\x58\x99\x62\xdf\x5d\xe3\xd2\x1c\x94\xf7\xd6\x38\xaf\x51\x6d\xac\xc7\xc5\x2d\xd4\x0e\x76\xd5\x9d\x5e\xb6\xd9\xe7\xf1\x49\x6e\xc8\x5b\xd9\x8c\x2b\xc1\x0a\xdd\xea\x6b\xa9\x13\xd9\x22\x05\xba\xd7\x8c\xaa\xca\xc5\xf3\x11\x74\x52\xdd\x58\x0d\x79\x98\x3e\x77\xec\x9f\x6d\x3b\x57\x67\x2b\x04\xea\x20\xd4\x59\xcb\x8e\xdf\x5c\xbe\x89\x06\xce\x3d\xe7\x5e\x86\x7c\x7b\x4f\x9c\xdb\xf8\xce\xdb\xda\xe8\x84\xb4\x05\x33\x77\x9a\xdc\x72\xf7\x1e\xfc\x4a\xee\x7e\x47\xa0\x73\x1e\x12\xdb\xe9\x47\x7f\xb7\xdf\xc9\x59\xcf\x3c\x3a\xc1\x1f\x77\x3a\xb1\xe4\x46\x96\x4f\x75\xc1\x63\xb7\x39\x36\xad\xbd\x62\xb3\x34\xe7\xde\xfc\x75\x16\x58\x0d\x17\xee\x4d\x03\xbd\x8f\xdd\xe2\x5c\xb1\x54\x27\x8b\xc5\xb9\xc1\x7f\x6d\x8d\x3f\xa2\x16\x95\x3f\x99\xba\xf5\x1a\xbd\x0c\x8f\x0d\x4f\xc6\x62\x8d\xea\xef\xf5\x35\x5a\x7a\xa6\xd5\x5c\xa3\x3a\xc1\xaf\xd1\x4e\x0c\xba\xd1\x1a\xd5\x8f\xa4\x92\x30\x5d\x4e\x18\xb1\x00\x42\x6c\xbb\x81\x36\xee\x94\xcb\x94\x24\x8f\xd8\xe0\xef\x7b\x31\x57\x1e\x9e\xed\x1b\x0f\xd5\x5a\x17\xb5\x4e\xb3\x6e\xbd\xb2\x2e\xfb\xe1\xa8\x94\x68\xd9\x84\xeb\x0f\xe0\x96\xb6\x62\x23\x79\xbd\xe5\x5a\xdf\xea\xce\x52\xbf\x1c\x23\xfb\xad\xd2\x26\x62\x96\x13\x3c\x9d\xd2\x00\x4d\x23\x7e\x8b\x70\x86\x06\x43\xa4\x36\x34\xc4\x13\xb0\xf3\xa3\x88\xac\x48\xf4\xe5\x8a\x07\x1c\xc7\x11\x25\xe1\x98\x5b\x56\x63\xcb\xa9\x22\x3f\x06\x8c\xdc\x47\xa9\x0e\xd5\x20\x1d\x2a\x7e\x7a\x17\x0b\xca\x57\xf0\x99\xaa\xbf\x1d\xde\x3c\xde\x90\xf5\x0e\x2d\x74\x79\x28\xee\xee\xaa\x04\x2f\x8c\x76\x2b\x62\x37\x5b\xe3\x26\x0d\x77\xb6\x37\x76\xb0\xec\xa9\x18\x88\xe6\x0c\xdc\xea\x80\x69\xeb\xd2\x0e\xae\x36\x6d\xc0\x04\xf5\xdf\x46\x47\x66\xd4\x99\xbc\xed\xa3\x68\xf5\x3e\xe3\x61\xcb\x8a\x2b\x3b\x52\x47\x42\xb8\x51\x36\x03\xb1\x36\x4d\xf8\x42\xba\x68\xe0\x05\x29\x96\xb0\x5f\xb9\x7e\xe5\x5a\x7e\x7e\xe5\x6e\x34\x8a\x2e\x36\x78\x7b\x2a\x99\x39\x4e\xd1\xe5\xcb\x46\x92\x09\x2d\x54\x66\x46\xc9\x32\x22\x29\x22\x82\xd5\x70\x46\x42\x34\xc1\x29\x09\x11\x97\xf1\x0f\x3c\x09\x49\x82\x28\x43\xb7\x73\x1a\xcc\xc5\xa7\x35\xc2\x09\x41\x29\xc9\xfa\x9b\xe8\xe3\xed\x96\x45\xb0\x4f\x3a\xc9\x5b\x71\xda\x07\x5b\xa6\xd0\x50\xe8\x94\x2a\x2d\x5b\x56\x80\x32\x8e\x26\x44\xab\x23\x7a\x14\x62\x88\x96\xee\x9a\xf4\x6c\x74\xa0\x65\x78\x12\x91\x33\x3e\x9b\x51\xe6\x76\xa5\x2d\x75\xf1\xd4\x2c\x92\xbb\x2e\x66\x1c\x51\x16\x42\xfc\x24\xa2\x53\x04\x08\x96\x28\x9d\xf3\x65\x14\xa2\x19\x61\x62\x05\x10\x14\xf1\x59\xaa\x03\xa2\x44\x09\xf0\x90\x6c\xe9\xbd\xd3\x6e\x81\x1c\x0f\x4c\x38\xba\xad\x38\x03\x34\x56\xcc\x42\x31\x6d\x19\x0f\x78\x24\xa5\x3f\x09\x0f\x42\xc2\x04\x5d\x27\xeb\x82\xae\x68\x30\x45\xd9\x9c\xa6\xf2\x59\x50\x18\x2b\x4b\x45\x3d\x89\x84\xa6\xde\x97\xa9\x22\xaf\x5c\x78\x24\x15\xd5\xc9\x6e\x39\xc7\xd5\x26\xd2\x6c\x8a\xb9\xd4\xcb\x87\xa2\xf3\x86\x6e\x3e\x27\x96\xf1\x64\x5c\xf6\x45\xb0\x36\x6e\xe6\x8f\xce\xfb\x09\x61\x21\xbc\xad\xd1\x2c\x59\x2b\x6c\x12\xaa\xee\x16\xc7\x45\xc2\x42\x31\x07\x79\xbf\x21\x32\x6f\x1f\x4d\x88\xe0\x24\x9d\x81\xb2\x20\x5a\x86\x24\x44\xb7\x34\x9b\xab\x58\x25\xc8\xd8\x47\x83\x0c\x05\x98\x21\xce\xa2\xb5\x58\x0a\x7a\x95\x84\xe8\x76\x4e\xc4\x60\xd9\x72\x41\x12\x1a\x60\x39\x03\x62\xbe\xf2\x2c\x0d\x34\x10\xbf\x29\x4f\x16\x38\x03\xff\xb1\xf2\xe3\x21\xf5\x5f\x67\x47\xb3\xb8\x9d\x62\x98\xad\x2f\xec\x0f\xd1\x16\xbf\xde\x26\x3e\x78\xbd\x0d\x36\xc2\xd2\x74\x8d\xf5\x9c\x28\xb9\x32\xa3\x2b\xc2\x72\xa6\xea\x23\x70\x5b\x16\xc4\x9f\x10\x44\x68\x36\x27\x49\x89\xde\x3c\x01\x4d\x29\xcc\xeb\xc0\x68\xc8\x43\xcb\x02\x62\x3c\x13\xb5\xae\x68\x48\x42\xb5\x7c\xaa\x2b\x47\xea\x5c\xc0\xd4\x6c\xb9\x98\x90\xc4\xbd\x94\xe4\xef\xae\x57\x40\x00\xf5\x28\xcb\x7a\x3c\xe9\x49\x02\xd8\xdf\xec\x33\x7f\x7a\x84\xad\xac\xad\x9c\xba\xc7\xc7\xc3\x4d\xa9\xaa\x17\xe6\x57\xe3\xe3\xe1\x3e\x7a\x7f\x32\xdc\x17\xe4\x1a\x1d\x8f\x87\x5f\xeb\xbd\x47\x1d\xb2\x17\xcb\x34\x93\xe4\x00\xca\x09\x5a\xe5\x0c\xbc\x6f\x12\x52\x75\x27\x15\x8b\x7d\x7c\x3c\x6c\xa1\xcf\xae\x36\xef\x0e\x0a\x48\x66\x3b\x25\x5b\x08\x73\x29\x44\x66\x3e\xf7\xa1\xd8\x32\x34\x11\x68\x0a\xac\xce\x42\xe5\x10\x2f\xc4\x5f\xc4\x71\x98\xaa\x0b\x49\x2d\xa3\x35\x31\x2c\x4c\x06\xc2\x59\x10\x79\x41\xd3\x94\xb2\x99\x4b\x4e\x87\x24\xcd\xd4\x0b\x3f\xdb\x8b\xeb\x8e\x22\x94\xc6\xaf\x23\x1e\xdc\x6c\x22\x42\x07\x43\x28\x52\x91\xf8\x83\xa1\x72\xbe\x24\xe9\x81\xca\x21\x12\x70\x56\xa2\xa7\x50\x17\x0e\xc4\x51\xa6\x9f\x57\x13\x60\x26\x38\x6a\x02\x2a\x0e\xc2\x29\x8a\x71\x92\x69\x79\x7c\xa4\xad\x1c\x9a\xa8\xc7\xa5\xdc\x42\x16\x0b\x69\x85\x38\x2c\x7d\x7d\x35\xdc\xc2\x78\x9d\x4f\x2b\x08\x05\xb4\x21\x0c\xc6\x41\x9f\xe3\xc1\xc9\xa5\x18\x34\x56\xbc\x8d\x12\x22\x4e\x59\x84\x65\x7a\x3f\x19\x0c\x91\x1c\xfb\x07\x1c\xd1\x10\x91\x3b\xbc\x88\x85\x4a\x28\xf4\xbc\xab\xbd\x97\x3f\x7e\xd3\x7f\xf9\xea\x87\xfe\xcb\xfe\xcb\x83\x6f\xbe\xbb\xda\x13\x1c\x73\xb5\xf7\xcd\x8b\x17\x2f\x0f\xc3\xc9\x8f\x87\x87\x07\xaf\xbe\xab\x82\xc7\xd8\x7e\x9b\x1c\x3d\xc8\x5d\x40\xe2\x76\x27\xe9\xea\x5e\x0a\xa5\xd4\x50\x23\x1a\x80\xa5\x55\x8c\x5e\x4d\xbc\xd2\xb3\xd4\x7c\x55\x37\x50\xcc\x76\x41\x07\xdd\x09\x79\x6e\x43\xb7\x34\x8a\x44\x63\x09\xf9\x2f\xb9\x26\xe9\xb4\x50\xa1\xf9\x32\x4b\x69\x48\x60\x0a\x60\x92\xf2\x10\xfc\xe6\x5f\xd7\xc3\xde\x66\x34\xef\x7c\xe0\xeb\x78\xe4\x83\x37\xcc\x68\xd8\xb2\x13\x77\x3b\xd1\x75\xb7\x11\xea\x5f\x45\xa9\x15\x65\x40\x96\x0d\x79\xa8\x6c\x17\xb9\xb1\xb8\x10\x07\x5a\x60\xea\x75\xbb\x2f\x96\x7f\x21\x58\x29\x43\x63\x7e\xf0\x46\x14\x86\xd5\x9f\x82\x4c\xcd\xd7\xfd\xb0\x30\xa7\xec\xcb\x76\xc4\x24\xeb\xba\x1b\xdb\x24\x45\x8a\xae\xa2\xa3\x68\x51\x4b\xc5\x6c\x5c\xf0\xe5\xe9\x5d\x46\x12\x86\xa3\x53\x96\xd1\x6c\x3d\xda\xb9\x1c\xda\xc0\x5a\xa3\x7f\xdd\xb9\x76\x83\x7e\xc8\x5f\x17\x2b\x8e\xfe\x6d\xb6\x24\xd0\x26\x56\x1d\xfd\x2b\xf1\x5e\x8e\x38\x90\x4b\x5d\x21\x9e\x6e\xc8\x3a\x45\x09\x89\xe4\xa6\x3a\xa7\xb1\x50\x51\x30\x4c\x34\x9f\x2a\xe1\xd1\x57\x62\x28\x87\x6a\x00\x7e\x1a\xb0\x7d\x74\xce\x33\xf1\x1f\xf5\xca\x80\xd0\x00\x4f\x38\x49\xcf\x79\x06\x5f\x5a\x66\xf9\x3e\xa4\xe8\x68\x8d\xb2\x12\x42\x49\x44\x21\x9d\x99\x14\x32\x62\xa8\x6a\x4b\xd2\x23\x1e\xc8\x6d\x36\x27\x1a\x4d\xd1\x80\x09\x86\x56\x43\x16\x89\xaa\x22\x59\x05\xe8\x82\x13\x82\x18\x67\x3d\xd0\x67\xac\x75\x28\x4a\xf1\xa4\x44\xa8\x86\xea\x54\x55\xa0\xce\xcb\x14\xa1\x18\x91\x38\xc2\x01\x09\x51\xb8\x84\x4e\x63\x8d\x64\x2b\x74\x52\x92\xcc\x08\x8a\x41\x29\xed\x4a\x9e\xee\x2b\x42\xfe\x36\x9f\xaf\x0d\x64\xba\xfc\x75\x94\xec\xf2\xd7\x6a\xd4\x2b\x32\x76\x31\xee\x95\xbb\xdc\xbe\x25\x98\xb9\x3b\x0d\xb0\x9b\xd1\x4f\xff\x36\x36\xfe\x95\x7b\xb4\xd9\xa6\xdb\x65\xb4\x5d\x73\xb6\x9b\xf5\xf5\xcf\xb6\x49\x1a\x1b\xa4\x69\x53\x49\x8b\x1d\xaa\xb6\x29\xe6\x4a\xf1\x41\xd3\xf6\x58\xdb\xe1\x1e\x7f\x93\xac\x97\xf7\x1b\xa2\xdf\x10\xef\x43\x0a\xbf\x21\xfa\x0d\xb1\xf8\xf9\x0d\xb1\xa1\x47\x9f\x6a\x43\xdc\x91\xc1\xee\xcd\x3f\x4f\xdc\x97\x53\x9d\x04\x34\x50\xfb\xdc\xe1\xa6\x5a\xfc\xba\x2c\x82\xae\x14\xed\xc0\x0b\xad\x0c\xde\x33\x3a\xde\x4c\x3f\x37\x8d\x5b\xa2\x9d\x4a\xd7\x6b\xf6\x2c\x72\x02\x6c\x69\x5b\xc6\x2b\x21\xed\xc9\xd0\xf1\xae\x54\xfb\x3d\xf8\xcb\xd2\xcf\xf0\xb2\x14\x2e\xb6\xe4\xcc\x18\xea\x64\x1f\x8d\x64\xe6\x09\xd9\xe9\x75\xaa\xd0\x52\xef\x6d\xbf\xe7\x09\x9d\x51\x86\x33\xa2\xb4\xed\x6d\xed\xf7\x2e\xa3\xbd\x8a\xef\xf2\xf6\x7a\x6f\xaf\xf7\xf6\x7a\x6f\xaf\xff\xdc\xed\xf5\xfe\xa8\x6d\xfd\xf9\xa3\x76\xfe\xf3\x47\x6d\x7f\xd4\x2e\x7e\xfe\xa8\xdd\xd0\x23\x6f\x7b\xf6\xb6\xe7\xe6\x5f\x89\xfa\xd5\xf2\x52\x23\x8b\x68\x0a\x1b\x02\xe0\x10\x14\xc3\x51\xab\x74\x21\x36\x93\x3e\x78\x6e\x99\x5f\x80\xa2\x47\xe7\x27\xad\x9e\x84\xc8\xef\xca\x7e\x57\xf6\xbb\x72\xe5\xe7\x77\xe5\x86\x2e\xfb\x5d\x79\xbb\x9c\x3b\x31\x80\xfb\x10\x02\x1f\x42\xe0\x43\x08\x2c\x99\x7d\x08\x81\x0f\x21\xc8\x7f\x8f\x16\x42\xb0\xf5\xa5\x97\xc4\x4c\x18\xaf\x63\xab\x1c\x72\x0b\xcc\x12\xb1\x15\xfc\x81\xa8\x45\xab\x6b\x65\x59\x59\x92\xa5\xd0\x1d\xc9\xd6\xf0\x17\x4d\xd1\x84\x64\xb8\x07\x80\x08\x42\x76\xbe\xec\xff\xe0\x1e\xe3\x16\x90\x21\xfa\xd9\x80\xb6\x9b\x3d\xfd\x9c\x01\x4c\x7d\x7e\x33\x26\xef\xf0\x94\xf0\x2c\x0f\x44\xaa\xe7\x2b\x22\x98\x41\x9e\xf2\xcc\x74\x6a\xbd\x6d\x69\x14\x29\x90\xd8\xd2\x4b\xa0\x59\x2e\xcb\x45\x3f\x9c\xad\xd8\x68\xe5\xc4\x65\x14\x45\xca\xdf\xec\x4c\xb5\xf1\x2b\x14\xa8\x0b\x94\x8e\x81\xa7\x82\x03\x71\x40\x26\xe1\x79\x0d\x42\xa4\x78\x98\x57\x03\x83\xe8\x2f\x01\x67\x52\x17\x4b\x0f\xd1\xdf\xfe\x2e\xbe\x88\xfa\x49\xf8\x41\x63\x7e\xc0\xd7\x07\xc5\x4a\x09\x59\x6a\x83\x4b\x91\x9f\x9d\x88\x29\x46\xb2\x0d\x34\xe5\x84\xa5\x8d\xb8\x29\xd5\xf4\x3a\x74\x4a\xbd\x5b\x8a\xfe\x39\x7a\x4a\x25\xc7\xc6\x00\x2a\x62\xf1\xaa\x3a\xb7\x02\x51\x09\x59\xaa\x11\x5c\x90\x39\x4a\xe4\x51\x51\xcc\x9f\x47\x45\x29\xfd\x3c\xb6\x82\xeb\xe7\xb1\x15\x36\x1a\x85\x47\x45\xf9\x5c\x57\xee\xe7\x6e\x25\xdd\xb9\x64\xf1\xd6\x50\xeb\xcf\x0b\xdc\xcd\x3a\xfe\xa4\x05\xee\x67\x0c\x66\xd3\x22\x2f\x33\xfe\xe6\x9f\xa1\xcb\x07\xb3\xab\x6c\x6f\xf3\x07\x6e\x5f\x0b\x9b\x4c\x53\x03\x1b\x75\x78\xce\xa8\xd9\x0b\xb8\x79\x9a\x1b\xaa\xef\x29\x4a\x6e\xc2\x1b\xfe\xa8\xba\xc9\x51\xf5\x9f\x3c\x2d\x9d\x51\xff\xc9\x53\xfb\xe9\xf4\x9f\x12\xf6\xba\x7e\x2e\xfd\x5f\x3c\xb5\x1f\x48\xf3\x84\xfa\x49\xd4\x68\xb5\x7a\x04\xd5\x49\xee\xb3\x27\xec\xf9\xc9\x8a\xbc\x67\x37\x8c\xdf\xb2\x37\x70\xa9\x9f\x3f\x16\xe9\x5f\x41\x70\x66\xdd\xe1\x53\xb8\x0d\x6a\xf0\xe6\xaf\x0b\x34\x8b\x87\x16\x71\xd9\xbe\xc3\xb5\x6f\x43\x66\x97\xab\x39\xdc\xa1\x00\xf7\xea\xb6\x64\x7f\x36\xbb\x16\x5a\x50\x63\xc7\x1b\xaf\x1c\xf2\xd7\xfd\x5e\x34\x36\x32\x59\x26\xa9\xeb\x1a\xe4\x5e\xad\x38\xb7\x61\x4f\x1c\x84\xc2\x34\x88\x17\x38\xb1\x79\xc0\xb7\xd4\x9b\xdf\x74\x58\x7a\xde\x34\xaa\xe2\x69\xc8\x6f\x1f\x1e\x0e\x7a\x1a\xf1\xdb\x2a\x1c\xb4\xf8\xe6\xc4\x83\x96\x89\x0e\x40\x68\x91\xe8\x04\x84\x2e\x12\xad\x80\xd0\x66\x4f\xaa\xfb\x89\x99\xec\x78\x36\x67\xcb\x0d\x05\x47\xf1\x1c\x6f\xb2\xab\x18\x1b\xc3\xb3\xea\x7e\xa1\x1f\xb9\x4d\x8b\x47\x6e\x57\xe2\xa8\x8a\xc1\xb3\x3f\x80\xa9\x51\xcb\xa9\xb8\x4a\xf8\x1d\xed\x39\x62\x0e\x47\x78\x11\x47\x94\xcd\x24\x27\xec\x5a\xe8\x34\x3e\xb9\xd6\xa6\x49\x8b\xc2\x0d\x97\xf3\xf7\x16\x56\xdd\x5e\x7d\xcd\xc5\xc6\x37\x2f\xbe\xb7\x66\x11\x54\x1c\xdb\x2f\x96\xba\x8c\x12\x21\xc2\x96\xee\xf8\xa6\x1e\x32\x16\xb9\x3d\x03\x8d\xa7\xf4\xae\xa5\xf3\x0d\x95\xe0\x20\xa3\x2b\xf2\x46\x8c\x82\x2e\xc8\xc5\xf2\x31\xe8\xfd\xed\xab\x17\x8e\x2c\x79\x8f\x5f\x59\x33\xd0\x30\x7a\xe4\xae\xb6\xf7\xf4\xa5\x95\x2d\x52\xb5\xb0\x2e\x1f\x70\xbb\x35\xba\xf9\xf2\x45\x6b\x3f\x2d\xe9\x8d\xc7\x44\xd7\xc3\x7e\x65\x89\xf0\xa0\x3b\x22\x49\xd2\x18\xb3\xd2\x86\x28\x3f\xd9\xf7\x43\x9d\x66\xdb\x0e\x4f\x21\xcd\xbe\x1b\x9a\x69\xf5\xcd\xb0\xdc\x89\xea\x5e\x68\xa4\x7e\x3e\x5b\xe1\xef\x6b\x1f\xdb\xfa\x49\xb8\xcd\x8f\x55\x0f\xfb\x88\xdc\xd3\x79\x0e\x4e\xae\xde\x5d\xab\x0b\x38\x5c\x50\x36\xca\xdc\x12\xb3\x1c\x68\x2d\x72\x53\xb0\x79\xd3\x15\x91\x8f\xbd\x38\x8c\xdd\xb9\x0c\x84\xd7\xe0\x1f\x68\xa3\x6e\xa8\x5b\x26\x73\xeb\x1b\xa7\x21\x4d\x48\x53\x78\x79\x69\xcc\x27\x3a\x73\xee\xa2\x82\x83\x1b\x22\xfd\xa5\x16\x9c\x51\x77\xa0\x43\x4e\x82\x09\xcf\xe6\x0f\x44\x01\xea\x88\xe0\x06\x13\xfd\xb2\x81\x36\xb6\x3e\x19\x30\xa8\x0f\xa2\x96\x0e\x3b\xd1\xbb\xe8\x04\x1a\x0c\x35\xd1\x4f\x2f\x47\xc3\xa3\x73\x45\x7b\x07\xbd\xdb\x88\x29\xd4\xb1\xc1\x49\x97\x3e\xbc\x67\xf4\x9f\x4b\x22\xdf\xba\x19\x9c\x6c\xd2\x87\x42\x45\xb9\xbf\x02\xe2\xa8\xc2\x50\x40\xbe\xf9\x76\x1b\x05\xc3\xe2\x75\xf8\x98\x0a\x06\x20\x21\x84\x09\x8f\x23\xae\xde\x54\x53\xff\x70\xf8\x13\xe9\x44\xab\x8a\x01\x95\x9d\x24\x3c\x3e\xe3\xb5\xe7\xd5\x4a\x89\x16\x25\xa3\xd4\x91\x9a\x92\x61\xa6\xda\xb5\x8c\x26\x2d\x62\xdb\x07\xd7\x7e\xcf\x27\xea\x8a\x18\x68\x78\x1b\xde\x32\xed\xcd\x03\x6c\x18\x24\x92\x2f\xbf\x41\x85\x72\xf1\xaa\x7a\xdb\x8c\xc2\x27\xb2\x90\xee\xa2\x44\xdf\x50\x0c\xa3\xd9\x07\x4d\xd6\x08\x07\x41\x0f\xdc\x94\x05\x21\x2d\x62\x23\x17\x19\xb9\x7a\x5a\xfe\x35\xe2\x75\x30\x1e\x36\xb9\x4f\x6d\xa0\x8c\x89\x51\xa3\xa8\x00\x28\xd1\x23\xe0\x0c\x1a\x31\x51\x3b\xf4\x85\xa3\xd4\xbd\xbe\x24\x95\xed\x41\x25\x5f\x9c\x2c\xd9\xae\x04\xdf\x50\xd4\xe5\x90\x7b\x66\x5a\x5d\xec\x95\x7a\x51\x95\x7a\x66\xa2\x17\x7a\x9f\x97\xd0\xab\x4f\x79\xf3\xf8\x5a\xd6\xca\x03\x49\x8e\x29\x8d\x32\xa2\x3c\x92\x34\xea\x52\xc6\x7f\x47\x22\xa4\x42\x28\x39\x5f\x6f\x24\x55\x76\xad\x55\xa7\x49\xe0\x54\xaa\xbb\xd8\x7a\xb7\x2e\x9c\x26\xc1\xbb\xa3\xe3\x7b\xb4\xbc\x7d\xe9\x34\x09\xee\x63\xa2\xbe\xaf\x89\x9b\xc6\xc3\x84\x3b\x5f\xb7\xa8\x14\x7f\xd0\xed\x04\x07\x41\xae\x56\x50\x16\x2f\x33\xb9\xa7\x04\x59\xe2\xf0\xcc\x97\x29\xb6\xdd\xe4\x28\x08\x86\xba\xaa\x81\xa8\xaa\xba\xa5\xd4\x32\xd4\xf7\x95\x7a\x77\xaa\x9b\x4b\x2d\xc7\xd5\x86\x7e\xf9\x9b\x6f\x32\x3b\xf5\x80\x28\x7b\xc5\x56\x07\x53\x8a\x4e\x94\x5f\xe4\x53\xcd\xcb\x44\x1e\x66\xc5\x2e\x76\x74\x3c\x40\xc7\xe7\x83\x4f\xba\x09\xdd\x3f\x1c\xa0\x02\xbe\x57\x61\x8d\x51\x4c\x82\x12\x31\xf2\x9d\x4c\x24\x08\x2a\xd4\x69\xb7\xe1\xde\x85\x83\xe0\x3a\xaf\xe1\x1a\xaa\xd8\xb5\x68\xd5\xfe\x8d\xd7\x0b\xcc\xf0\x8c\x84\xd7\x72\x32\x1f\x6e\xcb\xd1\xb0\x82\xd7\xcb\x38\xc4\x59\xa3\xcb\x5c\xe3\x89\x00\x01\x7d\xe8\x23\xf4\x37\x5d\xb3\xe0\x3a\xe2\x33\xea\x86\x69\xec\xea\x03\xda\xd1\x71\x3b\x20\x49\x36\xa5\x91\xcb\x56\x59\x6e\xb3\xdd\x6d\xf6\x86\xac\x77\x54\x5b\x10\x51\xc2\xb2\xeb\x34\x6d\x0a\xfe\x6c\x9d\x36\x46\xb2\x47\x98\x36\xb1\x3b\x25\x53\x1c\x90\xeb\x45\xb6\x6c\xed\x6e\x4b\xa8\xb0\x10\xc3\x54\x54\x25\x2d\xa1\xd7\x50\xf9\x0a\xb7\x93\xa1\xa5\xde\x78\x92\x5c\x67\x09\x0e\x6e\x28\x9b\x5d\x33\xce\xae\x53\x86\x9b\x22\xa0\x5b\x69\x8b\xa4\xc7\xd7\xb5\x7c\x69\xfd\x3a\x98\x2f\xd9\xcd\x75\x4a\xff\xd5\x34\xfb\x9d\x7a\xaa\x6c\x07\xd7\xb7\x98\x66\xd7\x53\x9e\x5c\xab\xc8\xaf\xfb\x76\x36\x54\xfb\xc6\xe6\x15\x37\x74\x38\x21\x33\x9a\x66\x89\x2b\xf8\x61\x37\xfc\xb5\xc0\x33\x72\x1d\x27\x64\x4a\xef\x5a\xfb\xda\xbc\xac\x54\x55\xcb\x28\xba\x4e\x49\x90\x90\x76\x0e\x68\xae\x4f\xc9\xc5\x0c\x53\x46\x92\xf4\x3a\x97\xf1\x2b\xeb\x5e\x7b\xcf\xda\xc5\x9f\x09\x8f\x22\xf2\x40\xf5\xcf\x79\x9a\xed\xac\x66\x73\x3f\x7d\x08\xb2\x30\xba\xeb\x6a\x03\x46\x43\x12\x47\x7c\xbd\xa3\xfa\x78\x3c\x8d\xc8\xdd\x35\x60\xf0\xee\xac\x4a\xc2\x56\xe9\x2d\xcd\x82\xf9\x8e\x6a\x9c\x4d\xe2\x1d\xd4\x14\x35\x22\x17\xef\x44\x08\x18\xcc\x1f\xf1\xd9\x35\x44\xc2\xdf\x73\xec\x82\xdf\xe5\xec\xec\xaa\x46\x39\xe5\xbb\xab\x93\xa6\x19\xe5\x8f\xb2\x83\xa7\x19\x8e\xa2\x6b\x68\xef\xbe\xfb\x8c\xae\x2c\x4e\x78\x8b\x32\xd4\x36\xfc\xc5\x32\xd2\x61\x04\xae\xc2\xf7\x1c\xb8\xda\x6b\xef\x33\xe4\x30\xe1\x31\x4c\xf6\x63\xe9\xf3\xf7\x52\x08\x79\x48\x62\x1e\xd2\xe9\x93\xe8\x6d\x9a\x50\xbe\x7a\x12\x3d\xbd\x59\x4e\xc8\x23\x74\x94\xaf\xd2\xeb\x05\x59\xf0\x64\x7d\x1d\xd1\x05\xbd\xaf\xf6\xb2\x4c\x85\x5a\x45\x57\x34\x22\xea\x40\xaa\x54\x81\x7b\x8b\x80\x42\xcd\x8a\x5d\x4e\xa9\x9b\x74\x34\x21\x13\xce\xb3\x6b\xb5\xa3\xde\xd2\x6c\x7e\xcd\x57\xed\xbd\x6c\xae\x54\x1c\x00\xae\x3b\x44\xda\xee\xf4\xc0\x19\xf3\x24\xbb\x06\xc4\xa8\x4e\x87\xc4\x2e\x90\x66\x1b\x20\x3d\x82\x7b\x4b\x6b\xae\x8e\xe7\x14\xfd\x23\x35\x43\xd1\xbd\xab\x04\x8c\xb2\xeb\x98\x24\xd7\x42\x60\xed\xb2\x76\x50\x23\x70\x90\x5d\x4b\x33\xe1\x6e\x8e\xfd\xfa\xc4\x16\x93\x84\xf2\x90\x06\x70\xb6\xbc\x9e\x45\x7c\x82\xa3\x6b\xca\xa6\xfc\x3a\x5d\xb3\xaa\xcd\xcb\xde\x98\x75\x61\x39\x2d\x69\x45\x98\x9d\xd1\x99\x66\x5b\x1a\x14\x29\x59\xd3\xd2\x65\x10\x90\x34\x9d\x2e\x23\x14\xf0\x45\x1c\x11\xed\x9b\xe4\x30\xe2\xea\x5f\x93\x37\x9f\xad\x63\x5b\x0d\x72\xe3\xf8\xc4\x9a\x85\xdc\x30\x86\x83\x7c\x7e\x87\x63\x87\xf5\x9b\xf6\x0a\x09\xd8\x93\xc2\x5c\x27\x4b\x1f\xbb\x6a\x9e\x74\x9d\x66\x64\x21\xf2\x94\xae\x8f\xac\x35\xf5\xb4\x96\x8d\xae\xf6\x3e\x7e\xec\x8f\xf9\x0d\x61\xbf\xfc\xa2\x23\x20\xd5\x49\xbc\x17\x47\xcb\x19\x65\xd5\x86\xae\x58\xde\xd7\x42\x0d\x56\xf5\x1e\xa2\x7f\xf7\x64\x1d\x1f\x0b\x92\x5c\xed\x45\x7c\x26\xd1\xa2\xae\xf6\x54\x8b\xc7\x79\xc9\x33\x3e\x3b\x13\x49\xa2\xf9\x7d\xb3\x10\x8e\x69\xd0\x13\x5a\x71\x2a\x4a\x7d\xfc\xd8\x3f\x8a\x69\xf0\x93\xf8\xf7\x2f\xbf\xec\x5f\xb1\x8f\x1f\x7b\x88\x4e\x11\x23\xa8\x7f\x14\xd0\x77\xcb\x28\xa3\x31\x0f\xd1\xd5\x9e\xf4\x33\xd8\x43\xbf\xfc\x52\xaa\x2d\xa0\xbd\x85\xca\xa4\xeb\x2b\x8a\xe5\x35\x12\x16\x8a\x72\xaa\xf2\xfe\x05\xc8\xf8\x13\xb2\xa2\x01\xb9\x24\x01\x67\x8c\x04\xd9\xcf\x98\x66\x63\xba\x20\x7c\x99\x55\x1a\x91\x5b\x42\x2f\x84\xfc\xbd\x44\x17\xe8\xdd\x62\x9a\xf5\x32\x59\x44\x35\xde\x56\x73\xb5\x47\x15\xba\x24\x64\x9a\x90\x74\x2e\xea\xcc\x69\x2a\xe8\x73\x29\xbf\x8b\x4a\xec\x04\x4d\x97\x93\x7c\x45\xf6\x42\x12\xe1\xb5\x41\xdd\x91\x91\x78\x22\xd2\xa0\x17\xe5\x1a\xae\xf3\xa6\x83\x1b\x92\x5c\xe3\xf0\xbf\x96\x69\x66\xef\x83\xc8\x70\x04\xe9\xf6\xbe\x2c\x53\x92\x08\x7e\x2e\x95\x7e\x9f\x92\xe4\x1c\xbb\xba\x2f\x14\x04\x9c\x91\xde\x0d\x59\xf7\x62\x9c\xcd\x65\xd1\x83\x65\x9a\x1c\x44\x3c\xc0\xd1\x01\xc9\x82\x03\xe0\x57\x92\x64\x07\xa2\x81\xfe\x0d\x59\x57\x6b\x0a\x68\x4f\x1a\x70\xf2\x96\x47\xb0\x78\x06\x21\x61\x19\x9d\x52\x92\xd4\x5b\x0f\x68\x6f\xb5\x58\xf4\xc4\xfa\x96\xa5\xfe\x92\x23\xe9\x41\x56\x83\x1f\x3f\x2c\x16\x27\x7c\x81\x29\x83\x18\xe2\x3a\x1f\x8a\x7a\x42\xc8\x90\xb7\x9f\x17\x51\x0d\xc3\xcc\x47\x29\xe9\x54\xd8\xd1\xf9\x3a\x3f\xab\xce\x15\x8b\xaf\xa1\x83\xc5\xda\x36\x3b\x59\x14\xed\xd4\x51\x4b\x25\xed\x9d\xad\x4c\x14\xa8\x6c\xbd\x8c\x30\xcc\x0a\x3e\x1b\xc3\x3f\x8d\xb2\x6a\x74\xc7\x82\x85\x0a\x21\x50\xae\x2e\x9a\x18\xd3\x77\xce\x19\x69\x20\xd3\x4f\x71\x7c\x11\x67\x74\x41\xff\x25\xaf\xb7\x1c\x55\xce\xe3\xb8\xc7\x8d\x7c\x6a\x31\x55\x4a\x3b\xc4\x8b\x68\xe7\x9c\x8b\x45\xff\x86\x27\x23\x69\x6a\x3e\x8d\x2f\x09\x0e\xc5\x76\x98\xba\xda\x64\x5c\x0a\x94\x29\x4f\x7a\xca\x40\xdd\x23\x71\x2f\xd1\xe5\x54\x1f\x1a\x6a\x6e\xe8\x8f\xca\xfc\x36\xc1\xf1\xfc\x94\x85\x31\xa7\x2c\x3b\x0a\x43\x90\x06\xe8\x6a\xef\x45\xb5\x33\xba\x03\x33\x51\xa0\x47\x54\x89\x1e\x0e\x43\x2d\x5d\xd0\xa1\xb9\x19\xc8\x52\xa6\xe0\x69\x6a\xb1\x24\x7f\x4a\x0d\xc2\x28\xff\x26\x3a\x0e\xfa\x2b\xfa\x03\x65\x21\xb9\xdb\x47\x7f\xa0\x19\x59\xa0\xc3\xff\x70\x55\xab\x3e\xa7\xe8\x97\x5f\xd4\xa8\x65\xc9\x5f\x7e\xd9\xff\xf8\x11\xc8\xf1\x11\x19\xb5\xde\xec\xa3\x3f\xac\xd0\xe1\x7f\xa8\x7a\x05\xc3\x7d\xfc\x88\xfe\x70\x03\x7f\x49\x5e\x14\x19\xe4\x77\x3a\x45\xe4\x9f\x22\xf1\x6a\x4f\x8a\x35\xa3\x52\x4d\xec\x5f\xd4\x87\xbf\x17\xe3\x72\x4f\xc6\x51\x18\xea\x87\xc0\x47\x60\xd8\x4f\xc7\xfc\x32\x94\x5b\xad\x8b\x3b\x04\xe5\x89\x2a\xd4\x93\xd7\x01\x69\x2f\xe3\xbd\x44\x95\xd3\xe2\xbe\xa1\xea\x06\xf6\x50\x5e\x81\x43\xa5\x5b\x8e\x18\xce\xde\x82\x66\x39\x60\x53\x3e\x5a\x33\xe7\xda\x53\x5a\x69\x4f\x6b\xa5\x3d\xa1\x95\xf6\xa4\x56\xda\x13\x5a\x69\x4f\x68\xa5\xaa\x73\xad\xad\xb8\xf6\xeb\x73\x1e\x12\x91\xfb\x92\x48\x27\xf8\xd3\x3b\x40\xc8\x45\xd5\x05\x14\x12\xd9\x7e\xa2\xf2\xf5\x88\xcc\xa8\x98\xaa\xcc\x53\x9a\xa5\x9c\xd5\xd7\x59\x09\xc1\x2c\x0b\x1e\xbb\xda\x03\x17\x85\x9c\x59\x20\x87\xe2\xa6\x3c\x0d\xf8\x67\x5f\x48\x28\xe9\x2f\x04\x54\xa8\x64\xd5\x49\x08\x78\x08\xc9\xea\xff\x5e\x90\xa1\x51\x15\x09\x49\x44\x32\xd2\xa0\x82\x9c\x40\x06\x53\xf7\x30\x56\x5c\x44\x48\x0c\x65\x1b\x27\x6d\x24\xb2\x89\x1a\x1c\xd3\x55\x54\xa8\x6c\x72\x3d\x30\xf0\xa9\xd2\x03\xf9\x6d\x20\x3e\x55\xb3\x8b\x6f\x3d\x65\xc0\xcb\x77\x00\xc8\x39\x94\x1f\xdd\xfb\x00\x38\x4b\x58\x76\xb8\x98\x87\x93\xb0\x17\xaa\x3d\x74\xc9\xe8\x41\xc6\x7a\xc6\xbe\x72\xf0\xfa\xa4\x57\xd1\x9c\xad\x7b\x97\xa8\xa8\x37\x09\x2d\xca\x82\x60\xb2\xdd\x34\x01\xec\xaa\xda\x70\x6e\x93\x5a\x0e\xc7\xf3\x75\x2a\xf4\x83\x86\xfd\xb6\x17\x43\x7a\xad\xc7\xf9\x5e\xc2\x02\xac\x18\x76\x15\x61\xe8\xb3\x92\x9a\x1f\x22\xcc\xac\x9a\x91\x2e\xaa\xee\x49\x7b\xfa\x9e\xb4\x2c\xe2\xdf\xc9\xd4\x81\x4a\xac\x2a\x97\x62\x5a\x26\x49\x4f\xdf\x8b\xf6\x18\x67\xc0\x70\xaa\x92\xe1\xeb\xcb\xb1\x4a\x3a\xe7\x4c\x30\x99\xa5\x82\x55\x32\xad\xaa\x0a\x1f\x2e\xdf\x94\xb4\x85\x72\x81\xe8\x5b\xb5\x20\x20\xef\xd9\xb7\x17\x4b\x7b\x3e\x72\x97\xf5\xd4\xb9\x48\x6f\xb0\x90\x59\x0b\x51\x85\xea\x59\x3b\x9b\xb4\x31\xe2\x2a\x99\x9a\x3d\x35\x34\xdf\x06\xcd\xca\x28\x73\xb1\x22\x49\x84\xd7\x96\xa2\xf5\x73\x43\x5c\x5e\x44\x5d\x98\xaf\xba\xae\x8c\x6d\xe3\x58\x19\x2f\xc6\x5c\x39\x96\x9f\xc6\xdd\x36\x25\x6d\xf5\x10\xbb\x92\xf2\x0e\xef\x91\xd8\xb2\x31\xd9\x5a\x28\x4b\x7e\x54\xda\x62\x74\x5d\x5a\x09\xc9\x25\x6f\x4d\xff\x50\x4a\xa5\xc4\xf6\xeb\xaa\x53\xd6\xa7\x50\x6d\x27\xf9\x11\xa6\x0b\x45\xff\x5d\xc9\xa4\x7a\x2d\xce\xde\xb6\x19\xdf\xa6\x89\xbc\xae\x32\x0b\x94\x57\xcb\x02\xdf\x81\x64\x49\x7b\xe9\x2a\x90\xea\x9b\x9a\x81\x77\xf8\x4e\x6c\x74\xe9\x68\x15\x80\xf6\x54\x59\x66\xb9\x05\xa2\xb7\x01\xc1\xed\xb6\x8a\x7a\xce\x9d\x4f\xcf\x2e\xa6\x48\xf7\xd6\x3d\x43\x2d\xad\x54\x2a\x28\x4f\x4b\x75\x6a\x90\xb1\xe9\xe5\x30\x74\x4f\x84\x52\x6a\x47\xdf\x9a\x50\xe5\xf2\xdd\xe9\xf4\xb4\xf8\xe9\xf1\xa9\x74\xb3\x9c\x90\x27\x46\xa4\x4f\xb1\xe8\x02\x9c\x65\x91\x27\x54\x67\x42\xc5\x09\x5f\x90\x6c\x4e\x96\xa9\x27\x56\x2b\xb1\x94\x5b\x8a\xa7\x54\x4e\x29\x37\xc9\xf4\x79\x82\xc6\xbd\x98\xf3\xa8\xc5\xd6\x93\x5b\xad\x06\xc3\x21\xe7\x51\x93\x69\xe7\x6a\x4f\x06\xd5\xe7\xb6\x1b\x51\x45\x7f\x24\xbe\xe5\x87\x70\xc2\xc2\x4a\xfa\x29\x74\x7e\x0f\xe5\xc6\x9b\x92\x42\x24\x15\xdb\x5e\x9a\xe1\x8c\x06\xed\x5d\x85\x6c\x65\xdb\x4b\x43\x8f\x3f\x42\xc9\x5f\x1a\x5b\x0e\xd7\x0c\x2f\x3a\x34\x7d\x22\xf3\xed\xa6\x6d\x30\x05\xe4\xaa\x3c\x5c\x60\x16\x67\x4e\x86\x33\xad\xbc\x8f\x44\x4a\xed\x48\x25\x89\xd5\xdb\x78\x9e\xa1\xd8\xc3\xcf\x36\x6a\x98\x6e\x71\xe2\xef\xda\xdf\x21\x0f\x3f\x0d\x4f\x8a\x4e\x4a\xe3\x5f\x0f\x7c\x81\x7b\x29\xfd\x17\xd1\x07\x69\x1e\xca\xa9\x3f\x16\x29\x23\xfa\x2f\x52\xd5\xf0\xc1\x3e\x66\x99\x9a\xf2\x32\xb5\x4a\x31\xa3\xa3\xd2\x5c\xa6\xe7\x4a\xf5\x77\xdf\x56\xa8\x34\xfe\x72\x31\x20\x43\x71\x35\x99\x8b\x8c\xe2\x9f\x7f\x77\xf7\x5d\x99\x3f\x2d\x7d\x97\x6c\x6a\x98\x88\x25\x45\xca\x0d\x55\x16\x9b\x8c\x5f\xd0\x87\x1d\x78\xf0\x5c\x51\x54\x06\x6c\x6b\x2b\xf3\x48\xa4\x68\x61\x07\xff\x99\xf3\x34\xeb\x81\x23\x5e\xf3\x3d\xe9\x4e\x8e\xe8\xa7\xf1\xa5\x72\x83\xb6\xdc\xee\xc0\x3d\x81\x4c\xcd\xe9\x5d\x14\x68\xb4\x3c\x54\x8a\xb2\x65\x14\xb9\x0d\xd7\x0f\x75\x23\x0b\x36\xe8\x79\x10\x5f\x12\x46\x6e\xdf\xe1\xbb\x4b\x92\x25\xeb\x63\xbe\x64\x99\xbc\x9c\xa8\xb4\x11\xce\x03\xd1\x6b\x46\x6e\x7b\xe2\xbc\x9b\x88\xdc\xbd\x40\x64\xd7\x96\x66\x6b\x5d\x2d\x8d\x1b\x97\x21\xb6\xf6\xcc\xcb\x8d\x3c\x7b\x43\x95\x92\x7b\xa4\x35\xf6\x48\x30\x49\x7e\x1f\xec\x32\xa7\x48\x56\xec\x29\x1b\xaf\x64\xac\xfc\xb6\xb9\xc4\x93\xb6\x5a\x1b\xba\x22\xb3\xbf\xe3\x21\xb1\xf0\x8e\x6a\x6e\xc1\xc3\x42\xd2\x17\x05\x1a\x79\xa7\x52\xb4\xce\x3b\x45\xd6\xba\xaf\xc0\x4f\x3c\xcd\x60\x04\x6e\x57\x81\x80\x4a\xd3\x74\xf1\x60\x83\xb9\x15\xe5\xd1\x77\xfe\x56\xf7\xb3\xb9\xd5\xed\x74\xfd\xfe\x79\xda\x51\x37\x35\x33\xeb\xdd\x68\x15\x61\x56\x36\x88\x4b\x7b\x7a\x29\xb3\x38\xa9\xe3\x98\x9a\x99\x05\x4b\x1e\x0d\x07\x79\xe6\xc7\xba\xa5\x2e\xca\x17\xda\x84\x28\xd9\xaa\xf2\xdc\x4f\xb1\x94\x3b\x78\xde\x5a\x63\x63\xa0\x2a\xdc\x4f\x85\x66\x01\x8e\x8d\xf5\x0f\x92\x33\xc0\xf1\x78\x6d\xd1\x5a\xc5\xd4\x53\x36\x4d\xb0\x39\x3d\x03\xf1\xa1\x3a\x39\xfd\x77\xe3\xf7\x95\x25\xfa\x6e\xfc\x1e\xbd\x28\xd3\x35\x8f\x55\xeb\x2d\xb2\xa5\xb6\xbe\x8a\x82\xf5\x75\x5e\xb9\xe8\x7c\x37\x7e\xff\x13\xc1\xe1\x25\xe7\x8b\x7a\x33\x3a\xc5\x76\x5f\x5f\x6a\xb2\x37\x27\x38\x4c\xb8\xbc\x2d\x92\x6d\x17\xb5\x3a\xfb\x50\x54\x16\x30\xda\x63\x24\x2b\x2e\x96\xdb\x38\x43\xdd\x92\x34\x6b\xc3\x33\x9c\x91\x5b\xbc\xae\xe8\xbb\x6f\xe5\xd7\x5c\x23\x2e\x38\xc4\x54\x9a\x35\x2f\xc8\x3c\x09\x5f\x66\xda\x53\x40\xec\xce\xda\x51\xe9\x45\x1f\xfe\x77\xf0\x42\x66\x9b\xdd\x36\xb4\x85\x7e\xf9\xbb\x9d\x73\x7e\x8f\xd7\x0d\xd5\xd2\x4d\x17\x0c\xfe\x9e\xc0\xdf\x13\x7c\x3e\x16\x70\x7f\x4f\xe0\xef\x09\xfc\x3d\x81\xbf\x27\xf8\xfc\x89\xe5\xef\x09\xba\xdc\x13\xe4\x46\x90\x30\xe1\xb1\xa0\x99\x36\xb8\x48\x44\x2a\x69\xfd\xf8\xc5\x56\xa2\xbb\x05\xcf\xd6\x5c\x1e\xb3\x78\xa5\xbd\x6c\x43\x32\xe4\xe1\x60\xda\xd0\x62\x8f\xaf\xd2\xde\xfc\xb6\xc7\xa7\xd3\x88\x63\x6d\xec\x1a\x25\x94\xaf\x74\x29\xc3\x58\x58\xb2\xea\xb4\x85\x55\x58\x95\xa8\xb2\xf9\xc4\x30\x01\x99\x06\x14\x97\xda\x26\x9b\x57\xf5\x2a\x4e\x22\xff\xd4\xa6\xa1\x63\x40\x02\x19\x8d\xce\xec\x47\x4d\x38\xee\xa6\xd2\xed\x0b\x5d\xed\x15\xa6\x22\xe5\xfe\x19\x5e\xed\xd9\x8d\x4f\x45\x0b\xd0\x51\xb0\xf3\xa7\x19\x0d\x1c\x4e\xd0\xf9\x15\x02\xe4\x91\x3e\xc6\x79\x7b\x48\x34\xc8\xa7\x53\xa1\xbb\xb7\x58\xba\xa0\x31\x09\xd3\x0e\xd6\x3f\x30\xd5\x8d\xe9\x02\x6c\x28\x2f\xab\xf6\x3d\xd1\x6a\x26\x12\x8b\x16\xd5\x62\x94\x86\x45\xd3\xf0\xd7\x56\xff\x2f\xbf\x54\x3b\x57\x5a\x2c\x3c\x13\x1c\xa6\x1a\x51\x58\x95\x6a\x64\xb9\x35\x75\xbf\x5c\x06\xa7\x6b\x16\xfc\x57\xaa\x4e\xf7\x95\x62\xe5\x1e\xa9\x3f\x75\x01\xc9\x84\xa1\xe8\x92\x93\x2b\x56\x75\xd1\xbd\x59\x93\xab\xb4\xa5\xbd\x7c\x09\x6c\x1d\x34\x05\x26\x40\xad\x0a\x7f\xae\x31\x53\xf5\xfb\x8e\x11\xc3\x80\xd9\x76\x29\xce\xcd\x95\xfb\x8e\xf2\x85\x4a\x29\xa7\xba\x50\xd1\xf9\x20\x4a\xb1\x17\x93\x04\x44\x54\xad\x48\x3a\x24\xc9\xb9\x32\xd3\x36\x92\x78\x04\x48\x24\xce\xa0\xb4\x65\x4a\x12\x08\xae\x79\x0c\xc2\xe6\xed\xeb\x40\x9e\x3c\x52\xe9\x7d\x4a\x92\xbf\x90\xb5\x5c\x37\x90\x1a\x24\x59\x29\xf5\x18\xc8\x28\x47\x6a\x08\x99\xfa\x86\xb8\x31\x19\x6e\xf0\xf4\x06\xf7\x24\x26\x12\x90\x82\x4e\x69\x80\x33\x92\x3e\x2a\x49\x02\x9c\x0f\xf9\x2f\xa2\x43\x52\x32\xab\x51\xa3\x52\x27\xbb\x67\xd4\x24\x36\x32\x2a\x2a\xe7\x74\x54\xd2\xca\x45\x35\xb0\x6b\x1e\x05\xf2\x8e\xa5\x5b\x64\xa3\xb6\x25\x3f\x02\xf5\x1a\xf9\x7e\xd3\xae\x17\xb7\x7a\x8f\xd6\x75\x83\x91\xdf\xa7\x44\xe1\xd6\x5e\xf2\x88\x38\x39\x3a\x99\xe0\xa0\x8f\x97\xd9\x9c\x27\xca\xcc\x6b\xc1\x65\x2c\xea\xa9\x8c\xfb\xa1\xa5\x62\x07\xa6\x80\xf7\x60\x0f\xaf\x58\x0f\xe1\x98\xbe\x4d\xf8\x32\xd6\xb8\x89\xfa\x81\xce\x32\x06\x62\x4f\x82\xb1\x5e\xe5\xd0\x8a\x30\x29\xea\xdf\x31\x0f\xd5\x5f\xb9\x12\x28\xff\x99\x47\x15\xc9\xc4\x15\xc9\x53\x12\x12\x47\x62\x79\x53\xce\x8a\x6e\x95\x4b\x61\xc9\x33\xf0\x71\x45\x92\x89\xee\x48\xa4\x50\x24\x7b\xe8\x16\x67\xc1\x5c\xfe\x39\x23\xea\x5b\x5c\x7c\x0b\x12\x82\x33\x22\xff\x96\xf8\x78\xf2\x6f\x19\xb6\xb1\xc9\xd8\xe5\xa4\x2c\x70\xbc\x61\x67\xb6\xe9\x81\x0d\xed\xd3\xd1\x2b\x00\xfe\xd4\x5f\xc3\x1c\xf8\xb3\xd6\xc9\xe7\x7f\x7c\x6e\x6f\xcb\xc9\xc6\x8e\x06\x25\x47\x27\x3c\xd2\x53\x6a\x7c\x99\x50\x16\x52\x36\xb3\x37\x6e\xa8\x88\x66\x48\x4a\x59\x0d\xb5\xf5\x50\x05\xb5\xf4\xc1\xe8\xe2\xec\x18\xa4\x2a\x3e\x8a\x23\xcc\x74\xf7\xe0\x7b\xfe\xe0\x79\x67\xb2\xe0\x80\xf6\x73\x2b\x4f\xbd\x35\x1c\xd0\x7a\xc5\xf5\xcf\x4e\x42\x28\x59\x6f\x6b\x59\xad\x6c\xca\x66\x8d\x13\xa1\xb2\x99\x6f\x1d\x75\x63\x4a\x3b\xc3\xc5\xa9\xbd\x19\x09\x95\xb5\xa8\xad\xda\x94\xe8\x0f\x21\x26\x0b\xce\x8a\x7f\x03\xee\xf4\x74\x19\xe9\x2f\x9d\xc8\xdd\x2a\x6f\xb4\x18\x39\x90\x98\x03\xd5\x8a\xf5\xca\xb2\xd5\xad\x42\x67\x04\x41\x03\x9e\x10\x9e\xf6\x03\xbe\xb0\x37\xa8\x5a\x51\x25\x6a\xad\xd4\x16\xb5\x8b\x73\x64\x70\x8d\xb5\x05\x86\x33\x3d\x67\x07\x53\xca\x70\x44\xff\x55\x48\x3d\x33\xb1\x18\xa8\x24\x04\x65\x53\xee\x1c\x77\x55\xd2\x34\xcb\xa4\x46\xd9\xd3\xda\x7d\x19\xa5\x96\x77\xa7\xdc\x6d\x4b\x7f\x7b\x48\x47\x48\x3e\x86\xe8\x54\x6f\x35\x5b\x7b\x5f\x79\x77\x79\x77\x3d\x31\x76\x1d\x57\xa7\xf4\xb3\x7e\xae\xc5\x5c\x7d\xc4\xb3\x7b\xe7\x9a\x78\xdf\x78\x6a\xcd\xda\x70\xfd\xc1\xb4\xdd\xb5\x8b\x5d\x83\xd5\x86\x9e\xae\xe2\x41\x48\xa7\x3e\x8f\x09\x4b\xe7\x74\x9a\x09\x89\xd8\x28\xa8\x36\xe6\xb5\x7a\x8b\x21\x4d\x03\xbe\x22\xc9\x5a\x8b\x60\x1b\xe9\x4c\x63\x97\x5b\x54\xd4\x9a\x6d\x60\x90\x98\x47\x5b\x09\x7b\x77\x63\xf7\x59\x46\x21\x4b\x9b\xfa\x24\x93\x1f\xb0\x5b\x0d\xe7\xa2\x27\xa9\x7b\x9b\xa7\x9a\x4f\xa1\x7b\xbb\xf5\xed\x6e\xcb\xc4\xf4\xd5\x33\x6d\xc1\x55\x43\x62\xb3\x64\x70\xc8\xa1\xfc\x5c\x60\xf6\xc5\x64\x11\x25\x5e\x5b\x94\xa7\x07\xd0\x9c\x37\xd3\xa4\x9e\x96\xf6\x76\x8f\x36\x3b\x6b\x39\x0d\x8a\xc3\x16\x7a\xc1\x93\xda\xf3\xf5\x83\x38\x76\x96\xaf\x3d\x23\xd6\xab\xbf\xb1\xf3\x50\x13\x54\x51\xd0\x44\x46\x40\xf9\xb1\x2a\x99\x2e\x4a\x6c\xab\x64\x7e\x31\xbb\xeb\xee\x34\x9f\xab\xbd\x3f\x5a\xad\x68\x1b\x6e\x74\xaf\xe5\x01\x7c\x73\xf3\xe0\x7d\xb6\x44\x71\xf2\xbf\x24\x53\x28\xac\xe9\xd1\xd0\x73\x91\xcd\xb2\x43\x77\xe8\x66\xba\x94\x2f\x37\xc1\xbe\x69\xb7\x2d\xee\xc8\x16\xfa\x88\xf3\x50\xb6\x75\x7e\xb6\xf3\x60\x76\x73\xfb\x79\xd8\xd4\xb0\x6b\x79\x07\x27\x4e\x0d\x92\x9f\x80\xed\x61\xd4\x70\xab\x52\x69\xbc\x5b\xb3\x0f\xaf\x22\xe6\x8f\xa3\x48\x79\x3a\xca\x12\x9c\x91\x99\xc6\x4f\x95\x50\x87\x97\x3c\x8a\x28\x9b\xbd\xcf\x25\x6e\xe5\xf1\xe4\x85\x10\x42\x67\xe5\x07\xad\x1a\x07\xde\x4d\x77\xcd\xc8\x22\x8e\x8a\x77\x7d\x6b\xaf\xbe\xd4\x9e\xd0\x6a\x6d\xb3\x4b\xab\x40\x67\xc6\x78\x06\x2c\x6a\x56\x5f\xb8\xb8\x88\xe5\x96\x06\x09\x16\xc4\xd1\x56\x79\x57\xbe\x98\x27\x99\xc8\xf5\xe3\xab\x97\xdf\xe8\x5c\xa5\x17\x69\x44\x07\x95\xd3\xac\xf9\xf2\x8f\x4c\x18\x0e\x4e\xea\x1f\x07\xc3\xe3\xf2\xc7\xb4\xc4\xf4\xe7\x6d\x0c\x6f\x1a\x40\x17\x78\x46\x86\xcb\x28\x92\x97\x61\x95\xb0\x02\x5a\x4e\x35\x89\xa1\xdf\x34\xfa\xf8\xb1\x5a\x87\xd5\x95\x38\xe3\x11\x49\x6a\x14\xed\xe5\x8f\xd4\x1c\xa2\xd3\x3b\x9a\x66\xf9\x0c\x08\x1d\xf8\xd8\x06\x0f\xac\xdb\xcd\xc1\xf3\xaf\x8c\xeb\x6a\xe8\xaf\x0e\x33\x3a\x66\xf4\x04\x72\xe4\xf5\x94\xaf\xe0\xf3\xc1\xc9\xcb\xfb\xf2\x50\xe4\xb7\x72\x81\x94\x04\xcb\x84\x66\x50\x1f\xb9\xcb\x0e\xab\x77\x35\xc3\x1c\xd9\x38\x6f\xd1\xe9\x96\x53\xa0\x20\xeb\x99\x74\x78\xc6\x04\x38\xc6\x13\x1a\x51\xfb\x2b\x42\xa1\xfd\x91\xdc\xd1\x5f\x47\xd7\x47\x27\xef\x06\xe7\x66\xe2\x8a\x47\xcb\x05\x79\x07\xd7\x18\x95\x52\x06\x51\x7b\x93\xfa\x83\xcc\x0b\x51\x66\x88\xb3\xf9\x21\x3a\x58\xb0\xec\x20\xcf\x66\x30\xd2\xfb\x94\x48\x47\x22\xf0\x96\x49\x28\x07\x4a\x45\xd8\x8e\x71\x17\x9b\x19\x24\xbf\x4a\x91\x27\x91\x90\x82\x84\x66\x34\xc0\x51\xe1\x70\x04\x1e\xf1\xef\x53\x22\xe6\x35\x67\x8b\x9f\xc4\x02\x31\x6b\xfa\x25\xf7\x23\x6a\x68\xc8\x2a\x1f\x0a\xc7\xa6\xa2\x86\x8f\x26\x84\x5f\x75\x48\xd5\x69\x75\x8f\x48\x5d\x4b\x54\x07\x55\xf3\x8d\x51\xa3\x63\x74\x8b\xa6\x70\x40\xc5\xa4\xe8\x94\x66\xb7\x7e\x2b\xec\x76\xaf\x8b\xf4\xac\xac\x30\x41\xff\xfb\x2d\x2e\x35\x7c\x9e\xa0\xaf\x20\xa2\xb0\x3c\xb7\xef\x00\x79\xfc\x8c\x2e\x68\x86\xbe\x6e\xc8\x71\x49\xfe\xb9\x24\x69\x86\xbe\x2e\xf7\xa1\xfe\x70\x9a\xfc\x01\x92\x79\x5a\x2c\xdf\xe6\x86\xeb\xae\x6e\x12\x10\x5d\x45\x13\xb4\x16\x6e\xf4\x9a\x6b\xa8\xca\x51\x4d\x5d\x42\x24\x72\xf4\x1d\x06\xa4\xe9\xb4\xe5\x90\x8c\xe2\xf7\x1b\x94\xa5\x22\x67\x04\xca\x93\x17\xbb\x3a\xf1\xfc\x74\xec\x4e\x14\x25\x87\xe3\xcb\xa3\xe3\x53\x57\xd1\xcb\xa3\x9f\xcd\x24\xc2\x56\x0e\x19\xfe\x97\xf7\xaf\x4f\x2f\xcf\x4f\xc7\xa7\xa3\xeb\xf3\x8b\x93\xd3\xeb\xf3\xa3\x77\xb5\x4a\x57\x38\x5a\x92\x37\x09\xb7\xbd\xcb\x3f\xa5\x24\x0a\xb5\xf6\x6e\x4d\x94\x3b\x81\xd0\x61\xfa\x42\x5a\x0b\x09\x64\xef\xca\xf8\xf4\xfc\xe8\x7c\x6c\x6d\xbc\xe6\xd3\x5a\x0e\x70\x82\x77\x38\x14\x44\xa4\x73\x32\x75\x33\xef\xde\x9f\x8d\xdf\x8f\x1c\xcd\xd4\x66\xd9\x60\x1e\xd5\x80\xc2\x50\xd5\x81\x4b\x6d\xcd\x9d\x0c\x46\x47\xaf\xcf\x4e\xaf\x7f\x3e\x1a\x8c\xaf\xdf\x5c\x5c\x5e\x9f\x9f\x8e\x7f\xbe\xb8\xfc\x4b\x7b\x07\x2c\xab\x25\xaf\xf4\xfd\xe5\xd1\x78\x70\x71\xde\xb5\x56\xa0\xde\x89\x7a\x60\xab\x3c\x80\x06\x61\xf1\x00\x2a\x80\xab\x0e\x71\x36\xe9\x52\x49\x3d\x9f\xae\x45\x6c\x3d\x2b\x5c\x03\xd7\x37\x2b\x29\x30\xa1\x6b\x19\xcd\x5a\x92\x65\xe3\x78\x6a\xc9\x1b\x94\x2d\x7a\xe0\xac\x45\x39\xfb\x8a\xca\xf4\x81\x0d\xa6\xa1\x5b\xb5\x24\x0b\x0e\x4a\xee\xc2\x7c\x95\x1e\x4c\x70\x4a\x80\x72\xfd\xd0\xdd\xf3\xde\x96\xad\x95\x35\x80\x03\x7b\x03\x2b\x9c\x44\x7c\xa6\xed\xfd\xae\x8a\x57\x58\x54\x3c\x3b\xb0\xe5\x4b\x08\x0e\x2f\x58\xb4\x2e\x9f\x64\x6c\xad\xd4\xcf\x67\x4d\x6d\xb9\x73\x77\x6d\x91\x4e\x42\x1e\xdc\xd4\x9f\x75\xa8\xb5\x46\x27\x07\xf6\x9c\xd5\x96\x0c\x99\x53\x86\x4d\x90\x92\xa6\xb6\x21\xeb\xde\x84\x73\xe9\xb4\xd7\xa9\x27\x79\x5e\xa7\x7a\xf9\x93\x3c\x69\xb2\xf4\x03\xb0\x44\x83\xa4\xab\x2c\x8f\x03\x26\x4a\x55\x7b\x61\xb0\x5a\xb2\x64\x3d\x6b\x9e\x26\x9a\xeb\x71\x24\x3c\xc6\x33\x2c\xdf\x8f\x10\x5d\x1c\xf3\x7c\x23\x77\xb9\x76\x6f\xb6\x41\xc8\x67\x9d\x7a\x5d\xc5\x52\x2d\xbb\x55\x96\x46\x74\x45\x18\x49\xd3\x61\xc2\x27\xd5\x77\x3d\xa6\x98\x46\xcb\x84\x8c\xe7\x09\x49\xe7\x3c\x0a\x0f\xd1\xcb\x17\xe5\x1c\xf3\x2c\x8b\xdf\x5a\x5e\x03\x8c\x65\x37\x0a\x97\x8b\x52\x22\x98\x12\x7e\x78\xf1\xe3\x8b\x6a\x0a\xbc\x00\x4c\x0e\xd1\x4f\xe3\xf1\xb0\x9c\x06\x97\x49\x38\x02\xaf\xf4\x11\x09\x38\x0b\xd3\x43\xf4\xf2\x9b\x4a\x0d\x12\xb2\x39\x4f\x7f\x55\x49\x56\x2f\x76\x98\xe3\x29\x67\x50\xa8\xc3\x79\x05\xdf\xbe\xa8\x9f\x2c\x4c\x29\xd6\x4d\x95\xb9\x3c\x7d\x7d\x71\x31\xbe\xfe\x79\x30\xfe\xe9\xfa\xe2\x83\x6b\x87\x2f\x0c\x30\x35\xdf\xff\x8b\x98\xb0\x34\x8d\x8e\xf9\x22\xc6\x0e\xa4\x0d\xb3\xbd\x8b\xe1\xe9\xf9\x68\x74\x76\x7d\x7c\x71\xfe\xc6\xd9\x18\xc8\xc8\xf8\x86\x1e\x64\x51\x7a\xc0\x65\x03\x2f\x5f\xf6\x03\x36\xbd\xda\x43\x0e\x5e\x29\x9d\x9a\x54\x94\xc5\xee\xce\x4d\x86\x0b\x7e\xed\xc4\x54\x4b\xbb\xef\x59\xc9\xd1\x58\xdb\x29\xc0\x5d\xec\x53\x9c\x8f\x9c\x54\xd9\x78\x18\x8f\x78\x26\x42\x96\xdf\xd3\x3c\x27\x59\x8f\x42\x1d\x74\x53\xaf\x11\x6e\xaf\x11\xaa\x12\xbb\x6a\x4f\x37\x65\xb0\xd8\xe5\x92\xc9\xe5\x31\x22\xc9\x8a\x24\xcd\x4c\x56\xe9\x16\xbc\x85\x9f\x6c\x27\x32\x03\xbe\x58\x60\x16\x1e\xa2\xbf\x5d\xed\x1d\x4c\x28\x3b\x48\xe7\x57\x7b\x7f\x37\x73\xe0\x64\x96\xca\xe4\x62\x54\x22\x63\x84\x97\x2c\x98\x2b\x8c\x25\xd9\x85\x7e\xad\xf0\x0e\xcc\xc4\x26\x8d\x77\xb7\x60\x20\x1a\xa8\xb6\x52\x72\xf5\x77\xc8\x55\x44\x88\x39\x29\xe2\xa3\x53\x4b\x22\x59\x42\x83\x9a\xd2\x51\xa9\xf0\xc7\x57\xdf\x7e\x63\x66\xc9\x48\xb2\xa0\x0c\xb4\xb7\x77\x24\x4d\x05\x5d\x24\x03\x85\x64\x75\x60\x24\x42\xfc\x66\x73\x39\x45\xdf\x37\x34\x22\x1b\x0a\x86\x12\x17\xdd\x93\xc7\xeb\xac\x78\x1f\x01\xd4\x01\x83\x8b\x4b\x58\x22\xfb\xfa\x58\x04\x38\xcd\x7a\xd2\xb3\xd9\xb9\x3c\xde\x89\x4c\x0f\xb5\x3a\xa0\x07\xb2\x03\x5b\x2f\x8e\x92\xba\x02\xbd\x95\xf7\xa5\x35\x75\xa5\x96\x76\x5f\x75\xc5\xd1\x58\xdb\x06\xed\x2e\xf6\x29\xd4\x15\x27\x55\x36\x1e\xc6\xa3\x9a\x70\xb7\x55\x3f\x9a\x05\x68\x47\xd5\xe4\x0b\x55\x27\x6a\x63\x4d\x08\x44\x9a\xea\xf5\x77\x14\xdd\xe2\x75\x2e\xc3\x25\x11\x1c\xd7\xa7\x55\xfb\x1d\x5c\x37\x8b\x46\x2b\xf4\x96\xfd\xe0\x71\x66\xaf\xa5\x7a\xa2\x6e\xae\x86\x64\x41\xbd\x1a\xcb\x44\x34\xd7\x52\xca\xdc\x40\xcc\xe6\x5a\x4a\x99\xbb\x59\xce\x02\x1d\x9c\x5c\xa9\xb1\xe5\x45\xc7\xe2\x47\x33\xb2\xa8\xef\xfb\x3d\x04\x51\x99\x35\x0c\xd1\xba\x2e\x20\xbb\x5e\x64\xec\x97\xc9\xbf\x89\x86\x49\x16\x71\xb6\x3e\xa1\xd5\x97\x68\x17\x24\xa4\xcb\xc5\x21\x92\xeb\xbc\x5e\xb5\xdd\xf2\xd7\x3a\x5f\x16\x3b\x60\x17\x2b\x5f\xb7\x7a\x6d\x65\xdb\x2c\x7a\x1d\x6a\x36\xec\x7b\x5d\x2c\x78\xf6\x3c\xef\x27\x4b\x96\x2d\xed\xb6\xbe\x26\x3b\x5f\xc7\xfe\xcd\x83\xd8\x2e\xc8\x77\x52\xb7\xdd\xa2\x58\x11\xb6\x5d\x8f\x18\x0f\xbb\x78\x2c\x98\x1a\xae\xe5\x03\xf2\xb4\x5f\xd8\xf6\x8a\x4d\xca\xd4\x95\x1b\x8c\xa4\x9d\xf4\xce\x7b\x99\x61\x7b\xad\xd6\xd5\x56\xd9\xa6\x8d\xb6\x5d\x2c\xa8\xcd\xec\xd9\x60\x3f\x6d\xe7\x24\xd1\x13\x59\xc1\x41\xd9\x69\x7e\x97\x1e\x75\x3c\x26\x6c\x95\xde\x52\xe5\xfc\xfb\xbb\x73\xac\xab\x8c\xbf\x4b\xff\x76\xe5\x5f\x67\x69\xba\x9b\x9b\xdd\xef\xc0\x09\x6e\x2b\x17\x38\xf4\xc9\xfd\xaa\x2e\x8a\x29\xbd\xb7\x7b\x55\x89\x3d\xbc\x97\xd5\x06\x6b\xa8\x66\x03\x23\x6c\x35\x82\x3c\xbb\x72\x68\x6c\x3d\x45\xa3\xd2\xcf\x3c\x14\xf6\x2f\x3e\x8c\x8c\x23\x6d\x1d\xbd\xdf\x38\xc6\x76\xa9\x45\x9d\x27\xab\xf5\x3c\x71\x9b\xb6\x4e\x1c\xfd\x75\x74\xfd\xee\xe2\xe4\xfd\x99\xd5\xbd\x47\xa4\x9e\x0f\xec\xae\x3f\x83\xe1\xf1\xf5\xd9\xc5\x71\xc9\x0d\xc4\x7d\x61\x76\xf1\x61\x74\x7d\xf9\xfe\xfc\x64\x70\x59\xad\x4b\x5d\x5f\x95\x0f\xb4\xb0\x37\x3b\x78\xef\x0b\x3d\x3f\xbb\x6a\x29\x9d\x4b\x9b\x6a\xa9\x65\x34\x6b\x59\xf0\x70\xa9\xe0\x28\x5c\x35\x09\xc5\xda\x9a\xcd\x7b\x56\x6c\xe3\x59\x51\xa4\x34\xdd\xc7\x93\x3b\x43\xd5\xd0\x3f\x6d\x19\xb5\x2d\xbb\xaa\x29\x54\xd5\xdd\xe3\xab\xb4\x9f\xce\xef\x69\x7b\xb1\xf0\xdb\x17\x60\x34\xb1\x30\x75\x73\x4d\xd6\x95\xf0\xfb\xb6\x32\xb4\x9e\x89\xf2\x28\xda\xcf\x0f\x77\x0b\x75\x54\xfb\xdb\x83\xeb\xf4\xb9\x40\x87\x08\x2b\x6f\x93\xd4\x7a\x82\x22\x45\x4c\xe8\xb6\x87\xa7\x32\x9d\xba\x8d\xa3\xed\xec\xd4\xb5\xa1\x0e\x93\x82\x3a\x1f\xc5\xea\xf5\xef\xf2\x24\xd6\xe1\x7c\x65\x76\xe0\x51\x83\x8c\xf4\x4d\xc9\xb8\x38\x63\x21\xd7\xc9\xeb\xe3\x47\x94\xf1\xbf\xe2\x45\x54\xce\xfe\x6f\x78\x8c\x9d\x65\xe8\x55\x5e\xb7\x38\x1f\x35\x9f\xdf\x7a\x88\x4c\xa7\x24\xc8\x0e\xd1\x39\x3f\xbd\x23\xc1\x32\x33\xf6\x24\x57\x6c\x93\x59\x55\xee\x31\xf5\xf1\xa3\xd9\x1d\xf5\xd9\x68\xdd\x6c\x69\x14\xcc\x89\x90\x9b\x45\x85\x60\x01\x13\x47\xbc\xfe\x4d\xfe\xb8\x4d\x9f\xf2\x03\xc6\xb3\x9e\xd8\x32\xd7\xed\xbd\xea\xd8\x40\x2f\xe1\x51\xb5\x95\x05\x16\x47\xaf\xa6\x26\x3e\x1a\x0f\xd8\x7f\xe2\xc3\x6d\xf1\x10\xce\xbd\xcf\xb6\x55\x76\x7f\xa0\xa3\xad\x6d\x74\x4f\xe3\x5c\x6b\x13\x48\xd5\x28\xbd\x3c\xcb\x43\x45\x12\x15\x2d\x34\xc7\x13\x55\xf3\xed\x34\xaa\xc8\xde\x89\x8d\x2e\x5e\x9d\x55\x7c\xf2\x08\x23\x17\xe5\xee\x35\xbc\x4f\x14\x6d\xe4\x3e\x5c\xff\x7c\x34\x3e\xfe\x09\xc2\x69\x46\x43\x4b\xa0\x4e\xee\x20\x5a\xb5\x84\xe8\xf2\x47\xc7\x83\xeb\xd1\xf9\xd1\xb8\x43\x15\x4e\xf8\xf4\x86\x7a\xdf\x9e\x5d\xbc\x3e\x3a\x1b\x9c\xbf\xb9\x70\x87\xfc\x1c\xaa\x47\x3d\x0b\xfc\x93\xa6\x4a\x2f\x4f\x8e\x2f\xce\xdf\x0c\xde\x36\xd7\x97\xf0\x65\x46\xd9\x4c\xbe\x6c\xa6\x2f\x5e\x1c\xb5\x8e\xfe\x3a\x1a\x9f\xbe\xdb\x0d\x01\xba\xc4\xb2\xe4\x2c\xe5\x63\x21\x3e\xc3\x13\x7b\x79\xdb\xc8\x51\xa7\xb7\x9b\x24\x92\x64\x07\x5d\xcd\x01\x0f\xed\x9e\xff\xb2\x9a\xf2\xf9\xba\xe7\x17\x56\x8a\x46\x00\xed\xea\x84\x29\x44\x69\x92\x64\x25\x2a\xa4\xa0\x9b\x57\xa8\x26\x3f\x9e\xb7\xe1\x6a\x37\x5c\x2c\xb7\xb1\x47\x6b\xb3\x35\x54\xf3\x72\xfd\x5d\xe4\xc4\xc3\x5e\x5e\xd7\x7a\x50\x37\x4a\x49\xd6\x2b\x32\x3a\x3c\x3f\x7e\x9f\x86\x93\x46\xe6\xad\x5b\x55\x00\x19\xc9\xb0\xab\x0c\x79\x38\x78\x63\x35\xa9\x50\x46\xb2\x1e\xbc\x31\x57\xb1\xa1\x98\xcf\x28\x31\x29\x0f\xa0\x18\x89\x67\x35\x76\x80\x4a\xf8\x12\x38\x8f\xc6\x38\x0c\x93\x43\x54\xbc\x4f\xd7\x78\x29\x5e\xf4\x11\xf4\x34\x78\x15\xc0\xda\x51\xa9\x06\xf5\x40\x0b\xed\x25\x32\x5b\x17\xfb\x42\x7e\xf6\x37\x2e\x7d\x7a\x48\x3d\xe7\x96\x13\x5f\x2b\x59\x6d\x3a\x24\x64\x57\x85\x95\xde\xd5\xb5\x8e\xaa\xd2\x28\xed\x3b\x46\x24\xd8\xde\xfe\xff\x0f\x21\xb4\x17\xe0\x88\x06\xbc\xb7\x7a\xd9\x7f\xf9\xed\xde\x21\x02\x95\x4e\x7b\xa0\xbf\x3e\x3a\x96\xcf\x47\x28\x38\x69\x39\xff\xcf\x9e\x21\xb0\xd3\x02\x02\x11\x9a\x93\x84\x5c\xb1\x2b\xf6\x0c\x0d\x58\x10\x2d\x43\x82\xb0\x89\x1c\x8d\xa6\x3c\x41\xd9\x9c\x20\xd5\x8e\x38\x7c\x15\xbe\x08\xfb\xa2\x1c\x66\x21\x9a\x50\x16\x22\x9a\xa1\x8c\xd7\x32\x97\x11\xc3\xfb\x56\x14\xc8\xae\x88\x4e\x13\x92\xe1\x97\xd6\xf9\x36\x5a\x2c\x40\x1c\x11\x7a\x86\xc6\x73\x82\x8e\xcf\x07\x48\x1a\x7c\x10\x23\x24\x4c\x45\x37\x67\x24\x03\x7c\xc6\x7d\x09\xe0\xb8\x0f\xc3\x28\x00\x1c\xfb\x57\x0a\xe1\x54\xc3\x88\xa1\xbf\x09\x55\x56\x79\xfb\xd6\x0f\x3d\x05\xd8\xa3\x5a\xcd\x1a\x15\xb2\x58\xdc\x05\x32\xa4\x09\x31\x26\xd3\x73\x28\xb3\x0d\x1a\x2c\x61\x4a\xca\x4f\x26\xae\x64\xb5\x91\x67\xe8\x7d\x4a\x42\x31\x74\x0d\xf3\xa6\xb3\xa3\xc1\x30\x85\x79\xc6\xe1\x4a\xec\x41\x29\x59\x10\x98\x29\x5d\x6d\x8e\x22\x27\xff\xa9\xe1\xd6\x1c\xb5\x8e\xd7\xf1\x1c\xa7\xfd\xfb\x0d\x0e\xe8\x57\x52\x2c\xaa\xa3\x39\x27\x24\x24\x21\xf4\x3b\x88\x08\x4e\x28\x9b\xa1\x73\x1e\x12\x65\xac\x7b\xcf\xf0\x0a\xd3\x08\xdc\x79\xa6\x11\x9e\x19\xfd\x89\xcd\xe1\x3c\x43\xc7\xc0\x3a\x28\xcd\x78\x42\x52\x94\xf2\x05\x51\xbb\x9b\x0a\x27\x47\xe2\x60\x90\x2c\xf4\xdf\xd0\x35\x13\x12\xc9\xa8\xb9\x00\xe1\x7b\x86\x7e\x16\xad\xc8\xee\xcd\x85\xfc\x01\xae\x2b\xde\x5a\x46\xaa\x9f\x43\x05\x6e\x67\x65\x38\x0b\x68\x65\x13\xcd\xea\x70\x79\x75\x4e\x73\xcc\xa5\x9a\xc7\xc9\x5a\x93\x43\x74\x5c\x3e\xf5\x63\x8e\xff\xde\xcb\xa2\xb2\x0e\x90\xfd\x49\x81\x7a\xb7\x4d\x9e\x33\x06\x51\x5b\xdf\x30\xb7\x24\x85\x66\x15\xfb\x6c\xd7\xe7\x06\xde\x33\x38\x28\xe7\x1e\x8d\x4c\x2e\x36\x70\xca\x97\x29\x3a\xbe\x3c\x91\x8b\x4a\xf2\x92\xb5\x13\x41\x12\xf6\xe3\x84\xff\x17\x09\x32\x29\xbf\xfa\x3c\x99\x35\xf6\x4c\x9e\x54\xa7\x24\xa2\x77\x06\x42\xa7\x4c\x33\xbe\x2a\xce\x35\x12\x27\xb3\x38\x26\x86\xc6\xa1\xab\x9a\xcc\xe2\x5a\x45\xf9\xb7\x7a\x35\x34\x8e\x39\x8f\x6a\xb5\x58\x39\xaf\x96\xac\xc1\x4d\x1b\xb8\x15\x15\xef\x16\x18\x5c\x67\x24\xc2\x65\x61\x59\xf0\x39\x64\x69\x0b\xdf\xe8\x79\x5b\xa6\x99\xc2\xd1\x84\x1d\x40\xae\x60\x29\x05\x60\x0a\x39\x93\xbb\xe5\x32\xde\xd1\x14\xd6\x48\xd8\x38\x6f\x4e\x62\x54\x47\x5d\xdc\xfb\xd4\x45\xd1\x46\x12\x8e\x33\xd8\xc2\xc1\x7a\xbe\x9d\xd8\xbe\xcf\xb4\x8c\xe7\x24\x25\xe2\x80\xb7\xa0\x29\x60\x05\x23\x9c\x10\xc4\x59\xb4\x06\xb3\x5b\x42\x95\xc8\x5f\xc6\xb3\x04\x87\x04\x4d\x13\xbe\x40\xab\x6f\xfa\xaf\xe4\x06\x1e\x60\x26\xeb\x99\x10\x94\x90\x05\x5f\x91\x10\xe1\x69\x46\x8a\x02\x3c\x11\x23\x9c\x8a\xa3\x21\x52\x0f\x58\x18\x62\xfc\xfe\xd3\xdb\xb0\x78\xca\x6b\xb0\xeb\x04\x6e\x04\x79\xa9\x14\xa4\x8d\x70\x2f\xcb\xaa\xd3\x4e\xb1\x2a\x4b\x55\x6f\x80\x4e\x59\x2a\xe7\x3e\x67\xf4\x36\xeb\x22\xe4\x2c\x1a\x91\xb5\x1c\x2a\x96\xcd\xbd\x13\x9f\x3d\x83\xab\x99\x92\x72\x0c\x73\x20\x98\x93\xa6\xc5\x83\x6c\x88\xa6\x68\xa9\x94\x1f\x3d\xe5\x42\x7b\x4e\x49\x34\x05\xd7\x4a\x12\xea\x95\x67\x32\x5a\xdf\xf2\xb2\x5b\xf5\x88\xe3\x9e\x25\xeb\x13\x6f\x25\xa2\xe4\xe5\x9e\xa1\x31\x57\x60\xc6\x52\x27\xdb\x47\x29\xc9\x50\x26\x06\x91\x71\x78\x7d\x13\xaa\xcc\x44\xda\xd5\x1e\xfa\x23\x66\xe1\x1f\x21\x0b\x46\x8c\xb3\xde\xbf\x48\xc2\xa5\x09\x12\x56\x1c\x54\x91\x5f\x42\xeb\x55\x16\xf1\xdb\x3e\x42\x3f\x8b\xd5\x16\xf0\xc5\x42\x50\x6e\x99\x0a\x55\x4c\x66\xa7\x53\xb4\xe6\x4b\x34\xc7\x2b\x82\x16\x3c\x21\x28\x9b\x63\x86\xbe\x7f\x21\x05\x45\x1f\x1d\x4d\xf8\x8a\xa0\x97\x2f\xd4\x07\x71\x84\xa0\xaa\x6e\x92\xa6\x84\x65\x14\x47\xb0\x30\xa1\x93\xd7\x4a\x55\xb8\x96\x24\xb9\xda\x63\x9c\x29\xa8\xc9\x67\x8a\x9c\x4b\x68\x83\x68\xc2\x4f\x70\x70\x23\xfa\x94\x71\x31\x55\x50\x93\x1c\xf5\xb5\x4a\x11\xb5\x4c\x68\x12\x8a\x5a\x6c\xf5\xbc\x1b\xbf\x57\x85\x8d\xf8\xb3\xf1\xfb\xea\xcd\x1d\xbc\x74\xaf\xce\x6a\x2b\x92\xcd\xaf\x17\xd9\x52\xf9\x04\xc8\x67\xf1\x2d\xa6\xf6\xe2\x3a\xd5\x2c\xf1\xf2\xbb\xef\x5e\x54\x72\x97\x15\x1d\xb5\x6f\x56\x24\x78\x96\x33\x99\x10\x6f\x04\x07\x73\x29\xc1\x11\x94\x13\xa7\x5a\x8a\x23\x59\x11\x4c\x69\x2a\x34\x59\x60\x05\x59\x0f\xba\xa5\x51\x24\xa4\x26\x5e\x66\x5c\xec\x04\x01\x8e\xa2\x35\x8a\x79\xbc\x8c\x70\x46\x42\x49\x3a\x46\xaf\x55\xf3\xd7\xce\x67\x3a\xcd\x77\x4f\x6f\x7e\x48\x7b\x31\x0f\x7b\xaa\x10\x3c\xd5\xaa\x73\x05\x4c\xf3\xbc\x7e\xa1\xfe\xdb\xfe\x8b\x52\x0e\xa9\xd2\xc9\xc7\xec\xaf\x72\xb3\x47\xe5\x41\x46\x71\x2e\x96\x15\xc8\x89\x35\x6a\x40\xfa\xc9\xd0\x6b\xe3\x79\xd0\x9f\x8f\x2e\xcf\x07\xe7\x6f\x6b\xd9\xc4\xb2\x81\x0d\xf2\xba\xa8\xb1\xb8\xd6\xad\x65\x17\xc4\x2d\xc6\x79\x7d\x6d\x83\x19\xbb\xbe\xae\x15\x5b\x64\x4b\x51\xe2\xfa\xfa\xf8\x7c\x70\xfd\x6e\xfc\xfe\xfa\xba\x92\x81\xc6\xd8\xf6\xbc\xb2\x39\x4e\xf0\xda\x06\x73\x6f\xa5\x7a\x78\x67\x71\x39\x61\x44\x3d\xb4\xb8\x4c\xc9\x90\x87\xc7\x34\x4c\xca\x57\x05\xd5\x67\x34\xa5\x9a\x6f\x7d\x7d\xd7\x6c\xf7\xe6\x87\xb4\xb9\x1e\x93\x5c\xd6\xba\x44\x06\x7d\x23\xa2\x56\x87\x38\x10\x1d\x4f\x67\x55\x47\x57\xc7\xab\x9c\xce\xb9\x8f\x79\x92\x2d\x70\x5c\xa3\xb7\x04\x5a\x97\xb6\xf6\x4a\x92\xe9\xd6\x2a\xfb\x0b\xb5\xbc\xc3\x71\x0c\x4f\x65\xa9\x52\xf5\xf7\x3a\x11\x52\xdb\xbf\x36\x50\xe5\x5b\xc3\x02\x33\x3a\x25\x69\xa6\x97\x62\x6a\x18\x43\x0e\xe0\xd8\x98\x5b\x9c\xf6\x11\x4e\xd1\x2d\x89\x22\xb0\xa0\xa4\xa6\xcc\x2a\x4e\x33\xa9\x34\x4a\x94\x16\x3c\xe2\xd0\x1e\xac\x70\xe9\x68\x00\x99\x44\x0e\x92\xc8\xb3\x29\x65\x08\x9b\x27\x4d\xa5\x43\xf6\x2d\xa1\x24\xe6\xc6\x53\xbc\xcf\xd0\xdd\xd2\xe2\xde\x86\x2a\x4e\x3a\x42\x12\xe0\x38\xae\xaa\x04\xda\xda\xd6\xc1\x57\xc9\x5e\x83\x25\x9e\x04\xec\x5f\xfd\xf7\xa5\xcf\x52\xe8\xe6\x8e\x2e\xe5\xc4\xc2\xd7\xe5\x3b\x15\xa7\x60\xdc\xac\x3a\x22\x53\x10\x4a\xcc\x4f\x85\x55\x0f\xdf\x19\x96\x07\xb8\x79\x30\xe2\x1e\x36\x0e\x31\x71\x0d\x1a\x39\x51\x99\x25\x2b\xee\x23\x1c\x71\x26\xa4\x7a\x36\x97\xbc\xa5\xfc\x25\x8e\xc2\x90\xb3\xf4\x42\xe8\xd3\x85\xd7\x8d\xdc\xc7\xf7\xcd\x4a\x16\x38\xb9\x91\x5c\x19\xf3\x50\x30\x28\x46\xda\xe5\x02\xe1\x30\xec\x71\xb6\x8f\x08\x4b\x97\x60\x76\xa1\x99\xd0\xee\x53\xb3\xbc\x76\x9e\x80\xbb\x9e\x70\x29\x28\x05\x7c\x9a\xcd\x71\x86\x68\x96\x16\xba\x33\x28\xf8\x09\x81\xa0\xb1\xd0\xac\x82\x4e\x45\xc5\x64\x45\x12\xa8\x1d\x91\x15\x0d\xf4\x4e\x24\x7f\xaa\x6e\x92\xf4\x71\x14\xcf\x71\xc5\x0d\x47\xf7\x57\xec\x40\x87\xe8\xf9\x73\x59\xae\xe4\xdc\x85\xa7\xf0\xba\xc8\xda\xf4\x24\xe3\x21\x39\xaa\x7f\x96\xb7\xfe\x34\x21\xe1\x09\x8c\x79\x94\x0f\x6b\x30\x63\x3c\xff\x2c\x9d\x9e\xc4\x72\x2a\x4b\x3f\x51\xeb\x48\xf1\xf8\x98\x24\xd6\x9b\x0f\x60\xfa\xd3\xbb\x38\x21\xf2\xe4\x63\xf5\xc4\x85\xeb\x11\xb1\x38\x2b\x83\xe5\xb5\xeb\x37\x54\xf2\x3c\x3a\xe7\xd9\xa0\xe6\x18\x8e\xf4\x1d\xb3\xad\x2d\xd9\xde\x2d\x65\x21\xbf\xcd\x2b\xb7\x78\xc3\xc9\xe5\x76\x6e\x0c\xb0\xb8\xb3\x32\x87\x9d\x37\xf1\xf1\x23\x02\x83\x3c\xfa\xc3\xcd\x3e\xfa\xc3\x0a\x1d\xfe\x47\xb9\x78\xc9\x4f\xe2\xe3\x47\xf4\x87\x1b\xf4\xcb\x2f\xca\xa1\xe1\x0f\x2b\x64\x6e\x15\x1f\x3f\x1a\x6e\x54\x1d\xa2\x8b\x9e\xa1\x77\xf8\x86\xa0\x54\x68\x77\xa6\x8d\x1a\xf8\x4b\x73\x53\x28\x34\x28\xa1\x48\x49\x1d\xb5\x28\xdd\xec\x12\xd6\xe4\xe0\x26\xda\x4d\x6e\x1a\x97\x13\xe8\xd8\x09\x29\x96\x4b\xa9\x61\x98\xf6\xfa\x1a\xee\xd6\x7a\xa3\x57\x9e\xbb\xa0\xcd\xc1\xd1\x22\x86\x9e\xa1\x77\x94\xd1\x05\xfd\x17\x41\x21\xbf\x65\x19\x5d\x10\x14\x4a\xb9\x80\xb5\x90\x34\x4f\xdf\xf0\xfc\x08\xe5\xec\xcf\x28\x23\x51\x64\xee\x53\x19\x47\x21\x47\x18\x5d\xed\x4d\x79\x12\x18\x0d\xe8\x22\x62\x4f\x9e\x67\x59\x9c\x1e\x1e\x1c\x94\xd9\x3f\xe4\x01\x80\xf0\x04\x24\xce\xd2\x03\xc1\x9e\x11\xc7\x61\x0a\x57\x78\xe2\xff\x0e\x9e\x99\xd8\x2b\x7c\x2a\x64\x42\x31\xb5\x46\xda\xdb\x04\x07\x64\x58\xbe\x5f\xce\x6f\x87\x9d\x28\xec\x6a\xff\xcf\x77\xf7\xb2\x02\x60\xec\xeb\x13\xca\x70\x42\x49\x89\x35\x84\x58\xac\x2b\xf6\x68\x4a\x23\x52\xd6\xe5\xcd\x19\xd5\xd7\x71\xd0\x4c\x2f\x60\xd4\x9c\xd1\xc2\xa3\xec\xf8\x7c\x00\xce\x61\x0d\x20\x28\x46\x1d\x75\x40\x93\xba\xfb\xcf\x33\x24\x38\x01\xf1\xa9\x1c\xda\xf9\xa0\xd4\x5f\x71\x14\x06\x3b\x46\xbf\x5c\x4a\x77\x58\xa8\xbd\xc7\x17\xe7\x6f\x9a\x7d\x68\x5e\xbe\xe8\x29\x6b\x8b\xa8\x1b\x6c\x45\x7b\xd5\x5e\xd8\x8f\x43\xce\x73\x90\xbb\x3b\x0a\x58\xf6\x5a\x3a\xf7\x58\xfb\xe4\x80\x06\xce\xef\xc0\xff\x42\xd6\x2e\x84\x60\xc7\xe1\xbd\xfa\x93\xb7\xde\xb5\xe3\x55\x75\xd0\x23\x38\xbf\x13\x10\xc3\xa2\x66\x34\xc1\xa9\x94\x57\xe2\xeb\xcd\x0f\xa9\x54\x00\x45\x92\x63\xc4\x9f\x01\x1c\xf2\x33\x98\x37\x71\x62\x56\x97\x93\x2b\x9c\x50\xa1\x2d\xb9\xe7\xe8\xdd\xf8\xfd\xa7\x9c\x18\x7d\x3e\xaf\x8e\x63\x98\xc8\xe7\xd1\xa4\x9a\x9f\x2f\x7e\xb0\x49\xa6\x11\x21\xe2\x20\x21\xe4\xba\xd0\x61\x1c\xf3\x31\x3a\x3b\x3d\x1d\x3a\x17\x82\xf2\xf9\x35\xd3\x1b\xfd\xbc\x4c\xa7\x20\xc1\x23\x07\x3c\x06\x58\xe1\x03\x0b\x84\x71\x09\xf8\xa4\x17\xd2\x5a\x3c\x5a\xad\x32\x92\x05\x50\x19\x23\x59\x15\x56\xcd\xac\x8e\x91\xcc\xac\xce\xea\x20\xfb\x0c\x5d\x2e\x59\x6a\x3f\x1a\xe5\x0b\xd7\xd8\x1a\x72\x5b\x06\x2d\x89\xce\xa2\x4c\x9c\xf0\x59\x82\x17\x69\x2e\x0f\xd4\xdd\x95\x10\xae\xe0\xaf\x90\xea\x6a\xcd\xf2\x62\x58\x16\xb1\x6a\xd9\xe5\x50\x49\xac\x0a\x75\xc5\x22\x57\x6d\xd2\xf2\x7d\x4a\xcc\x81\x1c\x0d\x07\xfa\xb8\x37\xc1\xc1\x8d\x60\x90\xdc\xf2\xe0\x60\x91\x93\xa3\xf1\xd1\x68\x7c\x71\x79\x7a\x3d\xfe\xeb\xd0\x2d\x34\xcd\xd3\x77\x4d\x58\x82\x31\x2e\x5d\xc6\xd2\x27\x2b\xf7\x9a\x81\x0b\x3f\x90\xe3\x7a\xc5\x38\xfa\xf0\xe6\xf4\x6c\xf0\x9f\xa2\xfd\x9f\x8e\xfe\xf2\xc3\x68\x74\x7a\xf9\x61\x70\x7c\xba\xa9\xec\xd8\xf5\xb2\xac\xdb\x04\xab\xe3\xfe\x19\xd3\x2c\xf7\x60\x68\xa3\x73\x0e\x35\x9e\x13\xdc\x49\xeb\xea\x13\x37\x28\x97\xce\x1b\x0b\x64\x21\x85\x3f\x8d\x10\x9e\x73\x9e\x92\x9c\x13\x2b\x56\xd2\x7a\x47\x8f\x8f\xce\x06\xc7\x17\x7a\xbb\x1c\x9c\xbf\xbd\x7e\x7d\x74\xfc\x97\xd3\xf3\x93\x4f\xba\x65\x96\x8c\xb9\xb5\x21\x4a\xc3\x07\x9c\xe1\x41\x33\x10\x87\x7c\x3a\x95\x2c\x5f\x3c\xc1\x08\xe9\x8e\x41\x9f\xbd\x1f\x8d\x4f\x2f\x5b\x56\xde\x0f\xe9\xfe\x64\x16\xd7\x19\xe2\x68\x99\xf1\x5e\x48\x32\x12\xc8\x6d\xfb\xf5\xdb\x21\x1a\x0c\x85\xc2\x2f\xce\x78\x0e\x3a\x0f\xdc\xdb\x01\x5e\x66\x5c\x56\x57\x6f\x4b\x3d\xf9\x39\x18\x56\xcb\x57\xe6\x6f\x30\xfc\xf0\xdd\xf0\xe2\xe2\xec\xba\x9e\xd3\x68\x49\xc5\x6e\x5a\x59\x5c\xec\xdc\xb0\xa6\x96\x8c\x91\x08\x85\x04\x7c\x48\xe0\x26\x44\x1c\xd9\x63\x0a\x37\x23\xea\x15\xc5\x26\x71\x32\x18\x0e\xce\x07\xc3\xcf\x74\x6f\x1f\x03\x8b\x80\xe7\x16\x1a\x0c\x57\xdf\xa1\x98\xf3\xa8\xd0\x6f\x8d\x7b\x61\xb8\x03\xe0\x8c\x20\x02\xc7\xa7\x3e\x1a\xf2\x10\x5c\x6a\x94\x49\xbd\x5a\x73\x30\xe7\x29\x61\x52\x4b\x00\x0b\x3c\x9c\x86\xfb\xe8\x78\x8e\xd9\x4c\x6c\x08\xf0\x51\x5e\xbc\xc8\xbb\x4b\xf3\xfa\x48\xd6\x3a\xc7\xab\x5a\xbd\x8c\xab\x73\x5e\x5f\x9e\x46\xd2\x39\x5f\x46\x21\x9a\x0a\x5d\xf8\x96\x66\x73\xca\x50\xaf\xc0\x85\xa0\xa1\x4b\x25\xa9\x32\xca\xf1\xe0\xc4\x15\x3f\x0f\x26\x5c\xb5\xca\x44\xb6\x3a\xee\xc1\x33\xa4\x31\x75\xe0\x7c\x10\xf1\x19\x0c\x31\xe5\x60\x2d\x0c\xb2\x48\x7c\x4a\xc1\x7c\xe9\x5a\x10\xaa\x3f\xfa\x9d\x89\x37\x83\xb3\xd3\xeb\xb3\x8b\xb7\x6f\x07\xe7\x76\x6d\xbd\x59\x40\xbf\x21\x11\xbd\xcb\x7d\xa7\xc4\x84\x0a\x25\x20\x9f\x6a\x1c\xe8\xeb\x94\xa3\xe3\xe3\xd3\xe1\xb8\x71\x3f\x3c\x39\x7d\x73\xf4\xfe\x6c\x7c\x7a\x7e\x32\xbc\x18\x9c\x8f\xc7\x17\x3f\x5d\x8c\xc6\x47\xc7\xe3\xc1\x45\x0d\xf6\xa0\x58\x59\x50\xad\x9b\x4c\x83\xe1\xea\x95\x60\xae\x42\x67\x68\xec\xc2\x60\xf8\xe1\xd5\xe8\xfd\x70\x78\x71\xe9\x7e\x58\xc4\xa2\x45\x96\x26\x06\x28\xa2\x67\x26\xe3\x30\x53\x4d\x6d\x9e\x5d\xbc\x15\x93\x30\x3c\x1a\xff\xe4\x6c\xb3\xb8\x99\x6b\x6f\x52\x08\x93\x74\x9d\x56\x10\x51\x2d\xad\x8e\x4e\x3f\x9c\x5e\x0e\xc6\x7f\x1d\xfd\xd5\x0d\x7e\xee\x94\x8c\xb5\x61\xa6\x59\xa8\x9c\x50\xbb\x34\x79\x7c\x79\x7a\xea\x9e\xd5\x9f\x71\xc2\x28\x73\x06\x7a\xc8\xea\x7e\x3a\x3d\x3a\x1b\xff\x74\x7a\x2e\xd8\xd8\xbe\x6b\xda\x59\x77\x53\x00\xc8\x22\xcd\x15\x9c\xe5\x44\x23\x09\xe2\xe5\x21\xfa\xe6\xfb\x17\x0b\x33\xa1\x29\x76\xa0\x25\x32\x40\x17\xad\x25\x4b\xf0\xdc\x17\x3f\xfe\x58\x4d\x11\xab\x51\x41\x92\x55\x1f\xdb\xaa\x39\xfe\x57\xc3\x14\xec\xd1\x03\x95\x4c\xf5\x68\x87\x57\x65\x92\xe1\x90\xee\x04\x38\xa1\x87\x00\x2c\xc1\x71\x98\x90\x39\x7a\x13\x9a\x84\xd5\x90\xd4\x3c\x11\x58\xd6\x96\xda\x48\x87\xce\x27\x44\x27\xf6\x86\xde\x41\x23\x3a\xe9\x39\x32\x34\x87\xb1\x54\xdf\xcb\xb8\xcb\xc4\x12\x4c\xfb\x11\x0f\x6e\xec\x4d\xa9\x1c\x3d\x5b\x8e\xa2\x2d\x29\xc9\x1a\x1a\xd3\x28\x2e\xea\x2e\xd8\xda\xd4\x0a\x27\x00\x21\x67\xcf\xb3\x61\x63\x82\x86\x6d\x8d\x09\x32\x6e\xd4\x58\x1d\x2b\xa3\x70\xcf\x34\x8e\xcc\x96\x93\xab\x63\xc6\xee\x87\x3c\xe1\xa0\x56\x37\xac\xbb\x6a\xb9\x5e\x2b\x61\xba\x85\x3a\xb8\xea\x75\x31\x52\x3b\x3e\xa0\x9b\x49\xe5\x1d\xe0\x1b\x1a\x91\x8b\xe4\xb8\xe4\xa6\x65\x3a\x40\x6b\xbb\xe3\xf1\xf9\xc0\x66\x53\xb0\x1b\x5a\x5a\x51\x66\xeb\xe6\x9b\x9e\xdb\xd6\xd2\x5e\x63\xc5\x86\x73\xc5\x9e\xa1\x63\xe5\xfd\x18\x45\xd2\x14\x00\xef\xef\x5f\xaa\x9d\xe3\xa4\x78\x7f\x1f\x7c\xe7\xa5\xfb\x1d\x14\x93\x56\x6d\xc3\xce\x52\x78\x2b\xa3\x85\x64\x4f\x75\x3d\x5e\x86\xf0\xa0\xc5\x45\xb3\xcb\x71\xcd\xd1\x85\xca\x7d\xb4\xa2\x83\xc5\x7f\xb2\x6f\xf7\xdb\x33\xee\x9b\x03\x0e\xe1\x14\x52\x75\x15\x5f\x66\xd2\x8d\xcc\x51\x10\xdc\xf5\x0a\xff\x2c\x75\xed\xad\xef\xb6\xa1\xd3\xa0\x58\x1e\x9b\xdd\x90\xa9\x71\xb4\x4c\x70\x64\xed\xa6\xcc\x90\x52\x36\x5b\x46\x38\xb1\x65\xc9\x9d\xcf\x1e\x88\x84\x92\x82\xda\x31\xf1\x53\x90\xed\xf5\xdb\xe1\x90\xe8\x58\x27\x4d\xab\xb2\xa7\x64\x41\x20\xf5\x3d\xa7\xca\xc3\xd3\xe5\xd3\xf3\xd5\xeb\xb7\xc3\x06\xae\x72\xb8\x9b\x96\x48\x66\xe7\xa8\x07\xa6\x9d\x72\x73\xfe\x14\x14\x1b\x0c\x87\x9c\x47\x65\x3a\x95\xbc\xae\x0b\xea\xc8\xcf\x8f\x45\x93\x92\xf3\xfa\xa7\xa0\xcc\x4f\x3c\xcd\x4e\x55\x07\xca\xf4\xb1\xf8\xd5\x17\x54\x32\x13\x1f\x8b\x56\x16\xc7\xf7\x4f\x41\x31\x55\xd7\xa0\xe8\x46\x99\x6e\x4e\xff\xfc\x82\x7a\xf5\x2c\x8f\x45\x43\x6b\x70\xc6\xa7\xa0\xe2\x5b\xe8\x88\x19\xf1\xb4\x2e\x93\xb1\x21\x8c\xa4\x20\x64\x3d\xd3\xfa\x93\x50\x32\x25\x9f\x66\xf5\x96\xa8\x38\x22\x59\x03\x09\x8b\x50\x1b\x07\xf9\x52\xf2\x68\x2b\x79\x4b\xfe\x3b\xd7\x8e\x85\xe1\x4e\x88\xd7\xc0\x7c\x2d\x6c\x67\x67\x38\x7b\x54\x72\x35\xa0\x61\x7b\xff\xc9\x2b\xa6\x5c\xab\x18\x41\xfd\xe3\x88\x2f\xc3\x61\xc2\x57\x34\x04\x44\x57\x69\x5d\xcb\x23\xa4\xb7\x89\x27\x00\xc3\xad\x51\xeb\x2f\xbf\xf4\xf4\x66\xd8\x21\xb6\xc0\x59\xba\x70\x08\x37\xfb\x50\x9b\xb2\x83\xd5\xb7\xae\x1d\xdb\x81\x1d\x27\xab\xef\xd1\x98\xc6\x3d\x05\xe7\x50\x72\xe5\x0b\x68\x98\xa8\x51\x99\xe6\x68\x95\x2a\x8a\xbd\xe3\x21\xa9\xa2\x52\x32\x9c\x5d\x2c\xb3\x19\xa7\x6c\xa6\x2d\x19\x0d\xb3\x3b\xe4\x61\xc3\x94\x06\x59\x23\xed\xf2\xde\x5a\x11\xe5\x2a\xd8\x99\x17\xec\x8d\x34\x53\x89\xb4\xaa\x2f\x9b\xd3\x9f\xcb\xe6\xc9\xe5\x76\x5a\xb3\xe5\xae\x5c\xd6\xf7\x6c\x03\x2c\xf9\x17\xe9\x04\x4d\x6a\xeb\xfb\x4a\xfb\xe8\x6a\xaf\x17\xc8\xff\xe6\x55\x21\x1c\xc7\xd1\x1a\xf5\xa6\x6e\x66\xea\xaf\xf1\x22\xca\x3d\x92\x8a\xdb\xf5\xe6\x9b\x71\x65\x49\x35\xee\xc3\x21\xc1\x62\x16\xeb\x95\x79\xab\x7c\x53\x54\xb2\x61\x71\x2e\xe1\x54\x4c\xcb\x4c\x43\xe9\x3a\x3a\x46\x87\x45\x87\x2c\xa8\x18\xca\xf3\xaf\xb5\x5c\x71\xc2\x6f\x21\x26\x44\x80\x00\x11\x64\x00\x08\x41\x24\x0b\x42\x34\x3e\x1b\x29\x84\x90\xb4\x6f\xf8\x52\xd6\x31\x06\xbe\xef\x86\x31\xa0\x02\xa6\x46\xb0\x3f\x68\xfe\x39\xd0\xee\xcf\xe9\x01\x44\x6b\xc9\x0e\xb5\x01\x0f\xc0\x22\x2a\x70\x3e\x52\xc1\x62\x31\x67\x84\xb5\xa1\x0f\xd4\x0a\x3e\x2a\x12\x41\xb5\xf5\x32\x2a\xc1\x39\x44\x3b\xe1\x84\xc8\xd8\x47\x69\x40\x52\x31\xc4\x30\x72\xed\xf2\xb8\x45\xf4\x72\x43\x0c\x66\x43\x20\x7f\x1e\xa0\xf9\x4c\x88\x39\xd9\xb7\x7f\x2e\x09\x04\x5c\x66\x1c\x05\x73\x12\xdc\x40\xcf\xe0\x96\x93\xb0\x60\x8b\xe8\xd0\x22\x16\xdc\x11\x1c\xfa\x0c\x0d\x86\x47\xef\x2a\xbe\xe1\x0b\xcc\xa8\x8a\x42\x42\xb7\x73\xc2\x54\xa8\x98\x48\x02\x2a\x29\x97\xf0\x1d\x47\xe6\xba\x02\xd0\x77\x10\x21\x1a\xf1\xe0\x46\x79\x9e\x97\x02\x9f\x69\x8c\x17\x90\x58\xf9\x36\xc7\x2c\x8c\xb6\x08\xab\x75\x87\x04\xcb\x7f\x4b\xea\x29\x86\x04\x5c\x0c\x0c\xc0\x49\xe0\x07\x22\xe3\xa0\x6d\xa7\xb0\xdd\x50\xa1\x73\x60\x73\x69\x80\x8d\x41\xb2\xee\xa8\xd7\x87\x5c\xd5\x0f\x11\x30\x5b\x6f\x66\xf3\xe0\xd9\x7a\x1d\x8f\x13\x48\xab\x44\xbf\x47\x93\xf1\x68\x32\x1e\x4d\xc6\xa3\xc9\x78\x34\x19\x8f\x26\xd3\x19\x4d\xc6\xa6\x01\x3d\x00\xc2\x8c\x35\xb7\x87\x9d\xf1\xb0\x33\x1e\x76\xa6\x34\x81\x76\xaa\xe8\x40\x58\x20\x88\x11\xdb\x96\x71\x91\x55\xcc\xa8\x3c\xc5\xe1\x28\xe2\xc1\x6e\x07\xf9\xf9\x9d\x9c\x76\xb1\x30\xf1\xa2\x24\x34\x9d\x67\xe3\xd7\x62\x84\xa8\x18\xbf\x94\x22\x38\x4a\xb9\xe0\x3b\xe0\x66\x50\x50\x26\x6b\x58\x67\x72\x82\x20\xf8\x05\xe1\xd9\x2c\x21\x33\xf7\xa6\xbb\xa3\xb9\x70\xaa\x07\x6a\x67\x95\xcc\x02\xdc\xb1\xa0\x33\x25\x05\x4a\x4a\xb4\x7c\x59\x1d\x6e\x58\x2c\xec\x17\x60\xa6\x1c\xaa\x9f\xe5\xeb\x0c\xbc\xaf\x33\xb5\xd0\xc0\x9d\x54\xac\x4d\xcc\xca\x5e\xd3\x12\x94\xa6\x80\xce\x80\x4e\x58\x49\x81\xe3\x38\x6d\x1c\x79\xd1\xc5\x86\xf9\xf2\xa8\x4d\x8f\x8b\xda\xd4\x66\x70\x2c\x05\x03\xe4\x96\xc7\x27\x07\xe8\x24\x41\x95\x52\x71\x3c\x82\xf0\x8a\xad\xb0\x91\x3c\x28\x92\x07\x45\x2a\x83\x22\xc9\xa7\x0f\x9e\x14\x22\x92\x6d\x98\x3d\x99\xd7\xcc\xe8\xb1\x8e\x76\x8b\x75\xd4\x20\x62\x6f\xc2\xb0\x17\x24\x61\xaa\xa4\xab\x77\xfa\xdc\xde\xe9\xf3\xe1\x5d\x3e\x0b\x8d\xf9\xd3\x78\xe8\x1d\xbd\x7b\x5d\xf8\x59\x17\x4e\x7a\x65\x35\xde\xf4\xd3\x53\x29\x8f\xe2\x0e\x5b\x56\x6d\x3f\x89\xd3\xa7\xe8\x82\x86\x21\x2a\x13\xc9\xaa\x78\x1b\xfe\x9e\x46\xf2\xfa\xb1\x38\x49\x9d\xb3\x3e\x15\x2b\xfd\x04\xcd\xd7\x79\xa9\x74\xfc\x2b\x33\xd3\x5c\x15\x79\x1c\xfa\xa8\xf3\xdd\xa7\xa2\xcf\xb1\xe1\x9a\x60\xd2\xa7\x74\xec\x2c\xd3\x47\xab\xa5\xde\xf9\xbc\xee\x7c\xfe\x28\x34\xf9\xf4\x7b\xdb\xce\x1d\xcf\x1f\x63\xad\x3d\x25\xa7\xf3\x87\xa7\xc7\x97\xe1\x70\xfe\xf0\x74\xfa\xb2\x9d\xcd\x1f\x9e\x7e\xbf\x07\x47\xf3\x47\xa6\xe2\x17\xe3\x64\xfe\xf0\x74\xfb\xc2\x1c\xcc\x1f\x8d\x60\x9b\xb0\xd8\xc3\x10\xab\xc6\x5f\x0d\x9c\x55\xe3\xa9\x76\x6b\x2f\x18\xfb\x4a\xb6\xde\x26\x84\xe6\x5e\x07\x84\x66\x0f\xcd\xec\xa1\x99\x51\xf3\xa0\x91\x87\x66\xde\x05\x34\xb3\x15\x3a\x18\xd9\xa1\x8f\x0f\x51\x44\xd9\xf2\x4e\xe7\x7a\x18\x80\x61\xf9\xc1\x1a\xbc\x81\x3c\xe0\xf0\xfd\x00\x87\xdb\xc2\x09\x14\x4f\xb5\x01\x12\x57\x30\xa0\x3d\x32\xb1\x05\x99\x58\xb9\x68\xa4\x65\x57\x96\xca\xc5\x38\xdc\x80\x16\x57\x2a\x7d\xb3\xbe\x41\xa6\xae\xe1\xb5\xf7\xbd\x90\x06\x70\x69\x46\x05\x97\xd5\x5d\x5c\xf6\x05\x6d\xcd\x87\x60\x70\x54\x81\xb4\x79\xa6\x3b\xa3\xef\x24\x1d\x8d\xeb\x88\x1b\x95\x5b\x5e\xf7\x18\x8c\xb5\x11\xee\xb1\x81\xad\x71\x50\xba\x3e\x82\x68\x25\xd5\x44\x2b\x1c\xf2\x67\x84\xab\xfb\x44\x81\x1a\x3b\xc3\x15\xe5\xc8\x2f\x12\xbe\x04\x94\xc1\x6a\x7b\x85\xd9\x43\x72\xb3\x0d\x20\xa5\x5a\xef\x3d\x80\x72\x5b\x70\xbf\x3d\xe0\xb7\x07\xfc\xf6\x80\xdf\x1e\xf0\xdb\x1c\x9d\x07\xfc\xae\x9d\xb4\x3d\xe0\x77\xb9\x37\x3b\x00\xfc\xf6\xc0\xd7\x1e\xf8\xda\x03\x5f\x7b\xe0\x6b\x0f\x7c\xed\x81\xaf\x3d\xf0\xb5\x93\x1a\x06\x1a\xb4\x76\x82\x6d\x6a\xb3\x3b\x1e\x74\x7b\x5d\x1e\x0c\xba\x48\xf6\x60\xd0\x90\xc3\x83\x41\x7b\x30\xe8\x6d\xc0\xa0\x7b\x1e\x0c\xda\x83\x41\xef\x00\x0c\xba\x18\x45\x09\x20\x2a\xa4\x09\x5c\x9b\xad\x41\xf9\xad\xde\x14\x98\x51\x9e\x52\xfd\x2a\x9f\xd8\x41\x3d\x06\xd8\x9e\x4a\x84\x9e\x51\x51\xf9\xb6\x21\x0f\xa9\x35\xa2\x69\xcd\x1a\x75\xc0\x5f\x2a\x55\x46\x52\xba\x0e\x00\xb1\x5f\x98\x09\x2c\xb4\x6f\x36\x0e\x77\xe4\xb7\x92\x09\xfa\x51\xf0\x00\x3b\xba\x3c\x54\x51\x5f\x72\xf7\x87\x11\x21\xf9\x0d\xd5\x8c\x66\xf3\xe5\xa4\x1f\xf0\xc5\x41\xc9\x7d\xe3\xa0\x8e\x19\xd3\xe6\x85\xa0\xdc\x16\xf2\x23\xe5\x66\xe0\x39\x5b\xfb\x28\xd8\xaa\xaa\x5f\xba\x6f\x7a\x09\x9d\x5f\x40\xcb\x53\x50\x51\x3f\x70\x23\x44\x83\xcb\x0b\x2c\x70\x4b\x89\x08\x28\xcd\x2b\x22\x17\xbb\x46\xc4\x4a\x48\x1c\xd1\x00\xa7\xe0\x60\x80\x50\x5a\x78\x3f\x14\xd2\xe3\x92\x14\x11\xc6\x6d\x8e\x07\xad\x24\xd4\x99\xec\x64\x44\x5d\x7c\x17\xec\xd5\xee\xea\x3e\xde\x5f\x8d\xdb\xfb\xfd\x38\x57\xe3\xf5\xb9\xad\x5c\x93\x5b\xed\xb5\xbd\x6e\x7c\x87\xca\x97\x4f\x45\x86\x8e\xc6\x52\x65\x8b\xbb\x9d\xd3\x60\x8e\x4c\xac\xbe\x8c\xa3\x64\xc9\x1c\x27\x40\x75\x6a\xba\x3e\xbe\x38\x1f\x5f\x5e\x9c\x9d\x9d\x5e\xba\xde\x03\xaa\x2b\xda\x1b\x19\x59\xab\x18\x92\xf2\xb7\xd3\x53\xc1\x32\x4d\xe4\xc9\x60\x4e\x82\x9b\x9e\x09\x13\x63\x66\xeb\xd9\xc2\x0e\xb6\xd9\x66\x36\x91\xc1\x16\xf4\xc7\x5e\x71\xc0\x94\x40\x90\x1a\xe5\x63\xac\xa4\xd8\x87\x97\x2f\xbf\x1f\xe6\x79\xda\xd9\xf7\x4b\xc6\x88\xf4\xf0\x90\x1e\x1e\xf2\x8b\x00\x39\xf1\xf0\x90\x5b\x2d\x68\x8f\x0c\xf9\x54\x91\x21\x3d\x28\xa4\x2c\xf3\xd4\x40\x21\x61\x73\x42\xc7\x83\x93\x4b\x80\xec\x50\x57\x90\x0a\x5e\x4c\xf0\x35\x0e\x17\x6a\x7e\x0a\x59\xa6\x1c\x89\x16\x38\xde\x62\x4a\x64\x61\x51\x76\x77\x54\xf7\x68\x95\x1e\xad\xd2\xa3\x55\x7a\xb4\xca\x72\xc2\xfd\xd0\x2a\x3b\x43\xb6\x79\x18\xcb\xaa\x30\xf3\x30\x96\x1e\xc6\xd2\xc3\x58\x7a\x18\x4b\x0f\x63\xd9\x7a\x6a\xf2\x08\x96\x1e\xc1\xd2\x23\x58\x7a\x04\xcb\x0a\x82\xe5\x4b\x8f\x60\xe9\x11\x2c\x1f\x1d\xc1\xb2\x4b\x4f\x26\x98\x85\xb7\x34\xcc\xe6\xb5\xbe\x58\x1a\x34\x32\x3f\x1d\xbc\x4c\x0f\x97\xe9\xe1\x32\x3d\x5c\xa6\x87\xcb\xf4\x70\x99\x9d\xe9\xe3\xe1\x32\x3d\x5c\xa6\x87\xcb\xf4\x70\x99\x1e\x2e\xd3\xc3\x65\x7a\xb8\x4c\x0f\x97\xe9\xe1\x32\x3d\x5c\xa6\x87\xcb\x7c\x42\x70\x99\x38\x8e\xd3\x4e\x5e\x5c\x1e\x23\xd3\x63\x64\x7e\x79\x18\x99\x1e\x1e\x53\xfe\x7c\x0c\x90\x87\xc7\xd4\x3d\xb9\xc4\x2c\x98\x93\x44\x5e\x99\x4d\x69\xa0\x1c\x13\x75\x06\xbd\xde\x8f\x23\x9c\xa6\x92\x74\x1f\x3f\xa2\xbe\xbc\x2b\x15\x8b\x63\x58\xcd\x80\xfe\x9d\x43\x67\x5c\xed\xc9\x5d\x03\xc8\xdc\xd3\x7c\x74\xb5\x67\xac\x0b\x8f\xcf\x89\x3c\x3e\xe7\xd3\xc4\x93\x7a\xca\xf8\x9c\xdb\xc3\xa5\x78\x64\x4f\x8f\xec\x59\xf9\x79\x64\x4f\x8f\xec\xf9\xfb\x46\xf6\x44\xf7\x12\xa8\x47\x61\x28\x14\x90\x37\x11\xb9\x43\x1f\x60\xe8\xe8\x24\xa1\xe2\x7c\x04\xa7\x2a\x29\x6c\x44\x8e\x98\x24\x42\xcd\x43\xef\x19\xbd\x43\x27\x7c\x81\x29\x43\x23\x1e\xdc\x10\x88\xfb\xc2\x51\xc4\x6f\xd1\x09\xbd\xc1\x69\x56\x96\xbe\xe0\xf4\xb6\x58\x2c\x19\x0d\x70\x46\xe4\xe1\x51\xe2\x7c\x71\xd9\x0a\x41\xd2\xdc\x84\x46\x6b\x16\xa0\xa3\xa1\x0d\x9a\x65\x1a\x91\xbb\x15\x8f\x7a\x21\x74\xcd\x2e\x8a\xc5\x10\x3e\xf0\x68\xb0\x98\x95\x85\xb1\x73\x42\xed\x95\xf7\xea\x98\x56\xb5\x89\xaa\x77\x63\xbb\x09\xf0\xa0\xac\x1e\x94\xd5\x83\xb2\x56\x7e\x1e\x94\xd5\x83\xb2\x7a\x50\x56\x0f\xca\xea\x41\x59\x5d\x64\xf2\xa0\xac\x9d\xa6\xf3\x73\x06\x65\xdd\x3d\x4c\xa9\x44\x22\x15\x6d\x5a\x12\x01\xc3\xb4\x9e\xf6\xe5\x81\xb5\x3a\xf1\x58\x51\x13\x94\xab\x07\x6b\x75\x34\xf6\x65\x80\xb5\xea\xc6\x64\x15\xf2\xf4\x93\xae\x59\x50\x2d\x6e\x1b\xb9\xe0\x33\x3c\x23\x2c\x3f\x12\x7a\xe4\x57\x8f\xfc\xea\x91\x5f\x8d\x1a\x3f\x3b\xe4\xd7\xfa\xec\x2b\x7d\xdc\x6d\xc2\xb2\xac\x2d\xbb\x98\x70\xf4\x47\x32\xe1\x89\x9e\x99\x3a\x27\xa2\xfa\xe2\xab\x49\x16\x1b\xbf\xd6\xed\x72\xf5\x9e\xb6\xd8\xaf\x36\xed\xb2\x8e\xbc\x54\xf6\xb4\x21\xb8\x0a\x9d\xd0\xb2\x07\x42\x31\x9e\xc2\xf2\x96\xe7\xb4\x44\x5d\xd6\xa8\xb0\x4c\x61\xea\x84\x06\x60\x5c\x3e\xc3\x9f\x11\xc9\x7a\xca\x41\xe9\x40\x4a\xdb\x03\xc8\x96\x13\xec\xff\x2c\xc3\x34\x0f\xda\x44\x79\x98\xee\x63\xa2\x30\xfe\x5e\xd0\x85\x73\xa7\xad\xcf\x06\x52\xd8\x09\x07\x9c\xde\x07\x0f\x78\x73\x57\x31\xdb\x20\x9f\x30\xac\xb0\xcb\xf5\xeb\x13\xb9\x43\x79\xcf\x24\x7b\xbf\x3f\x13\x74\x62\x8b\x67\x8e\xf2\xb6\xc9\x8d\x47\xda\xe1\x46\x95\xf0\x78\xc6\x4f\x03\xcf\xd8\x02\x2f\xdc\x7f\xf9\x8d\x84\x15\x6e\xe3\xab\xb6\xfd\xea\xc9\x63\x07\xb7\x3e\xf2\xef\x01\x84\x3d\x80\xf0\x93\x81\x97\xf2\x00\xc2\xdb\xaf\x6a\x8f\x22\xfc\x54\x51\x84\x5b\x67\xdb\x43\x09\x7f\xbe\x50\xc2\x1e\xb1\xd7\x23\xf6\x7a\xc4\x5e\x8f\xd8\xfb\xc9\x10\x7b\x3d\x30\x6f\xb3\x8e\xe9\x81\x79\x3d\x30\xaf\x07\xe6\xf5\xc0\xbc\x1e\x98\xb7\xeb\x41\xc4\xa3\xf3\x7a\x74\x5e\x8f\xce\xeb\xd1\x79\x2b\xe8\xbc\x2f\x3c\x3a\xaf\x47\xe7\x7d\x74\x74\x5e\xfd\xe7\xe7\x86\x97\xeb\x01\x73\x3d\x60\xae\x07\xcc\xf5\x80\xb9\x1e\x30\xd7\x03\xe6\x7a\xc0\x5c\x0f\x98\xeb\x01\x73\x3d\x60\xae\x07\xcc\xf5\x80\xb9\x1e\x30\xd7\x03\xe6\x7a\xc0\x5c\x0f\x98\xfb\x45\x02\xe6\x16\xd3\xdf\xdd\x6d\xc9\x63\xe7\x7a\xec\xdc\x2f\x0f\x3b\x57\x30\x7f\xdf\x03\xe8\xca\x9f\x0f\x53\xf1\x00\xba\x32\x9f\xc7\xaf\x45\x1e\xbf\xf6\x69\x42\x6f\x3d\x65\xfc\x5a\x8f\x42\xeb\x51\x68\x91\x95\x5b\x3c\x0a\xad\x39\x0c\x8f\x42\xfb\x3b\x42\xa1\xf5\x50\xa6\x1e\xca\xd4\x43\x99\x56\x7e\x1e\xca\xd4\x43\x99\x7a\x28\x53\x0f\x65\xea\xa1\x4c\x5d\x64\xf2\x50\xa6\x9d\xa6\xf3\x73\x86\x32\x9d\x67\x59\xfc\x96\x54\xfb\x64\x00\x18\xca\xa2\xb5\x64\x9e\x64\x87\xe8\xc7\x17\x3f\xfe\x58\x4d\x11\x1c\x7a\x88\xe0\x24\x5f\xc7\xe2\xff\xf2\x20\x4b\x5d\xa0\xa4\xa8\x11\xcf\xd4\x43\x96\x3a\x1a\xfb\x32\x20\x4b\x3d\xca\xa8\x47\x19\xf5\x28\xa3\x46\x8d\x9f\x1d\xca\xe8\xef\x05\x01\xd2\xe6\x85\xf0\xd9\x80\x41\xda\x2e\xdd\x37\xbd\x84\x76\x02\x4a\xde\x07\x4f\xf2\xe9\x02\x41\xee\xea\x3e\xde\x5f\x8d\xdb\xfb\xfd\x99\x20\x38\x7a\x3c\xc6\xa7\x81\xc7\xf8\xe8\xc8\xc6\x75\x00\xc8\x57\xdd\xd0\x1f\xbb\x01\x3f\x3e\x55\xe8\x47\x8f\xfa\xe8\x51\x1f\xbf\x08\xec\x12\x8f\xfa\xb8\xd5\x82\xfe\x22\x00\x1f\x9f\x0c\x48\xa3\xc7\x67\x94\x65\x3c\x3e\xa3\xc7\x67\xf4\xf8\x8c\x1e\x9f\x51\xa7\x79\x7c\x46\x8f\xcf\xe8\xf1\x19\x3d\x3e\xa3\xc7\x67\xf4\xf8\x8c\x1e\x9f\xf1\x61\xf1\x19\x3d\x34\xa3\x87\x66\xf4\xd0\x8c\x1e\x9a\xb1\x06\xcd\xf8\xd2\x43\x33\x7a\x68\xc6\xcf\x05\x9a\xd1\xe3\x33\x3e\x2e\x3e\xa3\x47\x68\x74\x20\x34\x3e\x0e\x7d\xbe\x24\x94\xc6\xc7\xe3\xa8\xa7\x8b\xd4\xf8\x78\x34\x7a\xba\x68\x8d\x8f\xb4\xf2\x9e\x1c\x62\xe3\xa3\xd1\xe5\xd3\xef\x78\x3b\x47\x6d\x7c\xac\x75\xf7\x94\x90\x1b\x1f\x87\x26\x5f\x06\x7a\xe3\xe3\xd0\xea\xcb\x46\x70\x7c\x1c\x1a\xfe\x1e\x50\x1c\x3f\x01\x25\xbf\x18\x24\xc7\xc7\xa1\xdd\x17\x86\xe6\xf8\xa8\x44\x7b\xe2\x88\x8e\xbf\x37\x58\x47\x1c\xc7\x69\x27\x17\x27\x8f\xe5\xe8\xb1\x1c\x3d\x96\xa3\xc7\x72\x7c\x0a\x01\x2b\x45\xda\x8e\x50\x1d\xcd\x0a\x7f\xaf\xf8\x8e\x7a\x9d\x1f\x47\x38\x4d\xcf\x8d\xdb\x56\xa0\x51\x4f\xb3\x83\xce\xee\xe1\x20\x91\x87\x83\x7c\x9a\xf0\x45\x1e\x0e\xd2\xc3\x41\x7a\x38\x48\x0f\x07\xe9\xe1\x20\xbf\x10\x38\x48\xc0\x83\x0b\x43\xa1\x0c\xbc\x89\xc8\x1d\xfa\x00\x03\x40\x27\x09\x15\x47\x0e\x38\xa8\x48\x91\x21\x72\xc4\x24\x11\x0a\x12\x7a\xcf\xe8\x1d\x3a\xe1\x0b\x4c\x19\x1a\xf1\xe0\x86\x40\x9c\x11\x8e\x22\x7e\x8b\x4e\xe8\x8d\x38\x85\x97\x64\x28\xb8\x85\x2d\x16\x4b\x46\x03\x9c\x11\x79\x1e\x93\x10\x4f\x5c\xb6\x42\x90\x34\xe5\xa0\xd1\x9a\x05\xe8\x68\x68\x43\xe5\x98\x46\xe4\x6e\xc5\xa3\x5e\x08\x5d\xb3\x0b\x54\x31\x84\x0f\x3c\x1a\x2c\x66\x65\x91\xea\x9c\x16\x7b\xe5\xbd\x3a\x9c\x51\x8d\xdc\xe5\x6e\x78\x54\x4d\x8f\xaa\xe9\x51\x35\x2b\x3f\x8f\xaa\xe9\x51\x35\x3d\xaa\xa6\x47\xd5\xf4\xa8\x9a\x2e\x32\x79\x54\xcd\x4e\xd3\xe9\x51\x35\xf3\x62\x1e\x55\xb3\x9d\x0e\x1e\x55\xf3\xa9\xa3\x6a\xea\xc6\x64\x15\xf2\x94\x93\xae\x59\x50\x2d\x6e\x1b\xb9\xe0\x33\x3c\x23\x2c\x5f\x39\x1e\xa2\xd3\x43\x74\x7a\x88\x4e\xa3\xc6\xcf\x0e\xa2\xb3\x3e\xfb\x4a\xef\x76\x1b\x9c\x2c\x6b\xcb\x2e\x26\x1c\xfd\x91\x4c\x78\xa2\x67\xa6\xce\x89\xa8\xbe\xf8\x6a\x92\xc5\xc6\xaf\x75\x2b\x5a\xbd\xa7\x2d\xd6\xa6\x4d\xbb\xac\x23\x09\x95\xf5\x6b\x08\xbe\x32\x27\xb4\x7c\xfb\x5e\x8c\xa7\xb0\x93\xe5\x39\x2d\x51\x84\x35\x2a\x2c\x53\x98\x3a\xa1\x01\x18\x97\xac\xf0\x67\x44\xb2\x9e\xf2\xd0\x39\x90\xd2\xf6\x00\xb2\xe5\x04\xfb\x3f\xcb\x30\xcd\x83\x10\x51\x1e\x76\xfa\x98\x70\x79\x4f\x00\x06\x76\x47\x40\xb0\xb9\xdf\xd2\x67\x83\xfe\xea\x44\x6e\x4d\xef\x03\xdd\xba\xb9\xb7\x94\x6d\x90\x4f\x18\x01\xd6\xe5\xfd\xf4\x29\x3d\x82\xbc\x73\x8e\xbd\xdf\x9f\x09\x9a\xac\xdb\x53\x25\xb7\x15\x55\x9c\x55\x3c\xfe\xec\xd3\xc0\x9f\xad\xc3\xc1\xfe\xc9\xc3\xc1\x7a\x38\x58\x0f\x07\xfb\x85\x40\x25\x79\x38\x58\x0f\x07\xeb\xe1\x60\x3d\x1c\xac\x87\x83\xf5\x70\xb0\x1e\x0e\xd6\xc3\xc1\x7e\x59\x70\xb0\x4e\xa5\xcb\xe3\xc4\x36\xab\x89\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x96\x8b\x79\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\x87\xa2\x78\x9c\x58\x8f\x13\xeb\x71\x62\x3f\x17\x38\xc6\x27\x0a\xc8\xe5\x71\x62\x3d\x4e\xac\xc7\x89\xf5\x38\xb1\x1e\x27\xd6\xe3\xc4\x7a\x9c\x58\x8f\x13\xab\x9a\xf0\x38\xb1\x1e\x27\xf6\x53\xaa\xa5\x1e\x27\xb6\x3a\x14\x8f\x13\x5b\xf9\x79\x9c\xd8\x4e\x8c\xe2\x71\x62\xeb\x7d\xf2\x38\xb1\x1e\x27\xd6\xe3\xc4\xc2\xcf\xe3\xc4\x9a\x64\xf2\x38\xb1\x1e\x27\xb6\xf8\x79\x9c\x58\x8f\x13\xab\x47\xe1\x71\x62\x5b\xf8\xcd\xe3\xc4\x7a\x9c\x58\x8f\x13\xeb\x71\x62\x3d\x4e\xac\xc7\x89\xf5\xce\x39\x1e\x27\xd6\xe3\xc4\xee\x1e\x27\xb6\x57\x58\x46\x24\x64\xac\x06\x15\x1a\x2b\x91\xf6\xe1\xe5\xcb\x3f\x0d\xf3\x3c\xbb\x82\x94\xf5\x80\xb2\x1e\x50\xd6\x03\xca\x7a\x40\x59\x0f\x28\xfb\xe8\x80\xb2\x3b\x04\x08\xf2\xe0\xb4\x1e\x9c\xf6\x61\xc1\x69\x61\x73\x42\xc7\x83\x93\x4b\x80\x09\x52\x77\xe7\x0a\xcd\x50\xf0\x35\x0e\x17\x6a\x7e\x0a\x59\xa6\x1c\x09\x17\x38\xde\x62\x4a\x64\x61\x51\x76\x77\x54\xf7\xa8\xb9\x1e\x35\xd7\xa3\xe6\x7a\xd4\xdc\x72\x82\x47\xcd\xb5\x4e\x82\x47\xcd\xf5\xa8\xb9\x1e\x35\xd7\xce\x19\x1e\x35\xd7\xa3\xe6\x3a\x47\xee\x51\x73\x3d\x6a\xae\x47\xcd\xf5\xa8\xb9\x1e\x35\x37\x1f\xa0\x47\xcd\xad\x66\x78\xca\xa8\xb9\x5d\x7a\x32\xc1\x2c\xbc\xa5\x61\x36\xaf\xf5\xc5\xd2\xa0\x91\xb9\x33\x46\xef\x27\x87\xe7\xfd\xdd\xa0\xf3\x7a\x6c\x5e\x2b\x36\xef\xc3\xd3\xe6\x4b\xc2\xe5\x7d\x1c\x4e\x7a\xba\x98\xbc\x8f\x43\x9f\xa7\x8b\xc7\xfb\x08\xab\xed\xc9\x61\xf1\x3e\x0a\x4d\x3e\xfd\xde\xb6\x73\x1c\xde\xc7\x58\x6b\x4f\x09\x83\xf7\xe1\xe9\xf1\x65\xe0\xef\x3e\x3c\x9d\xbe\x6c\xec\xdd\x87\xa7\xdf\xef\x01\x77\xf7\x91\xa9\xf8\xc5\x60\xee\x3e\x3c\xdd\xbe\x30\xbc\xdd\x47\x23\xd8\x13\xc7\xda\xf5\x30\xbb\x1e\x66\xd7\xc3\xec\xfe\x1e\x60\x76\x3f\x2f\x84\xdd\x67\xe8\x12\xb3\x60\x4e\x12\x79\x5d\x31\xa5\x81\x72\x0a\x2b\x6e\x5e\xe4\x95\x94\xe8\xc3\xb0\x1a\x4c\x82\x1a\x03\x4d\x3e\x7e\x6c\x2f\x6c\x86\x08\xca\x8a\x7c\x40\x91\xbd\xdf\x8f\x13\x50\x24\x65\x80\x47\xf6\xf5\xc8\xbe\x1e\xd9\xd7\x23\xfb\x7e\xae\xc8\xbe\xdb\x23\x04\x79\x4c\x60\x8f\x09\x5c\xf9\x79\x4c\x60\x8f\x09\xfc\x7b\xc7\x04\xbe\x8f\x40\xf5\x68\xc2\xf7\x46\x13\xde\x7e\x02\x3c\x0e\xb1\xc7\x21\xf6\x38\xc4\x95\x9f\xc7\x21\xf6\x38\xc4\x1e\x87\xd8\xe3\x10\x7b\x1c\x62\x17\x99\x3c\x0e\x71\xa7\xe9\xfc\x9c\x71\x88\x77\x8f\xcc\x2b\xc1\x77\x45\x9b\x96\x44\x80\xed\xad\xa7\x7d\x79\xf8\xc4\x4e\x08\x62\xd4\x84\x5e\xec\xf1\x89\x1d\x8d\x79\x7c\x62\x8f\x4f\xec\xf1\x89\xed\xdd\xf2\xf8\xc4\xc8\xe3\x13\x97\x98\xd0\xe3\x13\x7b\x7c\xe2\xcf\x07\x9f\xd8\xa3\x13\x7b\x74\xe2\xae\x1d\x47\x8f\x8e\x4e\xec\x74\xa4\xd2\xe2\x67\x5c\x78\x12\xb9\xdc\x8b\x0c\xb7\x3d\x23\x77\xe1\xb3\xf7\xca\x21\x88\xbc\x93\x92\xbd\xdf\x1d\x9d\x94\x0a\xb1\xfb\xf0\x08\xc8\x0d\x1e\x6e\x6a\x3b\x69\xf2\x5c\x83\x98\xea\xa2\xf6\xba\x13\xdb\xbf\x73\xa3\xce\xd5\x9e\x0b\x59\x79\xcf\xe0\x1c\x0f\xaf\xfc\x44\xe1\x95\x7f\x90\x90\xca\xad\x90\xc9\xcf\xa4\xc5\x16\xa0\x47\xd0\x9c\x24\xe4\x8a\xdd\x0b\xed\x52\x79\xc6\x77\x87\xbc\xdc\x0c\xd4\xaa\x1b\x2e\x25\x6a\x42\xb6\xda\x2d\x82\x5d\x01\x83\xb4\x5b\x78\xe2\xc6\x21\xa0\x32\x78\xde\x46\x2d\x37\x61\x6e\xee\x04\xd8\x73\x67\xa8\x95\x1b\xd3\xa7\x0a\x49\xe5\x9c\xf2\x22\xa4\xe3\xfe\x38\x90\xdb\xb0\xdc\xe3\xc1\x51\x7e\x81\x48\x89\x0f\x80\x8a\xb8\x29\x00\x62\x1b\x60\xdc\xe6\x3c\xba\x11\x36\x56\x39\xfa\xc8\x03\x64\x6d\x01\x90\xf5\xec\x19\xe8\x74\xa5\x5d\xcf\x04\xf6\xee\x86\x5d\x65\xbf\x53\x6d\x43\xae\x7a\x86\xc6\x5c\x5d\x05\x4b\x08\xab\x7d\x94\x82\x1b\x1e\x4d\xe5\x6d\x93\xaa\x10\x80\xac\xae\xf6\xd0\x1f\x31\x0b\xff\x08\x59\x30\x62\x9c\xf5\xfe\x45\x12\xae\xae\x42\x85\x9a\x2c\x51\xb0\xf4\xf9\x0e\xea\x87\x18\x96\x3e\x42\x3f\x13\x94\x10\xa1\x5f\x88\xb1\x4a\x7b\x95\xc2\xcc\x32\xfc\xac\x17\x1c\x70\xac\x30\x43\xdf\xbf\x50\x5a\x3e\x3a\x9a\xf0\x15\x41\x2f\x5f\xa8\x0f\x88\x66\xd2\xaa\xf6\x0c\x91\x34\x25\x2c\xa3\x38\x12\xea\x57\x0b\xd4\xd6\xb6\x80\x54\x57\xac\x13\x8c\x54\x27\x14\x29\x3b\x88\xd4\x0b\x33\x83\x15\x43\xca\x44\xf9\x69\x43\x90\xaa\x01\x48\xfd\x7c\x74\x79\x3e\x38\x7f\x5b\xcd\xb5\x09\x84\xd4\x76\x08\x52\x39\x80\xd4\xcb\xef\x5f\xbc\x28\x27\xd8\x81\xa3\xcc\xa1\x15\x86\xc9\x0a\x80\x91\x38\x2b\x2c\x27\x8c\x64\x32\xdf\x32\x25\x43\x1e\x1e\xd3\x30\x29\x5d\x3f\xfe\x52\x6e\xcf\x05\x2d\x55\xc3\x95\xaa\x36\x75\xf3\x43\x7a\x2d\x96\xf8\x75\xc6\x6f\x08\xd3\xa3\x1f\x9d\x5e\x7e\x18\x1c\x9f\x1e\x1d\x1f\x5f\xbc\x3f\x1f\x5f\x8f\x2f\xfe\x72\x7a\x2e\x46\xef\xee\x40\x13\x26\x95\x6a\x25\xa6\xd7\x09\xe7\x6a\x58\xda\x70\x54\xa2\xb4\x6a\xf6\xfa\xa7\x8b\xd1\xf8\xfa\xfa\xd0\x9a\x36\xbc\xb8\x1c\xd7\xa0\xbc\x36\xc1\xbc\x2a\x4e\x42\xc6\x10\x5c\x0c\x68\xc5\xbb\x72\xc3\x5d\x6d\x81\x76\xa5\xff\x2a\xd0\xa7\x94\x6c\xec\x14\xca\x79\xd0\x21\x94\xb3\x00\x48\xfd\x14\x11\x9d\x85\xf6\xd7\xfd\xbc\xe2\x83\x3b\x7d\x70\xe7\x13\x0e\xee\xd4\xa0\x54\x06\xfd\x04\x85\x8f\xea\x9f\x51\x8e\x65\x7c\x02\x63\x1e\xe5\xc3\x1a\xcc\x18\xcf\x3f\x4b\xcb\x99\x58\x4e\x25\xa1\x57\x32\x7e\x8e\x49\xb2\xa8\x7b\x8e\xf4\x24\xd3\x9f\xde\xc5\x09\x91\x10\xb6\x16\x77\x35\x65\xe3\xb3\xbe\xe8\x56\xcf\x6d\x5a\xed\xce\x79\x36\xa8\x79\xa6\x23\x6d\xb5\xb1\xb5\x25\xdb\xbb\xa5\x2c\xe4\xb7\x79\xe5\x96\xd8\x53\xb9\xdc\xcc\xe0\xd6\xc2\x84\x65\xb5\xf9\x3e\x4c\x6c\x6c\xc5\x5e\xd8\xd5\xb4\x7b\xe0\x4d\xbb\x4d\x05\xa1\x5d\xa9\x73\xf5\xc4\xe9\xa8\xba\xc4\xa4\xf5\x31\x8e\x30\xab\xf8\x5c\x15\x95\x5e\xed\xa9\x6a\x4b\xe9\xba\x47\x57\x7b\x06\x2d\xf7\x36\x68\x9a\x64\x41\xb8\x7d\x93\x9a\x0c\x79\x86\xd6\x60\x5a\xc5\x56\x1d\x03\x50\xdb\x1d\xfa\x0f\xbc\x43\xff\x03\x3b\xf4\xe7\xce\xa4\x55\xbf\xc5\x29\x75\x85\x40\xe5\x3e\x8b\x6f\x06\x67\xa7\xc3\xa3\xf1\x4f\xce\x86\x0b\xdc\xe4\xf6\x26\xc5\xca\x4e\xd7\x69\xc4\x67\x2d\xad\xe6\x9e\x92\x7f\x75\xd9\xe6\xaf\xf6\x9c\xde\xdc\xb5\x61\xa6\x59\xc8\x97\x59\xd7\x26\x9b\x9d\x33\x7f\xc6\x09\xa3\x6c\x56\x6f\xfc\x53\xbb\xcd\x7b\x8f\x61\xb4\x99\xc7\xf0\x87\x47\xf4\x18\x7e\x24\xef\x7f\x13\xfb\xbb\xdc\x89\xc7\x8d\xe9\xf1\x61\x00\x3b\x0a\x03\x78\x9c\xf8\x94\xbc\x95\x1e\x65\xbd\xc1\x50\x0f\x18\x96\x70\xcb\xaa\x10\xdc\xb8\xb9\x1f\x7a\x81\xcd\x9f\x2e\xe3\x98\x27\xd9\x61\x71\x7d\x0b\x6e\xa3\x70\x50\xd3\x26\xd6\xc6\x2e\x8c\xff\x3a\xfc\xe9\xe8\x2f\x3f\x8c\x94\xad\x65\xd3\xa0\xb0\x5d\x07\xc6\xd4\x0d\x9e\x36\x71\xf0\x74\xe2\xdd\x1e\x2f\x18\xeb\xcb\x8f\x70\x98\x67\x59\xfc\x96\x54\xfb\x64\xf8\x35\xcb\xa2\xb5\x64\x58\x1f\x3f\xbe\xf8\xf1\xc7\xca\x60\x3e\x71\xa8\x42\xcb\x70\xf2\xb2\x3b\x19\xcf\x67\x16\x72\xf0\xa5\x44\x01\xb4\xc0\x87\x14\x66\x58\x8f\x22\xe2\x51\x44\x9c\x9b\xde\xef\x02\x45\xe4\xc9\xa1\x60\xb4\x87\xe5\x1c\xf8\xb0\x9c\x4a\xb9\xa7\x1d\x1e\x73\xc5\x9e\xa1\x63\xf5\x3e\x66\x14\x49\x39\xe7\x80\x9e\x4d\xe1\x05\x39\xf9\x1e\x21\x14\x93\xa2\xde\x30\x9b\x15\x2e\x48\x68\x21\xd9\x44\x5d\xf1\x3d\x10\xfa\xad\x0e\xdd\xf8\xa2\xdf\x8e\xf1\x6f\x36\xd8\xde\x6c\x78\x68\xd6\x62\x5f\xf0\xbb\x0d\x8f\x43\xbb\xa7\xf5\x76\xc3\xe3\xd0\xe4\xcb\x78\xbf\xe1\x71\x68\xf5\x65\xbf\xe1\xf0\x38\x34\xfc\x3d\xbc\xe3\xf0\x09\x28\xf9\xc5\xbc\xe5\xf0\x38\xb4\xfb\xc2\xde\x73\x78\xa4\xb8\x55\xf1\x3f\x70\x0f\x61\x04\xf5\x8f\x23\xbe\x0c\x87\x09\x5f\xd1\x90\x24\xf9\x0d\x6a\x1e\xb4\xbb\xcd\xe3\xb8\x70\x93\x60\xd4\xfa\xcb\x2f\x3d\xbd\x19\x76\x78\x28\xd7\x59\xba\x70\xa9\x35\xfb\x50\x9b\xb2\x83\xd5\xb7\xae\x1d\xdb\x11\xcf\x29\xab\xef\xd1\x98\xc6\xbd\x97\x6a\x8a\x4c\x77\xa4\x80\x86\x89\x1a\x95\x79\x3f\xa2\x52\x45\xb1\x77\x3c\x24\x87\x48\xdd\x68\xe4\x75\x67\x17\xcb\x6c\xc6\x29\x9b\x69\x13\x5e\xc3\xec\x0e\x79\xd8\x30\xa5\x41\xd6\x48\xbb\xbc\xb7\x16\x3f\x20\xb0\x25\x67\x38\xc9\x24\x7b\x1e\xa2\x0b\xf6\x46\xda\x59\x45\x5a\xd5\x1f\xc7\xe9\x93\x62\xf3\x46\x71\x3b\xde\xd8\x72\x57\x7c\x2f\x7a\xb6\x01\x96\x8c\x6e\x3a\x41\x93\xba\x64\x6f\x9b\x50\x76\x90\xce\x15\xae\x75\x20\xff\x9b\x57\x85\x70\x1c\x47\x6b\xd4\x9b\xba\x99\x49\x06\x61\x6b\x33\x5d\x61\xa0\x6b\x76\x74\x70\xc4\xd2\x59\xac\x31\xbd\x32\x6f\x95\x0d\x51\x25\xbc\x18\xce\xb3\x03\x10\x33\x86\x85\xa4\xa1\x74\x6e\x2e\xab\x30\x71\xe3\xa2\x03\xca\x66\x64\x51\x0e\x8b\x04\x73\x59\x6b\x39\x64\x42\x09\x34\x11\x93\xd5\xa0\x30\x48\x16\x84\x68\x7c\x36\x42\x29\x09\x12\xb1\xb3\x19\xfe\x60\x95\x10\xc0\x6f\xfb\x2f\x5f\xf5\x5f\xc8\x28\xc0\xdc\x00\x30\x56\x7e\x99\x85\x81\x4e\x25\xa8\xec\xfe\xe5\xf0\x07\x7b\x39\xbc\xe9\xdd\x70\xb8\xba\xd7\x6f\x04\x20\xca\x32\x92\x4c\x31\xb8\x8c\x8a\xda\xc1\xa9\x40\x5e\xc6\x3d\x43\x3d\x34\x98\xa2\x9f\x69\x42\x66\x4b\x9c\x84\x86\x5b\x81\x0a\x22\xe1\x68\xcd\x97\x49\x6e\x7e\x16\x6d\xf4\xd0\xab\x17\xba\xf0\x45\x36\x27\xc9\x2d\x4d\xc9\x3e\xa2\x53\xf4\xe1\x3f\xcf\x8e\xce\x11\x4f\xd0\xeb\xe1\x1b\x30\x03\x75\xac\xef\x7b\x47\x7d\x83\xe1\x60\xd8\xb1\x8a\x6f\x1c\x55\x14\xc8\x2a\x98\xad\x11\x61\x01\x8e\xd3\xa5\x7e\x21\xc0\x51\x5d\xff\xd3\xbd\xbb\x7e\x8f\x57\xd7\xfd\xa3\xeb\xed\x31\x33\x2a\xdb\x94\x46\xe4\x5a\x88\x4c\x99\x55\xda\x77\xf9\x4c\x09\x23\xb0\x91\x06\x8c\xf6\x23\x3e\xf3\xcf\xb6\x3f\xe8\xb3\xed\x92\x20\xf2\x4a\xea\x5a\xfb\x0e\x56\xc2\x70\xfc\x0b\xee\xbb\x78\xc1\xbd\xab\x21\x79\xc3\x53\x5e\x3d\x96\xa2\x00\x56\xe8\xcd\x08\x03\xe7\xe3\xc9\x92\x46\x21\x49\xa0\x01\xdd\xfc\x57\xa1\x58\xaa\x5f\x83\xb4\x49\x08\xd4\x30\xa6\x0b\xa1\x08\x2f\xe2\x43\xc4\x96\x51\x74\x75\x0f\x53\x6c\xdb\x89\xb1\xab\xa5\x35\xa2\x69\xf6\x17\x6b\xfa\x59\x1e\x85\x7b\x0f\x6b\xac\xcd\x52\xa0\x28\x54\x56\x33\x57\xfa\xd4\x13\xcc\xc9\xa2\x38\x1d\xf1\x98\xb0\xa3\xe1\xe0\xc3\xb7\xa3\xf2\x77\x84\x42\x92\x06\x09\x8d\x21\xa2\xa2\xd6\x77\xad\xe9\xe7\xcf\x02\x18\x49\x42\x73\x10\x3b\xe5\xeb\xb7\x43\x70\x85\x2e\x3b\xd4\xc7\x89\x38\x38\x08\xa6\x2d\xdd\x30\x19\x7c\x55\x5e\xf3\xa5\x6e\x3c\x17\x5d\x95\xd9\x50\x28\x18\x8a\xc8\x0e\xa8\x11\x93\x50\x0d\x4f\x5e\xba\xd3\x14\x25\x24\x4e\x48\x4a\x58\x66\xcc\x48\xf1\xe3\x53\x84\x19\xe2\x10\x1e\xdc\x87\xc3\x37\x49\x72\x4f\xbc\x80\xb3\x15\x49\x32\x08\x57\x9d\x31\xfa\xaf\xbc\x72\x08\x89\x15\xad\xc2\x2a\xc9\xaa\x95\x82\xae\xc4\x70\x24\x37\x4f\x89\xdc\xb6\xc0\x6b\x94\x10\xd1\x0c\x5a\x32\xa3\x42\xb9\xbf\xf6\xd1\x3b\x9e\x10\x44\xd9\x94\x1f\x9a\x60\x51\x7a\x49\x29\xec\xfe\x6c\x2d\x9d\xfe\xe9\x64\x99\xf1\x24\x3d\x00\xf6\x3f\x48\xe9\xac\x87\x93\x60\x4e\x33\x12\x64\xcb\x84\x1c\xe0\x98\xf6\xa0\xef\x4c\x32\xfa\x22\x7c\x96\x7b\x1a\x3d\x2f\x77\x56\x06\x58\xa5\x59\x02\x21\xda\xc5\x77\xe0\xe7\xa6\x69\x10\x0c\x2d\x5f\x4d\x92\x85\x95\xff\x63\x4e\x6d\x0d\x43\x77\x79\x3a\x1a\xe7\x7e\x4e\x30\x23\xb5\x29\x00\xe2\x17\x25\xd3\x62\x1e\x04\xd1\x28\x9b\xc2\x03\x05\x34\xd5\x1e\x98\xc4\x70\xf1\x15\xac\x17\xd1\x12\x7c\x9b\xfc\xa5\xcb\xc9\x42\x46\x3a\x49\x57\x2a\x94\xf1\x3e\x3a\x06\x49\x23\x14\x17\x19\xb7\x16\xf6\xd1\x40\x9c\x36\x16\x24\x3a\xc6\x29\x79\xf0\x59\x10\xd4\x4e\x7b\x82\xb6\x5d\xe7\xa1\x66\xcb\x30\xb3\x4b\xca\x99\x29\x25\x83\x86\x65\xda\xaa\x8b\x78\x14\x93\xa0\xbc\x90\x95\xbe\xa7\x5c\x56\xc4\x02\x2e\x2d\xed\x8a\xa7\x84\x63\x29\x8b\x1f\x4e\xcf\x97\x8b\x09\x49\x2c\xce\x0f\x95\x05\x3d\x92\x19\x05\x37\x65\x86\x13\xef\xd1\x08\x31\x99\xb0\x54\x1e\x04\x58\x29\xa9\x7f\x3b\x91\x59\xac\x7e\x15\xaf\xbe\xfb\xfe\xe5\x37\x7f\x7f\x5e\x4f\x92\xc6\xf3\x43\xb1\x3a\xbf\xfd\xa6\x9e\x2c\x49\x2a\x96\xee\x8c\x24\xd5\x64\x3d\xf3\xb6\x81\x56\xc6\x73\x5c\x64\x95\xeb\x43\x88\x7f\x41\x4f\x49\x4b\xc5\x41\x9a\xce\x32\x2a\x8f\x54\x1d\x32\x14\x09\x93\x09\xcd\x12\x9c\xac\xe5\x56\x23\x7d\xa9\xb1\xf4\xb2\x97\x11\x26\xfd\x7a\xb1\xaa\x01\xa0\xa5\x9b\xeb\x62\xfa\xd3\x0c\xb3\x50\x9c\xdf\x78\x82\x22\x9c\xcc\x48\xb5\xbb\xb6\x4a\x11\x0c\x41\xac\x34\x8b\x23\x8d\xfc\x35\x30\x89\xfc\xc1\xf6\x64\x4f\xaa\xf4\x1a\xdc\xa9\x66\x74\x45\x98\xf1\xa2\x89\xee\x9e\xb5\x71\xd4\xb0\xb8\x8a\x9f\xb4\xf8\x74\xea\xc2\x07\x90\x73\x8b\x65\x0a\x72\x84\x4f\x15\x5f\xa1\x7f\x60\x7c\xc8\xd8\x3f\x04\xf1\xe4\x9f\x87\x8b\xc5\x3f\x9c\x5d\x42\xe8\x0d\x4f\x0a\x8a\x17\x23\x11\x07\x6f\x5d\x95\xac\x79\x1f\xdd\xce\x49\x02\x5f\xff\x21\x88\xed\xae\xf2\x1f\xa2\x10\x4e\x08\x7a\xf9\x0a\x4d\x68\xa6\x96\x4f\x1f\x9a\xaa\x4e\x68\xd1\x8e\xe8\xa7\xbb\xce\x7a\x1f\xf6\x55\x3b\x2c\x44\xff\x58\x2c\x64\x83\xdf\x7e\x53\x6a\xf0\x67\x91\x79\xbf\xa1\xa3\x62\x28\x62\x71\x30\xb1\xca\xe5\xf2\xb7\x55\x1b\x93\xa4\x77\x34\xd2\x61\x2d\xb4\xf6\xbc\x50\xf1\x8b\x71\x26\xf6\xdc\x43\xf4\xbf\xbf\xba\xba\x0a\xff\xff\x5f\x1f\xca\xff\xfc\xe1\xdf\xe5\x7f\xeb\xcf\xdb\x72\x8a\x4b\xee\x9a\xa9\x38\x49\x70\x0d\xf6\x5a\x08\x01\xc2\x86\x3c\xb1\x09\xad\x12\x7f\x9d\xe5\x39\xb5\x40\x14\x87\x08\x45\x7f\x21\x43\xe2\x84\x67\x3c\xe0\x91\xd6\x52\x64\xd5\x56\xca\x28\x39\x09\xea\xca\xcb\x3f\xfd\x58\xcf\xb2\xc0\x77\x74\xb1\x5c\x1c\xa2\x57\xdf\x7f\xff\xed\xf7\x96\x74\xca\x64\xfa\xcb\x0d\x05\x66\xc4\x67\x23\xb2\x22\x09\xcd\xd6\xa3\x20\x21\xa4\xaa\xd3\xd5\x86\xfd\xfc\xac\x5a\x42\x0f\x3f\xe2\x33\x94\xaa\x14\x84\x01\x03\x44\xa2\xaf\x45\x7c\x66\x8d\xbb\x15\x9c\x93\x12\x19\x00\x24\x2a\x90\xa1\x58\xc6\xb6\x81\x06\xe7\x6f\x2e\x6c\x5b\x44\xd3\xf4\x8b\xad\x67\x0c\xaf\xb0\xbe\x23\xe9\x5c\x86\x2f\xd4\xf1\xd1\xaa\xa3\x3a\xb7\x95\x42\x29\xc9\x52\x31\xa3\xd9\x9c\x24\x68\xba\x54\xd1\xae\xa2\xbf\x36\x40\x75\xf1\x13\x13\xbf\x80\xd7\x29\x73\x43\x96\x39\x20\x71\xd2\x73\x0f\x68\xc2\x79\x44\x70\x4d\xf7\x8d\x13\x32\xa5\x77\x47\xa1\xd0\x71\x69\x4a\x16\xa4\xee\x65\x58\x1b\xd0\xd0\x52\xa6\xd8\x41\x00\xda\x17\x72\x20\x6c\x66\xb1\x8d\xa8\x49\xad\x40\xdd\xf7\x31\x4b\x87\x0a\xf3\x6e\x5a\xee\x86\xb1\x13\xd9\x05\x80\x0e\x56\x52\x28\x87\x24\x44\xc7\x83\x93\xcb\xed\x36\x35\xb8\x4e\xea\xb4\xa3\x88\x36\xa4\xb1\x15\xd8\xba\xa8\x59\xaf\xf0\x09\x29\xc6\x11\xde\x63\x97\x6b\xd6\x62\x6c\x3d\x33\x74\x19\x05\x3d\xad\xb5\x19\x42\x81\x79\x8b\x0d\x05\x54\x14\xb7\xc8\x57\x0f\xa7\xaa\x33\x5b\x88\x28\x43\xff\x10\xda\x67\xda\x37\x1a\x81\xdd\xb3\x93\xd2\x81\xe4\xd9\xad\x71\xef\x6d\xd8\x62\x1b\xb7\xa6\x86\xbd\xb7\x69\x8b\x75\xd7\xd9\xbc\xf7\x36\x6e\xb1\x0d\x1d\x6d\xdc\x7b\x9b\x77\xd8\x0e\xb5\x76\xdf\x7a\xdd\x0b\x55\xfe\xda\xf9\xb2\x71\xe7\x44\xf7\xd9\x76\xd5\xb5\x89\xf6\xc1\x19\xb6\xca\xb7\x51\xb5\x00\x10\x03\xbc\x5a\xc5\x2a\x9d\x44\x3c\xb8\x51\x07\x51\xb9\x5a\x55\x0b\x56\x09\xa7\xa2\x73\x75\x2d\x0a\x14\x1e\x4e\x9d\xd3\x42\xc6\xec\xeb\x6b\x27\x30\xaa\xe7\x0b\x5d\x34\x6a\x67\x54\xd9\x89\x1c\xc3\x06\x00\x0d\xd8\xba\xd4\x9c\x8a\xa6\xcb\xe6\x64\xb1\xbd\x68\xad\xd2\xe2\xb5\x68\xd7\x38\xa7\x1b\xd8\xce\x51\xc4\x6f\x85\xb4\xd4\x59\xed\xf3\x5c\x90\xf0\x01\x44\xea\x83\xa9\x6e\x6a\x86\x4f\xef\xa4\x51\xa7\x3b\x13\x19\x25\xec\x5c\xc4\x13\x23\x14\xd8\xd6\x67\x55\x11\xd2\x35\x89\xb9\xed\x9b\xb1\xfd\xd5\x0c\x79\x14\x2b\x00\x70\x57\x43\x59\xe5\xaf\xd8\x4a\xe4\xeb\xd7\x64\x0d\xbd\x53\x2c\xc3\x99\x8e\x57\x49\x89\xea\xe8\xbd\x39\xa8\xe8\x5d\x2b\x0b\xd9\x67\xd7\x18\xff\x93\x64\x22\x7b\xb1\xfa\x57\x09\xc3\x63\x86\x82\xa5\x19\x4f\xc0\x55\x42\x7e\x92\xa0\xaf\xd2\x68\x1e\x04\x24\xce\x48\x78\x5e\xb3\x42\x17\x30\x05\xda\xaa\xac\xbf\x04\x9c\x85\xd2\x15\xff\x10\xfd\x0d\x6e\x01\xe0\x16\x2a\xfc\xa0\xcd\xc5\xf0\x15\xac\xfc\x4f\xdc\xd4\xdf\xcd\x1b\x7d\x2b\x0b\x7f\xe1\x6c\x5e\x32\xec\x8b\xcf\x56\x7b\x7e\xb3\x1f\xfa\xc3\x59\xef\xbd\x99\xdd\x9b\xd9\xcd\x29\xf0\x66\xf6\xc7\x34\xb3\x0b\x71\x50\xb7\xae\x6b\xf8\x7c\xe3\x9a\x4c\x67\xce\x67\x6f\xf7\x26\xf6\xf1\x9c\x14\xa7\x00\x6d\xda\x17\xe2\xc7\xb2\x83\xde\xc7\x4a\x7e\x43\x48\x7c\x91\xd0\x19\x65\x38\x3a\x27\x77\xd9\x4f\x3c\x6e\xeb\xda\x45\xac\xfd\x51\x44\x61\xe8\x18\x57\x35\x20\x46\xee\xb2\x39\x8f\x65\xa4\xa4\x7c\x2d\x49\x5a\xbd\xdb\x8c\x3e\x40\x53\x24\x88\x2a\x78\x3c\x83\x45\xa2\x03\xf7\x4d\xe3\x00\xcc\x08\xe0\x9e\x91\x50\x14\xb1\xd5\x2b\x6a\x49\x73\xf3\xcc\x52\xbd\xc3\x7b\xb5\x27\x3a\x87\x44\xef\x44\xbf\xff\x7c\xb5\x07\xfe\x34\x04\x87\x82\xbc\x46\x6a\x4a\xa2\xe9\x9f\xaf\xf6\xbe\x52\x97\x1a\x5f\xdb\x9a\x50\x6e\x74\xf9\xd3\x0a\x93\x04\xb3\x60\xae\xe7\xe9\x5c\x34\xcd\x99\x72\xda\xea\x07\xd3\xd9\xd5\x9e\x65\xde\x1a\x2d\x3d\xa2\xfb\x5d\x98\x24\x0f\x88\xcd\x91\x84\xb4\x7c\x51\x47\x14\x85\x70\x29\x9f\x70\x01\x38\x41\xeb\x80\x52\xe0\x2e\x5a\x40\x20\xaa\x2f\x70\xf0\xc9\xe4\x73\x58\xe0\x54\x95\x92\x6c\xbf\xb2\x7f\xa4\x08\xdb\xea\x94\xbe\xe7\x50\xcb\x3e\xa2\x7d\xd2\x87\xc7\xd0\xf5\x03\xe9\xb0\xc7\xca\xc6\xc8\x8a\x24\xeb\x1c\x8a\xb3\x0c\x84\xe4\xa4\x9b\xdb\xe4\x67\x79\x34\xc5\x4a\xbe\x1c\x3f\x4f\xdb\x90\x24\x46\x31\xf4\x4e\xed\x73\x00\x6c\x9c\xd3\x82\xb2\x59\x1f\x89\xd3\xba\x15\x18\x50\x13\x49\x11\x48\xb1\x81\x5c\x09\xfa\xee\x81\x2c\xe2\x6c\xbd\xe1\x90\x44\xcb\x83\x61\x17\x5e\x28\x10\x37\x4c\x89\x81\xa6\x5c\x9d\xf5\x26\x6b\xd8\xd2\xa1\x84\x98\x18\x9e\x58\x79\x41\x5d\xe1\x65\x5c\x16\x17\x53\x04\x5c\x00\x46\x6d\x96\x5f\xfc\xc1\x9d\xce\xbe\xb6\xe7\x14\x76\xaf\x7f\xfc\xed\x6a\xf9\xe2\xc5\xb7\xc1\x60\xb8\x7a\x05\x7f\x91\xbf\x1f\x8a\xa2\xd6\x1b\x0b\x9e\xa0\x7f\xe4\xd9\xbf\x93\xd9\x0f\xe5\x07\xe8\x1e\x7c\x00\x7b\x0b\x20\x04\x41\x3f\x4a\x03\x30\x3a\xa4\xb9\xd3\x2a\x6b\xe0\xd2\x4e\xcd\x23\x10\x8a\x85\x28\xbf\xc6\x9c\x90\x88\xb3\x59\x2a\x05\x91\x09\x37\x07\xec\x59\x98\xf7\x6d\x35\xa7\x04\xbc\x6a\xab\xd7\xb4\xc0\x02\x0c\xdd\x12\x25\x80\x04\xc7\x8b\xee\x2a\xaa\x6e\xc1\x03\x5b\xb3\x75\x42\x16\x3c\xcb\xb9\xbb\x34\xab\xc0\xcc\x56\xdd\x03\x49\xa1\x90\x33\xf3\x10\xb8\xb0\x4c\x36\xe0\xed\xb4\xc2\xdc\xf2\x9a\xac\x8c\xa1\x57\x1e\x88\x10\x32\x13\x92\xdd\x12\xc2\xd4\x6d\x41\x80\x95\x39\x5d\x54\x9f\x8b\x77\xb3\xdf\xfb\x82\x92\xf9\x3e\x60\x9f\x61\x85\x21\xa5\x5a\xa0\x53\x34\xe1\x42\xb8\xb0\x30\x95\xeb\x58\xac\xc7\xd7\x6f\x87\x62\x8b\xef\x8b\xac\x47\x6a\xad\x14\x66\x1d\x17\xe7\xc8\xba\x5f\x75\xaf\xfb\x55\xad\x6e\xc0\x25\xb4\x76\x5c\x0d\xb3\xb8\x3b\x0f\x38\xdc\x1c\x6b\x95\xce\x20\xc3\x6f\xbf\xfe\x77\x5a\x6a\x4a\x4f\x85\xb5\xe7\x6a\xfa\x95\x18\xd6\x77\xf4\x60\x40\xc0\x99\xb1\x60\x36\xe2\x45\x8d\xea\x5a\xc3\x36\xd0\x9a\x4d\xf5\xbb\x14\x5f\xfe\x70\xfd\x29\x0f\xd7\x11\x0f\x6e\x14\x74\x6f\x97\x60\xac\x2d\xce\xd8\xa2\x05\x8d\x02\x5c\x3b\x69\x9b\x89\x96\xf3\x76\xb9\x77\xb5\x63\xb7\x91\xbc\xf6\x87\x6f\x7f\xf8\xf6\x87\xef\x2f\xef\xf0\x6d\x4a\x88\x8e\x47\xf0\xba\xc4\x29\x7e\x9b\x9f\xcb\x1d\x26\xe6\x26\x9d\x2c\x24\x11\xc9\xda\xfd\x09\x4e\x64\x36\x44\x59\x28\x46\xa0\x0f\x18\xc0\x39\x20\xdb\x72\x50\x75\xc1\xb7\x13\x02\x60\xbf\xb2\x8c\xd5\x5a\x0e\x21\x52\xf2\x54\x61\xf2\xf9\x54\x5e\xc3\xc6\x38\xa3\xe0\x5f\xbe\x96\xba\x2b\x17\x1b\x07\x4a\x48\x44\x70\xaa\x9a\xb6\x55\xba\xa0\x69\x86\x6f\x08\xa0\xdc\x8b\xdd\x44\x31\x36\xb4\x82\x8b\x56\xb6\x38\x8c\x6d\x48\x54\xb1\xa1\x6f\x56\xc6\xa9\x90\x88\x29\xad\x7e\x53\x84\xad\x7e\xb6\xbd\xe0\x07\x3d\xf1\x6a\xcb\x27\x54\x5b\xb6\x41\x83\xd8\x5c\x75\x71\x81\x3d\x14\xfa\x4b\x3d\x47\x5d\x89\xd9\x12\x12\xe2\x91\x02\x01\xea\x23\xa8\x84\x02\xa8\x7b\xe8\xdc\x9e\x65\x74\xd2\x47\x01\x78\x0d\xc9\x6b\x48\x9f\x5a\x43\xaa\xaf\xe0\xa6\x38\x00\x59\x74\x62\xd9\x5f\x8d\xd5\xbe\x81\x72\x04\x22\xd4\xbe\xc6\xeb\x3d\x35\x33\x6b\x87\x50\xb5\xc8\x45\xdf\x94\x59\x5a\x29\x41\x79\x6f\x1c\xf6\xa7\x64\xc9\x98\xf5\x62\xbf\x49\x89\x50\x55\xbe\x7d\x3f\x38\x69\xed\x6d\x91\x55\xf7\x15\xfe\x56\xf6\x53\x67\xe7\x3a\x34\x3f\x16\x59\xba\x35\x2f\xb2\xea\x49\x53\x62\x11\xde\x07\xb8\x4f\x2f\xf2\x80\xd5\x4b\x82\xc3\x75\xab\x96\x5a\xca\x9d\x07\xde\x87\xf2\xbd\xa2\x94\xce\x18\x28\xe0\x2c\x2b\xea\x45\x0b\x3a\xab\xbc\xb2\x59\xea\x1b\x87\x62\x38\x52\x6e\xff\x31\x67\x70\x55\x90\x2e\x83\xb9\xd0\x29\x25\xf2\xbf\x7a\xde\x48\x0b\xee\x5b\x4c\xc5\x2a\x9f\x72\x87\x8d\x2f\x08\x48\x9a\x6a\x09\xe5\xc2\xa7\x47\x6d\x77\x2b\x2b\x9c\x50\xcc\x5a\xdd\xba\x3f\xc8\x6c\x28\x24\x41\x84\x13\x92\x2a\xf7\x31\x55\xda\xe0\x65\xc3\xe7\x13\x5e\xcc\xdf\x48\x4d\xf6\x4a\xe5\xa3\x2a\x95\xdb\x00\x47\x6e\xae\x54\xba\x70\x21\x0b\xa5\xb2\x9e\xa3\xae\x54\x6e\x89\x1e\xf9\x48\x4a\xa5\x5c\xc0\x1b\x05\x98\x56\x9f\x0a\xf0\x0a\xa5\x57\x28\xcd\x29\xf0\x0a\xe5\xa3\x29\x94\x75\xf9\xd3\x16\x58\x2a\xd7\xfb\xb6\xa1\xa5\xb7\xe9\x28\x09\x4e\xd2\xec\x78\x4e\x82\x9b\xd6\x18\x9c\x11\xc9\x90\x64\x94\x5e\x48\xd2\x4c\xbd\x20\xd6\x0b\x44\x61\xc4\x19\x3a\xfa\x79\x84\x4e\x8f\xbf\xc9\xfd\x1a\xd2\x3e\x3a\x52\x7b\x9e\x4d\x6f\x58\x95\x03\x00\xa5\xbf\xec\xd5\xde\x09\x3f\xe7\xd9\x1c\x9e\x69\xda\x47\x57\x7b\x2a\xd4\xe7\x6a\x0f\xf1\x44\xa4\x2a\x48\x9f\xab\xbd\x96\xf0\xd5\xbc\x1a\x5b\x38\x0f\x61\x4b\x1b\xce\x78\xaf\x28\x65\x4b\x94\x5d\xb1\x16\x93\xbd\xda\x4c\x17\x9c\xc4\xd3\x63\xce\x18\x09\x32\xb1\x2f\x9e\x71\x1c\xbe\xc6\x11\x66\x01\x65\xb3\xae\x51\x51\xaf\x87\x6f\x5a\xaa\x90\xee\x3e\x94\xe5\x20\x40\xd6\x4b\x49\xb5\xa5\x17\xb1\x54\x92\xad\xca\x0f\xc0\xca\x86\xc4\x8c\x67\x74\x41\x10\xa0\x19\x4d\xa0\x39\x92\xb8\x2f\x52\x55\x31\x4b\x19\x38\x49\x28\x3b\x61\x7e\x2d\x0e\x0f\x4d\x65\x1c\xd4\xb6\x09\x60\xfb\xdb\x2a\x4d\xaa\x8f\xcc\x29\xdf\xf2\x54\x05\xd1\x22\xba\x88\x13\xbe\x52\x7b\x4f\x4c\x12\x38\xa0\xb1\x00\x58\x2c\xe6\x61\x2f\xe3\xbd\xa6\x80\x83\x7c\xa8\xa9\x1c\x98\x74\x03\x4f\x08\x4e\xa5\x8f\x95\x02\x96\x92\x2f\x67\x43\xdf\x43\x32\x59\xca\x80\xe2\x78\x99\xc4\x3c\x15\xcc\xdf\xcc\xa0\x5b\x85\x9a\x4d\xe2\xa9\x38\x14\x0c\xa6\x38\x20\x43\x15\xaa\xd9\x81\x49\xaa\x65\xe4\xce\x90\x10\xd0\x57\x10\xc9\x5f\xeb\x94\x9a\xbf\xe6\x06\x5b\xaf\xa5\xb6\x6d\x80\x58\x49\x4e\x51\x3b\x32\xce\x32\x31\x31\x82\xd7\xf2\x57\xfd\x00\x22\x09\xf1\x24\x04\xef\x15\x2b\xb9\x71\x16\xcc\x51\x96\xe0\xe9\x94\x06\x28\xe3\x07\xf9\x46\xa2\x10\x8c\xd4\xf3\x81\x00\x7b\x0e\x15\x2e\x64\x89\x39\x31\x7a\x62\xa5\xb1\x18\x8e\x8e\x0a\xd1\x08\x5c\xba\xa1\x69\xc4\x6f\x53\xc4\x57\x24\xa9\x46\x80\x74\xa8\x74\x8e\x59\x28\x18\x80\x05\x7c\x01\x7b\x69\xde\x7b\xb0\x5b\xc7\x3c\xc9\x52\xe5\x38\xa1\x38\x13\x06\xc5\x97\x59\x4a\xed\x91\x89\xa6\x11\x00\xa1\x41\x7e\xfa\x12\x3b\x62\x31\x5e\x1b\x8e\xd8\x57\xcb\x74\x89\xa3\xc8\x1a\xf1\x23\x74\xca\x10\x6c\x05\xfd\x7e\xff\x6b\x33\xd4\xf1\x7f\x7f\x45\x58\xff\x8f\xff\x26\xd9\xbc\xff\xc7\x7f\x67\x4b\x16\xbd\xf8\xc3\xd7\x9b\xc6\x72\x0a\x76\x94\x4b\xe1\x3d\x33\xde\xe7\xe9\xc2\x91\xf5\x62\x80\x10\x96\x83\x8b\x29\xbe\x22\x99\x5c\xc3\x37\x62\xa5\x47\xfd\xa5\x91\xff\x7a\x12\x4f\xaf\x35\xc4\x9b\x6d\xec\xe9\x3a\x0d\xb2\xc8\x5c\xaf\x66\x71\x70\x01\xe2\x53\xc1\xac\x9a\xbf\xe0\x29\x60\x7d\x17\x64\xe6\xb5\xd5\xbe\x4c\x85\x0a\x14\x48\x95\x45\x9e\x81\x15\xab\x3d\x7f\x9e\x4a\x71\x8b\x63\xc9\x03\x2a\x13\x65\xa9\x50\x57\x01\xa6\x00\xf1\x5b\xab\xbf\x5a\x7d\xe9\x88\x69\x26\x2a\xae\xa4\x68\xe0\xde\x41\xab\x93\x78\xba\xc1\x2e\x73\xaa\xa7\xa5\x98\x22\x35\x43\x10\x25\xa3\xdd\x39\x45\xef\x85\x3a\x04\x4f\xa9\x5a\x2f\xca\x8a\x5e\xc3\x6b\x36\x5b\x75\x5b\x05\xb1\xa8\xa0\x98\x77\x1d\x7c\x32\x61\x08\xf5\x62\xa5\x7d\xb1\xd8\x04\xe7\xfc\xd6\xdc\x02\x6c\xc3\x30\x17\x73\xc9\x58\x9f\xf1\x62\xc5\x7f\x05\xde\x53\x85\x28\x30\x02\xcb\xac\xfe\xab\x38\x01\xac\xc0\x5b\x9c\x84\x12\x5e\x51\x39\x19\xe9\x35\x2f\xb6\x94\xc1\x54\xe3\xe4\x5d\xed\x8d\x01\x3b\xf0\x6a\x4f\x3a\xb5\x4d\x78\x66\x75\xee\x52\x1a\xb6\x7c\x4e\x95\xa4\x31\x67\x62\xb2\x94\xb8\xa2\xa9\x42\x20\x94\x0d\x56\x3c\x9b\xa0\x3d\xeb\xca\xd2\x5d\x38\x19\x5d\x0a\x35\x4d\x96\x93\xed\xd8\xaa\x9e\x2c\x33\x95\xa7\xdc\xbe\xc3\xbe\x08\xfe\xc7\x21\x4d\x48\x90\x45\x6b\xab\xcf\x95\xe8\x19\xd3\xed\xab\xf9\x2b\xb2\x58\x05\x21\x78\xb2\xc5\x31\xc1\x49\x6a\x7a\x20\x0f\x86\x5a\x95\xa6\x6c\x06\xde\x61\x22\xe7\x9f\xf5\xe1\x14\xd4\x13\x87\x2b\x6d\x4c\x92\x05\x4d\x53\xba\x22\xe8\xec\x1b\x63\xaf\x2a\x78\x5c\xce\xd0\x16\x52\x55\xa8\x36\xc3\x84\xdf\xad\x35\x46\xfc\x28\x12\x2c\xd5\x71\xc5\xbe\x1e\xbe\x69\xae\xc0\xce\xf8\xf6\xfd\xde\x50\x08\x9f\xa7\x88\x2c\x26\x24\x14\xec\x09\xe0\x9b\xb1\x68\x41\x19\xb6\x52\x54\x6e\x4a\xe8\xeb\x8c\xbb\xfd\xd8\xdc\x0b\x3c\xef\xfb\x20\xce\x44\x77\xd3\x63\x91\x71\x19\x6f\x20\xaf\x5a\xaa\x28\xc9\x31\x49\x0b\xdb\xe0\x25\x79\x0c\x39\x17\x27\x5c\x1a\x13\xa3\x35\x0a\x44\x8d\x68\x29\x7d\xed\x97\x71\x9a\x25\x04\x2f\x4c\x9d\xb4\xa0\xd0\xf3\xe7\x76\x4f\x4e\xd5\x37\x14\xcc\xc5\xe9\xae\x8f\xd0\x48\x6e\xf9\x2a\xe8\xb0\xe8\xe1\xd4\x24\xb7\xf2\x11\x54\x46\xf8\x87\x52\x33\x73\x0a\xbe\xa3\x6c\xb4\x66\x81\x7c\x23\x7a\x23\xda\x97\x4a\xee\x3b\x84\x6d\x66\x3f\x36\x28\xc0\x0c\x04\xc7\x06\xed\x97\x2a\xad\x02\xb9\x75\x27\xdf\x69\x0a\x33\xd6\x73\x83\x45\x6d\xd5\x16\x64\xec\x23\x74\xc6\x6f\x49\xa2\xcf\xd3\x33\xb1\x8c\x13\x12\x2e\x03\x89\x2b\xd1\x5b\xc6\x60\x3e\x62\x81\xc8\xfa\x13\x9d\xcd\xf3\xbc\x76\x29\x2b\x4a\x6a\xf3\xdb\xf0\x3d\x5a\xa6\x78\x46\xd0\x64\x8d\x26\x42\x77\x13\x2a\xe2\x32\x46\x0b\x9e\x48\x71\x5e\x92\x12\x2f\xd3\x2d\x24\xc4\x19\x9f\x9d\x91\x15\x89\xba\xcc\x88\xce\x5b\xa2\x3a\xe0\x81\x00\x44\x67\x0e\x52\x65\xe8\x1e\x0e\x59\x90\x1f\x25\x0b\xda\x2f\xa4\x38\xbe\xd0\xe7\xf7\x8b\xe9\x54\x9e\xdc\x07\x6c\xca\xc5\x5f\xf2\xdc\x2e\xce\x47\xe2\xd0\xee\x3a\x27\xc2\x13\xc7\x62\x07\x24\x0b\x9a\x65\xc5\x76\x24\x1a\xcb\x12\x1c\x10\x14\xd3\x98\xec\xeb\xdb\x06\xa1\xcd\xa9\x98\x08\xa2\xa1\xae\x6d\xd5\xfe\x23\x0b\x10\xb9\x23\x81\x20\x99\x3c\xa4\xfd\xc3\x54\x9d\x2e\xa6\xd3\xbf\xf7\x37\x24\x3e\xac\xd6\x01\xe8\x72\x9d\x74\x8f\xe3\x72\x7e\xd7\x61\x7b\xce\xf9\x8d\xa9\xeb\xfe\xf6\xeb\x7f\x3b\xae\x70\xe2\x9e\x9c\xb6\x8a\xfc\x10\xcc\x26\x55\x4c\x00\xd8\x45\xc9\x32\x22\x48\xdd\xe7\x65\x3c\x56\xb3\x6c\x3d\x80\x89\xf2\x62\x9e\x26\x6b\xd8\x22\x59\x58\xaf\x61\xc2\xb3\x8c\x2f\xfa\x5a\x89\x55\xd7\x72\x29\x9e\xe6\x40\x63\x56\x45\x81\x8a\x43\x37\xcd\x50\x9c\x90\x15\xdc\x34\x49\x0d\x16\x7c\xa6\x45\xf5\xea\x5c\x24\x3d\xac\x26\xeb\x18\xa7\xa9\x8a\xeb\x5f\xf3\x25\x4a\x6f\x69\x66\x77\x59\xcf\xb8\xea\xa9\x92\x27\x13\x82\x52\x09\xbd\xac\xfa\xcb\x81\xb4\xb2\x09\x15\xbf\xa2\xc8\x24\x2f\xc0\x5c\x37\x59\xb1\x0c\xc9\x99\xac\xe1\xfd\x60\x69\x26\x4d\xf8\x72\x36\xd7\x0c\xa9\x8e\x93\x50\xf3\xbe\x6c\xe6\x56\xc1\x0c\xd8\xea\x2c\x3f\xce\xa5\xf1\x7e\x8b\x91\x16\xbc\x28\x29\xbb\xa9\x28\xc8\x17\xe2\x49\x42\x57\xd6\x10\xb6\x66\x77\xb9\xc9\x72\xa6\xce\x62\x67\x7c\x76\x92\x70\xc0\x58\x75\xd6\xe2\xd8\x2f\xa0\x9a\x77\x64\xc1\x93\xf5\x30\xe1\x53\x1a\x11\xcb\xbb\x67\x9d\xfa\x32\xa2\x0b\x80\x3e\x3e\xc6\x51\xf0\x36\xc1\xf1\xfc\x27\xcc\x66\x47\xd3\x6c\xbb\x91\xe9\xda\x4e\x34\x91\xb6\xaf\x0d\x26\x49\x6b\x38\x63\xfe\x13\x4f\xb3\x23\x38\x1f\xb4\xae\xff\x13\x77\x59\x53\x16\x80\x51\x41\xb0\x74\xea\x30\x93\xe4\x26\x06\x91\x75\xc6\xf5\xd2\xc1\x85\x4d\xc0\x7c\xb1\x3d\x37\xa6\xd1\x2c\x25\xd1\x14\x7d\x05\x2f\x6a\xbb\x0c\x0f\xba\xee\x39\x55\xe7\xed\xbc\x2a\x22\x95\x62\xc9\xbf\x5f\xf7\xd1\xeb\x75\x1e\xb4\x70\x6c\x7d\xaf\x14\xe5\xc8\x1a\x85\xa5\x05\x60\x3e\xaa\xbd\x4c\x6d\xdd\x04\x99\x5e\x67\x30\x64\xaa\x4b\xbf\xfd\xfa\xff\x4e\x2e\x2f\x86\xbf\xfd\xfa\x3f\xea\x29\xfa\x5c\x5e\xdc\x62\x15\xb8\x18\x45\xfc\x16\xa5\x7c\x41\x84\x54\x83\xf7\xf4\xdc\x07\x0e\xe8\x5d\xf5\xb1\x7b\x05\x47\x0e\xc1\x49\x38\xc1\x0b\xa2\x0e\x77\x97\xa7\xe3\xf7\x97\x80\xaa\xae\xde\xbe\x47\xef\xed\xe0\x22\x2a\x23\x95\x1d\x83\x70\x14\x40\x36\xe7\xb7\xac\x2c\x95\xcc\x61\x0d\xce\x87\xef\xc7\x62\x5c\x20\xaa\xfe\xdc\x20\x4f\x40\x90\x68\x59\x9c\x69\x59\x5a\x95\xf6\x38\x93\x35\xa9\xb8\xa7\xdf\x7e\xfd\x7f\xb2\x5b\xbf\xfd\xfa\x3f\xd6\x03\x0d\x0e\x6e\x48\x31\x2f\xb5\x0e\x21\xae\xa4\xf9\x1c\xa7\xe0\x3d\x20\x9d\x68\xe3\x84\x6b\x0f\x00\x3d\xc9\xb6\xda\xed\x2c\x05\x04\x54\xc4\x84\x73\x19\xcb\xef\xbc\x01\x0b\x5d\xca\x64\xdd\x35\xe7\xfc\xe5\x67\x64\xf5\x72\xbc\xa5\x4f\xae\x0e\x34\x9b\x29\x84\x48\xdc\x58\x26\x93\x15\x0d\xc8\x25\x5f\x66\x42\x11\x06\x90\xb9\xf6\x48\x41\x9a\x96\x2e\x4c\x21\x42\xb7\xc0\xa8\xc3\xa1\xb2\x09\x28\x05\x6d\x41\x42\xd5\x8c\x55\x1b\x85\xf0\xde\x7d\xb1\x8b\xe9\xc5\x0a\xac\xac\xb7\x9f\xcb\xf1\xf0\xf2\x62\x7c\xfd\xfa\xe2\x62\x2c\xb5\xba\x88\x4c\x33\x34\x89\x30\xb3\x81\x81\x34\xc6\x2a\x1b\x63\x95\xe8\xd7\x2a\xc8\xaa\xd3\x80\xb5\x16\x21\x6f\x1f\x75\x98\xa4\x3a\x9d\x73\xb6\xc9\x60\x4b\x92\xc9\x52\x29\x4d\x8d\x41\xee\xa3\x88\xe0\x95\xba\x03\xb5\x9e\x13\x40\x05\x03\x27\x99\x39\xe7\xca\x54\x50\xa9\x71\x69\x07\x11\x6b\x64\x0c\xb9\xd3\x1e\x73\xc6\x84\x4e\x7b\x33\x60\x2b\x1c\xd1\xd0\x75\xfd\xd6\xb8\xe7\x6a\x6e\xbe\x04\x63\x33\x65\x33\x78\x2d\x7c\xc3\x7d\xad\x56\x89\xfb\x8c\xdd\xdc\x19\x65\x5c\x3b\xe7\x21\x49\xcf\x68\xda\xea\xc6\x73\x6a\x16\x38\x1e\x9c\x5c\x8a\x42\x65\x9c\x57\xf1\xf5\x39\x5c\x74\xea\xda\x7b\x8c\xeb\x67\x68\xe1\xd5\xa6\x86\x1b\x8a\x05\x5e\xeb\xf9\x92\x56\xa8\x7c\x33\xc2\x2c\x8f\x20\x26\x86\xf1\x4b\xa5\x3a\xa0\x7e\xd4\x35\xa6\x10\xb0\x41\x11\xc1\xbd\x19\xa2\x4f\x33\x26\x4e\x03\x70\xd2\x14\xd3\x48\x28\xda\x03\x36\xe1\x4b\x16\x0a\xf5\x61\xc8\x93\x76\x8c\xc1\xe7\x6f\x1c\x05\x25\x9d\xe1\xd4\xd4\x0b\x49\x44\x17\x54\x8c\x4d\xd1\xdd\xd6\xf5\xf7\x27\xc3\x83\xf1\xf1\x50\xd9\x32\x61\x5f\x31\xac\x22\x72\xb7\xb5\x5d\x85\xc0\xce\x5e\x79\xcc\xb0\xfc\xe3\x0c\xd1\x24\x21\x69\x4c\xc0\xae\xa2\x8f\xa2\x29\x09\x96\x80\x53\xa9\x37\x09\x2d\x2e\x96\x29\x99\x2e\x61\x61\xe2\x15\xa7\xd6\x7d\x06\x07\x01\x44\xdd\xc3\xf6\x11\x2c\x25\x6c\x01\x9f\x4e\x11\x96\xfd\x01\x15\x43\xf4\x36\x49\x48\x90\x55\xee\xce\xd1\xa9\x2b\x46\x96\x27\x66\x3c\x75\x81\x6c\x88\x53\x94\x05\xb1\x11\x1e\xdd\x93\x11\xa3\x32\x4a\x5a\x68\x0a\xcb\xd0\x99\x6c\xdd\x7c\xde\x88\x93\x18\x0e\x6e\x7a\xa5\xd0\x91\x7d\x85\x32\x55\xec\x09\x3a\x58\xb4\x00\x40\xa3\x99\x16\x81\x2e\xef\xbf\xdf\x7e\xfd\x7f\x59\x10\xff\xf6\xeb\xff\xf4\xd1\xb8\xb8\x17\xc1\xa0\x4c\x00\x93\x48\x1a\xc1\x44\xef\xe7\x46\x52\x79\x55\xcf\xb8\xc3\xa8\x3f\x36\xd0\xa6\x65\x56\x60\x89\x14\xa5\xe9\x5c\x5f\x8d\x88\x65\x77\xf2\xd3\xf1\xb0\x74\x71\x11\xc4\x87\xdf\x7c\x63\xbd\x91\x16\x34\x7b\xf5\xc3\x3e\x64\x79\xf9\xa7\x1f\xe5\x1f\xdf\x7c\x5b\xfc\xf5\xc3\x0b\xf9\xd7\xab\xef\xbe\xfb\x56\xfd\xf5\xea\xd5\xab\xfc\xaf\x3f\xd9\xf6\xec\xce\x50\x98\x3c\xe3\x1a\x38\x36\xe0\x8b\x89\xf2\x74\x80\xcb\xe3\x7c\x43\x66\x21\x50\x69\xdf\x69\x78\x47\xb9\x6f\x43\x11\x6f\x6c\xe5\xac\x36\xa4\xad\xd8\x8e\x76\xab\xe6\xb4\x69\x73\xce\x1b\x70\xe9\x20\x66\x1d\x6e\xb4\x2e\x47\x34\x8f\xfc\xf5\x9c\x90\x05\xbd\xbc\x65\xb7\x38\xdc\x02\x47\x4e\x8b\xc3\x8b\x65\xb6\xa5\x3c\xac\x95\x74\x0b\x44\xab\xcc\x9a\x76\x12\x88\x5c\x3d\x67\x57\x3e\x06\x89\xe5\xd5\xa4\x1d\xcb\x5b\xbf\xcd\x45\xa2\xcb\x48\x22\xa4\xe4\xfd\x44\xa2\xad\x66\x21\x25\xbf\x7c\x91\xc8\x15\x9f\xec\x46\x26\x72\x38\xdb\x93\x2c\x08\xc1\xfa\x95\x03\xaa\x2a\x1e\xe2\xea\xfa\xd9\xe0\x26\xab\xa4\x12\x07\x7f\x31\xc6\x19\xc9\xc4\x54\xc2\x34\xca\x23\x6c\x16\x84\x25\x4f\x06\xc1\x85\x62\xa2\x85\xd8\x95\xf2\xf7\x7c\xd4\x72\xda\xd9\x5a\xdc\x3a\x85\xf8\xf7\xdf\xee\x4b\x61\xee\x25\x72\xa9\x81\x2f\x4a\x22\x13\x9c\x2d\x13\x72\x42\x32\x12\x64\x17\x2b\x92\x24\xb4\xdd\x2e\xfe\xc6\x56\xc8\x7c\x5c\x90\xeb\x6f\x62\xb5\xa9\x26\xec\x9c\x92\x11\x65\x06\xfa\xa0\x1e\x83\x48\x4c\x69\x44\x99\x96\xed\x28\x25\x31\x4e\x70\xae\xec\x82\xd8\x63\x56\x0b\x16\x3c\x31\x98\xee\x23\x72\x87\x17\x71\x44\xfe\x8c\xae\xf6\x46\xe7\x47\xe3\x37\xcb\x28\x5a\x5f\x62\x16\xf2\xc5\x7f\xc0\xcb\x55\xef\x8e\x46\xff\xcb\xfc\x08\x5e\x0d\xfb\x97\x04\xdc\xf4\x47\xcb\x18\x16\xf7\x19\x0f\x6e\xfe\xc3\x8a\x36\x85\x0a\x3c\x2d\xb8\x26\x81\xe2\x57\x7b\x72\x1b\x99\x72\xe9\x93\x9b\x8f\x7e\x5f\xa2\xb9\x88\xac\x5c\xdd\x92\xb8\x6f\xa4\x00\x29\x77\x99\xf1\x9e\xa4\xcf\xc6\x67\xd5\x19\x61\x24\xa1\xc1\x7f\x9e\x0c\xbb\xde\xbb\xbe\xad\x96\x50\x17\x98\x29\x52\x29\xe8\x3f\x4f\x86\x28\xe5\xc5\x5b\x7a\x38\x09\xdd\x2e\x56\x21\x67\xcf\x9f\x67\x28\x95\x44\x84\xb2\x7c\x3a\x05\x4b\x0e\x4f\x50\x08\xe6\x6e\xb0\xfe\x4b\x4c\x6d\x21\x97\xff\xf3\x64\x28\xf7\x45\xab\xfd\x50\xdd\x9b\x12\xc1\x0b\x84\x85\x24\x2c\xae\x27\x84\x54\x85\xd6\x62\xf9\x58\x27\x9a\x90\x0c\xcc\x48\x85\xeb\xa0\xa3\x9f\x2c\x37\xe0\xf5\xef\xed\xdc\x32\x27\x38\xca\x1a\x20\xf1\x3b\x14\x16\x2a\xcd\x86\x36\x00\x59\xd0\xf1\xa4\x42\xa3\x30\xcb\x7d\xd0\x4e\xef\x82\x68\xd9\xe1\x2a\x6c\x50\x29\x60\xea\x5d\x95\xb5\xc9\xa7\x5d\xdc\xf0\x4a\xde\x87\x44\x55\x0a\x16\xad\x05\x67\x34\xe3\x79\x14\x7e\xf9\x24\xda\x77\xdd\x42\x96\x77\xec\x92\x3f\x98\x72\x89\x9d\x31\x2e\x3e\x15\xf7\xfc\xcf\x9f\xa3\xc1\xf0\xc3\x08\x85\xcb\xc5\xc2\xea\x82\x97\x0f\x63\x5f\x7b\x4f\x2a\x19\xa7\xe3\x10\xa2\x35\x9a\xac\x4b\x57\xd3\x65\x73\xb6\x55\x5d\x54\x63\x5d\x2c\xa3\x8c\xc6\x91\xe1\x08\xa9\xde\xb8\x51\xcf\x6c\x6a\x58\x60\x15\xea\x00\xf7\xbe\x0e\xb5\x56\x2d\xb4\xd4\xe2\x17\x9a\x4a\x0c\x78\x4b\x02\xf4\x13\x76\xd5\xdb\x04\xc7\xae\xeb\x05\x49\x4e\x10\xb7\xcf\x9f\x1f\x3c\x7f\x2e\xab\x53\xb2\x15\xcd\xa5\x29\x4e\x5d\xc4\x3f\x7f\x7e\xf0\xbf\x05\x2d\x0e\xf6\x57\x24\x9b\xbf\x7c\x6e\x59\x44\x48\xca\x47\x4d\x03\x79\x7a\xcd\xdd\x21\x61\xb6\x26\x64\x46\x99\x6e\x51\x54\xf7\xfc\xb9\x04\x8d\x8a\x52\xee\x32\xfa\x15\x24\x7c\xfe\x5c\xb5\x6d\xae\x69\x98\x20\x1a\xaf\xd2\x17\x9b\xda\x83\xf3\x8a\xe5\x23\x0b\xdd\x97\x89\xcc\xaf\xcd\xa4\xe5\x29\x56\xcf\x4e\xa8\x60\x3d\x0d\x2f\x6f\x37\x89\xd5\xaf\x5e\xc0\x35\x15\xb4\x5d\x71\x16\x58\xd2\x74\x2e\xed\xce\x8b\xe2\x94\x92\xe7\x6e\xa4\x55\xda\x47\xe7\x3c\x03\x19\x81\x08\x5b\xd1\x84\x33\xf9\x98\x85\xbc\x80\x05\x09\x39\x11\x7b\xd1\x82\x64\x38\xda\x57\xc8\x94\xc1\x9c\xa4\x19\xbc\x79\x6d\xed\x70\x60\x3c\xa5\x2b\x44\x44\x2c\x34\xb2\x84\xe2\x8c\x44\xeb\x32\xef\xf0\xa5\x89\xfd\x2d\xb5\x5c\x1e\xdc\x38\x42\x57\x85\x18\x53\x31\x5b\xea\x7e\x87\xa0\xdf\x7e\xfd\xbf\x01\x8e\xe8\x6f\xbf\xfe\xb7\x19\x0f\x24\xea\xbd\x88\x09\x1b\x65\x38\xb8\x31\x0b\x5a\x57\x8e\xf6\x52\xfd\xed\xd7\xff\x9b\xe1\x38\xaf\xca\xe4\x1e\xd1\xc6\xd6\x7c\x73\x49\xa6\x09\x49\xe7\xc0\x17\x2b\xdc\x7a\x99\x30\x70\x94\xcb\x1f\xc2\x01\x8f\x1c\x84\x33\x25\x90\x9c\x87\x8d\x84\xa4\x01\x66\xa9\x02\x83\x33\xd7\x18\x47\x2b\x92\xd0\xe9\x5a\x79\xb3\x02\x2e\x87\x7c\xf5\x56\x96\x51\xcf\x5c\x58\x65\xac\x72\xd9\x15\x42\x2f\x55\xa8\xa2\x39\x7b\xaf\x64\x68\xea\x8b\x0d\x95\x15\x1a\xd3\x06\xf7\xb0\xc6\x7d\x13\x1e\xa4\x1f\xbf\x6f\x5f\x94\xc3\xc1\xf0\xdd\xf8\xbd\xa6\xa1\x7a\xdf\x59\x70\x11\x67\x86\x2d\x59\x5d\x54\xf4\xd1\x88\xd8\xfd\x01\x14\x6b\x8b\x51\x8b\x3a\x0c\x37\xa0\xef\xbe\x6b\x90\x2c\xae\x2d\x38\x16\xcc\xb7\x21\x7f\x3c\x1f\xd8\x4a\x35\x72\x07\x4a\x88\x0c\xf4\xb1\xeb\x9a\x91\xe1\x8d\x02\xbc\x50\x3d\xcf\x32\xae\x04\x82\xba\x98\x83\x2b\x44\xd3\x2c\x61\xab\x76\x92\xf0\x1b\xc2\x6a\x2e\x23\x00\x46\x0b\x5c\x52\x8a\xc5\xd0\xed\x27\x72\x58\x2d\xf1\x41\x3f\xbe\xd8\xd8\xeb\x4a\xb7\xf0\x5a\xbd\xff\xdd\xb6\x0a\xcb\xd9\xf3\x13\x89\x0e\x59\xd6\x0f\x8c\x0b\x4d\x47\xf7\x5d\xec\x6b\x56\x4a\x10\x79\xdd\x54\x32\x2b\xc0\x95\xd6\x0c\x5b\xaf\x30\xbb\x8c\xe3\x0d\x8d\x32\x92\x1c\x45\x11\xbf\x75\xba\x32\x74\xa9\x47\x1c\x6f\xde\xb8\x7d\x3e\xaa\xac\x57\x2f\x54\xbc\x50\x15\xe4\xc7\x7a\xf3\x6a\xdc\x46\x11\x00\x69\x9a\xd2\x88\xf4\xd1\x5f\x85\x0a\x82\xd7\x10\x1e\x22\xaf\xec\x30\x9b\xa9\xad\x43\x19\x88\xf2\xdc\xfa\x14\x40\xed\x2e\x06\x99\x61\x97\xc9\x7b\xf3\xd5\xd4\xd8\x70\xcc\x0b\xfd\x05\x8e\x63\x22\xe3\x8d\x58\xc6\xe5\x42\x71\xb9\x6d\xa9\x18\x3e\x92\x88\x85\x85\x51\x48\xa7\x53\x92\xc0\x5b\x4a\x38\x9b\x97\x02\x33\x0e\x92\x25\x3b\xb8\x53\x67\x0a\xd1\xf1\x6d\xf9\x54\x90\x78\x98\xf0\x09\xd9\x40\x2e\x38\x4a\xea\x19\x02\x77\xcc\x8a\xb9\xd3\xaa\x71\x48\xc8\x00\xe9\xb6\x89\xb3\x4c\x9c\x5b\x25\x92\x6b\x00\x86\x8b\xb2\xe7\x03\xcc\x0e\x9d\xaa\x70\x2a\xc6\xad\x1a\x07\x5e\x61\x1a\x89\xfc\xfd\xb2\xe3\xe6\x02\xdf\x68\xbf\x4b\x70\xaf\x54\x3e\xe6\x74\xa5\x0e\x02\x7a\xfa\x1d\x47\x42\x31\x2f\x70\x18\xdc\x07\x2f\x75\x71\x8a\x84\x6a\x8e\x87\xef\xcd\x49\xf9\xfe\xc5\x62\x6b\x79\x21\xa8\x39\xa6\x0b\xc2\x97\xad\xd7\xa2\xa5\x19\x50\x65\x9a\x68\x0f\x84\xb6\x8d\x4c\xc7\xd3\x95\x68\x0c\xbe\x98\x2f\xf6\x0d\xa9\x09\x26\x4f\x69\xd1\xa4\x69\x61\x66\x70\x2a\x04\xa0\xe9\xa7\x73\x6c\x9d\x41\x58\x5f\xd2\x81\x27\x8a\xca\xe2\xbe\x01\xe5\x4c\x6a\xe4\x62\x12\xf5\x4c\xf5\x25\x00\xae\x72\x70\x2e\x62\x11\xc5\xb9\x1c\x17\x0b\x69\xdf\x09\x91\x9b\xbb\xed\x8b\x1a\xc5\x72\x52\xc1\x04\x3c\x59\x6b\xd1\x62\xc4\x19\x2e\xf8\x92\x49\x2c\x38\xe5\xf7\x62\x60\x0d\x5b\xcd\xff\x89\xce\x31\xd5\xc1\xb7\xb2\x43\x26\xbf\xbc\x48\x73\x3d\x67\x5b\xb6\x79\x87\xc5\xc9\xed\xfe\xe2\xf9\x1d\x4e\x6e\xde\xe1\xb4\x3d\xbe\x77\x50\x29\xa0\x19\x6f\x21\xfe\x36\x8f\xdb\x80\x05\x9c\x0a\x69\x69\xa3\xcf\x60\x38\x96\x4c\x21\xea\x41\x13\x21\x53\xc5\x99\xa2\xaf\xbd\xdb\x27\x62\x16\xd5\x63\x5b\x73\x72\x87\x43\x12\xd0\x05\x8e\x34\xd0\xae\x60\x20\x2b\x9f\x64\x28\x22\x38\xcd\xd0\x0f\xb2\x4e\x00\x41\x66\x2a\x6c\x58\xee\xa8\x41\x84\xd3\xb9\x76\x21\x5b\x2b\x0e\x5c\xe8\x5e\xd8\x4f\x04\xda\xd5\x04\xae\x58\xd6\x69\x46\x16\xa5\x69\xbc\x9b\x4e\x5f\xc0\x6f\xd7\x2f\xe1\xea\xd9\x39\x3f\x1a\x5f\xa8\x8b\xa2\x5c\x6d\x97\x1b\xf3\x96\xd3\x3d\xe4\x69\xf6\x73\x42\x33\x02\x5e\x25\x1b\x8b\x7e\x7b\xf1\xaa\x6e\x08\x3e\x56\x4e\x29\x21\x74\xbb\x50\xcc\x0c\x46\xb7\xa2\xaa\xba\xc3\x7e\x8e\x30\x13\xcc\x49\x28\x5d\xd7\x18\x22\x77\x59\x82\x51\x42\xec\xee\x63\x13\x79\x10\xcb\x23\x49\x91\x8c\x3b\x87\xa0\x48\x68\xe4\x16\xcb\xad\x3d\x88\xf8\x64\x42\x12\x0d\xad\x5e\x92\x43\x6e\xf0\xc6\xd4\x08\xbd\xe0\x41\xb0\x4c\xc4\x86\xa4\x4b\xe3\x38\x8e\x34\xd2\x65\x89\x57\xa4\xe1\xf0\xb7\x5f\xff\xdb\x2a\xda\xd4\x25\x5e\x5d\x54\xf6\xef\xe5\xfd\xaf\xab\xda\x5c\xeb\xb7\x96\xdb\xe2\x54\xa8\x8e\x02\x3a\x80\x0a\xce\xbf\xfa\x91\x80\x62\x8e\x9b\x4f\x00\x2e\xc6\x29\xdd\x55\x6e\x74\x02\x50\x3d\xb1\x77\x59\x9d\x09\xa4\xad\x22\x33\xb4\x68\xb9\x53\xd2\x54\x19\xa9\x84\x52\x0d\xea\x05\x58\x2e\x72\x4f\xf2\x86\x4a\xf3\x83\x6b\x2a\x51\x39\x6f\x79\x72\x83\x13\xb8\x37\x94\xa8\xa8\x67\x94\x2d\xef\xb4\x4b\xd9\x64\x39\x93\xf4\xb8\xc5\x76\x6f\x46\x7a\x27\xef\x2c\x54\x7e\x0d\xd2\xf5\x5d\xff\xe5\xcb\xdc\x30\x28\xf6\x5f\x69\xe0\x5b\x89\xef\x62\x4b\x9a\x25\x04\x3b\x1c\x7c\xd7\x4a\x3f\xd6\xde\xb1\xb9\x67\x6b\xc6\xf7\x11\x46\x73\x23\xb6\x45\x46\x1d\x96\x43\x59\xac\x37\x7b\x29\x9e\x95\xcc\x1b\x2f\xb7\x39\x4e\xad\x5e\xa9\x1b\x92\x4d\xcf\xec\x37\xcb\x09\x39\xe7\x21\x19\xf2\x24\xbb\x14\xca\x7e\xfb\xdd\xff\x5f\x6a\x45\xd0\x9c\x47\x61\x9a\x5b\x9b\xe1\x92\x21\x91\x29\x60\x9e\x9d\xda\x9f\xa2\x54\xe1\x9d\xa8\x08\xee\xec\xa3\x0b\x21\x35\x96\xea\x25\x38\xa9\x15\xc8\x5b\x17\x33\x0a\xcc\x0d\x9b\x06\xfb\x10\x8d\x57\xa9\x0a\xa6\x91\xa4\x5f\x4a\xad\x89\xa4\x44\x77\x0b\xe6\x4e\x5a\xc9\xa5\x02\x83\x59\xd8\xe8\x72\xab\x3c\x0f\xcc\x89\xfa\x56\x6c\x66\x87\xdf\x7e\xf3\xa7\x57\x7f\xb2\x46\xbe\xb8\x6f\x64\x31\x5b\x5f\x4c\x1d\x17\x8e\xad\x77\x9e\xbd\xd6\x2b\xcd\xe2\xe5\xe9\xfe\x1f\x6d\xe9\x77\xbd\x9b\xdc\xce\xd7\xa3\x2c\xeb\xf1\xa4\x27\x6b\x33\xe1\xb7\x4a\xa3\x6f\x78\x46\x9a\xcf\x3a\x9f\x58\xcf\x8a\xbc\x5a\x54\xc2\x53\xc3\xe2\xe0\xa6\x77\x36\x39\x63\x11\x9f\x69\xc9\x64\x1b\x01\x28\x2b\x86\xbc\x02\x7d\x39\xe2\x00\x1b\x51\x3a\x00\xae\x70\x72\x10\xf1\xd9\x81\xa9\x66\xf6\x23\x6e\x85\x32\x69\x22\x6b\xc4\x67\x1d\x2d\xce\x67\x3a\xa7\xf9\x58\xb4\x69\x60\x36\x58\x52\x3e\x20\x24\xce\x4c\xae\xa9\x3c\xbb\x78\xab\xe5\x74\xd9\x00\x1a\xf0\x9e\x74\xe4\xde\x62\x24\xfa\x51\x6b\x31\x17\x5d\xc6\x63\xe6\xdf\xd9\x13\xd8\xa2\x02\x69\x74\x30\x1e\xc1\x66\x53\x7e\x8f\xf1\x7c\x8e\xcf\x7a\xdf\x73\x44\xeb\x76\x71\x7c\x56\xca\xbe\xbb\xb1\xac\x53\x63\x11\xa2\x73\xae\x82\x43\x19\xd7\x0b\x0d\x84\xa8\xca\xd5\x68\x20\xdc\x86\x08\x0b\x7c\x07\xa6\xd5\x11\xfd\x97\x1b\x2f\xdb\x21\x25\x35\x94\xd4\x51\x68\x05\x3d\x2f\x93\xef\x9d\x91\x59\x13\xcf\x7c\x68\x28\x41\x21\x5f\x60\xca\xe4\x4d\x91\x3b\xf2\x0f\xf0\x0b\xd5\xdb\x4f\x01\x66\x08\xb3\x54\xe8\x3e\x1f\xde\xa1\x7f\x2e\x49\x42\x89\x04\xb7\x09\x22\xbe\x0c\x7b\x94\xd1\x2c\xef\x25\x20\x73\xe5\x17\x24\x56\xef\x1f\x50\x31\xc0\xa5\x2c\x8d\x39\x0b\xf3\xb0\x92\x05\x0e\xe6\x94\x91\xfc\x7c\xcf\xf8\x0a\xf7\x70\x4c\xd1\x57\x3c\x11\x1b\xe1\xfb\xc9\x92\x65\x4b\x6b\x95\x3a\x6b\x4f\x77\xe3\xeb\x3e\x3a\xd2\xee\x55\x53\x29\x60\xbf\x0a\x70\x0a\x6f\x6b\x11\x96\xd2\x8c\xae\xc8\xd7\x68\x41\x30\x73\x1b\x20\x4a\x77\xc8\xea\xf5\x15\xb4\x8c\xe1\x08\x79\x7e\x34\x96\x51\x90\xda\x9e\xa2\x1b\x06\xe9\xdf\xc2\x41\x2f\xbf\xf9\x53\xff\x45\xff\x45\xff\xe5\xc6\x6c\xa4\x1a\x71\xdc\xc9\xdb\x59\x41\xbb\x47\x81\x2a\x2f\xfe\x56\x96\x8e\xbc\xc7\x72\xae\xa5\x7f\x84\x03\x05\x6a\x31\x81\x37\xc5\xe1\x04\x2d\x5f\xa8\xe9\x97\x38\xed\x2b\x3a\x05\x0a\xfd\xf6\xeb\xff\x15\x4b\xeb\xb7\x5f\xff\xfb\xeb\x7d\xd3\x65\x27\x25\x56\x0a\x0b\x62\xe6\xa4\xdc\x97\x37\x8c\x2f\x5f\xfd\xd8\xff\xe6\xfb\xef\xfa\xea\xbf\x87\x3f\x80\x2a\x6f\xb6\x76\x68\x8e\xcc\x7a\x70\x1b\x30\xb4\x10\x6a\x50\xa0\x60\xf4\x8b\x63\x9c\xe8\xa4\x36\x07\x4f\x88\xb2\x08\x87\x86\x88\xfb\xe1\x4f\x7f\xfa\xbe\x21\xf2\xd7\xb1\x46\x19\xce\xf4\x61\xbd\x63\x98\x8b\x71\xbc\xaf\xbe\x3e\x04\x67\xde\x4a\xcc\x0b\xec\xad\xca\xe9\xc4\xb1\xb9\xaa\xa8\x06\x41\x4e\x60\x4a\x0d\xb7\xc1\x10\x36\xfb\x87\x62\xce\xa3\xfc\x51\xa1\x96\x70\x97\x1c\xbb\xa2\x12\x43\x63\x86\xba\xa8\x57\xd0\x73\x11\xc3\xca\x77\xd2\x76\x09\x50\x42\x1a\xd1\x9d\xe0\x0c\x7d\x45\xc1\xed\x46\xab\xb8\xc5\xe9\xf8\xdd\xd1\xe8\x7f\xbd\x3f\xbd\x3c\x3a\x39\x45\x19\x4e\x66\xc4\xf6\xd2\x5f\xe3\xeb\x06\x38\xcb\x35\x7c\xcb\xdc\xb8\x74\xd8\x56\x0d\xb6\x4d\x7f\xad\x4e\x7a\xde\x09\x63\xba\x21\xac\x0b\xbe\xa9\xe3\x46\x9a\xcf\x8f\x20\xb0\xcb\x8c\x0b\x8b\x79\x81\x21\x30\x57\x32\x48\x08\x13\x9c\xfb\x17\x9f\x1f\x8d\x95\xc9\x74\xc9\xf4\xad\x76\x43\x4c\xf6\x84\xcc\xf1\x8a\xf2\xfc\x01\x4b\xed\x8d\x95\xca\xab\x6e\x67\x60\x53\xb3\x82\xbe\xa9\x7a\xce\x48\x16\x51\xd6\x60\x17\x6f\xa2\x37\xb8\xd2\x8a\xee\x5e\x92\x59\x97\x10\xdc\x8b\x72\x7e\x2d\x26\x8d\xcd\x11\x25\x32\x05\x26\x44\x48\xf7\x24\xa3\xc1\x32\xc2\xd6\xc3\x8c\xdc\x31\x8a\xf7\xe9\x60\x33\xc4\xd2\x17\xa7\xa7\x2a\x92\x26\x8b\x83\xc2\x87\xa0\x78\x3d\xd1\xbd\x5b\x6a\xf7\xd4\xdc\xff\x21\x84\x20\xd6\x39\xbf\x05\x4e\x00\xd4\x3b\xd9\xf8\x57\x73\x92\x10\xd3\xe6\x22\x4e\x8e\x91\xeb\xc5\x31\xca\xe4\xa9\xb4\x1f\x4c\x67\xfa\x05\x32\xc3\x59\x43\xac\x48\xa8\x3b\xe0\x8b\x78\xa9\x20\x76\xbe\x56\xc0\xa8\x4b\xbb\xb7\x50\x01\x49\xf6\x37\xa9\xd9\xff\xbd\x98\x95\x6b\x45\x03\xb9\x31\x1b\x83\x11\x0a\x09\x59\x66\x09\x67\x7d\xf1\xd5\xda\x5b\xd5\x15\x89\xf2\x53\x08\xec\xd3\x45\x9c\xad\x37\xdd\x48\xa5\xab\x3c\x80\x90\xe0\x6c\xde\xf1\x2c\x34\xb4\x14\x32\x37\xb9\xc9\x5a\xc3\x64\x03\x84\xf6\x62\xc9\xe0\x09\x19\xeb\x99\x56\x46\xfd\xcb\xed\x47\xfa\x78\xeb\x17\xd8\x35\x4a\xd4\x3e\x8a\xe8\x0d\x41\x47\x86\x85\x31\xc2\x6b\x92\x74\x8b\x4e\xdd\x8e\x2a\x09\x5f\x90\x6c\x4e\x96\xe9\x5b\xfe\x8e\x64\x09\x0d\xba\x02\x0b\x3d\x1f\x3a\x8b\xea\x53\x6d\x8a\xde\x72\xa1\xda\xc1\x6d\xd5\x42\x66\xb1\x2b\x1b\x51\x24\xdd\x76\xb5\x5b\x9c\xe0\xa5\xa2\x7e\x85\x1b\x2b\xfd\xdd\x8b\x38\xd6\x7d\x29\x01\x1d\x8a\x46\xc6\xa5\xe7\xa5\x0a\x8e\x90\x96\x2c\xb5\xd6\xf3\x47\x7b\x55\xa7\x50\x02\x31\x8f\x24\xdc\x97\xf9\x1c\xdb\xad\xd1\xa3\x88\xe3\xf0\xde\xb8\x6b\x05\xf1\xb7\x26\x7d\x85\xf0\xda\xc9\xb6\x42\xbf\x06\xda\x2b\xad\x9f\xb2\xff\x8f\xbd\xb7\x6f\x8e\xdb\x36\x17\x47\xff\xbf\x9f\x02\x95\xcf\x8c\xed\x73\xb5\x2b\x3b\x2f\x6e\xaa\x4e\xe7\x8e\x22\x29\xc9\x4e\x6d\x69\x7f\x92\x9c\xb4\x53\xf5\xd8\x58\x12\xbb\x8b\x2b\x2e\xc0\x92\xe0\xca\xdb\xb4\x77\xf2\x31\xce\x99\x69\xbf\x5c\x3e\xc9\x1d\x3c\x0f\x40\x82\x24\x40\x72\x65\x3b\x4d\x7a\xc8\x3f\x12\x79\x09\xe2\xe5\x01\xf0\xbc\xbf\x58\xdb\x5a\x99\x54\x4c\x2f\xe9\xfd\xfd\x58\x5b\x6b\x0c\x78\xa5\xf6\x2c\xf0\x1b\x99\x97\x1c\x2d\xda\xeb\x6c\x72\x8f\xaa\xa9\x17\x35\x99\x0d\x36\xcb\xb4\x11\x2a\x5c\xc4\x80\xab\xab\xd5\xb1\xf7\xbb\x3d\x66\x9a\x83\xb8\xf4\xd6\xe2\x5c\x76\xdd\x46\x12\x7d\xf0\x05\xfe\xe6\xd9\x6f\x3a\x84\x8f\x00\xb3\x53\x2d\x70\x8e\x9a\xfa\x07\x1f\x54\xef\xf7\x15\xa2\xb0\xae\x40\x23\x96\x68\xdd\xa0\x8c\x6d\xe4\x96\xd9\x20\x69\x88\xae\xef\x15\x35\xbe\x33\xe9\x84\x30\xef\x9a\xcd\x1f\xb8\x65\xc6\x23\xcd\xc4\xc9\xdb\xf4\xa5\x5b\x16\x72\xb4\x58\x30\x56\x8b\xbc\xb7\xf4\x6e\x6a\xd2\x1c\xa3\x1c\x61\xb3\x09\x60\xac\x5b\x49\xd6\x1c\x4b\x59\x28\xde\x0a\x0c\xfe\x34\x8e\xeb\xf3\xaa\xe2\xd9\x6c\xd6\x33\x27\x79\x81\x89\xe9\xd6\x62\xbc\xaf\xd3\x7b\x86\x73\x31\xeb\xb5\x93\x49\x76\x26\x6d\x82\x19\x61\xef\x3d\x30\x31\xf1\x83\x0d\x6c\x57\xcd\x2f\x6a\x9e\xbb\xfa\xdf\x2d\xa7\x3a\x10\x03\xbc\x16\x01\x74\x45\x52\x45\x5e\x39\x26\x54\x55\x3e\x64\x56\x33\x7d\x4d\xc9\x2b\xc3\x39\x0a\x29\x26\x7f\x65\x99\x57\xff\xcc\x1d\x8d\x8d\xc3\x8e\xe6\x75\xf3\xc0\xde\x76\x9c\x12\x4e\x37\x37\x2f\x87\x83\xe8\xe6\xe6\xa5\xeb\xd8\x32\x51\x72\x92\xf0\x2d\x2b\x3d\x42\x41\xf2\x41\x04\x31\xb9\x0f\xa4\xcc\x35\xf0\x31\x50\xac\x23\xbe\xfd\x97\xa1\x0f\xc9\xbe\x26\x55\xb8\x99\xd9\x07\xf3\xa3\x2c\x13\x7f\xec\x6f\x4e\x25\x6b\xbf\x3d\xf1\xe1\xe6\x54\xcc\x40\x62\x2d\xa7\xdd\x7c\xe8\x43\xe1\x8d\x29\x43\x86\x81\x19\xdb\x56\xe2\x04\x58\x22\x32\x6b\x7b\x59\x31\xf4\x48\x81\x7e\x83\x56\xb6\xaa\x80\x1a\x99\x90\xef\x8c\xe5\x6c\x36\xcf\x8f\x51\xfb\xe2\x4d\x51\x14\x49\x91\xab\xac\xf0\xc5\xc4\x55\xc9\x47\x26\x06\xa8\xb3\xf9\xc9\xab\xba\x7d\x79\x02\x5d\xeb\xdf\x61\x33\x6b\x3d\xda\xcf\x1f\x02\x3a\x70\xb2\x09\xe9\x39\x3c\xc5\x9f\xaa\xb4\xc2\x34\xb6\xf9\x75\x8c\x69\x1a\x77\xda\x68\x60\xf4\xc5\xdb\xd2\x8c\x4b\x3f\xef\xe1\xa4\x37\xbf\xaa\x4f\xa3\xa1\xe9\x80\xd2\x9a\x55\xa1\x02\x77\x0c\xff\xd1\xaf\x52\x75\x1b\x86\xa6\xc8\x7d\xa1\xb5\x3d\xc1\x99\x1b\xea\x93\xf0\xc8\x90\xb8\xcc\x0d\xf7\x69\x12\x06\x7c\xda\x11\x8d\x39\xd1\x13\xf2\xfe\xec\xf3\x40\xed\x8a\xc0\xcc\x79\xcc\x22\x9a\x9d\x44\x11\x4b\x18\xc6\x22\x0c\xe5\xc8\xae\x83\x9f\x96\xc2\x03\x7b\xa7\xd1\xd5\x06\x10\x85\x1d\x2a\x80\x4e\xca\x3e\xde\x5b\x4e\x00\x2f\x82\x01\xa9\x67\xea\xab\x79\xed\xfb\xca\x12\x01\x42\x85\x14\xbb\x8d\x2c\x6c\xa6\x41\xeb\x40\xe1\x55\x7b\x22\xb7\xe7\xe6\x66\xce\xf9\x5f\x99\x49\xb3\x54\x2f\x29\x34\x25\x2f\xe5\x2a\x27\xf7\x34\x13\x5c\xac\x34\xd1\x51\x45\x26\xfc\x5a\xbb\xc5\x0e\x93\xc2\x42\x0a\x50\xab\x76\x77\xa2\x56\x20\x6e\x9d\xd6\x0a\x78\x95\xd1\xfd\xdb\x22\x11\x2c\xa3\x18\xe0\xee\xeb\x7c\x4d\x73\x64\xd1\x62\x9e\x47\x72\xcb\x8c\x5e\x45\x79\x0b\xba\x61\x5e\xc5\xa2\x9e\x69\xd0\x7b\xfd\x1e\xc2\xa5\xd6\xf7\x6f\x26\xb8\xe2\x34\x09\xa5\x21\xea\xda\x44\xf7\xd3\x7a\x92\x52\x9b\x07\x36\xd6\xaf\xfc\xdc\xea\x52\x96\x44\x60\x43\xef\x18\x56\x36\xd0\x1d\x37\xdc\x1e\xf6\xa6\x50\xcd\xe5\x0d\xe4\x09\x9a\x4b\x33\x5c\x41\x6d\x59\x2d\x86\x30\xac\x66\xc4\x35\x79\x78\x9c\x2f\x5e\x7c\xf6\xa0\x45\xa1\x53\xb7\xa0\xc9\xd9\xc0\xd4\x91\xa1\x82\x6d\xef\x12\xda\x81\x82\xfa\xbf\x1d\x12\x75\xf3\xed\x1f\x5e\x9e\x5c\xfc\xfc\xc2\x6e\x60\xfe\x0f\x09\x99\x85\x0f\xbf\xbd\x98\xed\xfb\xdd\x3d\xcf\xd8\xaa\xa0\x59\x3c\x14\x4b\x7e\xd7\xf8\xa0\x9d\x76\xb6\x6c\xe1\x08\x5d\x1f\x25\x67\x7f\x39\xf7\xd2\xc1\xf5\x82\x6e\xfa\x99\xbe\xef\xbc\x9f\x35\xb8\x0c\x50\xe1\x1b\xe3\x59\xc0\x61\x4b\x37\x73\xd6\x6a\x3b\x73\xaf\xd2\xfd\x6a\x6a\x94\xd8\x7b\xde\xa6\x72\x69\x2f\x79\xae\x98\xa6\x0c\x83\xb4\x41\xdf\x79\x3f\x6b\xa4\x67\xb6\xaf\x50\x35\x14\xb2\x10\x2d\x76\xd5\xe2\x6a\x01\x0b\xcf\xbf\xf8\x64\xff\x73\x5d\xae\x67\xc8\xdd\xfc\xce\x69\x5c\x9f\xbb\xfe\xc1\x5c\x4f\x1f\xe4\x7d\xeb\xb8\x66\xac\xf3\x92\xbe\xcf\x62\xae\x50\x24\xb8\x2a\x12\x36\xcf\xb8\xd4\x74\x76\xf8\xe2\x3c\x1f\xd7\x17\x9b\xda\x5f\xc1\xdc\x11\x50\x7a\x98\xf3\xd9\x00\x89\x91\x55\x40\x0a\xab\x89\xaf\xbf\xd9\x7b\xb1\xef\xe2\xc1\xf9\xf1\x3d\x09\x1a\xfe\x70\x36\xaf\xb3\x76\x7a\xae\x79\xc1\x95\x29\x9b\x02\xd9\x0a\xfd\x07\xb0\xcc\xfb\x16\x33\xb1\x6b\xbb\x7d\x3d\x88\xb1\x78\x17\xa7\xfb\x4a\xe2\x7f\x38\x9b\x7f\xd8\x78\x46\xc8\x55\xf1\xa0\x50\x46\x23\x66\x7b\xc9\x50\xbb\x40\x8c\xcc\x4c\xd9\x24\xcc\xa4\x0a\x22\x9a\x5f\x20\xff\xc3\xd9\xdc\x2b\x82\xb6\xe2\x1d\xf7\x17\xc7\xc7\x7a\xa7\x3f\x69\xbd\x53\xf4\xad\x31\x86\x77\x30\xf4\x71\xf6\x31\x2a\x9e\x7e\x0d\xe3\x5c\xe0\x38\x68\xd7\xc4\xd7\x55\xc9\x53\x4f\x93\x76\xcd\x53\xef\x7c\xcd\xfe\x97\x55\x4f\xdb\x8d\x60\xb0\x8f\x55\xf6\x74\x2c\x53\x3a\x96\x29\x75\xb7\x60\x2c\x53\xfa\x31\xcb\x94\x76\x55\x11\x4d\xd3\x64\x77\x29\xbe\xc2\xca\x55\x7d\x84\xfa\xa4\xd6\x1a\xb5\x84\xb6\xa8\x0b\xf4\x84\xda\xc2\x2a\x43\x3a\xb7\x89\xba\x7d\xb4\x0f\x39\x15\xe8\xc9\xc6\x3a\xec\xc9\x6a\xc4\xf2\x42\xaa\x1b\xcd\xde\xf4\xcd\xfc\xac\x6c\xe9\xcc\xda\x0a\x53\x36\x75\x3a\xb8\xc5\xa0\xf1\xaa\x5c\x87\x9f\x6b\x72\x97\x66\x51\xc5\x4a\x56\xd5\x26\x8c\xf2\x9f\x80\x84\xfe\x38\x77\x2a\x92\x41\x3d\x94\x3b\x2e\x56\x5e\x77\x1f\x5b\xca\x1d\x55\xbb\x91\x4d\x35\x8d\xb5\xc3\x6e\x32\x9b\x05\xc8\x07\x61\x42\x03\x15\xde\xd3\x34\xe1\x7a\x51\xa8\x6b\xa1\x62\xe7\x4c\xcd\x3b\x31\x4c\xc6\x67\x60\x02\x26\xc2\x0e\x4d\x59\x6d\x7c\x88\xd7\xc4\x1c\x92\xc6\x8a\xb9\x60\xc4\xb0\x9f\xfb\xee\x2d\xe6\x79\xef\xcf\x44\xce\x30\xa8\x10\x0b\xff\x40\xc2\x69\x4c\x10\x6f\x98\x59\xcc\x76\x09\x6e\xc0\xb6\x12\xaf\x17\x4a\xf6\x6b\x5c\xb7\xf1\x90\x8a\x32\xae\x58\xc6\x29\x66\x1f\x72\xfc\xa1\x21\x3d\x93\x01\x9b\x39\xfa\x7b\xa5\x93\xae\xad\xe1\xf6\xe0\x84\x68\x09\x85\x30\x11\xd1\x34\x87\xa2\x17\x79\x35\x23\xdf\x54\xbc\xfc\x29\x29\x2b\x2a\x90\x2f\xa5\x5a\x9b\x50\x5f\x99\x4d\x16\x34\x07\xf0\x18\x2d\xe5\xdc\xec\x97\x70\x7f\xc3\xca\x1f\x5e\xd8\x00\x97\xca\x32\x26\x22\x7b\xf2\x26\x4e\x32\x3e\x59\x28\x0c\x9d\xb3\xb1\x58\xa6\x32\x8c\xcc\x20\x95\xa3\xad\xcc\x16\x98\xb0\x88\xcb\x84\xfe\x0e\xe0\x21\xa6\xe6\xf6\x56\xd8\x54\xa5\xe8\x0b\xde\x84\x44\xc0\x68\xa6\x37\x53\xb0\x15\x4c\xce\xb0\x04\x87\x26\x1c\xc6\xba\x47\xff\xf8\xc3\x3f\x2f\xa4\x82\xac\xa1\x27\x49\x62\x1c\xdb\xdd\xbe\xfd\xfd\xea\x6f\xc1\x55\x17\x8e\x53\x99\x8e\x92\x2a\x9e\x43\xb2\x42\x8c\x18\x34\x0b\xb1\x95\x4e\xa7\xe4\xc4\xe4\xf1\x0a\xc0\x16\x8e\x26\x2d\x2b\xbd\x1b\x1f\x70\xb3\x64\x0d\x20\x58\x8c\xfe\x87\xa3\x22\xa6\xd8\x79\x18\xaa\x00\x7b\xff\x14\x2d\x06\xa9\xa6\x68\x39\xfa\xfa\xd3\x9b\x49\x93\x86\x22\xdb\xf1\xe9\x0b\x1a\x83\x6b\x60\x2b\x51\x07\x7b\xa9\xa3\xf1\xea\x83\x7a\x61\xed\xc6\xd1\x40\x4f\x50\x7d\x2d\x43\xdd\x82\x60\xef\x8c\x4f\x34\x8d\x56\x7e\x97\xbd\x41\xc0\x20\xa6\x60\x2b\x24\x9f\xbc\x36\x57\xaf\xa3\x6d\x0b\x09\x5c\x34\x3f\x36\x4e\xdb\x32\x35\xf6\xbe\x25\x67\x49\x1c\x8c\x84\xa8\x9e\x12\x30\xb4\x44\x01\x4e\xd6\x37\x13\xf0\x58\x2b\x48\x23\x33\xbe\xd2\x70\x08\xdd\x7f\xfb\x00\xf7\xf5\x44\x1f\x21\x96\x6d\xf0\x03\x42\xd5\x53\xc7\xe4\x6a\xae\x08\xe6\x3c\x4e\x20\x75\x65\x77\x97\x25\xc8\xaa\x02\x17\x86\x0c\x1b\xb7\x68\x38\xc8\x2d\xd8\x74\x77\xaa\x2f\x40\x09\x45\x4d\x97\x50\x4c\x88\xcb\xf8\x6f\xba\x61\x26\x9e\x01\x6a\xab\x40\xe0\x78\x57\x2c\x66\xf5\x38\xd6\x65\x38\x63\x19\x73\xd9\x86\x85\x8b\x77\xab\x15\x0d\x03\x85\xc3\x76\x20\xf6\xfb\x4a\x66\xa4\x26\xdc\x1d\x42\xa4\x3d\xa4\x11\xdd\x13\x22\x7c\xa3\xb9\x80\xbc\x72\x52\x73\x0f\x99\xcd\x99\x0d\xba\x79\x70\xd9\x02\x47\xff\xae\xcb\x43\xfc\x99\xe9\xb8\x03\xdf\x72\x67\x21\xa5\xf4\x9a\xd5\x97\x12\xbc\x68\xf8\x04\x96\xff\x16\xe5\xd4\x27\x4f\xdf\xb6\x01\x60\xd7\xd8\xdd\xf1\x7e\x00\xa8\x4b\xd8\xd7\x7e\x97\xb4\xea\x91\x19\xf9\x46\xe6\x65\xb5\xa8\x6a\x17\x3d\x82\x7a\xb5\x97\xdd\x7d\x06\xd7\x59\x5f\x05\xb2\x79\xc0\x89\xef\x7b\x90\x69\x94\xc9\x1c\x38\x3d\xe7\x36\x06\x68\x42\x09\xc6\x5e\xdc\x4e\x30\x4e\xa0\x0b\x5d\x36\x23\x2f\x98\x49\xe6\xee\xc5\x79\x5a\x82\x54\x19\x8f\x54\xb0\xec\x64\xf5\x58\xea\x06\x5b\x68\x04\x13\x19\x42\x79\x25\x56\xeb\x39\x38\x75\x94\x57\x05\xec\x21\x27\x0e\x39\x4b\xd0\x5b\x62\xc5\xb7\x4c\x68\xe9\x53\x2f\xbf\xf3\x9c\x87\x19\x44\x67\xdc\x41\x90\xee\x0c\x98\xae\x1e\x21\xd5\xc5\x7e\x7b\x82\x1f\x94\x41\x17\x75\xbe\xca\xae\xf8\x22\x90\xb9\xa1\x7a\x60\x1f\x7f\x76\xb0\x08\x55\x1e\xa8\x9e\x26\x30\xca\x8a\x03\x1d\xd0\x98\x87\xdc\x02\xab\x07\xc1\x41\xae\x21\x85\x31\x9c\x52\xa8\x77\x66\x13\x7c\xe7\xe8\xe3\x69\x92\xd6\x43\x2e\x93\x1d\x09\x7a\x1b\x56\x4f\x23\x77\xb6\xaa\x27\x53\xb2\xe5\xac\x0c\xb3\x64\x70\xb5\x96\x3c\x7a\xa0\x2e\x91\x86\xd9\xca\xd5\xa7\x73\x9b\xf1\xfa\xf5\xd9\x3c\x90\x19\xdb\x3e\x43\x76\x35\x9c\x9b\xa0\x7a\x06\x64\x29\x68\x37\xee\x3f\x28\xfd\x99\x0b\xaa\x67\xff\x1c\x06\xd5\x33\xf4\x40\xee\xcf\x37\x5e\x54\x1f\xf5\x1c\xcb\x61\x8c\x82\x39\x99\x60\xd2\x2b\x3b\x46\x2c\x8c\x66\xa5\x85\x4a\x98\x82\x44\x88\x90\x80\x1d\xc7\xea\xee\xb3\x64\x88\x3a\x8f\xca\xb0\x3d\x4b\xf7\xbb\xb2\xb7\x07\x55\x8d\x90\x1e\xb2\xd2\xc7\x37\xb0\x21\x64\x05\xcc\x49\x36\xcc\xf3\x89\x23\x5f\x78\x8b\xc6\xd7\x97\x85\x3d\x20\x37\x99\x13\x93\x1c\xcb\xcd\x21\x72\x64\x35\xc5\x37\x65\xca\x9b\x1e\xae\xcf\x95\xcb\xcd\xd5\x01\xa3\x15\x42\x39\xb7\x10\x30\x6a\x57\x33\x4c\x0f\x8f\xb3\xb4\x89\x53\x34\x73\x33\x14\x83\xf5\x62\x00\x5b\x6a\x7f\x0f\x0c\xd6\xb3\xf6\x0a\xbd\x35\x30\xd8\x2d\xe2\xb0\x5b\x83\xc5\x6e\x11\x8f\xdd\x6a\x4c\xd6\xc9\xf3\x8c\xb8\x0c\x9e\x41\xb8\x2c\x7f\x80\x00\xdc\x2f\xf7\x76\xaa\xf0\xaa\xc7\x2b\xf7\x92\x27\x39\x63\x56\xf7\x05\xa8\x0c\x73\x82\xe6\x3b\xa1\xe8\xbb\xa7\xbd\xf2\x48\xa7\xd8\x6c\x78\xc8\x90\x58\xdc\xdd\xb7\x55\x79\x39\x52\xb3\xcc\xda\xd2\xb0\xbe\x6e\x17\x52\xa1\x21\xfb\x38\x90\x04\xd5\x01\x82\x71\x14\xb6\x76\xaa\x1e\xaa\x80\xe0\x71\xa8\x49\x8f\xac\xca\x12\x79\xff\xf4\xb0\x3e\x65\x07\xd8\x08\x55\x5b\x18\xd6\x66\xa7\xef\x51\x05\x80\x9e\x0b\xf4\x97\x37\x6b\x46\xd4\xbd\x84\xb3\x06\x5e\xc8\xf6\x1d\x22\x08\x4d\x84\x76\x55\x1a\xd6\x9e\xbd\xbb\x14\x76\xf5\xa6\x62\xa5\xa3\x57\x65\x8e\xf4\x7a\x58\x65\x0c\xb3\xed\xfb\x69\xc2\xfd\x5a\x26\x66\x93\x8e\x61\x8b\x6e\x6f\x2b\x82\xfc\x3b\xc0\x2e\xbf\x5a\xd3\xfc\xc9\x66\xf7\x26\xa1\x0b\x96\x3c\x05\xbc\x63\x90\x7c\xdf\x75\x36\x15\x5d\xad\xa2\x01\x0e\x19\xce\x0f\x7d\x11\x26\xa5\x79\x3b\xd6\xe3\x0e\x3c\x6f\xa6\x40\x07\xa8\xe8\xcb\x62\x8a\x30\x39\xf2\xe3\x0f\xff\xb0\x13\x05\xed\xa8\x59\xd0\xe0\x63\x81\x0b\x0e\xae\xb7\xbd\x24\x3d\x07\xbd\xac\xee\x6e\xbb\x57\x5b\x2e\xa8\x7b\x31\xfd\x0a\x07\x7d\xea\xd8\x72\xc9\x22\x13\xdc\x67\x34\x05\x09\xa0\x55\x13\x31\x55\xab\x68\x3b\x60\xea\x42\x8a\x89\xf5\x8c\x47\xf3\x2b\x46\x3e\x18\x9d\xc8\x52\x66\x1b\xd6\xd4\x41\x74\xd4\xcb\xad\x1e\x38\x0c\x6d\xc0\x54\x65\x32\x3e\x84\x00\x6f\x02\x9d\x4f\xa2\x48\x16\x62\x1f\xbe\xeb\xba\xfe\xe1\x4f\xc6\x7f\x35\x50\x72\x77\x9f\x1e\x4d\x26\x25\xa9\x8c\xcb\xec\x36\xc0\xcc\x95\xe8\xd9\x00\xa3\x07\xed\xe2\x8a\x3b\x4f\xdb\x20\x5d\x32\x21\x75\xa7\x90\xf0\x53\x97\x07\xa0\x80\xc8\x7b\x83\x9b\x3c\x04\xe4\xfd\x5d\x86\x14\xc8\x1e\xb0\x0f\x82\x36\xa9\x20\xae\x31\x71\x6e\x7c\x4a\x79\xa9\x89\xd4\xcc\x6f\xcf\xcd\x1f\xc6\xd8\x91\x3d\xd4\x0f\x64\x28\x97\x44\x86\x72\x4a\xa4\x7d\xbf\x7a\x79\xa5\x7f\xdf\x9d\xae\xc9\x49\x95\xc6\x0d\xb1\xbe\x85\xe7\x94\xcc\x7a\xa4\x0e\xfd\x54\xd6\x85\xb6\xd1\xa0\x92\x43\x94\xc9\x45\x1e\x34\xb2\xd7\x9f\x93\x8b\xb3\xc7\x01\x77\x6c\xf7\xd9\x4f\x9b\x15\x2a\xed\x36\xb4\xcd\x5a\xa9\x74\x98\x91\xed\x9b\x9b\x9b\x79\x65\x44\x0a\x5a\xd6\xf4\xf1\xd0\x4d\xc3\x53\xb7\x8e\x37\xef\x67\x54\xdb\x30\xb5\x96\xf1\x1e\xb4\xe7\x15\x7e\xf0\x61\x69\x0e\x2e\x19\x2e\x87\x59\xb7\xe3\x57\xa4\xfb\xc4\x54\xd4\x2c\x50\x84\xb9\xde\x29\xb8\x87\xc7\xd8\x8b\x9d\xed\x13\x36\x5d\x4d\xc9\xd7\xe7\x37\x87\x64\xfe\xfa\xe6\x90\x30\x15\x4d\x9f\x92\x57\xa6\x44\x54\x8f\x04\x61\xfa\xd0\xa7\xf6\xf2\xea\xb1\x66\x22\x56\xe0\xda\xf2\xf3\xd2\xb8\xa6\x54\xad\xf7\xd8\xc7\xc7\x73\xdd\xfe\x63\x6c\x63\xdf\x0e\xf6\x5b\x18\xdc\x1d\x84\x69\x4e\xcb\xad\xc2\x65\xda\xbd\x18\xba\x19\x84\xb0\xe9\xea\x98\x4c\x08\x7b\x47\x23\x75\x4c\x8e\x96\x52\x42\xc9\x47\x48\x7b\x43\x8e\x16\x34\x23\x17\x97\x37\xe7\xc7\xe8\x13\xc1\x84\xca\x76\x64\xd3\x47\x5c\x2e\x2f\x5e\xfe\xd1\xe0\xb1\x1d\x61\x1c\xf3\x61\x93\xb7\x30\xc6\x5b\xf0\x5e\x26\x6f\x71\x88\xb7\xd6\x5b\x21\x50\x5c\xad\x7a\xa0\xea\x3d\x2d\x45\x54\xcc\xe4\xad\x05\x6a\xae\x7c\xb1\xb0\xd5\x33\xe4\xbc\xd5\x0f\x80\x06\x2f\xa4\x6e\xad\xa5\x5d\x03\xa0\xdb\x04\xae\xc6\x81\xa1\x07\xd5\xce\x14\x38\x12\x2e\x98\x05\x82\x91\x7e\x35\xfb\x7d\x6c\x41\x6e\x6a\xda\x52\xb5\xc6\x62\xb6\xc7\x65\x39\xfa\x01\xc2\x1a\x1e\x33\x98\x15\x74\x97\x40\xa5\x47\xbb\x7d\x55\xd7\x13\xfc\xe9\xfd\x46\xc0\x3e\x3a\x81\xbd\x07\x97\x49\x0c\x00\x3e\x2c\x03\x94\x86\x12\x36\x3d\xbc\xd3\x21\x84\x90\x0c\x43\x46\xfd\x5d\xf1\x68\x33\x90\x5e\xce\x4e\x5f\xcd\x87\xda\x2d\x01\x11\x85\xe7\xee\x62\x28\x6a\x4f\x7d\x04\xb3\xc5\x48\x57\x19\x03\x7e\x82\x21\xcb\x04\xd1\xc1\xaa\x99\xf8\xb8\xd9\xf1\x6b\xa5\x9e\x4d\x7d\x9d\x52\xab\x8a\x93\xe6\x79\x65\xeb\xd1\xe3\x74\xc9\x91\x60\x05\xd2\x8d\xb6\x2f\x3a\x0c\x41\x83\x4e\xa2\x5e\xda\x1e\x34\x1e\xb8\x12\x29\x5c\x28\x01\x50\x22\x48\x3d\x46\x66\x4b\xa7\x8e\x74\x3f\x79\xb8\xd1\x00\x46\xf7\x65\xf0\x99\x82\x34\x27\xb5\x52\xc3\x65\x86\x13\x4a\x14\x8b\xd6\x82\x47\xd4\x5b\x3c\xa7\x7a\x40\xa0\x47\xa5\x15\xdf\xa4\x32\xaf\x1c\x4b\x31\x3b\x3c\xa4\x70\x28\x73\x27\x2e\x79\xc6\xee\x69\xe2\xcf\x02\x57\x3d\x88\x2f\x8c\x42\x01\x33\x30\x4a\xc2\x44\x55\x6d\x16\xbc\x47\xfa\x2f\x47\xaf\xee\x19\x9a\xbd\xff\x76\xe8\x6e\xa6\xc4\x8d\x9f\xee\x53\xdd\x96\x09\x61\xbf\x40\xb7\x43\x58\x21\xf4\x75\x1e\xad\x25\xb9\x42\x92\x4d\x9e\xf0\x29\x9b\x92\x94\x8b\x55\xde\xad\xbb\x1d\xb4\xde\x01\xe8\x20\xf5\x47\x26\x04\x00\x32\x9b\xdb\x08\x85\xf7\x76\x68\xa8\x09\x66\xc8\x8d\xbb\x50\x9e\x5b\x8d\x6e\x10\x0a\x03\x20\x10\xf0\x31\x0f\x2c\xce\xe6\x76\x75\x3c\xcd\xaa\xac\x14\x4e\x9e\x8e\xb2\x3c\x43\xf7\xe2\xde\x0b\x6d\xb4\x43\x7e\x02\xed\xca\x19\xce\x87\xd2\xc5\xa1\x84\xa9\xee\x22\x5f\xcd\xc7\xc4\x46\xa0\xb6\xf9\x8e\x99\x18\x43\x92\x52\x9e\x85\x13\x1a\x57\x8f\x16\x6a\x4d\x59\x15\x17\xa6\x74\x21\x0b\x35\x80\x94\x7c\x28\xb9\x51\x48\xa5\x6f\xdf\xb0\x93\x71\x81\x8d\x7b\x2c\xd1\xd0\xa4\xdb\x23\x64\x24\x19\x23\xc9\xf8\xa5\x93\x0c\x21\x95\x65\xad\x82\x60\xe9\xb6\x17\x0f\xb4\x14\x0f\xb3\x11\xb7\x5c\x99\x2c\xdb\xd7\xe3\xcd\x64\x9a\x85\x01\xd6\x73\x93\x07\x18\xa5\x1f\x66\x8e\x4e\x7f\xae\xc0\xbd\x3d\x70\x61\xfb\x01\xa9\x7f\x4b\x2d\x0b\x91\x00\x2e\x2f\x60\x61\x32\x85\x53\xcf\xb3\x2e\xd7\x1c\xe3\x57\x66\xf6\xf9\x1c\xfc\xdf\xaf\x20\x78\xc3\x86\x22\xa0\xef\xcc\x93\x05\x8b\x68\x91\x1b\x6f\x8e\x1e\xc7\xe0\x72\x8a\x11\xcb\xa0\x8f\xd2\x23\xe4\x29\x9a\x13\x6d\xb2\xbb\x9a\x7f\x4b\x1f\x91\x45\xc7\x97\x63\xd7\x77\xe3\xd0\xf5\xdc\xc0\x7f\x80\xb4\x52\xfb\xd7\xf6\x45\xf5\xef\xeb\xd3\x1b\x7c\x1b\x1e\xc6\xf4\xf8\x92\x2b\x66\xdd\x43\xa8\xb0\x07\xc4\x9a\x14\x30\x0b\xf8\xf3\xc9\x27\x9f\x7f\xde\x61\x63\xfb\x78\xc7\x3e\x0f\xa5\x5d\xc3\xa7\x6e\x26\x28\xd3\xae\x0d\x08\x95\x08\x54\xbe\x71\x47\x1d\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\xc6\x28\x09\xff\x8a\xc7\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\x42\x2b\x19\x71\xd9\x18\x25\x31\x46\x49\x8c\x51\x12\x63\x94\xc4\x18\x25\x31\x46\x49\x8c\x51\x12\xed\x67\x8c\x92\x18\xa3\x24\xca\x67\x8c\x92\x18\xa3\x24\x3e\x7e\x94\x44\x47\x2d\x18\x2d\x63\x60\xbe\x33\xdf\xbb\xee\x8e\x3b\x4e\xb9\xc9\x8e\xf7\x80\x34\x87\xe6\xcb\x31\xcf\xe1\x98\xe7\x70\xcc\x73\x38\xe6\x39\x0c\xa3\xc6\x31\xcf\xe1\x68\xc1\x1f\x2d\xf8\xa3\x05\x7f\xb4\xe0\x8f\x16\xfc\xd1\x82\x5f\x3d\xa3\x05\xdf\x79\x46\x0b\xfe\x68\xc1\x37\xcf\x68\xc1\x1f\x2d\xf8\xa3\x05\x7f\xb4\xe0\x8f\xb8\x6c\xb4\xe0\x8f\x16\xfc\xd1\x82\x3f\x5a\xf0\xdb\xcf\x68\xc1\x6f\x3e\xa3\x05\x7f\xb4\xe0\x37\x9f\xd1\x82\x3f\x5a\xf0\xcb\x67\xb4\xe0\x8f\x16\xfc\x31\xcf\xe1\x98\xe7\x70\xcc\x73\x38\xe6\x39\x1c\xf3\x1c\x8e\x79\x0e\x87\x8c\x30\xe6\x39\x1c\xf3\x1c\x8e\x79\x0e\xc7\xa4\x55\x63\xd2\xaa\x31\xcf\xe1\x98\xe7\x70\xcc\x73\xd8\x35\xff\x31\xcf\xe1\x48\x32\x46\x92\x31\xe6\x39\x1c\xf3\x1c\x36\x9e\x31\xcf\xe1\x98\xe7\xb0\xf1\x8c\x79\x0e\xc3\x42\xe4\x98\xe7\x70\x8c\x92\x18\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\xe8\x58\xf1\x18\x25\x31\x46\x49\x8c\x51\x12\x63\x94\xc4\x18\x25\x31\x46\x49\x8c\x51\x12\x63\x94\x44\x68\x25\x23\x2e\x1b\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\xc6\x28\x89\x31\x4a\xa2\xfd\x8c\x51\x12\x63\x94\x44\xf9\x8c\x51\x12\x63\x94\xc4\xbf\x63\x9e\xc3\x21\xb6\xb0\x36\xe6\xea\xb7\x7f\x2d\xd1\x74\x59\xf1\x9a\xbe\x59\x17\xb9\xab\xcd\x37\x87\x0e\x93\x05\x4a\x51\xd3\x72\x07\x96\xe4\xdf\x15\x48\xc8\xd8\xb7\x8e\x4b\xdd\xa8\xe3\x5e\x56\x1e\xdf\xca\xe6\x78\x0c\x30\xf3\xe8\xdf\x82\x59\xf3\x40\x6c\xd1\x9d\x82\x9e\x3f\x9e\xa2\x24\x53\xea\x61\xd6\x7c\xa5\xd9\xc2\xdb\x03\xe8\xef\xf6\x00\x0e\xb0\x69\xeb\xeb\x9a\x2e\x35\x4b\xa3\x00\x65\x42\x07\x89\xbc\x67\x19\xce\x06\x3d\x86\x9c\xc9\xe5\x44\x6e\xb8\x52\x2c\x3e\xd4\x12\x39\xba\x9b\xfb\x3a\x8d\xa4\xc8\x39\xa6\xac\x44\x89\xfb\xf6\x80\x8b\x25\x17\x5c\xb1\xdb\x03\x32\x21\xe0\xa5\xe2\x2c\xc7\x8a\x38\x66\x9e\x24\xa1\xb9\x9a\x92\x72\x65\x5e\x90\xe8\xb9\xf2\x98\x09\xc5\x23\x9a\x98\x09\x36\xfb\xe1\x82\xd0\x24\x5d\x53\x51\x6c\x58\xe6\xb4\x83\x03\xe0\xeb\xd5\x98\x05\x8d\x70\x88\xa6\x58\xaf\x62\x13\x0f\x87\x28\x36\x8b\xb6\xdc\x9e\x66\xec\xec\xe2\xe4\xa6\xef\x78\xcc\xb1\x19\xe1\x22\xe6\x11\xca\x24\xa5\x6b\xf4\xda\xa6\xa1\x04\xea\xc5\x73\x0b\xa8\x05\x5b\x4a\x3f\xe2\xa1\x62\x47\x74\x77\xc1\xb9\x2e\xa4\x4c\x58\x3b\xab\x66\x07\xd5\x69\x48\xe5\x37\xae\x84\x87\xa7\xda\x91\xf3\xec\x45\x4b\x79\x74\x87\xff\x91\x85\x17\x01\xe9\xb5\x35\x38\x76\xe7\x24\x18\x47\x6e\x67\x0f\x95\x34\x0a\xa6\x0e\xb9\xa3\x9a\x47\x4e\x96\x32\x49\xe4\x3d\x42\x0d\x85\xcf\x52\x1c\x43\xba\xf0\x3b\x94\x4d\xf0\x62\xbf\x49\xb8\x62\x19\x4d\xf4\x2f\xbe\x9e\x6f\x6f\xc9\x04\x03\x19\xf4\xa9\xde\xa4\x34\xe3\xb9\x14\x87\x04\x22\x99\xac\x50\x61\xbb\x5c\x4a\x49\x16\x34\x03\x41\xa7\x1c\xee\x57\x7b\x0e\x57\x8d\xa7\x45\x22\xf6\x97\x82\x26\xbf\x45\xcf\x3b\x4b\xe8\xf8\xd2\x50\x38\x9e\x43\x1b\xab\xb4\x2b\x87\xf4\x23\x91\xef\x61\x1e\xb4\xf2\x16\x59\x54\x7f\x46\xf8\xe7\x74\x3a\x25\x7f\x77\x66\xa0\xb2\x82\x59\x17\xfa\xd2\x03\x0d\xc7\xf8\x03\xf1\xfb\xbc\x1a\x6d\x65\xcf\x50\xd5\x5c\xf5\x02\xb8\x18\x30\x39\xdf\x60\x7b\xce\x17\x06\xeb\x9a\xa0\x7f\x4b\x9c\x39\x6b\x81\x16\xfa\x7b\xa3\x49\xc7\xd3\x6a\xe8\x9b\x72\x64\xaa\xaa\xdd\x71\x76\xe6\x57\x70\x48\xbd\x44\xd7\x74\x51\x6a\x36\xe4\x12\xda\x82\x68\x0b\xff\x2f\x9e\x3d\xfb\xe4\x05\xfe\x17\xdf\x94\xdf\x5c\xaf\x65\xa6\x26\x11\xcf\xa2\x82\x2b\x60\x5c\xcc\x47\xbe\x81\xfe\xf6\xb7\xce\xaf\x41\x05\xaa\x9e\x60\x9b\xa7\x65\xa3\x94\x66\x4c\x60\xb2\xdb\x55\x26\x8b\x54\x73\x6b\xb7\xb7\x8a\x26\xc9\x13\xaf\x2a\xdb\x64\x5f\x45\xe7\x84\x12\x5f\xd8\xde\xec\x19\xa6\x49\xe2\x48\xa8\x70\x41\x5f\xe2\x79\x40\x16\x2c\x80\xe4\xf4\xd5\x46\x3c\x63\xfd\xb7\x5c\xfc\x9e\x1f\x92\xc9\x21\x79\x03\x70\x38\x9a\x92\x6b\xb8\x72\xc4\x5c\xb9\x60\xa7\x1b\x99\x31\x92\x6a\xe6\x34\xcf\xf9\x96\x91\x05\xfa\x1e\xef\xac\x66\xc4\xe8\xac\x08\xcb\x23\x9a\x32\x12\xad\x69\x46\x23\xc5\x32\x33\xed\x73\x74\xe0\xf4\x5e\x86\x27\x40\xa5\x36\x34\x66\x93\x22\xc5\x63\x91\x3f\x2d\xd1\x11\x84\xbc\x18\xd4\x71\xcf\x16\x9a\xfb\x65\x06\x79\xb8\x3b\x1e\xb3\x34\x91\xbb\x0d\x13\x5e\x74\x6a\xbe\x4f\x33\x19\xdb\x43\x0a\xfd\xea\x3b\x05\x38\x29\x93\x42\x31\x11\x3b\x47\x9d\x46\x77\xe6\x87\xbf\xeb\xe6\x55\xff\xe4\x57\xbf\x0b\xdd\x80\x98\x6d\x6d\xf7\xbf\x22\x8d\x5b\xe0\x43\x65\x5d\xcc\x53\x5d\x97\x30\x94\x2b\xbc\xf6\x7e\xf5\xd1\x58\x43\x33\x49\x2b\x6a\xec\xcb\x20\x82\xbe\x72\x00\x4d\x05\xb5\x66\xc5\x01\xdc\xaf\x21\x8c\xb2\x46\xf3\x1d\x87\x0e\x93\x68\xda\x8b\xa7\xf4\xbd\x93\x26\xd3\xf4\xa1\xf9\x97\x16\x6a\xa6\x04\xdd\xa7\x80\x9a\xbc\x4b\x35\x47\xa5\x92\x9d\x23\xd3\x3c\x81\x2c\xd9\x5e\xbf\x38\x07\x8f\x0a\x12\x65\xcc\xf8\x6d\xe7\xe6\x76\xcb\x8c\x08\x9e\x3c\x3d\xb4\x9e\xd7\x31\x5b\xd2\x22\x51\x39\xc1\x65\x69\xd0\x65\x71\x40\xa6\x51\x92\xdc\x6b\x5c\x39\x33\xb9\xcc\xf5\x24\xce\x9d\xb4\xe6\xc0\xb7\x5a\xfc\x59\xa6\x8c\x06\x87\x21\x12\x0a\xe0\x34\xe3\x13\x9e\xe3\x1d\x9b\x90\x3f\x19\x56\x4e\x4f\xc8\x8e\xf4\xe7\x43\x43\x22\x34\x63\x0c\x9a\xc7\xda\xc0\xde\x7b\xcc\x45\x94\x14\xb1\x55\xcd\x47\x54\x33\xcb\xd0\x41\xd5\x0d\x41\x22\x2d\x64\xb9\x24\xe8\xee\xa9\x9e\x89\x5f\xd6\x72\x27\x77\xee\x9f\x5b\x0d\x22\x1a\x31\x55\xdd\x7b\x85\x3b\x68\x17\x5c\xfa\x61\xef\x80\xbe\x4e\x41\x32\x0e\x6d\x13\xe2\xc0\xef\x8c\x58\xec\x88\x27\x19\xa3\xfa\x36\x45\x77\x84\xae\x28\x17\xde\x23\x8b\xc7\x04\xd5\xa9\xc9\x3d\xdd\xe5\x2d\xa7\x59\xb4\x73\x1e\x12\xc1\xb6\x2c\xab\x9d\x3a\xaf\x56\x73\x60\x36\xfa\x0a\x0a\x84\x01\xe9\x28\x2d\x02\xa9\xcc\x73\xbe\x48\xec\xc0\x95\x23\x87\xfe\xe0\x3a\x65\x91\x5f\xec\xc6\x85\x84\x5d\x5b\xba\x05\xfc\xa0\xec\xec\x17\xb9\xdb\xbf\x02\xe5\x88\x5d\x83\x5d\xae\x64\x46\x57\xcc\xfe\x94\x2b\xaa\x0a\x04\x0c\xea\xad\x59\x7c\xe1\x68\x14\xef\xb8\x88\x35\x36\xb2\x20\x4d\x93\x22\xa3\x49\xf5\x4b\x24\x05\x9a\x90\xf2\x63\xf2\xa7\x3f\xeb\x5f\x74\xff\x2c\x36\xf1\x5f\xe6\xd7\xc9\x64\x62\xfe\x43\x53\x6e\x23\xc9\x08\x4d\x39\x7b\xa7\x98\x80\x86\xd3\xbb\x2f\xf2\x29\x97\x47\xdb\xe7\xb7\x02\x07\x3d\x2d\x72\x25\x37\x57\x0c\x55\xe2\x67\x0c\x84\x44\x40\xd8\xb5\x78\xad\x76\x08\x54\xa9\xe9\xce\x26\x2b\x26\xa6\x77\xc5\x82\x2d\x0a\x9e\x68\xa9\x55\x0f\x60\x87\x7f\x12\xb3\x2d\x4b\x80\x51\xb1\xf8\xeb\x86\x6f\x58\xae\xe8\x26\xd5\xf2\x5b\x02\x4e\xff\x9a\x8c\x1d\x13\x74\x29\x14\xe8\x9b\x97\x33\x95\x4f\xa3\x2c\x9e\xa6\x99\xd4\x90\x8e\x00\xc5\x4d\x65\xb6\xba\x15\x1a\x77\xc2\x34\x80\x21\x3a\x26\x81\x66\x75\xb5\x2d\xae\xd7\xef\x46\x98\xf0\x5c\xfd\xde\xfb\xfe\x25\xcf\x55\x7d\x53\x5a\xb3\x34\x3b\xce\xc5\xaa\x48\x68\xd6\x6e\x00\xfb\x15\x49\x7d\x68\x4e\x93\x22\x57\x28\xb0\x6e\xed\xde\xe9\x7f\x4c\x0c\x04\xf4\xbe\x40\x67\xd1\x9a\x6d\xaa\x48\x39\x99\x32\x71\x32\x9f\x7d\xfb\xe9\x75\xfd\xf7\xc6\xb5\x6a\xce\xbd\xee\x7f\x0c\xa6\x36\x9a\x2d\xb8\xca\x68\xb6\x23\xb3\x39\xc9\x8b\xc5\xc4\x4e\xf3\xe8\x74\x76\x76\x55\xc3\x69\xa8\x22\x59\x6b\x2c\x88\x8c\x13\x88\xc7\x20\xdb\x21\x9a\x53\x12\x43\x61\x8c\x5d\x73\x43\xb6\x9c\x3a\x1e\x26\x68\x3b\xc4\x4f\xdd\x7e\xe5\xb2\x3d\x51\x6b\x80\x2a\xf5\x41\xee\x35\x0e\x28\xe9\x9d\x43\x5e\xbf\xb5\xf5\xf8\x7e\x0d\x37\x63\x68\x45\xdf\x63\x44\x34\x06\xfc\x2c\x36\xb0\x46\x4c\x03\x78\xd3\x10\x3d\xea\x53\xc4\x69\x10\x0a\x73\xf7\xa7\xc0\x12\xb1\x2c\xb7\x42\x73\x24\xc5\x96\x65\x8a\x64\x2c\x92\x2b\xc1\xff\x5a\x76\x9e\x5b\xd3\x2f\x94\xdd\x68\xb1\x91\x5c\x28\x96\x69\xe6\x09\x90\xde\x21\xe0\xf8\x0d\xdd\x91\x8c\xe9\x61\x48\x21\x9c\x0e\xad\xe3\xc9\x2b\xcd\x34\x73\xb1\x94\xc7\x90\x75\x25\x3f\x3e\x3a\x5a\x71\x65\xef\x77\x24\x37\x9b\x42\x70\xb5\x3b\x82\x6b\xca\x17\x85\xde\x92\x23\xb8\x8b\x47\x39\x5f\x4d\x68\x16\xad\xb9\x62\x91\x2a\x32\x76\x44\x53\x3e\x81\xb9\x0b\xb8\xe0\xd3\x4d\xfc\x28\x33\x08\x21\x7f\xec\xc3\x88\x6d\x44\x0a\x97\xab\x6b\x1b\xf4\xed\x32\xc1\x8a\x28\x15\x20\x5b\x53\x42\xdb\x92\xf6\xab\xf3\xeb\x1b\x62\x47\xf7\x06\x76\x22\xf0\xab\x2f\xf3\x6a\x1f\x34\xd0\xb8\x58\x5a\xfe\x0d\x34\xdf\xae\xba\x03\x99\x87\x84\x7b\x58\xf9\xbc\x58\x6c\xb8\xca\x9d\x74\x1d\x72\x4a\x4e\x01\xed\x69\xa2\x58\xa4\x31\x55\x2c\x9e\x92\x99\x20\xa7\x74\xc3\x92\x53\x9a\xb3\x8f\xbe\x0b\xc0\xc4\x4e\x34\x6c\x87\xee\x43\x20\xc8\x36\xa4\x3b\x2e\x11\x69\x60\xdb\x9a\x17\x55\x53\xe0\x7a\xa4\x87\x0d\x0c\xaa\x82\x71\x29\x09\x3b\x69\xdb\x8d\x6d\x10\xe9\x0e\x33\x5c\xc0\x71\xb9\x55\xa1\xc7\xfa\x56\xcd\xe6\xc4\xa2\x34\xc4\x60\x0b\x96\x48\x7d\xb6\xa4\xd1\x48\x31\x9f\x15\x2a\xcc\xb7\x8c\x9c\xc3\x2f\x81\x73\x58\xcb\xbc\xf2\x42\xf8\x08\x5c\x83\x1b\x4b\xd0\xe4\x18\xdc\x77\x6d\x6e\xa1\x36\xb3\x26\xa7\xe0\xbe\xfc\x98\x5c\xc2\x48\x41\x47\x0a\xea\x6e\xc1\x48\x41\x7f\x32\x0a\xea\x62\x87\x61\xd4\xb3\x8d\x6b\xaa\x67\x7f\xfa\xc9\xde\xa5\x10\xf0\x36\x9b\x0f\xd1\x86\xe9\x9d\x36\x1f\xd4\xe3\x6a\x9e\xcc\xe6\xdb\xcf\xe0\x5a\xcd\xe6\xdb\x17\x4f\xad\x5c\x6e\x8f\x85\x57\xe8\x9e\xa1\x92\x7f\xa6\xef\xe6\x92\x46\x0c\x6c\x79\xb7\xb7\x07\x0d\xb3\x49\xa9\xbd\x02\x3d\x44\x22\xe5\x9d\x55\x1f\x72\xfb\xa5\x57\x6b\x6c\x9d\x81\x9c\x78\x9f\xd9\xbc\xe6\x6e\x82\x75\xec\xc0\xa0\x67\xf4\x22\x80\x44\xa8\x9a\x82\xfb\xa6\x97\xde\xdf\xde\x2a\x50\xa6\x14\x79\xcb\x0f\xb4\x11\xd4\x0a\xa1\x46\x65\x29\x40\x99\x19\xd5\x9f\xaf\xd3\x66\x59\xbc\xdb\x5b\xdd\x9f\xa9\x87\x57\xae\xdf\x20\xbf\xbc\x3e\x2a\x17\xfe\x90\xd9\x52\xa4\x73\xf7\x69\x0a\x31\x6e\x9a\xac\xd4\xfc\xf2\xd0\x9f\xf2\xbc\x3a\x0a\xa8\x2a\xf1\x75\xcb\x73\xd4\xcb\x62\x5a\x15\xaa\x48\x5a\x64\xa9\xd4\x37\xf5\xc9\x6c\x69\x72\x13\xae\x59\xb5\x35\x7a\x1c\xeb\xe9\xd3\x9d\xda\xc2\xea\x28\x25\xc3\xed\x4f\x18\xcd\x44\xb9\x6d\x66\x07\xab\x7e\xf5\x04\x8a\x1c\xf4\xe8\x41\x1f\xf3\xdb\x5b\x65\xb7\x63\xea\xd5\x82\x7f\x70\xbe\x8e\x54\x33\xd4\xc7\xb9\xff\x4a\x9d\x63\x2e\x38\x7d\xee\xff\x13\x4d\x00\xc6\x3e\x03\x40\xab\xc7\xd6\xbf\xe4\xa2\x78\xd7\x7d\xea\x4b\x0b\x75\x79\xa0\x7f\x0b\x47\x6f\x93\xaa\xdd\x94\x54\xc3\xb8\x46\x6d\xb4\xf0\xf2\xbc\x13\xb3\xe8\x67\x25\xb7\x2c\x13\x68\x1b\x2a\xdd\x8d\xe4\xa1\xf1\x76\xd5\xd3\xce\x64\xb1\x42\x3f\x08\xab\xea\x35\xcc\x76\x25\xb9\x7b\x55\xe3\xb8\xb9\x70\x2e\x75\xc3\x32\xe5\x88\x9e\xea\x85\x8c\x11\x2d\xc0\x99\xfc\x2d\x61\x7a\xfd\x78\xb1\x63\x7d\x48\xb6\x78\x11\xfd\xb1\xd6\x55\x68\xeb\x16\xea\x56\xee\x2a\xf0\x1d\x12\x57\x69\x2c\x73\xf4\xda\x3d\x52\x12\x3c\x41\xf5\x5c\xac\xf2\xc3\xef\x8a\x90\xc8\x88\x26\x65\x08\xa7\x51\xb4\xce\x96\xa4\x86\xcf\x2c\x2e\x73\xf6\x77\x10\xa8\xe1\x22\x59\x78\xd7\x5c\xbb\x60\xf9\x80\x4f\xf4\xda\x0d\xaf\x05\x90\x73\xc0\xef\x45\x32\xf6\x18\x55\x77\xa8\x84\x75\x6d\xce\x70\x04\x27\xe4\x5e\xa3\xb9\x3a\x72\xf6\xe3\x03\xd4\xfa\x4e\x6a\xdb\xef\x19\xac\x8c\xba\xa9\x14\xc8\xfa\x66\x7b\x3b\x15\x2e\x32\x82\x7c\x90\x19\x38\x56\x1c\x7a\x66\x55\x4e\xe1\x90\x50\xc0\x1a\x6d\xf6\x8f\x18\xbb\xb7\x4b\xbb\xca\xba\x94\x55\xae\x1c\x0c\x1c\xd0\x32\x4d\x86\x59\xa4\xcc\x28\x39\x79\x92\x17\x7e\x0c\x43\x73\xf2\xe3\x0f\xff\x60\x6a\xfd\xec\xc7\x1f\xfe\xf9\xd4\xf8\xbc\x83\x39\x92\xc5\x44\xcf\xfa\xb7\x84\x2b\xc2\x73\xf1\x58\x55\xba\xeb\x7e\x3a\x4e\xf0\x2a\xa7\x99\xd4\xbc\x8b\x73\x00\x10\xc2\x0e\x4e\xa8\x9f\xc2\x6a\xce\x5e\x8a\x6b\x03\x13\x8e\x71\xa5\x10\x07\x04\xbc\x0f\xc6\x0a\xa1\x35\x4b\xf3\x5b\x9b\x34\x61\x1b\x7d\xd2\x10\xd1\x57\x68\xc3\x9d\x74\xfe\x5b\xff\xde\x71\xc5\x69\x92\xec\xc8\xff\xab\x21\x9c\x66\x6c\x02\x5e\x34\xa5\x6d\x68\xae\xb7\x88\x99\x9c\x9d\x25\xd2\x8f\x8a\x4d\x48\x22\xd0\x8f\xad\x19\x8a\xec\xbd\xa9\x4d\x2a\x85\xd7\xc8\xd0\x85\xba\x85\x3f\x5d\x53\x4b\x5d\xa0\xdb\x19\x0f\x55\x70\x61\x5a\xee\x2c\xb9\x37\x33\x86\x06\x5c\x8b\xdf\xc2\x0b\xec\xae\x49\x84\x22\xe3\x1a\x36\x10\x4d\xea\x6b\xdc\xa0\xa5\xd7\x8f\x73\x73\x73\x4d\xd0\x96\x4d\xe0\xe9\xf5\x5f\x5d\xb0\xaa\x74\x2e\x38\x5c\x95\xcc\x86\xd9\x70\x34\x13\xed\x43\x1b\x7b\xbd\xa2\x85\x9f\xf4\xf5\x43\xa6\x82\x4f\xcf\xe7\x9d\x11\x59\x3f\xa7\xa4\x3c\x1f\x2b\x07\x4b\x8f\x9b\xa8\x08\xa0\xeb\x09\x00\x37\xf0\xa6\x23\xcb\xd2\x83\x9d\x4b\x53\x53\xd4\xb9\xef\xb8\x9f\x54\xd1\x8f\x78\xe1\x38\x50\xb9\x65\xab\x3c\xb4\x99\x44\x38\x7b\x5d\xe5\x11\xad\x09\x6d\x29\x81\x98\x3a\xce\xa6\x93\xca\x3f\xd3\x0a\x04\xe8\x78\x18\xea\x14\x5d\x8a\xd3\x94\xd1\xac\x74\xf9\x03\x8f\x75\x52\xce\xab\xb2\x8a\xdb\x9e\xad\xeb\x26\x6b\x94\xc1\xee\x14\x01\xd2\x50\xd2\x8d\x51\x07\xf9\xcb\xd6\x41\xf2\x94\x6e\x16\x89\x8c\xee\x3e\x86\x02\x72\x36\x3f\x79\xf5\xa5\xee\xbc\xa9\x7d\x2c\x5f\xb4\x55\x8f\xd5\x84\x9a\x7a\xc7\xf2\xcd\xa8\x74\x1c\x95\x8e\xa3\xd2\xf1\xdf\x4e\xe9\x58\x22\x85\x41\x1a\x47\xd1\xc4\x2e\xd5\xb3\xbf\xbe\x51\x0b\x32\x1a\x76\x1e\x42\xd6\x45\xc6\x68\xa2\x05\x9d\x50\x8a\xdd\x3e\xd2\xd8\xc1\xc9\x3d\x22\x37\x97\x67\x97\xc7\x98\xa8\x41\x23\x6c\xba\x40\xf6\x60\x43\x45\x01\x62\x0c\x8d\x63\xe0\x12\xa6\xe4\x3b\x66\x51\x02\x9e\x9b\x06\x95\xf0\x77\xaf\x24\x59\x53\x11\x27\x8c\xfc\xe9\xcf\xff\xa9\x0f\x2b\x02\x27\xd9\x99\x90\x6b\xaf\xa0\x66\x27\x12\xe2\xff\x3a\x18\x2e\xaa\xf0\x48\x7a\x59\xae\xf7\xe0\xe9\x71\x11\x6f\xb8\x9f\xe3\x24\x83\x18\xfb\x9c\x69\x5a\x4f\x33\xdf\xee\x9b\xd9\xef\x97\x22\x79\x08\x07\xde\x17\x70\xf5\x60\xd6\x36\xe2\xb1\xcf\x29\xb6\x6b\x4e\x31\x4b\x98\xf2\x32\xed\xdd\x31\x20\x10\x1e\x78\xd2\x77\x75\x02\x5f\x17\xc2\xdc\x1e\xef\xc0\x0f\xbe\x3b\x41\xc8\x04\x44\x93\x89\x7b\x89\x5b\xaf\xca\x53\xdb\x7c\xa3\xa1\xdc\xfc\xcd\x80\xb1\xf9\x73\x1d\x4c\xcd\xb7\x0e\x18\x46\x3e\xf8\x5f\xcc\x07\x47\x52\x2c\xf9\xea\x63\x31\xc2\xa7\xd0\xbb\x8f\x13\xc6\x37\x7e\x56\xd8\xcc\xc9\xc7\x0b\x47\x65\x87\x23\x33\x3c\x32\xc3\xc1\x6d\x18\x99\xe1\x5f\x2a\x33\x8c\x78\x61\x0f\x6e\xd8\x45\x31\xd5\xf3\x00\x76\xb8\x50\xf2\xc4\x90\x25\xe0\xb0\x7d\xa4\xf8\xa3\xf1\x06\x61\x4a\xdd\x9a\xd6\x3e\xb4\x76\x24\xa8\x3f\x39\x41\x45\xee\xfc\x63\x11\xd4\x6f\xa0\x77\x1f\x41\xc5\x37\x7e\x82\x6a\xe6\xe4\x23\xa8\xeb\xb2\xc3\x91\xa0\x8e\x04\x35\xb8\x0d\x23\x41\xfd\xa5\x12\x54\xc4\x0b\x7b\x10\x54\x17\xc5\x54\xcf\xfe\x04\x15\xd4\xd6\x1e\x2a\x38\x58\xb1\x30\x48\xea\xf5\x6b\x0b\x10\xab\xcd\xce\xf6\x52\x0a\x04\x69\xf0\xa2\xad\x70\x9b\x94\x43\x8c\x04\xf7\x5f\x4a\x70\x53\x29\x93\x8f\x43\x6c\xe7\xd2\x1a\x60\x5d\x42\xab\x7f\xf5\x11\x59\x98\x47\x9b\xc0\xa6\xa6\x93\x91\xb8\x8e\xc4\x35\xb8\x0d\x23\x71\xfd\x65\x12\x57\x8d\x0b\x06\x13\x56\xdd\xf8\xa1\x54\xf4\x9a\xff\x75\x90\xaf\x14\x34\x26\x39\xff\x2b\x64\xa5\x2b\x72\x74\x70\xab\xdc\x8e\x09\xcd\x73\xbe\x12\x1b\x7d\x32\x82\xb9\x1e\x4d\x42\x05\x99\x4c\xc9\x99\xcd\x52\xa0\x24\xf9\xe4\x85\xe9\xcc\x78\x97\x3f\x7f\xfe\x89\xfd\xe1\x45\xd0\xeb\x2a\x40\xbc\x03\xfa\xfa\xd6\x7a\xf4\x2c\xc8\xe9\xec\xec\x6a\x4f\xb7\xae\x98\xe7\x74\x91\x78\x95\xec\xb5\x31\xc0\x7f\xdc\x36\x86\xfc\xa5\x59\x51\x79\x79\x6b\x66\x08\x5d\xdd\xf5\x41\x47\xd0\x55\x0e\xdc\x3e\xd0\x99\x4b\x65\xe1\xb7\xa7\xfe\x80\xa7\xdc\x57\x63\xb8\x8e\x2b\xce\xf4\xd5\x46\x0b\x82\xb9\xc8\xb6\x4c\x2f\x38\xaa\x96\x1e\xe1\x27\xf3\xd9\xf6\x39\x64\x15\xb8\xa7\x59\xec\x9d\x2d\x24\x69\x52\x7c\xc1\x13\xae\x76\x1a\x51\x28\x83\x69\xdc\x5e\x61\xe9\x98\x4b\xe6\xb0\xfe\xca\x0b\x00\x74\x83\x47\x8c\x8d\x15\xd4\x93\x9d\xaf\x0e\x78\x8f\x91\x8b\x89\xd0\xfe\xf9\xf7\xd0\xb4\xaf\xb6\x50\xc3\x92\xa8\x42\x08\x96\xe8\x35\xd9\x6c\x67\x45\xc0\xe7\x87\xa0\x97\x67\xcc\x12\xbe\x65\x59\x95\x72\x57\xff\x54\xa6\xa3\x77\x2a\x35\x85\x77\x98\xf4\xed\x32\x81\x3c\x3a\xc1\x52\x95\xad\x3b\x30\x9b\xcf\xe6\xf0\x81\xa9\xec\x4c\x22\x2a\x9c\xe4\x0f\xb7\x07\x98\x0f\xc2\x96\x97\x80\xba\x34\x13\x2c\xa4\x72\x7b\x30\x25\xe4\x24\xb4\xde\x8d\xa9\x1e\xed\xf4\x60\xf2\x4b\xe4\x88\x3b\x60\xe4\x0a\x86\x7a\x6f\x33\x59\xe0\x19\x09\xd6\x06\x73\xe0\x55\x8f\x4b\x69\xc1\x8e\x90\x13\x67\x0e\xf5\x79\x87\x7a\x87\x09\xda\x83\xde\x9c\xe0\xbd\x4d\xad\xe1\xce\x01\xbd\x43\xf5\xed\x08\xf5\x49\xab\xa4\xd8\xa6\x00\x8d\xe5\x48\x6c\xee\x4e\xdd\xb9\xb0\x3b\x50\x39\xd4\x77\x16\x13\x78\xc2\x97\x98\x12\xc9\x3a\x35\x3f\xd5\xb3\xa8\x60\xdd\x79\x74\xba\x1d\xc8\xfc\x22\x8f\x3e\xf1\xaf\x06\xf8\xd4\x9e\x5a\x5a\x85\xa6\x94\x22\xab\xe8\x94\x67\xc3\xbb\x8f\xfa\xac\xb1\xc6\x43\x9b\xf5\x13\x2b\x9d\x1a\x40\x61\xee\xa0\xdb\x83\x0b\xb6\x85\x34\x8b\x58\x79\xb3\x3e\x98\xaf\x77\xdd\x83\xc1\xcd\xbe\x54\xf3\x9d\xce\xc5\x54\x4d\x64\xa1\x56\x92\x8b\xd5\xff\x16\x94\xda\x89\x75\x04\x55\x97\x03\xe1\x81\x29\x90\x1c\x00\x56\x58\xd5\xe2\x45\xc8\x34\xe4\x24\xd3\x26\x9d\xe1\x19\x86\x3b\xd2\x4c\xa8\x8b\x00\x5a\xd8\x55\x16\x2a\xe7\x31\x2b\xa5\x0d\x68\xa4\x6f\xbc\xaf\x53\xc8\xf2\x9f\xff\xa5\x60\x19\x8d\xbd\x79\x63\xbb\xc1\x21\xe3\xc1\x39\x56\x4f\xf4\x56\xe5\x96\x83\x33\x99\x35\xf4\x71\x31\xd1\x03\x65\x00\x00\xa0\x9a\xc5\x0e\x13\x69\xf8\xe6\x5c\xa6\xd9\xdd\xef\x30\x6f\xdf\x25\x54\xbc\xe7\xd5\xfe\xf6\x0f\x2f\x4f\x2e\x7e\xb2\xbb\x0d\xa3\x79\x79\xcb\x72\x02\x0f\xbe\xdc\x41\x2d\x4d\xdb\x3d\x61\x54\xc6\xfc\xa4\xca\x18\xdd\x47\xd5\x6d\x5e\x3b\x84\x1f\x43\x45\xf3\xfb\x62\xc1\x4e\xab\xf1\x4e\xdd\xf1\x9a\x8a\x9b\xae\xb6\x6d\x75\x4e\xe7\x4a\x9a\x4a\x9e\xae\xc6\xa3\xea\x67\x54\xfd\x8c\xaa\x9f\x7f\x3b\xd5\x4f\x17\x36\x69\x2b\x84\x6a\x09\xf2\x9a\x00\xfe\x7d\x19\x6f\xe4\xa0\xe4\x06\x05\x1f\xae\x2d\x72\xba\x18\xc2\x2c\xd8\xd1\x50\x7c\xc6\x94\x85\x76\x64\x93\x6c\x73\xcb\xe3\x82\x26\xce\x34\x43\x1c\x9e\xe9\x6b\x6f\x51\xbf\x8c\x0b\x1e\x22\x10\x97\xf9\xee\x43\x53\xb6\xf1\xda\xd8\xa8\x9a\x57\xb0\xb0\xc0\xb9\xd1\x1c\x2c\x76\x96\xa5\x39\xb4\x45\xcf\x04\x47\x1e\x15\xd9\x94\x40\x0f\x03\xea\x92\x68\x34\x25\x22\x9e\xb0\x6c\xce\x32\x2e\xc3\x6e\xbb\x4d\xe4\x70\xd5\xf8\xd0\x16\x2b\x4c\xf1\x5f\x4a\xea\xbf\x96\x32\xdb\x94\x43\xf0\x60\xd8\xa6\x7d\x20\xcd\xae\x13\x3d\xa9\x6f\x05\x70\x23\x53\xf2\x27\xa3\xee\x3b\x26\x9f\x6f\xfe\xec\x11\x30\xec\xd3\xef\xea\xdb\xe7\xe8\x1b\x88\xfd\x6c\x41\xe0\x42\x73\xd4\x5d\x3b\xad\xdf\xff\x3c\x36\x79\xed\x84\xe3\x0e\xdd\x60\x37\x84\xd7\x2e\x03\x32\xb1\x47\x56\xe3\x00\x14\x12\x42\xca\x9d\x1a\x45\x1d\xbb\x7b\x66\x75\x99\x0f\x5d\xe9\xc0\xd5\x12\xe3\x30\x75\xaa\x79\xc2\x70\x80\xa9\x67\xcd\x8f\x4f\xca\xcf\xaa\x9d\x2d\x94\xdc\x50\xc5\xa3\x2a\x71\xae\xec\xad\x43\x52\x87\x0a\x08\x34\x5a\x06\xd9\x19\x4d\x4d\x75\x98\x2d\x4c\xba\x8e\x34\x19\x5c\x5a\x64\x48\x61\x91\xff\x7d\x17\x9e\xc0\xa9\x85\xb4\xe4\x5d\x87\xa6\xbe\xda\xeb\xf2\x93\xea\xf0\x97\x59\x9d\x25\x89\x64\xba\xeb\xa1\x3b\xf6\x01\x3c\x50\xa5\xbe\x74\x02\xc3\x73\x77\x95\x06\x0d\x7c\x5c\xdc\x86\x51\xa3\x43\xb0\x9b\x49\x31\xd3\x81\xdf\x4c\x5c\xf8\xcf\x03\xc3\xfd\xef\x3b\xd5\x7d\x5b\x5d\xcf\xce\x3e\x64\xcb\xeb\x99\xd9\xbb\xb6\xbe\xa7\xc0\x93\x2d\xeb\xe4\x1c\x8d\xf1\x0c\xfc\x2b\xce\x80\xcd\xf7\xd1\x43\xfb\xeb\x1a\xd6\xc6\x37\x5d\xe7\xc0\xf6\x1f\x5a\x03\x6b\xf0\x0f\xe3\x49\xf8\xd7\x9c\x84\xae\xb7\x4c\x45\xf1\xb7\x9f\x9e\xca\x4d\x8a\x35\xc3\x82\x10\xab\x43\xea\xdc\xfb\x59\x03\x5e\x0b\xa6\xee\x19\x13\x30\xc6\xf6\xd3\xa0\x4d\x02\x3a\x28\xa5\x78\xb0\x4c\x68\x50\x3f\x73\xcf\x82\x03\xab\xe7\xcf\xbc\xc0\xea\x02\xd2\x9a\xd1\x44\xad\x4f\xd7\xcc\xef\x39\x5f\x5f\xda\x37\x4e\xe3\xf2\xf4\xcb\xcc\x4e\x25\x2f\x2b\x89\x68\xb6\x0e\x7b\xf6\x2e\x0d\x3b\x18\x44\xe1\xbb\xe6\x9e\xc8\xd5\xb5\x66\x1e\xb9\xda\x5d\x47\x19\x63\x4d\xd5\x59\x7b\x01\x2f\x9b\x5f\xd8\x6d\x49\xe4\x8a\xe4\xe6\x0d\xa1\x0b\xb9\x65\x26\x29\x4c\x22\x57\x5e\x1e\x06\x12\x15\x31\x51\x1a\x1d\x73\x15\xcb\x42\xb9\x9b\x31\x13\x4b\xb9\xdf\x8a\xc2\x3a\xf2\x90\xa0\x1e\xd4\x84\x54\x9a\xef\x00\x28\x3a\x75\x21\xf0\xb5\xa3\x93\x32\x2b\xd4\xbf\x7a\x54\x88\xa0\x86\xaa\x29\x3e\xc8\x4c\x3d\x86\x34\x77\xcb\x22\x41\x73\x4b\xbc\x01\xb5\x0a\x94\x4a\x83\x00\x61\x28\x4b\x82\x25\x6c\x69\xa4\x0a\xda\xb2\xbc\x60\x8f\x98\xf4\xea\x9e\x96\xd9\x46\x6c\xb2\x1e\x63\x4e\xdf\xc8\x18\x6b\x7c\x2c\x34\x47\xb6\xe5\x99\x04\x37\x19\xb2\xa5\x19\x87\x23\xd9\x9a\x2f\xda\x9a\xef\x8a\x05\x9b\xb8\x9a\x9b\x34\x93\x11\xcb\x9b\x62\x5a\x57\xde\xc7\x6a\xb4\x6f\xa9\x57\x6f\xb3\xa7\xc7\x6c\x08\x89\xd5\xb6\xed\xbc\x3e\x6a\x33\xbd\x91\x07\x00\x01\x13\xba\x17\x08\x00\x6c\x2e\x96\x49\x81\xc9\x8e\xb0\xaa\x3c\xd4\xaf\xc4\x03\x12\x34\xf9\xf8\x31\x68\xe6\x7e\xdb\x77\x39\x6b\x03\x35\x16\x06\x95\x8a\xf9\x96\xd5\x4e\x05\xcf\xed\x00\xbe\x05\xf2\xd0\x46\xcb\xf8\xd0\x24\x96\xd9\xb0\x6c\x65\x35\xb5\x27\xf3\x59\xa5\xa8\xd5\x84\xc9\x7b\xe9\x45\xe0\x94\x79\xe0\xd2\x43\x8c\xbb\x55\x7e\x2d\xe0\x7c\x48\xb5\x1f\xe9\x53\xfd\x0d\x98\x3e\x19\xa0\x02\x6c\x2d\x62\x3f\x35\x60\x17\xe7\xf0\x21\xb9\xa6\x81\xab\x25\xfb\x71\x4f\xad\xc5\x0f\xe7\xa0\xfa\x54\x28\x75\x06\x6b\x10\x17\xd5\xd7\x65\x37\x93\x45\x3e\xa8\x9a\xa5\x43\x8b\x48\x3e\x96\x26\x91\x7c\x00\x59\x9b\x0c\x3f\x27\x03\xb5\x8a\xad\xe5\xee\xa1\x59\xec\xdb\x51\xa7\xf4\xdc\x07\xd1\x2e\xee\xb1\x7a\xb2\x8f\x96\xb1\x05\x83\x61\x9a\xc6\xfe\x4e\x81\x35\xf9\xe0\xda\x46\xb2\x57\x6d\xec\x21\xd7\x81\x8c\x78\x65\x08\x30\x07\x29\x2a\xdb\xc0\xf9\x70\xca\x4a\xf2\x41\x15\x96\xc3\x97\x3e\xe4\x0c\x75\x2a\x2f\x5b\x40\xf9\x90\x0a\x4c\xf2\xd3\x22\xd6\xf1\xa2\x7c\x80\xd3\x32\x48\xff\x49\x3e\x9a\x0e\x94\x7c\x24\x3d\x28\x19\x8f\xd1\x4f\x7a\x8c\x06\xaa\x50\xc9\xc7\x54\xa3\x92\x8f\xa5\x4a\x25\xe3\x61\xfa\x09\x0f\x53\x5f\x8b\xc1\x9a\x58\xf2\xb1\xb4\xb1\xe4\xc3\x6a\x64\x87\x00\xaf\x47\x33\xdb\x5e\xea\x07\xd2\xce\x92\x3d\x35\xb4\x43\xd6\x32\x44\x53\xdb\x5e\xd0\xde\xda\xda\xd0\x72\x12\xb9\xca\xdf\x43\x63\xdb\xbf\xc2\x8e\x64\xd2\x1d\xda\x5b\xd2\x79\xf4\x47\x37\xe8\x9f\xd4\x0d\xda\xc4\x42\x00\xeb\xcb\x3f\x4a\x22\x18\x53\xb5\x0f\xd9\x6f\x7c\x51\x79\x3a\xd7\x5e\xb6\x5d\x9b\x1b\xb3\x33\xfb\x5c\x3a\x33\xbb\xaf\xa1\x6b\xe3\xbd\x5c\x6a\xdc\x80\x82\x8e\x0e\xcc\xa3\x03\xf3\xe8\xc0\xfc\xcb\x72\x60\xee\xb2\x40\x41\x39\xac\x21\x01\xd9\x90\x9a\x5f\x1f\x7f\x2c\x68\xc5\x6a\xe5\xcd\x31\xaf\xbf\xfe\x47\x69\x74\xf1\xda\x3e\xec\xd7\x18\x4d\xd6\x2c\xd6\x05\x95\xc0\x48\x24\xb3\x8c\xe5\xa9\xa6\x18\x62\x45\x0c\xb3\x64\x4b\x2a\xed\x95\x92\xbf\x51\xe5\xe9\x84\x5c\xe9\x09\x32\x11\xd1\x34\x2f\xe0\xde\x56\x33\xf2\x4d\x25\xa0\x21\xc4\x29\x4d\x09\xf9\x52\xaa\x75\xa3\xaa\x40\xab\x8a\x98\xee\xa8\x59\x3d\x21\xa0\x23\x2a\x2b\x84\x98\x2a\x06\x13\x92\xb3\x94\x66\xfa\x90\x12\x59\x28\x42\xf5\x74\x6d\x81\x06\x6c\xa2\xb9\x30\xa8\x3c\xcf\xc3\xe5\xee\x09\xcc\xc1\xec\x97\x0b\x78\x2e\x56\x58\x2f\x09\x8b\x32\x40\x35\x97\x2d\x6b\x42\x62\x4d\x43\xbd\x12\xc1\x56\x30\x39\x83\x78\x0f\x49\x9a\xb1\x25\x7f\xc7\x62\x14\x1d\x7e\xfc\xe1\x9f\x17\x52\xfd\xf8\xc3\x3f\xa7\xe4\x24\x49\xe0\xa2\xd6\xfb\xf6\xf7\x6b\xa2\x85\x29\x1e\xa7\xb2\x42\x10\x55\x3c\x07\x2b\x2d\x86\xde\x99\x85\x28\x89\x7d\x4e\xc9\x09\x90\xb2\x76\xf6\x22\x03\x5b\x38\x9a\x54\xd8\xe3\x69\xeb\xd8\xe3\x92\x35\x80\x60\x31\xfa\x1f\x66\x35\x58\xf6\x2b\x58\xd5\x0c\xa1\x0a\xb0\xf7\x4f\x51\x0f\x00\xa3\x96\x53\xf4\xc7\x36\xf7\x4a\x88\x78\xdc\x82\x92\x56\xbf\xfc\xe4\x44\x5a\x06\x7b\xa9\x5d\x95\x33\x27\x88\xba\x66\x43\x6d\x1c\x0d\xb0\xa0\xc2\xb5\xec\x10\xdc\x6a\x91\x9e\x44\x63\x42\xe5\xbb\xc5\x03\x81\x41\x5c\x9b\x61\x47\x18\x67\x60\x65\xb7\x07\x17\xcd\x8f\x81\x82\x09\x22\x53\x34\xb3\x9b\x80\xdc\x50\x09\x92\xea\xa9\x95\x6d\x37\x5d\xb1\x77\x9a\x80\xe5\x80\x1d\xa0\xb8\x53\xad\x68\x98\x8d\x29\xef\xd3\x11\x03\x8d\x7b\xa2\x8f\x10\xcb\x36\xf8\x01\xa1\xea\xa9\x63\x83\x28\x03\xea\x6d\x51\x93\x70\x6a\x83\x06\xc8\xf2\x32\x1f\x02\xec\xa5\x26\x7f\x10\xf4\x0b\x07\xb9\x05\x9b\xee\x4e\xf5\x05\x28\xa1\xa8\x25\x23\x64\xc6\x62\xeb\x1f\x91\xd3\x0d\x5e\x01\x13\x3f\x0a\x21\xd5\x43\xb4\x31\x8e\xe5\xc9\x9c\xb1\xac\x9c\x2f\x59\xec\x70\xb2\x65\x0d\xfb\x72\x45\xc3\x40\x61\x8a\xda\xe9\x79\x21\xf6\xfb\x4a\x66\x75\xce\x59\x73\x6b\xa6\x9e\xda\x9e\x10\xe1\x9b\x34\xe1\x55\x35\x3f\x46\xdc\x43\x96\xf0\x0d\x37\x41\xb3\x38\x53\x4d\xde\x34\x4c\xba\xfb\x2c\xab\x8a\x55\x30\xe1\x0e\x7c\xab\x88\x17\x8a\x77\xb4\xb6\x94\x1e\x63\x5c\x60\xf9\x6f\x57\x50\x51\xfc\xc9\xd3\xb7\x6d\x00\xd8\x35\xf6\x28\x75\xf6\x02\x40\xab\x82\x79\x77\xe7\x32\xab\x19\x39\xab\x5d\xac\x75\xd3\xdc\xcb\xee\x3e\x83\xeb\xac\xaf\x02\x1d\x88\x80\xf7\xdf\xf7\x20\x53\x48\x73\x01\x65\x1b\xab\xdb\x18\xa0\x09\x25\x18\x07\xe9\xc6\x02\xd5\xd7\xab\xa7\x6e\x0e\x67\x2a\x0f\xe3\x3c\xcd\xa7\x43\x52\xd9\x3c\x54\xc1\xb0\x7a\x2c\x75\x83\x2d\xac\x0a\x3e\xf9\x51\x5e\x89\xd5\x7a\x0e\x4e\x1d\xe5\xd5\xd2\x88\x40\x2d\xd7\xb2\x8c\xec\x8a\x6f\x99\x30\x59\x3b\xba\x23\x63\xc2\x0c\xa2\x33\xee\x40\x13\x62\x47\x25\x82\xea\x11\x52\x5d\xec\xb7\x27\xf8\x81\x55\x4d\x35\xf8\x2a\xbb\x62\xdd\xa4\x87\x72\xe8\x7d\xfc\xd9\xc1\x62\x1e\xa8\xb4\x57\x3d\x4d\x60\x60\xd9\xbd\x6e\x68\x40\x9b\x21\xe0\x20\xd7\x5c\xf3\xd4\xb2\x2c\xb6\x68\x4b\xac\xe5\x64\x4d\xb7\xcc\xd6\xef\xe3\x4b\x38\x5d\x69\x7f\xb7\xa0\x04\xb4\xb9\x11\x08\x57\x56\x73\x87\xd3\x9d\x9b\xde\x0d\xb3\x64\x70\xb5\x96\x3c\x7a\xa0\x2e\x91\x86\x29\xcc\xaa\x70\x73\x3a\xb7\x79\x7d\x5e\x9f\xcd\x83\x49\x63\xf0\x19\xb2\xab\xdd\xe5\xf6\xf0\x19\x58\x74\xaf\xde\x78\x88\x13\xc3\x90\x02\x7c\xf8\x3c\xa4\x0c\x9f\x7d\x86\x1e\xc8\xfd\xf9\xc6\x8b\xea\xa3\x9e\x63\x39\x8c\x51\x30\x27\x93\x5c\x33\x87\xb8\x20\x16\xd6\xb2\x43\x5e\x2c\x54\xc2\x34\x1b\x8c\x92\x94\x19\xab\xbb\xcf\x92\x21\xea\x3c\x2a\xc3\xf6\x2c\x54\x1c\x33\x00\x9e\xdb\x83\xf2\xc6\xf6\x91\x95\x3e\xbe\x81\x0d\x21\x2b\x6b\x10\x85\x8d\x42\xe9\x89\x23\x5f\x3c\xed\x39\x86\x32\x53\xd8\x03\x72\x93\x6e\x19\xdc\x9c\x91\x8c\x8a\x15\xcb\x8f\xac\x3e\x0e\x52\x6e\x75\x66\x7a\xc2\x87\xbb\x72\xb9\xb9\x3a\x60\x34\x41\x28\xe7\x16\x02\x46\xb9\x65\x86\xe9\xe1\x71\x96\xb8\x07\xc8\xdc\x0c\xc5\x60\xbd\x18\x00\x9b\xee\x85\xc1\x7a\xd6\x5e\xa1\xb7\x06\x06\xbb\x45\x1c\x76\x6b\xb0\xd8\x2d\xe2\xb1\x5b\x8d\xc9\x3a\x79\x9e\x11\x97\xc1\x33\x08\x97\xe5\x0f\x10\x80\xfb\xe5\xde\x4e\x15\x5e\xf5\x78\xe5\x5e\xf2\x24\x67\xcc\xea\xbe\x00\x95\xd1\x4d\x9a\x30\x92\xef\x84\xa2\xef\x7c\xe9\x7e\xdc\xe7\xf6\xb6\x53\x6c\x36\x3c\x64\x48\x2c\xee\xee\xdb\xaa\xbc\x6a\xa5\x40\xdb\xd2\xb0\xad\xce\x0c\x63\xeb\xd3\xd3\x03\x04\xe3\x9f\x6f\xad\x01\x3d\x54\x01\xc1\xe3\x50\x93\x1e\x59\x95\x25\xf2\xfe\xe9\x61\x7d\xca\x0e\xb0\x11\xaa\xa6\x86\x99\x35\xcd\xf6\xc0\x01\xf5\x5c\xa0\xbf\xbc\x59\x33\xa2\xee\x25\x9c\x35\x48\x52\x61\xdf\x99\x12\xda\x0b\x95\xec\xaa\x0c\x79\x3d\x7b\x77\x29\xec\xea\xad\x07\x4f\xa5\x57\x65\x8e\xf4\x8a\xab\x91\xe0\x3d\x67\xda\xf7\xd3\x84\xfb\xb5\x4c\xcc\x26\x1d\xc3\x16\xdd\xde\x56\x04\xf9\x77\x80\x5d\x7e\xb5\xa6\xf9\x93\xcd\xee\x0d\xb8\xd6\x3d\x05\xbc\x63\x90\x7c\xdf\x75\x36\x09\x1f\xad\xa2\x01\x0b\xe9\xc3\xfc\xd0\xf1\xa1\x72\xfd\x8f\xf5\xb8\x03\xcf\x1b\xf4\x17\x4b\xc8\xa4\x05\x58\x1a\x8d\x45\x0b\x96\x90\x1f\x7f\xf8\x87\x9d\x28\x68\x47\xcd\x82\x06\x1f\x0b\x5c\x70\x70\xbd\xed\x25\xe9\x39\x84\x72\xbe\x56\x4f\xf7\x6a\xcb\x05\x75\x2f\xa6\x5f\xe1\x70\x53\x06\x63\x20\x2b\x65\x34\x05\x09\xa0\x55\x93\x87\x12\x4c\xcc\xe5\x3a\xfa\xa7\x2e\xa4\x98\x18\x2f\x15\x63\xe4\x22\xf7\x6b\x96\x31\xa3\x13\x59\xca\x6c\xc3\x9a\x3a\x08\xd3\xfb\x00\x5d\x5c\x1b\x30\x4e\x4a\x86\x0f\x20\xc0\xd7\x9d\xe9\xf6\xe0\xbb\xea\xfe\x74\x3f\x1d\xff\xd5\x40\xc9\xdd\x7d\x7a\x34\x99\x94\xa4\x32\xb6\x81\x37\x68\xd7\x28\xd1\xf3\x00\xcf\xbf\xd2\xf7\xaf\xf3\xb4\x0d\xf6\x34\x77\xad\xec\xe1\xa7\x1d\x85\xf2\xfe\xe0\x26\x0f\x01\x79\x7f\x97\x21\x05\xb2\x07\xec\x83\xa0\x4d\x1c\x6f\xcb\xfb\xb5\xcc\x6d\x51\xfe\x52\x13\x09\x45\xb8\xfb\xfa\x18\xc2\xd8\x91\xbd\x5c\xe3\x07\x72\x49\x64\x28\xa7\x44\xda\xf7\xab\x97\x57\xfa\xf7\xdd\xe9\x9a\x9c\x54\x69\xdc\x10\xeb\x97\xf9\x2c\xc9\xac\x37\x5d\x0b\x71\xac\x0b\x6d\xa3\x41\x25\x87\x98\x24\x93\x6c\xa7\x7f\xef\xef\xf4\xe4\xe2\xec\xb1\x37\xfd\x67\xfd\xd9\x4f\x9b\xd5\xed\xae\xda\xdf\x66\xad\x94\x2f\x91\x37\x3e\xf5\x38\x9d\x9b\x9b\x79\x65\x44\x0a\x5a\xd6\xf4\xf1\xd0\x4d\xc3\x53\x2f\xfd\x08\xdf\xcb\xa8\xb6\x61\x6a\x2d\xe3\x3d\x68\xcf\x2b\xfc\xe0\xc3\xd2\x1c\x5c\x32\x5c\x0e\xb3\x6e\xc7\x7b\x43\xf7\x89\x59\x70\x59\x6f\x92\x20\x8b\x95\x58\x8c\xbd\xd8\xd9\x3e\x61\xd3\xd5\x94\x7c\x7d\x7e\x73\x48\xe6\xaf\x6f\x0e\x09\x53\xd1\xf4\x29\x79\x55\x24\x8a\xa7\x7d\x1a\x3a\x03\x22\x38\xb5\x97\x57\x8f\x35\x13\xb1\x82\x28\x90\x9f\x97\xc6\x35\xa5\x6a\xbd\xc7\x3e\x3e\x9e\xeb\xf6\x1f\x63\x1b\xfb\x76\xb0\xdf\xc2\xe0\xee\x20\x4c\x73\x5a\x6e\x15\x2e\xd3\xee\xc5\xd0\xcd\x20\x84\x4d\x57\xc7\x64\x42\xd8\x3b\x1a\xa9\x63\x72\xb4\x94\x92\x4c\x8c\xdf\xc2\x31\x39\x5a\xd0\x8c\x5c\x5c\xde\x9c\x1f\xa3\x4f\x04\x13\x2a\xdb\x91\x4d\x1f\x71\xb9\xbc\x78\xf9\x47\x83\xc7\x76\x84\x71\x10\x1d\x28\x79\x0b\x63\xbc\x25\xe0\xae\xf0\x16\x87\x78\x6b\xbd\x15\x6e\xfa\x96\xbe\xa5\x09\x8f\x69\x29\xa2\x82\x33\x2d\x26\x84\x56\xbe\x0c\xd0\xd5\x33\xe4\xbc\x35\x7c\x7e\x6f\x6e\xe6\x1a\xba\x25\x2a\x86\xa3\x00\x40\xd7\x40\x76\x1c\x18\x7a\x50\xed\x4c\x81\xbb\xd6\x82\x59\x20\x18\xe9\x57\xb3\xdf\xc7\x16\xe4\xb7\xc5\xb3\x67\x9f\x46\xba\x63\xf8\x8b\x1d\x9b\x60\xfc\x41\xc2\x1a\x1e\x33\x98\x15\x74\xa7\x91\x45\x56\x6e\x5f\xd5\xf5\x04\x7f\x7a\xbf\x11\xb0\x8f\x1e\xf7\xf5\x3d\xe2\x19\x11\x00\x1f\x96\x01\x32\x4b\xff\x90\x9d\x0e\x0d\x38\x1c\x80\x8c\xfa\xbb\xe2\xd1\x66\x20\xbd\x9c\x9d\xbe\x9a\x0f\xb5\x5b\x02\x22\x0a\xcf\xdd\xc5\x50\x4e\x12\x6f\x3d\x5b\x13\x40\x82\xa9\xc8\x61\x48\xc3\x9b\x99\x12\x0c\x1d\x42\x1c\x3a\x8c\x02\xed\x5a\xd4\xd4\xab\xcb\xba\x56\xb5\x4c\x06\x5f\xda\x7a\xf4\x38\x5d\x72\x24\x58\x81\x74\xa3\xed\x8b\x0e\x43\xd0\xa0\x93\x18\x75\x07\x4e\x37\x69\x3c\x70\x25\x52\xb8\x50\x02\xa0\x44\x58\x12\x61\xb6\x74\x92\x84\xf7\x93\x87\x1b\x0d\x60\x74\x12\x05\x9f\x29\x28\x37\xe1\xc2\xca\xe8\xdc\x41\xa1\xae\x58\xb4\x16\x3c\x6a\x27\xf5\xa8\x3f\x20\xd0\xa3\xd2\x8a\x6f\x52\x99\xa3\x87\x08\x64\x6d\x60\x99\x60\xc9\x8f\x3f\xfc\x4f\x4e\x78\xaa\x30\x7a\x61\xc9\x33\x76\x4f\x93\xa4\x67\xb2\x88\x2f\x8c\x42\xa1\xc8\xd1\xe0\xcf\xc4\x52\xa2\x03\xab\xf1\x1e\xe9\xbf\x1c\xbd\xba\x67\x68\xf6\xfe\xdb\xa1\xbb\x99\x12\xf0\x81\x60\xef\x40\xe1\xda\xa7\xba\xc5\x5d\x90\x4b\xf2\x05\xba\x1d\xc2\x0a\xa1\xaf\xf3\x68\x2d\xc9\x15\x92\x6c\x93\xd3\x3d\xe5\x62\x95\x77\xeb\x6e\x07\xad\x77\x00\x3a\x48\xfd\xfe\xdf\x01\x80\xcc\xe6\xd6\x0f\xfc\xbd\x1d\x1a\x6a\x82\x19\x72\xe3\x2e\x94\xe7\x56\xa3\x1b\x84\xc2\x00\x08\x04\x3c\x79\x03\x8b\x7b\x65\x5a\x3b\x9e\x66\x65\x32\x18\x70\x50\xce\x36\x55\x92\x7f\x9f\x57\x75\x7d\x71\xef\x85\x36\xda\xd1\x13\x81\x76\x43\xd3\xd5\x54\xcf\x50\xc2\x54\x2f\xcc\x50\xcd\xc7\x78\xa0\xa3\xb6\xf9\x8e\xed\xcc\xd1\x4e\x29\x37\xc9\x68\xba\x87\xd7\x42\x2d\x61\xef\x54\x46\x6b\x30\xa5\x0b\x59\xa8\x01\xa4\xe4\x43\xc9\x8d\x42\x2a\x7d\xfb\x86\x9d\x8c\x0b\x6c\xdc\x63\x89\x86\x26\xdd\x1e\x21\x23\xc9\x18\x49\xc6\x2f\x9d\x64\x08\xa9\x2c\x6b\x15\x04\x4b\xb7\xbd\x78\xa0\xa5\x78\x98\x8d\xb8\xe5\xca\x64\xd9\xbe\x1e\x6f\x26\xd3\x2c\x0c\xb0\x9e\x9b\x3c\xc0\x28\xfd\x30\x73\x74\xfa\x73\x05\xee\xed\x81\x0b\xdb\x0f\x48\xfd\x5b\x6a\x59\x88\x04\x70\x79\x01\x0b\x93\x29\x9c\x7a\x9e\x75\xb9\xe6\x18\xbf\x32\xb3\xcf\xe7\xe0\xff\x7e\x05\xc1\x1b\x36\x14\x01\x7d\x67\x9e\x2c\x58\x44\x8b\xdc\x78\x73\xf4\x38\x06\x97\x53\x8c\x58\x06\x7d\x94\x1e\x21\x4f\xd1\x9c\xf8\xca\xc4\x24\xd4\xfc\x5b\xfa\x88\x2c\x3a\xbe\x1c\xbb\xbe\x1b\x87\xae\xe7\x06\xfe\x03\xa4\x95\xda\xbf\xb6\x2f\xaa\x7f\x5f\x9f\xde\xe0\xdb\xf0\x30\xa6\xc7\x97\x5c\x31\xeb\x1e\x42\x85\x3d\x20\xd6\xa4\x00\x4e\x32\xe4\xf9\xe4\x93\xcf\x3f\xef\xb0\xb1\x7d\xbc\x63\x8f\x66\xc4\x61\xf4\xf8\x1a\x1d\x91\x86\x85\x4a\x74\x14\xd0\xb3\xa3\x8e\x51\x12\x63\x94\xc4\x18\x25\x31\x46\x49\x8c\x51\x12\x63\x94\x84\x7f\xc5\x63\x94\xc4\x18\x25\x31\x46\x49\x8c\x51\x12\x63\x94\xc4\x18\x25\x31\x46\x49\x8c\x51\x12\xa1\x95\x8c\xb8\x6c\x8c\x92\x18\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\xc6\x28\x89\xf6\x33\x46\x49\x8c\x51\x12\xe5\x33\x46\x49\x8c\x51\x12\x1f\x3f\x4a\xa2\x23\xd1\xad\x96\x31\x30\xdf\x99\xef\xdd\x90\x32\x7c\xde\x53\x6e\xb2\xe3\x3d\x20\xcd\xa1\xf9\x72\xcc\x73\x38\xe6\x39\x1c\xf3\x1c\x8e\x79\x0e\xc3\xa8\x71\xcc\x73\x38\x5a\xf0\x47\x0b\xfe\x68\xc1\x1f\x2d\xf8\xa3\x05\x7f\xb4\xe0\x57\xcf\x68\xc1\x77\x9e\xd1\x82\x3f\x5a\xf0\xcd\x33\x5a\xf0\x47\x0b\xfe\x68\xc1\x1f\x2d\xf8\x23\x2e\x1b\x2d\xf8\xa3\x05\x7f\xb4\xe0\x8f\x16\xfc\xf6\x33\x5a\xf0\x9b\xcf\x68\xc1\x1f\x2d\xf8\xcd\x67\xb4\xe0\x8f\x16\xfc\xf2\x19\x2d\xf8\xa3\x05\x7f\xcc\x73\x38\xe6\x39\x1c\xf3\x1c\x8e\x79\x0e\xc7\x3c\x87\x63\x9e\xc3\x21\x23\x8c\x79\x0e\xc7\x3c\x87\x63\x9e\xc3\x31\x69\xd5\x98\xb4\x6a\xcc\x73\x38\xe6\x39\x1c\xf3\x1c\x76\xcd\x7f\xcc\x73\x38\x92\x8c\x91\x64\x8c\x79\x0e\xc7\x3c\x87\x8d\x67\xcc\x73\x38\xe6\x39\x6c\x3c\x63\x9e\xc3\xb0\x10\x39\xe6\x39\x1c\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\x3a\x56\x3c\x46\x49\x8c\x51\x12\x63\x94\xc4\x18\x25\x31\x46\x49\x8c\x51\x12\x63\x94\xc4\x18\x25\x11\x5a\xc9\x88\xcb\xc6\x28\x89\x31\x4a\x62\x8c\x92\x18\xa3\x24\xc6\x28\x89\x31\x4a\x62\x8c\x92\x68\x3f\x63\x94\xc4\x18\x25\x51\x3e\x63\x94\xc4\x18\x25\xf1\xef\x98\xe7\x10\x92\x17\xf6\x65\x39\xbc\xd4\x8d\x3a\xce\x70\xe5\x1d\xad\x6c\x3e\xc4\x00\xe3\x8b\xbe\x20\x98\x61\x0e\x58\x7c\xdd\x29\xe8\xc4\xe3\x29\x72\xfd\xa5\xce\x62\xcd\x57\x9a\x85\xba\x3d\x80\xfe\x6e\x0f\x60\xb3\x4d\x5b\x5f\xd7\x74\xa9\xc9\xbf\x02\xf4\x02\x1d\x24\xf2\x9e\x65\x38\x1b\xf4\xae\x71\x26\x97\x13\xb9\xe1\x4a\xb1\xf8\x50\x4b\xaf\xe8\x9a\xed\xeb\x34\x92\x22\xe7\x98\xde\x11\xa5\xd3\xdb\x03\x2e\x96\x5c\x70\xc5\x6e\x0f\xc8\x84\x80\x47\x87\xb3\x1c\x2b\x0e\x98\x79\x92\x84\xe6\x6a\x4a\xca\x95\x79\x41\xa2\xe7\xca\x63\x26\x14\x8f\x68\x62\x26\xd8\xec\x87\x0b\x42\x93\x74\x4d\x45\xb1\x61\x99\xd3\x0e\x32\x2b\xfa\x7a\x35\x26\x34\x23\x48\xa1\xd9\xd2\xab\x04\xc4\xb3\x21\x8a\xcd\xa2\x2d\xe3\x76\x20\xbd\x86\x50\x78\xe3\x0a\x18\x78\x50\x1c\x31\xa3\xc8\x0d\xc7\xc4\xa3\x3b\xfc\x8f\x2c\xbc\xe7\x5f\x4f\xb9\xc1\x30\x3a\xc0\x35\x7e\xc4\x0e\x58\x94\x34\xfa\x8d\x0e\xb6\xb7\x9a\x47\x4e\x96\x32\x49\xe4\x3d\xb8\x04\x1a\xd9\xa7\x94\x06\x10\x2d\xfd\x0e\x59\x63\xbc\xed\x6f\x12\xae\x58\x46\x13\xfd\x8b\xaf\xe7\xdb\x5b\x32\x41\x3f\x7a\x7d\x50\x36\x29\xcd\x78\x2e\xc5\x21\x81\x40\x1a\xcb\xd3\xda\x2e\x97\x52\x92\x05\xcd\x80\xcf\x2e\x87\xfb\xd5\x9e\xc3\x55\xe3\x69\x8e\x9c\xfd\xa5\xa0\xc9\x6f\xd1\xf1\xcb\xe2\x59\xbe\x34\x08\x96\xe7\xd0\xc6\xea\x8c\xca\x21\xfd\xf7\xf2\x7b\x98\x07\xad\x9c\x15\x16\xd5\x9f\x11\xfe\x39\x9d\x4e\xc9\xdf\x9d\x19\xa8\xac\x60\xd6\x83\xbb\x74\x80\xc2\x31\xfe\x40\xfc\x2e\x97\x46\x59\xd6\x33\x54\x35\x57\xbd\x00\x2e\x06\x4c\xce\x37\xd8\x9e\xf3\x85\xc1\xba\x26\xe8\xdf\x12\x67\xce\x5a\x9e\x82\xfe\xde\x68\xee\xe6\x69\x35\xf4\x4d\x39\x32\x55\xd5\xee\x38\x3b\xf3\x2b\x38\xa4\x5e\x9c\x6f\xba\x28\x05\x6b\xb9\x84\xb6\x20\x59\xc1\xff\x8b\x67\xcf\x3e\x79\x81\xff\xc5\x37\xe5\x37\xd7\x6b\x99\xa9\x49\xc4\xb3\xa8\xe0\x0a\xe8\xa6\xf9\xc8\x37\xd0\xdf\xfe\xd6\xf9\x35\x68\xe0\xd4\x13\x6c\xf3\xb4\x6c\x94\xd2\x8c\x09\xcc\xb5\xba\xca\x64\x91\x6a\x66\xe1\xf6\x56\xd1\x24\x79\xe2\xd5\xa4\x9a\xe4\x9f\x68\x1b\x2f\xf1\x85\xed\xcd\x9e\x61\x9a\x24\x8e\x80\x04\x17\xf4\x25\x9e\x07\xe4\x00\xfc\xc4\x9d\xea\xab\x8d\x78\xc6\xba\x0f\xb9\x28\x33\x3f\x24\x93\x43\xf2\x06\xe0\x70\x34\x25\xd7\x70\xe5\x88\xb9\x72\xc1\x4e\x37\x32\x63\x24\xd5\xbc\x51\x9e\xf3\x2d\x23\x0b\x74\x7d\xdd\x59\xc1\xdc\xa8\x4c\x08\xcb\x23\x9a\x32\x12\xad\x69\x46\x23\xc5\x32\x33\xed\x73\xf4\x1f\xf4\x5e\x86\x27\x80\xf8\x37\x34\x66\x93\x22\xc5\x63\x91\x3f\x2d\xd1\x11\x44\x5c\x18\xd4\x71\xcf\x16\x9a\xf9\x62\x06\x79\xb8\x3b\x1e\xb3\x34\x91\xbb\x0d\x13\x5e\x74\x6a\xbe\x4f\x33\x19\xdb\x43\x0a\xfd\xea\x3b\x05\x38\x29\x93\x42\x0b\xe8\xce\x51\xd7\x32\x2d\xfe\xf0\x77\xdd\xbc\xea\x9f\xfc\xea\x77\xa1\x1b\x10\xb3\xad\xed\xfe\x57\xa4\x71\x0b\x7c\xa8\xac\x8b\xa3\xaa\x8b\xb2\x1d\x86\x96\x0e\x39\xb6\x9b\xeb\x5e\xa2\x53\x55\x45\x16\x7c\xcb\xb2\x14\x0b\xcf\xa8\x61\x87\x31\x8d\xb1\x14\x76\x92\x96\xd3\xf5\x19\x4c\xba\xd6\x08\xea\xb2\x01\x34\x15\xb4\x6a\x5c\xc4\x3c\x02\xbe\xfc\x7e\x0d\x51\x7c\x48\xbd\x0c\x49\x74\xfc\x09\x4c\x9e\x63\x2f\x9e\xd2\xf7\x4e\x9a\x44\xc7\x87\xe6\x5f\x9a\xa7\x9e\x12\xf4\xde\x01\x6a\xf2\x2e\xd5\x4c\x8a\x4a\x76\x0e\x4b\xfd\x04\x92\x34\x7b\xdd\xb2\x1c\x3c\x2a\x48\x94\x31\xe3\x36\x9c\x9b\xdb\x2d\x33\x22\x78\xf2\xf4\xd0\x3a\xfe\xc6\x6c\x49\x8b\x44\xe5\x04\x97\xa5\x41\x97\xc5\x01\x96\x5a\x49\x72\xaf\x71\xe5\xcc\xa4\xd2\xd6\x93\x38\x37\x7f\xea\xfb\x68\x30\x67\x99\xab\x18\x3c\x55\x50\x1d\x69\x86\xf1\xf5\xca\x73\xbc\x5d\x13\xf2\x27\xc3\x17\xe9\xa9\xd8\x31\xfe\x7c\x68\x88\x83\xe6\x32\x41\xe5\x65\x87\xc4\x7c\xd2\x4f\xb8\x88\x92\x22\x38\xe3\x35\x23\x11\xd5\x9c\x27\x74\x50\x75\x43\x90\x3c\x0b\x59\x2e\x06\xba\x7b\xea\x99\xc9\x79\x30\x4f\x75\x73\x6e\xb5\x89\x69\x94\xd4\xec\x3e\xbc\x4e\xef\xf1\x68\xce\xa1\x35\x20\xc8\x5f\x9e\xdd\xc0\x1c\xe7\x7e\xbc\x20\xf0\x68\xd5\x79\xfd\x8c\x51\x7d\x8f\xa2\x3b\x42\x57\x94\x8b\x43\x73\x1a\x50\x69\x97\xdc\xd3\x5d\x6e\x5c\x33\xbd\xa7\xd8\xda\xd9\xd0\xc0\x76\x48\x04\xdb\xb2\xac\x76\xde\xbc\xea\xb4\x81\x69\xd0\x2b\x28\x10\x06\x44\xa3\x54\x45\xa7\x32\xcf\xf9\x22\xb1\x03\x57\x1e\x04\xfa\x83\xeb\x94\x45\x7e\x79\x0f\xd7\x16\xf6\xa9\xe8\x96\x2c\x83\x42\x9b\x5f\xd6\x6b\xff\x0a\x34\x23\x76\x2d\x45\xb9\x92\x19\x5d\x31\xfb\x53\xae\xa8\x2a\x10\x30\xa8\x30\x65\xf1\x85\xa3\xca\xba\xe3\x22\xd6\x78\xc8\x82\x34\x4d\x8a\x8c\x26\xd5\x2f\x91\x14\x68\xbb\xc8\x8f\xc9\x9f\xfe\xac\x7f\xd1\xfd\xb3\xd8\x04\x1e\x99\x5f\x27\x93\x89\xf9\x0f\x4d\xb9\x0d\x61\x22\x34\xe5\xec\x9d\x62\x02\x1a\x4e\xef\xbe\xc8\xa7\x5c\x1e\x6d\x9f\xdf\x0a\x1c\xf4\xb4\xc8\x95\xdc\x5c\x31\xd4\xc5\x9e\x31\x90\xb8\x00\x55\xd7\x02\x85\xda\xb1\x37\xa5\x8a\x35\x9b\xac\x98\x98\xde\x15\x0b\xb6\x28\x78\xa2\x45\x40\x3d\x80\x1d\xfe\x49\xcc\xb6\x2c\x01\x16\xc5\x62\xae\x1b\xbe\x61\xb9\xa2\x9b\x54\x0b\x43\x09\x78\x9b\x6b\x02\x76\x4c\x04\xba\x83\xe5\x4c\xe5\xd3\x28\x8b\xa7\x69\x26\x35\x8c\x23\x40\x6b\x53\x99\xad\x6e\x85\xc6\x97\x30\x01\x60\x82\x8e\x49\xa0\x59\x5d\x53\x88\x2b\x6d\xfa\xac\x25\x3c\x57\xbf\x6f\xbc\x79\xc9\x73\x55\xdf\x02\x67\x4e\x66\x67\xb9\x58\x15\x09\xcd\xdc\x57\xb0\x23\x91\xd4\xc7\xa2\xf4\x4e\x03\x59\x71\x6b\x37\x48\xff\x63\x62\x96\xa9\x81\x0f\x3d\x45\x6b\xb6\xa9\xe2\xb0\x64\xca\xc4\xc9\x7c\xf6\xed\xa7\xd7\xf5\xdf\xdb\x4e\x61\x66\xb2\xd6\xbd\xa1\x1a\x72\xc2\xfe\x52\xf0\x2d\x4d\x34\xca\x36\x37\xa7\xe9\xaf\xe7\x5c\x8f\x80\xd6\xd5\x39\x3c\xf5\xdb\x50\x0f\xd8\xd6\x53\x35\x96\x33\x74\x26\xc5\xc9\x98\x15\xb3\xd8\x2c\x0f\xe7\x01\xf8\xc8\x10\x13\xea\xd3\xac\xc8\x25\xf0\x0f\x70\xa7\xa6\xc0\x64\xb0\x2c\xb7\x62\x68\x24\xc5\x96\x65\x8a\x64\x2c\x92\x2b\xc1\xff\x5a\x76\x9e\x5b\x5b\x1e\xd4\x51\x68\x91\x22\x2e\x14\xcb\x34\x3b\x02\xc8\xe4\x10\xd0\xe9\x86\xee\x48\xc6\xf4\x30\xa4\x10\x4e\x87\xd6\x93\xe0\x95\x66\x43\xb9\x58\xca\x63\x48\xa3\x91\x1f\x1f\x1d\xad\xb8\xb2\xf7\x26\x92\x9b\x4d\x21\xb8\xda\x1d\xc1\xf1\xe7\x8b\x42\xc9\x2c\x3f\x82\x33\x7e\x94\xf3\xd5\x84\x66\xd1\x9a\x2b\x16\xa9\x22\x63\x47\x34\xe5\x13\x98\xbb\x80\x8b\x33\xdd\xc4\x8f\x32\x73\xd1\xf2\xc7\x3e\x4c\xd3\x46\x50\x70\x74\xbb\xb6\x41\x9f\x60\x13\x7d\x86\x7c\x36\x32\x0a\x25\xb4\xad\x19\xf5\xea\xfc\xfa\x86\xd8\xd1\xbd\x91\x7a\x08\xfc\xea\xcb\xbc\xda\x07\x0d\x34\x2e\x96\x96\x23\x02\x55\xa6\xab\x40\x40\xa2\x9c\x70\x0f\x73\x9c\x17\x8b\x0d\x57\xb9\x93\x7f\x41\x4e\xc9\x29\xa0\x13\x4d\x7f\x8a\x34\xa6\x8a\xc5\x53\x32\x13\xe4\x94\x6e\x58\x72\x4a\x73\xf6\xd1\x77\x01\xd8\xc2\x89\x86\xed\xd0\x7d\x08\x44\x4d\x86\x94\x81\x25\x9a\x0a\x6c\x5b\x75\x1f\x35\x4d\xab\x3b\xed\xdb\x18\x8f\x2a\xae\x92\xb6\x70\x57\xf5\xd8\x2d\x6d\x90\xbd\x0e\x8b\x4a\xc0\x07\xb5\x55\x6c\xc5\xba\xc9\xcc\xe6\x25\xa6\x43\xb9\x7a\xc1\x12\xa9\x4f\x95\x34\xda\x1d\xe6\x33\x28\x84\x39\x81\xff\x65\xb4\xf8\xfb\xef\xf9\x92\xb0\xbf\x90\xe9\xd5\x97\x27\xa7\xa7\x52\x2c\xf9\x8a\xdc\x1e\x64\x0b\x1a\xdd\x1e\xfc\xfd\xef\xb7\xe2\x91\x89\xdc\x38\x26\x48\xc0\x8e\x14\xdb\xa4\x80\xcf\x8e\xf0\x07\xf0\x4c\xa9\x2c\x9a\x59\x3e\xd1\x1f\x4f\x77\x74\x93\xe8\xaf\x67\xc0\x2c\x33\x42\x49\x94\x14\xb9\x62\x59\x26\x13\x56\x16\xff\x68\x7e\x0b\xda\x33\x29\x98\x50\x87\xfa\x63\x28\x1f\x02\x18\x44\x59\x54\x1a\x18\xd4\x4a\x62\x95\x39\xcf\xf0\x0f\x38\xe8\x95\x4c\x58\x9d\xef\x80\x49\xd2\x42\xad\x65\xc6\xff\x8a\x6e\x0c\x0e\xf3\x51\xbb\x4f\x48\x16\x03\x03\xdf\x0a\x60\x7d\xa1\xe1\x23\x72\x21\x63\xd4\x4b\x90\x7b\xe3\xad\xa0\x24\xd9\x48\xc1\xc1\x2b\x4f\x66\x24\x66\x09\xc3\x7b\x8e\x24\x97\xa6\xfc\x6b\xcd\x2a\xe8\x7d\xd1\x5b\xf8\x67\xdc\xd5\x12\x0f\x97\x47\x74\x42\x84\xee\x1b\xff\xb9\x65\xd9\xc2\x7d\x75\xef\xba\x57\x4d\xe0\x6a\x54\xff\x5a\xe1\xad\x7c\x44\xe6\x36\x31\xcf\x5f\x0a\x96\x71\xa3\x20\x29\x73\xa6\xb0\x77\x3c\x57\x4c\x98\xab\xba\xd7\xcc\x52\x19\x07\x26\x56\x8e\x3d\x9b\x9f\xbc\xaa\xbe\x35\x61\x18\x82\xa7\x50\x62\x28\xd6\xc2\x92\xc0\x05\x9a\xf0\x8f\x84\x29\x63\x91\x69\xce\xc4\xcf\x52\x75\x4d\x8f\xa7\xa9\x94\x49\x60\x86\x16\x56\xef\x3f\xcc\x22\x91\xd1\x1d\x5d\x22\x87\x5a\x69\x7a\xf4\xf8\x74\x03\x2f\x1b\xbf\xad\xa9\x88\x93\xd0\x96\xae\x98\x0a\x6d\x28\x30\xaa\xac\xfa\x37\x12\xa9\xea\xdf\x08\x3d\x84\x7b\xeb\x9e\x6c\xa8\xa0\x2b\x96\x93\xb5\xcc\x95\xe3\x7b\xf0\x41\x20\x50\xeb\xf3\xa3\x2e\xeb\x82\xb1\x18\x54\x07\x5a\xf6\x54\xd2\xb4\xb5\x28\xc6\x09\x52\xff\x50\x4b\xf3\xf4\x3c\x60\x81\xe1\x25\x3d\x22\xbf\x2f\x16\xec\xb4\xda\x18\x44\xbd\x45\x56\x2a\x4f\x50\x7f\xc0\x95\xee\x31\x27\x9a\x47\x89\xa0\xc9\x87\x59\x8f\x3e\x17\xce\xb1\x88\xdc\xd1\xbd\x2b\x7b\x84\x12\xbb\x9e\x87\xbc\x17\xce\x5c\x5a\xcb\x7e\x64\x96\x4d\xa8\xd5\xc1\x10\xbe\x24\x42\x0a\x86\x38\x26\x0f\xc1\xe7\x91\xdd\x46\x24\x81\xa1\x93\xf0\x08\xd1\x1d\x20\xad\x68\x5d\xf3\x80\x2d\x31\x21\x90\xb6\x16\x05\xf8\x92\x0b\x54\xdb\x7c\x24\x42\x20\x13\x76\xc5\xd0\x9b\xd4\xee\x4f\x47\xff\xba\x99\x87\x48\xf5\x0e\x93\x17\xc0\x4e\xe8\xad\x99\x98\x0e\xea\x5a\xcf\x01\x7d\x38\x71\x7c\xc7\x88\x23\xf2\x5d\xae\xd8\xc6\xe5\x0c\xfa\x29\xbf\x46\xd8\xfb\x50\x7b\xe7\x33\x72\x46\xd9\x46\x8a\x6b\xd6\x47\xe8\xa1\xf1\x4f\x45\xdc\xf5\x60\x75\x82\xae\x39\xcd\xd3\x8b\x99\x66\xb3\x56\x5c\x10\x01\x78\x47\x49\x7d\xde\x81\xec\x1d\x22\xd5\x42\xe1\xcd\x8d\xc6\x7a\x38\x0d\x6d\xd0\x7a\x2b\x98\x63\xc7\x9d\x48\x67\xaf\x01\x5b\xce\x87\x13\x0b\xe6\xc0\xfd\x7f\x6d\x34\xe1\x31\xcf\x23\xb9\x65\x59\xa9\xfc\x9e\xcd\xd1\xf0\x43\x63\x2d\x06\xf3\x9c\x6d\x5c\x1f\xcf\x4e\xee\xc4\xd3\xeb\xcd\x2e\x5d\xd3\x7c\xea\xe7\x5f\xc8\xe9\xec\xec\x8a\xd0\x42\xc9\x49\xcc\xb4\x04\x05\x96\x30\x01\x47\x98\xc6\x1b\xb3\x3f\x15\x5d\x40\x34\x45\x36\x34\x7d\xc0\x96\xe0\xc7\xfa\xdb\x0f\x07\x75\xd8\xd8\x23\x17\xc1\x35\xc1\xac\x49\x9b\x29\x8f\x17\x25\x8c\x82\xd0\xac\xd9\x4a\x23\x63\xbd\x16\x74\x4b\x79\x42\x17\xfa\x5e\x25\x74\xe5\x00\x2a\x75\xe1\xfc\xc8\xaa\xdb\x81\xfd\xcf\xd1\xdb\x3f\xaa\x13\x19\x27\x97\x0b\x47\xf6\xcb\x55\xa4\x4d\xfd\x74\xeb\xbb\x26\xf2\xd5\x70\xfe\x7d\xe9\x9d\x5e\x8b\x00\xe5\x81\x9b\x60\x04\x36\x2e\x56\x16\x17\x76\xc2\x0c\x5b\xa7\x35\xd7\x89\x81\x2c\xb0\x39\x60\x8b\x9d\x05\x87\x9e\xb8\xd5\x42\x57\xeb\x7f\xef\xfb\xda\xb8\xa0\xce\x6d\xb2\xa6\xa1\x6e\xf6\xb3\xb1\x88\x16\xe2\x49\xad\x43\xae\x8c\xed\xf1\x79\xd8\x9c\x3b\xce\x9e\x73\x82\xca\xd3\x63\x64\x97\x9c\x6c\x69\xc6\x65\x91\x93\xd3\xab\x33\xbc\xed\x78\x96\x3e\x10\x7b\x85\x61\xc2\x4b\x96\xf0\x77\xd8\xaf\x03\x47\xe7\xd7\x3a\x83\x02\x4c\xf7\x2a\x4d\x99\x21\x69\x6e\x57\x8b\x55\xda\xea\xa8\xfc\xad\xdd\x4d\x4d\x44\x08\xf1\xec\xd8\xb3\xf7\x34\xb6\x5e\xe7\xcc\x45\xac\xc1\x6f\xbc\xad\x83\xbc\x66\x80\xc7\x0e\x0a\x1f\x7b\x30\xdf\xf7\xed\x9d\x2f\x72\x55\x72\x72\x22\x2e\x79\x33\x8d\x47\xe0\x10\x48\xa1\x19\xb5\x4c\x15\xe9\xc7\x90\xd3\x7a\x77\x7e\x30\x47\xde\xc5\x84\xef\x85\x23\x8d\x27\x95\xc6\x93\x1f\x54\x7a\x1f\xb6\x2d\x37\x60\xf0\xb2\x1e\x08\x52\xa0\xa4\x0c\xde\x9f\xd6\x59\x10\xee\x65\x91\xae\x32\x1a\x9b\xe0\x83\xed\x27\xd3\x17\xc8\x9b\x44\x58\xa9\xf7\x11\x59\x30\x92\xb1\x8d\xdc\xb2\xd8\x38\xca\xd9\x0f\x64\xa6\x57\xb8\xcc\x58\xbe\x26\x5c\xe4\x8a\x26\xc9\x07\x15\xa1\x3a\xae\x5f\xfd\x16\xef\xb3\x81\x7e\xa8\xd4\x00\x62\xf6\x58\x23\x53\x25\x75\x53\xbd\xa3\xa8\x90\xa0\x49\x22\xa3\x0f\xbb\xc8\x9f\x9f\x12\xe0\x43\x5c\x4c\xba\xa9\x61\xd3\xa0\x9a\xe7\x4b\xbd\x42\x52\xad\xbf\x9e\x90\x0c\x4e\x33\x70\x2e\x8b\x1d\xdc\x33\xdc\xa0\x4c\x16\x1a\xc7\xac\x56\x99\x0d\x28\xfa\x88\x7b\x11\xe4\x1b\x0c\xc9\xc5\xc3\x02\xa7\x63\xc3\x57\x06\x0b\xd4\xd8\xfe\x18\x24\x17\xb0\x02\x7a\x8e\x5f\x44\x85\xf1\x20\x7d\x54\xde\x33\x10\x7f\x95\xb9\x68\x9a\x9f\x83\xbb\x09\xf9\x7c\xaa\x6b\x46\x8a\x5c\xbf\xd2\xf8\x7d\xa2\x4f\x65\x02\x93\xf0\x82\x82\xa6\x69\xde\xb9\xf2\x6a\x8a\x1d\xfb\xd5\x32\xc5\x76\x4b\x4d\x61\x69\xba\x57\x9e\xfa\x18\x72\x31\x76\xbd\xbf\x2c\x8c\xdf\x85\xe5\xdf\xef\xbf\x67\x22\xfe\xfb\xdf\xf7\x92\x81\x4b\xf1\x17\xe2\x7c\x37\x54\xf0\x25\xcb\x95\xdd\xdd\xbc\x25\xce\x1a\x7b\x0a\xcb\x0e\x09\xcd\xc9\x3d\x4b\xe0\x63\x13\x61\x54\x31\x7d\xb9\xa9\xb9\x0d\x2c\x82\x15\x65\xa4\xd0\x6d\x19\x85\x5c\xcd\x1a\x3a\xd0\x48\xb7\x60\x19\xb2\xf0\x50\x17\xdc\x61\xc8\x0d\xa1\x2c\xa5\xe6\x52\xf2\x6e\x1a\xe2\xd3\x7c\x90\x78\x1c\x86\x1d\x31\xce\x6b\xd6\x54\xf1\x45\x3e\xa1\x69\xda\xdc\x32\x6b\x7b\x6a\xf8\x14\x83\xcf\xdf\x4b\xf7\xfb\x50\x0f\xc4\x20\xbb\x6b\x95\x51\xc5\x56\xbb\x63\x63\xc5\x98\xbe\xae\xfd\xac\x37\xf1\xfb\xef\x89\x92\x7f\xa4\x9b\xa4\xf9\x92\xfc\x8d\x70\x11\x33\xa1\xc8\x67\xd8\x8e\x25\x39\xd3\x7f\x91\xd2\x6a\x73\x25\x93\x84\x8b\xd5\x6b\x07\xb1\x66\xee\x4f\xe5\x2c\x37\xf4\x9d\x23\x95\x1d\x93\xe7\xce\x29\x22\xc4\x9e\x18\xbb\xcc\xa6\xa5\x2e\xa9\x2f\x39\xbc\x68\x02\x52\xdd\x15\x15\xd1\x9a\x65\x13\x6b\x86\x43\x63\x58\x25\xb6\x61\xa8\x6c\xb4\x66\x71\x91\xb0\x6c\x0a\x8e\x8f\xd3\x2a\x78\x18\xec\x93\x19\x07\x0f\xf3\x49\x2a\xe3\x2a\x46\x24\xae\xec\xa6\xdb\x4f\xa7\xcf\x3f\x9d\x7e\x06\x6e\x6e\xc4\x0e\xed\x4f\x6f\x8a\x67\xfe\x90\x50\xb0\xb9\x81\x23\x23\x1c\x62\x33\xc4\x49\x1c\x4b\x91\x63\x24\xae\x4c\x98\x41\xa7\x10\x8c\x7a\xe8\x76\xb2\xa1\x68\xbe\x63\xe0\x5e\x07\x51\x26\x76\x96\x84\xc6\xf1\x04\x9c\xa9\x45\x5e\x80\x34\x6c\x74\xa2\xee\xf7\x69\xc6\x65\xc6\xd5\xce\xae\x1c\x62\x55\x84\x09\x4a\x40\xfb\xae\x6b\x7a\xc8\x18\x9a\xe1\xdc\x2e\xf8\x52\x77\x0c\x7e\x44\xa0\x71\x65\x5b\x1e\xa9\x5a\x54\xc8\x70\xa8\x1e\x93\xc7\xc6\x70\x5b\xb3\xb4\xea\x9d\xf4\x38\x32\xd6\xfb\x91\xf9\x31\x49\xb8\x28\xde\xd9\x06\xdf\x7f\x6f\x12\xbd\xfd\xc7\xdd\x21\xf9\x8f\x2d\x39\xfe\x1d\x99\x5e\x38\x3d\x11\x7b\x6c\x4d\xe3\xff\xb8\x23\x7f\xff\xfb\x31\xb9\x3d\xd0\x7f\x6f\xf5\xdb\x03\xa7\x2b\x26\x62\xe7\x03\x4d\x6d\x8c\xc0\x5e\x0f\x24\xaf\x76\xab\xbe\xdb\xaf\xe8\x1d\x23\x79\x91\xd5\x11\x1a\x00\xcc\x82\x07\x1c\x23\x21\x39\x91\x66\x79\x1d\xf8\x4d\x4c\xb0\xe6\x31\xb9\x90\xd7\xa6\x71\xf5\x16\x3c\x4c\x32\xaa\x41\x43\xce\x6b\x7a\x62\x1c\x37\xbb\xeb\x3c\x1f\xc8\x49\xb0\x6a\xff\x6b\x03\xdf\xb1\xdd\xb1\xe7\x50\x0e\x1b\xdd\x9d\xf7\xf9\x3b\x16\x15\x6a\xd0\xb4\xfb\x2c\xab\xe6\x50\xd5\xc8\xd5\x85\x0f\xdd\x62\x67\x25\x42\x31\x00\xe1\x82\x6f\xf8\x5f\x19\x89\xe5\xbd\x50\x7c\xc3\x48\x8c\xb7\x83\x5a\x2c\xe5\x32\xf6\xd6\xec\xf8\x5b\xa2\x58\x92\xb8\xd4\x41\x49\x12\x4b\x42\xc9\xed\x01\xa4\x61\xad\x06\xb0\x9f\xdc\x1e\x54\x4e\x0e\xf5\x93\x1a\xcb\x28\x3f\x8a\xa4\x88\x58\xaa\xf2\x23\x9b\xc5\x2a\x3f\x02\x35\x43\x2a\xe3\xa3\x47\x36\x96\x8c\x4b\x31\x91\x4b\x7d\x33\xaa\xf3\xe0\xbc\xfb\x3a\xa3\x11\x9b\xb3\x8c\xcb\xf8\x9a\x45\x52\xc4\xf9\x31\x79\xd6\x42\x79\x55\x76\x49\x54\x3c\xd9\x06\xf6\xee\x9f\x26\x34\xcf\x11\x80\xdf\x7f\x4f\xa6\xc8\xc9\xe9\x8b\x32\x6f\x36\x20\x7f\x2b\x2d\x13\xb7\x07\x48\xbc\x50\x97\x6d\xcf\xd4\xed\x81\x73\x47\x34\xfb\x78\x6a\x29\x76\x1b\xf7\x55\xd4\xdc\xca\x16\x79\x5d\x06\x6b\x70\x74\xa0\x96\xc4\x0d\xd6\x7c\xf5\xd4\xed\x6f\xa6\x0c\xff\x68\x2d\xa0\xe8\x7c\x69\x73\xf7\xb6\x65\x33\x70\xe1\xe5\x4b\xb2\x93\x05\x46\x53\xd3\x24\x63\x34\xde\xb9\x9d\x9a\xc9\x80\x96\xb5\xc8\x59\x60\x70\xeb\xfd\x65\x5a\xc3\x6b\xf7\x94\xf3\x0d\xf8\x28\x7c\xff\xfd\xf4\xf4\x62\x36\xd3\xff\x70\xd1\x0e\x84\xbd\x6c\xa8\x66\x2f\xfe\x74\x7b\x70\x24\x53\x75\x14\x09\x7e\xb4\xe0\xe2\xc8\x19\x0e\x7c\xcb\x0f\x26\x66\x88\x92\x83\xc5\x87\x89\xed\x57\x99\xdc\xd4\x7c\x32\xac\x0e\xf6\x15\x4d\x2d\x03\xe9\x3e\x8f\xc8\x09\x44\xf1\xfc\xfe\xf5\x97\xe7\x57\x17\xe7\x37\xe7\xd7\x6f\xae\xcf\xaf\xbe\x9d\x9d\x9e\xbf\xf9\xe6\xf2\xfa\x06\x28\x80\xe7\xdd\xfc\xf2\xea\xc6\x04\x71\xc9\x2d\xcb\x32\x1e\xc7\x0c\xf1\x07\xfb\x72\xfe\x15\xd9\x58\xf9\xde\x7d\x10\x38\x4e\x12\x0e\xab\x2b\x9f\x58\x65\x4c\xf3\x0b\xeb\x6c\xde\x4e\xd0\xc1\xc4\xb6\xb1\x14\x0b\x7c\x67\xb2\x17\x97\x67\xe7\x6f\x2e\x4e\x5e\x9d\x37\xfb\x05\x07\xaa\x16\xa4\xf0\x01\x0f\x53\x1f\xa4\xca\x97\x73\xaa\xd6\xc7\x70\x93\xa6\xfa\xc4\x43\x30\x98\x77\x2a\xa7\x27\x2f\x67\xa7\x97\x6f\x2e\xce\x6f\xbe\xbb\xbc\xfa\xfd\xec\xe2\xeb\x37\x5f\x9e\x9c\xfe\xfe\xfc\xe2\x6c\x9f\xf9\x94\xbb\xf7\x7b\xb6\x0b\x4d\xab\xc6\x61\xd6\xcd\x8a\xee\x03\x18\x1c\x5b\xbd\xb1\xb1\x09\x4e\xb3\xad\x4c\x8a\x0d\x7b\xe5\x8b\x7a\x9f\x90\x8d\xfe\x19\x57\x7e\xb4\xa5\xd9\x51\xc2\x17\x70\x3c\xad\xf6\xcd\xbf\xd9\xd5\xbd\x9d\x08\xa6\x26\x31\xcf\xba\xfa\xd5\xad\xdd\x73\xef\xef\x33\x12\x7c\xb2\xe0\xa2\xd9\x59\xce\xa2\x02\x30\x94\x14\x8a\xbd\x6b\xd6\x3f\x49\x33\xbe\xe5\x09\x5b\xd5\xdd\x86\x88\x0f\x03\xd5\x44\x0e\x2d\x49\x2c\xb8\xa0\x59\x2d\xde\x10\x8d\x6d\xfa\x5d\x43\xb2\x58\xf2\x04\x3c\xf8\x41\xb6\x10\xf5\x4b\x60\x4f\x85\xe9\x7f\x12\x09\xfe\x41\x90\x83\xe9\x6f\x44\x05\xce\x42\x80\x42\x19\xf7\x58\xbd\x4d\xee\xf6\x68\xda\x01\x8a\x9f\x69\xe0\xd6\x5e\xcc\xde\x9c\x5e\x5e\x7c\x15\xc6\x1c\x9a\x31\x7c\xfe\x6c\x62\x54\x28\xba\x6f\xd0\x2b\x1d\x34\x67\x61\xed\x0f\x8d\x43\x02\xe1\x25\xb0\x67\xa1\xa3\xd2\x9c\x8e\xc1\x20\x30\xad\xd9\xd7\xff\x52\xec\x21\xf8\x1b\xb3\x9c\x37\xbe\xa6\x8f\xc8\x35\x43\x5f\x51\x7d\x99\x21\x31\x41\x19\xe8\x03\xce\x6a\x5f\xe4\x28\x61\xeb\x57\x81\x15\xff\x0c\x30\xf8\x23\xd8\xb7\x57\x37\xaf\x89\x61\x3a\xb7\x34\xe3\x5a\x32\x0d\xef\xd1\xab\x9b\xd7\xff\xca\x8d\xd9\x32\xb5\x7e\xb3\x51\x45\x73\x1d\xf3\x8c\x6d\x99\x30\xe5\x8a\x2a\x24\x07\x5c\x55\x9e\x30\x06\x51\x86\x4b\xa9\x5b\x35\x4b\x9a\xd9\xd5\x5d\xbf\x3c\x3f\x6f\xd5\x05\x2c\x2f\xc2\x92\x26\x39\xab\x9f\xfd\xc1\x84\xe4\xbd\x10\xbe\xb7\x33\xa6\x22\x4b\x96\xa6\xad\x50\xee\xaa\x3b\x0f\x31\x7a\x38\xfd\x38\x89\x63\xcd\x59\x7e\x95\xb0\x77\xe4\x5b\x58\x3a\x39\xcb\xf8\x16\x5c\xa9\xa9\xb5\xff\xe8\x16\x29\xcb\x40\x5f\xf0\x5a\xf0\x77\xe4\x4c\x6e\x28\x17\xe4\x5a\x46\x77\x98\xa3\x0d\x42\x2e\xc9\x19\xbf\xa3\xb9\xaa\x13\x1b\x30\xc2\x83\x3f\x74\x44\x95\x89\xc7\xff\x8a\x25\xfc\x1d\x20\x5c\x37\x34\xfd\x7a\x27\x22\x72\x32\x9f\x79\xc8\xce\x32\x61\xef\xb6\x32\x99\xc4\x30\x35\x3f\xe5\xd1\x4b\xf8\x56\x26\xb3\xcd\xaa\x4e\x7b\x82\x1b\xea\xef\x7c\xa2\xb7\xa2\x0e\xbf\xd6\x46\xb5\xa7\xf1\xb0\x0d\x88\xfc\x52\xc5\x55\x01\x7a\x64\x8f\xbe\xb0\xc4\xb9\x8e\x00\x07\xe8\xb7\x51\x77\xeb\x91\x2b\x94\x64\x72\x95\xd1\x4d\x5e\x62\x72\x1b\x30\x28\x62\xd4\xbc\xe7\xb6\x57\xf7\x7b\xbd\x4e\xcf\x46\x78\x24\xd3\xfa\x2e\x68\x79\xcb\xc3\x00\xfc\xef\xa6\xe8\xaf\x73\xe6\xee\xd8\xc9\x7c\x66\x95\xbd\x9a\x93\xd5\x48\x2c\xa6\x8a\x82\x11\x32\x80\xc6\xce\x4e\x6e\x4e\xae\x6f\x2e\xaf\xce\xdf\xdc\xfc\x71\x1e\x26\xec\xd5\x12\xda\x04\xfd\x3b\xca\x55\xe9\x89\xd5\x37\xde\x77\x27\xb3\x9b\x37\x5f\x5d\x5e\xbd\x29\x07\x0e\x8e\x09\x00\x68\x8d\xa6\x29\xe9\xde\xc4\x53\x53\xcc\x7f\x0d\xc1\x5c\x4b\x99\xb3\x72\x47\x98\xb0\xc2\x72\x88\xaf\xf9\x65\x09\x47\xb0\x44\xb4\x02\x60\x01\x3f\xcd\xc5\x41\x9e\x91\x25\xa6\xb0\x77\x82\xbb\xf5\xfb\xc0\xa2\x5f\xbe\xbe\xbe\x39\xbf\xea\x39\x81\x5f\xe4\x87\x8b\x55\xda\x3e\x10\x27\x95\xcf\x16\x0c\xf9\xe5\xd7\x73\x27\x27\x77\x00\xce\xb3\x30\xe9\xa6\x85\x92\xd8\x5d\x7b\xac\x73\x01\x46\xc6\xd9\xbc\xf9\x7d\x63\xff\x66\xf3\x6f\x3f\x9b\x5f\x5e\xbe\x7c\xd3\x6e\xe9\x8c\x74\x02\xd1\xa8\xc1\x51\x64\x46\xce\x78\x0e\x7f\x7e\xfb\x87\x97\x27\x17\xf6\xc0\x5b\x0d\xd3\x6c\x4e\x52\x29\x93\xee\x93\x54\xce\x04\xba\x08\x4e\xe5\x42\x73\x3a\xfe\xcb\xa6\xf9\x3d\xb8\xdd\x85\x10\x2c\x21\x31\x03\xd7\x3c\x88\x5e\xe7\x4b\xc2\x53\x9e\x42\x44\x36\xcc\x39\xf6\xcf\xe5\xab\xf3\x97\xb3\x3f\x68\x58\x5c\xcc\xe6\x3f\x53\x8e\xb0\xb6\xd2\xb5\x85\x78\x6d\xcd\x01\x40\xe3\xe2\xa0\xfd\x2f\x64\x6d\xdf\xf1\x8c\xad\x0a\x9a\xc5\x7b\xac\xef\xbb\xd9\xd5\xf9\xd7\xaf\x4f\xae\xce\x7e\xa6\x6b\xbc\xa9\x5d\x8c\xed\x67\x70\x35\x2a\xa9\xd6\xf1\x29\x6a\xf8\x8c\x4f\xc1\xfb\x73\x36\x2f\x6b\x74\x34\x7b\x8e\xd6\x32\xd7\x84\x1e\x6d\x58\x3c\x47\x9b\xc9\x94\x9c\xae\xa9\x58\x61\x94\xa1\xcd\xc1\x6c\xfc\x5e\x6a\xc6\x77\xe8\x75\x4d\xb7\xad\x7e\x85\x34\xda\x7f\x93\xc5\xd9\xc4\x7c\x2e\xb5\x04\x6c\x8a\xa7\x4c\x26\xc6\xc4\x3a\x89\x78\xdc\x14\x44\x7c\x16\xbb\x73\x27\xc1\x02\x53\x2d\x1c\x70\x3a\x3b\xbb\x1a\x86\x2d\xda\x2d\x1d\x64\xf1\xfd\xf7\x53\x83\xf4\x75\x33\xd7\x0c\x64\x67\x66\xf1\x16\xa8\x16\x12\xb9\x02\x38\xe5\x12\x83\x03\x54\xa2\x7f\xca\xc1\xb4\x1c\xc2\xcf\x66\x3e\x67\xb3\xeb\x93\x2f\x5f\x9e\xbf\xf9\x6a\xf6\xf2\xfc\xcd\xcb\xcb\xaf\xbf\x9e\x5d\xf8\x05\xfd\x6e\x7e\x01\xc5\x82\x2a\x68\x53\x02\x17\x5a\x9e\x17\xcc\x79\xa6\x7f\x3e\x39\x3d\x3d\x9f\xdf\x74\x5e\x84\xb3\xf3\xaf\x4e\x5e\xbf\xbc\x39\xbf\x38\x9b\x5f\xce\x2e\x6e\x6e\x2e\x35\xcf\x78\x72\x7a\x33\xbb\x0c\x63\x57\xec\x36\x0c\xa6\xd9\x7c\xfb\x42\x9f\xd0\x8a\x95\xeb\x9c\xc2\x6c\xfe\xed\x8b\xeb\xd7\x73\xcd\x90\xee\x23\x80\xfa\x8f\x0c\x44\xbe\xa3\x23\x9e\x3e\x32\x38\xc2\xcb\xcb\xaf\x35\xc8\xe7\x27\x37\xdf\x68\xb0\xc0\x75\x41\x57\x6a\xdc\x56\x80\xa7\xdd\x57\x25\x61\x9f\xbb\x66\xec\xf4\x17\x9c\xb1\x1e\xe4\x7d\x26\x7c\x7d\xfe\xed\xf9\xd5\xec\xe6\x8f\xd7\x7f\xbc\xc6\x39\x9b\x3b\x09\x17\xb7\x8c\x17\x11\x4b\xd9\xb9\x92\x7c\x97\x27\x72\xd5\xb3\x16\x67\xa8\xe0\x72\xba\x4e\xa2\x33\xde\xed\xc1\x3d\xcd\x04\x17\xab\x21\x4b\xbf\xf6\xae\xf7\xf4\xea\xfc\xfc\x42\xf7\xf5\x1d\xf6\xd4\x5e\xf1\xd0\xe5\x40\x4f\xc1\x15\x7d\xe7\x9f\x68\xbd\xbb\x6f\xce\x4f\x5e\xde\x7c\x73\x7e\xa1\xaf\xad\x9f\x69\x0d\x5f\xd5\xae\x05\xcf\xe6\x37\xba\xcb\x6b\xc3\x0e\x83\x6a\xa0\x50\xe8\x75\x5d\x71\x6c\x26\x7d\x95\x58\x62\xf9\xc8\xee\x4b\x54\xeb\xb0\x93\x1d\xac\x4f\xf5\xa1\x3a\x11\x9f\x47\x95\xfd\x1d\x63\xc4\x5b\xd4\x31\x4a\x8b\x63\xf2\xc9\xe7\xcf\x6a\x06\xb3\x84\x6f\x99\x60\x79\x3e\xcf\xe4\xa2\x59\x23\x8d\xbd\x6b\xc5\x5f\x57\x4a\xf2\xe6\xef\x13\xe2\xda\xd1\x9a\xa2\x37\xb6\x98\xc0\x0d\x99\xe8\x31\x3d\x2f\x17\x3c\x8b\x3d\xef\xd2\xba\xc5\xf5\xf9\xb3\xfa\x6b\x70\x9b\xa3\xc9\x19\x4b\xe8\x2e\xd8\x68\x49\x79\x52\x64\xec\x66\x9d\xb1\x7c\x2d\x93\xf8\x98\xbc\xa8\x83\x92\xc6\xfc\xa7\x86\x42\xc3\x02\x5a\x07\x83\xe7\x65\x27\x1c\x06\xeb\x03\x13\xbe\x38\xda\xc8\xb8\xf0\x24\xf9\xc2\x03\x9d\xf0\xc5\x24\xd0\x40\x4f\xea\x52\x24\x3b\x5f\x32\xff\xfa\x28\x59\x21\x8e\xde\xe1\xb5\x99\x26\x32\xba\xf3\x0f\x65\x5a\x4c\x7c\x2d\xaa\xb1\x90\xf8\x74\x0c\xb6\xa5\x19\x0c\x88\x40\xf7\x0f\xb5\xa5\xd9\x24\x2b\xc4\xc4\xdf\x66\xcf\xc1\xc0\x30\xd7\x33\x98\x06\xe3\x83\x06\xc3\x2e\x50\xfb\x95\xef\x44\x2b\x55\x8f\x6f\xe5\xfa\x9c\xd1\x55\x2b\x6f\xc4\x23\xac\x09\x6b\x15\x4a\x87\xe4\x9e\x81\x8f\xa8\x51\x3c\x01\xcd\x82\xc0\xef\xc2\x24\x9f\xd0\x2d\x35\xf5\x45\x67\x03\x42\x15\x39\xca\x77\xf9\xd1\x32\x3f\x5a\xa4\x4b\xcd\x72\xdd\x33\xd3\x1a\x53\x59\x35\x87\x83\xf4\x7a\x8a\xc4\x3c\x03\x97\x9f\x66\x35\x36\xbb\xb8\x7c\x97\x2f\x5b\x87\xcb\x5d\x97\x19\xb4\xad\x6b\xfb\x92\x63\xdf\x98\x1f\x6d\xc3\xa8\xc0\x6c\x0a\x90\xfe\xa9\x9c\x5c\xff\x52\xb8\x42\x56\x3a\xcd\x64\x4a\x57\x9a\xa5\x37\xe1\x7c\x0d\x85\xa2\x1d\xd7\x24\x63\x05\x46\x8f\xe7\xe4\x4e\xc8\x7b\xe1\x82\x8e\xaa\xda\x60\xe8\xdd\x80\xf9\x7d\xeb\x53\x36\x7e\x13\x26\x99\x6b\x6b\x24\x04\x82\x99\x14\xf8\x3b\xd6\x3e\xb7\xcd\xf1\xb6\xd7\xd5\xb1\x36\x80\xc8\x75\xf8\xac\xde\x4f\xba\x6f\xb7\x5e\x18\xc0\xbe\x81\x72\x3a\x70\xc6\xa4\xf7\x66\x75\x77\x1a\xba\xb5\x93\xde\x4b\xd4\xdf\xaf\xef\x82\x4e\x7a\x90\x4e\x77\xaf\xdd\x08\x0d\x3d\x31\xbf\xe2\x09\xbb\xcc\x4e\x6b\x1e\xef\x1d\x87\xbe\x7b\x40\xef\x15\xc0\x71\xce\xec\xf5\x6a\x0f\x56\x05\x2a\x5a\xf3\xe7\xe9\x85\xcf\x52\x11\xb0\xf7\x74\x4f\xc9\x6b\x45\x9a\x74\x9b\x7c\xba\x7b\x0c\x98\x92\x1e\x91\x57\x0e\x92\xa9\xd0\x09\xf0\x67\x4d\x3f\x25\x37\x38\xc2\x16\x10\x77\xbb\x02\xdd\x12\x24\x6e\x68\x38\xb6\x3b\x1d\xd5\x7d\x9d\xca\x48\x14\x27\x08\xc5\xed\xd1\xfa\xc9\xe7\x36\x2b\x90\xeb\x8c\x04\xfc\x48\x65\xd7\xf0\xc0\xbe\xdb\x61\x63\xe0\xe1\xf6\xba\x85\x54\xbb\x6f\xf4\x14\x61\x6b\x98\xe7\x22\xfb\x49\x4e\x60\x3e\xbd\x27\x91\xb4\x6f\xba\x87\x4a\xb5\xcf\x6b\xdb\xc4\xd7\x9e\x69\x8f\x29\x6c\xdf\x29\x7f\xff\xfd\x44\xef\xa9\x35\xcd\xcd\xc1\xab\xfd\x8c\xd7\x3d\x56\xab\xf5\x54\x46\xbc\xb2\x25\xfa\x66\x4f\x08\x4b\x72\x16\xf8\xea\xa8\xc8\x61\xeb\x34\x37\xe9\x38\x28\xc2\x9f\x09\x53\x13\xe3\x4b\x7f\x84\xa8\xfd\x08\x9a\x95\x00\xfb\xff\x8a\x38\x37\x23\x18\xbf\xd8\x41\x49\x71\x5c\xbf\xf9\x2a\x36\xa2\x19\x79\xf0\x70\x47\xfa\x7d\x83\x10\x9a\x01\xfe\x65\x40\xc2\x35\x63\x6e\x86\xaa\x75\xb1\x98\x46\x72\x73\x54\x8b\xa3\x39\x6a\xa7\x07\xf0\xc6\x05\x98\xe8\x01\x27\xcf\xec\x3e\xc9\x11\x1e\x1c\x35\xe0\x49\x80\x60\x7d\xaa\x51\x9f\x58\x4b\x1f\x44\x4d\x71\x60\x74\x86\x84\x6c\x78\x09\x03\xd5\xd1\x96\xe1\x55\xb0\x19\x6e\x32\x96\x26\x3c\xa2\x39\xf8\xeb\x3f\x28\x1a\xc1\xb7\xc8\xbc\x8a\x49\xa8\xae\xc6\x15\xab\xa2\xb5\xfa\xc2\x01\x7a\xc1\x48\x48\x17\x28\xc9\x90\x88\x82\x50\xb7\xe0\x0e\x80\xcc\x8e\xf5\xb9\xd5\xac\x18\xcd\xee\x1a\x2e\xd7\xa9\xac\x38\x2c\x7f\x5c\xc0\x4f\xee\x2b\x6f\x71\xcd\x4d\xe5\xb8\xee\x20\x8c\xba\x3b\xbb\x13\x15\xe2\x36\x2f\x43\x42\x5e\x04\xd0\x4e\xc8\x29\xde\xaf\x11\x71\x5a\x5b\x9b\x50\x30\x79\x95\x24\x98\x2c\x30\x61\x0a\x8a\xe8\x15\x22\xe4\x44\x3f\xba\xe0\x0f\x72\xc1\x77\x51\x3a\xb6\x79\x6f\x77\xfc\xd0\xad\x69\xb9\xe6\xbf\x8f\xbf\x7a\x23\x2b\xd0\x20\xd7\xf5\xd2\xfa\xe0\xf3\x5e\xf7\xfa\x98\x4c\x86\xa1\x19\x52\x77\xed\xac\x1a\xf8\x3d\x3c\x5a\x7e\x0f\xc6\xac\x8e\xa5\x3e\xdc\xf3\xae\xa4\x3e\xe2\x01\x21\xd6\x68\x25\xdf\x9c\x5e\x5e\xdc\x5c\x5d\xbe\x7c\x79\x7e\x15\x52\xdf\xb6\xb5\x40\x7b\xf9\x4b\x38\xde\x12\x1f\x4b\x65\xa5\x79\x13\x50\x5b\xad\x59\x74\x37\xa9\xe7\x35\xaa\x9a\x4d\xb2\x9f\x88\xef\xd8\x87\x2c\xef\xcb\x83\x30\x15\xc5\x93\x5c\x53\x3a\x65\xf9\x8f\x81\x5f\xaa\x9d\xa6\x10\x03\x3f\x31\x11\xe4\x6c\x12\x51\x41\x13\xf3\xd5\xc1\xe1\xff\x45\x08\x39\x30\xfd\x6d\x3f\x9d\x3e\x7f\x31\xfd\xfc\xe0\x98\x1c\xe8\xbe\x4c\x48\xef\x8d\xe9\xa3\x72\x4b\x31\x2f\x4c\xf3\xc1\xd3\x35\x89\x2f\x6a\x31\x9f\xa7\xd6\x7e\x4a\x78\x5e\xa6\x8c\x2f\xe7\x8a\x05\x2e\x97\xc0\x4f\xb3\xd8\x8e\xeb\xda\x1f\xab\x94\x46\xb6\xa3\xf6\x66\x87\xb7\xb5\x32\xc6\x86\x36\xb3\xfc\xee\x11\xe6\xd7\xd1\xd3\x34\xc6\x15\xa4\xe4\xb0\x07\x6f\x0c\xf6\x7b\x83\xbd\xbb\xc6\x9e\x47\xe4\xb4\x5c\x4d\xc0\x4d\xa6\xee\x7f\xa2\x3f\x5f\xf0\x2c\xf6\x7f\xfe\xea\xe6\xb5\x0d\x47\xd1\x44\xc3\xc6\x0e\x61\x4a\xdc\x25\x8d\x4c\x79\x27\x34\x7c\x23\x01\x7b\x44\x26\x64\xb6\x74\xac\xe2\x95\x3b\xc3\xa1\x2d\x15\xbb\x93\x45\x56\xfa\xb9\xe9\x31\x26\xe4\xc5\x33\xfb\xf1\xa5\x5a\xb3\xec\x9e\xe7\x0c\x74\x5a\xc6\x57\x23\x23\x56\x89\x37\xb0\xbf\xcf\x03\xfd\xcd\xe6\xb3\xf9\xc0\x2e\x3e\x09\x74\x51\xc9\xbe\x54\xec\x08\x13\x11\x4d\xf3\xc2\xc6\xf9\x04\xba\x9b\x56\x9c\x8f\xee\xdc\x32\x2e\xba\x37\x86\x3f\x3d\x33\xc4\xc0\x9a\xe4\x8d\x69\xf8\xd5\xcd\x6b\x34\x09\x1b\x4a\xe9\x61\x79\xdc\x2f\x9e\x7f\xf6\xd9\xb3\x46\xeb\xb0\x97\xb8\x4d\x9e\x11\x72\x16\x87\xcf\x80\x3a\xa2\xe6\xed\x91\x4d\xa7\x0e\x7a\x09\x6e\x33\xdd\x55\xb5\x8f\x0a\x25\x37\x14\x68\x5b\xb2\x23\xa9\x34\x59\x23\xf1\xd4\xb5\x9c\xba\x8f\xc9\xdf\x26\x88\x63\xbf\xb7\xa8\xf6\xf6\x40\x40\xd5\x23\xe3\xa1\xa4\xd9\xce\x89\xf9\xc8\xa9\xe7\x72\x7b\x10\x09\x7b\xe5\xb0\xed\xb3\xe9\xa7\xd3\xe7\xb5\x16\x46\x9a\xd4\xaf\xff\x54\x21\xf2\xef\x5d\x9c\x7e\x7b\x00\x3e\x54\xd0\x81\xd1\x95\xd5\x6b\xc6\xdc\x1e\x24\x72\xf5\x26\x61\x5b\x96\x60\xab\xef\x4e\xae\x2e\x66\x17\x5f\x7b\x9b\x2d\x79\xc2\xde\x68\x49\x17\x9b\xa2\xa2\x42\xae\x0c\x32\x02\x7d\x45\x24\xf8\x34\x91\xab\xd6\xe7\xa5\x93\xdf\x9b\x6a\x42\xae\x87\x60\xa3\xb9\xde\x9a\x0a\x4c\x6f\xde\xf8\x5c\xd9\xdf\xbc\x69\x7d\xb6\x51\x85\xfe\xe2\xcd\x1b\xe3\x48\xfe\xe6\x4d\xa3\x01\x46\x7e\x1d\xd7\x81\xe4\x07\x94\x89\x12\x73\x1b\xfe\xbd\xd1\x1b\x2a\x53\x7a\xfb\xbb\xfb\x22\xef\xee\xc7\x05\x84\xb7\x2f\x93\x21\x51\x23\x56\x07\x20\x18\xc5\xf0\xc6\x9a\xc9\x35\x3c\x6a\xa3\x54\xff\x70\x07\x0c\x9e\x8f\x54\x66\x6a\x43\xd3\x16\x50\x73\x41\x95\x6e\xa1\xb2\x82\x35\x5e\x45\x34\xa5\x0b\x9e\x60\x4a\x0b\x98\x3a\xf4\xf2\x8a\xa6\x29\x17\xab\xdc\x7e\xb5\xef\x4c\x16\x54\xc4\xf7\x3c\xd6\xe7\xac\x7f\x40\xa7\x71\x7b\x34\xfb\xa7\x09\xe9\x19\xc0\x41\xdc\xc5\xf1\x24\xca\xe2\x1a\xdb\xf0\x0b\xad\x11\xd0\x4a\x72\xf3\x11\x2a\x05\x7c\xf9\xf5\xbc\x96\x2d\x14\xdf\x55\xf5\x02\x9a\xef\xdb\x55\x03\x02\xa9\x78\xaa\xda\x01\xcd\x06\xb7\x55\x05\x01\xe3\x53\x74\xfb\x71\xca\x07\x34\xe7\x5e\xcf\x3d\x5e\x27\x2f\x58\xbf\x67\x07\xae\xa4\x99\x2c\x54\x5d\xe2\x1c\xcb\x07\x8c\xe5\x03\xdc\x2d\x18\xcb\x07\xfc\x64\xe5\x03\x9a\x97\xb8\x5d\x44\xa0\x5e\x3e\x47\x5f\xe0\xda\xd5\x1e\x5e\x2d\x80\xe6\x17\x50\xb0\xd2\xe3\xb1\xda\xb8\xd0\xd7\xd8\xd0\x56\x25\xb1\x5a\x94\x93\x6b\x53\xf2\x12\xc5\xb6\xc5\x8e\x50\xc3\xa4\xfe\xe9\x0c\x9b\x78\x9d\x61\x5f\x7c\xf6\xf9\xf3\x4f\xfe\xfc\xb8\xfd\x0a\xd3\xc5\x1d\xeb\xdb\xf9\xe9\x27\xed\xd7\x08\x52\x7d\x75\x57\xed\x2a\x9b\x76\xe7\xfd\x85\xa6\x6b\xeb\x39\xad\x9a\xe2\xfd\xb0\xe5\x10\x10\x96\xe6\x04\x59\x38\x63\x2a\x14\xd6\x8c\x41\x33\x20\xcc\x16\x5c\x65\x34\xdb\x99\xaa\x7a\xe0\x7f\x4c\xd1\xf5\x0d\x03\x84\xf6\xaa\x9f\xe0\x9d\xe6\xae\xda\xfe\x5c\x51\x11\x6b\xf9\x4d\x66\x24\xa1\xd9\x8a\x35\xa7\xeb\xeb\x94\xc0\x12\xf4\x4d\xf3\x84\x8f\xe0\xd3\x5b\xa4\x1b\xc8\x93\xff\x95\xa7\x26\xb7\xa9\x51\x5c\x85\xaf\xd9\xe9\x05\xcb\x04\xf7\x97\x07\x46\xbd\xd3\xa0\x29\x7c\x0b\x78\x0e\xb2\xa7\x2d\x20\x1a\x18\xcf\x15\x79\x4b\xe9\xb1\x10\x6f\x35\xf0\xf0\xcf\xe3\xcd\xe6\x6d\x47\xe5\xe2\xaf\x64\x56\x41\xbc\x5a\x89\x16\xbc\x6d\x57\xd8\xf3\xa1\x49\x38\xfe\x96\xd2\xb7\x1a\xd8\xe1\x2e\xdf\xea\x8f\x68\xc6\xc8\xf3\x17\x64\xc1\x95\xb9\x3e\x53\x18\xaa\xb9\xa1\xd5\x38\x7a\x9e\xe1\x3e\xdb\x73\x38\x34\xe3\x88\x98\xbc\xdd\x6c\x70\xc0\x4f\x3f\xa9\x0d\xf8\x9d\x6e\xec\x2d\x63\x66\x26\xaa\x97\x82\x95\xff\x4e\xae\x09\x5e\x7f\x5f\xb7\x29\xcb\x26\x27\xd7\x36\x22\x86\xb7\x62\x49\xab\x27\xa5\x4a\xd3\xdc\x63\xf2\x5f\x4f\x6e\x6f\xe3\xff\xfb\xe9\x31\xfe\xef\x3f\xfe\x56\xff\xb7\xfd\xf9\xa1\x27\xe5\xc1\x35\x9c\x13\x28\xe1\x30\x97\x99\x0f\x69\xd5\xce\xd7\xcb\xb2\xa5\x45\x88\x50\xbd\x12\xe1\xaf\x71\x48\x9a\x49\x25\x23\x99\x58\x2e\x05\xbb\xf6\x42\xe6\xcc\x16\xf4\x53\x92\x3c\xff\xf5\x6f\xda\x4d\x36\xf4\x1d\xdf\x14\x9b\x63\xf2\xe2\xf3\xcf\x3f\xfd\xdc\xf3\x9e\x0b\x7c\xff\x7c\x4f\x84\x99\xc8\xd5\x35\xdb\xb2\x8c\xab\xdd\x75\x94\x31\xd6\xe4\xe9\x5a\xcb\x7e\xfc\xb2\xf9\x85\x5d\x7e\x22\x57\x24\x37\x6f\x08\x5d\xc8\xad\xd5\x5b\x27\x72\xe5\x2d\xc5\x07\x15\xc7\x99\x28\xf3\x95\xe7\x2a\x96\x85\x72\xc8\x06\x99\x5d\x7c\x75\xe9\x23\x11\x5d\xdb\xaf\x49\xcf\x0d\x64\xad\x79\xc5\xf2\x35\x86\x18\xf9\x8a\x80\xd7\x57\x75\xe1\xfb\x8a\xe4\x4c\x55\xb5\x22\x97\x85\x31\x07\xa1\xd7\x75\xdb\x7d\x52\x3f\x7a\xe3\x37\x90\x63\xa6\x54\x64\xb9\x0b\xd2\x92\x5e\x78\x41\x0b\x29\x13\x46\x5b\xbc\x6f\x9a\xb1\x25\x7f\x77\xe2\xe6\x06\xef\xa5\x6e\x73\xcf\x37\x15\x05\x01\xe7\x0b\x68\x51\x4f\x39\xee\x5b\x51\x17\x5b\x41\xf6\xa8\x08\xd8\x9e\x50\xa5\xde\xcd\xeb\xd3\x70\x28\x91\x1f\x01\xd8\x00\x9f\xaa\xb8\xe6\xe9\xec\xec\xea\x61\x44\x2d\xe2\xb1\x8f\xf7\xf1\x2c\x01\x32\xa7\x83\xb2\x15\x8e\x75\xd5\xb3\x5b\x4d\xdb\xae\x23\x5c\x0c\xbf\x9f\xca\x75\x73\x31\xbe\x99\x39\xbc\x8c\x71\x0e\xb2\xdc\x0c\xe3\x70\x78\x2b\x82\x02\x2c\x4a\x18\xe5\x5b\x07\x41\x94\xd9\xa0\x5a\xfa\x5b\xcd\x7d\xe6\x53\x67\x10\xa0\x9e\x83\x98\x0e\x82\xb2\x5b\x27\xed\xed\x20\xb1\x9d\xa4\xa9\x83\xf6\x76\x91\xd8\x70\x9f\xdd\xb4\xb7\x93\xc4\x76\x4c\xb4\x93\xf6\x76\x53\xd8\x01\xbd\x0e\x27\xbd\xe1\x8b\x8a\x4f\xff\xb9\xec\xa4\x9c\xe4\x7d\xc8\xae\x31\x9b\x18\xcd\xc8\x6c\xde\x8b\xdf\xae\x9b\x1f\x00\x30\x20\xe1\x8b\xbe\xa5\x98\x27\x18\x05\x51\xbc\xad\x66\x04\x2f\x86\x33\x81\xbd\xb6\x17\xe3\xb6\x07\x52\xe7\xb2\xc2\x31\x65\xf9\x5d\xac\xb0\x6a\x2f\x3a\xd6\x51\xf5\xf5\x8b\x93\x28\x33\x94\x82\xc5\x5f\xec\x6a\xc3\x99\xf8\x37\xb5\x66\x9b\x87\xa3\xd6\x26\x2c\x30\x85\x70\x25\xa7\x3b\x5e\x3c\xa6\xae\x77\xd9\xd4\xbf\xcf\x15\x08\x3f\x02\x4a\xfd\x68\xac\x9b\xd9\xe1\xf3\x77\xa8\xd4\x19\x7e\x88\x9c\x2f\xfc\xa7\x48\x66\x4e\xc4\x9a\x6f\xce\xa6\x23\x62\x7b\xd2\x7b\x3b\x75\x13\x16\x34\x1b\x94\x61\x98\xe0\x6a\xd5\x8c\xc5\xc4\xa7\x22\x25\xa6\x80\xf0\x0e\xcb\xa2\xe1\x91\x31\xe5\xf5\xb1\x88\x2f\x4e\xf4\xbd\x4f\x50\x35\xbb\xde\x23\xe4\xdf\x5d\x67\xfd\xbf\xc8\x43\xf4\x4b\x2d\x41\xf8\xcb\x55\xf5\x43\xd2\xfa\x8f\xa3\xe1\x9f\x33\x2b\xee\xd4\x14\xfb\xfa\x67\xaf\x3e\xdf\xc9\x9f\x5f\x53\xe3\xa7\xa6\x9f\x8f\xa5\xbd\x1f\xd5\xec\xa3\x9a\xdd\xdd\x82\x51\xcd\xfe\x53\xaa\xd9\x35\x3a\x18\x56\xa2\xd7\x34\x7e\x40\x41\xde\xa1\x2a\xf6\x9b\x35\xab\xa4\x00\xab\xda\xd7\xe8\xc7\x43\x41\xdf\x47\x4b\x7e\xc7\x58\x7a\x89\x59\xcb\x93\x0b\xf6\x4e\x7d\x23\xd3\xbe\xa9\x5d\xa6\xd6\x1f\x45\x7f\x0c\x13\x33\x79\xcf\x13\x22\xd8\x3b\xb5\x96\x29\xe6\x0a\xc2\x78\x16\xd4\x7a\xf7\x29\x7d\x00\xa6\x44\x03\x55\x9f\x71\x05\x97\xc4\xc6\x4c\xbb\xca\x01\xd8\x11\xf0\x64\x66\xb1\xfe\xc4\xd7\xaf\xee\x25\x2f\xd5\x33\x85\xc9\x45\x74\x7b\xa0\x27\x47\xf4\xec\xf4\xbc\x7f\x7b\x7b\x00\xfe\x34\x8c\xc6\x1a\xbc\xce\xdb\x9c\x25\xcb\xdf\xde\x1e\x3c\x31\x46\x8d\xa7\xbe\x21\x4c\xcc\x4f\xe9\x94\xba\xc8\xa8\x88\xd6\x76\x9f\x2e\xf4\xd0\x52\x18\xa7\xad\x69\xb4\x5c\xdd\x1e\x78\xf6\xad\x53\xd3\xa3\xa7\x3f\xe4\x90\x94\x69\xa0\xca\x24\x44\x16\xbf\x18\x11\xc5\x94\x31\x40\x67\x7d\x08\x02\xf4\x2e\x28\x87\xd3\xc5\xab\xbc\xf3\xe6\x97\x29\x46\x15\x62\xd6\x64\x8d\x22\x72\xa6\x0e\x1b\xf4\x23\x27\xd4\xd7\x27\xd6\x70\x82\x5e\x0e\x09\x9f\xb2\x29\x64\xbe\xb3\xd9\xf0\x80\xc6\xe2\x60\x6c\xcb\xb2\x5d\x59\x6f\xa1\x9e\x43\x29\x08\xb7\xb0\xca\xcf\xe3\xe9\xee\x05\x5f\x99\xf3\xdd\xea\x90\xb0\x66\x2e\xcc\xce\xd0\x39\x88\x7c\x28\x61\xc1\xc5\x6a\x4a\xb4\xb4\xde\xda\x2d\x98\x96\x01\x92\x01\x90\x39\x06\x78\x13\xac\xed\x81\x6d\x52\xd5\x8c\x37\xed\x5b\x52\x4a\xf3\xfc\x5e\x66\x7d\x8a\x4b\xdf\x94\x2e\x4d\x66\x35\x54\x42\x9b\x7e\xca\xe5\x9a\x25\xe5\x64\xc5\x04\xcb\xa0\x6a\xc1\x62\xe7\x25\x44\x04\xd5\x99\x5d\x38\x8f\xf4\x33\xf2\xe8\xcf\xda\x91\x14\xc7\xbb\x3f\x9a\x90\xde\xb1\x1d\xf0\x23\xa6\x0b\x7b\x4a\xe0\xc4\xa4\x32\x7e\x9c\x57\xbe\x9a\x01\x9d\x47\xaf\x8c\x81\xb9\x76\xc2\x2a\x91\x3e\x50\xdb\x47\xdf\x49\x33\x5d\xc4\x55\x30\x61\x25\x0d\xd6\x02\x4a\x3d\x25\xe4\x15\x1e\x88\xae\x9e\xa8\x66\x1c\x78\x6c\xbb\xb8\x63\xbe\x83\x63\x9f\x21\x1a\x9b\x4e\x9b\xdd\xf0\x15\xde\x1e\xb8\x49\x75\x33\xb6\x64\x99\xbe\xa7\x3e\x0e\xa1\x2b\xc5\xbd\xdc\x6a\x49\x93\xdd\x1f\x99\xe2\x85\x13\x8d\x0a\x26\x48\xb8\xf3\x23\xd8\xcf\xa3\x47\x3d\x1a\x4a\x42\x6e\x2e\xcf\x2e\x8f\xc9\x49\x1c\x13\x09\xca\xcd\x22\x67\xcb\x22\xc1\x5b\x97\x4f\x1d\xce\xf9\x10\x18\xb7\x43\x52\xf0\xf8\xff\x69\xa6\xe1\xd8\x17\x90\x65\xc2\xc2\xf7\x07\xe6\x35\x50\x90\x5d\x69\x59\xd0\x20\xbd\xc6\x0d\x97\x19\xd8\x68\xf5\x61\xda\xf4\x9f\x16\xa3\xa4\xed\x5b\x58\x80\xda\xe0\x63\x2b\x7d\x05\x67\x0c\x81\x27\xfe\x97\x43\xc4\x6c\xff\x5b\x8d\x86\x66\xf3\x21\xb4\xae\x4a\x71\xe7\x72\x44\x64\x29\x8d\x2e\x6b\xb1\x03\x91\xc5\x22\xbd\x54\x66\x5e\x5a\x67\x5c\x14\xa0\x7e\x19\xcb\x80\x04\x01\x95\x03\xa3\x9d\x28\x1d\x1b\xc0\x66\x7d\x68\xf5\xd5\x95\x5e\xff\xed\x9f\x6e\x8b\x67\xcf\x3e\x8d\x66\xf3\xed\x0b\xf8\x8b\xfd\xf9\x58\x7f\xea\xb5\xc8\xca\x8c\xbc\x2d\x9b\x7f\x86\xcd\x8f\xf1\x07\x98\x1e\xfc\x00\xfa\x64\x48\xe1\x05\xf3\xa8\x2d\xc0\x99\x90\xa5\xbe\x5e\x5e\x0a\x9c\x12\x0c\x9d\x02\x40\x89\x98\x94\x6e\x1a\x0b\x96\x48\x8d\xe8\x81\xd1\x32\x1e\x83\x80\x3c\x81\xfc\x56\xe6\x4b\x3f\xd6\x06\x7c\xdb\x74\x43\x39\xc4\xbc\x01\xf7\xcc\x30\x58\x9a\xa2\xeb\xe9\x1a\xa8\xee\x4b\xe3\x34\xeb\xfd\x50\xb2\x9d\xb1\x8d\x54\x25\xf5\xae\xed\x2a\x10\xeb\x20\x49\x73\x89\xf5\x1c\x4e\x61\x1d\x6c\x88\x45\x1a\xc4\x1b\xdd\x00\xea\x29\x5e\xeb\x0b\xd1\x4c\xd4\x82\xa9\x7b\xc6\x84\xb1\x86\x46\x34\xb1\x15\x61\xe3\x8a\x7d\x75\xe7\x0d\x59\x2f\x4a\x3e\xd7\xbf\xc3\x26\xc9\x9b\x19\x81\x2f\xc9\x42\x6a\xe6\x49\xc4\x39\xf2\x29\x9a\xdf\xf8\xf2\xeb\xb9\x46\x29\x53\xdd\xf4\xc4\xdc\x95\x4a\x6d\x1d\x3a\x39\xd8\xf7\x8b\xe1\x7d\xbf\x68\xf5\x3d\x05\xd2\xe7\x1b\xc0\x2c\xb3\xf2\x0d\x8a\x24\x78\xc6\x58\x91\xd5\x01\xc3\x8f\x3f\xfc\x4f\x5e\x1b\xca\x6e\x85\x77\xe6\x66\xfb\x0d\x9b\xe9\x94\x47\xc7\x42\x45\xe5\x85\xd9\xeb\x2c\x06\x70\xe0\xa4\x94\xdc\x9a\xbf\x23\xfa\x1a\x95\x87\xff\x4a\xe5\x61\xbd\x36\xe1\xc7\xd0\x21\xea\x11\x4e\x70\x84\x5d\x4b\x93\xe8\xbe\xf4\xe8\x13\x7d\x95\x13\x1d\xb5\xa2\xf3\x7a\x37\x2a\x17\x47\xe5\xe2\xa8\x5c\xfc\xf7\x53\x2e\xba\x18\x62\xa0\x8a\xb1\x8d\x71\xaa\x67\x7f\xbd\x63\xc0\x84\xd6\xc5\x93\x99\xaa\x59\x7d\xec\xd8\x99\x2d\xae\x25\x62\xa8\x4a\x60\x14\x28\x70\x72\x16\x6e\x05\xdb\x9d\x3e\xb7\x0b\x06\x19\xda\xf1\x1b\xaf\x3c\x0b\x21\xa0\xa8\x35\x71\xcf\x39\x56\x49\xdf\xa4\x54\x71\x88\x9f\xd9\x21\xef\x2a\x35\xe1\x20\x19\x4b\x18\xcd\xcd\xd0\xbe\x4e\x37\x3c\x57\xf4\x8e\x41\xe9\x44\x4d\x4d\xcc\xc1\x86\x51\x68\x35\xca\x03\x94\x4d\x7b\x02\x55\x13\xf4\xfd\xbe\x09\x32\x24\x7a\x4b\x9b\xbf\x19\xc0\x36\x7f\xf6\xc5\x76\xc3\x4c\x46\xb6\xe5\x5f\xc8\xb6\x78\x8a\xae\x7f\x04\xd6\xc5\x3a\x78\x54\xa3\x34\xf9\x97\x76\x8b\x36\x13\x13\x2c\x10\x5f\x31\x32\xed\x26\x1f\x93\x9b\xa9\x3b\xbd\xb5\x56\xd0\x08\x75\x32\x7e\x36\xa5\xbe\xde\x99\xe4\x18\xe5\x34\x72\x48\x23\x87\xf4\xaf\xe6\x90\xda\x37\xb8\x2b\xce\x09\x3f\x5d\x78\xe8\xab\x73\xdb\xf7\x60\x8e\x00\x85\xfa\xef\x78\x7b\xa6\x6e\x63\xeb\xf0\x6e\x2e\xb9\x9e\x9b\x31\xbb\x19\x26\xa8\x9c\x4d\x40\xff\x94\x15\x42\x78\x35\xcd\x5d\x4c\x84\xe9\xf2\xeb\xd7\xb3\xb3\xde\xd9\x56\x4d\xed\x5c\xe1\x6f\xa3\x3f\x0d\x4e\x6e\xc0\xf0\x37\xba\xc9\xb0\xe1\x75\x53\xbb\x69\x06\x2d\x42\xe9\x94\xf7\x99\x45\x19\x90\x7f\xc5\x68\xec\xb3\xdc\xd4\xb9\xd4\x5a\xeb\x32\xb1\x88\x29\xf3\x9b\xf3\x95\x00\x06\x5c\xa8\xaa\x5f\xb2\xe1\xab\x5a\x44\x6f\x63\x6e\x12\x3e\x33\x79\x19\xe5\x26\x95\x02\x4c\xa1\x79\x11\xad\x35\x4f\x89\x69\xcf\x4d\xcd\x6c\x8b\xb8\xef\x29\xd7\xb7\x7c\x29\x03\x3a\xbe\x28\x62\x79\x99\xb0\x31\x54\x57\x88\xf4\x69\xf3\xa1\x46\x9d\xe8\x0d\x5b\xf9\x16\x9b\x91\x98\x45\x09\xcd\x58\x6e\xdc\x63\xcd\xd7\xce\x59\x76\x7c\xda\x21\xf7\xdb\x5e\x6c\xf2\xc8\x54\xfe\xa4\x4c\x25\x64\xed\xfe\xe8\x51\xf3\x70\xb8\x3b\xe3\xe6\xdb\x2d\xda\x4c\xa5\x67\xae\x4d\xa6\xb2\xdd\xe4\x27\x63\x2a\xf1\x02\xef\x15\x40\x0f\x9f\x8c\x0c\xe5\xc8\x50\x8e\x0c\xe5\xbf\x9a\xa1\x6c\xe3\x9f\xbe\xc0\x79\xbc\xef\x0f\x0d\x9d\x4f\x12\x79\x3f\x9b\xcf\xe6\x73\x0a\x89\x8b\xbf\xca\xe4\xe6\x3b\x5b\xc4\xff\x01\x9e\x3b\xb7\x07\x27\x5d\x3d\x5a\xca\x51\x85\x24\xc2\xec\x7d\x3d\x99\x10\x95\x98\x50\x92\x15\x98\x4a\x3f\xce\x64\x8a\x39\xb6\xaa\xbc\x58\x2c\x26\x2a\xa3\x4b\x2d\x1c\x63\xa8\x8c\x1d\xca\xd7\x67\x15\xc5\x08\xc5\x01\xfe\xec\x73\xa8\xe8\xe4\x50\x00\x5c\x90\x35\xec\xc3\xc2\x2b\xd8\xe5\x07\x00\x18\x26\x39\xfb\x97\x41\xec\x3e\xbf\xce\xa2\xb3\x5c\x9d\xae\x59\x74\xd7\x1b\xc4\x7a\xcd\x14\x41\x4c\x34\x89\x59\xae\xb8\x80\xf3\x3c\x81\xd4\x89\x44\x0a\x72\xf2\xdd\x35\x39\x3f\xfd\xa4\x74\x0c\xcc\xa7\xe4\xc4\x30\x55\xbe\xe9\x6f\xeb\x11\xf4\x18\x70\x72\x7b\x70\x26\x2f\xa4\x5a\x43\x81\x9c\x43\x72\x7b\x60\x62\x65\x6f\x0f\x88\xcc\xf4\x5b\x93\x13\xef\xf6\xa0\x27\xff\x43\xd9\x8d\x2f\x1e\x96\x89\xc2\x57\x64\x6d\x52\x7d\xe5\x7b\x89\x53\xf1\x7e\x86\xb3\xda\x4f\xd8\x58\xa4\xcb\x53\x29\x04\x8b\x94\x66\xbc\x5e\x4a\x1a\x7f\x49\x13\x2a\x22\x2e\x56\x43\xc3\x8a\xbf\x9c\x7f\xd5\xd3\x05\xfa\xcb\x72\x51\x66\xd1\xf3\x5a\xbd\xfd\x07\xb9\x5e\xac\x3e\xc2\x81\xf4\x8e\x2b\xbe\x61\x04\xd2\x01\x2e\x60\x38\x96\x85\x2d\xf5\xe6\x33\xcf\x37\x20\xaa\x1a\x45\x74\xe9\x77\x01\x75\x26\x6a\x45\x3a\x7c\x9d\x66\xcd\x1a\xbb\xb6\x1e\xac\xc9\x42\x41\xf8\x26\xcd\xe4\xd6\x30\x37\x29\xcb\x40\x03\x20\x22\x38\x62\xa9\x8c\x27\x4a\x4e\xba\x22\xf6\xca\xa5\xe6\xb8\x30\x8c\xa3\xca\x18\xcd\xd1\x49\xd9\x96\xbd\xe2\xe0\x12\xa0\xe7\x1e\xb3\x45\x81\x19\x39\xd2\x22\x4b\x65\xae\x0f\x7f\xf7\x01\x7d\x50\xac\xf6\x22\x5d\x6a\xa9\x73\xb6\xa4\x11\x9b\x9b\x5c\x07\x03\x0e\x49\xf3\x1b\x64\x3d\x32\x06\x0c\x31\x61\xef\x34\xef\x00\x3c\x21\xd6\x94\x36\xa7\xc1\x8b\xc8\x40\x9c\x73\xb2\x40\xe2\x49\x31\x2c\x1f\x55\x4a\x6f\x8c\x3e\x6b\x65\x55\x63\xc8\x31\x48\x64\x16\x83\x7b\x94\x17\xdc\x54\x45\xeb\x12\xef\x29\x79\x54\x72\x2a\x26\x05\xe0\xd4\x58\x70\x04\x63\x71\x8e\x19\xaf\xe1\x8b\x35\x73\x66\xe2\x85\xb1\x5e\x8e\x0d\xab\xb4\x29\x2c\x4b\x04\x9b\xc8\xfb\x1c\x8b\x5c\x37\x42\x28\x07\x74\xba\xa6\x22\xd6\x07\x40\x44\x72\x03\xcc\x5a\x39\x7b\x30\x8c\xa4\x32\x53\xb9\xf1\xcc\x31\x27\x13\x16\x25\x0b\x95\x73\x7f\x68\xbf\xab\x65\x22\x64\x56\x8a\xf7\x9a\xe5\xaa\xd6\xeb\x4b\xc4\xf9\xa4\xc8\x0b\x9a\x24\x5e\x27\x3a\x2d\xb4\xc4\xa0\x8c\x9a\x4e\xa7\x4f\xdd\x5c\x01\xff\xf5\x84\x89\xe9\x7f\xfe\x8d\xa9\xf5\xf4\x3f\xff\xa6\x0a\x91\x3c\xfb\x8f\xa7\xfb\x26\x43\xd0\xc7\x11\xaf\xc2\x6b\xe1\x14\xec\x1a\x72\x22\xdb\x9f\x41\x8a\xcd\x32\x3b\xa7\x39\x57\xcc\x14\x97\xbf\xd3\x37\x3d\x99\x16\x4e\xfb\x37\x8b\x74\xf9\xc6\xe6\x48\xf5\xad\x3d\xdf\xe5\x91\x4a\xdc\xfb\xea\x7e\x0e\x3e\x66\x72\xa9\x0f\xab\x3d\x5f\x4c\xe4\x26\x20\x80\xaa\x5a\x5b\x5f\xef\x45\x6e\xf2\xd9\xeb\x0d\x42\x25\x8b\x39\x6a\x8f\x1f\xe7\x88\x6e\x69\x9a\xdb\x82\x1a\xba\x11\x17\xb9\x96\x87\x20\xcf\x0f\x91\xf7\x5e\x87\xc9\xf6\xd5\xd1\xdb\xcc\x4c\x60\x66\x35\xc0\x7b\x67\x7d\x58\xa4\xcb\x3d\xa8\xcc\xb9\xdd\x96\x6a\x8b\xcc\x0e\x01\x67\x63\xe3\x21\xf4\xec\x35\xbf\x9d\x26\x54\xf8\xbd\xa6\x9b\x3c\xcb\x43\xa6\x6d\xa2\x40\x4d\x54\xe9\xab\x01\x41\x0d\xb0\x84\xf6\x67\x35\xba\x58\x11\xc1\xb5\xbc\x77\x49\x80\x6f\x19\xee\x65\xae\x59\x83\xc0\x29\xdb\xdc\xf8\x27\xc6\x97\xdc\xa2\x02\x27\x32\xdb\x1b\x00\x42\x33\x48\xb6\x7b\x4f\xb3\x18\xf3\x13\x1b\x2f\xb6\x92\x09\xd4\x78\x61\x69\x13\xcd\xde\x1e\xdc\x40\xf2\xdd\xdb\x03\xf4\x9a\x5c\x48\xe5\xf5\x1e\x34\x22\x1c\x96\x93\x67\x79\x2a\x85\xde\x2c\x83\xae\x78\x6e\x52\xf8\xe2\x80\x0d\xd7\x39\x18\xcf\x7b\xb3\xec\x14\xce\xae\xaf\x34\x9b\x86\xdf\xe1\x38\xbe\xae\x17\x85\x32\x6d\xea\xe3\x07\x14\xd8\x79\x55\x4a\x2b\xd9\x79\x9d\xfa\xf4\xcc\x84\x1d\xdf\xec\x5f\xd5\xc4\x8b\x08\xc1\x55\x32\x4d\x19\xc5\xf4\xe6\xf6\xc8\xce\xe6\x56\x56\xe3\x62\x05\xee\x87\xba\xe5\x6f\xad\xf6\x03\xd8\x93\x40\x2c\x4a\xca\xb2\x0d\xcf\x73\xbe\x65\xe4\xe5\x27\x0e\xad\xaa\xce\x38\xee\xd0\x03\xb0\xaa\x66\x6d\xe6\x99\x7c\xb7\x3b\x37\xb2\xfa\x75\xa2\x8f\xd4\xc0\x1b\xfb\xe5\xfc\xab\xee\x0e\xfc\x07\xdf\x4f\xef\x1d\x86\xf0\x71\x4e\xd8\x66\xc1\xa0\x04\x05\x64\xaf\x4e\xf5\x08\x46\x73\x9a\x93\xfa\x50\x9a\x5f\x17\x32\xec\x28\x19\xbe\xe0\xe5\xdc\x67\x29\xd6\x9d\x3a\xd5\x0d\x8b\x74\x0f\x7c\xd5\xd3\x45\x0d\x8f\x21\x2c\x7c\x8b\x47\xf0\x38\x78\x2e\xcd\x24\x6a\xab\x93\x1d\x89\x74\x8f\xa4\x48\x4d\x1d\xa4\x5c\x65\x8c\x6e\x5c\x9e\xb4\x82\xd0\xe3\xc7\x7e\x57\x61\x33\x37\x12\xad\x29\x07\x56\xf3\x1a\x49\xbe\x89\xda\xaf\x66\xb8\x74\xc1\x6d\x9c\x50\x8d\x95\xe7\x63\xb1\x99\x25\x04\x5f\x71\x71\xbd\x13\xd1\x1c\x6a\x30\xee\x05\xfb\xda\x97\x87\x01\x64\xdb\xaa\xa5\x67\x40\x8f\x19\xa7\x08\x88\x0d\xd6\xf1\x19\xd5\x4e\xa5\xfa\xb0\xa4\x34\x95\x9e\xf4\xb1\x73\x44\x7d\xdd\x56\x60\x9c\x12\xf2\x52\xde\xb3\xcc\x2a\x6c\x56\xfa\x1a\x67\x2c\x2e\x22\x4c\xcc\x34\x29\x52\xd0\x4f\x8a\x48\x37\xfd\x86\xaf\xd6\x65\x5b\x3f\x96\xd5\x5f\x5a\xfd\xee\xfc\x35\x29\x72\xba\x62\x64\xb1\x23\x0b\xcd\xbb\x69\x16\xb1\x48\xc9\x46\x66\x88\xce\x6b\x58\xe2\x79\xfe\x00\x0c\xf1\x52\xae\x5e\xb2\x2d\xf3\xc5\x8b\xb4\x76\xc4\xb6\xad\x41\x1d\x12\x6a\x41\x8e\xeb\x32\xcb\xa3\xc3\x7b\x04\x70\x41\x29\x4a\x56\xb0\xdf\x20\x3a\xbe\xb4\xf2\xfb\xe5\x72\x89\x92\xfb\x4c\x2c\xa5\xfe\x0b\xe5\x76\x2d\x1f\x69\xa1\x3d\x24\x27\x42\x29\x6b\x4d\x01\x19\x16\x08\xb4\x9b\xac\x07\x53\x19\x8d\x18\x49\x79\xca\x0e\xad\x39\x4b\x73\x73\x26\xa8\x90\xd9\xfa\x0e\xbe\x6e\xdf\xaa\x08\x6a\x42\x68\x90\xa1\x90\xf6\xd6\x65\x9d\x2e\x97\xcb\x3f\x4f\xf7\x04\x3e\xdc\xd6\x19\xf0\x72\x83\x78\x8f\xd3\x7a\xfb\x90\xb0\xbd\x96\xf2\xce\xe5\x75\x7f\xfc\xe1\x7f\x02\x36\xc2\x74\x82\xdb\xd6\xc0\x1f\xfa\xb0\x21\x8b\x09\x19\xea\x51\xd1\x64\x0c\xc6\x4a\xa6\x66\x97\xbd\x02\x98\xfe\x5e\xef\xd3\x62\x07\x24\x52\xc4\xed\x1e\x16\x52\x29\xb9\x99\x5a\x26\xd6\xd8\x7d\x73\xba\x2c\x33\x75\x7a\x19\x05\xae\x85\x6e\xae\x48\x9a\xb1\x2d\x98\x32\x91\x83\x05\xa7\x7c\xdd\xbd\x91\x8b\xd0\x85\x6f\xb1\x4b\x69\x9e\x9b\xc4\x38\x3b\x59\x90\xfc\x9e\x2b\x7f\x4c\x84\x92\x66\xa6\x06\x9f\x2c\x4c\xc5\x9d\xd2\x44\x8e\xa1\x5b\x38\x84\x09\xed\x33\x60\x42\x0b\xab\x97\x01\x03\x42\x06\x7a\x82\xc5\x0e\x2a\xc8\xa3\x1e\x3e\x93\xc5\x6a\x6d\x0f\xa4\x11\x27\xa1\xe7\x43\x1c\xe6\xde\xe4\xe9\xf1\xf5\x69\x9a\x63\x56\xf4\x32\x61\x7e\xb5\xd2\xea\x2c\x22\x64\xf7\x45\x05\xe5\x45\xc4\x92\x71\x7b\xfb\x63\x2e\x8a\x95\x91\xc5\x5e\xca\xd5\x59\x26\x21\x49\x79\xb0\x97\x00\xbd\x80\x6e\x5e\xb1\x8d\xcc\x76\xf3\x4c\x2e\x79\xc2\x3c\x55\xe8\x06\xcd\xe5\x9a\x6f\x40\x0f\x7a\x4a\x93\xe8\xeb\x8c\xa6\xeb\x6f\xa8\x58\x9d\x2c\xd5\xc3\x56\x66\x7b\x3b\xb3\x40\x7a\x78\x6f\xb0\x49\x96\xc3\xb9\x91\xdf\xc8\x5c\x9d\x44\x01\xd5\x71\xfd\xfe\x9f\x85\xbf\x75\x71\x01\x28\x15\xf4\x91\xce\x03\x6a\x92\x52\xc5\xa0\x9b\xae\xa4\xbd\x3a\xb4\xd2\x09\xb8\x95\xf9\xab\xa2\xad\x2a\x67\xc9\x92\x3c\xa1\xcb\x80\xc7\x08\xe0\x07\xd3\xf7\x9a\x1b\x79\xbb\xec\x8a\x21\x53\x8c\xe7\xf7\xe9\x94\x7c\xb9\x2b\xa3\x62\x4e\xbd\x45\x7e\x49\x99\x9a\xca\xaf\xca\x2e\xbb\xce\x7d\xd3\x04\x9c\xee\x8f\x25\x2c\xd1\xdd\x8f\x3f\xfc\xe3\xec\xea\x72\xfe\xe3\x0f\xff\x04\xdf\x01\x29\x4a\x7c\x71\x4f\x4d\xe4\x7f\x92\xc8\x7b\x92\xcb\x0d\xd3\x58\x8d\x26\x49\x97\xc0\x01\xb3\x73\x41\xa7\xe7\x63\xea\x79\x40\xf4\x1b\xcd\xe8\x86\x19\xe1\xee\xea\xfc\xe6\xf5\x15\x94\x25\x39\x39\x3d\x3d\x9f\xdf\x4c\xc9\x6b\x7f\x76\x2e\xd3\x90\xe3\xc4\x20\xde\x09\x4a\x83\xc8\x7b\x51\xc7\x4a\xee\xb2\x66\x17\xf3\xd7\x37\x7a\x5d\x80\xaa\x7e\xdb\x81\x4f\x00\x91\x58\x5c\xac\x2c\x2e\x6d\x62\x7b\xaa\xb0\x27\x13\x58\xf7\xe3\x0f\xff\xc0\x69\xfd\xf8\xc3\x3f\xbd\x02\x0d\x1a\x39\xec\xbe\xb4\x26\x44\xa4\xc1\xe6\x6b\x9a\x83\x7b\x0a\x7a\x69\xa7\x99\xb4\x2e\x26\x76\x93\x7d\xbd\xfb\x8f\x14\x00\xd0\x00\x13\xe4\x32\x51\x3a\x55\x40\x31\x11\xc4\xc9\x76\x6a\xc1\xfd\x2b\x65\x64\x02\xe7\xdc\x37\xa7\xd0\x04\xba\xd5\x14\x1a\x25\xee\x8d\x93\xd9\x96\x47\xec\x4a\x16\x4a\x33\xc2\x90\xa5\xb5\x3f\x14\x95\xe7\x35\x8b\x3c\xa4\xb8\xa8\x92\xbc\xd2\xd8\xe8\x04\x0c\x83\xb6\x61\xb1\x19\xc6\xcb\x8d\x42\x7e\x8c\x43\x4d\xc5\xec\x65\x85\xa3\x6c\xc9\xcf\xd5\xcd\xfc\xea\xf2\xe6\xcd\x97\x97\x97\x37\xc8\xd5\x25\x6c\xa9\xc8\x22\xa1\xc2\x97\x4d\xab\x33\xd9\x87\xb3\x56\x2c\x1f\x61\xa2\xf8\x06\x2d\xd8\x72\x11\x68\xde\xb6\x71\xb8\x46\x3a\x97\x62\x9f\xc5\xd6\x30\x93\xa7\x53\x9e\x3b\x8b\x3c\x24\x09\xa3\x5b\x63\x64\xf7\xca\x09\xc0\x82\x81\x17\x16\x96\x48\xf3\xf4\x58\xf8\xb3\x70\x76\x1e\x0c\xa4\xb4\xa7\x52\x08\xcd\xd3\xde\xcd\x04\x84\xe3\x87\xcc\x6f\x9d\x34\xd7\x9e\xe6\x2b\x50\x36\x73\xb1\x3a\x63\x09\xf5\xf9\xac\x75\x4d\xa8\xd5\x49\x58\xc6\xee\x9e\x8c\x51\xae\x5d\xc8\x98\xe5\x2f\x79\xde\xeb\x27\x76\xee\x7e\x70\x3a\x3b\xbb\xd2\x1f\xd5\x13\xa5\xeb\x5f\x1f\x83\x25\xdd\xf6\x3e\x11\xd2\x56\xdb\x86\x9a\x8a\x1d\x16\x8a\x0d\xdd\xd9\xfd\x42\x2d\x54\x49\x8c\xa8\x28\x53\x70\x30\x47\xf9\x65\xde\x06\x72\xe5\x19\x33\xa6\x46\xb0\x51\x95\x02\x65\xbf\x94\x78\xdd\x59\x00\x3a\x32\x0f\x2e\x29\x4f\x34\xa3\x3d\x13\x0b\x59\x88\x58\xb3\x0f\x73\x99\xf5\x27\xe9\x7d\xfc\x55\xe0\x43\x84\x33\x48\x4d\x93\x98\x25\x7c\xc3\xf5\xda\x0c\xdc\x7d\x53\x7f\x7d\x36\x3f\xba\x39\x9d\x1b\x5d\x26\xd0\x15\x47\x2b\x82\xd4\xd6\x67\x0a\x01\xca\x5e\xd2\x7b\x5f\xcf\x52\x10\x9e\x65\x2c\x4f\x19\x56\x80\xad\x52\x5c\x14\x90\xe8\xd9\x12\x09\x8b\x2e\x4c\x2e\x06\x4d\xe3\xb7\x92\x7b\xe9\x0c\x8d\x22\x48\x5b\x03\xe4\x23\x2a\x30\xef\x8f\x5c\x2e\x09\xc5\xf9\x00\x8b\xa1\x67\x9b\x65\x2c\x52\x0d\xe7\x0c\x72\x1e\x0a\xc2\x96\x99\x1b\xb0\x5f\xa5\x06\xa6\x39\x51\x51\xea\xc4\xdf\x4f\x30\x24\x19\xc3\xf0\x35\xa7\x50\xc4\xc1\xd7\x5e\xe2\xf3\x95\x96\xc4\x68\x74\x37\xa9\xc5\x26\x1d\x9a\x34\x8d\x15\x4d\xb0\xd1\xc8\x55\x06\x51\xae\x2c\x0a\x0c\xb9\x97\xfe\xf8\xc3\x3f\x54\x94\xfe\xf8\xc3\x3f\xa7\xe4\xa6\xb2\x8b\x50\x60\x26\xe0\x90\x20\x8c\x60\xa3\x0f\x4b\x25\x29\x9a\xea\x85\x0c\x28\xf5\x6f\x9c\x72\x0d\xd8\x14\x8e\x44\x4e\xf2\x7c\x6d\x4d\x23\xfa\xda\x9d\x7d\x73\x3a\xaf\x19\x2e\xa2\xf4\xf8\x93\x4f\xbc\x16\x69\x0d\xb3\x17\x5f\x1c\x42\x93\xe7\xbf\xfe\x0d\xfe\xf1\xc9\xa7\xd5\x5f\x5f\x3c\xc3\xbf\x5e\x7c\xf6\xd9\xa7\xe6\xaf\x17\x2f\x5e\x94\x7f\xfd\xda\x47\xb3\x07\xe7\x92\x96\x4a\xda\xcc\xeb\x91\xdc\x2c\x8c\xa7\x03\x18\x8f\x4b\x82\x2c\x62\x80\xd2\x61\x50\xf1\x4e\x4a\xdf\x86\x2a\xa0\xdd\x7b\xb2\xfa\xd2\xc8\xa4\xfe\x74\xf1\x66\x4f\xbb\x88\x73\x39\x40\x88\x07\x71\xfb\x08\xe7\x27\xe9\xcc\xe1\x31\x09\xe6\xc4\x98\x94\x23\x87\xd1\xe1\x03\x12\xb1\x5a\x74\x78\x59\xa8\x07\xe2\xc3\xd6\x97\x61\x84\xe8\xc5\x59\xcb\x41\x08\x51\x16\x6a\x25\x5d\x84\x58\xd6\xde\xef\xe2\x8e\xd1\xea\xb7\x3f\x4a\x0c\x29\x49\x34\x96\x7c\x3f\x94\xe8\xeb\x59\x63\xc9\x7f\x7f\x94\x28\xcd\x39\xf9\x30\x38\x51\x82\x6c\xcf\x54\x14\x83\xf6\xab\xcc\x48\x6e\xce\x90\x34\xe6\x67\xe7\x34\x79\x31\x95\x16\xfc\xf5\x1a\x57\x4c\xe9\xad\x84\x6d\x44\x11\x56\x45\x71\xcd\x93\x41\x9f\x42\xbd\xd1\x1a\xed\x22\xfe\xbd\xb8\xee\x91\x76\x1e\x8c\x6e\x83\x48\xfc\xf3\x4f\x0f\x11\x99\x8f\x18\xb9\x36\xc0\xbf\x15\x46\x66\x54\x15\x19\x3b\x63\x8a\x45\xea\x72\xcb\xb2\x8c\xf7\xeb\xc5\xbf\xf2\x7d\xe4\x56\xe7\x95\xf6\x37\x7d\xdb\xcc\x10\xfe\x93\xa2\x98\x51\x03\x7d\x6b\xaa\x29\x65\x2e\x36\xe2\xc2\xe2\x76\x92\xb3\x94\x62\x52\x3a\x60\x76\x01\xed\x09\xaf\x06\x0b\xf2\xbe\xe5\x87\x84\xbd\xa3\x9b\x34\x61\xbf\x25\xb7\x07\xd7\x17\x27\x37\x5f\x15\x49\xb2\xbb\xa2\x22\x96\x9b\xdf\x41\xe9\xc7\x57\x27\xd7\xff\xc7\xfd\x11\xbc\x1a\x0e\xaf\x18\xc4\x81\x5c\x17\x29\x5c\xee\x97\x32\xba\xfb\x9d\x37\x5d\x23\xa9\x12\x52\x82\x99\x04\x3e\xbf\x3d\x40\x32\xb2\x94\xe8\xf4\x5d\xae\xfe\x10\xd3\x05\xe9\xa6\xd2\x58\x49\xc2\x16\x29\x48\x35\x5f\x28\x39\x41\xf8\xec\x2d\xab\x42\x02\x3f\x1e\xfd\xe1\x6c\x3e\xd4\xee\xfa\x75\xf3\x0b\x63\xc0\xcc\x89\x79\x43\xfe\x70\x36\x27\xb9\xac\x8a\xd1\xd2\xcc\xef\xd9\x0a\x28\x30\x96\xe2\xf1\x63\x45\x72\x04\x22\x7c\x2b\x97\x4b\xd0\xe4\xc8\x8c\xc4\xa0\xee\x06\xed\x3f\x16\xa5\xd0\x78\xf9\x0f\x67\x73\xa4\x8b\x5e\xfd\xa1\xb1\x9b\x32\x7d\x16\x98\x88\x59\x5c\x99\x27\x34\x56\x85\xd1\xd2\x4c\x6e\xf5\x99\x5b\x30\x05\x6a\xa4\xca\x75\x30\x30\x4f\x51\x2a\xf0\xa6\xef\xed\xdc\xb2\x66\x34\x51\x1d\x35\x65\x06\x7c\xac\x59\x9a\x3d\x75\x00\xf8\x61\xa0\x26\x51\x27\x32\x2b\x7d\xd0\xce\xdf\x45\x49\x31\xc0\x14\x36\x6b\x7c\xe0\xf2\x5d\x8d\xbb\x29\x97\x43\xdc\xf0\x6a\xde\x87\xcc\x74\x0a\x1a\xad\x8d\x14\x5c\xc9\x32\xcd\x43\x5d\x12\x9d\x86\xac\x90\x75\x8a\x5d\xf3\x07\x33\x2e\xb1\x2b\x21\xf5\x4f\x95\x9d\xff\xf1\x63\x32\x9b\x7f\x7b\x4d\xe2\x62\xb3\xf1\xba\xe0\x95\xcb\x38\xb4\xde\x93\x06\xc7\xd9\x40\x97\x64\x47\x16\xbb\x9a\x69\xba\xae\xce\xf6\xb2\x8b\x66\xad\x9b\x22\x51\x3c\x4d\x1c\x47\x48\x53\x24\xce\xd4\xa9\xb6\x79\xf5\x4d\x2c\x0d\xd8\x7d\x03\x6c\xad\xb9\x68\xb9\xc7\x2f\x34\xc7\x22\x2a\x9e\x17\x30\x4f\xa0\xaa\xf7\x19\x4d\x43\xe6\x05\x04\x27\xa0\xdb\xc7\x8f\x8f\x1e\x3f\xc6\xee\x0c\x6e\x25\x6b\x54\xc5\x19\x43\xfc\xe3\xc7\x47\xff\xa5\x61\x71\x74\xb8\x65\x6a\xfd\xfc\xb1\xe7\x12\x19\x7f\x7a\x0b\x03\x94\x5e\x4b\x77\x48\xd8\xad\x05\x5b\x71\x61\x47\xd4\xdd\x3d\x7e\x8c\x59\xc9\x92\x5c\x86\x94\x7e\x15\x08\x1f\x3f\x36\x63\xbb\x77\x1a\x36\x88\xa7\xdb\xfc\xd9\xbe\xfa\xe0\xb2\x63\xac\x52\x34\xfc\x9a\x60\x7b\xab\x26\xad\x6f\xb1\xa9\xdb\x64\xa2\x41\x6d\x7d\x16\xbf\x4a\xac\x6d\x7a\x01\xd7\x54\xe0\x76\xb5\x2c\x50\xf0\x7c\x8d\x7a\xe7\x4d\x25\xa5\x94\xad\x3b\x61\x95\x4f\xc9\x85\x54\x80\x23\x08\x13\x5b\x9e\x49\x81\xd5\xa0\xa4\xc9\x3d\x49\x05\x59\x68\x5a\xb4\x61\x8a\x26\x87\x26\xb5\x73\xb4\x66\xb9\xca\xa8\x92\x99\x77\xc2\x91\x53\x8b\x5e\xa3\x88\x54\x73\x64\x19\xa7\x8a\x25\xbb\xfa\xd9\x91\x85\x5b\x3c\x03\xb9\x5c\x19\xdd\x05\x62\xa3\x35\x1a\x33\x41\x81\xc6\xbe\xc3\xc8\x8f\x3f\xfc\x77\x44\x13\xfe\xe3\x0f\xff\xe3\x06\x9c\xe9\x7e\x2f\x53\x26\xae\x15\x8d\xee\xdc\x0f\xbd\x37\xc7\x7a\xa9\xfe\xf8\xc3\x7f\x2b\x9a\x96\x5d\xb9\xa7\x47\x8f\xf1\xe0\x73\x73\xc5\x96\x19\xcb\xd7\x70\x2e\xb6\xde\x1c\xa1\xb5\x03\x34\x0b\x7c\x57\x56\x92\x03\x8f\x1c\x42\x95\x41\x48\x41\x61\x23\x63\x79\x44\x45\x6e\xb2\x0d\xba\x77\x4c\x92\x2d\xcb\xf8\x72\x67\xbc\x59\x21\xf1\x0b\x96\x8d\xc7\x6f\x4c\x9d\x28\x2f\x8e\x35\x2e\xbb\x1a\xe9\xe5\x26\x2d\x77\x79\xbc\xb7\x18\xfb\xfc\x6c\x4f\x66\x85\xa7\xbc\xc3\x3d\xac\x93\x6e\xea\x4f\x5f\xdd\xbc\xee\xbf\x94\xf3\xd9\xfc\xd5\xcd\x6b\x0b\x43\xfd\x27\x38\x7b\x2a\x22\x85\xa3\x4b\x36\x86\x8a\x29\xb9\x66\x7e\x7f\x00\x73\xb4\xf5\xaa\x75\x1f\x8e\x1b\xd0\x67\x9f\x75\x60\x96\x10\x09\x4e\xf5\xe1\xdb\xf3\x7c\x3c\x9e\xf9\xbe\xea\x3c\x1d\x24\x63\x18\xe8\xe3\xe7\x35\x13\xc7\x1b\x05\xce\x42\x53\x9e\x15\xd2\x20\x04\x63\x98\x03\x13\xa2\xab\x96\xf0\x75\xbb\xc8\xe4\x1d\x13\x2d\x97\x11\xc8\xe6\x0e\xa7\xa4\x16\x8b\x61\xc7\xcf\x70\x59\x3d\xf1\x41\xbf\x79\xb6\xb7\xd7\x95\x1d\xe1\x4b\x1a\xdd\xb1\x56\x80\x67\x0b\xca\xb3\x7a\xf3\x52\x22\xb1\x31\xf1\x0b\xf3\xbb\xe6\x74\xec\xdc\x35\x5d\xf3\x42\x82\xa1\xb9\xa9\xa6\x56\x00\x93\xd6\x8a\x7a\x4d\x98\x43\xd6\xf1\x15\x4f\x14\xcb\x20\xc6\x2d\xe8\xca\x30\xa4\x1f\x2d\xde\x7c\x15\xf6\xf9\x68\x1e\xbd\xf6\x47\x55\x89\xc7\xa8\x14\xeb\x5d\xd3\xb8\x0f\x22\x90\x05\x6c\xc9\x13\x36\x25\x7f\xd4\x2c\x08\xdd\x41\x78\x08\x9a\xec\xa8\x58\x19\xd2\x61\x14\x44\x65\x6b\x2b\x05\x70\xbf\x8b\x81\x72\xf4\x32\xe5\x6c\x9e\x2c\x1d\x82\xe3\x1a\xf4\x37\x34\x4d\x19\xc6\x1b\x09\x25\xf1\xa2\x84\xdc\xb6\x4c\x90\x28\xcb\xf4\xc5\xa2\x24\xe6\x4b\xcc\x71\x4d\x52\xaa\xd6\xb5\xc0\x8c\xa3\xac\x10\x47\xef\x8c\x4c\xa1\x27\xfe\xd0\x73\xaa\x41\x3c\xcf\xe4\x82\xed\x81\x17\x02\x5f\xda\x1d\x02\x77\xcc\x86\xba\xd3\xcb\x71\x60\x4e\x0a\x74\xdb\xa4\x4a\x69\xb9\x15\x53\x05\x47\xa0\xb8\xa8\x7b\x3e\xc0\xee\xf0\xa5\x09\xa7\x12\xd2\xcb\x71\xd0\x2d\xe5\x89\x6e\x3f\xad\x3b\x6e\x6e\xe8\x9d\xf5\xbb\x04\xf7\x4a\xe3\x63\xce\xb7\x46\x10\xb0\xdb\x1f\x10\x09\xf5\xbe\x80\x30\x78\x08\x5e\xea\x5a\x8a\x84\x6e\x4e\xe7\xaf\xdd\x4d\xf9\xfc\xd9\xe6\xc1\xf8\x42\x43\xf3\x86\x6f\x98\x2c\x7a\xcd\xa2\xb5\x1d\x30\xdf\x74\xc1\x1e\x00\xed\x5b\x99\x8d\xa7\xab\xc1\x18\x7c\x31\x9f\x1d\x3a\x58\x13\x54\x9e\xa8\xd1\xe4\x79\xa5\x66\x08\x32\x04\xc0\xe9\xe7\x6b\xea\xdd\x41\xb8\x5f\xe8\xc0\x93\x24\x75\x74\xdf\x91\x46\x0f\x39\x72\xbd\x89\x76\xa7\xa6\x98\x61\xd9\x38\x38\x57\xb1\x88\x5a\x2e\xa7\xd5\x45\x3a\x0c\xe6\x60\x2e\xdd\xf6\x75\x8f\xfa\x3a\x99\x60\x02\x99\x95\x39\xf4\x9d\x38\xc3\x8d\x2c\x04\x26\x1b\x34\x7e\x2f\x4e\x32\x6b\xaf\xfa\x3f\xb3\x2d\x96\x36\xba\x1b\x27\xe4\x9e\x97\x67\x79\xc9\xe7\x3c\xf4\xd8\xbc\xa2\x5a\x72\x7b\x7f\xf4\xfc\x8a\x66\x77\xaf\x68\xde\x1f\xdf\x3b\x6b\x7c\x60\x0f\xde\x46\xff\xed\x8a\xdb\xa6\x86\x02\xf7\xab\xd4\x67\xf3\x1b\x3c\x14\xba\x1f\xb2\xd0\x38\x15\x0b\x14\x5c\x57\x29\x5f\x6c\xb5\xca\x35\x7b\x47\x63\x16\xf1\x0d\x4d\x6c\x26\x67\x7d\x80\xbc\xe7\x44\x91\x84\xd1\x5c\x91\x2f\xb0\x4f\xc8\xb2\x2d\x4c\xd8\x30\x52\xd4\x28\xa1\xf9\xda\xba\x90\xed\xcc\x09\xdc\xd8\x59\xf8\x25\x02\xeb\x6a\x02\x26\x96\x5d\xae\xd8\xa6\xb6\x8d\xef\x96\xcb\x67\xf0\x7c\xe8\x52\xf2\x76\x77\x2e\x4e\x6e\x2e\x8d\xa1\xa8\x64\xdb\x91\x30\x3f\x70\xbb\xe7\x32\x57\xdf\x65\x5c\x31\xf0\x2a\xd9\x1b\xf5\xfb\x3f\x6f\xf2\x86\xe0\x63\x15\xc4\x12\x9a\xb7\x8b\xf5\xce\x50\x72\xaf\xbb\x6a\x3b\xec\x97\x29\x8c\xa2\x35\x8b\xd1\x75\x4d\x10\xf6\x4e\x65\x94\x64\xcc\xef\x3e\xb6\x40\x41\xac\x8c\x24\x25\x18\x77\x0e\x41\x91\x30\xc8\x3d\x45\xd2\x1e\x25\x72\xb1\x60\x99\xcd\xdd\x5f\xc3\x43\xe1\xec\xa0\xb9\x13\x7a\x21\xa3\xa8\xc8\x34\x41\xb2\x5f\xd3\x34\x4d\x6c\x2a\xd5\xda\x59\x41\xc5\xe1\x8f\x3f\xfc\x8f\x17\xb5\x19\x23\x5e\x1b\x55\x4e\xdf\xcb\xfb\xdf\x76\xb5\x3f\xd7\xef\xfd\xee\x01\x52\xa1\x11\x05\x6c\x00\x15\xc8\xbf\xb6\xca\x4e\xb5\xc7\xdd\x12\x40\xe8\xe0\xd4\x6c\x95\x7b\x49\x00\x66\x26\xfe\x29\x1b\x99\x00\x75\x15\xca\xe1\xa2\x91\x52\xf2\xdc\x28\xa9\x34\x53\x0d\xec\x05\x68\x2e\x4a\x4f\xf2\x8e\x4e\x4b\xc1\x35\xc7\xb4\xaf\xf7\x32\xbb\xa3\x19\xd8\x0d\x31\xed\xee\x4b\x2e\x8a\x77\xd6\xa5\x6c\x51\xac\x10\x1e\xf7\xd4\xef\xcd\xc8\xdf\xa1\xcd\xc2\xb4\xb7\x59\xe0\x3e\x9b\x3e\x7f\x5e\x2a\x06\x35\xfd\x45\x05\xdf\x56\xff\xae\x49\xd2\x2a\x63\x34\xe0\xe0\xbb\x33\xfc\xb1\xf5\x8e\x2d\x3d\x5b\x95\x3c\x24\x94\xac\x9d\xd8\x16\x8c\x3a\xac\x87\xb2\x78\x2d\x7b\x39\x5d\xd5\xd4\x1b\xcf\x1f\x22\x4e\x6d\x5f\x18\x0b\xc9\xbe\x32\xfb\x5d\xb1\x60\x17\x32\x66\x73\x99\xa9\x2b\xcd\xec\xf7\xdb\xfe\x7f\xdf\xfa\x84\xac\x65\x12\xe7\xa5\xb6\x19\x8c\x0c\x19\xbe\x01\xf5\xec\xd2\x5f\xcb\xd9\x84\x77\x92\x2a\xb8\x73\x4a\x2e\x35\xd6\x28\x4c\x29\x55\xe4\x0a\xd0\xea\xe2\x46\x81\x85\xf3\xf2\x01\x1d\xe2\xe9\x36\x37\xc1\x34\x08\xfa\x02\xb9\x26\x96\x33\x3b\x2d\xd8\x3b\xd4\x92\x23\x03\x43\x45\xdc\xe9\x72\x6b\x3c\x0f\xdc\x8d\xfa\x54\x13\xb3\xe3\x4f\x3f\xf9\xf5\x8b\x5f\x7b\x23\x5f\xc2\x16\x59\x2a\x76\x97\xfe\x1a\x4b\x93\x7e\x9b\xe7\xa4\xd7\xa4\x99\x9a\x74\x06\xe4\xbf\xa6\xff\xe9\x7b\xff\x6e\x52\x55\xfe\x99\x70\xa1\x26\x32\x9b\x60\x6f\x6e\x7e\xb7\xda\xea\xc3\x16\xcb\x44\xae\x06\x4b\xac\x2f\xab\xb6\x16\x55\x42\xad\x7e\x2d\xb8\x59\xca\x86\x3b\x96\xc8\x95\xc5\x4c\xbe\x15\x00\xb3\xe2\xe0\x2b\xe0\x97\x13\x09\x69\x23\x6a\x02\xe0\x96\x66\x47\x89\x5c\x1d\xb9\x6c\xe6\x34\x91\xde\x54\x26\x5d\x60\x4d\xe4\x6a\xa0\xc6\xf9\xa5\x6d\x59\x89\xe2\xab\x9a\x82\xd9\x39\x92\x58\x81\x4f\xcb\x4c\xa1\xad\x7c\x79\xf9\xb5\xc5\xd3\x75\x05\x68\x24\x27\xe8\xc8\xfd\x80\x95\x5c\xb3\x2d\xcb\xb8\xda\xe9\xbd\x18\xb2\x1e\xb7\xbd\xbb\xaa\xdc\xfc\x4e\xe8\x42\x82\x8c\xa8\x69\x5d\x22\x57\xbd\xe5\x04\x6d\x07\xa8\x74\xa8\x16\x36\x13\x4b\xf9\x1e\xeb\xb9\x8e\x32\xc6\xfa\xa3\x48\x5e\x36\xbf\xf8\x60\x6b\xca\x55\x2c\x0b\xf5\x21\x57\xb4\xeb\x47\xc7\x2f\x6b\xcd\x3f\xdc\x5a\x76\xb9\x73\x09\xc9\x85\x34\xc1\xa1\x42\xda\x8b\x06\x48\xd4\xb4\xea\x54\x10\x3e\x04\x08\x1b\xfa\x0e\x54\xab\xd7\xfc\xaf\xe1\x84\xec\x01\x2c\x69\x73\x95\x9d\xc4\xde\xac\xfa\x75\xf0\xbd\x72\x1a\x5b\xe0\xb9\x95\xac\x32\x12\xcb\x0d\xe5\x02\x2d\x45\xe1\xc8\x3f\x48\x90\x69\x8a\x27\x46\x54\x10\x2a\x72\xcd\xfb\x7c\xfb\x8a\xfc\xa5\x60\x19\x67\x98\xdc\x26\x4a\x64\x11\x4f\xb8\xe0\xaa\x9c\x25\xa4\x7e\x2b\x0d\x24\x5e\xef\x1f\x60\x31\xc0\xa5\x2c\x4f\xa5\x88\xcb\xb0\x92\x0d\x8d\xd6\x5c\xb0\x52\xbe\x17\x72\x4b\x27\x34\xe5\xe4\x89\xcc\x34\x21\x7c\xbd\x28\x84\x2a\xbc\x5d\xda\xa6\x13\x3b\x8d\xa7\x53\x72\x62\xdd\xab\x96\x88\x60\x9f\x44\x34\x87\xe2\x94\x4c\xe4\x5c\xf1\x2d\x7b\x4a\x36\x8c\x8a\xb0\x02\xa2\x66\x43\x36\xe5\x7d\x48\x91\x82\x08\x79\x71\x72\x83\x51\x90\x56\x9f\x62\x07\x06\xec\xdf\x73\x82\x9e\x7f\xf2\xeb\xe9\xb3\xe9\xb3\xe9\xf3\xbd\x8f\x91\x19\x24\x60\x93\xf7\x1f\x05\xeb\x1e\x05\xac\xbc\xfe\xdb\x68\x3a\xca\x19\xe3\x5e\xa3\x7f\x44\x20\x0b\xd4\x66\xc1\x05\x8b\x51\x82\xc6\x12\x48\xd3\xda\x49\x7b\xc2\x97\x00\xa1\x1f\x7f\xf8\x6f\x7d\xb5\x7e\xfc\xe1\x7f\x9e\x1e\xba\x2e\x3b\x39\xf3\x42\x58\x03\xb3\x04\xe5\x21\x5a\x18\x9f\xbf\xf8\xcd\xf4\x93\xcf\x3f\x9b\x9a\xff\x1f\x7f\x01\xac\xbc\x3b\xda\xb1\xbb\x32\xaf\xe0\x36\x13\x64\xa3\xd9\xa0\xc8\xd4\x69\xa8\xc4\x38\x3d\x49\xab\x0e\x5e\x30\xa3\x11\x8e\x1d\x14\xf7\xc5\xaf\x7f\xfd\x79\x47\xe4\x6f\xe0\x8e\x0a\xaa\xac\xb0\x3e\x30\xcc\xc5\x11\xef\x9b\xe5\xad\x40\xe6\x6d\xc4\xbc\x00\x6d\x35\x4e\x27\x01\xe2\x6a\xa2\x1a\x34\x38\xe1\x50\xda\x74\x1b\x82\x50\x77\x7e\x24\x95\x32\x29\xab\x56\xf5\x84\xbb\x94\xb9\x2b\x1a\x31\x34\x6e\xa8\x0b\xf8\x6a\x54\x13\x36\x62\x70\x69\x13\xf4\x63\x80\x5a\xa6\x11\x3b\x09\x29\xc8\x13\x0e\x6e\x37\x96\xc5\xad\xa4\xe3\x57\x27\xd7\xff\xe7\xf5\xf9\xd5\xc9\xd9\x39\x51\x34\x5b\x31\x5f\xa9\xdc\xce\xf2\x19\x54\x95\x1c\xbe\x67\x6f\x42\x3c\x6c\x2f\x07\xdb\xc7\xbf\x36\x37\xbd\x9c\x84\xb3\xdd\x10\xd6\x05\xbf\x19\x71\x23\x2f\xf7\x47\x03\x38\xa4\xc6\x85\xcb\xbc\xa1\x10\x98\x8b\x07\x24\x86\x0d\x2e\xfd\x8b\x2f\x4e\x6e\x8c\xca\xb4\x10\xd6\xaa\xdd\x11\x93\xbd\x60\x6b\xba\xe5\xb2\xac\x00\x6d\xbd\xb1\x72\x34\x75\x07\x03\x9b\xba\x19\xf4\x7d\xd9\x73\xc1\x54\xc2\x45\x87\x5e\xbc\x0b\xde\xe0\x4a\xab\xa7\x7b\xc5\x56\x43\x42\x70\x2f\xeb\xed\x2d\x9a\x14\xb5\x9a\xa3\xab\x32\x01\x9a\xc6\xee\x99\xe2\x51\x91\x50\xaf\x30\x83\x14\xa3\x2a\x80\x08\xc4\x90\xa2\x2f\xce\xc4\x74\x84\x2a\x8b\xa3\xca\x87\xa0\x2a\x3f\x1c\xa6\x96\xd6\x3d\xb5\xf4\x7f\x88\x21\x88\x75\x2d\xef\xe1\x24\x40\xd6\x3b\x1c\xfc\xc9\x9a\x65\xcc\xd5\xb9\x68\xc9\x31\x09\x95\xb4\xe3\x02\xa5\xd2\x69\xb4\x5c\xd9\x12\x77\x8e\xb3\x86\xbe\x91\xd0\x77\x24\x37\x69\x61\x52\xec\x3c\x35\x99\x77\x0b\xbf\xb7\x50\x95\x92\xec\x4f\xc8\xd9\xff\xb9\xda\x95\x37\x06\x06\x48\x98\x9d\xc5\x68\x86\x84\x15\x2a\x93\x62\xaa\x7f\xf5\xce\xd6\x4c\x05\xb3\xfc\x54\x08\xfb\x7c\x93\xaa\xdd\xbe\x84\x14\x5d\xe5\x21\x09\x09\x55\xeb\x81\xb2\xd0\xdc\xf3\x91\x4b\xe4\x16\x3b\x9b\x87\x1d\x72\xb4\x6f\x0a\x01\x35\x8a\xbc\x32\x2d\x46\xfd\x23\xf9\x41\x1f\x6f\x13\xca\x56\x66\x89\x3a\x24\x09\xbf\x63\xe4\xc4\xd1\x30\x26\x74\xc7\xb2\x61\xd1\xa9\x0f\x83\x4a\x26\x37\x4c\xad\x59\x91\x7f\x2d\x5f\x31\x95\xf1\x68\x68\x62\xa1\xc7\xf3\xe0\xa7\x56\xaa\xcd\xc9\xd7\x52\xb3\x76\x60\xad\xda\x60\x13\x3f\xb3\x91\x24\xe8\xb6\x6b\xdd\xe2\xf4\x59\xaa\xfa\x37\x89\x89\xd1\xdf\xbd\x8a\x63\x3d\x44\x0c\x18\x60\x34\x94\x44\xcf\x4b\x13\x1c\x81\x9a\x2c\x73\xd7\xcb\xaa\xf7\x66\x52\x24\x83\x98\x47\x16\x1f\x62\xbb\x00\xb9\x75\x66\x94\x48\x1a\xbf\x77\xde\xb5\x0a\xf8\x0f\x06\x7d\x03\xf0\xd6\xc9\xb6\x01\xbf\x0e\xd8\x1b\xae\x9f\x0b\x6b\x5b\x2b\x93\x8a\xe9\x25\xbd\xbf\x1f\x6b\x6b\x8d\x01\xaf\xd4\x9e\x05\x7e\x23\xf3\x92\xa3\x45\x7b\x9d\x4d\xee\x51\x35\xf5\xa2\x26\xb3\xc1\x66\x99\x36\x42\x85\x8b\x18\x70\x75\xb5\x3a\xf6\x7e\xb7\xc7\x4c\x73\x10\x97\xde\x5a\x9c\xcb\xae\xdb\x48\xa2\x0f\xbe\xc0\xdf\x3c\xfb\x4d\x87\xf0\x11\x60\x76\xaa\x05\xce\x51\x53\xff\xe0\x83\xea\xfd\xbe\x42\x14\xd6\x15\x68\xc4\x12\xad\x1b\x94\xb1\x8d\xdc\x32\x1b\x24\x0d\xd1\xf5\xbd\xa2\xc6\x77\x26\x9d\x10\xe6\x5d\xb3\xf9\x03\xb7\xcc\x78\xa4\x99\x38\x79\x9b\xbe\x74\xcb\x42\x8e\x16\x0b\xc6\x6a\x91\xf7\x96\xde\x4d\x4d\x9a\x63\x94\x23\x6c\x36\x01\x8c\x75\x2b\xc9\x9a\x63\x29\x0b\xc5\x5b\x81\xc1\x9f\xc6\x71\x7d\x5e\x55\x3c\x9b\xcd\x7a\xe6\x24\x2f\x30\x31\xdd\x5a\x8c\xf7\x75\x7a\xcf\x70\x2e\x66\xbd\x76\x32\xc9\xce\xa4\x4d\x30\x23\xec\xbd\x07\x26\x26\x7e\xb0\x81\xed\xaa\xf9\x45\xcd\x73\x57\xff\xbb\xe5\x54\x07\x62\x80\xd7\x22\x80\xae\x48\xaa\xc8\x2b\xc7\x84\xaa\x8c\x8c\xcc\x6a\xa6\xaf\xe9\xff\xcf\xde\xbf\x2e\x37\x8e\x5b\x0d\xa3\xf0\xff\xef\x2a\x10\xf7\x53\xe5\xee\xf7\xb3\xe4\xee\x39\x74\x26\x4e\xa5\x76\x79\x6c\xf7\x8c\x2a\x6e\x5b\xaf\xad\x9e\x49\x2a\xce\xdb\x81\x48\x48\xc2\x36\x05\x30\x24\x28\xb7\x32\xc9\xae\xb9\x8d\x5d\xf5\xe4\xe6\xe6\x4a\x76\x61\x2d\x80\x04\x45\x80\xa4\xdc\xed\xc9\x24\x0f\xf9\x63\xa6\x2d\x82\x38\x2c\x00\xeb\x7c\xb0\xb5\xff\x89\x90\x62\xf4\x37\x96\x79\xf5\xcf\xdc\xd1\xd8\x38\xec\x68\x5e\x37\x0f\xec\x6d\xc7\x29\xe1\x34\x9b\x5d\xf6\x07\xd1\x6c\x76\xe9\x3a\xb6\x8c\x94\x1c\x25\x7c\xc3\x4a\x8f\x50\x90\x7c\x10\x41\x8c\x1e\x02\x29\x73\x0d\x7c\x0c\x14\xeb\x88\x6f\xff\x65\xe8\x43\xb2\xaf\x49\x15\x6e\x66\xf6\xc9\xfc\x28\xcb\xc4\x1f\xfb\x9b\x53\xc9\xca\x6f\x4f\x7c\xbc\x39\x15\x33\x90\x58\xcb\x69\x3b\x1f\xfa\x58\x78\x63\xca\x90\x7e\x60\xc6\xb6\x95\x38\x01\x96\x88\xcc\xda\x5e\x96\x0c\x3d\x52\xa0\xdf\xa0\x95\xad\xaa\xd0\x47\x46\xc4\x26\xf2\x9f\x4c\xf3\x13\xd4\xbe\x78\x53\x14\x45\x52\xe4\x2a\x2b\x7c\x31\x71\x55\xf2\x91\x91\x01\xea\x64\x7a\xfa\xb6\x6e\x5f\x1e\x41\xd7\xfa\x77\xd8\xcc\x5a\x8f\xf6\xf3\xc7\x80\x0e\x9c\x6c\x42\x7a\x0e\x4f\x75\xb1\x2a\xad\x30\x8d\x6d\x7e\x1d\x63\x9a\xc6\x9d\x36\x1a\x18\x7d\xf1\x36\x34\xe3\xd2\xcf\x7b\x38\xe9\xcd\x6f\xea\xd3\xd8\xd1\x74\x40\xed\xd6\xaa\x12\x86\x3b\x86\xff\xe8\x57\xa9\xba\x0d\x43\x53\xe4\xbe\xd0\xda\x8e\xe0\xcc\x35\xf5\x49\x78\xa4\x4f\x5c\xe6\x9a\xfb\xeb\x40\x74\x7e\xda\x12\x8d\x39\xd2\x13\xf2\xfe\xec\xf3\x40\x6d\x8b\xc0\xcc\x79\xcc\x22\x9a\x9d\x46\x11\x4b\x18\xc6\x22\xf4\xe5\xc8\x6e\x83\x9f\x96\xc2\x03\xfb\xa0\xd1\xd5\x1a\x10\x85\x1d\x2a\x80\x4e\xca\x3e\x3e\x5a\x4e\x00\x2f\x82\x1e\xa9\x67\xea\xab\x79\xe7\xfb\xca\x12\x01\x42\x85\x14\xdb\xb5\x2c\x6c\xa6\x41\xeb\x40\xe1\x55\x7b\x22\xb7\xe7\xe6\x66\xce\xf9\xdf\x98\x49\xb3\x54\xaf\x59\x35\x26\x97\x72\x99\x93\x07\x9a\x09\x2e\x96\x9a\xe8\xa8\x22\x13\x7e\xad\xdd\x7c\x8b\x49\x61\x21\x05\xa8\x55\xbb\x3b\x51\x2b\x10\xb7\x4e\x6b\x15\xe2\xca\xe8\xfe\x4d\x91\x08\x96\x51\x0c\x70\xf7\x75\xbe\xa2\x39\xb2\x68\x31\xcf\x23\xb9\x61\x46\xaf\xa2\xbc\x15\x03\x31\xaf\x62\x51\xcf\x34\xe8\xbd\x7e\x8f\xe1\x52\xeb\xfb\x37\x11\x5c\x71\x9a\x84\xd2\x10\xb5\x6d\xa2\xfb\x69\x3d\x49\xa9\xcd\x03\x1b\xeb\x57\x7e\x6e\x75\x21\x4b\x22\xb0\xa6\xf7\x0c\x2b\x1b\xe8\x8e\x77\xdc\x1e\xf6\xa6\x50\xbb\xcb\xeb\xc9\x13\xec\x2e\xcd\x70\x05\xb5\x65\x35\x18\xc2\xb0\x9a\x11\xd7\xe4\xe1\x71\xbe\x7a\xfd\xc5\xa3\x16\x85\x4e\xdd\x82\x26\xe7\x3d\x53\x47\x86\x2a\x02\x7e\x48\x68\x0b\x0a\xea\xfe\xb6\x4f\xd4\x0d\x14\xc8\xf9\xe5\x85\xdd\xc0\xfc\x1f\x13\x32\x0b\x1f\x7e\x77\x35\xd9\xf7\xbb\x07\x9e\xb1\x65\x41\xb3\xb8\x2f\x96\xfc\x7e\xe7\x83\x66\xda\xd9\xb2\x85\x23\x74\x3d\x49\xce\xfe\x72\xee\xa5\x83\xeb\x15\x5d\x77\x33\x7d\xdf\x7b\x3f\xdb\xe1\x32\x40\x85\x6f\x8c\x67\x01\x87\x2d\xdd\xcc\x59\xab\xed\xcc\xbd\x4a\x0f\xcb\xb1\x51\x62\xef\x79\x9b\xca\xa5\x5d\xf2\x5c\x31\x4d\x19\x7a\x69\x83\xbe\xf7\x7e\xb6\x93\x9e\xd9\xbe\x42\xd5\x50\xc8\x42\x34\xdf\x56\x8b\xab\x05\x2c\xbc\xfa\xea\xb3\xfd\xcf\x75\xb9\x9e\x3e\x77\xf3\x7b\xa7\x71\x7d\xee\xfa\x07\x73\x3d\x7d\x90\xf7\xad\xe3\x96\xb1\xd6\x4b\xfa\x31\x8b\xb9\x41\x91\xe0\xa6\x48\xd8\x34\xe3\x52\xd3\xd9\xfe\x8b\xf3\x7c\x5c\x5f\x6c\x6a\x7f\x05\x73\x47\x40\xe9\x61\xce\xe7\x0e\x48\x8c\xac\x02\x52\x58\x4d\x7c\xfd\xcd\xde\x8b\xfd\x10\xf7\xce\x8f\xef\x49\xd0\xf0\x87\xf3\x69\x9d\xb5\xd3\x73\xcd\x0b\xae\x4c\xd9\x14\xc8\x56\xe8\x3f\x80\x65\xde\xb7\x98\x89\x6d\xd3\xed\xeb\x51\x8c\xc5\x87\x38\xdd\x57\x12\xff\xc3\xf9\xf4\xd3\xc6\x33\x42\xae\x8a\x47\x85\x32\x1a\x31\xdb\x4b\x86\x9a\x05\x62\x64\x66\xca\x26\x61\x26\x55\x10\xd1\xfc\x02\xf9\x1f\xce\xa7\x5e\x11\xb4\x11\xef\xb8\xbf\x38\x3e\x14\xd4\xfd\x59\x0b\xea\xa2\x6f\x8d\x31\xbc\x83\xa1\x8f\xb3\xa7\x28\xa9\xfb\x0d\x8c\x73\x85\xe3\xa0\x5d\x13\x5f\x57\x35\x75\x3d\x4d\x9a\x45\x75\xbd\xf3\x35\xfb\x5f\x96\xd5\x6d\x36\x82\xc1\x9e\xaa\xae\xee\x50\x07\x77\xa8\x83\xeb\x6e\xc1\x50\x07\xf7\x29\xeb\xe0\xb6\x95\xa9\x4d\xd3\x64\x7b\x2d\xde\x60\xe5\xaa\x2e\x42\x7d\x5a\x6b\x8d\x5a\x42\x5b\xd4\x05\x7a\x42\x6d\x61\x95\x21\x9d\xdb\x44\xdd\x3e\xda\x87\x9c\x0a\xf4\x64\x63\x1d\xf6\x64\x35\x62\x79\x25\xd5\x4c\xb3\x37\x5d\x33\x3f\x2f\x5b\x3a\xb3\xb6\xc2\x94\x4d\x9d\x0e\x6e\x31\x68\xbc\x2a\xd7\xe1\xe7\x9a\xdc\xa5\x59\x54\xb1\x94\x55\xb5\x09\xa3\xfc\x27\x20\xa1\x1f\xe6\x4e\x45\x32\xa8\x87\x72\xcf\xc5\xd2\xeb\xee\x93\x17\xd1\x8a\xd0\xdc\xa8\x76\x23\x9b\x6a\x1a\x6b\x87\xcd\x32\x9b\x05\xc8\x07\x61\x42\xfd\x19\xd6\xc0\xa8\xa7\x17\x85\xba\x16\x2a\xb6\xce\xd4\xbc\x13\xc3\x64\x7c\x06\x26\x60\x22\x6c\xd1\x94\xd5\xc6\x87\x78\x4d\xcc\x21\x69\xac\x98\x73\x46\x0c\xfb\xb9\xef\xde\x62\x9e\xf7\xee\x4c\xe4\x0c\x83\x0a\xb1\xf0\x0f\x24\x9c\xc6\x04\xf1\x86\x99\xc5\x6c\x97\xe0\x06\x6c\x4b\x3d\x7b\xa1\x64\xbf\xc6\x75\x1b\x0f\xa9\x28\xe3\x8a\x65\x9c\x62\xf6\x21\xc7\x1f\x1a\xd2\x33\x19\xb0\x99\xa3\xbf\x57\x3a\xe9\xda\x1a\xee\x0e\x4e\x89\x96\x50\xdc\x52\xc2\x79\x35\x23\xdf\x54\xbc\xfc\x29\x29\x2b\x2a\x90\xaf\xa5\x5a\x99\x50\x5f\x99\x8d\xe6\x34\x07\xf0\x18\x2d\xe5\xd4\xec\x97\x70\x7f\xc3\xca\x1f\x5e\xd8\x00\x97\xca\x32\x26\x22\x7b\xf2\x46\x4e\x32\x3e\x59\x28\x0c\x9d\xb3\xb1\x58\xa6\x32\x8c\xcc\x20\x95\xa3\xad\xcc\x16\x98\xb0\x88\xcb\x84\xfe\x0e\xe0\x21\xa6\xe6\xee\x4e\xd8\x54\xa5\xe8\x0b\xbe\x0b\x89\x80\xd1\x4c\x6f\xa6\x60\x4b\x98\x9c\x61\x09\x8e\x4c\x38\x8c\x75\x8f\xfe\xe9\xc7\x7f\x5e\x49\x05\x59\x43\x4f\x93\xc4\x38\xb6\xbb\x7d\xfb\xfb\xd5\xdf\x82\xab\x2e\x1c\xa7\x32\x1d\x25\x55\x3c\x87\x64\x85\x18\x31\x68\x16\x62\x2b\x9d\x8e\xc9\xa9\xc9\xe3\x15\x80\x2d\x1c\x4d\x2a\xec\xf1\x34\x3e\xe0\x66\xc9\x1a\x40\xb0\x18\xfd\x87\xa3\x22\xa6\xd8\x79\x18\xaa\x00\x7b\xff\x14\x2d\x06\xa9\xa6\xe8\x2b\x3e\xdd\x23\x93\x26\x0d\x45\xb6\xe3\xd3\x15\x34\x06\xd7\xc0\x56\xa2\x0e\xf6\x52\x47\xe3\xd5\x07\xf5\xca\xed\x3b\x47\x03\x3d\x41\xf5\xb5\x0c\x75\x0b\x82\xbd\x33\x3e\xd1\x34\x5a\xf9\x5d\xf6\x7a\x01\x83\x98\x82\xad\x90\x7c\xf2\xd6\x5c\xbd\x96\xb6\x0d\x24\x70\xb5\xfb\xb1\x71\xda\x96\xa9\xb1\xf7\x2d\x38\x4b\xe2\x60\x24\x44\xf5\x94\x80\xa1\x25\x0a\x70\xb2\xbe\x99\x80\xc7\x5a\x41\x1a\x99\xf1\xa5\x86\x43\xe8\xfe\xdb\x07\xb8\xaf\xe7\xfa\x08\xb1\x6c\x8d\x1f\x10\xaa\x5e\x38\x26\x57\x73\x45\x30\xe7\x71\x02\xa9\x2b\xdb\xbb\x2c\x41\x56\x15\xb8\x30\x64\xd8\xb8\x45\xc3\x41\x6e\xc0\xa6\xbd\x53\x7d\x01\x4a\x28\x6a\xba\x84\x62\x42\x5c\xc6\x7f\xd3\x35\x33\xf1\x0c\x50\x5b\x05\x02\xc7\xdb\x62\x31\xab\xc7\xb1\x2e\xc3\x19\xcb\x98\xcb\x36\xcc\x5d\xbc\x5b\xad\xa8\x1f\x28\x1c\xb6\x03\xb1\xdf\x1b\x99\x91\x9a\x70\x77\x04\x91\xf6\x90\x46\x74\x4f\x88\xf0\xb5\xe6\x02\xf2\xca\x49\xcd\x3d\x64\x36\x67\x36\xe8\xe6\xc1\x65\x0b\x1c\xfd\xdb\x2e\x0f\xf1\x67\xa6\xe3\x0e\x7c\xcb\x9d\x85\x94\xd2\x2b\x56\x5f\x4a\xf0\xa2\xe1\x13\x58\xfe\x5f\x50\x4e\x7d\xfe\xe2\x2f\x4d\x00\xd8\x35\xb6\x77\xbc\x1f\x00\xea\x12\xf6\xad\xdf\x25\xad\x7a\x64\x46\xbe\x95\x79\x59\x2d\xaa\xda\x45\x8f\xa0\x5e\xed\x65\x7b\x9f\xc1\x75\xd6\x57\x81\x6c\x1e\x70\xe2\xfb\x1e\x64\x1a\x65\x32\x07\x4e\xcf\xb9\x8d\x01\x9a\x50\x82\xb1\x13\xb7\x13\x8c\x13\x68\x43\x97\xbb\x91\x17\xcc\x24\x73\xf7\xe2\x3c\x2d\x41\xaa\x8c\x47\x2a\x58\x76\xb2\x7a\x2c\x75\x83\x2d\x34\x82\x89\x0c\xa1\xbc\x12\xab\x75\x1c\x9c\x3a\xca\xab\x02\xf6\x90\x13\x87\x9c\x25\xe8\x2d\xb1\xe4\x1b\x26\xb4\xf4\xa9\x97\xdf\x7a\xce\xc3\x0c\xa2\x33\x6e\x2f\x48\xb7\x06\x4c\x57\x8f\x90\xea\x6a\xbf\x3d\xc1\x0f\xca\xa0\x8b\x3a\x5f\x65\x57\x7c\x15\xc8\xdc\x50\x3d\xb0\x8f\xbf\x38\x58\x84\x2a\x0f\x54\xcf\x2e\x30\xca\x8a\x03\x2d\xd0\x98\x86\xdc\x02\xab\x07\xc1\x41\x6e\x21\x85\x31\x9c\x52\xa8\x77\x66\x13\x7c\xe7\xe8\xe3\x69\x92\xd6\x43\x2e\x93\x2d\x09\x7a\x1b\x56\xcf\x4e\xee\x6c\x55\x4f\xa6\x64\xcb\x59\x19\x66\xc9\xe0\x6a\x2d\x79\x74\x40\x5d\x22\x0d\xb3\x95\xab\xcf\xa6\x36\xe3\xf5\xbb\xf3\x69\x20\x33\xb6\x7d\xfa\xec\x6a\x38\x37\x41\xf5\xf4\xc8\x52\xd0\x6c\xdc\x7d\x50\xba\x33\x17\x54\xcf\xfe\x39\x0c\xaa\xa7\xef\x81\xdc\x9f\x6f\xbc\xaa\x3e\xea\x38\x96\xfd\x18\x05\x73\x32\xc1\xa4\x57\x76\x8c\x58\x18\xcd\x4a\x73\x95\x30\x05\x89\x10\x21\x01\x3b\x8e\xd5\xde\x67\xc9\x10\xb5\x1e\x95\x7e\x7b\x96\xee\x77\x65\xef\x0e\xaa\x1a\x21\x1d\x64\xa5\x8b\x6f\x60\x7d\xc8\x0a\x98\x93\x6c\x98\xe7\x73\x47\xbe\xf0\x16\x8d\xaf\x2f\x0b\x7b\x40\x6e\x32\x27\x26\x39\x96\x9b\x43\xe4\xd8\x6a\x8a\x67\x65\xca\x9b\x0e\xae\xcf\x95\xcb\xcd\xd5\x01\xa3\x15\x42\x39\xb7\x10\x30\x6a\x57\x33\x4c\x07\x8f\xb3\xb0\x89\x53\x34\x73\xd3\x17\x83\x75\x62\x00\x5b\x6a\x7f\x0f\x0c\xd6\xb1\xf6\x0a\xbd\xed\x60\xb0\x3b\xc4\x61\x77\x06\x8b\xdd\x21\x1e\xbb\xd3\x98\xac\x95\xe7\x19\x70\x19\x3c\xbd\x70\x59\xfe\x08\x01\xb8\x5b\xee\x6d\x55\xe1\x55\x8f\x57\xee\x25\xcf\x73\xc6\xac\xee\x0b\x50\x19\xe6\x04\xcd\xb7\x42\xd1\x0f\x2f\x3a\xe5\x91\x56\xb1\xd9\xf0\x90\x21\xb1\xb8\xbd\x6f\xab\xf2\x72\xa4\x66\x99\x35\xa5\x61\x7d\xdd\xae\xa4\x42\x43\xf6\x49\x20\x09\xaa\x03\x04\xe3\x28\x6c\xed\x54\x1d\x54\x01\xc1\xe3\x50\x93\x0e\x59\x95\x25\xf2\xe1\xc5\x51\x7d\xca\x0e\xb0\x11\xaa\xb6\x30\xac\xcd\x4e\xdf\xa1\x0a\x00\x3d\x17\xe8\x2f\x67\x2b\x46\xd4\x83\x84\xb3\x06\x5e\xc8\xf6\x1d\x22\x08\x4d\x84\xb6\x55\x1a\xd6\x8e\xbd\xbb\x16\x76\xf5\xa6\x62\xa5\xa3\x57\x65\x8e\xf4\x7a\x54\x65\x0c\xb3\xed\xbb\x69\xc2\xc3\x4a\x26\x66\x93\x4e\x60\x8b\xee\xee\x2a\x82\xfc\x3b\xc0\x2e\xbf\x5a\xd1\xfc\xf9\x7a\xfb\x3e\xa1\x73\x96\xbc\x00\xbc\x63\x90\x7c\xd7\x75\x36\x15\x5d\xad\xa2\x01\x0e\x19\xce\x0f\x7d\x11\x46\xa5\x79\x3b\xd6\xe3\xf6\x3c\x6f\xa6\x40\x07\xa8\xe8\xcb\x62\x8a\x30\x39\xf2\xd3\x8f\xff\x6d\x27\x0a\xda\x51\xb3\xa0\xde\xc7\x02\x17\x1c\x5c\x6f\x73\x49\x7a\x0e\x7a\x59\xed\xdd\xb6\xaf\xb6\x5c\x50\xfb\x62\xba\x15\x0e\xfa\xd4\xb1\xc5\x82\x45\x26\xb8\xcf\x68\x0a\x12\x40\xab\x26\x62\xaa\x56\xd1\xb6\xc7\xd4\x85\x14\x23\xeb\x19\x8f\xe6\x57\x8c\x7c\x30\x3a\x91\x85\xcc\xd6\x6c\x57\x07\xd1\x52\x2f\xb7\x7a\xe0\x30\x34\x01\x53\x95\xc9\xf8\x14\x02\xbc\x09\x74\x3e\x8d\x22\x59\x88\x7d\xf8\xae\xdb\xfa\x87\x3f\x1b\xff\xb5\x83\x92\xdb\xfb\xf4\x68\x32\x29\x49\x65\x5c\x66\xb7\x01\x66\xae\x44\xcf\x06\x18\x1d\x68\x17\x57\xdc\x7a\xda\x7a\xe9\x92\x09\xa9\x3b\x85\x84\x9f\xba\x3c\x00\x05\x44\x3e\x1a\xdc\xe4\x31\x20\xef\xee\x32\xa4\x40\xf6\x80\xbd\x17\xb4\x49\x05\x71\x8d\x89\x73\xe3\x53\xca\x4b\x4d\xa4\x66\x7e\x3b\x6e\x7e\x3f\xc6\x8e\xec\xa1\x7e\x20\x7d\xb9\x24\xd2\x97\x53\x22\xcd\xfb\xd5\xc9\x2b\xfd\xe7\xee\x74\x4d\x4e\xaa\x34\x6e\x88\xf5\x2d\x3c\xc7\x64\xd2\x21\x75\xe8\xa7\xb2\x2e\x34\x8d\x06\x95\x1c\xa2\x4c\x2e\xf2\xa0\x91\xbd\xfe\x9c\x5e\x9d\x1f\x06\xdc\xb1\xdd\x67\x3f\x6d\x56\xa8\xb4\x5b\xdf\x36\x2b\xa5\xd2\x7e\x46\xb6\x6f\x67\xb3\x69\x65\x44\x0a\x5a\xd6\xf4\xf1\xd0\x4d\xc3\x53\xb7\x8e\x37\x1f\x67\x54\x5b\x33\xb5\x92\xf1\x1e\xb4\xe7\x2d\x7e\xf0\x69\x69\x0e\x2e\x19\x2e\x87\x59\xb7\xe3\x57\xa4\xfb\xc4\x54\xd4\x2c\x50\x84\xb9\xde\x29\xb8\x87\xc7\xd8\x8b\x9d\xed\x73\x36\x5e\x8e\xc9\x37\x17\xb3\x23\x32\x7d\x37\x3b\x22\x4c\x45\xe3\x17\xe4\xad\x29\x11\xd5\x21\x41\x98\x3e\xf4\xa9\xbd\xbe\x39\xd4\x4c\xc4\x12\x5c\x5b\x7e\x59\x1a\xd7\x94\xaa\xd5\x1e\xfb\x78\x38\xd5\xed\x9f\x62\x1b\xbb\x76\xb0\xdb\xc2\xe0\xee\x20\x4c\x73\x5c\x6e\x15\x2e\xd3\xee\x45\xdf\xcd\x20\x84\x8d\x97\x27\x64\x44\xd8\x07\x1a\xa9\x13\x72\xbc\x90\x12\x4a\x3e\x42\xda\x1b\x72\x3c\xa7\x19\xb9\xba\x9e\x5d\x9c\xa0\x4f\x04\x13\x2a\xdb\x92\x75\x17\x71\xb9\xbe\xba\xfc\xa3\xc1\x63\x5b\xc2\x38\xe6\xc3\x26\x7f\x81\x31\xfe\x02\xde\xcb\xe4\x2f\x38\xc4\x5f\xac\xb7\x42\xa0\xb8\x5a\xf5\x40\xd5\x7b\x5a\x8a\xa8\x98\xc9\x5b\x0b\xd4\x5c\xf9\x62\x61\xab\xa7\xcf\x79\xab\x1f\x00\x0d\x5e\x48\xdd\x5a\x4b\xbb\x06\x40\xb7\x09\x5c\x8d\x03\x43\x07\xaa\x9d\x28\x70\x24\x9c\x33\x0b\x04\x23\xfd\x6a\xf6\xfb\xc4\x82\xdc\xd4\xb4\xa5\x6a\x85\xc5\x6c\x4f\xca\x72\xf4\x3d\x84\x35\x3c\x66\x30\x2b\xe8\x2e\x81\x4a\x8f\x76\xfb\xaa\xae\x47\xf8\xd3\xc7\x8d\x80\x7d\xb4\x02\x7b\x0f\x2e\x93\x18\x00\x7c\x5a\x06\x28\x0d\x25\x6c\x7a\x7c\xa7\x7d\x08\x21\xe9\x87\x8c\xba\xbb\xe2\xd1\xba\x27\xbd\x9c\x9c\xbd\x9d\xf6\xb5\x5b\x02\x22\x0a\xcf\xdd\xc5\x50\xd4\x9e\xfa\x08\x66\x8b\x91\xae\x32\x06\xfc\x04\x43\x96\x09\xa2\x83\x55\x33\xf1\x71\xb3\xe3\xd7\x4a\x3d\x9b\xfa\x3a\xa5\x56\x15\x27\xcd\xf3\xca\xd6\xa3\xc7\x69\x93\x23\xc1\x0a\xa4\x1b\x6d\x5e\xb7\x18\x82\x7a\x9d\x44\xbd\xb4\x3d\x68\x3c\x70\x25\x52\xb8\x50\x02\xa0\x44\x90\x7a\x8c\x4c\x16\x4e\x1d\xe9\x6e\xf2\x30\xd3\x00\x46\xf7\x65\xf0\x99\x82\x34\x27\xb5\x52\xc3\x65\x86\x13\x4a\x14\x8b\x56\x82\x47\xd4\x5b\x3c\xa7\x7a\x40\xa0\x47\xa5\x15\x5f\xa7\x32\xaf\x1c\x4b\x31\x3b\x3c\xa4\x70\x28\x73\x27\x2e\x78\xc6\x1e\x68\xe2\xcf\x02\x57\x3d\x88\x2f\x8c\x42\x01\x33\x30\x4a\xc2\x44\x55\x6d\x16\xbc\x47\xba\x2f\x47\xa7\xee\x19\x9a\x7d\xfc\x76\xe8\x6e\xc6\xc4\x8d\x9f\xee\x52\xdd\x96\x09\x61\xbf\x42\xb7\x43\x58\x21\xf4\x75\x11\xad\x24\xb9\x41\x92\x4d\x9e\xf3\x31\x1b\x93\x94\x8b\x65\xde\xae\xbb\xed\xb5\xde\x1e\xe8\x20\xf5\x47\x26\x04\x00\x32\x99\xda\x08\x85\x8f\x76\x68\xa8\x09\x66\xc8\x8d\xbb\x50\x9e\x5a\x8d\x6e\x10\x0a\x3d\x20\x10\xf0\x31\x0f\x2c\xce\xe6\x76\x75\x3c\xcd\xaa\xac\x14\x4e\x9e\x8e\xb2\x3c\x43\xfb\xe2\x3e\x0a\x6d\x34\x43\x7e\x02\xed\xca\x19\x4e\xfb\xd2\xc5\xbe\x84\xa9\xee\x22\x5f\xcd\xc7\xc4\x46\xa0\xb6\xf9\x9e\x99\x18\x43\x92\x52\x9e\x85\x13\x1a\x57\x8f\x16\x6a\x4d\x59\x15\x17\xa6\x74\x2e\x0b\xd5\x83\x94\x7c\x2a\xb9\x51\x48\xa5\x6f\x5f\xbf\x93\x71\x85\x8d\x3b\x2c\xd1\xd0\xa4\xdd\x23\x64\x20\x19\x03\xc9\xf8\x77\x27\x19\x42\x2a\xcb\x5a\x05\xc1\xd2\x6e\x2f\xee\x69\x29\xee\x67\x23\x6e\xb8\x32\x59\xb6\xaf\xc3\x9b\xc9\x34\x0b\x03\xac\xe3\x26\xf7\x30\x4a\x3f\xce\x1c\x9d\xfe\x52\x81\x7b\x77\xe0\xc2\xf6\x13\x52\xff\x86\x5a\x16\x22\x01\x5c\x5e\xc0\xc2\x64\x0c\xa7\x9e\x67\x6d\xae\x39\xc6\xaf\xcc\xec\xf3\x05\xf8\xbf\xdf\x40\xf0\x86\x0d\x45\x40\xdf\x99\xe7\x73\x16\xd1\x22\x37\xde\x1c\x1d\x8e\xc1\xe5\x14\x23\x96\x41\x1f\xa5\x47\xc8\x0b\x34\x27\xda\x64\x77\x35\xff\x96\x2e\x22\x8b\x8e\x2f\x27\xae\xef\xc6\x91\xeb\xb9\x81\x7f\x80\xb4\x52\xfb\x6b\xf3\xba\xfa\xfb\xf6\x6c\x86\x6f\xc3\xc3\x98\x1e\x2f\xb9\x62\xd6\x3d\x84\x0a\x7b\x40\xac\x49\x01\xb3\x80\xbf\x1a\x7d\xf6\xe5\x97\x2d\x36\xb6\xa7\x3b\xf6\x79\x28\xed\x1a\x3e\x75\x33\x41\x99\x76\xad\x47\xa8\x44\xa0\xf2\x8d\x3b\xea\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x57\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x11\x5a\xc9\x80\xcb\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x3e\x43\x94\xc4\x10\x25\x51\x3e\x43\x94\xc4\x10\x25\xf1\xf4\x51\x12\x2d\xb5\x60\xb4\x8c\x81\xf9\xce\x7c\xef\xda\x3b\x6e\x39\xe5\x26\x3b\xde\x23\xd2\x1c\x9a\x2f\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x30\x8c\x1a\x87\x3c\x87\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\x7e\xf5\x0c\x16\x7c\xe7\x19\x2c\xf8\x83\x05\xdf\x3c\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\xe0\xb2\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x6f\x3e\x83\x05\x7f\xf7\x19\x2c\xf8\x83\x05\x7f\xf7\x19\x2c\xf8\x83\x05\xbf\x7c\x06\x0b\xfe\x60\xc1\x1f\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\xb0\xcf\x08\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\x48\x5a\x35\x24\xad\x1a\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x6d\xf3\x1f\xf2\x1c\x0e\x24\x63\x20\x19\x43\x9e\xc3\x21\xcf\xe1\xce\x33\xe4\x39\x1c\xf2\x1c\xee\x3c\x43\x9e\xc3\xb0\x10\x39\xe4\x39\x1c\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x5a\x56\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x11\x5a\xc9\x80\xcb\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x3e\x43\x94\xc4\x10\x25\x51\x3e\x43\x94\xc4\x10\x25\xf1\x9f\x98\xe7\xb0\x8f\x2d\xac\x89\xb9\xba\xed\x5f\x0b\x34\x5d\x56\xbc\xa6\x6f\xd6\x45\xee\x6a\xf3\xcd\xa1\xc3\x64\x81\x52\xd4\xb4\xdc\x81\x25\xf9\x77\x05\x12\x32\x76\xad\xe3\x5a\x37\x6a\xb9\x97\x95\xc7\xb7\xb2\x39\x1e\x03\xcc\x3c\xfa\xb7\x60\xd6\x3c\x10\x5b\x74\xa7\xa0\xe7\x8f\xc7\x28\xc9\x94\x7a\x98\x15\x5f\x6a\xb6\xf0\xee\x00\xfa\xbb\x3b\x80\x03\x6c\xda\xfa\xba\xa6\x0b\xcd\xd2\x28\x40\x99\xd0\x41\x22\x1f\x58\x86\xb3\x41\x8f\x21\x67\x72\x39\x91\x6b\xae\x14\x8b\x8f\xb4\x44\x8e\xee\xe6\xbe\x4e\x23\x29\x72\x8e\x29\x2b\x51\xe2\xbe\x3b\xe0\x62\xc1\x05\x57\xec\xee\x80\x8c\x08\x78\xa9\x38\xcb\xb1\x22\x8e\x99\x27\x49\x68\xae\xc6\xa4\x5c\x99\x17\x24\x7a\xae\x3c\x66\x42\xf1\x88\x26\x66\x82\xbb\xfd\x70\x41\x68\x92\xae\xa8\x28\xd6\x2c\x73\xda\xc1\x01\xf0\xf5\x6a\xcc\x82\x46\x38\x44\x53\xac\x57\xb1\x89\x87\x43\x14\xeb\x79\x53\x6e\x4f\x33\x76\x7e\x75\x3a\xeb\x3a\x1e\x53\x6c\x46\xb8\x88\x79\x84\x32\x49\xe9\x1a\xbd\xb2\x69\x28\x81\x7a\xf1\xdc\x02\x6a\xce\x16\xd2\x8f\x78\xa8\xd8\x12\xdd\x5d\x70\xae\x73\x29\x13\xd6\xcc\xaa\xd9\x42\x75\x76\xa4\xf2\x99\x2b\xe1\xe1\xa9\x76\xe4\x3c\x7b\xd1\x52\x1e\xdd\xe3\x7f\x64\xe1\x45\x40\x7a\x6d\x3b\x1c\xbb\x73\x12\x8c\x23\xb7\xb3\x87\x4a\x1a\x05\x53\x8b\xdc\x51\xcd\x23\x27\x0b\x99\x24\xf2\x01\xa1\x86\xc2\x67\x29\x8e\x21\x5d\xf8\x1d\xca\x26\x78\xb1\xdf\x27\x5c\xb1\x8c\x26\xfa\x17\x5f\xcf\x77\x77\x64\x84\x81\x0c\xfa\x54\xaf\x53\x9a\xf1\x5c\x8a\x23\x02\x91\x4c\x56\xa8\xb0\x5d\x2e\xa4\x24\x73\x9a\x81\xa0\x53\x0e\xf7\xab\x3d\x87\xab\xc6\xd3\x22\x11\xfb\x6b\x41\x93\xdf\xa2\xe7\x9d\x25\x74\x7c\x61\x28\x1c\xcf\xa1\x8d\x55\xda\x95\x43\xfa\x91\xc8\x0f\x30\x0f\x5a\x79\x8b\xcc\xab\x7f\x46\xf8\xcf\xf1\x78\x4c\xfe\xe1\xcc\x40\x65\x05\xb3\x2e\xf4\xa5\x07\x1a\x8e\xf1\x07\xe2\xf7\x79\x35\xda\xca\x8e\xa1\xaa\xb9\xea\x05\x70\xd1\x63\x72\xbe\xc1\xf6\x9c\x2f\x0c\xd6\x36\x41\xff\x96\x38\x73\xd6\x02\x2d\xf4\xf7\x5e\x93\x8e\x17\xd5\xd0\xb3\x72\x64\xaa\xaa\xdd\x71\x76\xe6\x57\x70\x48\xbd\x44\xd7\x74\x51\x6a\x36\xe4\x02\xda\x82\x68\x0b\xff\x2f\x5e\xbe\xfc\xec\x35\xfe\x17\xdf\x94\xdf\xdc\xae\x64\xa6\x46\x11\xcf\xa2\x82\x2b\x60\x5c\xcc\x47\xbe\x81\xfe\xfe\xf7\xd6\xaf\x41\x05\xaa\x9e\x63\x9b\x17\x65\xa3\x94\x66\x4c\x60\xb2\xdb\x65\x26\x8b\x54\x73\x6b\x77\x77\x8a\x26\xc9\x73\xaf\x2a\xdb\x64\x5f\x45\xe7\x84\x12\x5f\xd8\xde\xec\x19\xa6\x49\xe2\x48\xa8\x70\x41\x2f\xf1\x3c\x20\x0b\x16\x40\x72\xfa\x6a\x23\x9e\xb1\xfe\x5b\x2e\x7e\xcf\x8f\xc8\xe8\x88\xbc\x07\x38\x1c\x8f\xc9\x2d\x5c\x39\x62\xae\x5c\xb0\xd3\xb5\xcc\x18\x49\x35\x73\x9a\xe7\x7c\xc3\xc8\x1c\x7d\x8f\xb7\x56\x33\x62\x74\x56\x84\xe5\x11\x4d\x19\x89\x56\x34\xa3\x91\x62\x99\x99\xf6\x05\x3a\x70\x7a\x2f\xc3\x73\xa0\x52\x6b\x1a\xb3\x51\x91\xe2\xb1\xc8\x5f\x94\xe8\x08\x42\x5e\x0c\xea\x78\x60\x73\xcd\xfd\x32\x83\x3c\xdc\x1d\x8f\x59\x9a\xc8\xed\x9a\x09\x2f\x3a\x35\xdf\xa7\x99\x8c\xed\x21\x85\x7e\xf5\x9d\x02\x9c\x94\x49\xa1\x98\x88\x9d\xa3\x4e\xa3\x7b\xf3\xc3\x3f\x74\xf3\xaa\x7f\xf2\xab\xdf\x85\x6e\x40\xcc\x36\xb6\xfb\x5f\x91\x9d\x5b\xe0\x43\x65\x6d\xcc\x53\x5d\x97\xd0\x97\x2b\xbc\xf5\x7e\xf5\x64\xac\xa1\x99\xa4\x15\x35\xf6\x65\x10\x41\x5f\xd9\x83\xa6\x82\x5a\xb3\xe2\x00\x1e\x56\x10\x46\x59\xa3\xf9\x8e\x43\x87\x49\x34\xed\xc5\x53\xfa\xde\x49\x93\x69\xfa\xc8\xfc\xa5\x85\x9a\x31\x41\xf7\x29\xa0\x26\x1f\x52\xcd\x51\xa9\x64\xeb\xc8\x34\xcf\x21\x4b\xb6\xd7\x2f\xce\xc1\xa3\x82\x44\x19\x33\x7e\xdb\xb9\xb9\xdd\x32\x23\x82\x27\x2f\x8e\xac\xe7\x75\xcc\x16\xb4\x48\x54\x4e\x70\x59\x1a\x74\x59\x1c\x90\x69\x94\x24\x0f\x1a\x57\x4e\x4c\x2e\x73\x3d\x89\x0b\x27\xad\x39\xf0\xad\x16\x7f\x96\x29\xa3\xc1\x61\x88\x84\x02\x38\xcd\xf8\x84\xe7\x78\xc7\x46\xe4\x4f\x86\x95\xd3\x13\xb2\x23\xfd\xf9\xc8\x90\x08\xcd\x18\x83\xe6\xb1\x36\xb0\xf7\x1e\x73\x11\x25\x45\x6c\x55\xf3\x11\xd5\xcc\x32\x74\x50\x75\x43\x90\x48\x0b\x59\x2e\x09\xba\x7b\xa1\x67\xe2\x97\xb5\xdc\xc9\x5d\xf8\xe7\x56\x83\x88\x46\x4c\x55\xf7\x5e\xe1\x0e\xda\x05\x97\x7e\xd4\x39\xa0\xaf\x53\x90\x8c\x43\xdb\x84\x38\xf0\x7b\x23\x16\x3b\xe2\x49\xc6\xa8\xbe\x4d\xd1\x3d\xa1\x4b\xca\x85\xf7\xc8\xe2\x31\x41\x75\x6a\xf2\x40\xb7\x79\xc3\x69\x16\xed\x9c\x47\x44\xb0\x0d\xcb\x6a\xa7\xce\xab\xd5\xec\x99\x8d\xbe\x82\x02\x61\x40\x3a\x4a\x8b\x40\x2a\xf3\x9c\xcf\x13\x3b\x70\xe5\xc8\xa1\x3f\xb8\x4d\x59\xe4\x17\xbb\x71\x21\x61\xd7\x96\x76\x01\x3f\x28\x3b\xfb\x45\xee\xe6\xaf\x40\x39\x62\xd7\x60\x97\x2b\x99\xd1\x25\xb3\x3f\xe5\x8a\xaa\x02\x01\x83\x7a\x6b\x16\x5f\x39\x1a\xc5\x7b\x2e\x62\x8d\x8d\x2c\x48\xd3\xa4\xc8\x68\x52\xfd\x12\x49\x81\x26\xa4\xfc\x84\xfc\xe9\xcf\xfa\x17\xdd\x3f\x8b\x4d\xfc\x97\xf9\x75\x34\x1a\x99\xff\xd0\x94\xdb\x48\x32\x42\x53\xce\x3e\x28\x26\xa0\xe1\xf8\xfe\xab\x7c\xcc\xe5\xf1\xe6\xd5\x9d\xc0\x41\xcf\x8a\x5c\xc9\xf5\x0d\x43\x95\xf8\x39\x03\x21\x11\x10\x76\x2d\x5e\xab\x19\x02\x55\x6a\xba\xb3\xd1\x92\x89\xf1\x7d\x31\x67\xf3\x82\x27\x5a\x6a\xd5\x03\xd8\xe1\x9f\xc7\x6c\xc3\x12\x60\x54\x2c\xfe\x9a\xf1\x35\xcb\x15\x5d\xa7\x5a\x7e\x4b\xc0\xe9\x5f\x93\xb1\x13\x82\x2e\x85\x02\x7d\xf3\x72\xa6\xf2\x71\x94\xc5\xe3\x34\x93\x1a\xd2\x11\xa0\xb8\xb1\xcc\x96\x77\x42\xe3\x4e\x98\x06\x30\x44\x27\x24\xd0\xac\xae\xb6\xc5\xf5\xfa\xdd\x08\x13\x9e\xab\xdf\x7b\xdf\x5f\xf2\x5c\xd5\x37\xa5\x31\x4b\xb3\xe3\x5c\x2c\x8b\x84\x66\xcd\x06\xb0\x5f\x91\xd4\x87\xe6\x2c\x29\x72\x85\x02\xeb\xc6\xee\x9d\xfe\x63\x64\x20\xa0\xf7\x05\x3a\x8b\x56\x6c\x5d\x45\xca\xc9\x94\x89\xd3\xe9\xe4\xbb\xcf\x6f\xeb\xbf\xef\x5c\xab\xdd\xb9\xd7\xfd\x8f\xc1\xd4\x46\xb3\x39\x57\x19\xcd\xb6\x64\x32\x25\x79\x31\x1f\xd9\x69\x1e\x9f\x4d\xce\x6f\x6a\x38\x0d\x55\x24\x2b\x8d\x05\x91\x71\x02\xf1\x18\x64\x3b\x44\x73\x4a\x62\x28\x8c\xb1\x6b\xae\xc9\x86\x53\xc7\xc3\x04\x6d\x87\xf8\xa9\xdb\xaf\x5c\x34\x27\x6a\x0d\x50\xa5\x3e\xc8\xbd\xc6\x01\x25\xbd\x73\xc8\xeb\xb7\xb6\x1e\xdf\xaf\xe1\x66\x0c\xad\xe8\x7b\x8c\x88\xc6\x80\x9f\xc5\x06\xd6\x88\x69\x00\x6f\x1a\xa2\x47\x7d\x8a\x38\x0d\x42\x61\xee\xfe\x18\x58\x22\x96\xe5\x56\x68\x8e\xa4\xd8\xb0\x4c\x91\x8c\x45\x72\x29\xf8\xdf\xca\xce\x73\x6b\xfa\x85\xb2\x1b\x0d\x36\x92\x0b\xc5\x32\xcd\x3c\x01\xd2\x3b\x02\x1c\xbf\xa6\x5b\x92\x31\x3d\x0c\x29\x84\xd3\xa1\x75\x3c\x79\xab\x99\x66\x2e\x16\xf2\x04\xb2\xae\xe4\x27\xc7\xc7\x4b\xae\xec\xfd\x8e\xe4\x7a\x5d\x08\xae\xb6\xc7\x70\x4d\xf9\xbc\xd0\x5b\x72\x0c\x77\xf1\x38\xe7\xcb\x11\xcd\xa2\x15\x57\x2c\x52\x45\xc6\x8e\x69\xca\x47\x30\x77\x01\x17\x7c\xbc\x8e\x9f\x65\x06\x21\xe4\x87\x3e\x8c\xd8\x44\xa4\x70\xb9\xda\xb6\x41\xdf\x2e\x13\xac\x88\x52\x01\xb2\x35\x25\xb4\x2d\x69\xbf\xb9\xb8\x9d\x11\x3b\xba\x37\xb0\x13\x81\x5f\x7d\x99\x57\xfb\xa0\x81\xc6\xc5\xc2\xf2\x6f\xa0\xf9\x76\xd5\x1d\xc8\x3c\x24\xdc\xc3\xca\xe7\xc5\x7c\xcd\x55\xee\xa4\xeb\x90\x63\x72\x06\x68\x4f\x13\xc5\x22\x8d\xa9\x62\xf1\x98\x4c\x04\x39\xa3\x6b\x96\x9c\xd1\x9c\x3d\xf9\x2e\x00\x13\x3b\xd2\xb0\xed\xbb\x0f\x81\x20\xdb\x90\xee\xb8\x44\xa4\x81\x6d\xdb\xbd\xa8\x9a\x02\xd7\x23\x3d\x6c\x60\x50\x15\x8c\x4b\x49\xd8\x49\xdb\x6e\xec\x0e\x91\x6e\x31\xc3\x05\x1c\x97\x1b\x15\x7a\xac\x6f\xd5\x64\x4a\x2c\x4a\x43\x0c\x36\x67\x89\xd4\x67\x4b\x1a\x8d\x14\xf3\x59\xa1\xc2\x7c\xcb\xc0\x39\xfc\x3b\x70\x0e\x2b\x99\x57\x5e\x08\x4f\xc0\x35\xb8\xb1\x04\xbb\x1c\x83\xfb\xae\xc9\x2d\xd4\x66\xb6\xcb\x29\xb8\x2f\x9f\x92\x4b\x18\x28\xe8\x40\x41\xdd\x2d\x18\x28\xe8\xcf\x46\x41\x5d\xec\xd0\x8f\x7a\x36\x71\x4d\xf5\xec\x4f\x3f\xd9\x87\x14\x02\xde\x26\xd3\x3e\xda\x30\xbd\xd3\xe6\x83\x7a\x5c\xcd\xf3\xc9\x74\xf3\x05\x5c\xab\xc9\x74\xf3\xfa\x85\x95\xcb\xed\xb1\xf0\x0a\xdd\x13\x54\xf2\x4f\xf4\xdd\x5c\xd0\x88\x81\x2d\xef\xee\xee\x60\xc7\x6c\x52\x6a\xaf\x40\x0f\x91\x48\x79\x6f\xd5\x87\xdc\x7e\xe9\xd5\x1a\x5b\x67\x20\x27\xde\x67\x32\xad\xb9\x9b\x60\x1d\x3b\x30\xe8\x19\xbd\x08\x20\x11\xaa\xc6\xe0\xbe\xe9\xa5\xf7\x77\x77\x0a\x94\x29\x45\xde\xf0\x03\xdd\x09\x6a\x85\x50\xa3\xb2\x14\xa0\xcc\x8c\xea\xcf\xd7\xe9\x6e\x59\xbc\xbb\x3b\xdd\x9f\xa9\x87\x57\xae\xdf\x20\xbf\xbc\x3e\x2a\x17\xfe\x90\xd9\x52\xa4\x73\xf7\x69\x0c\x31\x6e\x9a\xac\xd4\xfc\xf2\xd0\x9f\xf2\xa2\x3a\x0a\xa8\x2a\xf1\x75\xcb\x73\xd4\xcb\x62\x5a\x15\xaa\x48\x5a\x64\xa9\xd4\x37\xf5\xf9\x64\x61\x72\x13\xae\x58\xb5\x35\x7a\x1c\xeb\xe9\xd3\x9e\xda\xc2\xea\x28\x25\xc3\xed\x4f\x18\xcd\x44\xb9\x6d\x66\x07\xab\x7e\xf5\x04\x8a\x1c\xf4\xe8\x41\x1f\xf3\xbb\x3b\x65\xb7\x63\xec\xd5\x82\x7f\x72\xbe\x8e\x54\x33\xd4\xc7\xb9\xfb\x4a\x5d\x60\x2e\x38\x7d\xee\xff\x17\x9a\x00\x8c\x7d\x06\x80\x56\x8f\xad\xbf\xe4\xa2\xf8\xd0\x7e\xea\x4b\x0b\x75\x79\xa0\x7f\x0b\x47\x6f\x9d\xaa\xed\x98\x54\xc3\xb8\x46\x6d\xb4\xf0\xf2\xbc\x15\xb3\xe8\x67\x29\x37\x2c\x13\x68\x1b\x2a\xdd\x8d\xe4\x91\xf1\x76\xd5\xd3\xce\x64\xb1\x44\x3f\x08\xab\xea\x35\xcc\x76\x25\xb9\x7b\x55\xe3\xb8\xb9\x70\x2e\x75\xc3\x32\xe5\x88\x9e\xea\x95\x8c\x11\x2d\xc0\x99\xfc\x2d\x61\x7a\xfd\x78\xb1\x63\x7d\x48\x36\x78\x11\xfd\xb1\xd6\x55\x68\xeb\x06\xea\x56\x6e\x2b\xf0\x1d\x11\x57\x69\x2c\x73\xf4\xda\x3d\x56\x12\x3c\x41\xf5\x5c\xac\xf2\xc3\xef\x8a\x90\xc8\x88\x26\x65\x08\xa7\x51\xb4\x4e\x16\xa4\x86\xcf\x2c\x2e\x73\xf6\xb7\x17\xa8\xe1\x22\x59\x78\xd7\x5c\xbb\x60\xf9\x80\x4f\xf4\xda\x0d\xaf\x05\x90\x73\xc0\xef\x45\x32\xf6\x18\x55\x77\xa8\x84\x75\x6d\xce\x70\x04\x47\xe4\x41\xa3\xb9\x3a\x72\xf6\xe3\x03\xd4\xfa\x8e\x6a\xdb\xef\x19\xac\x8c\xba\xa9\x14\xc8\xfa\x66\x7b\x3b\x15\x2e\x32\x82\x7c\x90\x19\x38\x56\x1c\x79\x66\x55\x4e\xe1\x88\x50\xc0\x1a\x4d\xf6\x8f\x18\xbb\xb7\x4b\xbb\xca\xba\x94\x55\xae\x1c\x0c\x1c\xd0\x32\x4d\x86\x59\xa4\xcc\x28\x39\x79\x9e\x17\x7e\x0c\x43\x73\xf2\xd3\x8f\xff\xcd\xd4\xea\xe5\x4f\x3f\xfe\xf3\x85\xf1\x79\x07\x73\x24\x8b\x89\x9e\xf5\x6f\x09\x57\x84\xe7\xe2\x50\x55\xba\xeb\x6e\x3a\x4e\xf0\x2a\xa7\x99\xd4\xbc\x8b\x73\x00\x10\xc2\x0e\x4e\xa8\x9f\xc2\x6a\xce\x5e\x8a\x6b\x03\x13\x4e\x70\xa5\x10\x07\x04\xbc\x0f\xc6\x0a\xa1\x35\x4b\xf3\x5b\xeb\x34\x61\x6b\x7d\xd2\x10\xd1\x57\x68\xc3\x9d\x74\xfe\x5b\xff\xde\x71\xc5\x69\x92\x6c\xc9\xff\xad\x21\x9c\x66\x6c\x04\x5e\x34\xa5\x6d\x68\xaa\xb7\x88\x99\x9c\x9d\x25\xd2\x8f\x8a\x75\x48\x22\xd0\x8f\xad\x19\x8a\xec\xbd\xa9\x4d\x2a\x85\xd7\xc8\xd0\x86\xba\x85\x3f\x5d\x53\x43\x5d\xa0\xdb\x19\x0f\x55\x70\x61\x5a\x6c\x2d\xb9\x37\x33\x86\x06\x5c\x8b\xdf\xc2\x0b\xec\xb6\x49\x84\x22\xe3\x76\x6c\x20\x9a\xd4\xd7\xb8\x41\x4b\xaf\x0f\x73\x73\x73\x4d\xd0\x96\x4d\xe0\xe9\xf5\x5f\x9d\xb3\xaa\x74\x2e\x38\x5c\x95\xcc\x86\xd9\x70\x34\x13\xed\x43\x1b\x3b\xbd\xa2\x85\x9f\xf4\x75\x43\xa6\x82\x4f\xc7\xe7\xad\x11\x59\xbf\xa4\xa4\x3c\x4f\x95\x83\xa5\xc3\x4d\x54\x04\xd0\xf5\x08\x80\x1b\x78\xd3\x92\x65\xe9\xd1\xce\xa5\xa9\x29\xea\xdc\x75\xdc\x4f\xab\xe8\x47\xbc\x70\x1c\xa8\xdc\xa2\x51\x1e\xda\x4c\x22\x9c\xbd\xae\xf2\x88\xd6\x84\xb6\x94\x40\x4c\x1d\x67\xd3\x49\xe5\x9f\x69\x05\x02\x74\x3c\x0c\x75\x8a\x2e\xc5\x69\xca\x68\x56\xba\xfc\x81\xc7\x3a\x29\xe7\x55\x59\xc5\x6d\xcf\xd6\x75\x93\xed\x94\xc1\x6e\x15\x01\xd2\x50\xd2\x8d\x41\x07\xf9\xef\xad\x83\xe4\x29\x5d\xcf\x13\x19\xdd\x3f\x85\x02\x72\x32\x3d\x7d\xfb\xb5\xee\x7c\x57\xfb\x58\xbe\x68\xaa\x1e\xab\x09\xed\xea\x1d\xcb\x37\x83\xd2\x71\x50\x3a\x0e\x4a\xc7\xff\x38\xa5\x63\x89\x14\x7a\x69\x1c\xc5\x2e\x76\xa9\x9e\xfd\xf5\x8d\x5a\x90\xd1\xb0\xf3\x10\xb2\x36\x32\x46\x13\x2d\xe8\x84\x52\xec\x76\x91\xc6\x16\x4e\xee\x19\x99\x5d\x9f\x5f\x9f\x60\xa2\x06\x8d\xb0\xe9\x1c\xd9\x83\x35\x15\x05\x88\x31\x34\x8e\x81\x4b\x18\x93\xef\x99\x45\x09\x78\x6e\x76\xa8\x84\xbf\x7b\x25\xc9\x8a\x8a\x38\x61\xe4\x4f\x7f\xfe\x5f\xfa\xb0\x22\x70\x92\xad\x09\xb9\xf6\x0a\x6a\x76\x22\x21\xfe\xaf\x85\xe1\xa2\x0a\x8f\xa4\x97\xe5\xfa\x08\x9e\x1e\x17\xf1\x9e\xfb\x39\x4e\xd2\x8b\xb1\xcf\x99\xa6\xf5\x34\xf3\xed\xbe\x99\xfd\x7e\x29\x92\xfb\x70\xe0\x5d\x01\x57\x8f\x66\x6d\x23\x1e\xfb\x9c\x62\xdb\xe6\x14\xb3\x84\x29\x2f\xd3\xde\x1e\x03\x02\xe1\x81\xa7\x5d\x57\x27\xf0\x75\x21\xcc\xed\xf1\x0e\xfc\xe8\xbb\x13\x84\x4c\x40\x34\x19\xb9\x97\xb8\xf1\xaa\x3c\xb5\xbb\x6f\x34\x94\x77\x7f\x33\x60\xdc\xfd\xb9\x0e\xa6\xdd\xb7\x0e\x18\x06\x3e\xf8\x5f\xcc\x07\x47\x52\x2c\xf8\xf2\xa9\x18\xe1\x33\xe8\xdd\xc7\x09\xe3\x1b\x3f\x2b\x6c\xe6\xe4\xe3\x85\xa3\xb2\xc3\x81\x19\x1e\x98\xe1\xe0\x36\x0c\xcc\xf0\xbf\x2b\x33\x8c\x78\x61\x0f\x6e\xd8\x45\x31\xd5\xf3\x08\x76\xb8\x50\xf2\xd4\x90\x25\xe0\xb0\x7d\xa4\xf8\xc9\x78\x83\x30\xa5\x6e\x4c\x6b\x1f\x5a\x3b\x10\xd4\x9f\x9d\xa0\x22\x77\xfe\x54\x04\xf5\x5b\xe8\xdd\x47\x50\xf1\x8d\x9f\xa0\x9a\x39\xf9\x08\xea\xaa\xec\x70\x20\xa8\x03\x41\x0d\x6e\xc3\x40\x50\xff\x5d\x09\x2a\xe2\x85\x3d\x08\xaa\x8b\x62\xaa\x67\x7f\x82\x0a\x6a\x6b\x0f\x15\xec\xad\x58\xe8\x25\xf5\xfa\xb5\x05\x88\xd5\x26\xe7\x7b\x29\x05\x82\x34\x78\xde\x54\xb8\x8d\xca\x21\x06\x82\xfb\x2f\x25\xb8\xa9\x94\xc9\xd3\x10\xdb\xa9\xb4\x06\x58\x97\xd0\xea\x5f\x7d\x44\x16\xe6\xd1\x24\xb0\xa9\xe9\x64\x20\xae\x03\x71\x0d\x6e\xc3\x40\x5c\xff\x3d\x89\xab\xc6\x05\xbd\x09\xab\x6e\xfc\x58\x2a\x7a\xcb\xff\xd6\xcb\x57\x0a\x1a\x93\x9c\xff\x0d\xb2\xd2\x15\x39\x3a\xb8\x55\x6e\xc7\x84\xe6\x39\x5f\x8a\xb5\x3e\x19\xc1\x5c\x8f\x26\xa1\x82\x4c\xc6\xe4\xdc\x66\x29\x50\x92\x7c\xf6\xda\x74\x66\xbc\xcb\x5f\xbd\xfa\xcc\xfe\xf0\x3a\xe8\x75\x15\x20\xde\x01\x7d\x7d\x63\x3d\x7a\x16\xe4\x6c\x72\x7e\xb3\xa7\x5b\x57\xcc\x73\x3a\x4f\xbc\x4a\xf6\xda\x18\xe0\x3f\x6e\x1b\x43\xfe\xd2\xac\xa8\xbc\xbc\x35\x33\x84\xae\xee\xfa\xa0\x23\xe8\x2a\x07\x6e\x1f\xe8\xcc\xa5\xb2\xf0\xdb\x53\x7f\xc0\x53\xee\xab\x31\x5c\xc7\x15\xe7\xfa\x6a\xa3\x05\xc1\x5c\x64\x5b\xa6\x17\x1c\x55\x4b\x8f\xf0\xd3\xe9\x64\xf3\x0a\xb2\x0a\x3c\xd0\x2c\xf6\xce\x16\x92\x34\x29\x3e\xe7\x09\x57\x5b\x8d\x28\x94\xc1\x34\x6e\xaf\xb0\x74\xcc\x25\x73\x54\x7f\xe5\x05\x00\xba\xc1\x23\xc6\xc6\x0a\xea\xc9\xd6\x57\x07\xbc\xc3\xc8\xc5\x44\x68\xff\xfc\x7b\x68\xda\x57\x5b\xa8\x61\x49\x54\x21\x04\x4b\xf4\x9a\x6c\xb6\xb3\x22\xe0\xf3\x43\xd0\xcb\x33\x66\x09\xdf\xb0\xac\x4a\xb9\xab\x7f\x2a\xd3\xd1\x3b\x95\x9a\xc2\x3b\x4c\xba\x76\x99\x40\x1e\x9d\x60\xa9\xca\xc6\x1d\x98\x4c\x27\x53\xf8\xc0\x54\x76\x26\x11\x15\x4e\xf2\x87\xbb\x03\xcc\x07\x61\xcb\x4b\x40\x5d\x9a\x11\x16\x52\xb9\x3b\x18\x13\x72\x1a\x5a\xef\xda\x54\x8f\x76\x7a\x30\xf9\x25\x72\xc4\x1d\x30\x72\x05\x43\xbd\xb7\x99\x2c\xf0\x8c\x04\x6b\x83\x39\xf0\xaa\xc7\xa5\x34\x60\x47\xc8\xa9\x33\x87\xfa\xbc\x43\xbd\xc3\x04\xed\x41\xdf\x9d\xe0\x83\x4d\xad\xe1\xce\x01\xbd\x43\xf5\xed\x08\xf5\x49\xab\xa4\xd8\xa6\x00\x8d\xe5\x48\x6c\xee\x4e\xdd\xb9\xb0\x3b\x50\x39\xd4\xb7\x16\x13\x78\xce\x17\x98\x12\xc9\x3a\x35\xbf\xd0\xb3\xa8\x60\xdd\x7a\x74\xda\x1d\xc8\xfc\x22\x8f\x3e\xf1\x6f\x7b\xf8\xd4\x9e\x59\x5a\x85\xa6\x94\x22\xab\xe8\x94\x67\xc3\xdb\x8f\xfa\x64\x67\x8d\x47\x36\xeb\x27\x56\x3a\x35\x80\xc2\xdc\x41\x77\x07\x57\x6c\x03\x69\x16\xb1\xf2\x66\x7d\x30\x5f\xef\xba\x07\x83\x9b\x7d\xa9\xe6\x5b\x9d\x8b\xa9\x1a\xc9\x42\x2d\x25\x17\xcb\xff\x29\x28\xb5\x15\xeb\x08\xaa\xae\x7b\xc2\x03\x53\x20\x39\x00\xac\xb0\xaa\xc5\x8b\x90\x69\xc8\x49\xa6\x4d\x5a\xc3\x33\x0c\x77\xa4\x99\x50\x17\x01\x34\xb0\xab\x2c\x54\xce\x63\x56\x4a\x1b\xd0\x48\xdf\x78\x5f\xa7\x90\xe5\x3f\xff\x6b\xc1\x32\x1a\x7b\xf3\xc6\xb6\x83\x43\xc6\xbd\x73\xac\x9e\xea\xad\xca\x2d\x07\x67\x32\x6b\xe8\xe3\x62\xa2\x07\xca\x00\x00\x40\x35\xf3\x2d\x26\xd2\xf0\xcd\xb9\x4c\xb3\xbb\xdf\x61\xde\x7c\x48\xa8\xf8\xc8\xab\xfd\xdd\x1f\x2e\x4f\xaf\x7e\xb6\xbb\x0d\xa3\x79\x79\xcb\x72\x02\x8f\xbe\xdc\x41\x2d\x4d\xd3\x3d\x61\x50\xc6\xfc\xac\xca\x18\xdd\x47\xd5\x6d\x5e\x3b\x84\x4f\xa1\xa2\xf9\x7d\x31\x67\x67\xd5\x78\x67\xee\x78\xbb\x8a\x9b\xb6\xb6\x4d\x75\x4e\xeb\x4a\x76\x95\x3c\x6d\x8d\x07\xd5\xcf\xa0\xfa\x19\x54\x3f\xff\x71\xaa\x9f\x36\x6c\xd2\x54\x08\xd5\x12\xe4\xed\x02\xf8\xf7\x65\xbc\x91\x83\x92\x77\x28\x78\x7f\x6d\x91\xd3\x45\x1f\x66\xc1\x8e\x86\xe2\x33\xa6\x2c\xb4\x23\x9b\x64\x9b\x1b\x1e\x17\x34\x71\xa6\x19\xe2\xf0\x4c\x5f\x7b\x8b\xfa\x65\x5c\x70\x1f\x81\xb8\xcc\x77\x1f\x9a\xb2\x8d\xd7\xc6\x46\xd5\xbc\x82\x85\x05\x2e\x8c\xe6\x60\xbe\xb5\x2c\xcd\x91\x2d\x7a\x26\x38\xf2\xa8\xc8\xa6\x04\x7a\xe8\x51\x97\x44\xa3\x29\x11\xf1\x84\x65\x53\x96\x71\x19\x76\xdb\xdd\x45\x0e\x37\x3b\x1f\xda\x62\x85\x29\xfe\xa5\xa4\xfe\xd7\x42\x66\xeb\x72\x08\x1e\x0c\xdb\xb4\x0f\xa4\xd9\x75\xa2\x27\xf5\xad\x00\x6e\x64\x4c\xfe\x64\xd4\x7d\x27\xe4\xcb\xf5\x9f\x3d\x02\x86\x7d\xba\x5d\x7d\xbb\x1c\x7d\x03\xb1\x9f\x0d\x08\x5c\x69\x8e\xba\x6d\xa7\xf5\xfb\x5f\xc6\x26\xaf\x9c\x70\xdc\xbe\x1b\xec\x86\xf0\xda\x65\x40\x26\xf6\xc8\x6a\x1c\x80\x42\x42\x48\xb9\x53\xa3\xa8\x65\x77\xcf\xad\x2e\xf3\xb1\x2b\xed\xb9\x5a\x62\x1c\xa6\xce\x34\x4f\x18\x0e\x30\xf5\xac\xf9\xf0\xb4\xfc\xac\xda\xd9\x42\xc9\x35\x55\x3c\xaa\x12\xe7\xca\xce\x3a\x24\x75\xa8\x80\x40\xa3\x65\x90\xad\xd1\xd4\x54\x87\xd9\xc2\xa4\xed\x48\x93\xde\xa5\x45\xfa\x14\x16\xf9\x9f\x77\xe1\x09\x9c\x5a\x48\x4b\xde\x76\x68\xea\xab\xbd\x2d\x3f\xa9\x0e\x7f\x99\xd5\x59\x92\x48\xa6\xdb\x0e\xba\x63\x1f\xc0\x03\x55\xea\x4b\x27\x30\x3c\x77\x57\x69\xd0\xc0\xd3\xe2\x36\x8c\x1a\xed\x83\xdd\x4c\x8a\x99\x16\xfc\x66\xe2\xc2\x7f\x19\x18\xee\x7f\xde\xa9\xee\xda\xea\x7a\x76\xf6\x3e\x5b\x5e\xcf\xcc\xde\xb6\xf5\x1d\x05\x9e\x6c\x59\x27\xe7\x68\x0c\x67\xe0\x5f\x71\x06\x6c\xbe\x8f\x0e\xda\x5f\xd7\xb0\xee\x7c\xd3\x76\x0e\x6c\xff\xa1\x35\xb0\x1d\xfe\x61\x38\x09\xff\x9a\x93\xd0\xf6\x96\xa9\x28\xfe\xee\xf3\x33\xb9\x4e\xb1\x66\x58\x10\x62\x75\x48\x5d\x78\x3f\xdb\x81\xd7\x9c\xa9\x07\xc6\x04\x8c\xb1\xf9\x3c\x68\x93\x80\x0e\x4a\x29\x1e\x2c\x13\x1a\xd4\x2f\xdd\xb3\xe0\xc0\xea\xd5\x4b\x2f\xb0\xda\x80\xb4\x62\x34\x51\xab\xb3\x15\xf3\x7b\xce\xd7\x97\xf6\xad\xd3\xb8\x3c\xfd\x32\xb3\x53\xc9\xcb\x4a\x22\x9a\xad\xc3\x9e\xbd\x4b\xc3\x0e\x7a\x51\xf8\xb6\xb9\x27\x72\x79\xab\x99\x47\xae\xb6\xb7\x51\xc6\xd8\xae\xea\xac\xb9\x80\xcb\xdd\x2f\xec\xb6\x24\x72\x49\x72\xf3\x86\xd0\xb9\xdc\x30\x93\x14\x26\x91\x4b\x2f\x0f\x03\x89\x8a\x98\x28\x8d\x8e\xb9\x8a\x65\xa1\xdc\xcd\x98\x88\x85\xdc\x6f\x45\x61\x1d\x79\x48\x50\x0f\x6a\x42\x2a\xcd\x77\x00\x14\xad\xba\x10\xf8\xda\xd1\x49\x99\x15\xea\x5f\x3d\x2a\x44\x50\x43\xd5\x14\x1f\x64\xa2\x0e\x21\xcd\xdd\xa2\x48\xd0\xdc\x12\xaf\x41\xad\x02\xa5\xd2\x20\x40\x18\xca\x92\x60\x09\x5b\x1a\xa9\x82\x36\x2c\x2f\xd8\x23\x26\xbd\x7a\xa0\x65\xb6\x11\x9b\xac\xc7\x98\xd3\xd7\x32\xc6\x1a\x1f\x73\xcd\x91\x6d\x78\x26\xc1\x4d\x86\x6c\x68\xc6\xe1\x48\x36\xe6\x8b\xb6\xe6\xfb\x62\xce\x46\xae\xe6\x26\xcd\x64\xc4\xf2\x5d\x31\xad\x2d\xef\x63\x35\xda\x77\xd4\xab\xb7\xd9\xd3\x63\x36\x84\xc4\x6a\xdb\x76\x51\x1f\x75\x37\xbd\x91\x07\x00\x01\x13\xba\x17\x08\x00\x6c\x2e\x16\x49\x81\xc9\x8e\xb0\xaa\x3c\xd4\xaf\xc4\x03\x12\x34\xf9\xf8\x31\x68\xe6\x7e\xdb\x75\x39\x6b\x03\xed\x2c\x0c\x2a\x15\xf3\x0d\xab\x9d\x0a\x9e\xdb\x01\x7c\x0b\xe4\xa1\x8d\x96\xf1\x91\x49\x2c\xb3\x66\xd9\xd2\x6a\x6a\x4f\xa7\x93\x4a\x51\xab\x09\x93\xf7\xd2\x8b\xc0\x29\xf3\xc0\xa5\x83\x18\xb7\xab\xfc\x1a\xc0\xf9\x94\x6a\x3f\xd2\xa5\xfa\xeb\x31\x7d\xd2\x43\x05\xd8\x58\xc4\x7e\x6a\xc0\x36\xce\xe1\x53\x72\x4d\x3d\x57\x4b\xf6\xe3\x9e\x1a\x8b\xef\xcf\x41\x75\xa9\x50\xea\x0c\x56\x2f\x2e\xaa\xab\xcb\x76\x26\x8b\x7c\x52\x35\x4b\x8b\x16\x91\x3c\x95\x26\x91\x7c\x02\x59\x9b\xf4\x3f\x27\x3d\xb5\x8a\x8d\xe5\xee\xa1\x59\xec\xda\x51\xa7\xf4\xdc\x27\xd1\x2e\xee\xb1\x7a\xb2\x8f\x96\xb1\x01\x83\x7e\x9a\xc6\xee\x4e\x81\x35\xf9\xe4\xda\x46\xb2\x57\x6d\xec\x3e\xd7\x81\x0c\x78\xa5\x0f\x30\x7b\x29\x2a\x9b\xc0\xf9\x74\xca\x4a\xf2\x49\x15\x96\xfd\x97\xde\xe7\x0c\xb5\x2a\x2f\x1b\x40\xf9\x94\x0a\x4c\xf2\xf3\x22\xd6\xe1\xa2\x7c\x82\xd3\xd2\x4b\xff\x49\x9e\x4c\x07\x4a\x9e\x48\x0f\x4a\x86\x63\xf4\xb3\x1e\xa3\x9e\x2a\x54\xf2\x94\x6a\x54\xf2\x54\xaa\x54\x32\x1c\xa6\x9f\xf1\x30\x75\xb5\xe8\xad\x89\x25\x4f\xa5\x8d\x25\x9f\x56\x23\xdb\x07\x78\x1d\x9a\xd9\xe6\x52\x3f\x91\x76\x96\xec\xa9\xa1\xed\xb3\x96\x3e\x9a\xda\xe6\x82\xf6\xd6\xd6\x86\x96\x93\xc8\x65\xfe\x11\x1a\xdb\xee\x15\xb6\x24\x93\x6e\xd1\xde\x92\xd6\xa3\x3f\xb8\x41\xff\xac\x6e\xd0\x26\x16\x02\x58\x5f\xfe\x24\x89\x60\x4c\xd5\x3e\x64\xbf\xf1\x45\xe5\xe9\x5c\x7b\xd9\x74\x6d\xde\x99\x9d\xd9\xe7\xd2\x99\xd9\x7d\x0d\x5d\x1b\xef\xe5\x52\xe3\x06\x14\x74\x70\x60\x1e\x1c\x98\x07\x07\xe6\x7f\x2f\x07\xe6\x36\x0b\x14\x94\xc3\xea\x13\x90\x0d\xa9\xf9\xf5\xf1\xc7\x82\x56\xac\x56\xde\x1c\xf3\xfa\xeb\x3f\x4a\xa3\x8b\xd7\xf6\x61\xbf\xc6\x68\xb2\xdd\x62\x5d\x50\x09\x8c\x44\x32\xcb\x58\x9e\x6a\x8a\x21\x96\xc4\x30\x4b\xb6\xa4\xd2\x5e\x29\xf9\x77\xaa\x3c\x9d\x92\x1b\x3d\x41\x26\x22\x9a\xe6\x05\xdc\xdb\x6a\x46\xbe\xa9\x04\x34\x84\x38\xa5\x31\x21\x5f\x4b\xb5\xda\xa9\x2a\xd0\xa8\x22\xa6\x3b\xda\xad\x9e\x10\xd0\x11\x95\x15\x42\x4c\x15\x83\x11\xc9\x59\x4a\x33\x7d\x48\x89\x2c\x14\xa1\x7a\xba\xb6\x40\x03\x36\xd1\x5c\x18\x54\x9e\xe7\xe1\x72\xf7\x04\xe6\x60\xf6\xcb\x05\x3c\x17\x4b\xac\x97\x84\x45\x19\xa0\x9a\xcb\x86\xed\x42\x62\x45\x43\xbd\x12\xc1\x96\x30\x39\x83\x78\x8f\x48\x9a\xb1\x05\xff\xc0\x62\x14\x1d\x7e\xfa\xf1\x9f\x57\x52\xfd\xf4\xe3\x3f\xc7\xe4\x34\x49\xe0\xa2\xd6\xfb\xf6\xf7\x6b\xa2\x85\x29\x1e\xa7\xb2\x42\x10\x55\x3c\x07\x2b\x2d\x86\xde\x99\x85\x28\x89\x7d\x8e\xc9\x29\x90\xb2\x66\xf6\x22\x03\x5b\x38\x9a\x54\xd8\xe3\x69\xeb\xd8\xe3\x92\x35\x80\x60\x31\xfa\x0f\xb3\x1a\x2c\xfb\x15\xac\x6a\x86\x50\x05\xd8\xfb\xa7\xa8\x07\x80\x51\xcb\x29\xfa\x63\x9b\x3b\x25\x44\x3c\x6e\x41\x49\xab\x5b\x7e\x72\x22\x2d\x83\xbd\xd4\xae\xca\xb9\x13\x44\x5d\xb3\xa1\xee\x1c\x0d\xb0\xa0\xc2\xb5\x6c\x11\xdc\x6a\x91\x9e\x44\x63\x42\xe5\xbb\xc5\x3d\x81\x41\x5c\x9b\x61\x4b\x18\x67\x60\x65\x77\x07\x57\xbb\x1f\x03\x05\x13\x44\xa6\x68\x66\x37\x01\xb9\xa1\x12\x24\xd5\x53\x2b\xdb\x6e\xba\x62\x1f\x34\x01\xcb\x01\x3b\x40\x71\xa7\x5a\xd1\x30\x1b\x53\xde\xa5\x23\x06\x1a\xf7\x5c\x1f\x21\x96\xad\xf1\x03\x42\xd5\x0b\xc7\x06\x51\x06\xd4\xdb\xa2\x26\xe1\xd4\x06\x3b\x20\xcb\xcb\x7c\x08\xb0\x97\x9a\xfc\x41\xd0\x2f\x1c\xe4\x06\x6c\xda\x3b\xd5\x17\xa0\x84\xa2\x96\x8c\x90\x19\x8b\xad\x7f\x44\x4e\xd7\x78\x05\x4c\xfc\x28\x84\x54\xf7\xd1\xc6\x38\x96\x27\x73\xc6\xb2\x72\xbe\x64\xbe\xc5\xc9\x96\x35\xec\xcb\x15\xf5\x03\x85\x29\x6a\xa7\xe7\x85\xd8\xef\x8d\xcc\xea\x9c\xb3\xe6\xd6\x4c\x3d\xb5\x3d\x21\xc2\xd7\x69\xc2\xab\x6a\x7e\x8c\xb8\x87\x2c\xe1\x6b\x6e\x82\x66\x71\xa6\x9a\xbc\x69\x98\xb4\xf7\x59\x56\x15\xab\x60\xc2\x1d\xf8\x56\x11\x2f\x14\xef\x68\x6d\x29\x1d\xc6\xb8\xc0\xf2\xff\xb2\x84\x8a\xe2\xcf\x5f\xfc\xa5\x09\x00\xbb\xc6\x0e\xa5\xce\x5e\x00\x68\x54\x30\x6f\xef\x5c\x66\x35\x23\x67\xb5\x8b\xb5\x6e\x76\xf7\xb2\xbd\xcf\xe0\x3a\xeb\xab\x40\x07\x22\xe0\xfd\xf7\x3d\xc8\x14\xd2\x5c\x40\xd9\xc6\xea\x36\x06\x68\x42\x09\xc6\x5e\xba\xb1\x40\xf5\xf5\xea\xa9\x9b\xc3\x99\xca\xc3\x38\x4f\xf3\xe9\x90\x54\x36\x0f\x55\x30\xac\x1e\x4b\xdd\x60\x0b\xab\x82\x4f\x7e\x94\x57\x62\xb5\x8e\x83\x53\x47\x79\xb5\x34\x22\x50\xcb\xb5\x2c\x23\xbb\xe4\x1b\x26\x4c\xd6\x8e\xf6\xc8\x98\x30\x83\xe8\x8c\xdb\xd3\x84\xd8\x52\x89\xa0\x7a\x84\x54\x57\xfb\xed\x09\x7e\x60\x55\x53\x3b\x7c\x95\x5d\xb1\x6e\xd2\x41\x39\xf4\x3e\xfe\xe2\x60\x31\x0d\x54\xda\xab\x9e\x5d\x60\x60\xd9\xbd\x76\x68\x40\x9b\x3e\xe0\x20\xb7\x5c\xf3\xd4\xb2\x2c\xb6\x68\x4b\xac\xe5\x64\x45\x37\xcc\xd6\xef\xe3\x0b\x38\x5d\x69\x77\xb7\xa0\x04\xb4\xb9\x11\x08\x57\x56\x73\x87\xd3\x9d\x9a\xde\x0d\xb3\x64\x70\xb5\x96\x3c\x3a\xa0\x2e\x91\x86\x29\xcc\xaa\x30\x3b\x9b\xda\xbc\x3e\xef\xce\xa7\xc1\xa4\x31\xf8\xf4\xd9\xd5\xf6\x72\x7b\xf8\xf4\x2c\xba\x57\x6f\xdc\xc7\x89\xa1\x4f\x01\x3e\x7c\x1e\x53\x86\xcf\x3e\x7d\x0f\xe4\xfe\x7c\xe3\x55\xf5\x51\xc7\xb1\xec\xc7\x28\x98\x93\x49\x6e\x99\x43\x5c\x10\x0b\x6b\xd9\x21\x2f\xe6\x2a\x61\x9a\x0d\x46\x49\xca\x8c\xd5\xde\x67\xc9\x10\xb5\x1e\x95\x7e\x7b\x16\x2a\x8e\x19\x00\xcf\xdd\x41\x79\x63\xbb\xc8\x4a\x17\xdf\xc0\xfa\x90\x95\x15\x88\xc2\x46\xa1\xf4\xdc\x91\x2f\x5e\x74\x1c\x43\x99\x29\xec\x01\xb9\x49\xb7\x0c\x6e\xce\x48\x46\xc5\x92\xe5\xc7\x56\x1f\x07\x29\xb7\x5a\x33\x3d\xe1\xc3\x5d\xb9\xdc\x5c\x1d\x30\x9a\x20\x94\x73\x0b\x01\xa3\xdc\x32\xc3\x74\xf0\x38\x0b\xdc\x03\x64\x6e\xfa\x62\xb0\x4e\x0c\x80\x4d\xf7\xc2\x60\x1d\x6b\xaf\xd0\xdb\x0e\x06\xbb\x43\x1c\x76\x67\xb0\xd8\x1d\xe2\xb1\x3b\x8d\xc9\x5a\x79\x9e\x01\x97\xc1\xd3\x0b\x97\xe5\x8f\x10\x80\xbb\xe5\xde\x56\x15\x5e\xf5\x78\xe5\x5e\xf2\x3c\x67\xcc\xea\xbe\x00\x95\xd1\x75\x9a\x30\x92\x6f\x85\xa2\x1f\x7c\xe9\x7e\xdc\xe7\xee\xae\x55\x6c\x36\x3c\x64\x48\x2c\x6e\xef\xdb\xaa\xbc\x6a\xa5\x40\x9b\xd2\xb0\xad\xce\x0c\x63\xeb\xd3\xd3\x01\x04\xe3\x9f\x6f\xad\x01\x1d\x54\x01\xc1\xe3\x50\x93\x0e\x59\x95\x25\xf2\xe1\xc5\x51\x7d\xca\x0e\xb0\x11\xaa\xa6\x86\x99\x35\xcd\x76\xc0\x01\xf5\x5c\xa0\xbf\x9c\xad\x18\x51\x0f\x12\xce\x1a\x24\xa9\xb0\xef\x4c\x09\xed\xb9\x4a\xb6\x55\x86\xbc\x8e\xbd\xbb\x16\x76\xf5\xd6\x83\xa7\xd2\xab\x32\x47\x7a\xc5\xd5\x48\xf0\x9e\x33\xed\xbb\x69\xc2\xc3\x4a\x26\x66\x93\x4e\x60\x8b\xee\xee\x2a\x82\xfc\x3b\xc0\x2e\xbf\x5a\xd1\xfc\xf9\x7a\xfb\x1e\x5c\xeb\x5e\x00\xde\x31\x48\xbe\xeb\x3a\x9b\x84\x8f\x56\xd1\x80\x85\xf4\x61\x7e\xe8\xf8\x50\xb9\xfe\xc7\x7a\xdc\x9e\xe7\x0d\xfa\x8b\x25\x64\xd2\x02\x2c\x8d\xc6\xa2\x39\x4b\xc8\x4f\x3f\xfe\xb7\x9d\x28\x68\x47\xcd\x82\x7a\x1f\x0b\x5c\x70\x70\xbd\xcd\x25\xe9\x39\x84\x72\xbe\x56\x4f\xfb\x6a\xcb\x05\xb5\x2f\xa6\x5b\xe1\x30\x2b\x83\x31\x90\x95\x32\x9a\x82\x04\xd0\xaa\xc9\x43\x09\x26\xe6\x72\x1d\xdd\x53\x17\x52\x8c\x8c\x97\x8a\x31\x72\x91\x87\x15\xcb\x98\xd1\x89\x2c\x64\xb6\x66\xbb\x3a\x08\xd3\x7b\x0f\x5d\x5c\x13\x30\x4e\x4a\x86\x4f\x20\xc0\xd7\x9d\xe9\xf6\xe0\xbb\xea\xfe\x74\x3f\x1f\xff\xb5\x83\x92\xdb\xfb\xf4\x68\x32\x29\x49\x65\x6c\x03\x6f\xd0\xae\x51\xa2\xe7\x1e\x9e\x7f\xa5\xef\x5f\xeb\x69\xeb\xed\x69\xee\x5a\xd9\xc3\x4f\x33\x0a\xe5\xe3\xc1\x4d\x1e\x03\xf2\xee\x2e\x43\x0a\x64\x0f\xd8\x7b\x41\x9b\x38\xde\x96\x0f\x2b\x99\xdb\xa2\xfc\xa5\x26\x12\x8a\x70\x77\xf5\xd1\x87\xb1\x23\x7b\xb9\xc6\xf7\xe4\x92\x48\x5f\x4e\x89\x34\xef\x57\x27\xaf\xf4\x9f\xbb\xd3\x35\x39\xa9\xd2\xb8\x21\xd6\x2f\xf3\x59\x92\x49\x67\xba\x16\xe2\x58\x17\x9a\x46\x83\x4a\x0e\x31\x49\x26\xd9\x56\xff\xde\xdd\xe9\xe9\xd5\xf9\xa1\x37\xfd\x67\xfd\xd9\x4f\x9b\xd5\xee\xae\xda\xdd\x66\xa5\x94\x2f\x91\x37\x3e\xf5\x38\x9d\xd9\x6c\x5a\x19\x91\x82\x96\x35\x7d\x3c\x74\xd3\xf0\xd4\x4b\x3f\xc2\x8f\x32\xaa\xad\x99\x5a\xc9\x78\x0f\xda\xf3\x16\x3f\xf8\xb4\x34\x07\x97\x0c\x97\xc3\xac\xdb\xf1\xde\xd0\x7d\x62\x16\x5c\xd6\x99\x24\xc8\x62\x25\x16\x63\x2f\x76\xb6\xcf\xd9\x78\x39\x26\xdf\x5c\xcc\x8e\xc8\xf4\xdd\xec\x88\x30\x15\x8d\x5f\x90\xb7\x45\xa2\x78\xda\xa5\xa1\x33\x20\x82\x53\x7b\x7d\x73\xa8\x99\x88\x25\x44\x81\xfc\xb2\x34\xae\x29\x55\xab\x3d\xf6\xf1\x70\xaa\xdb\x3f\xc5\x36\x76\xed\x60\xb7\x85\xc1\xdd\x41\x98\xe6\xb8\xdc\x2a\x5c\xa6\xdd\x8b\xbe\x9b\x41\x08\x1b\x2f\x4f\xc8\x88\xb0\x0f\x34\x52\x27\xe4\x78\x21\x25\x19\x19\xbf\x85\x13\x72\x3c\xa7\x19\xb9\xba\x9e\x5d\x9c\xa0\x4f\x04\x13\x2a\xdb\x92\x75\x17\x71\xb9\xbe\xba\xfc\xa3\xc1\x63\x5b\xc2\x38\x88\x0e\x94\xfc\x05\xc6\xf8\x0b\x01\x77\x85\xbf\xe0\x10\x7f\xb1\xde\x0a\xb3\xae\xa5\x6f\x68\xc2\x63\x5a\x8a\xa8\xe0\x4c\x8b\x09\xa1\x95\x2f\x03\x74\xf5\xf4\x39\x6f\x3b\x3e\xbf\xb3\xd9\x54\x43\xb7\x44\xc5\x70\x14\x00\xe8\x1a\xc8\x8e\x03\x43\x07\xaa\x9d\x28\x70\xd7\x9a\x33\x0b\x04\x23\xfd\x6a\xf6\xfb\xc4\x82\xfc\xae\x78\xf9\xf2\xf3\x48\x77\x0c\xff\x62\x27\x26\x18\xbf\x97\xb0\x86\xc7\x0c\x66\x05\xdd\x69\x64\x91\x95\xdb\x57\x75\x3d\xc2\x9f\x3e\x6e\x04\xec\xa3\xc3\x7d\x7d\x8f\x78\x46\x04\xc0\xa7\x65\x80\xcc\xd2\x3f\x65\xa7\x7d\x03\x0e\x7b\x20\xa3\xee\xae\x78\xb4\xee\x49\x2f\x27\x67\x6f\xa7\x7d\xed\x96\x80\x88\xc2\x73\x77\x31\x94\x93\xc4\x5b\xcf\xd6\x04\x90\x60\x2a\x72\x18\xd2\xf0\x66\xa6\x04\x43\x8b\x10\x87\x0e\xa3\x40\xbb\xe6\x35\xf5\xea\xa2\xae\x55\x2d\x93\xc1\x97\xb6\x1e\x3d\x4e\x9b\x1c\x09\x56\x20\xdd\x68\xf3\xba\xc5\x10\xd4\xeb\x24\x46\xed\x81\xd3\xbb\x34\x1e\xb8\x12\x29\x5c\x28\x01\x50\x22\x2c\x89\x30\x59\x38\x49\xc2\xbb\xc9\xc3\x4c\x03\x18\x9d\x44\xc1\x67\x0a\xca\x4d\xb8\xb0\x32\x3a\x77\x50\xa8\x2b\x16\xad\x04\x8f\x9a\x49\x3d\xea\x0f\x08\xf4\xa8\xb4\xe2\xeb\x54\xe6\xe8\x21\x02\x59\x1b\x58\x26\x58\xf2\xd3\x8f\xff\x6f\x4e\x78\xaa\x30\x7a\x61\xc1\x33\xf6\x40\x93\xa4\x63\xb2\x88\x2f\x8c\x42\xa1\xc8\xd1\xe0\xcf\xc4\x42\xa2\x03\xab\xf1\x1e\xe9\xbe\x1c\x9d\xba\x67\x68\xf6\xf1\xdb\xa1\xbb\x19\x13\xf0\x81\x60\x1f\x40\xe1\xda\xa5\xba\xc5\x5d\x90\x0b\xf2\x15\xba\x1d\xc2\x0a\xa1\xaf\x8b\x68\x25\xc9\x0d\x92\x6c\x93\xd3\x3d\xe5\x62\x99\xb7\xeb\x6e\x7b\xad\xb7\x07\x3a\x48\xfd\xfe\xdf\x01\x80\x4c\xa6\xd6\x0f\xfc\xa3\x1d\x1a\x6a\x82\x19\x72\xe3\x2e\x94\xa7\x56\xa3\x1b\x84\x42\x0f\x08\x04\x3c\x79\x03\x8b\x7b\x6b\x5a\x3b\x9e\x66\x65\x32\x18\x70\x50\xce\xd6\x55\x92\x7f\x9f\x57\x75\x7d\x71\x1f\x85\x36\x9a\xd1\x13\x81\x76\x7d\xd3\xd5\x54\x4f\x5f\xc2\x54\x2f\xcc\x50\xcd\xc7\x78\xa0\xa3\xb6\xf9\x9e\x6d\xcd\xd1\x4e\x29\x37\xc9\x68\xda\x87\xd7\x42\x2d\x61\x1f\x54\x46\x6b\x30\xa5\x73\x59\xa8\x1e\xa4\xe4\x53\xc9\x8d\x42\x2a\x7d\xfb\xfa\x9d\x8c\x2b\x6c\xdc\x61\x89\x86\x26\xed\x1e\x21\x03\xc9\x18\x48\xc6\xbf\x3b\xc9\x10\x52\x59\xd6\x2a\x08\x96\x76\x7b\x71\x4f\x4b\x71\x3f\x1b\x71\xc3\x95\xc9\xb2\x7d\x1d\xde\x4c\xa6\x59\x18\x60\x1d\x37\xb9\x87\x51\xfa\x71\xe6\xe8\xf4\x97\x0a\xdc\xbb\x03\x17\xb6\x9f\x90\xfa\x37\xd4\xb2\x10\x09\xe0\xf2\x02\x16\x26\x63\x38\xf5\x3c\x6b\x73\xcd\x31\x7e\x65\x66\x9f\x2f\xc0\xff\xfd\x06\x82\x37\x6c\x28\x02\xfa\xce\x3c\x9f\xb3\x88\x16\xb9\xf1\xe6\xe8\x70\x0c\x2e\xa7\x18\xb1\x0c\xfa\x28\x3d\x42\x5e\xa0\x39\xf1\xad\x89\x49\xa8\xf9\xb7\x74\x11\x59\x74\x7c\x39\x71\x7d\x37\x8e\x5c\xcf\x0d\xfc\x03\xa4\x95\xda\x5f\x9b\xd7\xd5\xdf\xb7\x67\x33\x7c\x1b\x1e\xc6\xf4\x78\xc9\x15\xb3\xee\x21\x54\xd8\x03\x62\x4d\x0a\xe0\x24\x43\x5e\x8d\x3e\xfb\xf2\xcb\x16\x1b\xdb\xd3\x1d\x7b\x34\x23\xf6\xa3\xc7\xb7\xe8\x88\xd4\x2f\x54\xa2\xa5\x80\x9e\x1d\x75\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\xfc\x2b\x1e\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x08\xad\x64\xc0\x65\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x34\x9f\x21\x4a\x62\x88\x92\x28\x9f\x21\x4a\x62\x88\x92\x78\xfa\x28\x89\x96\x44\xb7\x5a\xc6\xc0\x7c\x67\xbe\x77\x7d\xca\xf0\x79\x4f\xb9\xc9\x8e\xf7\x88\x34\x87\xe6\xcb\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\x0c\xa3\xc6\x21\xcf\xe1\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x5f\x3d\x83\x05\xdf\x79\x06\x0b\xfe\x60\xc1\x37\xcf\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\xb8\x6c\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x9b\xcf\x60\xc1\xdf\x7d\x06\x0b\xfe\x60\xc1\xdf\x7d\x06\x0b\xfe\x60\xc1\x2f\x9f\xc1\x82\x3f\x58\xf0\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\xec\x33\xc2\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\x92\x56\x0d\x49\xab\x86\x3c\x87\x43\x9e\xc3\x21\xcf\x61\xdb\xfc\x87\x3c\x87\x03\xc9\x18\x48\xc6\x90\xe7\x70\xc8\x73\xb8\xf3\x0c\x79\x0e\x87\x3c\x87\x3b\xcf\x90\xe7\x30\x2c\x44\x0e\x79\x0e\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x96\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x84\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\xcf\x10\x25\x31\x44\x49\x94\xcf\x10\x25\x31\x44\x49\xfc\x27\xe6\x39\x84\xe4\x85\x5d\x59\x0e\xaf\x75\xa3\x96\x33\x5c\x79\x47\x2b\x9b\x0f\x31\xc0\xf8\xa2\x2f\x08\x66\x98\x03\x16\x5f\x77\x0a\x3a\xf1\x78\x8c\x5c\x7f\xa9\xb3\x58\xf1\xa5\x66\xa1\xee\x0e\xa0\xbf\xbb\x03\xd8\x6c\xd3\xd6\xd7\x35\x5d\x68\xf2\xaf\x00\xbd\x40\x07\x89\x7c\x60\x19\xce\x06\xbd\x6b\x9c\xc9\xe5\x44\xae\xb9\x52\x2c\x3e\xd2\xd2\x2b\xba\x66\xfb\x3a\x8d\xa4\xc8\x39\xa6\x77\x44\xe9\xf4\xee\x80\x8b\x05\x17\x5c\xb1\xbb\x03\x32\x22\xe0\xd1\xe1\x2c\xc7\x8a\x03\x66\x9e\x24\xa1\xb9\x1a\x93\x72\x65\x5e\x90\xe8\xb9\xf2\x98\x09\xc5\x23\x9a\x98\x09\xee\xf6\xc3\x05\xa1\x49\xba\xa2\xa2\x58\xb3\xcc\x69\x07\x99\x15\x7d\xbd\x1a\x13\x9a\x11\xa4\xd0\x6c\xe9\x55\x02\xe2\xd9\x10\xc5\x7a\xde\x94\x71\x5b\x90\xde\x8e\x50\x38\x73\x05\x0c\x3c\x28\x8e\x98\x51\xe4\x86\x63\xe2\xd1\x3d\xfe\x47\x16\xde\xf3\xaf\xa7\xbc\xc3\x30\x3a\xc0\x35\x7e\xc4\x0e\x58\x94\x34\xfa\x8d\x16\xb6\xb7\x9a\x47\x4e\x16\x32\x49\xe4\x03\xb8\x04\x1a\xd9\xa7\x94\x06\x10\x2d\xfd\x0e\x59\x63\xbc\xed\xef\x13\xae\x58\x46\x13\xfd\x8b\xaf\xe7\xbb\x3b\x32\x42\x3f\x7a\x7d\x50\xd6\x29\xcd\x78\x2e\xc5\x11\x81\x40\x1a\xcb\xd3\xda\x2e\x17\x52\x92\x39\xcd\x80\xcf\x2e\x87\xfb\xd5\x9e\xc3\x55\xe3\x69\x8e\x9c\xfd\xb5\xa0\xc9\x6f\xd1\xf1\xcb\xe2\x59\xbe\x30\x08\x96\xe7\xd0\xc6\xea\x8c\xca\x21\xfd\xf7\xf2\x07\x98\x07\xad\x9c\x15\xe6\xd5\x3f\x23\xfc\xe7\x78\x3c\x26\xff\x70\x66\xa0\xb2\x82\x59\x0f\xee\xd2\x01\x0a\xc7\xf8\x03\xf1\xbb\x5c\x1a\x65\x59\xc7\x50\xd5\x5c\xf5\x02\xb8\xe8\x31\x39\xdf\x60\x7b\xce\x17\x06\x6b\x9b\xa0\x7f\x4b\x9c\x39\x6b\x79\x0a\xfa\x7b\xaf\xb9\x9b\x17\xd5\xd0\xb3\x72\x64\xaa\xaa\xdd\x71\x76\xe6\x57\x70\x48\xbd\x38\xdf\x74\x51\x0a\xd6\x72\x01\x6d\x41\xb2\x82\xff\x17\x2f\x5f\x7e\xf6\x1a\xff\x8b\x6f\xca\x6f\x6e\x57\x32\x53\xa3\x88\x67\x51\xc1\x15\xd0\x4d\xf3\x91\x6f\xa0\xbf\xff\xbd\xf5\x6b\xd0\xc0\xa9\xe7\xd8\xe6\x45\xd9\x28\xa5\x19\x13\x98\x6b\x75\x99\xc9\x22\xd5\xcc\xc2\xdd\x9d\xa2\x49\xf2\xdc\xab\x49\x35\xc9\x3f\xd1\x36\x5e\xe2\x0b\xdb\x9b\x3d\xc3\x34\x49\x1c\x01\x09\x2e\xe8\x25\x9e\x07\xe4\x00\xfc\xc4\x9d\xea\xab\x8d\x78\xc6\xba\x0f\xb9\x28\x33\x3f\x22\xa3\x23\xf2\x1e\xe0\x70\x3c\x26\xb7\x70\xe5\x88\xb9\x72\xc1\x4e\xd7\x32\x63\x24\xd5\xbc\x51\x9e\xf3\x0d\x23\x73\x74\x7d\xdd\x5a\xc1\xdc\xa8\x4c\x08\xcb\x23\x9a\x32\x12\xad\x68\x46\x23\xc5\x32\x33\xed\x0b\xf4\x1f\xf4\x5e\x86\xe7\x80\xf8\xd7\x34\x66\xa3\x22\xc5\x63\x91\xbf\x28\xd1\x11\x44\x5c\x18\xd4\xf1\xc0\xe6\x9a\xf9\x62\x06\x79\xb8\x3b\x1e\xb3\x34\x91\xdb\x35\x13\x5e\x74\x6a\xbe\x4f\x33\x19\xdb\x43\x0a\xfd\xea\x3b\x05\x38\x29\x93\x42\x0b\xe8\xce\x51\xd7\x32\x2d\xfe\xf0\x0f\xdd\xbc\xea\x9f\xfc\xea\x77\xa1\x1b\x10\xb3\x8d\xed\xfe\x57\x64\xe7\x16\xf8\x50\x59\x1b\x47\x55\x17\x65\x5b\x0c\x2d\x2d\x72\x6c\x3b\xd7\xbd\x40\xa7\xaa\x8a\x2c\xf8\x96\x65\x29\x16\x9e\x51\xc3\x0e\x63\x1a\x63\x29\xec\x24\x2d\xa7\xeb\x33\x98\xb4\xad\x11\xd4\x65\x3d\x68\x2a\x68\xd5\xb8\x88\x79\x04\x7c\xf9\xc3\x0a\xa2\xf8\x90\x7a\x19\x92\xe8\xf8\x13\x98\x3c\xc7\x5e\x3c\xa5\xef\x9d\x34\x89\x8e\x8f\xcc\x5f\x9a\xa7\x1e\x13\xf4\xde\x01\x6a\xf2\x21\xd5\x4c\x8a\x4a\xb6\x0e\x4b\xfd\x1c\x92\x34\x7b\xdd\xb2\x1c\x3c\x2a\x48\x94\x31\xe3\x36\x9c\x9b\xdb\x2d\x33\x22\x78\xf2\xe2\xc8\x3a\xfe\xc6\x6c\x41\x8b\x44\xe5\x04\x97\xa5\x41\x97\xc5\x01\x96\x5a\x49\xf2\xa0\x71\xe5\xc4\xa4\xd2\xd6\x93\xb8\x30\xff\xd4\xf7\xd1\x60\xce\x32\x57\x31\x78\xaa\xa0\x3a\xd2\x0c\xe3\xeb\x95\xe7\x78\xbb\x46\xe4\x4f\x86\x2f\xd2\x53\xb1\x63\xfc\xf9\xc8\x10\x07\xcd\x65\x82\xca\xcb\x0e\x89\xf9\xa4\x9f\x73\x11\x25\x45\x70\xc6\x2b\x46\x22\xaa\x39\x4f\xe8\xa0\xea\x86\x20\x79\x16\xb2\x5c\x0c\x74\xf7\xc2\x33\x93\x8b\x60\x9e\xea\xdd\xb9\xd5\x26\xa6\x51\xd2\x6e\xf7\xe1\x75\x7a\x8f\xc7\xee\x1c\x1a\x03\x82\xfc\xe5\xd9\x0d\xcc\x71\xee\xc7\x0b\x02\x8f\x56\x9d\xd7\xcf\x18\xd5\xf7\x28\xba\x27\x74\x49\xb9\x38\x32\xa7\x01\x95\x76\xc9\x03\xdd\xe6\xc6\x35\xd3\x7b\x8a\xad\x9d\x0d\x0d\x6c\x47\x44\xb0\x0d\xcb\x6a\xe7\xcd\xab\x4e\xeb\x99\x06\xbd\x82\x02\x61\x40\x34\x4a\x55\x74\x2a\xf3\x9c\xcf\x13\x3b\x70\xe5\x41\xa0\x3f\xb8\x4d\x59\xe4\x97\xf7\x70\x6d\x61\x9f\x8a\x76\xc9\x32\x28\xb4\xf9\x65\xbd\xe6\xaf\x40\x33\x62\xd7\x52\x94\x2b\x99\xd1\x25\xb3\x3f\xe5\x8a\xaa\x02\x01\x83\x0a\x53\x16\x5f\x39\xaa\xac\x7b\x2e\x62\x8d\x87\x2c\x48\xd3\xa4\xc8\x68\x52\xfd\x12\x49\x81\xb6\x8b\xfc\x84\xfc\xe9\xcf\xfa\x17\xdd\x3f\x8b\x4d\xe0\x91\xf9\x75\x34\x1a\x99\xff\xd0\x94\xdb\x10\x26\x42\x53\xce\x3e\x28\x26\xa0\xe1\xf8\xfe\xab\x7c\xcc\xe5\xf1\xe6\xd5\x9d\xc0\x41\xcf\x8a\x5c\xc9\xf5\x0d\x43\x5d\xec\x39\x03\x89\x0b\x50\x75\x2d\x50\xa8\x19\x7b\x53\xaa\x58\xb3\xd1\x92\x89\xf1\x7d\x31\x67\xf3\x82\x27\x5a\x04\xd4\x03\xd8\xe1\x9f\xc7\x6c\xc3\x12\x60\x51\x2c\xe6\x9a\xf1\x35\xcb\x15\x5d\xa7\x5a\x18\x4a\xc0\xdb\x5c\x13\xb0\x13\x22\xd0\x1d\x2c\x67\x2a\x1f\x47\x59\x3c\x4e\x33\xa9\x61\x1c\x01\x5a\x1b\xcb\x6c\x79\x27\x34\xbe\x84\x09\x00\x13\x74\x42\x02\xcd\xea\x9a\x42\x5c\xe9\xae\xcf\x5a\xc2\x73\xf5\xfb\x9d\x37\x97\x3c\x57\xf5\x2d\x70\xe6\x64\x76\x96\x8b\x65\x91\xd0\xcc\x7d\x05\x3b\x12\x49\x7d\x2c\x4a\xef\x34\x90\x15\x37\x76\x83\xf4\x1f\x23\xb3\x4c\x0d\x7c\xe8\x29\x5a\xb1\x75\x15\x87\x25\x53\x26\x4e\xa7\x93\xef\x3e\xbf\xad\xff\xde\x74\x0a\x33\x93\xb5\xee\x0d\xd5\x90\x23\xf6\xd7\x82\x6f\x68\xa2\x51\xb6\xb9\x39\xbb\xfe\x7a\xce\xf5\x08\x68\x5d\x9d\xc3\x53\xbf\x0d\xf5\x80\x6d\x3d\x55\x63\x39\x43\x67\x52\x9c\x8c\x59\x31\x8b\xcd\xf2\x70\x1e\x80\x8f\x0c\x31\xa1\x3e\xcd\x8a\x5c\x00\xff\x00\x77\x6a\x0c\x4c\x06\xcb\x72\x2b\x86\x46\x52\x6c\x58\xa6\x48\xc6\x22\xb9\x14\xfc\x6f\x65\xe7\xb9\xb5\xe5\x41\x1d\x85\x06\x29\xe2\x42\xb1\x4c\xb3\x23\x80\x4c\x8e\x00\x9d\xae\xe9\x96\x64\x4c\x0f\x43\x0a\xe1\x74\x68\x3d\x09\xde\x6a\x36\x94\x8b\x85\x3c\x81\x34\x1a\xf9\xc9\xf1\xf1\x92\x2b\x7b\x6f\x22\xb9\x5e\x17\x82\xab\xed\x31\x1c\x7f\x3e\x2f\x94\xcc\xf2\x63\x38\xe3\xc7\x39\x5f\x8e\x68\x16\xad\xb8\x62\x91\x2a\x32\x76\x4c\x53\x3e\x82\xb9\x0b\xb8\x38\xe3\x75\xfc\x2c\x33\x17\x2d\x3f\xf4\x61\x9a\x26\x82\x82\xa3\xdb\xb6\x0d\xfa\x04\x9b\xe8\x33\xe4\xb3\x91\x51\x28\xa1\x6d\xcd\xa8\x37\x17\xb7\x33\x62\x47\xf7\x46\xea\x21\xf0\xab\x2f\xf3\x6a\x1f\x34\xd0\xb8\x58\x58\x8e\x08\x54\x99\xae\x02\x01\x89\x72\xc2\x3d\xcc\x71\x5e\xcc\xd7\x5c\xe5\x4e\xfe\x05\x39\x26\x67\x80\x4e\x34\xfd\x29\xd2\x98\x2a\x16\x8f\xc9\x44\x90\x33\xba\x66\xc9\x19\xcd\xd9\x93\xef\x02\xb0\x85\x23\x0d\xdb\xbe\xfb\x10\x88\x9a\x0c\x29\x03\x4b\x34\x15\xd8\xb6\xea\x3e\x6a\x9a\x56\x77\xda\xb7\x31\x1e\x55\x5c\x25\x6d\xe0\xae\xea\xb1\x5b\xba\x43\xf6\x5a\x2c\x2a\x01\x1f\xd4\x46\xb1\x15\xeb\x26\x33\x99\x96\x98\x0e\xe5\xea\x39\x4b\xa4\x3e\x55\xd2\x68\x77\x98\xcf\xa0\x10\xe6\x04\xfe\x87\xd1\xe2\x1f\x7e\xe0\x0b\xc2\xfe\x4a\xc6\x37\x5f\x9f\x9e\x9d\x49\xb1\xe0\x4b\x72\x77\x90\xcd\x69\x74\x77\xf0\x8f\x7f\xdc\x89\x67\x26\x72\xe3\x84\x20\x01\x3b\x56\x6c\x9d\x02\x3e\x3b\xc6\x1f\xc0\x33\xa5\xb2\x68\x66\xf9\x48\x7f\x3c\xde\xd2\x75\xa2\xbf\x9e\x00\xb3\xcc\x08\x25\x51\x52\xe4\x8a\x65\x99\x4c\x58\x59\xfc\x63\xf7\x5b\xd0\x9e\x49\xc1\x84\x3a\xd2\x1f\x43\xf9\x10\xc0\x20\xca\xa2\xd2\xc0\xa0\x56\x12\xab\xcc\x79\x86\x7f\xc0\x41\x6f\x64\xc2\xea\x7c\x07\x4c\x92\x16\x6a\x25\x33\xfe\x37\x74\x63\x70\x98\x8f\xda\x7d\x42\xb2\x18\x18\xf8\x4e\x00\xeb\x0b\x0d\x9f\x91\x2b\x19\xa3\x5e\x82\x3c\x18\x6f\x05\x25\xc9\x5a\x0a\x0e\x5e\x79\x32\x23\x31\x4b\x18\xde\x73\x24\xb9\x34\xe5\xdf\x68\x56\x41\xef\x8b\xde\xc2\x3f\xe3\xae\x96\x78\xb8\x3c\xa2\x23\x22\x74\xdf\xf8\xe7\x86\x65\x73\xf7\xd5\x83\xeb\x5e\x35\x82\xab\x51\xfd\xb5\xc4\x5b\xf9\x8c\x4c\x6d\x62\x9e\xbf\x16\x2c\xe3\x46\x41\x52\xe6\x4c\x61\x1f\x78\xae\x98\x30\x57\x75\xaf\x99\xa5\x32\x0e\x4c\xac\x1c\x7b\x32\x3d\x7d\x5b\x7d\x6b\xc2\x30\x04\x4f\xa1\xc4\x50\xac\x85\x25\x81\x0b\x34\xe1\x1f\x09\x53\xc6\x22\xb3\x3b\x13\x3f\x4b\xd5\x36\x3d\x9e\xa6\x52\x26\x81\x19\x5a\x58\x7d\xfc\x30\xf3\x44\x46\xf7\x74\x81\x1c\x6a\xa5\xe9\xd1\xe3\xd3\x35\xbc\xdc\xf9\x6d\x45\x45\x9c\x84\xb6\x74\xc9\x54\x68\x43\x81\x51\x65\xd5\xdf\x48\xa4\xaa\xbf\x11\x7a\x08\xf7\xc6\x3d\x59\x53\x41\x97\x2c\x27\x2b\x99\x2b\xc7\xf7\xe0\x93\x40\xa0\xd6\xe7\x93\x2e\xeb\x8a\xb1\x18\x54\x07\x5a\xf6\x54\xd2\xb4\xb5\x28\xc6\x09\x52\xff\x54\x4b\xf3\xf4\xdc\x63\x81\xe1\x25\x3d\x23\xbf\x2f\xe6\xec\xac\xda\x18\x44\xbd\x45\x56\x2a\x4f\x50\x7f\xc0\x95\xee\x31\x27\x9a\x47\x89\xa0\xc9\xa7\x59\x8f\x3e\x17\xce\xb1\x88\xdc\xd1\xbd\x2b\x7b\x86\x12\xbb\x9e\x87\x7c\x10\xce\x5c\x1a\xcb\x7e\x66\x96\x4d\xa8\xd5\xc1\x10\xbe\x20\x42\x0a\x86\x38\x26\x0f\xc1\xe7\x99\xdd\x46\x24\x81\xa1\x93\xf0\x0c\xd1\x1d\x20\xad\x68\x55\xf3\x80\x2d\x31\x21\x90\xb6\x06\x05\xf8\x9a\x0b\x54\xdb\x3c\x11\x21\x90\x09\xbb\x61\xe8\x4d\x6a\xf7\xa7\xa5\x7f\xdd\xcc\x43\xa4\x3a\x87\xc9\x0b\x60\x27\xf4\xd6\x8c\x4c\x07\x75\xad\x67\x8f\x3e\x9c\x38\xbe\x13\xc4\x11\xf9\x36\x57\x6c\xed\x72\x06\xdd\x94\x5f\x23\xec\x7d\xa8\xbd\xf3\x19\x39\xa7\x6c\x2d\xc5\x2d\xeb\x22\xf4\xd0\xf8\xe7\x22\xee\x7a\xb0\x3a\x41\xd7\x9c\xe6\xd9\xd5\x44\xb3\x59\x4b\x2e\x88\x00\xbc\xa3\xa4\x3e\xef\x40\xf6\x8e\x90\x6a\xa1\xf0\xe6\x46\x63\x3d\x9e\x86\xee\xd0\x7a\x2b\x98\x63\xc7\xad\x48\x67\xaf\x01\x1b\xce\x87\x23\x0b\xe6\xc0\xfd\x7f\x67\x34\xe1\x31\xcf\x23\xb9\x61\x59\xa9\xfc\x9e\x4c\xd1\xf0\x43\x63\x2d\x06\xf3\x9c\xad\x5d\x1f\xcf\x56\xee\xc4\xd3\xeb\x6c\x9b\xae\x68\x3e\xf6\xf3\x2f\xe4\x6c\x72\x7e\x43\x68\xa1\xe4\x28\x66\x5a\x82\x02\x4b\x98\x80\x23\x4c\xe3\xb5\xd9\x9f\x8a\x2e\x20\x9a\x22\x6b\x9a\x3e\x62\x4b\xf0\x63\xfd\xed\xa7\x83\x3a\x6c\xec\xb1\x8b\xe0\x76\xc1\xac\x49\x9b\x29\x8f\x17\x25\x8c\x82\xd0\xac\xd9\x4a\x23\x63\xbd\x13\x74\x43\x79\x42\xe7\xfa\x5e\x25\x74\xe9\x00\x2a\x75\xe1\xfc\xcc\xaa\xdb\x81\xfd\xcf\xd1\xdb\x3f\xaa\x13\x19\x27\x97\x0b\x47\xf6\xcb\x55\xa4\x8d\xfd\x74\xeb\xfb\x5d\xe4\xab\xe1\xfc\xfb\xd2\x3b\xbd\x16\x01\xca\x03\x37\xc1\x08\x6c\x5c\x2c\x2d\x2e\x6c\x85\x19\xb6\x4e\x6b\xae\x13\x3d\x59\x60\x73\xc0\xe6\x5b\x0b\x0e\x3d\x71\xab\x85\xae\xd6\xff\xd1\xf7\x75\xe7\x82\x3a\xb7\xc9\x9a\x86\xda\xd9\xcf\x9d\x45\x34\x10\x4f\x6a\x1d\x72\x65\x6c\x8f\xcf\xe3\xe6\xdc\x72\xf6\x9c\x13\x54\x9e\x1e\x23\xbb\xe4\x64\x43\x33\x2e\x8b\x9c\x9c\xdd\x9c\xe3\x6d\xc7\xb3\xf4\x89\xd8\x2b\x0c\x13\x5e\xb0\x84\x7f\xc0\x7e\x1d\x38\x3a\xbf\xd6\x19\x14\x60\xba\x97\x69\xca\x0c\x49\x73\xbb\x9a\x2f\xd3\x46\x47\xe5\x6f\xcd\x6e\x6a\x22\x42\x88\x67\xc7\x9e\xbd\xa7\xb1\xf1\x3a\x67\x2e\x62\x0d\x7e\xe3\x6d\x1d\xe4\x35\x03\x3c\x76\x50\xf8\xd8\x83\xf9\x7e\x68\xee\x7c\x91\xab\x92\x93\x13\x71\xc9\x9b\x69\x3c\x02\x87\x40\x0a\xcd\xa8\x65\xaa\x48\x9f\x42\x4e\xeb\xdc\xf9\xde\x1c\x79\x1b\x13\xbe\x17\x8e\x34\x9e\x54\x1a\x4f\x7e\x52\xe9\xbd\xdf\xb6\xcc\xc0\xe0\x65\x3d\x10\xa4\x40\x49\x19\xbc\x3f\xad\xb3\x20\xdc\xcb\x22\x5d\x66\x34\x36\xc1\x07\x9b\xcf\xc6\xaf\x91\x37\x89\xb0\x52\xef\x33\x32\x67\x24\x63\x6b\xb9\x61\xb1\x71\x94\xb3\x1f\xc8\x4c\xaf\x70\x91\xb1\x7c\x45\xb8\xc8\x15\x4d\x92\x4f\x2a\x42\xb5\x5c\xbf\xfa\x2d\xde\x67\x03\xfd\x50\xa9\x01\xc4\xec\xb1\x46\xa6\x4a\xea\xa6\x7a\x47\x51\x21\x41\x93\x44\x46\x9f\x76\x91\xbf\x3c\x25\xc0\xa7\xb8\x98\x74\x5d\xc3\xa6\x41\x35\xcf\xd7\x7a\x85\xa4\x5a\x7f\x3d\x21\x19\x9c\x66\xe0\x5c\xe6\x5b\xb8\x67\xb8\x41\x99\x2c\x34\x8e\x59\x2e\x33\x1b\x50\xf4\x84\x7b\x11\xe4\x1b\x0c\xc9\xc5\xc3\x02\xa7\x63\xcd\x97\x06\x0b\xd4\xd8\xfe\x18\x24\x17\xb0\x02\x7a\x8e\x5f\x44\x85\xf1\x20\x7d\x56\xde\x33\x10\x7f\x95\xb9\x68\x9a\x9f\x83\xbb\x09\xf9\x7c\xaa\x6b\x46\x8a\x5c\xbf\xd2\xf8\x7d\xa4\x4f\x65\x02\x93\xf0\x82\x82\xa6\x69\xde\xba\xf2\x6a\x8a\x2d\xfb\xd5\x30\xc5\xb6\x4b\x4d\x61\x69\xba\x53\x9e\x7a\x0a\xb9\x18\xbb\xde\x5f\x16\xc6\xef\xc2\xf2\xef\x0f\x3f\x30\x11\xff\xe3\x1f\x7b\xc9\xc0\xa5\xf8\x0b\x71\xbe\x6b\x2a\xf8\x82\xe5\xca\xee\x6e\xde\x10\x67\x8d\x3d\x85\x65\x47\x84\xe6\xe4\x81\x25\xf0\xb1\x89\x30\xaa\x98\xbe\xdc\xd4\xdc\x06\x16\xc1\x8a\x32\x52\xe8\xb6\x8c\x42\xae\x66\x0d\x1d\x68\xa4\x5b\xb0\x0c\x59\x78\xa8\x0b\xee\x30\xe4\x86\x50\x96\x52\x73\x29\x79\xef\x1a\xe2\xd3\xbc\x97\x78\x1c\x86\x1d\x31\xce\x6b\xd6\x54\xf1\x55\x3e\xa2\x69\xba\xbb\x65\xd6\xf6\xb4\xe3\x53\x0c\x3e\x7f\x97\xee\xf7\xa1\x1e\x88\x41\x76\xb7\x2a\xa3\x8a\x2d\xb7\x27\xc6\x8a\x31\x7e\x57\xfb\x59\x6f\xe2\x0f\x3f\x10\x25\xff\x48\xd7\xc9\xee\x4b\xf2\x77\xc2\x45\xcc\x84\x22\x5f\x60\x3b\x96\xe4\x4c\xff\x8b\x94\x56\x9b\x1b\x99\x24\x5c\x2c\xdf\x39\x88\x35\x73\x7f\x2a\x67\xb9\xa6\x1f\x1c\xa9\xec\x84\xbc\x72\x4e\x11\x21\xf6\xc4\xd8\x65\xee\x5a\xea\x92\xfa\x92\xc3\x8b\x26\x20\xd5\xdd\x50\x11\xad\x58\x36\xb2\x66\x38\x34\x86\x55\x62\x1b\x86\xca\x46\x2b\x16\x17\x09\xcb\xc6\xe0\xf8\x38\xae\x82\x87\xc1\x3e\x99\x71\xf0\x30\x1f\xa5\x32\xae\x62\x44\xe2\xca\x6e\xba\xf9\x7c\xfc\xea\xf3\xf1\x17\xe0\xe6\x46\xec\xd0\xfe\xf4\xa6\x78\xe6\x8f\x08\x05\x9b\x1b\x38\x32\xc2\x21\x36\x43\x9c\xc6\xb1\x14\x39\x46\xe2\xca\x84\x19\x74\x0a\xc1\xa8\x47\x6e\x27\x6b\x8a\xe6\x3b\x06\xee\x75\x10\x65\x62\x67\x49\x68\x1c\x8f\xc0\x99\x5a\xe4\x05\x48\xc3\x46\x27\xea\x7e\x9f\x66\x5c\x66\x5c\x6d\xed\xca\x21\x56\x45\x98\xa0\x04\xb4\xef\xba\xa6\x87\x8c\xa1\x19\xce\xed\x82\x2f\x74\xc7\xe0\x47\x04\x1a\x57\xb6\xe1\x91\xaa\x45\x85\xf4\x87\xea\x09\x39\x34\x86\xdb\x9a\xa5\x55\xef\xa4\xc7\x91\xb1\xde\x8f\xcc\x4f\x48\xc2\x45\xf1\xc1\x36\xf8\xe1\x07\x93\xe8\xed\xbf\xee\x8f\xc8\x7f\x6d\xc8\xc9\xef\xc8\xf8\xca\xe9\x89\xd8\x63\x6b\x1a\xff\xd7\x3d\xf9\xc7\x3f\x4e\xc8\xdd\x81\xfe\xf7\x46\xbf\x3d\x70\xba\x62\x22\x76\x3e\xd0\xd4\xc6\x08\xec\xf5\x40\xf2\x6a\xb7\xea\xbb\xfd\x96\xde\x33\x92\x17\x59\x1d\xa1\x01\xc0\x2c\x78\xc0\x31\x12\x92\x13\x69\x96\xd7\x81\xdf\xc8\x04\x6b\x9e\x90\x2b\x79\x6b\x1a\x57\x6f\xc1\xc3\x24\xa3\x1a\x34\xe4\xa2\xa6\x27\xc6\x71\xb3\xfb\xd6\xf3\x81\x9c\x04\xab\xf6\xbf\x36\xf0\x3d\xdb\x9e\x78\x0e\x65\xbf\xd1\xdd\x79\x5f\x7c\x60\x51\xa1\x7a\x4d\xbb\xcb\xb2\x6a\x0e\x55\x8d\x5c\x5d\xf9\xd0\x2d\x76\x56\x22\x14\x03\x10\x2e\xf8\x9a\xff\x8d\x91\x58\x3e\x08\xc5\xd7\x8c\xc4\x78\x3b\xa8\xc5\x52\x2e\x63\x6f\xcd\x8e\xbf\x25\x8a\x25\x89\x4b\x1d\x94\x24\xb1\x24\x94\xdc\x1d\x40\x1a\xd6\x6a\x00\xfb\xc9\xdd\x41\xe5\xe4\x50\x3f\xa9\xb1\x8c\xf2\xe3\x48\x8a\x88\xa5\x2a\x3f\xb6\x59\xac\xf2\x63\x50\x33\xa4\x32\x3e\x7e\x66\x63\xc9\xb8\x14\x23\xb9\xd0\x37\xa3\x3a\x0f\xce\xbb\x6f\x32\x1a\xb1\x29\xcb\xb8\x8c\x6f\x59\x24\x45\x9c\x9f\x90\x97\x0d\x94\x57\x65\x97\x44\xc5\x93\x6d\x60\xef\xfe\x59\x42\xf3\x1c\x01\xf8\xc3\x0f\x64\x8c\x9c\x9c\xbe\x28\xd3\xdd\x06\xe4\xef\xa5\x65\xe2\xee\x00\x89\x17\xea\xb2\xed\x99\xba\x3b\x70\xee\x88\x66\x1f\xcf\x2c\xc5\x6e\xe2\xbe\x8a\x9a\x5b\xd9\x22\xaf\xcb\x60\x3b\x1c\x1d\xa8\x25\x71\x83\x35\x5f\x3d\x76\xfb\x9b\x28\xc3\x3f\x5a\x0b\x28\x3a\x5f\xda\xdc\xbd\x4d\xd9\x0c\x5c\x78\xf9\x82\x6c\x65\x81\xd1\xd4\x34\xc9\x18\x8d\xb7\x6e\xa7\x66\x32\xa0\x65\x2d\x72\x16\x18\xdc\x7a\x7f\x99\xd6\xf0\xda\x3d\xe5\x7c\x0d\x3e\x0a\x3f\xfc\x30\x3e\xbb\x9a\x4c\xf4\x1f\x2e\xda\x81\xb0\x97\x35\xd5\xec\xc5\x9f\xee\x0e\x8e\x65\xaa\x8e\x23\xc1\x8f\xe7\x5c\x1c\x3b\xc3\x81\x6f\xf9\xc1\xc8\x0c\x51\x72\xb0\xf8\x30\xb1\x79\x93\xc9\x75\xcd\x27\xc3\xea\x60\xdf\xd2\xd4\x32\x90\xee\xf3\x8c\x9c\x42\x14\xcf\xef\xdf\x7d\x7d\x71\x73\x75\x31\xbb\xb8\x7d\x7f\x7b\x71\xf3\xdd\xe4\xec\xe2\xfd\xb7\xd7\xb7\x33\xa0\x00\x9e\x77\xd3\xeb\x9b\x99\x09\xe2\x92\x1b\x96\x65\x3c\x8e\x19\xe2\x0f\xf6\xf5\xf4\x0d\x59\x5b\xf9\xde\x7d\x10\x38\x4e\x12\x0e\xab\x2b\x1f\x59\x65\xcc\xee\x17\xd6\xd9\xbc\x99\xa0\x83\x89\xcd\xce\x52\x2c\xf0\x9d\xc9\x5e\x5d\x9f\x5f\xbc\xbf\x3a\x7d\x7b\xb1\xdb\x2f\x38\x50\x35\x20\x85\x0f\x78\x98\xfa\x20\x55\xbe\x9c\x52\xb5\x3a\x81\x9b\x34\xd6\x27\x1e\x82\xc1\xbc\x53\x39\x3b\xbd\x9c\x9c\x5d\xbf\xbf\xba\x98\x7d\x7f\x7d\xf3\xfb\xc9\xd5\x37\xef\xbf\x3e\x3d\xfb\xfd\xc5\xd5\xf9\x3e\xf3\x29\x77\xef\xf7\x6c\x1b\x9a\x56\x8d\xc3\xac\x9b\x15\xdd\x07\x30\x38\xb6\x7a\x6f\x63\x13\x9c\x66\x1b\x99\x14\x6b\xf6\xd6\x17\xf5\x3e\x22\x6b\xfd\x33\xae\xfc\x78\x43\xb3\xe3\x84\xcf\xe1\x78\x5a\xed\x9b\x7f\xb3\xab\x7b\x3b\x12\x4c\x8d\x62\x9e\xb5\xf5\xab\x5b\xbb\xe7\xde\xdf\x67\x24\xf8\x68\xce\xc5\x6e\x67\x39\x8b\x0a\xc0\x50\x52\x28\xf6\x61\xb7\xfe\x49\x9a\xf1\x0d\x4f\xd8\xb2\xee\x36\x44\x7c\x18\xa8\x26\x72\x68\x49\x62\xce\x05\xcd\x6a\xf1\x86\x68\x6c\xd3\xef\x76\x24\x8b\x05\x4f\xc0\x83\x1f\x64\x0b\x51\xbf\x04\xf6\x54\x98\xfe\x47\x91\xe0\x9f\x04\x39\x98\xfe\x06\x54\xe0\x2c\x04\x28\x94\x71\x8f\xd5\xdb\xe4\x6e\x8f\xa6\x1d\xa0\xf8\x19\x07\x6e\xed\xd5\xe4\xfd\xd9\xf5\xd5\x9b\x30\xe6\xd0\x8c\xe1\xab\x97\x23\xa3\x42\xd1\x7d\x83\x5e\xe9\x60\x77\x16\xd6\xfe\xb0\x73\x48\x20\xbc\x04\xf6\x2c\x74\x54\x76\xa7\x63\x30\x08\x4c\x6b\xf2\xcd\xbf\x14\x7b\x08\xfe\xde\x2c\xe7\xbd\xaf\xe9\x33\x72\xcb\xd0\x57\x54\x5f\x66\x48\x4c\x50\x06\xfa\x80\xb3\xda\x57\x39\x4a\xd8\xfa\x55\x60\xc5\xbf\x00\x0c\xfe\x0c\xf6\xed\xed\xec\x1d\x31\x4c\xe7\x86\x66\x5c\x4b\xa6\xe1\x3d\x7a\x3b\x7b\xf7\xaf\xdc\x98\x0d\x53\xab\xf7\x6b\x55\xec\xae\x63\x9a\xb1\x0d\x13\xa6\x5c\x51\x85\xe4\x80\xab\xca\x13\xc6\x20\xca\x70\x21\x75\xab\xdd\x92\x66\x76\x75\xb7\x97\x17\x17\x8d\xba\x80\xe5\x45\x58\xd0\x24\x67\xf5\xb3\xdf\x9b\x90\x7c\x14\xc2\xf7\x76\xc6\x54\x64\xc9\xd2\xb8\x11\xca\x5d\x75\xe7\x21\x46\x8f\xa7\x1f\xa7\x71\xac\x39\xcb\x37\x09\xfb\x40\xbe\x83\xa5\x93\xf3\x8c\x6f\xc0\x95\x9a\x5a\xfb\x8f\x6e\x91\xb2\x0c\xf4\x05\xef\x04\xff\x40\xce\xe5\x9a\x72\x41\x6e\x65\x74\x8f\x39\xda\x20\xe4\x92\x9c\xf3\x7b\x9a\xab\x3a\xb1\x01\x23\x3c\xf8\x43\x47\x54\x99\x78\xfc\x37\x2c\xe1\x1f\x00\xe1\xba\xa1\xe9\xb7\x5b\x11\x91\xd3\xe9\xc4\x43\x76\x16\x09\xfb\xb0\x91\xc9\x28\x86\xa9\xf9\x29\x8f\x5e\xc2\x77\x32\x99\xac\x97\x75\xda\x13\xdc\x50\x7f\xe7\x23\xbd\x15\x75\xf8\x35\x36\xaa\x39\x8d\xc7\x6d\x40\xe4\x97\x2a\x6e\x0a\xd0\x23\x7b\xf4\x85\x25\xce\x75\x04\x38\x40\xbf\x3b\x75\xb7\x9e\xb9\x42\x49\x26\x97\x19\x5d\xe7\x25\x26\xb7\x01\x83\x22\x46\xcd\x7b\x6e\x7b\x75\xbf\xd7\xeb\xf4\x6c\x84\x47\x32\xad\xef\x82\x96\xb7\x3c\x0c\xc0\xff\x6c\x8a\xfe\x2e\x67\xee\x8e\x9d\x4e\x27\x56\xd9\xab\x39\x59\x8d\xc4\x62\xaa\x28\x18\x21\x03\x68\xec\xfc\x74\x76\x7a\x3b\xbb\xbe\xb9\x78\x3f\xfb\xe3\x34\x4c\xd8\xab\x25\x34\x09\xfa\xf7\x94\xab\xd2\x13\xab\x6b\xbc\xef\x4f\x27\xb3\xf7\x6f\xae\x6f\xde\x97\x03\x07\xc7\x04\x00\x34\x46\xd3\x94\x74\x6f\xe2\xa9\x29\xe6\xbf\x86\x60\xae\xa4\xcc\x59\xb9\x23\x4c\x58\x61\x39\xc4\xd7\xfc\x7b\x09\x47\xb0\x44\xb4\x02\x60\x01\x3f\xcd\xc5\x41\x9e\x91\x05\xa6\xb0\x77\x82\xbb\xf5\xfb\xc0\xa2\x2f\xdf\xdd\xce\x2e\x6e\x3a\x4e\xe0\x57\xf9\xd1\x7c\x99\x36\x0f\xc4\x69\xe5\xb3\x05\x43\x7e\xfd\xcd\xd4\xc9\xc9\x1d\x80\xf3\x24\x4c\xba\x69\xa1\x24\x76\xd7\x1c\xeb\x42\x80\x91\x71\x32\xdd\xfd\x7e\x67\xff\x26\xd3\xef\xbe\x98\x5e\x5f\x5f\xbe\x6f\xb6\x74\x46\x3a\x85\x68\xd4\xe0\x28\x32\x23\xe7\x3c\x87\x7f\x7e\xf7\x87\xcb\xd3\x2b\x7b\xe0\xad\x86\x69\x32\x25\xa9\x94\x49\xfb\x49\x2a\x67\x02\x5d\x04\xa7\x72\xa5\x39\x1d\xff\x65\xd3\xfc\x1e\xdc\xee\x42\x08\x96\x90\x98\x81\x6b\x1e\x44\xaf\xf3\x05\xe1\x29\x4f\x21\x22\x1b\xe6\x1c\xfb\xe7\xf2\xe6\xe2\x72\xf2\x07\x0d\x8b\xab\xc9\xf4\x17\xca\x11\xd6\x56\xba\xb2\x10\xaf\xad\x39\x00\x68\x5c\x1c\xb4\xff\x37\x59\xdb\xf7\x3c\x63\xcb\x82\x66\xf1\x1e\xeb\xfb\x7e\x72\x73\xf1\xcd\xbb\xd3\x9b\xf3\x5f\xe8\x1a\x67\xb5\x8b\xb1\xf9\x02\xae\x46\x25\xd5\x3a\x3e\x45\x3b\x3e\xe3\x63\xf0\xfe\x9c\x4c\xcb\x1a\x1d\xbb\x3d\x47\x2b\x99\x6b\x42\x8f\x36\x2c\x9e\xa3\xcd\x64\x4c\xce\x56\x54\x2c\x31\xca\xd0\xe6\x60\x36\x7e\x2f\x35\xe3\x3b\xf4\xba\xa2\x9b\x46\xbf\x42\x1a\xed\xbf\xc9\xe2\x6c\x62\x3e\x17\x5a\x02\x36\xc5\x53\x46\x23\x63\x62\x1d\x45\x3c\xde\x15\x44\x7c\x16\xbb\x0b\x27\xc1\x02\x53\x0d\x1c\x70\x36\x39\xbf\xe9\x87\x2d\x9a\x2d\x1d\x64\xf1\xc3\x0f\x63\x83\xf4\x75\x33\xd7\x0c\x64\x67\x66\xf1\x16\xa8\x16\x12\xb9\x04\x38\xe5\x12\x83\x03\x54\xa2\x7f\xca\xc1\xb4\x1c\xc2\xcf\x66\x3e\xe7\x93\xdb\xd3\xaf\x2f\x2f\xde\xbf\x99\x5c\x5e\xbc\xbf\xbc\xfe\xe6\x9b\xc9\x95\x5f\xd0\x6f\xe7\x17\x50\x2c\xa8\x82\x36\x25\x70\xa1\xe5\x79\xc1\x9c\x67\xfa\xe7\xd3\xb3\xb3\x8b\xe9\xac\xf5\x22\x9c\x5f\xbc\x39\x7d\x77\x39\xbb\xb8\x3a\x9f\x5e\x4f\xae\x66\xb3\x6b\xcd\x33\x9e\x9e\xcd\x26\xd7\x61\xec\x8a\xdd\x86\xc1\x34\x99\x6e\x5e\xeb\x13\x5a\xb1\x72\xad\x53\x98\x4c\xbf\x7b\x7d\xfb\x6e\xaa\x19\xd2\x7d\x04\x50\xff\x91\x81\xc8\x77\x74\xc4\xd3\x47\x06\x47\xb8\xbc\xfe\x46\x83\x7c\x7a\x3a\xfb\x56\x83\x05\xae\x0b\xba\x52\xe3\xb6\x02\x3c\xed\xbe\x2a\x09\xfb\xdc\x36\x63\xa7\xbf\xe0\x8c\xf5\x20\x1f\x33\xe1\xdb\x8b\xef\x2e\x6e\x26\xb3\x3f\xde\xfe\xf1\x16\xe7\x6c\xee\x24\x5c\xdc\x32\x5e\x44\x2c\x64\xeb\x4a\xf2\x6d\x9e\xc8\x65\xc7\x5a\x9c\xa1\x82\xcb\x69\x3b\x89\xce\x78\x77\x07\x0f\x34\x13\x5c\x2c\xfb\x2c\xfd\xd6\xbb\xde\xb3\x9b\x8b\x8b\x2b\xdd\xd7\xf7\xd8\x53\x73\xc5\x7d\x97\x03\x3d\x05\x57\xf4\xbd\x7f\xa2\xf5\xee\xbe\xbd\x38\xbd\x9c\x7d\x7b\x71\xa5\xaf\xad\x9f\x69\x0d\x5f\xd5\xb6\x05\x4f\xa6\x33\xdd\xe5\xad\x61\x87\x41\x35\x50\x28\xf4\xba\xae\x38\x36\x93\xbe\x4a\x2c\xb0\x7c\x64\xfb\x25\xaa\x75\xd8\xca\x0e\xd6\xa7\xfa\x58\x9d\x88\xcf\xa3\xca\xfe\x8e\x31\xe2\x0d\xea\x18\xa5\xc5\x09\xf9\xec\xcb\x97\x35\x83\x59\xc2\x37\x4c\xb0\x3c\x9f\x66\x72\xbe\x5b\x23\x8d\x7d\x68\xc4\x5f\x57\x4a\xf2\xdd\xdf\x47\xc4\xb5\xa3\xed\x8a\xde\xd8\x62\x04\x37\x64\xa4\xc7\xf4\xbc\x9c\xf3\x2c\xf6\xbc\x4b\xeb\x16\xd7\x57\x2f\xeb\xaf\xc1\x6d\x8e\x26\xe7\x2c\xa1\xdb\x60\xa3\x05\xe5\x49\x91\xb1\xd9\x2a\x63\xf9\x4a\x26\xf1\x09\x79\x5d\x07\x25\x8d\xf9\xcf\x0d\x85\x1d\x0b\x68\x1d\x0c\x9e\x97\xad\x70\xe8\xad\x0f\x4c\xf8\xfc\x78\x2d\xe3\xc2\x93\xe4\x0b\x0f\x74\xc2\xe7\xa3\x40\x03\x3d\xa9\x6b\x91\x6c\x7d\xc9\xfc\xeb\xa3\x64\x85\x38\xfe\x80\xd7\x66\x9c\xc8\xe8\xde\x3f\x94\x69\x31\xf2\xb5\xa8\xc6\x42\xe2\xd3\x32\xd8\x86\x66\x30\x20\x02\xdd\x3f\xd4\x86\x66\xa3\xac\x10\x23\x7f\x9b\x3d\x07\x03\xc3\x5c\xc7\x60\x1a\x8c\x8f\x1a\x0c\xbb\x40\xed\x57\xbe\x15\x8d\x54\x3d\xbe\x95\xeb\x73\x46\x97\x8d\xbc\x11\xcf\xb0\x26\xac\x55\x28\x1d\x91\x07\x06\x3e\xa2\x46\xf1\x04\x34\x0b\x02\xbf\x0b\x93\x7c\x42\xb7\xd4\xd4\x17\x9d\x0d\x08\x55\xe4\x38\xdf\xe6\xc7\x8b\xfc\x78\x9e\x2e\x34\xcb\xf5\xc0\x4c\x6b\x4c\x65\xb5\x3b\x1c\xa4\xd7\x53\x24\xe6\x19\xb8\xfc\xec\x56\x63\xb3\x8b\xcb\xb7\xf9\xa2\x71\xb8\xdc\x75\x99\x41\x9b\xba\xb6\xaf\x39\xf6\x8d\xf9\xd1\xd6\x8c\x0a\xcc\xa6\x00\xe9\x9f\xca\xc9\x75\x2f\x85\x2b\x64\xa5\xd3\x4c\xa6\x74\xa9\x59\x7a\x13\xce\xb7\xa3\x50\xb4\xe3\x9a\x64\xac\xc0\xe8\xf1\x9c\xdc\x0b\xf9\x20\x5c\xd0\x51\x55\x1b\x0c\xbd\x1b\x30\xbf\x6f\x7d\xca\xc6\x6f\xc2\x24\x73\x6d\x8c\x84\x40\x30\x93\x02\x7f\xc7\xda\xe7\xb6\x39\xde\xf6\xba\x3a\xd6\x06\x10\xb9\x0e\x9f\xd5\xfb\x51\xfb\xed\xd6\x0b\x03\xd8\xef\xa0\x9c\x16\x9c\x31\xea\xbc\x59\xed\x9d\x86\x6e\xed\xa8\xf3\x12\x75\xf7\xeb\xbb\xa0\xa3\x0e\xa4\xd3\xde\x6b\x3b\x42\x43\x4f\xcc\x37\x3c\x61\xd7\xd9\x59\xcd\xe3\xbd\xe5\xd0\xb7\x0f\xe8\xbd\x02\x38\xce\xb9\xbd\x5e\xcd\xc1\xaa\x40\x45\x6b\xfe\x3c\xbb\xf2\x59\x2a\x02\xf6\x9e\xf6\x29\x79\xad\x48\xa3\x76\x93\x4f\x7b\x8f\x01\x53\xd2\x33\xf2\xd6\x41\x32\x15\x3a\x01\xfe\x6c\xd7\x4f\xc9\x0d\x8e\xb0\x05\xc4\xdd\xae\x40\xb7\x04\x89\x1b\x76\x1c\xdb\x9d\x8e\xea\xbe\x4e\x65\x24\x8a\x13\x84\xe2\xf6\x68\xfd\xe4\x73\x9b\x15\xc8\x75\x46\x02\x7e\xa4\xb2\x6b\x78\x60\xdf\xee\xb0\xd1\xf3\x70\x7b\xdd\x42\xaa\xdd\x37\x7a\x8a\xb0\x35\xcc\x73\x91\xfd\x24\x27\x30\x9f\xce\x93\x48\x9a\x37\xdd\x43\xa5\x9a\xe7\xb5\x69\xe2\x6b\xce\xb4\xc3\x14\xb6\xef\x94\x7f\xf8\x61\xa4\xf7\xd4\x9a\xe6\xa6\xe0\xd5\x7e\xce\xeb\x1e\xab\xd5\x7a\x2a\x23\x5e\xd9\x12\x7d\xb3\x47\x84\x25\x39\x0b\x7c\x75\x5c\xe4\xb0\x75\x9a\x9b\x74\x1c\x14\xe1\x9f\x09\x53\x23\xe3\x4b\x7f\x8c\xa8\xfd\x18\x9a\x95\x00\xfb\x7f\x8a\x38\x37\x23\x18\xbf\xd8\x5e\x49\x71\x5c\xbf\xf9\x2a\x36\x62\x37\xf2\xe0\xf1\x8e\xf4\xfb\x06\x21\xec\x06\xf8\x97\x01\x09\xb7\x8c\xb9\x19\xaa\x56\xc5\x7c\x1c\xc9\xf5\x71\x2d\x8e\xe6\xb8\x99\x1e\xc0\x1b\x17\x60\xa2\x07\x9c\x3c\xb3\xfb\x24\x47\x78\x74\xd4\x80\x27\x01\x82\xf5\xa9\x46\x7d\x62\x2d\x7d\x10\x35\xc5\x81\xd1\x19\x12\xb2\xe1\x25\x0c\x54\x47\x1b\x86\x57\xc1\x66\xb8\xc9\x58\x9a\xf0\x88\xe6\xe0\xaf\xff\xa8\x68\x04\xdf\x22\xf3\x2a\x26\xa1\xba\x1a\x37\xac\x8a\xd6\xea\x0a\x07\xe8\x04\x23\x21\x6d\xa0\x24\x7d\x22\x0a\x42\xdd\x82\x3b\x00\x32\x3b\xd6\xe7\x56\xb3\x62\x34\xbb\xdf\x71\xb9\x4e\x65\xc5\x61\xf9\xe3\x02\x7e\x76\x5f\x79\x8b\x6b\x66\x95\xe3\xba\x83\x30\xea\xee\xec\x4e\x54\x88\xdb\xbc\x0c\x09\x79\x1d\x40\x3b\x21\xa7\x78\xbf\x46\xc4\x69\x6d\x6d\x42\xc1\xe4\x55\x92\x60\xb2\xc0\x84\x29\x28\xa2\x57\x88\x90\x13\xfd\xe0\x82\xdf\xcb\x05\xdf\x45\xe9\xd8\xe6\xa3\xdd\xf1\x43\xb7\xa6\xe1\x9a\xff\x31\xfe\xea\x3b\x59\x81\x7a\xb9\xae\x97\xd6\x07\x9f\xf7\xba\xd7\xc7\x64\xd4\x0f\xcd\x90\xba\x6b\x67\xd5\xc0\xef\xe1\xd1\xf0\x7b\x30\x66\x75\x2c\xf5\xe1\x9e\x77\x25\xf5\x11\x0f\x08\xb1\x46\x2b\xf9\xfe\xec\xfa\x6a\x76\x73\x7d\x79\x79\x71\x13\x52\xdf\x36\xb5\x40\x7b\xf9\x4b\x38\xde\x12\x4f\xa5\xb2\xd2\xbc\x09\xa8\xad\x56\x2c\xba\x1f\xd5\xf3\x1a\x55\xcd\x46\xd9\xcf\xc4\x77\xec\x43\x96\xf7\xe5\x41\x98\x8a\xe2\x51\xae\x29\x9d\xb2\xfc\x47\xcf\x2f\xd5\x56\x53\x88\x9e\x9f\x98\x08\x72\x36\x8a\xa8\xa0\x89\xf9\xea\xe0\xe8\xff\x47\x08\x39\x30\xfd\x6d\x3e\x1f\xbf\xfa\xf5\xf8\xd5\xc1\x09\x39\xd0\x7d\x99\x90\xde\x99\xe9\xa3\x72\x4b\x31\x2f\x4c\xf3\xde\xd3\x35\x89\x2f\x6a\x31\x9f\x67\xd6\x7e\x4a\x78\x5e\xa6\x8c\x2f\xe7\x8a\x05\x2e\x17\xc0\x4f\xb3\xd8\x8e\xeb\xda\x1f\xab\x94\x46\xb6\xa3\xe6\x66\x87\xb7\xb5\x32\xc6\x86\x36\xb3\xfc\xee\x19\xe6\xd7\xd1\xd3\x34\xc6\x15\xa4\xe4\xb0\x07\xef\x0d\xf6\x7b\x8f\xbd\xbb\xc6\x9e\x67\xe4\xac\x5c\x4d\xc0\x4d\xa6\xee\x7f\xa2\x3f\x9f\xf3\x2c\xf6\x7f\xfe\x76\xf6\xce\x86\xa3\x68\xa2\x61\x63\x87\x30\x25\xee\x82\x46\xa6\xbc\x13\x1a\xbe\x91\x80\x3d\x23\x23\x32\x59\x38\x56\xf1\xca\x9d\xe1\xc8\x96\x8a\xdd\xca\x22\x2b\xfd\xdc\xf4\x18\x23\xf2\xfa\xa5\xfd\xf8\x5a\xad\x58\xf6\xc0\x73\x06\x3a\x2d\xe3\xab\x91\x11\xab\xc4\xeb\xd9\xdf\x97\x81\xfe\x26\xd3\xc9\xb4\x67\x17\x9f\x05\xba\xa8\x64\x5f\x2a\xb6\x84\x89\x88\xa6\x79\x61\xe3\x7c\x02\xdd\x8d\x2b\xce\x47\x77\x6e\x19\x17\xdd\x1b\xc3\x9f\x5e\x1a\x62\x60\x4d\xf2\xc6\x34\xfc\x76\xf6\x0e\x4d\xc2\x86\x52\x7a\x58\x1e\xf7\x8b\x57\x5f\x7c\xf1\x72\xa7\x75\xd8\x4b\xdc\x26\xcf\x08\x39\x8b\xc3\x67\x40\x1d\x51\xf3\xf6\xcc\xa6\x53\x07\xbd\x04\xb7\x99\xee\xaa\xda\x47\x85\x92\x6b\x0a\xb4\x2d\xd9\x92\x54\x9a\xac\x91\x78\xea\x1a\x4e\xdd\x27\xe4\xef\x23\xc4\xb1\x3f\x58\x54\x7b\x77\x20\xa0\xea\x91\xf1\x50\xd2\x6c\xe7\xc8\x7c\xe4\xd4\x73\xb9\x3b\x88\x84\xbd\x72\xd8\xf6\xe5\xf8\xf3\xf1\xab\x5a\x0b\x23\x4d\xea\xd7\x7f\xaa\x10\xf9\x0f\x2e\x4e\xbf\x3b\x00\x1f\x2a\xe8\xc0\xe8\xca\xea\x35\x63\xee\x0e\x12\xb9\x7c\x9f\xb0\x0d\x4b\xb0\xd5\xf7\xa7\x37\x57\x93\xab\x6f\xbc\xcd\x16\x3c\x61\xef\xb5\xa4\x8b\x4d\x51\x51\x21\x97\x06\x19\x81\xbe\x22\x12\x7c\x9c\xc8\x65\xe3\xf3\xd2\xc9\xef\x7d\x35\x21\xd7\x43\x70\xa7\xb9\xde\x9a\x0a\x4c\xef\xdf\xfb\x5c\xd9\xdf\xbf\x6f\x7c\xb6\x56\x85\xfe\xe2\xfd\x7b\xe3\x48\xfe\xfe\xfd\x4e\x03\x8c\xfc\x3a\xa9\x03\xc9\x0f\x28\x13\x25\xe6\x36\xfc\xc7\x4e\x6f\xa8\x4c\xe9\xec\xef\xfe\xab\xbc\xbd\x1f\x17\x10\xde\xbe\x4c\x86\x44\x8d\x58\x1d\x80\x60\x14\xc3\x7b\x6b\x26\xd7\xf0\xa8\x8d\x52\xfd\xe1\x0e\x18\x3c\x1f\xa9\xcc\xd4\x9a\xa6\x0d\xa0\xe6\x82\x2a\xdd\x42\x65\x05\xdb\x79\x15\xd1\x94\xce\x79\x82\x29\x2d\x60\xea\xd0\xcb\x5b\x9a\xa6\x5c\x2c\x73\xfb\xd5\xbe\x33\x99\x53\x11\x3f\xf0\x58\x9f\xb3\xee\x01\x9d\xc6\xcd\xd1\xec\x3f\x4d\x48\x4f\x0f\x0e\xe2\x3e\x8e\x47\x51\x16\xd7\xd8\x86\x4f\x5f\x23\x00\x89\x5a\x23\x0b\xcd\x13\xa4\xf2\xff\xfa\x9b\x69\x2d\x9d\x27\xbe\xab\x12\xfa\xef\xbe\x6f\xa6\xf5\x0f\xe4\xca\xa9\x92\xfb\xef\x36\xb8\xab\x52\xfc\x1b\xa7\x9f\xbb\xa7\xc9\xef\xbf\x3b\xf7\x7a\x72\xf0\x3a\xfe\xc7\x02\x3b\x5b\xf0\xf5\xcc\x64\xa1\xea\x22\xe1\x90\xdf\x7f\xc8\xef\xef\x6e\xc1\x90\xdf\xff\x67\xcb\xef\xbf\x7b\x89\x9b\x59\xfe\xeb\xf5\x6d\xf4\x05\xae\x5d\xed\xfe\xe9\xfc\x69\x7e\x05\x15\x25\x3d\x2e\xa5\x3b\x17\xfa\x16\x1b\xda\xb2\x21\x56\xcd\x71\x7a\x6b\x6a\x52\xa2\x5c\x35\xdf\x12\x6a\xb8\xc8\x3f\x9d\x63\x13\xaf\xb7\xea\xeb\x2f\xbe\x7c\xf5\xd9\x9f\x0f\x9b\xaf\x30\x9f\xdb\x89\xbe\x9d\x9f\x7f\xd6\x7c\x8d\x20\xd5\x57\x77\xd9\x2c\x83\x69\x77\xde\x5f\x09\xba\xb6\x9e\xb3\xaa\x29\xde\x0f\x5b\xaf\x00\x61\x69\x4e\x90\x85\x33\xe6\x2a\x61\xbb\x41\x62\x06\x84\xd9\x9c\xab\x8c\x66\x5b\x53\xf6\x0e\x1c\x84\x29\xfa\xa6\x61\x04\xcf\x5e\x05\x0e\xbc\xd3\xdc\x56\xdb\x9f\x2b\x2a\x62\x2d\x60\xc9\x8c\x24\x34\x5b\xb2\xdd\xe9\xfa\x3a\x25\xb0\x04\x7d\xd3\x3c\xf1\x1d\xf8\x74\x56\xd1\x06\xf2\xe4\x7f\xe5\x29\x9a\x6d\x8a\x08\x57\xf1\x65\x76\x7a\xc1\x3a\xbe\xdd\xf5\x7b\x51\x31\xd4\x6b\x0a\xdf\x01\x9e\x83\xf4\x66\x73\x08\xd7\xc5\x73\x45\xee\x0e\x28\x3d\x11\xe2\xee\x00\x2a\x25\xe2\x1f\x27\xeb\xb5\xb7\xe2\xaa\x7d\xde\xc8\xac\x82\x7a\xb5\x1a\x2d\x1d\x57\xdd\x61\xff\x47\x26\x2f\xb8\xfe\xfd\xee\x40\x03\x3d\xdc\xed\xdd\x01\x7c\x48\x33\x46\x5e\xbd\x26\x73\xae\xcc\x45\x1a\xc3\x80\xbb\x5b\xeb\x8c\x06\xf3\x0d\xf7\xeb\x9b\xc9\x51\x39\x9a\x88\xb5\x50\xb0\x36\x03\x7f\xfe\x59\x6d\xe0\xef\xf5\x27\xde\xca\x63\x76\xca\xb0\x2c\x2c\xd7\x77\x7a\x4b\x10\x25\x84\x3a\x4f\x59\x36\x3a\xbd\xb5\xa1\x2c\xbc\x11\x04\x5a\x3d\x29\x55\x9a\x16\x9f\x90\xff\xf3\xfc\xee\x2e\xfe\xff\xbf\x38\xc1\xff\xfd\xd7\xdf\xeb\x7f\xdb\x9f\x1f\x7b\x82\x1e\x5d\x7c\x39\x81\xda\x0b\x53\x99\xf9\x90\x59\xed\xdc\x5d\x96\x2d\x2d\xa2\x84\xb2\x93\xb8\x17\x1a\xb7\xa4\x99\x54\x32\x92\x89\xe5\x5e\xb0\x6b\x2f\x64\xce\x6d\x25\x3e\x25\xc9\xab\x5f\xff\xa6\xd9\x64\x4d\x3f\xf0\x75\xb1\x3e\x21\xaf\xbf\xfc\xf2\xf3\x2f\x3d\xef\xb9\xc0\xf7\xaf\xf6\x44\xa4\x89\x5c\xde\xb2\x0d\xcb\xb8\xda\xde\x46\x19\x63\xbb\xbc\x5e\x63\xd9\x87\x97\xbb\x5f\xd8\xe5\x27\x72\x49\x72\xf3\x86\xd0\xb9\xdc\x58\x85\x73\x22\x97\xde\x1a\x7a\x50\x2a\x9c\x89\x32\xd1\x78\xae\x62\x59\x28\x87\x9c\x90\xc9\xd5\x9b\x6b\x1f\xe9\x68\xdb\x7e\x4d\x92\x66\x90\x6e\xe6\x2d\xcb\x57\x18\x1b\xe4\xab\xde\x5d\x5f\xd5\x95\xef\x2b\x92\x33\x55\x15\x79\x5c\x14\xc6\x8e\x83\xee\xd2\x4d\xbf\x47\xfd\xe8\x8d\x5f\x43\x72\x98\x52\x03\xe5\x2e\x48\x8b\x68\xe1\x05\xcd\xa5\x4c\x18\x6d\xf0\xc4\x69\xc6\x16\xfc\xc3\xa9\x9b\xd4\xbb\x93\xea\x4d\x3d\xdf\x54\x94\x05\xbc\x26\xa0\x45\x3d\x57\xb8\x6f\x45\x6d\xec\x06\xd9\xa3\x94\x5f\x73\x42\x95\x5e\x36\xaf\x4f\xc3\xa1\x50\x7e\x04\x60\x23\x73\xaa\xaa\x98\x67\x93\xf3\x9b\xc7\x11\xbb\x88\xc7\x3e\x9e\xc8\xb3\x04\x48\x79\x0e\x5a\x52\x38\xd6\x55\xcf\x6e\x19\x6c\xbb\x8e\x70\x15\xfb\x6e\xea\xd7\xce\xdd\xf8\x66\xe6\xf0\x38\xc6\xab\xc7\x72\x39\x8c\xc3\xe1\xad\xc8\x0b\xb0\x2e\x61\xc4\x6f\x3d\xfb\x50\x96\x83\x32\xe7\x77\x07\x9a\x2d\xcd\xc7\xce\x28\x48\x55\x7b\xb1\x23\x04\xa5\xba\x4e\xaa\xdc\x42\x7c\xdb\xc9\x54\x3b\x55\x6e\x27\xbe\xe1\x9e\xbb\xa8\x72\x27\xf1\x6d\x9b\x74\x07\x55\xee\xa4\xbd\xbd\xfa\xee\x4f\x94\xc3\x57\x18\x9f\xee\x13\xdb\x4a\x53\xc9\xc7\x10\x64\x63\x09\x31\xba\x94\xc9\xb4\x13\xf3\xdd\xee\x7e\x00\xc0\x80\x1c\x2e\xfa\xfe\x62\xea\x5f\x14\x5d\xf1\x1e\x9b\x11\xbc\xb8\xcf\xc4\xea\xda\x5e\x8c\x27\x1e\xc8\xa9\x8b\x0a\xfb\x94\x15\x75\xb1\x68\xaa\x45\x01\x58\x1a\xd5\xd7\x2f\x4e\xa2\x4c\x3a\x0a\x46\x7c\xb1\xad\x0d\x67\x42\xda\xd4\x8a\xad\x1f\x8f\x74\x77\x61\x81\x59\x81\x2b\xc9\xde\x71\xcc\x31\xa5\xba\xcb\xa6\xfe\x7d\xae\x40\xf8\x04\xc8\xf6\xc9\x98\x3a\xb3\xc3\x17\x1f\x50\x0d\xd4\xff\x10\x39\x5f\xf8\x4f\x91\xcc\x9c\x20\x34\xdf\x9c\x4d\x47\xc4\xf6\xa4\xf7\x76\xec\xe6\x20\xd8\x6d\x50\x46\x56\x82\xf7\xd4\x6e\x78\x25\x3e\x15\x91\x31\x35\x81\xb7\x58\xe9\x0c\x8f\x8c\xa9\x98\x8f\x75\x79\x71\xa2\x1f\x7d\x82\xaa\xd9\x75\x1e\x21\xff\xee\x3a\xeb\xff\xb7\x3c\x44\xff\x5e\x55\x05\x8d\xea\xfe\xe9\x35\xf8\x90\x2c\xfe\x69\x14\xf7\x53\x66\xa5\x95\x9a\xbe\x5e\xff\xec\x55\xd3\x3b\x79\xeb\x6b\xda\xf9\xd4\xf4\xf3\x54\x4a\xf9\x41\x7b\x3e\x68\xcf\xdd\x2d\x18\xb4\xe7\x3f\xa7\xf6\x5c\xa3\x83\x7e\xa5\x71\x4d\xe3\x47\x14\xc2\xed\xab\x39\x9f\xad\x58\xc5\xae\x5b\x8d\xbd\x46\x3f\x1e\x32\xf7\x31\xca\xef\x7b\xc6\xd2\x6b\xcc\x16\x9e\x5c\xb1\x0f\xea\x5b\x99\x76\x4d\xed\x3a\xb5\x7e\x20\xfa\x63\x98\x98\xc9\x37\x9e\x10\xc1\x3e\xa8\x95\x4c\x31\x47\x0f\xc6\x91\xa0\x32\xbb\x4b\x67\x03\x30\x25\x1a\xa8\xfa\x8c\x2b\xb8\x24\x36\x56\xd9\x95\xed\x61\x47\xc0\x83\x98\xc5\xfa\x13\x5f\xbf\xba\x97\xbc\xd4\xae\x14\x26\x07\xd0\xdd\x81\x9e\x1c\xd1\xb3\xd3\xf3\xfe\xad\x96\x8a\x44\xae\x18\x8d\x35\x78\x9d\xb7\x39\x4b\x16\xbf\xbd\x3b\x78\x6e\x6c\x15\x2f\x7c\x43\x98\x58\x9b\xd2\x19\x74\x9e\x51\x11\xad\xec\x3e\x5d\xe9\xa1\xa5\x30\xce\x52\xe3\x68\xb1\xf4\x6a\x8a\x5b\x15\x35\x7a\xfa\x7d\x0e\x49\x99\x7e\xa9\x4c\xfe\x63\xf1\x8b\x91\x23\x4c\xf9\x00\x74\x92\x87\xe0\x3b\xef\x82\x72\xa2\xb4\x94\xaa\xd0\x1a\x03\x48\x05\x8e\x1b\x06\xf3\x61\xb2\x62\x8d\x21\x72\xa6\x4c\x5d\x3c\x59\x73\xe7\x0e\x74\xea\xc8\x35\x10\xdf\x07\x5d\x81\x46\x93\x41\xb1\x39\xfd\x71\x5e\x79\x35\x5b\xc0\x56\xe5\x0d\xfc\x40\x0b\xab\xeb\x3c\xee\xe5\x5e\xd8\x95\x89\xd6\xad\xfe\x07\xc7\x87\xe0\x44\x43\xe4\x20\xdc\xa0\x84\x04\x17\xcb\x31\xd1\x52\x75\x63\xab\x60\x5a\x06\x44\x00\x9e\xf2\x0c\xe0\x35\xb0\xf6\x04\xb6\x4e\xd5\x6e\x90\x67\xd7\x92\x52\x9a\xe7\x0f\x32\xeb\x54\x3a\x5e\x9b\xdc\x65\x08\x5b\xf3\x51\xb9\x36\x33\xff\x9c\x2c\x99\x60\x19\x75\x36\x39\xa0\x77\x6c\xc3\x6e\xa4\x9b\xaf\x46\x8f\xd1\x96\xb4\x33\xde\xcd\xd0\x24\xf3\x9e\x6d\x81\xf3\x30\x5d\xd8\xf3\x00\x87\x38\x95\xf1\x61\x5e\x79\x43\x06\x54\x10\x9d\x2c\x3f\x66\xb3\x09\x6b\x28\x1a\x57\xcc\xcc\x09\x51\x0f\xcc\x4a\x49\x73\x74\x81\xf0\x8e\x09\x79\x8b\x5b\x1c\xee\x94\x10\xaa\xf9\x00\x1e\xdb\x2e\xee\x99\xef\x28\xd8\xa7\x8f\x96\xa4\xd5\xb2\xd6\xd0\x49\x3b\xf9\x67\x33\xb6\x60\x19\x13\xca\x4b\xd4\xdb\xb2\xc1\xcb\x8d\x96\xe0\xd8\xc3\xb1\xa9\xf3\x37\xd2\x52\xe2\x08\x69\x6d\x7e\x0c\x1b\x73\xfc\xac\x43\x27\x48\xc8\xec\xfa\xfc\xfa\x84\x9c\xc6\x31\x91\xa0\x4e\x2c\x72\xb6\x28\x12\xbc\x2b\xf9\xd8\x61\x76\x8f\x80\xd7\x3a\x22\x05\x8f\xff\x2f\x8f\x9e\x7b\x1f\x58\x95\xa9\xfd\x7a\xc2\xeb\x16\xd0\xd6\xb6\xd4\xd7\x6b\xb0\xdd\xe2\xc6\xc9\x0c\x2c\xa2\xfa\x50\xac\xbb\x77\xdd\xa8\x3e\xbb\x66\x1f\x20\x02\xf8\xd8\xc2\x57\x81\xc9\x43\x14\x86\xff\x55\x1f\x01\xd5\xff\x56\x63\x8c\xc9\xb4\x0f\x01\xaa\xf2\xbd\xb9\x6c\x0a\x59\x48\xa3\x05\x9a\x6f\x41\x8e\xb0\xf8\x29\x95\x99\x97\x00\x19\x77\x00\x28\xe6\xc5\x32\xd0\x3f\x00\xed\x01\x43\x98\x28\x9d\x08\xc0\x3e\x7c\x64\x35\xc0\x95\xae\xfc\xee\xe0\x4f\x77\xc5\xcb\x97\x9f\x47\x93\xe9\xe6\x35\xfc\x8b\xfd\xf9\x04\xc6\xf2\xda\x3c\x41\x61\x5c\x7e\xf0\x05\x7e\x70\x82\x3f\xc0\x57\xf0\x03\x6a\x66\x21\xa7\x15\xcc\xa5\xb6\x08\x67\x52\x96\x2e\x7a\x99\x1c\x70\x02\x30\x34\x04\x80\x25\x62\x52\xba\x45\xcc\x59\x22\x35\x5e\x06\x0e\xc8\xb8\xd0\x01\xae\x83\x94\xaa\x95\x59\xd0\x8f\x64\x01\x3d\xee\xba\x7d\x18\x42\xfb\xc0\x0c\xe7\x43\x15\x4e\xd7\x40\x76\x5f\xfa\xa3\x79\xe2\xc7\x92\xd4\x8c\xad\xa5\x2a\x29\x6b\x6d\x67\x81\x90\x06\x29\x90\x4b\x48\xa7\x70\x12\xeb\x60\x43\x5c\xb1\x43\x58\xd1\xe4\x5e\xcf\x79\x5a\x5f\x88\xe6\x8c\xe6\x4c\x3d\x30\x26\x8c\x95\x31\xa2\x89\x2d\x91\x1a\x57\x7c\xa5\x3b\x6f\x48\x03\x51\x32\xa0\xfe\x1d\x36\x59\xcf\xcc\x08\x7c\x41\xe6\x52\xad\xb4\x28\x96\x23\x0f\xa1\x79\x81\xaf\xbf\x99\x6a\xa4\x32\xd6\x4d\x4f\xcd\x7d\xa9\x98\xa3\xd0\xc9\xc1\xbe\x5f\xf7\xef\xfb\x75\xa3\xef\x31\xd1\xd7\xd4\x37\x80\x59\x66\xe5\x8b\x13\x49\xf0\x44\xb1\xb2\xa4\x03\x86\xc3\xbc\x36\x90\xdd\x08\xef\xbc\xcd\xe6\x63\xe5\x4c\xb7\x5a\x38\xd6\xed\x29\xaf\xcb\x5e\x27\x71\xd0\x99\x79\x74\x66\xf5\x52\x78\x4f\xa1\x3a\xd3\x23\x9c\xe2\x08\xdb\x86\x02\xcd\x7d\xe9\x51\xa3\xf9\x0a\xf5\x39\xda\x34\xe7\xf5\x76\xd0\xa9\x0d\x3a\xb5\x41\xa7\xf6\x9f\xa7\x53\x73\x31\x44\x4f\xcd\x5a\x13\xe3\x54\xcf\xfe\xea\xb6\x80\x79\xa7\x8d\xe3\x31\x45\x9a\xba\x98\x9d\x73\x5b\xcb\x49\xc4\x90\x04\xdf\xa8\x0e\xe0\xe4\xcc\xdd\x82\xa9\x5b\x7d\x6e\xe7\x0c\x12\x82\xe3\x37\x5e\xb9\x0f\x22\x0e\x51\x5f\xe0\x9e\x73\x2c\xca\xbd\x4e\xa9\xe2\x10\xae\xb1\x45\xce\x50\x26\x31\x08\xe8\x09\xa3\xb9\x19\xda\xd7\xe9\x9a\xe7\x8a\xde\x33\xa8\xd4\x97\x31\x3b\x3d\x1c\x85\x56\xa3\x3c\x42\xcd\xb2\x27\x50\x35\xd5\xdd\xef\x9b\x80\xd0\x33\x82\x2d\xdd\xfd\xcd\x00\x76\xf7\x67\x5f\x28\x31\xcc\x64\xe0\x2d\xba\x78\x0b\x4f\x21\xee\x27\xe0\x2f\xac\x87\x40\x35\xca\x2e\x93\xd1\x6c\xd1\xe4\x34\x82\x45\xc3\x2b\x6e\xa3\xd9\xe4\x29\x59\x8e\xba\x3f\x55\x63\x05\x3b\xd1\x35\xc6\x51\xa3\xd4\x25\x3b\x93\x1c\x02\x6b\x06\x36\x66\x60\x63\xfe\xd5\x6c\x4c\xf3\x06\xb7\x85\xd6\xe0\xa7\x73\x0f\x11\x0c\x1b\x36\xda\x38\x18\x40\xa1\xfe\x3b\xde\x9c\xa9\xdb\xd8\xfa\x52\x9b\x4b\xae\xe7\x66\x4c\x42\x86\x53\x29\x67\x13\x50\xc1\x64\x85\x10\x5e\x9d\x6a\x1b\xa5\x37\x5d\x7e\xf3\x6e\x72\xde\x39\xdb\xaa\xa9\x9d\x2b\xfc\xdb\xa8\x11\x83\x93\xeb\x31\xfc\x4c\x37\xe9\x37\xbc\x6e\x6a\x37\xcd\xa0\x45\x28\xa7\xf1\x31\xb3\x28\x83\xb4\x6f\x18\x8d\x7d\xb6\x86\x3a\x2b\x59\x6b\x5d\x26\x9b\x30\xa5\x5f\x73\xbe\x14\xc0\x25\x0b\x55\xf5\x5b\x95\xb1\xf7\xea\xcf\x94\x84\xcf\x4c\xae\x3e\xb9\x4e\xa5\x00\xff\xaa\xbc\x88\x56\x9a\xf1\xc3\x54\xd8\xa6\x8e\xb2\x45\xdc\x0f\x94\xeb\x5b\xbe\x90\x01\x35\x57\x14\xb1\xbc\x4c\xe2\x17\xaa\x35\x43\xba\x54\xda\x50\xb7\x4c\x74\x46\x44\x7c\x87\xcd\x48\xcc\xa2\x84\x66\x2c\x37\xfe\x95\xe6\x6b\xe7\x2c\x3b\xee\xd2\x90\x0f\x6c\xd0\x2a\x7d\x24\xe7\x07\xe9\x96\x9f\x3c\x9a\x1a\x4e\x60\x6b\x3c\x75\xb3\x45\x93\xf3\xf3\xcc\x75\x97\xf3\x6b\x36\xf9\xd9\x38\x3f\xbc\x65\x7b\x05\x56\xc3\x27\x03\xd7\x37\x70\x7d\x03\xd7\xf7\xaf\xe6\xfa\x9a\xf8\xa7\x2b\xa0\x1a\xef\xfb\x63\x43\xaa\x93\x44\x3e\x4c\xa6\x93\xe9\x94\x42\xc6\xd9\x37\x99\x5c\x7f\x6f\xab\xaf\x77\xc7\x59\xb7\x7d\x6d\xb3\xb4\x55\xe1\x67\x30\x53\x1f\x91\x37\x41\x07\x31\xa1\x24\x2b\x30\xdf\x79\x9c\xc9\x14\x13\x21\x55\xc9\x8b\x58\x4c\x54\x46\x17\x5a\x5a\xc5\xe0\x07\x3b\x94\xaf\xcf\x2a\x62\x0d\x32\xb8\xef\x1d\xb2\x06\x90\x81\xcc\x4e\x8f\x07\x4d\xf0\xf3\x4f\x00\x1b\x4c\x3a\xf5\xaf\x02\xce\x43\x7e\x9b\x45\xe7\xb9\x3a\x5b\xb1\xe8\xbe\x13\x18\xb7\x4c\x11\xc4\x2f\xa3\x98\xe5\xca\x96\xf1\x87\x4c\x76\x44\x0a\x72\xfa\xfd\x2d\xb9\x38\xfb\xac\xf4\x17\xcb\xc7\xe4\xd4\xf0\x33\xbe\xd9\x6f\xea\xf1\xd2\x18\x2c\x70\x77\x70\x2e\xaf\xa4\x5a\x41\xbd\x92\x23\x72\x77\x60\x22\x20\x6d\x9c\x96\xa9\xbc\x13\xdf\x1d\x74\x44\xfb\x97\xdd\xf8\xa0\xc2\x44\xe1\xab\x79\x35\xaa\xbe\xf2\xbd\xc4\xa9\x78\x3f\xc3\x59\xed\xc7\xe7\xcf\xd3\xc5\x99\x14\x82\x45\x6a\xc6\xd7\xec\x52\xd2\xf8\x6b\x9a\x50\x11\x71\xb1\xec\x1b\x2c\xfa\xf5\xf4\x4d\x47\x17\xe8\x46\xc9\x45\x99\xd4\xcc\x6b\x75\xf5\x9f\xe3\x7a\xed\xf0\x08\x07\xd2\x3b\xae\xf8\x9a\x11\xc8\xce\x36\x87\xe1\x58\x16\xb6\x13\x9b\xcf\x3c\xdf\x80\x94\x68\x14\xb5\xa5\xd5\x1f\xd2\xfe\xd7\x6a\x26\xf8\x3a\xcd\x76\x4b\x9e\xda\xf2\x9c\x26\xe7\x00\xe1\xeb\x34\x93\x1b\xc3\xb2\xa4\x2c\x03\xe1\x5b\x44\x70\xc4\x52\x19\x8f\x94\x1c\xb5\x45\x5b\x95\x4b\xcd\x71\x61\x18\x03\x93\x31\x9a\xa3\xef\xaa\xad\x42\xc4\xc1\x24\xad\xe7\x1e\xb3\x79\x81\xf9\x17\xd2\x22\x4b\x65\xae\x0f\x7f\xfb\x01\x7d\x54\x04\xee\x3c\x5d\x68\x81\x6f\xb2\xa0\x11\x9b\x9a\x08\xf6\x8e\x43\xf2\xf5\xf4\xcd\xee\x27\xc8\x4f\x64\x0c\xb8\x5c\xc2\x3e\x68\x86\x00\x18\x3d\xac\xf0\x6b\x0e\x83\x17\x8d\x81\x20\xe5\xe4\xe4\xc3\x83\x62\xf8\x38\xaa\x94\xde\x17\x7d\xd4\xca\x1a\xb3\x90\xf1\x8d\xc8\x2c\x06\xff\x1c\x2f\xb4\xa9\x8a\x56\x25\xd6\x53\xf2\xb8\x64\x3f\x4c\x42\xb6\xb1\x31\x70\x08\xc6\xe2\x1c\xf3\x0f\xc3\x17\x2b\xe6\xcc\xc4\x0b\x62\xbd\x1c\x1b\x11\x67\x13\x0a\x96\xe8\x35\x91\x0f\x39\x96\x1c\xde\x89\x7e\xeb\xd1\xe9\x8a\x8a\x58\xef\xbf\x88\xe4\x1a\x38\xb0\x72\xf6\x60\x37\x48\x65\xa6\x72\xe3\x16\x62\x0e\x26\x2c\x4a\x16\x2a\xe7\xfe\x78\x6d\x57\xbf\x43\xc8\xa4\x14\xac\x35\x1f\x55\xad\xd7\x97\x16\xf1\x79\x91\x17\x34\x49\xbc\x5e\x5c\x5a\x12\x89\x41\x0d\x34\x1e\x8f\x5f\xec\x69\xaa\xd1\x87\x0d\x0f\xfa\x3b\xe1\x54\x47\xea\x81\x94\x3c\x9f\x41\x3e\xc3\x32\x15\xa2\x39\x36\xcc\x54\xf2\xbe\xd7\xf7\x38\x19\x17\x4e\xfb\xf7\xf3\x74\xf1\xde\x26\xa4\xf4\x2d\x2d\xdf\xe6\x91\x4a\xdc\xdb\xe8\x7e\x0e\xfe\x4b\x72\xa1\xcf\xa2\x3d\x3e\x4c\xe4\xc6\x0b\x9c\xaa\x5a\x5b\x5f\xef\x45\x6e\x92\x87\x6b\xf8\xa3\xf6\xc2\x9c\xa4\xc3\xc3\x1c\x91\x29\x4d\x73\x5b\xbd\x40\x37\xe2\x22\xd7\x32\x0c\xe4\x6c\x21\xf2\xc1\xeb\x8e\xd7\xbc\x19\x7a\x17\x99\x09\x99\xab\x06\xf8\xe8\x48\xfd\x79\xba\xd8\x83\x86\x5c\xd8\x6d\xa9\xb6\xc8\xec\x10\xb0\x2d\xd6\x09\x5e\xcf\x5e\xf3\xc8\x69\x42\x85\xdf\x81\xf6\x63\x19\x12\x3d\x6d\x13\x9f\x67\xe2\xfd\xde\xf6\xf0\x64\x87\x25\x34\x3f\xab\x51\xbd\x8a\xc4\xad\xe4\x83\x8b\xe0\x7d\xcb\x70\xef\x6a\xcd\xcc\x02\xae\xbb\xe6\x42\x3f\x37\x6e\xc5\xf6\xa6\x3b\x31\xb3\x5e\xaf\x7f\x9a\x41\x66\xd3\x07\x9a\xc5\x98\x0c\xd6\x78\x48\x95\x1c\x9e\xbe\xf6\x0b\x9b\xd5\xf3\xee\x60\x06\x99\x4e\xef\x0e\xd0\x23\x6f\x2e\x95\xd7\x33\xcd\x88\x5d\x58\xbb\x9b\xe5\xa9\x14\x7a\xb3\x0c\x36\xe2\xb9\xc9\x97\x8a\x03\xee\xb8\x65\xc1\x78\xde\x9b\x65\xa7\x70\x7e\x7b\xa3\x99\x30\xfc\x0e\xc7\xf1\x75\x3d\x2f\x94\x69\x53\x1f\x3f\xa0\x19\xce\xab\xba\x45\xc9\xd6\xeb\x30\xa6\x67\x26\xec\xf8\x66\xff\xaa\x26\x5e\x3c\x07\x6e\x78\x69\xca\x28\xe6\x92\xb6\x47\x76\x32\xb5\xf2\x15\x17\x4b\x70\x6d\xd3\x2d\x7f\x6b\x35\x16\xc0\x7c\xe4\x84\xfa\xba\x4c\x59\xb6\xe6\x79\xce\x37\x8c\x5c\x7e\xe6\x90\xa2\xea\x8c\xe3\x0e\xed\x9b\x16\x64\x9e\x2e\x34\xe3\x32\xcd\xe4\x87\xed\x85\x91\xaf\x6f\x13\x7d\xa4\x7a\xde\xd8\xaf\xa7\x6f\xda\x3b\xf0\x1f\x7c\x3f\x39\x77\xd8\xbd\xc3\x9c\xb0\xf5\x9c\x41\xbe\x7f\x48\x15\x9c\xea\x11\x8c\x4a\x32\x27\xf5\xa1\x34\x37\x2e\x64\xd8\x0d\x2f\x7c\xc1\xcb\xb9\x4f\x52\x2c\xf2\x73\xa6\x1b\x16\xe9\x1e\xf8\xaa\xa3\x8b\x1a\x1e\x43\x58\xf8\x16\x8f\xe0\x71\xf0\x5c\x9a\x49\x54\x03\x27\x5b\x12\xe9\x1e\x49\x91\x9a\xa2\x33\xb9\xca\x18\x5d\xbb\x1c\x67\x05\xa1\xc3\x43\xbf\x1b\xaa\x99\x1b\x89\x56\x5a\xe4\x1f\x13\x72\x8b\x14\xdd\xc4\x53\x57\x33\x5c\xb8\xe0\x36\x2e\x8e\xc6\x7c\xf2\x54\x4c\x64\x09\xc1\xb7\x5c\xdc\x6e\x45\x34\x85\x82\x77\x7b\xc1\xbe\xf6\xe5\x51\x00\xd9\x36\x0a\x97\x19\xd0\x63\x96\x20\x02\x42\x81\x75\xaa\x45\x55\x51\xa9\xf2\x2b\x29\x4d\xa5\xdb\x3c\x74\x8e\xa8\xaf\xdb\x0a\x8c\x63\x42\x2e\xe5\x03\xcb\xac\x92\x65\xa9\xaf\x71\xc6\xe2\x22\xc2\x64\x3a\xa3\x22\x05\x9d\xa2\x88\x74\xd3\x6f\xf9\x72\x55\xb6\xf5\x63\x59\xfd\xa5\xd5\xc9\x4e\xdf\x91\x22\xa7\x4b\x46\xe6\x5b\x32\xd7\xac\x99\xe6\x00\x8b\x94\xac\x65\x86\xe8\xbc\x86\x25\x5e\xe5\x8f\xc0\x10\x97\x72\x79\xc9\x36\xcc\x17\x72\xd0\xd8\x11\xdb\xb6\x06\x75\x48\x82\x04\x09\x85\xcb\x8c\x7d\x0e\xef\x11\xc0\x05\xa5\xa0\x58\xc1\x7e\x8d\xe8\xf8\xda\x4a\xe7\xd7\x8b\x05\xca\xe5\x13\xb1\x90\xfa\x5f\x28\x95\x6b\xe9\x47\x8b\xe4\x21\x29\x10\xea\x06\x6b\x0a\xc8\xb0\x1a\x9b\xdd\x64\x3d\x98\xca\x68\xc4\x48\xca\x53\x76\x64\xed\x44\x9a\x9b\x03\x8e\x08\x05\x4f\x48\xa6\xef\xeb\xf6\xee\x40\x45\x90\x81\x5f\xc3\x0c\x65\xb0\x9a\x62\x80\x5c\x2f\x16\x7f\x1e\xef\x09\x7e\xb8\xaf\x13\xe0\xe6\x7a\x71\x1f\x67\xf5\xf6\x21\x61\x7a\x25\xe5\xbd\xcb\xed\x06\xd0\x86\x92\xe9\x08\xf7\x6d\x07\x81\xe8\xd3\x86\x3c\x26\xe4\x03\x47\x35\x92\x31\xc5\x2a\x99\x9a\x6d\xf6\x0a\x58\xfa\x7b\xbd\x51\xf3\x2d\xd0\x48\x11\x37\x7b\x98\x4b\xa5\xe4\x7a\x6c\xb9\x58\x63\x51\xcd\xe9\xa2\x4c\xbb\xe8\xe5\x14\xb8\x96\xa9\xb9\x22\x69\xc6\x36\x60\x24\xac\x78\x64\xdd\xbb\x11\x7b\xd0\x81\x6d\xbe\x4d\x69\x9e\x9b\x94\x25\x5b\x59\x90\xfc\x81\x2b\xbf\xbf\xbd\x92\x66\xa2\x06\x9f\xcc\x4d\x79\x93\xd2\xf6\x8c\xc1\x3f\x38\x84\x8d\xfa\x43\x28\xa1\xe9\x32\x64\x83\x4c\x31\x90\x71\xbe\x85\x72\xdd\xa8\x3b\xcf\x64\xb1\x5c\xd9\x03\x69\xa4\x45\xe8\xf9\x08\x87\x79\x30\x19\x54\x7c\x7d\x9a\xe6\x98\x82\xba\xcc\x4e\x5e\xad\xb4\x3a\x89\x08\xd8\x7d\x51\x41\x79\x11\xb1\x3e\xd7\xde\xde\x88\xf3\x62\x69\x64\xb1\x4b\xb9\x3c\xcf\x24\x64\x84\x0e\xf6\x12\xa0\x17\xd0\xcd\x5b\xb6\x96\xd9\x76\x9a\xc9\x05\x4f\x98\xa7\xe4\x57\xaf\xb9\xdc\xf2\x35\x28\x39\xcf\x68\x12\x7d\x93\xd1\x74\xf5\x2d\x15\xcb\xd3\x85\x7a\xdc\xca\x6c\x6f\xe7\x16\x48\x8f\xef\x0d\x36\xc9\x72\x38\x33\xf9\xad\xcc\xd5\x29\xc8\x07\x9d\xb7\xff\x3c\xfc\xad\x8b\x09\x40\x67\xa0\x8f\x74\x1e\xd0\x82\x94\x1a\x04\xdd\x74\x29\xed\xd5\xa1\x95\xc8\xef\x96\x41\xaf\x2a\x64\xaa\x9c\x25\x0b\xf2\x1c\x0a\xd8\x87\xf4\x0a\xb6\xef\x15\x37\xf2\x76\xd9\x15\x43\xa6\x18\xcf\xef\x8b\x31\xf9\x7a\x5b\xc6\x5c\x9c\x79\x2b\xaa\x92\x32\x69\x90\x5f\x4f\x5d\x76\x9d\xfb\xa6\x09\x38\xdd\x1f\xa9\x56\x62\xbb\x9f\x7e\xfc\xef\xf3\x9b\xeb\xe9\x4f\x3f\xfe\xd3\xd4\x77\x2f\xf1\xc5\x03\x35\xe1\xde\x49\x22\x1f\x48\x2e\xd7\x4c\x23\x35\x9a\x24\x6d\x02\x07\xcc\x6e\xb7\x82\xbc\x29\x9e\x00\x91\x55\x34\xa3\x6b\x66\x84\xbb\x9b\x8b\xd9\xbb\x1b\xa8\x01\x61\x0a\xca\x93\x77\xfe\xbc\x49\xa6\x21\xc7\x89\x41\x2c\x0d\xd4\x61\x90\x0f\xa2\x8e\x95\xdc\x65\x4d\xae\xa6\xef\x66\x7a\x5d\x80\xaa\x7e\xdb\x82\x4f\x00\x91\x58\x54\xac\x2c\x2e\xdd\x45\xf6\x54\x61\x4f\x26\x68\xeb\xa7\x1f\xff\x1b\xa7\xf5\xd3\x8f\xff\xf4\x0a\x34\x68\xc1\xb0\xfb\xd2\x98\x10\x91\x06\x99\xaf\x68\x0e\x7e\x1f\xe8\xa3\x9c\x66\xd2\xfa\x6e\xd8\x4d\xf6\xf5\xee\x3f\x52\x00\x40\x03\x4c\x90\xcb\x44\xe9\xad\x00\x95\x1b\x10\x27\xdb\xa9\x05\xf7\xaf\x94\x91\x09\x9c\x73\xdf\x9c\x42\x13\x68\x57\x53\x68\x94\xb8\x37\x4e\x66\x1b\x1e\xb1\x1b\x59\x28\xcd\x08\x43\x66\xcd\xee\x50\x47\x9e\xd7\xac\xe8\x90\xd7\xa0\x4a\xcc\x49\x63\xa3\x13\x30\x0c\xda\x9a\xc5\x66\x18\x2f\x37\x0a\x49\x11\x8e\x34\x15\xb3\x97\x15\x8e\xb2\x25\x3f\x37\xb3\xe9\xcd\xf5\xec\xfd\xd7\xd7\xd7\x33\xe4\xea\x12\xb6\x50\x64\x9e\x50\xe1\xcb\x73\xd4\x9a\xe1\xc1\x59\x2b\xe6\xea\x37\x11\x62\xbd\x16\x6c\x99\x08\x34\x49\xdb\x38\x4f\x23\x9d\x4b\xb1\xcf\x62\x6b\x98\xc9\xd3\x29\xcf\x9d\x45\x1e\x91\x84\xd1\x8d\x31\x8c\x7b\xe5\x04\x60\xc0\xc0\xbd\x09\xeb\x51\x79\x7a\x2c\xfc\x99\x13\x5b\x0f\x06\x52\xda\x33\x29\x84\xe6\x69\xef\x27\x02\x82\xb6\x43\xc6\xb5\x56\x9a\x6b\x4f\xf3\x0d\xe8\x92\xb9\x58\x42\xd1\xf5\x3d\xe9\x5a\xa3\x93\xb0\x8c\xdd\x3e\x19\xa3\x5c\xbb\x92\x31\xcb\x2f\x79\xde\xe9\x80\x75\xe1\x7e\x70\x36\x39\xbf\xd1\x1f\xd5\x93\x5e\xeb\x5f\x0f\xc1\xfa\x6d\x7b\x1f\x09\x69\x4b\x1b\x43\x01\xbb\x16\x03\xc4\x9a\x6e\xed\x7e\xa1\x16\xaa\x24\x46\x54\x94\xa9\x17\x98\xa3\xfc\x32\x6f\x03\x59\xcc\x8c\x91\x52\x23\xd8\xa8\xca\x7b\xb1\x5f\xb2\xb2\xf6\x40\xf2\x96\x9c\x70\x0b\xca\x13\xcd\x67\x4f\xc4\x5c\x16\x22\xd6\xec\xc3\x54\x66\xdd\x89\x55\x0f\xdf\x04\x3e\x44\x38\x83\xd4\x34\x8a\x59\xc2\xd7\x5c\xaf\xcd\xc0\xdd\x37\xf5\x77\xe7\xd3\xe3\xd9\xd9\xd4\xe8\x32\x81\xae\x38\x5a\x11\xa4\xb6\x3e\x4b\x07\x50\xf6\x92\xde\xfb\x7a\x96\x82\xf0\x2c\x63\x79\xca\xb0\xdc\x66\x95\x08\xa1\x80\xe4\xbc\x96\x48\x58\x74\x61\xa2\xf9\x35\x8d\xdf\x48\xee\xa5\x33\x34\x8a\x20\x57\x09\x90\x8f\xa8\xc0\x64\x2f\x72\xb1\x20\x14\xe7\x03\x2c\x86\x9e\x6d\x96\xb1\x48\xed\x38\x54\x90\x8b\x50\x80\xaf\xcc\xdc\x80\xf0\x2a\x9d\x2b\xcd\x89\x8a\x52\x27\xb8\x7b\x84\xe1\xae\x18\xe3\xad\x39\x85\x22\x0e\xbe\xf6\x12\x9f\x37\x5a\x10\xa3\xd1\xfd\xa8\x16\x99\x73\x64\x12\xe8\x55\x34\xc1\xc6\xba\x56\x39\x50\xb8\xb2\x28\x30\xe4\xb7\xf9\xd3\x8f\xff\xad\xa2\xf4\xa7\x1f\xff\x39\x26\xb3\xca\x2e\x42\x81\x99\x80\x43\x82\x30\x82\x8d\x3e\x2a\x95\xa4\x68\x88\x17\x32\xa0\xd4\x9f\x39\xa9\xf7\xb1\x29\x1c\x89\x9c\xe4\xf9\xca\x9a\x46\xf4\xb5\x3b\xff\xf6\x6c\x5a\x33\x5c\x44\xe9\xc9\x67\x9f\x79\xed\xcd\x1a\x66\xaf\xbf\x3a\x82\x26\xaf\x7e\xfd\x1b\xfc\xc7\x67\x9f\x57\xff\xfa\xea\x25\xfe\xeb\xf5\x17\x5f\x7c\x6e\xfe\xf5\xfa\xf5\xeb\xf2\x5f\xbf\xf6\xd1\xec\xde\xf9\x7f\xa5\x92\x36\x5b\x76\x24\xd7\x73\xe3\xc7\x00\xa6\xe1\x92\x20\x8b\x18\xa0\x74\x14\x54\xbc\x93\xd2\x73\xa1\x0a\x96\xf6\x9e\xac\xae\x8c\x22\xa9\x3f\xc5\xb7\xd9\xd3\x36\xe2\x5c\x0e\x10\xe2\x41\xdc\x3e\xc2\x29\x2e\x5a\x33\x44\x8c\x82\x39\x17\x46\xe5\xc8\x61\x74\xf8\x88\x14\x99\x16\x1d\x5e\x17\xea\x91\xf8\xb0\xf1\x65\x18\x21\x7a\x71\xd6\xa2\x17\x42\x94\x85\x5a\x4a\x17\x21\x96\x85\xce\xdb\xb8\x63\xb4\xfa\xed\x8f\x12\x43\x4a\x12\x8d\x25\x3f\x0e\x25\xfa\x7a\xd6\x58\xf2\x3f\x1f\x25\x4a\x73\x4e\x3e\x0d\x4e\x94\x20\xdb\x33\x15\xc5\x87\x87\x4e\xc5\x0c\x73\x84\xa4\xb1\x3e\x3b\x87\xc9\x8b\xa8\xb4\xdc\xaf\x97\xb8\x64\x4a\xef\x24\xec\x22\x4a\xb0\x2a\x8a\x6b\x7e\x0a\xfa\x10\xea\x7d\xd6\x58\x17\xd1\xef\xd5\x6d\x87\xb0\xf3\x68\x6c\x1b\xc4\xe1\x5f\x7e\x7e\x84\xb8\x7c\x40\xc8\xb5\x01\xfe\xa3\x10\x32\xa3\xaa\xc8\xd8\x39\x53\x2c\x52\xd7\x1b\x96\x65\xbc\x5b\x29\xfe\xc6\xf7\x91\x5b\x09\x55\xda\xdf\xf4\x65\x33\x43\xf8\x4f\x8a\x62\x46\x0b\xf4\x9d\x29\x8c\x93\xb9\xc8\x88\x0b\x8b\xda\x49\xce\x52\x8a\xe9\xc9\x80\xd7\x05\xac\x27\xbc\x0a\x2c\xc8\x00\x96\x1f\x11\xf6\x81\xae\xd3\x84\xfd\x96\xdc\x1d\xdc\x5e\x9d\xce\xde\x14\x49\xb2\xbd\xa1\x22\x96\xeb\xdf\x41\x99\xbd\xb7\xa7\xb7\xff\xdb\xfd\x11\x9c\x1a\x8e\x6e\x18\xc4\x57\xdc\x16\x29\x5c\xee\x4b\x19\xdd\xff\x2e\x50\xcc\xa5\x4c\x42\x08\x56\x12\xf8\xfc\xee\x00\xa9\xc8\x42\xa2\x9f\x76\xb9\xfa\x23\xcc\x44\xa3\x9b\x4a\x63\x24\x09\x1b\xa4\x20\x07\x78\xa1\xe4\x08\xe1\xb3\xb7\xa8\x0a\xa9\xdc\x78\xf4\x87\xf3\x69\x5f\xb3\xeb\x37\xbb\x5f\x18\xfb\x65\x4e\xcc\x1b\xf2\x87\xf3\x29\xc9\x65\x55\xf8\x93\x66\x7e\xaf\x55\x40\x81\xb1\x14\x87\x87\x8a\xe4\x08\x44\xf8\x56\x2e\x16\xa0\xc8\x91\x19\x89\x41\xdb\x0d\xca\x7f\xac\x23\xa0\xd1\xf2\x1f\xce\xa7\x48\x16\xbd\xea\x43\x63\x36\x65\xfa\x2c\x30\x11\xb3\xb8\x32\x4e\x68\xac\x0a\xa3\xa5\x99\xdc\xe8\x33\x37\x67\x0a\xb4\x48\x95\x5f\x60\x60\x9e\xa2\xd4\xdf\x8d\x3f\xda\xb7\x65\xc5\x68\xa2\x5a\xca\x80\xf4\xf8\x58\x73\x34\x7b\xaa\x00\xf0\xc3\x40\x19\x99\x56\x64\x56\x7a\x98\x5d\x7c\x88\x92\xa2\x87\x1d\x6c\xb2\xf3\x81\xcb\x76\xed\xdc\x4d\xb9\xe8\xe3\x64\x57\xf3\x2d\x64\xa6\x53\x50\x68\xad\xa5\xe0\x4a\x96\x39\x0e\xea\x82\xe8\x38\x64\x84\xac\x13\xec\x9a\x3b\x98\xf1\x77\x5d\x0a\xa9\x7f\xaa\xcc\xfc\x87\x87\x64\x32\xfd\xee\x96\xc4\xc5\x7a\xed\x75\xb0\x2b\x97\x71\x64\x7d\x23\x0d\x8e\xb3\xb1\x29\xc9\x96\xcc\xb7\x35\xcb\x74\x5d\x9b\xed\xe5\x16\xcd\x5a\xd7\x45\xa2\x78\x9a\x38\x6e\x8e\xa6\xde\x97\xa9\x09\x6c\x13\x9e\x9b\xf0\x17\x30\xfb\x06\xb8\x5a\x73\xd1\x72\x8f\xd7\x67\x8e\x15\x2f\x3c\x2f\x60\x9e\x40\x55\x1f\x32\x9a\x86\xac\x0b\x08\x4e\x40\xb7\x87\x87\xc7\x87\x87\xd8\x9d\xc1\xad\x64\x85\x9a\x38\x63\x87\x3f\x3c\x3c\xfe\x3f\x1a\x16\xc7\x47\x1b\xa6\x56\xaf\x0e\xbd\x99\xf9\x00\x3f\x5a\x18\xa0\xf0\x5a\x3a\x3b\xc2\x6e\xcd\xd9\x92\x0b\x3b\xa2\xee\xee\xf0\x10\x13\x5e\x25\xb9\x0c\xe9\xfc\x2a\x10\x1e\x1e\x9a\xb1\xdd\x3b\x0d\x1b\xc4\xd3\x4d\xfe\x72\x5f\x75\x70\xd9\x31\x16\x96\xe9\x7f\x4d\xb0\xbd\xd5\x92\xd6\xb7\xd8\x94\xda\x31\x51\x96\xb6\x70\x86\x5f\x23\xd6\xb4\xbc\x80\xe3\x29\x30\xbb\x5a\x14\x28\x78\xbe\x42\xb5\xf3\xba\x12\x52\xca\xd6\xad\xb0\xca\xc7\xe4\x4a\x2a\xc0\x11\x84\x89\x0d\xcf\xa4\xc0\x02\x3e\xd2\x24\x36\xa4\x82\xcc\x35\x2d\x5a\x33\x45\x93\x23\x93\xce\x37\x5a\xb1\x5c\x65\x54\xc9\xcc\x3b\xe1\xc8\xa9\xfb\xad\x51\x44\xaa\x39\xb2\x8c\x53\xc5\x92\x6d\xfd\xec\xc8\xc2\xad\x6a\x80\x5c\xae\x8c\xee\x03\x31\xc7\x1a\x8d\x99\x38\x3e\x63\xde\xd1\x7b\x1d\xd1\x84\x1f\x1e\xba\x11\x62\xba\xd7\xeb\x94\x89\x5b\x45\xa3\x7b\xf7\x33\xef\xbd\xb1\x2e\xaa\x87\x87\x8a\xa6\xb6\x23\xf7\xe4\xe8\x01\x1e\x7d\x66\x6e\xd8\x22\x63\xf9\x0a\xce\xc4\xc6\x9b\x61\xb2\x76\x78\x26\x81\xef\xca\xc2\x5f\xe0\x8c\x43\xa8\x32\xc8\x28\x28\x68\x64\x2c\x8f\xa8\xc8\x4d\x12\x3b\xf7\x7e\x49\xb2\x61\x19\x5f\x6c\x8d\x23\x2b\x64\x3c\xc1\xf2\xdc\xf8\x8d\x29\xeb\xe3\xc5\xaf\xc6\x5b\x57\x23\xbc\xdc\xa4\x61\x2e\x8f\xf6\x06\xe3\x89\x5f\xee\xc9\xa8\xf0\x94\xb7\x78\x86\xb5\xd2\x4c\xfd\xe9\xdb\xd9\xbb\xee\x0b\x39\x9d\x4c\xdf\xce\xde\x59\x18\x9a\x42\xf4\xfa\x04\x49\xe1\xa8\x91\x8d\x8d\x62\x4c\x6e\x99\xdf\x15\xc0\x1c\x6b\xbd\x6a\xdd\x87\xe3\x01\xf4\xc5\x17\x2d\x58\x25\x44\x7e\x53\x7d\xf4\xf6\x3c\x1f\x87\x13\xdf\x57\xad\xa7\x83\x64\x0c\x23\x78\xfc\x7c\x66\xe2\xf8\xa1\xc0\x59\xd8\x95\x65\x85\x34\xc8\xc0\xd8\xe4\xc0\x7a\xe8\x6a\x24\x7c\xdd\xce\x33\x79\xcf\xc4\xae\xb3\x08\x24\xef\x86\x43\x52\x8b\xb1\xb0\xc3\x67\xb8\xaa\x8e\xb8\x9f\xdf\xbc\xdc\xdb\xdf\xca\x8e\xf0\x35\x8d\xee\x59\x23\x1c\xb3\x01\xe4\x49\xbd\x79\x29\x8c\xd8\x30\xf3\xb9\xf9\x5d\x33\x39\x76\xee\x9a\xa4\x79\x01\xc1\xd0\xd0\x54\x53\x28\x80\x31\x6b\x49\xbd\xc6\xcb\x3e\xeb\x78\xc3\x13\xc5\x32\x08\x5d\x0b\x3a\x31\xf4\xe9\x47\x4b\x36\x6f\xc2\xde\x1e\xbb\x27\xaf\xf9\x51\x55\x90\x2f\x2a\x25\x7a\xd7\x28\xee\x83\x08\x64\xbf\x5a\xf0\x84\x8d\xc9\x1f\x35\xf7\x41\xb7\x10\xf7\x81\xc6\x3a\x2a\x96\x86\x6a\x18\xd5\x50\xd9\xda\x0a\x00\xdc\xef\x5c\xa0\x1c\x95\x4c\x39\x9b\xe7\x0b\x87\xd6\xb8\xa6\xfc\x35\x4d\x53\x86\x71\x44\x42\xc9\xd2\xf7\x30\x40\xcc\x14\xe5\x82\x65\xfa\x5a\x51\x12\xf3\x05\xa6\x47\x26\x29\x55\xab\x17\x2e\x9d\x38\xce\x0a\x71\xfc\xc1\x48\x13\x7a\xde\x8f\x3d\xa6\x1a\xc2\xd3\x4c\xce\xd9\x1e\x58\x21\xf0\xa5\xdd\x20\xf0\xc3\xdc\xd1\x73\x7a\x79\x0d\xcc\xf2\x80\xfe\x9a\x54\x29\x2d\xb1\x62\xfe\xd9\x08\x54\x16\x75\x97\x07\xd8\x1c\xbe\x30\x51\x52\x42\x7a\x79\x0d\xba\xa1\x3c\xd1\xed\xc7\x75\x8f\xcd\x35\xbd\xb7\x0e\x97\xe0\x57\x69\x9c\xcb\xf9\xc6\x88\x00\x76\xf7\x03\xc2\xa0\xde\x17\x10\x03\x8f\xc0\x3d\x5d\xcb\x8f\xd0\xcd\xd9\xf4\x9d\xbb\x29\x5f\xbe\x5c\x3f\x1a\x5d\x68\x68\xce\xf8\x9a\xc9\xa2\xd3\x1e\x5a\xdb\x01\xf3\x4d\x1b\xec\x01\xd0\xbe\x95\xd9\x30\xb9\x1a\x8c\xc1\x09\xf3\xe5\x91\x83\x34\x41\xd7\x89\xaa\x4c\x9e\x57\x0a\x86\x20\x3b\x00\x3c\x7e\xbe\xa2\xde\x1d\x84\xeb\x85\x9e\x3b\x49\x52\x47\xf6\x2d\xd9\xe3\x90\x17\xd7\x9b\x68\x77\x6a\x8c\x69\x7b\x8d\x67\x73\x15\x62\xa8\x25\x72\x5a\x5d\xa4\xa3\x60\x62\xdf\xd2\x5f\x5f\xf7\xa8\xaf\x93\x89\x22\x90\x59\x99\x62\xdd\x09\x1f\x5c\xcb\x42\x60\x8e\x3d\xe3\xf0\xe2\x64\x48\xf6\xea\xfd\x33\xdb\x62\x61\x43\xb1\x71\x42\xee\x79\x79\x99\x97\x5c\xce\x63\x8f\xcd\x5b\xaa\x65\xb6\x8f\xc7\xce\x6f\x69\x76\xff\x96\xe6\xdd\x61\xbb\x93\x9d\x0f\xec\xc1\x5b\xeb\x7f\xbb\x82\xb6\xc9\xa3\xcf\xfd\xba\xf4\xc9\x74\x86\x87\x42\xf7\x43\xe6\x1a\xa5\x62\xfe\xfa\xdb\x2a\x89\x8a\x2d\x23\xb8\x62\x1f\x68\xcc\x22\xbe\xa6\x89\x4d\x0f\xac\x0f\x90\xf7\x9c\x28\x92\x30\x9a\x2b\xf2\x15\xf6\x09\xa9\x9b\x85\x89\x06\x46\x82\x1a\x25\x34\x5f\x59\xdf\xb1\xad\x39\x81\x6b\x3b\x0b\xbf\x2c\x60\x7d\x4c\xc0\xb6\xb2\xcd\x15\x5b\xd7\xb6\xf1\xc3\x62\xf1\x12\x9e\x4f\x5d\x0f\xdc\xee\xce\xd5\xe9\xec\xda\x58\x88\x4a\xa6\x1d\xe9\xf2\x23\xb7\x7b\x2a\x73\xf5\x7d\xc6\x15\x03\x77\x92\xbd\x51\xbf\xff\xf3\x5d\xce\x10\x9c\xab\x82\x58\x42\x73\x76\xb1\xde\x19\x4a\x1e\x74\x57\x4d\x4f\xfd\x32\x29\x50\xb4\x62\x31\xfa\xac\x09\xc2\x3e\xa8\x8c\x92\x8c\xf9\xfd\xc6\xe6\x28\x84\x95\x11\xa2\x04\xc3\xc9\x21\xd8\x11\x06\x79\xa0\x48\xd9\xa3\x44\xce\xe7\x2c\xb3\x49\xe1\x6b\x78\x28\x9c\x14\x33\x77\x62\x2e\x64\x14\x15\x99\x26\x48\xf6\x6b\x9a\xa6\x89\xcd\x20\x5a\x3b\x2b\xa5\xca\x30\x20\x3b\xa5\x2c\x52\x4d\x4c\x39\xfe\x28\xaf\x7f\xdb\xd5\xfe\x2c\xbf\xf7\xbb\x47\x88\x84\x46\x0e\xb0\x81\x53\x20\xfa\x1a\x37\x46\x67\x8b\xdb\xd9\xff\xd0\xb9\xa9\xd9\x28\xf7\x61\xff\xfd\x05\x20\x61\x6e\xa5\x40\x80\x3a\x0a\xe5\xb0\xd0\x48\x27\x79\x6e\x94\x53\x9a\xa3\x06\xe6\x02\x34\x16\x01\x0d\x91\xf1\x29\xc7\x4e\x4b\xa1\x35\xc7\x5c\xa7\x0f\x32\xbb\xa7\x19\x98\x0b\x31\xd7\xec\x25\x17\xc5\x07\xeb\x49\x36\x2f\x96\x41\x42\xa8\xcf\xef\x82\x7f\x40\x5b\x85\x69\x6f\xb3\xaa\x7d\x31\x7e\xf5\xaa\x54\x08\x6a\xea\x8b\x8a\xbd\x8d\xfe\x5d\x13\xa4\x65\xc6\x68\xc0\xaf\x77\x6b\x98\x63\xeb\x14\x5b\x3a\xb4\x2a\x79\x44\x28\x59\x39\x21\x2d\x18\x6c\x58\x8f\x60\xf1\x5a\xf4\x72\xba\xac\xa9\x36\x5e\x3d\x46\x96\xda\xbc\x36\x96\x91\x7d\xe5\xf5\xfb\x62\xce\xae\x64\xcc\xa6\x32\x53\x37\x9a\xd3\xef\x36\xf9\xff\xbe\xf1\x09\x59\xc9\x24\xce\x4b\x2d\x33\x18\x17\x32\x7c\x03\x6a\xd9\x85\xbf\xd8\x90\x89\xea\x24\x55\x4c\xe7\x98\x5c\x6b\x9c\x51\x98\xda\x96\xc8\x13\xa0\xb5\xc5\x0d\xfe\x0a\xe7\xb9\x03\x2a\xc4\xd3\x4d\x6e\x62\x68\x10\xf4\x05\xf2\x4c\x2c\x67\x76\x5a\xb0\x77\xa8\x1d\x47\xf6\x85\x8a\xb8\xd5\xd3\xd6\x38\x1c\xb8\x1b\xf5\xb9\x26\x65\x27\x9f\x7f\xf6\xeb\xd7\xbf\xf6\x86\xbb\x84\x2d\xb1\x54\x6c\xaf\xfd\x55\x76\x46\xdd\xb6\xce\x51\xa7\x29\xb3\xaa\xb2\x3f\xfe\x5f\xbe\xf7\x1f\x46\x55\xc9\x98\x11\x17\x6a\x24\xb3\x11\xf6\xe6\xe6\x4b\xab\xad\xbe\xa5\x64\xbe\x5c\xf6\x16\x57\x2f\xab\xb6\x16\x53\x42\x59\x75\x2d\xb6\x59\xba\x86\x3b\x96\xc8\xa5\xc5\x4c\xbe\x15\x00\xab\xe2\xe0\x2b\xe0\x96\x13\x09\xb9\x20\x6a\xe2\xdf\x86\x66\xc7\x89\x5c\x1e\xbb\x4c\xe6\x38\x91\xde\xfc\x24\x6d\x60\x4d\xe4\xb2\xa7\xa6\xf9\xd2\xb6\x74\x0b\xe3\xbb\x8a\x65\xe7\x48\x62\xb5\x35\x2d\x31\x85\xb6\xf2\xf2\xfa\x1b\x8b\xa7\xeb\xca\xcf\x48\x8e\xd0\x7f\xfb\x11\x2b\xb1\x05\xfc\xf5\x5e\xf4\x59\x8f\xdb\xfe\x93\x95\xfb\xd7\x1d\xa0\xc6\xc1\x29\xf8\x2f\x16\xf2\x23\xd6\x73\x1b\x65\x8c\x75\x07\x8f\x5c\xee\x7e\xf1\xc9\xd6\x94\xab\x58\x16\xea\x53\xae\x68\xdb\x8d\x8e\x2f\x6b\xcd\x3f\xdd\x5a\xb6\xb9\x73\x09\xc9\x95\x34\x31\xa1\x42\xda\x8b\x06\x48\xd4\xb4\x6a\xd5\x0e\x3e\x06\x08\x6b\xfa\x01\xd4\xaa\xb7\xfc\x6f\xe1\x2c\xe4\x01\x2c\x69\xd3\x8a\x9d\xc6\xde\x54\xf2\x75\xf0\xbd\x75\x1a\x5b\xe0\xb9\x05\x92\x32\x12\xcb\x35\xe5\x02\x2d\x44\xe1\x78\x3f\x48\x38\x99\x99\x00\x11\x2a\x08\x15\xb9\xe6\x7d\xbe\x7b\x4b\xfe\x5a\xb0\x8c\x33\xcc\x58\x13\x25\xb2\x88\x47\x5c\x70\x55\xce\x12\xb2\xb4\x95\xa6\x11\xaf\xd7\x0f\xb0\x18\xe0\x49\x96\xa7\x52\xc4\x65\x34\xc9\x9a\x46\x2b\x2e\x58\x29\xdd\x0b\xb9\xa1\x23\x9a\x72\xf2\x5c\x66\x9a\x10\xbe\x9b\x17\x42\x15\xde\x2e\x6d\xd3\x91\x9d\xc6\x8b\x31\x39\xb5\x5e\x55\x0b\x44\xb0\xcf\x23\x9a\x43\x21\x42\x26\x72\xae\xf8\x86\xbd\x20\x6b\x46\x45\x58\xfd\x50\xb3\x1d\x9b\x9a\x31\xa4\x48\x41\x80\xbc\x3a\x9d\x61\xec\xa3\xd5\xa6\xd8\x81\x01\xfb\x77\x9c\xa0\x57\x9f\xfd\x7a\xfc\x72\xfc\x72\xfc\x6a\xef\x63\x64\x06\x09\xd8\xe2\xfd\x47\xc1\xba\x45\x01\x27\xaf\xff\x6d\xf4\x1c\xe5\x8c\x71\xaf\xd1\x2f\x22\x90\xda\x69\x3d\xe7\x82\xc5\x28\x3f\x63\x5d\x9d\x71\xed\xa4\x3d\xe7\x0b\x80\xd0\xe1\xa1\xbe\x59\x87\x87\x2f\x8e\x1c\x47\x9d\x00\xf3\x0d\xa0\x2c\x01\x79\x84\x76\xc5\x57\xaf\x7f\x33\xfe\xec\xcb\x2f\xc6\xe6\xff\x27\x5f\x01\x23\xef\x8e\x75\xe2\xae\xcb\x2b\xb4\x4d\x04\x59\x6b\x26\x28\x32\xa5\x09\x2a\x11\x4e\x4f\xd1\x6a\x82\xe7\xcc\x28\x83\x63\x07\xc1\x7d\xf5\xeb\x5f\x7f\xd9\x12\xec\x1b\xba\xa1\xaa\xd8\x27\x9b\xd2\xdb\xd9\xbb\x9f\x23\x93\x12\x58\xda\x6a\x52\x31\x4d\x22\x08\x76\x2c\xd5\x5c\x7e\x7d\xf4\xdb\xd9\xbb\x71\x4d\xf2\xad\xf2\x07\xb5\xe5\x0e\xfa\xb8\x44\x41\x82\x2a\xab\xec\xe8\x19\x1f\xe4\xa8\x47\x76\x6b\x4e\x81\xce\x60\x27\x58\x08\xb8\x13\xe3\xae\x13\x60\x4f\x4c\x38\x88\x3e\x92\x70\xad\x6d\x9e\x12\x41\xa8\x3b\x3f\x92\x4a\x99\x94\xc5\xa4\x3a\xe2\x84\xca\xa4\x1f\x3b\xc1\x47\x6e\x8c\x10\x9c\x80\x6a\xc2\x46\x8d\x50\x82\xd8\x8f\x43\x6b\x29\x5a\xec\x24\xa4\x20\xcf\x39\x38\x2c\x59\x21\xa1\x52\x2f\xbc\x3d\xbd\xfd\xdf\xef\x2e\x6e\x4e\xcf\x2f\x4c\xa5\x55\x4f\x8a\x99\x8e\x1d\x2a\x65\x24\xcf\xde\x84\xa4\x80\x4e\x19\xa0\x4b\x02\xd8\xdd\xf4\x72\x12\xce\x76\x43\x3c\x1c\xfc\x66\x04\xb6\xbc\xdc\x1f\x0d\xe0\x90\x1a\x1c\xd0\xe1\x9a\x42\x44\x33\x1e\x90\x18\x36\xb8\x74\xcc\xbe\x3a\x9d\x19\x95\x73\x21\xac\x3f\x40\x4b\x2c\xfb\x9c\xad\xe8\x86\xcb\xb2\x5e\xb2\xf5\x63\xcb\xd1\x4d\x20\x18\x11\xd6\x2e\xe2\xec\x2b\xe0\x08\xa6\x12\x2e\x5a\xec\x0a\x6d\xf0\x06\x1f\x64\x3d\xdd\x1b\xb6\xec\x13\xbb\x7c\x5d\x6f\x6f\x09\x8d\xa8\x95\xfb\x5c\x96\xe8\x4c\xd3\xc7\x4c\x71\x8d\x87\xbc\xe2\x20\x62\xb0\xaa\x2a\x21\xb0\x13\x14\xbd\x98\x46\xa6\x23\xd4\xf9\x1c\x57\xfe\x17\x31\x4b\x13\xb9\x5d\x33\xe1\xaf\x80\x08\x14\xc0\x3a\xf6\x96\x9e\x23\x31\x44\xff\xae\xe4\x03\x9c\x04\x48\x06\x88\x83\x3f\x5f\x31\x48\x2c\x5b\x2a\xad\xb4\xec\x9d\x84\x2a\xcd\x71\x81\x72\xfd\x38\x5a\x2c\x6d\xe5\x39\xc7\xcd\x45\xdf\x48\xe8\x3b\x92\xeb\xb4\x30\xb9\x89\x5e\x98\x34\xc3\x85\xdf\xcf\xaa\x4a\xd5\xf6\x27\x94\x8d\xfe\x5c\xed\xca\x7b\x03\x03\x64\x6d\x9c\xc5\x68\x96\x8e\x15\x2a\x93\x62\xac\x7f\xf5\xce\xd6\x4c\x05\xd3\x23\x55\x44\xef\x62\x9d\xaa\xed\xbe\xac\x08\xc6\x18\x40\xf6\x16\xaa\x56\x3d\xa5\xc9\xa9\xe7\x23\xd7\xa3\x77\xbe\xb5\x99\xe1\x21\x6b\xfc\xba\x10\x50\xda\xc8\xab\x15\xc0\x74\x09\x48\xc2\xd1\x3b\xde\xc4\x00\x96\xe9\xb5\x8e\x48\xc2\xef\x19\x39\x75\x34\xb4\x09\xdd\xb2\xac\x5f\x58\xef\xe3\xa0\x92\xc9\x35\x53\x2b\x56\xe4\xdf\xc8\xb7\x4c\x65\x3c\xea\x9b\x91\xe9\x70\x1a\xfc\xd4\xea\x05\x72\xf2\x8d\xd4\xcc\x31\x58\xfb\xd6\xd8\xc4\xcf\xae\x25\x09\x3a\x3c\x5b\x87\x42\x7d\x96\xaa\xfe\x4d\x16\x66\x8c\x14\xa8\x02\x80\x8f\x10\x03\xe6\xcc\x7b\x28\x95\x44\x9f\x55\xc3\x19\xa0\x2e\xd0\xdc\xf5\xb2\x46\xbc\x99\x14\xc9\x20\x58\x94\xc5\x47\xd8\x2e\x40\x6e\x9d\x19\x69\x9e\xe2\xa3\x13\xd6\x55\xc0\x7f\x34\xe8\x77\x00\x6f\xdd\x93\x77\xe0\xd7\x02\x7b\x23\x37\x71\x61\x6d\x93\x65\x36\x36\xbd\xa4\x8f\xf7\x00\x6e\xac\x31\xe0\xcf\xdb\xb1\xc0\x6f\x65\x5e\xca\x04\x68\xef\xb4\x59\x51\xaa\xa6\x5e\xd4\x64\x36\xd8\x2c\xd3\x86\xf6\x70\x11\x03\xae\xae\x56\xc7\x3e\xee\xf6\x98\x69\xf6\x92\x73\x1a\x8b\x73\x05\x1e\x1b\x82\xf5\xc9\x17\xf8\x9b\x97\xbf\x69\x11\xdf\x02\xcc\x4e\xb5\xc0\x29\x9a\x3a\x1e\x7d\x50\xbd\xdf\x57\x88\xc2\x3a\x52\x0d\x58\xa2\x71\x83\x32\xb6\x96\x1b\x66\xa3\xcb\x21\x2d\x41\xa7\xa8\xf1\xbd\xc9\xc2\x84\x09\xeb\x6c\xe2\xc5\x0d\x33\xfe\x7c\x26\xc1\x80\x4d\xeb\xba\x61\x21\x47\x95\x39\x63\xb5\x94\x05\x96\xde\x8d\x4d\xf6\x67\x94\x23\x6c\x1a\x06\x0c\x12\x2c\xc9\x9a\x63\x69\x0c\x05\xaa\x81\xc3\x04\x8d\xe3\xfa\xbc\xaa\x40\x40\x9b\x2e\xce\xc9\xfa\x60\x82\xe1\x19\xf5\x77\xfa\xc0\x70\x2e\x66\xbd\x76\x32\xc9\xd6\xe4\x9b\x30\x23\xec\xbd\x07\x26\x99\x40\x6f\x0b\xe5\xcd\xee\x17\x35\x9f\x67\xfd\x77\xc3\x25\x11\xc4\x00\xaf\x4d\x05\x3d\xb9\x54\x91\x57\x8e\x1d\x55\x61\x1b\x99\xd5\x8c\x87\x63\x5b\x5a\x9f\x08\x29\x46\x7f\x63\x99\x57\x9d\xc1\x1d\x9d\x97\xc3\x8e\xe6\x75\x03\xcb\xde\x96\xb0\x12\x4e\xb3\xd9\x65\x7f\x10\xcd\x66\x97\xae\x63\xd0\x48\xc9\x51\xc2\x37\xac\xf4\xa7\x05\xc9\x07\x11\xc4\xe8\x21\x90\x4a\xd8\xc0\xc7\x40\xb1\x8e\xf8\xf6\x5f\x86\x3e\x24\xfb\xda\xa4\x6f\x3c\x1f\x7d\x84\x17\x6a\x99\x31\x65\x7f\x7b\x34\x59\x51\xbf\x8e\xf9\xb1\xf6\x68\xcc\xdc\x62\x4d\xcf\xed\x6c\xe8\x63\xc1\x8d\xa9\x56\xfa\x41\x19\xdb\x56\xd2\x04\x98\x72\x32\x6b\xbc\x5a\x32\x74\xe8\x81\x7e\x83\x66\xca\xaa\x64\x20\x19\x11\x5b\xdd\x60\x32\xcd\x4f\x50\xf9\xe2\x4d\xed\x14\x49\x91\xab\xac\xf0\x05\x13\x56\x49\x5b\x46\x06\xa6\x93\xe9\xe9\xdb\xba\x81\x7e\x04\x5d\xeb\xdf\x61\x2f\x6b\x3d\xda\xcf\x1f\x03\x3a\xf0\x51\x0a\xa9\x39\x3c\xe5\xce\xaa\x74\xcc\x34\xb6\x79\x89\x8c\x6d\x1f\x77\xda\x28\x60\xf4\xbd\xdb\xd0\x8c\x4b\x3f\xeb\xe1\x24\x7d\xbf\xa9\x4f\x63\x47\xd1\x01\x15\x5f\xab\xaa\x1f\xee\x18\xfe\x93\x5f\x65\x30\x37\xfc\x4c\x91\xfb\x42\x92\x3b\xa2\x5a\xd7\xd4\x27\xe0\x91\x3e\x01\xad\x6b\xee\x53\x24\xf4\xf8\xb4\x25\x8c\x75\xa4\x27\xe4\xfd\xd9\xe7\xbf\xdb\x16\xba\x6a\xe4\xc5\x4b\x29\xd3\x29\xe6\x20\xec\xa3\xf8\xf8\x1e\xd9\x20\xb4\xf9\x83\x89\x65\xa3\x81\x97\x33\x10\xfb\x2b\x62\x7b\x64\x13\x1b\xb6\xdd\x9f\x44\xca\x34\x77\x52\x43\x93\xc9\xd4\xb0\x13\x34\x63\xc6\x29\x59\xef\x1a\x26\x6c\x32\x39\xf8\x08\x44\x5c\xe9\x15\x05\x2d\xe7\x26\x5b\x17\x46\x4b\x96\x51\xe1\xe7\x57\xa7\xff\x1f\x7b\xef\xba\xdc\x38\x6e\x35\x8a\xfe\x3f\x4f\x81\xb8\xbf\x2a\x77\xef\x63\xc9\xdd\x73\xe9\x4c\x9c\x4a\x9d\xf2\xd8\x9e\x19\xd5\x74\xdb\xda\xb6\x7b\x26\xa9\x38\xbb\x0b\x22\x21\x09\xc7\x14\xc0\x90\xa0\x6c\x65\x92\x53\x79\x90\x2f\x2f\x97\x27\x39\x85\xb5\x00\x12\x24\x01\x92\x72\x77\x4f\x26\xf9\xa8\xaa\x64\xda\x12\x89\xcb\xc2\xc2\xba\x5f\x6e\x0f\x0f\xe3\x66\x52\xd9\x3b\x91\x80\x11\xb5\x2c\xdd\x5c\xf6\xc9\xf0\x1a\x3f\xb8\xb0\xb1\x75\x34\x67\xd8\xd9\xcd\xec\xd0\x6c\x27\x92\x42\x71\x81\xb1\x23\x0b\x53\xf1\xa3\x56\xd0\xd0\x37\xea\x53\xaa\x69\xe5\x3c\x66\x11\xcd\x4e\xa3\x88\x25\x0c\xf3\x70\x86\x4a\xd4\x37\xc1\x57\x4b\xe5\x8f\x3d\x6a\x76\xb3\x01\x42\x6f\xa7\x0a\xb0\x83\x72\x8c\x0f\xd6\xf3\x20\x8e\x66\x40\xcd\xa5\xfa\x6e\xde\xf9\xde\xb2\x4c\x9c\x50\x21\xc5\x6e\x23\x0b\x5b\x61\xd3\x86\x10\x79\xcd\xd6\x28\xad\xbb\x45\xc9\x73\xfe\x17\x66\xea\x8b\xd5\x1b\xac\x4d\xc9\x1b\xb9\xca\xc9\x03\xcd\x04\x17\x2b\x2d\x34\xa8\x22\x13\x7e\xab\xeb\x62\x87\xd5\x90\xa1\xf6\xad\x75\x3c\x39\xf9\x5a\x50\xb0\x81\xd6\x7a\x0e\x96\x65\x2d\xb6\x45\x22\x58\x46\xb1\xb2\x83\x6f\xf0\x35\xcd\x51\xc4\x8e\x79\x1e\xc9\x2d\x33\x76\x31\xe5\xed\x41\x89\x05\x45\x8b\xbc\x17\x23\x9f\xa4\x65\xd4\xcf\x6f\x26\xb8\xe2\x34\x09\xd5\xdf\xea\x3a\x44\xf7\xd5\x7a\x75\x5e\x5b\x00\x39\xd6\x3f\xf9\xb5\x8d\xa5\x2c\xb9\xf8\x86\xde\x33\xf4\x33\xe9\x81\x1b\x81\x3f\x7b\x8b\x18\xcd\xed\x0d\x94\xe9\x9a\x5b\x33\x52\x5d\x6d\x5b\x2d\x81\x3e\x6c\x26\xc6\x3d\x79\x64\xd4\xaf\x5e\x7f\xf1\xa4\x4d\x61\x52\x83\xa0\xc9\xf9\xc0\x9a\xa9\xa1\x1e\x93\x8f\x09\xed\x20\x41\xfd\xef\x0e\xc9\x39\x83\xb6\x4f\xbf\xbc\xa4\x33\x58\xff\x53\x92\xc5\xe1\xc5\x1f\x2e\x67\xfb\xbe\xf7\xc0\x33\xb6\x2a\x68\x16\x0f\xa5\x92\x3f\x36\x5e\x68\x57\x5b\x2e\x9f\x70\xf8\xf8\x27\x69\x56\x51\xae\xbd\x0c\xf0\xbe\xa4\x9b\x7e\xa9\xfd\x47\xef\x6b\x0d\x31\x11\x5c\x30\xc6\xf9\x19\x08\x59\xd4\x8f\x39\x7b\xb5\x83\xb9\x57\xe9\x61\x35\x35\x4e\x88\x3d\x6f\x53\xb9\xb5\x37\x3c\x57\x4c\x73\x86\x41\xd6\xbc\x1f\xbd\xaf\x35\xea\x92\xdb\x9f\xd0\xb4\x17\xf2\xf0\x2d\x76\xd5\xe6\x6a\x09\x3b\xaf\xbe\xfa\x6c\x7f\xbc\x2e\xf7\x33\xe4\x6e\xfe\xe8\x3c\x5c\x5f\xbb\xfe\xc2\x5c\x4f\x1f\xe4\x7d\xfb\xb8\x61\xac\xf3\x92\x7e\xc8\x66\xae\x51\x62\xbb\x2e\x12\x36\xcf\xb8\xd4\x7c\x76\xf8\xe6\x3c\x2f\xd7\x37\x9b\xda\x6f\xc1\x5d\x15\x30\x5a\x19\xfc\x6c\x80\xc4\x8a\x92\x5a\x8d\xae\x99\x1f\x7e\xb3\xf7\x66\x1f\xe3\xc1\x8d\x21\x3c\xa5\x49\x7e\x7f\x3e\xaf\x8b\x76\x7a\xad\x79\xc1\x95\xe9\x17\x04\x65\x3a\xfd\x08\x58\x16\x3c\x8c\x99\xd8\xb5\x03\x1f\x9f\x24\x58\x3c\xc6\xe9\xbe\x96\x94\xdf\x9f\xcf\x3f\x6e\x36\x2f\x54\x69\x79\x52\x22\xaf\x31\x93\x78\xd9\x50\xbb\x33\x92\xcc\x4c\x3b\x30\x2c\x21\x0c\x3a\xb6\xdf\xa2\xf2\xfb\x73\x6f\x88\x7f\x3b\xdd\x77\x7f\x7b\xca\xd8\xa2\xb9\xdd\xa2\x19\x43\xc0\x4c\x74\x03\x78\x53\x39\xfb\x14\x4d\x9a\xbf\x85\x79\x2e\x71\x1e\x74\x1e\xe3\xcf\x55\x97\x66\xcf\x23\xed\x36\xcd\xde\xf5\x9a\x43\x2a\x1b\x35\xb7\x1f\x82\xc9\x3e\x55\xa7\xe6\xb1\xb3\xf2\xd8\x59\xd9\x3d\x82\xb1\xb3\xf2\xa7\xec\xac\xdc\xd5\xf8\x38\x4d\x93\xdd\x95\xf8\x06\xfb\xaa\xf5\x71\xd3\xd3\xda\xd3\x68\x8b\xb5\x2d\x87\x60\x24\xb4\xc9\x56\xf5\xfb\xb9\x2d\x23\xef\x63\x50\x28\x4e\xc0\x48\x36\x25\x67\x4f\x79\x20\x96\x97\x52\xdd\x6a\x19\xa4\x6f\xe5\xe7\xe5\x93\xce\xaa\xad\xc6\x63\x4d\x85\x10\x7b\x84\x1e\xc2\x72\x1f\x01\xe3\x9f\xb3\x35\x4b\x2a\x56\xb2\xea\x85\x62\x3c\x2c\x04\xd4\xe8\xc3\xdc\xe9\x97\x07\xdd\x7a\xee\xb9\x58\x79\xcd\x8a\x60\x48\xa4\xb9\x31\xa0\x47\xb6\x10\x3a\x76\xb6\xbb\xcd\x6c\x91\x2a\x1f\x84\x09\xf5\x17\x00\x04\xcf\xa9\xde\x14\x1a\x44\xa8\xd8\x39\x4b\xf3\x2e\x0c\x6b\x45\x1a\x98\x18\xc3\x65\xd0\x9c\x55\x9b\x1f\x92\x8a\xb1\xc2\xa9\x71\x15\x2f\x18\x31\x32\xe2\xbe\x67\x8b\x5d\x08\xfa\xeb\xe4\x33\x8c\xf1\xc5\xb6\x54\x50\x0e\x1d\xdb\x17\x18\x89\x13\x6b\xb1\x42\xb4\xba\x6d\x1e\xee\x85\x92\x7d\x1b\xf7\x6d\xc2\xd0\xa2\x8c\x2b\x96\x71\x8a\xc5\xb1\x9c\xb0\x7d\xa8\x1e\x66\xc0\x66\x50\x7f\xaf\x62\xe7\xb5\x3d\xdc\x1d\x9c\x12\xad\x46\xb8\x5d\xac\xf3\x6a\x45\xbe\xa5\x78\x85\x48\x52\xf6\xfb\x20\x5f\x4b\xb5\x36\xf9\xe8\x32\x9b\x2c\x68\x0e\xe0\x31\xa6\xc4\xb9\x39\x2f\xe1\x7e\x87\x7d\x69\xbc\xb0\x01\x51\x92\x65\x4c\x44\x16\xf3\x26\x4e\xad\x48\x59\x28\xcc\xf0\xb4\x29\x83\xa6\x6f\x91\xcc\xa0\xd2\xa8\xed\x1b\x18\x58\xb0\x88\xcb\x76\x13\x0e\xe0\x21\xf5\xeb\xee\x4e\xd8\x42\xba\x98\xb2\xd0\x84\x44\xc0\x33\xa9\x0f\x53\xb0\x15\x2c\xce\x88\x04\x47\x26\x6b\xcb\x46\xf1\xff\xf3\xef\xff\xb8\x94\x0a\x6a\xda\x9e\x26\x89\xc9\xbf\x70\xc7\xf6\x8f\xab\xdf\x85\x78\x68\x40\xa7\xb2\x5a\x2a\x55\x3c\x87\x5a\x9a\x98\xd8\x6a\x36\x62\xdb\xec\x4e\xc9\xa9\x29\x33\x17\x80\x2d\xa0\x26\x15\x16\x3d\x4d\xaa\x82\xd9\xb2\x06\x10\x6c\x46\xff\xe1\xd8\x71\x29\x0e\x1e\x86\x2a\xc0\xde\xbf\x44\x4b\x41\xaa\x25\x5a\xb1\xbb\xfe\xe9\x2d\xf4\x4a\x43\xe5\x17\xf0\xd3\x97\xdb\x08\xd7\xc0\x76\x41\x0f\x8e\x52\x27\xe3\xd5\x0b\xe5\x75\xf6\x1c\x9f\xf1\x1e\xe9\x6b\x19\x1a\x16\xb4\x6f\x67\x7e\xa2\x79\xb4\xf2\xc7\x45\x0e\x02\x06\x31\xdd\x82\xa1\x36\xea\x8d\xb9\x7a\x1d\xcf\xb6\x88\xc0\x65\xf3\x65\x13\x19\x2f\x53\xe3\x55\x5d\x72\x96\xc4\xc1\x84\x9d\xea\x53\x02\x86\x96\x24\xc0\xc9\xac\x30\x79\xb9\xb5\x76\x49\x32\xe3\x2b\x0d\x87\xd0\xfd\xb7\x1f\x90\xbe\x9e\x6b\x14\x62\xd9\x06\x5f\x20\x54\xbd\x70\x1c\xdb\xe6\x8a\x60\x45\xee\x04\x2a\xab\x76\x0f\x59\x82\xac\x6a\xbf\x62\xd8\xb0\x89\x3d\x07\x44\x6e\xc1\xa6\x7b\x50\x7d\x01\x4a\x28\x6a\xbe\x84\x6a\x42\x5c\x16\x29\xa0\x1b\x66\x12\x6f\xa0\xf3\x0f\x54\x37\xe8\x4a\x19\xae\x3e\x8e\x0f\xdf\x7a\x28\x1d\xb1\x61\xe1\xd2\xdd\x6a\x47\xc3\x40\xe1\x88\x1d\x48\xfd\xbe\x91\x19\xa9\x29\x77\x47\x50\x0e\x02\xaa\xdc\xee\x09\x11\xbe\xd1\x52\x40\x5e\x45\x02\xba\x48\x66\x2b\xba\x83\x01\x3d\x41\x97\x2a\xc0\xa4\x7b\x4c\x4f\x5c\x03\x77\xe0\x5b\x9e\x2c\x14\x3c\x5f\xb3\xfa\x56\x82\x17\x0d\x3f\x81\xed\x1f\xa2\x9e\xfa\xfc\xc5\x61\x1b\x00\x76\x8f\xdd\x03\xef\x07\x80\xba\x86\x7d\xe3\x8f\xfb\xab\x3e\x32\x23\xdf\xc9\xbc\xec\x65\x56\x9d\xa2\x47\x51\xaf\xce\xb2\x7b\xcc\xe0\x3e\xeb\xbb\x40\x31\x0f\x24\xf1\x7d\x11\x99\x46\x99\xcc\x41\xd2\x73\x6e\x63\x80\x27\x94\x60\xec\xa5\xed\x04\x93\x31\xba\xc8\x65\x33\xbd\x85\x99\x56\x03\x5e\x9a\xa7\x35\x48\x95\xf1\x48\x05\x9b\xa2\x56\x1f\xcb\xdd\xe0\x08\x8d\x62\x22\x43\x24\xaf\xa4\x6a\x3d\x88\x53\x27\x79\x55\x5e\x29\x4a\xe2\x50\x58\x07\x63\x52\x56\x7c\xcb\x84\xd6\x3e\xf5\xf6\x3b\xf1\x3c\x2c\x20\x3a\xf3\x0e\x82\x74\x67\x5e\x7f\xf5\x11\x52\x5d\xee\x77\x26\xf8\x42\x99\xd9\x52\x97\xab\xec\x8e\x2f\x03\xbd\xc7\xaa\x0f\x9c\xe3\x2f\x0e\x16\xa1\xbe\x18\xd5\xa7\x09\x8c\xb2\x1f\x46\x07\x34\xe6\xa1\xd8\xcb\xea\x83\xe0\x20\x37\x50\x61\x1b\xb0\x14\xba\xf1\xd9\xfa\xf3\x39\x06\xd2\x9a\x96\x0a\x50\x70\x67\x47\x82\x21\x9d\xd5\xa7\x51\xda\x5d\xd5\x2b\x7e\xd9\x66\x6b\x46\x58\x32\xb4\x5a\x6b\x1e\x3d\x50\x97\xc8\xc3\x6c\x5f\xf5\xb3\xb9\x2d\xc8\xfe\xee\x7c\x1e\x28\xdc\x6e\x3f\x43\x4e\x35\x5c\x42\xa3\xfa\x0c\x28\xa6\xd1\x7e\xb8\x1f\x51\xfa\x0b\x6c\x54\x9f\xfd\x4b\x6d\x54\x9f\xa1\x08\xb9\xbf\xdc\x78\x59\xbd\xd4\x83\x96\xc3\x04\x05\x83\x99\xe0\x77\x2b\x07\x46\x2a\x8c\xbe\x9f\x85\x4a\x98\x82\x62\x9d\xd0\x1f\x00\xe7\xea\x1e\xb3\x14\x88\x3a\x51\x65\xd8\x99\xa5\xfb\x5d\xd9\xbb\x83\xaa\x83\x4d\x0f\x5b\xe9\x93\x1b\xd8\x10\xb6\x02\x3e\x1f\x9b\x4b\xfb\xdc\xd1\x2f\x3c\xf9\xa6\xcd\x6d\xe1\x08\x28\x4d\xe6\xc4\x54\x70\x73\x4b\xdd\x1c\x5b\x4b\xf1\x6d\x59\x99\xa9\x47\xea\x73\xf5\x72\x73\x75\xc0\xb3\x84\x50\xce\x2d\x04\x8c\xd9\xd5\x4c\xd3\x23\xe3\x2c\x6d\x7d\x1f\x2d\xdc\x0c\xa5\x60\xbd\x14\xc0\x24\xae\xee\x43\xc1\x7a\xf6\x5e\x91\xb7\x06\x05\xbb\x43\x1a\x76\x67\xa8\xd8\x1d\xd2\xb1\x3b\x4d\xc9\x3a\x65\x9e\x91\x96\xc1\x67\x10\x2d\xcb\x9f\xa0\x00\xf7\xeb\xbd\x9d\x26\xbc\xea\xe3\xd5\x7b\xc9\xf3\x9c\x31\x6b\xfb\x02\x52\x86\x75\x6b\xf3\x9d\x50\xf4\xd1\x97\xb1\xef\x7e\xee\xee\x3a\xd5\x66\x23\x43\x86\xd4\xe2\xee\xb1\xad\xc9\xcb\xd1\x9a\x65\xd6\xd6\x86\xf5\x75\xbb\x94\x0a\xbd\xcd\x27\x81\x42\xbd\x0e\x10\x4c\x38\xb6\xf5\x53\xf5\x70\x05\x04\x8f\xc3\x4d\x7a\x74\x55\x96\xc8\x87\x17\x47\xf5\x25\x3b\xc0\x46\xa8\xda\xb6\xc5\xb6\x79\x42\x8f\x29\x00\xec\x5c\x60\xbf\xbc\x5d\x33\xa2\x1e\x24\xe0\x1a\xc4\x7a\xdb\xdf\x90\x40\x68\x26\xb4\xab\x6a\x05\xf7\x9c\xdd\x95\xb0\xbb\x37\xfd\x54\x1d\xbb\x2a\x73\xb4\x57\x53\x7e\x1f\x5c\x02\xe6\xf9\x7e\x9e\xf0\xb0\x96\x89\x39\xa4\x13\x38\xa2\xbb\xbb\x8a\x21\xff\x0e\xa8\xcb\xaf\xd6\x34\x7f\xbe\xd9\xbd\x4f\xe8\x82\x25\x2f\x80\xee\x18\x22\xdf\x77\x9d\x9d\x08\x66\xbd\x6f\x40\x32\x5c\x1f\x06\x0c\x4c\x4c\xc0\x49\xc2\x62\x3d\xef\x40\x7c\x73\x23\xa2\xcb\x56\x9f\xb0\x38\xf2\xcf\xbf\xff\xb7\x5d\x28\x58\x47\xcd\x86\x06\xa3\x05\x6e\x38\xb8\xdf\xf6\x96\xf4\x1a\xf4\xb6\xba\x87\xed\xde\x6d\xb9\xa1\xee\xcd\xf4\x1b\x1c\x34\xd6\xb1\xe5\x92\x45\x26\x83\xd2\x58\x0a\x12\x20\xab\x26\x2d\xad\xd6\x6f\x79\xc0\xd2\x85\x14\x13\x9b\x7f\x80\xee\x57\xcc\x2f\x31\x36\x91\xa5\xcc\x36\xac\x69\x83\xe8\xe8\xe6\x5c\x7d\x00\x19\xda\x80\xa9\xba\xb8\x7c\x0c\x05\xde\x44\xe4\x9f\x46\x91\x2c\xc4\x3e\x72\xd7\x4d\xfd\xc5\x9f\x4d\xfe\x6a\x90\xe4\xee\x31\x3d\x96\x4c\x4a\x52\x19\x97\x45\x98\x40\x98\x2b\xc9\xb3\x01\x46\x0f\xd9\xc5\x1d\x77\x62\xdb\x20\x5b\x32\x21\xf5\xa0\x90\xf0\xa7\xae\x0f\x40\x7f\x9b\x0f\x06\x37\x79\x0a\xc8\xfb\x87\x0c\x19\x90\x3d\x60\x1f\x04\x6d\x52\x41\x5c\x53\xe2\xdc\x04\x7e\xf2\xd2\x12\xa9\x85\xdf\x9e\x9b\x3f\x4c\xb0\x23\x7b\x98\x1f\xc8\x50\x29\x89\x0c\x95\x94\x48\xfb\x7e\xf5\xca\x4a\xff\xb9\x27\x5d\xd3\x93\x2a\x8b\x1b\x52\x7d\x0b\xcf\x29\x99\xf5\x68\x1d\xfa\x53\x79\x17\xda\x4e\x83\x4a\x0f\x51\xa6\x60\x7e\xd0\xc9\x5e\xff\x9c\x5e\x9e\x1f\x06\x62\xa6\xdd\xcf\x7e\xd6\xac\x50\xe7\xc1\xa1\xcf\xac\x95\x4a\x87\x39\xd9\xbe\xbb\xbd\x9d\x57\x4e\xa4\xa0\x67\x4d\xa3\x87\x7e\x34\xbc\x74\x1b\x78\xf3\x61\x4e\xb5\x0d\x53\x6b\x19\xef\xc1\x7b\xde\xe2\x0b\x1f\x97\xe7\xe0\x96\xe1\x72\x98\x7d\x3b\x71\x45\x7a\x4c\xac\x97\xce\x02\x2d\xc2\xeb\x83\x42\x0c\x77\x8c\xa3\xd8\xd5\x3e\x67\xd3\xd5\x94\x7c\x7b\x71\x7b\x44\xe6\xef\x6e\x8f\x08\x53\xd1\xf4\x05\x79\x6b\x3a\x98\xf5\x68\x10\x66\x0c\x8d\xb5\x57\xd7\x87\x5a\x88\x58\x41\x68\xcb\x2f\xcb\xe2\x9a\x52\xb5\xde\xe3\x1c\x0f\xe7\xfa\xf9\x4f\x71\x8c\x7d\x27\xd8\xef\x61\x70\x4f\x10\x96\x39\x2d\x8f\x0a\xb7\x69\xcf\x62\xe8\x61\x10\xc2\xa6\xab\x13\x32\x21\xec\x91\x46\xea\x84\x1c\x2f\xa5\x84\x8e\xa4\x50\x5b\x88\x1c\x2f\x68\x46\x2e\xaf\x6e\x2f\x4e\x30\x26\x82\x09\x95\xed\xc8\xa6\x8f\xb9\x5c\x5d\xbe\xf9\x83\xa1\x63\x3b\xc2\x38\x16\x6d\x27\x77\x07\x30\x09\xda\x3f\xf4\x9f\x38\x8b\x95\xd3\x83\xfd\xff\xaa\xcf\x96\x26\x3c\xa6\xa5\x9a\x8a\x25\xe7\xb5\x52\xcd\x95\x2f\xeb\xb8\xfa\x0c\xc1\xb9\x3a\x12\x68\x10\x43\x95\xe1\x5a\x7d\x3b\x00\xbc\xad\x35\x6c\x82\x18\x7a\xc8\xed\x4c\x41\x30\xe1\x82\x59\x40\x18\x0d\x58\x8b\xe0\x27\x16\xec\xa6\xeb\x32\x55\x6b\x6c\xb7\x7c\x62\x6b\x44\x0c\x51\xd8\x10\xd5\x60\x55\x30\x5c\x02\xcd\x48\xed\x11\x56\x43\x4f\x0c\xbc\x3f\x68\x06\x1c\xa3\x13\xd8\x7b\x48\x9a\xc4\x00\xe0\xe3\x0a\x41\x69\xa8\x32\xd6\xd3\x07\x1d\xc2\x0c\xc9\x30\x82\xd4\x3f\x14\x8f\x36\x03\x79\xe6\xec\xec\xed\x7c\xa8\xef\x12\x88\x51\x78\xed\x2e\x95\xa2\x16\xeb\x23\x58\x2d\xa6\xa4\xca\x18\x68\x14\x4c\x59\xd6\x32\x0f\x36\x76\xc5\x8f\xdb\xc6\xa1\xd6\x8c\xdc\xf4\x81\x2a\x2d\xab\xb8\x68\xee\x64\x42\xeb\x79\xba\x74\x49\xf0\x04\xe9\x87\xb6\xaf\x3b\x9c\x41\x83\x30\x51\x6f\x6d\x0f\x3e\x0f\x92\x89\x14\x2e\x94\x00\x28\x11\xd4\x78\x23\xb3\xa5\xd3\xe9\xbc\x9f\x45\xdc\x6a\x00\x63\x08\x33\xc4\x4d\x41\x3d\x99\x5a\x37\xec\xb2\x94\x0c\x25\x8a\x45\x6b\xc1\x23\xea\xed\xf2\x54\x7d\x40\xa9\x47\xc3\x15\xdf\xa4\x32\xaf\x82\x4b\xb1\x91\xc1\x61\x5e\x95\xa8\x5c\xf2\x8c\x3d\xd0\xc4\x5f\x6c\xaf\xfa\x20\xb5\x30\x26\x05\x2c\x74\x29\x09\x13\x55\x3b\x64\x88\x1f\xe9\xbf\x1a\xbd\xd6\x67\x78\xec\xc3\x0f\x43\x0f\x33\x25\x6e\x9a\x73\x9f\xf1\xb6\xac\x5c\xfc\x15\x06\x1e\xc2\x0e\x61\xac\x8b\x68\x2d\xc9\x35\x32\x6d\xf2\x9c\x4f\xd9\x94\xa4\x5c\xac\xf2\x6e\xeb\xed\xa0\xfd\x0e\x20\x06\xa9\x3f\x37\x21\x00\x90\xd9\xdc\xe6\x28\x7c\x70\x48\x43\x4d\x35\x43\x79\xdc\x85\xf2\xdc\xda\x74\x83\x50\x18\x00\x81\x40\x94\x79\x60\x73\xb6\x0c\xb1\x13\x6b\x56\x55\xff\x70\xea\xa1\x94\x7d\x44\xba\x37\xf7\x41\x44\x03\x02\xfa\xb1\x32\x54\x27\xba\x56\x2b\x9c\x0f\xe5\x8a\x43\xd9\x52\x3d\x48\xbe\x5a\x8f\xc9\x8e\x40\x7b\xf3\x3d\x33\xa9\x80\x24\xa5\x3c\x0b\x57\xde\xae\x3e\x5a\xad\x35\xdd\x7f\x5c\x98\xd2\x85\x2c\xd4\x00\x46\xf2\xb1\x34\x47\x21\x95\xbe\x7d\xc3\x30\xe3\x12\x1f\xee\xf1\x45\xc3\x23\xdd\x31\x21\x23\xc3\x18\x19\xc6\xbf\x37\xc3\x10\x52\x59\xb1\x2a\x08\x96\x6e\x7f\xf1\x40\x4f\xf1\x30\x1f\x71\x2b\x94\xc9\x8a\x7c\x3d\xd1\x4c\xe6\xb1\x30\xc0\x7a\xee\xf1\x00\xa7\xf4\xd3\xdc\xd1\xe9\x2f\x15\xb8\x77\x07\x2e\x6c\x3f\x22\xef\x6f\x99\x65\x21\x13\xc0\x95\x04\x2c\x4c\xa6\x80\xf5\x3c\xeb\x0a\xcd\x31\x71\x65\xe6\x9c\x2f\x20\xfe\xfd\x1a\x92\x37\x6c\x2a\x02\xc6\xce\x3c\x5f\xb0\x88\x16\xb9\x89\xe6\xe8\x09\x0c\x2e\x97\x18\xb1\x0c\xc6\x28\x23\x42\x5e\xa0\x3b\xd1\x56\x14\xac\xc5\xb7\xf4\xb1\x58\x0c\x7c\x39\x71\x63\x37\x8e\xdc\xc8\x0d\xfc\x03\x34\x95\xda\x5f\xdb\xd7\xd5\xdf\x37\x67\xb7\xf8\x6b\x78\x1a\x33\xe2\x1b\xae\x98\x0d\x0f\x81\x36\x02\x80\x20\xd6\xa5\x80\xa5\xd6\x5f\x4d\x3e\xfb\xf2\xcb\x0e\x1f\xdb\xa7\x43\xfb\x3c\x54\xdc\x0e\x3f\x75\x37\x41\x59\xdc\x6e\x40\xaa\x44\xa0\x5b\x85\x3b\xeb\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\xf8\x77\x3c\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x11\xda\xc9\x48\xcb\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x68\x7f\xc6\x2c\x89\x31\x4b\xa2\xfc\x8c\x59\x12\x63\x96\xc4\xa7\xcf\x92\xe8\xe8\xb8\xa3\x75\x0c\xac\x77\xe6\xfb\xad\x7b\xe0\x0e\x2c\x37\xd5\xf1\x9e\x50\xe6\xd0\xbc\x39\xd6\x39\x1c\xeb\x1c\x8e\x75\x0e\xc7\x3a\x87\x61\xd2\x38\xd6\x39\x1c\x3d\xf8\xa3\x07\x7f\xf4\xe0\x8f\x1e\xfc\xd1\x83\x3f\x7a\xf0\xab\xcf\xe8\xc1\x77\x3e\xa3\x07\x7f\xf4\xe0\x9b\xcf\xe8\xc1\x1f\x3d\xf8\xa3\x07\x7f\xf4\xe0\x8f\xb4\x6c\xf4\xe0\x8f\x1e\xfc\xd1\x83\x3f\x7a\xf0\xdb\x9f\xd1\x83\xdf\xfc\x8c\x1e\xfc\xd1\x83\xdf\xfc\x8c\x1e\xfc\xd1\x83\x5f\x7e\x46\x0f\xfe\xe8\xc1\x1f\xeb\x1c\x8e\x75\x0e\xc7\x3a\x87\x63\x9d\xc3\xb1\xce\x21\x19\xeb\x1c\x0e\x9c\x61\xac\x73\x38\xd6\x39\x1c\xeb\x1c\x8e\x65\xab\xc6\xb2\x55\x63\x9d\xc3\xb1\xce\xe1\x58\xe7\x30\xbc\xfe\xb1\xce\xe1\xc8\x30\x46\x86\x31\xd6\x39\x1c\xeb\x1c\xd6\x3e\x63\x9d\xc3\xb1\xce\x61\xe3\x33\xd6\x39\x0c\x2b\x90\x63\x9d\xc3\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\xa2\x63\xc7\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\xa1\x9d\x8c\xb4\x6c\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\xf6\x67\xcc\x92\x18\xb3\x24\xca\xcf\x98\x25\x31\x66\x49\xfc\x27\xd6\x39\x1c\xe2\x0b\x6b\x53\xae\x7e\xff\xd7\x12\x5d\x97\x95\xac\xe9\x5b\x75\x91\xbb\xd6\x7c\x83\x74\x58\x2c\x50\x8a\x9a\x95\x3b\xb0\x25\xff\xa9\x40\x41\xc6\xbe\x7d\x5c\xe9\x87\x3a\xee\x65\x15\xed\xad\x6c\x8d\xc7\x80\x30\x8f\xf1\x2d\x58\x35\x0f\xd4\x16\x3d\x28\xd8\xf9\xe3\x29\x6a\x32\xa5\x1d\x66\xcd\x57\x5a\x2c\xbc\x3b\x80\xf1\xee\x0e\x00\x81\xcd\xb3\xbe\xa1\xe9\x52\x8b\x34\x0a\x48\x26\x0c\x90\xc8\x07\x96\xe1\x6a\x30\x5e\xc8\x59\x5c\x4e\xe4\x86\x2b\xc5\xe2\x23\xad\x91\x63\xa8\xb9\x6f\xd0\x48\x8a\x9c\x63\xc9\x4a\xd4\xb8\xef\x0e\xb8\x58\x72\xc1\x15\xbb\x3b\x20\x13\x02\x51\x2a\xce\x76\xac\x8a\x63\xd6\x49\x12\x9a\xab\x29\x29\x77\xe6\x05\x89\x5e\x2b\x8f\x99\x50\x3c\xa2\x89\x59\x60\x73\x1c\x2e\x08\x4d\xd2\x35\x15\xc5\x86\x65\xce\x73\x80\x00\xbe\x51\x8d\x5b\xd0\x28\x87\xe8\x8a\xf5\x1a\x36\x11\x39\x44\xb1\x59\xb4\xf5\xf6\x34\x63\xe7\x97\xa7\xb7\x7d\xe8\x31\xc7\xc7\x08\x17\x31\x8f\x50\x27\x29\xc3\xa2\xd7\xb6\x0c\x25\x70\x2f\x9e\x5b\x40\x2d\xd8\x52\xfa\x09\x0f\x15\x3b\xa2\x87\x0b\xae\x75\x21\x65\xc2\xda\x55\x35\x3b\xb8\x4e\x43\x2b\xbf\x75\x35\x3c\xc4\x6a\x47\xcf\xb3\x17\x2d\xe5\xd1\x3d\xfe\x9f\x2c\xbc\x04\x48\xef\xad\x21\xb1\x3b\x98\x60\x82\xb8\x9d\x33\x54\xd2\x18\x98\x3a\xf4\x8e\x6a\x1d\x39\x59\xca\x24\x91\x0f\x08\x35\x54\x3e\x4b\x75\x0c\xf9\xc2\xef\x50\x37\xc1\x8b\xfd\x3e\xe1\x8a\x65\x34\xd1\xdf\xf8\x46\xbe\xbb\x23\x13\x4c\x62\xd0\x58\xbd\x49\x69\xc6\x73\x29\x8e\x08\x64\x32\x59\xa5\xc2\x0e\xb9\x94\x92\x2c\x68\x06\x8a\x4e\x39\xdd\xaf\xf6\x9c\xae\x9a\x4f\xab\x44\xec\xcf\x05\x4d\x7e\x8b\x71\x77\x96\xd1\xf1\xa5\xe1\x70\x3c\x87\x67\xac\xd1\xae\x9c\xd2\x4f\x44\x7e\x82\x75\xd0\x2a\x5a\x64\x51\xfd\x33\xc2\x7f\x4e\xa7\x53\xf2\x37\x67\x05\x2a\x2b\x98\x0d\x9f\x2f\x23\xd0\x70\x8e\xdf\x13\x7f\xc4\xab\xb1\x56\xf6\x4c\x55\xad\x55\x6f\x80\x8b\x01\x8b\xf3\x4d\xb6\xe7\x7a\x61\xb2\xae\x05\xfa\x8f\xc4\x59\xb3\x56\x68\x61\xbc\xf7\x9a\x75\xbc\xa8\xa6\xbe\x2d\x67\xa6\xaa\x3a\x1d\xe7\x64\x7e\x05\x48\xea\x65\xba\x66\x88\xd2\xb2\x21\x97\xf0\x2c\xa8\xb6\xf0\xdf\xe2\xe5\xcb\xcf\x5e\xe3\xff\xe3\x2f\xe5\x3b\x37\x6b\x99\xa9\x49\xc4\xb3\xa8\xe0\x0a\x04\x17\xf3\x92\x6f\xa2\xbf\xfe\xb5\xf3\x6d\x30\x81\xaa\xe7\xf8\xcc\x8b\xf2\xa1\x94\x66\x4c\x60\xb1\xdb\x55\x26\x8b\x54\x4b\x6b\x77\x77\x8a\x26\xc9\x73\xaf\x29\xdb\x54\x5f\xc5\xe0\x84\x92\x5e\xd8\xd1\x2c\x0e\xd3\x24\x71\x34\x54\xb8\xa0\x6f\x10\x1f\x50\x04\x0b\x10\x39\x7d\xb5\x91\xce\xd8\xf8\x2d\x97\xbe\xe7\x47\x64\x72\x44\xde\x03\x1c\x8e\xa7\xe4\x06\xae\x1c\x31\x57\x2e\x38\xe8\x46\x66\x8c\xa4\x5a\x38\xcd\x73\xbe\x65\x64\x81\x91\xc7\x3b\x6b\x19\x31\x36\x2b\xc2\xf2\x88\xa6\x8c\x44\x6b\x9a\xd1\x48\xb1\xcc\x2c\xfb\x02\x03\x38\xbd\x97\xe1\x39\x70\xa9\x0d\x8d\xd9\xa4\x48\x11\x2d\xf2\x17\x25\x39\x82\x74\x17\x43\x3a\x1e\xd8\x42\x4b\xbf\xcc\x10\x0f\xf7\xc4\x63\x96\x26\x72\xb7\x61\xc2\x4b\x4e\xcd\xfb\x69\x26\x63\x8b\xa4\x30\xae\xbe\x53\x40\x93\x32\x29\x14\x13\xb1\x83\xea\x34\xba\x37\x5f\xfc\x4d\x3f\x5e\x8d\x4f\x7e\xf5\xbb\xd0\x0d\x88\xd9\xd6\x0e\xff\x2b\xd2\xb8\x05\x3e\x52\xd6\x25\x3c\xd5\x6d\x09\x43\xa5\xc2\x1b\xef\x5b\x9f\x4c\x34\x34\x8b\xb4\xaa\xc6\xbe\x02\x22\xd8\x2b\x07\xf0\x54\x30\x6b\x56\x12\xc0\xc3\x1a\xd2\x28\x6b\x3c\xdf\x09\xe8\x30\x85\xa6\xbd\x74\x4a\xdf\x3b\x69\x2a\x4d\x1f\x99\xbf\xb4\x52\x33\x25\x18\x3e\x05\xdc\xe4\x31\xd5\x12\x95\x4a\x76\x8e\x4e\xf3\x1c\xaa\x64\x7b\xe3\xe2\x1c\x3a\x2a\x48\x94\x31\x13\xb5\x9d\x9b\xdb\x2d\x33\x22\x78\xf2\xe2\xc8\x46\x5e\xc7\x6c\x49\x8b\x44\xe5\x04\xb7\xa5\x41\x97\xc5\x01\x9d\x46\x49\xf2\xa0\x69\xe5\xcc\xd4\x32\xd7\x8b\xb8\x70\xca\x9a\x83\xdc\x6a\xe9\x67\x59\x32\x1a\x02\x86\x48\x28\x79\xd3\xcc\x4f\x78\x8e\x77\x6c\x42\xfe\x68\x44\x39\xbd\x20\x3b\xd3\x9f\x8e\x0c\x8b\xd0\x82\x31\x58\x1e\x6b\x13\x7b\xef\x31\x17\x51\x52\xc4\xd6\x34\x1f\x51\x2d\x2c\xc3\x00\xd5\x30\x04\x99\xb4\x90\xe5\x96\x60\xb8\x17\x7a\x25\x7e\x5d\xcb\x5d\xdc\x85\x7f\x6d\x35\x88\x68\xc2\x54\x0d\xef\x55\xee\xe0\xb9\xe0\xd6\x8f\x7a\x27\xf4\x0d\x0a\x9a\x71\xe8\x98\x90\x06\xfe\x68\xd4\x62\x47\x3d\xc9\x18\xd5\xb7\x29\xba\x27\x74\x45\xb9\xf0\xa2\x2c\xa2\x09\x9a\x53\x93\x07\xba\xcb\x5b\x41\xb3\xe8\xe7\x3c\x22\x82\x6d\x59\x56\xc3\x3a\xaf\x55\x73\x60\x35\xfa\x0a\x0a\x84\x01\xeb\x28\x3d\x02\xa9\xcc\x73\xbe\x48\xec\xc4\x55\x20\x87\x7e\xe1\x26\x65\x91\x5f\xed\xc6\x8d\x84\x43\x5b\xba\x15\xfc\xa0\xee\xec\x57\xb9\xdb\xdf\x02\xe7\x88\x5d\x87\x5d\xae\x64\x46\x57\xcc\x7e\x95\x2b\xaa\x0a\x04\x0c\xda\xad\x59\x7c\xe9\x58\x14\xef\xb9\x88\x35\x35\xb2\x20\x4d\x93\x22\xa3\x49\xf5\x4d\x24\x05\xba\x90\xf2\x13\xf2\xc7\x3f\xe9\x6f\xf4\xf8\x2c\x36\xd9\x5f\xe6\xdb\x3b\x31\x99\x4c\xca\xff\xd0\x94\xdb\x5c\x32\x42\x53\xce\x1e\x15\x13\xf0\xf0\xf4\xfe\xab\x7c\xca\xe5\xf1\xf6\xd5\x9d\xc0\x89\xcf\x8a\x5c\xc9\xcd\x35\x43\xb3\xf8\x39\x03\x45\x11\x88\x76\x2d\x63\x4b\xf3\x9a\x13\x82\x71\x7f\x02\x03\xe8\x72\xa6\xf2\x69\x94\xc5\xd3\x34\x93\x1a\x1c\x11\xd0\xa1\xa9\xcc\x56\x77\x42\x13\x38\x78\x0f\xa4\x96\x13\x12\x78\xac\x6e\x5b\xc5\x05\xf9\x63\xfd\x12\x9e\xab\xef\xbd\xbf\xbf\xe1\xb9\xaa\x43\xae\xb5\x4a\x73\x2c\x5c\xac\x8a\x84\x66\xed\x07\x00\xa8\x91\xd4\x27\x7b\x96\x14\xb9\x42\xad\x72\x6b\x01\xac\xff\x98\x18\x08\x68\xc0\xc1\x60\xd1\x9a\x6d\xaa\x64\x36\x99\x32\x71\x3a\x9f\xfd\xf0\xf9\x4d\xfd\xfb\x06\xee\x37\xd7\x5e\x0f\x12\x06\x7f\x18\xcd\x16\x5c\x65\x34\xdb\x91\xd9\x9c\xe4\xc5\x62\x62\x97\x79\x7c\x36\x3b\xbf\xae\x11\x1e\xb4\x63\xac\x35\xa9\x42\xe9\x06\x74\x58\x50\xc0\x90\x16\x29\x89\xf9\x2a\xc6\xf9\xb8\x21\x5b\x4e\x9d\x30\x10\x74\xf0\xe1\xab\xee\xb8\x72\xd9\x5e\xa8\xf5\x12\x95\x46\x1b\xf7\xae\x05\x2c\xe9\x0e\x16\xd6\xaf\x56\x3d\x01\x5f\xc3\xcd\x78\x43\x31\x40\x18\xa9\x81\x01\x3f\x8b\x0d\xac\x91\x1c\x00\x71\x33\x9c\x89\xfa\xac\x65\x1a\x84\xc2\x5c\xd0\x29\xc8\x2d\x2c\xcb\xad\x66\x1b\x49\xb1\x65\x99\x22\x19\x8b\xe4\x4a\xf0\xbf\x94\x83\xe7\xd6\x3f\x0b\xbd\x31\x5a\xb2\x1e\x17\x8a\x65\x5a\xc2\x01\xca\x74\x04\x84\x78\x43\x77\x24\x63\x7a\x1a\x52\x08\x67\x40\x1b\x1d\xf2\x56\x4b\xb6\x5c\x2c\xe5\x09\x94\x46\xc9\x4f\x8e\x8f\x57\x5c\xd9\x0b\x18\xc9\xcd\xa6\x10\x5c\xed\x8e\xc1\x6b\xc4\x17\x85\x3e\x92\xe3\x98\x6d\x59\x72\x9c\xf3\xd5\x84\x66\xd1\x9a\x2b\x16\xa9\x22\x63\xc7\x34\xe5\x13\x58\xbb\x00\x42\x30\xdd\xc4\xcf\x32\x73\x63\xf3\x43\x1f\xd9\x6a\x53\x3b\xb8\x5c\x5d\xc7\xa0\x6f\x97\xc9\x27\x44\xd1\x1d\x65\x8f\x12\xda\x96\xff\x5e\x5f\xdc\xdc\x12\x3b\xbb\x37\xf7\x12\x81\x5f\xbd\x99\x57\xe7\xa0\x81\xc6\xc5\xd2\x0a\x59\x60\x9e\x76\x6d\x12\xc8\xe1\x13\xee\x91\xb7\xf3\x62\xb1\xe1\x2a\x77\x6a\x6a\xc8\x29\x39\x83\xe4\x4c\xcd\xb9\x8a\x34\xa6\x8a\xc5\x53\x32\x13\xe4\x8c\x6e\x58\x72\x46\x73\xf6\xc9\x4f\x01\x24\xcd\x89\x86\xed\xd0\x73\x08\xe4\xc1\x86\x0c\xbc\x25\x21\x0d\x1c\x5b\xf3\xa2\x6a\x36\x59\x4f\xc7\xb0\xd9\x3b\x55\xbe\x2c\x25\xe1\x48\x6a\x7b\xb0\x0d\x4e\xda\xe1\x2b\x0b\x44\x17\xb7\xda\xe8\xd8\x00\xa8\xd9\x9c\x58\x92\x86\x14\x6c\xc1\x12\xa9\x71\x4b\x1a\xb3\x11\xf3\xb9\x8a\xc2\xc2\xc5\xc8\xde\x3f\x1a\x7b\x5f\xcb\xbc\xf2\xe7\x7f\x02\xd6\xee\x46\xe5\x37\xd9\xba\xfb\x5b\x9b\xa5\xd7\x56\xd6\x64\xe7\xee\x8f\x9f\x92\x95\x8f\x6c\x6e\x64\x73\xee\x11\x8c\x6c\xee\x67\x63\x73\x2e\x75\x18\xc6\xe2\xda\xb4\xa6\xfa\xec\xcf\xe4\xd8\x63\x0a\xa9\x63\xb3\xf9\x10\xbb\x92\x3e\x69\xf3\x42\x3d\x43\xe5\xf9\x6c\xbe\xfd\x02\xae\xd5\x6c\xbe\x7d\xfd\xc2\x6a\xb8\x16\x2d\xbc\xea\xeb\x0c\xcd\xe5\x33\x7d\x37\x97\x34\x62\xe0\x15\xbb\xbb\x3b\x68\x38\x20\x4a\x3b\x10\x68\xf4\x89\x94\xf7\xd6\x10\xc7\xed\x9b\x5e\xfb\xab\x0d\xab\x71\x32\x67\x66\xf3\x5a\xe0\x06\x76\x84\x03\xd7\x98\xb1\x30\x00\x11\xa1\x6a\x0a\x81\x90\x5e\xa6\x7c\x77\xa7\xc0\x2c\x51\xe4\xad\x88\xca\x46\x7a\x28\x24\xed\x94\x4d\xf5\x64\x66\x8c\x68\xbe\x41\x9b\x0d\xe6\xee\xee\xf4\x78\xa6\xb3\x5c\xb9\x7f\x43\xfc\xf2\xfa\xac\x5c\xf8\x93\x4f\x4b\xbd\xcb\x3d\xa7\x29\x64\x8b\x69\xb6\x52\x8b\x70\xc3\xc8\xc4\x8b\x0a\x15\xd0\xe8\xe0\x1b\x96\xe7\x68\xe1\xc4\xf2\x24\x54\x91\xb4\xc8\x52\xa9\x6f\xea\xf3\xd9\xd2\x54\xf9\x5b\xb3\xea\x68\xf4\x3c\x36\x66\xa6\xbb\x44\x84\xb5\xf6\x49\x86\xc7\x9f\x30\x9a\x89\xf2\xd8\xcc\x09\x56\xe3\xea\x05\x14\x39\x58\xa4\x83\xd1\xda\x77\x77\xca\x1e\xc7\xd4\x6b\x4f\xfe\xe8\xc2\x17\xa9\x56\xa8\xd1\xb9\xff\x4a\x5d\x60\x45\x35\x8d\xf7\xff\x0b\x8d\xe9\xc6\xd3\x01\x40\xab\x67\xa9\xbf\xe1\xa2\x78\xec\xc6\xfa\xd2\xd7\x5b\x22\xf4\x6f\x01\xf5\x36\xa9\xda\x4d\x49\x35\x8d\xeb\x1e\x46\x5f\x29\xcf\x3b\x29\x8b\xfe\xac\xe4\x96\x65\x02\xbd\x2c\x65\xe0\x8e\x3c\x32\x71\xa3\x7a\xd9\x99\x2c\x56\x18\x51\x60\x8d\xa6\x46\x22\xae\xd4\x6b\xaf\x91\x19\x0f\x17\xf0\x52\x3f\x58\x96\xee\xd0\x4b\xbd\x94\x31\x92\x05\xc0\xc9\xdf\x12\xa6\xf7\x8f\x17\x3b\xd6\x48\xb2\xc5\x8b\xe8\xcf\x5a\xae\x92\x44\xb7\xd0\x01\x72\x57\x81\xef\x88\xb8\xe6\x57\x99\x63\xfc\xeb\xb1\x92\x10\x53\xa9\xd7\x62\x2d\x14\x7e\xa7\x7e\x22\x23\x9a\x94\xc9\x90\xc6\x64\x39\x5b\x92\x1a\x3d\xb3\xb4\xcc\x39\xdf\x41\xa0\x86\x8b\x64\xe1\x5d\x0b\x92\x82\xed\x03\x3d\xd1\x7b\x37\xb2\x16\x40\xce\x01\xbf\x97\xc8\x58\x34\xaa\xee\x50\x09\xeb\xda\x9a\x01\x05\x27\xe4\x41\x93\xb9\x3a\x71\xf6\xd3\x03\xb4\x9f\x4e\x6a\xc7\xef\x99\xac\xcc\x5f\xa9\x4c\xb1\xfa\x66\x7b\x07\x15\x2e\x31\x82\xaa\x8a\x19\x84\x28\x1c\x79\x56\x55\x2e\xe1\x88\x50\xa0\x1a\x6d\xf1\x8f\x18\x0f\xb2\xcb\xbb\xca\x0e\x8f\x55\xcd\x19\x0c\xc1\xd7\x4a\x47\x86\xd5\x98\xcc\x2c\x39\x79\x9e\x17\x7e\x0a\x43\x73\xf2\xcf\xbf\xff\x37\x53\xeb\x97\xff\xfc\xfb\x3f\x5e\x98\xe8\x71\x70\xec\xb1\x98\xe8\x55\xff\x96\x70\x45\x78\x2e\x0e\x55\x65\x05\xee\xe7\xe3\x04\xaf\x72\x9a\x49\x2d\xbb\x38\x08\x80\x10\x76\x68\x42\x1d\x0b\xab\x35\x7b\x39\xae\x0d\xf1\x3f\xc1\x9d\x42\x46\x0d\xc8\x3e\x98\x75\x83\x7e\x21\x2d\x6f\x6d\xd2\x84\x6d\x34\xa6\x21\xa1\xaf\xc8\x86\xbb\xe8\xfc\xb7\xfe\xb3\xe3\x8a\xd3\x24\xd9\x91\xff\x57\x43\x38\xcd\xd8\x04\xe2\x51\x4a\x2f\xcb\x5c\x1f\x11\x33\x95\x2f\x4b\xa2\x1f\x15\x9b\x90\x46\xa0\x3f\xb6\xfb\x26\x8a\xf7\xa6\xcb\xa7\x14\x5e\x73\x7d\x17\xe9\x16\xfe\xb2\x47\x2d\x9d\x5e\x3f\x67\x62\x3d\x21\x18\x68\xb9\xb3\xec\xde\xac\x18\x1e\xe0\x5a\x47\x16\x5e\x60\x77\x2d\x22\x94\x63\xd6\xf0\x26\x68\x56\x5f\x93\x06\x2d\xbf\x3e\xcc\xcd\xcd\x35\xe9\x4f\xb6\x0c\xa6\x37\x12\x74\xc1\xaa\x26\xb4\x10\xba\x54\x0a\x1b\xe6\xc0\xd1\xe1\xb2\x0f\x6f\xec\x8d\x2f\x16\x7e\xd6\xd7\x0f\x99\x0a\x3e\x3d\xaf\x77\xe6\x36\xfd\x92\xca\xdb\x7c\xaa\x6a\x26\x3d\x01\x97\x22\x40\xae\x27\x00\xdc\xc0\x2f\x1d\xf5\x8a\x9e\x1c\xa6\x99\x9a\xf6\xc8\x7d\xe8\x7e\x5a\xe5\x11\xe2\x85\xe3\xc0\xe5\x96\xad\x46\xcb\x66\x11\xe1\x2a\x70\x55\x6c\xb1\x66\xb4\xa5\x06\x62\x3a\x22\x9b\x41\xaa\x48\x47\xab\x10\x60\x08\x5f\x68\x50\x0c\xce\x4d\x53\x46\xb3\x32\x78\x0e\x62\xbf\x49\xb9\xae\xca\xbf\x6c\x47\xb6\x41\x90\xac\xd1\x50\xba\x53\x05\x48\x43\xe5\x2b\x46\x43\xe1\xcf\x60\x28\xe4\x29\xdd\x2c\x12\x19\xdd\x7f\x0a\x2b\xe1\x6c\x7e\xfa\xf6\x6b\x3d\x78\xd3\x44\x58\xfe\xd0\xb6\x0f\x56\x0b\x6a\x1a\x07\xcb\x5f\x46\xcb\xe0\x68\x19\x1c\x2d\x83\xff\x71\x96\xc1\x92\x28\x0c\x32\x0b\x8a\x26\x75\xa9\x3e\xfb\x1b\x05\xb5\xb6\xa1\x61\xe7\xe1\x36\x5d\xbc\x86\x26\x5a\x1b\x09\xd5\x93\xed\xe3\x5f\x1d\xe2\xd6\x33\x72\x7b\x75\x7e\x75\x82\x75\x09\x44\x91\x24\x74\x81\x3c\x7c\x43\x45\x01\xba\x06\x8d\x63\x60\xe5\x53\xf2\x23\xb3\x24\x01\xf1\x86\x94\xc9\x8b\xd9\x64\xc5\xbc\xca\xc5\x33\x4d\x22\xd6\x54\xc4\x09\x23\x7f\xfc\xd3\xff\xd2\xc8\x8a\xc0\x49\x76\x26\xc3\xd8\xab\x4d\xd9\x85\x84\x84\xb4\x0e\xa9\x88\x2a\x44\x49\xaf\x5c\xf4\x01\x82\x37\x6e\xe2\x3d\xf7\x8b\x85\x64\x90\xf4\x9d\x33\xcd\x90\x69\xe6\x3b\x7d\xb3\xfa\xfd\xea\x01\x0f\x11\x93\xfb\xf2\x8b\x9e\x2c\x7f\x46\x3c\xf6\xc5\x80\x76\xad\x29\x66\x09\x53\x5e\xc9\xba\x3b\xe5\x01\xb2\xe1\x4e\xfb\xae\x4e\xe0\xed\x42\x98\xdb\xe3\x9d\xf8\xc9\x77\x27\x08\x99\x80\xfe\x30\x71\x2f\x71\xeb\xa7\x12\x6b\x9b\xbf\x68\x28\x37\xbf\xab\xc3\xa3\xf9\xab\xb3\xdf\x51\x2a\x1d\x22\x95\x46\x52\x2c\xf9\xea\x53\x89\xa5\x67\x30\xba\x4f\x2e\xc5\x5f\xfc\x82\xa9\x59\x93\x4f\x32\x8d\xca\x01\x47\xd1\x74\x14\x4d\x83\xc7\x30\x8a\xa6\xff\xae\xa2\x29\xd2\x85\x3d\x64\x53\x97\xc4\x54\x9f\x27\x08\xa7\x85\x92\xa7\x86\x77\x80\xbc\xeb\x63\x8c\x9d\xbc\x76\x43\x1f\xf1\xc5\x39\xcb\xbe\x93\xb9\xcf\xd6\xd8\x28\xb8\x5e\x7f\x1e\x82\xdb\x85\x14\x93\xbf\xb0\x4c\x1e\xd9\xb2\x68\x1b\xfa\x68\x32\x37\x35\x39\x70\x75\xf6\xc6\xd2\xa0\xd0\x10\x15\x90\x8d\xa8\xb9\x23\xa4\xc5\x33\x1a\xad\xc1\x8d\x13\xb4\x25\x07\x78\xfc\x87\x88\x1d\x61\x21\xa0\x05\xe3\x7d\xb8\xfb\xc8\xc2\xfd\x2c\x1c\xa5\xf3\x4f\xc5\xc2\xbf\x83\xd1\x7d\x2c\x1c\x7f\xf1\xb3\x70\xb3\x26\x1f\x0b\x5f\x97\x03\x8e\x2c\x7c\x64\xe1\xc1\x63\x18\x59\xf8\xbf\x2b\x0b\x47\xba\xb0\x07\x0b\x77\x49\x4c\xf5\xd9\x9f\x85\x03\x73\xf4\xb0\xaa\xc1\x86\x85\x41\x5a\xaf\xdf\x5a\xf0\x44\xed\x1e\x89\xe1\xec\x7c\x2f\x5b\x42\x90\xbf\x2e\xda\x76\xba\x49\x39\xc5\xc8\x4c\xfb\x99\x69\x2a\x65\xf2\x69\x18\xe9\x5c\x5a\x0f\xa8\xcb\x44\xf5\xb7\x3e\x06\x0a\xeb\x68\x33\xcf\xd4\x0c\x32\x32\xce\x91\x71\x06\x8f\x61\x64\x9c\xff\x9e\x8c\x53\xd3\x82\xc1\x4c\x53\x3f\xfc\x54\x0e\x79\xc3\xff\x32\x28\x58\x09\x1e\x26\x39\xff\x0b\x68\x92\x45\x8e\x11\x66\x55\xdc\x2f\xa1\x79\xce\x57\x62\xa3\x31\x23\x58\xb6\xd0\xd4\x06\x90\xc9\x94\x9c\xdb\x84\x7b\x25\xc9\x67\xaf\xcd\x60\x26\xbc\xfb\xd5\xab\xcf\xec\x17\xaf\xf7\x55\x55\x03\xb6\xf8\xd6\x7e\xf4\x2a\xc8\xd9\xec\xfc\x7a\xcf\xb8\xaa\x98\xe7\x74\x91\x78\x79\x7b\x6d\x0e\x08\xe0\xb6\x0f\x83\xfa\x9e\x15\x55\x98\xb5\x16\x74\x30\xd6\x5c\x23\x3a\x82\xae\x8a\xa0\xf6\x81\xce\x5c\x2a\x0b\xbf\x3d\x25\x0b\x9e\x72\x5f\xab\xdc\x3a\xad\x38\xd7\x57\x1b\xbd\x03\xe6\x22\xdb\x6e\xb3\x10\x29\x5a\x86\x64\x9f\xce\x67\xdb\x57\x90\x20\xff\x40\xb3\xd8\xbb\x5a\xa8\x37\xa4\xf8\x82\x27\x5c\xed\x34\xa1\x50\x86\xd2\xb8\xa3\xc2\xd6\xb1\x2c\xca\x51\xfd\x27\x2f\x00\x30\x0e\x1d\x29\x36\x36\x03\x4f\x76\xbe\x76\xd6\x3d\x0e\x2c\x26\x42\xe7\xe7\x3f\x43\xf3\x7c\x75\x84\x1a\x96\x44\x15\x42\xb0\x44\xef\xc9\x16\xee\x2a\x02\x41\x37\x04\xc3\x2c\x63\x96\xf0\x2d\xcb\xaa\xea\xb1\xfa\xab\xb2\xb2\xba\xd3\x74\x28\x7c\xc2\xa4\xef\x94\x09\x94\x84\x09\xf6\x5c\x6c\xdd\x81\xd9\x7c\x36\x87\x17\x4c\x83\x62\x6b\x31\xb2\x75\x86\x0e\xb0\xb4\x81\xed\x94\x00\x2d\x56\x26\xd8\x13\xe4\xee\x60\x4a\xc8\x69\x68\xbf\x1b\xd3\x04\xd9\x19\xc1\x94\x4a\xc8\x91\x76\xc0\xcc\x15\x0c\xf5\xd9\x66\xb2\x40\x1c\x09\xb6\xb9\x72\xe0\x55\x4f\x0c\x69\xc1\x8e\x90\x53\x67\x0d\xf5\x75\x87\x46\x87\x05\x5a\x44\x6f\x2e\xf0\xc1\x56\x89\x70\xd7\x80\xe1\x99\xfa\x76\x84\xc6\xa4\x55\x7d\x67\xd3\x4b\xc5\x4a\x24\xb6\x0c\xa5\x1e\x5c\xd8\x13\xa8\x22\xda\x3b\xeb\xe2\x3f\x07\xcb\x60\x55\x84\x2f\x7e\xa1\x57\x51\xc1\xba\x13\x75\xba\x23\xb8\xfc\xea\x8c\xc6\xf8\xb7\x03\x82\x5a\xcf\x2c\xaf\x42\xc7\x4c\x91\x55\x7c\xca\x73\xe0\xdd\xa8\x3e\x6b\xec\xf1\xc8\x16\xb0\xc4\x96\x9d\x06\x50\x58\x06\xe7\xee\xe0\x92\x6d\xa1\x62\x20\x36\x91\xac\x4f\xe6\x1b\x5d\x8f\x60\x68\xb3\xaf\x6a\x7a\x67\x74\x2f\x55\x13\x59\xa8\x95\xe4\x62\xf5\x3f\x85\xa4\x76\x52\x1d\x41\xd5\xd5\x40\x78\x60\x35\x1f\x07\x80\x15\x55\xb5\x74\x11\x8a\xe6\x38\x75\xa1\x49\x67\x7e\x84\x91\x8e\xb4\x10\xea\x12\x80\x16\x75\x95\x85\xca\x79\xcc\x4a\x6d\x03\x1e\xd2\x37\xde\x37\x28\x14\xac\xcf\xff\x5c\xb0\x8c\xc6\xde\x12\xa8\xdd\xe0\x90\xf1\xe0\x72\xa1\xa7\xfa\xa8\x72\x2b\xc1\x99\xfa\x13\x1a\x5d\x4c\xf8\x7e\x19\x81\x0f\xa4\x66\xb1\xc3\x72\x13\xbe\x35\x97\x15\x63\xf7\x43\xe6\xed\x63\x42\xc5\x07\x5e\xed\x1f\x7e\xff\xe6\xf4\xf2\x67\xbb\xdb\x30\x9b\x57\xb6\x2c\x17\xf0\xe4\xcb\x1d\x34\xa5\xb4\x43\x0f\x46\x8b\x49\xdb\x62\x72\x5f\x2c\x58\x15\x08\x95\xd7\x30\xe5\x53\xd8\x51\xbe\x2f\x16\xec\xac\x9a\xef\xcc\x9d\xaf\x69\x5d\xe9\x7a\xb6\x6d\x73\xe9\xdc\x49\xd3\x12\xd3\xf5\xf0\x68\x9f\x19\xed\x33\xa3\x7d\xe6\x3f\xce\x3e\xd3\x45\x4d\xda\x56\x9b\x5a\x41\xb6\x26\x80\xbf\x2f\xb3\x72\x9c\x20\xd2\x06\x9b\x1d\x6e\xd2\x71\x86\x18\xc2\xd1\xed\x6c\xa8\xe3\x62\x89\x3c\x3b\xb3\x29\xee\xb8\xe5\x71\x41\x13\x67\x99\x21\x31\xcc\x8c\xb5\xb7\x3e\x5e\x66\xcf\x0e\xd1\x5a\xcb\xfa\xea\xa1\x25\xdb\xac\x66\x7c\xa8\x5a\x57\xb0\x90\xfd\x85\x51\xef\x17\x3b\x2b\x77\x1c\xd9\x26\x5b\x82\xa3\x20\x89\xb2\x44\x60\x84\x01\x7d\x30\x34\x99\x12\x11\x4f\x58\x36\x67\x19\x97\xe1\xb8\xd9\x26\x71\xb8\x6e\xbc\x68\xa3\x40\x52\xfc\x4b\x49\xfd\xaf\xa5\xcc\x36\xe5\x14\x3c\x98\xdc\x68\x3f\x50\xd6\xd5\xc9\x31\xd4\xb7\x02\x44\x86\x29\xf9\xa3\xb1\xc9\x9d\x90\x2f\x37\x7f\xf2\x68\x01\xf6\xd3\x1f\x6b\xdb\x17\x69\x1b\xc8\x90\x6c\x41\xe0\x52\x8b\xbd\x5d\x27\xad\x7f\xff\x65\x1c\xf2\xda\x49\x5a\x1d\x7a\xc0\x6e\xa2\xab\xdd\x06\x54\xfe\x8e\xac\x59\x00\x38\x24\x24\x5e\x3b\x3d\x71\x3a\x4e\xf7\xdc\x1a\x1c\x9f\xba\xd3\x81\xbb\x25\x26\x46\xea\x2c\x63\x34\x50\xc4\x22\xb0\xe7\xc3\xd3\xf2\xb5\xea\x64\x0b\x25\x37\x54\xf1\xa8\x2a\xd4\x2a\x7b\xfb\x5e\xd4\xa1\x02\x5a\x87\x56\x14\x76\xc6\x9c\x52\x21\xb3\x85\x49\x17\x4a\x93\xc1\xad\x2c\x86\x34\xb2\xf8\x9f\x77\xe1\x09\x60\x2d\x94\xc1\xee\x42\x9a\xfa\x6e\x6f\xca\x57\x2a\xe4\x2f\xab\x08\x4b\x12\xc9\x74\xd7\xc3\x77\xec\x07\xe8\x40\x55\xc5\xd1\x49\x9f\xce\xdd\x5d\x1a\x32\xf0\x69\x69\x1b\xe6\x56\x0e\xa1\x6e\xa6\x10\x4b\x07\x7d\x33\xd9\xd3\xbf\x0c\x0a\xf7\x3f\x0f\xab\xfb\x8e\xba\x5e\x0d\x7c\xc8\x91\xd7\x2b\x81\x77\x1d\x7d\x4f\x43\x21\xdb\x46\xc8\x41\x8d\x11\x07\xfe\x15\x38\x60\xab\x62\xf4\xf0\xfe\xba\x19\xb4\xf1\x4e\x17\x1e\xf4\x35\xc2\x67\x0d\xf9\x61\xc4\x84\x7f\x0d\x26\x74\xfd\xca\x54\x14\xff\xf0\xf9\x99\xdc\xa4\xd8\xa3\x2a\x08\xb1\x3a\xa4\x2e\xbc\xaf\x35\xe0\xb5\x60\xea\x81\x31\x01\x73\x6c\x3f\x0f\x3a\x0e\x60\x80\x52\x8b\x07\xf7\x81\x06\xf5\x4b\x17\x17\x1c\x58\xbd\x7a\xe9\x05\x56\x17\x90\xd6\x8c\x26\x6a\x7d\xb6\x66\xfe\x60\xf9\xfa\xd6\xbe\x73\x1e\x2e\xb1\x5f\x66\x76\x29\x79\xd9\xb9\x42\x8b\x75\x38\xb2\x77\x6b\x38\xc0\x20\x0e\xdf\xb5\xf6\x44\xae\x6e\xb4\xf0\xc8\xd5\xee\x26\xca\x18\x6b\x9a\xce\xda\x1b\x78\xd3\x7c\xc3\x1e\x4b\x22\x57\x24\x37\xbf\x10\xba\x90\x5b\x66\x4a\xa7\x24\x72\xe5\x95\x61\xa0\x9c\x0f\x13\xa5\x67\x30\x57\xb1\x2c\x94\x7b\x18\x33\xb1\x94\xfb\xed\x28\x6c\xc8\x0e\x29\xea\x41\x4b\x48\x65\x9e\x0e\x80\xa2\xd3\x16\x02\x6f\x3b\x36\x29\xb3\x43\xfd\xad\xc7\x84\x08\x66\xa8\x9a\xe1\x83\xcc\xd4\x21\x14\x83\x5b\x16\x09\xfa\x44\xe2\x0d\x98\x55\xa0\x35\x17\x64\xe8\x42\x1b\x0c\x6c\x99\x4a\x23\x55\xd0\x96\x7b\x04\x47\xc4\x94\x88\x07\x5a\xd6\xe4\xb0\x25\x6d\x8c\xcf\x7b\x23\x63\xec\x29\xb1\xd0\x12\xd9\x96\x67\x12\x62\x59\xc8\x96\x66\x1c\x50\xb2\xb5\x5e\x74\x08\xdf\x17\x0b\x36\x71\x2d\x37\x69\x26\x23\x96\x37\xd5\xb4\xae\xea\x88\xd5\x6c\x3f\x50\xaf\xdd\x66\xcf\x90\xd5\x10\x11\xab\x1d\xdb\x45\x7d\xd6\x66\x11\x20\x0f\x00\x02\x7e\x6e\x2f\x10\x00\xd8\x5c\x2c\x93\x02\x4b\x02\x61\x17\x73\xe8\x97\x88\x08\x12\xf4\xcb\xf8\x29\x68\xe6\xbe\xdb\x77\x39\x6b\x13\x35\x36\x06\x9d\x71\xf9\x96\xd5\xb0\x82\xe7\x76\x02\xdf\x06\x79\xe8\xa0\x65\x7c\x64\xca\xaf\x6c\x58\xb6\xb2\x96\xda\xd3\xf9\xac\x32\xd4\x6a\xc6\xe4\xbd\xf4\x22\x80\x65\x1e\xb8\xf4\x30\xe3\x6e\x93\x5f\x0b\x38\x1f\xd3\xec\x47\xfa\x4c\x7f\x03\x96\x4f\x06\x98\x00\x5b\x9b\xd8\xcf\x0c\xd8\x25\x39\x7c\x4c\xa9\x69\xe0\x6e\xc9\x7e\xd2\x53\x6b\xf3\xc3\x25\xa8\x3e\x13\x4a\x5d\xc0\x1a\x24\x45\xf5\x0d\xd9\x2d\x64\x91\x8f\x6a\x66\xe9\xb0\x22\x92\x4f\x65\x49\x24\x1f\x41\xd7\x26\xc3\xf1\x64\xa0\x55\xb1\xb5\xdd\x3d\x2c\x8b\x7d\x27\xea\xb4\x3a\xfb\x28\xd6\xc5\x3d\x76\x4f\xf6\xb1\x32\xb6\x60\x30\xcc\xd2\xd8\x3f\x28\x88\x26\x1f\xdd\xda\x48\xf6\xea\xc5\x3c\xe4\x3a\x90\x91\xae\x0c\x01\xe6\x20\x43\x65\x1b\x38\x1f\xcf\x58\x49\x3e\xaa\xc1\x72\xf8\xd6\x87\xe0\x50\xa7\xf1\xb2\x05\x94\x8f\x69\xc0\x24\x3f\x2f\x61\x1d\x2f\xca\x47\xc0\x96\x41\xf6\x4f\xf2\xc9\x6c\xa0\xe4\x13\xd9\x41\xc9\x88\x46\x3f\x2b\x1a\x0d\x34\xa1\x92\x4f\x69\x46\x25\x9f\xca\x94\x4a\x46\x64\xfa\x19\x91\xa9\xef\x89\xc1\x96\x58\xf2\xa9\xac\xb1\xe4\xe3\x5a\x64\x87\x00\xaf\xc7\x32\xdb\xde\xea\x47\xb2\xce\x92\x3d\x2d\xb4\x43\xf6\x32\xc4\x52\xdb\xde\xd0\xde\xd6\xda\xd0\x76\x12\xb9\xca\x3f\xc0\x62\xdb\xbf\xc3\x8e\x92\xcb\x1d\xd6\x5b\xd2\x89\xfa\x63\xac\x72\x3b\x56\xd9\x64\x15\x80\x7c\xca\x3f\x49\xb9\x14\xd3\x25\x0e\x65\x64\xfc\xa1\x0a\x47\xae\xfd\xd8\x8e\x3f\x6e\xac\xce\x1c\x46\x19\x71\xec\xfe\x0c\x43\x9b\x10\xe3\xd2\x2c\x06\x6c\x6e\x8c\x32\x1e\xa3\x8c\xc7\x28\xe3\x7f\xaf\x28\xe3\x2e\x37\x11\x74\x76\x1a\x92\xda\x0c\x55\xe6\x35\xfa\x63\x6f\x26\x56\xeb\x79\x8d\x25\xea\xf5\x1f\xa5\x67\xc4\xeb\xa0\xb0\x6f\x63\x5e\x56\xb3\xef\x14\x34\xb5\x22\x91\xcc\x32\x96\xa7\x9a\xac\x8b\x15\x31\x12\x8d\xed\x0e\xb4\x57\x75\xf9\x46\xc3\xa2\x53\x72\xad\x17\xc8\x44\x44\xd3\xbc\x80\x7b\x5b\xad\xc8\xb7\x94\x80\x19\x0f\x97\x34\x25\xe4\x6b\xa9\xd6\x8d\x02\xf9\xad\x86\x58\xd0\x4b\xbe\xd1\x08\x20\x60\xc8\x29\x9b\x5d\x98\x82\xfc\x13\x92\xb3\x94\x66\x1a\x49\x89\x2c\x14\xa1\x7a\xb9\xb6\xd7\x00\x3e\xa2\x45\x25\x68\x47\xce\xc3\x3d\xd0\x09\xac\xc1\x9c\x97\x0b\x78\x2e\x56\xd8\xfa\x07\xfb\x0b\x40\x63\x92\x2d\x6b\x42\x62\x4d\x43\xa3\x12\xc1\x56\xb0\x38\x43\x78\x8f\x48\x9a\xb1\x25\x7f\x64\x31\xca\xf7\xff\xfc\xfb\x3f\x2e\xa5\xfa\xe7\xdf\xff\x31\x25\xa7\x49\x62\x2a\xcd\xb9\x63\xfb\xc7\x35\x79\xb7\x14\xd1\xa9\x6c\x76\x43\x15\xcf\xc1\x95\x8a\x49\x6c\x66\x23\x4a\xe2\x98\x53\x72\x0a\xac\xac\x5d\xe3\xc7\xc0\x16\x50\x93\x0a\x8b\x9e\xb6\xb9\x39\x6e\x59\x03\x08\x36\xa3\xff\x30\xbb\xc1\x0e\x56\xc1\x06\x5d\x08\x55\x80\xbd\x7f\x89\x7a\x02\x98\xb5\x5c\xa2\x3f\x4b\xb8\x57\x8d\x43\x74\x0b\xaa\x43\xfd\x4a\x8e\x93\xb3\x18\x1c\xa5\x76\x55\xce\x9d\x74\xe4\x9a\xa3\xb3\x81\x1a\xe0\xe6\x84\x6b\xd9\xa1\x5d\xd5\x72\x26\x89\xa6\x84\xca\x77\x8b\x07\x02\x83\xb8\x8e\xbd\x8e\x84\xc8\xc0\xce\xee\x0e\x2e\x9b\x2f\x03\x07\x13\x44\xa6\xe8\x0b\x37\xa9\xad\xa1\x6e\x1a\xd5\xa7\xd6\x26\xdc\x0c\xc5\x1e\x35\x03\xcb\x81\x3a\x40\x9f\xa2\x5a\xff\x2b\x9b\x9d\xdd\x67\xc8\x05\x1e\xf7\x5c\xa3\x10\xcb\x36\xf8\x02\xa1\xea\x85\xe3\x28\x28\x53\xd3\x6d\x7f\x8e\x70\x91\x80\x06\xc8\xf2\xb2\xb2\x00\x9c\xa5\x66\x7f\x90\x3e\x0b\x88\xdc\x82\x4d\xf7\xa0\xfa\x02\x94\x50\xd4\xea\x0b\x0a\x63\xb1\x0d\x62\xc8\xe9\x06\xaf\x80\xc9\xc4\x84\xe4\xe4\x21\x26\x13\xc7\x3d\x64\x70\x2c\x2b\xd7\x4b\x16\x3b\x5c\x6c\xd9\x33\xbd\xdc\xd1\x30\x50\x98\xfe\x6c\x7a\x5d\x48\xfd\xbe\x91\x59\x5d\x72\xd6\xd2\x9a\x69\x0d\xb6\x27\x44\xf8\x26\x4d\x78\xd5\x98\x8e\x11\x17\xc9\x12\xbe\xe1\x26\xfd\x14\x57\xaa\xd9\x9b\x86\x49\xf7\x98\x65\x83\xac\x0a\x26\xdc\x81\x6f\x95\x96\x42\xf1\x8e\xd6\xb6\xd2\xe3\x31\x0b\x6c\xff\x10\x9b\xf1\x3f\x7f\x71\xd8\x06\x80\xdd\x63\x8f\xe5\x65\x2f\x00\xb4\x3a\x66\x77\x0f\x2e\xb3\x9a\x27\xb2\x3a\xc5\xda\x30\xcd\xb3\xec\x1e\x33\xb8\xcf\xfa\x2e\x30\xca\x07\x64\xff\x7d\x11\x99\x42\xc1\x08\xe8\x40\x58\xdd\xc6\x00\x4f\x28\xc1\x38\xc8\x80\x15\xe8\xf6\x5d\x7d\xea\x3e\x6b\xa6\xf2\x30\xcd\xd3\x72\x3a\xd4\x47\xcd\x43\xcd\xf8\xaa\x8f\xe5\x6e\x70\x84\x55\xef\x22\x3f\xc9\x2b\xa9\x5a\x0f\xe2\xd4\x49\x5e\xad\x20\x07\xb4\x25\x2d\x3b\xa2\xae\xf8\x96\x09\x53\xff\xa2\x3b\x7d\x25\x2c\x20\x3a\xf3\x0e\xf4\xf3\x75\xd4\xeb\xaf\x3e\x42\xaa\xcb\xfd\xce\x04\x5f\xb0\xf6\xa3\x86\x5c\x65\x77\xac\x1f\xe9\xe1\x1c\xfa\x1c\x7f\x71\xb0\x98\x07\x9a\xc6\x55\x9f\x26\x30\xb0\x83\x5c\x37\x34\xe0\x99\x21\xe0\x20\x37\x5c\xcb\xd4\xb2\xec\x1b\x68\xbb\x85\xe5\x64\x4d\xb7\xcc\xb6\xa2\xe3\x4b\xc0\xae\xb4\x7f\x58\xb0\xd4\xd9\x2a\x03\x84\x2b\x6b\x5e\xc3\xe5\xce\xcd\xe8\x46\x58\x32\xb4\x5a\x6b\x1e\x3d\x50\x97\xc8\xc3\x14\xd6\x27\xb8\x3d\x9b\xdb\x0a\x39\xef\xce\xe7\xc1\xf2\x2b\xf8\x19\x72\xaa\xdd\x9d\xe3\xf0\x33\xb0\x7f\x5c\xfd\xe1\x21\x91\x06\x43\x7a\xc9\xe1\xe7\x29\x1d\xe5\xec\x67\x28\x42\xee\x2f\x37\x5e\x56\x2f\xf5\xa0\xe5\x30\x41\xc1\x60\x26\xb9\x61\x0e\x73\x41\x2a\xac\x75\x87\xbc\x58\xa8\x84\x69\x31\x18\x35\x29\x33\x57\xf7\x98\xa5\x40\xd4\x89\x2a\xc3\xce\x2c\xd4\xe7\x31\x00\x9e\xbb\x83\xf2\xc6\xf6\xb1\x95\x3e\xb9\x81\x0d\x61\x2b\x6b\x50\x85\x8d\x41\xe9\xb9\xa3\x5f\xbc\xe8\x41\x43\x99\x29\x1c\x01\xa5\x49\xb7\xa3\x6b\xce\x48\x46\xc5\x8a\xe5\xc7\xd6\x1e\x07\xc5\xab\x3a\x6b\x26\xe1\x87\xbb\x7a\xb9\xb9\x3a\xe0\xd9\x40\x28\xe7\x16\x02\xc6\xb8\x65\xa6\xe9\x91\x71\x96\x78\x06\x28\xdc\x0c\xa5\x60\xbd\x14\x00\x1f\xdd\x8b\x82\xf5\xec\xbd\x22\x6f\x0d\x0a\x76\x87\x34\xec\xce\x50\xb1\x3b\xa4\x63\x77\x9a\x92\x75\xca\x3c\x23\x2d\x83\xcf\x20\x5a\x96\x3f\x41\x01\xee\xd7\x7b\x3b\x4d\x78\xd5\xc7\xab\xf7\x92\xe7\x39\x63\xd6\xf6\x05\xa4\x8c\x6e\xd2\x84\x91\x7c\x27\x14\x7d\xf4\x15\xce\x71\x3f\x77\x77\x9d\x6a\xb3\x91\x21\x43\x6a\x71\xf7\xd8\x65\x57\xfd\x5a\x0f\xfa\x96\x36\x6c\x1b\x0d\xc3\xdc\x1a\x7b\x7a\x80\x60\x82\xe8\xad\x37\xa0\x87\x2b\x20\x78\x1c\x6e\xd2\xa3\xab\xb2\x44\x3e\xbc\x38\xaa\x2f\xd9\x01\x36\x42\xd5\x74\xfa\xb2\xfe\xd3\x1e\x38\xa0\x9d\x0b\xec\x97\xb7\x6b\x46\xd4\x83\x04\x5c\x83\x4a\x12\xf6\x37\xd3\x0d\x7a\xa1\x92\x5d\x55\x6b\xae\xe7\xec\xae\x84\xdd\xbd\x0d\xb3\xa9\xec\xaa\xcc\xd1\x5e\x71\x37\x12\x42\xdc\xcc\xf3\xfd\x3c\xe1\x61\x2d\x13\x73\x48\x27\x70\x44\x77\x77\x15\x43\xfe\x1d\x50\x97\x5f\xad\x69\xfe\x7c\xb3\x7b\x0f\xf1\x6f\x2f\x80\xee\x18\x22\xdf\x77\x9d\x4d\xe9\x44\x6b\x68\xc0\x9e\xf0\xb0\x3e\x8c\x4e\xa8\xe2\xf3\x63\x3d\xef\x40\x7c\x83\xf1\x62\x09\x35\xa9\x80\x4a\xa3\xb3\x68\xc1\x12\xf2\xcf\xbf\xff\xb7\x5d\x28\x58\x47\xcd\x86\x06\xa3\x05\x6e\x38\xb8\xdf\xf6\x96\xf4\x1a\x42\xd5\x53\xab\x4f\xf7\x6e\xcb\x0d\x75\x6f\xa6\xdf\xe0\x70\x5b\x66\x4c\xa0\x28\x65\x2c\x05\x09\x90\x55\x53\xd1\x11\xfc\xc0\xe5\x3e\xfa\x97\x2e\xa4\x98\x98\x50\x12\xe3\xe4\x22\x0f\x6b\x96\x31\x63\x13\x59\xca\x6c\xc3\x9a\x36\x08\x33\xfa\x00\x5b\x5c\x1b\x30\x4e\xdd\x84\x8f\xa0\xc0\xd7\x23\xde\xf6\x90\xbb\xea\x41\x6f\x3f\x9f\xfc\xd5\x20\xc9\xdd\x63\x7a\x2c\x99\x94\xa4\x32\xb6\xd9\x31\xe8\xd7\x28\xc9\xf3\x80\xf0\xbc\x32\x40\xaf\x13\xdb\x06\x87\x83\xbb\x5e\xf6\xf0\xa7\x9d\x2a\xf2\xe1\xe0\x26\x4f\x01\x79\xff\x90\x21\x03\xb2\x07\xec\x83\xa0\x4d\x9c\x90\xc8\x87\xb5\xcc\x6d\x7f\xf9\xd2\x12\x09\xfd\xa4\xfb\xc6\x18\x22\xd8\x91\xbd\xe2\xd7\x07\x4a\x49\x64\xa8\xa4\x44\xda\xf7\xab\x57\x56\xfa\xcf\x3d\xe9\x9a\x9e\x54\x59\xdc\x90\xea\x97\x95\x21\xc9\xac\xb7\xa6\x0a\x71\xbc\x0b\x6d\xa7\x41\xa5\x87\x98\x72\x8d\x6c\xa7\xbf\xef\x1f\xf4\xf4\xf2\xfc\xd0\x5b\x48\xb3\xfe\xd9\xcf\x9a\xd5\x1d\x53\xda\xff\xcc\x5a\x29\x5f\x49\x6c\xfc\xd4\x93\x69\x6e\x6f\xe7\x95\x13\x29\xe8\x59\xd3\xe8\xa1\x1f\x0d\x2f\xbd\x0c\xf6\xfb\x20\xa7\xda\x86\xa9\xb5\x8c\xf7\xe0\x3d\x6f\xf1\x85\x8f\xcb\x73\x70\xcb\x70\x39\xcc\xbe\x9d\xe8\x0d\x3d\x26\xd6\x93\x65\xbd\x95\x7c\x2c\x55\x62\x31\x8e\x62\x57\xfb\x9c\x4d\x57\x53\xf2\xed\xc5\xed\x11\x99\xbf\xbb\x3d\x22\x4c\x45\xd3\x17\xe4\x6d\x91\x28\x9e\xf6\x59\xe8\x0c\x88\x00\x6b\xaf\xae\x0f\xb5\x10\xb1\x82\x54\x8d\x5f\x96\xc5\x35\xa5\x6a\xbd\xc7\x39\x1e\xce\xf5\xf3\x9f\xe2\x18\xfb\x4e\xb0\xdf\xc3\xe0\x9e\x20\x2c\x73\x5a\x1e\x15\x6e\xd3\x9e\xc5\xd0\xc3\x20\x84\x4d\x57\x27\x64\x42\xd8\x23\x8d\xd4\x09\x39\x5e\x4a\x49\x26\x26\x6e\xe1\x84\x1c\x2f\x68\x46\x2e\xaf\x6e\x2f\x4e\x30\x26\x82\x09\x95\xed\xc8\xa6\x8f\xb9\x5c\x5d\xbe\xf9\x83\xa1\x63\x3b\xc2\x38\xa8\x0e\x94\xdc\x1d\xc0\x24\x68\xff\xd0\x7f\xe2\x2c\x56\x4e\x9f\x6a\x41\xb8\x7b\xdc\x2d\x4d\x78\x4c\x4b\x35\x15\xa2\x5e\xb1\xbc\xb2\xf2\xd5\x53\xae\x3e\x43\x70\xae\x11\x9c\x7b\x7b\x3b\xd7\x10\x2e\xc9\x31\xa0\x03\x00\x5e\x03\xda\x09\x62\xe8\x21\xb7\x33\x05\x21\x5b\x0b\x66\x01\x61\x34\x60\x2d\x82\x9f\x58\xb0\xdf\x15\x2f\x5f\x7e\x1e\xe9\x81\xe1\x5f\xec\xc4\x64\xcd\x0f\x52\xd8\x10\xd5\x60\x55\x30\x9c\x26\x18\x59\x79\x84\xd5\xd0\x13\x03\xef\x0f\x9a\x01\xc7\xe8\x89\x33\xdf\x23\xf1\x10\x01\xf0\x71\x85\x20\xb3\xf5\x8f\x39\xe8\xd0\xcc\xc0\x01\x04\xa9\x7f\x28\x1e\x6d\x06\xf2\xcc\xd9\xd9\xdb\xf9\x50\xdf\x25\x10\xa3\xf0\xda\x5d\x2a\xe5\x94\xc4\xd6\xab\x35\x99\x1e\x58\xd8\x1b\xa6\x34\xf2\x99\x69\x68\xd0\xa1\xc8\x61\xd0\x28\xf0\xaf\x45\xcd\xc4\xba\xac\x5b\x56\xcb\xd2\xea\xa5\xbf\x47\xcf\xd3\xa5\x4b\x82\x27\x48\x3f\xb4\x7d\xdd\xe1\x0c\x1a\x84\x89\x51\x77\x86\x73\xab\x85\xa8\x96\x4c\xa4\x70\xa1\x04\x40\x89\xb0\xc1\xc0\x6c\xe9\x94\xdc\xee\x67\x11\xb7\x1a\xc0\x18\x28\x0a\x71\x53\xd0\xbc\xc1\x85\x95\xb1\xbb\x83\x51\x5d\xb1\x68\x2d\x78\xd4\xae\xbe\x51\xff\x80\x52\x8f\x86\x2b\xbe\x49\x65\x8e\x51\x22\x50\x5e\x81\x65\x82\x25\x87\x39\xe1\xa9\xc2\x24\x83\x25\xcf\xd8\x03\x4d\x92\x9e\xa5\x22\xb5\x30\x26\x85\x22\x47\x97\x3f\x13\x4b\x89\x21\xac\x26\x7e\xa4\xff\x6a\xf4\x5a\x9f\xe1\xb1\x0f\x3f\x0c\x3d\xcc\x94\x40\x14\x04\x7b\x04\x93\x6b\x9f\xf1\x16\xcf\x40\x2e\xc9\x57\x18\x78\x08\x3b\x84\xb1\x2e\xa2\xb5\x24\xd7\xc8\xb4\x4d\x7d\xf4\x94\x8b\x55\xde\x6d\xbd\x1d\xb4\xdf\x01\xc4\x20\xf5\x47\x80\x07\x00\x32\x9b\xdb\x48\xf0\x0f\x0e\x69\xa8\xa9\x66\x28\x8f\xbb\x50\x9e\x5b\x9b\x6e\x10\x0a\x03\x20\x10\x88\xe5\x0d\x6c\xee\xad\x79\xda\x89\x35\x2b\x6b\xb6\x40\x88\x72\xb6\xa9\x0a\xe6\xfb\xe2\xaa\xeb\x9b\xfb\x20\xa2\x01\x61\xd3\x58\xaa\xbc\xbb\x7e\xe7\xd0\xaa\x32\xd5\x67\x28\x5b\xaa\x37\x39\xa8\xd6\x63\x62\xd0\xd1\xde\x7c\xcf\x76\x06\xb5\x53\xca\x4d\xcd\x98\xee\xe9\xb5\x5a\x4b\xd8\xa3\xca\x68\x0d\xa6\x74\x21\x0b\x35\x80\x91\x7c\x2c\xcd\x51\x48\xa5\x6f\xdf\x30\xcc\xb8\xc4\x87\x7b\x7c\xd1\xf0\x48\x77\x4c\xc8\xc8\x30\x46\x86\xf1\xef\xcd\x30\x84\x54\x56\xac\x0a\x82\xa5\xdb\x5f\x3c\xd0\x53\x3c\xcc\x47\xdc\x0a\x65\xb2\x22\x5f\x4f\x34\x93\x79\x2c\x0c\xb0\x9e\x7b\x3c\xc0\x29\xfd\x34\x77\x74\xfa\x4b\x05\xee\xdd\x81\x0b\xdb\x8f\xc8\xfb\x5b\x66\x59\xc8\x04\x70\x25\x01\x0b\x93\x29\x60\x3d\xcf\xba\x42\x73\x4c\x5c\x99\x39\xe7\x0b\x88\x7f\xbf\x86\xe4\x0d\x9b\x8a\x80\xb1\x33\xcf\x17\x2c\xa2\x45\x6e\xa2\x39\x7a\x02\x83\xcb\x25\x46\x2c\x83\x31\xca\x88\x90\x17\xe8\x4e\x7c\x6b\x72\x12\x6a\xf1\x2d\x7d\x2c\x16\x03\x5f\x4e\xdc\xd8\x8d\x23\x37\x72\x03\xff\x00\x4d\xa5\xf6\xd7\xf6\x75\xf5\xf7\xcd\xd9\x2d\xfe\x1a\x9e\xc6\x8c\xf8\x86\x2b\x66\xc3\x43\xa8\xb0\x08\x62\x5d\x0a\x10\x24\x43\x5e\x4d\x3e\xfb\xf2\xcb\x0e\x1f\xdb\xa7\x43\x7b\x74\x23\x0e\xe3\xc6\x37\x18\x88\x34\x2c\x55\xa2\xa3\x15\x9d\x9d\x75\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xfc\x3b\x1e\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x08\xed\x64\xa4\x65\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\xb4\x3f\x63\x96\xc4\x98\x25\x51\x7e\xc6\x2c\x89\x31\x4b\xe2\xd3\x67\x49\x74\x54\xa3\xd5\x3a\x06\xd6\x3b\xf3\xfd\x36\xa4\x57\x9e\x17\xcb\x4d\x75\xbc\x27\x94\x39\x34\x6f\x8e\x75\x0e\xc7\x3a\x87\x63\x9d\xc3\xb1\xce\x61\x98\x34\x8e\x75\x0e\x47\x0f\xfe\xe8\xc1\x1f\x3d\xf8\xa3\x07\x7f\xf4\xe0\x8f\x1e\xfc\xea\x33\x7a\xf0\x9d\xcf\xe8\xc1\x1f\x3d\xf8\xe6\x33\x7a\xf0\x47\x0f\xfe\xe8\xc1\x1f\x3d\xf8\x23\x2d\x1b\x3d\xf8\xa3\x07\x7f\xf4\xe0\x8f\x1e\xfc\xf6\x67\xf4\xe0\x37\x3f\xa3\x07\x7f\xf4\xe0\x37\x3f\xa3\x07\x7f\xf4\xe0\x97\x9f\xd1\x83\x3f\x7a\xf0\xc7\x3a\x87\x63\x9d\xc3\xb1\xce\xe1\x58\xe7\x70\xac\x73\x48\xc6\x3a\x87\x03\x67\x18\xeb\x1c\x8e\x75\x0e\xc7\x3a\x87\x63\xd9\xaa\xb1\x6c\xd5\x58\xe7\x70\xac\x73\x38\xd6\x39\x0c\xaf\x7f\xac\x73\x38\x32\x8c\x91\x61\x8c\x75\x0e\xc7\x3a\x87\xb5\xcf\x58\xe7\x70\xac\x73\xd8\xf8\x8c\x75\x0e\xc3\x0a\xe4\x58\xe7\x70\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\xe8\xd8\xf1\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\xc4\x98\x25\x31\x66\x49\x8c\x59\x12\x63\x96\x44\x68\x27\x23\x2d\x1b\xb3\x24\xc6\x2c\x89\x31\x4b\x62\xcc\x92\x18\xb3\x24\xc6\x2c\x89\x31\x4b\xa2\xfd\x19\xb3\x24\xc6\x2c\x89\xf2\x33\x66\x49\x8c\x59\x12\xff\x89\x75\x0e\xa1\x78\x61\x5f\x95\xc3\x2b\xfd\x50\x07\x0e\x57\x91\xd1\xca\xd6\x43\x0c\x08\xbe\x18\x0b\x82\x15\xe6\x40\xc4\xd7\x83\x82\x4d\x3c\x9e\xa2\xd4\x5f\xda\x2c\xd6\x7c\xa5\x45\xa8\xbb\x03\x18\xef\xee\x00\x0e\xdb\x3c\xeb\x1b\x9a\x2e\x35\xfb\x57\x40\x5e\x60\x80\x44\x3e\xb0\x0c\x57\x83\xb1\x35\xce\xe2\x72\x22\x37\x5c\x29\x16\x1f\x69\xed\x15\xc3\xb2\x7d\x83\x46\x52\xe4\x1c\xcb\x3b\xa2\x76\x7a\x77\xc0\xc5\x92\x0b\xae\xd8\xdd\x01\x99\x10\x88\xe8\x70\xb6\x63\xd5\x01\xb3\x4e\x92\xd0\x5c\x4d\x49\xb9\x33\x2f\x48\xf4\x5a\x79\xcc\x84\xe2\x11\x4d\xcc\x02\x9b\xe3\x70\x41\x68\x92\xae\xa9\x28\x36\x2c\x73\x9e\x83\xca\x8a\xbe\x51\x8d\x0b\xcd\x28\x52\xe8\xb6\xf4\x1a\x01\x11\x37\x44\xb1\x59\xb4\x75\xdc\x0e\xa2\xd7\x50\x0a\x6f\x5d\x05\x03\x11\xc5\x51\x33\x8a\xdc\x48\x4c\x3c\xba\xc7\xff\x93\x85\x17\xff\xf5\x92\x1b\x02\xa3\x03\x5c\x13\x43\xec\x80\x45\x49\x63\xdf\xe8\x10\x7b\xab\x75\xe4\x64\x29\x93\x44\x3e\x40\x40\xa0\xd1\x7d\x4a\x6d\x00\xc9\xd2\xef\x50\x34\xc6\xdb\xfe\x3e\xe1\x8a\x65\x34\xd1\xdf\xf8\x46\xbe\xbb\x23\x13\x8c\xa1\xd7\x88\xb2\x49\x69\xc6\x73\x29\x8e\x08\x24\xd2\x58\x99\xd6\x0e\xb9\x94\x92\x2c\x68\x06\x72\x76\x39\xdd\xaf\xf6\x9c\xae\x9a\x4f\x4b\xe4\xec\xcf\x05\x4d\x7e\x8b\x61\x5f\x96\xce\xf2\xa5\x21\xb0\x3c\x87\x67\xac\xcd\xa8\x9c\xd2\x7f\x2f\x7f\x82\x75\xd0\x2a\x58\x61\x51\xfd\x33\xc2\x7f\x4e\xa7\x53\xf2\x37\x67\x05\x2a\x2b\x98\x8d\xde\x2e\x03\xa0\x70\x8e\xdf\x13\x7f\xc0\xa5\x31\x96\xf5\x4c\x55\xad\x55\x6f\x80\x8b\x01\x8b\xf3\x4d\xb6\xe7\x7a\x61\xb2\xae\x05\xfa\x8f\xc4\x59\xb3\xd6\xa7\x60\xbc\xf7\x5a\xba\x79\x51\x4d\x7d\x5b\xce\x4c\x55\x75\x3a\xce\xc9\xfc\x0a\x90\xd4\x4b\xf3\xcd\x10\xa5\x62\x2d\x97\xf0\x2c\x68\x56\xf0\xdf\xe2\xe5\xcb\xcf\x5e\xe3\xff\xe3\x2f\xe5\x3b\x37\x6b\x99\xa9\x49\xc4\xb3\xa8\xe0\x0a\xf8\xa6\x79\xc9\x37\xd1\x5f\xff\xda\xf9\x36\x58\xe0\xd4\x73\x7c\xe6\x45\xf9\x50\x4a\x33\x26\xb0\xd6\xea\x2a\x93\x45\xaa\x85\x85\xbb\x3b\x45\x93\xe4\xb9\xd7\x92\x6a\x8a\x7f\xa2\x6f\xbc\xa4\x17\x76\x34\x8b\xc3\x34\x49\x1c\x05\x09\x2e\xe8\x1b\xc4\x07\x94\x00\xfc\xcc\x9d\xea\xab\x8d\x74\xc6\x86\x0f\xb9\x24\x33\x3f\x22\x93\x23\xf2\x1e\xe0\x70\x3c\x25\x37\x70\xe5\x88\xb9\x72\xc1\x41\x37\x32\x63\x24\xd5\xb2\x51\x9e\xf3\x2d\x23\x0b\x0c\x7c\xdd\x59\xc5\xdc\x98\x4c\x08\xcb\x23\x9a\x32\x12\xad\x69\x46\x23\xc5\x32\xb3\xec\x0b\x8c\x1f\xf4\x5e\x86\xe7\x40\xf8\x37\x34\x66\x93\x22\x45\xb4\xc8\x5f\x94\xe4\x08\xb2\x2d\x0c\xe9\x78\x60\x0b\x2d\x7c\x31\x43\x3c\xdc\x13\x8f\x59\x9a\xc8\xdd\x86\x09\x2f\x39\x35\xef\xa7\x99\x8c\x2d\x92\xc2\xb8\xfa\x4e\x01\x4d\xca\xa4\xd0\x0a\xba\x83\xea\x5a\xa7\xc5\x2f\xfe\xa6\x1f\xaf\xc6\x27\xbf\xfa\x5d\xe8\x06\xc4\x6c\x6b\x87\xff\x15\x69\xdc\x02\x1f\x29\xeb\x92\xa8\xea\xaa\x6c\x87\xa3\xa5\x43\x8f\xed\x96\xba\x97\x18\x54\x55\xb1\x05\xdf\xb6\x2c\xc7\x42\x1c\x35\xe2\x30\x96\x31\x96\xc2\x2e\xd2\x4a\xba\x3e\x87\x49\xd7\x1e\xc1\x5c\x36\x80\xa7\x82\x55\x8d\x8b\x98\x47\x20\x97\x3f\xac\x21\x8b\x0f\xb9\x97\x61\x89\x4e\x3c\x81\xa9\x73\xec\xa5\x53\xfa\xde\x49\x53\xe8\xf8\xc8\xfc\xa5\x65\xea\x29\xc1\xe8\x1d\xe0\x26\x8f\xa9\x16\x52\x54\xb2\x73\x44\xea\xe7\x50\xa4\xd9\x1b\x96\xe5\xd0\x51\x41\xa2\x8c\x99\xa0\xe1\xdc\xdc\x6e\x99\x11\xc1\x93\x17\x47\x36\xf0\x37\x66\x4b\x5a\x24\x2a\x27\xb8\x2d\x0d\xba\x2c\x0e\x88\xd4\x4a\x92\x07\x4d\x2b\x67\xa6\x94\xb6\x5e\xc4\x85\xf9\xa7\xbe\x8f\x86\x72\x96\xb5\x8a\x21\x52\x05\xcd\x91\x66\x1a\xdf\xa8\x3c\xc7\xdb\x35\x21\x7f\x34\x72\x91\x5e\x8a\x9d\xe3\x4f\x47\x86\x39\x68\x29\x13\x4c\x5e\x76\x4a\xac\x27\xfd\x9c\x8b\x28\x29\x82\x2b\x5e\x33\x12\x51\x2d\x79\xc2\x00\xd5\x30\x04\xd9\xb3\x90\xe5\x66\x60\xb8\x17\x9e\x95\x5c\x04\xeb\x54\x37\xd7\x56\x5b\x98\x26\x49\xcd\xe1\xc3\xfb\xf4\xa2\x47\x73\x0d\xad\x09\x41\xff\xf2\x9c\x06\xd6\x38\xf7\xd3\x05\x81\xa8\x55\x97\xf5\x33\x46\xf5\x3d\x8a\xee\x09\x5d\x51\x2e\x8e\x0c\x36\xa0\xd1\x2e\x79\xa0\xbb\xdc\x84\x66\x7a\xb1\xd8\xfa\xd9\xd0\xc1\x76\x44\x04\xdb\xb2\xac\x86\x6f\x5e\x73\xda\xc0\x32\xe8\x15\x14\x08\x03\xa6\x51\x9a\xa2\x53\x99\xe7\x7c\x91\xd8\x89\xab\x08\x02\xfd\xc2\x4d\xca\x22\xbf\xbe\x87\x7b\x0b\xc7\x54\x74\x6b\x96\x41\xa5\xcd\xaf\xeb\xb5\xbf\x05\x9e\x11\xbb\x9e\xa2\x5c\xc9\x8c\xae\x98\xfd\x2a\x57\x54\x15\x08\x18\x34\x98\xb2\xf8\xd2\x31\x65\xdd\x73\x11\x6b\x3a\x64\x41\x9a\x26\x45\x46\x93\xea\x9b\x48\x0a\xf4\x5d\xe4\x27\xe4\x8f\x7f\xd2\xdf\xe8\xf1\x59\x6c\xd2\x8e\xcc\xb7\x93\xc9\xc4\xfc\xdf\x4f\x3f\xf1\x25\x61\x7f\x26\xd3\xeb\xaf\x4f\xcf\xce\xa4\x58\xf2\x15\xb9\x3b\xc8\x16\x34\xba\x3b\xf8\xdb\xdf\xee\xc4\x33\x32\x83\x2b\xc6\x08\x25\x51\x52\xe4\x8a\x65\x99\x4c\x58\x59\x32\xfc\xbe\x58\xb0\xca\x86\x9a\xe5\x20\x73\x4b\xc1\x84\x3a\xd2\x2f\x43\xd1\x71\x2e\xc0\x1d\x69\x9c\x29\x11\xda\x5d\x5b\x2f\x1a\xfa\x5d\x19\x01\x71\xab\x67\x38\xe9\xb5\x4c\xd8\x9d\xa0\x29\xb7\xe9\x56\x44\xaf\x71\x4a\x0b\xb5\x96\x19\xff\x0b\x3a\x3f\xee\xbf\xca\xa7\x5c\x1e\x6f\x5f\xdd\x89\x5a\xe6\x92\x66\x7a\x27\xa1\x89\xef\x04\x5c\x18\x78\xf0\x19\xb9\x94\x31\x4a\x33\xe4\xc1\xf8\x38\x94\x24\x1b\x29\x38\xf8\xf2\x65\x46\x62\x96\x30\x80\x2f\x60\xcf\x84\xd0\x94\x7f\xab\xa5\x2c\x0d\x59\x7d\x08\x7f\xc2\x73\xc9\x98\x31\x59\x97\x28\x3e\x21\x42\x8f\x8d\x7f\x6e\x59\xb6\x70\x7f\x7a\x70\x9d\xb2\x13\x30\xbd\x55\x7f\xad\x30\x76\xee\x19\x99\xdb\x74\xfe\x3f\x17\x2c\xe3\x46\xac\x2a\xb3\xac\xd9\x23\xcf\x15\x13\x11\xdb\x7f\x65\xa9\x8c\x03\x0b\x2b\xe7\x9e\xcd\x4f\xdf\x56\xef\x9a\xe0\x4d\xc1\x53\x68\x4c\x10\x6b\x12\x2b\x70\x83\x26\x68\x34\x61\xca\xd8\x71\x9a\x2b\x89\xb2\x78\x9a\x66\x52\xdf\x09\x3c\x92\xa9\xcc\x56\x9d\xcb\xe3\x69\x2a\x65\x12\x58\xa1\x85\xd5\x87\x4f\xb3\x48\x64\x74\x4f\x97\x60\x49\x70\xec\x02\x7a\x7e\xba\x81\x1f\x1b\xdf\xad\xa9\x88\x93\xd0\x91\xae\x98\x0a\x1d\x28\x30\x66\x56\xfd\x5d\xa4\x71\xed\x6f\x84\x1e\xc2\xbd\x75\x4f\x36\x54\xd0\x15\xcb\xc9\x5a\xe6\xca\xf1\x58\x7c\x14\x08\xd4\xc6\xfc\xa4\xdb\xba\x64\x2c\x06\x81\x43\x73\x2c\x25\xcd\xb3\x96\xc4\x38\x89\x6d\x1f\x6b\x6b\x9e\x91\x07\x6c\x30\xbc\xa5\x67\xe4\xfb\x62\xc1\xce\xaa\x83\x41\xe2\x59\x64\xa5\xc8\x85\x52\x07\x57\x7a\xc4\x9c\x70\x05\x19\x14\x4b\xbe\xfa\x38\xfb\xd1\x78\xe1\xa0\x45\xe4\xce\xee\xdd\xd9\x33\xe4\xf3\x7a\x1d\xf2\x41\x38\x6b\x69\x6d\xfb\x99\xd9\x36\xa1\x56\x72\xd3\x82\x87\xd0\x7a\x38\xd0\x98\x3c\x04\x9f\x67\xf6\x18\x91\x89\x85\x30\xe1\x19\x92\x3b\x20\x5a\xd1\xba\x16\x37\x53\x52\x42\x60\x4e\x2d\x0e\xf0\x35\x17\x28\xec\x7d\x22\x46\x20\x13\x76\xcd\x30\x06\xc5\x9e\x4f\xc7\xf8\xfa\x31\x0f\x93\xea\x9d\x26\x2f\x40\x20\xd0\x47\x33\x31\x03\xd4\x75\xa5\x01\x63\x38\xd1\xff\x27\x48\x23\xf2\x5d\xae\xd8\xc6\x40\xce\xfc\xe7\x99\xc9\xf5\xb0\x03\x1d\x2b\xb6\x49\xa1\x93\xcc\xb1\x19\x59\x93\xec\x09\xec\x70\x47\x37\x49\x3f\xbf\x77\x5e\x23\xe7\x94\x6d\xa4\xb8\x61\x7d\xac\x1e\x1e\xfe\xb9\xd8\xbb\x9e\xac\xce\xd2\xb5\x06\x72\x76\x39\xd3\xa2\xd2\x8a\x0b\x22\x80\xf2\x28\xa9\x31\x1e\x18\xdf\x11\xf2\xad\x23\x6c\xab\xe2\x44\x71\x3f\x9d\x8b\x36\xb8\x3d\xfc\x59\x0e\xdc\x49\x76\xf6\x9a\xb0\x15\xb4\x30\xb1\x60\x0e\x50\x80\x77\x46\x83\x8e\x79\x1e\x49\x2d\xa6\x5b\xa5\x79\x36\x47\x83\x11\x8d\xb7\x2c\x53\x3c\x67\x1b\x37\x36\xa4\x53\x3e\xf1\x8c\x7a\xbb\x4b\xd7\x34\x9f\xfa\x25\x18\x72\x36\x3b\xbf\x26\xb4\x50\x72\x12\x33\xc5\xb0\x5f\x92\x14\x80\xc4\x34\xde\x98\xf3\xa9\x38\x03\x12\x2a\xb2\xa1\xe9\x13\x8e\x04\x5f\xd6\xef\x7e\x3c\xa8\xc3\xc1\x1e\xbb\x24\xae\x09\x66\xcd\xdc\x4c\x5b\x9d\x28\x61\x14\x8c\x5a\x5a\xb0\x34\x49\x0c\xef\x04\xdd\x52\x9e\x50\xad\xbc\x2c\x13\xba\x72\x00\x95\xba\x70\x7e\x66\xd5\x74\x10\xe1\x73\x8c\x12\x8c\xea\x6c\xc6\xc9\x00\xe7\x28\x80\xb9\xa9\xef\x53\x3f\xe7\xfa\xb1\x49\x7e\x35\x9c\xbf\x2f\xa3\xda\x6a\x99\x23\x3c\x70\x13\x04\x3e\xc3\xc5\xca\x52\xc3\x4e\x98\xe1\xd3\x69\xcd\xe5\x32\x50\x08\x36\x08\xb6\xd8\x59\x70\xe8\x85\x5b\xed\xb5\xda\xff\x07\xdf\xd7\xc6\x05\x75\x6e\x93\x35\x29\x75\x0b\xa0\x8d\x4d\xb4\x08\x4f\x6a\x03\x79\x64\x6c\xd1\xe7\x69\x6b\xee\xc0\x3d\x07\x83\x4a\xec\x31\xda\x4b\x4e\xb6\x34\xe3\xb2\xc8\xc9\xd9\xf5\x39\xde\x76\xc4\xa5\x8f\x24\x60\x61\x7a\xd1\x92\x25\xfc\x11\xc7\x75\xe0\xe8\x7c\x5b\x17\x51\x40\xec\x5e\xa5\x29\x33\x4c\xcd\x1d\x6a\xb1\x4a\x5b\x03\x95\xdf\xb5\x87\xa9\x29\x09\x21\xa9\x1d\x47\xf6\x62\x63\xeb\xe7\x9c\xb9\x84\x35\xf8\x8e\xf7\xe9\xa0\xb4\x19\x90\xb2\x83\xea\xc7\x1e\xe2\xf7\x43\xfb\xe4\x8b\x5c\x95\xb2\x9c\x88\x4b\xe9\x4c\xd3\x11\x40\x02\x29\xb4\xa8\x96\xa9\x22\xfd\x14\x9a\x5a\xef\xc9\x0f\x96\xc9\xbb\xc4\xf0\xbd\x68\xa4\xf1\xc0\x6a\x3a\xf9\x51\xf5\xf7\x61\xc7\x72\x0b\x86\x32\xeb\xb9\x90\x02\x75\x65\x88\x1a\xb1\x41\x06\x70\x2f\x8b\x74\x95\xd1\xd8\x04\x2d\x6e\x3f\x9b\xbe\x46\xd9\x24\xc2\x0e\x7f\xcf\xc8\x82\x91\x8c\x6d\xe4\x96\xc5\xc6\xc1\x6e\x5f\x90\x99\xde\xe1\x32\x63\xf9\x9a\x70\x91\x2b\x9a\x24\x1f\x55\x89\xea\xb8\x7e\xf5\x5b\xbc\xcf\x01\xfa\xa1\x52\x03\x88\x39\x63\x4d\x4c\x95\xd4\x8f\xea\x13\x45\x93\x04\x4d\x12\x19\x7d\xdc\x4d\xfe\xf2\xcc\x00\x1f\xe3\x62\xd2\x4d\x8d\x9a\x06\x0d\x3d\x5f\xeb\x1d\x92\x6a\xff\xf5\x32\x26\x80\xcd\x20\xb9\x2c\x76\x70\xcf\xf0\x80\x32\x59\x68\x1a\xb3\x5a\x65\x36\x10\xf9\x13\x9e\x45\x50\x6e\x30\x2c\x17\x91\x05\xb0\x63\xc3\x57\x86\x0a\xd4\xc4\xfe\x18\x34\x17\x4d\xb2\xa7\x1e\xf4\x8b\xa8\x30\x91\x27\xcf\xca\x7b\x06\x0a\xb0\x32\x17\x4d\xcb\x73\x70\x37\xa1\x0e\x40\x75\xcd\x48\x91\xeb\x9f\x34\x7d\x9f\x68\xac\x4c\x60\x11\x5e\x50\xd0\x34\xcd\x3b\x77\x5e\x2d\xb1\xe3\xbc\x8c\x9a\x37\x5c\x6f\x0a\x6b\xd4\xbd\x1a\xd5\xa7\xd0\x8d\x71\xe8\xfd\xf5\x61\x7c\x2f\xac\x03\xff\xf4\x13\x13\xf1\xdf\xfe\xb6\x97\x16\x5c\x2a\xc0\x90\x21\xb4\xa1\x82\x2f\x59\xae\xec\xf9\xe6\x2d\x85\xd6\xf8\xb3\x59\x76\x44\x68\x4e\x1e\x58\x02\x2f\x9b\xd8\xe4\x4a\xec\xcb\x4d\xb7\x4e\x10\x12\xac\x32\x23\x85\x7e\x96\x51\xa8\xf0\xa8\xa1\x03\x0f\xe9\x27\x58\x86\x42\x3c\x74\x14\x75\x44\x72\xc3\x2a\x4b\xbd\xb9\xd4\xbd\xeb\xa7\xaf\xd1\x6a\x90\x82\x1c\x86\x1d\x31\x6e\x6f\xeb\x70\xf8\x2a\x9f\xd0\x34\x6d\x1e\x59\xca\x22\x78\xa0\x11\x8d\x04\xd1\x02\x6f\xdc\xf7\x43\x23\x10\x43\xee\x6e\x54\x46\x15\x5b\xed\x4e\x8c\x2f\x62\xfa\xae\xf6\xb5\x3e\xc4\x9f\x7e\x22\x4a\xfe\x81\x6e\x92\xe6\x8f\xe4\xaf\x84\x8b\x98\x09\x45\xbe\xc0\xe7\x58\x92\x33\xfd\x2f\x52\xfa\x5e\xae\x65\x92\x70\xb1\x7a\xe7\x90\xd6\xcc\xfd\xaa\x5c\xe5\x86\x3e\x3a\x7a\xd9\x09\x79\xe5\x60\x11\x21\x16\x63\xec\x36\x9b\x75\xd1\x92\xfa\x96\xc3\x9b\x26\xa0\xd7\x5d\x53\x11\xad\x59\x36\xb1\x45\x5a\xb0\x67\x71\xa5\xb8\x61\x92\x4d\xb4\x66\x71\x91\xb0\x6c\x0a\x21\x13\xd3\x2a\xed\x48\xdf\xe6\x28\xe3\x10\x9b\x36\x49\x65\x5c\x45\x97\xc6\x48\x97\xc0\x0d\xfc\xf9\xf4\xd5\xe7\xd3\x2f\xc0\x41\x4e\xec\xd4\xfe\xb2\x68\x88\xf3\x47\x84\x26\x52\xac\x30\xf6\x0d\x90\xd8\x4c\x71\x1a\xc7\x52\xe4\x98\xc3\x23\x13\x66\x08\x2a\xa4\xb1\x1c\xb9\x83\x6c\x68\x76\x6f\x7d\x73\x31\xc6\xa7\xda\x55\x12\x1a\xc7\x13\x08\xc3\x12\x79\x01\xfa\xb0\xb1\x8b\xba\xef\xa7\x19\x97\xd0\x77\xd8\xec\x1c\xa2\x5c\x85\x09\x67\xe4\x2a\x6f\xb8\x1f\x32\x86\xce\x34\x77\x08\xbe\xd4\x03\x83\x07\x12\xac\xae\x6c\xcb\x23\x55\x8b\x27\x1d\x0e\xd5\x13\x72\x68\x0a\xa9\x96\xd8\x4e\x20\x2b\x21\xf6\xd5\x28\xa9\x8f\x23\xf3\x13\x92\x70\x51\x3c\xda\x07\x7e\xfa\xc9\x94\x88\xf9\xaf\xfb\x23\xf2\x5f\x5b\x72\xf2\x3b\x32\xbd\x74\x46\x22\x16\x6d\xcd\xc3\xff\x75\x4f\xfe\xf6\xb7\x13\x72\x77\xa0\xff\xbd\xd5\xbf\x1e\x38\x43\x31\x11\x3b\x2f\x68\x7e\x63\x54\xf6\x7a\x0a\x5a\x75\x5a\xf5\xd3\x7e\x4b\xef\x19\xc9\x8b\xac\x4e\xd0\x00\x60\x16\x3c\x10\x52\x01\x65\x0d\xb4\xd0\xeb\xc0\x6f\x62\xd2\x3c\x4e\xc8\xa5\xbc\x31\x0f\x57\xbf\x12\x22\x53\x3d\xa5\xcc\x4e\xc8\x45\xcd\x56\x8c\xf3\x66\xf7\x9d\xf8\x81\xb2\x04\xab\xce\xbf\x36\xf1\x3d\xdb\x9d\x78\x90\x72\xd8\xec\xee\xba\x2f\x1e\x59\x54\xa8\x41\xcb\xee\xf3\x8f\x1a\xa4\xaa\xb1\xab\x4b\x1f\xb9\xc5\xc1\x4a\x82\x62\x00\xc2\x05\xdf\xf0\xbf\x30\x12\xcb\x07\xa1\xf8\x86\x91\x18\x6f\x07\xb5\x54\xca\x15\xed\xad\xeb\xf1\xb7\x44\xb1\x24\x71\xb9\x83\x92\x24\x96\x50\xb4\x19\x0a\xb8\x55\x13\xd8\x57\xee\x0e\x4e\xa0\xd6\x7b\x7e\x72\x7c\x5c\xc7\xd4\x58\x46\xf9\x71\x24\x45\xc4\x52\x95\x1f\xdb\xfa\x17\xf9\x31\x18\x1a\x52\x19\x1f\x3f\xb3\x51\xe8\x5c\x8a\x89\x5c\xea\x9b\x51\xe1\x83\xf3\xdb\xb7\x19\x8d\xd8\x9c\x65\x5c\xc6\x37\x2c\x92\x22\xce\x4f\xc8\xcb\x16\xc9\xab\xea\x52\xa1\xe9\xc9\x3e\x60\xef\xfe\x59\x42\xf3\x1c\x01\xf8\xd3\x4f\x64\x8a\xb2\x9c\xbe\x28\xf3\xe6\x03\xe4\xaf\xa5\x77\xe2\xee\x00\x99\x17\x5a\xb3\x2d\x4e\xdd\x1d\x38\x77\x44\x0b\x90\x67\x96\x63\xb7\x69\x5f\xc5\xcd\xad\x76\x91\xd7\xb5\xb0\x86\x4c\x07\x86\x49\x3c\x60\x2d\x59\x4f\xdd\xf1\x66\xca\x48\x90\xd6\x0b\x8a\x61\x1b\xb6\xe6\x5f\x5b\x3b\x83\xe0\x1f\xbe\x24\x3b\x59\x60\x1e\x16\x4d\x32\x46\xe3\x9d\x3b\xa8\x59\x0c\xd8\x59\x8b\x9c\x05\x26\x9f\x18\x56\x6f\x9e\x86\x9f\x5d\x2c\xe7\x1b\x88\x34\xf8\xe9\xa7\xe9\xd9\xe5\x6c\xa6\xff\x70\xc9\x0e\x04\xcc\x6e\xa8\x16\x2f\xfe\x78\x77\x70\x2c\x53\x75\x1c\x09\x7e\xbc\xe0\xe2\xd8\x99\x0e\xa2\xd2\x0e\x26\x66\x8a\x52\x86\xc5\x0f\x13\xdb\x6f\x32\xb9\xa9\xc5\x75\x58\x2b\xec\x5b\x9a\x5a\x01\xd2\xfd\x3c\x23\xa7\x10\xff\xfb\xfd\xbb\xaf\x2f\xae\x2f\x2f\x6e\x2f\x6e\xde\xdf\x5c\x5c\xff\x30\x3b\xbb\x78\xff\xdd\xd5\xcd\x2d\x70\x00\xcf\x6f\xf3\xab\xeb\x5b\x13\xfe\x2d\xb7\x2c\xcb\x78\x1c\x33\xa4\x1f\xec\xeb\xf9\x37\x64\x63\x35\x7c\xf7\x83\xc0\x71\xd2\x77\xad\xb5\x7c\x62\xcd\x31\xcd\x37\x6c\x98\x5a\x3b\xb5\x97\x89\x6d\x63\x2b\x16\xf8\xce\x62\x2f\xaf\xce\x2f\xde\x5f\x9e\xbe\xbd\x68\x8e\x0b\x31\x2b\x2d\x48\xe1\x07\x62\x53\x7c\x90\x2a\x7f\x9c\x53\xb5\x3e\x81\x9b\x34\xd5\x18\x0f\x61\xe4\xde\xa5\x9c\x9d\xbe\x99\x9d\x5d\xbd\xbf\xbc\xb8\xfd\xf1\xea\xfa\xfb\xd9\xe5\xb7\xef\xbf\x3e\x3d\xfb\xfe\xe2\xf2\x7c\x9f\xf5\x94\xa7\xf7\x3d\xdb\x85\x96\x55\x93\x30\xeb\xae\x45\xf7\x03\x14\x1c\x9f\x7a\x6f\xa3\x1a\x9d\xc7\xb6\x32\x29\x36\xec\xad\x2f\x5f\x6e\x42\x36\xfa\x6b\xdc\xf9\xf1\x96\x66\xc7\x09\x5f\x00\x7a\x5a\xfb\x9b\xff\xb0\xab\x7b\x3b\x11\x4c\x4d\x62\x9e\x75\x8d\xab\x9f\x76\xf1\xde\x3f\x66\x24\xf8\x64\xc1\x45\x73\xb0\x9c\x45\x05\x50\x28\x29\x14\x7b\x6c\x56\x4d\x4f\x33\xbe\xe5\x09\x5b\xd5\x83\x7f\x88\x8f\x02\xd5\x54\x0e\xad\x49\x2c\xb8\xa0\x59\x2d\x53\x01\xdd\x6d\xfa\xb7\x86\x66\xb1\xe4\x09\xc4\xfe\x81\x6e\x21\xea\x97\xc0\x62\x85\x19\x7f\x12\x09\xfe\x51\x88\x83\x19\x6f\x24\x05\xce\x46\x80\x43\x99\x90\x34\x7d\x4c\xee\xf1\x68\xde\x01\xa6\x9f\x69\xe0\xd6\x5e\xce\xde\x9f\x5d\x5d\x7e\x13\xa6\x1c\x5a\x30\x7c\xf5\x72\x62\x8c\x28\x7a\x6c\xb0\x2c\x1d\x34\x57\x61\x3d\x10\x0d\x24\x81\xc0\x54\x38\xb3\x10\xaa\x34\x97\x63\x28\x08\x2c\x6b\xf6\xed\xbf\x94\x7a\x08\xfe\xde\x6c\xe7\xbd\xef\xd1\x67\xe4\x86\x61\x82\x8a\xbe\xcc\x90\xd2\x58\x86\x08\x43\xc0\xda\x57\x39\x6a\xd8\xfa\xa7\xc0\x8e\x7f\x01\x14\xfc\x19\x9c\xdb\xdb\xdb\x77\xc4\x08\x9d\x5b\x9a\x71\xad\x99\x86\xcf\xe8\xed\xed\xbb\x7f\xe5\xc1\x6c\x99\x5a\xbf\xdf\xa8\xa2\xb9\x8f\x79\xc6\xb6\x4c\x98\x26\x07\x15\x91\x03\xa9\x2a\x4f\x18\x83\xfc\x84\xa5\xd4\x4f\x35\x9b\xa1\xd8\xdd\xdd\xbc\xb9\xb8\x68\x75\x14\x2a\x2f\xc2\x92\x26\x39\xab\xe3\xfe\x60\x46\xf2\x41\x04\xdf\x3b\x18\x53\x91\x65\x4b\xd3\x56\x12\x58\x35\x9c\x87\x19\x3d\x9d\x7f\x9c\xc6\xb1\x96\x2c\xbf\x49\xd8\x23\xf9\x01\xb6\x4e\xce\x33\xbe\x85\xb0\x74\x6a\x3d\x40\xfa\x89\x94\x65\x60\x2f\x78\x27\xf8\x23\x39\x97\x1b\xca\x05\xb9\x91\xd1\x3d\x56\x77\x81\x64\x0d\x72\xce\xef\x69\xae\xea\xcc\x06\xdc\xf0\x9b\x4d\x21\x20\xea\x1d\x2d\x04\xdf\xb0\x84\x3f\x02\xc1\x75\x93\xda\x6e\x76\x22\x22\xa7\xf3\x99\x87\xed\x2c\x13\xf6\xb8\x95\xc9\x24\x86\xa5\xf9\x39\x8f\xde\xc2\x0f\x32\x99\x6d\x56\x75\xde\x13\x3c\x50\xff\xe0\x13\x7d\x14\x75\xf8\xb5\x0e\xaa\xbd\x8c\xa7\x1d\x40\xe4\xd7\x2a\xae\x0b\xb0\x24\x7b\xec\x85\x25\xcd\x75\x14\x38\x20\xbf\x8d\x6e\x1d\xcf\x5c\xa5\x24\x93\xab\x8c\x6e\xf2\x92\x92\xdb\x54\x03\x11\xa3\xed\x3d\xb7\xa3\xba\xef\xeb\x7d\x7a\x0e\xc2\xa3\x99\xd6\x4f\x41\xeb\x5b\x1e\x01\xe0\x7f\x36\x47\x7f\x97\x33\xf7\xc4\x4e\xe7\x33\x6b\xec\xd5\x92\xac\x26\x62\x31\x55\x14\xdc\x90\x01\x32\x76\x7e\x7a\x7b\x7a\x73\x7b\x75\x7d\xf1\xfe\xf6\x0f\xf3\x30\x63\xaf\xb6\xd0\x66\xe8\x3f\x52\xae\xca\x58\xac\xbe\xf9\x7e\x3c\x9d\xdd\xbe\xff\xe6\xea\xfa\x7d\x39\x71\x70\x4e\x00\x40\x6b\x36\xcd\x49\xf7\x66\x9e\x9a\x63\xfe\x6b\x18\xe6\x5a\xca\x9c\x95\x27\xc2\x84\x55\x96\x43\x72\xcd\xbf\x97\x72\x04\x5b\x44\x2f\x00\xb6\xfd\xd1\x52\x1c\x64\x28\x2f\xb1\xf8\xad\x93\x16\xa6\x7f\x0f\x6c\xfa\xcd\xbb\x9b\xdb\x8b\xeb\x1e\x0c\xfc\x2a\x3f\x5a\xac\xd2\x36\x42\x9c\x56\x51\x5b\x30\xe5\xd7\xdf\xce\x9d\x6a\x9e\x01\x38\xcf\xc2\xac\x9b\x16\x4a\xe2\x70\xed\xb9\x2e\x04\xb8\x19\x67\xf3\xe6\xfb\x8d\xf3\x9b\xcd\x7f\xf8\x62\x7e\x75\xf5\xe6\x7d\xfb\x49\x67\xa6\x53\xc8\x63\x09\xce\x22\x33\x72\xce\x73\xf8\xe7\x0f\xbf\x7f\x73\x7a\x69\x11\xde\x5a\x98\x66\x73\x92\x4a\x99\x74\x63\x52\xb9\x12\x18\x22\xb8\x94\x4b\x2d\xe9\xf8\x2f\x9b\x96\xf7\xe0\x76\x17\x42\xb0\x84\xc4\x0c\x82\xf3\x20\xef\x8d\x2f\x09\x4f\x79\x0a\xb9\x5c\xb0\xe6\xd8\xbf\x96\x6f\x2e\xde\xcc\x7e\xaf\x61\x71\x39\x9b\x77\x4b\x84\xaa\xe9\xea\xaa\xe4\x84\xb9\x8c\x35\x3c\xb2\x02\x28\x24\xf9\xba\x88\x57\x0c\xe9\x4e\x15\xf0\x5c\x49\x0c\xdf\x7f\x95\x97\x98\xa9\x31\x24\x8f\xa8\xf9\x1d\xcc\xef\xff\x3a\xd1\xb3\x06\xd2\xb5\x3d\xda\x1a\x70\x03\x27\x8a\x50\x84\xe7\x7f\xa1\x62\x75\x73\x6f\x3f\xf2\x8c\xad\x0a\x9a\xc5\x7b\xec\xef\xc7\xd9\xf5\xc5\xb7\xef\x4e\xaf\xcf\x7f\xa1\x7b\xbc\xad\xdd\xc0\xed\x17\x70\x07\x2b\xf5\xd9\x09\x5f\x6a\x04\xa8\x4f\x01\x83\x67\xf3\xb2\x8c\x78\x73\xe4\x68\x2d\x73\x2d\x51\xa0\xb3\x8c\xe7\xe8\x9c\x99\x92\xb3\x35\x15\x2b\xac\x27\x67\xcb\x44\x9a\x10\x9b\x9a\x9f\x1f\x46\x5d\xd3\x6d\x6b\x5c\x21\x8d\x9b\xc1\x14\x9a\x34\xd5\x11\x96\x5a\xd5\x36\xf5\xdd\x27\x13\xe3\xcb\x9d\x44\x3c\x6e\x6a\x3c\x3e\xd7\xe0\x85\x93\x03\xca\x54\x8b\xd8\x9c\xcd\xce\xaf\x87\x91\xa5\xf6\x93\x0e\x55\xfa\xe9\xa7\xa9\xb9\xc3\xfa\x31\xd7\xdf\x64\x57\x66\x09\x24\xd8\x30\x12\xb9\x02\x38\xe5\x12\x33\x11\x54\xa2\xbf\xca\xc1\x87\x1d\x62\x04\x66\x3d\xe7\xb3\x9b\xd3\xaf\xdf\x5c\xbc\xff\x66\xf6\xe6\xe2\xfd\x9b\xab\x6f\xbf\x9d\x5d\xfa\x2d\x0a\xdd\x82\x09\xea\x1f\x56\xb6\xd3\x58\xa1\xc5\xdd\x12\x5f\xb0\x2c\x8b\xfe\xfa\xf4\xec\xec\x62\x7e\xdb\x79\x11\xce\x2f\xbe\x39\x7d\xf7\xe6\xf6\xe2\xf2\x7c\x7e\x35\xbb\xbc\xbd\xbd\xd2\xc2\xe9\xe9\xd9\xed\xec\x2a\x4c\xc6\x71\xd8\x30\x98\x66\xf3\xed\x6b\x8d\xa1\x95\xcc\xd8\xb9\x84\xd9\xfc\x87\xd7\x37\xef\xe6\x5a\xf2\xdd\x47\xd3\xf5\xa3\xcc\x39\xd4\xec\x07\xe9\x5a\xa3\x0c\xce\xf0\xe6\xea\x5b\x0d\xf2\xf9\xe9\xed\x77\x1a\x2c\x70\x5d\x30\x6a\x1b\x8f\x15\xe0\x69\xcf\x55\x49\x38\xe7\xae\x15\x3b\xe3\x05\x57\xac\x27\xf9\x90\x05\xdf\x5c\xfc\x70\x71\x3d\xbb\xfd\xc3\xcd\x1f\x6e\x70\xcd\xe6\x4e\xc2\xc5\x2d\x93\x53\xc4\x52\x76\xee\x24\xdf\xe5\x89\x5c\xf5\xec\xc5\x99\x2a\xb8\x9d\x2e\x4c\x74\xe6\xbb\x3b\x78\xa0\x99\xe0\x62\x35\x64\xeb\x37\xde\xfd\x9e\x5d\x5f\x5c\x5c\xea\xb1\x7e\xc4\x91\xda\x3b\x1e\xba\x1d\x18\x29\xb8\xa3\x1f\xfd\x0b\xad\x0f\xf7\xdd\xc5\xe9\x9b\xdb\xef\x2e\x2e\xf5\xb5\xf5\x4b\xc7\xe1\xab\xda\xb5\xe1\xd9\xfc\x56\x0f\x79\x63\xe4\x6e\x90\x28\x0a\x85\x01\xde\x95\x68\x68\x2a\x6c\x88\x25\x76\xb8\xea\xbe\x44\xb5\x01\x3b\xe5\xce\xfa\x52\x9f\x6a\x7c\xf1\x05\x6f\xd9\xef\xb1\x8d\x70\x8b\x3b\x46\x69\x71\x42\x3e\xfb\xf2\x65\xcd\x33\x97\xf0\x2d\x13\x2c\xcf\xe7\x99\x5c\x34\xdb\xb8\xb0\x47\x27\xfc\xa0\x1c\xc5\x58\xe3\x9b\xdf\x4f\x88\xeb\xb0\x6b\xea\xf8\xf8\xc4\x04\x6e\xc8\x44\xcf\xe9\xf9\x71\xc1\xb3\xd8\xf3\x5b\x5a\x77\xed\xbe\x7a\x59\xff\x19\x22\xf4\x68\x72\xce\x12\xba\x0b\x3e\xb4\xa4\x3c\x29\x32\x76\xbb\xce\x58\xbe\x96\x49\x7c\x42\x5e\xd7\x41\x49\x63\xfe\x73\x43\xa1\xe1\x6a\xad\x83\xc1\xf3\x63\x27\x1c\x06\x1b\x1e\x13\xbe\x38\xde\xc8\xb8\xf0\xd4\x21\x41\x84\x4e\xf8\x62\x12\x78\x40\x2f\xea\x4a\x24\x3b\x5f\xbd\xe1\xfa\x2c\x59\x21\x8e\x1f\xf1\xda\x4c\x13\x19\xdd\xfb\xa7\x32\x4f\x4c\x7c\x4f\x54\x73\x21\xf3\xe9\x98\x6c\x4b\x33\x98\x10\x81\xee\x9f\x6a\x4b\xb3\x49\x56\x88\x89\xff\x99\x3d\x27\x03\x0f\x60\xcf\x64\x1a\x8c\x4f\x9a\x0c\x87\x40\x33\x5b\xbe\x13\xad\x6a\x02\xbe\x9d\x6b\x3c\xa3\xab\x56\xdd\x97\x67\xd8\xb6\xce\x5a\xae\x8e\xc8\x03\x83\x70\x54\x63\xe1\x02\x9e\x05\x59\xe6\x58\xa0\x8f\x11\xfd\xa4\xe6\xbe\x18\xd5\x40\xa8\x22\xc7\xf9\x2e\x3f\x5e\xe6\xc7\x8b\x74\xa9\x45\xae\x07\x66\x9e\xc6\x6a\x1b\xcd\xe9\xa0\x02\x90\x22\x31\xcf\x20\xb6\xa8\xd9\x30\xc6\x6e\x2e\xdf\xe5\xcb\x16\x72\xb9\xfb\x32\x93\xb6\x8d\x7a\x5f\x73\x1c\x1b\x4b\xb8\x6c\x18\x15\x58\x18\x0c\x2a\x54\x94\x8b\xeb\xdf\x0a\x57\x28\x4a\xa7\x99\x4c\xe9\x4a\x8b\xf4\x26\x73\xb0\x61\xb9\xb4\xf3\x9a\x7a\x71\x20\xe8\xf1\x9c\xdc\x0b\xf9\x20\x5c\xd0\x51\x55\x9b\x0c\xc3\x28\xb0\x04\x61\x7d\xc9\x26\x40\xc3\xd4\x9b\x6b\xcd\x84\x40\x30\x8b\x82\xc0\xca\xda\xeb\x7e\x70\x46\x82\x4f\x12\xb9\x6a\x7b\x09\xda\xc8\x92\xc8\x95\xc1\xdc\xe3\x86\x13\x96\x04\xef\x37\x92\x96\xba\x91\xd9\x26\x46\xb9\x61\xac\xd5\xef\x93\x6e\x52\xa2\xa1\x08\x6b\x6a\xd0\xb7\x0e\x02\x35\xe9\xbd\xc6\xdd\x83\x86\x48\xc4\xa4\xf7\xc6\xf6\x8f\xeb\xa3\x06\x93\x1e\x0a\xd7\x3d\x6a\x37\xf5\xc4\xf8\xd2\x6f\x78\xc2\xae\xb2\xb3\x5a\x24\x7f\xc7\x0d\xeb\x9e\xd0\x7b\xdf\x70\x9e\x73\x7b\x97\xdb\x93\x55\x09\x98\xd6\xa9\x7b\x76\xe9\xf3\xbf\x04\xbc\x58\xdd\x4b\xf2\xfa\xc6\x26\xdd\x8e\xac\xee\x11\x03\x0e\xb2\x6a\x17\x26\xf5\xf3\xec\x72\x06\x2a\x65\x60\x27\x9e\x9b\x36\x00\x47\x02\xf7\xee\x19\x79\xeb\x90\xd3\x8a\x70\x82\x24\xda\x0c\xfd\x72\x33\x4e\x6c\x2f\x57\x77\x28\x30\xd7\x41\x3d\x8c\x46\xb6\x80\x33\x50\x3d\x7c\xac\x4c\xef\x71\x32\x7b\xdc\x11\x6d\xf2\x41\x6e\x2b\xdd\xbb\xf1\x5d\x20\x79\x55\xae\x22\x0f\xb8\xba\x63\x60\x06\xde\x2c\x6f\xa4\x4d\x75\x68\xc6\x22\x13\x76\x30\x7a\xa8\x88\x9f\xb9\x06\xd6\xd3\x7b\x0d\x48\x9b\xcc\x78\xf8\x71\xfb\xb2\xb4\xbd\xa6\xed\x95\xf6\x78\x17\xf7\x5d\xf2\x4f\x3f\x4d\xf4\x99\x5a\x6f\xe7\x1c\x12\x05\xce\x79\x3d\x08\xb8\xda\x4f\xe5\x17\x2d\x9f\xc4\x70\xf7\x09\x61\x49\xce\x02\x6f\x1d\x17\x39\x1c\x9d\x96\x9b\x9d\x98\x4f\xf8\x67\xc2\xd4\xc4\xa4\x27\x1c\x23\x5f\x39\x86\xc7\x4a\x80\xfd\x7f\x45\x9c\x9b\x19\x4c\xa8\xf1\xa0\x6a\x41\x6e\x2a\x42\x95\x6e\xd2\x4c\xe6\x78\x7a\x6e\xc2\xbe\x79\x1d\xcd\xba\x09\x65\x8e\xc7\x0d\x63\x65\x3c\xec\x8a\xab\x75\xb1\x98\x46\x72\x73\x5c\x4b\x4e\x3a\x6e\x57\x5d\xf0\xa6\x5a\x98\x84\x0c\xa7\xe8\xdf\x3e\x35\x27\x9e\x9c\x88\xe1\xa9\x2b\x61\xc3\xd4\xd1\x72\x5a\xab\xca\x44\x4d\xa7\x46\x8c\x2f\x25\x9a\x92\x24\x0c\x8c\x64\x5b\x86\x57\xc1\x16\x0e\xca\x58\x9a\xf0\x88\xe6\x90\x02\xf1\xa4\x04\x0f\xdf\x26\xf3\x2a\xcd\xa3\xba\x1a\xd7\xac\x4a\x81\xeb\xcb\xb0\xe8\x05\x23\x21\x5d\xa0\x24\x43\x92\x34\x42\xc3\x42\x84\x05\x4a\x5a\x36\x8c\x59\x0b\x9d\x34\xbb\x6f\x44\xb1\xa7\xb2\x92\x25\xfd\xa9\x16\x3f\x7b\xfa\x81\xa5\x35\xb7\x55\x2e\x80\x43\x30\xea\x19\x02\x4e\xa2\x8d\xfb\x78\x99\x65\xf3\x3a\x40\x76\x42\x79\x06\x7e\xdb\x8f\xf3\xb4\x75\xb3\x05\x6b\x82\x49\xf0\xb1\x4b\x92\x30\x05\x1d\x8d\x0a\x11\xca\x4b\x18\xb3\x1a\x06\x65\x35\xb8\x24\x1d\x9f\xf9\xe0\x0c\x87\xd0\xad\x69\x65\x3b\x7c\x48\x0a\x40\xa3\xd8\xd2\xa0\x6c\x80\xd2\xcf\xe2\x4b\x08\xf0\x86\xed\x4c\x86\x91\x19\x52\x8f\x96\xad\x1e\xf0\x07\xcd\xb4\x42\x49\x4c\xa4\x02\xd6\x5d\x77\xf1\x5d\x49\x8d\xe2\x01\x75\xdd\xd8\x5f\xdf\x9f\x5d\x5d\xde\x5e\x5f\xbd\x79\x73\x71\x1d\x32\x54\xb7\xed\x5d\x7b\x85\xa0\x38\x01\x28\x9f\xca\x38\xa7\x65\x13\x30\xd0\xad\x59\x74\x3f\xa9\x97\x8b\xaa\x1e\x9b\x64\x3f\x93\xdc\xb1\x0f\x5b\x6e\xca\x20\x3f\x93\x0f\xdd\xdd\x22\x0a\xce\xc7\xdb\x57\x0b\xa6\x68\xb9\xdd\xb9\x8c\xab\xf9\x70\xba\x7f\xbd\x28\xe2\x49\xab\xfc\x48\x32\xc5\x40\x11\x90\xa9\x28\x9e\xe4\x5a\xd0\x50\x56\xfc\x1b\xf8\xa6\xda\x69\x06\x3d\xf0\x15\x53\x15\x81\x4d\x22\x2a\x68\x62\xde\x3a\x38\xfa\xbf\x08\x21\x07\x66\xbc\xed\xe7\xd3\x57\xbf\x99\xbe\x3c\x38\x21\x07\x48\x87\xff\x2b\xe2\x71\x96\x93\x93\xdf\x91\x3c\x4d\xb8\x7a\xc3\x73\x4d\xbc\x8e\xee\x0e\x88\xeb\x8a\x25\x58\x86\xd3\x64\xb5\xdf\x9a\x29\xab\xb8\x2c\xf3\x83\x19\x7d\xf0\xee\x4c\xed\x97\x5a\xd2\xf3\x99\xf5\xeb\x13\x9e\x97\xd5\x96\xcb\xad\x61\x6f\xb8\x25\x68\x3f\x2c\xb6\xf3\xba\x7e\xf1\xaa\xaa\x97\x1d\xa8\x7d\x35\xc3\x08\x59\x05\x09\x84\xd0\xb0\x7c\xef\x19\x96\x98\xd2\xcb\x34\x4e\x3f\x94\xbb\xe0\xc8\xde\x1b\x5e\xf5\x1e\x47\x77\x9d\x90\xcf\xc8\x59\xb9\x9b\x40\x9c\x58\x3d\x00\x4b\xbf\xbe\xe0\x59\xec\x7f\xfd\xed\xed\x3b\x9b\x8f\xa5\xef\x75\xd9\xd4\x9b\x0b\xc5\xb2\x25\x34\x66\x87\xfc\x55\x08\xc8\x40\x71\xe3\x19\x99\x90\xd9\xd2\x89\xd6\xa8\xe2\x79\x8e\x6c\x97\xc5\x9d\x2c\xb2\x32\xd0\x53\xcf\x31\x21\xaf\x5f\xda\x97\xaf\xd4\x9a\x65\x0f\x3c\x67\x60\x6b\x35\xc1\x4a\x19\xb1\xc6\xe5\x81\xe3\x7d\x19\x18\x6f\x36\x9f\xcd\x07\x0e\xf1\x59\x60\x88\xca\x52\x41\xc5\x8e\x30\x11\xd1\x34\x2f\x6c\xa2\x5b\x60\xb8\x69\x25\xa7\xea\xc1\xad\x98\xa9\x47\x63\xf8\xd5\x4b\xc3\xba\x6d\xa8\x88\x09\x59\x78\x7b\xfb\x0e\x43\x15\x8c\x5c\xe3\x11\x50\xdd\x37\x5e\x7d\xf1\xc5\xcb\xc6\xd3\xe1\x34\x09\x5b\x3f\x26\x94\x2d\x01\xaf\x81\x2c\x83\x16\xe1\x67\xb6\x12\x31\x58\x91\xb8\x2d\xf7\x58\xb5\x0d\x29\x94\xdc\x50\x90\x44\x92\x1d\x49\xa5\x29\x9d\x6a\xd0\x22\x20\x1c\x81\xb7\x32\xcf\xf9\x4a\xbc\xe7\xe9\xf6\xf5\xdd\x41\xe5\x69\xd5\xe0\x89\x0b\x9a\xe4\x8a\x46\xcd\x35\xf3\x9c\x2c\x65\x81\x01\x84\xed\x8c\x89\x13\xf2\xd7\x09\x12\xda\x9f\x2c\xbd\xbd\x3b\x10\xd0\x8c\xc4\x84\xff\x69\x05\x64\x62\x5e\x72\xda\x2c\xdc\x1d\x44\xc2\x5e\x67\x7c\xf6\xe5\xf4\xf3\xe9\xab\xda\x13\xc6\xae\xa0\x7f\xfe\x63\xc5\xd2\x7f\x72\xb9\xfb\xdd\x01\x04\x28\xc2\x00\xc6\x64\x5b\x6f\xe5\x70\x77\x90\xc8\xd5\xfb\x84\x6d\x59\x82\x4f\xfd\x78\x7a\x7d\x39\xbb\xfc\xd6\xfb\xd8\x92\x27\xec\x7d\x4a\xd5\x1a\x1f\xf5\x18\xfa\xf4\xff\xa6\x89\x5c\xb5\x5e\x2f\x23\x68\xdf\x57\x0b\x72\xc3\x6f\x1b\x8f\xeb\x63\xaf\xc0\xf4\xfe\xbd\x2f\x4f\xe4\xfd\xfb\xd6\x6b\x1b\x55\xe8\x37\xde\xbf\x37\x59\x1a\xef\xdf\x37\x1e\xc0\xb4\xca\x13\x0d\x24\x83\xf6\xec\xcf\xe4\x79\xc2\x84\x61\x11\x2f\xc8\x67\x2d\x23\x8f\x0f\x8a\x36\x3f\xb3\xfd\x64\x85\x42\x5f\xb8\x28\xd4\xf9\x64\x0d\xd9\x3a\xcc\x4d\x1d\x2b\x69\xdc\x34\xfb\xf9\x5b\x63\xff\x28\xcf\x18\x08\x84\x87\xbe\xff\xaa\x11\xc0\xd9\x1c\xc7\x3d\x3a\xef\x58\xa6\x68\xaa\x66\x33\xce\x11\x62\x52\xd3\x7b\x1b\xcc\xa2\x4f\xb0\x36\x4b\xf5\x87\x3b\x61\x10\xa3\x53\x99\xa9\x0d\x4d\x5b\x68\x90\x0b\xaa\xf4\x13\x1a\xa0\x8d\x9f\x22\x9a\xd2\x05\x4f\xb0\xc6\x0d\x2c\x1d\x46\x79\x4b\xd3\x94\x8b\x55\x6e\xdf\xda\x77\x25\x0b\x2a\xe2\x07\x1e\xeb\x9b\xd1\x3f\xa1\xf3\x70\x7b\x36\xfb\x4f\x93\xe1\x37\xc0\x02\x77\x1f\xc7\x93\x28\x8b\x6b\x32\x57\xdd\x7c\xc6\xd9\xa3\x62\x02\x4a\xee\x78\x4a\xd4\x14\xb9\x92\x9b\x6b\x13\x5b\x01\xe1\x41\x1c\xfb\x6c\x79\x04\x88\x56\x59\xaa\xa9\xbf\xd2\x50\x25\x96\xae\xb0\x7c\x4d\xe0\xb1\x7a\xf7\x40\x5c\xd0\xd7\xdf\xce\x6b\x15\x7e\xf1\xb7\x84\xe7\xea\x7b\xef\xef\x6f\xca\x52\x4f\xb6\x44\x7b\xa0\x78\x96\x66\x95\x45\x42\xb3\xf6\x03\x20\x2a\x47\x32\x65\x65\x11\x1d\xe4\x67\xa6\x92\xfb\x9d\x70\x1c\x67\xaf\xcc\x60\xd1\x9a\x6d\x2a\xa3\x99\x4c\x99\x38\x9d\xcf\x7e\xf8\xfc\xa6\xfe\x7d\xa3\xc8\x7e\x73\xed\x65\xaf\x60\x9b\xb3\xe5\xfc\x84\x9d\x3a\x76\x10\xfa\x9d\xc9\x42\xd5\xcd\x19\x81\xf6\x8c\xce\xc1\xd7\x2f\x65\x6d\x19\x87\x7a\xa9\xa6\xc5\x6e\x0c\x01\x61\xb8\x00\xb3\x63\x16\x9b\xed\x61\x5e\x25\x34\x2e\x30\x5d\x27\xa8\xaf\x05\x9b\x5c\x42\xa3\x11\xa8\x2d\x34\x05\x65\x10\x4c\x4a\x18\x91\x19\x49\xb1\x65\x99\x22\x19\x8b\xe4\x4a\xf0\xbf\x94\x83\xe7\xd6\x05\x0d\x68\xdc\x0a\x5e\x06\xd1\x4e\xd0\x04\x79\x3d\x3a\x6e\x36\x74\x47\x32\xa6\xa7\x21\x85\x70\x06\xb4\x2d\xc7\xdf\xca\x8c\x41\xc8\xd6\x89\x6b\x73\xb6\x38\x6f\x12\xab\xd4\xee\x18\xd4\x1b\xbe\x28\x94\xcc\xf2\xe3\x58\x33\xbf\xe3\x9c\xaf\x26\x34\x8b\xd6\x5c\xb1\x48\x15\x19\x3b\xa6\x29\x9f\xc0\xda\x05\x22\xfa\x26\x7e\x56\x06\x20\x1d\xde\x79\xdc\x0f\xed\x4e\x06\x80\xcf\x5d\xc7\xf0\x3d\x54\xf1\x85\xf6\x82\xd8\x90\x07\x63\xee\x4a\x68\x5b\x2f\xd4\xf5\xc5\xcd\x6d\x19\xfe\x04\x27\xd2\x3a\x02\x00\x7e\xf5\x66\x5e\x9d\x83\x06\x1a\x17\x4b\xdb\x3a\xa5\x2c\x5b\x53\x05\x74\x6a\xd4\x4b\xb8\xa7\x8b\x4e\x5e\x2c\x36\x58\x0e\x06\x23\xac\xa0\xe3\xd8\x19\xd8\x5b\xb5\x9c\x85\x75\x85\xe2\x29\x99\x69\xe5\x68\xc3\x92\x33\x9a\xb3\x4f\x7e\x0a\xd0\x3f\x66\xa2\x61\x3b\xf4\x1c\x5a\x26\x6e\xf7\xf1\x76\xd7\xc0\x9a\x15\xd8\x73\x6c\xcd\x4b\x7c\x93\xb2\xa8\x7e\x91\xeb\x8d\x32\xf4\x05\xae\x5d\xed\x86\xd9\xa9\xa3\xd3\x2a\xcd\x2f\xa1\x35\x9d\x27\xf0\xbb\x71\xa1\x6f\xf0\x41\xec\x09\x5c\x05\x73\x9f\xde\x98\xe6\x76\xa8\x65\x2e\x76\x84\x1a\x99\xfa\x8f\xe7\xf8\x88\x37\xa6\xfc\xf5\x17\x5f\xbe\xfa\xec\x4f\x87\xed\x9f\xb0\xc0\x23\xb4\x85\xff\xfc\xb3\xf6\xcf\x9d\x3d\xe3\xed\xc9\xfb\x5b\xca\xd6\xf6\x73\x56\x3d\x8a\xf7\x43\x93\x7f\x0d\x4f\x84\xa5\xc1\x20\x0b\x67\x2c\x5d\xc4\xda\xd1\x20\x00\xc2\x6c\xc1\x55\x46\xb3\x9d\xe9\x9f\x05\x61\xfc\x14\x23\x48\x31\xa1\xcf\xd3\x9d\x64\x60\xcf\x94\xb3\x72\x25\xe5\xf1\xe7\x8a\x8a\x58\xab\x9b\x32\x23\x09\xcd\x56\xac\xb9\x5c\xdf\xa0\x04\xb6\xa0\x6f\x9a\x27\xdd\x0b\x3f\xbd\xed\x78\x81\x3d\xf9\x7f\xf2\x74\xdf\x35\xdd\x48\xab\x74\x53\xbb\xbc\x60\x43\xd0\xfe\x46\xa0\x68\xd4\x1c\xb4\x84\x1f\x80\xce\x41\xbd\xc3\x05\x64\xef\x23\x5e\x69\xa9\x98\x9e\x08\x71\x77\x00\x2d\xd7\xf0\x8f\x93\xcd\xc6\xdb\xba\xd1\x7e\xbe\x91\x59\x05\xf5\x6a\x37\x45\xce\x9c\xe1\x70\xfc\x23\xd3\x2a\x40\x7f\x7f\x77\xa0\x81\x1e\x1e\xf6\xee\x00\x5e\xa4\x19\x23\xaf\x5e\x93\x05\x57\xe6\x22\x4d\x61\xc2\xe6\xd1\x3a\xb3\xc1\x7a\xc3\xe3\xfa\x56\x72\x54\xce\x26\x62\xad\xc6\x6c\xcc\xc4\x9f\x7f\x56\x9b\xf8\x47\xfd\x8a\xb7\x85\x91\x5d\x32\x6c\x0b\xfb\x7e\x9d\xde\x10\x24\x09\xa1\xc1\x53\x96\x4d\x4e\x6f\x6c\x66\x1b\x6f\xe5\x84\x57\x9f\x14\x7a\x8b\x8b\x13\xf2\x7f\x9e\xdf\xdd\xc5\xff\xf7\x8b\x13\xfc\xcf\x7f\xfd\xb5\xfe\xb7\xfd\xfa\xa9\x18\xf4\xe4\x2e\xae\x09\xb4\x63\x99\xcb\xcc\x47\xcc\x6a\x78\xf7\xa6\x7c\xd2\x12\x4a\xe8\x5f\x87\x67\xa1\x69\x4b\x9a\x49\x25\x23\x99\x58\xe9\x05\x87\xf6\x42\xe6\xdc\xb6\xf4\x52\x92\xbc\xfa\xf5\x6f\xda\x8f\x6c\xe8\x23\xdf\x14\x9b\x13\xf2\xfa\xcb\x2f\x3f\xff\xd2\xf3\x3b\x17\xf8\xfb\xab\x3d\x09\x69\x22\x57\x37\x6c\xcb\x32\xae\x76\x37\x51\xc6\x58\x53\xd6\x6b\x6d\xfb\xf0\x4d\xf3\x0d\xbb\xfd\x44\xae\x48\x6e\x7e\x21\x74\x21\xb7\xd6\x59\x92\xc8\x95\xb7\x19\x17\xf4\x1c\x66\xa2\xec\x3c\x90\xab\x58\x16\xca\x61\x27\x64\x76\xf9\xcd\x95\x8f\x75\x74\x1d\xbf\x66\x49\xb7\x50\x7d\xea\x2d\xcb\xd7\x98\x2a\xe8\x6b\x03\x5c\xdf\xd5\xa5\xef\x2d\x92\x33\x55\x75\x8b\x5b\x16\xc6\x07\x89\x49\x0d\xed\xe8\x64\xfd\xd1\x07\xbf\x81\x5a\x51\xa5\x3d\xce\xdd\x90\x56\xd1\xc2\x1b\x5a\x48\x99\x30\xda\x92\x89\xd3\x8c\x2d\xf9\xe3\xa9\x5b\xe5\xbf\x97\xeb\xcd\x3d\xef\x54\x9c\x05\x22\x7e\xe0\x89\x7a\xf3\x00\xdf\x8e\xba\xc4\x0d\xb2\x47\x4f\xb0\xf6\x82\x2a\x2b\x75\x5e\x5f\x86\xc3\xa1\xfc\x04\xc0\xe6\xcf\x55\xed\xf5\xce\x66\xe7\xd7\x4f\x63\x76\x11\x8f\xc3\xbd\xc8\xeb\x2c\x7a\x76\x7e\x8d\x36\x63\x40\xeb\x6a\x64\xb7\x9f\xae\xdd\x47\xb8\x1d\x76\x3f\xf7\xeb\x96\x6e\x7c\x2b\x73\x64\x1c\x13\x91\x66\xa5\x1c\xc6\x01\x79\x2b\xf6\x02\xa2\x4b\x98\xf0\xdb\xf8\x5b\xd4\xe5\xa0\x5f\xf2\xdd\x81\x16\x4b\xf3\xa9\x33\x0b\x72\xd5\x41\xe2\x08\x41\xad\xae\x97\x2b\x77\x30\xdf\x6e\x36\xd5\xcd\x95\xbb\x99\x6f\x78\xe4\x3e\xae\xdc\xcb\x7c\xbb\x16\xdd\xc3\x95\x7b\x79\xef\xa0\xb1\x87\x33\xe5\xf0\x15\xc6\xcf\x90\xc6\xed\x3d\xfd\xff\x9f\xcc\x90\x8d\x5f\xc8\xd8\x52\x66\xf3\x5e\xca\x77\xd3\x7c\x01\x80\x01\x25\x9d\xf4\xfd\xc5\x5a\xe0\xa8\xba\xe2\x3d\xee\x68\xc7\x6f\x82\x11\x88\x1d\xc5\x44\x91\x82\x9e\xba\xac\xa8\x4f\xd9\x9a\x13\xbb\x2f\x5a\x12\x80\x3d\x16\x7d\xe3\xe2\x22\xca\x1a\xc4\x10\x80\x22\x76\xb5\xe9\x4c\xe2\xa9\x5a\xb3\xcd\xd3\x89\x6e\x13\x16\x58\x26\xbc\xd2\xec\x9d\xa0\x32\xd3\xf3\xb7\x7c\xd4\x7f\xce\x15\x08\x3f\x01\xb1\xfd\x64\x42\x9d\x39\xe1\x8b\x47\x34\x03\x0d\x47\x22\xe7\x0d\x3f\x16\xc9\xcc\x49\x15\xf5\xad\xd9\x0c\x44\xec\x48\xfa\x6c\xa7\x6e\x49\x92\xe6\x03\x65\xfe\x33\x44\xfe\xf9\x7b\xe9\x57\x4c\xc6\x34\x17\xdd\x61\xf3\x43\x44\x19\xd3\x7a\x1b\x1b\x7c\xe2\x42\x3f\x18\x83\xaa\xd5\xf5\xa2\x90\xff\x74\x9d\xfd\xff\x7b\x23\xd1\x1b\x49\xe3\xaf\x69\x42\x45\xb4\x0f\x35\x6a\xbc\xf5\x81\xc8\xe4\x8e\x16\x44\x28\xd3\xac\xc6\x7d\x76\x6a\x1a\xcf\xfa\xc6\x6e\xe2\xdd\xbf\x00\xc9\xea\x40\x7a\x22\xa2\x35\x60\xf3\x6f\x89\x6c\xff\x5e\x7d\x69\xeb\xdd\xeb\x3e\xa1\xbb\x08\x5a\x95\x7c\x1a\x2f\xd1\x9c\x59\xd5\xb8\xe6\x1c\xd2\x5f\x7b\x7d\x42\x4e\xd7\x94\x9a\x2b\x28\x35\xe3\x7c\x2a\x0f\xd0\xe8\xaa\x19\x5d\x35\xee\x11\x8c\xae\x9a\x9f\xd3\x55\xa3\xc9\x41\xdb\x43\x63\x83\x7f\x1c\x57\xab\x7d\xb8\x3c\xbd\x8f\xef\xa6\xb9\x5d\xb3\x4a\x37\xb4\xee\x21\x4d\x7e\x3c\x6c\xee\x43\x3c\x2d\xf7\x8c\xa5\x57\xd8\xa9\x22\xb9\x64\x8f\xea\x3b\x99\xf6\x2d\xed\x2a\xb5\x21\x58\xfa\x65\x58\x98\xe9\x75\x91\x10\xc1\x1e\xd5\x5a\xa6\x58\x1f\x0e\x13\xee\xd0\x73\xd2\x67\x20\x04\x98\x12\x0d\x54\x8d\xe3\x0a\x2e\x49\x19\x54\xe5\x18\x92\xe0\x44\x20\x54\x95\xc5\xfa\x15\xdf\xb8\x7a\x94\xbc\x34\xe5\x15\xa6\xfe\xdc\xdd\x81\x5e\x1c\xd1\xab\xd3\xeb\xfe\xad\x56\xc1\x45\xae\x18\x8d\x35\x78\x9d\x5f\x73\x96\x2c\x7f\x7b\x77\xf0\xdc\x38\xc6\x5e\xf8\xa6\x30\x49\x89\x65\x60\xd8\x22\xa3\x22\x5a\xdb\x73\xba\xd4\x53\x4b\x61\xe2\x14\xa7\xd1\x72\xe5\x75\x4b\x74\x5a\x05\xf5\xf2\x87\x20\x49\x59\xfa\xaf\x2c\x3c\x67\xe9\x8b\x51\x5a\x4d\xeb\x1a\xcc\x26\x82\x7c\x6c\xef\x86\x72\xa2\x68\xb6\x82\xd2\xf8\x8b\x1d\x12\x15\x40\x37\xcc\xef\xc6\x42\xf9\x9a\x42\xe4\x4c\x99\xae\xac\xb2\x96\xf7\x12\x18\xd4\x51\xa2\x21\xe5\x1b\x86\x02\xf3\x39\x83\x56\xa7\xfa\xe5\xbc\x4a\xff\xb0\x80\xad\x5a\xeb\xf8\x81\x16\xb6\x0d\x7b\xf2\x70\xbc\xb0\x2b\x9b\x7c\x58\x63\x23\xce\x0f\xf9\xea\x86\xc9\x41\x5e\x56\x09\x09\x2e\x56\x53\x42\x7e\x5c\xb3\xd6\x51\xc1\xb2\x0c\x88\x00\x3c\x25\x0e\xe0\x35\xb0\xce\x2b\xb6\x49\x55\x33\xef\xbf\x6f\x4b\x29\xcd\xf3\x07\x99\xf5\x5a\xb8\xaf\x4c\xdd\x4c\x84\xad\x79\xa9\xdc\x9b\x59\x7f\x4e\x56\x4c\xb0\x8c\x3a\x87\x1c\x30\x72\x77\x51\x37\xd2\x2f\x57\x63\x6c\x77\x47\x25\x32\xef\x61\x68\x96\x79\xcf\x76\x20\x79\x98\x21\x2c\x3e\x00\x12\xa7\x32\x3e\xcc\xab\x40\xe4\x80\xbd\xab\x57\xe4\xc7\x02\x67\x61\x73\x58\xeb\x8a\x99\x35\x21\xe9\x81\x55\x29\x69\x50\x17\x18\xef\x94\x90\xb7\x78\xc4\xe1\x41\x09\xa1\x5a\x0e\xe0\xb1\x1d\xe2\x9e\xf9\x50\xc1\x7e\x86\x98\xe4\x3a\xdd\xb8\x2d\x07\x88\x53\xfb\x3c\x63\x4b\x96\x31\xa1\xbc\x4c\xbd\xab\x13\x89\xdc\x6a\x4d\x8e\x3d\x1c\x9b\x2e\xb3\x13\xad\x2d\x4e\x90\xd7\xe6\xc7\x70\x30\xc7\xcf\x7a\x0c\xd0\x84\xdc\x5e\x9d\x5f\x9d\x90\xd3\x38\x26\x12\x6c\xd7\x45\xce\x96\x45\x82\x77\x25\x9f\x3a\xc2\xee\x11\xc8\x5a\x47\xa4\xe0\xf1\xff\xe3\x71\xaa\xec\x03\xab\xb2\xac\xec\x40\x78\xdd\x00\xd9\xda\x95\xce\x21\x0d\xb6\x1b\x3c\x38\x99\x81\xfb\x5d\x23\xc5\xa6\xff\xd4\x8d\x9d\xbd\x6f\xf5\x01\x26\x80\x1f\xdb\x76\x31\xb0\x78\x48\x57\xf3\xff\x34\x44\x41\xf5\xff\xaa\x29\xc6\x6c\x3e\x84\x01\x55\xb5\x46\x5d\x31\x85\x2c\xa5\x31\x39\x2e\x76\xa0\x47\x58\xfa\x94\xca\xcc\xcb\x80\x4c\xec\x09\xb4\x92\x64\x19\xd8\x21\x80\xf7\x80\xd7\x55\x94\x11\x2b\x10\x8c\x70\x64\xdd\x0d\x95\x63\xe6\xee\xe0\x8f\x77\xc5\xcb\x97\x9f\x47\xb3\xf9\xf6\x35\xfc\x8b\xfd\xe9\x04\xe6\xf2\x3a\xd8\xc1\x3b\x51\xbe\xf0\x05\xbe\x70\x82\x5f\xc0\x5b\xf0\x05\xba\x01\xa0\xcc\x21\xac\xa5\xb6\x09\x67\x51\x96\x2f\x7a\x85\x1c\x88\x38\x31\x3c\x04\x80\x25\x62\x52\xc6\xe0\x2c\x58\x22\x35\x5d\x06\x09\xc8\xc4\x6b\x02\xad\x83\x72\xde\x95\x0f\xda\x4f\x64\x81\x3c\x36\x63\x8c\x0c\xa3\x7d\x60\x46\xf2\xa1\x0a\x97\x6b\x20\xbb\x2f\xff\xd1\x32\xf1\x53\x59\x6a\xc6\x36\x52\x95\x9c\xb5\x76\xb2\xc0\x48\x83\x1c\xc8\x65\xa4\x73\xc0\xc4\x3a\xd8\x90\x56\x34\x18\x2b\xc6\x77\xd4\xeb\x6d\xd7\x37\xa2\x25\xa3\x05\x53\x0f\x8c\x09\xe3\xd2\x8e\x68\x62\x1b\x74\xc7\x95\x5c\xe9\xae\x1b\x2a\x03\x95\x02\xa8\xff\x84\x4d\x21\x4c\x33\x03\x5f\x92\x85\x54\x6b\xad\x8a\xe5\x28\x43\x68\x59\xe0\xeb\x6f\xe7\x9a\xa8\x4c\xf5\xa3\xa7\xe6\xbe\x54\xc2\x51\x08\x73\x70\xec\xd7\xc3\xc7\x7e\xdd\x1a\x7b\x4a\xf4\x35\xf5\x4d\x60\xb6\x59\x05\x7e\x45\x12\xc2\x9e\xac\x2e\xe9\x80\xe1\x30\xaf\x4d\x64\x0f\xc2\xbb\x6e\x73\xf8\xd8\xb7\xb9\x2a\x8f\xb7\x34\x3d\xe3\xca\xeb\xb2\x27\x26\xa2\x2c\x62\xb6\xd7\x8b\x8a\x66\xf7\x95\x7b\x5f\x43\x73\x2d\x1f\x5a\xd9\x53\xa8\x7d\x1b\x0a\xe6\xdb\x4e\xbf\x0c\xd5\x16\x98\xca\x90\x8f\xb0\xe7\xf4\xee\xe0\x5d\xce\xa0\xa8\xfb\xfc\xee\xc0\x96\x6b\x72\xd7\x56\x8a\x3d\x1a\xf9\x8d\xe2\x53\x5b\xec\x54\x0f\x72\xe9\x29\xe6\x88\x1f\x1c\x52\xc3\xba\x73\xcb\x7b\x9d\xc2\x68\xb9\xf4\x58\x2e\xeb\xed\x70\x3f\x85\x01\x53\xcf\x70\x8a\x33\xec\x5a\x66\x4c\xf7\x47\x8f\x31\xd3\xd7\xac\xd7\xb1\x69\x3a\x3f\xef\x46\xcb\xe6\x68\xd9\x1c\x2d\x9b\xff\x79\x96\x4d\x97\x42\x0c\xb4\x6f\xb6\x29\x4e\xf5\xd9\xdf\xe8\x19\x70\xb2\x75\x71\x7b\xd3\xa6\xb1\x8f\xcf\x9f\xdb\x6e\x8e\x22\x86\x36\x38\xc6\x80\x03\x98\xb3\x70\x9b\xa6\xef\x34\xde\x2e\x18\xb4\x04\xc1\x77\xbc\xda\x37\xa4\x5c\xa3\xd5\xc6\xc5\xf3\x25\x46\x43\xa5\x54\x71\xc8\xd0\xda\xa1\x7c\x2e\x93\x18\xb8\x7e\xc2\x68\x6e\xa6\xf6\x72\x62\x9e\x2b\x7a\xcf\xa0\x57\x6f\xc6\xec\xf2\x70\x16\x5a\xcd\xf2\x04\x63\xd7\x9e\x40\xd5\x5c\x77\xbf\x77\x02\xaa\xe7\x04\x8e\xb4\xf9\x9d\x01\x6c\xf3\x6b\x5f\xe5\x0b\x58\xc9\x28\x5b\xf4\xc9\x16\xc6\x0c\xaa\x89\x93\xd6\x77\x3f\x51\x1a\x9d\x0d\x0a\xaa\x66\x69\x0a\x19\xed\x27\xda\x92\x86\x67\xad\x4d\x69\xa3\xfd\xc8\xa7\x14\x39\xea\x21\x94\xad\x1d\x34\x12\xea\x4c\x6c\x56\x69\xd1\x77\x16\x39\xe6\xd2\x8d\x62\xcc\x28\xc6\xfc\xab\xc5\x98\xf6\x0d\xee\xca\xa6\xc3\x57\x17\x1e\x26\x18\x76\x2f\x75\x49\x30\x40\x42\xfd\x77\xbc\xbd\x52\xf7\x61\x9b\x3e\x61\x2e\xb9\x5e\x9b\x71\xcc\x19\x49\xa5\x5c\x4d\xc0\x10\x96\x15\x42\x78\x2d\xdb\x5d\x9c\xde\x0c\xf9\xed\xbb\xd9\x79\xef\x6a\xab\x47\xed\x5a\xe1\xdf\xc6\x98\x1b\x5c\xdc\x80\xe9\x6f\xf5\x23\xc3\xa6\xd7\x8f\xda\x43\x33\x64\x11\x1a\x6a\x7d\xc8\x2a\xca\x4a\x12\xd7\x8c\xc6\x3e\x8f\x4f\x5d\x94\xac\x3d\x5d\x56\xdb\x31\xcd\xdf\x73\xbe\x12\x20\x25\x0b\x55\x8d\x4b\x36\x7c\x55\xcb\x1b\x6f\xac\x4d\xc2\x6b\xa6\xb4\xac\xdc\xa4\x52\x40\xa4\x5b\x5e\x44\x6b\x2d\xf8\x61\x8f\x0a\xb4\x8a\x95\xb6\xec\x07\xca\xf5\x2d\x5f\xca\x80\xb1\x11\x0a\xf1\x5a\x0a\x15\xea\x36\x47\xfa\x1c\x0b\xd0\xb9\x54\xf4\x26\x41\xfd\x80\x8f\x91\x98\x45\x09\xcd\xc0\x9a\xc6\xa3\xb5\x7d\xdb\xc1\x65\x27\x43\x02\xca\x57\x8e\x56\xa5\x0f\x94\xfc\xa0\x0f\xc2\x27\x2f\xa0\x00\x18\xd8\x59\x42\xa1\xfd\x44\x5b\xf2\xf3\xac\xb5\x29\xf9\xb5\x1f\xf9\xd9\x24\x3f\xbc\x65\x7b\xd5\x52\x80\x57\x46\xa9\x6f\x94\xfa\x46\xa9\xef\x5f\x2d\xf5\xb5\xe9\x4f\x5f\x0d\x05\xbc\xef\x4f\xad\xa2\x90\x24\xf2\x61\x36\x9f\xcd\xe7\x14\x0a\xa4\x7f\x93\xc9\xcd\x8f\xa6\x84\x5c\xaf\xd3\xe9\xf0\xb4\xeb\x6d\x5b\x54\xb4\x72\x49\xc1\x4a\x7d\x4c\xde\xe4\x19\xc5\x84\x92\xac\xc0\x46\x24\x71\x26\x53\xac\x04\x57\x55\x6f\x63\x31\x51\x19\x5d\x6a\x6d\x15\xf3\x9d\xec\x54\xbe\x31\xab\x24\x55\x68\xad\xb2\x77\x96\x2a\x40\x06\x4a\xdb\x3d\x1d\x34\xc1\xd7\x3f\x02\x6c\xb0\xea\xde\xbf\x0a\x38\x0f\xf9\x4d\x16\x9d\xe7\xea\x6c\xcd\xa2\xfb\x5e\x60\xdc\x30\x65\xbc\x70\x93\x98\xe5\x8a\x0b\xc0\xd2\x09\x14\x5e\x25\x52\x90\xd3\x1f\x6f\xc8\xc5\xd9\x67\x65\xd4\x5e\x3e\x25\xa7\x46\x9e\xf1\xad\x7e\x5b\x2f\x91\x80\xa9\x1b\x77\x07\xe7\xf2\x52\xaa\x35\x34\x12\x3b\x22\x77\x07\x26\xe9\xd9\xa6\x66\x9a\x96\x78\xf1\xdd\x41\x4f\x81\x8f\x72\x18\x1f\x54\x98\x28\x7c\xcd\x28\x27\xd5\x5b\xbe\x1f\x71\x29\xde\xd7\x70\x55\xfb\xc9\xf9\x8b\x74\x79\x26\x85\x60\x91\xba\xe5\x1b\x27\xcd\x84\x8b\xd5\xd0\xfc\xf0\xaf\xe7\xdf\xf4\x0c\x81\xc1\xac\x5c\x94\x55\x1d\xbd\xbe\x6f\x3f\x1e\xdb\x5a\x85\xa5\xbc\x21\xb0\x6b\xcd\x44\xf1\x0d\x23\x50\x9e\x72\x61\x73\x78\x82\xde\x7a\xf3\x9a\xe7\x1d\xd0\x12\x8d\xa1\xb6\x74\x57\x43\x3f\x9e\x5a\x33\x23\xdf\xa0\x59\xb3\xe9\xb9\x6d\xd0\x6d\xca\x8c\x10\xbe\x49\x33\xb9\x35\x22\x4b\xca\x32\x50\xbe\x45\x04\x28\x96\xca\x78\xa2\xe4\xa4\x2b\xc1\xb2\xdc\x6a\x8e\x1b\xc3\xf4\xa3\x8c\xd1\x1c\x23\x88\x6d\x7b\x40\xae\xb0\x3c\x62\x46\x62\xb6\x28\xb0\xe4\x4a\x5a\x64\xa9\xcc\x35\xf2\x77\x23\xe8\x93\x92\xee\x17\xe9\x52\x2b\x7c\xb3\x25\x8d\xd8\xdc\x14\xad\xe8\x41\x92\xaf\xe7\xdf\x34\x5f\x41\x79\x22\x63\x20\xe5\x12\xf6\xa8\x05\x02\x10\xf4\xb0\xc7\xbf\x41\x06\x2f\x19\x03\x45\xca\x29\x4a\x8a\x88\x62\xe4\x38\xaa\x94\x3e\x17\x8d\x6a\x65\x97\x79\x28\x79\x49\x64\x16\x43\x94\x94\x17\xda\x54\x45\xeb\x92\xea\x29\x79\x5c\x8a\x1f\xa6\x6a\xe4\xd4\x38\x38\x04\x63\x71\x8e\xe5\xf2\xe1\x8d\x35\x73\x56\xe2\x05\xb1\xde\x8e\x4d\x82\xb5\x15\x55\x4b\xf2\x9a\xc8\x87\x1c\x7a\xc2\x37\x13\x5e\x07\x0c\xba\xa6\x22\xd6\xe7\x2f\x22\xb9\x01\x09\xac\x5c\x3d\xf8\x0d\x52\x99\xa9\xdc\x04\xe7\x18\xc4\x84\x4d\xc9\x42\xe5\xdc\x5f\xa2\xc1\xb5\xef\x10\x32\x2b\x15\x6b\x2d\x47\x55\xfb\xf5\xd5\x85\x7d\x5e\xe4\x05\x4d\x12\x6f\x2c\x9d\xd6\x44\x62\x30\x03\x4d\xa7\xd3\x17\x7b\xba\x6a\x34\xb2\x21\xa2\xbf\x13\x4e\xdb\xc2\x01\x44\xc9\xf3\x1a\x14\x74\x2d\x6b\xc1\x1a\xb4\x61\x0a\x6f\xe8\xbd\xbe\xc7\xc9\xb4\x70\x9e\x7f\xbf\x48\x97\xef\x6d\x45\x5e\xdf\xd6\xf2\x5d\x1e\xa9\xc4\xbd\x8d\xee\xeb\x10\x45\x26\x97\x1a\x17\x2d\xfa\x30\x91\x9b\x58\x7c\xaa\x6a\xcf\xfa\x46\x2f\x72\xd3\xeb\x42\xc3\xdf\xb6\x11\x02\x4c\x3a\x3c\xcc\x91\x98\xd2\x34\xb7\xcd\x76\xf4\x43\x5c\xe4\x5a\x87\x81\x32\x4d\x44\x3e\x78\x83\x22\xdb\x37\x43\x9f\x22\x33\x09\x8c\xd5\x04\x1f\x5c\x9c\x63\x91\x2e\xf7\xe0\x21\x17\xf6\x58\xaa\x23\x32\x27\x04\x62\x8b\x4d\x45\xd0\xab\xd7\x32\x72\x9a\x50\xe1\x0f\x63\xfe\x50\x81\x44\x2f\xfb\x51\xdd\x4a\x9b\x21\x2e\x85\xd8\xd0\xac\x5f\x32\xd1\x7b\xf0\xbc\x57\xe3\x7b\x96\xae\x11\x4a\x3e\xff\x6c\xc1\xfd\x2e\x4f\xec\xbf\x80\xf1\x5e\x39\x53\x04\x95\x6e\xcb\x0c\xf0\x12\x53\x41\x98\xcd\x1b\x46\x9d\x08\xe3\x20\x21\x2c\xcf\x8b\xa9\xb8\xaa\xa9\xad\xef\x9e\xdd\xa3\x58\x9a\x93\xc2\x06\x4f\xc1\xc2\xd6\xf2\x81\xa4\x28\x66\xa2\x56\x80\xc4\xd8\xcc\xee\x35\xab\x65\x0c\x13\x55\x62\x27\x33\x1f\x79\xa8\x0d\x1c\xd3\x4c\x16\x6b\x2b\x02\xb6\xa5\x99\xcd\x95\xb8\x9e\x7f\xe3\xa5\xc6\x5a\x9a\x73\xf1\xef\x65\xf8\x14\x03\xc9\x39\x78\x8a\x00\x20\x73\x20\x6f\x07\x64\x85\x98\x43\x6c\xbe\xe6\x3d\xc3\x1c\xb6\xe6\x9c\x8c\x6f\x27\x2e\xc5\xad\x39\xcb\x20\x0c\xde\x90\xe5\xe7\x26\x44\xdf\xd2\x6b\xa7\xd8\x81\x37\x83\x46\x43\x7c\x29\xb3\x07\x9a\xc5\x58\xd3\xdc\x44\x1b\x96\x72\xba\x26\xde\x4b\x5b\x9c\xfa\xee\xe0\x16\x0a\x76\xdf\x1d\x60\x74\xeb\x42\x2a\x6f\x94\xa7\x51\x9e\x61\x05\x19\xcb\x53\x29\xf4\x95\x33\x3c\x85\xe7\xa6\xec\x37\x4e\xd8\x08\x71\x84\xf9\xfc\x58\x67\x96\x70\x7e\x73\xad\x45\x69\x7c\x0f\xe7\xf1\x0d\xbd\x28\x94\x79\xa6\x3e\x7f\xc0\xbe\x9f\x57\x6d\x21\x93\x9d\x37\xf8\x52\xaf\x4c\xd8\xf9\xcd\xf9\x55\x8f\x78\xb9\x15\x84\xb4\xa6\x29\xa3\xd8\xc0\xc2\x12\x9e\xd9\xdc\x6a\xc9\x1c\x53\xc5\xe1\xc9\xdf\x5a\xbb\x13\x88\x90\x39\xa1\xbe\x21\x53\x96\x6d\x78\x9e\xf3\x2d\x23\x6f\x3e\x73\x04\x8a\x0a\xbf\xf1\x84\xf6\xad\xe7\xb4\x48\x97\x5a\xfc\x9c\x67\xf2\x71\x77\x61\xac\x24\x37\x89\x46\xa9\x81\x74\xf7\xeb\xf9\x37\xdd\x03\xf8\x11\xdf\x2f\x94\x39\x42\xfb\x61\x4e\xd8\x66\xc1\xa0\xc9\x10\x54\xbc\x4f\xf5\x0c\xc6\xb0\x9c\x93\xfa\x54\x5a\xa7\x12\x32\x1c\xd2\x1a\x26\xd3\xe5\xda\x67\x29\xb6\x35\x3c\xd3\x0f\x16\xe9\x1e\x5c\xa7\x67\x88\x1a\x37\x42\x58\x78\x49\x36\x80\xc7\xe1\x56\x69\x26\xd1\x98\x9f\xec\x48\xa4\x47\x24\x45\x6a\x3a\xdd\xe5\x2a\x63\x74\xe3\xea\x0d\x15\x84\x0e\x0f\xfd\x21\xdd\x66\x6d\x24\x5a\x53\x0e\xea\xc0\x0d\xca\x65\xb6\x20\x41\xb9\xc2\xa5\x0b\x6e\x13\x2e\x6c\x9c\x60\x9f\x4a\x15\x28\x21\xf8\x96\x8b\x9b\x9d\x88\xe6\xd0\x4f\x78\x2f\xd8\xd7\xde\x3c\x0a\x10\xdb\x56\x5f\x58\x03\x7a\x2c\xef\x46\x40\xb5\xb3\x01\xea\x68\xf0\x2b\x0d\xb7\xa5\xbc\x50\x59\xa8\x0f\x1d\x14\xf5\x0d\x5b\x81\x71\x4a\xc8\x1b\xf9\xc0\x32\x6b\x2a\x5b\xe9\x6b\x9c\xb1\xb8\x88\xb0\x0a\xda\xa4\x48\xc1\x32\x2c\x22\xfd\xe8\x77\x7c\xb5\x2e\x9f\xf5\x53\x59\xfd\xa6\xb5\xac\xcf\xdf\x91\x22\xa7\x2b\xa6\x79\xe1\x42\x0b\xd8\x9a\x45\x16\x29\xd9\xc8\x0c\xc9\x79\x8d\x4a\xbc\xca\x9f\x40\x21\xde\xc8\xd5\x1b\xb6\x65\xbe\xf4\x9d\xd6\x89\xd8\x67\x6b\x50\x87\xea\x75\x50\xbb\xbe\x2c\xb5\xea\x48\x90\x01\x5a\x50\xaa\xfb\x15\xec\x37\x48\x8e\xaf\xac\x8d\xe5\x6a\xb9\x44\xeb\xca\x4c\x2c\xa5\xfe\x17\xda\x56\xb4\x0e\x7b\x77\x10\xd6\xe5\x13\xb9\xc2\x22\x21\x0c\x9b\xdd\xda\x43\xd6\x93\xa9\x8c\x46\x8c\xa4\x3c\x65\x47\xd6\xdb\xa7\x65\x72\x90\x6b\xd1\x7c\x00\x1d\x7c\x7c\xc3\xde\x1d\xa8\x08\xda\xfe\x68\x98\xa1\x26\x5d\x33\xef\x90\xab\xe5\xf2\x4f\xd3\x3d\xc1\x0f\xf7\x75\x06\x32\xf9\x20\xe9\xe3\xac\xfe\x7c\xc8\x24\xb2\x96\xf2\xde\xd5\x59\x02\x64\x43\xc9\x74\x82\xe7\xd6\x20\x20\x1a\xdb\x50\x53\x80\xb6\x16\x68\x0c\x34\x0e\x75\x25\x53\x73\xcc\x7e\xc1\x8c\x82\x22\x0d\x99\x49\x69\xca\x44\xdc\x1e\x61\x21\x95\x92\x9b\xa9\xd5\x45\x8c\x5f\x3c\xa7\xcb\xb2\x5e\xae\x57\x52\xe0\x22\x02\x5b\x46\x9a\xb1\x2d\xb8\x7a\x2b\x4d\x47\x8f\x6e\xe4\x5e\x0c\x43\x5c\xec\x52\x9a\xe7\xa6\xd6\xd4\x4e\x16\x24\x7f\xe0\xca\x9f\xbb\xa2\xa5\x62\x58\xa8\xa1\x27\x0b\xd3\x53\xad\x8c\x20\xc0\x44\x3a\x9c\xc2\x66\xd0\x22\x94\xd0\x01\xed\x15\xc0\x80\x91\x81\x2d\x67\xb1\xd3\x6a\x46\x82\x1e\x90\x4c\x16\xab\xb5\x45\x48\xa3\xf3\xc3\xc8\x47\x38\xcd\x83\x29\x7d\xe5\x1b\xd3\x3c\x8e\xbd\x03\xca\x26\x1b\xd5\x4e\x2b\x4c\x44\xc0\xee\x4b\x0a\xca\x8b\x88\x4d\x41\xf7\x8e\x29\x5d\x14\x2b\xa3\x51\xbf\x91\xab\xf3\x4c\x42\x29\xff\xe0\x28\x01\x7e\x01\xc3\xbc\x65\x1b\x99\xed\xe6\x99\x5c\xf2\x84\x79\xfa\x8c\x0e\x5a\xcb\x0d\xdf\x80\xa9\xfa\x8c\x26\xd1\xb7\x19\x4d\xd7\xdf\x51\xb1\x3a\x5d\xaa\xa7\xed\xcc\x8e\x76\x6e\x81\xf4\xf4\xd1\xe0\x90\xac\x84\x73\x2b\xbf\x93\xb9\x3a\x05\xfd\xa0\xf7\xf6\x9f\x87\xdf\x75\x29\x01\x58\x7e\x34\x4a\xe7\x01\x5b\x56\x69\x07\xd2\x8f\xae\xa4\xbd\x3a\xb4\x32\xdc\x54\x2e\x35\xe9\x34\x20\x57\x39\x4b\x96\xe4\x39\x5d\x06\x02\x6a\x80\x3c\x98\xb1\xd7\xdc\x58\x4d\xca\xa1\x18\x0a\xc5\x88\xbf\x2f\xa6\xe4\xeb\x5d\x99\xbf\x74\xe6\x6d\x58\x4f\xca\x6a\x6f\x7e\x6f\x43\x39\x74\xee\x5b\x26\xd0\x74\x7f\xd6\x67\x49\xed\xfe\xf9\xf7\xff\x3e\xbf\xbe\x9a\xff\xf3\xef\xff\x80\xd0\x0a\x29\x4a\x7a\xf1\x40\x8d\xc2\x0c\xcd\xca\x72\xb9\x61\x9a\xa8\xd1\x24\xe9\x52\x38\x60\x75\x2e\xe8\xf4\x7a\x4c\x0f\x20\xc8\x52\xa4\x19\xdd\x30\xa3\xdc\x5d\x5f\xdc\xbe\xbb\x86\x56\x46\xa7\x67\x67\x17\xf3\xdb\x29\x79\xe7\x2f\x78\x67\x1e\xe4\xb8\x30\xc8\x4b\x83\x76\x42\xf2\x41\xd4\xa9\x92\xbb\xad\xd9\xe5\xfc\xdd\xad\xde\x17\x90\xaa\xdf\x76\xd0\x13\x20\x24\x96\x14\x2b\x4b\x4b\x9b\xc4\x5e\x2b\xf9\x7a\x24\x93\x00\xf9\xcf\xbf\xff\x37\x2e\xeb\x9f\x7f\xff\x87\x57\xa1\x31\x06\x02\x73\x2e\xad\x05\x11\x69\x88\xf9\x9a\xe6\x10\xbd\x83\x91\xe6\x69\x26\x6d\x04\x8e\x3d\x64\xdf\xe8\x7e\x94\x02\x00\x1a\x60\x82\x5e\x26\xca\x98\x13\x68\x40\x84\x34\xd9\x2e\x2d\x78\x7e\xa5\x8e\x4c\x00\xcf\x7d\x6b\x0a\x2d\xa0\xdb\xd8\xa4\x49\xe2\xde\x34\x99\x6d\x79\xc4\xae\x65\xa1\xb4\x20\x0c\x25\x91\xfb\xd3\x86\x79\x5e\x8b\x85\x00\xd3\x4b\x55\x51\x99\xc6\xc6\x26\x60\x04\xb4\x0d\x8b\xcd\x34\x5e\x69\x14\x0a\x8c\x1c\x69\x2e\x66\x2f\x2b\xa0\xb2\x65\x3f\xd7\xb7\xf3\xeb\xab\xdb\xf7\x5f\x5f\x5d\xdd\xa2\x54\x97\xb0\xa5\x22\x8b\x84\x0a\x5f\xcd\xb0\x4e\x83\x8c\xb3\xd7\x9b\x7d\xd2\x11\x4d\x47\x72\x4f\x12\x9f\xd5\xce\xa5\xd8\x67\xb3\x35\xca\xe4\x19\x94\xe7\xce\x26\x8f\x48\xc2\xe8\xd6\x84\x37\x78\xf5\x04\x10\xc0\xc0\x80\x86\x4d\x30\x3d\x23\x16\xfe\x92\xb7\x9d\x88\x81\x9c\xf6\x4c\x0a\xa1\x65\xda\xfb\x99\x80\x02\x08\x21\x17\x69\x27\xcf\xb5\xd8\x7c\x0d\x1e\x01\x2e\x56\xe7\x2c\xa1\xbe\x90\xbe\xae\x05\xb5\x06\x09\xeb\xd8\xdd\x8b\x31\xc6\xb5\x4b\x19\xb3\xfc\x0d\xcf\x7b\xc3\xe8\x2e\xdc\x17\xce\x66\xe7\xd7\xd0\x56\xb0\xd6\xad\x40\x7f\x7b\x08\xd6\x4a\x3b\xfa\x44\x48\x31\x71\xba\xe6\x76\xb8\x91\x36\x74\x67\xcf\x0b\xad\x50\x25\x33\x02\xe3\x25\x96\x31\x61\x8e\xf1\xcb\xfc\x1a\x28\x3f\x69\x5c\xcd\x9a\xc0\x46\x55\x0d\x99\xfd\x0a\x00\x76\x17\x65\xe8\xa8\xc3\xb8\xa4\x3c\xd1\x72\xf6\x4c\x2c\x64\x21\x62\x2d\x3e\xcc\x65\xd6\x5f\x11\xfb\xf0\x9b\xc0\x8b\x75\x38\xbf\x3b\x9f\x1f\xdf\x9e\xcd\xd1\x50\xe9\xdd\xbd\xc0\x6a\xd3\xc6\xbd\xe1\xd8\x43\x90\xcf\xfa\x3c\x55\xc0\xd3\x4b\x4e\xef\x1b\x55\x0a\xc2\xb3\x8c\xe5\x29\xc3\xee\xde\x55\x39\x91\x02\xea\xa9\x5b\xf6\x60\x09\x85\xa9\x89\xa1\xb9\xfb\x56\x72\x2f\x87\xa1\x51\x04\x15\x7f\x80\x71\x44\x05\x96\x4c\x92\xcb\x25\xa1\xb8\x1e\x10\x2e\xf4\x6a\xb3\x8c\x45\xaa\x11\x10\x13\x2a\x8e\xbc\xa0\xd1\xfd\xa4\x96\xe9\x74\x64\xca\x43\x56\xd4\xd9\x66\x70\x57\x95\x7d\xb8\xb2\xc4\x28\x14\x07\xab\x35\xd3\x54\xeb\xa2\x33\xbd\x3e\x28\xda\xe8\x1d\xc6\x01\xb4\x2b\x4f\x79\xf7\x8f\x71\x20\x9a\x3a\x69\x82\x78\x5b\xb9\xaf\x28\x48\x0b\x80\x05\x08\x0a\x38\xec\xa3\xd2\x0a\x1a\xcc\xc9\x16\x52\x98\x16\x82\xb1\x9b\xbe\x6d\x9d\x0c\x79\xbe\xb6\x1e\x2c\x8d\x25\xe7\xdf\x9d\xcd\x6b\xfe\xa5\x28\x3d\xf9\xec\x33\x6f\x58\x40\x11\xa7\x27\xaf\xbf\x3a\x82\x47\x5e\xfd\xfa\x37\xf8\x8f\xcf\x3e\xaf\xfe\xf5\xd5\x4b\xfc\xd7\xeb\x2f\xbe\xf8\xdc\xfc\xeb\xf5\xeb\xd7\xe5\xbf\x7e\xed\x63\xca\x83\x2b\xb3\x4b\x25\x6d\x1f\x83\x48\x6e\x16\x26\xdc\x04\x3c\xf8\xe6\x4c\x8f\x00\x44\x47\x25\xf2\x07\x2a\xd3\x9c\x6a\xd9\x72\x9d\xb1\x2a\xd8\xa4\xaa\x32\xe0\x15\xb1\x7a\x3b\x91\x30\xbf\x1d\x8f\x0c\x2a\xeb\x92\xfa\xdb\x38\xb8\xaf\x07\xf8\x78\xb9\xbc\x90\xb8\x32\x6c\x09\x9d\x85\x59\x26\x7a\x77\xfe\x1f\x42\x35\x50\x26\xe5\x92\xc2\x24\xf5\x09\xa5\x6d\x2d\x49\xbd\x2a\xd4\x13\x69\x6a\xeb\xcd\x8f\x4c\x54\x65\xa1\x56\xd2\x25\xaa\x20\xe6\xf6\x93\x55\x25\x47\xb2\xfa\xb3\x92\x55\x69\x10\xe1\xe3\xd0\x55\x09\x06\x00\xa6\xa2\xf8\xf0\xd0\xe9\x87\x84\x4e\x44\x25\x4d\xa0\x41\x30\xaf\x16\xd1\x28\x96\x0c\xb7\xbc\x62\x4a\x1f\x18\x1c\x16\xaa\xb9\x2a\x8a\x6b\x21\x29\x1a\x00\xfa\x38\x35\xe5\x0e\xd5\xd9\x3f\xbf\xbc\x69\x12\xf5\x7d\x28\xb6\xf7\xa0\x0c\x11\x3f\x02\x3e\xf0\xe5\xe7\xf8\xdf\x91\xa8\x8f\x44\xfd\x43\x88\x3a\xa3\xaa\xc8\xd8\x39\x53\x2c\x52\x57\x5b\x96\x65\xbc\xdf\x38\xff\x8d\xef\x25\xb7\xb1\xb8\xb4\xdf\xe9\xfb\x6c\xa6\xf0\x23\xa3\x62\xc6\x1a\xf5\x83\xe9\xac\x96\xb9\xfd\x5a\xb8\x20\x14\x3d\x15\x24\x67\x29\xc5\x72\x39\xc0\x2e\x80\x7e\x0a\xaf\x21\x0d\xaa\xfa\xe5\x47\x84\x3d\xd2\x4d\x9a\xb0\xdf\x92\xbb\x83\x9b\xcb\xd3\xdb\x6f\x8a\x24\xd9\x5d\x53\x11\xcb\xcd\xef\xa0\x4f\xeb\xdb\xd3\x9b\xff\xed\x7e\x09\x21\x32\x47\xd7\x0c\xb2\x75\x6e\x8a\x14\xe8\xc7\x1b\x19\xdd\xff\x2e\xd0\x0d\xac\x2c\x2c\x0a\xde\x1a\x78\xfd\xee\x00\x89\xe4\x52\x62\xd4\x7f\xb9\xfb\x23\xac\x2e\xa5\x1f\x95\xc6\x59\x13\x76\x8c\x41\x13\x89\x42\xc9\x09\xc2\x67\x6f\x95\x19\x4a\x0b\xf1\xe8\xf7\xe7\xf3\xa1\xee\xdf\x6f\x9b\x6f\x18\x3f\x6a\x4e\xcc\x2f\xe4\xf7\xe7\x73\x92\xcb\xaa\x8f\x36\xcd\xfc\x31\xd0\xc0\x99\x63\x29\x0e\x0f\x15\xc9\x11\x88\xf0\xae\x5c\x2e\xc1\xa0\x24\x33\x12\x83\xd5\x1d\x9c\x10\xd8\x88\x46\x53\xfe\xdf\x9f\xcf\x91\xc1\x7a\xcd\x98\xc6\x7d\xcb\x34\x2e\x30\x11\xb3\xb8\x72\x92\x68\xc2\x0d\xb3\xa5\x99\xdc\x6a\x9c\x5b\x30\x05\xd6\xac\x2a\xca\x34\xb0\x4e\x51\xda\x11\xa7\x1f\x1c\x29\xb5\x66\x34\x51\x1d\x7d\xa4\x06\xbc\xac\xa5\xa2\x3d\x4d\x11\xf8\x62\xa0\x0f\x59\x27\x95\x2b\xe3\x15\x2f\x1e\xa3\xa4\x18\xe0\x8f\x9b\x35\x5e\x40\xd1\x0d\xee\xe6\xa4\x71\x37\xe5\x72\x48\xc8\x66\x2d\x52\x95\x99\x41\xc1\xb0\xb6\x91\x82\x2b\x59\x56\xcc\xa8\xcb\x6f\xd3\x90\x33\xb4\x2e\x13\xd4\x82\x0b\x4d\xf4\xf4\x4a\x48\xfd\x55\x15\x6e\x70\x78\x48\x66\xf3\x1f\x6e\x48\x5c\x6c\x36\xde\x70\xcd\x72\x1b\x47\x36\xd2\xd6\xd0\x38\x9b\xe9\x94\xec\xc8\x62\x57\xf3\x90\xd7\xad\xea\x5e\x9b\xae\xd9\xeb\xa6\x48\x14\x4f\x13\x27\x68\xd6\x34\x8c\x34\x2d\xf6\x6d\x23\x03\x93\x4c\x05\xee\x67\xde\x4e\xba\x22\x90\xf4\x83\xd4\xca\x13\x43\x9c\x63\xcb\x24\xcf\x0f\xb0\x4e\x60\xd6\x0f\x19\x4d\x43\x5e\x0e\x04\x27\x90\xdb\xc3\xc3\xe3\xc3\x43\x1c\xce\xd0\x56\xb2\x46\x8b\xa0\x89\x07\x38\x3c\x3c\xfe\x3f\x1a\x16\xc7\x47\x5b\xa6\xd6\xaf\x0e\xbd\xd5\x36\x81\x3e\x5a\x18\xa0\x8e\x5d\x86\xce\xc2\x69\x2d\xd8\x8a\x0b\x3b\xa3\x1e\xee\xf0\x10\x8b\xd8\x25\xb9\x0c\xd9\x1e\x2b\x10\x1e\x1e\x9a\xb9\xdd\x3b\x0d\x07\xc4\xd3\x6d\xde\x11\x3c\xe7\xbf\x61\xe5\xc0\xd8\x99\x6c\xf8\x35\xc1\xe7\xad\xb5\xb6\x7e\xc4\xa6\x57\x9b\x89\x6c\xb4\x9d\x97\xfc\x96\xb9\xb6\x07\x08\xc2\x98\x41\x9e\xd6\x4a\x45\xc1\xf3\x35\x9a\xbf\x37\x1e\x75\xa7\x13\x56\xf9\x94\x5c\x4a\x05\x34\x82\x30\xb1\xe5\x99\x14\xd8\x01\x4e\x9a\x62\xa5\x54\x90\x85\xe6\x45\x1b\xa6\x68\x72\x64\x4a\x74\x47\x6b\x96\xab\x8c\x2a\x99\x79\x17\xec\x56\x9e\xd3\x24\x22\xd5\x82\x5e\xc6\xa9\x62\xc9\xae\x8e\x3b\xb2\x70\x3b\x99\xa0\x2d\x44\x46\xf7\x81\x0c\x76\x4d\xc6\x4c\x56\xa8\x71\x33\xe9\xb3\x8e\x68\xc2\x0f\x0f\xdd\x7c\x43\x3d\xea\x55\xca\xc4\x8d\xa2\xd1\xbd\xfb\x9a\xf7\xde\xd8\x80\xe7\xc3\x43\x45\x53\x3b\x90\x8b\x39\x7a\x82\x27\xe3\xcc\x35\x5b\x66\x2c\x5f\x03\x4e\x6c\xbd\x55\x63\x6b\xc8\x33\x0b\xbc\x57\x76\x8e\x84\xa0\x20\x42\x95\x21\x46\xc1\xe4\xa6\x8c\xe5\x11\x15\xb9\x29\x4c\xe9\xde\x2f\x49\xb6\x2c\xe3\xcb\x9d\x09\x8b\x86\xfa\x39\xa8\x52\xe1\x3b\xa6\x2f\x9c\x97\xbe\x9a\xd8\x6f\x4d\xf0\x72\x53\x5a\xbd\x44\xed\x2d\x66\xa7\xbf\xdc\x53\x50\xe1\x29\xef\x88\x50\xeb\xe4\x99\xfa\xd5\xb7\xb7\xef\xfa\x2f\xe4\x7c\x36\x7f\x7b\xfb\xce\xc2\x50\xff\x13\xe2\x4d\x21\x96\xb8\x32\x67\x1b\x5f\xc9\x94\xdc\x30\x7f\x48\x82\x41\x6b\xbd\x6b\x3d\x86\x13\x89\xf4\xc5\x17\xfb\x87\xe4\xf2\x54\xa3\xde\x9e\xf8\x71\x38\xf3\xbd\xd5\x89\x1d\x24\x63\x98\x0f\xe6\x97\x33\x13\x27\x1e\x06\x70\xa1\xa1\x2e\x13\x21\x0d\x31\x30\xbe\x41\xf0\x62\xba\xb6\x0d\xaf\x99\x22\x93\xf7\x4c\x34\x83\x56\xa0\x20\x3f\x20\x49\x2d\x63\xc7\x4e\x9f\xe1\xae\x7a\xb2\xc8\x7e\xf3\x72\xef\xb8\x2f\x3b\xc3\xd7\x34\xba\x67\xad\xe4\xde\x16\x90\x67\xf5\xc7\x4b\x65\xc4\x16\x2d\x58\x98\xef\xb5\x90\x63\xd7\xae\x59\x9a\x17\x10\x0c\x1d\x5e\x35\x9b\x05\x38\xd5\x56\xd4\xeb\x44\x1d\xb2\x8f\x6f\x78\xa2\x58\x06\x89\x90\xc1\x60\x8a\x21\xe3\x68\xcd\xe6\x9b\x70\xd4\x49\x13\xf3\xda\x2f\x55\x1d\x5d\xa3\xd2\x68\xe0\x3a\xe7\x7d\x10\x81\x5a\x6a\x4b\x9e\xb0\x29\xf9\x83\x96\x3e\xe8\x0e\xb2\x88\xd0\x69\x48\xc5\xca\x70\x0d\x63\xd4\x2a\x9f\xb6\x0a\x00\xf7\x07\x39\x28\xc7\xea\x53\xae\xe6\xf9\xd2\xe1\x35\x6e\x48\xc1\x86\xa6\x29\xc3\xac\x34\xa1\x64\x19\x03\x19\x60\x66\x8a\x72\xc1\x32\x7d\xad\x28\x89\xf9\x12\x4b\x9e\x93\x94\xaa\xf5\x0b\x97\x4f\x1c\x67\x85\x38\x7e\x34\xda\x84\x5e\xf7\x53\xd1\x54\x43\x78\x9e\xc9\x05\xdb\x83\x2a\x04\xde\xb4\x07\x04\xf1\xa0\x0d\x8b\xa9\x57\xd6\xc0\x9a\x21\x18\x37\x4a\x95\xd2\x1a\x2b\xd6\x94\x8e\xc0\x96\x51\x0f\xbd\x80\xc3\xe1\x4b\x93\x73\x27\xa4\x57\xd6\xa0\x5b\xca\x13\xfd\xfc\xb4\x1e\x39\xba\xa1\xf7\x36\xf0\x13\xe2\x3b\x4d\x90\x3b\xdf\x1a\x15\xc0\x9e\x7e\x40\x19\xd4\xe7\x02\x6a\xe0\x11\x84\xc9\x6b\xfd\x11\x86\x39\x9b\xbf\x73\x0f\xe5\xcb\x97\x9b\x27\x93\x0b\x0d\xcd\x5b\xbe\x61\xb2\xe8\xf5\xcb\xd6\x4e\xc0\xbc\xd3\x05\x7b\x00\xb4\x6f\x67\x36\xe9\xb2\x06\x63\x08\x06\x7d\x79\xe4\x10\x4d\x30\xa7\xa2\xb5\x94\xe7\x95\x81\x21\x28\x0e\x80\x8c\x9f\xaf\xa9\xf7\x04\xe1\x7a\x61\x04\x51\x92\xd4\x89\x7d\x47\x2d\x42\x94\xc5\xf5\x21\xda\x93\x9a\x62\x29\x6e\x13\x61\x5d\x25\xac\x6a\x8d\x9c\x56\x17\xe9\x28\x58\xac\xbb\xcc\x1b\xd0\x23\xea\xeb\x64\xb2\x19\x64\x56\xb6\x4d\x70\x92\x51\x37\xb2\x10\x58\xb1\xd1\x04\xde\x38\x55\xcf\x7d\xa3\xcb\xcc\x3e\xb1\xb4\x89\xfd\xb8\xa0\x5a\x6a\x4d\x5e\x4a\x39\x4f\x45\x9b\xb7\x54\xeb\x6c\x1f\x4e\x9d\xdf\xd2\xec\xfe\x2d\xcd\xfb\x53\xad\x66\x8d\x17\x2c\xe2\x6d\xf4\xbf\x5d\x45\xdb\xf4\xc6\xe0\x7e\x2f\xc0\x6c\x7e\x8b\x48\xa1\xc7\x21\x0b\x4d\x52\xb1\x27\xc5\x4d\x55\x92\xc7\xf6\xa1\x5d\xb3\x47\x1a\xb3\x88\x6f\x68\x62\x4b\x7e\x6b\x04\xf2\xe2\x89\x22\x09\xa3\xb9\x22\x5f\xe1\x98\x50\x8e\x5d\x98\xdc\x72\x64\xa8\x51\x42\xf3\xb5\x8d\x61\xdb\x19\x0c\xdc\xd8\x55\xf8\x75\x01\x1b\xeb\x02\x5e\x9a\x5d\xae\xd8\xa6\x76\x8c\x8f\xcb\xe5\x4b\xf8\xf8\x4e\xf1\x43\xda\x1c\xd9\xd3\xb9\x3c\xbd\xbd\x32\xbe\xa6\x52\x68\x47\xbe\xfc\xc4\xe3\x9e\xcb\x5c\xfd\x98\x71\xc5\x20\xac\x65\x6f\xd2\xef\x7f\xbd\x29\x19\x42\x90\x57\x90\x4a\x68\xc9\x2e\xd6\x27\x43\xc9\x83\x1e\xaa\x9d\x31\x50\x96\x98\x8a\xd6\x2c\xc6\xd8\x39\x48\xbd\xcb\x28\xc9\x98\x3f\x7e\x6d\x81\x4a\x58\x99\x6f\x8c\xe9\x6c\x98\x3a\x0b\x93\x3c\x50\xe4\xec\x51\x22\x17\x0b\x96\xd9\x46\x0f\x35\x3a\x14\x2e\xb1\x9a\x3b\xb9\x1f\x32\x8a\x8a\x4c\x33\x24\xfb\x36\x4d\xd3\xc4\xd6\xa3\xad\xe1\x4a\x69\x32\x0c\xe8\x4e\x29\x8b\x54\x9b\x52\x4e\x3f\x28\xfb\xc0\x0e\xb5\xbf\xc8\xef\x7d\xef\x09\x2a\xa1\xd1\x03\x6c\x02\x17\xa8\xbe\x26\x9c\xd2\x39\xe2\x6e\xf1\x3f\x84\x37\x35\x6f\xe7\x3e\xe2\xbf\xbf\x83\x30\xac\xad\x54\x08\xd0\x46\xa1\x1c\x11\x1a\xf9\x24\xcf\x8d\x71\x4a\x4b\xd4\x20\x5c\x80\xc5\x22\x60\x21\x32\xb1\xed\x38\x68\xa9\xb4\xe6\x58\x39\xf7\x41\x66\xf7\x34\x03\x8f\x24\x56\x2e\x7e\xc3\x45\xf1\x68\x23\xda\x16\xc5\x2a\xc8\x08\x35\xfe\x2e\xf9\x23\xfa\x2a\xcc\xf3\xb6\x46\xdf\x17\xd3\x57\xaf\x4a\x83\xa0\xe6\xbe\x68\xd8\xdb\xea\xef\x35\x43\x5a\x65\x8c\x06\xe2\x8b\x77\x46\x38\xb6\xc1\xb9\x65\x60\xad\x92\x47\x84\x92\xb5\x93\x5a\x83\x49\x8f\xf5\x4c\x1a\xdf\x90\x90\x5c\x53\x43\xe2\xa7\xe8\x52\xdb\xd7\xc6\x33\xb2\xaf\xbe\x7e\x5f\x2c\xa0\x4f\xc1\x5c\x66\xea\x5a\x4b\xfa\xfd\x61\x03\xdf\xb7\x5e\x21\x6b\x99\xc4\x79\x69\x65\x06\xe7\x42\x86\xbf\x80\x59\x76\xe9\xf7\x9b\x9b\xec\x52\x52\xe5\x96\x4e\xc9\x95\xa6\x19\x85\xe9\x5b\x8b\x32\x01\x7a\x5b\xdc\x24\xb4\x70\xd5\x44\xe0\x42\x3c\xdd\xe6\x26\x97\x07\x41\x5f\xa0\xcc\xc4\x72\x66\x97\x05\x67\x87\xd6\xf1\x2a\x0f\xb8\x2b\xe2\xd7\x38\xd6\xdd\x83\xfa\x5c\xb3\xb2\x93\xcf\x3f\xfb\xf5\xeb\x5f\x7b\xd3\x6e\xc2\xce\x5e\x2a\x76\x57\xfe\xce\x59\x93\x7e\x27\xe8\xa4\xd7\xc7\x99\x9a\x8a\x17\xe4\xff\x4c\xff\x97\xef\xf7\xc7\x49\xd5\x06\x6a\xc2\x85\x9a\xc8\x6c\x82\xa3\xb9\xd5\xf7\x6a\xbb\x0f\x7b\x2a\x13\xb9\x1a\xac\xae\xbe\xa9\x9e\xb5\x94\x72\x59\x24\x09\xa8\x6d\x96\xaf\xe1\x89\x25\x72\x65\x29\x93\x6f\x07\x20\xaa\x38\xf4\x0a\xa4\xe5\x44\x42\x65\x91\x9a\xfa\xb7\xa5\xd9\x71\x22\x57\xc7\xae\x90\x39\x4d\xa4\xb7\xda\x4d\x17\x58\x13\xb9\x1a\x68\x69\x7e\x63\x9f\xac\xf4\xf0\x55\xcd\xb0\xec\xa0\x24\x76\x50\xd4\x1a\x53\xe8\x28\xdf\x5c\x7d\x6b\xe9\x74\xdd\xf8\x19\xc9\x09\xc6\x91\x3f\x61\x27\x37\x6c\xcb\x32\xae\x76\xfa\x2c\x86\xec\xc7\x7d\xde\xdd\x55\x6e\xbe\x27\x74\x21\x41\x43\xd4\xac\x2e\x91\xab\xde\x76\x90\x76\x00\xb4\x38\x54\x1b\x9b\x89\xa5\xfc\x80\xfd\xdc\x44\x19\x63\xfd\x49\x2c\x6f\x9a\x6f\x7c\xb4\x3d\xe5\x2a\x96\x85\xfa\x98\x3b\xda\xf5\x93\xe3\x37\xb5\xc7\x3f\xde\x5e\x76\xb9\x73\x09\xc9\xa5\x34\xb9\xa9\x42\xda\x8b\x06\x44\xd4\x3c\xd5\x69\x1d\x7c\x0a\x10\x36\xf4\x11\xcc\xaa\x37\xfc\x2f\xe1\x9a\xf6\x01\x2a\x69\x8b\xd4\x9d\xc6\xde\xc6\x04\x75\xf0\xbd\x75\x1e\xb6\xc0\x73\x9b\x9e\x65\x24\x96\x1b\xca\x05\x7a\x88\xc2\x79\x87\x50\xbe\x34\x33\x89\x2a\x54\x10\x2a\x72\x2d\xfb\xfc\xf0\x96\xfc\xb9\x60\x19\x67\x58\xff\x28\x4a\x64\x11\x4f\xb8\xe0\xaa\x5c\x25\xd4\xfc\x2b\x5d\x23\xfe\x10\xa3\x35\x18\x57\x32\x34\xc7\xc4\x65\x56\xcb\x86\x46\x6b\x2e\x58\xa9\xdd\x0b\xb9\xa5\x13\x9a\x72\xf2\x5c\x66\x9a\x11\xbe\x5b\x14\x42\x15\xde\x21\xed\xa3\x13\xbb\x8c\x17\x53\x72\x6a\x03\xb7\x96\x48\x60\x9f\x47\x34\x87\xe6\xa2\x4c\xe4\x5c\xf1\x2d\x7b\x61\x3b\x19\x75\x86\x6c\x39\x15\x79\xb4\x7c\x54\xa4\xa0\x40\x5e\x9e\xde\x62\x0e\xa6\xb5\xa6\xd8\x89\x81\xfa\xf7\x60\xd0\xab\xcf\x7e\x3d\x7d\x39\x7d\x39\x7d\xb5\x37\x1a\x99\x49\x02\xbe\x78\x3f\x2a\xd8\xc8\x2b\x90\xe4\xf5\xbf\x8d\x9d\xa3\x5c\x31\x9e\x35\xc6\x45\x04\x0a\x85\x6d\x16\x5c\x98\x72\x23\xa6\x57\xd6\xb4\x86\x69\xcf\xf9\x12\x20\x74\x78\xa8\x6f\xd6\xe1\xe1\x8b\x23\x27\x50\x27\x20\x7c\x03\x28\x4b\x40\x1e\xa1\x5f\xf1\xd5\xeb\xdf\x4c\x3f\xfb\xf2\x8b\xa9\xf9\xef\xc9\x57\x20\xc8\xbb\x73\x9d\xb8\xfb\xf2\x2a\x6d\x33\x41\x36\x5a\x08\x8a\x4c\xa3\x8b\x4a\x85\xd3\x4b\xb4\x96\xe0\x05\x33\xc6\xe0\xd8\x21\x70\x5f\xfd\xfa\xd7\x5f\x76\x24\x1d\x87\x6e\xa8\x2a\xf6\xa9\xcd\xf5\xf6\xf6\xdd\xcf\x51\x97\x0b\x3c\x6d\x35\xad\x98\x26\x11\x24\x5d\x96\x66\x2e\xbf\x3d\xfa\xed\xed\xbb\x69\x4d\xf3\xad\xaa\x51\x75\x55\xa2\xfa\xb0\xb2\x53\x82\x2a\x6b\xec\x18\x98\xa7\xe4\x98\x47\x9a\x7d\xe4\xc0\x66\xd0\x48\x5a\x02\xe9\xc4\x84\xeb\x04\xc4\x13\x93\x96\xa2\x51\x12\xae\xb5\xad\x97\x22\x08\x75\xd7\x47\x52\x29\x93\xb2\x60\x50\x4f\xbe\x52\x59\x7c\xa4\x91\x04\xe5\xe6\x2a\x01\x06\x54\x0b\x36\x66\x84\x12\xc4\x7e\x1a\x5a\x2b\x15\x63\x17\x21\x05\x79\xce\x21\x60\xc9\x2a\x09\x95\x79\xe1\xed\xe9\xcd\xff\x7e\x77\x71\x7d\x7a\x7e\x61\xba\x27\x7b\x4a\xdd\xf4\x9c\x50\xa9\x23\x79\xce\x26\xa4\x05\xf4\xea\x00\x7d\x1a\x40\xf3\xd0\xcb\x45\x38\xc7\x0d\x79\x79\xf0\x9d\x51\xd8\xf2\xf2\x7c\x34\x80\x43\x66\x70\x20\x87\x1b\x0a\x99\xd5\x88\x20\x31\x1c\x70\x19\xe2\x7d\x79\x7a\x6b\x4c\xce\x85\xb0\xf1\x00\x1d\x39\xf5\x0b\xb6\xa6\x5b\x2e\xcb\x1e\xe8\x36\x8e\x2d\xc7\x30\x81\x60\x66\x5a\xb7\x8a\xb3\xaf\x82\x23\x98\x4a\xb8\xe8\xf0\x2b\x74\xc1\x1b\xc2\x9c\xf5\x72\xaf\xd9\x6a\x48\x0e\xf5\x55\xfd\x79\xcb\x68\x44\xad\x85\xef\xaa\x24\x67\x9a\x3f\x66\x8a\x6b\x3a\xe4\x55\x07\x91\x82\x55\x9d\x46\x41\x9c\xa0\x18\xc5\x34\x31\x03\xa1\xcd\xe7\xb8\x8a\xbf\x88\x59\x9a\xc8\xdd\x86\x09\x7f\x57\x53\xe0\x00\x36\x5e\xb8\x8c\x1c\x89\x21\x0b\x79\x2d\x1f\x00\x13\xa0\xb4\x24\x4e\xfe\x7c\xcd\xa0\x4c\x71\x69\xb4\xd2\xba\x77\x12\xea\x1e\xc9\x05\xea\xf5\xd3\x68\xb9\xb2\xdd\x24\x9d\x30\x17\x7d\x23\x61\xec\x48\x6e\xd2\xc2\xd4\x48\x7a\x61\x8a\x56\x17\xfe\x38\xab\xaa\xf0\xdf\x1f\x51\x37\xfa\x53\x75\x2a\xef\x0d\x0c\x50\xb4\x71\x36\xa3\x45\x3a\x56\xa8\x4c\x8a\xa9\xfe\xd6\xbb\x5a\xb3\x14\x2c\xd3\x54\x31\xbd\x8b\x4d\xaa\x76\xfb\x8a\x22\x98\xad\x00\x55\x64\xa8\x5a\x0f\xd4\x26\xe7\x9e\x97\xdc\x88\xde\xc5\xce\xf6\x19\x80\x1e\x04\x9b\x42\x40\xa3\x2c\xaf\x55\x00\xcb\x36\x20\x0b\xc7\x00\x7c\x5b\x9e\xcd\x96\xf9\x3a\x22\x09\xbf\x67\xe4\xd4\xb1\xd0\x26\x74\xc7\xb2\x61\xe9\xc5\x4f\x83\x4a\x26\x37\x4c\xad\x59\x91\x7f\x2b\xdf\x32\x95\xf1\x68\x68\x65\xa8\xc3\x79\xf0\x55\x6b\x17\xc8\xc9\xb7\x52\x0b\xc7\xe0\xed\xdb\xe0\x23\x7e\x71\x2d\x49\x30\xe0\xd9\x06\x14\x6a\x5c\xaa\xc6\xb7\xf5\xeb\x20\x19\xa1\x4a\x44\x3e\x42\x0a\x98\xfb\x63\xc6\x95\xc4\x98\x55\x23\x19\xa0\x2d\xd0\xdc\x75\xf4\xce\xc8\xa5\x5d\x14\xc9\x20\x69\x95\xc5\x47\xf8\x5c\x80\xdd\x3a\x2b\xd2\x32\xc5\x07\x97\x3f\xac\x80\xff\x64\xd0\x37\x00\x6f\xc3\x93\x1b\xf0\xeb\x80\xbd\xd1\x9b\xb8\xb0\xbe\xc9\xb2\x2a\x9c\xde\xd2\x87\x47\x00\xb7\xf6\x18\x88\xe7\xed\xd9\xe0\x77\x32\x2f\x75\x02\xf4\x77\xda\xea\x2c\xd5\xa3\x5e\xd2\x64\x0e\xd8\x6c\xd3\x76\xd2\xe0\x22\x06\x5a\x5d\xed\x8e\x7d\xd8\xed\x31\xcb\x1c\xa4\xe7\xb4\x36\xe7\x2a\x3c\x36\xd3\xeb\xa3\x6f\xf0\x37\x2f\x7f\xd3\xa1\xbe\x05\x84\x9d\x6a\x83\x73\x74\x75\x3c\x19\x51\xbd\xef\x57\x84\xc2\x06\x52\x8d\x54\xa2\x75\x83\x32\xb6\x91\x5b\x66\xb3\xdc\xa1\x3c\x42\xaf\xaa\xf1\xa3\xa9\x06\x85\x85\xf3\x6c\x01\xc8\x2d\x33\xf1\x7c\xa6\xd0\x81\x2d\x12\xbc\x65\xa1\x40\x95\x05\x63\xb5\xd2\x09\x96\xdf\x4d\x4d\x2d\x71\xd4\x23\x6c\x39\x08\xcc\x81\x2b\xd9\x9a\xe3\x69\x0c\xa5\xd8\x41\xc0\x04\x8d\xe3\xfa\xba\xaa\x94\x42\x5b\xb6\xce\xa9\x3e\x61\x92\xf2\x19\xf5\x0f\xfa\xc0\x70\x2d\x66\xbf\x76\x31\xc9\xce\xd4\xbd\x30\x33\xec\x7d\x06\xa6\xa8\xc1\x60\x0f\xe5\x75\xf3\x8d\x5a\xcc\xb3\xfe\xbb\x15\x92\x18\x4c\xf0\x34\x91\x5c\xaa\xc8\xab\xc0\x8e\xaa\x4d\x92\xcc\x6a\xce\xc3\x29\x79\x6b\x24\x47\x21\xc5\xe4\x2f\x2c\xf3\x9a\x33\xb8\x63\xf3\x72\xc4\xd1\xbc\xee\x60\xd9\xdb\x13\x56\xc2\xe9\xf6\xf6\xcd\x70\x10\xdd\xde\xbe\x71\x03\x83\x26\x4a\x4e\x12\xbe\x65\x65\x3c\x2d\x68\x3e\x48\x20\x26\x0f\x81\xc2\xd4\x06\x3e\x06\x8a\x75\xc2\xb7\xff\x36\x34\x92\xec\xeb\x93\xbe\xf6\xbc\xf4\x01\x51\xa8\x65\xe5\x96\xfd\xfd\xd1\x64\x4d\xfd\x36\xe6\xa7\xfa\xa3\xb1\x82\x8c\x75\x3d\x77\x8b\xa1\x4f\x05\x37\x96\x7c\x19\x06\x65\x7c\xb6\xd2\x26\xc0\x95\x93\x59\xe7\xd5\x8a\x61\x40\x8f\xad\x28\xec\xc7\xff\xaa\x01\x25\x99\x10\xdb\x2b\x63\x36\xcf\x4f\xd0\xf8\xe2\x2d\x31\x15\x49\x91\xab\xac\xf0\x25\x13\x56\xc5\x63\x26\x06\xa6\xb3\xf9\xe9\xdb\xba\x83\x7e\x02\x43\xeb\xef\xe1\x2c\x6b\x23\xfe\xff\xec\xfd\xfb\x72\xe3\xb8\xd5\x28\x8a\xff\xff\x7b\x0a\xc4\xfd\x55\xb9\x7b\xff\x2c\xb9\x7b\x2e\xbd\x27\x9e\x4a\x9d\x72\xdb\xee\x19\x55\xba\x6d\x1d\x5b\x3d\x93\x54\x94\xed\x82\x48\x48\xc2\x31\x45\x30\x24\x28\x5b\x99\xe4\x54\x1e\xe4\xfb\x5e\x2e\x4f\x72\x0a\x6b\x01\x24\x48\x02\x24\xe5\xb6\x67\x26\x09\x59\x95\x4c\x5b\x04\x71\x59\x00\xd6\xfd\x62\x3e\x7f\x0c\xe8\xc0\x47\xc9\xa7\xe6\x70\x14\xcf\x2b\x93\x7b\xd3\xd0\xe4\x47\xd2\xb6\x7d\xdc\x69\xad\x80\x51\xf7\x6e\x4b\x53\x2e\xdc\xac\x87\x55\x42\xe0\xba\x3a\x8d\x9a\xa2\x03\xea\x07\x97\x35\x64\xec\x31\xdc\x27\xbf\xcc\x87\xaf\xf9\x99\x3c\x73\x65\xf2\xee\x08\x96\xdd\x50\x97\x80\x47\xfa\x44\xba\x6e\xb8\x4b\x91\xd0\xe3\xd3\x96\xf8\xd6\x91\x9a\x90\xf3\x67\x97\xff\x6e\x5b\xe8\xaa\x96\x17\x3f\x08\x91\x4c\x31\x17\x62\x1f\xc5\xc7\x8f\xc8\x06\xa1\xcd\x1f\x4c\x2c\x5b\x05\xbc\x8c\x81\xd8\x5f\x12\xdb\x23\x93\x60\xb1\xed\xfe\x44\x42\x24\x99\x95\xa2\x9a\x4c\xa6\x9a\x9d\xa0\x29\xd3\x4e\xc9\x6a\xd7\x30\x71\x94\xce\x05\x48\x20\xe2\x4a\xad\xc8\x6b\x39\xd7\x59\xc3\x30\x5a\xb2\x08\x3c\x3f\xbf\x3c\x9d\x1d\x1e\x86\xf5\xa0\xb2\x4f\x71\x04\x4a\xd4\x22\x85\x74\x51\x75\xc5\xa9\xfc\xe0\xb1\xf1\xad\xa3\x19\xc3\x3a\x81\x26\xe7\x38\x2e\x27\x10\xb1\xe4\x31\xfa\x8e\x2c\x74\x62\x92\x4a\x62\x45\x57\xaf\x8f\xc9\xea\x95\xf1\x90\x05\x34\x3d\x0d\x02\x16\x31\x8c\xc3\xe9\xcb\x51\xdf\x78\x3f\x2d\x84\x3f\xf6\xa0\xc8\xcd\x06\x10\xbd\x19\xca\x43\x0e\x8a\x3e\x3e\x5b\xce\x03\x3f\x9a\x1e\xb9\x9f\xaa\xab\xf9\xe4\xfa\xca\x10\x71\x42\x63\x11\xef\x36\x22\x37\x99\x3e\x8d\x0b\x91\x53\x6d\x8d\xdc\xba\x9d\x1c\x3d\xe3\x7f\x65\x3a\xcf\x59\xb5\x5c\xdf\x98\x7c\x10\xab\x8c\xdc\xd3\x34\xe6\xf1\x4a\x31\x0d\x32\x4f\x63\xb7\xd6\x75\xb1\xc3\xac\xcc\x90\x83\xd7\x18\x9e\xac\x78\x2d\x48\x35\x41\x2b\x15\x2c\x8b\x04\x19\xdb\x3c\x8a\x59\x4a\x31\x27\x85\xab\xf3\x35\xcd\x90\xc5\x0e\x79\x16\x88\x2d\xd3\x7a\x31\xe9\xac\x68\x8a\x89\x4d\xf3\xac\xf3\x44\x3e\x4a\xca\xa8\xee\xdf\x24\xe6\x92\xd3\xc8\x97\x07\xac\x6d\x13\xed\x4f\xab\x59\x82\x4d\x22\xe6\x50\xbd\x72\x4b\x1b\x4b\x51\x50\xf1\x0d\xbd\x63\x68\x67\x52\x1d\xd7\x1c\x7f\xf6\x66\x31\xea\xcb\xeb\xc9\xd3\xd5\x97\xa6\xb9\xba\xca\xb2\x1a\x0c\xbd\x5f\x4d\x8c\x6b\x72\xf0\xa8\xdf\xbc\xfd\xea\x51\x8b\xc2\xa0\x86\x98\x46\xe7\x3d\x73\xb7\xfa\x2a\x96\x3e\x44\xb4\x05\x05\x75\x7f\xdb\x27\xe6\x0c\x8a\x88\xfd\xfa\x82\xce\x60\xfe\x8f\x09\x16\x87\x0f\x7f\xb8\x9c\xec\xfb\xdd\x3d\x4f\xd9\x2a\xa7\x69\xd8\x17\x4b\xfe\x58\xfb\xa0\x99\xf5\xb9\x68\x61\xd1\xf1\x67\x29\x7d\x52\xcc\xbd\x70\xf0\xbe\xa4\x9b\x6e\xae\xfd\x47\xe7\x67\x35\x36\x11\x4c\x30\xda\xf8\xe9\x71\x59\x54\xcd\xac\xb5\x9a\xce\xec\xab\x74\xbf\x1a\x6b\x23\xc4\x9e\xb7\xa9\x58\xda\x07\x9e\x49\xa6\x28\x43\x2f\x6d\xde\x8f\xce\xcf\x6a\xf9\xd1\xcd\x2b\x54\xed\xf9\x2c\x7c\x8b\x5d\xb9\xb8\x4a\xc0\xce\x9b\x6f\xbe\xd8\xff\x5c\x17\xeb\xe9\x73\x37\x7f\xb4\x1a\x57\xe7\xae\x7e\xd0\xd7\xd3\x05\x79\xd7\x3a\x6e\x18\x6b\xbd\xa4\x9f\xb3\x98\x6b\xe4\xd8\xae\xf3\x88\x4d\x53\x2e\x14\x9d\xed\xbf\x38\xc7\xc7\xd5\xc5\x26\xe6\x57\x6f\xb6\xa5\xf2\x7c\xd6\x40\x62\x58\x49\x25\x46\x57\xd4\x0f\xbf\xdd\x7b\xb1\x0f\x61\xef\x02\x15\x8e\xd4\x24\x7f\x38\x9f\x56\x59\x3b\x35\xd7\x2c\xe7\x52\x57\x9f\x82\x74\xa1\xee\x03\x58\xa4\x5f\x0c\x59\xbc\x6b\x3a\x3e\x3e\x8a\xb1\x78\x08\x93\x7d\x35\x29\x7f\x38\x9f\x3e\x6d\x34\x2f\x64\x69\x79\x54\x20\xaf\x56\x93\x38\xc9\x50\xb3\xce\x96\x48\x75\x71\x39\x4c\x65\x0c\x32\xb6\x5b\xa3\xf2\x87\x73\xa7\x8b\x7f\x33\xdc\x77\x7f\x7d\xca\x50\xf0\xbb\x59\xf0\x1b\x5d\xc0\xb4\x77\x03\x58\x53\x39\x7b\x8e\x92\xdf\xdf\xc1\x38\x97\x38\x0e\x1a\x8f\xf1\x75\x59\xf3\xdb\xd1\xa4\x59\xf4\xdb\x39\x5f\xbd\x49\x45\xd9\xef\x66\x23\x18\xec\xb9\xea\x7e\x0f\x75\xba\x87\x3a\xdd\xf6\x16\x0c\x75\xba\x9f\xb3\x4e\x77\x5b\x19\xed\x24\x89\x76\x57\xf1\x7b\xac\xef\xd6\x45\x4d\x4f\x2b\xad\x51\x17\x6b\x4a\x1f\x41\x4f\xa8\x93\x2d\xeb\x08\x70\x93\xce\xde\x45\xa0\x90\x9d\x80\x9e\x4c\x48\xce\x9e\xfc\x40\x28\x2e\x85\x9c\x29\x1e\xa4\x6b\xe6\xe7\x45\x4b\x6b\xd6\x46\xe2\x31\xaa\x42\xf0\x3d\x42\x0b\x61\xb1\x0e\x8f\xf2\xcf\x5a\x9a\x41\x15\x2b\x51\xd6\x64\xd1\x16\x16\x02\x62\xf4\x61\x66\xd5\xed\x83\xaa\x41\x77\x3c\x5e\x39\xd5\x8a\xa0\x48\xa4\x99\x56\xa0\x07\x26\x21\x3b\x56\xd8\x9b\xa5\x26\x49\x95\x0b\xc2\x84\xba\x13\x00\x82\xe5\x54\x2d\x0a\x15\x22\x34\xde\x59\x53\x73\x4e\x0c\x90\x95\x81\x89\x56\x5c\x7a\xd5\x59\x95\xf1\x21\xa8\x98\x41\x2a\x4f\x6d\x2a\x5e\x30\xa2\x79\xc4\x7d\xf7\x16\xab\x21\x74\xe7\xeb\x67\xe8\xe3\x8b\xe5\xb1\x20\x2d\x3b\x96\x51\xd0\x1c\x27\xb9\xa0\xc1\x1a\xbd\xd5\x4d\x29\x7a\x27\x94\xcc\xd7\xb8\x6e\xed\x86\x16\xa4\x5c\xb2\x94\x53\x4c\x8e\x65\xb9\xed\x43\xf6\x30\x0d\x36\x7d\xf4\xf7\x4a\xba\x5e\x59\xc3\xfc\xe0\x94\x28\x31\xc2\xae\x89\x9e\x95\x33\x72\x4d\xc5\xc9\x44\x92\xa2\xee\x08\x79\x27\xe4\x5a\xc7\xa3\x8b\x74\xb4\xa0\x19\x80\x47\xab\x12\xa7\x7a\xbf\x62\xfb\x37\xac\x8f\xe3\x84\x0d\xb0\x92\x2c\x65\x71\x60\x4e\xde\xc8\xca\x15\x29\x72\x89\x11\x9e\x26\x64\x50\xd7\x4f\x12\x29\xd4\x7e\x34\xf5\x0b\x3d\x13\x8e\xc3\xa2\xec\x85\x05\x78\x08\xfd\x9a\xcf\x63\xdc\xbc\x44\x60\xc8\x42\x1d\x12\x1e\xcb\xa4\xda\xcc\x98\xad\x60\x72\x9a\x25\x38\xd2\x51\x5b\xc6\x8b\xff\x9f\xff\xf8\x9f\x4b\x21\xff\xf9\x8f\xff\x19\xeb\xa4\xaa\xf5\xbe\xdd\xfd\xea\x82\xa3\xba\x00\x55\x91\x84\x95\x4a\x9e\x41\x2e\x4d\x0c\x6c\xd5\x0b\x31\x45\x9b\xc7\xe4\x54\xa7\x99\xf3\xc0\x16\x8e\x26\x8d\xcd\xf1\xd4\xa1\x0a\x7a\xc9\x0a\x40\xb0\x18\xf5\x87\xa5\xc7\xa5\xd8\xb9\x1f\xaa\x00\x7b\xf7\x14\x0d\x06\x29\xa7\x68\xd8\xee\xea\xd3\x99\x3f\x96\xfa\xd2\x2f\xe0\xd3\x9d\x42\xd6\xaa\xa9\xef\xed\xa5\x8a\xc6\xcb\x0f\x8a\xeb\xec\xd8\x3e\x6d\x3d\x52\xd7\xd2\xd7\x2d\x48\xdf\xd6\xf8\x44\xd1\x68\xe9\xf6\x8b\xec\x05\x0c\xa2\x6b\x4f\x43\x6e\xd4\x1b\x7d\xf5\x5a\xda\x36\x90\xc0\x65\xfd\x63\xed\x19\x2f\x12\x6d\x55\x5d\x72\x16\x85\xde\x80\x9d\xf2\x29\x00\x43\x0b\x14\x60\x45\x56\xe8\xb8\xdc\x4a\xd9\x26\x91\xf2\x95\x82\x83\xef\xfe\x9b\x07\xb8\xaf\x97\xea\x08\xb1\x74\x83\x1f\x10\x2a\x5f\x59\x86\x6d\xab\x26\x2f\x8e\xed\x26\x1d\x0e\x90\x95\x65\x60\x34\x19\xd6\xbe\xe7\x70\x90\x1b\xb0\x69\xef\x54\x5d\x80\x02\x8a\x8a\x2e\xa1\x98\x10\x16\x49\x0a\xe8\x86\xe9\xc0\x1b\xa8\x40\x04\xd9\x0d\xda\x42\x86\xcb\xc7\xb2\xe1\x1b\x0b\xa5\xc5\x36\x2c\x6c\xbc\x5b\xae\xa8\x1f\x28\x2c\xb6\x03\xb1\xdf\x7b\x91\x92\x8a\x70\x77\x04\xe9\x20\x20\xcb\xed\x9e\x10\xe1\x1b\xc5\x05\x64\xa5\x27\xa0\x7d\xc8\x22\xbe\xe1\xba\xb6\x21\xce\x14\xa3\x29\xda\x2e\x0f\x71\x27\x4e\xe4\x16\x7c\x8b\x9d\x55\xe4\x41\xfd\x5a\x59\x8a\xf7\xa2\xe1\xe3\x59\xfe\x21\xca\xa9\x2f\x5f\x1d\x36\x01\x60\xd6\xd8\xde\xf1\x7e\x00\xa8\x4a\xd8\x37\x6e\xbf\xbf\xf2\x11\x29\xf9\x5e\x64\x45\x4d\xb5\x72\x17\x1d\x82\x7a\xb9\x97\xed\x7d\x7a\xd7\x59\x5d\x05\xb2\x79\xc0\x89\xef\x7b\x90\x69\x90\x8a\x0c\x38\x3d\xeb\x36\x7a\x68\x42\x01\xc6\x4e\xdc\x4e\x30\x18\xa3\x0d\x5d\xd6\xc3\x5b\x98\x2e\x57\xe0\xc4\x79\x4a\x82\x94\x29\x0f\xa4\xb7\x38\x6b\xf9\x18\xea\x06\x5b\xa8\x05\x13\xe1\x43\x79\x05\x56\xeb\x38\x38\x55\x94\x57\xc6\x95\x22\x27\x0e\x89\x75\xd0\x27\x65\xc5\xb7\x2c\x56\xd2\xa7\x5a\x7e\xeb\x39\xf7\x33\x88\xd6\xb8\xbd\x20\xdd\x1a\xd7\x5f\x3e\xb1\x90\x97\xfb\xed\x09\x7e\x50\x44\xb6\x54\xf9\x2a\xb3\xe2\x4b\x4f\x0d\xb4\xf2\x81\x7d\xfc\xd5\xc1\xc2\x57\x5b\xa3\x7c\xea\xc0\x28\x6a\x6a\xb4\x40\x63\xea\xf3\xbd\x2c\x1f\x04\x07\xb9\x81\x0c\xdb\x70\x4a\xa1\x2a\xa0\xc9\x3f\x9f\xa1\x23\xad\xae\xda\x00\x09\x77\x76\xfe\x9a\x1d\xe5\x53\x4b\xed\x2e\xab\x19\xbf\x4c\xd1\x37\xcd\x2c\x69\x5c\xad\x24\x8f\x0e\xa8\x0b\xa4\x61\xa6\xbe\xfb\xd9\xd4\x24\x64\xff\x74\x3e\xf5\x24\x6e\x37\x4f\x9f\x5d\xf5\xa7\xd0\x28\x9f\x1e\xc9\x34\x9a\x8d\xbb\x0f\x4a\x77\x82\x8d\xf2\xd9\x3f\xd5\x46\xf9\xf4\x3d\x90\xfb\xf3\x8d\x97\xe5\x47\x1d\xc7\xb2\x1f\xa3\xa0\x4f\x26\xd8\xdd\x8a\x8e\x11\x0b\xa3\xed\x67\x21\x23\x26\x21\x59\x27\xd4\x07\xc0\xb1\xda\xfb\x2c\x18\xa2\xd6\xa3\xd2\x6f\xcf\x92\xfd\xae\xec\xfc\xa0\xac\x82\xd3\x41\x56\xba\xf8\x06\xd6\x87\xac\x80\xcd\xc7\xc4\xd2\xbe\xb4\xe4\x0b\x47\xbc\x69\x7d\x59\xd8\x03\x72\x93\x19\xd1\x19\xdc\xec\x54\x37\xc7\x46\x53\x3c\x2b\x32\x33\x75\x70\x7d\xb6\x5c\xae\xaf\x0e\x58\x96\x10\xca\x99\x81\x80\x56\xbb\xea\x61\x3a\x78\x9c\xa5\xc9\xef\xa3\x98\x9b\xbe\x18\xac\x13\x03\xe8\xc0\xd5\x7d\x30\x58\xc7\xda\x4b\xf4\x56\xc3\x60\x73\xc4\x61\x73\x8d\xc5\xe6\x88\xc7\xe6\x0a\x93\xb5\xf2\x3c\x03\x2e\x83\xa7\x17\x2e\xcb\x1e\x21\x00\x77\xcb\xbd\xad\x2a\xbc\xf2\x71\xca\xbd\xe4\x65\xc6\x98\xd1\x7d\x01\x2a\xc3\xbc\xb5\xd9\x2e\x96\xf4\xc1\x15\xb1\x6f\x3f\xf3\x79\xab\xd8\xac\x79\x48\x9f\x58\xdc\xde\xb7\x51\x79\x59\x52\xb3\x48\x9b\xd2\xb0\xba\x6e\x97\x42\xa2\xb5\xf9\xc4\x93\xa8\xd7\x02\x82\x76\xc7\x36\x76\xaa\x0e\xaa\x80\xe0\xb1\xa8\x49\x87\xac\xca\x22\x71\xff\xea\xa8\x3a\x65\x0b\xd8\x08\x55\x53\x3e\xd9\x14\x4f\xe8\x50\x05\x80\x9e\x0b\xf4\x97\xb3\x35\x23\xf2\x5e\xc0\x59\x03\x5f\x6f\xf3\x0e\x11\x84\x22\x42\xbb\x32\x57\x70\xc7\xde\x5d\xc5\x66\xf5\xba\xae\xab\xa5\x57\x65\x96\xf4\xaa\xd3\xef\x83\x49\x40\xb7\xef\xa6\x09\xf7\x6b\x11\xe9\x4d\x3a\x81\x2d\x9a\xcf\x4b\x82\xfc\x3b\xc0\x2e\xbf\x59\xd3\xec\xe5\x66\x77\x1b\xd1\x05\x8b\x5e\x01\xde\xd1\x48\xbe\xeb\x3a\x5b\x1e\xcc\x6a\xdd\x70\xc8\x70\x7e\xe8\x30\x30\xd2\x0e\x27\x11\x0b\xd5\xb8\x3d\xcf\x9b\xed\x11\x5d\x94\x1c\x85\xc9\x91\x7f\xfe\xe3\xbf\xcd\x44\x41\x3b\xaa\x17\xd4\xfb\x58\xe0\x82\xbd\xeb\x6d\x2e\x49\xcd\xc1\x57\xe0\xac\x7c\xda\x57\x5b\x2c\xa8\x7d\x31\xdd\x0a\x07\x75\xea\xd8\x72\xc9\x02\x1d\x41\xa9\x35\x05\x11\xa0\x55\x1d\x96\x56\xa9\xfb\xdc\x63\xea\xb1\x88\x47\x26\xfe\x00\xcd\xaf\x18\x5f\xa2\x75\x22\x4b\x91\x6e\x58\x5d\x07\xd1\x52\x55\xba\x7c\xe0\x30\x34\x01\x53\x56\x71\x79\x0a\x01\x5e\x7b\xe4\x9f\x06\x81\xc8\xe3\x7d\xf8\xae\x9b\xea\x87\x3f\x1b\xff\x55\x43\xc9\xed\x7d\x3a\x34\x99\x94\x24\x22\x2c\x92\x30\x01\x33\x57\xa0\x67\x0d\x8c\x0e\xb4\x8b\x2b\x6e\x3d\x6d\xbd\x74\xc9\x84\x54\x9d\x42\xfc\x4f\x55\x1e\x80\xfa\x36\x9f\x0d\x6e\xf2\x18\x90\x77\x77\xe9\x53\x20\x3b\xc0\xde\x0b\xda\xa4\x84\xb8\xc2\xc4\x99\x76\xfc\xe4\x85\x26\x52\x31\xbf\x1d\x37\xbf\x1f\x63\x47\xf6\x50\x3f\x90\xbe\x5c\x12\xe9\xcb\x29\x91\xe6\xfd\xea\xe4\x95\xfe\x7d\x77\xba\x22\x27\x95\x1a\x37\xc4\xfa\x06\x9e\x63\x32\xe9\x90\x3a\xd4\x53\x5a\x17\x9a\x46\x83\x52\x0e\x91\x3a\x61\xbe\xd7\xc8\x5e\x7d\x4e\x2f\xcf\x0f\x3d\x3e\xd3\xf6\xb3\x9f\x36\xcb\x57\x79\xb0\x6f\x9b\xb5\x94\x49\x3f\x23\xdb\xf7\xb3\xd9\xb4\x34\x22\x79\x2d\x6b\xea\x78\xa8\xa6\xfe\xa9\x1b\xc7\x9b\xcf\x33\xaa\x6d\x98\x5c\x8b\x70\x0f\xda\xf3\x11\x3f\x78\x5a\x9a\x83\x4b\x86\xcb\xa1\xd7\x6d\xf9\x15\xa9\x3e\x31\x5f\xba\x92\xd9\xbb\x3b\x05\x1f\xee\x10\x7b\x31\xb3\x7d\xc9\xc6\xab\x31\xf9\xee\x62\x76\x44\xa6\x9f\x66\x47\x84\xc9\x60\xfc\x8a\x7c\xd4\x15\xcc\x3a\x24\x08\xdd\x87\x3a\xb5\x57\xd7\x87\x8a\x89\x58\x81\x6b\xcb\xaf\x4b\xe3\x9a\x50\xb9\xde\x63\x1f\x0f\xa7\xaa\xfd\x73\x6c\x63\xd7\x0e\x76\x5b\x18\xec\x1d\x84\x69\x8e\x8b\xad\xc2\x65\x9a\xbd\xe8\xbb\x19\x84\xb0\xf1\xea\x84\x8c\x08\x7b\xa0\x81\x3c\x21\xc7\x4b\x21\xa0\x22\x29\xe4\x16\x22\xc7\x0b\x9a\x92\xcb\xab\xd9\xc5\x09\xfa\x44\xb0\x58\xa6\x3b\xb2\xe9\x22\x2e\x57\x97\x1f\xfe\xa8\xf1\xd8\x8e\x30\x8e\x49\xdb\xc9\xfc\x00\x06\x41\xfd\x87\xfa\x13\x47\x31\x7c\xba\xb7\xfe\x5f\xf9\x6c\x69\xc4\x43\x5a\x88\xa9\x98\x72\x5e\x09\xd5\x5c\xba\xa2\x8e\xcb\xa7\xcf\x99\xab\x1e\x02\x05\x62\xc8\x32\x5c\xc9\x6f\x07\x80\x37\xb9\x86\xb5\x13\x43\x07\xba\x9d\x48\x70\x26\x5c\x30\x03\x08\x2d\x01\x2b\x16\xfc\xc4\x80\x7d\x9e\xbf\x7e\xfd\x65\xa0\x3a\x86\x7f\xb1\x13\x93\x23\xa2\x8f\xc0\x86\x47\x0d\x66\x05\xdd\x45\x50\x8c\xd4\x6c\x61\xd9\xf5\x48\xc3\xfb\xb3\x46\xc0\x3e\x5a\x81\xbd\x07\xa7\x49\x34\x00\x9e\x96\x09\x4a\x7c\x99\xb1\x1e\xdf\x69\x1f\x62\x48\xfa\x21\xa4\xee\xae\x78\xb0\xe9\x49\x33\x27\x67\x1f\xa7\x7d\x6d\x97\x80\x8c\xfc\x73\xb7\xb1\x14\x35\xa7\x3e\x80\xd9\x62\x48\xaa\x08\x01\x47\xc1\x90\x45\x2e\x73\x6f\x61\x57\x7c\xec\x32\x0e\x8b\x8a\x8a\x75\x59\xd5\xac\xe2\xa4\xb9\x15\x09\xad\xc6\x69\x93\x25\xc1\x12\xa4\x1a\x6d\xdf\xb6\x18\x83\x7a\x9d\x44\xb5\xb4\x3d\xe8\x3c\x70\x26\x22\xb6\xa1\x04\x40\x09\x20\xc7\x1b\x99\x2c\xad\xe2\xea\xdd\x24\x62\xa6\x00\x8c\x2e\xcc\xe0\x37\x05\xf9\x64\x2a\x45\xb6\x8b\x54\x32\x94\x48\x16\xac\x63\x1e\x50\x67\x95\xa7\xf2\x01\xa1\x1e\x15\x57\x7c\x93\x88\xac\x74\x2e\xc5\x42\x06\x87\x59\x99\xa2\x72\xc9\x53\x76\x4f\x23\x77\xb2\xbd\xf2\x41\x6c\xa1\x55\x0a\x98\xe8\x52\x10\x16\x97\xe5\x90\xc1\x7f\xa4\xfb\x6a\x74\x6a\x9f\xa1\xd9\xe7\x6f\x86\xea\x66\x4c\xec\x30\xe7\x2e\xe5\x6d\x91\xb9\xf8\x1b\x74\x3c\x84\x15\x42\x5f\x17\xc1\x5a\x90\x6b\x24\xda\xe4\x25\x1f\xb3\x31\x49\x78\xbc\xca\xda\xb5\xb7\xbd\xd6\xdb\x03\x19\x24\xee\xd8\x04\x0f\x40\x26\x53\x13\xa3\xf0\xd9\x2e\x0d\x15\xd1\x0c\xf9\x71\x1b\xca\x53\xa3\xd3\xf5\x42\xa1\x07\x04\x3c\x5e\xe6\x9e\xc5\x99\x34\xc4\x96\xaf\x59\x99\xfd\xc3\xca\x87\x52\xd4\x11\x69\x5f\xdc\x67\x21\x0d\x70\xe8\xc7\xcc\x50\xad\xc7\xb5\x9c\xe1\xb4\x2f\x55\xec\x4b\x96\xaa\x4e\xf2\xe5\x7c\x74\x74\x04\xea\x9b\xef\x98\x0e\x05\x24\x09\xe5\xa9\x3f\xf3\x76\xf9\x28\xb1\x56\x57\xff\xb1\x61\x4a\x17\x22\x97\x3d\x08\xc9\x53\x49\x8e\xb1\x90\xea\xf6\xf5\x3b\x19\x97\xd8\xb8\xc3\x16\x0d\x4d\xda\x7d\x42\x06\x82\x31\x10\x8c\x7f\x6d\x82\x11\x0b\x69\xd8\x2a\x2f\x58\xda\xed\xc5\x3d\x2d\xc5\xfd\x6c\xc4\x0d\x57\x26\xc3\xf2\x75\x78\x33\xe9\x66\x7e\x80\x75\xdc\xe3\x1e\x46\xe9\xc7\x99\xa3\x93\x5f\x2b\x70\xe7\x07\x36\x6c\x9f\x90\xf6\x37\xd4\xb2\x10\x09\x60\x73\x02\x06\x26\x63\x38\xf5\x3c\x6d\x73\xcd\xd1\x7e\x65\x7a\x9f\x2f\xc0\xff\xfd\x1a\x82\x37\x4c\x28\x02\xfa\xce\xbc\x5c\xb0\x80\xe6\x99\xf6\xe6\xe8\x70\x0c\x2e\xa6\x18\xb0\x14\xfa\x28\x3c\x42\x5e\xa1\x39\xd1\x64\x14\xac\xf8\xb7\x74\x91\x58\x74\x7c\x39\xb1\x7d\x37\x8e\x6c\xcf\x0d\xfc\x03\x24\x95\xca\x5f\xdb\xb7\xe5\xdf\x37\x67\x33\x7c\xeb\x1f\x46\xf7\xf8\x81\x4b\x66\xdc\x43\xa0\x8c\x00\x1c\x10\x63\x52\xc0\x54\xeb\x6f\x46\x5f\x7c\xfd\x75\x8b\x8d\xed\xf9\x8e\x7d\xe6\x4b\x6e\x87\x4f\xd5\x4c\x50\x24\xb7\xeb\x11\x2a\xe1\xa9\x56\x61\x8f\x3a\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xee\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\xcf\x10\x25\x31\x44\x49\x14\xcf\x10\x25\x31\x44\x49\x3c\x7f\x94\x44\x4b\xc5\x1d\x25\x63\x60\xbe\x33\xd7\xbb\xf6\x8e\x5b\x4e\xb9\xce\x8e\xf7\x88\x34\x87\xfa\xcb\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\xf4\xa3\xc6\x21\xcf\xe1\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x5f\x3e\x83\x05\xdf\x7a\x06\x0b\xfe\x60\xc1\xd7\xcf\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\xb8\x6c\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x9b\xcf\x60\xc1\xaf\x3f\x83\x05\x7f\xb0\xe0\xd7\x9f\xc1\x82\x3f\x58\xf0\x8b\x67\xb0\xe0\x0f\x16\xfc\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x92\x21\xcf\x61\xcf\x11\x86\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xb6\x6a\x48\x5b\x35\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xfd\xf3\x1f\xf2\x1c\x0e\x04\x63\x20\x18\x43\x9e\xc3\x21\xcf\x61\xe5\x19\xf2\x1c\x0e\x79\x0e\x6b\xcf\x90\xe7\xd0\x2f\x40\x0e\x79\x0e\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x96\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\xcf\x10\x25\x31\x44\x49\x14\xcf\x10\x25\x31\x44\x49\xfc\x3b\xe6\x39\xec\x63\x0b\x6b\x62\xae\x6e\xfb\xd7\x12\x4d\x97\x25\xaf\xe9\x9a\x75\x9e\xd9\xda\x7c\x7d\xe8\x30\x59\xa0\x88\x2b\x5a\x6e\xcf\x92\xdc\xbb\x02\x09\x19\xbb\xd6\x71\xa5\x1a\xb5\xdc\xcb\xd2\xdb\x5b\x9a\x1c\x8f\x1e\x66\x1e\xfd\x5b\x30\x6b\x1e\x88\x2d\xaa\x53\xd0\xf3\x87\x63\x94\x64\x0a\x3d\xcc\x9a\xaf\x14\x5b\x38\x3f\x80\xfe\xe6\x07\x70\x80\x75\x5b\x57\xd7\x74\xa9\x58\x1a\x09\x28\x13\x3a\x88\xc4\x3d\x4b\x71\x36\xe8\x2f\x64\x4d\x2e\x23\x62\xc3\xa5\x64\xe1\x91\x92\xc8\xd1\xd5\xdc\xd5\x69\x20\xe2\x8c\x63\xca\x4a\x94\xb8\xe7\x07\x3c\x5e\xf2\x98\x4b\x36\x3f\x20\x23\x02\x5e\x2a\xd6\x72\x8c\x88\xa3\xe7\x49\x22\x9a\xc9\x31\x29\x56\xe6\x04\x89\x9a\x2b\x0f\x59\x2c\x79\x40\x23\x3d\xc1\x7a\x3f\x3c\x26\x34\x4a\xd6\x34\xce\x37\x2c\xb5\xda\xc1\x01\x70\xf5\xaa\xcd\x82\x5a\x38\x44\x53\xac\x53\xb1\x89\x87\x23\xce\x37\x8b\xa6\xdc\x9e\xa4\xec\xfc\xf2\x74\xd6\x75\x3c\xa6\xd8\x8c\xf0\x38\xe4\x01\xca\x24\x85\x5b\xf4\xda\xa4\xa1\x04\xea\xc5\x33\x03\xa8\x05\x5b\x0a\x37\xe2\xa1\xf1\x8e\xa8\xee\xbc\x73\x5d\x08\x11\xb1\x66\x56\xcd\x16\xaa\x53\x93\xca\x67\xb6\x84\x87\xa7\xda\x92\xf3\xcc\x45\x4b\x78\x70\x87\xff\x27\x72\x27\x02\x52\x6b\xab\x71\xec\xd6\x49\xd0\x4e\xdc\xd6\x1e\x4a\xa1\x15\x4c\x2d\x72\x47\x39\x8f\x8c\x2c\x45\x14\x89\x7b\x84\x1a\x0a\x9f\x85\x38\x86\x74\xe1\x77\x28\x9b\xe0\xc5\xbe\x8d\xb8\x64\x29\x8d\xd4\x2f\xae\x9e\xe7\x73\x32\xc2\x20\x06\x75\xaa\x37\x09\x4d\x79\x26\xe2\x23\x02\x91\x4c\x46\xa8\x30\x5d\x2e\x85\x20\x0b\x9a\x82\xa0\x53\x0c\xf7\x9b\x3d\x87\x2b\xc7\x53\x22\x11\xfb\x4b\x4e\xa3\x6f\xd1\xef\xce\x10\x3a\xbe\xd4\x14\x8e\x67\xd0\xc6\x28\xed\x8a\x21\xdd\x48\xe4\x27\x98\x07\x2d\xbd\x45\x16\xe5\x3f\x03\xfc\xe7\x78\x3c\x26\x7f\xb7\x66\x20\xd3\x9c\x19\xf7\xf9\xc2\x03\x0d\xc7\xf8\x03\x71\x7b\xbc\x6a\x6d\x65\xc7\x50\xe5\x5c\xd5\x02\x78\xdc\x63\x72\xae\xc1\xf6\x9c\x2f\x0c\xd6\x36\x41\xf7\x96\x58\x73\x56\x02\x2d\xf4\x77\xab\x48\xc7\xab\x72\xe8\x59\x31\x32\x95\xe5\xee\x58\x3b\xf3\x1b\x38\xa4\x4e\xa2\xab\xbb\x28\x34\x1b\x62\x09\x6d\x41\xb4\x85\xff\xe6\xaf\x5f\x7f\xf1\x16\xff\x1f\xdf\x14\xdf\xdc\xac\x45\x2a\x47\x01\x4f\x83\x9c\x4b\x60\x5c\xf4\x47\xae\x81\xfe\xf6\xb7\xd6\xaf\x41\x05\x2a\x5f\x62\x9b\x57\x45\xa3\x84\xa6\x2c\xc6\x64\xb7\xab\x54\xe4\x89\xe2\xd6\xe6\x73\x49\xa3\xe8\xa5\x53\x95\xad\xb3\xaf\xa2\x73\x42\x81\x2f\x4c\x6f\xe6\x0c\xd3\x28\xb2\x24\x54\xb8\xa0\x1f\xf0\x3c\x20\x0b\xe6\x41\x72\xea\x6a\x23\x9e\x31\xfe\x5b\x36\x7e\xcf\x8e\xc8\xe8\x88\xdc\x02\x1c\x8e\xc7\xe4\x06\xae\x1c\xd1\x57\xce\xdb\xe9\x46\xa4\x8c\x24\x8a\x39\xcd\x32\xbe\x65\x64\x81\x9e\xc7\x3b\xa3\x19\xd1\x3a\x2b\xc2\xb2\x80\x26\x8c\x04\x6b\x9a\xd2\x40\xb2\x54\x4f\xfb\x02\x1d\x38\x9d\x97\xe1\x25\x50\xa9\x0d\x0d\xd9\x28\x4f\xf0\x58\x64\xaf\x0a\x74\x04\xe1\x2e\x1a\x75\xdc\xb3\x85\xe2\x7e\x99\x46\x1e\xf6\x8e\x87\x2c\x89\xc4\x6e\xc3\x62\x27\x3a\xd5\xdf\x27\xa9\x08\xcd\x21\x85\x7e\xd5\x9d\x02\x9c\x94\x8a\x58\xb2\x38\xb4\x8e\x3a\x0d\xee\xf4\x0f\x7f\x57\xcd\xcb\xfe\xc9\x6f\x7e\xe7\xbb\x01\x21\xdb\x9a\xee\x7f\x43\x6a\xb7\xc0\x85\xca\xda\x98\xa7\xaa\x2e\xa1\x2f\x57\x78\xe3\xfc\xea\xd9\x58\x43\x3d\x49\x23\x6a\xec\xcb\x20\x82\xbe\xb2\x07\x4d\x05\xb5\x66\xc9\x01\xdc\xaf\x21\x8c\xb2\x42\xf3\x2d\x87\x0e\x9d\x68\xda\x89\xa7\xd4\xbd\x13\x3a\xd3\xf4\x91\xfe\x4b\x09\x35\x63\x82\xee\x53\x40\x4d\x1e\x12\xc5\x51\xc9\x68\x67\xc9\x34\x2f\x21\x4b\xb6\xd3\x2f\xce\xc2\xa3\x31\x09\x52\xa6\xbd\xb6\x33\x7d\xbb\x45\x4a\x62\x1e\xbd\x3a\x32\x9e\xd7\x21\x5b\xd2\x3c\x92\x19\xc1\x65\x29\xd0\xa5\xa1\x47\xa6\x91\x82\xdc\x2b\x5c\x39\xd1\xb9\xcc\xd5\x24\x2e\xac\xb4\xe6\xc0\xb7\x1a\xfc\x59\xa4\x8c\x06\x87\x21\xe2\x0b\xde\xd4\xe3\x13\x9e\xe1\x1d\x1b\x91\x3f\x69\x56\x4e\x4d\xc8\x8c\xf4\xe7\x23\x4d\x22\x14\x63\x0c\x9a\xc7\xca\xc0\xce\x7b\xcc\xe3\x20\xca\x43\xa3\x9a\x0f\xa8\x62\x96\xa1\x83\xb2\x1b\x82\x44\x3a\x16\xc5\x92\xa0\xbb\x57\x6a\x26\x6e\x59\xcb\x9e\xdc\x85\x7b\x6e\x15\x88\x28\xc4\x54\x76\xef\x14\xee\xa0\x9d\x77\xe9\x47\x9d\x03\xba\x3a\x05\xc9\xd8\xb7\x4d\x88\x03\x7f\xd4\x62\xb1\x25\x9e\xa4\x8c\xaa\xdb\x14\xdc\x11\xba\xa2\x3c\x76\x1e\x59\x3c\x26\xa8\x4e\x8d\xee\xe9\x2e\x6b\x38\xcd\xa2\x9d\xf3\x88\xc4\x6c\xcb\xd2\xca\xa9\x73\x6a\x35\x7b\x66\xa3\x2f\xa1\x40\x18\x90\x8e\xc2\x22\x90\x88\x2c\xe3\x8b\xc8\x0c\x5c\x3a\x72\xa8\x0f\x6e\x12\x16\xb8\xc5\x6e\x5c\x88\xdf\xb5\xa5\x5d\xc0\xf7\xca\xce\x6e\x91\xbb\xf9\x2b\x50\x8e\xd0\x36\xd8\x65\x52\xa4\x74\xc5\xcc\x4f\x99\xa4\x32\x47\xc0\xa0\xde\x9a\x85\x97\x96\x46\xf1\x8e\xc7\xa1\xc2\x46\x06\xa4\x49\x94\xa7\x34\x2a\x7f\x09\x44\x8c\x26\xa4\xec\x84\xfc\xe9\xcf\xea\x17\xd5\x3f\x0b\x75\xf4\x97\xfe\x75\x1e\x8f\x46\xa3\xe2\x3f\x34\xe1\x26\x96\x8c\xd0\x84\xb3\x07\xc9\x62\x68\x3c\xbe\xfb\x26\x1b\x73\x71\xbc\x7d\x33\x8f\x71\xe0\xb3\x3c\x93\x62\x73\xcd\x50\x2d\x7e\xce\x40\x50\x04\xa4\x5d\x89\xd8\x52\xb4\xe6\x84\xa0\xdf\x5f\x8c\x0e\x74\x19\x93\xd9\x38\x48\xc3\x71\x92\x0a\x05\x8e\x00\xf0\xd0\x58\xa4\xab\x79\xac\x10\x1c\x7c\x07\x5c\xcb\x09\xf1\x34\xab\xea\x56\x71\x42\x6e\x5f\xbf\x88\x67\xf2\xf7\xce\xf7\x1f\x78\x26\xab\x90\x6b\xcc\x52\x6f\x0b\x8f\x57\x79\x44\xd3\x66\x03\x00\x6a\x20\xd4\xce\x9e\x45\x79\x26\x51\xaa\xdc\x1a\x00\xab\x3f\x46\x1a\x02\x0a\x70\xd0\x59\xb0\x66\x9b\x32\x98\x4d\x24\x2c\x3e\x9d\x4e\x7e\xf8\xf2\xa6\xfa\x7b\xed\xec\xd7\xe7\x5e\x75\x12\x06\x7b\x18\x4d\x17\x5c\xa6\x34\xdd\x91\xc9\x94\x64\xf9\x62\x64\xa6\x79\x7c\x36\x39\xbf\xae\x20\x1e\xd4\x63\xac\x15\xaa\x42\xee\x06\x64\x58\x10\xc0\x10\x17\x49\x81\xf1\x2a\xda\xf8\xb8\x21\x5b\x4e\x2d\x37\x10\x34\xf0\xe1\xa7\x76\xbf\x62\xd9\x9c\xa8\xb1\x12\x15\x4a\x1b\xfb\xae\x79\x34\xe9\xd6\x29\xac\x5e\xad\x6a\x00\xbe\x82\x9b\xb6\x86\xa2\x83\x30\x62\x03\x0d\x7e\x16\x6a\x58\x23\x3a\x00\xe4\xa6\x29\x13\x75\x69\xcb\x14\x08\x63\x7d\x41\xc7\xc0\xb7\xb0\x34\x33\x92\x6d\x20\xe2\x2d\x4b\x25\x49\x59\x20\x56\x31\xff\x6b\xd1\x79\x66\xec\xb3\x50\x1b\xa3\xc1\xeb\xf1\x58\xb2\x54\x71\x38\x80\x99\x8e\x00\x11\x6f\xe8\x8e\xa4\x4c\x0d\x43\xf2\xd8\xea\xd0\x78\x87\x7c\x54\x9c\x2d\x8f\x97\xe2\x04\x52\xa3\x64\x27\xc7\xc7\x2b\x2e\xcd\x05\x0c\xc4\x66\x93\xc7\x5c\xee\x8e\xc1\x6a\xc4\x17\xb9\xda\x92\xe3\x90\x6d\x59\x74\x9c\xf1\xd5\x88\xa6\xc1\x9a\x4b\x16\xc8\x3c\x65\xc7\x34\xe1\x23\x98\x7b\x0c\x88\x60\xbc\x09\x5f\xa4\xfa\xc6\x66\x87\x2e\xb4\xd5\xc4\x76\x70\xb9\xda\xb6\x41\xdd\x2e\x1d\x4f\x88\xac\x3b\xf2\x1e\x05\xb4\x0d\xfd\xbd\xbe\xb8\x99\x11\x33\xba\x33\xf6\x12\x81\x5f\x7e\x99\x95\xfb\xa0\x80\xc6\xe3\xa5\x61\xb2\x40\x3d\x6d\xeb\x24\x90\xc2\x47\xdc\xc1\x6f\x67\xf9\x62\xc3\x65\x66\xe5\xd4\x10\x63\x72\x06\xc1\x99\x8a\x72\xe5\x49\x48\x25\x0b\xc7\x64\x12\x93\x33\xba\x61\xd1\x19\xcd\xd8\xb3\xef\x02\x70\x9a\x23\x05\xdb\xbe\xfb\xe0\x89\x83\xf5\x29\x78\x0b\x44\xea\xd9\xb6\xfa\x45\x55\x64\xb2\x1a\x8e\x61\xa2\x77\xca\x78\x59\x4a\xfc\x9e\xd4\x66\x63\x6b\x94\xb4\xc5\x56\xe6\xf1\x2e\x6e\x94\xd1\x31\x0e\x50\x93\x29\x31\x28\x0d\x31\xd8\x82\x45\x42\x9d\x2d\xa1\xd5\x46\xcc\x65\x2a\xf2\x33\x17\x03\x79\x7f\x32\xf2\xbe\x16\x59\x69\xcf\x7f\x06\xd2\x6e\x7b\xe5\xd7\xc9\xba\xfd\xae\x49\xd2\x2b\x33\xab\x93\x73\xfb\xe5\x73\x92\xf2\x81\xcc\x0d\x64\xce\xde\x82\x81\xcc\xfd\x6c\x64\xce\xc6\x0e\xfd\x48\x5c\x13\xd7\x94\xcf\xfe\x44\x8e\x3d\x24\x10\x3a\x36\x99\xf6\xd1\x2b\xa9\x9d\xd6\x1f\x54\x23\x54\x5e\x4e\xa6\xdb\xaf\xe0\x5a\x4d\xa6\xdb\xb7\xaf\x8c\x84\x6b\x8e\x85\x53\x7c\x9d\xa0\xba\x7c\xa2\xee\xe6\x92\x06\x0c\xac\x62\xf3\xf9\x41\xcd\x00\x51\xe8\x81\x40\xa2\x8f\x84\xb8\x33\x8a\x38\x6e\xbe\x74\xea\x5f\x8d\x5b\x8d\x15\x39\x33\x99\x56\x1c\x37\xb0\x22\x1c\x98\xc6\xb4\x86\x01\x90\x08\x95\x63\x70\x84\x74\x12\xe5\xf9\x5c\x82\x5a\x22\xcf\x1a\x1e\x95\xb5\xf0\x50\x08\xda\x29\x8a\xea\x89\x54\x2b\xd1\x5c\x9d\xd6\x0b\xcc\xcd\xe7\xaa\x3f\x5d\x59\xae\x58\xbf\x46\x7e\x59\x75\x54\x1e\xbb\x83\x4f\x0b\xb9\xcb\xde\xa7\x31\x44\x8b\x29\xb2\x52\xf1\x70\x43\xcf\xc4\x8b\xf2\x28\xa0\xd2\xc1\xd5\x2d\xcf\x50\xc3\x89\xe9\x49\xa8\x24\x49\x9e\x26\x42\xdd\xd4\x97\x93\xa5\xce\xf2\xb7\x66\xe5\xd6\xa8\x71\x8c\xcf\x4c\x7b\x8a\x08\xa3\xed\x13\x0c\xb7\x3f\x62\x34\x8d\x8b\x6d\xd3\x3b\x58\xf6\xab\x26\x90\x67\xa0\x91\xf6\x7a\x6b\xcf\xe7\xd2\x6c\xc7\xd8\xa9\x4f\x7e\x72\xe6\x8b\x94\x33\x54\xc7\xb9\xfb\x4a\x5d\x60\x46\x35\x75\xee\xff\x17\x2a\xd3\xb5\xa5\x03\x80\x56\x8d\x52\xff\xc0\xe3\xfc\xa1\xfd\xd4\x17\xb6\xde\xe2\x40\x7f\x0b\x47\x6f\x93\xc8\xdd\x98\x94\xc3\xd8\xe6\x61\xb4\x95\xf2\xac\x15\xb3\xa8\x67\x25\xb6\x2c\x8d\xd1\xca\x52\x38\xee\x88\x23\xed\x37\xaa\xa6\x9d\x8a\x7c\x85\x1e\x05\x46\x69\xaa\x39\xe2\x52\xbc\x76\x2a\x99\x71\x73\xe1\x5c\xaa\x86\x45\xea\x0e\x35\xd5\x4b\x11\x22\x5a\x80\x33\xf9\x2d\x61\x6a\xfd\x78\xb1\x43\x75\x48\xb6\x78\x11\xdd\x51\xcb\x65\x90\xe8\x16\x2a\x40\xee\x4a\xf0\x1d\x11\x5b\xfd\x2a\x32\xf4\x7f\x3d\x96\x02\x7c\x2a\xd5\x5c\x8c\x86\xc2\x6d\xd4\x8f\x44\x40\xa3\x22\x18\x52\xab\x2c\x27\x4b\x52\xc1\x67\x06\x97\x59\xfb\xdb\x0b\xd4\x70\x91\x0c\xbc\x2b\x4e\x52\xb0\x7c\xc0\x27\x6a\xed\x9a\xd7\x02\xc8\x59\xe0\x77\x22\x19\x73\x8c\xca\x3b\x54\xc0\xba\x32\x67\x38\x82\x23\x72\xaf\xd0\x5c\x15\x39\xbb\xf1\x01\xea\x4f\x47\x95\xed\x77\x0c\x56\xc4\xaf\x94\xaa\x58\x75\xb3\x9d\x9d\xc6\x36\x32\x82\xac\x8a\x29\xb8\x28\x1c\x39\x66\x55\x4c\xe1\x88\x50\xc0\x1a\x4d\xf6\x8f\x68\x0b\xb2\x4d\xbb\x8a\x0a\x8f\x65\xce\x19\x74\xc1\x57\x42\x47\x8a\xd9\x98\xf4\x28\x19\x79\x99\xe5\x6e\x0c\x43\x33\xf2\xcf\x7f\xfc\x37\x93\xeb\xd7\xff\xfc\xc7\xff\xbc\xd2\xde\xe3\x60\xd8\x63\x21\x51\xb3\xfe\x96\x70\x49\x78\x16\x1f\xca\x52\x0b\xdc\x4d\xc7\x09\x5e\xe5\x24\x15\x8a\x77\xb1\x0e\x00\x42\xd8\xc2\x09\xd5\x53\x58\xce\xd9\x49\x71\x8d\x8b\xff\x09\xae\x14\x22\x6a\x80\xf7\xc1\xa8\x1b\xb4\x0b\x29\x7e\x6b\x93\x44\x6c\xa3\x4e\x1a\x22\xfa\x12\x6d\xd8\x93\xce\xbe\x75\xef\x1d\x97\x9c\x46\xd1\x8e\xfc\x3f\x0a\xc2\x49\xca\x46\xe0\x8f\x52\x58\x59\xa6\x6a\x8b\x98\xce\x7c\x59\x20\xfd\x20\xdf\xf8\x24\x02\xf5\x98\xea\x9b\xc8\xde\xeb\x2a\x9f\x22\x76\xaa\xeb\xdb\x50\x77\xec\x4e\x7b\xd4\x90\xe9\x55\x3b\xed\xeb\x09\xce\x40\xcb\x9d\x21\xf7\x7a\xc6\xd0\x80\x2b\x19\x39\x76\x02\xbb\x6d\x12\xbe\x18\xb3\x9a\x35\x41\x91\xfa\x0a\x37\x68\xe8\xf5\x61\xa6\x6f\xae\x0e\x7f\x32\x69\x30\x9d\x9e\xa0\x0b\x56\x16\xa1\x05\xd7\xa5\x82\xd9\xd0\x1b\x8e\x06\x97\x7d\x68\x63\xa7\x7f\x71\xec\x26\x7d\xdd\x90\x29\xe1\xd3\xf1\x79\x6b\x6c\xd3\xaf\x29\xbd\xcd\x73\x65\x33\xe9\x70\xb8\x8c\x3d\xe8\x7a\x04\xc0\xf5\xbc\x69\xc9\x57\xf4\x68\x37\xcd\x44\x97\x47\xee\x3a\xee\xa7\x65\x1c\x21\x5e\x38\x0e\x54\x6e\xd9\x28\xb4\xac\x27\xe1\xcf\x02\x57\xfa\x16\x2b\x42\x5b\x48\x20\xba\x22\xb2\xee\xa4\xf4\x74\x34\x02\x01\xba\xf0\xf9\x3a\x45\xe7\xdc\x24\x61\x34\x2d\x9c\xe7\xc0\xf7\x9b\x14\xf3\x2a\xed\xcb\xa6\x67\xe3\x04\xc9\x6a\x05\xa5\x5b\x45\x80\xc4\x97\xbe\x62\x50\x14\xfe\x0c\x8a\x42\x9e\xd0\xcd\x22\x12\xc1\xdd\x73\x68\x09\x27\xd3\xd3\x8f\xef\x54\xe7\x75\x15\x61\xf1\xa2\xa9\x1f\x2c\x27\x54\x57\x0e\x16\x6f\x06\xcd\xe0\xa0\x19\x1c\x34\x83\xff\x76\x9a\xc1\x02\x29\xf4\x52\x0b\xc6\x75\xec\x52\x3e\xfb\x2b\x05\x95\xb4\xa1\x60\xe7\xa0\x36\x6d\xb4\x86\x46\x4a\x1a\xf1\xe5\x93\xed\xa2\x5f\x2d\xec\xd6\x0b\x32\xbb\x3a\xbf\x3a\xc1\xbc\x04\x71\x1e\x45\x74\x81\x34\x7c\x43\xe3\x1c\x64\x0d\x1a\x86\x40\xca\xc7\xe4\x47\x66\x50\x02\x9e\x1b\x52\x04\x2f\xa6\xa3\x15\x73\x0a\x17\x2f\x14\x8a\x58\xd3\x38\x8c\x18\xf9\xd3\x9f\xff\x97\x3a\xac\x08\x9c\x68\xa7\x23\x8c\x9d\xd2\x94\x99\x88\x8f\x49\x6b\xe1\x8a\xa8\xc4\x23\xe9\xe4\x8b\x3e\x83\xf1\xc6\x45\xdc\x72\x37\x5b\x48\x7a\x71\xdf\x19\x53\x04\x99\xa6\xae\xdd\xd7\xb3\xdf\x2f\x1f\x70\x1f\x36\xb9\x2b\xbe\xe8\xd1\xfc\x67\xc0\x43\x97\x0f\x68\xdb\x9c\x42\x16\x31\xe9\xe4\xac\xdb\x43\x1e\x20\x1a\xee\xb4\xeb\xea\x78\xbe\xce\x63\x7d\x7b\x9c\x03\x3f\xfa\xee\x78\x21\xe3\x91\x1f\x46\xf6\x25\x6e\xbc\x2a\x4e\x6d\xfd\x8d\x82\x72\xfd\xb7\x2a\x3c\xea\x6f\xad\xf5\x0e\x5c\x69\x1f\xae\x34\x10\xf1\x92\xaf\x9e\x8b\x2d\x3d\x83\xde\x5d\x7c\x29\xbe\x71\x33\xa6\x7a\x4e\x2e\xce\x34\x28\x3a\x1c\x58\xd3\x81\x35\xf5\x6e\xc3\xc0\x9a\xfe\xab\xb2\xa6\x88\x17\xf6\xe0\x4d\x6d\x14\x53\x3e\x8f\x60\x4e\x73\x29\x4e\x35\xed\x00\x7e\xd7\x45\x18\x5b\x69\xed\x86\x3e\xe0\x87\x53\x96\x7e\x2f\x32\x97\xae\xb1\x96\x70\xbd\xda\x1e\x9c\xdb\x63\x11\x8f\xfe\xca\x52\x71\x64\xd2\xa2\x6d\xe8\x83\x8e\xdc\x54\xe8\xc0\x96\xd9\x6b\x53\x83\x44\x43\x34\x86\x68\x44\x45\x1d\x21\x2c\x9e\xd1\x60\x0d\x66\x1c\xaf\x2e\xd9\x43\xe3\x3f\x87\xed\xf0\x33\x01\x0d\x18\xef\x43\xdd\x07\x12\xee\x26\xe1\xc8\x9d\x3f\x17\x09\xff\x1e\x7a\x77\x91\x70\x7c\xe3\x26\xe1\x7a\x4e\x2e\x12\xbe\x2e\x3a\x1c\x48\xf8\x40\xc2\xbd\xdb\x30\x90\xf0\x7f\x55\x12\x8e\x78\x61\x0f\x12\x6e\xa3\x98\xf2\xd9\x9f\x84\x03\x71\x74\x90\xaa\xde\x8a\x85\x5e\x52\xaf\x5b\x5b\xf0\x48\xe9\x1e\x91\xe1\xe4\x7c\x2f\x5d\x82\x97\xbe\x2e\x9a\x7a\xba\x51\x31\xc4\x40\x4c\xbb\x89\x69\x22\x44\xf4\x3c\x84\x74\x2a\x8c\x05\xd4\x26\xa2\xea\x57\x17\x01\x85\x79\x34\x89\x67\xa2\x3b\x19\x08\xe7\x40\x38\xbd\xdb\x30\x10\xce\x7f\x4d\xc2\xa9\x70\x41\x6f\xa2\xa9\x1a\x3f\x96\x42\xde\xf0\xbf\xf6\x72\x56\x82\xc6\x24\xe3\x7f\x05\x49\x32\xcf\xd0\xc3\xac\xf4\xfb\x25\x34\xcb\xf8\x2a\xde\xa8\x93\xe1\x4d\x5b\xa8\x73\x03\x88\x68\x4c\xce\x4d\xc0\xbd\x14\xe4\x8b\xb7\xba\x33\xed\xde\xfd\xe6\xcd\x17\xe6\x87\xb7\xfb\x8a\xaa\x1e\x5d\x7c\x63\x3d\x6a\x16\xe4\x6c\x72\x7e\xbd\xa7\x5f\x55\xc8\x33\xba\x88\x9c\xb4\xbd\x32\x06\x38\x70\x9b\xc6\x20\xbe\xa7\x79\xe9\x66\xad\x18\x1d\xf4\x35\x57\x07\x1d\x41\x57\x7a\x50\xbb\x40\xa7\x2f\x95\x81\xdf\x9e\x9c\x05\x4f\xb8\xab\x54\x6e\x15\x57\x9c\xab\xab\x8d\xd6\x01\x7d\x91\x4d\xb5\x59\xf0\x14\x2d\x5c\xb2\x4f\xa7\x93\xed\x1b\x08\x90\xbf\xa7\x69\xe8\x9c\x2d\xe4\x1b\x92\x7c\xc1\x23\x2e\x77\x0a\x51\x48\x8d\x69\xec\x5e\x61\xe9\x98\x16\xe5\xa8\xfa\xca\x09\x00\xf4\x43\x47\x8c\x8d\xc5\xc0\xa3\x9d\xab\x9c\x75\x87\x01\x8b\xc5\xbe\xfd\x73\xef\xa1\x6e\x5f\x6e\xa1\x82\x25\x91\x79\x1c\xb3\x48\xad\xc9\x24\xee\xca\x3d\x4e\x37\x04\xdd\x2c\x43\x16\xf1\x2d\x4b\xcb\xec\xb1\xea\xa7\x22\xb3\xba\x55\x74\xc8\xbf\xc3\xa4\x6b\x97\x09\xa4\x84\xf1\xd6\x5c\x6c\xdc\x81\xc9\x74\x32\x85\x0f\x74\x81\x62\xa3\x31\x32\x79\x86\x0e\x30\xb5\x81\xa9\x94\x00\x25\x56\x46\x58\x13\x64\x7e\x30\x26\xe4\xd4\xb7\xde\x8d\x2e\x82\x6c\xf5\xa0\x53\x25\x64\x88\x3b\x60\xe4\x12\x86\x6a\x6f\x53\x91\xe3\x19\xf1\x96\xb9\xb2\xe0\x55\x0d\x0c\x69\xc0\x8e\x90\x53\x6b\x0e\xd5\x79\xfb\x7a\x87\x09\x9a\x83\x5e\x9f\xe0\xbd\xc9\x12\x61\xcf\x01\xdd\x33\xd5\xed\xf0\xf5\x49\xcb\xfc\xce\xba\x96\x8a\xe1\x48\x4c\x1a\x4a\xd5\x79\x6c\x76\xa0\xf4\x68\x6f\xcd\x8b\xff\x12\x34\x83\x65\x12\xbe\xf0\x95\x9a\x45\x09\xeb\xd6\xa3\xd3\xee\xc1\xe5\x16\x67\xd4\x89\xff\xd8\xc3\xa9\xf5\xcc\xd0\x2a\x34\xcc\xe4\x69\x49\xa7\x1c\x1b\xde\x7e\xd4\x27\xb5\x35\x1e\x99\x04\x96\x58\xb2\x53\x03\x0a\xd3\xe0\xcc\x0f\x2e\xd9\x16\x32\x06\x62\x11\xc9\xea\x60\xae\xde\x55\x0f\x1a\x37\xbb\xb2\xa6\xb7\x7a\xf7\x52\x39\x12\xb9\x5c\x09\x1e\xaf\xfe\x53\x50\x6a\x2b\xd6\x89\xa9\xbc\xea\x09\x0f\xcc\xe6\x63\x01\xb0\xc4\xaa\x06\x2f\x42\xd2\x1c\x2b\x2f\x34\x69\x8d\x8f\xd0\xdc\x91\x62\x42\x6d\x04\xd0\xc0\xae\x22\x97\x19\x0f\x59\x21\x6d\x40\x23\x75\xe3\x5d\x9d\x42\xc2\xfa\xec\x2f\x39\x4b\x69\xe8\x4c\x81\xda\x0e\x0e\x11\xf6\x4e\x17\x7a\xaa\xb6\x2a\x33\x1c\x9c\xce\x3f\xa1\x8e\x8b\x76\xdf\x2f\x3c\xf0\x01\xd5\x2c\x76\x98\x6e\xc2\x35\xe7\x22\x63\xec\x7e\x87\x79\xfb\x10\xd1\xf8\x33\xaf\xf6\x0f\x7f\xf8\x70\x7a\xf9\xb3\xdd\x6d\x18\xcd\xc9\x5b\x16\x13\x78\xf4\xe5\xf6\xaa\x52\x9a\xae\x07\x83\xc6\xa4\xa9\x31\xb9\xcb\x17\xac\x74\x84\xca\x2a\x27\xe5\x39\xf4\x28\xbf\xcf\x17\xec\xac\x1c\xef\xcc\x1e\xaf\xae\x5d\x69\x6b\xdb\xd4\xb9\xb4\xae\xa4\xae\x89\x69\x6b\x3c\xe8\x67\x06\xfd\xcc\xa0\x9f\xf9\xb7\xd3\xcf\xb4\x61\x93\xa6\xd6\xa6\x92\x90\xad\x0e\xe0\xdf\x17\x51\x39\x96\x13\x69\x8d\xcc\xf6\x57\xe9\x58\x5d\xf4\xa1\xe8\x66\x34\x94\x71\x31\x45\x9e\x19\x59\x27\x77\xdc\xf2\x30\xa7\x91\x35\x4d\x1f\x1b\xa6\xfb\xda\x5b\x1e\x2f\xa2\x67\xfb\x48\xad\x45\x7e\x75\xdf\x94\x4d\x54\x33\x36\x2a\xe7\xe5\x4d\x64\x7f\xa1\xc5\xfb\xc5\xce\xf0\x1d\x47\xa6\xc8\x56\xcc\x91\x91\x44\x5e\xc2\xd3\x43\x8f\x3a\x18\x0a\x4d\xc5\x01\x8f\x58\x3a\x65\x29\x17\x7e\xbf\xd9\x3a\x72\xb8\xae\x7d\x68\xbc\x40\x12\xfc\x4b\x0a\xf5\xaf\xa5\x48\x37\xc5\x10\xdc\x1b\xdc\x68\x1e\x48\xeb\x6a\xc5\x18\xaa\x5b\x01\x2c\xc3\x98\xfc\x49\xeb\xe4\x4e\xc8\xd7\x9b\x3f\x3b\xa4\x00\xf3\x74\xfb\xda\x76\x79\xda\x7a\x22\x24\x1b\x10\xb8\x54\x6c\x6f\xdb\x4e\xab\xf7\xbf\x8e\x4d\x5e\x5b\x41\xab\x7d\x37\xd8\x0e\x74\x35\xcb\x80\xcc\xdf\x81\x51\x0b\x00\x85\x84\xc0\x6b\xab\x26\x4e\xcb\xee\x9e\x1b\x85\xe3\x63\x57\xda\x73\xb5\x44\xfb\x48\x9d\xa5\x8c\x7a\x92\x58\x78\xd6\x7c\x78\x5a\x7c\x56\xee\x6c\x2e\xc5\x86\x4a\x1e\x94\x89\x5a\x45\x67\xdd\x8b\x2a\x54\x40\xea\x50\x82\xc2\x4e\xab\x53\xca\xc3\x6c\x60\xd2\x76\xa4\x49\xef\x52\x16\x7d\x0a\x59\xfc\xe7\x5d\x78\x02\xa7\x16\xd2\x60\xb7\x1d\x9a\xea\x6a\x6f\x8a\x4f\xca\xc3\x5f\x64\x11\x16\x24\x10\xc9\xae\x83\xee\x98\x07\xf0\x40\x99\xc5\xd1\x0a\x9f\xce\xec\x55\x6a\x34\xf0\xbc\xb8\x0d\x63\x2b\xfb\x60\x37\x9d\x88\xa5\x05\xbf\xe9\xe8\xe9\x5f\x07\x86\xfb\xcf\x3b\xd5\x5d\x5b\x5d\xcd\x06\xde\x67\xcb\xab\x99\xc0\xdb\xb6\xbe\xa3\xa0\x90\x29\x23\x64\x1d\x8d\xe1\x0c\xfc\x12\x67\xc0\x64\xc5\xe8\xa0\xfd\x55\x35\x68\xed\x9b\xb6\x73\xd0\x55\x08\x9f\xd5\xf8\x87\xe1\x24\xfc\x32\x27\xa1\xed\x2d\x93\x41\xf8\xc3\x97\x67\x62\x93\x60\x8d\x2a\x2f\xc4\xaa\x90\xba\x70\x7e\x56\x83\xd7\x82\xc9\x7b\xc6\x62\x18\x63\xfb\xa5\xd7\x70\x00\x1d\x14\x52\x3c\x98\x0f\x14\xa8\x5f\xdb\x67\xc1\x82\xd5\x9b\xd7\x4e\x60\xb5\x01\x69\xcd\x68\x24\xd7\x67\x6b\xe6\x76\x96\xaf\x2e\xed\x7b\xab\x71\x71\xfa\x45\x6a\xa6\x92\x15\x95\x2b\x14\x5b\x87\x3d\x3b\x97\x86\x1d\xf4\xa2\xf0\x6d\x73\x8f\xc4\xea\x46\x31\x8f\x5c\xee\x6e\x82\x94\xb1\xba\xea\xac\xb9\x80\x0f\xf5\x2f\xcc\xb6\x44\x62\x45\x32\xfd\x86\xd0\x85\xd8\x32\x9d\x3a\x25\x12\x2b\x27\x0f\x03\xe9\x7c\x58\x5c\x58\x06\x33\x19\x8a\x5c\xda\x9b\x31\x89\x97\x62\xdf\x15\x25\xa9\xd8\x28\x4e\x2a\xcf\x3e\x32\x99\xf2\x20\x9b\xba\xf3\x9d\x54\x57\x35\x75\x7d\x65\x56\x36\x3b\x9b\x5a\x25\xbe\x75\x29\x6b\xdd\xdc\xb5\xb0\x0d\x76\x81\x2a\xf0\xb4\x28\x8f\xc4\x63\x2c\x8c\xd4\x71\x02\x7f\xfb\xfa\xb7\x5f\xf9\x17\xed\x74\xfe\xf0\xab\xef\x7d\xea\x09\xaf\xfe\xa7\x54\xca\x7b\x40\xd5\xaa\x01\x82\xaf\x2d\x4d\x9c\xde\x57\xf5\xab\x43\x71\x0a\xca\xb7\x8a\xba\x87\x4c\xe4\x21\xa4\xc0\x5b\xe6\x11\x5a\x82\xc2\x0d\x28\x93\xa0\x20\x19\xc4\x25\x43\xf1\x0f\x2c\x14\x4b\x03\x99\xd3\x86\x51\x08\x7b\xc4\xbd\xba\xa7\x45\x26\x12\x93\xc8\x47\x5b\xfa\x37\x22\xc4\x4a\x1a\x0b\xc5\x87\x6e\x79\x2a\xc0\x83\x87\x6c\x69\xca\xe1\x22\x36\xe6\x8b\x66\xf0\xbb\x7c\xc1\x46\xb6\xbe\x2a\x49\x45\xc0\xb2\xba\x70\xda\x96\x13\xb2\x1c\xed\x07\xea\xd4\x56\xed\xe9\xa8\xeb\x43\xdd\x95\x6d\xbb\xa8\x8e\x5a\x4f\x7d\xe4\x00\x80\xc7\xba\xef\x04\x02\x00\x9b\xc7\xcb\x28\xc7\x44\x48\x58\xbb\x1d\xaa\x44\xe2\x01\xf1\x5a\xa3\xdc\x74\x23\xb5\xbf\xed\xba\xbc\x95\x81\x6a\x0b\x83\x7a\xc0\x7c\xcb\x2a\xa7\x82\x67\x66\x00\xd7\x02\xb9\x6f\xa3\x45\x78\xa4\x93\xce\x6c\x58\xba\x32\xfa\xe9\xd3\xe9\xa4\x54\x4f\x2b\x72\xec\x44\x75\xb1\xe7\x94\x39\xe0\xd2\xc1\x82\xb4\x2b\x3a\x1b\xc0\x79\x4a\x65\x27\xe9\x52\x78\xf6\x98\x3e\xe9\xa1\xf8\x6c\x2c\x62\x3f\xe5\x67\x1b\xbf\xf4\x94\xbc\x62\xcf\xd5\x92\xfd\x78\xc6\xc6\xe2\xfb\xf3\x8d\x5d\x8a\xa3\x2a\x5b\xd9\x8b\x77\xec\xea\xb2\x9d\xb5\x24\x4f\xaa\x5c\x6a\xd1\x9d\x92\xe7\xd2\x9f\x92\x27\xd0\x30\x90\xfe\xe7\xa4\xa7\x2e\xb5\xb1\xdc\x3d\xf4\xa9\x5d\x3b\x6a\x15\x78\x7b\x12\x9d\xea\x1e\xab\x27\xfb\xe8\x56\x1b\x30\xe8\xa7\x5f\xed\xee\x14\x58\x93\x27\xd7\xb1\x92\x3d\x4a\x06\xf7\xbb\x0e\x64\xc0\x2b\x7d\x80\xd9\x4b\x3d\xdb\x04\xce\xd3\xa9\x68\xc9\x93\xaa\x69\xfb\x2f\xbd\xcf\x19\x6a\x55\xd9\x36\x80\xf2\x94\x6a\x5b\xf2\xf3\x22\xd6\xe1\xa2\x3c\xc1\x69\xe9\xa5\xf5\x25\xcf\xa6\xf9\x25\xcf\xa4\xfd\x25\xc3\x31\xfa\x59\x8f\x51\x4f\xc5\x31\x79\x4e\xe5\x31\x79\x2e\x05\x32\x19\x0e\xd3\xcf\x78\x98\xba\x5a\xf4\xd6\x3f\x93\xe7\xd2\x41\x93\xa7\xd5\x43\xf7\x01\x5e\x87\x3e\xba\xb9\xd4\x27\xd2\x49\x93\x3d\xf5\xd2\x7d\xd6\xd2\x47\x3f\xdd\x5c\xd0\xde\x3a\x6a\xdf\x72\x22\xb1\xca\x3e\x43\x4f\xdd\x67\x85\x7d\xf5\xd5\xcd\x55\x3e\xa9\xce\x9a\x7c\xae\xde\xda\xd7\xa9\x4f\x9d\x4d\xba\x13\x0d\xb4\x64\xe1\x6e\x51\x6d\x93\x56\xbc\x30\xb8\xaf\x37\xdd\xd7\x75\xa0\x09\x30\xef\xfc\x59\x32\xe8\xe8\xc2\x81\x28\x40\xe0\x8b\xd2\x43\xbd\xf2\xb2\xe9\x92\x5e\x9b\x9d\xde\x8c\xc2\x09\xdd\x7e\x0d\x5d\x6b\xaf\xf3\x42\x67\x08\x3c\xc0\xe0\x78\x3e\x38\x9e\x0f\x8e\xe7\xff\x5a\x8e\xe7\x6d\x36\x34\x28\xf6\xd5\x27\xda\x1d\x0a\x0f\xa8\xe3\x8f\xe5\xba\x58\xa5\x0c\x3a\x56\x2d\x50\x7f\x14\x66\x23\xa7\xf5\xc6\x7c\x8d\xa1\x7a\xf5\x52\x64\x50\xe7\x8c\x04\x22\x4d\x59\x96\x28\xb4\x1e\xaf\x88\x66\xf7\x4c\xc1\xa8\xbd\x0a\x0e\xd4\x6a\x58\x9d\x92\x6b\x35\x41\x16\x07\x34\xc9\x72\xb8\xb7\xe5\x8c\x5c\x53\xf1\xe8\x38\x71\x4a\x63\x42\xde\x09\xb9\xae\xd5\x4c\x68\xd4\x48\x53\x1d\xd5\x6b\x43\x78\xf8\x86\xa2\xfe\x89\xae\xd1\x30\x22\x19\x4b\x68\xaa\x0e\x29\x11\xb9\x24\x54\x4d\xd7\x94\x9f\xc0\x26\x8a\x8f\x84\x0a\xf5\xdc\x5f\x16\x9f\xc0\x1c\xf4\x7e\xd9\x80\xe7\xf1\x0a\xab\x41\x61\xc9\x09\xa8\x55\xb3\x65\x75\x48\xac\xa9\xaf\x57\x12\xb3\x15\x4c\x4e\x23\xde\x23\x92\xa4\x6c\xc9\x1f\x58\x88\xc2\xcf\x3f\xff\xf1\x3f\x97\x42\xfe\xf3\x1f\xff\x33\x26\xa7\x51\xa4\x93\x0f\xda\x7d\xbb\xfb\xd5\xa1\xd8\x14\x8f\x53\x51\xff\x88\x4a\x9e\x81\x9d\x19\xe3\x1a\xf5\x42\xa4\xc0\x3e\xc7\xe4\x14\x48\x59\x33\xed\x93\x86\x2d\x1c\x4d\x1a\x9b\xe3\xa9\x95\x6c\x7a\xc9\x0a\x40\xb0\x18\xf5\x87\x5e\x0d\x16\x35\xf3\xd6\x6c\x43\xa8\x02\xec\xdd\x53\x54\x03\xc0\xa8\xc5\x14\xdd\x81\xe3\x9d\x32\x2e\x1e\x37\x2f\x5b\xd8\x2d\x01\x5a\x61\xac\xde\x5e\x2a\x57\xe5\xdc\x8a\x50\xaf\x58\x81\x6b\x47\x03\x38\x62\xb8\x96\x2d\xa2\x67\x25\x8c\x96\x28\x4c\x28\x5d\xb7\xb8\x27\x30\x88\x6d\xf5\x6c\x89\x91\xf5\xac\x6c\x7e\x70\x59\xff\x18\x28\x58\x4c\x44\x82\x8e\x02\x3a\xda\xd9\x57\x60\xa5\x7c\x2a\x95\xe3\x75\x57\xec\x41\x11\xb0\x0c\xb0\x03\x94\xae\xaa\x94\x44\x33\x01\xfb\x5d\x5a\x6e\xa0\x71\x2f\xd5\x11\x62\xe9\x06\x3f\x20\x54\xbe\xb2\xac\x28\x45\xb6\x02\x53\xb2\xc5\x9f\x37\xa2\x06\xb2\xac\x48\x36\x01\x7b\xa9\xc8\x1f\x44\x54\xc3\x41\x6e\xc0\xa6\xbd\x53\x75\x01\x0a\x28\x2a\xd9\x0e\x99\xb1\xd0\x78\x78\x64\x74\x83\x57\x40\x07\xe7\x42\xbc\x7a\x1f\x7d\x92\x65\x3b\xd3\x67\x2c\x2d\xe6\x4b\x16\x3b\x9c\x6c\x51\x46\xbf\x58\x51\x3f\x50\xe8\x92\x7d\x6a\x5e\x88\xfd\xde\x8b\xb4\xca\x39\x2b\x6e\x4d\x57\x8b\xdb\x13\x22\x7c\x93\x44\xbc\xac\x55\xc8\x88\x7d\xc8\x22\xbe\xe1\x3a\x22\x19\x67\xaa\xc8\x9b\x82\x49\x7b\x9f\x45\xcd\xb4\x12\x26\xdc\x82\x6f\x19\xa9\x44\xf1\x8e\x56\x96\xd2\x61\x4e\xf4\x2c\xff\x70\x05\x45\xcd\x5f\xbe\x3a\x6c\x02\xc0\xac\xb1\x43\x2d\xb5\x17\x00\x1a\x45\xd4\xdb\x3b\x17\x69\xc5\x4c\x5b\xee\x62\xa5\x9b\xfa\x5e\xb6\xf7\xe9\x5d\x67\x75\x15\xe8\x02\x05\xbc\xff\xbe\x07\x99\x42\x0e\x11\x28\x4a\x59\xde\x46\x0f\x4d\x28\xc0\xd8\x4b\xbb\xe7\x29\x00\x5f\x3e\x55\x83\x3e\x93\x99\x1f\xe7\x29\x3e\x1d\x52\xe6\x66\xbe\xfa\x8c\xe5\x63\xa8\x1b\x6c\x61\x59\xce\xca\x8d\xf2\x0a\xac\xd6\x71\x70\xaa\x28\xaf\x92\xa3\x05\x2a\xd5\x16\x45\x72\x57\x7c\xcb\x62\x9d\x12\xa5\x3d\xa2\xc9\xcf\x20\x5a\xe3\xf6\x34\x82\xb6\x94\x70\x28\x9f\x58\xc8\xcb\xfd\xf6\x04\x3f\x30\x2a\xa7\x1a\x5f\x65\x56\xac\x9a\x74\x50\x0e\xb5\x8f\xbf\x3a\x58\x4c\x3d\x75\x04\xcb\xa7\x0e\x0c\x2c\x2a\xd8\x0e\x0d\x68\xd3\x07\x1c\xe4\x86\x2b\x9e\x5a\x14\xa5\x24\x4d\x01\xb9\x8c\xac\xe9\x96\x99\xea\x84\x7c\x09\xa7\x2b\xe9\xee\x16\xd4\x98\x26\xf1\x04\xe1\xd2\xa8\xd7\x32\xa3\x1d\x84\xde\x35\xb3\xa4\x71\xb5\x92\x3c\x3a\xa0\x2e\x90\x86\x49\x4c\x59\x31\x3b\x9b\x9a\xa4\x49\x9f\xce\xa7\xde\x8c\x3c\xf8\xf4\xd9\xd5\xf6\x62\x82\xf8\xf4\x2c\x29\x58\x6d\xdc\xc7\x0d\xa3\x4f\x79\x41\x7c\x1e\x53\x64\xd0\x3c\x7d\x0f\xe4\xfe\x7c\xe3\x65\xf9\x51\xc7\xb1\xec\xc7\x28\xe8\x93\x49\x6e\x98\x45\x5c\x10\x0b\x2b\xd9\x21\xcb\x17\x32\x62\x8a\x0d\x46\x49\x4a\x8f\xd5\xde\x67\xc1\x10\xb5\x1e\x95\x7e\x7b\xe6\x2b\xfd\xe9\x01\xcf\xfc\xa0\xb8\xb1\x5d\x64\xa5\x8b\x6f\x60\x7d\xc8\xca\x1a\x44\x61\xad\x50\x7a\x69\xc9\x17\xaf\x3a\x8e\x61\xa1\xc7\x47\x6e\xd2\x2e\xf2\x9b\x31\x92\xd2\x78\xc5\xb2\x63\xa3\x8f\x83\x7c\x66\xad\x69\xb4\xf0\xe1\xb6\x5c\xae\xaf\x0e\x98\x7d\x10\xca\x99\x81\x80\x56\x6e\xe9\x61\x3a\x78\x9c\x25\xee\x01\x32\x37\x7d\x31\x58\x27\x06\xc0\xa6\x7b\x61\xb0\x8e\xb5\x97\xe8\xad\x86\xc1\xe6\x88\xc3\xe6\x1a\x8b\xcd\x11\x8f\xcd\x15\x26\x6b\xe5\x79\x06\x5c\x06\x4f\x2f\x5c\x96\x3d\x42\x00\xee\x96\x7b\x5b\x55\x78\xe5\xe3\x94\x7b\xc9\xcb\x8c\x31\xa3\xfb\x02\x54\x46\x37\x49\xc4\x48\xb6\x8b\x25\x7d\x70\xe5\x52\xb2\x9f\xf9\xbc\x55\x6c\xd6\x3c\xa4\x4f\x2c\x6e\xef\xdb\xa8\xbc\x2a\x85\x4e\x9b\xd2\xb0\xa9\x3d\x0d\x63\xab\xd3\xd3\x01\x04\x1d\x61\x60\xac\x01\x1d\x54\x01\xc1\x63\x51\x93\x0e\x59\x95\x45\xe2\xfe\xd5\x51\x75\xca\x16\xb0\x11\xaa\xba\xf8\x9b\x31\x2e\x77\xc0\x01\xf5\x5c\xa0\xbf\x9c\xad\x19\x91\xf7\x02\xce\x1a\x24\x17\x31\xef\x74\x81\xf0\x85\x8c\x76\x65\xfa\xc1\x8e\xbd\xbb\x8a\xcd\xea\x8d\x0f\x52\xa9\x57\x65\x96\xf4\x8a\xab\x11\xe0\xff\xa7\xdb\x77\xd3\x84\xfb\xb5\x88\xf4\x26\x9d\xc0\x16\xcd\xe7\x25\x41\xfe\x1d\x60\x97\xdf\xac\x69\xf6\x72\xb3\xbb\x05\xe7\xc0\x57\x80\x77\x34\x92\xef\xba\xce\x3a\x9b\xa6\x51\x34\xc0\x21\xc3\xf9\xa1\xeb\x46\x19\xbc\x10\xaa\x71\x7b\x9e\x37\xe8\x2f\x14\x90\xa6\x0c\xb0\x34\x1a\x8b\x16\x2c\x22\xff\xfc\xc7\x7f\x9b\x89\x82\x76\x54\x2f\xa8\xf7\xb1\xc0\x05\x7b\xd7\xdb\x5c\x92\x9a\x83\x2f\xa1\x6e\xf9\xb4\xaf\xb6\x58\x50\xfb\x62\xba\x15\x0e\xb3\x22\x9c\x04\x59\x29\xad\x29\x88\x00\xad\xea\x24\x9f\x60\x07\x2e\xd6\xd1\x3d\xf5\x58\xc4\x23\xed\x67\xa3\x8d\x5c\xe4\x7e\xcd\x52\xa6\x75\x22\x4b\x91\x6e\x58\x5d\x07\xa1\x7b\xef\xa1\x8b\x6b\x02\xc6\x4a\xa5\xf1\x04\x02\x7c\xd5\x1d\x70\x0f\xbe\xab\xea\x11\xf8\xf3\xf1\x5f\x35\x94\xdc\xde\xa7\x43\x93\x49\x49\x22\x42\x13\x3a\x84\x76\x8d\x02\x3d\xf7\xf0\x5d\x2c\xbc\x17\x5b\x4f\x5b\x6f\x5f\x79\xdb\xca\xee\x7f\x9a\x71\x34\x9f\x0f\x6e\xf2\x18\x90\x77\x77\xe9\x53\x20\x3b\xc0\xde\x0b\xda\xc4\xf2\x17\xbd\x5f\x8b\x0c\xb5\x8e\x6a\xf9\x9a\xfd\x83\x12\xe3\x5d\x7d\xf4\x61\xec\xc8\x5e\xce\xfd\x3d\xb9\x24\xd2\x97\x53\x22\xcd\xfb\xd5\xc9\x2b\xfd\xfb\xee\x74\x45\x4e\x2a\x35\x6e\x88\xf5\x8b\x64\xa1\x64\xd2\x99\x66\x87\x58\xd6\x85\xa6\xd1\xa0\x94\x43\x74\x06\x4f\xb6\x53\xbf\x77\x77\x7a\x7a\x79\x7e\xe8\xcc\xad\x5a\x7d\xf6\xd3\x66\xb5\x3b\xdc\x76\xb7\x59\x4b\xe9\xca\x92\x8e\x4f\x35\xd2\x68\x36\x9b\x96\x46\x24\xaf\x65\x4d\x1d\x0f\xd5\xd4\x3f\xf5\xc2\x13\xf2\xb3\x8c\x6a\x1b\x26\xd7\x22\xdc\x83\xf6\x7c\xc4\x0f\x9e\x96\xe6\xe0\x92\xe1\x72\xe8\x75\x5b\xde\x1b\xaa\x4f\x4c\x31\xcc\x3a\x93\x3b\x19\xac\xc4\x42\xec\xc5\xcc\xf6\x25\x1b\xaf\xc6\xe4\xbb\x8b\xd9\x11\x99\x7e\x9a\x1d\x11\x26\x83\xf1\x2b\xf2\x31\x8f\x24\x4f\xba\x34\x74\x1a\x44\x70\x6a\xaf\xae\x0f\x15\x13\xb1\x82\x38\x96\x5f\x97\xc6\x35\xa1\x72\xbd\xc7\x3e\x1e\x4e\x55\xfb\xe7\xd8\xc6\xae\x1d\xec\xb6\x30\xd8\x3b\x08\xd3\x1c\x17\x5b\x85\xcb\x34\x7b\xd1\x77\x33\x08\x61\xe3\xd5\x09\x19\x11\xf6\x40\x03\x79\x42\x8e\x97\x42\x90\x91\xf6\x5b\x38\x21\xc7\x0b\x9a\x92\xcb\xab\xd9\xc5\x09\xfa\x44\xb0\x58\xa6\x3b\xb2\xe9\x22\x2e\x57\x97\x1f\xfe\xa8\xf1\xd8\x8e\x30\x0e\xa2\x03\x25\xf3\x03\x18\x04\xf5\x1f\xea\x4f\x1c\xc5\xf0\xe9\x63\xc5\x08\xb7\xf7\xbb\xa5\x11\x0f\x69\x21\xa6\x82\x4b\x30\x66\xdc\x96\xae\x14\xdb\xe5\xd3\xe7\xcc\xd5\x3c\x97\x67\xb3\xa9\x82\x70\x81\x8e\xe1\x38\x00\xe0\x15\xa0\x2d\x27\x86\x0e\x74\x3b\x91\xe0\xb2\xb5\x60\x06\x10\x5a\x02\x56\x2c\xf8\x89\x01\xfb\x3c\x7f\xfd\xfa\xcb\x40\x75\x0c\xff\x62\x27\x3a\xa5\x40\x2f\x81\x0d\x8f\x1a\xcc\x0a\xba\x53\x08\x23\x2d\xb6\xb0\xec\x7a\xa4\xe1\xfd\x59\x23\x60\x1f\x1d\x4e\xf8\x7b\x44\x65\x22\x00\x9e\x96\x09\xd2\x4b\x7f\xca\x4e\xfb\x86\x4d\xf6\x40\x48\xdd\x5d\xf1\x60\xd3\x93\x66\x4e\xce\x3e\x4e\xfb\xda\x2e\x01\x19\xf9\xe7\x6e\x63\x29\x2b\x4b\xba\x9a\xad\x0e\x83\xc1\x5c\xef\x30\xa4\xe6\xcf\x74\x8d\x8b\x16\x41\x0e\x9d\x46\x81\x7e\x2d\x2a\x2a\xd6\x65\x55\xb3\x5a\x64\xdb\x2f\xec\x3d\x6a\x9c\x36\x59\x12\x2c\x41\xaa\xd1\xf6\x6d\x8b\x31\xa8\xd7\x49\x0c\xda\xc3\xbf\x1b\x55\x65\x15\x67\x22\x62\x1b\x4a\x00\x94\x00\x6b\x4e\x4c\x96\x56\x16\xf6\x6e\x12\x31\x53\x00\x46\x47\x51\xf0\x9b\x82\x7a\x1e\x36\xac\xb4\xde\x1d\x94\xea\x92\x05\xeb\x98\x07\xcd\xd4\x24\xd5\x07\x84\x7a\x54\x5c\xf1\x4d\x22\x32\xf4\x12\x81\xdc\x13\x2c\x8d\x59\x74\x98\x11\x9e\x48\x8c\xc0\x58\xf2\x94\xdd\xd3\x28\xea\x98\x2a\x62\x0b\xad\x52\xc8\x33\x34\xf9\xb3\x78\x29\xd0\x85\x55\xfb\x8f\x74\x5f\x8d\x4e\xed\x33\x34\xfb\xfc\xcd\x50\xdd\x8c\x09\x78\x41\xb0\x07\x50\xb9\x76\x29\x6f\x71\x0f\xc4\x92\x7c\x83\x8e\x87\xb0\x42\xe8\xeb\x22\x58\x0b\x72\x8d\x44\x5b\xa7\xcc\x4f\x78\xbc\xca\xda\xb5\xb7\xbd\xd6\xdb\x03\x19\x24\x6e\x0f\x70\x0f\x40\x26\x53\xe3\x09\xfe\xd9\x2e\x0d\x15\xd1\x0c\xf9\x71\x1b\xca\x53\xa3\xd3\xf5\x42\xa1\x07\x04\x3c\xbe\xbc\x9e\xc5\x7d\xd4\xad\x2d\x5f\xb3\x22\xa1\x0d\xb8\x28\xa7\x9b\xb2\x86\x82\xcb\xaf\xba\xba\xb8\xcf\x42\x1a\xe0\x36\x8d\xd9\xeb\xdb\x53\xba\xf6\x4d\xb9\x53\x3e\x7d\xc9\x52\xb5\xee\x45\x39\x1f\xed\x83\x8e\xfa\xe6\x3b\xb6\xd3\x47\x3b\xa1\x5c\x27\xd4\x69\x1f\x5e\x89\xb5\x84\x3d\xc8\x94\x56\x60\x4a\x17\x22\x97\x3d\x08\xc9\x53\x49\x8e\xb1\x90\xea\xf6\xf5\x3b\x19\x97\xd8\xb8\xc3\x16\x0d\x4d\xda\x7d\x42\x06\x82\x31\x10\x8c\x7f\x6d\x82\x11\x0b\x69\xd8\x2a\x2f\x58\xda\xed\xc5\x3d\x2d\xc5\xfd\x6c\xc4\x0d\x57\x26\xc3\xf2\x75\x78\x33\xe9\x66\x7e\x80\x75\xdc\xe3\x1e\x46\xe9\xc7\x99\xa3\x93\x5f\x2b\x70\xe7\x07\x36\x6c\x9f\x90\xf6\x37\xd4\xb2\x10\x09\x60\x73\x02\x06\x26\x63\x38\xf5\x3c\x6d\x73\xcd\xd1\x7e\x65\x7a\x9f\x2f\xc0\xff\xfd\x1a\x82\x37\x4c\x28\x02\xfa\xce\xbc\x5c\xb0\x80\xe6\x99\xf6\xe6\xe8\x70\x0c\x2e\xa6\x18\xb0\x14\xfa\x28\x3c\x42\x5e\xa1\x39\xf1\xa3\x8e\x49\xa8\xf8\xb7\x74\x91\x58\x74\x7c\x39\xb1\x7d\x37\x8e\x6c\xcf\x0d\xfc\x03\x24\x95\xca\x5f\xdb\xb7\xe5\xdf\x37\x67\x33\x7c\xeb\x1f\x46\xf7\xf8\x81\x4b\x66\xdc\x43\x68\x6c\x0e\x88\x31\x29\x80\x93\x0c\x79\x33\xfa\xe2\xeb\xaf\x5b\x6c\x6c\xcf\x77\xec\xd1\x8c\xd8\x8f\x1a\xdf\xa0\x23\x52\xbf\x50\x89\x96\xea\x84\x66\xd4\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x70\xaf\x78\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xc2\xb7\x92\x01\x97\x0d\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\x7c\x86\x28\x89\x21\x4a\xa2\x78\x86\x28\x89\x21\x4a\xe2\xf9\xa3\x24\x5a\xb2\xd1\x2a\x19\x03\xf3\x9d\xb9\xde\xf5\x29\x9f\xe8\x3c\xe5\x3a\x3b\xde\x23\xd2\x1c\xea\x2f\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\xd0\x8f\x1a\x87\x3c\x87\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\x7e\xf9\x0c\x16\x7c\xeb\x19\x2c\xf8\x83\x05\x5f\x3f\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\xe0\xb2\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x6f\x3e\x83\x05\xbf\xfe\x0c\x16\xfc\xc1\x82\x5f\x7f\x06\x0b\xfe\x60\xc1\x2f\x9e\xc1\x82\x3f\x58\xf0\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x48\x86\x3c\x87\x3d\x47\x18\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\xda\xaa\x21\x6d\xd5\x90\xe7\x70\xc8\x73\x38\xe4\x39\xf4\xcf\x7f\xc8\x73\x38\x10\x8c\x81\x60\x0c\x79\x0e\x87\x3c\x87\x95\x67\xc8\x73\x38\xe4\x39\xac\x3d\x43\x9e\x43\xbf\x00\x39\xe4\x39\x1c\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x5a\x56\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xe1\x5b\xc9\x80\xcb\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x3e\x43\x94\xc4\x10\x25\x51\x3c\x43\x94\xc4\x10\x25\xf1\xef\x98\xe7\x10\x92\x17\x76\x65\x39\xbc\x52\x8d\x5a\xce\x70\xe9\x19\x2d\x4d\x3e\x44\x0f\xe3\x8b\xbe\x20\x98\x61\x0e\x58\x7c\xd5\x29\xe8\xc4\xc3\x31\x72\xfd\x85\xce\x62\xcd\x57\x8a\x85\x9a\x1f\x40\x7f\xf3\x03\xd8\x6c\xdd\xd6\xd5\x35\x5d\x2a\xf2\x2f\x01\xbd\x40\x07\x91\xb8\x67\x29\xce\x06\x7d\x6b\xac\xc9\x65\x44\x6c\xb8\x94\x2c\x3c\x52\xd2\x2b\xba\x65\xbb\x3a\x0d\x44\x9c\x71\x4c\xef\x88\xd2\xe9\xfc\x80\xc7\x4b\x1e\x73\xc9\xe6\x07\x64\x44\xc0\xa3\xc3\x5a\x8e\x11\x07\xf4\x3c\x49\x44\x33\x39\x26\xc5\xca\x9c\x20\x51\x73\xe5\x21\x8b\x25\x0f\x68\xa4\x27\x58\xef\x87\xc7\x84\x46\xc9\x9a\xc6\xf9\x86\xa5\x56\x3b\xc8\xac\xe8\xea\x55\x9b\xd0\xb4\x20\x85\x66\x4b\xa7\x12\x10\xcf\x46\x9c\x6f\x16\x4d\x19\xb7\x05\xe9\xd5\x84\xc2\x99\x2d\x60\xe0\x41\xb1\xc4\x8c\x3c\xd3\x1c\x13\x0f\xee\xf0\xff\x44\xee\x3c\xff\x6a\xca\x35\x86\xd1\x02\xae\xf6\x21\xb6\xc0\x22\x85\xd6\x6f\xb4\xb0\xbd\xe5\x3c\x32\xb2\x14\x51\x24\xee\xc1\x21\x50\xcb\x3e\x85\x34\x80\x68\xe9\x77\xc8\x1a\xe3\x6d\xbf\x8d\xb8\x64\x29\x8d\xd4\x2f\xae\x9e\xe7\x73\x32\x42\x1f\x7a\x75\x50\x36\x09\x4d\x79\x26\xe2\x23\x02\x81\x34\x86\xa7\x35\x5d\x2e\x85\x20\x0b\x9a\x02\x9f\x5d\x0c\xf7\x9b\x3d\x87\x2b\xc7\x53\x1c\x39\xfb\x4b\x4e\xa3\x6f\xd1\xed\xcb\xe0\x59\xbe\xd4\x08\x96\x67\xd0\xc6\xe8\x8c\x8a\x21\xdd\xf7\xf2\x27\x98\x07\x2d\x9d\x15\x16\xe5\x3f\x03\xfc\xe7\x78\x3c\x26\x7f\xb7\x66\x20\xd3\x9c\x19\xef\xed\xc2\x01\x0a\xc7\xf8\x03\x71\x3b\x5c\x6a\x65\x59\xc7\x50\xe5\x5c\xd5\x02\x78\xdc\x63\x72\xae\xc1\xf6\x9c\x2f\x0c\xd6\x36\x41\xf7\x96\x58\x73\x56\xf2\x14\xf4\x77\xab\xb8\x9b\x57\xe5\xd0\xb3\x62\x64\x2a\xcb\xdd\xb1\x76\xe6\x37\x70\x48\x9d\x38\x5f\x77\x51\x08\xd6\x62\x09\x6d\x41\xb2\x82\xff\xe6\xaf\x5f\x7f\xf1\x16\xff\x1f\xdf\x14\xdf\xdc\xac\x45\x2a\x47\x01\x4f\x83\x9c\x4b\xa0\x9b\xfa\x23\xd7\x40\x7f\xfb\x5b\xeb\xd7\xa0\x81\x93\x2f\xb1\xcd\xab\xa2\x51\x42\x53\x16\x63\xae\xd5\x55\x2a\xf2\x44\x31\x0b\xf3\xb9\xa4\x51\xf4\xd2\xa9\x49\xd5\xc9\x3f\xd1\x36\x5e\xe0\x0b\xd3\x9b\x39\xc3\x34\x8a\x2c\x01\x09\x2e\xe8\x07\x3c\x0f\xc8\x01\xb8\x89\x3b\x55\x57\x1b\xf1\x8c\x71\x1f\xb2\x51\x66\x76\x44\x46\x47\xe4\x16\xe0\x70\x3c\x26\x37\x70\xe5\x88\xbe\x72\xde\x4e\x37\x22\x65\x24\x51\xbc\x51\x96\xf1\x2d\x23\x0b\x74\x7c\xdd\x19\xc1\x5c\xab\x4c\x08\xcb\x02\x9a\x30\x12\xac\x69\x4a\x03\xc9\x52\x3d\xed\x0b\xf4\x1f\x74\x5e\x86\x97\x80\xf8\x37\x34\x64\xa3\x3c\xc1\x63\x91\xbd\x2a\xd0\x11\x44\x5b\x68\xd4\x71\xcf\x16\x8a\xf9\x62\x1a\x79\xd8\x3b\x1e\xb2\x24\x12\xbb\x0d\x8b\x9d\xe8\x54\x7f\x9f\xa4\x22\x34\x87\x14\xfa\x55\x77\x0a\x70\x52\x2a\x62\x25\xa0\x5b\x47\x5d\xc9\xb4\xf8\xc3\xdf\x55\xf3\xb2\x7f\xf2\x9b\xdf\xf9\x6e\x40\xc8\xb6\xa6\xfb\xdf\x90\xda\x2d\x70\xa1\xb2\x36\x8e\xaa\x2a\xca\xb6\x18\x5a\x5a\xe4\xd8\x76\xae\x7b\x89\x4e\x55\x25\x59\x70\x2d\xcb\x50\x2c\x3c\xa3\x9a\x1d\xc6\x34\xc6\x22\x36\x93\x34\x9c\xae\xcb\x60\xd2\xb6\x46\x50\x97\xf5\xa0\xa9\xa0\x55\xe3\x71\xc8\x03\xe0\xcb\xef\xd7\x10\xc5\x87\xd4\x4b\x93\x44\xcb\x9f\x40\xe7\x39\x76\xe2\x29\x75\xef\x84\x4e\x74\x7c\xa4\xff\x52\x3c\xf5\x98\xa0\xf7\x0e\x50\x93\x87\x44\x31\x29\x32\xda\x59\x2c\xf5\x4b\x48\xd2\xec\x74\xcb\xb2\xf0\x68\x4c\x82\x94\x69\xa7\xe1\x4c\xdf\x6e\x91\x92\x98\x47\xaf\x8e\x8c\xe3\x6f\xc8\x96\x34\x8f\x64\x46\x70\x59\x0a\x74\x69\xe8\x61\xa9\xa5\x20\xf7\x0a\x57\x4e\x74\x2a\x6d\x35\x89\x0b\xfd\x4f\x75\x1f\x35\xe6\x2c\x72\x15\x83\xa7\x0a\xaa\x23\xf5\x30\xae\x5e\x79\x86\xb7\x6b\x44\xfe\xa4\xf9\x22\x35\x15\x33\xc6\x9f\x8f\x34\x71\x50\x5c\x26\xa8\xbc\xcc\x90\x98\x4f\xfa\x25\x8f\x83\x28\xf7\xce\x78\xcd\x48\x40\x15\xe7\x09\x1d\x94\xdd\x10\x24\xcf\xb1\x28\x16\x03\xdd\xbd\x72\xcc\xe4\xc2\x9b\xa7\xba\x3e\xb7\xca\xc4\x14\x4a\xaa\x77\xef\x5f\xa7\xf3\x78\xd4\xe7\xd0\x18\x10\xe4\x2f\xc7\x6e\x60\x8e\x73\x37\x5e\x88\xf1\x68\x55\x79\xfd\x94\x51\x75\x8f\x82\x3b\x42\x57\x94\xc7\x47\xfa\x34\xa0\xd2\x2e\xba\xa7\xbb\x4c\xbb\x66\x3a\x4f\xb1\xb1\xb3\xa1\x81\xed\x88\xc4\x6c\xcb\xd2\xca\x79\x73\xaa\xd3\x7a\xa6\x41\x2f\xa1\x40\x18\x10\x8d\x42\x15\x9d\x88\x2c\xe3\x8b\xc8\x0c\x5c\x7a\x10\xa8\x0f\x6e\x12\x16\xb8\xe5\x3d\x5c\x9b\xdf\xa7\xa2\x5d\xb2\xf4\x0a\x6d\x6e\x59\xaf\xf9\x2b\xd0\x8c\xd0\xb6\x14\x65\x52\xa4\x74\xc5\xcc\x4f\x99\xa4\x32\x47\xc0\xa0\xc2\x94\x85\x97\x96\x2a\xeb\x8e\xc7\xa1\xc2\x43\x06\xa4\x49\x94\xa7\x34\x2a\x7f\x09\x44\x8c\xb6\x8b\xec\x84\xfc\xe9\xcf\xea\x17\xd5\x3f\x0b\x75\xd8\x91\xfe\x75\x1e\x8f\x46\xa3\x79\x4c\x13\x6e\xa2\x97\x08\x4d\x38\x7b\x90\x2c\x86\x56\xe3\xbb\x6f\xb2\x31\x17\xc7\xdb\x37\xf3\x18\x47\x3c\xcb\x33\x29\x36\xd7\x0c\x15\xb1\xe7\x0c\xc4\x2d\xc0\xd3\x95\x18\x21\x45\x5e\x4e\x48\x8c\xce\x5a\x19\x93\xd9\x38\x48\xc3\x71\x92\x0a\x05\x81\x00\x90\xce\x58\xa4\xab\x79\xac\xb0\x19\x7c\x01\x2c\xca\x09\xf1\x34\xab\xea\xf1\x70\x2a\x75\x8f\xb2\x88\x67\xf2\xf7\xb5\x37\x1f\x78\x26\xab\x00\xb2\xe6\xa4\xe1\xce\xe3\x55\x1e\xd1\xd4\x7e\x05\xf0\x0a\x84\xda\xb4\xc2\x77\x0c\x24\xb9\xad\x01\x9f\xfa\x63\xa4\x97\xa9\xa0\x03\x3d\x05\x6b\xb6\x29\x63\xa4\x44\xc2\xe2\xd3\xe9\xe4\x87\x2f\x6f\xaa\xbf\x37\x5d\xb6\xf4\x64\x8d\xf3\x41\x39\xe4\x88\xfd\x25\xe7\x5b\x1a\x29\x84\xaa\xcf\x75\xdd\x9b\xce\x3a\xbc\x1e\x9d\xa8\xb5\xbb\xd5\xb3\x5a\x0d\xa5\x56\x53\xd5\x76\x2d\x74\xf5\xc4\xc9\xe8\x15\xb3\x50\x2f\x0f\xe7\x01\xd8\x42\xa3\x7a\xea\xd2\x7b\x88\x25\x50\x77\x38\xf1\x63\x60\x01\x58\x9a\x19\x21\x31\x10\xf1\x96\xa5\x92\xa4\x2c\x10\xab\x98\xff\xb5\xe8\x3c\x33\x96\x36\xa8\x72\xd0\x20\x14\x3c\x96\x2c\x55\xcc\x02\x5c\xf5\x23\x40\x76\x1b\xba\x23\x29\x53\xc3\x90\x3c\xb6\x3a\x34\x76\xfe\x8f\x8a\x49\xe4\xf1\x52\x9c\x40\x92\x8b\xec\xe4\xf8\x78\xc5\xa5\x39\xd8\x81\xd8\x6c\xf2\x98\xcb\xdd\x31\xe8\xff\xf9\x22\x97\x22\xcd\x8e\x43\xb6\x65\xd1\x71\xc6\x57\x23\x9a\x06\x6b\x2e\x59\x20\xf3\x94\x1d\xd3\x84\x8f\x60\xee\x31\xdc\xac\xf1\x26\x7c\x91\xea\x9b\x90\x1d\xba\xf0\x40\x13\x7d\xc0\xd1\x6d\xdb\x06\x75\x82\x75\x64\x18\x72\xc1\x48\xc6\x0b\x68\x1b\x23\xe7\xf5\xc5\xcd\x8c\x98\xd1\x9d\x51\x74\x08\xfc\xf2\xcb\xac\xdc\x07\x05\x34\x1e\x2f\x0d\xbf\x02\x8a\x46\x5b\xbc\x47\x92\x19\x71\x07\xeb\x9a\xe5\x8b\x0d\x97\x99\x95\x1d\x41\x8c\xc9\x19\x84\xd9\x29\xea\x90\x27\x21\x95\x2c\x1c\x93\x49\x4c\xce\xe8\x86\x45\x67\x34\x63\xcf\xbe\x0b\xc0\xb4\x8d\x14\x6c\xfb\xee\x83\x27\xa2\xd1\xa7\xaa\x2b\xd0\x94\x67\xdb\xca\xfb\xa8\x28\x4e\xd5\xa5\xde\x44\x60\x94\x31\x8f\xb4\x81\xbb\xca\xc7\x6c\x69\x8d\x28\xb5\xd8\x3b\x3c\x1e\xa2\x8d\x52\x28\xc6\x89\x65\x32\x2d\x30\x1d\x4a\xbd\x0b\x16\x09\x75\xaa\x84\xd6\xbd\x30\x97\xba\xdf\x4f\xa7\xff\x93\x28\x25\xfc\xdf\x0b\x1d\x39\x71\x42\x90\x44\x1d\x4b\xb6\x49\x00\x63\x1d\xe3\x0f\xe0\x19\x52\x5a\x14\xd3\x6c\x94\x2e\x68\x30\xde\xd1\x4d\xa4\x7a\xfa\xe9\x27\xbe\x24\xec\x2f\x64\x7c\xfd\xee\xf4\xec\x4c\xc4\x4b\xbe\x22\xf3\x03\xd5\x64\x7e\xf0\xf7\xbf\xab\xfe\x27\xc0\xce\x32\x42\x49\x10\xe5\x99\x64\x69\x2a\x22\x56\x94\xe7\xa8\xf7\x0e\xfa\x2d\x11\xb3\x58\x1e\xa9\x8f\xa1\xc0\x07\x60\x11\x69\xd0\xa9\x67\x5a\x46\x56\x2a\x0d\x6e\x9a\xc8\xe3\xa0\xd7\x22\x62\x55\xe6\x00\x96\x41\x73\xb9\x16\x29\xff\x2b\x3a\x1a\x58\x1c\x82\x83\x03\xf0\x0c\x3c\x8f\x81\x39\x85\x86\x2f\xc8\xa5\x08\x51\x73\x40\xee\xb5\x3f\x81\x14\x64\x23\x62\x0e\x7e\x73\x22\x25\x21\x8b\x18\xde\x75\x24\xbb\x34\xe1\xdf\x29\x76\x41\xed\x8d\xda\xc6\x3f\xe3\xce\x16\xb8\xb8\x38\xa6\x23\x12\xab\xbe\xf1\xcf\x2d\x4b\x17\xf6\xab\x7b\xdb\x01\x6a\x04\xd7\xa3\xfc\x6b\x85\x37\xf3\x05\x99\x9a\xd4\x39\x7f\xc9\x59\xca\xb5\x0a\xa3\xc8\x68\xc2\x1e\x78\x26\x59\xac\xaf\xeb\x5e\x33\x4b\x44\xe8\x99\x58\x31\xf6\x64\x7a\xfa\xb1\xfc\x56\x07\x4a\xc4\x3c\x81\x22\x40\xa1\x12\x67\x62\x5c\xa0\x0e\xd0\x88\x98\xd4\x36\x93\xfa\x4c\xdc\x6c\x55\xdb\xf4\x78\x92\x08\x11\x79\x66\x68\x60\xf5\xf9\xc3\x2c\x22\x11\xdc\xd1\x25\xb2\x91\xa5\x2e\x46\x8d\x4f\x37\xf0\xb2\xf6\xdb\x9a\xc6\x61\xe4\xdb\xd2\x15\x93\xbe\x0d\x05\x21\x98\x95\x7f\x23\xa1\x2a\xff\x46\xe8\x39\x4e\xc7\x8b\xe6\x7d\xdb\xd0\x98\xae\x58\x46\xd6\x22\x93\x96\xb3\xc0\x93\x00\xa4\xd2\xe7\x33\xae\xf2\x05\xb9\x64\x2c\x04\x59\x5f\x09\x8b\x52\xe8\xb6\x06\xe3\x58\x31\xe5\x4f\xb5\x34\x47\xcf\x3d\x16\xe8\x5f\xd2\x0b\xf2\xfb\x7c\xc1\xce\xca\x8d\x41\x5c\x9a\xa7\x85\xb6\x03\x05\x7e\x2e\x55\x8f\x19\x51\x6c\x4b\x00\x4d\x9e\x66\x3d\xea\x5c\x58\xc7\x22\xb0\x47\x77\xae\xec\x05\x8a\xd8\x6a\x1e\xe2\x3e\xb6\xe6\xd2\x58\xf6\x0b\xbd\x6c\x42\x8d\xd2\x44\xc9\xfc\xb1\x88\x19\xa2\x9c\xcc\x07\x9f\x17\x66\x1b\x91\x2a\xfa\x4e\xc2\x0b\x3c\xdf\x80\xc3\x82\x75\xc5\x65\xb5\x38\xfa\x40\xeb\x1a\x04\xe1\x1d\x8f\x51\xcf\xf2\x4c\x74\x41\x44\xec\x9a\xa1\xfb\xa7\xd9\x9f\x96\xfe\x55\x33\x07\xcd\xea\x1c\x26\xcb\x81\xc3\x50\x5b\x33\xd2\x1d\x54\xd5\x94\x3d\xfa\xb0\x02\xef\x4e\x10\x47\x64\xbb\x4c\xb2\x8d\x86\x5c\x6f\x66\x41\x61\x70\x9b\x41\xe8\x22\xff\xd6\x67\xe4\x9c\xb2\x8d\x88\x6f\x58\x17\xe5\x87\xc6\x3f\x17\xb5\x57\x83\x55\x29\xbc\x62\x3f\xcf\x2e\x27\x8a\xf7\x5a\xf1\x98\xc4\x80\x79\xa4\x50\x27\x1e\xe8\xe0\x11\x92\x31\x94\xe8\xec\x00\xaa\xc7\x13\xd5\x1a\xf1\x37\xd2\x3a\x76\xdc\x8a\x76\xf6\x1a\xb0\xe1\x2f\x38\x32\x60\xf6\x60\x80\x4f\x5a\x79\x1d\xf2\x2c\x10\x5b\x96\x16\xfa\xea\xc9\x14\x6d\x35\x34\x54\xb2\x31\xcf\xd8\xc6\x76\xcb\x6c\x65\x57\x1c\xbd\xce\x76\xc9\x9a\x66\x63\x37\x43\x43\xce\x26\xe7\xd7\x84\xe6\x52\x8c\x42\xa6\xc4\x2a\x30\x5e\xc5\x70\x88\x69\xb8\xd1\xfb\x53\x52\x06\x44\x54\x64\x43\x93\x47\x6c\x09\x7e\xac\xbe\x7d\x3a\xa8\xc3\xc6\x1e\xdb\x28\xae\x0e\x66\x45\xdc\x74\x45\xbb\x20\x62\x14\x24\x69\xc5\x67\x6a\xc1\xeb\x53\x4c\xb7\x94\x47\x74\xa1\xee\x55\x44\x57\x16\xa0\x12\x1b\xce\x2f\x8c\x86\x1c\x64\x82\x0c\x1d\xf4\x83\x2a\x99\xb1\x92\xaf\x70\xe4\xc7\xec\xac\x33\x63\x37\xe5\xfa\xb1\x8e\x7e\x15\x9c\x7f\x5f\x38\x94\x57\x82\x36\xb9\xe7\x26\x68\x29\x8e\xc7\x2b\x83\x0d\x5b\x61\x86\xad\x93\x8a\xb7\x43\x4f\x9e\x58\x1f\xb0\xc5\xce\x80\x43\x4d\xdc\x28\x8e\xcb\xf5\x7f\xf6\x7d\xad\x5d\x50\xeb\x36\x19\x6b\x4e\x3b\x3f\x4a\xea\xac\x5b\x0d\xf1\x24\xc6\x87\x56\x84\xe6\xf8\x3c\x6e\xce\x2d\x67\xcf\x3a\x41\xc5\xe9\xd1\xc2\x4c\x46\xb6\x34\xe5\x22\xcf\xc8\xd9\xf5\x39\xde\x76\x3c\x4b\x4f\xc4\x60\x61\x64\xef\x92\x45\xfc\x01\xfb\xb5\xe0\x68\xfd\x5a\x65\x51\x80\x0b\x5f\x25\x09\xd3\x44\xcd\xee\x6a\xb1\x4a\x1a\x1d\x15\xbf\x35\xbb\xa9\xc8\x0c\x3e\x26\x1e\x7b\x76\x9e\xc6\xc6\xeb\x8c\xd9\x88\xd5\xfb\x8d\xb3\xb5\x97\xdb\xf4\x70\xd9\x5e\x69\x64\x0f\xf6\xfb\xbe\xb9\xf3\x79\x26\x0b\x5e\x2e\x0e\x0b\xee\x4c\xe1\x11\x38\x04\x22\x56\xac\x5a\x2a\xf3\xe4\x39\x04\xb7\xce\x9d\xef\xcd\x93\xb7\xb1\xe1\x7b\xe1\x48\xed\xfc\xa4\xf0\xe4\x93\x8a\xf3\xfd\xb6\x65\x06\x36\x2a\xe3\x34\x20\x62\x14\x9d\xc1\x61\xd3\xf8\xf7\xc1\xbd\xcc\x93\x55\x4a\x43\x1d\x2f\xb0\xfd\x62\xfc\x16\x79\x93\x00\x8b\xeb\xbe\x20\x0b\x46\x52\xb6\x11\x5b\x16\x6a\xdf\x36\xf3\x81\x48\xd5\x0a\x97\x29\xcb\xd6\x84\xc7\x99\xa4\x51\xf4\xa4\x42\x54\xcb\xf5\xab\xde\xe2\x7d\x36\xd0\x0d\x95\x0a\x40\xf4\x1e\x2b\x64\x2a\x85\x6a\xaa\x76\x14\x35\x14\x34\x8a\x44\xf0\xb4\x8b\xfc\xf5\x69\x05\x9e\xe2\x62\xd2\x4d\x05\x9b\x7a\xf5\x3e\xef\xd4\x0a\x49\xb9\xfe\x6a\x06\x31\x38\xcd\xc0\xb9\x2c\x76\x70\xcf\x70\x83\x52\x91\x2b\x1c\xb3\x5a\xa5\x26\x06\xe8\x19\xf7\xc2\xcb\x37\x68\x92\x8b\x87\x05\x4e\xc7\x86\xaf\x34\x16\xa8\xb0\xfd\x21\x48\x2e\x60\x1a\x74\x1c\xbf\x80\xc6\xda\xe9\xf3\x45\x71\xcf\x40\x00\x96\xfa\xa2\x29\x7e\x0e\xee\x26\xa4\xe0\x29\xaf\x19\xc9\x33\xf5\x4a\xe1\xf7\x91\x3a\x95\x11\x4c\xc2\x09\x0a\x9a\x24\x59\xeb\xca\xcb\x29\xb6\xec\x97\xc3\x84\xda\x2e\x37\xf9\x25\xea\x4e\x89\xea\x39\x64\x63\xec\x7a\x7f\x79\x18\xbf\xf3\xcb\xc0\x3f\xfd\xc4\xe2\xf0\xef\x7f\xdf\x4b\x0a\x2e\x04\x60\x08\xce\xdd\xd0\x98\x2f\x59\x26\xcd\xfe\x66\x0d\x81\x56\x9b\x59\x58\x7a\x44\x68\x46\xee\x59\x04\x1f\xeb\xb0\xa0\x92\xed\xcb\x74\xa1\x6c\x60\x12\x8c\x30\x23\x62\xd5\x96\x51\x48\xae\xac\xa0\x03\x8d\x54\x0b\x96\x22\x13\x0f\xc5\xbc\x2d\x96\x5c\x93\xca\x42\x6e\x2e\x64\xef\xba\x01\x3d\xc9\x7a\x09\xc8\x7e\xd8\x11\xed\x71\x66\x2c\x18\xdf\x64\x23\x9a\x24\xf5\x2d\x33\x26\xa9\x9a\x23\x30\x38\xea\x7d\xb0\xbf\xf7\xf5\x40\x34\xba\xbb\x91\x29\x95\x6c\xb5\x3b\xd1\xa6\x89\xf1\xa7\xca\xcf\x6a\x13\x7f\xfa\x89\x48\xf1\x47\xba\x89\xea\x2f\xc9\xdf\x08\x8f\x43\x16\x4b\xf2\x15\xb6\x63\x51\xc6\xd4\xbf\x48\x61\xcc\xb9\x16\x51\xc4\xe3\xd5\x27\x0b\xb5\xa6\xf6\x4f\xc5\x2c\x37\xf4\xc1\x92\xcb\x4e\xc8\x1b\xeb\x14\x11\x62\x4e\x8c\x59\x66\xdd\x80\x17\x55\x97\xec\x5f\x34\x01\xb9\xee\x9a\xc6\xc1\x9a\xa5\x23\x63\x9d\x43\x1b\x59\x29\xb8\x61\x7c\x6b\xb0\x66\x61\x1e\xb1\x74\x0c\xde\x8a\xe3\x32\xe2\x17\xcc\x96\x29\x07\xb7\xf0\x51\x22\xc2\x32\xb0\x23\x2c\xcd\xa9\xdb\x2f\xc7\x6f\xbe\x1c\x7f\x05\xbe\x69\xc4\x0c\xed\xce\x48\x8a\x67\xfe\x88\x50\x30\xc5\x81\xf7\x21\x1c\x62\x3d\xc4\x69\x18\x8a\x38\xc3\xf0\x59\x11\x31\x8d\x50\x21\x82\xf4\xc8\xee\x64\x43\xd1\xaa\xc7\xc0\x27\x0e\x42\x43\xcc\x2c\x09\x0d\xc3\x11\x78\x40\xc7\x59\x0e\xf2\xb0\xd6\x8b\xda\xdf\x27\x29\x17\x50\xf2\x5f\xaf\x1c\x02\x4c\x62\x1d\x49\x80\x66\x5f\xdb\x1a\x91\x32\xb4\xce\xd9\x5d\xf0\xa5\xea\x18\x9c\x7f\x40\xeb\xca\xb6\x3c\x90\x95\x50\x8e\xfe\x50\x3d\x21\x87\xda\x9e\x5b\x31\xc0\xaa\x9d\x74\x78\x1f\x56\xfb\x11\xd9\x09\x89\x78\x9c\x3f\x98\x06\x3f\xfd\xa4\xb3\xb3\xfd\xd7\xdd\x11\xf9\xaf\x2d\x39\xf9\x1d\x19\x5f\x5a\x3d\x11\x73\x6c\x75\xe3\xff\xba\x23\x7f\xff\xfb\x09\x99\x1f\xa8\x7f\x6f\xd5\xdb\x03\xab\x2b\x16\x87\xd6\x07\x8a\xde\x68\x91\xbd\x1a\xfd\x5d\xee\x56\x75\xb7\x3f\xd2\x3b\x46\xb2\x3c\xad\x22\x34\x00\x98\x01\x0f\x78\x33\x42\x46\x21\xc5\xf4\x5a\xf0\x1b\xe9\x08\xcb\x13\x72\x29\x6e\x74\xe3\xf2\x2d\x38\x9e\xa4\x54\x81\x86\x5c\x54\x74\xc5\x38\x6e\x7a\xd7\x7a\x3e\x90\x97\x60\xe5\xfe\x57\x06\xbe\x63\xbb\x13\xc7\xa1\xec\x37\xba\x3d\xef\x8b\x07\x16\xe4\xb2\xd7\xb4\xbb\xcc\xa5\xfa\x50\x55\xc8\xd5\xa5\x0b\xdd\x62\x67\x05\x42\xd1\x00\xe1\x31\xdf\xf0\xbf\x32\x12\x8a\xfb\x58\xf2\x0d\x23\x21\xde\x0e\x6a\xb0\x94\xcd\xda\x1b\x4b\xe4\xb7\x44\xb2\x28\xb2\xa9\x83\x14\x24\x14\x50\x2f\x01\x72\xa7\x96\x03\x98\x4f\xe6\x07\xa5\xef\x43\xf5\xa4\x86\x22\xc8\x8e\x03\x11\x07\x2c\x91\xd9\xb1\x49\x3d\x95\x1d\x83\xa2\x21\x11\xe1\xf1\x0b\x13\x00\xc6\x45\x3c\x12\x4b\x75\x33\xca\xf3\x60\xbd\xfb\x2e\xa5\x01\x9b\xb2\x94\x8b\xf0\x86\x05\x22\x0e\xb3\x13\xf2\xba\x81\xf2\xca\x94\x90\xa8\x7a\x32\x0d\xcc\xdd\x3f\x8b\x68\x96\x21\x00\x7f\xfa\x89\x8c\x91\x97\x53\x17\x65\x5a\x6f\x40\xfe\x56\x58\x27\xe6\x07\x48\xbc\x50\x9b\x6d\xce\xd4\xfc\xc0\xba\x23\x8a\x81\x3c\x33\x14\xbb\x89\xfb\x4a\x6a\x6e\xa4\x8b\xac\x2a\x85\xd5\x78\x3a\x50\x4c\xe2\x06\x2b\xce\x7a\x6c\xf7\x37\x91\x9a\x83\x34\x46\x51\xf4\x98\x34\xe9\x76\x9b\xd2\x19\xf8\xdd\xf2\x25\xd9\x89\x1c\x43\xa0\x69\x94\x32\x1a\xee\xec\x4e\xf5\x64\x40\xcf\x9a\x67\xcc\x33\xb8\x71\x0a\xd3\xad\xe1\xb5\x7d\xca\xf9\x06\x5c\x17\x7e\xfa\x69\x7c\x76\x39\x99\xa8\x3f\x6c\xb4\x03\xb1\x2a\x1b\xaa\xd8\x8b\x3f\xcd\x0f\x8e\x45\x22\x8f\x83\x98\x1f\x2f\x78\x7c\x6c\x0d\x07\x0e\xe1\x07\x23\x3d\x44\xc1\xc3\xe2\xc3\xe2\xed\xfb\x54\x6c\x2a\xae\x1a\x46\x0b\xfb\x91\x26\x86\x81\xb4\x9f\x17\xe4\x14\x42\x6f\x7e\xff\xe9\xdd\xc5\xf5\xe5\xc5\xec\xe2\xe6\xf6\xe6\xe2\xfa\x87\xc9\xd9\xc5\xed\xf7\x57\x37\x33\xa0\x00\x8e\x77\xd3\xab\xeb\x99\x8e\xbc\x12\x5b\x96\xa6\x3c\x0c\x19\xe2\x0f\xf6\x6e\xfa\x9e\x6c\x8c\x84\x6f\x3f\x08\x1c\x2b\x73\x86\xd1\x96\x8f\x8c\x3a\xa6\xfe\x85\xf1\x10\x6f\x66\xd5\x60\xf1\xb6\xb6\x14\x03\x7c\x6b\xb2\x97\x57\xe7\x17\xb7\x97\xa7\x1f\x2f\xea\xfd\x82\x5f\x55\x03\x52\xf8\x80\x5b\xa8\x0b\x52\xc5\xcb\x29\x95\xeb\x13\xb8\x49\x63\x75\xe2\x21\x82\xcb\x39\x95\xb3\xd3\x0f\x93\xb3\xab\xdb\xcb\x8b\xd9\x8f\x57\xd7\xbf\x9f\x5c\x7e\x77\xfb\xee\xf4\xec\xf7\x17\x97\xe7\xfb\xcc\xa7\xd8\xbd\xdf\xb3\x9d\x6f\x5a\x15\x0e\xb3\x6a\x5a\xb4\x1f\xc0\xe0\xd8\xea\xd6\x04\x14\x58\xcd\xb6\x22\xca\x37\xec\xa3\x2b\x54\x7d\x44\x36\xea\x67\x5c\xf9\xf1\x96\xa6\xc7\x11\x5f\xc0\xf1\x34\xfa\x37\xf7\x66\x97\xf7\x76\x14\x33\x39\x0a\x79\xda\xd6\xaf\x6a\x6d\x9f\x7b\x77\x9f\x41\xcc\x47\x0b\x1e\xd7\x3b\xcb\x58\x90\x03\x86\x12\xb1\x64\x0f\xf5\x82\x25\x49\xca\xb7\x3c\x62\xab\xaa\x37\x11\x71\x61\xa0\x8a\xc8\xa1\x24\x89\x05\x8f\x69\x5a\x09\x12\x44\x73\x9b\x7a\x57\x93\x2c\x96\x3c\x02\xb7\x7b\x90\x2d\xe2\xea\x25\x30\xa7\x42\xf7\x3f\x0a\x62\xfe\x24\xc8\x41\xf7\x37\xa0\x02\x6b\x21\x40\xa1\xb4\xd7\xac\xda\x26\x7b\x7b\x14\xed\x00\xd5\xcf\xd8\x73\x6b\x2f\x27\xb7\x67\x57\x97\xef\xfd\x98\x43\x31\x86\x6f\x5e\x8f\xb4\x12\x45\xf5\x0d\x9a\xa5\x83\xfa\x2c\x8c\x05\xa2\x76\x48\x20\x26\x04\xf6\xcc\x77\x54\xea\xd3\xd1\x18\x04\xa6\x35\xf9\xee\x17\xc5\x1e\x31\xbf\xd5\xcb\xb9\x75\x35\x7d\x41\x6e\x18\xba\x90\xaa\xcb\x0c\xd9\x04\x8a\xe8\x1c\xf0\x5f\xfb\x26\x43\x09\x5b\xbd\xf2\xac\xf8\x57\x80\xc1\x5f\xc0\xbe\x7d\x9c\x7d\x22\x9a\xe9\xdc\xd2\x94\x2b\xc9\xd4\xbf\x47\x1f\x67\x9f\x7e\xc9\x8d\xd9\x32\xb9\xbe\xdd\xc8\xbc\xbe\x8e\x69\xca\xb6\x2c\xd6\xf5\x85\x4a\x24\x07\x5c\x55\x16\x31\x06\xa1\x81\x4b\xa1\x5a\xd5\xeb\x90\x99\xd5\xdd\x7c\xb8\xb8\x68\x14\xf3\x2b\x2e\xc2\x92\x46\x19\xab\x9e\xfd\xde\x84\xe4\xb3\x10\xbe\xb3\x33\x26\x03\x43\x96\xc6\x8d\xf8\xeb\xb2\x3b\x07\x31\x7a\x3c\xfd\x38\x0d\x43\xc5\x59\xbe\x8f\xd8\x03\xf9\x01\x96\x4e\xce\x53\xbe\x05\x0f\x6b\x6a\x2c\x40\xaa\x45\xc2\x52\xd0\x17\x7c\x8a\xf9\x03\x39\x17\x1b\xca\x63\x72\x23\x82\x3b\x4c\xac\x06\x71\x92\xe4\x9c\xdf\xd1\x4c\x56\x89\x0d\x98\xe1\xc1\x4d\x3a\xa0\x52\x07\xd1\xbf\x67\x11\x7f\x00\x84\x6b\xc7\x93\xdf\xec\xe2\x80\x9c\x4e\x27\x0e\xb2\xb3\x8c\xd8\xc3\x56\x44\xa3\x10\xa6\xe6\xa6\x3c\x6a\x09\x3f\x88\x68\xb2\x59\x55\x69\x8f\x77\x43\xdd\x9d\x8f\xd4\x56\x54\xe1\xd7\xd8\xa8\xe6\x34\x1e\xb7\x01\x81\x5b\xaa\xb8\xce\x41\x93\xec\xd0\x17\x16\x38\xd7\x12\xe0\x00\xfd\xd6\x0a\x65\xbd\xb0\x85\x92\x54\xac\x52\xba\xc9\x0a\x4c\x6e\xa2\xfc\xe2\x10\x75\xef\x99\xe9\xd5\xfe\x5e\xad\xd3\xb1\x11\x0e\xc9\xb4\xba\x0b\x4a\xde\x72\x30\x00\xff\xd9\x14\xfd\x53\xc6\xec\x1d\x3b\x9d\x4e\x8c\xb2\x57\x71\xb2\x0a\x89\x85\x54\x52\x30\x43\x7a\xd0\xd8\xf9\xe9\xec\xf4\x66\x76\x75\x7d\x71\x3b\xfb\xe3\xd4\x4f\xd8\xcb\x25\x34\x09\xfa\x8f\x94\xcb\xc2\x17\xab\x6b\xbc\x1f\x4f\x27\xb3\xdb\xf7\x57\xd7\xb7\xc5\xc0\xde\x31\x01\x00\x8d\xd1\x14\x25\xdd\x9b\x78\x2a\x8a\xf9\xcb\x10\xcc\xb5\x10\x19\x2b\x76\x84\xc5\x46\x58\xf6\xf1\x35\xff\x5a\xc2\x11\x2c\x11\xad\x00\x58\x71\x4f\x71\x71\x90\x1c\x64\x89\x79\xe7\xad\x88\x6c\xf5\xde\xb3\xe8\x0f\x9f\x6e\x66\x17\xd7\x1d\x27\xf0\x9b\xec\x68\xb1\x4a\x9a\x07\xe2\xb4\xf4\xda\x82\x21\xdf\x7d\x37\xb5\x12\x69\x7b\xe0\x3c\xf1\x93\x6e\x9a\x4b\x81\xdd\x35\xc7\xba\x88\xc1\xcc\x38\x99\xd6\xbf\xaf\xed\xdf\x64\xfa\xc3\x57\xd3\xab\xab\x0f\xb7\xcd\x96\xd6\x48\xa7\x10\x42\xea\x1d\x45\xa4\xe4\x9c\x67\xf0\xcf\x1f\xfe\xf0\xe1\xf4\xd2\x1c\x78\xa3\x61\x9a\x4c\x49\x22\x44\xd4\x7e\x92\x8a\x99\x40\x17\xde\xa9\x5c\x2a\x4e\xc7\x7d\xd9\x14\xbf\x07\xb7\x3b\x8f\x63\x16\x91\x90\x81\x73\x1e\x84\x9c\xf3\x25\xe1\x09\x4f\x20\x8c\x1a\xe6\x1c\xba\xe7\xf2\xfe\xe2\xc3\xe4\x0f\x0a\x16\x97\x93\x69\x3b\x47\x28\xeb\xa6\xae\x92\x4f\x98\x8a\x50\xc1\x23\xcd\x01\x43\x92\x77\x79\xb8\x62\x88\x77\x4a\x87\xe7\x92\x63\xf8\xfd\x37\x59\x71\x32\xd5\x09\xc9\x02\xaa\xdf\x83\xfa\xfd\x97\x63\x3d\x2b\x20\x5d\x9b\xad\xad\x00\xd7\xb3\xa3\x08\x45\x68\xff\x2b\x65\xab\xeb\x6b\xfb\x91\xa7\x6c\x95\xd3\x34\xdc\x63\x7d\x3f\x4e\xae\x2f\xbe\xfb\x74\x7a\x7d\xfe\x2b\x5d\xe3\xac\x72\x03\xb7\x5f\xc1\x1d\x2c\xc5\x67\xcb\x7d\xa9\xe6\xa0\x3e\x86\x13\x3c\x99\x16\x15\x3c\xea\x3d\x07\x6b\x91\x29\x8e\x02\x8d\x65\x3c\x43\xe3\xcc\x98\x9c\xad\x69\xbc\xc2\x28\x47\x93\xa1\x59\xbb\xd8\x54\xec\xfc\xd0\xeb\x9a\x6e\x1b\xfd\xc6\x42\x9b\x19\x74\x8e\x67\x1d\x73\xba\x54\xa2\xb6\x2e\xad\x32\x1a\x69\x5b\xee\x28\xe0\x61\x5d\xe2\x71\x99\x06\x2f\xac\xf4\x0b\x4c\x36\x90\xcd\xd9\xe4\xfc\xfa\xb8\xfc\xf1\x6d\xf1\xe3\x3c\xfe\xe9\xa7\x11\x41\xf3\xc5\xcb\x88\xc5\xe4\xbf\xd4\x80\xd9\x2b\xf2\x05\xa9\xf2\x75\x7e\x44\x86\xdd\x38\x0e\x86\xb6\x4c\x2d\x79\x9a\x49\xdd\x6f\xc5\x46\xe5\xeb\xf6\x6d\xaf\x6e\x23\x5a\xef\x55\xad\x84\x45\x19\x7b\xaa\x99\x8f\x35\xbe\x52\xcd\xac\x11\x6c\xeb\x8c\xd9\x10\x43\x17\x40\x75\x13\x89\x15\x1c\x8f\x4c\x60\x00\x86\x8c\xd4\x4f\x19\x98\xee\x7d\xf4\x4f\x4f\xed\x7c\x72\x73\xfa\xee\xc3\xc5\xed\xfb\xc9\x87\x8b\xdb\x0f\x57\xdf\x7d\x37\xb9\x74\x2b\x52\xda\xf9\x31\x14\xbb\xca\x58\x59\x01\x5c\x7e\x71\x4d\x30\x11\x9c\xfa\xf9\xf4\xec\xec\x62\x3a\x6b\xbd\xff\xe7\x17\xef\x4f\x3f\x7d\x98\x5d\x5c\x9e\x4f\xaf\x26\x97\xb3\xd9\x95\xe2\xc9\x4f\xcf\x66\x93\x2b\x3f\xf5\xc2\x6e\x9b\x73\x6b\x9e\xdb\x1b\x9d\x01\x27\xcc\x69\x94\x49\x1a\xdc\x3d\xe2\x40\x1a\x6a\xf6\xc3\xdb\x9b\x4f\x53\x25\x15\xec\x05\xb1\x92\x03\x79\xeb\xf9\xce\x62\x40\x7a\x9d\xdc\xcb\xd3\xd9\xed\xd5\xa7\xd9\x77\x57\x7d\x36\xcf\x7b\x68\xcb\x43\x35\x99\x6e\xdf\x2a\x34\x56\x0a\x16\xad\x1b\xd6\x07\x10\x85\x3a\xc4\x7b\xa2\x9b\x5b\x05\xa9\x14\xd0\x47\x54\xa1\x18\x1c\xec\xc3\xd5\x77\xea\xac\x4e\x4f\x67\xdf\xab\xf3\x04\xe8\x15\xbd\xfc\xf1\x3e\xc0\x41\x34\x17\x42\x0a\xb8\x20\x6d\x93\xb7\xfa\xf3\x4e\x5e\x0d\xd2\xe7\x6c\xf9\x26\x7c\x73\xf1\xc3\xc5\xf5\x64\xf6\xc7\x9b\x3f\xde\xe0\x9c\x35\x0e\x07\x44\x5f\x04\x33\xc5\x4b\xd1\xba\x92\x6c\x97\x45\x62\xd5\xb1\x16\x6b\x28\xef\x72\xda\xae\xb0\x35\xde\xfc\xe0\x9e\xa6\x31\x8f\x57\xbd\xae\x95\x73\xbd\x67\xd7\x17\x17\x97\xaa\xaf\x1f\xb1\xa7\xe6\x8a\xfb\x2e\x07\x7a\xf2\xae\xe8\x47\xf7\x44\xab\xdd\x7d\x7f\x71\xfa\x61\xf6\xfd\xc5\xa5\xc2\x77\x6e\x69\xca\x8f\xe3\xda\x16\x3c\x99\xce\x54\x97\x37\x5a\x4e\x03\x0e\x34\x97\x18\x10\x50\xde\x64\x9d\x0c\x2d\x5e\x62\x31\xd2\xf6\xfb\x54\xe9\xb0\x55\x4e\xa9\x4e\xf5\xb1\xca\x3a\x97\xb3\x9f\xf9\x1d\x73\x1a\x34\xb8\xa9\x20\xc9\x4f\xc8\x17\x5f\xbf\xae\x58\x72\x23\xbe\x65\x31\xcb\xb2\x69\x2a\x16\xf5\x8a\x7b\xec\xa1\x91\x2f\xa0\xb4\xde\xd4\x7f\x1f\x11\xdb\xc0\x5b\xd7\x09\x61\x8b\x11\xdc\x90\x91\x1a\xd3\xf1\x72\xc1\xd3\xd0\xf1\x2e\xa9\xba\x02\xbc\x79\x5d\x7d\x0d\x1e\x9d\x34\x3a\x67\x11\xdd\x79\x1b\x2d\x29\x8f\xf2\x94\xcd\xd6\x29\xcb\xd6\x22\x0a\x4f\xc8\xdb\x2a\x28\x69\xc8\x7f\x6e\x28\xd4\x4c\xf3\x55\x30\x38\x5e\xb6\xc2\xa1\xb7\xa2\x3a\xe2\x8b\xe3\x8d\x08\x73\x47\xca\x38\x3c\xd0\x11\x5f\x8c\x3c\x0d\xd4\xa4\xae\xe2\x68\xe7\x2a\x0d\x51\x1d\x25\xcd\xe3\xe3\x07\xbc\x36\xe3\x48\x28\x8a\xed\x1a\x4a\xb7\x18\xb9\x5a\x94\x63\x21\x1d\x6a\x19\x6c\x4b\x53\x18\x10\x81\xee\x1e\x6a\x4b\xd3\x51\x9a\xc7\x23\x77\x9b\x3d\x07\x03\x8b\x71\xc7\x60\x0a\x8c\x8f\x1a\x0c\xbb\x40\xb5\x6c\xb6\x8b\x1b\x89\x9f\x5c\x2b\x57\xe7\x8c\xae\x1a\x79\x4e\x5e\x60\x85\x61\xa3\xe9\x3c\x22\xf7\x0c\xdc\x97\xb5\x46\x14\x68\x16\x24\x29\xc8\x75\xb2\x14\xd5\x52\x51\x5f\xf4\x82\x21\x54\x92\xe3\x6c\x97\x1d\x2f\xb3\xe3\x45\xb2\x54\xbc\xea\x3d\xd3\xad\x31\x31\x5a\x7d\x38\x48\xd6\x28\x49\xc8\x53\xf0\x45\xab\xd7\xf6\x33\x8b\xcb\x76\xd9\xb2\x71\xb8\xec\x75\xe9\x41\xeb\x4d\x5e\x90\x77\x1c\xfb\xc6\x6c\x7b\x1b\x46\x63\xcc\xfe\x01\xc9\xc4\x8a\xc9\x75\x2f\x85\x4b\x14\xbd\x92\x54\x24\x74\xa5\x44\x40\x1d\x69\x5a\xd3\x74\x9b\x71\x75\x6a\x5f\xe0\x90\x79\x46\xee\x62\x71\x1f\xdb\xa0\xa3\xb2\x32\x18\xba\xdd\x60\xb6\xe8\xea\x94\xb5\x43\x8f\x4e\x0d\xdc\x18\x09\x81\xa0\x27\x05\x8e\xb8\x95\xcf\xdd\xe0\x0c\x62\x3e\x8a\xc4\xaa\x69\x55\x6a\x1e\x96\x48\xac\xf4\xc9\x3d\xae\x19\xed\x89\xf7\x7e\x23\x6a\xa9\x1a\x25\x4c\x20\x9d\xed\xf6\x5c\xbe\x1f\xb5\xa3\x12\x05\x45\x98\x53\x0d\xbf\xb5\x20\xa8\x51\xe7\x35\x6e\xef\xd4\x87\x22\x46\x9d\x37\xb6\xbb\x5f\x17\x36\x18\x75\x60\xb8\xf6\x5e\xdb\xb1\x27\xfa\x23\xbf\xe7\x11\xbb\x4a\xcf\x2a\x91\x1f\x2d\x37\xac\x7d\x40\xe7\x7d\xc3\x71\xce\xcd\x5d\x6e\x0e\x56\x06\xec\x1a\x27\x80\xb3\x4b\x97\xbd\xce\x63\xf5\x6c\x9f\x92\xd3\x96\x3a\x6a\x37\x7c\xb6\xf7\xe8\x31\xa8\x96\xab\xd0\xa1\xc2\x67\x97\x13\x90\xc5\x3d\x2b\x71\xdc\xb4\x1e\x67\xc4\x73\xef\x5e\x90\x8f\x16\x3a\x2d\x11\x27\x70\xa2\x75\x57\x41\x3b\x42\xc9\x94\xdd\xb7\xbb\x02\xf5\x2e\xa4\x53\xa9\x45\x97\x58\x1d\x55\xdd\x0d\x8b\x70\x30\x2b\x12\xcc\xee\xd1\x04\xab\x64\x26\x5f\x97\xed\x0f\x08\x9c\x57\x69\x5a\x74\x80\xab\xdd\x67\xaa\xe7\xcd\x72\x7a\x66\x95\x9b\xa6\x35\x78\x7e\x83\xb4\x03\x8b\xb8\x89\xab\x67\x3e\x9d\xd7\x80\x34\xd1\x8c\x83\x1e\x37\x2f\x4b\xd3\xca\xde\x9c\x69\x87\x35\x7a\xdf\x29\x6b\xb5\x89\xb1\x8e\x4f\x21\xb0\xe4\x9c\xa7\x0d\xc5\x02\xae\xa7\xb4\xa3\x17\x2d\x31\x3c\xc2\xa3\x8e\xd0\x50\xc8\x33\xd8\x3a\xc5\x37\x5b\x3e\xc2\xf0\xcf\x88\xc9\x91\x0e\x67\x39\x46\xba\x72\x0c\xcd\x0a\x80\xfd\xbf\x79\x98\x15\x1a\x07\x52\x44\xde\x74\x79\x4f\xdb\xa1\x2b\x65\x78\x52\x3d\xf8\xe7\xf1\xb1\x2c\xfb\xc6\x01\xd5\xf3\x6c\x14\x31\x41\x37\x8c\xd9\xb9\xe3\xd6\xf9\x62\x1c\x88\xcd\x71\x25\x98\xed\xb8\x99\xa5\xc3\x19\x9a\xa3\x03\x78\xac\xfc\xcc\xfb\xe4\x28\x79\x74\xe0\x8e\x23\x0f\x89\x09\x6b\x40\x4d\x7b\x25\xa9\x17\xd5\x45\xb5\xd1\x1f\x19\xf2\x54\x46\x0c\xb4\x8b\x5b\x86\x57\xc1\xe4\x9d\x4a\x59\x12\xf1\x80\x66\x10\x32\xf3\xa8\x80\x20\xd7\x22\xb3\x32\x2c\xa8\xbc\x1a\xd7\xac\x0c\x99\xec\x8a\xc8\xe9\x04\x23\x21\x6d\xa0\x24\x7d\x82\x7a\x7c\xdd\x82\x47\x0e\x72\x5a\xc6\xed\x5d\x31\x9d\x34\xbd\xab\x45\x3d\x24\xa2\xe4\x25\xdd\xa1\x39\x3f\x7b\xb8\x8a\xc1\x35\xb3\x32\x76\xc4\x42\x18\xd5\x88\x12\x2b\x30\xcb\x6e\x5e\x44\x65\xbd\xf5\xa0\x1d\x5f\x5c\x8a\x5b\xf7\x63\xb5\x36\x66\x59\x6f\x4a\x39\x41\x30\x8d\x67\xc4\x24\x14\x9f\xcc\x63\x5f\x1c\xcb\x10\x05\xd3\x2b\x0a\xc6\x46\xe9\xd8\xe6\xb3\x23\x62\x7c\xb7\xa6\x11\x1d\xf3\x39\x21\x23\xb5\xe4\x5c\xbd\xa2\x47\x0a\xbb\x9c\x2b\x80\xc4\xe9\xe6\x35\xea\x87\x66\x48\xd5\xbb\xba\x6c\xe0\x76\xb2\x6a\xb8\x1e\x69\xcf\x16\x2c\x91\x63\x9f\x77\x29\xd4\x11\xf7\x88\xeb\x5a\xff\x7a\x7b\x76\x75\x39\xbb\xbe\xfa\xf0\xe1\xe2\xda\xa7\xa8\x6e\xea\xbb\xf6\x72\x59\xb2\x1c\x96\x9e\x49\x43\xa9\x58\x13\xd0\xcf\xad\x59\x70\x37\xaa\x66\x17\x2b\x9b\x8d\xa2\x3d\x34\x6f\xbf\x42\x0d\x64\xcf\x55\xa6\x9d\xab\xfc\x99\xb8\xaf\x7d\x98\x93\x3a\x27\xf6\x33\x79\x9e\xd8\x4b\x44\xf1\xe1\x78\xfb\x66\xc1\x24\x2d\x96\x3b\x15\x61\x39\x1e\x0e\xf7\xcb\x33\x64\x8e\x60\xe4\x27\xe2\xac\x7a\x32\xc2\x4c\x06\xe1\x28\x53\xec\x96\x34\x4c\x70\xcf\x2f\xe5\x4e\xb1\x29\x3d\x3f\xd1\xb9\x44\xd8\x28\xa0\x31\x8d\xf4\x57\x07\x47\xff\x3f\x42\xc8\x81\xee\x6f\xfb\xe5\xf8\x8b\x37\xe3\x37\x07\x27\x44\x9b\x34\xb5\x5f\xc0\xc9\xef\x48\x96\x44\x1c\x92\xac\x93\xf9\xc1\xd1\xfc\x80\xd8\x46\x7d\x82\xb9\x6c\x75\x2e\x88\x99\x1e\xb2\xf4\x66\xd4\x2f\x74\xef\xbd\x57\xa7\x33\x26\x55\x52\x05\x9c\x19\x6f\x18\xc2\xb3\xa2\x3c\x48\xb1\x34\x2c\x66\xbc\x04\x19\x90\x85\x66\x5c\xdb\x9b\xa4\xcc\x85\x67\x3a\x6a\x5e\x4d\xff\x81\x2c\x5d\x6b\x7c\xc7\xb0\xf8\xee\x05\x26\x66\x53\xd3\xd4\xa6\x4f\xe4\x3e\x61\xcb\x6e\x35\xc5\xbe\xc5\xde\x6d\x53\xec\x0b\x72\x56\xac\xc6\xe3\x5d\x59\x75\x5b\x54\x9f\x2f\x78\x1a\xba\x3f\xff\x38\xfb\x64\xa2\x18\xd5\xbd\x36\x21\xa7\x98\x60\x7d\x49\x03\x5d\xca\x0f\xdd\x98\x90\xe9\x7a\x41\x46\x64\xb2\xb4\x7c\x9c\x4a\x2f\xb8\x23\x53\x16\x7c\x27\xf2\xb4\x70\x8f\x56\x63\x8c\xc8\xdb\xd7\xe6\xe3\x2b\xb9\x66\xe9\x3d\xcf\x18\x68\x9c\xb5\x8b\x5f\x4a\x8c\x8a\xbd\x67\x7f\x5f\x7b\xfa\x9b\x4c\x27\xd3\x9e\x5d\x7c\xe1\xe9\xa2\xd4\xd7\xd0\x78\x47\x58\x1c\xd0\x24\xcb\x4d\x78\xa8\xa7\xbb\x71\xc9\xad\xab\xce\x0d\xb3\xad\x7a\x63\xf8\xd3\x6b\xcd\xc0\x18\x07\x2b\xed\xfc\xf2\x71\xf6\xa9\xe1\xf4\x52\x63\xd3\xed\x2f\xde\x7c\xf5\xd5\xeb\x86\x43\x81\x2f\xb8\xc8\x64\x5d\xf2\xc5\x18\xc1\x67\xc0\xd1\xa1\x5e\xfc\x85\x29\x9d\x01\xba\x34\x6e\x92\xa4\x96\x75\xee\x72\x29\x36\x14\xf8\xb1\x68\x47\x12\xa1\xf3\x0f\xeb\x63\xe1\x61\x11\xc1\x66\x9b\x65\x7c\x15\xdf\xf2\x64\xfb\x76\x7e\x50\xda\x9b\x15\x78\x0a\x8f\x94\x7a\xa6\xa8\x8c\x2c\x45\x8e\x6e\xb7\xcd\x38\xa3\x13\xf2\xb7\x11\x22\xda\x9f\x0c\xbe\x9d\x1f\xc4\x50\x3d\x4f\x3b\xcd\x2a\x31\x6c\xa4\x3f\xb2\xea\x82\xcd\x0f\x82\xd8\x5c\x67\x6c\xfb\x7a\xfc\xe5\xf8\x4d\xa5\x85\xd6\xae\xa8\xd7\x7f\x2a\xe9\xfb\x4f\x36\xa9\x9f\x1f\x80\x5b\x2f\x74\xa0\x15\xd7\xd5\xda\x63\xf3\x83\x48\xac\x6e\x23\xb6\x65\x11\xb6\xfa\xf1\xf4\xfa\x72\x72\xf9\x9d\xb3\xd9\x92\x47\xec\x36\xa1\x72\x8d\x4d\x1d\xea\x4e\xf5\xbf\x71\x24\x56\x8d\xcf\x0b\xbf\xf3\xdb\x72\x42\xb6\xd3\x7a\xad\xb9\xda\xf6\x12\x4c\xb7\xb7\xae\xe8\xaa\xdb\xdb\xc6\x67\x1b\x99\xab\x2f\x6e\x6f\x75\x6c\xd3\xed\x6d\xad\x01\x06\x23\x9f\x28\x20\xf5\xf6\x2b\x72\x41\xd1\x44\x35\x37\x5b\x96\x47\xe8\x2b\xfb\x08\xb5\xb6\xac\x1c\xb6\x16\xa5\x5b\xcb\x4c\x3c\xae\x3b\x7f\xaf\xad\x1f\xf9\x19\x0d\x01\x7f\xd7\x77\xdf\xd4\xdc\x9e\xeb\xfd\xd8\x5b\xe7\xec\x4b\xa7\x1a\x56\x64\xc6\xda\x42\x0c\x05\xbc\x35\x2e\x3d\x6a\x07\x2b\xa3\x94\x7f\xd8\x03\x7a\x4f\x74\x22\x52\xb9\xa1\x49\xe3\x18\x64\x31\x95\xaa\x85\x02\x68\xed\x55\x40\x13\xba\xe0\x11\x66\x86\x82\xa9\x43\x2f\x1f\x69\x92\xf0\x78\x95\x99\xaf\xf6\x9d\xc9\x82\xc6\xe1\x3d\x0f\xd5\xcd\xe8\x1e\xd0\x6a\xdc\x1c\xcd\xfc\x53\xc7\xc5\xf6\xd0\x43\xde\x85\xe1\x28\x48\xc3\x0a\xcf\xf5\x5c\x05\x72\x1a\xc9\xdc\x9e\xa1\x4c\xce\xbb\xef\xa6\x95\xbc\xd8\xf8\xae\x2c\x96\x53\x7f\xdf\x2c\x99\xe3\x49\x39\x57\x16\xce\xa9\x37\x98\x97\xe5\x73\x34\x3f\x38\x7f\x9e\xda\x39\xf5\xb9\x57\x0b\x6f\x54\x29\x0b\x96\x96\xdb\x41\xc0\x44\x2a\x72\x59\x55\xea\x0c\xb5\x73\x86\xda\x39\xf6\x16\x0c\xb5\x73\x7e\xb6\xda\x39\xf5\x4b\xdc\xac\xa0\x53\xad\xec\xa6\x2e\x70\xe5\x6a\xf7\x2f\x95\x43\xb3\x4b\xa8\xa5\xec\x08\x97\xa8\x5d\xe8\x1b\x6c\x68\x4a\x72\x19\x45\xe5\xe9\x8d\xae\xc6\x8c\x52\xe6\x62\x47\xa8\xe6\xa9\xff\x74\x8e\x4d\x9c\x91\x18\x6f\xbf\xfa\xfa\xcd\x17\x7f\x3e\x6c\xbe\xc2\xb4\xa8\x27\xea\x76\x7e\xf9\x45\xf3\x35\x82\x54\x5d\xdd\x55\xb3\x00\xb4\xd9\x79\xd7\x42\x6b\xeb\x39\x2b\x9b\xe2\xfd\x30\xb5\x80\x10\x96\xfa\x04\x19\x38\x63\xc2\x2f\xd6\xf4\x89\x01\x10\xa6\x0b\x2e\x53\x9a\xee\x74\xc1\x57\x08\x7e\xa1\xe8\x47\x8b\x61\xb0\x7b\x15\x0f\x72\x4e\x73\x57\x6e\x7f\x26\x69\x1c\x2a\x71\x53\xa4\x24\xa2\xe9\x8a\xd5\xa7\xeb\xea\x94\xc0\x12\xd4\x4d\x73\x04\x49\xe2\xd3\x72\x48\xf0\x01\xf2\xe4\x7e\x55\xaf\xfd\x44\x37\xa6\x7c\x7e\x19\xa4\x6d\xa6\xe7\xad\x60\xdf\x5d\xb9\x1e\x55\xbb\xbd\xa6\xf0\x03\xe0\x39\xc8\x12\xba\x80\x9c\x17\x78\xae\x14\x57\x4c\x4f\xe2\x78\x7e\x00\x35\x82\xf1\x8f\x93\xcd\xc6\x59\x6b\xdc\x3c\xef\x45\x5a\x42\xbd\x5c\x4d\x9e\x31\xab\x3b\xec\xff\x48\x17\xd8\x50\xbf\xcf\x0f\x14\xd0\xfd\xdd\xce\x0f\xe0\x43\x9a\x32\xf2\xe6\x2d\x59\x70\xa9\x2f\xd2\x18\x06\xac\x6f\xad\x35\x1a\xcc\xd7\xdf\xaf\x6b\x26\x47\xc5\x68\x71\xa8\xc4\x98\x8d\x1e\xf8\xcb\x2f\x2a\x03\xff\xa8\x3e\x71\xd6\xdc\x34\x53\x86\x65\x61\xa1\xda\xd3\x1b\x82\x28\xc1\xd7\x79\xc2\xd2\xd1\xe9\x8d\x89\x07\xe5\x8d\x4c\x0a\xe5\x93\x50\xa9\x68\xf1\x09\xf9\x3f\x2f\xe7\xf3\xf0\xff\xff\xea\x04\xff\xf3\x5f\x7f\xab\xfe\x6d\x7e\x7e\xec\x09\xf2\xe1\x63\xfb\xad\xa3\x2e\x17\xf2\x86\x2c\x9e\x8a\xd4\x85\xcc\x2a\xe7\xee\x43\xd1\xd2\x20\x4a\x08\x37\xc1\xbd\x50\xb8\x25\x49\x85\x14\x81\x88\x0c\xf7\x82\x5d\x3b\x21\x73\x6e\x6a\xd0\x4a\x41\xde\xfc\xef\xdf\x36\x9b\x6c\xe8\x03\xdf\xe4\x9b\x13\xf2\xf6\xeb\xaf\xbf\xfc\xda\xf1\x9e\xc7\xf8\xfe\xcd\x9e\x88\x34\x12\xab\x1b\xb6\x65\x29\x97\xbb\x9b\x20\x65\xac\xce\xeb\x35\x96\x7d\xf8\xa1\xfe\x85\x59\x7e\x24\x56\x24\xd3\x6f\x08\x5d\x88\xad\x31\x19\x45\x62\xe5\xac\x1e\xab\x4e\x0e\xd4\xcb\xd5\xcc\x5b\x26\x43\x91\x4b\x8b\x9c\x90\xc9\xe5\xfb\x2b\x17\xe9\x68\xdb\x7e\x45\x92\x66\x90\xb3\xed\x23\xcb\xd6\x18\x60\xdb\xb4\x77\xd4\x57\x75\xe9\xfa\x8a\x64\x4c\x96\xe5\x8d\x97\xb9\xb6\xc4\x62\x68\x47\xd3\x47\x5b\x3d\x6a\xe3\x37\x90\x61\xad\xd0\xc7\xd9\x0b\x52\x22\x9a\x7f\x41\x0b\x21\x22\x46\x1b\x3c\x71\x92\xb2\x25\x7f\x38\xb5\x6b\x63\x74\x52\xbd\xa9\xe3\x9b\x92\xb2\x80\xdf\x13\xb4\xa8\x96\xdc\x70\xad\xa8\x8d\xdd\x20\x7b\x14\xb1\x6d\x4e\xa8\xd4\x52\x67\xd5\x69\x58\x14\xca\x8d\x00\x4c\xd4\x69\x59\x0f\xfa\x6c\x72\x7e\xfd\x38\x62\x17\xf0\xd0\xc5\x13\x39\x96\x00\x8a\x7d\xd0\x19\xc3\xb1\x2e\x7b\x36\x37\x7c\xc1\xca\x75\xb8\x2b\xeb\x92\x5e\xd4\xaf\x9d\xbb\x71\xcd\xcc\xe2\x71\xb4\x5f\x9e\xe1\x72\x18\x87\xc3\x5b\x92\x17\x60\x5d\xfc\x88\xdf\x78\x21\xa3\x2c\x17\x12\x1e\x93\xf9\x81\x62\x4b\xb3\xb1\x35\x0a\x52\xd5\x5e\xec\x08\x41\xa9\xae\x93\x2a\xb7\x10\xdf\x76\x32\xd5\x4e\x95\xdb\x89\xaf\xbf\xe7\x2e\xaa\xdc\x49\x7c\xdb\x26\xdd\x41\x95\x3b\x69\x6f\xaf\xbe\xfb\x13\x65\xff\x15\xc6\xa7\xfb\xc4\xb6\xd2\x54\xf2\x39\x04\x59\xdb\x85\xb4\x2e\x65\x32\xed\xc4\x7c\x37\xf5\x0f\x00\x18\x90\x08\x4d\xdd\x5f\xcc\xa0\x8f\xa2\x2b\xde\x63\x3d\x82\x13\xf7\x69\xe3\xae\xe9\x45\xfb\xd2\x82\x9c\xba\x2c\xb1\x4f\x51\x4b\x1e\xcb\x85\x1b\x14\x80\x45\xc1\x5d\xfd\xe2\x24\x8a\xcc\xdd\xe0\x86\x13\xef\x2a\xc3\xe9\x70\x6d\xb9\x66\x9b\xc7\x23\xdd\x3a\x2c\x30\xb9\x7e\x29\xd9\x5b\xae\x75\x51\x24\xee\x15\x1e\x35\x4d\xdd\xfb\x5c\x82\xf0\x19\x90\xed\xb3\x31\x75\x7a\x87\x2f\x1e\x50\x0d\xd4\xff\x10\x59\x5f\xb8\x4f\x91\x48\xad\xd8\x59\xd7\x9c\x75\x47\xc4\xf4\xa4\xf6\x76\x6c\x27\xf2\xa9\x37\x28\xb2\x06\x80\xff\x63\x3d\x75\x00\x3e\x25\x91\xd1\xd5\xf0\x77\x58\x41\x14\x8f\x8c\x88\x59\x59\x91\x1e\x27\xfa\xd9\x27\xa8\x9c\x5d\xe7\x11\x72\xef\xae\xb5\xfe\x7f\xed\x43\xf4\x41\xd0\xf0\x1d\x8d\x68\x1c\xec\x83\x8d\x6a\x5f\x7d\xe6\x61\xb2\x7b\xf3\x1e\x28\x5d\xe2\xc9\x6e\x3b\x9e\xc4\xab\x94\x65\xce\xbe\xeb\xe7\xee\x17\x38\x64\x55\x20\x3d\xf2\xa0\xd5\x60\xf3\x2f\x79\xd8\xfe\x25\xcb\x43\x3f\xbf\xb9\x08\x0a\xfc\x3c\x8f\x95\x68\xca\x8c\x68\x5c\x31\x0e\xa9\x9f\x9d\x36\x21\xab\xd6\x50\xc5\x14\x94\xe8\x7e\x9e\xcb\x02\x34\x98\x6a\x06\x53\x8d\xbd\x05\x83\xa9\xe6\xe7\x34\xd5\x28\x74\xd0\xb4\xd0\x18\xe7\x1f\xcb\xd4\x6a\x1a\x17\xbb\xf7\xf4\x66\x9a\xd9\x9a\x95\xb2\xa1\x31\x0f\x29\xf4\xe3\x20\x73\x9f\x63\x69\xb9\x63\x2c\xb9\xc2\xfa\x2e\xd1\x25\x7b\x90\xdf\x8b\xa4\x6b\x6a\x57\x89\x71\xc1\x52\x1f\xc3\xc4\x74\x85\x98\x88\xc4\xec\x41\xae\x45\x82\x59\x15\x31\xec\x10\x2d\x27\x5d\x0a\x42\x80\x29\x51\x40\x55\x67\x5c\xc2\x25\x29\x9c\xaa\x2c\x45\x12\xec\x08\xb8\xaa\xb2\x50\x7d\xe2\xea\x57\xf5\x92\x15\xaa\xbc\x5c\x67\x6d\x9c\x1f\xa8\xc9\x11\x35\x3b\x35\xef\x6f\x95\x08\x1e\x67\x92\xd1\x50\x81\xd7\x7a\x9b\xb1\x68\xf9\xed\xfc\xe0\xa5\x36\x8c\xbd\x72\x0d\xa1\x43\x33\x0b\xc7\xb0\x45\x4a\xe3\x60\x6d\xf6\xe9\x52\x0d\x2d\x62\xed\xa7\x38\x0e\x96\x2b\xa7\x59\xa2\x55\x2b\xb8\xa1\x0f\xd7\x0c\xf2\x8f\xcd\xb8\xd3\x5c\x53\x3d\x2e\x7c\xc3\x4a\xc7\x65\xa8\xef\x23\x96\xf2\x5e\x17\xb2\x51\xbd\x8c\x09\xf9\x51\x6d\x47\x29\xd5\x3a\x39\x1a\x5d\x48\xa2\x80\x78\x68\xd2\x90\xae\x52\x1a\xb0\x65\x1e\x99\xfe\x88\xe4\x1b\x06\xfa\x5c\xec\x57\x61\x8f\xae\xbe\x19\x79\x37\xb9\x3e\x2f\x2c\x8e\x62\x49\xde\x7c\xf1\x3a\x33\x8e\xad\x5e\x08\xf9\x15\xc1\x7d\x6e\x51\x91\x51\xb4\xc8\x67\x69\x10\xb0\x96\xea\x75\x45\x2c\x0c\x3a\x83\xb0\x7d\xe7\x8e\x67\x44\xd2\x74\x05\x15\x37\x16\x3b\x04\x14\xdc\x47\x4c\x03\x80\x60\x03\x20\x30\xa9\x8b\x3d\x8b\x4a\x78\x94\xa7\x53\x4b\xcb\x00\x99\x01\xa0\x2b\xb0\x2f\x30\xa8\xa0\xac\x3e\xce\xca\x28\x21\x73\xf2\xca\x8a\x5d\xfb\xc2\xcc\x11\xae\xe5\x84\x5d\x51\x3b\xc8\x68\x63\x71\x7c\x48\x6b\xa0\xb9\x00\x08\xdf\x2b\x20\xc1\xe3\x95\x3e\x0c\x6d\x27\x0b\xc0\x53\x5c\x12\xc4\x13\xc6\xba\xc7\x36\x89\xac\xa7\x87\xe8\x5a\x52\x42\xb3\xec\x5e\xa4\x9d\x26\x80\x2b\x9d\x8e\x17\x61\xab\x3f\x2a\xd6\xa6\xe7\x9f\x91\x15\x8b\x59\x4a\xad\x4d\xf6\x58\x01\xda\xd0\x3f\xe9\x16\x3c\xd0\xf9\xbd\x25\xc1\xa1\x73\x33\x14\x4f\x71\xc7\x76\xc0\x9a\xe9\x2e\xcc\x79\x80\x43\x9c\x88\xf0\x30\x2b\x3d\xb5\x3d\x0a\xc1\x4e\x99\x08\xf3\x26\xfa\xf5\x85\x8d\x2b\xa6\xe7\x84\xb8\x19\x66\x25\x85\x3e\xba\xc0\x99\x8c\x09\xf9\x88\x5b\xec\xef\x94\x10\xaa\x18\x25\x1e\x9a\x2e\xee\x98\xeb\x28\x98\xa7\x8f\xce\xb2\xd5\xce\xdd\xb0\x10\x59\x25\x15\x52\xb6\x64\x29\x8b\xa5\x93\xeb\x69\x2b\x70\x24\xb6\x4a\xd4\x65\xf7\xc7\xba\x78\xf5\x48\x89\xd3\x23\x64\x46\xb2\x63\xd8\x98\xe3\x17\x1d\x1a\x7a\x42\x66\x57\xe7\x57\x27\xe4\x34\x0c\x89\x00\xe5\x7e\x9e\x01\xe2\x85\xbb\x92\x8d\x2d\x69\xe0\x08\x98\xd1\x23\x92\xf3\xf0\xff\x72\x58\x9d\xf6\x81\x55\x91\xad\xba\x27\xbc\x6e\x00\x6d\xed\x0a\xeb\x99\x02\xdb\x0d\x6e\x9c\x48\xc1\x3f\x41\x1d\x8a\x4d\xf7\xae\x6b\x43\x44\xd7\xec\x3d\x54\x12\x1f\x53\xcd\xd5\x33\x79\x88\x6a\x74\xbf\xea\x23\xc1\xbb\xdf\x2a\x8c\x31\x99\xf6\x21\x40\x65\x0a\x63\x9b\x8f\x23\x4b\xa1\x75\xb2\x8b\x1d\x08\x5a\x06\x3f\x25\x22\x75\x12\x20\xed\x9c\x03\x15\x6a\x59\x0a\x8a\x1a\xa0\x3d\x60\x96\x8e\x0b\x97\x1e\xf0\xd6\x38\x32\xf6\x98\xd2\x72\x35\x3f\xf8\xd3\x3c\x7f\xfd\xfa\xcb\x60\x32\xdd\xbe\x85\x7f\xb1\x3f\x9f\xc0\x58\x4e\x0f\x04\x30\xdf\x14\x1f\x7c\x85\x1f\x9c\xe0\x0f\xf0\x15\xfc\x80\x76\x12\xc8\x9e\x0a\x73\xa9\x2c\xc2\x9a\x94\xa1\x8b\x4e\x2e\x10\x5c\x72\x34\x0d\x01\x60\xc5\x21\x29\x9c\x94\x16\x2c\x12\x0a\x2f\x03\x8b\xa8\x1d\x5a\x01\xd7\x41\x95\x80\xd2\x48\xef\x46\xb2\x80\x1e\xeb\x4e\x58\x9a\xd0\xde\x33\xcd\x1a\x52\x89\xd3\xd5\x90\xdd\x97\xfe\x28\xa1\xe1\xb1\x24\x35\x65\x1b\x21\x0b\xca\x5a\xd9\x59\xe4\xaa\x7c\x14\xc8\x26\xa4\x53\x38\x89\x55\xb0\x21\xae\xa8\x11\x56\x74\x80\xa9\xa6\xf1\xaf\x2e\x44\x71\x46\x0b\x26\xef\x19\x8b\xb5\xcd\x3f\xa0\x91\xa9\xfb\x1f\x96\x8c\xb7\x3d\x6f\x48\x20\x55\xf0\x8b\xee\x1d\xd6\xf9\x75\xf5\x08\x7c\x49\x16\x42\xae\x95\xac\x9a\x21\x0f\xa1\x78\x81\x77\xdf\x4d\x15\x52\x19\xab\xa6\xa7\xfa\xbe\xb4\x33\x94\x6a\x4a\xd8\xf7\xdb\xfe\x7d\xbf\x6d\xf4\x3d\x26\xea\x9a\xba\x06\xd0\xcb\x2c\x3d\xe3\x02\x01\x7e\x61\x46\xd8\xb6\xc0\x70\x98\x55\x06\x32\x1b\xe1\x9c\xb7\xde\x7c\x2c\x07\x5f\x66\x51\x5c\xea\x52\x94\xc5\x75\xd9\xf3\x24\x22\x2f\xa2\x97\xd7\x79\x14\xf5\xea\x4b\xff\x07\x05\xcd\xb5\xb8\x6f\x84\x97\xa1\x7a\x42\x63\x30\xd7\x72\xba\x79\xa8\x26\xc3\x54\xf8\xc4\xf8\x4d\xcb\xf3\x83\x4f\x19\x83\x5a\x11\xd3\xf9\x81\xc9\xea\x65\xcf\xad\x60\x7b\xd4\xe1\xd7\x92\x61\x65\xb2\x63\xd5\xc9\xa5\x23\xe7\x27\x3e\xd8\xa5\x82\x75\xeb\x92\xf7\xda\x85\x41\xb5\xeb\x50\xed\x56\xab\x6c\x3f\x87\x86\x57\x8d\x70\x8a\x23\xec\x1a\x7a\x5e\xfb\xa5\x43\xdb\xeb\xaa\x01\x6e\x29\x7d\xad\xd7\xbb\x41\xf5\x3b\xa8\x7e\x07\xd5\xef\xbf\x9f\xea\xd7\xc6\x10\x3d\x15\xc0\x4d\x8c\x53\x3e\xfb\x6b\x85\x3d\x56\xc8\x36\x6a\xaf\xab\xbf\x76\xd1\xf9\x73\x53\x24\x36\x0e\xa1\xba\x96\x56\xe0\xc0\xc9\x01\xdc\x46\x0c\x72\x53\xe7\x76\xc1\xa0\xd2\x10\x7e\xe3\x94\xbe\x21\x26\x1d\xb5\x36\xf6\x39\x5f\xa2\xbb\x58\x42\x25\x87\x10\xb6\x1d\xf2\xe7\x22\x0a\x81\xea\x47\x8c\x66\x7a\x68\x27\x25\xe6\x99\xa4\x77\x0c\x4a\x80\xa7\xcc\x4c\x0f\x47\xa1\xe5\x28\x4f\xa3\x20\x6c\x65\xa1\xa4\x5d\xb4\xbd\xcf\x37\x1e\xd1\x73\x04\x5b\x5a\xff\x4d\x03\xb6\xfe\xb3\x2b\x41\x0a\xcc\x64\xe0\x2d\xfc\xbc\x45\x33\xa1\x55\x99\x89\x62\xb4\x62\x31\xe4\xb2\x5a\xe4\x5c\x9d\x40\x18\xc0\x0c\xff\x12\x30\x13\x68\xf5\x21\x31\x08\x17\xf1\x8c\x6f\x58\x26\xe9\x26\x39\x21\x71\x1e\x45\xf3\x5a\x16\x04\x10\x73\x00\x66\xcf\xc2\xbd\x94\x55\xa8\x6f\xac\xa4\x2c\x25\x03\x53\x7f\xdf\xe4\x61\x9a\xd3\xac\xb3\x31\xf5\x16\x03\x27\x33\x70\x32\x03\x27\xf3\x6f\xc7\xc9\xd4\x51\x45\x3f\x66\xc6\x8d\x80\xca\xe7\x11\xfc\x4c\x44\xb3\xac\x47\xec\x1e\x36\x23\x21\x0b\x22\x6a\xac\xbb\x00\x44\x75\x71\xd5\x3e\xa5\x9b\x22\xdf\xc7\x46\xc4\xdc\x63\x46\x43\x0d\x04\xcf\x6c\x05\x21\x5e\x4b\xb0\x87\xa2\xef\x1d\x2a\xaf\xf8\xd6\xb8\xce\xa9\x13\x29\x52\xe9\xd1\x89\xd3\x85\xc8\x25\x09\x58\xaa\x40\xa7\x4e\x1b\xc4\x8a\x54\x67\xb5\x97\x47\x5c\xbb\x12\xbe\xc5\x31\xf1\xd1\x76\x4e\xae\x01\xea\x34\x73\x2e\xdd\x90\x84\x46\xda\xb5\x70\x3f\xd6\x09\x6f\xdc\xb4\x92\x2e\xac\x63\xd6\x9f\x9a\x9f\x14\xb1\x56\xf0\x23\xa1\x52\x3b\x71\x77\x1d\x51\xf5\x94\xba\xee\xe2\xf6\x63\x82\x47\xf2\xda\xae\xc7\x52\xef\x8a\xa4\x6c\x99\xb2\x6c\xed\x64\x77\x3f\x62\x60\x96\xee\xd1\x4c\x8b\x67\xe0\x20\x19\x52\x97\x85\xea\xf1\xde\x18\xde\x5b\x5f\xf2\x6b\x1e\x48\x36\xee\x3d\xae\xcc\x26\xa0\x62\x81\x7c\x21\x72\x96\xea\x24\xd7\x3f\x6a\xac\xe5\x52\xa0\x45\x0e\xaf\x60\xcc\x58\xc8\xd0\x62\xaa\x2f\x50\xc6\xd5\x49\xe2\xa0\xb2\xd4\x20\x27\x8b\x9d\xee\x77\x0f\x97\x98\x15\x8b\x3b\xc3\xf1\x4e\x55\x23\xb2\x16\x51\x98\xe1\x07\x66\x12\xa2\xb4\x7f\xee\x6f\x86\x5d\xf0\x34\xfc\xe1\xab\x3e\x06\xd8\x77\x93\xeb\xf3\x1f\xbe\xb2\xfd\x55\x4b\xfe\xa0\x0a\xdb\x1c\xd0\x84\xea\xf9\xab\xc7\x1b\x60\x23\x9a\xc9\x77\x42\xf8\x7c\x3f\x9c\x53\xfc\x60\x7d\xa3\x21\x55\x44\x98\xab\x29\xd9\x7d\xfa\xbb\x24\x48\x86\xd1\x71\x45\x46\x44\xe4\x32\xc9\x5d\xaa\x68\xf3\xf4\xb1\x2e\xaa\xa1\xaf\x59\x25\xd4\x6c\xdf\x95\x39\x3e\xf7\x2d\xd2\x34\xfd\x05\x16\x0a\xce\x4e\xe9\xe4\xbc\xef\xca\xae\xa1\x3d\x99\x9c\x17\x41\xf7\x30\x9f\xcf\x9b\x84\x4f\x8a\x75\xce\x00\x12\x66\x19\x94\x60\x72\x10\x9c\x53\xb6\x71\xd2\xb7\x7d\xa6\xb1\x75\x72\xfb\xde\x89\x18\xae\xdf\x9a\x46\x08\xd3\xf8\x9c\x59\xb4\xdb\x77\x35\x02\x78\xdb\x1b\x01\xbc\xdd\x0f\x01\xbc\x1d\x10\x80\xb5\x9c\x01\x01\x38\x56\x36\x20\x80\x5f\x12\x01\xb4\xbd\x5d\xac\x3a\x3d\x61\xd5\x14\xf1\x08\x02\xdf\xac\xfe\xf4\xf2\xce\x1d\x77\x1e\x0d\xcc\x17\x99\xa4\x8b\x88\x67\x6b\xd6\x93\x2d\x51\x9b\x27\x85\xa4\x91\xb1\x50\x8b\x25\xda\xda\x59\xd9\x93\x5a\x09\xc9\x58\x86\xfa\xb6\x36\x30\x79\x7c\x84\xdd\xf3\xeb\x85\x35\x3d\xf3\x7b\xfb\x4c\xf3\xbb\x14\xf2\xe9\x40\x18\x8b\x78\xf4\xb3\x4c\xf3\xf3\x20\xf9\x1c\xd3\x84\xf8\x97\x7e\xe0\x9b\x62\x53\x9b\x30\x02\xf4\x8c\x0b\x6b\xd6\x8f\x51\x27\x9d\x71\xca\x1e\x81\x07\xfc\x0a\xaa\x2a\x8e\x82\x06\x17\x73\xf0\x63\x90\xee\x59\xf5\x22\xd7\x2d\xfe\x60\x9e\x15\x78\xbc\xc2\xee\xd7\x22\x63\xa5\x8a\x9d\xdc\x33\x42\xdd\x5e\x35\xe5\x53\x28\x32\x5a\xf0\x75\x3f\x8c\x4d\x50\xa6\xeb\xbf\x8a\x1b\x8e\x3e\xd3\x05\x09\x49\x49\xca\x68\x26\x62\xac\xb2\x8c\xf9\x52\xdb\xc8\x59\xef\x79\x75\x90\xb4\xfa\xbc\x60\x36\x5a\x99\x00\x78\x19\x6f\x04\xf6\xf3\x04\xf3\x81\x56\xbd\xa7\x33\xdb\x25\xcc\x32\xc1\x95\x4e\x93\xc6\xed\xad\xe2\x72\xdf\xbe\xdb\x5b\x4e\x8b\x23\x3b\x92\xba\xae\xc4\x86\x65\xeb\x23\x05\x7d\xf5\x96\xc5\x84\xe9\xaa\xde\xc6\xc9\xa8\x2d\x15\x02\xc1\x34\xef\x23\x43\xc3\xe0\x46\x69\x95\xf9\xe7\x02\xaa\x8b\xff\xee\x4c\x2c\x80\x98\xa8\x17\x86\x44\x4c\xf4\xb6\x86\x89\xde\x0e\x98\xa8\x63\x05\x03\x26\xda\x6f\x5e\x03\x26\xd2\xcf\x7f\x12\x26\x6a\x71\x31\x1f\xb9\x98\xf7\x7e\xcd\x1a\x85\xe3\xcb\x66\x75\x56\xb6\x77\x4b\x47\x9f\x6d\x6b\x57\xb7\x03\x15\xf1\x9d\xbe\x24\x1f\xca\xa6\x68\x1a\x94\xc6\x6e\xde\xb4\x0b\x82\x3e\x24\x85\x16\x2e\x68\x43\x64\x60\x43\x13\xaf\x4d\x85\x70\x61\x4b\x0b\x1e\xe8\x97\x8b\x01\xc0\x97\xc5\xd5\xe5\xf5\xfb\xb3\x2f\xbf\xfc\xf2\xb7\xa0\x7f\xc7\x24\x89\x10\x2c\xf5\x69\x76\xd6\xa2\xa4\x57\x63\x8c\xdc\x93\x8c\xf3\x48\xd7\xc7\x68\xd6\x35\x26\x1d\x87\x0e\x63\x1e\xbb\xe0\x09\xb2\xbf\xb1\x43\x65\xfa\xa3\xb2\x8c\xac\x65\xbb\x69\x97\x85\x3f\x4b\x05\x8e\xa3\xf6\xe3\xf5\xaf\x75\xdb\x06\xb3\xaf\xa7\xfe\x4c\x84\x15\x86\x6d\xa3\xac\xfe\x10\xd3\x3e\x00\xea\x05\xa6\x62\x82\x92\xc7\x58\x84\xb7\x37\xca\x3d\x2f\x3f\x2a\x02\x8c\xd4\x84\x9f\x00\xf7\xaf\xa8\x64\xf7\xb4\x2d\x56\xab\x36\x97\xef\xf0\x83\xc2\x67\xdb\x5a\xd0\x13\x4c\xa7\xa8\xb1\xb1\x07\xf3\x61\x3e\x71\x4d\xe9\xf3\x67\x14\x31\x9a\xc6\x2c\x7c\x9f\x8a\x4d\xff\x39\x7d\x28\x3f\x2a\x4f\x9d\x6d\x8d\x4e\xd9\x8a\xa6\x61\xeb\xc0\x04\x91\x5c\xaa\xe3\x23\x61\xc3\x4d\x98\xb4\xcf\xb7\xce\x3c\xbd\x8e\x22\xe9\xc7\xe9\x35\x16\x37\x59\x6a\xff\x76\xe4\x04\x30\x6c\xe1\x23\xcb\xd6\x50\xb1\x04\x69\xee\x11\xf1\x25\x88\xb2\x9f\x1a\xd3\x88\x9a\x4f\x1d\x1f\xca\x62\x49\xf2\xcc\x5a\x7b\xeb\x82\x49\xef\xfd\x24\x45\x9c\xc3\xac\x8b\xed\x69\xac\x1c\x16\x6c\xc2\x14\xd1\x5f\x05\x77\x88\xea\xed\xe1\x99\x39\x2f\xdd\x8b\x87\xb0\xc6\xa7\x5a\x53\x37\x6f\x42\x3e\x97\xd1\xe3\xd6\x26\x95\x9e\x9e\xa0\x73\xf6\xb8\x02\x58\x6b\x15\xe9\x3d\x9e\x77\x75\x46\x62\xf1\x8b\x33\x63\x05\xd5\xea\x25\x17\x6a\xaa\xd5\x14\x0c\x07\xaa\xd5\xb2\x90\x81\x6a\xb5\x4c\x68\xa0\x5a\xcd\x67\xa0\x5a\x03\xd5\xf2\xb5\x1a\xa8\x56\xeb\xe7\xff\x92\x9e\xfd\xcf\x15\x2e\xa8\x33\x9b\x58\x98\xeb\x59\x9c\xee\x75\x22\xd4\x72\x14\x7c\x6b\xb9\xdd\x37\x5a\x38\x1c\xef\x9b\x73\xd5\xfb\x52\x7a\xde\x37\x9a\xcc\x7f\xae\x12\x42\xcd\x15\xd4\x8a\x08\xe9\x7c\xb4\x45\x16\x23\xb7\x6f\xeb\xe0\xcf\x3f\xf8\xf3\xdb\x5b\x30\xf8\xf3\xff\x7c\xfe\xfc\x8d\x1b\xdc\x56\x41\x08\x3f\x5d\x38\x28\x98\x3f\x63\x54\x9b\x13\x3f\xa0\x50\xf7\x1d\x6f\xce\xd4\x6e\x6c\xcc\x1d\xdb\xd2\xa3\x47\x2b\x32\x75\xf0\x61\x31\x1b\x17\x19\x55\x48\x20\x8f\xe3\x16\x3f\x79\x37\x99\xd6\x5d\x7e\xf7\xc9\xe9\x7d\xe5\x82\xab\x6a\x6a\xe6\x0a\xff\xd6\x7c\x96\x77\x72\x3d\x86\xf7\x70\x78\xae\xe1\x81\xd9\xd1\x9b\x66\x05\x3f\x7c\xd6\x2c\x8a\xea\x99\xd7\x8c\x86\x2e\x11\xab\x2a\xe4\x55\x5a\x17\x15\x86\xc3\x1c\x50\x44\xc6\x57\x31\xc4\x8a\xc4\xb2\xec\x97\x6c\xf8\xaa\x52\x2b\xaf\x36\x37\x01\x9f\xd1\x48\x17\x0c\x4a\x44\x0c\x02\x77\x96\x07\x6b\x42\x33\xf2\x9e\x45\xfc\x41\x27\xba\x28\xd2\xd3\xdc\x53\xae\x6e\xf9\x52\x78\xf2\x87\x04\x01\xcb\x32\x83\xa1\x8a\x99\xec\x9b\x51\x6f\x4b\x53\x4e\xbb\x3d\xcd\x7f\xc0\x66\x65\x50\x0a\x46\x20\xe8\xaf\xad\xb3\x6c\x55\x85\x80\xb8\x92\x21\x51\xc4\x67\x72\x7e\x4b\x75\x36\x9e\xbd\x68\x24\x9c\xc0\xd6\xb2\x91\xcd\x16\x4d\xce\xcf\x31\xd7\x3a\xe7\xd7\x6c\xf2\xb3\x71\x7e\x78\xcb\xf6\xaa\x1f\x09\x9f\x0c\x5c\xdf\xc0\xf5\x0d\x5c\xdf\x2f\xcd\xf5\x35\xf1\x4f\x57\xdd\x48\xbc\xef\x8f\xad\x1c\x19\x45\xe2\x7e\x32\x9d\x4c\xa7\x34\xb8\x63\x32\x7b\x9f\x8a\xcd\x8f\xba\x6c\x7e\xa7\x0d\xfb\xf0\xb4\xed\x6b\x13\x93\x5f\x3a\x9a\xc0\x4c\x5d\x44\x5e\xd7\x56\x09\x09\x25\x69\x1e\x41\x32\xdb\x30\x15\x09\x56\xbf\x2f\x2b\xd6\xb3\x90\xc8\x94\x2e\x95\xb4\x8a\x35\x5e\xcc\x50\xae\x3e\xcb\xc2\x5c\x4b\x1a\x65\xfb\x57\xe6\x02\xc8\x40\x39\xff\xc7\x83\xc6\xfb\xf9\x13\xc0\x06\xfa\xfe\xc5\x80\x73\x9f\xdd\xa4\xc1\x79\x26\xcf\xd6\x2c\xb8\xeb\x04\xc6\x0d\x93\x5a\x7f\x39\xb2\x74\xe5\xa3\x40\x7d\x4c\x44\x4c\x4e\x7f\xbc\x21\x17\x67\x5f\x14\x11\xaa\xd9\x98\x9c\x6a\x7e\xc6\x35\xfb\x6d\xb5\x2c\x24\x96\xab\x98\x1f\x9c\x8b\x4b\x21\xd7\xea\x7a\x42\xb1\x26\x2c\xf4\x66\xaa\x51\x9d\x63\x04\xe8\xfc\xa0\xa3\xa4\x69\xd1\x89\x0b\x26\x2c\xce\x5d\x4a\xf9\x51\xf9\x95\xeb\xa5\x9e\x88\xeb\x33\x3d\xa9\xbd\xb8\xfc\x45\xb2\x3c\x13\x71\xcc\x02\x88\xe5\x29\x6b\x62\xf0\x78\xd5\xb7\x22\xde\xbb\xe9\xfb\x8e\x2e\xd0\x49\x87\xc7\xe4\xdd\xf4\x3d\xd9\x88\xd0\x5d\x4f\xd2\x7d\x8a\x71\x1b\xa3\xa8\xe0\x36\xd4\x40\x6a\xbf\x25\xdf\x30\xa2\xce\x24\x59\x98\xaa\x25\xde\xf4\x7b\xfa\x33\xc7\x37\xe8\x11\x84\x1e\x59\x85\x09\x66\x2d\x32\x88\xf6\x55\x0c\xf9\x02\x6e\x89\xab\xd3\x94\xd1\x60\x6d\x17\x54\xd1\x85\x5f\x32\x5d\x58\x95\xf0\x4d\x92\x8a\x2d\x2b\xe2\x90\x41\xf4\x8e\x03\x38\x60\x89\x08\x47\x52\x8c\xda\x4a\x4a\x15\x4b\xcd\x70\x61\x58\x70\x45\xbb\x22\x5a\x61\xc8\x18\x36\xab\xe6\x1e\xb2\x45\x8e\x45\x66\x93\x3c\x4d\x44\xa6\x8e\x7e\xfb\x01\x7d\x54\x99\xc1\x45\xb2\x54\xe2\xde\x64\x49\x03\x36\xd5\x65\x3a\x3b\x0e\xc9\xbb\xe9\xfb\xfa\x27\xc8\x4d\xa4\x0c\x78\x5c\xc2\x1e\x14\x3b\x00\x6c\x1e\x88\x74\xe6\x30\x38\x91\x18\x88\x51\x85\xb1\xcd\x88\x82\x9a\x8b\xa3\x52\xaa\x7d\x51\x47\x2d\x49\xc5\x2a\xa5\x1b\x60\xdf\x78\x4c\x44\x1a\x42\xda\x53\x27\xb4\xa9\x0c\xd6\x05\xce\x93\xe2\xb8\x60\x3e\x62\x26\x15\xf6\x1b\xeb\x8c\x45\x31\x63\x21\x74\xb8\xc1\x2f\xd6\xcc\x9a\x89\x13\xc4\x6a\x39\xa6\xec\x97\x46\xa3\x25\x72\x85\xa4\x02\x62\xcb\xd2\x7a\x89\xaf\x1e\x9d\xae\x69\x1c\xaa\xfd\x8f\x03\xb1\x01\xfe\xab\x98\x3d\x98\x7a\xd1\x17\x0c\xb3\x6d\xea\x83\x09\x8b\x12\xb9\xcc\xb8\xbb\x28\xa5\xad\xdd\x21\x64\x52\x88\xd5\x8a\x8b\x2a\xd7\x5b\xac\xc2\xda\x82\x97\x79\x96\xd3\x28\x72\x9a\xd8\x95\x1c\x12\x82\x12\x68\x3c\x1e\xbf\xda\x33\x1b\x80\x3a\x6c\x78\xd0\x3f\xc5\x49\xca\xb7\x3c\x62\xab\x7e\x48\xc9\xf1\xd9\x11\xe1\x4b\x53\x6d\xf3\xc8\x1c\x1b\xa6\x23\x30\xef\xd4\x3d\x8e\xc6\xb9\xd5\xfe\x76\x91\x2c\x6f\xf5\x3d\x73\x12\x8f\x6c\x97\x05\x32\xb2\x6f\xa3\xfd\x39\xa4\x85\x15\x4b\x75\x16\xcd\xf1\x61\x71\xa6\xab\x0f\x50\x59\x69\xeb\xea\x3d\xcf\x14\x57\x1c\x20\x17\x8b\xba\x0b\x7d\x92\x0e\x0f\x33\x44\xa6\x34\xc1\x2d\xd6\x8d\x78\x9c\x29\x09\x06\x0a\x53\x13\x71\xef\xb4\x20\x37\x6f\x86\xda\x45\xa6\x4b\x36\x95\x03\x7c\x76\x39\xd2\x45\xb2\xdc\x83\x86\x5c\x98\x6d\x29\xb7\x48\xef\x10\x30\x2d\xa6\xf8\x82\x9a\xbd\xe2\x90\x93\x88\xc6\x6e\xab\xea\xe7\xb2\x23\x6a\xda\x0f\x72\x26\x4c\x4d\x3c\x11\xc7\x1b\x9a\x76\xf3\x25\x6a\x0d\x8e\xef\x2a\x74\xaf\x24\x72\xd4\x35\xf5\x2f\xbf\x58\x70\x75\xd3\xd2\xbb\x22\x83\x6b\xc6\x24\x41\x99\xdb\x50\x03\xbc\xc5\x34\x26\xcc\x94\x4a\x43\x91\xc8\x83\xd9\xa8\xce\xbd\xab\x91\xc0\x18\xcf\x21\x8c\xa1\x73\x9a\xe4\x26\x1d\xaa\x9a\x19\x64\x6e\x4d\x90\xcb\x24\x62\xe9\x45\x3e\xe5\x84\xa0\xfa\x06\x18\x56\x43\xab\x18\x21\x12\x51\x93\x0a\x56\x9b\xc1\x3d\x26\x51\x75\x02\x93\xd4\x14\x44\xb8\x9e\xbe\x27\xc0\xcc\xd9\x07\xf0\xb5\x7f\x1b\x3d\xd1\x67\xb8\x8d\x00\x20\xbd\x23\x1f\x7b\xe4\x3f\xd1\xbb\x58\xff\xcc\xb3\x89\x6a\x69\xd6\xce\xb8\xd6\x66\xa3\xdc\x8a\xad\x0c\x12\xdb\x6b\xbc\xfc\x52\x27\xdd\x37\x08\xdb\xaa\xef\xe8\x2c\x1a\xa2\x20\xae\xad\xd2\x8a\x53\x17\x26\x7f\x70\xc1\xa6\x2b\xec\xbd\x84\xb3\x23\x05\x99\x1f\xcc\xf2\x38\x66\xd1\xfc\x00\xf3\x55\x2f\x84\x74\xe6\x6d\xd6\xb2\x33\xcc\x20\x65\x59\x22\x62\x75\xe7\x34\x51\xe1\x19\x91\xd0\x0b\x0e\x58\x4b\x5a\x0c\xe3\x39\x11\xa4\x99\xc2\xf9\xcd\xb5\xe2\xa4\xf1\x3b\x1c\xc7\xd5\xf5\x22\x97\xba\x4d\x75\x7c\x8f\x7a\x1f\x1c\x2d\x42\x9e\xb2\x40\x46\x3b\x67\x3a\x65\x35\xb3\xd8\x8c\xaf\xf7\xaf\x6c\xe2\x24\x57\x90\xa4\x3a\x49\x18\x4d\x33\xbb\xec\xcb\x64\x6a\x84\x64\x8e\xd5\xf1\xa0\xe5\xb7\x46\xed\x04\x3c\xa4\xe7\x5e\x27\x2c\xdd\xf0\x2c\xe3\x5b\x46\x3e\x7c\x61\x71\x14\xe5\xf9\xc6\x1d\xda\xb7\x84\xf5\x22\x59\x2a\xfe\x73\x9a\x8a\x87\xdd\x85\x56\x92\xdc\x44\xea\x48\xf5\x44\xbc\xef\xa6\xef\xdb\x3b\x70\x1f\x7c\x37\x57\x66\x71\xed\x87\x19\x61\x9b\x05\x0b\xd5\xf1\xbc\xcb\x17\x6c\x94\xa8\x11\xb4\x5e\x39\x23\xd5\xa1\xfc\x5e\x15\x5d\x78\xba\x98\xfb\x24\x91\x6a\xba\xd9\x99\x6a\x98\x27\x7b\x90\x9d\x8e\x2e\x2a\xe4\x08\x61\xe1\x5a\x3c\x82\xc7\x22\x57\x49\x2a\x50\x97\x1f\xed\x48\xa0\x7a\x24\x39\x16\x38\xca\x93\x4c\xa6\x8c\x6e\x6c\xc1\xa1\x84\xd0\xe1\xa1\x3b\x49\xbb\x9e\x1b\x09\xd6\x94\x83\x3c\x70\x83\x8c\x99\xa9\xc1\x58\xcc\x70\x69\x83\x5b\x27\x00\xd7\x36\xb0\xe7\x92\x05\x0a\x08\x7e\xe4\xf1\xcd\x2e\x0e\x30\x0d\xd3\x5e\xb0\xaf\x7c\x79\xe4\x41\xb6\xd2\x2d\xdb\xe9\x8a\xf6\x10\x20\x52\xa4\x9c\x47\x7d\x5f\xa1\xb7\x2d\x18\x86\x52\x41\x7d\x68\x1d\x51\x57\xb7\x25\x18\xc7\x84\x7c\x10\xf7\x2c\x35\x9a\xb2\x95\xba\xc6\x29\x0b\xf3\x00\x0b\xbf\x8f\xf2\x04\x14\xc3\x71\xa0\x9a\x7e\xcf\x57\xeb\xa2\xad\x1b\xcb\xaa\x2f\x8d\x62\x7d\xfa\x89\xe4\x19\x5d\x31\xc8\xd7\xa0\x38\x6c\x70\x4b\x4a\xc8\x46\xa4\x88\xce\x2b\x58\xe2\x4d\xf6\x08\x0c\xf1\x41\xac\x3e\xb0\x2d\x73\x15\xe4\x68\xec\x88\x69\x5b\x81\x3a\x14\xec\x8f\xe0\x67\x93\x51\xc1\x62\x21\x3d\xb8\xa0\x90\xf7\x4b\xd8\x6f\x10\x1d\x5f\x19\x15\xcb\xd5\x72\x89\xca\x95\x49\xbc\x14\xea\x5f\xa8\x5b\x51\x42\xec\xfc\xc0\x2f\xcc\x47\x62\x85\x75\x51\xd9\x86\x4b\x59\x92\x23\x35\x98\x4c\x69\xc0\x48\xc2\x13\x76\x64\x8c\x7d\x8a\x29\x07\xc6\x16\xf5\x07\x9b\x8d\xa7\x2c\xf6\xfc\x40\x06\x84\x3d\xb0\x40\xc1\x0c\x45\xe9\x8a\x7e\x87\x5c\x2d\x97\x7f\x1e\xef\x09\x7e\xb8\xaf\x13\x60\xca\x7b\x71\x1f\x67\xd5\xf6\x3e\x9d\xc8\x5a\x88\x3b\x5b\x68\xf1\xa0\x0d\x29\x92\x11\xee\x5b\x0d\x81\xa8\xd3\x86\xa2\x82\x3a\x6e\x5a\x17\xa8\xed\xe9\x52\x24\x7a\x9b\x9d\x72\xb2\xfa\x5e\x6d\xd4\x62\x07\x34\x32\x0e\x9b\x3d\x2c\x84\x94\x62\x33\x36\xc2\x88\x36\x8b\x67\x74\xc9\x4c\x89\x02\x27\xa7\x60\x72\x80\x25\x29\xdb\x82\xa5\xb7\x14\x75\x54\xef\x9a\xef\x45\xc7\xbd\xc5\x2e\xa1\x59\xa6\xcb\x6b\xef\x44\x4e\xb2\x7b\x2e\xdd\xd5\x28\xa4\xd0\x13\xd5\xf8\x64\xc1\x48\x86\x49\xff\xf5\x74\xb1\x34\x0e\x0e\x61\x6a\x62\x21\x94\xd0\xfe\xec\x64\xc0\x80\x90\x81\x32\x67\xb1\x53\x72\x46\x84\x06\x90\x54\xe4\xab\x75\x2d\xe4\x0a\x7a\x3e\xc2\x61\xee\x75\xb5\x6f\x57\x9f\xba\x79\x22\x22\x1e\xec\x90\x8a\x2c\x98\xb5\xd2\xf2\x24\x22\x60\xf7\x45\x05\xc5\x45\x3c\x4f\xf9\xd6\x59\x37\xb0\x3d\x4b\xf4\x22\x5f\x69\x91\xfa\x83\x58\x9d\xa7\x22\x49\x78\xbc\xf2\xf6\xe2\xa1\x17\xd0\xcd\x47\xb6\x11\xe9\x6e\x9a\x8a\x25\x8f\xd8\x94\xca\xf5\x63\xe6\x72\xc3\x37\xa0\xa9\x3e\xa3\x51\xf0\x5d\x4a\x93\xf5\xf7\x34\x5e\x9d\x2e\xe5\xe3\x56\x66\x7a\x3b\x37\x40\x7a\x7c\x6f\xb0\x49\x86\xc3\x99\x89\xef\x45\x26\x4f\x03\x8f\xcb\x7c\xf5\xf6\x9f\xfb\xbf\xb5\x31\x01\xa8\x7e\xd4\x91\xce\x3c\x22\x5f\xa1\x08\x52\x4d\x57\xc2\x5c\x1d\x5a\x6a\x6e\x4a\x8b\x9a\x28\x85\x35\x2e\x33\x16\x2d\xc9\x4b\xba\xf4\xf8\xd3\x00\x7a\xd0\x7d\xaf\xb9\x56\x9b\x14\x5d\x31\x64\x8a\xf1\xfc\xbe\x1a\x93\x77\xbb\xa2\x22\x09\x1e\x6d\x57\x97\xba\xa4\xb5\xd3\xd8\x50\x74\x9d\xb9\xa6\x09\x38\xdd\x5d\xc7\xa9\xc0\x76\xf3\x83\xf3\xeb\xab\xe9\xfc\x00\xfc\x2a\x44\x5c\x60\x8b\x7b\xaa\x6b\x45\x42\x91\xc3\x4c\x6c\x20\xca\x9b\x46\x51\x9b\xb8\x01\x73\xb3\x01\xa7\x66\x73\x84\x12\x0e\x04\x3d\xd3\x94\x6e\x98\x16\xed\xae\x2f\x66\x9f\xae\x2f\x55\xaf\xa7\x67\x67\x17\xd3\xd9\x98\x7c\x72\x57\xf8\xd7\x0d\x39\x4e\x0c\xea\xcc\xec\x44\x0e\xca\x9b\x2a\x4e\xb2\x16\x35\xb9\x9c\x7e\x9a\xcd\x0f\x10\x4d\x7d\xdb\x82\x4b\x00\x89\x18\x34\x2c\x0d\x1e\xad\x23\x7a\x2a\xb1\x27\x5d\xce\x68\x7e\x80\x73\x72\xd7\x3a\x31\xaa\x01\xbd\x23\xb5\xc9\x10\xa1\x91\xf8\x9a\x66\xe0\xb4\x83\x39\xe3\x93\x54\x18\xc7\x1b\xb3\xb9\xae\xbe\xdd\x47\x09\x40\xa7\xc1\x08\xf2\x58\x5c\xb8\x9a\xd0\x28\x32\x42\x85\x99\x98\x77\xe7\x0a\xd9\x98\xc0\xf9\x76\xcd\xc9\x37\x81\x76\x2d\x93\x42\x85\x7b\xe3\x62\xa6\x04\x7f\x08\xec\x99\xa6\x42\x8a\x40\x74\xb2\x67\xa0\xb6\xb1\x5d\x20\xd0\x97\x3d\xd1\x9f\x13\x1a\x6a\x5d\x80\x66\xcc\x36\x2c\xd4\xc3\x38\xb9\x50\x08\x19\x3a\x52\xd4\xcb\x5c\x52\x38\xc4\x86\xec\x5c\xcf\xa6\xd7\x57\xb3\xdb\x77\x57\x57\x33\xe4\xe6\x22\xb6\x94\x64\x11\xd1\xd8\x55\x1e\xbd\x55\x11\x63\xad\xf5\x66\x9f\xc2\x42\x33\x5d\xe7\xb1\x59\x8e\xc7\x48\xe5\x22\xde\x67\xb1\x15\x8c\xe4\xe8\x14\xc2\x1f\xcc\x22\x8f\x48\xc4\xe8\x56\x7b\x35\x38\xe5\x03\x60\xbc\x40\x71\xb6\x16\x42\xab\x08\x6a\x3d\x3e\xa2\x16\xa9\x56\x23\x9f\x89\x38\x56\xbc\xec\xdd\x24\x86\xc4\xa9\x3e\xcb\x68\x2b\xad\x35\xa7\xf9\xda\xe4\xd2\x38\x67\x91\x33\x58\xaa\x6d\x42\x8d\x4e\xfc\xb2\x75\xfb\x64\xb4\x52\xed\x52\x84\x0c\x12\xcf\x77\x6d\xff\x85\xfd\xc1\xd9\xe4\xfc\x5a\x7d\x84\x46\xa3\x48\xfd\x4b\x2c\xa1\x64\xff\x21\xb8\x2e\x98\xde\x47\xb1\x88\x47\xe8\xb7\x05\xb9\x1f\x5a\xec\x47\x1b\xba\x33\xfb\x85\xda\xa7\x82\x08\x81\xd2\x12\x0b\x92\x32\x4b\xe9\xa5\xdf\xba\x8b\x10\x1a\x8f\x39\x85\x5c\x83\x32\x4d\xb2\x2b\x6f\xd6\x33\x64\x76\x5e\x52\x1e\x29\xfe\x7a\x12\x2f\x44\x1e\x87\x8a\x6d\x98\x8a\x54\x76\x3b\x16\xbc\xf7\x7c\x58\x85\xf3\xa7\xf3\xe9\xf1\xec\x6c\x8a\x0a\x4a\xe7\xea\xe3\x10\x36\x43\xdb\x35\x2c\x3d\x08\x52\x58\x97\x89\x0a\x68\x79\x41\xe1\x5d\xbd\x8a\x98\xf0\x34\x65\x59\xa2\xb3\x6d\x97\x85\x41\xf3\x94\xcb\x5d\x41\x1e\x0c\xa2\xd0\xd5\x2d\x15\x5d\xdf\x0a\xee\xa4\x30\x34\x08\x20\xa7\x35\x10\x8e\x20\xc7\xea\xd0\x62\xb9\x24\x14\xe7\x03\x4c\x85\x9a\x6d\x9a\xb2\x40\xd6\xfc\x60\xc8\x7b\x77\xa4\xd0\x82\x06\x77\xa3\x4a\xcd\x92\x23\x13\x6f\x54\x60\x67\x53\x8b\xad\xac\xd1\xcb\xa5\x41\x46\x3e\xf7\x57\x25\x91\x26\x4a\x06\x9d\xa8\xf9\x29\xf8\xba\xbb\xb1\x00\x6d\xf3\x51\xce\xf5\xa3\xfb\x87\xc2\x4e\x0a\x21\xce\x4a\xbb\x15\x05\x4e\x01\x4e\x01\x82\x02\x36\xfb\xa8\xd0\x7e\x7a\xab\xab\xc5\x22\x06\xa3\x42\x21\xdc\x69\x8f\x0a\x6d\x5c\xc8\xb2\xb5\x31\x5d\xa9\x53\x72\xfe\xfd\xd9\xb4\x62\x58\x0a\x92\x93\x2f\xbe\x70\xfa\x03\xe4\x61\x72\xf2\xf6\x9b\x23\x68\xf2\xe6\x7f\xff\x16\xff\xf1\xc5\x97\xe5\xbf\xbe\x79\x8d\xff\x7a\xfb\xd5\x57\x5f\xea\x7f\xbd\x7d\xfb\xb6\xf8\xd7\xff\x76\x11\x65\xff\xe5\xab\x66\x80\x52\xfb\xa6\x6e\x02\x66\xb1\xd9\x2c\xac\x00\x56\xb3\xa7\x47\x00\xa2\xa3\xe2\xf0\x7b\xa2\xc2\xa6\x05\x81\x8e\x43\x2c\x0f\x69\x7c\x4d\xca\xba\x81\x4e\x46\xab\x2b\x0a\x32\x66\x6e\x3d\x1e\xe9\x15\x84\xa6\x66\xd2\xf1\x79\x4b\x5a\x3f\x52\x40\xe1\xd1\x53\x68\x2d\xb5\x3a\xf2\x16\x2f\x1d\x15\x23\xfb\x31\x68\x7b\x92\xce\x56\x0c\x7a\x95\xcb\x47\xa2\xd0\xc6\x97\x4f\x8c\x43\x45\x2e\x57\xc2\xc6\xa1\xc0\xd5\x76\x63\x51\x29\x06\x2c\xfa\xb3\x62\x51\xa1\x0f\xc2\xd3\xa0\x51\x01\x72\x3e\x93\x41\x78\x78\x08\x79\xe7\xe2\x90\xa6\xa1\xb6\x15\x4a\xa1\x1d\x0a\xbc\x05\xb1\xf0\x18\x85\x82\xe1\x92\x57\x4c\xaa\x0d\x83\xcd\x42\x79\x56\x06\x61\xc5\xf5\x44\x01\x40\x6d\xa7\x42\xd4\xc4\xa3\x2a\x3d\xbf\xbc\xa9\xe3\xf0\x7d\x10\xb4\x73\xa3\x34\xce\x3e\x02\xb4\xff\xf5\x97\xf8\xdf\x01\x87\x0f\x38\xdc\xf9\xd6\x8d\xc3\x19\x95\x79\xca\xce\x99\x64\x81\xbc\xda\xb2\x34\xe5\xdd\x2a\xf7\xf7\xae\x8f\x8a\xf8\x25\x29\xc0\x39\x2b\x35\xc6\x7b\x3d\x84\xfb\xec\x49\xa6\xb5\x4c\x3f\xa0\xa1\x88\xa6\xd6\xf9\x20\x3c\x26\x14\xed\x0f\x24\x63\x09\xc5\xb2\xb6\x40\x1d\x00\x5d\xc6\x4e\xf5\x18\x54\xdf\xcf\x8e\x08\x7b\xa0\x9b\x24\x62\xdf\x92\xf9\xc1\xcd\xe5\xe9\xec\x7d\x1e\x45\xbb\x6b\x1a\x87\x62\xf3\x3b\x99\xe6\xec\xe8\xe3\xe9\xcd\xff\x6d\xff\x08\x9e\x2f\x47\xd7\x0c\x42\x70\x6e\xf2\x04\xd0\xc5\x07\x11\xdc\xfd\x6e\x7e\xe0\x3c\xa9\xf3\x03\x08\x02\xd2\xfe\xad\xf0\xf9\xfc\x00\x71\xe2\x52\xa4\x41\x65\xf5\x47\x58\x05\x5a\x35\x15\xda\x04\xe3\x37\x77\x29\x20\xd0\x5c\x8a\x11\xc2\x67\x6f\x81\x18\x4a\x00\xf3\xe0\x0f\xe7\xd3\xbe\x46\xdd\xef\xea\x5f\x68\xeb\x68\x46\xf4\x1b\xf2\x87\xf3\x29\xc9\x84\xb1\xc3\x93\x80\xa6\x6e\xc7\x66\x20\xc4\xa1\x88\x0f\x0f\x25\xc9\x10\x88\xf0\xad\x58\x2e\x41\x5d\x24\x52\x12\x82\x2e\x1d\x4c\x0b\xe0\xa9\x05\x88\xfe\x0f\xe7\x53\xa4\xa7\x4e\xe5\xa4\x36\xca\x32\x75\x16\x58\x1c\xb2\xb0\x34\x7d\x28\x3c\x0d\xa3\x25\xa9\xd8\xaa\x33\xb7\x60\x12\x74\x55\xa5\xf3\xa8\x67\x9e\x71\xa1\x1f\x1c\x7f\xb6\x03\xd4\x9a\xd1\x48\xae\x1f\x29\xe7\xe3\xc7\x8a\x09\xda\x53\xd1\x80\x1f\x4e\xdd\x28\xad\x15\x99\x15\x6e\x88\x17\x0f\x41\x94\xf7\xb0\xb2\x4d\x6a\x1f\x20\xa7\x06\x77\x73\x54\xbb\x9b\x50\xa7\xa9\xd3\x13\xb3\xe2\x80\xca\x74\xa7\xa0\x36\xd3\xb5\xa6\x4c\x65\xcb\x2a\xbb\x36\xf6\x99\x38\xab\x2c\x40\xc5\x67\x50\x3b\x45\xaf\x62\xa1\x7e\x2a\x9d\x08\x0e\x0f\xc9\x64\xfa\xc3\x0d\x09\xf3\xcd\xc6\xe9\x85\x59\x2c\xe3\xc8\x38\xd0\x6a\x1c\x67\xc2\x97\xa2\x1d\x59\xec\x2a\x76\xef\xaa\xb6\xdc\xa9\xb1\xd5\x6b\xdd\xe4\x91\xe4\x49\x64\xf9\xc2\x62\xbc\x1c\xc9\x33\xb4\x0f\xaa\xff\x44\xcc\x44\x48\x81\x51\x99\x37\x23\xa9\x08\x44\xf2\x24\x3a\x8b\x61\xc3\x35\x38\x03\xe6\xd1\xf5\x02\xe6\x09\x34\xf9\x3e\xa5\x89\xcf\x76\x81\xe0\x04\x74\x7b\x78\x78\x7c\x78\x88\xdd\x69\xdc\x4a\xd6\xa8\xef\xd3\x56\xfe\xc3\xc3\xe3\xff\xa3\x60\x71\x7c\xb4\x65\x72\xfd\xe6\xd0\x71\x89\x74\x38\x85\x81\x01\x4a\xd0\x85\x47\x2c\xec\xd6\x82\xad\x78\x6c\x46\x54\xdd\x1d\x1e\xea\x6a\x62\x99\xf0\x69\x16\x4b\x10\x1e\x1e\xea\xb1\xed\x3b\x0d\x1b\xc4\x93\x6d\xd6\xe2\x12\xe7\xbe\x61\x45\xc7\xd3\x94\x2d\xf9\x43\xff\x6b\x82\xed\x8d\x2e\xb6\xba\xc5\x24\xc1\x97\xe8\xaf\x58\xd4\x0b\x73\x42\xab\x69\xd7\x01\xef\x64\x60\x9f\x95\x0c\x91\xf3\x6c\x8d\xca\xed\x8d\x43\xba\x69\x85\x55\x36\x26\x97\x42\x02\x8e\x20\x2c\xde\xf2\x54\xc4\x1b\x30\x22\x0b\x9d\x95\x96\xc6\x64\xa1\x68\xd1\x86\x49\x1a\xe1\x09\x14\x69\xb0\x66\x99\x4c\xa9\x14\xee\x74\xca\x76\x85\x78\x85\x22\x12\xc5\xcf\xa5\x9c\x4a\x16\xed\xaa\x67\x47\xe4\xa9\xed\xd0\x03\x9a\x0e\x11\xdc\x79\xc2\xd2\x15\x1a\xd3\xa1\x9e\xda\x7c\xa4\xf6\x3a\xa0\x11\x3f\x3c\xb4\x83\x08\x55\xaf\x57\x09\x8b\x6f\x24\x0d\xee\xec\xcf\x9c\xf7\xc6\xf8\x31\x1f\x1e\x4a\x9a\x98\x8e\xec\x93\xa3\x06\x78\xf4\x99\xb9\xc6\xda\x66\x70\x26\xb6\xb4\xd3\x5a\x31\xf1\x7c\xe7\x2b\xcb\xe6\x8d\x58\x4a\x59\x16\xd0\x38\xd3\x4e\xac\xf6\xfd\x12\x64\xcb\x52\xbe\xdc\x69\x6f\x67\xcc\x82\x0c\x12\x14\x7e\x03\xe4\xd8\xad\xad\x35\x2e\xdd\x0a\xe1\x65\x4c\x16\xd1\x8b\xdc\xcc\x52\x0a\xf2\x7a\x4f\x46\x85\x27\xbc\xc5\xef\xac\x95\x66\xaa\x4f\x3f\xce\x3e\x75\x5f\xc8\xe9\x64\xfa\x71\xf6\xc9\xc0\x50\xfd\x13\xbc\x48\xa5\xc9\xf0\xa6\x15\xd9\x68\x09\x19\x93\x1b\xe6\x76\x34\xd0\xc7\x5a\xad\x5a\xf5\x61\xf9\x17\x7d\xf5\xd5\xfe\x8e\xb6\x3c\x51\x47\x6f\xcf\xf3\x71\x38\x71\x7d\xd5\x7a\x3a\x48\xca\x30\xc8\xcb\xcd\x67\x46\x96\x97\x0b\x26\xee\xae\x4a\xc7\x24\x16\x1a\x19\x68\xcb\x1f\xd8\x28\x6d\x55\x86\x53\x2b\x91\x8a\xbb\x22\xc1\x70\xe1\x8a\xe2\xae\x07\x58\x0c\x6f\xea\x00\xb6\xfb\xdb\xfd\xf6\xf5\xde\xde\x5c\x66\x84\x77\x34\xb8\x63\x8d\x88\xdd\x06\x90\x27\xd5\xe6\x85\x30\x62\x32\x11\x2c\xf4\xef\x8a\xc9\x31\x73\x57\x24\xcd\x09\x08\x86\xe6\xac\x8a\x8a\x02\x4c\x66\x2b\xea\x34\x91\xf6\x59\xc7\x7b\x1e\x49\x96\x42\x74\xa3\xd7\x45\xa2\x4f\x3f\x4a\xb2\x79\xef\xf7\x25\xa9\x9f\xbc\xe6\x47\xe6\xe0\x29\x2c\x63\x27\x2a\x34\x03\xb8\x20\x02\x35\xcf\x97\x3c\x62\x63\xf2\x47\xc5\x7d\xd0\x1d\x04\x07\xa1\x49\x90\xc6\x2b\x4d\x35\xb4\x0e\xab\x68\x6d\x04\x00\x77\xee\x69\x2e\x2d\x25\x4f\x31\x9b\x97\x4b\x8b\xd6\xd8\xae\x02\x1b\x9a\x24\x0c\x83\xcd\x62\x29\x0a\xcf\x46\x0f\x31\x93\x94\xc7\x2c\x55\xd7\x8a\x92\x90\x2f\x97\x2c\x65\xb1\x24\x09\x95\xeb\x57\x36\x9d\x38\x4e\xf3\xf8\xf8\x41\x4b\x13\x6a\xde\x8f\x3d\xa6\x0a\xc2\xd3\x54\x2c\xd8\x1e\x58\xc1\xf3\xa5\xd9\x20\xf0\xf2\xac\x29\x48\x9d\xbc\x06\x26\x02\x41\x6f\x50\x2a\xa5\x92\x58\x81\x66\xd0\x00\x54\x16\x55\x97\x0a\xd8\x1c\xbe\xd4\xa1\x74\xb1\x70\xf2\x1a\x74\x4b\x39\xe4\xf1\x1e\x57\xfd\x41\x37\xf4\xce\xb8\x73\x82\xd7\xa6\x76\x5d\xe7\x5b\x2d\x02\x98\xdd\xf7\x08\x83\x6a\x5f\x40\x0c\x3c\x02\xe7\x77\x25\x3f\x42\x37\x67\xd3\x4f\xf6\xa6\x7c\xfd\x7a\xf3\x68\x74\xa1\xa0\x39\xe3\x1b\x26\xf2\x4e\xab\x6b\x65\x07\xf4\x37\x6d\xb0\x07\x40\xbb\x56\x66\x62\x29\x2b\x30\x06\x17\xcf\xd7\x47\x16\xd2\x04\xed\x29\x2a\x47\x79\x56\x2a\x18\xbc\xec\x00\xf0\xf8\xd9\x9a\x3a\x77\x10\xae\x17\xfa\x05\x45\x51\x15\xd9\x6b\x86\xdc\x4d\x39\x14\x2f\xae\x36\xd1\xec\xd4\x98\xfc\xa8\x36\x4e\xfb\x4d\x97\x71\xa8\x4a\x22\xa7\xe5\x45\x3a\x72\xe6\x37\x20\xa5\x5e\x0c\xc1\xa6\xae\x93\x8e\x51\x10\xe9\xce\x60\x16\x2b\xc6\x74\x23\x72\x9d\x8d\x5e\x3b\xd5\x58\xc5\x87\x9d\x76\xd1\xd4\xb4\x58\x9a\x68\x7d\x9c\x50\x25\x60\x26\x2b\xb8\x9c\xc7\x1e\x9b\x8f\x54\xc9\x6c\x9f\x8f\x9d\x3f\xd2\xf4\xee\x23\xcd\xba\x23\xa8\x26\xb5\x0f\xcc\xc1\xdb\xa8\x7f\xdb\x82\x36\x14\x60\xce\x14\xb2\x74\xc1\x67\x32\x9d\xe1\xa1\x50\xfd\x90\x85\x42\xa9\x90\xae\xd2\x38\xcd\x2f\xd4\x2e\x7e\xf9\x85\x7a\x43\xd6\xec\x81\x86\x2c\xe0\x9b\xb2\x1c\x96\x3a\x40\xce\x73\x22\x49\xc4\x68\x26\xc9\x37\xd8\x67\xc6\xe4\x11\xa8\xed\xd5\x96\x22\x41\x0d\x22\x9a\xad\x8d\x67\xda\x4e\x9f\xc0\x8d\x99\x85\x5b\x16\x30\x9e\x2c\x60\x94\xd9\x65\x92\x6d\x2a\xdb\xf8\xb0\x5c\xbe\x86\xc7\xb5\x8b\x8f\xaf\x10\x5c\xee\xce\xe5\xe9\xec\x4a\x9b\x96\x0a\xa6\x1d\xe9\xf2\x23\xb7\x7b\x2a\x32\xf9\x63\xca\x25\x03\xa7\x95\xbd\x51\xbf\xfb\xf3\x3a\x67\x08\x2e\x5c\x5e\x2c\xa1\x38\xbb\x50\xed\x0c\x25\xf7\xaa\xab\x66\x1c\x40\x91\x37\x2a\x58\xb3\x10\xbd\xe2\x20\xa0\x2e\xa5\x24\x65\x6e\xef\xb4\x05\x0a\x61\x45\x18\xf1\xff\xc7\xde\xdf\x2e\xc7\x8d\x1b\x8d\xa3\xf8\xf7\xff\x55\x20\xf2\x53\x65\xfb\xf7\xd7\x8c\x6c\xef\xae\x9f\x8d\x52\xa9\x53\xb2\x24\x3b\x53\x91\xa5\x39\x92\xbc\x9b\xa7\x32\xf9\xb9\x30\x24\x66\x06\x47\x1c\x80\xe1\xcb\x48\x93\x4d\x4e\xed\x3d\x9c\x4f\xa7\x6a\xaf\x6e\xaf\xe4\x14\xba\x01\x12\x24\x01\x92\xa3\x17\xef\x6e\x42\x56\x25\x6b\x0d\x41\xa0\xd1\x00\xba\x1b\xfd\x8a\x41\x6a\x18\x11\x0b\x83\xdc\x52\xe4\xec\x41\x24\xe7\x73\x96\xe0\xf5\x82\x8a\x0a\x1d\x72\x2a\x5f\xc1\xf4\x96\x5a\x11\x1d\x32\x08\xf2\x44\x31\x24\xf3\x35\x8d\xe3\xc8\x94\x5a\xaf\xec\x95\x42\x65\xe8\xb9\x3b\xc5\x2c\xc8\x9a\x94\x72\xfc\xa0\x98\x02\xd3\xd5\xee\x22\xbf\xf3\xbb\x7b\x5c\x09\xf5\x3d\xc0\x84\x65\xc1\xd5\x57\xbb\x49\x5a\x4b\xdc\x2e\xfe\xfb\xf6\x4d\xc5\xb8\xb9\x8b\xf8\xef\xce\x19\x0c\xb0\x15\x17\x02\xd4\x51\x64\x96\x08\x5d\x54\x9c\x47\xe5\x94\x92\xa8\x41\xb8\x00\x8d\x85\x47\x43\xa4\x3d\xd6\xb1\xd3\xe2\xd2\x9a\x82\xfd\x0e\xb4\x2c\x34\x01\x03\x24\x16\xe5\x3f\xe3\x22\xbf\x33\xfe\x6a\xf3\x7c\xe9\x65\x84\x6a\xff\x2e\xf8\x1d\xda\x2a\x74\x7b\x93\x78\xef\xeb\xf1\xeb\xd7\x85\x42\x50\x71\x5f\x54\xec\x6d\xd4\xef\x8a\x21\x2d\x13\x46\x3d\x5e\xc3\x5b\x2d\x1c\x1b\xa7\xdb\xc2\x61\x36\x93\xfb\x84\x92\x95\x15\x30\x83\xa1\x8c\xd5\xf8\x18\x57\x97\x10\x32\x53\xd9\xc4\xf7\xb9\x4b\x6d\xde\x6a\xcb\xc8\xae\xf7\xf5\x9b\x7c\xce\xa0\x4e\x97\x4c\xb2\x4b\x25\xe9\x77\x7b\x09\xfc\xb9\xf1\x89\xae\xf7\x69\xb4\xcc\x60\x5c\x48\xf0\x4d\x5b\x5a\x62\x1d\x33\x4a\xca\x88\xd1\x31\xb9\x50\x34\x03\x75\xb9\x0b\x4c\x16\xa6\xad\x51\x76\x68\x99\x3f\x15\x22\x70\x21\x1e\x6f\x52\x1d\xa1\x83\xa8\xcf\x51\x66\x62\x29\x33\x60\xc1\xda\xa1\x76\xbc\x8c\xee\x6d\xf3\xe7\xd5\x76\x74\x7b\xa1\xbe\x52\xac\xec\xf0\xab\x37\xff\xfd\xf6\xbf\x9d\xc1\x34\x7e\xdb\x2e\x15\xdb\x8b\x85\xc7\xd0\xd8\x69\xeb\x1c\x75\x9a\x32\x63\x9d\xc8\x82\xfc\xef\xf1\xff\x72\xbd\xbf\x1b\xdd\x14\xfa\xbd\x11\x17\xd9\x48\x26\x23\xec\xad\xbd\xac\x8f\xd3\x52\x19\xc9\x65\xef\xeb\xea\x59\xd9\xd6\x50\xca\x45\x1e\x45\x70\x6d\x33\x7c\x0d\x57\x2c\x92\x4b\x43\x99\x5c\x33\x00\x51\xc5\xa2\x57\x20\x2d\x47\x12\x12\x86\x54\xae\x7f\x1b\x9a\x1c\x44\x72\x79\x60\x0b\x99\xe3\x48\x3a\x93\xd8\xb4\xa1\x35\x92\xcb\x9e\x9a\xe6\x33\xd3\xb2\xbc\x87\x2f\x2b\x8a\x65\x6b\x4b\xc2\x9d\x2a\x51\x37\x26\xdf\x52\x9e\x5d\x7c\x30\x74\xba\xaa\xfc\x0c\xe4\x08\xbd\xc4\xef\x31\x93\x2b\xb6\x61\x09\xcf\xb6\x6a\x2d\xfa\xcc\xc7\x6e\x6f\xcf\x2a\xd5\xbf\x13\x3a\x97\x70\x43\x54\xac\x2e\x92\x4b\xaf\xf1\x34\x65\x65\x98\x86\xea\x00\x35\x0e\xe5\xc4\x26\x62\x21\x1f\x30\x9f\xab\x20\x61\xac\x3b\x34\xe5\xac\xfe\xc5\xa3\xcd\x29\xcd\x42\x99\x67\x8f\x39\xa3\x6d\x37\x39\x3e\xab\x34\x7f\xbc\xb9\x6c\x53\xeb\x10\x92\x73\xa9\x23\x4e\x85\x34\x07\x0d\x88\xa8\x6e\xd5\xaa\x1d\xbc\x0f\x12\xd6\xf4\x0e\xd4\xaa\x57\xfc\x1f\xae\x3d\xda\x4a\x25\x4d\xe6\xb9\xa3\x30\x74\x09\xfe\x55\xf4\x7d\xb4\x1a\x1b\xe4\xd9\xc5\x1f\x13\x12\xca\x35\xe5\x02\x2d\x44\xfe\x68\x42\x53\xdb\x0d\x42\x50\xa8\x20\x54\xa4\x4a\xf6\xf9\xee\x23\xf9\x7b\xce\x12\xce\x30\xad\x51\x10\xc9\x3c\x1c\x71\xc1\xb3\x02\x4a\x48\xe4\x57\x98\x46\xdc\x1e\x45\x2b\x50\xae\x24\xa8\x8e\x09\x8b\x88\x95\x35\x0d\x56\x5c\xb0\xe2\x76\x2f\xe4\x86\x8e\x68\xcc\xc9\x0b\x99\x40\x99\xb7\x79\x2e\xb2\xdc\xd9\xa5\x69\x3a\x32\x60\xbc\x1c\x93\xa3\xb2\x60\x3c\x10\xd8\x17\x01\x4d\x19\xc4\xdc\x88\x94\x67\x7c\xc3\x5e\x92\x35\xa3\xc2\xaf\x7e\xa8\xd8\x8e\xc1\x2d\x8d\x65\x24\x8f\xe1\x02\x79\x7e\x74\x8d\x91\x95\x46\x9b\x62\x06\x06\xea\xdf\xb1\x83\x5e\xbf\xf9\xef\xf1\xab\xf1\xab\xf1\xeb\x9d\xb7\x91\x1e\xc4\x63\x8b\x77\x6f\x05\xe3\x68\x05\x92\xbc\xfa\xb7\xd6\x73\x14\x10\xe3\x5a\xa3\x5f\x84\x27\xff\xd7\x7a\xce\x85\x4e\x22\xa2\x8b\x3c\x8e\x2b\x3b\xed\x05\x5f\x00\x86\x9e\x3f\x57\x27\xeb\xf9\xf3\x97\xfb\x96\xa3\x8e\x47\xf8\x06\x54\x16\x88\xdc\x47\xbb\xe2\xeb\xb7\xbf\x1f\xbf\xf9\xe6\xeb\xb1\xfe\xef\xe1\xb7\x20\xc8\xdb\x63\x1d\xda\xf3\x72\x5e\xda\x26\x82\xac\x95\x10\xa4\xd6\x5b\x57\xfa\xb0\x16\xd1\x68\x82\xe7\xcc\x14\x0c\xb5\x08\xdc\xb7\xff\xfd\xdf\xdf\xb4\x84\x12\xfb\x4e\x68\x96\xef\x92\x72\xeb\xe3\xf5\xa7\x2f\x91\x6e\x0b\x2c\x6d\x95\x5b\x31\x8d\x02\x08\xa5\x2c\xd4\x5c\x6e\x7d\xf4\xc7\xeb\x4f\xe3\xca\xcd\xb7\x4c\x32\xd5\x96\x60\xea\x61\xd9\xa4\x04\xcd\x8c\xb2\xa3\x67\x14\x92\xa5\x1e\xd1\x5f\x58\x66\x14\x45\xb2\xaa\x21\x49\x20\x9d\x68\x77\x1d\x8f\x78\xa2\x83\x4e\xd4\x96\x84\x63\x6d\xb2\xa0\x08\x42\x6d\xf8\x48\x2c\x65\x54\xa4\x01\xea\x88\x46\x2a\x52\x8a\xd4\x42\x9c\xec\x48\x24\xd8\x01\x25\xc0\x5a\x8d\x50\xa0\xd8\x4d\x43\x2b\x09\x60\x0c\x10\x52\x90\x17\x1c\x1c\x96\xcc\x25\xa1\x54\x2f\x7c\x3c\xba\xfa\x3f\x3f\x9d\x5e\x1e\x9d\x9c\x92\x8c\x26\x4b\x96\x39\x12\xd8\x74\xac\x50\x71\x47\x72\xac\x8d\xef\x16\xd0\x79\x07\xe8\xba\x01\xd4\x17\xbd\x00\xc2\x5a\x6e\x88\xba\x83\xdf\xf4\x85\x2d\x2d\xd6\x47\x21\xd8\xa7\x06\x47\x87\x51\x0a\xf1\xd2\xb8\x41\x42\x58\xe0\xc2\xa3\xfb\xfc\xe8\x5a\xab\x9c\x73\x61\xfc\x01\x5a\x22\xe5\xe7\x6c\x45\x37\x5c\x26\x86\xc4\x1a\x3f\xb6\x14\xdd\x04\xbc\x71\x67\xed\x57\x9c\x5d\x2f\x38\x82\x65\x11\x17\x2d\x76\x85\x36\x7c\x83\x57\xb3\x02\xf7\x92\x2d\xfb\x44\x46\x5f\x54\xdb\x1b\x46\x63\x89\x17\x8a\xb4\x15\xe4\x4c\xf1\xc7\x24\xe3\x8a\x0e\x39\xaf\x83\x48\xc1\xe6\x2c\x92\x62\x89\xa9\x82\x27\xea\xf4\x81\x17\xd3\x48\x77\x84\x3a\x9f\x83\xd2\xff\x22\x64\x71\x24\xb7\x6b\x26\x32\xbf\xbc\x61\xdc\x82\xcb\xc2\xc7\x10\x5d\xbc\x92\xb7\xb0\x13\x20\x63\x24\x0e\xfe\x02\x4a\x2f\x59\x4a\x2b\x75\xf7\x8e\x9c\x3d\xa3\x5c\x82\xd7\xb0\x60\x01\x45\x88\x30\xf0\xba\x70\x73\x51\x27\x12\xfa\x0e\xe4\x3a\xce\x75\xe6\xa3\x97\x3a\x13\x75\xee\xf6\xb3\x2a\xf3\xf9\xfd\x15\xef\x46\x7f\x2b\x57\xe5\xb3\xc6\x01\x8a\x36\xd6\x64\x94\x48\xc7\xf2\x2c\x91\x62\xac\x7e\x75\x42\xab\x41\xc1\xe4\x4b\x25\xd3\x3b\x5d\xc7\xd9\x76\x57\x51\x04\x83\x13\x20\x37\x0c\xcd\x56\x3d\x6f\x93\x53\xc7\x47\xb6\x47\xef\x7c\x6b\x8a\x07\x40\x61\x81\x75\x2e\xa0\x48\x94\x53\x2b\x80\xc9\x18\x90\x85\xa3\xbf\xbd\x49\xba\x66\x92\x77\xed\x93\x88\xdf\x30\x72\x64\x69\x68\x23\xba\x65\x49\xbf\xe0\xe1\xfb\x61\x25\x91\x6b\x96\xad\x58\x9e\x7e\x90\x1f\x59\x96\xf0\xa0\x6f\xbe\xa7\xe7\x53\xef\xa7\x46\x2f\x90\x92\x0f\x52\x09\xc7\x60\xed\x5b\x63\x13\xb7\xb8\x16\x45\xe8\xf0\x6c\x1c\x0a\xd5\x5e\x2a\xfb\x37\x59\xe9\x20\xf6\xa0\x0c\x33\xde\x47\x0a\x98\x32\xe7\xa6\xcc\x24\xfa\xac\x6a\xc9\x00\x75\x81\xfa\xac\xa3\x75\x46\x2e\x0c\x50\xba\xdc\x31\x0b\xf7\xb1\x9d\x87\xdd\x5a\x10\x29\x99\xe2\xc1\x59\x0d\x4b\xe4\xdf\x1b\xf5\x35\xc4\x1b\xf7\xe4\x1a\xfe\x5a\x70\xaf\xef\x4d\x5c\x18\xdb\x64\x91\xeb\x4d\x4d\xe9\xe1\x1e\xc0\x8d\x39\x7a\xfc\x79\x3b\x26\xf8\x27\x99\x16\x77\x02\xb4\x77\x9a\x9c\x2b\x65\x53\x27\x69\xd2\x0b\xac\xa7\x69\xca\x63\x70\x11\x02\xad\x2e\x67\xc7\x1e\x76\x7a\x34\x98\xbd\xee\x39\x8d\xc9\xd9\x17\x1e\x13\xd8\xf5\xe8\x13\xfc\xfd\xab\xdf\xb7\x5c\xdf\x3c\xc2\x4e\x39\xc1\x29\x9a\x3a\xee\xbd\x51\x9d\xdf\x97\x84\xc2\x38\x52\x0d\x54\xa2\x71\x82\x12\xb6\x96\x1b\x66\x62\xd8\x2f\x7b\x55\x71\xff\x5e\xe7\x78\xc2\x74\x78\x26\xad\xe3\x86\x69\x7f\x3e\x53\x65\x56\xe7\xfe\xdd\x30\x9f\xa3\xca\x9c\xb1\x4a\x62\x04\xc3\xef\xc6\x3a\x45\x38\xde\x23\x4c\xb2\x07\x0c\x79\x2b\xd8\x9a\x65\x69\xf4\x45\xd4\x81\xc3\x04\x0d\xc3\x2a\x5c\x65\x04\xa1\x49\x46\x67\xe5\x96\xd0\x21\xf7\x8c\xba\x3b\xbd\x65\x08\x8b\x9e\xaf\x01\x26\xda\xea\xac\x16\x7a\x84\x9d\xd7\x40\xa7\x2c\xe8\x6d\xa1\xbc\xac\x7f\x51\xf1\x79\x56\x7f\x37\x5c\x12\xbd\xf1\x9c\xda\x93\x2b\xcb\xd3\xd2\xb1\xa3\xac\x7d\x24\x93\x8a\xf1\x70\x4c\x3e\x6a\xc9\x51\x48\x31\xfa\x07\x4b\x9c\xea\x0c\x6e\xe9\xbc\x2c\x71\x34\xad\x1a\x58\x76\xb6\x84\x15\x78\xba\xbe\x3e\xeb\x8f\xa2\xeb\xeb\x33\xdb\x31\x68\x94\xc9\x51\xc4\x37\xac\xf0\xa7\x85\x9b\x0f\x12\x88\xd1\xad\x27\xdf\xb4\xc6\x8f\xc6\x62\x95\xf0\xed\x3e\x0d\xb5\x49\x76\xb5\x49\x5f\x3a\x3e\x7a\x80\x17\x6a\x91\x97\x65\x77\x7b\x34\x59\x51\xb7\x8e\xf9\xbe\xf6\x68\xcc\x0f\x63\x4c\xcf\xed\x62\xe8\x7d\xd1\x8d\x09\x5d\xfa\x61\x19\xdb\x96\xb7\x89\x54\x97\x9f\x45\xb4\x2e\x19\x3a\xf4\xb4\xe7\x09\x2e\xab\x4a\x92\x11\x31\x05\x30\x26\xd3\xf4\x10\x95\x2f\xce\xc4\x51\x81\x14\x69\x96\xe4\xee\x4a\xab\x86\x76\x8d\x34\x4e\x27\xd3\xa3\x8f\x55\x03\xfd\x08\xba\x56\xbf\xc3\x5a\x56\x7a\x34\x9f\xdf\x07\x75\xe0\xa3\xe4\x53\x73\x38\x2a\xe2\x95\x39\xbb\x69\x68\xb2\x1f\x69\xdb\x3e\xae\xb4\x56\xc0\xa8\x73\xb7\xa1\x09\x97\x6e\xd1\xc3\xaa\x0c\x70\x59\x05\xa3\xa6\xe8\x80\xda\xb9\xac\x5a\xde\x98\xf8\xbd\x61\xed\x34\xf7\x5a\x9e\xc9\x53\x57\x82\xee\x8e\x98\xd8\x35\x75\x5d\xf0\x48\x9f\x80\xd6\x35\xf7\x55\x25\xef\xf8\xb4\x25\x8c\x75\xa4\x00\x72\xfe\xec\xf2\xdf\x6d\x0b\x5d\xd5\xf7\xc5\x33\x29\xe3\x29\x66\x38\xec\xa3\xf8\xf8\x1e\xc5\x20\xb4\xf9\x83\x89\x65\xa3\x90\x97\x32\xb8\xf6\x97\xcc\x76\xdf\xa4\x4d\x6c\x3b\x3f\x91\x94\x71\x6a\x25\x9e\x26\x93\xa9\x16\x27\x68\xc2\xb4\x53\xb2\x5a\x35\x4c\x0b\xa5\x33\xfc\x11\x88\xb8\x52\x33\xf2\x5a\xce\x75\x46\x30\x8c\x96\x2c\xe2\xcc\x4f\xce\x8f\xae\x9f\x3f\x0f\xeb\x41\x65\x9f\x44\x04\x4a\xd4\x22\x31\xb4\x49\xaf\xbf\xe7\x54\x7e\x70\x61\x7c\xeb\x68\xca\xb0\xf8\x9f\x9e\xa1\x9e\x4e\x20\x45\xc6\x05\xfa\x8e\xcc\x75\xda\x91\x4a\xba\x44\x57\xaf\xf7\xc9\xd9\x95\xf2\x90\x05\x34\x39\x0a\x02\x16\x31\x8c\xc3\xe9\x2b\x51\x5f\x79\x3f\x2d\x2e\x7f\xec\x4e\xb1\x9b\x35\x10\x7a\x33\x94\x87\x1d\x14\x7d\x3c\xf8\x9e\x07\x7e\x34\x3d\x32\x3b\x55\x67\xf3\xc9\xf5\x95\x61\xe2\x84\x0a\x29\xb6\x6b\x99\x9b\xfc\x9d\xc6\x85\xc8\xa9\xb6\x46\x69\xdd\x4e\x79\x9e\xf2\x7f\x30\x9d\xc5\xac\x5a\x83\x6f\x4c\xce\xe4\x32\x25\xb7\x34\x11\x5c\x2c\x95\xd0\x90\xe5\xbe\x5a\xe5\xf3\x2d\xe6\x5a\x86\xcc\xba\xc6\xf0\x64\xc5\x6b\x41\x66\x09\x5a\x29\x4b\x59\xe4\xc3\xd8\xe4\x91\x60\x09\xc5\x14\x14\xae\xce\x57\x34\x45\x11\x3b\xe4\x69\x20\x37\x4c\xeb\xc5\x32\x67\x99\xd2\xb2\xce\x78\xc7\x8e\xbc\xd7\x2d\xa3\xba\x7e\x13\xc1\x33\x4e\x23\x5f\x96\xaf\xb6\x45\xb4\x3f\xad\xe6\xfe\x35\xe9\x95\x43\xf5\xca\x7d\xdb\x58\xc8\x82\x8b\xaf\xe9\x0d\x43\x3b\x93\xea\xb8\xe6\xf8\xb3\xb3\x88\x51\x9f\x5e\x4f\x99\xae\x3e\x35\x2d\xd5\x55\xa6\xd5\x10\xe8\xfd\x6a\x62\x9c\x93\x43\x46\xfd\xf6\xed\xd7\xf7\x9a\x14\x06\x35\x08\x1a\x9d\xf4\xcc\xc8\xea\x2b\x43\x7a\x17\xd1\x16\x12\xd4\xfd\x6d\x9f\x98\x33\xa8\x0c\xf6\xeb\x0b\x3a\x03\xf8\xef\x13\x2c\x0e\x1f\x7e\x77\x3e\xd9\xf5\xbb\x5b\x9e\xb0\x65\x4e\x93\xb0\x2f\x95\xfc\xbe\xf6\x41\x33\x97\x73\xd1\xc2\xe2\xe3\x4f\x52\xd1\xa4\x80\xbd\x70\xf0\x3e\xa7\xeb\x6e\xa9\xfd\x7b\xe7\x67\x35\x31\x11\x4c\x30\xda\xf8\xe9\x71\x59\x54\xcd\xac\xb9\x9a\xce\xec\xa3\x74\xbb\x1c\x6b\x23\xc4\x8e\xa7\xa9\x98\xda\x19\x4f\x33\xa6\x38\x43\x2f\x6d\xde\xf7\xce\xcf\x6a\x59\xcf\xcd\x2b\x54\xed\xf9\x2c\x7c\xf3\x6d\x39\xb9\x4a\xc0\xce\xeb\x6f\xdf\xec\xbe\xaf\x8b\xf9\xf4\x39\x9b\xdf\x5b\x8d\xab\xb0\xab\x1f\xf4\xf1\x74\x61\xde\x35\x8f\x2b\xc6\x5a\x0f\xe9\x43\x26\x73\x89\x12\xdb\x65\x1e\xb1\x69\xc2\xa5\xe2\xb3\xfd\x27\xe7\xf8\xb8\x3a\xd9\xd8\xfc\xea\x4d\xae\x54\xee\xcf\x1a\x4a\x8c\x28\xa9\xae\xd1\x15\xf5\xc3\xef\x77\x9e\xec\x5d\xd8\xbb\xec\x84\x23\x35\xc9\x5f\x4e\xa6\x55\xd1\x4e\xc1\x9a\xe6\x3c\xd3\x45\xa5\x20\x19\xa8\x7b\x03\x16\xc9\x15\x43\x26\xb6\x4d\xc7\xc7\x7b\x09\x16\x77\x61\xbc\xab\x26\xe5\x2f\x27\xd3\xc7\x8d\xe6\x85\x2c\x2d\xf7\x0a\xe4\xd5\x6a\x12\x27\x1b\x6a\x96\xcf\x92\x89\xae\x19\x87\x89\x8a\xe1\x8e\xed\xd6\xa8\xfc\xe5\xc4\xe9\xe2\xdf\x0c\xf7\xdd\x5d\x9f\xf2\x9b\xac\xe2\xfd\x54\xe5\xbb\xd1\xf7\x4b\xbb\x35\x80\x19\x95\xb3\xa7\x28\xe0\xfd\x01\xc6\x39\xc7\x71\xd0\x6a\x8c\xaf\xcb\x0a\xde\x8e\x26\xcd\x12\xde\x4e\x78\xf5\xea\x14\x45\xbc\x9b\x8d\x60\xb0\xa7\xaa\xe2\x3d\x54\xdd\x1e\xaa\x6e\xdb\x4b\x30\x54\xdd\x7e\xca\xaa\xdb\x6d\x45\xb1\xe3\x38\xda\x5e\x88\xf7\x58\xae\xad\x8b\x8d\x1e\x55\x5a\xa3\x12\xd6\x54\x32\x82\x9e\x50\x19\x5b\x16\x06\xe0\x26\x4b\xbd\x8b\x33\xa1\x1c\x01\x3d\x99\x58\x9c\x1d\x05\x81\x50\x9e\xcb\xec\x5a\x09\x1f\x5d\x90\x9f\x14\x2d\x2d\xa8\xcd\x55\xc7\xe8\x08\xc1\xe9\x08\x4d\x83\xc5\x3c\x3c\x5a\x3f\x6b\x6a\x86\x54\x2c\x65\x59\x62\x45\x9b\x56\x08\xdc\x9f\x9f\xa7\x76\x3d\x42\x90\x95\xb8\x58\x3a\xf5\x89\xa0\x41\xa4\xa9\xd6\x9c\x07\x26\xcf\x3a\x16\xcc\xbb\x4e\x4c\x76\x2a\x17\x86\x09\x75\x67\xfe\x03\x93\xa9\x9a\x14\x6a\x42\xa8\xd8\x5a\xa0\x39\x01\xc3\x3c\x92\x1a\x27\x5a\x63\xe9\xd5\x63\x55\xc6\x87\x68\x62\x06\x29\x3b\xb5\x8d\x78\xce\x88\x16\x0e\x77\x5d\x5b\x2c\x72\xd0\x9d\x86\x9f\xa1\x73\x2f\x56\xbb\x82\x6c\xeb\x58\x1d\x41\x8b\x9a\xe4\x94\x06\x2b\x74\x53\x37\x85\xe5\x9d\x58\x32\x5f\xe3\xbc\xb5\xff\x59\x90\xf0\x8c\x25\x9c\x62\x56\x2c\xcb\x5f\x1f\xd2\x86\x69\xb4\xe9\xad\xbf\x53\x2e\xf5\xca\x1c\x66\x7b\x47\x44\xdd\x1f\xec\x0a\xe7\x69\x09\x91\x0b\x14\xa7\xf4\x48\x8a\x42\x22\xe4\x9d\xcc\x56\x3a\x10\x5d\x26\xa3\x39\x4d\x01\x3d\x5a\x87\x38\xd5\xeb\x25\xec\xdf\xb0\xdc\x8d\x13\x37\x20\x43\xb2\x84\x89\xc0\xec\xbc\x91\x95\x24\x52\xe6\x19\x86\x76\x9a\x58\x41\x5d\x0e\x49\x26\x50\xca\xd1\x94\x23\xf4\x00\x2c\xc2\xa2\x9a\x85\x85\x78\x88\xf9\x9a\xcd\x04\x2e\x5e\x2c\x31\x56\xa1\x8e\x09\x8f\x49\x52\x2d\xa6\x60\x4b\x00\x4e\x8b\x04\xfb\x3a\x5c\xcb\xb8\xef\xff\xfc\xe3\x4f\xe7\x32\xfb\xf9\xc7\x9f\xc6\xe4\x28\x8a\x74\xe0\x85\xdd\xb7\xbb\x5f\x5d\x3f\x54\xd7\x93\x2a\x92\xac\xd2\x8c\xa7\x90\x44\x13\x23\x5a\xf5\x44\x4c\x11\xe6\x31\x39\xd2\xf9\xe5\x3c\xb8\x85\xad\x49\x85\xd9\x9e\x3a\x46\x41\x4f\x59\x21\x08\x26\xa3\xfe\xb0\x14\xb8\x14\x3b\xf7\x63\x15\x70\xef\x06\xd1\x50\x90\x12\x44\x4f\x31\x95\xae\xfc\xb0\xd4\x97\x77\x01\x9f\xee\x14\xb1\x56\x85\x7c\x6f\x2f\x55\x32\x5e\x7e\x50\x1c\x67\xc7\xf2\x69\xb3\x91\x3a\x96\xbe\x6e\xe1\xda\x6d\x8d\x4f\x14\x8f\xce\xdc\x0e\x91\xbd\x90\x41\x74\x2d\x69\x48\x8a\x7a\xa5\x8f\x5e\x4b\xdb\x06\x11\x38\xaf\x7f\xac\x5d\xe2\x65\xac\xcd\xa9\x0b\xce\xa2\xd0\x1b\xa9\x53\x3e\x05\x62\x68\x41\x02\xac\x90\x0a\x1d\x90\x5b\xa9\xc2\x24\x13\xbe\x54\x78\xf0\x9d\x7f\xf3\x80\xf4\xf5\x42\x6d\x21\x96\xac\xf1\x03\x42\xb3\x97\x96\x45\xdb\x2a\xb1\x8b\x63\xbb\x59\x87\x03\x65\x65\x75\x17\xcd\x86\xb5\xd3\x39\x6c\xe4\x06\x6e\xda\x3b\x45\x1a\x89\xd7\xf0\x02\x05\x8a\x3f\xe1\x75\x21\x2c\xb2\x14\xd0\x35\xd3\x91\x37\xd9\xca\x7d\x25\x2f\x1f\xc8\x7d\xe0\x32\xe2\x1b\x13\xa5\x25\x3e\xcc\x6d\xfa\xdb\x81\x54\x33\x6d\x83\x2f\x5b\xfc\x40\x2a\xf8\x5e\x26\xa4\x72\xc9\xdb\xf7\x72\x00\xf3\x60\x0e\x5c\xc7\x96\x5a\x2b\x69\x20\x2d\x5d\x01\xed\xcd\x16\xf1\x35\xef\x5c\x30\x50\xaf\x47\x68\x70\xf5\xe2\x84\x5b\xf8\x2d\x56\xb8\x63\xcd\xf0\x20\x57\xe6\xe9\x9d\xfe\x73\xbc\xaf\xbe\x78\xe9\x4c\x7c\x59\x3e\x5f\x06\x01\x95\x6b\xf8\x95\xe2\xda\x09\xf9\x93\x4c\x8b\x52\x69\x30\x8d\xf6\x4e\xd5\x1c\x1d\xb7\xf9\x7d\x48\xfc\xd1\xbe\x96\x1d\xd0\xda\x53\x44\x59\x10\xc4\x75\x57\xba\xcb\x20\x91\x29\x48\x7c\x7d\x8f\xac\x87\x71\x14\x63\x77\x32\x00\x82\xa1\x1a\x6d\x34\xb5\x1e\xfc\xc2\x74\xed\x02\x27\x61\x54\xd7\xcc\x2c\xe1\x41\xe6\x2d\xc8\x5a\x3e\x86\x05\xc2\x12\xea\xdb\x8b\xf4\xd1\xc5\x82\xf4\x75\x60\xbb\x4a\x17\xcb\xa8\x53\x14\xd7\x21\xed\x0e\x7a\xac\x2c\xf9\x86\x09\x75\x45\x55\xd3\xf7\x72\x1d\xd2\x2a\x45\x5a\xe3\xf6\xc2\x74\x6b\xd4\x7f\xf9\x08\x99\x9d\xef\xb6\x26\xf8\x41\x11\xf7\x52\x15\xbe\xcc\x8c\xcf\x3d\xf5\xcf\xca\x07\xd6\xf1\x57\x87\x0b\x5f\xa1\x8d\xf2\xa9\x23\xa3\x28\xb0\xd1\x82\x8d\xa9\xcf\x33\xb3\x7c\x10\x1d\xe4\x0a\xf2\x6f\xc3\x2e\x85\x5a\x80\x26\x3b\x7d\x8a\x6e\xb6\xba\x84\x03\xa4\xe3\xd9\xfa\x0b\x78\x94\x4f\x2d\xf1\x7b\x56\xcd\x07\x56\x14\x13\x40\x89\x4a\x13\x72\x75\x3d\xe9\xa4\x8a\xc0\xc3\x4c\x4d\xf7\xe3\xa9\x49\xd7\xfe\xe9\x64\xea\x49\xeb\x6e\x9e\x3e\xab\xea\x4f\xb0\x51\x3e\x3d\x52\x6d\x34\x1b\x77\x6f\x94\xee\xf4\x1b\xe5\xb3\x7b\x22\x8e\xf2\xe9\xbb\x21\x77\x17\x2e\xcf\xcb\x8f\x3a\xb6\x65\x3f\xf9\x4a\xef\x4c\xb0\xca\x15\x1d\x23\x15\x46\xcb\xd0\x3c\x8b\x58\x06\xa9\x3c\xa1\x7a\x00\x8e\xd5\xde\x67\x21\x2d\xb5\x6e\x95\x7e\x6b\x16\xef\x76\x64\x67\x7b\x65\x49\x9c\x0e\xb6\xd2\xcd\x6c\x7b\xb0\x15\xb0\x08\x99\x48\xdb\x17\xd6\x25\xc4\x11\x8d\x5a\x9f\x16\xf6\x80\xa2\x66\x4a\x74\x7e\x37\x3b\x11\xce\x81\x51\x27\x5f\x17\x79\x9b\xda\x7b\xad\x14\x02\xd2\x47\x07\xec\x4e\x88\xe5\xd4\x60\x40\xeb\x66\xf5\x30\x1d\xb2\xf2\xc2\x64\xff\x51\x02\x5c\x5f\x0a\xd6\x49\x01\x74\x58\xeb\x2e\x14\xac\x63\xee\x25\x79\xab\x52\xb0\x9f\x7f\xfc\xe9\xfa\x78\xfa\xf3\x8f\x3f\x29\x44\xfc\xfc\xe3\x4f\x9f\x4e\xd4\x1f\x1d\xf2\xce\x40\xc7\xe0\xe9\x45\xc7\xd2\x7b\xdc\x90\xbb\x2f\xc6\xad\x3a\xbe\xf2\x71\x5e\x8c\xc9\x8b\x94\x31\xa3\x1c\x03\x32\x86\x19\x6d\xd3\xad\xc8\xe8\x9d\x2b\x96\xdf\x7e\x66\xb3\xd6\x7b\xb5\x96\x1f\x7d\xf7\xe6\xf6\xbe\x8d\x4e\xcc\xba\x56\xcb\xa4\x79\x5d\x56\x47\xed\x5c\x66\x68\x87\x3e\xf4\xa4\xf0\xb5\x90\xa0\x1d\xb5\x8d\x21\xab\x83\x23\x20\x7a\x2c\x4e\xd2\xde\xfb\x9c\x45\xf2\xf6\xe5\x7e\x15\x64\x0b\xd9\x88\x55\x53\x2e\xd9\x94\x55\xe8\xb8\x78\x80\x22\x0c\x14\x9c\xd7\x2b\x46\xb2\x5b\x09\x7b\x0d\xbc\xc0\xcd\x3b\x24\x0e\x8a\x01\x6d\xcb\x2c\xc2\x1d\x6b\x77\x21\xcc\xec\x75\x3d\x57\x4b\xf1\xca\xac\x1b\x92\x4e\xcc\x0f\x6a\x05\xdd\xbe\x9b\x1f\xdc\xae\x64\xa4\x17\xe9\x10\x96\x68\x36\x2b\x99\xf1\x1f\x15\x6d\xf9\xdd\x8a\xa6\x2f\xd6\xdb\xcf\x11\x9d\xb3\xe8\xa5\xa2\x39\x9a\xbc\x77\x1d\x66\xcb\xb3\x59\xcd\x1a\xb6\x18\x42\x87\x8e\x04\x23\xed\x88\x12\xb1\x50\x8d\xda\x73\xb7\xd9\x9e\xd2\x45\xa1\x51\x80\x4d\x01\x6b\xe0\x04\xe5\xa9\x9e\x4e\xef\x4d\x01\xd3\xf5\xcd\xb6\x39\x21\x05\x81\xaf\xca\x59\xf9\xb4\xcf\xb5\x98\x4e\xfb\x54\xba\x0e\xb7\x80\x1d\xc7\x16\x0b\x16\xe8\xb8\x4a\xad\x3e\x88\x80\xa4\xea\x60\xb5\x4a\xad\xe7\x1e\xa0\x0b\x29\x46\x26\x2a\x01\x6d\xb3\x18\x75\xa2\x75\x21\x0b\x99\xac\x99\xad\x98\x00\xd7\x63\x7f\x25\xe9\xf2\x81\xad\xd0\x44\x4c\x59\xdb\xe5\x31\x2e\xee\xda\x4f\xff\x28\x08\x64\x2e\x76\x91\xb7\xae\xaa\x1f\x7e\x31\xb9\xab\x46\x8e\xdb\xfb\x74\xa8\x39\x29\x89\x65\x58\xa4\x66\x02\x21\xae\x20\xcd\x1a\x19\x1d\x24\x17\x67\xdc\xba\xdb\x7a\x29\x9a\x09\xa9\x7a\x8c\xf8\x9f\xea\x3d\x00\xaa\xde\x3c\x18\xdd\xe4\x3e\x28\xef\xee\xd2\xa7\x5d\x76\xa0\xbd\x17\xb6\x49\x89\x71\x45\x85\x53\xed\x0e\xca\x0b\xf5\xa4\x12\x7a\x3b\x4e\x7e\x3f\xa1\x8e\xec\xa0\x76\x20\x7d\x25\x24\xd2\x57\x4a\x22\xcd\xf3\xd5\x29\x27\xfd\xfb\xae\x74\xe5\x7e\x54\x6a\xda\x90\xea\x1b\x7c\x8e\xc9\xa4\xe3\xb6\xa1\x9e\xd2\xf4\x00\x16\x85\x2b\xdb\x92\x50\xde\x3f\x32\x9d\x46\xdf\x6b\x81\xaf\x3e\x47\xe7\x27\xcf\x3d\x9e\xd4\xf6\xb3\x9b\x16\xcb\x57\x8f\xd0\x3c\x26\x1d\xc8\x6e\xd2\x36\x7e\xf3\x60\x69\x1b\xbf\x44\x93\x70\x41\x2f\xad\x7a\x44\x66\x20\xc8\xe0\x5b\x96\x3d\xed\x61\x8d\x69\x15\xb6\xeb\xdb\xab\xaf\xb4\xed\x30\x61\x19\xfc\xbd\x48\x5f\xd6\xc5\x6e\x5d\x0b\x49\xb4\x59\x1a\x09\xe8\xc7\x0e\xb0\xa4\x29\x0d\x56\x05\x24\xcf\x53\x82\x91\x28\x70\x4b\x36\xf8\x0e\x0a\x17\xa5\x02\x19\x5d\xb8\xa8\x5a\xb3\xd4\xc9\x31\x9b\x75\xdf\x16\xd9\xf7\x9b\x56\x84\x0e\x34\x9f\x33\x25\xf6\x1a\x05\xaf\x4c\xea\xbc\x1b\x41\x9f\xea\xd8\xaa\xb0\xd0\x7e\x76\x58\x28\xd5\x7e\x52\x0b\x68\xcf\x11\x75\x45\x05\x16\xa4\x30\xae\x03\xda\x95\xa3\x5d\x64\xd9\x89\x6d\xee\xce\x35\x5d\x71\x05\x60\x86\x2f\xf7\x71\xf7\xd1\xd7\x73\xb3\xec\xee\x8f\x44\x04\x2c\x9b\xcc\x3d\x04\x02\xf5\x99\x63\x7e\xf8\xbb\x3f\x3d\x66\xf5\x41\x2a\xab\x67\x08\x27\x39\x62\x8b\x0c\x6d\x57\xa5\xd3\x12\x9e\x9e\x1e\x8a\x19\x62\x1f\xc4\xc2\xc7\xe8\x79\x5a\x42\xf6\x45\x29\x68\x77\x9b\x55\x96\xc5\xfd\x7c\x18\xfe\x74\x7d\x3d\x2d\x6d\xf4\x5e\xc7\x05\xb5\x4b\x54\x53\x3f\xe8\xc6\xaf\xf1\x61\x3e\x0b\x6b\x96\xad\x64\xb8\x03\x67\xf8\x88\x1f\x3c\xae\xd4\x8e\x53\x46\xa2\x8e\xf3\xb6\xdc\x36\x55\x9f\x58\x87\x42\xed\xc7\xee\x4e\x21\x36\x26\xc4\x5e\x0c\xb4\x2f\xd8\x78\x39\x26\x1f\x4e\xaf\xf7\xc9\xf4\xd3\xf5\x3e\x61\x59\x30\x7e\x49\x3e\xea\xca\x90\x1d\xfa\x17\xdd\x87\xe2\xfb\x17\x97\xcf\xd5\x35\x6c\x09\x9e\x83\xbf\x2e\x5b\x55\x4c\xb3\xd5\x0e\xeb\xf8\x7c\xaa\xda\x3f\xc5\x32\x76\xad\x60\x37\x45\xb1\x57\x10\xc0\x1c\x17\x4b\x85\xd3\x34\x6b\xd1\x77\x31\x08\x61\xe3\xe5\x21\x19\x11\x76\x47\x83\xec\x90\x1c\x2c\xa4\x84\x4a\xcf\x90\xb3\x8d\x1c\xcc\x69\x42\xce\x2f\xae\x4f\x0f\xd1\xe5\x8c\x89\x2c\xd9\x92\x75\x97\x78\x7e\x71\x7e\xf6\x3f\x9a\x72\x6e\x09\xe3\x58\x0c\x83\xcc\xf6\x60\x10\xb4\x7f\xa9\x3f\x71\x94\xd9\x9e\x71\x08\xf3\xd4\x55\x2d\x9f\x0d\x8d\x78\x48\x0b\x25\x1f\x96\xf2\x50\xe2\x13\xcf\x5c\xd9\x1c\xca\xa7\xcf\x9e\xab\x6e\x02\x85\x62\xc8\xde\x5e\xc9\x1b\x0a\x88\x37\x39\xdc\xfb\xf1\xaa\x49\x06\xbe\xda\x73\x66\x10\xa1\xf5\x87\x0b\x99\xac\x0f\x0d\xda\x67\xf9\xab\x57\x5f\x05\xaa\x63\xf8\x17\x3b\x34\xb9\x77\xfa\x28\xbc\x70\xab\x01\x54\xd0\x5d\x04\x45\x9e\xcd\x12\x96\x5d\x8f\x34\xbe\x1f\x34\x02\xf6\xd1\xe1\x5e\xd2\x5b\xe8\x20\x1a\x01\x8f\x7b\x8d\x8c\x7d\x19\x07\xef\xdf\x69\xbf\xeb\x44\x2f\x82\xd4\xdd\x15\x0f\xd6\x3d\x79\xe6\xe4\xf8\xe3\xb4\xaf\xd7\x07\x10\x23\x3f\xec\x36\x95\xa2\x66\xd7\x07\x00\x2d\x86\xfa\xcb\x10\x68\x14\x0c\x59\xd4\x88\xf0\x16\xcc\xc6\xc7\x2e\x8f\x53\x91\x69\x75\x7d\xbd\xc2\x26\x85\x40\x73\x2b\xc3\x84\x1a\xa7\x4d\xb4\x05\x1b\xba\x6a\xb4\x79\xdb\x62\x46\xef\xb5\x13\xd5\xd4\x76\xe0\xf3\x20\x99\x48\x61\x63\x09\x90\x12\x40\xee\xcc\x5d\x2e\x6b\x90\x85\x4e\x21\x18\x23\x44\xc0\x2d\x15\xf2\x74\xd9\xb8\x2a\x53\x74\x51\x92\xb1\x60\x25\x78\x40\x3b\x3c\x91\x40\x2d\x8a\x6a\x7f\xbe\x8e\x65\x5a\x3a\xcf\x61\x81\x98\xe7\x69\x99\xfa\x77\xc1\x13\x76\x4b\x23\x77\x12\xd3\xf2\x41\x6a\xa1\x95\xb2\x98\x40\x58\x12\x26\xca\x32\xf3\xe0\x96\xd7\x7d\x34\x3a\x6d\x77\xd0\xec\xe1\x8b\xa1\xba\x19\x13\x3b\x7d\x44\x97\xe9\xab\xc8\x08\xff\x2d\xfa\x75\xc3\x0c\xa1\xaf\xd3\x60\x25\xc9\x25\x32\x6d\xf2\x82\x8f\xd9\x98\xc4\x5c\x2c\xd3\x76\xdb\x57\xaf\xf9\xf6\x20\x06\xb1\x3b\xf4\xcb\x83\x90\xc9\xd4\x84\x80\x3d\xd8\x19\xac\xa2\xdc\x42\x79\xdc\xc6\xf2\xd4\x58\xc4\xbc\x58\xe8\x81\x01\x4f\x10\x8f\x67\x72\x26\xbd\xbb\xe5\xca\x5b\x66\x55\xb2\xf2\x4c\x15\xf5\x99\xda\x27\xf7\x20\xa2\x01\xca\x08\xcc\xb8\xd7\xba\x5d\x4b\x08\xa7\x7d\xb9\x62\x5f\xb6\x54\x8d\x41\x2a\xe1\xd1\xc1\x67\x68\xad\xbb\x61\x3a\xc4\x9a\xc4\x94\x27\xfe\x8a\x06\xe5\xa3\xae\xac\xba\xaa\x9a\x8d\x53\x3a\x97\x79\xd6\x83\x91\x3c\xd6\xcd\x51\xc8\x4c\x9d\xbe\x7e\x3b\xe3\x1c\x1b\x77\x78\xf1\x40\x93\x76\x6f\xba\x81\x61\x0c\x0c\xe3\xb7\xcd\x30\x84\xcc\x8c\x58\xe5\x45\x4b\xbb\xb7\x4d\x4f\x3f\x9b\x7e\x1e\x36\x0d\x27\x50\x23\xf2\x75\xf8\x81\xea\x66\x7e\x84\x75\x9c\xe3\x1e\x2e\x3d\xf7\x73\xe6\x89\x7f\xad\xc8\x9d\xed\xd9\xb8\x7d\x44\xde\xdf\x30\x6c\x81\x86\xd7\x96\x04\x0c\x4e\xc6\xb0\xeb\x79\xd2\xa6\x99\xd7\x1e\xb9\x7a\x9d\x4f\x21\xbc\xe8\x12\x62\xe3\x4c\xa4\x17\xaa\xcd\x5f\xcc\x59\x40\xf3\x54\xfb\xc1\x75\x98\x12\x0a\x10\x03\x96\x40\x1f\x85\x2f\xdd\x4b\x54\xc5\x9b\x4c\xad\x15\xcf\xc0\x2e\x16\x8b\x2e\x83\x87\xa5\xd7\xdb\x7e\xe9\xf3\x06\xff\x54\xa7\xdd\xfe\xf7\xe6\xad\xf9\xeb\xea\xf8\x1a\xde\xf8\x3b\xc7\x9e\xce\x78\xc6\xb4\x3b\x1d\x94\x64\x81\x4d\x61\x0c\xb1\x58\xb6\xe2\xf5\xe8\xcd\x37\xdf\xb4\xa8\xf9\x9f\x6e\xab\xa7\xbe\x44\xa1\xf8\x54\x8d\xab\x45\xa2\xd0\x1e\xd1\x67\x9e\xca\x3f\xf6\xa8\x43\xe0\xd9\x10\x78\xd6\xc3\xd4\x39\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\xe6\x9b\xf1\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\x99\x6b\x16\x03\x1d\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\xac\xfa\x0c\x81\x67\x43\xe0\x59\xf1\x0c\x81\x67\x43\xe0\xd9\x10\x78\xe6\xec\x74\x08\x3c\xb3\x70\x31\x04\x9e\x0d\x81\x67\x43\xe0\x59\xf5\xf9\x92\x81\x67\x2d\xc5\x21\x09\x19\xe9\x0c\xbd\xae\x77\xed\x1d\xb7\xc8\x09\xfa\x6c\xdc\x23\x31\x77\xf5\x54\x0d\x99\xb9\x87\xcc\xdc\x43\x66\xee\x21\x33\xb7\x0b\xbc\x21\x33\xf7\xe0\x20\x35\x38\x48\x0d\x0e\x52\x83\x83\xd4\xe0\x20\x35\x38\x48\x95\xcf\xe0\x20\x55\x3e\x83\x83\xd4\xe0\x20\xf5\xab\x72\x2c\x18\x1c\xa4\x06\x07\xa9\xc1\x41\x6a\x70\x90\x6a\x34\xfe\x8d\xd1\xb1\xc1\x41\x6a\x70\x90\x1a\x1c\xa4\x06\x07\xa9\xc1\x41\x6a\x70\x90\x1a\x1c\xa4\xac\x67\x70\x90\x1a\x1c\xa4\x8a\x67\x70\x90\x1a\x1c\xa4\x06\x07\x29\x67\xa7\x83\x83\x94\x85\x8b\xc1\x41\x6a\x70\x90\x1a\x1c\xa4\xaa\xcf\x90\x99\x7b\xc8\xcc\x3d\x64\xe6\xae\x3c\x43\x66\xee\x21\x33\xf7\x90\x99\xbb\xd7\x08\x43\x66\xee\x21\x33\xf7\x90\x99\x7b\x48\xb4\x3a\x24\x5a\x1d\x32\x73\x0f\x99\xb9\x87\xcc\xdc\x7e\xf8\x87\xcc\xdc\x03\xc3\x18\x18\xc6\x90\x99\x7b\xc8\xcc\x5d\x79\x86\xcc\xdc\x43\x66\x6e\x78\x86\xcc\xdc\x9e\x67\xc8\xcc\x3d\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\x59\xe5\x19\x02\xcf\x86\xc0\xb3\x5f\x55\xc0\xc6\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\x59\xa3\xf1\x6f\x8c\x8e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x66\x3d\x43\xe0\xd9\x10\x78\x56\x3c\x43\xe0\xd9\x10\x78\x36\x04\x9e\x39\x3b\x1d\x02\xcf\x2c\x5c\x0c\x81\x67\x43\xe0\xd9\x10\x78\x56\x7d\xfe\xbd\x33\x73\xf7\x71\x35\x70\x2f\x75\xbb\x74\xb0\x40\xcf\x90\xf2\xa6\xee\x82\x3a\x4f\xf1\x2e\x82\xf4\x51\xb3\x6d\x4c\x6f\x2d\x45\xc5\x3e\xe8\x99\x92\x7b\x55\x20\x85\x78\xd7\x3c\x2e\x54\xa3\x16\x9e\x54\xdd\xc8\x12\x5b\x3b\x67\x81\x2e\x83\x98\xe7\x19\x94\x3e\xaa\x53\xb0\x90\x86\x63\xd4\x03\x15\x1a\xec\x15\x5f\xaa\x6b\xf5\x6c\x0f\xfa\x9b\xed\x81\x08\xa0\xdb\xba\xba\xa6\x0b\x75\x29\xcc\x40\xe8\x84\x0e\x22\x79\xcb\x12\x84\x06\x5d\x30\x2d\xe0\x52\x22\xd7\x3c\xcb\x14\x2f\xe1\x26\x7a\xc7\xd5\x69\x20\x45\xca\x31\xc9\x3a\xea\x2a\x67\x7b\x5c\x2c\xb8\xe0\x19\x9b\xed\x91\x11\x01\xc7\x3f\x6b\x3a\x86\x53\x69\x38\x49\x44\xd3\x6c\x4c\x8a\x99\x39\x51\xa2\x60\xe5\x21\x13\x19\x0f\x68\xa4\x01\xac\xf7\xc3\x05\xa1\x51\xbc\xa2\x22\x5f\xb3\xc4\x6a\x07\x1b\xc0\xd5\xab\xe6\x4f\x5a\xb5\x86\x9e\x2e\x4e\x93\x10\x6e\x0e\x91\xaf\xe7\x4d\xad\x67\x9c\xb0\x93\xf3\xa3\xeb\xae\xed\x31\xc5\x66\x84\x8b\x90\x07\xa8\xd1\x29\x22\x4d\x56\x26\x71\x7a\x95\xaa\x90\x39\x5b\x48\xb7\xe8\x46\xc5\x96\xa8\xee\xbc\xb0\xce\xa5\x8c\x58\xd3\x19\xa3\x45\x6e\xaf\x49\x59\xd7\xb6\x7e\x0c\x77\xb5\xa5\x25\x33\x07\x2d\xe6\xc1\x0d\xfe\x9f\xcc\x9d\x04\x48\xcd\xad\xa6\xf3\xb0\x76\x82\x8e\x8b\xb1\xd6\x30\x93\x46\xe8\xf0\xeb\x6d\x4a\x38\x94\xec\x16\x45\xf2\x16\xb1\x86\xaa\xbb\x42\x99\x85\x92\xf5\x1f\x41\xb7\x83\xe7\xfa\x73\xc4\x33\x96\xd0\xe8\xe7\x1f\x7f\x72\xf5\x3b\x9b\x91\x11\x46\x85\xa9\x3d\xbd\x8e\x69\xc2\x53\x29\xf6\x09\x84\x86\x1a\xa5\x8c\xee\x70\x21\x25\x99\xd3\xe4\xe7\x1f\x7f\x2a\x87\xfa\xdd\x4e\x43\x95\x63\x29\xa1\x8a\xfd\x3d\xa7\xd1\x1f\xd0\x89\xd9\x5c\x12\xf8\x42\xdf\x0e\x78\x0a\x6d\x8c\xa1\xa3\x18\xd0\x4d\x3e\x7e\x50\x50\x50\xe3\x80\x37\x37\xff\x08\xe0\x1f\xe3\xf1\x98\xfc\xcb\x1a\x3b\x4b\x72\x66\xa2\x90\x0a\x47\x5e\xec\xfd\x2f\xc4\x1d\x38\xa0\x6d\x3b\xde\x41\x4a\xf8\x14\xd0\x5c\xb4\x02\xe4\x1a\x60\x47\x18\x61\x18\x1f\x50\xae\xfe\x2d\x38\x57\x34\x7d\x01\x3d\x7d\x56\xcc\xe1\x65\x39\xe8\x75\x31\x26\xcd\xca\x55\xb0\x56\xe0\x77\xb0\x0d\x9d\x6c\x55\x77\x51\x68\x7e\xe5\x02\xda\x82\xfa\x0f\xfe\x9b\xbf\x7a\xf5\xe6\x2d\xfe\x3f\xbe\x29\xbe\xb9\x5a\xc9\x24\x1b\x05\x3c\x09\x72\x9e\x81\xe0\xaa\x3f\x72\x0d\xf4\xcf\x7f\xb6\x7e\x2d\x61\xc4\x17\xd8\xe6\x65\xd1\x28\xa6\x09\xd3\x97\x9e\x65\x22\xf3\x58\x5d\x7a\x66\xb3\x8c\x46\xd1\x0b\xa7\x99\x4f\x57\x04\x40\x67\x9f\x82\x22\x98\xde\xcc\x5e\xa5\x51\x64\x69\xf1\xe0\x08\x9e\xe1\x1e\xc0\x6b\xaa\x87\x8c\xa9\xc3\x8b\x94\xc4\x38\xbd\xda\x14\x3c\xdd\x27\xa3\x7d\xf2\x19\xf0\x70\x30\x26\x57\x70\xb2\x88\x3e\x59\xde\x4e\xd7\x32\x61\x24\x56\x37\xac\x34\xe5\x1b\x46\xe6\x18\xae\xb1\x35\xba\x63\xad\xd3\x27\x2c\x0d\x68\xcc\x48\xb0\xa2\x09\x0d\x32\x96\x68\xb0\x4f\xd1\xeb\xdd\xb9\xf5\x5f\x00\x1f\x5a\xd3\x90\x8d\xf2\x18\xb7\x45\xfa\xb2\x20\x38\x10\x23\x88\xe4\xe1\x96\xcd\xd5\xd5\x8c\x21\x81\xb0\xd7\x3b\x64\x71\x24\xb7\x6b\x26\x9c\xe4\x12\xbf\x8e\x13\x19\xea\x0d\x0a\x7d\xaa\x33\xa4\x68\x4e\x22\x45\xc6\x44\x58\x6c\x70\x1a\xdc\xe0\x9f\xff\x52\x4d\xcb\x9e\xc9\xef\xfe\xe8\xd9\xf7\x21\xdb\xe8\x8e\x7f\x47\x6a\x7b\xdf\x75\x8d\x69\x13\x8a\xaa\x5a\xd6\xbe\xd2\xde\x95\xf3\xab\x27\x13\xf9\x34\x90\x46\x09\xb3\xab\xe0\x07\x56\x9c\x1e\xbc\x12\x8c\x3d\x25\x67\xbf\x5d\x41\xc4\x79\x85\x97\x5b\x2e\x6e\xfa\xfa\xe8\xa4\x4d\xea\xb4\x49\x5d\xf3\x64\x5f\xff\x35\x97\xd9\x6a\x4c\xd0\xeb\x14\x78\xc5\x5d\xac\x24\xa5\x2c\xda\x5a\x97\xd4\x17\x50\xaf\xc5\xe9\x4e\x6c\xd1\x4d\x41\x82\x84\xe9\x00\x97\x54\x9f\x69\x99\x10\xc1\xa3\x97\xfb\x26\x48\x25\x64\x0b\x9a\x47\x59\x4a\x70\x5a\x0a\x75\x49\xe8\xb9\xab\x64\x92\xdc\x2a\x0a\x39\xd1\x37\x62\x05\xc4\xa9\x75\x39\x06\x79\xd4\x50\xcd\xa2\x78\x09\xba\x50\xfa\xe2\xdc\xf5\xf8\x84\xa7\x78\xb2\x46\xe4\xaf\x5a\x44\x53\x00\x99\x91\xfe\xb6\xaf\x59\x82\x12\x78\xc1\x26\x53\x19\xd8\x79\x7a\xb9\x08\xa2\x3c\x34\x06\xcb\x80\x2a\x21\x18\x3a\x28\xbb\x21\xc8\x82\x85\x2c\xa6\x04\xdd\xbd\xf4\x79\x4a\x56\x81\x3b\x75\xc3\x56\xc1\x88\x22\x47\x65\xf7\xce\x4b\x1b\xb4\xf3\x4e\x7d\xbf\x73\x40\x57\xa7\xa0\x33\xf4\x2d\x13\x52\xbe\xef\xb5\xc2\xd0\xba\x76\x24\x8c\xaa\xd3\x14\xdc\x10\xba\xa4\x5c\x38\xb7\x2c\x6e\x13\x34\x34\x45\xb7\x74\x9b\x36\xe2\x0b\xd0\xf3\x63\x9f\x08\xb6\x61\x49\x65\xd7\x39\x95\x27\x3d\xeb\x22\x95\x58\x20\x0c\x18\x46\x61\x27\x8d\x65\x9a\xf2\x79\x64\x06\x2e\x5d\xdb\xd4\x07\x57\x31\x0b\xdc\xd7\x69\x9c\x88\xdf\xd9\xaf\xfd\xe2\xee\xbd\x13\xbb\xaf\xd2\xcd\x5f\x81\x61\x84\xb6\x1b\x43\x9a\xc9\x84\x2e\x99\xf9\x29\xcd\x68\x96\x23\x62\xd0\xa2\xc7\xc2\x73\xcb\xd6\x72\xc3\x45\xa8\xa8\x91\x41\x69\x1c\xe5\x09\x8d\xca\x5f\x02\x29\xd0\xb0\x9e\x1e\x92\xbf\xfe\x4d\xfd\xa2\xfa\x67\xa1\x0e\x94\xd5\xbf\xce\xc4\x68\x34\x2a\xfe\x43\x63\x6e\xc2\x6e\x09\x8d\x39\xbb\xcb\x98\x80\xc6\xe3\x9b\x6f\xd3\x31\x97\x07\x9b\xd7\x33\x81\x03\x1f\xe7\x69\x26\xd7\x97\x0c\x0d\x86\x27\x0c\x2e\x80\x40\xb4\x2b\xc1\xad\xa0\xe6\x22\xe8\x26\x2d\xd0\xa5\x38\x65\x59\x3a\x0e\x92\x70\x1c\x27\x52\xa1\x23\x00\x3a\x34\x96\xc9\x72\x26\x14\x81\x83\xef\x40\x56\x39\x24\x9e\x66\x55\xab\x13\x02\x54\xf7\x7e\xc6\x77\x11\x4f\xb3\x3f\x3b\xdf\x9f\xf1\x34\xab\x62\xae\x01\xa5\x5e\x16\x2e\x96\x79\x44\x93\x66\x03\x40\x6a\x20\xd5\xca\x1e\x47\x79\x9a\xe1\x6d\x71\x63\x10\xac\xfe\x18\x69\x0c\x28\xc4\x41\x67\xc1\x8a\xad\xcb\xb8\x5f\x19\x33\x71\x34\x9d\x7c\xf7\xd5\x55\xf5\xf7\xda\xde\x6f\x78\x76\x57\x62\x2b\xc0\x4b\x80\x26\x73\x9e\x25\x34\xd9\x92\xc9\x94\xa4\xf9\x7c\x64\xc0\x3c\x38\x9e\x9c\x5c\x56\x08\x0f\xea\x27\x56\x8a\x54\xa1\x4c\x03\x77\x53\xb8\x58\x21\x2d\xca\x24\x86\xf6\x69\x97\x8c\x35\xd9\x70\x6a\x39\xc6\xa1\xdb\x03\x7e\x6a\xf7\x2b\x17\x4d\x40\x8d\xfd\xbc\x50\xc6\xd8\x67\xcd\xa3\x2c\xb5\x76\x61\xf5\x68\x55\x73\x95\x28\xbc\x69\x1f\x11\x8c\xa7\x40\x6a\xa0\xd1\xcf\x42\x8d\x6b\x24\x07\x40\xdc\x34\x67\xa2\x2e\x2d\x98\x42\xa1\xd0\x07\x74\x0c\x72\x0b\x4b\x52\x73\x63\x0d\xa4\xd8\xb0\x24\x23\x09\x0b\xe4\x52\xf0\x7f\x14\x9d\xa7\xc6\x6b\x05\xaa\xb4\x35\x64\x3c\x2e\x32\x96\x28\x09\x07\x28\x13\xea\xe8\xd7\x74\x4b\x12\xa6\x86\x21\xb9\xb0\x3a\x34\xfe\x72\x1f\x95\x3c\xcb\xc5\x42\x1e\x42\x16\xa9\xf4\xf0\xe0\x60\xc9\x33\x73\x00\x03\xb9\x5e\xe7\x82\x67\xdb\x03\xb0\xa7\xf3\x79\xae\x96\xe4\x20\x64\x1b\x16\x1d\xa4\x7c\x39\xa2\x49\xb0\xe2\x19\x0b\xb2\x3c\x61\x07\x34\xe6\x23\x80\x5d\x00\x21\x18\xaf\xc3\x67\x89\x3e\xb1\xe9\x73\x17\xd9\x6a\x52\x3b\x38\x5c\x6d\xcb\xa0\x4e\x97\x0e\xbd\x46\x81\x1d\x65\x8f\x02\xdb\x86\xff\x5e\x9e\x5e\x5d\x13\x33\xba\x33\x4c\x1d\x91\x5f\x7e\x99\x96\xeb\xa0\x90\xc6\xc5\xc2\x08\x59\x60\xc2\xb0\x75\x0d\xc8\xe1\x23\xee\x90\xb3\xd3\x7c\xbe\xe6\x59\x6a\xa5\x1f\x92\x63\x72\x5c\xd8\x36\xf2\x38\xa4\x19\x0b\xc7\x64\x22\xc8\x31\x5d\xb3\xe8\x98\xa6\xec\xc9\x57\x01\x24\xcd\x91\xc2\x6d\xdf\x75\xf0\xa4\x0c\xf0\x29\x6e\x0b\x42\xea\x59\xb6\xfa\x41\x55\x6c\xb2\x1a\xc5\x66\x02\x1d\xcb\xd4\x02\x94\xd4\xa9\x6b\xf9\x98\x85\xad\x71\xd2\x16\x73\x88\x27\xde\xa2\x51\xd0\xd1\xb8\x84\x4e\xa6\xc4\x90\x34\xa4\x60\x73\x16\x49\xb5\xb7\xa4\x56\x07\x31\x97\x11\xdd\x2f\x5c\xfc\x27\xb1\xf7\xa7\xe2\xeb\x2b\x99\x96\x2e\x4e\x4f\xc0\xd3\xed\xe8\xa5\x3a\x3f\xb7\xdf\x35\x79\x79\x05\xb2\x3a\x1f\xb7\x5f\x3e\x25\x0f\x1f\xf8\xdb\xc0\xdf\xec\x25\x18\xf8\xdb\x17\xe3\x6f\x36\x75\xe8\xc7\xdb\x9a\xb4\xa6\x7c\x76\xe7\x6e\xec\x2e\x06\x97\x8d\xc9\xb4\x8f\x42\x49\xad\xb4\xfe\xa0\x1a\xac\xf7\x62\x32\xdd\x7c\x0d\xc7\x6a\x32\xdd\xbc\x7d\x69\xae\xb6\x66\x5b\x38\xef\xad\x13\xd0\x8b\x4f\xd4\xd1\x5c\xd0\x80\x29\xa6\xf2\xf3\x8f\x3f\xd5\xac\x0a\x85\xfa\x07\x2e\xf2\x91\x94\x37\x46\xff\xc6\xcd\x87\x4e\x65\xab\xf1\x9b\xb1\x42\x08\x27\xd3\x8a\x27\x1b\x46\x3d\x83\xa5\x4b\x2b\x16\x80\x84\xd0\x6c\x0c\x5e\xe1\x4e\x5e\x3c\x9b\x65\xa0\x8d\xc8\xd3\x86\x7b\x79\x2d\x98\x1e\xa2\x17\x0b\x8f\x0c\x99\x68\xdd\x99\xab\xd3\x7a\x85\xe3\xd9\x4c\xf5\xa7\x4b\x1b\x17\xf3\xd7\xa4\x2f\xad\x8e\xca\x85\x3b\x54\xbf\xb8\x6e\xd9\xab\x34\x86\xb0\x59\xc5\x54\x2a\x2e\xbf\xe8\x6e\x70\x5a\x6e\x04\xd4\x35\xb8\xba\xe5\x29\x2a\x36\x31\x81\x13\xcd\x48\x9c\x27\xb1\x54\xe7\xf4\xc5\x64\xa1\x7d\x8c\x56\xac\x5c\x1a\x35\x8e\x71\x22\x6c\xf7\x54\x32\x4a\x3e\xc9\x70\xf9\x23\x46\x13\x51\x2c\x9b\x5e\xc1\xb2\x5f\x05\x40\x9e\x82\x0a\xda\xeb\x1d\x31\x9b\x65\x66\x39\xc6\x4e\x35\xf2\xa3\xcb\x5c\xa4\x84\xf0\xdc\xed\x36\x53\x3b\x50\xa7\x98\x73\xf2\xe7\x1f\x7f\xfa\x5f\xa0\x3d\xd7\x46\x8d\xd2\x5d\xa6\xc8\xe2\x71\xc6\x45\x7e\xd7\xbe\xe7\x0b\xc3\x6d\xb1\x9d\xff\x00\x1b\x6f\x1d\x67\xdb\x31\x31\x83\xd8\x96\x5e\x34\x7b\xf2\xb4\x95\xa6\xa8\x67\x29\x37\x2c\x11\x68\x4e\x29\x9c\xc8\xe4\x7e\xe9\x38\xb6\x4a\x64\xbe\x44\xe7\x00\xa3\x27\xd5\x42\x70\x7b\x3c\xbb\x5e\x58\xd8\x93\xaa\x61\x11\xcd\x0f\xb5\xae\x43\x20\x08\xb0\x1b\xff\x40\x98\x9a\x3b\x1e\xe9\x50\x6d\x8f\x0d\x1e\x41\x77\x76\x87\xd2\x21\x67\x03\xc5\xc7\xb7\x25\xea\xf6\x89\xad\x6f\x95\x29\x06\x02\x1c\x64\x12\xdc\xcb\x15\x24\x46\x25\xe1\xb6\xce\x47\x32\xa0\x51\x11\x0f\xae\x75\x94\x93\x05\xa9\x10\x32\x43\xc5\x8a\x95\xed\x85\x66\x38\x40\x06\xd7\x15\x67\x3d\x98\x3c\xd0\x11\x35\x73\x2d\x61\x01\xd6\x2c\xd4\x3b\x89\x8b\xd9\x40\xe5\xd9\x29\xf0\x5c\x81\x18\x36\xdf\x88\xdc\x2a\xf2\x56\x79\xe1\xa1\x03\xa8\x2e\x1d\x55\x96\xde\x31\x58\x11\xc0\x57\x6a\x5e\xd5\x89\x76\x76\x2a\x6c\x22\x04\xf9\x66\x13\xf0\x34\xd8\x77\x40\x55\x80\xb0\x4f\x28\x50\x8b\xa6\xd0\x47\xb4\x51\xd8\xe6\x58\x45\x69\xf1\x32\x1b\x17\xc6\x21\xa9\xab\x46\x82\x79\xea\xf4\x28\x29\x79\x91\xe6\x6e\xca\x42\x53\xb5\xb0\x2c\x5b\xbd\xfa\xf9\xc7\x9f\x5e\xea\x10\x1a\xb0\xde\xb1\x90\x28\xa8\xff\x40\x78\x46\x78\x2a\x9e\x67\xa5\xd2\xb7\x9b\x7b\x13\x3c\xc4\x71\x22\x95\xc4\x62\x6d\x00\xc4\xb0\x45\x0d\xaa\x7b\xb0\x84\xd9\xc9\x67\x4d\x9c\xd3\x21\xce\x14\x42\x0a\x41\xe2\xc1\xb0\x43\x34\x03\x29\x29\x6b\x1d\x47\x6c\xad\x76\x1a\x12\x78\x43\x30\x6c\x90\xd3\x3f\xb8\x57\x8e\x67\x9c\x46\xd1\x96\xfc\x5f\x0a\xbf\x71\xc2\x46\xe0\x54\x52\x98\x54\xa6\x6a\x81\x98\xce\x08\x5c\x90\xfa\x20\x5f\xfb\x6e\x01\xea\x31\x45\xdf\x51\xa4\xd7\xc5\xe5\xa5\x70\xea\xe6\xdb\x08\xb6\x70\xa7\x83\x6b\x5c\xe0\x55\x3b\xed\xf2\x0e\x1e\x3d\x8b\xad\x61\xf2\x1a\x62\x68\xc0\xd5\x85\x58\x38\x51\xdd\x06\x84\x2f\xc4\xb6\x66\x3a\x50\x0c\xbe\x22\x01\x5a\xae\xaf\x78\x6e\x75\xf4\xa7\x49\x0f\xec\x74\xa3\x9d\x33\xd4\x8b\x32\x11\xa0\xff\x51\x21\x62\xe8\xe5\xd6\x1e\xa2\x3b\x70\xc4\x4e\x7f\xd1\x56\x3f\xd1\x6e\xdf\x42\x35\xad\x8e\xcf\x5b\xc3\x3b\x7f\x4d\x69\xbf\x9e\x2a\xe3\x53\x87\xd7\xa4\xf0\x10\xeb\x11\x20\xd7\xf3\xa6\x25\x8f\xdb\xbd\x7d\x2d\x63\x14\x5d\x3b\xb7\xfb\x51\x19\x46\x8d\x07\x8e\x03\x8f\x5b\x58\x12\x31\xf6\xa4\x81\xf0\x67\xc7\x2c\x43\x2c\x14\x9b\x2d\x6e\x1d\x98\x15\x5d\x83\x63\xb9\x2b\x9a\x6b\x00\xfa\xe1\xf9\x3a\xc5\x18\x85\x38\x66\x34\x29\x3c\xe0\x20\x04\x86\x14\x70\x95\xc6\x64\xd3\xb3\xf1\x64\x2c\x65\xf4\x91\xd7\xcf\xaf\x76\x2a\x07\xad\xe0\x17\xd6\x0a\xf2\x98\xae\xe7\x91\x0c\x6e\x9e\x42\x25\x38\x99\x1e\x7d\x7c\xa7\x3a\xaf\xeb\x03\x8b\x17\x4d\x65\x60\x09\x50\x5d\x13\x58\xbc\x19\xd4\x80\x83\x1a\x70\x50\x03\xfe\xdb\xa9\x01\x0b\xa2\xd0\x4b\x07\x28\xea\xd4\xa5\x7c\x76\xd7\x00\xaa\x4b\x86\xc2\x9d\x83\xcd\xb4\x31\x19\x1a\xa9\x4b\x88\x2f\xc1\x76\x17\xe3\x6a\x91\xb3\x9e\x91\xeb\x8b\x93\x8b\x43\xcc\xc7\x22\xf2\x28\xa2\x73\x64\xde\x6b\x2a\x72\xb8\x64\xd0\x30\x04\x1e\x3e\x26\xdf\x33\x43\x12\x70\xdf\x90\x22\x78\x3b\x19\x2d\xdd\x09\x0a\x9f\x29\x12\xb1\xa2\x22\x8c\x18\xf9\xeb\xdf\xfe\x97\xda\xac\x88\x9c\x68\xab\xb3\x2b\x38\x2f\x51\x06\x10\x9f\x74\xd6\x22\x0e\xd1\x0c\xb7\xa4\x53\x20\x7a\x80\xc4\x8d\x93\xf8\xcc\xdd\xf2\x20\xe9\x25\x76\xa7\x4c\x71\x62\x9a\xb8\x56\x5f\x43\xbf\x5b\x82\xf4\x3e\xf2\x71\x57\x74\xd0\xbd\x05\xcf\x80\x87\x2e\x4f\xcf\x36\x98\x42\x16\xb1\xcc\x29\x52\xb7\x07\x2c\x40\x34\xf0\x51\xd7\xd1\xf1\x7c\x9d\x0b\x7d\x7a\x9c\x03\xdf\xfb\xec\x78\x31\xe3\xb9\x38\x8c\xec\x43\xdc\x78\x55\xec\xda\xfa\x1b\x85\xe5\xfa\x6f\x55\x7c\xd4\xdf\x5a\xf3\x1d\xc4\xd1\x56\x71\x34\x90\x62\xc1\x97\x4f\x25\x8f\x1e\x43\xef\x2e\x81\x14\xdf\xb8\x25\x52\x0d\x93\x4b\x24\x0d\x8a\x0e\x07\x99\x74\x90\x49\xbd\xcb\x30\xc8\xa4\xbf\x55\x99\x14\xe9\xc2\x0e\x42\xa9\x4d\x62\xca\xe7\x1e\x52\x69\x9e\xc9\x23\xcd\x34\x40\xd0\x75\x71\xc4\x56\x26\xbb\xa6\x77\xf8\xe1\x94\x25\x7f\x92\xa9\x4b\xbb\x58\x2b\x3d\x51\x6d\x0f\xbe\xeb\x42\x8a\xd1\x3f\x58\x22\xf7\x4d\x1e\xc8\x35\xbd\xd3\x01\x97\x8a\x1c\xd8\x97\xf5\x1a\x68\x90\xef\x81\x0a\x08\x22\x54\x6c\x11\xc2\xd8\x21\x9b\xc1\x4a\x3a\xd3\xa8\xb4\x32\xf7\x87\xc8\x1b\x7e\xee\xdf\xc0\xf1\x2e\x6c\x7d\xe0\xdd\x35\xde\x8d\xf2\xf8\x53\xf1\xee\x3f\x41\xef\x2e\xde\x8d\x6f\xdc\xbc\x5b\xc3\xe4\xe2\xdd\xab\xa2\xc3\x81\x77\x0f\xbc\xdb\xbb\x0c\x03\xef\xfe\xad\xf2\x6e\xa4\x0b\x3b\xf0\x6e\x9b\xc4\x94\xcf\xee\xbc\x1b\xb8\xa2\x83\x47\xf5\x56\x25\xf4\xba\xe7\xba\xf5\x03\xf7\xbc\xcf\x23\x31\x9c\x9c\xec\xa4\x3d\xf0\x32\xd6\x79\x53\x33\x37\x2a\x86\x18\xb8\x68\x0b\x17\x8d\xa5\x8c\x9e\x86\x83\x4e\xa5\xb1\x72\xda\xdc\x53\xfd\xea\xe2\x9c\x00\x47\x93\x6b\xc6\xba\x93\x81\x63\x0e\x1c\xd3\xbb\x0c\x03\xc7\xfc\x6d\x72\x4c\x45\x0b\x7a\x73\x4b\xd5\xf8\x3e\xd7\x5a\xcc\x2c\xf1\x29\xed\xe1\x1d\x51\x34\x35\x56\x8d\x14\x83\xda\xd1\x85\x8e\x28\x5a\x54\xe4\x1a\x32\x5e\xb9\x90\x2c\xc9\xc5\x52\x21\xc3\x44\x11\x95\x6f\xdc\x42\xf7\xcb\xa8\xfa\x4c\x92\xbf\xce\xf6\xae\x73\x21\x58\x34\xdb\xdb\x27\xb3\xbd\xef\xb5\x7b\xd9\x6c\xef\x6f\x30\xef\x39\x0d\x6e\x46\x90\x80\x26\xe3\x73\x1e\x35\x2e\x84\xe4\x69\x5c\x6a\x81\x99\x5e\xf1\x7f\xf4\xf2\xe1\x82\xc6\x24\xe5\xff\x80\xeb\x76\x9e\xa2\xdb\x5d\xe9\x04\x4d\x68\x9a\xf2\xa5\x58\xab\xc3\xe4\x4d\x6a\xab\xf3\x23\xc8\x68\x4c\x4e\x2c\xf4\xbc\x79\xab\x3b\xd3\x9e\xee\xaf\x5f\xbf\x31\x3f\xbc\xdd\xf5\x3e\xef\xb1\x54\x34\xe6\x03\x8b\x7c\x3c\x39\xb9\xdc\xd1\xdd\x2c\xe4\x29\x9d\x47\x4e\x39\xa8\x32\x06\x78\xb3\x9b\xc6\xa0\xe3\x48\xf2\xd2\xe7\x5c\x09\x85\xb8\xc5\xd4\xf6\x41\xd4\x95\xee\xe4\x2e\xd4\x69\x3a\x64\xf0\xb7\xa3\x14\xa6\x01\x79\xf7\x61\x7a\x7a\xe7\x71\x08\xab\x92\xda\x13\xfc\x80\x30\x68\xae\x08\x6b\x22\xf3\x22\xa3\x25\xc0\x31\x99\x12\x75\x56\x7f\xfe\xf1\xff\x4d\x01\x91\x44\x6e\xdc\x76\xc7\x77\x1f\xa6\x63\xf2\x57\xbd\xe0\x87\x64\x41\xa3\x94\xfd\xcd\x51\x2f\xab\x75\x06\x3c\xe6\xae\xda\xf0\x35\xa8\x15\x3d\x47\xeb\x8f\xa6\xde\xa6\xbc\x3a\x38\x00\x17\x1e\xf6\x47\xd3\xc9\xe6\x35\x1c\xbb\x5b\x9a\x84\x4e\x7c\x57\x8e\xa3\xe2\x0e\x99\x66\x2f\x76\xaf\xb0\x78\x48\x4d\xf6\xab\xaf\x9c\x4b\x88\x61\x05\xc8\xa6\xd5\x09\x52\x40\x8d\x1d\x88\xe8\x30\x50\x32\xe1\xdb\x81\x0d\x8c\xc0\x2e\xd4\xed\xcb\x4d\xa8\x70\x49\x32\x20\x48\x6a\x4e\x36\xa9\x73\xf7\x09\xde\xb3\x21\x8b\xf8\x86\x25\x65\x76\x74\xf5\x53\x51\x31\x24\xad\x65\x49\x74\xee\x51\xd2\xb5\xca\x04\xd2\xf9\x78\x8b\x0c\x37\x4e\xf1\x64\x3a\x99\xc2\x07\xba\x22\xbf\x51\x0c\x6a\x9f\xe8\xd9\x1e\x26\xa8\x30\x15\x80\xa0\xae\xd8\x08\x6b\x5d\xcd\xf6\xc6\x84\x1c\xf9\xe6\xbb\xd6\x55\xff\xad\x1e\x74\xc2\x8b\x14\xa9\x1f\x8c\x5c\xe2\x50\xad\xad\x3a\x21\xb0\x47\xbc\x35\x1e\x2d\x7c\x55\xa3\x7c\x1a\xb8\x23\xe4\xc8\x82\xa1\x0a\xb7\xaf\x77\x00\xd0\x6c\xf4\x3a\x80\xb7\x26\xd7\x87\x0d\x03\xfa\xdd\xaa\xd3\xe1\xeb\x93\x96\xb5\x0b\x74\x8d\x30\x23\x86\x9a\x2c\xb7\xaa\x73\x61\x56\xa0\x0c\x52\x68\xad\xf7\xf2\x02\x14\xc0\x16\xdf\x7c\xa9\xa0\x28\x71\xdd\xba\x75\xda\x39\x9d\xfb\xf2\xaa\x76\xfc\xc7\x1e\xde\xca\xc7\x46\x40\x41\xfb\x5b\x9e\x94\xc2\x89\x63\xc1\xdb\xb7\xfa\xa4\x36\xc7\x7d\x93\xa0\x19\x6b\x54\x6b\x44\x61\x32\xa3\xd9\xde\x39\xdb\x40\x3e\x47\xac\x9a\x5c\x1d\xcc\xd5\xbb\xea\x41\x73\x17\x57\x45\x90\x56\xb7\x6d\x9a\x8d\x64\x9e\x2d\x25\x17\xcb\xff\x14\x92\xda\x4a\x75\x04\xcd\x2e\x7a\xe2\x03\x73\x32\x59\x08\x2c\xa9\xaa\xa1\x8b\x90\xfa\xc8\xaa\x7b\x40\x5a\x83\x5e\xb4\x48\xac\x6e\x1e\x36\x01\x68\x50\x57\x99\x67\x29\x0f\x59\x71\xc5\x2c\x84\x54\x57\xa7\x90\x15\x3a\xfd\x7b\xce\x12\x1a\x3a\x53\x7c\xb7\xa3\x43\x86\xbd\x93\xb9\x82\x2c\x9d\x1a\xb1\x5d\x67\x11\x51\xdb\x45\x47\x65\x14\x81\x15\x40\x6a\xe6\x5b\x4c\x1a\xe2\x82\xb9\xc8\x88\xbe\xdb\x66\xde\xdc\x45\x54\x3c\xf0\x68\x7f\xf7\x97\xb3\xa3\xf3\x2f\x76\xb6\x61\x34\xa7\x74\x5c\x00\x70\xef\xc3\xed\x55\x9c\x35\x5d\x4b\x06\xfd\x58\x45\x3f\x96\x30\x35\x51\x3c\x6c\x4f\xa2\x26\xbb\x2c\x07\x68\x6a\xcb\xac\x97\x2e\xa5\x99\x0d\x5c\x53\x77\x96\x54\x7b\x1e\x54\x68\x83\x0a\xcd\xbb\x0c\x83\x0a\xed\xb7\xa9\x42\xb3\x08\x44\x6f\x4d\x5a\x83\xe2\x94\xcf\xee\xfa\x35\x24\x32\x2c\x84\x5c\x62\x5d\xbc\xf6\xd2\x6e\x5c\xad\xeb\x88\x3f\x51\x11\x1e\x54\xd4\x47\x6e\xa5\x07\xf8\x7a\x34\x54\x26\xec\x2e\x88\xf2\x50\x97\x19\x13\xec\xd6\x76\xb6\x1c\x42\x7d\xbe\x30\xe7\xbc\xc9\xe7\xac\xf4\x0d\x4f\x2b\xc2\xd5\x53\x30\xd2\x3f\xe7\x73\x76\x5c\x8e\x77\x6c\x8f\x57\xe7\xab\x6d\x6d\x9b\x6c\xb6\x75\x26\x75\xae\xdb\xd6\x78\x60\xc2\x03\x13\x1e\x98\xf0\xbf\x1d\x13\x6e\xa3\x26\x4d\x9e\x5c\xc9\x44\x5b\x47\xb0\x55\x73\xca\x22\x22\xd5\x9b\x69\x7f\xd6\x6c\x75\xd1\xe7\x12\x6c\x46\x43\xb5\x30\xe6\x06\x36\x23\xeb\xac\xd6\x1b\x1e\xe6\x34\xea\x28\x29\x64\x0d\xbb\xb3\x0a\xbb\xab\x4a\x90\xa7\x36\x90\x07\xe4\x6a\xa1\xa0\x12\x2e\x6f\x65\x9e\x53\xad\x11\x9f\x6f\xcd\x55\x7d\xdf\xd4\x5b\x16\x1c\x75\x2f\x78\xfd\xf6\xf4\xd0\xa3\xc6\x93\x22\x53\x22\xe0\x11\x4b\xa6\x2c\xe1\xd2\x1f\x4a\x54\x27\x0e\x97\xb5\x0f\x8d\x7f\x6c\x8c\x7f\x65\x52\xfd\x6b\x21\x93\x75\x31\x04\xf7\x26\x7a\x30\x0f\x64\xb1\xb7\xf2\x2d\xa8\x53\x01\xb2\x82\x6d\x97\xf9\x66\xed\x32\xca\x98\xa7\x3b\xfc\xa8\x2b\xf8\xc8\x93\x2d\xa2\x81\x81\x73\x19\xb6\xaf\xb4\x7a\xff\xeb\x58\xe4\x95\x95\xc0\xa3\xef\x02\xdb\x49\x3f\x4a\xfb\x73\xba\x15\x81\xd1\xa4\x03\x87\x84\x14\x34\x56\x99\xd4\x96\xd5\x3d\x31\x56\xc6\xfb\xce\xb4\xe7\x6c\x89\xf6\x1e\x3f\x4e\x18\xf5\xa4\xf1\xf2\xcc\xf9\xf9\x51\xf1\x59\xb9\xb2\x79\x26\xd7\x34\xe3\x41\x99\xa1\x5e\x76\x96\x42\xac\x62\x05\xae\x3a\x6c\xc3\x92\xad\xb6\x40\x94\x9b\xd9\xe0\xa4\x6d\x4b\x93\xde\xb5\xb9\xfa\x54\xe6\x8a\x18\xbd\xf9\x90\xd0\x80\xed\x78\xde\xcf\xaa\xdf\xd5\x8e\x3b\xe8\xd7\x75\xe6\xa6\x72\xcf\xb7\xcd\x09\x14\xc7\x58\x6f\x10\x0a\x9a\x50\xdb\xd4\x04\x09\x83\xe6\x8c\x09\x00\x57\xf1\xf0\x2b\xdc\x27\xaf\xba\xba\xd4\xf6\xe0\xc9\x94\x2c\x69\x32\xa7\x4b\x05\x4e\x14\x31\xa8\x27\x66\x23\xfe\xf5\x43\xc9\xc8\x7f\x22\xe9\x24\x70\xfe\xa1\x7e\x4a\xdb\xf1\xab\xce\xf6\xaa\xf8\xc4\x76\x63\xd1\x85\x28\x24\x09\x64\xbc\xed\x59\x14\x10\x28\x6a\x99\x08\xdc\x4a\xca\x93\xda\xb3\xd4\x04\xf5\x69\xb9\x04\x66\xec\xe8\xc3\x27\x74\x52\xbf\x16\x4e\xa1\x73\xf2\xfc\x3a\x78\xc5\x7f\xde\xae\xee\x5a\xea\x6a\x41\x99\x3e\x4b\x5e\x2d\x26\xd3\xb6\xf4\x1d\xd5\x7a\x4d\x8d\x5e\x6b\x6b\x0c\x7b\xe0\x97\xd8\x03\x26\xd3\x5a\x87\x14\x55\xb5\xc1\xd6\xbe\x69\xdb\x07\xa6\x7f\xdf\x1c\x58\x4d\x12\x1b\x76\xc2\x2f\xb3\x13\xda\xde\xb2\x2c\x08\xbf\xfb\xea\x58\xae\x63\x2c\x5f\xea\xc5\x58\x15\x53\xa7\xce\xcf\x6a\xf8\x9a\xb3\xec\x56\x89\x43\x6a\x8c\xcd\x57\xee\x6b\xae\xe9\xa0\xd0\x87\x94\x52\x93\xbd\x17\x6c\x21\xe8\x95\x13\x59\x6d\x48\x5a\x31\x1a\x65\xab\xe3\x15\x73\x07\x64\x56\xa7\xf6\x27\xab\x71\xb1\xfb\x65\x62\x40\x49\x8b\x92\x67\x4a\x40\xc6\x9e\x9d\x53\xc3\x0e\x7a\x71\xf8\x36\xd8\x23\xb9\xbc\x52\x62\x38\xcf\xb6\x57\x41\xc2\x58\x5d\x09\xd9\x9c\xc0\x59\xfd\x0b\xb3\x2c\x91\x5c\x92\x54\xbf\x21\x74\x2e\x37\x4c\x27\xe4\x8b\xe4\xd2\x29\xc3\x40\x8a\x48\x26\x0a\xb7\xa4\x34\x0b\x65\x9e\xd9\x8b\x31\x11\x0b\xb9\xeb\x8c\xe2\x44\xae\x95\x24\x95\xa7\x1f\x59\x96\xf0\x20\x9d\xf6\x71\x9a\x9c\xba\xbe\x32\x33\xbb\x3e\x9e\x42\xba\xb8\xb2\x26\x66\xd9\xdc\x35\xb1\x35\x76\x81\x56\x84\xa4\xa8\x9c\xc9\x05\xd6\xcc\xec\xd8\x81\xbf\x7f\xf5\xfb\xaf\xfd\x93\x76\xfa\xce\xfa\x7d\x07\x7c\x8a\x1e\xaf\x26\xad\xb4\x6b\x78\x50\xd5\xaa\x4b\x83\xaf\x2d\x9d\xa6\x5e\x57\xf5\xab\x43\x05\xad\x6f\x46\x96\xe2\x8c\x4c\xb2\xe7\x90\x4e\x79\x91\x47\x68\x0d\x0b\xd7\xa0\x96\x83\x5a\xb5\x70\x8d\x81\xfa\x71\x50\x06\x8c\xd0\x20\xcb\x69\xc3\x23\x05\x7b\xc4\xb5\xba\xa5\x45\x7e\x3b\x93\x1e\x52\xbb\x19\xae\x65\x88\x6e\xdf\x73\x25\x87\x6e\x78\x22\xc1\x01\x9a\x6c\x68\xc2\xe1\x20\x36\xe0\x45\x1f\xbc\x9b\x7c\xce\x46\xb6\xe6\x2f\x4e\x64\xc0\xd2\xfa\x35\xbf\x2d\xbb\x78\x39\xda\x77\xd4\xa9\xf7\xdb\x31\x26\xcc\x47\xba\x2b\xcb\x76\x5a\x1d\xb5\x9e\x50\xd3\x81\x00\x8f\x6b\xa1\x13\x09\x80\x6c\x2e\x16\x51\x8e\xe9\x35\x41\x05\x9e\x0b\xc1\xc5\x12\x37\x88\xd7\x15\xc6\xcd\x37\x12\xfb\xdb\x4e\x93\xa5\xdd\xb8\x36\xb1\xc5\x42\xdd\x73\x37\xac\xb2\x2b\x78\x6a\x06\x70\x4d\x90\xfb\x16\x5a\x86\xfb\x3a\x95\xe1\x9a\x25\x4b\xa3\xe9\x3f\x9a\x4e\x4a\x45\xbf\x62\xc7\x4e\x52\x27\x3c\xbb\xcc\x81\x97\x0e\x11\xa4\x5d\x65\xdc\x40\xce\x63\xaa\x8d\x49\x97\xea\xb8\x07\xf8\xa4\x67\xa1\xf9\x07\xa8\x91\xdb\xe4\xa5\xc7\x94\x15\x7b\xce\x96\xec\x26\x33\x36\x26\xdf\x5f\x6e\xec\x52\xc1\x55\xc5\xca\x5e\xb2\x63\x57\x97\xed\xa2\x25\x79\x54\x35\x5d\x8b\x16\x9a\x3c\x95\x26\x9a\x3c\x82\x86\x81\xf4\xdf\x27\x3d\xb5\xd2\x8d\xe9\xee\xa0\x99\xee\x5a\x51\xab\x32\xf0\xa3\x68\xa7\x77\x98\x3d\xd9\x45\x4b\xdd\xc0\x41\x3f\x4d\x75\x77\xa7\x20\x9a\x3c\xba\xb6\x9a\xf4\x3e\x0a\xa4\xe7\x71\x20\x3b\x69\xae\xc9\xfd\xb5\xd7\x5d\x13\x2b\x8f\xd1\x8e\x1a\xec\xae\x8e\x1d\x82\x72\xa7\x16\xbb\xab\xcf\x0e\x25\x37\xd9\x61\x99\x06\xa2\xde\x89\xa2\x5e\xba\xf1\x26\x72\x1e\x4f\x3f\x4e\x1e\x55\x47\xde\x7f\xea\x7d\x0e\x70\xab\xbe\xbc\x81\x94\xc7\xd4\x99\x93\x2f\xcb\xd5\x86\x83\xf2\x08\xbb\xa5\x97\xca\x9d\x3c\x99\xda\x9d\x3c\x91\xea\x9d\x0c\xdb\xe8\x8b\x6e\xa3\x9e\x5a\x7b\xf2\x94\x9a\x7b\xf2\x54\xda\x7b\x32\x6c\xa6\x2f\xb8\x99\xba\x5a\xf4\x56\xfe\x93\xa7\x32\x00\x90\xc7\x35\x02\xf4\x41\x5e\x87\x31\xa0\x39\xd5\x47\x32\x08\x90\x1d\x8d\x02\x7d\xe6\xd2\xc7\x38\xd0\x9c\xd0\xce\x06\x02\xdf\x74\x22\xb9\x4c\x1f\x60\x24\xe8\x33\xc3\xbe\xc6\x82\xe6\x2c\x1f\xd5\x60\x40\x1e\x6a\x34\xf0\x75\xea\xb3\x25\x90\xee\x84\x62\x2d\x85\x75\x5a\xec\x0a\xa4\x95\x2e\x0c\xe1\x17\x56\xf8\x85\x8e\x2d\x06\xa9\x9d\x3f\x49\x8a\x4c\x5d\xf1\x1b\x6f\x0e\xf8\xa2\x8c\xb0\xa8\xbc\x6c\x86\x54\xd4\xa0\xd3\xab\x50\x04\x51\xd8\xaf\xa1\x6b\x1d\x35\x51\x68\x6a\x81\xf9\x0f\x81\x13\x43\xe0\xc4\x10\x38\xf1\xdb\x0a\x9c\x68\xb3\x5c\x42\xb9\xde\x3e\x29\x9a\xa0\x88\x98\xda\xfe\x58\x70\x17\x3f\xd4\x15\xf6\x08\x56\x20\x53\x7f\x14\xc6\x3a\x17\x87\x2a\xca\xf5\x62\x76\x86\x7a\x31\x61\xa8\x54\x4c\x02\x99\x24\x2c\x8d\x15\x3d\x17\x4b\xa2\xe5\x3c\x53\xf4\x75\xa7\x88\xc2\x5a\x15\xda\x23\x72\xa9\x00\x64\x22\xa0\x71\x9a\xc3\xb9\x2d\x21\x72\x81\xe2\xd1\x2c\x53\xad\xa0\x24\xef\x64\xb6\xaa\xd5\x3f\x6b\x54\x39\x56\x1d\xd5\xeb\xbc\x79\x04\x86\xa2\x96\xa1\xae\xb7\x36\x22\x29\x8b\x69\xa2\x36\x29\x91\x79\x46\xa8\x1d\xb9\x89\x4d\x20\x5f\x99\x82\x42\x57\x60\xf6\x00\x2c\x42\xb3\x5e\x36\xe2\xb9\x58\x62\x55\x57\x2c\x1f\x07\x75\x27\x37\xac\x8e\x89\x15\xf5\xf5\x4a\x04\x5b\x02\x70\x9a\xf0\xee\x93\x38\x61\x0b\x7e\xc7\x42\xbc\xf5\x40\x6d\xdb\xec\xe7\x1f\x7f\x1a\x93\xa3\x28\xd2\x69\xc5\xed\xbe\xdd\xfd\xea\xec\x3b\x14\xb7\x53\x51\xc9\x94\x66\x3c\x05\xeb\x3e\xa6\xb2\xd0\x13\xc9\x24\xf6\x39\x26\x47\xc0\xca\x9a\x79\x5d\x35\x6e\x61\x6b\x52\x61\xb6\xa7\xd6\xae\xe9\x29\x2b\x04\xc1\x64\xd4\x1f\x7a\x36\x58\x98\xd8\x5b\x75\x19\xb1\x0a\xb8\x77\x83\xa8\x06\x80\x51\x0b\x10\xdd\xb9\x82\x3a\x2f\xb7\xb8\xdd\xbc\xf2\x60\xf7\xd5\xcf\xca\x5c\xe2\xed\xa5\x72\x54\x4e\xac\xa4\x44\x15\xdb\x7b\x6d\x6b\x80\x28\x0c\xc7\xb2\xe5\xce\x59\xc9\x9c\x42\x14\x25\xcc\x5c\xa7\xb8\x27\x32\x88\x6d\x6b\x6e\x49\x8b\xe2\x99\xd9\x6c\xef\xbc\xfe\x31\x70\x30\x41\x64\x8c\xee\x19\x3a\xc1\x8d\xaf\x58\x62\xf9\x14\x88\xa1\x65\x99\x72\x76\xa7\x18\x58\x0a\xd4\x01\x8a\xd0\x56\x8a\x1b\x9b\x1c\x4d\x5d\xea\x6d\xe0\x71\x2f\xd4\x16\x02\xab\x0b\xd2\xa9\xec\xa5\x65\xbb\x2a\x12\x54\x99\xf2\x8b\xfe\x54\x61\x35\x94\xa5\x45\x7e\x31\x58\x4b\xc5\xfe\x20\x89\x0e\x6c\xe4\x06\x6e\xda\x3b\x45\x1a\x29\x41\x85\x5f\xa0\x40\x5d\xee\x50\x28\x0b\x8d\x7f\x4d\x4a\xd7\x78\x14\x30\x2f\x4b\x7b\xa7\x90\xc7\xa8\xa8\xf8\x5b\x4e\x19\xf7\x5a\x52\xc0\x4d\xe6\x5b\x04\xda\x8c\xdc\x81\x54\x33\x6d\x83\x2f\x13\xc6\xa1\xe0\x42\x2a\xf8\x5e\x26\x55\x09\x7a\xdf\xcb\x01\xcc\x83\xc5\xa1\x1d\x5b\x6a\x1d\x47\xbc\xac\x3c\xce\x88\xbd\xd9\x22\xbe\xe6\x9d\x0b\x06\x2e\x51\x60\x0a\x13\x4b\x2f\x4e\xb8\x85\xdf\x5e\xae\x12\x50\xd2\x59\x7d\x52\x99\xa7\x77\xfa\xcf\x97\x91\x9c\xd3\xe8\xc5\xcb\x0e\xed\xd3\x97\x41\xc0\x07\x00\x46\x83\xa8\xee\xce\x32\xa9\x18\xc9\x61\x1a\xed\x9d\xaa\x39\x56\xba\x29\x17\xba\x6b\x2d\x3b\xa0\xb5\xa7\x88\xde\x69\x70\x41\x70\x2c\x1a\x85\xf4\x71\x84\xba\x73\x45\x95\x4f\x79\x64\x3d\x8c\xa3\x18\xbb\x97\xee\x4f\x30\x67\x5d\xe6\xf2\xa9\xfa\x5a\xb0\x2c\xf5\x13\x46\x25\xcc\x43\xc5\x8c\xb4\xdb\x96\x6c\x58\x20\x2c\x61\x59\xbf\xd6\x4d\x17\x0b\xd2\xd7\x81\xed\x2a\x5d\xac\xe4\xee\x53\x92\x83\xd8\x1a\x57\xc4\x25\xdf\x30\xa1\x53\xe5\xb5\x87\xed\xf9\xa5\x48\x6b\xdc\x9e\x26\xd2\x96\x2c\xaf\xe5\x23\x64\x76\xbe\xdb\x9a\xe0\x07\x46\x21\x55\x13\xbe\xcc\x8c\x55\x93\x0e\xf6\xa2\xd6\xf1\x57\x87\x8b\xa9\xa7\x70\x78\xf9\xd4\x91\x81\x55\xc4\xdb\xb1\x01\x6d\xfa\xa0\x83\x5c\x71\x25\x78\xcb\xa2\x72\xbc\xa9\x18\x9d\x92\x15\xdd\x30\x53\x8e\x1c\xfc\x1f\xb6\xf8\x57\x07\xa1\x4d\xac\xea\xfb\x84\x67\x46\xf9\x96\x1a\xdd\x21\xf4\xae\x25\x2a\x4d\xc8\xd5\xf5\xa4\x93\x2a\x02\x0f\xcb\x30\x95\xd9\xf5\xf1\xd4\x24\xd3\xfc\x74\x32\xf5\x66\x6a\xc4\xa7\xcf\xaa\xb6\x57\x0f\xc7\xa7\x67\x0d\xf1\x6a\xe3\x3e\x1e\x32\x7d\xea\x89\xe3\x73\x9f\xaa\xe2\xe6\xe9\xbb\x21\x77\x17\x2e\xcf\xcb\x8f\x3a\xb6\x65\x3f\xf9\x4a\xef\x4c\x72\xc5\x2c\xe6\x82\x54\x58\x5d\x30\xd2\x7c\x9e\x45\x4c\xc9\xca\x78\xdd\xd2\x63\xb5\xf7\x59\x48\x4b\xad\x5b\xa5\xdf\x9a\xf9\x6a\xfd\x7b\xd0\x33\xdb\x2b\x4e\x6c\x17\x5b\xe9\x66\xb6\x3d\xd8\xca\x0a\xee\xcb\x5a\xeb\xf4\xc2\xba\x84\xbc\xec\xd8\x86\x85\x96\x1f\x45\xcd\xd4\xe4\xaf\xcd\x56\x2c\x65\x24\xa1\x62\xc9\xd2\x03\xa3\xb4\x83\x3c\xb7\xad\xe9\x55\xf1\xa9\xa4\x5d\xd2\x47\x07\x8c\x42\x88\xe5\xd4\x60\x40\x6b\xc0\xf4\x30\x1d\xb2\xf2\x02\xd7\x00\x05\xb8\xbe\x14\xac\x93\x02\x60\xd3\x9d\x28\x58\xc7\xdc\x4b\xf2\x56\xa5\x60\x3f\xff\xf8\xd3\xf5\xf1\xf4\xe7\x1f\x7f\x52\x88\xf8\xf9\xc7\x9f\x3e\x9d\xa8\x3f\x3a\xe4\x9d\x81\x8e\xc1\xd3\x8b\x8e\xa5\xf7\xb8\x21\x77\x5f\x8c\x5b\x75\x7c\xe5\xe3\xbc\x18\x93\x17\x29\x63\x46\x39\x06\x64\x8c\xae\xe3\x88\x91\x74\x2b\x32\x7a\xe7\xca\xaf\x69\x3f\xb3\x59\xeb\xbd\x5a\xcb\x8f\xbe\x7b\x73\x7b\xdf\x46\x27\x66\x5d\xab\x65\xd2\xbc\x2e\xab\xa3\x76\x2e\x33\x06\x63\xab\xdd\xd3\x81\x04\x1d\xf8\x61\xcc\x05\x1d\x1c\x01\xd1\x63\x71\x92\xf6\xde\xe7\x2c\x92\xb7\x2f\xf7\xab\x20\x5b\xc8\x46\xac\xea\x82\xcf\xc6\xec\xdc\x81\x07\x54\x84\x81\x82\xf3\x7a\xc5\x48\x76\x2b\x61\xaf\x41\xf6\x1c\xf3\x0e\x89\x83\x62\x40\xdb\x32\x25\x75\xc7\xda\x5d\x08\x33\x7b\xe3\x9d\x54\x2a\x5e\x99\x75\x43\xc2\xd9\xa0\x5a\x41\xb7\xef\xe6\x07\xb7\x2b\x19\xe9\x45\x3a\x84\x25\x9a\xcd\x4a\x66\xfc\x47\x45\x5b\x7e\xb7\xa2\xe9\x8b\xf5\xf6\x33\x78\x0d\xbe\x54\x34\x47\x93\xf7\xae\xc3\xac\xf3\xab\x1b\xfd\x03\x6c\x31\x84\x0e\x5d\x3a\xca\x88\x92\x50\x8d\xda\x73\xb7\x41\x7f\xa1\x84\xc4\xb5\x40\x9f\xd1\x96\x34\x67\x91\x02\xd6\xc0\x09\xca\x53\x3d\x9d\xde\x9b\x02\xa6\xeb\x9b\x6d\x73\x42\x0a\x02\x5f\x89\x88\xf2\x69\x9f\x6b\x31\x9d\xf6\xa9\x74\x1d\x6e\x01\x3b\x0e\x23\x7c\x50\x84\xd2\xea\x83\x08\x48\xaa\x4e\xfa\x0e\xd6\xe1\x62\x1e\xdd\xa0\x0b\x29\x46\xda\xfb\x46\x5b\xc0\xc8\xed\x8a\x25\x4c\xeb\x42\x16\x32\x59\x33\x5b\x31\x01\xce\x3e\xd8\x7b\x0f\x45\x5d\x13\x31\x56\x9e\x98\x47\xb8\xb8\x57\x9d\x04\x77\x90\xb7\xaa\x7e\x82\x5f\x4e\xee\xaa\x91\xe3\xf6\x3e\x1d\x6a\x4e\x4a\x62\x19\x9a\x68\x2e\x34\x7a\x14\xa4\xb9\x87\x47\x63\xe1\xd3\xd8\xba\xdb\x7a\x87\x2f\xd8\x26\x78\xff\xd3\x0c\x6d\x7a\x38\xba\xc9\x7d\x50\xde\xdd\xa5\x4f\xbb\xec\x40\x7b\x2f\x6c\x13\xcb\x8b\xf4\x76\x25\x53\x54\x45\xaa\xe9\x6b\xb1\x4f\x09\xbd\x9d\x71\x01\x7d\x84\x3a\xb2\x53\xbc\x45\x4f\x09\x89\xf4\x95\x92\x48\xf3\x7c\x75\xca\x49\xff\xbe\x2b\x5d\xb9\x1f\x95\x9a\x36\xa4\xfa\x45\xf2\x78\x4f\x91\xa6\xea\x53\x9a\x1e\xc0\xa2\x70\x65\x5b\x12\xca\xfb\x87\xce\xe8\xce\xb6\xea\xf7\xee\x4e\x8f\xce\x4f\x9e\xf7\x08\x47\xd9\x4d\x8b\xd5\x15\xbc\xa3\xb1\xb8\xd3\x9d\x58\x53\xe9\x36\x7a\xd1\x4f\xda\xc6\x2f\xd1\x24\x5c\xd0\x4b\x2b\xb5\xa1\x19\x48\x2d\x8a\x95\x2a\xbf\x87\x35\xa6\x55\xd8\xae\x6f\xaf\xbe\xd2\xb6\xc3\x84\x65\xf0\xf7\x22\x7d\x59\x17\xbb\xd1\x81\x46\x41\xd3\xa5\x1f\x3b\x00\xa8\xa0\x00\xb5\x81\xe4\x79\x0a\x37\x5a\x7d\x4b\x36\xf8\x0e\x0a\x47\x90\x02\x19\x5d\xb8\xa8\x5a\xb3\xd4\xc9\x31\x9b\x75\xdf\x16\xd9\xf7\x9b\x56\x84\x0e\x34\x9f\x33\x25\xf6\x1a\x05\xaf\x4c\xea\xbc\x1b\x41\x47\xf5\x89\x42\x84\xd1\x7e\x76\x58\x28\xd5\x7e\x52\x0b\x68\xcf\x11\x75\x45\x05\x16\xa4\x30\xae\x03\xda\x95\xa3\x5d\x64\xd9\x89\x6d\xee\xce\x35\x0b\x30\xcb\xf0\x5f\x34\xc3\xf7\x8f\x0c\x22\x66\x6e\x96\xdd\xfd\x91\x88\x40\xbf\x28\x67\xcf\xd4\x30\xd6\xb9\x39\x3f\xfc\xdd\x9d\x98\xb4\xf9\x20\x95\xd5\x33\x84\x93\x1c\xb1\x45\x66\x8a\xdc\x15\x3c\x04\x4e\x4f\x0f\xc5\x0c\xb1\x0f\x22\x54\xd8\x50\xd7\xf2\xe7\x69\x09\xd9\x17\xa5\xa0\xdd\x6d\x56\x59\xe6\xaa\x3b\x86\x4f\x35\x7c\xf6\xfa\x7a\x5a\xda\xe8\xbd\x8e\x0b\x6a\x97\xa8\xa6\x7e\xd0\x0b\x0f\xf3\x07\xf9\x2c\xac\x59\xb6\x92\xe1\x0e\x9c\xe1\x23\x7e\xf0\xb8\x52\x3b\x4e\x19\x89\x3a\xce\xdb\x72\x8e\x53\x7d\x62\xd1\x1e\xd6\x99\xfb\xd1\xc8\x75\x2c\xc4\x5e\x0c\xb4\x2f\xd8\x78\x39\x26\x1f\x4e\xaf\xf7\xc9\xf4\xd3\xf5\x3e\x61\x59\x30\x7e\x49\x3e\xe6\x51\xc6\xe3\x2e\xdb\x86\x46\x11\xf0\xfd\x8b\xcb\xe7\xea\x1a\xb6\x84\xf8\xc0\x5f\x97\xad\x2a\xa6\xd9\x6a\x87\x75\x7c\x3e\x55\xed\x9f\x62\x19\xbb\x56\xb0\x9b\xa2\xd8\x2b\x08\x60\x8e\x8b\xa5\xc2\x69\x9a\xb5\xe8\xbb\x18\x84\xb0\xf1\xf2\x90\x8c\x08\xbb\xa3\x41\x76\x48\x0e\x16\x52\x92\x91\x76\x0b\x3b\x24\x07\x73\x9a\x90\xf3\x8b\xeb\xd3\x43\x74\x39\x63\x22\x4b\xb6\x64\xdd\x25\x9e\x5f\x9c\x9f\xfd\x8f\xa6\x9c\x5b\xc2\x38\xa8\x5e\x28\x99\xed\xc1\x20\x68\xff\x52\x7f\xe2\x28\xb3\x3d\xe3\x10\x76\xdd\x35\xfd\x0d\x8d\x78\x48\x0b\x25\x1f\x84\x5a\x60\x0d\xab\xcc\x55\xb4\xaa\x7c\xfa\xec\xb9\x5a\x44\xc8\xf5\xf5\x54\x61\xd8\x62\x00\x54\x20\xe2\x15\xa2\xfb\xf3\xaa\x49\x06\x1e\xb1\x73\x66\x10\xa1\xf5\x87\x0b\x99\xac\x0f\x0d\xda\x67\xf9\xab\x57\x5f\x05\xaa\x63\xf8\x17\x3b\xd4\x79\x72\x7a\x29\xbc\x70\xab\x01\x54\xd0\x9d\x22\x18\x49\xb1\x84\x65\xd7\x23\x8d\xef\x07\x8d\x80\x7d\x74\xb8\x97\xec\x90\x6a\x00\x11\xf0\xb8\xd7\x48\x3d\xf5\xc7\xec\xb4\x6f\x2e\x80\x1e\x04\xa9\xbb\x2b\x1e\xac\x7b\xf2\xcc\xc9\xf1\xc7\x69\x5f\xaf\x0f\x20\x46\x7e\xd8\x6d\x2a\x65\xd5\x1d\x53\xd0\xea\xf0\x42\xac\x9e\x06\x43\xea\x0b\x86\xae\x1a\xd9\x72\xbf\x42\x9f\xfc\xa6\x4c\xcb\x17\x55\x9b\x54\x51\xbf\xae\xb0\x94\xab\x71\xda\x44\x5b\xb0\xa1\xab\x46\x9b\xb7\x2d\x66\xf4\x5e\x3b\x31\x68\xcf\x69\x52\xe7\xf3\x20\x99\x48\x61\x63\x09\x90\x12\x60\x15\xc7\x1d\x2e\x6b\x10\xa6\xa4\x10\x8c\x7e\xf8\xe0\x96\x0a\x15\x32\x6d\x5c\x69\x8b\x25\x98\x23\x33\x16\xac\x04\x0f\x9a\xf9\xb6\xaa\x0f\xa8\x45\x51\xed\xcf\xd7\xb1\xb4\x72\x20\xdf\x28\xa1\x3c\x7a\x9e\x12\x1e\x67\x18\xd9\xb6\xe0\x09\xbb\xa5\x51\xd4\x01\x2a\x52\x0b\xad\x94\xcd\x53\x74\x96\x62\x62\x21\x31\x42\x40\xbb\xe5\x75\x1f\x8d\x4e\xdb\x1d\x34\x7b\xf8\x62\xa8\x6e\xc6\xe8\x3f\xc6\xee\xc0\x60\xd5\x65\xfa\xc2\x35\x90\x0b\xf2\x2d\xfa\x75\xc3\x0c\xa1\xaf\xd3\x60\x25\xc9\x25\x32\x6d\x5d\x84\x2e\xe6\x62\x99\xb6\xdb\xbe\x7a\xcd\xb7\x07\x31\x88\xdd\x01\x36\x1e\x84\x4c\xa6\x26\xd0\xe6\xc1\xce\x60\x15\xe5\x16\xca\xe3\x36\x96\xa7\xc6\x22\xe6\xc5\x42\x0f\x0c\x78\x42\x25\x3c\x93\xfb\xa8\x5b\x5b\xae\xbc\x45\x96\x36\x88\x00\x49\xd6\x65\x0d\x27\x57\xd8\x4a\x75\x72\x0f\x22\x1a\xa0\x8c\xc0\xe2\x36\xed\x19\xdf\xfb\xe6\x91\x2b\x9f\xbe\x6c\xa9\x5a\x49\xb2\x84\x47\x87\xf8\xa0\xb5\xee\x86\x6d\xf5\xd6\x8e\x29\xd7\x59\xe2\xda\x87\x57\x57\x56\xc2\xee\xb2\x84\x56\x70\x4a\xe7\x32\xcf\x7a\x30\x92\xc7\xba\x39\x0a\x99\xa9\xd3\xd7\x6f\x67\x9c\x63\xe3\x0e\x2f\x1e\x68\xd2\xee\x4d\x37\x30\x8c\x81\x61\xfc\xb6\x19\x86\x90\x99\x11\xab\xbc\x68\x69\xf7\xb6\xe9\xe9\x67\xd3\xcf\xc3\xa6\xe1\x04\x6a\x44\xbe\x0e\x3f\x50\xdd\xcc\x8f\xb0\x8e\x73\xdc\xc3\xa5\xe7\x7e\xce\x3c\xf1\xaf\x15\xb9\xb3\x3d\x1b\xb7\x8f\xc8\xfb\x1b\x86\x2d\xd0\xf0\xda\x92\x80\xc1\xc9\x18\x76\x3d\x4f\xda\x34\xf3\xda\x23\x57\xaf\xf3\x29\x84\x17\x5d\x42\x6c\x9c\x89\xf4\x42\xb5\xf9\x8b\x39\x0b\x68\x9e\x6a\x3f\xb8\x0e\x53\x42\x01\x62\xc0\x12\xe8\xa3\xf0\xa5\x7b\x89\xaa\xf8\x8f\x3a\xe4\xab\xe2\x19\xd8\xc5\x62\xd1\x65\xf0\xb0\xf4\x7a\xdb\x2f\x7d\xde\xe0\x9f\xea\xb4\xdb\xff\xde\xbc\x35\x7f\x5d\x1d\x5f\xc3\x1b\x7f\xe7\xd8\xd3\x19\xcf\x98\x76\xa7\xa3\xc2\x6c\x0a\x63\x88\x05\x97\x42\xf2\x7a\xf4\xe6\x9b\x6f\x5a\xd4\xfc\x4f\xb7\xd5\xd1\xf9\xa2\x1f\x07\xbe\x42\xb7\xcd\x7e\xd1\x67\x2d\x35\xfe\xcd\xa8\x43\xe0\xd9\x10\x78\xd6\xc3\xd4\x39\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\xe6\x9b\xf1\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\xd9\x10\x78\x36\x04\x9e\x0d\x81\x67\x43\xe0\x99\x6b\x16\x03\x1d\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\xac\xfa\x0c\x81\x67\x43\xe0\x59\xf1\x0c\x81\x67\x43\xe0\xd9\x10\x78\xe6\xec\x74\x08\x3c\xb3\x70\x31\x04\x9e\x0d\x81\x67\x43\xe0\x59\xf5\xf9\x92\x81\x67\x2d\x85\x13\x08\x19\xe9\x0c\xbd\xae\x77\x7d\xca\xac\x3b\xe5\x04\x7d\x36\xee\x91\x98\xbb\x7a\xaa\x86\xcc\xdc\x43\x66\xee\x21\x33\xf7\x90\x99\xdb\x05\xde\x90\x99\x7b\x70\x90\x1a\x1c\xa4\x06\x07\xa9\xc1\x41\x6a\x70\x90\x1a\x1c\xa4\xca\x67\x70\x90\x2a\x9f\xc1\x41\x6a\x70\x90\xfa\x55\x39\x16\x0c\x0e\x52\x83\x83\xd4\xe0\x20\x35\x38\x48\x35\x1a\xff\xc6\xe8\xd8\xe0\x20\x35\x38\x48\x0d\x0e\x52\x83\x83\xd4\xe0\x20\x35\x38\x48\x0d\x0e\x52\xd6\x33\x38\x48\x0d\x0e\x52\xc5\x33\x38\x48\x0d\x0e\x52\x83\x83\x94\xb3\xd3\xc1\x41\xca\xc2\xc5\xe0\x20\x35\x38\x48\x0d\x0e\x52\xd5\x67\xc8\xcc\x3d\x64\xe6\x1e\x32\x73\x57\x9e\x21\x33\xf7\x90\x99\x7b\xc8\xcc\xdd\x6b\x84\x21\x33\xf7\x90\x99\x7b\xc8\xcc\x3d\x24\x5a\x1d\x12\xad\x0e\x99\xb9\x87\xcc\xdc\x43\x66\x6e\x3f\xfc\x43\x66\xee\x81\x61\x0c\x0c\x63\xc8\xcc\x3d\x64\xe6\xae\x3c\x43\x66\xee\x21\x33\x37\x3c\x43\x66\x6e\xcf\x33\x64\xe6\x1e\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\xac\xf2\x0c\x81\x67\x43\xe0\xd9\xaf\x2a\x60\x63\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\xac\xd1\xf8\x37\x46\xc7\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\xb3\x9e\x21\xf0\x6c\x08\x3c\x2b\x9e\x21\xf0\x6c\x08\x3c\x1b\x02\xcf\x9c\x9d\x0e\x81\x67\x16\x2e\x86\xc0\xb3\x21\xf0\x6c\x08\x3c\xab\x3e\xff\xde\x99\xb9\x21\xdd\x76\x57\x5e\xee\x0b\xd5\xa8\x85\x7e\x57\x17\x5d\x62\x6b\x27\x9c\xe8\x5e\x87\x39\x91\x41\x41\xa2\x3a\x05\x6b\x62\x38\x46\x9d\x49\xa1\xed\x5d\xf1\xa5\xba\x82\xce\xf6\xa0\xbf\xd9\x1e\xb0\x4b\xdd\xd6\xd5\x35\x5d\xa8\x0b\x54\x06\x02\x1a\x74\x10\xc9\x5b\x96\x20\x34\xe8\xae\x68\x01\x97\x12\xb9\xe6\x59\xa6\xe8\x2e\x37\x91\x2e\xae\x4e\x03\x29\x52\x8e\x09\xc9\x51\xaf\x37\xdb\xe3\x62\xc1\x05\xcf\xd8\x6c\x8f\x8c\x08\x38\xc9\x59\xd3\x31\x54\x5d\xc3\x49\x22\x9a\x66\x63\x52\xcc\xcc\x89\x12\x05\x2b\x0f\x99\xc8\x78\x40\x23\x0d\x60\xbd\x1f\x2e\x08\x8d\xe2\x15\x15\xf9\x9a\x25\x56\x3b\xc8\x05\xee\xea\x55\xd3\x72\xad\x86\x42\xaf\x10\xa7\xf9\x04\xf7\x86\xc8\xd7\xf3\xa6\x86\xb0\x45\x6c\xac\x31\xf9\x6b\x5b\x3d\x83\x1b\xc5\x52\xd2\xe4\xa9\xbe\x73\xf2\xe0\x06\xff\x4f\xe6\xce\xfd\xaf\x40\xae\x5d\xb9\x2d\xe4\xea\xb0\x0c\x0b\x2d\x99\x34\x3c\xcf\xaf\x36\x28\xe1\x50\xa2\x43\x14\xc9\x5b\x24\x05\xa8\x39\x2a\x74\x29\x28\xd8\xfd\x11\x54\x0b\x78\xd8\x3f\x47\x3c\x63\x09\x55\xf7\x7a\x57\xbf\xb3\x19\x19\x61\x50\x92\xda\x26\xeb\x98\x26\x3c\x95\x62\x9f\x40\x64\xa2\xd1\x09\xe8\x0e\x17\x52\x92\x39\x4d\x7e\xfe\xf1\xa7\x72\xa8\xdf\xed\x34\x54\x39\x96\xe2\xe9\xec\xef\x39\x8d\xfe\x80\x3e\xb4\x46\x46\xe5\x0b\x2d\x9c\xf2\x14\xda\x18\x3d\x7b\x31\xa0\xfb\x44\xfe\xa0\xa0\xa0\xc6\xff\x6b\x6e\xfe\x11\xc0\x3f\xc6\xe3\x31\xf9\x97\x35\x76\x96\xe4\xcc\x04\xc1\x14\x7e\xa4\xd8\xfb\x5f\x88\xdb\x6f\x5d\x9b\x16\xbc\x83\x94\xf0\x29\xa0\xb9\x68\x05\xc8\x35\xc0\x8e\x30\xc2\x30\x3e\xa0\x5c\xfd\x5b\x70\xae\x68\xfa\x02\x7a\xfa\xac\xd8\xc7\xcb\x72\xd0\xeb\x62\x4c\x9a\x95\xab\x60\xad\xc0\xef\x60\x1b\x3a\xa9\xba\xee\xa2\x50\x3c\xca\x05\xb4\x05\xed\x13\xfc\x37\x7f\xf5\xea\xcd\x5b\xfc\x7f\x7c\x53\x7c\x73\xb5\x92\x49\x36\x0a\x78\x12\xe4\x3c\x03\xb9\x49\x7f\xe4\x1a\xe8\x9f\xff\x6c\xfd\x5a\xc2\x88\x2f\xb0\xcd\xcb\xa2\x51\x4c\x13\xa6\x65\xee\x65\x22\xf3\x58\xc9\xdc\xb3\x59\x46\xa3\xe8\x85\xd3\xca\xa4\x13\xd2\xa3\xaf\x49\x41\x11\x4c\x6f\x66\xaf\xd2\x28\xb2\x94\x48\x70\x04\xcf\x70\x0f\xe0\x2d\xc9\x7d\x01\xa2\xea\xf0\x22\x25\x31\x3e\x97\x36\x51\x4c\xf7\xc9\x68\x9f\x7c\x06\x3c\x1c\x8c\xc9\x15\x9c\x2c\xa2\x4f\x96\xb7\xd3\xb5\x4c\x18\x89\x95\x80\x9f\xa6\x7c\xc3\xc8\x1c\xa3\x05\xb6\x46\x75\xa9\x55\xca\x84\xa5\x01\x8d\x19\x09\x56\x34\xa1\x41\xc6\x12\x0d\xf6\x29\x3a\x5d\x3b\xb7\xfe\x0b\x20\xed\x6b\x1a\xb2\x51\x1e\xe3\xb6\x48\x5f\x16\x04\x07\x42\xd4\x90\x3c\xdc\xb2\xb9\xba\x19\x30\x24\x10\xf6\x7a\x87\x2c\x8e\xe4\x76\xcd\x84\x93\x5c\xe2\xd7\x71\x22\x43\xbd\x41\xa1\x4f\x75\x86\x14\xcd\x49\xa4\xc8\x98\x08\x8b\x0d\x4e\x83\x1b\xfc\xf3\x5f\xaa\x69\xd9\x33\xf9\xdd\x1f\x3d\xfb\x3e\x64\x1b\xdd\xf1\xef\x48\x6d\xef\xbb\xa4\xe8\x36\x49\xa9\xaa\xe4\x6b\x31\x3d\xb7\x68\xf8\xda\xf5\x11\x0b\xf4\x45\x2d\xc9\xbd\x6b\x52\x86\x13\xe1\xce\xd4\x8a\x02\x2c\xa8\x21\x85\x01\xd2\xe8\x00\x5c\x26\xe4\xb6\x39\x82\x11\xa1\x07\xaf\x04\x5b\x03\x17\x21\x0f\xe0\x4a\x79\xbb\x82\x80\x67\x5b\x40\xb5\x3d\xac\xf4\xed\xc5\x49\x9b\xd4\x69\x93\xba\xe4\xc6\xbe\xfe\x6b\x2e\xb3\xd5\x98\xa0\xd3\x23\xf0\x8a\xbb\x58\x09\x1f\x59\xb4\xb5\xee\x48\x2f\xa0\x5c\x88\xd3\x9b\xd5\xa2\x9b\x82\x04\x09\xd3\xf1\x15\xa9\x3e\xd3\x32\x21\x82\x47\x2f\xf7\x4d\x8c\x44\xc8\x16\x34\x8f\xb2\x94\xe0\xb4\x14\xea\x92\xd0\x23\x2a\x67\x92\xdc\x2a\x0a\x39\xd1\x17\x32\x05\xc4\xa9\xfe\xa7\x3a\x85\x9a\x5e\x16\x55\x33\xd0\x77\x0f\x54\xe6\x7a\x18\x57\xaf\x3c\xc5\x33\x35\x22\x7f\xd5\xf2\x8e\x02\xc5\x8c\xf1\xb7\x7d\xcd\x0c\x94\xf4\x08\xc6\x00\x33\x24\x56\x36\x79\xc1\x45\x10\xe5\x5e\x88\x57\x8c\x04\x54\x49\x94\xd0\x41\xd9\x0d\x41\xe6\x2b\x64\x31\x19\xe8\xee\xa5\x03\x92\x53\x6f\xc5\x94\x3a\x6c\x15\xc0\x14\x21\xaa\x77\xef\x9f\xa7\x73\x7b\xd4\x61\x68\x0c\x08\x9a\x29\xc7\x6a\xe8\x9b\xb2\x53\x14\x11\xb8\xb5\xaa\x32\x7c\xc2\xa8\x3a\x47\xc1\x0d\xa1\x4b\xca\xc5\xbe\xde\x0d\x68\xce\x88\x6e\xe9\x36\xd5\x5e\xec\xce\x5d\x6c\x3c\x0f\xd0\xe5\x60\x9f\x08\xb6\x61\x49\x65\xbf\x39\x6f\xed\x3d\x0b\xf2\x94\x58\x20\x0c\x58\x45\x61\xa0\x8b\x65\x9a\xf2\x79\x64\x06\x2e\x7d\xaa\xd4\x07\x57\x31\x0b\xdc\xf7\x38\x9c\x9b\xdf\xcb\xac\xfd\xc6\xe8\xbd\x8c\xb9\xef\x70\xcd\x5f\x81\x55\x84\xb6\xfd\x3c\xcd\x64\x42\x97\xcc\xfc\x94\x66\x34\xcb\x11\x31\x68\x4a\x62\xe1\xb9\xa5\xe4\xbf\xe1\x22\x54\x74\xc8\xa0\x34\x8e\xf2\x84\x46\xe5\x2f\x81\x14\x68\xd1\x4d\x0f\xc9\x5f\xff\xa6\x7e\x51\xfd\xb3\x50\x47\x68\xea\x5f\x67\x62\x34\x1a\xcd\x04\x8d\xb9\x09\xf4\x24\x34\xe6\xec\x2e\x63\x02\x5a\x8d\x6f\xbe\x4d\xc7\x5c\x1e\x6c\x5e\xcf\x04\x8e\x78\x9c\xa7\x99\x5c\x5f\x32\x34\x51\x9d\x30\xb8\x46\x01\x9d\xae\x84\x53\x82\x62\x85\x08\x74\x5f\x4d\x59\x96\x8e\x83\x24\x1c\xc7\x89\x54\x18\x08\x80\xe8\x8c\x65\xb2\x9c\x09\x45\xcd\xe0\x0b\x10\x4c\x0e\x89\xa7\x59\xd5\xc2\x81\xa0\x94\x3e\xb6\xf8\x6b\xc4\xd3\xec\xcf\xb5\x37\x67\x3c\xcd\xaa\x08\xb2\x60\xd2\x78\xe7\x62\x99\x47\x34\xb1\x5f\x01\xbe\x02\xa9\x16\xad\xd0\x8a\xc0\x0d\x6d\x63\xd0\xa7\xfe\x18\xe9\x69\x2a\xec\x40\x4f\xc1\x8a\xad\xcb\x70\x52\x19\x33\x71\x34\x9d\x7c\xf7\xd5\x55\xf5\xf7\xa6\x13\xab\x71\x15\xd6\xee\x58\xe5\x90\x23\xf6\xf7\x9c\x6f\x68\xa4\x08\xaa\xde\xd7\x75\xff\x62\x6b\xf3\x7a\xd4\x5e\xd6\xea\x56\xf7\x6a\x35\xeb\x84\x02\x55\x5b\xfb\xd1\x33\x1e\x81\xd1\x33\x66\xa1\x9e\x1e\xc2\x01\xd4\x42\x93\x7a\xea\xd2\x67\xc8\x05\x70\x77\xd8\xf1\x63\x10\x01\x58\x92\x9a\xcb\x5f\x20\xc5\x86\x25\x19\x49\x58\x20\x97\x82\xff\xa3\xe8\x3c\x35\xfe\x07\x50\x6f\xab\xc1\x28\xb8\xc8\x58\xa2\x84\x05\x38\xea\xa8\x6d\x55\xd7\xfe\x84\xa9\x61\x48\x2e\xac\x0e\x8d\xe7\xd3\x47\x25\x1a\x72\xb1\x90\x87\x90\x0f\x28\x3d\x3c\x38\x58\xf2\xcc\x6c\xec\x40\xae\xd7\xb9\xe0\xd9\xf6\x00\x2c\xa3\x7c\x9e\x67\x32\x49\x0f\x42\xb6\x61\xd1\x41\xca\x97\x23\x9a\x04\x2b\x9e\xb1\x20\xcb\x13\x76\x40\x63\x3e\x02\xd8\x05\x9c\xac\xf1\x3a\x7c\x96\xe8\x93\x90\x3e\x77\xd1\x81\x26\xf9\x80\xad\xdb\xb6\x0c\x6a\x07\xeb\x20\x5a\x94\x7d\x91\x8d\x17\xd8\x36\xae\x1f\x97\xa7\x57\xd7\xc4\x8c\xee\x0c\x38\x46\xe4\x97\x5f\xa6\xe5\x3a\x28\xa4\x71\xb1\x30\xf2\x0a\x28\xa3\xed\x6b\x3b\xb2\xcc\x88\x3b\x44\xd6\x34\x9f\xaf\x79\x96\x5a\x89\x64\xe4\x98\x1c\x17\x5a\xea\x3c\x0e\x69\xc6\xc2\x31\x99\x08\x72\x4c\xd7\x2c\x3a\xa6\x29\x7b\xf2\x55\x00\xa1\x6d\xa4\x70\xdb\x77\x1d\x3c\xc1\xdf\x3e\x15\x5c\x41\xa6\x3c\xcb\x56\x9e\x47\xc5\x71\xaa\x91\x48\x26\x58\xad\x0c\x0f\xa7\x0d\xda\x55\x3e\x66\x49\x6b\x4c\xa9\x45\xa5\xed\xf1\x99\x6f\x14\xe5\x33\x6e\x7d\x93\x69\x41\xe9\xf0\xae\x3b\x67\x91\x54\xbb\x4a\x6a\x9d\x0a\x73\x19\x42\xfd\x7c\xfa\x3f\x82\x53\x02\x9f\x84\xff\x7b\xa6\xc3\xcd\x0e\x09\x32\xa8\x83\x8c\xad\x63\xa0\x57\x07\xf8\x03\x78\xcb\x95\x9e\x16\x49\x3a\x4a\xe6\x34\x18\x6f\xe9\x3a\x52\x1c\xf7\x87\x1f\xf8\x82\xb0\xbf\x93\xf1\xe5\xbb\xa3\xe3\x63\x29\x16\x7c\x49\x66\x7b\xaa\xc9\x6c\xef\x5f\xff\x52\xfd\x4f\x40\x98\x65\x84\x92\x20\xca\xd3\x8c\x25\x89\x8c\x58\x51\x26\xae\xde\x3b\xe8\xad\xa4\x60\x22\xdb\x57\x1f\x43\xa1\x39\xa0\x21\x99\x21\xa6\x1e\xb0\xcc\x4d\xa9\x74\x44\xd0\x2c\x1e\x07\xbd\x94\x11\xab\x8a\x06\x30\x0d\x9a\x67\x2b\x99\xf0\x7f\xa0\xf3\x95\x25\x1f\x38\xf8\xbf\x67\xe0\x99\x00\xd1\x14\x1a\x3e\x23\xe7\x32\x44\x6d\x01\xb9\xd5\x3e\x56\x99\x24\x6b\x29\x38\xf8\x11\xcb\x84\x84\x2c\x62\x78\xd2\x91\xe9\xd2\x98\x7f\x50\xc2\x82\x5a\x19\xb5\x88\x7f\xc3\x75\x2d\x28\x71\xb1\x49\x47\x44\xa8\xbe\xf1\xcf\x0d\x4b\xe6\xf6\xab\x5b\xdb\xee\x30\x82\xc3\x51\xfe\xb5\xc4\x73\xf9\x8c\x4c\x4d\x8e\x31\x0b\xb6\x32\xf5\x13\xbb\xe3\x69\x06\x35\x18\x69\x4a\x62\x9a\xe8\xe3\x75\xf4\x91\x94\xb3\xdd\x1d\xe8\x58\x86\x1e\x98\x97\x2c\xf3\x41\x5c\x4c\xe7\x19\x02\x50\x74\xac\xa3\xd1\x04\x8f\xa1\x88\x65\xa8\x2e\x41\x02\x11\xa3\xa3\xe0\x22\x96\x69\x1b\x74\x1d\x4c\xb7\x30\xd6\x06\x3b\x8f\x63\x29\xa3\xd4\xfe\x41\x31\x9f\x64\x83\xd9\x21\xdc\xd3\x32\x33\x79\xf8\xf0\xf3\x48\x06\x37\x74\x81\x42\x29\xab\x80\x41\xd7\xf0\xb2\xf6\xdb\x8a\x8a\x30\xf2\x6d\x91\x16\x74\xc3\x95\x9a\x95\x7f\x23\xdb\x2b\xff\x46\xac\x3a\x97\xa7\x71\x0c\xd7\x54\xd0\x25\x4b\xc9\x4a\xa6\x99\xe5\x94\xf5\x28\x08\xa9\xf4\xf9\x84\xb3\x7c\x46\xce\x19\x0b\x41\x73\xa0\xae\x9e\x99\xd4\x6d\x0d\x05\xb3\x92\x79\x3c\xd6\xd4\x1c\x3d\xf7\x98\xa0\x7f\x4a\xcf\xc0\x7c\x7b\x5c\x2e\x0c\xd2\xe6\x3c\x29\x74\x27\xa8\x3e\xe0\x99\xea\x31\x25\x4a\x08\x0a\xa0\xc9\xe3\xcc\x47\xed\x0b\x6b\x5b\x04\xf6\xe8\xce\x99\x3d\xc3\x0b\xbb\x82\x43\xde\x0a\x0b\x96\xc6\xb4\x9f\xe9\x69\x13\x6a\x54\x30\x84\x2f\x88\x90\x82\x21\x09\x4b\x7d\xf8\x79\x66\x96\x11\x79\xac\x6f\x27\x3c\xc3\xfd\x0d\x34\x31\x58\x55\x42\x02\x8a\xad\x0f\xbc\xb3\xc1\x60\xde\x71\x81\x5a\x9b\x27\xe2\x33\x32\x62\x97\x0c\x5d\xec\xcd\xfa\xb4\xf4\xaf\x9a\x39\x78\x60\xe7\x30\x69\x0e\xf2\x8a\x5a\x9a\x91\xee\xa0\xaa\xf4\xec\xd1\x87\x6d\xb6\x47\x1a\x91\x6e\xd3\x8c\xad\x35\xe6\x7a\x0b\x1f\x8a\xb2\xdb\x02\x47\x97\x38\x61\x7d\x46\x4e\x28\x5b\x4b\x71\xc5\xba\x24\x09\x68\xfc\xa5\xa4\x07\x35\x58\x55\x62\x50\xc2\xec\xf1\xf9\x44\x49\x72\x4b\x2e\x88\x00\xca\x93\x49\xb5\xe3\x81\x79\xee\x23\x7b\xc3\xfb\xa1\x1d\xa0\x7a\x7f\x4e\x5c\x13\x26\xcc\xdd\x1f\x3b\x6e\x25\x3b\xcf\x88\x89\xfc\xbd\x8a\xb8\xe1\xc7\xa0\xc1\x5e\x94\x1e\x34\xba\x1c\xb4\x16\xcb\x8d\x4a\xce\xe4\x3a\x7a\x66\x72\xd7\xac\x8d\xfb\x7a\x7d\x16\x21\x4f\x03\xb9\x61\xc9\xd6\x6c\xe4\xb6\x59\x15\xfc\x00\xe0\xd9\x49\x3a\xda\x09\x7b\x0d\x17\xab\x51\xe1\x7a\xe6\x26\x67\x9f\xb4\x5e\xdf\xcc\xa6\x50\xe5\x4f\xa6\x68\xbc\xa2\xe1\x46\xdd\x81\xd2\x12\x11\xad\xd0\x7a\x7a\xbd\xde\xc6\x2b\x9a\x8e\xdd\xd2\x1e\x39\x9e\x9c\x5c\x12\x9a\x67\x72\x14\x32\x75\xe3\x04\x6b\x9e\x80\x13\x49\xc3\xb5\xde\x6c\x25\x9b\x43\xaa\x4b\xd6\x34\xbe\xc7\xfe\xc2\x8f\xd5\xb7\xad\x5b\x68\x77\x91\xf7\xc0\xa6\xd7\x75\x34\x2b\x4e\xad\xb7\x5f\x10\x31\x0a\x4a\x06\x25\x84\xeb\x3b\xe9\x27\x41\x37\x94\x47\x74\xae\x88\x44\x44\x97\x16\xa2\x62\x1b\xcf\xcf\x8c\xf1\x00\xae\x4b\x29\x46\x73\x05\x55\x9e\x69\xa5\xf0\xe2\x28\x74\xda\xb9\xcb\xc6\x6e\x36\xfc\x7d\x9d\x97\x28\x3c\x5b\x2e\x82\x76\x50\x3c\xf7\x1c\x6b\x7d\x92\xb8\x58\xf6\x39\x11\xba\x75\x5c\x71\xf0\xe8\x79\x24\xf4\x06\x9b\x6f\x0d\x3a\x14\xe0\x46\xa7\x5e\xce\xff\xc1\xc4\xa7\x46\x6d\xac\xd3\x64\x0c\x5d\xed\xc2\x35\xa9\xcb\xa1\x35\x2a\x1a\x9b\xc0\x0b\x19\x9a\xed\x73\x3f\x98\x5b\xf6\x9e\xb5\x83\x8a\xdd\xa3\x6f\x7a\x29\xd9\xd0\x84\xcb\x3c\x25\xc7\x97\x27\x78\xda\x71\x2f\x3d\x92\xb4\x88\x39\x22\x16\x2c\xe2\x77\xd8\xaf\x85\x47\xeb\xd7\xaa\xbc\x05\x57\x8a\x65\x1c\x33\x96\xa4\xf5\xae\xe6\xcb\xb8\xd1\x51\xf1\x5b\xb3\x9b\x5e\x17\x23\xdf\x4d\x05\x47\x74\xee\xd2\xc6\xeb\x94\xd9\x04\xd7\xfb\x8d\xb3\xb5\x57\xa4\xf6\x5c\x25\x5a\xaf\x5c\xb8\x30\x40\x8e\x60\x43\xdc\xe3\x96\x75\xdb\xdc\x2d\x79\x9a\x15\xc2\xac\x08\x0b\xf1\x54\xd1\x1e\xd8\x38\x52\x28\x59\x35\xc9\xf2\xf8\xa9\x6e\xb4\xad\xbb\xa5\xf7\xa5\xa4\xed\x1e\x62\xcf\xb5\x3e\x41\xc7\xac\x88\x77\x5a\xa4\x8d\xf7\xf4\x5c\x1e\x07\x60\xfd\x08\xbe\x76\x5e\x53\x23\x3c\xaa\xe2\xa6\xdf\x7e\xb9\x06\x5b\xa4\x71\x09\x91\x02\xe5\x2e\xf0\x33\x36\xfe\x99\x40\x64\xf2\x78\x99\xd0\x50\xc7\xcb\x6d\xde\x8c\xdf\xa2\xd4\x18\x60\x4e\x9d\x67\x64\xce\x48\xc2\xd6\x72\xc3\x42\xed\x9b\x68\x3e\x90\x89\x9a\xe1\x22\x61\xe9\x8a\x70\x91\x66\x34\x8a\x1e\xf5\x7a\xdb\x42\x4b\xaa\x24\x69\x97\x9d\xe5\xc6\x4a\x05\x21\x7a\x8d\x15\x67\xc8\xa4\x6a\xaa\x56\x14\x75\x4a\x34\x8a\x64\xf0\xb8\x93\xfc\xf5\xe9\x6b\x1e\x83\x62\xd0\x75\x85\x35\x78\x6f\x06\xef\xd4\x0c\x49\x39\xff\x6a\x52\x4d\xd8\xcd\x20\x86\xcd\xb7\x70\xce\x70\x81\x12\x99\x2b\xe2\xb7\x5c\x26\x26\x02\xf6\x09\xd7\xc2\x2b\x04\x69\xf9\x01\x37\x0b\xec\x8e\x35\x5f\x6a\x2a\x50\xb9\x90\x85\x70\xa7\x04\x13\xb0\x63\xfb\x05\x54\x68\xa7\xdd\x67\xc5\x39\x03\xd5\x44\xa6\x0f\x9a\x12\x4e\xe1\x6c\x42\x86\xba\xf2\x98\x91\x3c\x55\xaf\x14\x53\x1a\xa9\x5d\x19\x01\x10\x4e\x54\xd0\x38\x4e\x5b\x67\x5e\x82\xd8\xb2\x5e\x0e\x53\x79\xfb\x8d\xd6\xaf\xeb\xe8\xbc\xeb\x3e\x85\xd6\x02\xbb\xde\x5d\x53\x81\xdf\xf9\xb5\x13\x3f\xfc\xc0\x44\xf8\xaf\x7f\xed\xa4\x9f\x28\x54\x13\x90\x96\x62\x4d\x05\x5f\xb0\x34\x33\xeb\x9b\x36\x54\x0d\xda\x9c\xc6\x92\x7d\x42\x53\x72\xcb\x22\xf8\x58\x07\xc6\x96\x32\x2c\x7a\xbf\x98\x4b\xb4\xbe\x99\x49\xa1\xda\x42\xa4\xcd\x9a\x2a\xec\x40\x23\xd5\x82\x25\x78\x23\xe1\xa2\x12\xba\x61\x78\x78\xa1\xd1\x28\xb4\x22\x75\x47\x89\x38\xed\xa5\xba\xf0\xe3\x8e\x68\x7f\x42\x63\xa9\xfa\x36\x1d\xd1\x38\xae\x2f\x99\x31\x3d\xd6\x1c\xb9\xc1\x0d\xf3\xcc\xfe\xde\xd7\x03\xd1\xe4\xee\x2a\x4b\x68\xc6\x96\xdb\x43\x6d\x84\x1a\x7f\xaa\xfc\xac\x16\xf1\x87\x1f\x48\x26\xff\x87\xae\xa3\xfa\x4b\xf2\x4f\xc2\x45\xc8\x44\x46\xbe\xc6\x76\x2c\x4a\x99\xfa\x17\x29\x8c\x76\x97\x32\x8a\xb8\x58\x7e\xb2\x48\x6b\x62\xff\x54\x40\xb9\xa6\x77\xd6\x25\xf3\x90\xbc\xb6\x76\x11\x21\x66\xc7\x98\x69\xd6\x0d\xb5\x51\x75\xca\xfe\x49\x13\xb8\xa4\x5e\x52\x11\xac\x58\x32\x32\x56\x58\xb4\x85\x96\xb7\x50\xcc\xee\x10\xac\x58\x98\x47\x2c\x19\x83\x2f\xea\xb8\xcc\x77\x01\xe6\xe9\x84\x83\x5b\xff\x28\x96\x61\x19\x59\x16\x96\x66\xf3\xcd\x57\xe3\xd7\x5f\x8d\xbf\x06\x1f\x44\x62\x86\x76\x27\xe9\xc6\x3d\xbf\x4f\x28\x98\x5c\xc1\xb7\x14\x36\xb1\x1e\xe2\x28\x0c\xa5\x48\x31\x79\x84\x8c\x98\x26\xa8\x90\x3f\x61\xdf\xee\x64\x4d\xd1\x7a\xcb\xc0\xf7\x11\x82\x23\x0d\x94\x84\x86\xe1\x08\x7c\xd8\x45\x9a\xc3\xe5\x5e\x6b\xac\xed\xef\xe3\x84\xcb\x84\x67\x5b\x33\x73\x08\xb1\x14\x3a\x12\x04\xcd\xfb\xb6\xfd\x08\xaf\x2a\x76\x90\xc2\x33\x45\xa6\x79\x46\xc0\xc9\x0b\xf4\xe1\x6c\xc3\x83\xac\x12\xcc\xd8\x1f\xab\x87\xe4\xb9\xb6\xdb\x57\x0c\xed\x6a\x25\x1d\x5e\xa6\xd5\x7e\x64\x7a\x48\x22\x2e\xf2\x3b\xd3\xe0\x87\x1f\x74\xf2\xd2\xff\xba\xd9\x27\xff\xb5\x21\x87\x7f\x24\xe3\x73\xab\x27\x62\xb6\xad\x6e\xfc\x5f\x37\xe4\x5f\xff\x3a\x24\xb3\x3d\xf5\xef\x8d\x7a\xbb\x67\x75\xc5\x44\x68\x7d\xa0\xf8\x8d\xd6\x3f\x54\x73\x9f\x94\xab\x55\x5d\xed\x8f\xf4\x86\x91\x34\x4f\xaa\x04\x0d\x10\x66\xd0\x03\x5e\xab\x34\x8a\x50\xe8\xb5\xf0\x37\xd2\x39\x06\x0e\xc9\xb9\xbc\xd2\x8d\xcb\xb7\xe0\x60\x94\x50\x85\x1a\x72\x5a\xd1\xe2\xe3\xb8\xc9\x4d\xeb\xfe\x40\x59\x82\x95\xeb\x5f\x19\xf8\x86\x6d\x0f\x1d\x9b\xb2\xdf\xe8\x36\xdc\xa7\x77\x2c\xc8\xb3\x5e\x60\x77\x19\xc6\xf5\xa6\xaa\xb0\xab\x73\x17\xb9\xc5\xce\x0a\x82\xa2\x11\xc2\x05\x5f\xf3\x7f\x30\x12\xca\x5b\x91\xf1\x35\x23\x21\x9e\x0e\x6a\xa8\x94\x2d\xda\x1b\x9b\xf3\x1f\x48\xc6\xa2\xc8\xe6\x0e\x99\x24\xa1\x84\x12\x42\xa0\x92\x2d\x07\x30\x9f\xcc\xf6\x4a\x1f\x97\xea\x4e\x0d\x65\x90\x1e\x04\x52\x04\x2c\xce\xd2\x03\x93\x74\x31\x3d\x00\xad\x49\x2c\xc3\x83\x67\x26\x46\x95\x4b\x31\x92\x0b\x75\x32\xca\xfd\x60\xbd\xfb\x90\xd0\x80\x4d\x59\xc2\x65\x78\xc5\x02\x29\xc2\xf4\x90\xbc\x6a\x90\xbc\x32\x4b\x32\xea\xd1\x4c\x03\x73\xf6\x8f\x23\x9a\xa6\x88\xc0\x1f\x7e\x20\x63\x94\xe5\xd4\x41\x99\xd6\x1b\x90\x7f\x16\x76\xa3\xd9\x1e\x32\x2f\xb4\x33\x98\x3d\x35\xdb\xb3\xce\x88\x12\x20\x8f\x0d\xc7\x6e\xd2\xbe\x92\x9b\x9b\xdb\x45\x5a\xbd\x85\xd5\x64\x3a\xd0\xb2\xe2\x02\x2b\xc9\x7a\x6c\xf7\x37\xc9\xb4\x04\x69\xcc\xd8\xe8\x19\x6b\x32\xd0\x37\x6f\x67\xe0\x5f\xcd\x17\x64\x2b\x73\x4c\x02\x42\xa3\x84\xd1\x70\x6b\x77\xaa\x81\x01\xa5\x71\x9e\x32\xcf\xe0\xc6\xf9\x4f\xb7\x86\xd7\xf6\x2e\xe7\x6b\x70\x51\xf9\xe1\x87\xf1\xf1\xf9\x64\xa2\xfe\xb0\xc9\x0e\x44\x1b\xad\xa9\x12\x2f\xfe\x3a\xdb\x3b\x90\x71\x76\x10\x08\x7e\x30\xe7\xe2\xc0\x1a\x6e\xb6\xb7\x4f\x66\x7b\x23\x3d\x44\x21\xc3\xe2\xc3\xc4\xe6\x7d\x22\xd7\x15\x97\x1c\xa3\x52\xfe\x48\x63\x23\x40\xda\xcf\x33\x72\x04\xa1\x53\x7f\xfe\xf4\xee\xf4\xf2\xfc\xf4\xfa\xf4\xea\xf3\xd5\xe9\xe5\x77\x93\xe3\xd3\xcf\x7f\xba\xb8\xba\x06\x0e\xe0\x78\x37\xbd\xb8\xbc\xd6\x91\x73\x72\xc3\x92\x84\x87\x21\x43\xfa\xc1\xde\x4d\xdf\x93\xb5\xb9\xe1\xdb\x0f\x22\xc7\xca\x1b\x65\x54\xff\x23\xa3\x43\xaa\x7f\x61\x22\x01\x9a\x39\xa5\x98\xd8\xd4\xa6\x62\x90\x6f\x01\x7b\x7e\x71\x72\xfa\xf9\xfc\xe8\xe3\x69\xbd\x5f\xf0\x9f\x6b\x60\x0a\x1f\x70\xff\x75\x61\xaa\x78\x39\xa5\xd9\xea\x10\x4e\xd2\x58\xed\x78\x88\xc0\x73\x82\x72\x7c\x74\x36\x39\xbe\xf8\x7c\x7e\x7a\xfd\xfd\xc5\xe5\x9f\x27\xe7\x1f\x3e\xbf\x3b\x3a\xfe\xf3\xe9\xf9\xc9\x2e\xf0\x14\xab\xf7\x67\xb6\xf5\x81\x55\x91\x30\xab\x46\x5f\xfb\x01\x0a\x8e\xad\x3e\xeb\xa8\x11\xbb\xd9\x46\x46\xf9\x9a\x7d\x74\x25\x6b\x19\x91\xb5\xfa\x19\x67\x7e\xb0\xa1\xc9\x41\xc4\xe7\xb0\x3d\x8d\xd2\xd0\xbd\xd8\xe5\xb9\x1d\x09\x96\x8d\x42\x9e\xb4\xf5\xab\x5a\xdb\xfb\xde\xdd\x67\x20\xf8\x68\xce\x45\xbd\xb3\x94\x05\x39\x50\x28\x29\x32\x76\x57\xaf\xe1\x15\x27\x7c\xc3\x23\xb6\xac\x7a\x8d\x11\x17\x05\xaa\x5c\x39\xd4\x4d\x62\xce\x05\x4d\x2a\x41\x9e\x68\x08\x55\xef\x6a\x37\x8b\x05\x8f\x20\xbc\x02\xee\x16\xa2\x7a\x08\xcc\xae\xd0\xfd\x8f\x02\xc1\x1f\x85\x38\xe8\xfe\x06\x52\x60\x4d\xe4\x5c\xc7\xdf\x9b\x25\xb4\x97\x47\xf1\x0e\x50\xfd\x8c\x3d\xa7\xf6\x7c\xf2\xf9\xf8\xe2\xfc\xbd\x9f\x72\x28\xc1\xf0\xf5\xab\x91\x56\xa2\xa8\xbe\x41\xb3\xb4\x57\x87\xc2\x98\x53\x6a\x9b\x04\x62\x7f\x60\xcd\x7c\x5b\xa5\x0e\x8e\xa6\x20\x00\xd6\xe4\xc3\x2f\x4a\x3d\x04\xff\xac\xa7\xf3\xd9\xd5\xf4\x19\xb9\x62\xe8\x2a\xac\x0e\x33\xa4\x41\x28\xa2\xb0\xc0\x53\xf1\xdb\x14\x6f\xd8\xea\x95\x67\xc6\xbf\x02\x0a\xfe\x0c\xd6\xed\xe3\xf5\x27\xa2\x85\xce\x0d\x4d\xb8\xba\x99\xfa\xd7\xe8\xe3\xf5\xa7\x5f\x72\x61\x36\x2c\x5b\x7d\x5e\x67\x79\x7d\x1e\xd3\x84\x6d\x98\xd0\x25\xf7\x4a\x22\x07\x52\x55\x1a\x31\x06\x81\x9f\x0b\xa9\x5a\xd5\x4b\x73\x9a\xd9\x5d\x9d\x9d\x9e\x36\xea\xdb\x16\x07\x61\x41\xa3\x94\x55\xf7\x7e\x6f\x46\xf2\x20\x82\xef\xec\x8c\x65\x81\x61\x4b\xe3\x46\xfc\x7c\xd9\x9d\x83\x19\xdd\x9f\x7f\x1c\x85\xa1\x92\x2c\xdf\x47\xec\x8e\x7c\x07\x53\x27\x27\x09\xdf\x80\x27\x3d\x35\xa6\x29\xd5\x22\x66\x09\xe8\x0b\x3e\x09\x7e\x47\x4e\xe4\x9a\x72\x41\xae\x64\x70\x83\x29\x45\x21\x0a\x96\x9c\xf0\x1b\x9a\x66\x55\x66\x03\x3e\x05\xe0\x0e\x1f\xd0\x4c\x27\x41\x78\xcf\x22\x7e\x07\x04\xd7\xce\x07\x70\xb5\x15\x01\x39\x9a\x4e\x1c\x6c\x67\x11\xb1\xbb\x8d\x8c\x46\x21\x80\xe6\xe6\x3c\x6a\x0a\xdf\xc9\x68\xb2\x5e\x56\x79\x8f\x77\x41\xdd\x9d\x8f\xd4\x52\x54\xf1\xd7\x58\xa8\x26\x18\xf7\x5b\x80\xc0\x7d\xab\xb8\xcc\x41\x93\xec\xd0\x17\x16\x34\xd7\xba\xc0\x01\xf9\xad\xd5\x8e\x7c\x66\x5f\x4a\x12\xb9\x4c\xe8\x3a\xad\x7b\xe3\x28\x8e\x08\xba\xf7\xd4\xf4\x6a\x7f\xaf\xe6\xe9\x58\x08\xc7\xcd\xb4\xba\x0a\xea\xbe\xe5\x10\x00\xfe\xb3\x39\xfa\xa7\x94\xd9\x2b\x76\x34\x9d\x18\x65\xaf\x92\x64\x15\x11\x0b\x69\x46\xc1\x0c\xe9\x21\x63\x27\x47\xd7\x47\x57\xd7\x17\x97\xa7\x9f\xaf\xff\x67\xea\x67\xec\xe5\x14\x9a\x0c\xfd\x7b\xca\xb3\xc2\x4b\xae\x6b\xbc\xef\x8f\x26\xd7\x9f\xdf\x5f\x5c\x7e\x2e\x06\xf6\x8e\x09\x08\x68\x8c\xa6\x38\xe9\xce\xcc\x53\x71\xcc\x5f\x86\x61\xae\xa4\x4c\x59\xb1\x22\x4c\x98\xcb\xb2\x4f\xae\xf9\x6d\x5d\x8e\x60\x8a\x68\x05\xc0\x22\xb4\x4a\x8a\x83\xe4\x2e\x0b\x2c\xc7\x62\xc5\xdd\xab\xf7\x9e\x49\x9f\x7d\xba\xba\x3e\xbd\xec\xd8\x81\xdf\xa6\xfb\xf3\x65\xdc\xdc\x10\x47\xa5\x0b\x1a\x0c\xf9\xee\xc3\xd4\x2a\x21\xe1\xc1\xf3\xc4\xcf\xba\x69\x9e\x49\xec\xae\x39\xd6\xa9\x00\x33\xe3\x64\x5a\xff\xbe\xb6\x7e\x93\xe9\x77\x5f\x4f\x2f\x2e\xce\x3e\x37\x5b\x5a\x23\x1d\x41\xa8\xb0\x77\x14\x99\x90\x13\x9e\xc2\x3f\xbf\xfb\xcb\xd9\xd1\xb9\xd9\xf0\x46\xc3\x34\x99\x92\x58\xca\xa8\x7d\x27\x15\x90\x40\x17\x5e\x50\xce\x95\xa4\xe3\x3e\x6c\x4a\xde\x83\xd3\x9d\x0b\xc1\x22\x12\x32\xf0\x34\x04\xc7\x4c\xbe\x20\x3c\xe6\x31\x84\xcb\x03\xcc\xa1\x1b\x96\xf7\xa7\x67\x93\xbf\x28\x5c\x9c\x4f\xa6\xed\x12\x61\x56\x37\x75\x95\x72\xc2\x54\x86\x0a\x1f\x49\x0e\x14\x92\xbc\xcb\xc3\x25\x43\xba\x53\xba\xa2\x97\x12\xc3\x9f\xbf\x4d\x8b\x9d\xa9\x76\x48\x1a\x50\xfd\x1e\xd4\xef\xbf\x9c\xe8\x59\x41\xe9\xca\x2c\x6d\x05\xb9\x9e\x15\x45\x2c\x42\xfb\x5f\xa9\x58\x5d\x9f\xdb\xf7\x3c\x61\xcb\x9c\x26\xe1\x0e\xf3\xfb\x7e\x72\x79\xfa\xe1\xd3\xd1\xe5\xc9\xaf\x74\x8e\xd7\x95\x13\xb8\xf9\x1a\xce\x60\x79\x7d\xb6\xfc\xaa\x6a\xa1\x03\x63\xd8\xc1\x93\x69\x51\xb2\xab\xde\x73\xb0\x92\xa9\x92\x28\xd0\x58\xc6\x53\x34\xce\x8c\xc9\xf1\x8a\x8a\x25\x46\xb3\x9a\xda\x04\xda\xc5\xa6\x62\xe7\x87\x5e\x57\x74\xd3\xe8\x57\x48\x6d\x66\xd0\xd5\x0d\x74\x6c\xf1\x42\x5d\xb5\x75\xb6\xb8\xd1\x48\xdb\x72\x47\x01\x0f\xeb\x37\x1e\x97\x69\xf0\xd4\x4a\xb3\xc1\xb2\x06\xb1\x39\x9e\x9c\x5c\x1e\x94\x3f\xbe\x2d\x7e\x9c\x89\x1f\x7e\x18\x11\x34\x5f\xbc\x88\x98\x20\xff\xa5\x06\x4c\x5f\x92\x37\xa4\x2a\xd7\xf9\x09\x19\x76\xe3\xd8\x18\xda\x32\xb5\xe0\x49\x9a\xe9\x7e\x2b\x36\x2a\x5f\xb7\x6f\x7b\x75\x1b\xd1\x7a\xaf\x6a\x26\x2c\x4a\xd9\x63\x41\x3e\xd6\xf4\x4a\x35\xb3\x46\xb0\xad\x33\x66\x41\x0c\x5f\x00\xd5\x4d\x24\x97\xb0\x3d\x52\x89\xa1\x31\x59\xa4\x7e\x4a\xc1\x74\xef\xe3\x7f\x1a\xb4\x93\xc9\xd5\xd1\xbb\xb3\xd3\xcf\xef\x27\x67\xa7\x9f\xcf\x2e\x3e\x7c\x98\x9c\xbb\x15\x29\xed\xf2\x18\x5e\xbb\xca\x98\x68\x09\x52\x7e\x71\x4c\x30\x91\x9f\xfa\xf9\xe8\xf8\xf8\x74\x7a\xdd\x7a\xfe\x4f\x4e\xdf\x1f\x7d\x3a\xbb\x3e\x3d\x3f\x99\x5e\x4c\xce\xaf\xaf\x2f\x94\x4c\x7e\x74\x7c\x3d\xb9\xf0\x73\x2f\xec\xb6\x09\x5b\x73\xdf\x5e\xe9\xfc\x46\x61\x4e\xa3\x34\xa3\xc1\xcd\x3d\x36\xa4\xe1\x66\xdf\xbd\xbd\xfa\x34\x55\xb7\x82\x9d\x30\x56\x4a\x20\x6f\x3d\xdf\x59\x02\x48\xaf\x9d\x7b\x7e\x74\xfd\xf9\xe2\xd3\xf5\x87\x8b\x3e\x8b\xe7\xdd\xb4\xe5\xa6\x9a\x4c\x37\x6f\x15\x19\x2b\x2f\x16\xad\x0b\xd6\x07\x11\x85\x3a\xc4\xbb\xa3\x9b\x4b\x05\x29\x33\xd0\x79\x55\x91\x18\x1c\xec\xec\xe2\x83\xda\xab\xd3\xa3\xeb\x3f\xa9\xfd\x04\xe4\x15\x43\x16\xf0\x3c\xc0\x46\x34\x07\x22\x93\x70\x40\xda\x80\xb7\xfa\xf3\x02\xaf\x06\xe9\xb3\xb7\x7c\x00\x5f\x9d\x7e\x77\x7a\x39\xb9\xfe\x9f\xab\xff\xb9\x42\x98\x35\x0d\x07\x42\x5f\x84\x99\x89\x85\x6c\x9d\x49\xba\x4d\x23\xb9\xec\x98\x8b\x35\x94\x77\x3a\x6d\x47\xd8\x1a\x6f\xb6\x77\x4b\x13\xc1\xc5\xb2\xd7\xb1\x72\xce\xf7\xf8\xf2\xf4\xf4\x5c\xf5\xf5\x3d\xf6\xd4\x9c\x71\xdf\xe9\x40\x4f\xde\x19\x7d\xef\x06\xb4\xda\xdd\x9f\x4e\x8f\xce\xae\xff\x74\x7a\xae\xe8\x9d\xfb\x36\xe5\xa7\x71\x6d\x13\x9e\x4c\xaf\x55\x97\x57\xfa\x9e\x06\x12\x68\x9e\x61\x74\x43\x79\x92\x75\xaa\x3b\xb1\xc0\xfa\xdc\xed\xe7\xa9\xd2\x61\xeb\x3d\xa5\x0a\xea\x7d\x95\x75\x2e\x67\x3f\xf3\x3b\xe6\xae\x68\x48\x53\x41\x9c\x1f\x92\x37\xdf\xbc\xaa\x58\x72\x23\xbe\x60\xc1\x36\x88\xea\xe9\x74\xe3\x84\x5d\x65\x32\x6e\x74\xc2\xee\x1a\xb9\x22\x88\x65\xd3\x69\xbe\x19\x11\xdb\xf0\x5b\xd7\x15\x99\x36\xa3\x74\x95\x67\xa1\xbc\x15\x55\xd8\x36\x4c\xb0\x34\x9d\x26\x72\x5e\x87\xcf\x09\x87\x0f\x8a\x6e\x18\x46\x64\x04\xa7\x77\xa4\xc6\x74\xbc\x9c\xf3\x24\x74\xbc\x8b\xab\x6e\x0a\xaf\x5f\x55\x5f\x83\xb7\x29\x8d\x4e\x58\x44\xb7\xde\x46\x0b\xca\xa3\x3c\x61\xd7\xab\x84\xa5\x2b\x19\x85\x87\xa4\xc6\x64\x32\xbe\x66\x32\xcf\x3c\x1d\x24\x8c\x86\xfc\x4b\x63\xa9\xe6\x56\x50\x45\x93\xe3\x65\x07\x9e\xda\x67\xd8\xa2\x84\x7f\x06\xe5\x44\xd7\x94\x83\x7e\x53\x91\x2b\x2b\xe8\xe7\x68\x3a\x51\x02\x3e\xa8\x36\x68\xd4\x64\x88\x8f\xa8\x72\x37\x0b\x71\x21\xa2\xed\x21\x41\xce\xd9\x32\x5a\xc4\xe7\x07\x6b\x19\xe6\x8e\xac\x8c\x38\x4c\xc4\xe7\x23\x4f\x83\x72\x98\x66\x75\xaa\xea\x28\x49\x2e\x0e\xee\x90\x76\x8d\x23\xa9\xc4\x26\xd7\x50\xba\xc5\xc8\xd5\x62\x87\x29\x6d\x68\x02\x03\xe2\xee\x71\x0f\xb5\xa1\xc9\x28\xc9\xc5\xc8\xdd\x66\xc7\xc1\xc0\x6c\xdf\x31\x98\x42\xe3\xbd\x06\xc3\x2e\x50\x37\x9e\x6e\x45\x23\xcb\x9a\x6b\xe6\xea\xc0\xd0\x65\x23\xa9\x10\x6e\xd1\x42\xdd\xbc\x4f\x6e\x19\xf8\x90\x6b\xb5\x34\x08\x0e\x90\x13\x24\xd7\x99\x89\x54\x4b\x25\x02\xa1\x2b\x12\xa1\x19\x39\x48\xb7\xe9\xc1\x22\x3d\x98\xc7\x0b\x75\x61\xb8\x65\xba\x35\x66\x21\xac\x0f\x07\xf9\x50\x33\x12\xf2\x04\x1c\x02\xeb\x85\xbe\xcd\xe4\xd2\x6d\xba\x68\x6c\x2e\x7b\x5e\x7a\xd0\x7a\x93\x67\xe4\x1d\xc7\xbe\x31\xb5\xe5\x9a\x51\x81\xa9\x76\x20\x73\x5f\x01\x5c\xf7\x54\x78\x86\xf7\xdf\x38\x91\x31\x5d\xaa\x7b\xb8\x0e\xc4\xae\x99\x1b\xcc\xb8\x3a\x3f\x36\x5c\x53\x78\x4a\x6e\x84\xbc\x15\x36\xea\x68\x56\x19\x0c\x7d\x9f\xb0\x68\x45\x15\x64\xed\x55\xa5\xf3\x6b\x37\x46\x42\x24\x68\xa0\xc0\x1b\xba\xf2\xb9\x1b\x9d\x8a\x30\x44\x72\xe9\x22\x0c\x8d\x9d\x2b\x97\x7a\xe7\x1e\xd4\x3c\x27\x88\xf7\x7c\x23\x0d\xac\x5a\x86\x4c\x68\xa6\xed\x7b\x5e\xbe\x1f\xb5\x93\x12\x85\x45\x80\xa9\x46\xa8\x5b\x08\xd4\xa8\xf3\x18\xb7\x77\xea\x23\x11\xa3\xce\x13\xdb\xdd\xaf\x8b\x1a\x8c\x3a\x28\x5c\x7b\xaf\xed\xd4\x13\x9d\xc2\xdf\xf3\x88\x5d\x24\xc7\x95\xf0\x9b\x96\x13\xd6\x3e\xa0\xf3\xbc\xe1\x38\x27\xe6\x2c\x37\x07\x2b\x43\xc0\x8d\x27\xc6\xf1\xb9\xcb\x68\xea\x31\x3d\xb7\x83\xe4\x34\x68\x8f\xda\x59\x61\x7b\x8f\x1e\x16\x5b\xce\x42\x07\x9f\x2b\x36\x1e\xc9\x65\xea\x99\x89\xe3\xa4\xf5\xd8\x23\x9e\x73\xf7\x8c\x7c\xb4\xc8\x69\x49\x38\xe1\x3a\x50\xf7\xd7\xb4\xc3\xc4\x50\x35\x57\x35\xb5\x82\x8e\x1d\xb2\x10\xd5\x42\x7c\xac\x8e\xaa\x3e\x9f\x45\x4c\x9e\x15\x8e\x67\xf7\x68\x22\x86\x52\x93\x1c\xcf\x76\xca\x04\x11\xb3\xb4\xef\x3a\xd0\xd5\xee\xb8\xd6\xf3\x64\x39\xdd\xe3\xca\x45\xd3\x6a\x54\xbf\x57\x80\x83\x8a\xb8\x99\xab\x07\x9e\xce\x63\x40\x9a\x64\xc6\xc1\x8f\x9b\x87\xa5\xe9\xea\xd0\x84\xb4\xc3\x25\x60\x57\x90\xb5\xee\xca\xb8\x28\x4c\x41\x58\x3d\xe1\x49\x43\xbb\x83\xf3\x29\x9d\x19\x8a\x96\x18\xa3\xe2\xd1\x09\x69\x2c\xe4\x29\x2c\x9d\xba\x00\x58\x8e\xda\xf0\xcf\x88\x65\x23\x1d\x53\x74\x80\x7c\xe5\x00\x9a\x15\x08\xfb\xbf\xf3\x30\x2d\xd4\x3e\xa4\x08\x7f\xea\x72\x61\xb7\xe3\x87\xca\x18\xb1\x7a\x04\xd6\xfd\x03\x8a\x76\x0d\xc6\xaa\xa7\xa1\x29\x02\xb3\xae\x18\xb3\x13\x35\xae\xf2\xf9\x38\x90\xeb\x83\x4a\x44\xe1\x41\x33\x89\x8d\x33\x3e\x4a\x47\x51\x59\x49\xd0\x77\x49\xe1\x73\xef\xe8\x29\x47\x9a\x1e\x13\x5b\x82\xe6\x8e\x4a\x0e\x3d\x53\x84\x08\x9d\xc2\x21\x29\x6c\xc4\x40\xc5\xbb\x61\x78\x14\x84\xb6\xf0\x24\x2c\x8e\x78\x40\x53\x88\x5b\xba\x57\x54\x96\x6b\x92\x69\x19\x9b\x55\x1e\x8d\x4b\x56\xc6\xad\x76\x85\x45\x75\xa2\x91\x90\x36\x54\x92\x3e\x91\x55\xbe\x6e\xc1\x2d\x0a\x25\x2d\x13\x7b\x00\x65\x8d\x92\x9b\x5a\xe8\x49\x2c\x4b\x59\xd2\x1d\x1f\xf5\xc5\x63\x86\x0c\xad\xb9\x2e\x03\x78\x2c\x82\x51\x0d\xeb\xb1\xa2\xe3\xec\xe6\x45\x68\xdc\x5b\x0f\xd9\xf1\x05\x07\xb9\x15\x70\x56\x6b\x63\x1b\xf7\x66\x70\x94\x04\x73\xe6\x46\x2c\x83\xda\xd7\xb9\xf0\x05\x13\x0d\xa1\x48\xbd\x42\x91\x6c\x92\x8e\x6d\x1e\x1c\x96\xe4\x3b\x35\x8d\x10\xa5\x87\xc4\xed\xd4\x72\xd7\xf5\x0a\xe1\x29\x8c\xa3\xae\x28\x1e\xa7\xaf\xdd\xa8\x1f\x99\x21\x55\x17\xf7\xb2\x81\xdb\xd3\xad\xa1\xb1\xd2\xee\x45\x58\x67\xca\xde\xef\x99\x54\x5b\xdc\x73\x5d\xd7\x4a\xf0\xcf\xc7\x17\xe7\xd7\x97\x17\x67\x67\xa7\x97\x3e\x6b\x41\x53\x71\xb7\x93\xdf\xd8\x8d\xb3\xcc\xdb\x63\xaa\x62\x95\x68\x02\x8a\xc6\x15\x0b\x6e\x46\xd5\xe4\x7b\x65\xb3\x51\xed\xa2\xfd\xef\xa6\x6a\xed\x89\x85\xa4\x13\x0b\x5f\x48\x3a\xdb\x45\x78\xa9\x4b\x6a\x5f\xc8\x3d\xc8\x9e\x22\x5e\x2f\x0e\x36\xaf\xe7\x2c\xa3\xc5\x74\xa7\x32\x2c\xc7\xc3\xe1\x7e\x79\x81\xcd\x11\x31\xfe\x48\x92\x57\x4f\x41\x99\x65\x41\x38\x4a\x95\x38\x96\x19\x21\xb9\xe7\x97\xd9\x56\x89\x31\x3d\x3f\xd1\x09\x5f\xd8\x28\xa0\x82\x46\xfa\xab\xbd\xfd\xff\x1f\x21\x64\x4f\xf7\xb7\xf9\x6a\xfc\xe6\xcd\xf8\x9b\xbd\x43\xa2\xed\xce\xda\x79\xe3\xf0\x8f\x24\x8d\x23\x0e\x15\x0f\xc8\x6c\x6f\x7f\xb6\x47\x6c\xcf\x0b\x82\xa9\xa5\x75\xc2\x8e\x6b\x3d\x64\xe9\x72\xaa\x5f\xe8\xde\x7b\xcf\x4e\xe7\xe8\xaa\xe4\x73\x38\x36\x2e\x4b\x84\xa7\x45\xad\x9e\x62\x6a\x50\xc6\x37\x5a\xc0\x1d\x91\x85\x66\x5c\xdb\xe5\xa7\x4c\x25\x69\x3a\x6a\x1e\x4d\xff\x86\x2c\xfd\x9f\x7c\xdb\xb0\xf8\xee\x19\xa6\x02\x54\x60\x6a\xfb\x34\x4a\xa7\xb0\x64\x9f\x35\x47\xff\x8c\xbd\xdb\xf6\xf2\x67\xe4\xb8\x98\x8d\xc7\x05\xb6\xea\x5b\xaa\x3e\x9f\xf3\x24\x74\x7f\xfe\xf1\xfa\x93\x09\x35\x55\xe7\xda\xc4\x05\x63\xb5\x83\x05\x0d\x74\xc5\x61\xf4\x35\x43\xa1\xec\x19\x19\x91\xc9\xc2\x72\x44\x2b\x5d\x15\xf7\xc1\x4a\x9f\x49\xb2\x95\x79\x52\xf8\xb0\xab\x31\x46\xe4\xed\x2b\xf3\xf1\x45\xb6\x62\xc9\x2d\x4f\x19\x68\xa4\xb5\x1f\x66\x42\x8c\x0a\xbe\x67\x7f\xdf\x78\xfa\x9b\x4c\x27\xd3\x9e\x5d\xbc\xf1\x74\x51\xea\x73\xa8\xd8\x12\x26\x02\x1a\xa7\xb9\x89\xe1\xf5\x74\x37\x2e\xa5\x79\xd5\xb9\x11\xc6\x55\x6f\x0c\x7f\x7a\xa5\x05\x1c\xe3\x05\xa7\x3d\x94\x3e\x5e\x7f\x6a\x78\x26\xd5\xc4\x78\xfb\x8b\xd7\x5f\x7f\xfd\xaa\xe1\xf5\xe1\x8b\x00\x33\xa9\xb1\x7c\x81\x60\xf0\x19\x48\x7c\xa8\x37\x7f\x66\xea\xd8\x98\x6a\xa7\x3a\x90\xac\x28\x26\x99\x67\x72\x4d\x41\x5e\x8b\xb6\x24\x96\x3a\xad\xb7\xde\x16\x1e\x11\x12\x0c\xeb\x69\xca\x97\xe2\x33\x8f\x37\x6f\x67\x7b\xa5\x53\x80\x42\x4f\xe1\x36\x54\x4f\xe7\x95\x92\x85\xcc\xd1\x37\xba\x19\x0c\x76\x48\xfe\x39\x42\x42\xfb\x83\xa1\xb7\xb3\x3d\x01\x25\x2a\xb5\x67\xb3\xba\xa6\x8d\xf4\x47\x8a\x24\x15\xad\x02\x61\x8e\x33\xb6\x7d\x35\xfe\x6a\xfc\xba\xd2\x42\x6b\x5f\xd4\xeb\xbf\x96\xfc\xfd\x07\x9b\xd5\xcf\xf6\xc0\xf7\x1a\x3a\xd0\x8a\xed\xbd\xfd\x6a\x83\x48\x2e\x3f\x47\x6c\xc3\x22\x6c\xf5\xfd\xd1\xe5\xf9\xe4\xfc\x83\xb3\xd9\x82\x47\xec\x73\x4c\xb3\x15\x36\x75\xa8\x43\xd5\xff\xc6\x91\x5c\x36\x3e\x2f\x82\x03\x3e\x97\x00\xd9\x91\x05\xb5\xe6\x6a\xd9\x4b\x34\x7d\xfe\xec\x0a\x81\xfb\xfc\xb9\xf1\xd9\x3a\xcb\xd5\x17\x9f\x3f\xeb\x00\xb4\xcf\x9f\x6b\x0d\x30\x62\xfc\x50\x21\xa9\xb7\xf3\x97\x0b\x8b\x26\xf4\xbc\xd9\xb2\xdc\x42\x5f\xdb\x5b\xa8\xb5\x65\x65\xb3\xb5\x28\xe5\x5a\x20\xf1\xf8\x57\xfd\xab\x36\x7f\x94\x67\x34\x06\xfc\x5d\xdf\x7c\x5b\xf3\x4d\xaf\xf7\x63\x2f\x9d\xb3\x2f\x9d\xa9\x5b\xb1\x19\x6b\x09\x31\x5e\xf3\xb3\xf1\xbb\x52\x2b\x58\x19\xa5\xfc\xc3\x1e\xd0\xbb\xa3\x63\x99\x64\x6b\x1a\x37\xb6\x41\x2a\x68\xa6\x5a\x28\x84\xd6\x5e\x05\x34\xa6\x73\x1e\x61\xfa\x2e\x00\x1d\x7a\xf9\x48\xe3\x98\x8b\x65\x6a\xbe\xda\x15\x92\x39\x15\xe1\x2d\x0f\xd5\xc9\xe8\x1e\xd0\x6a\xdc\x1c\xcd\xfc\x53\x07\x2f\xf7\xd0\x53\xde\x84\xe1\x28\x48\xc2\x8a\xcc\xf5\x54\xd5\xaa\x1a\x19\xf7\x9e\xa0\x66\xd5\xbb\x0f\xd3\x4a\x5a\x79\x7c\x57\x56\xae\xaa\xbf\x6f\xd6\xaf\xf2\xe4\x05\x2c\xab\x58\xd5\x1b\xcc\xca\x5a\x56\x5a\x1e\x9c\x3d\x4d\x21\xab\x3a\xec\xd5\x2a\x38\x55\xce\x82\x75\x1e\xb7\x10\xd5\x92\xc8\x3c\xab\x2a\x7d\x86\x42\x56\x43\x21\x2b\x7b\x09\x86\x42\x56\x5f\xac\x90\x55\xfd\x10\x37\xcb\x59\x55\xcb\x2c\xaa\x03\x5c\x39\xda\xfd\xeb\x56\xd1\xf4\x1c\x0a\x96\x3b\x3c\x22\x6b\x07\xfa\x0a\x1b\x9a\xfa\x78\x46\x91\x79\x74\xa5\x4b\x9e\xe3\x2d\x73\xbe\x25\x54\xcb\xd4\x7f\x3d\xc1\x26\xce\x70\x99\xb7\x5f\x7f\xf3\xfa\xcd\xdf\x9e\x37\x5f\x61\xee\xda\x43\x75\x3a\xbf\x7a\xd3\x7c\x8d\x28\x55\x47\x77\xd9\xac\xb2\x6e\x56\xde\x35\xd1\xda\x7c\x8e\xcb\xa6\x78\x3e\x4c\x61\x2e\xc4\xa5\xde\x41\x06\xcf\x98\x95\x8d\x35\x7d\x66\x00\x85\xc9\x9c\x67\x09\x4d\xb6\xba\xe6\x32\x44\x28\x51\x74\x76\xc6\x58\xe5\x9d\x2a\x79\x39\xc1\xdc\x96\xcb\x9f\x66\x54\x84\xea\xba\x29\x13\x12\xd1\x64\xc9\xea\xe0\xba\x3a\x25\x30\x05\x75\xd2\x1c\x91\xac\xf8\xb4\x6c\x12\x7c\x80\x3d\xb9\x5f\xd5\x0b\xb1\xd1\x35\x23\x4b\xbe\x61\xc2\x8a\xa4\x37\xe0\x39\x07\x27\x9d\x25\xcc\x48\xa1\xfa\xed\x05\xc2\x77\x40\xe7\x20\x95\xeb\x1c\x12\x93\xe0\xbe\x52\x52\x31\x3d\x14\x62\xb6\x07\x65\xba\xf1\x8f\xc3\xf5\xda\x59\xd0\xdf\x3c\xef\x65\x52\x62\xbd\x9c\x4d\x9e\x32\xab\x3b\xec\x7f\x5f\xd7\xa7\x51\xbf\xcf\xf6\x14\xd2\xfd\xdd\xce\xf6\xe0\x43\x9a\x30\xf2\xfa\x2d\x99\xf3\x4c\x1f\xa4\x31\x0c\x58\x5f\x5a\x6b\x34\x80\xd7\xdf\xaf\x0b\x92\xfd\x62\x34\x11\xaa\x6b\xcc\x5a\x0f\xfc\xd5\x9b\xca\xc0\xdf\xab\x4f\x9c\x05\x70\x0d\xc8\x30\x2d\xac\x1a\x7d\x74\x45\x90\x24\xf8\x3a\x8f\x59\x32\x3a\xba\x32\x41\xbb\xbc\x91\xee\xa2\x7c\x62\x9a\x29\x5e\x7c\x48\xfe\xf7\x8b\xd9\x2c\xfc\xff\xbf\x3c\xc4\xff\xfc\xd7\x3f\xab\x7f\x9b\x9f\xef\xbb\x83\x7c\xf4\xd8\x7e\xeb\x28\x92\x87\xb2\x21\x13\x53\x99\xb8\x88\x59\x65\xdf\x9d\x15\x2d\x0d\xa1\x84\x98\x20\x5c\x0b\x45\x5b\xe2\x44\x66\x32\x90\x91\x91\x5e\xb0\x6b\x27\x66\x4e\x4c\x41\xe8\x4c\x92\xd7\xff\xfd\xfb\x66\x93\x35\xbd\xe3\xeb\x7c\x7d\x48\xde\x7e\xf3\xcd\x57\xdf\x38\xde\x73\x81\xef\x5f\xef\x48\x48\x23\xb9\xbc\x62\x1b\x96\xf0\x6c\x7b\x15\x24\x8c\xd5\x65\xbd\xc6\xb4\x9f\x9f\xd5\xbf\x30\xd3\x8f\xe4\x92\xa4\xfa\x0d\xa1\x73\xb9\x31\x26\xa5\x48\x2e\x9d\xa5\x9c\xd5\xce\x81\xe2\xd5\x5a\x78\x4b\xb3\x50\xe6\x99\xc5\x4e\xc8\xe4\xfc\xfd\x85\x8b\x75\xb4\x2d\xbf\x62\x49\xd7\x90\x58\xef\x23\x4b\x57\x18\x05\xed\x0a\x03\xa8\xce\xea\xdc\xf5\x15\x49\x59\x56\xd6\x1a\x5f\xe4\xda\x52\x8b\xf1\x37\xae\xb0\x01\x02\x0b\xbf\x86\x34\x78\x85\x3e\xce\x9e\x90\xba\xa2\xf9\x27\x34\x97\x32\x62\xb4\x21\x13\xc7\x09\x5b\xf0\xbb\x23\xbb\x1a\x4b\x27\xd7\x9b\x3a\xbe\x29\x39\x0b\xf8\x45\x41\x8b\x6a\x91\x17\xd7\x8c\xda\xc4\x0d\xb2\x43\x45\xe9\x26\x40\xa5\x96\x3a\xad\x82\x61\x71\x28\x37\x01\x30\xa1\xc1\x65\x71\xf6\xe3\xc9\xc9\xe5\xfd\x98\x5d\xc0\x43\x97\x4c\xe4\x98\x02\x28\xf6\x41\x67\x0c\xdb\xba\xec\xd9\x9c\xf0\x39\x2b\xe7\xe1\x2e\x73\x4d\x7a\x71\xbf\x76\xe9\xc6\x05\x99\x25\xe3\x68\xbf\x3d\x23\xe5\x30\x0e\x9b\xb7\x64\x2f\x20\xba\xf8\x09\xbf\xf1\x52\xc6\xbb\x5c\x48\xb8\x20\xb3\x3d\x25\x96\xa6\x63\x6b\x14\xe4\xaa\xbd\xc4\x11\x82\xb7\xba\x4e\xae\xdc\xc2\x7c\xdb\xd9\x54\x3b\x57\x6e\x67\xbe\xfe\x9e\xbb\xb8\x72\x27\xf3\x6d\x03\xba\x83\x2b\x77\xf2\xde\x5e\x7d\xf7\x67\xca\xfe\x23\x8c\x4f\xf7\x8e\x6d\xe5\xa9\xe4\x21\x0c\x59\xdb\x85\xb4\x2e\x65\x32\xed\xa4\x7c\x57\xf5\x0f\x00\x19\x90\xad\x4e\x9d\x5f\x2c\x73\x80\x57\x57\x3c\xc7\x7a\x04\x27\xed\xd3\xc6\x5d\xd3\x8b\xf6\xb5\x85\x7b\xea\xa2\xa4\x3e\xfb\xc6\xae\x86\xb5\xfb\x0d\x09\xc0\x0a\xfd\xae\x7e\x11\x88\x22\xbd\x3a\xb8\xe9\x88\x6d\x65\x38\x1d\x53\x9f\xad\xd8\xfa\xfe\x44\xb7\x8e\x0b\xac\x80\x50\xde\xec\x2d\xd7\xbb\x28\x92\xb7\x8a\x8e\x9a\xa6\xee\x75\x2e\x51\xf8\x04\xc4\xf6\xc9\x84\x3a\xbd\xc2\xa7\x77\xa8\x06\xea\xbf\x89\xac\x2f\xdc\xbb\x48\x26\x56\x80\xb3\x0b\x66\xdd\x11\x31\x3d\xa9\xb5\x1d\xdb\xd9\x96\xea\x0d\x8a\xd4\x0e\xe0\x1f\x59\xcf\xef\x80\x4f\xc9\x64\x30\x01\x2f\xdb\x62\xd1\x5c\xdc\x32\x52\x98\xfc\x8c\x29\xd3\x80\x3e\x78\x07\x95\xd0\x75\x6e\x21\xf7\xea\x5a\xf3\xff\x6d\x6f\xa2\x33\x49\xc3\x77\x34\xa2\x22\xd8\x85\x1a\xd5\xbe\x7a\xe0\x66\xb2\x7b\xf3\x6e\x28\x5d\x54\xcc\x6e\x3b\x9e\x88\x65\xc2\x52\x67\xdf\xf5\x7d\xf7\x0b\x6c\xb2\x2a\x92\xee\xb9\xd1\x6a\xb8\xf9\x4d\x6e\xb6\xdf\x56\xad\xf6\x6a\xc9\xd4\x27\x34\x17\x41\x15\xa6\xa7\xb1\x12\x4d\x99\xb9\x1a\x57\x8c\x43\xea\x67\xa7\x4d\xc8\x2a\x08\x55\x31\x05\xc5\xba\x9f\xa7\xb2\x00\x0d\xa6\x9a\xc1\x54\x63\x2f\xc1\x60\xaa\xf9\x92\xa6\x1a\x45\x0e\x9a\x16\x1a\xe3\xfc\x63\x99\x5a\x4d\xe3\x62\xf5\x1e\xdf\x4c\x73\xbd\x62\xe5\xdd\xd0\x98\x87\x14\xf9\x71\xb0\xb9\x87\x58\x5a\x6e\x18\x8b\x2f\xb0\x08\x4f\x74\xce\xee\xb2\x3f\x39\x52\x70\xd4\x40\xbb\x88\x8d\x0b\x96\xfa\x18\x00\xd3\x65\x7c\x22\x22\xd8\x5d\xb6\x92\x31\xa6\xbe\xc4\xb0\x44\xb4\x9c\x74\x29\x08\x01\xa7\x44\x21\x55\xed\xf1\x0c\x0e\x49\xe1\x54\x65\x29\x92\x60\x45\xc0\x55\x95\x85\xea\x13\x57\xbf\xaa\x97\xb4\x50\xe5\xe5\x3a\xb5\xe6\x6c\x4f\x01\x47\x14\x74\x0a\xee\x3f\xa8\x2b\xb8\x48\x33\x46\x43\x85\x5e\xeb\x6d\xca\xa2\xc5\x1f\x66\x7b\x2f\xb4\x61\xec\xa5\x6b\x08\x1d\xba\x59\x38\x86\xcd\x13\x2a\x82\x95\x59\xa7\x73\x35\xb4\x14\xda\x4f\x71\x1c\x2c\x96\x4e\xb3\x44\xab\x56\x70\x4d\xef\x2e\x19\x24\x89\xbb\xe6\x4e\x73\x4d\x75\xbb\xf0\x35\x2b\x1d\x97\xa1\x08\x93\x5c\x64\xb7\xba\xda\x90\xea\x65\x4c\xc8\xf7\x6a\x39\xca\x5b\xad\x53\xa2\xd1\xd5\x3e\x0a\x8c\x87\x26\x57\xec\x32\xa1\x01\x5b\xe4\x91\xe9\xcf\xb8\xae\x9b\x7e\x15\xf5\xe8\xea\x9b\x91\x77\x93\xcb\x93\xc2\xe2\x28\x17\xe4\xf5\x9b\x57\xa9\x71\x6c\xf5\x62\xc8\xaf\x08\xee\x73\x8a\x8a\xb4\xaf\x45\xd2\x51\x43\x80\xf5\xad\x5e\x97\x2d\xc3\xa0\x34\x08\xeb\x77\xae\x78\x4a\x32\x9a\x2c\xa1\x2c\xca\x7c\x8b\x88\x82\xf3\x88\x69\x02\x10\x6d\x80\x04\x96\xe9\x5a\xe9\xb2\x12\x3e\xe5\xe9\xd4\xd2\x32\x40\xe6\x00\xe8\x0a\xec\x0b\x0c\x6a\x76\xab\x8f\xd3\x32\x8a\xc8\xec\xbc\xb2\xac\xda\xae\x38\x73\x84\x73\x39\x71\x57\x14\x78\x32\xda\x58\x1c\x1f\xd2\x1e\x68\x29\x00\xc2\xfb\x0a\x4c\x70\xb1\xd4\x9b\xa1\x6d\x67\x01\x7a\x8a\x43\x82\x74\xc2\x58\xf7\xd8\x3a\xce\xea\xe9\x23\xba\xa6\x14\xd3\x34\xbd\x95\x49\xa7\x09\xe0\x42\xe7\x4c\x46\xdc\xea\x8f\x8a\xb9\x69\xf8\x53\xb2\x64\x82\x25\xd4\x5a\x64\x8f\x15\xa0\x8d\xfc\x93\xee\x8b\x07\x3a\xbf\xb7\x64\xa1\x74\x2e\x86\x92\x29\x6e\xd8\x16\x44\x33\xdd\x85\xd9\x0f\xb0\x89\x63\x19\x3e\x4f\x4b\x4f\x6d\x8f\x42\xb0\xf3\x4e\x84\xc9\x2d\xfd\xfa\xc2\xc6\x11\xd3\x30\x21\x6d\x06\xa8\x32\xa9\xb7\x2e\x48\x26\x63\x42\x3e\xe2\x12\xfb\x3b\x25\x84\x2a\x41\x89\x87\xa6\x8b\x1b\xe6\xda\x0a\xe6\xe9\xa3\xb3\x6c\xb5\x73\x37\x2c\x44\x56\xdd\x8b\x84\x2d\x58\xc2\x44\xe6\x94\x7a\xda\xaa\x50\xc9\x8d\xba\xea\xb2\xdb\x03\x5d\x2e\x7d\xa4\xae\xd3\x23\x14\x46\xd2\x03\x58\x98\x83\x67\x1d\x1a\x7a\x42\xae\x2f\x4e\x2e\x0e\xc9\x51\x18\x12\x09\xca\xfd\x3c\x05\xc2\x0b\x67\x25\x1d\x5b\xb7\x81\x7d\x10\x46\xf7\x49\xce\xc3\xff\xc3\x61\x75\xda\x05\x57\x45\x4a\xf1\x9e\xf8\xba\x02\xb2\xb5\x2d\xac\x67\x0a\x6d\x57\xb8\x70\x32\x01\xff\x04\xb5\x29\xd6\xdd\xab\xae\x0d\x11\x5d\xd0\x7b\xb8\x24\x3e\xa6\xe4\xae\x07\x78\x88\x7a\x74\xbf\xea\x73\x83\x77\xbf\x55\x14\x63\x32\xed\xc3\x80\xca\x3c\xd3\xb6\x1c\x47\x16\x52\xeb\x64\xe7\x5b\xb8\x68\x19\xfa\x14\xcb\xc4\xc9\x80\xb4\x73\x0e\x94\x11\x66\x09\x28\x6a\x80\xf7\x80\x59\x5a\x14\x2e\x3d\xe0\xad\xb1\x6f\xec\x31\xa5\xe5\x6a\xb6\xf7\xd7\x59\xfe\xea\xd5\x57\xc1\x64\xba\x79\x0b\xff\x62\x7f\x3b\x84\xb1\x9c\x1e\x08\x60\xbe\x29\x3e\xf8\x1a\x3f\x38\xc4\x1f\xe0\x2b\xf8\x01\xed\x24\x90\xe2\x16\x60\xa9\x4c\xc2\x02\xca\xf0\x45\xa7\x14\x08\x2e\x39\x9a\x87\x00\xb2\x44\x48\x0a\x27\xa5\x39\x8b\xa4\xa2\xcb\x20\x22\x6a\x87\x56\xa0\x75\x50\xca\xa1\x34\xd2\xbb\x89\x2c\x90\xc7\xba\x13\x96\x66\xb4\xb7\x4c\x8b\x86\x34\x43\x70\x35\x66\x77\xe5\x3f\xea\xd2\x70\x5f\x96\x9a\xb0\xb5\xcc\x0a\xce\x5a\x59\x59\x94\xaa\x7c\x1c\xc8\x66\xa4\x53\xd8\x89\x55\xb4\x21\xad\xa8\x31\x56\x74\x80\xa9\xd6\x5a\xa8\x4e\x44\x49\x46\x73\x96\xdd\x32\x26\xb4\xcd\x3f\xa0\xda\x28\x8e\x19\x2b\xb5\xe0\x6d\xc3\x0d\x09\xa6\x0a\x79\xd1\xbd\xc2\x3a\x09\xb2\x1e\x81\x2f\xc8\x5c\x66\x2b\x75\x57\x4d\x51\x86\x50\xb2\xc0\xbb\x0f\x53\x45\x54\xc6\xaa\xe9\x91\x3e\x2f\xed\x02\xa5\x02\x09\xfb\x7e\xdb\xbf\xef\xb7\x8d\xbe\xc7\x44\x1d\x53\xd7\x00\x7a\x9a\xa5\x67\x5c\x20\xc1\x2f\xcc\x5c\xb6\x2d\x34\x3c\x4f\x2b\x03\x99\x85\x70\xc2\xad\x17\x7f\x19\xc9\x39\x8d\xca\x54\x97\x0b\x5d\x2f\xb4\x38\x2e\x3b\xee\x44\x94\x45\xf4\xf4\x3a\xb7\xa2\x9e\x7d\xe9\xff\xa0\xb0\xb9\x92\xb7\x8d\xf0\x32\x54\x4f\x68\x0a\xe6\x9a\x4e\xb7\x0c\xd5\x14\x98\x0a\x9f\x18\xbf\x69\x79\xb6\xf7\x29\x65\x50\xd0\x63\x3a\xdb\x33\x59\xbf\x6c\xd8\x0a\xb1\x47\x6d\x7e\x7d\x33\xac\x00\x3b\x56\x9d\x9c\x3b\x12\xb3\xe2\x83\x5d\x2a\x5c\xb7\x4e\x79\xa7\x55\x18\x54\xbb\x0e\xd5\x6e\xb5\x14\xfa\x53\x68\x78\xd5\x08\x47\x38\xc2\xb6\xa1\xe7\xb5\x5f\x3a\xb4\xbd\xae\x42\xed\x96\xd2\xd7\x7a\xbd\x1d\x54\xbf\x83\xea\x77\x50\xfd\xfe\xfb\xa9\x7e\x6d\x0a\xd1\x53\x01\xdc\xa4\x38\xe5\xb3\xbb\x56\xd8\x63\x85\x6c\xe3\xf6\xba\x44\x6f\x17\x9f\x3f\x31\x95\x7c\x45\x08\x25\xd0\xb4\x02\x07\x76\x0e\xd0\x36\x62\x88\x9b\xda\xb7\x73\x06\xe5\xa0\xf0\x1b\xe7\xed\x1b\x62\xd2\x51\x6b\x63\xef\xf3\x05\xba\x8b\xc5\x34\xe3\x10\xc2\xb6\x45\xf9\x5c\x46\x21\x70\xfd\x88\xd1\x54\x0f\xed\xe4\xc4\x3c\xcd\xe8\x0d\x83\x3a\xed\x09\x33\xe0\xe1\x28\xb4\x1c\xe5\x71\x14\x84\xad\x22\x54\x66\x57\xd6\xef\xf3\x8d\xe7\xea\x39\x82\x25\xad\xff\xa6\x11\x5b\xff\xd9\x95\x40\x05\x20\x19\x64\x0b\xbf\x6c\xd1\x4c\x78\x55\x66\xa2\x18\x2d\x99\x80\x5c\x57\xf3\x9c\xab\x1d\x08\x03\x98\xe1\x5f\x00\x65\x02\xad\x3e\x24\x06\xe1\x52\x5c\xf3\x35\x4b\x33\xba\x8e\x0f\x89\xc8\xa3\x68\x56\xcb\x82\x00\xd7\x1c\xc0\xd9\x93\x48\x2f\x65\xa9\xf0\x2b\x2b\x29\x4b\x29\xc0\xd4\xdf\x37\x65\x98\x26\x98\x75\x31\xa6\xde\x62\x90\x64\x06\x49\x66\x90\x64\xfe\xed\x24\x99\x3a\xa9\xe8\x27\xcc\xb8\x09\x50\xf9\xdc\x43\x9e\x89\x68\x9a\xf6\x88\xdd\xc3\x66\x24\x64\x41\x44\x8d\x75\x17\x90\xa8\x0e\xae\x5a\xa7\x64\x5d\xe4\xfb\x58\x4b\xc1\x3d\x66\x34\xd4\x40\xf0\xd4\x56\x10\xe2\xb1\x04\x7b\x28\xfa\xde\xa1\xf2\x8a\x6f\x8c\xeb\x9c\xda\x91\x32\xc9\x3c\x3a\x71\x3a\x97\x79\x46\x02\x96\x28\xd4\xa9\xdd\x06\xb1\x22\x55\xa8\x76\xf2\x88\x6b\x57\xc2\xb7\x38\x26\xde\xdb\xce\xc9\x35\x42\x9d\x66\xce\x85\x1b\x93\xd0\x48\xbb\x16\xee\x26\x3a\xe1\x89\x9b\x56\xd2\x85\x75\x40\xfd\xa9\xf9\x49\x11\x6b\x05\x3f\x12\x9a\x69\x27\xee\xae\x2d\xaa\x9e\x52\xd7\x5d\x9c\x7e\x4c\x00\x49\x5e\xd9\x45\x73\xea\x5d\x91\x84\x2d\x12\x96\xae\x9c\xe2\xee\x47\x0c\xcc\xd2\x3d\x1a\xb0\x78\x0a\x0e\x92\x21\x75\x59\xa8\xee\xef\x8d\xe1\x3d\xf5\xa5\xbc\xe6\xc1\x64\xe3\xdc\xe3\xcc\x6c\x06\x2a\xe7\x28\x17\xa2\x64\xa9\x76\x72\xfd\xa3\xc6\x5c\xce\x25\x5a\xe4\xf0\x08\x0a\xc6\x42\x86\x16\x53\x7d\x80\x52\xae\x76\x12\x07\x95\xa5\x46\x39\x99\x6f\x75\xbf\x3b\xb8\xc4\x2c\x99\xe8\x0c\xc7\x3b\x52\x8d\xc8\x4a\x46\x61\x8a\x1f\x18\x20\x64\x69\xff\xdc\xdd\x0c\x3b\xe7\x49\xf8\xdd\xd7\x7d\x0c\xb0\xef\x26\x97\x27\xdf\x7d\x6d\xfb\xab\x96\xf2\x41\x15\xb7\x39\x90\x09\xd5\xf3\xd7\xf7\x37\xc0\x46\x34\xcd\xde\x49\xe9\xf3\xfd\x70\x82\x78\x66\x7d\xa3\x31\x55\x44\x98\x2b\x90\xec\x3e\xfd\x5d\x12\x64\xc3\xe8\xb8\x92\x45\x44\xe6\x59\x9c\xbb\x54\xd1\xe6\xe9\x63\x5d\x54\x43\x5f\xb2\x4a\xa8\xd9\xae\x33\x73\x7c\xee\x9b\xa4\x69\xfa\x0b\x4c\x14\x9c\x9d\x92\xc9\x49\xdf\x99\x5d\x42\x7b\x32\x39\x29\x82\xee\x01\x9e\x87\x01\xe1\xbb\xc5\x3a\x21\x80\x84\x59\x86\x24\x98\x1c\x04\x27\x94\xad\x9d\xfc\x6d\x17\x30\x36\x4e\x69\xdf\x0b\x88\x91\xfa\x2d\x30\x42\x00\xe3\x21\x50\xb4\xdb\x77\x35\x01\x78\xdb\x9b\x00\xbc\xdd\x8d\x00\xbc\x1d\x08\x80\x35\x9d\x81\x00\x38\x66\x36\x10\x80\x5f\x92\x00\xb4\xbd\x9d\x2f\x3b\x3d\x61\x15\x88\xb8\x05\x41\x6e\x56\x7f\x7a\x65\xe7\x8e\x33\x8f\x06\xe6\xd3\x34\xa3\xf3\x88\xa7\x2b\xd6\x53\x2c\x51\x8b\x97\xc9\x8c\x46\xc6\x42\x2d\x17\x68\x6b\x67\x65\x4f\x6a\x26\x24\x65\x29\xea\xdb\xda\xd0\xe4\xf1\x11\x76\xc3\xd7\x8b\x6a\x7a\xe0\x7b\xfb\x44\xf0\x9d\xcb\xec\xf1\x50\x28\xa4\x18\x7d\x11\x30\x1f\x86\xc9\xa7\x00\x13\xe2\x5f\xfa\xa1\x6f\x8a\x4d\x6d\xc6\x08\xd8\x33\x2e\xac\x69\x3f\x41\x9d\x74\xc6\x29\x7b\x2e\x3c\xe0\x57\x50\x55\x71\x14\x3c\xb8\x80\xc1\x4f\x41\xba\xa1\xea\xc5\xae\x5b\xfc\xc1\x3c\x33\xf0\x78\x85\xdd\xae\x64\xca\x4a\x15\x3b\xb9\x65\x84\xba\xbd\x6a\xca\xa7\x50\x64\xb4\xd0\xeb\x7e\x14\x9b\xe0\x9d\xae\xff\x2c\xae\x38\xfa\x4c\x17\x2c\x24\x21\x09\xa3\xa9\x14\x58\x0a\x1b\xf3\xa5\xb6\xb1\xb3\xde\x70\x75\xb0\xb4\x3a\x5c\x00\x8d\x56\x26\x00\x5d\xc6\x13\x81\xfd\x3c\x02\x3c\xd0\xaa\x37\x38\xd7\xdb\x98\x59\x26\xb8\xd2\x69\xd2\xb8\xbd\x55\x5c\xee\xdb\x57\x7b\xc3\x69\xb1\x65\x47\x99\xae\x3b\xb1\x66\xe9\x6a\x5f\x61\x5f\xbd\x65\x82\x30\x5d\x7a\xdd\x38\x19\xb5\xa5\x42\x20\x98\xe6\x7d\x64\x78\x18\x9c\x28\xad\x32\x7f\x28\xa2\xba\xe4\xef\xce\xc4\x02\x48\x89\x7a\x51\x48\xa4\x44\x6f\x6b\x94\xe8\xed\x40\x89\x3a\x66\x30\x50\xa2\xdd\xe0\x1a\x28\x91\x7e\xfe\x93\x28\x51\x8b\x8b\xf9\xc8\x25\xbc\xf7\x6b\xd6\xa8\xee\x5f\x36\xab\x8b\xb2\xbd\x5b\x3a\xfa\x6c\x9b\xbb\x3a\x1d\xa8\x88\xef\xf4\x25\x39\x2b\x9b\xa2\x69\x30\x33\x76\xf3\xa6\x5d\x10\xf4\x21\x09\xb4\x70\x61\x1b\x22\x03\x1b\x9a\x78\x6d\x2a\x84\x03\x5b\x5a\xf0\x40\xbf\x5c\x0c\x00\xbe\x2c\xae\x2e\x2f\xdf\x1f\x7f\xf5\xd5\x57\xbf\x07\xfd\x3b\x26\x49\x84\x60\xa9\x4f\xd7\xc7\x2d\x4a\x7a\x35\xc6\xc8\x0d\xa4\xc8\x23\x5d\x1f\xa3\x59\xf7\x98\x74\x6c\x3a\x8c\x79\xec\xc2\x27\xdc\xfd\x8d\x1d\x2a\xd5\x1f\x95\x65\x66\x2d\xdb\x4d\xfb\x5d\xf8\x41\x2a\x70\x1c\xb5\x9f\xac\x7f\xa9\xdb\x36\x84\x7d\x0d\xfa\x13\x31\x56\x18\xb6\x8d\xb3\xfa\x43\x4c\xfb\x20\xa8\x17\x9a\x0a\x00\x33\x2e\xb0\x48\x6f\x6f\x92\x7b\x52\x7e\x54\x04\x18\x29\x80\x1f\x81\xf6\x2f\x69\xc6\x6e\x69\x5b\xac\x56\x0d\x96\x0f\xf8\x41\xe1\xb3\x6d\x4d\xe8\x11\xc0\x29\x6a\x6c\xec\x20\x7c\x98\x4f\x5c\x20\x3d\x1c\xa2\x88\xd1\x44\xb0\xf0\x7d\x22\xd7\xfd\x61\x3a\x2b\x3f\x2a\x77\x9d\x6d\x8d\x4e\xd8\x92\x26\x61\xeb\xc0\x04\x89\x5c\xa2\xe3\x23\x61\xc1\x4d\x98\xb4\xcf\xb7\xce\x3c\xbd\xb6\x22\xe9\x27\xe9\x35\x26\x37\x59\x68\xff\x76\x94\x04\x30\x6c\xe1\x23\x4b\x57\x50\xb1\x04\x79\xee\x3e\xf1\x25\x88\xb2\x9f\x9a\xd0\x88\x9a\x4f\x1d\x1f\xca\x44\x46\xf2\xd4\x9a\x7b\xeb\x84\x49\xef\xf5\x24\x45\x9c\xc3\x75\x97\xd8\xd3\x98\x39\x4c\xd8\x84\x29\xa2\xbf\x0a\xae\x10\xd5\xcb\xc3\x53\xb3\x5f\xba\x27\x0f\x61\x8d\x8f\x35\xa7\x6e\xd9\x84\x3c\x54\xd0\xe3\xd6\x22\x95\x9e\x9e\xa0\x73\xf6\xb8\x02\x58\x73\x95\xc9\x2d\xee\x77\xb5\x47\x84\xfc\xc5\x85\xb1\x82\x6b\xf5\xba\x17\x6a\xae\xd5\xbc\x18\x0e\x5c\xab\x65\x22\x03\xd7\x6a\x01\x68\xe0\x5a\xcd\x67\xe0\x5a\x03\xd7\xf2\xb5\x1a\xb8\x56\xeb\xe7\xbf\x49\xcf\xfe\xa7\x0a\x17\xd4\x99\x4d\x2c\xca\xf5\x24\x4e\xf7\x3a\x11\x6a\x39\x0a\xbe\xb5\xdc\xee\x1b\x2d\x1c\x8e\xf7\x4d\x58\xf5\xba\x94\x9e\xf7\x8d\x26\xb3\x2f\x55\x42\xa8\x39\x83\x5a\x11\x21\x9d\x8f\xb6\xc8\x62\xe4\xf6\x6d\x1d\xfc\xf9\x07\x7f\x7e\x7b\x09\x06\x7f\xfe\x2f\xe7\xcf\xdf\x38\xc1\x6d\x15\x84\xf0\xd3\xb9\x83\x83\xf9\x33\x46\xb5\x39\xf1\x03\x09\x75\x9f\xf1\x26\xa4\x76\x63\x63\xee\xd8\x94\x1e\x3d\x5a\x91\xa9\x83\x0f\x0b\x68\x5c\x6c\x54\x11\x81\x5c\x88\x16\x3f\x79\x37\x9b\xd6\x5d\x7e\xf8\xe4\xf4\xbe\x72\xe1\x55\x35\x35\xb0\xc2\xbf\xb5\x9c\xe5\x05\xae\xc7\xf0\x1e\x09\xcf\x35\x3c\x08\x3b\x7a\xd1\xac\xe0\x87\x07\x41\x51\x54\xcf\xbc\x64\x34\x74\x5d\xb1\xaa\x97\xbc\x4a\xeb\xa2\xc2\x70\x98\x03\x89\x48\xf9\x52\x40\xac\x88\xc8\xca\x7e\xc9\x9a\x2f\x2b\xb5\xf2\x6a\xb0\x49\xf8\x8c\x46\xba\x60\x50\x2c\x05\x5c\xb8\xd3\x3c\x58\x11\x9a\x92\xf7\x2c\xe2\x77\x3a\xd1\x45\x91\x9e\xe6\x96\x72\x75\xca\x17\xd2\x93\x3f\x24\x08\x58\x9a\x1a\x0a\x55\x40\xb2\x6b\x46\xbd\x0d\x4d\x38\xed\xf6\x34\xff\x0e\x9b\x95\x41\x29\x18\x81\xa0\xbf\xb6\xf6\xb2\x55\x15\x02\xe2\x4a\x86\x44\x11\x0f\x94\xfc\x16\x6a\x6f\x3c\x79\xd1\x48\xd8\x81\xad\x65\x23\x9b\x2d\x9a\x92\x9f\x03\xd6\xba\xe4\xd7\x6c\xf2\xc5\x24\x3f\x3c\x65\x3b\xd5\x8f\x84\x4f\x06\xa9\x6f\x90\xfa\x06\xa9\xef\x97\x96\xfa\x9a\xf4\xa7\xab\x6e\x24\x9e\xf7\xfb\x56\x8e\x8c\x22\x79\x3b\x99\x4e\xa6\x53\x1a\xdc\xb0\x2c\x7d\x9f\xc8\xf5\xf7\xba\x6c\x7e\xa7\x0d\xfb\xf9\x51\xdb\xd7\x26\x26\xbf\x74\x34\x01\x48\x5d\x4c\x5e\xd7\x56\x09\x09\x25\x49\x1e\x41\x32\xdb\x30\x91\x31\x56\xbf\x2f\x2b\xd6\xb3\x90\x64\x09\x5d\xa8\xdb\x2a\xd6\x78\x31\x43\xb9\xfa\x2c\x0b\x73\x2d\x68\x94\xee\x5e\x99\x0b\x30\x03\xe5\xfc\xef\x8f\x1a\xef\xe7\x8f\x80\x1b\xe8\xfb\x17\x43\xce\x6d\x7a\x95\x04\x27\x69\x76\xbc\x62\xc1\x4d\x27\x32\xae\x58\xa6\xf5\x97\x23\x4b\x57\x3e\x0a\xd4\xc7\x44\x0a\x72\xf4\xfd\x15\x39\x3d\x7e\x53\x44\xa8\xa6\x63\x72\xa4\xe5\x19\x17\xf4\x9b\x6a\x59\x48\x2c\x57\x31\xdb\x3b\x91\xe7\x32\x5b\xa9\xe3\x09\xc5\x9a\xb0\xd0\x9b\xa9\x46\x75\x82\x11\xa0\xb3\xbd\x8e\x92\xa6\x45\x27\x2e\x9c\x30\x91\xbb\x94\xf2\xa3\xf2\x2b\xd7\x4b\x0d\x88\xeb\x33\x0d\xd4\x4e\x52\xfe\x3c\x5e\x1c\x4b\x21\x58\x00\xb1\x3c\x65\x4d\x0c\x2e\x96\x7d\x2b\xe2\xbd\x9b\xbe\xef\xe8\x02\x9d\x74\xb8\x20\xef\xa6\xef\xc9\x5a\x86\xee\x7a\x92\xee\x5d\x8c\xcb\x18\x45\x85\xb4\xa1\x06\x52\xeb\x9d\xf1\x35\x23\x6a\x4f\x92\xb9\xa9\x5a\xe2\x4d\xbf\xa7\x3f\x73\x7c\x83\x1e\x41\xe8\x91\x55\x98\x60\x56\x32\x85\x68\x5f\x25\x90\xcf\xe1\x94\xb8\x3a\x4d\x18\x0d\x56\x76\x41\x15\x5d\xf8\x25\xd5\x85\x55\x09\x5f\xc7\x89\xdc\xb0\x22\x0e\x19\xae\xde\x22\x80\x0d\x16\xcb\x70\x94\xc9\x51\x5b\x49\xa9\x62\xaa\x29\x4e\x0c\x0b\xae\x68\x57\x44\x2b\x0c\x19\xc3\x66\x15\xec\x21\x9b\xe7\x58\x64\x36\xce\x93\x58\xa6\x6a\xeb\xb7\x6f\xd0\x7b\x95\x19\x9c\xc7\x0b\x75\xdd\x9b\x2c\x68\xc0\xa6\xba\x4c\x67\xc7\x26\x79\x37\x7d\x5f\xff\x04\xa5\x89\x84\x81\x8c\x4b\xd8\x9d\x12\x07\x40\xcc\x83\x2b\x9d\xd9\x0c\x4e\x22\x06\xd7\xa8\xc2\xd8\x66\xae\x82\x5a\x8a\xa3\x59\xa6\xd6\x45\x6d\xb5\x38\x91\xcb\x84\xae\x41\x7c\xe3\x82\xc8\x24\x84\xb4\xa7\x4e\x6c\xd3\x2c\x58\x15\x34\x2f\x93\x07\x85\xf0\x21\x58\xa6\xa8\xdf\x58\x67\x2c\x12\x8c\x85\xd0\xe1\x1a\xbf\x58\x31\x0b\x12\x27\x8a\xd5\x74\x4c\xd9\x2f\x4d\x46\x4b\xe2\x0a\x49\x05\xe4\x86\x25\xf5\x12\x5f\x3d\x3a\x5d\x51\x11\xaa\xf5\x17\x81\x5c\x83\xfc\x55\x40\x0f\xa6\x5e\xf4\x05\xc3\x6c\x9b\x7a\x63\xc2\xa4\x64\x9e\xa5\xdc\x5d\x94\xd2\xd6\xee\x10\x32\x29\xae\xd5\x4a\x8a\x2a\xe7\x5b\xcc\xc2\x5a\x82\x17\x79\x9a\xd3\x28\x72\x9a\xd8\xd5\x3d\x24\x04\x25\xd0\x78\x3c\x7e\xb9\x63\x36\x00\xb5\xd9\x70\xa3\x7f\x12\x71\xc2\x37\x3c\x62\xcb\x7e\x44\xc9\xf1\xd9\x3e\xe1\x0b\x53\x6d\x73\xdf\x6c\x1b\xa6\x23\x30\x6f\xd4\x39\x8e\xc6\xb9\xd5\xfe\xf3\x3c\x5e\x7c\xd6\xe7\xcc\xc9\x3c\xd2\x6d\x1a\x64\x91\x7d\x1a\xed\xcf\x21\x2d\xac\x5c\xa8\xbd\x68\xb6\x0f\x13\xa9\xae\x3e\x40\xb3\x4a\x5b\x57\xef\x79\xaa\xa4\xe2\x00\xa5\x58\xd4\x5d\xe8\x9d\xf4\xfc\x79\x8a\xc4\x94\xc6\xb8\xc4\xba\x11\x17\xa9\xba\xc1\x40\x61\x6a\x22\x6f\x9d\x16\xe4\xe6\xc9\x50\xab\xc8\x74\xc9\xa6\x72\x80\x07\x97\x23\x9d\xc7\x8b\x1d\x78\xc8\xa9\x59\x96\x72\x89\xf4\x0a\x81\xd0\x62\x8a\x2f\x28\xe8\x95\x84\x1c\x47\x54\xb8\xad\xaa\x0f\x15\x47\x14\xd8\x77\xd9\xb5\x34\x35\xf1\xa4\x10\x6b\x9a\x74\xcb\x25\x6a\x0e\x8e\xef\x2a\x7c\xaf\x64\x72\xd4\x05\xfa\x57\x6f\xe6\x5c\x9d\xb4\xe4\xa6\xc8\xe0\x9a\xb2\x8c\xe0\x9d\xdb\x70\x03\x3c\xc5\x54\x10\x66\x4a\xa5\xe1\x95\xc8\x43\xd9\xa8\xce\xbd\xab\x89\xc0\x18\xf7\x21\x8c\xa1\x73\x9a\xe4\x26\x1d\xaa\x82\x0c\x32\xb7\xc6\x28\x65\x12\xb9\xf0\x12\x9f\x12\x20\xa8\xbe\x01\x86\xd5\xd0\x2a\x46\x88\x4c\xd4\xa4\x82\xd5\x66\x70\x8f\x49\x54\xed\xc0\x38\x31\x05\x11\x2e\xa7\xef\x09\x08\x73\xf6\x06\x7c\xe5\x5f\x46\x4f\xf4\x19\x2e\x23\x20\x48\xaf\xc8\xc7\x1e\xf9\x4f\xf4\x2a\xd6\x3f\xf3\x2c\xa2\x9a\x9a\xb5\x32\xae\xb9\xd9\x24\xb7\x62\x2b\x83\xc4\xf6\x9a\x2e\xbf\xd0\x49\xf7\x0d\xc1\xb6\xea\x3b\x3a\x8b\x86\x28\x8c\x6b\xab\xb4\x92\xd4\xa5\xc9\x1f\x5c\x88\xe9\x8a\x7a\x2f\x60\xef\x64\x92\xcc\xf6\xae\x73\x21\x58\x34\xdb\xc3\x7c\xd5\x73\x99\x39\xf3\x36\xeb\xbb\x33\x40\x90\xb0\x34\x96\x42\x9d\x39\xcd\x54\x78\x4a\x32\xe8\x05\x07\xac\x25\x2d\x86\xf1\x9c\x04\xd2\x80\x70\x72\x75\xa9\x24\x69\xfc\x0e\xc7\x71\x75\x3d\xcf\x33\xdd\xa6\x3a\xbe\x47\xbd\x0f\x8e\x16\x21\x4f\x58\x90\x45\x5b\x67\x3a\x65\x05\x99\x30\xe3\xeb\xf5\x2b\x9b\x38\xd9\x15\x24\xa9\x8e\x63\x46\x93\xd4\x2e\xfb\x32\x99\x9a\x4b\x32\xc7\xea\x78\xd0\xf2\x0f\x46\xed\x04\x32\xa4\xe7\x5c\xc7\x2c\x59\xf3\x34\xe5\x1b\x46\xce\xde\x58\x12\x45\xb9\xbf\x71\x85\x76\x2d\x61\x3d\x8f\x17\x4a\xfe\x9c\x26\xf2\x6e\x7b\xaa\x95\x24\x57\x91\xda\x52\x3d\x09\xef\xbb\xe9\xfb\xf6\x0e\xdc\x1b\xdf\x2d\x95\x59\x52\xfb\xf3\x94\xb0\xf5\x9c\x85\x6a\x7b\xde\xe4\x73\x36\x8a\xd5\x08\x5a\xaf\x9c\x92\xea\x50\x7e\xaf\x8a\x2e\x3a\x5d\xc0\x3e\x89\x33\x05\x6e\x7a\xac\x1a\xe6\xf1\x0e\x6c\xa7\xa3\x8b\x0a\x3b\x42\x5c\xb8\x26\x8f\xe8\xb1\xd8\x55\x9c\x48\xd4\xe5\x47\x5b\x12\xa8\x1e\x49\x8e\x05\x8e\xf2\x38\xcd\x12\x46\xd7\xf6\xc5\xa1\xc4\xd0\xf3\xe7\xee\x24\xed\x1a\x36\x12\xac\x28\x87\xfb\xc0\x15\x0a\x66\xa6\x06\x63\x01\xe1\xc2\x46\xb7\x4e\x00\xae\x6d\x60\x4f\x75\x17\x28\x30\xf8\x91\x8b\xab\xad\x08\x30\x0d\xd3\x4e\xb8\xaf\x7c\xb9\xef\x21\xb6\x99\xfb\x6e\xa7\x2b\xda\x43\x80\x48\x91\x72\x1e\xf5\x7d\x85\xde\xb6\x10\x18\x4a\x05\xf5\x73\x6b\x8b\xba\xba\x2d\xd1\x38\x26\xe4\x4c\xde\xb2\xc4\x68\xca\x96\xea\x18\x27\x2c\xcc\x03\x2c\xfc\x3e\xca\x63\x50\x0c\x8b\x40\x35\xfd\x13\x5f\xae\x8a\xb6\x6e\x2a\xab\xbe\x34\x8a\xf5\xe9\x27\x92\xa7\x74\xc9\x20\x5f\x83\x92\xb0\xc1\x2d\x29\x26\x6b\x99\x20\x39\xaf\x50\x89\xd7\xe9\x3d\x28\xc4\x99\x5c\x9e\xb1\x0d\x73\x15\xe4\x68\xac\x88\x69\x5b\xc1\x3a\x14\xec\x8f\xe0\x67\x93\x51\xc1\x12\x21\x3d\xb4\xa0\xb8\xef\x97\xb8\x5f\x23\x39\xbe\x30\x2a\x96\x8b\xc5\x02\x95\x2b\x13\xb1\x90\xea\x5f\xa8\x5b\x51\x97\xd8\xd9\x9e\xff\x32\x1f\xc9\x25\xd6\x45\x65\x6b\x9e\x65\x25\x3b\x52\x83\x65\x09\x0d\x18\x89\x79\xcc\xf6\x8d\xb1\x4f\x09\xe5\x20\xd8\xa2\xfe\x60\xbd\xf6\x94\xc5\x9e\xed\x65\x01\x61\x77\x2c\x50\x38\xc3\xab\x74\x45\xbf\x43\x2e\x16\x8b\xbf\x8d\x77\x47\xff\xf4\xea\xfc\xe8\x7a\xaa\x58\xbb\x63\x01\xa8\xd8\x5e\xb8\xca\xf6\x8c\xba\x22\xeb\x47\x1d\x7e\x66\x8d\x95\x2d\xc1\x28\x6f\x3c\x09\x15\x4b\x66\x57\xb8\xbe\x85\xdf\x42\xb9\x76\x5f\xe4\x62\x1e\xdc\x10\x8a\x35\x2e\xd0\xa1\x2e\x61\xda\x28\x80\xfa\x7e\x78\x13\xc8\x28\xe2\xea\x26\xaf\x45\xcd\xc2\xba\xe9\x56\x48\x16\x02\x23\x8b\x57\x6c\xcd\x12\x1a\x69\xb8\x68\x5a\xd4\x96\x57\x52\xe1\xfb\x63\xf2\xf6\xd5\x37\x6f\xc9\x8b\xd7\xaf\xde\x7c\xfd\xf3\x8f\xff\xcf\xdb\x6f\xbe\xf9\xea\x9b\x97\xbe\x22\xe7\x31\x54\xde\xa1\xf3\x68\x5b\x11\xbe\xea\x83\xa4\x45\xb2\x14\xb5\x33\xa4\x20\xff\x1f\x7b\x7f\xbf\xdc\xc6\x6d\x3d\x0e\xe3\xff\xff\xae\x02\x95\x3f\x33\xb2\x3f\x23\x52\xb6\x93\xb8\x89\x3a\xfd\x43\x91\x14\x87\x53\x5b\xe2\x57\xa2\x93\x76\xc2\x7e\x3d\xe0\x2e\x48\xe2\xa7\x25\xb0\x5d\x60\x29\xb1\x69\x9e\xc9\x6d\x3c\x33\xb9\xba\x5c\xc9\x33\x38\x07\xd8\xc5\x92\xd8\x17\xca\xb2\x9b\xb4\xcb\x99\x36\x32\xb9\x8b\x97\x83\x83\xf3\xfe\x22\x53\x96\xd1\x3a\x39\x55\x6d\x94\x66\x2b\x35\x24\x6f\xb8\xc8\xef\xcd\xab\x8a\x7c\xf6\xf2\x8f\xaf\xbe\x34\xcb\x79\xfe\xd5\x57\x5f\x1d\x19\x38\x26\x0c\xbb\xed\x28\xb2\x92\xca\x88\x25\x85\x00\x71\x7a\x79\x1a\x1a\xd6\xed\x12\xb7\xfd\xf9\x57\x2f\xbe\x78\xe9\xf6\xe7\x92\xd6\x0c\x19\x17\xcc\xe0\x33\xcd\x78\xb2\x31\x87\x90\xc9\x59\xc2\x56\x78\x0e\xe1\xd6\x1e\x38\x9e\x5c\xb3\x2c\x31\x6a\x62\x71\x09\x8a\x3d\x96\x1b\xfa\xba\xe8\x74\xe1\xa2\x59\xcd\xbb\x75\xa2\x27\x17\x46\x40\xe5\x6b\xe6\x5f\x8f\x97\xcf\x9f\x3f\x7f\x7e\xf2\xf2\xab\xaf\xbe\xfa\x2a\x44\xa4\x52\x6b\x28\x22\xff\x77\xf8\xbf\xbb\xbf\xde\x0f\xca\x66\x48\x03\x2e\xf4\x40\x66\x03\x44\xed\x70\xd2\x1c\xf0\xc1\x11\x28\xbb\x9d\xa4\xfa\xb3\xea\xf3\x75\xb6\xc6\xa5\x94\xb7\xbe\x31\xa0\x86\x1d\x6b\x99\x0e\x90\x1e\x6e\x31\x66\x83\x48\xa8\x82\x1b\xe8\x5a\x1b\xbb\x8d\x53\xd1\x32\xb5\xc0\x0d\xda\x9f\xcc\xfb\x86\x00\xce\x36\x20\x7b\x8a\x78\x77\x84\x99\xd4\x5a\xae\x86\x4e\xc9\xb7\xe1\x26\x8a\xce\x99\x6b\xfd\x11\x44\x5a\x57\x5b\x2f\xcd\xd8\x1a\x22\x28\x4a\x13\x82\x19\xdd\xea\x93\x18\x10\x3b\xdb\xa4\x54\x29\xdb\xb6\x7e\x23\x73\xa2\xee\xb8\x0e\x77\x79\xd1\xd2\x2e\xd4\xf2\xe9\x19\x23\x0a\x9b\x69\xd8\xe5\x62\xcb\x29\x9c\xc2\xf5\x9a\x43\x28\x61\x5c\x47\x10\xbb\x40\x40\x04\x23\xe9\x6c\x63\xf4\xf7\x04\x1d\x8b\x99\xcc\x17\xcb\xad\x54\x46\x18\xf9\x08\xa7\xb9\xb3\x5d\xf4\x43\x63\xda\xc7\x53\x99\xf0\x68\x83\xd2\xd9\x8c\x79\x3b\x2d\x51\x18\x01\xbb\x2f\x8b\x2d\x18\xdc\x79\xc6\xd7\xc1\x7e\x9c\xcd\xd5\xd7\x67\xf9\xc2\x9a\xaa\xde\xc8\xc5\x79\x26\xd3\xd4\xa0\xfd\x9e\x72\x18\x0c\xf3\x96\xad\x64\xb6\x19\x67\x72\xce\x13\x36\xa6\x7a\xf9\x90\xb5\xdc\xf0\x15\x78\x80\xce\x68\x12\xbd\xce\x68\xba\xfc\x96\x8a\xc5\xe9\x5c\x3f\x6c\x67\x6e\xb4\x73\x07\xa4\x87\x8f\x06\x87\xe4\x34\x87\x89\xfc\x56\x2a\x7d\x1a\xd5\xa4\xa2\x54\x6f\xff\x79\xfd\xbb\x3e\x25\x00\x93\xaa\x41\x69\x55\x63\x4a\x29\x0c\xac\xe6\xd1\x85\x74\x57\x87\x96\x16\xd1\xd2\x53\x2d\x4b\x23\x08\xd7\x8a\x25\x73\xf2\x94\xce\x6b\xe2\xd4\x80\x3c\xd8\xb1\x97\xdc\x32\xe7\x62\x28\x86\xca\x26\xe2\xef\xb3\x21\xf9\x7a\x53\x74\xfa\x41\xd4\x0e\x0d\x69\x5b\xc5\x07\x9d\x78\xc5\xd0\x2a\xb4\x4c\x60\x13\xe1\xfe\x68\x05\xb5\x9b\x1e\x9c\x5f\x5f\x8d\xa7\x07\x10\xaf\x64\x18\xbd\xa5\x16\x77\xd4\xf6\x60\x85\xe6\xa1\x4a\xae\xa0\x7a\x02\x4d\x92\x26\x35\x1e\xd6\xe6\x03\xce\xac\xe6\x08\x2d\x07\x50\x4c\x80\x66\x74\xc5\xac\xc9\xe4\xfa\x62\xf2\xee\xfa\xd2\x8c\x7a\x7a\x76\x76\x31\x9e\x0c\xc9\x3b\x15\xbc\xf5\xf6\x41\x8e\x0b\x83\xfe\x4d\x1b\x99\x83\x51\xb4\x4a\x93\xbc\x4d\x8d\x2e\xc7\xef\x26\xd3\x03\x24\x53\x7f\x6a\xa0\x25\x40\x44\x1c\x19\xd6\x8e\x8e\x6e\x13\x7a\xaa\x71\x24\xdb\x26\x6c\x7a\x80\x6b\x0a\xf7\x10\x72\x26\x37\x7b\x22\x5b\x8b\x21\xd2\x12\xf1\x25\x55\x10\x0c\x87\xbd\x18\xd2\x4c\xba\x80\x36\x77\xb8\xa1\xb1\xc3\xa8\x04\xa0\xb3\x60\x04\x3b\x87\x28\x42\xb8\x68\x92\x38\x65\xdd\x2d\xac\xf6\xe4\x0a\x9b\x13\x01\xfc\x0e\xad\xa9\x6e\x01\xcd\xd6\x5b\x43\x0a\xf7\xa6\xc5\x6c\xcd\x23\x4c\x98\x1b\x67\x52\xcb\x48\xb6\xaa\x3d\x20\xa3\xfa\xa1\x45\x98\x23\x92\xda\xd7\x09\x8d\xad\x8d\xcd\x2a\x3c\x2b\x16\xdb\x69\x82\x32\x17\xa4\xe2\x1d\x19\xee\xe5\x2e\x29\x20\xb1\x63\x3b\xd7\x93\xf1\xf5\xd5\xe4\xfd\xd7\x57\x57\x13\xd4\x92\x12\x36\xd7\x64\x96\x50\x71\x5b\x6b\xff\xa8\x51\x02\xbc\xbd\xde\xec\xd3\xb0\x6b\x62\xfb\xa7\xea\x9d\x36\x57\xce\xda\x25\xc5\x3e\x9b\xad\x50\xa4\xc0\xa0\x90\x56\xe4\x36\x79\x44\x12\x46\xd7\x36\x5a\x28\xa8\x77\x83\xe0\x05\x06\xe9\xa5\x94\x56\x72\xde\x1a\xf1\x01\x3d\x7e\xad\x7b\xe6\x4c\x0a\x61\x74\xc4\xdb\x91\x80\x82\xc4\x75\x11\x07\x8d\xbc\xd6\x61\xf3\xb5\xab\x51\x73\xce\x92\x60\x12\x62\xd3\x82\x76\x06\xa9\xb7\x59\x35\x2f\xc6\x1a\xab\x2f\x65\xcc\xa0\xa1\x43\xdb\xf1\x5f\xf8\x2f\x9c\x8d\xce\xaf\xcd\x4b\xa8\xc5\x25\xe6\x2f\x39\x27\xe6\xdb\x43\x50\x05\xdc\xe8\x03\x21\xc5\x00\xe3\x21\xa1\xa6\x4a\x83\x5f\x76\x45\x37\xee\xbc\xd0\xaa\x5b\x30\x21\x70\x06\x60\xa3\x5f\xe6\x19\x93\xed\xaf\x61\xfd\xd0\x45\xa2\x1a\xe2\x1a\x95\xe5\xc7\x43\xf5\xe8\x3e\x42\xc5\xf4\x39\xe5\x89\x91\xaf\x47\x62\x26\x73\x11\x1b\xb1\xa1\x4e\x93\xaf\x4a\x1c\xdf\xd4\xbc\x58\x85\xf3\xbb\xf3\xf1\xf1\xe4\x6c\x8c\x86\xff\xe0\xee\x45\x0c\x87\x61\xfd\x85\x9e\x7d\x11\x39\x6c\xc8\xf5\x0b\xbc\xbc\xe0\xf0\xa1\x51\xa5\x20\x3c\xcb\x98\x4a\x6d\x15\xfb\xb2\xe1\x6e\x9e\x71\xbd\x29\xd8\x83\x23\x14\xb6\x6b\xac\xe1\xeb\x6b\xc9\x83\x1c\x86\x46\x11\xd4\x8a\x07\xc6\x11\xe5\xd8\x75\x5d\xce\xe7\x84\xe2\x7a\x40\xa8\x30\xab\xcd\x32\x16\xe9\xad\xf8\x32\xf2\x4d\x38\x03\x6f\x46\xa3\xdb\x41\xa5\x17\xd0\x91\xcb\xe3\x2b\xa8\xb3\xeb\x71\x58\xf6\xbe\xe6\xda\x11\xa3\xba\xb0\xf2\xe9\x81\x8e\xd2\xe9\x01\x48\x2d\x14\xe0\x1b\x1e\xc6\x03\xb4\x2f\x47\x05\xf7\x8f\x61\x55\x86\x3a\x19\x82\x38\x29\xfd\xc1\x14\x24\x05\xc0\x02\x04\x05\x1c\xf6\x51\x61\x14\xa8\xed\x5a\x28\xa4\x00\x67\x5d\xa1\xdc\xd9\x48\x25\xeb\xb4\x53\x6a\xe9\x5c\xc2\x06\x4b\xce\xbf\x3d\x1b\x57\x1c\xb6\x51\x7a\xf2\xf2\x65\x30\xce\x26\x8f\xd3\x93\x57\x5f\x1e\xc1\x23\x2f\xfe\xf8\x15\xfe\xf1\xf2\xb3\xf2\xaf\x2f\x9f\xe3\x5f\xaf\x3e\xff\xfc\x33\xfb\xd7\xab\x57\xaf\x8a\xbf\xfe\x18\x62\xca\xf5\x97\xaf\x5a\x59\xcd\x9c\xdb\x58\xa2\xf6\x1a\xc9\xd5\xcc\x4b\x0c\x77\x67\x7a\x04\x20\x3a\x2a\x90\xbf\x26\xdb\x72\x5c\x30\x68\x11\xa3\xe1\xc9\xc5\x70\x95\xfd\x38\xc3\x96\xa1\x96\xec\x62\xc1\xc2\xf6\x71\xd2\x29\xb9\xd3\xac\xa4\xe5\xf5\x86\x72\x99\xa4\x80\xc2\x83\x97\xd0\xd8\xc2\x78\x50\xdb\x14\x78\x50\xcc\x5c\x4f\x41\x9b\x8b\xdf\x36\x52\xd0\xab\x5c\x3f\x90\x84\xee\xbc\xf9\xc8\x34\x54\xe6\x7a\x21\x7d\x1a\x0a\x52\x6d\x3b\x15\xd5\xb2\xa7\xa2\x9f\x94\x8a\x4a\x8b\x08\x8f\x43\x46\x25\xe8\xf9\x4c\x47\xf1\xe1\x21\xd4\x73\x14\x31\xcd\x62\xeb\x83\xd7\xd2\x06\xea\xd4\x36\x9a\x43\x34\x8a\x25\xc3\x2d\x2f\x98\x36\x07\x06\x87\x85\xfa\xac\x8e\xe2\x4a\x48\x97\x01\x80\x39\x4e\x43\xa8\xeb\x8c\xd6\xe7\x97\x37\xdb\x34\x7c\x1f\x02\x1d\x3c\x28\x4b\xb3\x8f\x80\xec\x7f\xf1\x19\xfe\xb7\xa7\xe1\x3d\x0d\x0f\xfe\x1a\xa6\xe1\x8c\xea\x3c\x63\xe7\x4c\xb3\x48\x5f\xad\x59\x96\xf1\x76\x93\xfb\x37\xa1\x97\x8a\xbc\x40\x2d\xc1\x2f\x91\x39\xbf\x8c\x9d\x22\x8c\x7b\x9a\x59\x2b\xd3\x77\xe8\x80\xa5\x99\x87\x1f\x84\x0b\x42\xd1\xaf\x47\x14\x4b\x29\xb6\x8b\x06\xee\x00\xe4\x52\x04\xcd\x63\x2a\xa5\x91\x51\xd3\xd9\x3d\x5d\xa5\x09\xfb\x13\x99\x1e\xdc\x5c\x9e\x4e\xbe\xc9\x93\x64\x73\x0d\x1e\xb0\x3f\xeb\x2c\x67\x47\x6f\x4f\x6f\xfe\x8f\xff\x25\x44\x94\x1d\x5d\x33\x48\x6d\xbb\xc9\x53\x20\x17\x6f\x64\x74\xfb\xe7\xe9\x41\x10\x53\xa7\x07\xe0\xbe\xb0\x71\xe3\xf0\xfa\xf4\x00\x69\xe2\x5c\x66\x51\x65\xf7\x47\xd8\x5d\xdd\x3c\x2a\xad\x6b\xb3\xde\x8d\x6c\x80\x40\x73\x2d\x07\x08\x9f\xbd\x15\xe2\x79\x22\xc1\x07\x34\x1a\x87\x59\xb1\x33\xc2\xd4\x06\x3f\x56\x4f\xbb\x1c\xad\x2c\xfa\x59\x7a\x57\x30\xc0\x63\x2b\x3e\x62\x91\xd1\x20\x17\x70\x2b\xf3\xca\xc9\x06\xf5\xbd\xda\xf8\x79\xab\x49\x87\x7e\xaa\xdf\x4e\x13\xac\xa0\x0d\x39\x8f\xfe\x7a\x3e\xee\x1a\x58\xf2\x7a\xfb\x0d\x1b\xa1\xa1\x88\xfd\x85\xfc\xf5\x7c\x4c\x94\x74\xb1\x40\x24\xa2\x59\x38\xb9\x02\x84\x96\x58\x8a\xc3\x43\x4d\x14\x22\x1c\xbc\x2b\xe7\x73\x30\xad\xc9\x8c\xc4\xe0\x77\x00\x37\x0c\x44\x8b\x02\x53\xfc\xeb\xf9\x18\x65\x8f\xa0\x21\xd7\x06\x86\x30\x73\x6f\x98\x88\x59\x5c\xba\x89\x0c\x4f\x83\xd9\xd2\x4c\xae\xcd\xfd\x9c\x31\x0d\x76\xbd\x32\x80\xbd\x66\x9d\xa2\xb0\xa5\x0e\x3f\x38\x08\x73\xc9\x68\xa2\x97\x0f\xb4\x89\xe0\xcb\x46\x60\xdc\xd3\x28\x83\x2f\x8e\xc3\xe4\xbf\x91\xf0\x17\xa1\xd0\x17\xf7\x51\x92\x77\xf0\x48\x8e\xb6\x5e\x40\xa9\x16\xe8\xd8\x60\x8b\x8e\x41\xaf\xb8\xd6\x68\xf0\x4a\x10\x3c\xb3\x83\x82\x89\xd1\xf6\xbb\x73\xdd\x75\xab\xa2\xed\xb0\x2e\xcc\xa2\x2a\x2e\x55\xe2\x96\x6d\x62\xc6\x42\x48\xf3\x55\x19\xc8\x74\x78\x48\x46\xe3\xef\x6e\x48\x9c\xaf\x56\xc1\x00\x82\x62\x1b\x47\x2e\x88\xdf\xf2\x03\x97\x42\x99\x6c\xc8\x6c\x53\x89\xbd\xa9\x7a\x16\x82\xd6\x6d\xbb\xd7\x55\x9e\x68\x9e\x26\x5e\x3c\x3e\xe6\xec\x92\x5c\xa1\x2f\xd5\xfc\x27\x61\x2e\x4b\x13\x02\x5b\xf8\x6e\x36\x27\x81\x6c\xc2\xd4\x56\x52\xdd\x49\x4f\x50\x20\x68\x87\x7e\x80\x75\x82\xfc\x72\x97\xd1\xb4\xce\xcf\x83\xe0\x04\xd6\x74\x78\x78\x7c\x78\x88\xc3\x59\x3e\x44\x96\x68\x1b\xb5\x91\x46\x87\x87\xc7\xff\xd7\xc0\xe2\xf8\x68\xcd\xf4\xf2\xc5\x61\xe0\x12\xd9\x94\x2e\x07\x03\xb4\x36\x14\x51\xf9\x70\x5a\x33\xb6\xe0\xc2\xcd\x68\x86\x3b\x3c\xb4\x1d\x0d\x95\xac\xb3\xc2\x96\x20\x3c\x3c\xb4\x73\xfb\x77\x1a\x0e\x88\xa7\x6b\xd5\x10\x96\x1b\xbe\x61\xc5\xc0\xe3\x8c\xcd\xf9\x7d\xf7\x6b\x82\xcf\x3b\xbb\x75\xf5\x88\x21\xda\xa3\x28\x06\x50\xf4\x2c\x0c\x42\x6b\xd7\x07\x06\x19\x12\xa0\x6a\x18\xae\x93\x73\xb5\x44\x47\xc0\x2a\xa0\x09\x36\xc2\x4a\x0d\xc9\xa5\xd4\x40\x23\x08\x13\x6b\x9e\x49\xb1\x02\x87\xbb\xb4\x95\xb1\xa9\x20\x33\xc3\xb7\x57\x4c\xd3\x04\x31\x50\x66\xd1\x92\x29\x9d\x51\x2d\xc3\x25\xdd\x0b\x6e\x8a\x7e\x04\x9a\x1a\xd9\x37\xe3\x54\xb3\x64\x53\xc5\x1d\x99\x67\x7e\x50\x21\x58\x85\x64\x74\x5b\x53\x1a\xc3\x90\x31\x9b\x6e\x6e\x5d\x6d\xe6\xac\x23\x9a\xf0\xc3\x43\x3f\x91\xd9\x8c\x7a\x95\x32\x71\xa3\x69\x74\xeb\xbf\x16\xbc\x37\x2e\xb2\xe8\xf0\x50\xd3\xd4\x0d\xe4\x63\x8e\x99\xe0\xc1\x38\x73\x8d\xfd\x15\x01\x27\xd6\xb4\xd5\xb3\x33\xaa\x79\xaf\xae\x35\x64\x6d\xd6\x64\xc6\x54\x44\x85\xb2\x81\xf4\xfe\xfd\x92\x64\xcd\x32\x3e\xdf\xd8\x8c\x0b\xac\xc4\x0e\xda\x26\xbe\x03\xec\x38\x6c\xd9\x76\x69\x25\x86\xe0\x29\xa6\x8b\x0c\x6a\xee\x56\xa9\x25\x79\xbe\xa7\x50\xc7\x53\xde\x10\xfb\xda\xc8\x33\xcd\xab\x6f\x27\xef\xda\x2f\xe4\x78\x34\x7e\x3b\x79\xe7\x60\x68\xfe\x84\x48\x76\xed\xaa\x4c\x5a\xa3\x3f\x7a\x8d\x86\xe4\x86\x85\x83\x32\x2c\x5a\x9b\x5d\x9b\x31\xbc\x18\xc7\xcf\x3f\xdf\x3f\xd8\x9f\xa7\x06\xf5\xf6\xc4\x8f\xc3\x51\xe8\xad\x46\xec\x20\x19\xc3\x44\xd3\xb0\x4c\x9e\x78\x11\x41\xd8\x3c\xa0\x6a\x49\x20\x42\x5a\x62\x60\xbd\xa4\xe0\xcf\xf5\xcd\x3e\x41\x0b\x4e\x26\x6f\x8b\x22\xe7\x45\xd8\x4e\xb8\x27\x69\x31\xbd\xeb\x45\xda\x1c\xf3\xfb\xd5\xf3\xbd\x23\x4a\xdd\x0c\x5f\xd3\xe8\x96\xed\x54\x0d\xd8\x01\xf2\xa8\xfa\x78\xa1\xb8\xb9\x6a\x28\x33\xfb\xbd\x11\x72\xdc\xda\x0d\x4b\x0b\x02\x82\xa1\xeb\xaf\x62\xce\x01\xf7\xe2\x82\x06\xdd\xc9\x5d\xf6\xf1\x0d\x4f\x34\xcb\x20\xc3\xba\x36\x9c\xa4\xcb\x38\x46\x0b\xfc\xa6\x3e\xee\x66\x1b\xf3\x76\x5f\x72\x88\x67\xa8\x8c\x5f\x2c\xd5\x4d\x10\x82\x48\x22\xa3\x5b\x32\xe7\x09\x1b\x92\xbf\x19\xe9\x83\x6e\x20\x41\x11\xdd\xa7\x10\xfe\x07\x5c\xc3\xda\xfb\x8a\xa7\x9d\x02\x10\xae\x7f\xcf\xb5\x67\x10\x2b\x56\xf3\x74\xee\xf1\x1a\x3f\xac\x62\x45\xd3\x94\x61\xc2\xab\xd0\xb2\x88\xae\xae\x61\x66\x9a\x72\xc1\x32\x73\xad\x28\x89\xf9\x7c\xce\x32\x26\x34\x49\xa9\x5e\x3e\xf3\xf9\xc4\x71\x96\x8b\xe3\x7b\xab\x4d\x98\x75\x3f\x14\x4d\x0d\x84\xc7\x99\x9c\xb1\x3d\xa8\x42\xcd\x9b\xee\x80\x20\xd2\x7c\xcb\x98\x1c\x94\x35\xb0\x18\x11\x46\xa4\x53\xad\x8d\x76\x0f\x3c\x83\x46\x60\xde\xa9\x86\x9f\xc0\xe1\xf0\xb9\x4d\xe7\x15\x32\x28\x6b\xd0\x35\xe5\xd0\x4b\x60\x58\x8d\x49\x5f\xd1\x5b\x17\x52\x0e\x91\xe3\x36\x7d\x86\xaf\xad\x0a\xe0\x4e\xbf\x46\x19\x34\xe7\x02\x6a\xe0\x11\x24\xe0\x18\xfd\x11\x86\x39\x1b\xbf\xf3\x0f\xe5\x8b\xe7\xab\x07\x93\x0b\x03\xcd\x09\x5f\x31\x99\xb7\x7a\xa8\x2b\x27\x60\xdf\x69\x82\x3d\x00\x3a\x68\x49\xb0\xf9\xdc\x15\x18\x43\x98\xf9\xf3\x23\x8f\x68\x82\xa5\x19\x0d\xc9\x5c\x95\xc6\x98\x5a\x71\x00\x64\x7c\xb5\xa4\xc1\x13\x84\xeb\x85\x31\x54\x49\x52\x25\xf6\x56\x20\x0f\x73\x0e\x23\x8b\x9b\x43\x74\x27\x35\x24\xdf\x9b\x83\xb3\xb9\x1b\x65\x2e\xbc\xd1\xc8\x69\x79\x91\x8e\xea\xa3\x7f\x5d\x46\x92\x19\xd1\x5c\x27\x9b\x27\x25\xb3\x8d\xa3\x2c\x5e\x9e\xfb\x4a\xe6\xb6\x23\x86\x0d\x40\xf2\x1a\xa0\x87\x46\x97\x99\x7b\x62\xee\x2a\x86\xe0\x82\x2a\x49\x7b\xaa\x90\x72\x1e\x8a\x36\x6f\xa9\xd1\xd9\x3e\x9c\x3a\xbf\xa5\xd9\xed\x5b\xaa\xda\xb3\x38\x47\x5b\x2f\x38\xc4\x5b\x99\xbf\x7d\x45\x1b\x9a\xc0\x2b\x43\x2c\x43\xf0\x19\x8d\x27\x88\x14\x66\x1c\x32\x33\x24\x15\x4a\xe6\xba\xc4\x9d\x99\x39\xc5\xcf\x5e\x9a\x5f\xc8\x92\xdd\xd3\x98\x45\x7c\x55\xb6\xe4\x33\x08\x14\xc4\x13\x4d\x12\x46\x95\x26\x5f\xe2\x98\x8a\xe9\x23\x70\x71\x98\x23\x45\x86\x1a\x25\x54\x2d\x5d\x14\xdf\xc6\x62\xe0\xca\xad\x22\xac\x0b\xb8\xa8\x1f\x70\x60\x41\x4c\x78\xe5\x18\xef\xe7\xf3\xe7\xf0\x09\x9d\xe2\xc3\xbb\x94\x97\xa7\x73\x79\x3a\xb9\xb2\x6e\xb8\x42\x68\x47\xbe\xfc\xc0\xe3\x1e\x4b\xa5\xbf\xcf\xb8\x66\x10\xe0\xb3\x37\xe9\x0f\xbf\xbe\x2d\x19\x42\xb8\x5b\x2d\x95\x30\x92\x5d\x6c\x4e\x86\x92\x3b\x33\xd4\x6e\x2e\x52\x51\xbb\x2e\x5a\xb2\x18\x23\x08\x21\xa9\x37\xa3\x24\x63\xe1\x48\xbe\x19\x2a\x61\x45\x29\x03\x4c\x94\xc5\xac\x7c\x98\xe4\x8e\x22\x67\x8f\x12\x39\x9b\xb1\x0c\xd5\x0b\x2a\x2a\x74\x28\x68\xa8\xf6\x53\x35\x20\xab\x4c\x46\x51\x9e\x19\x86\xe4\xde\xa6\x69\x9a\x70\x27\x9a\xf8\xb8\x52\x98\x0c\x6b\x74\xa7\x94\x45\x7a\x97\x52\x0e\x3f\x28\xaf\xc9\x0d\xb5\xbf\xc8\x1f\x7c\xef\x01\x2a\xa1\xd5\x03\x5c\x6a\x28\xa8\xbe\x36\xa4\xd4\x3b\xe2\x66\xf1\xbf\x0e\x6f\x2a\x8e\xe0\x7d\xc4\xff\x70\xdd\x72\x58\x5b\xa1\x10\xa0\x8d\x42\x7b\x22\x34\xf2\x49\xae\xac\x71\xca\x48\xd4\x20\x5c\x80\xc5\xa2\xc6\x42\x64\xa3\xfb\x71\xd0\x42\x69\x55\xe0\xeb\x04\x2b\x0b\xcd\xc0\x59\x6b\xc6\xa6\x36\x61\xc6\xc6\xf6\xcd\xf2\x45\x2d\x23\x34\xf8\x3b\xe7\xf7\xe8\xd7\xb1\xcf\xbb\xe2\x9f\x9f\x0f\x5f\xbc\x28\x0c\x82\x86\xfb\xa2\x61\x6f\x6d\xbe\x37\x0c\x69\x91\x31\x5a\x13\x61\xbd\xb1\xc2\xb1\x0b\x50\x2e\x82\x8b\xb5\x3c\x22\x94\x2c\xbd\xa4\x3d\x4c\xa7\xae\xe6\xe8\x85\x86\x84\xb4\xbd\x0a\x12\x3f\x44\x97\x5a\xbf\xb2\x5e\xa4\x7d\xf5\xf5\xdb\x7c\xc6\xa0\x57\xa0\xcc\xf4\x35\xa4\x32\xb5\xe2\xfe\x5f\x76\x5e\xb1\x3d\x87\x9d\x95\x19\x9c\x0b\x7e\x5e\x54\x4d\x69\x74\x9b\xb7\x4e\xca\xac\xf5\x21\xb9\x12\x98\xe9\x04\x39\xa8\x28\x13\xa0\x67\xca\x4f\x6f\xad\x2f\xc7\x0a\x5c\x88\xa7\x6b\x65\xb3\x04\x11\xf4\x39\xca\x4c\x4c\x31\xb7\x2c\x38\x3b\xb4\x8e\x97\x15\x06\x9a\x62\x9f\x6d\xcc\x81\x7f\x50\x9f\x41\xa6\xd2\x67\x2f\xff\xf8\xea\x8f\xc1\x84\xbe\x7a\x3f\x78\x5d\xba\x5e\x87\x84\xbd\xf6\x94\xbd\xb6\x1c\xa9\xfd\xb3\xa4\x1a\xbd\xba\x89\x5c\x40\xaa\xa5\x51\x3f\x05\x5d\xb1\x6b\xb6\x60\xad\xf6\xd8\x37\xa1\x97\xfc\x1c\x0a\x43\x34\x6d\xf4\x67\x64\xb0\xc3\x88\xc3\x35\x64\x0e\x03\x41\x79\x46\x60\x44\x48\x32\xc5\xc6\xe9\x98\x5f\x16\x23\x0d\xb0\xf9\xa7\x0e\xc3\x20\xf9\xb3\x2e\x7e\x04\x26\xb3\x6e\x5f\xb0\xfc\x03\xd1\x2d\x0b\xd7\x2c\xf8\x9a\x89\x50\xc9\xa1\x22\xa9\x2d\x66\x71\x7d\xe2\xe9\x1c\x24\x12\xe4\x8e\xc0\x0c\x11\x1f\xed\xf2\x21\x1f\x0c\x56\xba\x1f\x0d\x48\xe4\xa2\xb3\xd9\xe0\x4d\xf9\xac\xe3\x58\xf3\x3c\x49\x40\x7d\x76\xf2\x05\xde\x9c\x44\x2e\x1c\x87\x08\x6d\x05\x44\x46\x8f\x6f\x80\xd6\x92\x48\x28\x1e\x55\x51\xc3\xd7\x34\x3b\x4e\xe4\xe2\xd8\x17\xf6\x87\x89\x0c\x16\x34\x6b\xd9\x65\x47\x8b\xff\x1b\xf7\x64\x69\x0f\x59\x54\x0c\xfc\x1e\x69\x00\xdd\x36\x33\x9a\x6b\xdd\x95\x7a\x73\xf5\xda\xf1\xcb\xaa\x11\x3a\x92\x03\xcc\x6c\x78\xc0\x4e\x6e\xd8\x9a\x65\x5c\x6f\xcc\x59\x74\xd9\x8f\xff\xbc\xbf\x2b\x65\xbf\x27\x74\x26\x41\x53\x37\xb7\xc7\xa0\x50\x90\xf6\x64\x0c\xcb\x5d\xb8\x5a\xa4\x72\x61\x2d\x3f\xe5\xc6\x46\x62\x2e\x3f\x60\x3f\x37\x51\xc6\x58\x7b\x3a\xd5\x9b\xed\x37\x1e\x6d\x4f\x4a\xc7\x32\xd7\x8f\xb9\xa3\x4d\x3b\x5b\x7c\x53\x79\xfc\xf1\xf6\xb2\x51\xde\x25\x24\x97\xd2\x56\x1f\x10\xd2\x5d\x34\x60\x66\xf6\xa9\x46\x2b\xed\x43\x80\xb0\xa2\xf7\x60\xde\xbe\xe1\xff\x0c\xe1\x68\x23\xb7\x72\x55\x48\x4f\xe3\x38\xa4\x80\x55\xc1\xf7\xd6\x7b\xd8\x01\xcf\x6f\x04\x9c\x91\x58\xae\x28\x17\xe8\xa9\xab\xcf\x80\x75\x7d\x3e\x21\x6d\x8a\x0a\x42\x85\x32\x32\xe8\x77\x6f\xc9\x3f\x72\x96\x19\x5a\x6b\xa0\x17\x25\x32\x8f\x07\x5c\x70\x5d\xac\x12\x8a\xba\x16\x2e\xaa\x70\x14\xdc\x12\x8c\x5c\x19\x9a\xc5\xe2\x22\xcb\x6a\x45\xa3\x25\x17\xac\xb0\xb2\x08\xb9\xa6\x03\x9a\x72\xf2\x54\x66\xd0\xf2\x73\x96\x0b\x9d\x07\x87\x74\x8f\x0e\xdc\x32\x9e\x0d\xc9\xa9\x8b\x2d\x9c\x23\x81\x7d\x1a\x51\xc5\x20\x4f\x4c\x28\xae\xf9\x9a\x3d\x23\x2b\x46\x45\xbd\x19\xa8\xe2\xc3\x87\x50\x4a\xa6\x49\x9e\x82\x22\x7f\x79\x3a\xc1\x6c\x60\x67\xd5\x72\x13\x03\xf5\x6f\xc1\xa0\x17\x2f\xff\x38\x7c\x3e\x7c\x3e\x7c\xb1\x37\x1a\xd9\x49\x6a\x62\x22\xc2\xa8\xe0\x82\x03\x41\xa3\x32\x7f\x5b\x7b\x53\xb1\x62\x3c\x6b\x8c\x4f\xa9\xa9\x05\xb9\x9a\x41\x4e\x3c\x30\x73\x6c\xf8\x3b\xac\x60\xda\x53\x3e\x07\x08\x1d\x1e\x9a\x9b\x75\x78\xf8\xec\xc8\x0b\x2e\xab\x51\x82\x00\x94\x05\x20\x8f\xd0\xbf\xfb\xe2\xd5\x57\xc3\x97\x5f\x7c\x3e\xb4\xff\x3d\xf9\x12\x14\x2a\x7f\xae\x13\x7f\x5f\x41\xe5\x79\x24\x20\xd7\x9f\x98\xf3\xb6\x5d\x9f\xbc\x43\x74\x16\xf9\x19\x73\xcd\xa3\x3d\x02\xf7\xe5\x1f\xff\xf8\x45\x43\x59\x89\xba\x1b\xaa\xf3\x7d\xca\x2f\xbe\x9d\xbc\xfb\x14\xa5\x17\xc1\xe3\x59\xb1\x4e\xd0\x24\x82\xf4\xdf\xc2\xdc\x18\xf6\x0b\xbc\x9d\xbc\xab\x16\x8b\x28\x0b\x0e\x36\x15\x1b\xfc\xb0\xca\x82\x82\x6a\x67\x74\xea\x98\x39\xe7\x99\xa9\xec\x1b\x9e\x3b\xcb\x90\xac\x6a\x1a\x1d\x48\x27\x36\x6c\xaa\xae\xa2\x04\x8a\xca\x06\x25\xe1\x5a\xbb\x8a\x58\x82\x50\x7f\x7d\x24\x95\x32\x29\x4a\xc2\xb5\x64\xd0\x15\xe5\xa5\xb6\xd2\xf2\xfc\xec\x39\xc0\x80\x72\xc1\xd6\x9c\x53\x80\x38\x4c\x43\x2b\xc5\xc0\xdc\x22\xa4\x20\x4f\x39\x04\x8e\x39\x65\xad\x34\xf3\xbc\x3d\xbd\xf9\x3f\xef\x2e\xae\x4f\xcf\x2f\x88\xa6\xd9\x82\xe9\x40\x31\xb3\x96\x13\x2a\x74\xd5\x7f\x5b\xf1\x14\x5b\x36\x05\x16\xe1\x1d\x77\x59\x3f\xc5\x2a\xce\xaa\x38\x1f\x03\xe0\x3a\x77\x04\x06\x39\x53\xc8\xf1\x47\x04\x89\xe1\x80\x8b\x2c\x84\xcb\xd3\x89\x35\xfd\xe7\xc2\xc5\x65\x34\x54\x77\x98\xb1\x25\x5d\x73\x99\x39\x12\xeb\xe2\x09\x15\x86\x6b\xd4\xe6\x4a\x3e\x6e\x39\x0e\xc1\x74\xc2\x45\x83\x7f\xa7\x09\xde\x10\x89\x6f\x96\x7b\xcd\x16\x5d\xb2\xf9\xaf\xaa\xcf\x3b\x46\xe3\x89\x17\x86\xb4\x15\xe4\xcc\xf0\xc7\x4c\x73\x43\x87\x82\x6a\x39\x52\xb0\x19\x4b\xa4\x58\x60\xd9\xf8\x91\xb9\x7d\x10\x4d\x36\xb0\x03\xa1\xed\xed\xb8\x8c\x83\x89\x59\x9a\xc8\xcd\x8a\x09\x5d\x2f\x6f\xb8\x50\xf6\xb2\x09\x3e\x64\xc4\x2f\xe5\x1d\x60\x02\x54\x0f\xc6\xc9\x9f\x62\x21\x9d\xd2\x78\xb8\x92\x31\x4b\x82\x23\xa3\x5c\x82\x6a\x58\x34\x87\x86\x74\x58\x2c\xa0\x08\x37\x32\x37\x12\xc6\x8e\xe4\x2a\xcd\x6d\x15\xbc\x67\xb6\x2b\x41\x1e\x8e\x77\x2b\x55\xe4\x1f\x50\x37\xfa\x7b\x79\x2a\xef\x2d\x0c\x50\xb4\xf1\x36\x63\x44\x3a\x96\xeb\x4c\x8a\xa1\xf9\x36\xb8\x5a\xbb\x14\x2c\xc4\x57\x32\xbd\x8b\x55\xaa\x37\xfb\x8a\x22\x98\x50\x03\x75\xc2\xa8\x5e\x76\xd4\x26\xc7\x81\x97\xfc\x28\xf4\xd9\xc6\x35\x92\x81\x26\x33\xab\x5c\x40\xc3\xc0\xa0\x75\x06\x0b\x88\x20\x0b\xc7\x1c\x11\x57\x80\xd3\x15\x72\x3c\x22\x09\xbf\x65\xe4\xd4\xb3\x94\x27\x74\xc3\xb2\x6e\x09\xef\x0f\x83\x4a\x26\x57\x4c\x2f\x59\xae\x5e\xcb\xb7\x4c\x67\x3c\xea\x5a\xfb\xef\x70\x5c\xfb\xaa\xb3\x0b\x28\xf2\x5a\x1a\xe1\x18\xbc\xae\x2b\x7c\x24\x2c\xae\x25\x09\x06\xe9\xbb\xc0\x4e\x83\x4b\xe5\xf8\xae\x42\x29\xe4\xcb\x94\xa9\xf1\x47\x48\x01\x15\x0b\x22\xa5\x96\x18\x3b\x6c\x25\x03\xb4\xc9\xda\xbb\x8e\x5e\x32\x39\x77\x8b\xb2\xad\xef\x59\x7c\x84\xcf\xd5\xb0\x5b\x6f\x45\x46\xa6\xf8\xe0\x0a\xb7\x25\xf0\x1f\x0c\xfa\x2d\xc0\xbb\x30\xf1\x2d\xf8\x35\xc0\xde\xea\x4d\x5c\x38\x1f\x71\x51\xf7\xd3\x6c\xe9\xc3\x23\xb1\x77\xf6\x58\x13\x57\xdd\xb2\xc1\x6f\xa5\x2a\x74\x02\xf4\x3b\xbb\x3a\x41\xe5\xa3\x41\xd2\x64\x0f\xd8\x6e\xd3\x15\x13\xe3\x22\x06\x5a\x5d\xee\x8e\x7d\xd8\xed\xb1\xcb\xec\xa4\xe7\xec\x6c\xce\x57\x78\x5c\x32\xe2\xa3\x6f\xf0\xab\xe7\x5f\x35\xa8\x6f\x35\xc2\x4e\xb9\xc1\x31\xba\x9c\x1e\x8c\xa8\xc1\xf7\x4b\x42\xe1\x02\xda\x7a\x2a\xd1\x70\x83\xbe\xe7\x19\x7b\x9d\xd3\x2c\x7e\xf0\x29\xd4\x8c\x50\x9e\xc3\x1d\x37\x7a\x1d\xcd\x82\x12\xa8\x83\xc3\x43\x4f\x22\xac\x12\xe2\xe1\x3c\xf0\x24\xc2\xce\x55\x3c\x9c\x47\x3f\x89\x8c\xad\xe4\x9a\xb9\x0a\x18\xd8\xce\xbd\x0d\xf8\xdf\x57\x73\x98\x6c\xb1\xe5\x35\xb3\x11\xae\xae\xf7\xbb\xad\xc8\xbf\x66\x75\xa1\x5b\x33\xc6\x2a\x65\x55\x9c\xe4\x31\xb4\x49\x49\xa8\xd1\xb9\x52\x31\x98\x30\x5b\x08\x18\x9e\xef\xbd\x2e\x1f\x17\x42\x88\x68\x1c\x57\xd7\x55\xe6\x1f\xbb\x12\xb1\x5e\x65\x1a\x5b\xb0\x83\xd1\xf0\xa0\x77\x0c\xd7\x62\xf7\xeb\x16\x93\x6c\x6c\x4d\x1c\x3b\xc3\xde\x67\x60\x0b\x9e\x74\xf6\xd9\x5f\x6f\xbf\x51\xc9\x02\x30\xff\xde\x09\xd2\xad\xcd\x06\xb7\xb1\x8d\x3a\x57\x65\xa8\x53\xd9\x91\x50\x66\x15\x77\xfa\x90\xbc\xb5\x32\xbc\x90\x62\xf0\x4f\x96\x05\x0d\x4b\xdc\xb3\x3e\x7a\x8a\x81\xaa\xba\x1c\xf7\xf6\x0d\x17\x70\x9a\x4c\xde\x74\x07\xd1\x64\xf2\xc6\x0f\x95\x1b\x68\x39\x48\xf8\x9a\x15\x11\xe6\xa0\x83\x22\xa9\x1e\xdc\xd5\x74\x81\xb0\xf0\xb1\x50\xac\xb2\xa0\xfd\xb7\x61\x90\x64\xdf\x28\x8d\xeb\xc0\x4b\x1f\x10\x97\x5d\x54\x75\xda\x3f\x42\x83\x2c\x69\xd8\xda\xff\xd0\x08\x0d\xac\x2e\xe5\x82\x31\x9a\x15\x82\x87\x82\x1b\xcb\x41\x75\x83\xf2\x8d\x73\xd6\xfa\x49\x9b\x99\x73\x23\x2e\x18\x86\xb8\x35\x57\xef\x2f\x7b\x3d\x93\x01\x71\x6d\xa9\x46\x63\x75\x82\x66\xb0\x60\xd9\xb9\x48\x0a\xa5\xb3\x3c\xdc\xff\xdc\xd1\xae\x81\x85\xe9\x68\x7c\xfa\xb6\x1a\xb2\x32\x80\xa1\xcd\xf7\x70\x96\x95\x11\xdd\xeb\x0f\x01\x1d\x44\xed\xd5\x19\x9c\x02\x7d\x6a\xcb\x4e\x1a\x34\x76\xb5\xd3\x6c\xb4\x0b\x9e\xb4\x35\x85\x99\x7b\xb7\xa6\x19\x97\x61\x21\xd0\xeb\xd7\x73\x5d\x5d\xc6\x96\xc9\x09\x3a\xda\x97\xed\xda\xfc\x39\xc2\x98\x5f\x36\x9f\xb1\x92\x65\xae\x42\x6d\x33\x5a\x32\xea\x57\x34\xa4\x6a\x93\x2e\xe9\xf0\x2b\x1e\x32\xe9\x74\x78\xb5\x21\x09\x7e\x60\x16\x14\xfc\x3a\x14\xd1\xde\x94\xf8\x6e\x35\xf7\x37\x52\xa6\x63\xac\x8f\xda\xc5\x04\xf5\x3d\xca\x3c\x18\x05\x03\xce\xae\xb5\x01\x9e\x62\x60\x80\x29\x99\xed\x91\x2b\xba\xda\x74\x7f\x12\x29\x53\xe5\xb5\x83\x20\xa3\xb1\x15\x27\x68\xc6\x6c\x98\xbe\x39\x35\x2c\x2a\x67\xeb\x83\x12\xc8\x41\x34\x3b\xaa\x8d\x25\xb1\xf5\x04\x31\x7f\xb8\xa8\x52\x71\x7e\x79\x3a\x39\x3c\x8c\xb7\xd3\x2c\xdf\x89\x04\xcc\xd9\x45\xbb\x06\x97\x28\x7d\x10\x94\xd0\xb8\x70\xd1\xa6\x54\x31\x6c\xc9\x6b\x77\x68\xb7\x13\x49\xa1\xb9\xc0\x68\xaa\x99\x2d\x5a\x54\x29\xb6\x1a\x1a\xf5\x21\x15\xff\x14\x8f\x59\x44\xb3\xd3\x28\x62\x09\xc3\xcc\xb4\xae\x52\xf5\x4d\xed\xab\x85\x1a\xce\xee\x0d\xbb\x59\x01\xa1\x77\x53\xd5\xb0\x83\x62\x8c\x0f\xd6\xb8\x21\xb2\xac\x43\x5d\xb8\xea\x6e\xde\x85\xde\x72\x4c\x9c\x50\x21\xc5\x66\x25\x73\x57\xfd\xd7\x05\xd5\x05\x1d\x08\x28\xad\xfb\x8d\x48\x14\xff\x27\xb3\x35\x10\xab\x9d\x71\x87\xe4\x8d\x5c\x28\x72\x47\x33\xc1\xc5\xc2\x08\x0d\x3a\xcf\x44\xd8\xfe\x3d\x83\x34\x39\x5b\xef\xde\xb9\x00\xbd\x0c\x46\xa8\x4b\x43\x2b\xcd\xa2\x8b\x6a\x3a\xeb\x3c\x11\x2c\xa3\x58\xc0\x26\x34\xf8\x92\x2a\x14\xb1\x63\xae\x22\xb9\x66\x59\x19\x3e\xb4\xdb\x3c\x1c\x8b\x1d\xe7\xaa\x15\x23\x1f\xa4\x65\x54\xcf\x6f\x24\xb8\xe6\x34\xa9\xab\x11\xd8\x74\x88\xfe\xab\xd5\x8a\xfc\xae\xe9\x41\x6c\x7e\x0a\x6b\x1b\x73\x59\x70\xf1\x15\xbd\x65\xe8\xf1\x33\x03\x6f\x85\xc2\xed\x2d\x62\x6c\x6f\xaf\xa3\x4c\xb7\xbd\x35\x2b\xd5\x55\xb6\xb5\x23\xd0\xd7\x1b\xec\x71\x4f\x01\x19\xf5\xcb\x57\x9f\x3f\x68\x53\x98\xe6\x23\x68\x72\xde\xb1\x9e\x73\x5d\x73\xf0\xfb\x84\x36\x90\xa0\xf6\x77\xbb\x64\x61\x42\xbf\xce\xdf\x5e\x1a\x26\xac\xff\x21\xe5\x13\xe0\xc5\xef\x2e\x47\xfb\xbe\x57\x58\x3b\xba\x52\xc9\xef\xb7\x5e\xd8\xad\x04\x5f\x3c\xe1\xf1\xf1\x8f\xd2\x67\xac\x58\xfb\xb7\x52\xe9\x0b\x11\x65\x9b\x74\x1f\xee\xf5\x7d\xe3\xeb\x0d\xfb\x0a\x52\x4f\xa9\xb4\xd1\x15\x6d\xb2\xbb\x1b\xcc\x07\xc1\xe3\xed\xb7\x48\xf1\xb8\xa4\xab\x76\x2d\xe5\xfb\xe0\x6b\x5b\x62\x31\x38\xff\xac\xdb\xbd\x26\x68\xd9\x3c\xe6\x9d\xad\x1b\xcc\xdf\xd7\xdd\x62\x68\xdd\x5f\x7b\x52\x8f\x62\x6b\x6f\xb8\xd2\xcc\x70\xc2\x4e\x76\xe4\xef\x83\xaf\x6d\xf5\x5e\x71\x3f\xa1\x51\xb9\xce\xb7\x3c\xdb\x94\x9b\xab\xa4\xec\xbd\xf8\xf2\xe5\xfe\xf7\xb8\xd8\x4f\x17\x5a\xf4\xbd\xf7\x70\x75\xed\xe6\x0b\x4b\x8e\x42\x90\x0f\xed\xe3\x86\xb1\x46\xa2\xf4\x21\x9b\xb9\x46\x09\xf5\x3a\x4f\xd8\x38\xe3\xd2\xc8\x15\xdd\x37\x17\x78\xb9\xba\xd9\xd4\x7d\x5b\x5b\x8a\xae\xc4\xcf\x2d\x90\x38\xd1\x39\xcb\xab\xe1\x9c\xe1\x4e\x1a\x8d\x9b\xbd\x8f\x3b\x37\xbf\x0a\x14\x27\xfa\xeb\xf9\xb8\x2a\xca\x9a\xb5\xaa\x9c\x6b\xdb\xda\x12\x4a\x27\x87\x11\xb0\x28\x45\x1b\x33\xb1\xd9\x0d\xb9\x7d\x90\x20\x75\x1f\xa7\xfb\x5a\x8e\xfe\x7a\x3e\x7e\xdc\x7c\x7e\xa8\xd3\xf4\xa0\x54\x7e\x6b\x16\x0a\xb2\xdd\xdd\x26\x9e\x32\xb3\x9d\x6b\xb1\xac\x3b\xd8\x14\xc2\x16\xa4\xbf\x9e\x07\x93\x7c\x76\x13\xfe\xf7\xb7\x1f\x85\x35\xe5\xdd\x6f\x41\x78\x8f\xfd\x58\x10\xa5\x65\x46\x17\xcc\x7d\x85\x26\x44\x38\x2d\x57\xc1\xd9\x50\x6d\x67\x5c\xb8\xe5\x22\x3e\x21\xd3\x03\x57\x0a\x3f\x4d\xf2\x8c\x26\xe5\x37\x45\x21\x7a\x75\x42\x7e\xf8\xbb\xf9\x06\xec\xb3\xf1\x77\x28\xc9\xdb\x6f\xa7\x62\x30\x18\x4c\x05\x4d\xb9\xfd\xfe\x84\xd0\x94\xb3\x7b\xcd\x04\x56\xea\xb1\x7d\xfc\xd7\x2f\xa6\x02\x67\x3c\xcb\x95\x96\xab\x6b\x86\x61\x57\xe7\x6c\xce\x05\xc7\x5a\x26\x95\xc6\xfb\x86\x9b\x9c\xd8\xa8\x43\x1b\x50\x03\x0e\x7c\xce\xd4\x30\xca\xe2\xe1\x8e\x16\x34\x15\x45\x27\xfe\x45\x26\xf3\xf4\x84\xd4\x3c\x86\x63\x57\xc1\xf0\x1a\xe6\xb9\xc4\x79\x30\x5e\x01\x7f\x36\xa4\xff\x2f\x75\x8f\xbc\x29\x4a\x17\x39\xe0\x05\xd7\x6b\x4f\x87\x0b\x88\xf5\x0b\x3d\x04\x93\xa9\x48\x9a\x33\x3e\x43\x75\xcf\x7c\xb3\x76\xa0\x36\xff\x18\x58\x90\x18\x48\xc2\x78\xd1\x92\xad\x68\x71\x19\x65\xca\xc4\xe9\x78\xf4\xdd\x67\x37\xd5\xef\x6b\xcd\x4a\xde\x91\x55\x11\x70\xab\xed\xfd\x78\x64\x1f\xab\x14\xe8\xb7\x4b\x63\xb1\x5d\x07\x1a\xc3\xc0\xe5\x94\x66\x4c\x99\xeb\x17\x2a\x50\x23\xe7\x84\x0a\x8b\xc6\xe6\x66\x19\xfd\xb3\x08\x38\x8c\xa4\x58\xb3\x0c\x4b\xa2\x2d\x04\xff\x67\x31\x78\x11\x2b\x9c\x50\xcd\x76\xa3\x67\x5c\xe1\x2a\xbf\x64\xce\x8a\x6e\xac\x6d\x86\xe4\xc2\x1b\x10\x73\xf5\x87\xe4\xad\x84\x68\x9f\xb9\x3c\x21\x4b\xad\x53\x75\x72\x7c\xbc\xe0\xda\x61\xab\x8d\x42\xd1\x9b\x63\x60\x2f\x7c\x96\x6b\x99\xa9\xe3\x98\xad\x59\x72\xac\xf8\x62\x40\xb3\x68\xc9\x35\x8b\x74\x9e\xb1\x63\x9a\xf2\x01\xac\x5d\x60\xa7\xf0\x55\xfc\x24\xb3\xe8\xad\x0e\x43\x97\x7b\xf7\xda\x03\x16\x36\x1d\x83\xc1\x41\xdb\xe6\x0b\x5e\xb6\xa1\x40\x05\xb4\x5d\xe5\x9a\xeb\x8b\x9b\x09\x71\xb3\x07\xf3\xd2\x11\xf8\xe5\x9b\xaa\x3c\x07\x03\x34\x2e\xe6\xcc\x66\x22\x16\xad\x3c\xcb\xc6\x20\xd0\x3b\x95\xb3\xdd\x22\x4c\x2a\x9f\xad\xc0\x46\x8d\x7d\x45\x31\x88\xeb\x0c\x1b\x22\xcf\x98\xed\x05\x18\x43\x5c\xd7\x19\x5d\xb1\xe4\x8c\x2a\xf6\xd1\x4f\xc1\x40\x5b\x0d\x0c\x6c\xbb\x9e\x43\x85\x04\x6d\x3f\xbe\x6b\xbd\x2c\x28\x4e\xf9\x69\x30\xe2\xd2\x34\x4d\x36\x57\xe2\x1b\x6c\x1a\xdb\xc6\x46\x4f\x2b\x4f\xa3\xd1\xd9\xf5\x53\x84\x91\xd0\xf8\x5c\xb6\x51\xe1\xae\xa7\x47\x88\x33\xa1\x1c\x01\x23\xb9\x6c\xbc\x3d\x05\x81\x58\x5e\x4a\x3d\x31\xc2\x47\xdb\xca\xcf\x8b\x27\xbd\x55\x3b\x15\xc8\xd9\x44\x21\xdc\x0d\x5d\xa1\xc5\x3e\x6a\xac\x9c\xde\xd6\x1c\xa9\x58\xc8\xb2\x21\x95\x75\x25\x11\xb0\x17\x1c\x2a\xbf\x2b\x32\xc8\x4a\x5c\x2c\x82\xf6\x53\xb0\x98\x52\x65\x3d\x05\x91\xeb\x4a\x81\x6d\x7b\x27\x99\xab\x4f\x17\x82\x30\xa1\xe1\x3a\xa9\x98\x91\x16\x3b\xcb\x0f\x15\x1b\x6f\x69\xc1\x85\x61\xd5\x5d\x0b\x13\x6b\xa1\xad\xb5\xdb\x55\xe6\x87\x7a\x02\x0c\x0a\x1c\x5b\x9f\xf8\x8c\x11\x2b\x1c\xee\x7b\xb6\xd8\x12\xa6\xbd\x69\x09\xc3\xb0\x72\xec\xb9\x09\xbd\x29\xb0\x97\x8c\x15\x35\xc9\x05\x8d\x96\x98\x20\x61\x6b\x51\x84\x45\x3a\xf7\x36\xee\xdb\x46\x3e\x46\x19\xd7\x2c\xe3\x14\xeb\xe2\x79\x99\x22\x50\x38\xd0\x82\xcd\xa2\xfe\x5e\x9d\x27\x2a\x7b\x98\x1e\x9c\x12\xa3\x3f\x18\x05\x9b\xa6\x0a\x02\xe3\x55\xb9\xa2\xd0\x52\x82\xd2\x23\x29\xda\x2e\x61\xdf\x3e\x2c\x45\x21\xb3\xc1\x8c\x2a\x00\x8f\xb5\x99\x8e\xed\x79\x09\xff\x3b\x6c\x0e\x16\x84\x0d\xc8\x90\x2c\x63\x22\x72\x98\x37\xf0\x4a\xea\xca\x5c\x63\x72\xb7\xcb\x16\xb6\xcd\xe3\x64\x06\x0d\xa5\x5d\x53\xe4\x9a\x05\x8b\xb8\xe8\xfd\xe3\x01\x1e\xb2\x0d\xa7\x53\x81\x87\x97\x4a\xcc\x92\xd9\x86\x44\x8d\x0b\xd6\x1c\xa6\x60\x0b\x58\x9c\x15\x09\x8e\x6c\xa2\xa0\x4b\x1c\xf9\xf5\xe7\x5f\x2e\xa5\xfe\xf5\xe7\x5f\x86\xe4\x34\x49\x6c\xca\x8f\x3f\x76\x78\x5c\xdb\x94\xd2\x76\xdf\x2b\x4a\x52\x53\xcd\x15\x94\x1c\xc6\x9c\x76\xbb\x11\x2d\x71\xcc\x21\x39\xb5\x15\x26\x6b\x60\x0b\xa8\x49\x85\x43\x4f\x9b\x1d\x63\xb7\x6c\x00\x04\x9b\x31\xff\xf0\x0c\xd6\x14\x07\xaf\x87\x2a\xc0\x3e\xbc\x44\x47\x41\xca\x25\xd6\xb4\x9e\x6a\xab\xa6\x4d\xeb\x2a\xaf\xe0\xa7\xbd\xa0\x76\xcc\x94\xb6\x55\xc2\x6b\x47\xa9\x92\xf1\xf2\x85\xe2\x3a\x07\x8e\xcf\xba\xc9\xcc\xb5\xac\x1b\x16\xd4\x6e\x6f\x7e\x62\x78\xb4\x0e\x87\xe2\x76\x02\x06\x21\x56\x88\x4f\x69\xc4\x6e\xec\xd5\x6b\x78\x76\x87\x08\x5c\x6e\xbf\x6c\x93\x31\x64\x6a\xdd\xc7\x73\xce\x92\xb8\x36\x47\xac\xfc\x14\x80\xa1\x05\x09\xf0\x92\x79\x6c\xc2\x74\xa5\x67\x9d\xcc\xf8\xc2\xc0\xa1\xee\xfe\xbb\x0f\x48\x5f\x4f\x0d\x0a\xb1\x6c\x85\x2f\x10\xaa\x9f\x79\x1e\x7c\xaf\x6f\x2b\xce\x1d\x66\x1d\x01\x90\x95\xbd\xb0\x2c\x1b\xb6\xe9\x0e\x80\xc8\x3b\xb0\x69\x1e\x14\x69\x24\xaa\xe1\x05\x08\x0c\x7f\x72\x2d\x55\x5d\x9d\x12\xba\x62\x36\xe7\x4b\x2f\xc3\x2a\x79\xf9\x81\xfc\xee\x50\xd0\x82\x73\xc9\x7a\xe2\xc3\xcc\xa7\xbf\x2d\x40\x75\xdb\x76\xf0\xf2\xc5\x0f\xa4\x82\xdf\xc8\x8c\x54\x94\xbc\xa3\x5a\x0e\xe0\x3e\x58\x31\x3c\x80\x52\x2b\x9b\x9f\xee\x82\x50\x7d\x64\x4b\xf8\x8a\xb7\x1e\x18\xb8\x13\x12\x74\x30\xd7\xc2\x84\x7b\xf0\x2d\x4e\xb8\xe5\xcc\xf0\x22\x57\xf6\x59\xbb\xfd\x43\xd4\x57\x9f\x3e\x0b\x96\xbe\x2d\x3f\x9f\x06\x00\x15\x35\xfc\xc6\x70\xed\x8c\xa0\xf5\x1d\xe1\x01\xdb\x68\x1e\xd4\xec\x31\xa0\xcd\x1f\x41\xe9\x9f\xe6\xb3\x6c\x59\xad\xbf\x45\xaf\x3a\x41\xa8\xe0\x6d\x94\x49\x05\x12\x5f\xd7\x2b\x5b\xc3\x38\x8a\xb9\x5b\x19\x00\xc1\x24\xa1\x26\x9a\xba\x9d\x76\xc5\x6c\xa7\x97\x20\x61\x34\x6a\xa6\xce\x78\xa4\x6b\xdb\xc2\x97\x1f\xc7\x02\x8b\xba\x0d\x1b\x0c\x8e\x0f\xd2\xc5\x82\xf4\xb5\x40\xbb\x4a\x17\xfd\x4a\xf5\x90\xbc\x27\x8a\x1a\x6b\x58\x73\x42\xe5\x33\xb3\xfd\x5a\xae\x43\x1a\xa5\x48\x6f\xde\x4e\x90\x6e\xac\xfb\x51\x7e\x84\xd4\x97\xfb\x9d\x09\xbe\x50\x64\x5c\x55\x85\x2f\xb7\xe3\xcb\x9a\x6e\x91\xe5\x07\xce\xf1\x37\x07\x8b\xba\xb6\x44\xe5\x67\x1b\x18\x45\x3b\xa2\x06\x68\x8c\xeb\x22\x51\xcb\x0f\x82\x83\xdc\x40\x05\x7e\xc0\x52\xe8\x9c\xea\x7a\x79\x28\x0c\x2b\xb6\x0d\x6f\xa0\x20\xd7\xa6\xbe\xdd\x51\xf9\xd9\x6a\x93\xa1\xab\x15\x01\x8b\xd6\x2b\x28\x51\x59\x42\x6e\xd4\x93\x56\xaa\x08\x3c\xcc\xc6\x09\x4d\xce\xc6\xae\xb9\xc5\xbb\xf3\x71\x4d\x13\x0c\xf7\xe9\x72\xaa\xf5\x25\x76\xca\x4f\x87\x62\x3b\xbb\x0f\xb7\x23\x4a\x7b\x01\x9e\xf2\xb3\x7f\x29\x9e\xf2\xd3\x15\x21\xf7\x17\x2e\x2f\xcb\x97\x5a\xd0\xb2\x9b\x7c\x65\x31\x13\xbc\x72\xc5\xc0\x48\x85\xd1\x33\x34\xd3\x09\xd3\xbc\x28\xba\x83\x73\x35\x8f\x59\x48\x4b\x8d\xa8\xd2\xed\xcc\xd2\xfd\xae\xec\xf4\xa0\x6c\x20\xd6\xc2\x56\xda\x99\x6d\x07\xb6\x02\x1e\x21\x97\xe3\xfd\xd4\x53\x42\x02\x79\xd0\xdb\xdb\xf2\x6a\x17\x31\x45\x6c\x85\x47\xbf\x14\xd6\xb1\x33\x27\x4f\x8a\xca\x6d\xcd\xa3\x56\xda\xa6\xd9\xab\x03\x7e\x27\x84\xb2\x72\x10\xb0\xb6\x59\x3b\x4d\x8b\xac\x3c\x77\xf5\xbf\x8c\x00\xd7\x95\x82\xb5\x52\x00\x9b\x50\xbd\x0f\x05\x6b\xd9\x7b\x49\xde\xaa\x14\xec\xd7\x9f\x7f\x99\x9c\x8d\x7f\xfd\xf9\x17\x03\x88\x5f\x7f\xfe\xe5\xdd\xb9\xf9\x47\x8b\xbc\xd3\xd3\x31\xf8\x74\xa2\x63\xea\x01\x1a\x72\xbb\x62\xdc\x68\xe3\x2b\x3f\x41\xc5\x98\x3c\x55\x8c\x39\xe3\x18\x90\x31\xac\x69\xad\x36\x42\xd3\xfb\x50\x15\x09\xff\x33\x9d\x36\xea\xd5\x56\x7e\xac\xd3\x9b\x9b\xc7\x76\x36\x31\x4f\xad\x96\xd9\xae\xba\x6c\xae\xda\xa5\xd4\xe8\x87\x3e\xa9\x29\xe2\xed\x01\xc1\x06\xa6\x3b\x47\x56\x0b\x47\x40\xf0\x78\x9c\xa4\x79\xf4\x19\x4b\xe4\xdd\xb3\xa3\xea\x92\x3d\x60\x23\x54\x5d\x73\x79\xd7\x58\xa5\x45\xf1\x00\x43\x18\x18\x38\x27\x4b\x46\xf4\x9d\x04\x5c\x83\xa8\x77\xf7\x1b\x12\x07\xc3\x80\x36\x65\x1d\xf1\x96\xb3\xbb\x12\x6e\xf7\xb6\xfb\xb5\x67\x78\x65\x9e\x86\x64\x5b\x73\x80\x59\xc1\x3e\xdf\xce\x0f\xee\x96\x32\xb1\x87\x74\x02\x47\x34\x9d\x96\xcc\xf8\xcf\x86\xb6\xfc\x61\x49\xd5\xd3\xd5\xe6\x7d\x42\x67\x2c\x79\x66\x68\x8e\x25\xef\x6d\x97\xd9\x8b\xe4\x36\xbb\x06\x14\xc3\xd5\x61\x20\xc1\xc0\x06\xa2\x24\x2c\x36\xb3\x76\xc4\x36\x3f\x32\xbc\x68\xcb\x0c\x6b\x33\x8b\x75\xeb\x04\xe3\xa9\xdd\x4e\x67\xa4\x80\xed\xd6\xed\x76\x77\x43\x66\x05\x75\x35\xfd\xca\x4f\xf3\x5e\x8b\xed\x34\x6f\xa5\xed\x72\x0b\xc0\x38\x36\x9f\xb3\xc8\x66\xf4\x5a\xf3\x41\x02\x24\xd5\x26\xe7\x55\x3a\xe3\x77\x58\xba\x90\x62\xe0\xb2\x30\xd0\x37\x8b\x59\x36\xd6\x16\x32\x97\xd9\x8a\xf9\x86\x09\x08\xb5\xae\xef\xbb\x5f\x7e\x00\x15\x76\x01\x53\x76\x77\x7a\x0c\xc5\xdd\xe6\x25\x9c\x46\x91\xcc\xc5\x3e\xf2\xd6\x4d\xf5\xc5\x4f\x26\x77\x6d\x91\xe3\xe6\x31\x03\x66\x4e\x4a\x52\x19\x17\x45\xc1\x40\x88\x2b\x48\xb3\x05\x46\x0b\xc9\xc5\x1d\x37\x62\x5b\x27\x43\x33\x21\xd5\x88\x91\xfa\x4f\x55\x0f\x80\xea\x97\x1f\x0c\x6e\xf2\x10\x90\xb7\x0f\x59\x67\x5d\x0e\x80\xbd\x13\xb4\x49\x09\x71\x43\x85\x95\x0d\x07\xe5\x85\x79\xd2\x08\xbd\x2d\x37\xbf\x9b\x50\x47\xf6\x30\x3b\x90\xae\x12\x12\xe9\x2a\x25\x91\xdd\xfb\xd5\x2a\x27\xfd\xe7\x9e\x74\x45\x3f\x2a\x2d\x6d\x48\xf5\x1d\x3c\x87\x64\xd4\xa2\x6d\x98\x4f\xe9\x7a\x00\x8f\xc2\x8d\xef\x49\x28\xf5\x0f\x6d\x1b\x69\xd4\x7a\xe0\xab\x9f\xd3\xcb\xf3\xc3\x9a\xc8\x71\xff\xb3\x9f\x15\xab\xae\x7b\xab\xfb\xb8\x42\x34\xfb\x49\xdb\xf8\xce\x07\x4b\xdb\xf8\x26\xba\x84\x0b\x7a\xe9\x75\x24\x73\x13\x41\x0d\xef\xb2\x49\x74\x07\x6f\x4c\xa3\xb0\xbd\x8d\x5e\x5d\xa5\xed\x80\x0b\xcb\xc1\xef\xa9\x7a\xb6\x2d\x76\xdb\x6e\x68\xa2\xc9\xd3\x48\xc0\x3e\x76\x8c\x0d\xa0\x69\xb4\x2c\x56\x72\xa8\x08\x66\xde\x80\x96\xec\xe0\x1d\x15\x21\x4a\x05\x30\xda\x60\x51\xf5\x66\x99\x9b\xe3\x90\xf5\xc8\x17\xd9\x8f\x76\xbd\x08\x2d\x60\xbe\x64\x46\xec\x75\x06\x5e\x99\x6d\xf3\x6e\x5c\xfa\xd8\xe6\x92\xc5\x85\xf5\xb3\xc5\x43\x69\xf0\xc9\x1c\xa0\xbf\x47\xb4\x15\x15\x50\x90\xc2\x85\x0e\xd8\x50\x8e\x66\x91\x65\x2f\xb6\xb9\x3f\xd7\x0c\xe5\x15\x80\x1b\xbe\xc4\xe3\xf6\xab\x6f\xf7\xe6\xf9\xdd\x1f\x89\x08\x78\x3e\x99\x07\x08\x04\xe6\xb5\xc0\xfe\xf0\xfb\xfa\xc2\xac\xd5\x0f\x52\x59\xbb\x43\xb8\xc9\x09\x9b\x6b\xf4\x5d\x95\x41\x4b\x78\x7b\x3a\x18\x66\x88\x7f\x11\x8b\x18\xa3\x43\x55\xae\xec\x93\x52\xd0\xf6\x67\x96\x5a\xa7\xdd\x62\x18\xbe\x9d\x4c\xc6\xa5\x8f\xbe\x36\x70\xc1\x60\x89\x79\xb4\x7e\xe9\x2e\xae\xf1\xc3\x62\x16\x56\x4c\x2f\x65\xbc\x07\x67\x78\x8b\x2f\x3c\xae\xd4\x8e\x5b\x46\xa2\x8e\xfb\xf6\xc2\x36\xcd\x98\xd8\x89\xc6\xe0\x63\xfb\xa0\x90\x1b\x13\xe3\x28\x6e\xb5\x4f\xd9\x70\x31\x24\xaf\x2f\x26\x47\x64\xfc\x6e\x72\x44\x98\x8e\x86\xcf\xc8\x5b\xdb\x1b\xb6\xc5\xfe\x62\xc7\x30\x7c\xff\xea\xfa\xd0\xa8\x61\x0b\x88\x1c\xfc\x6d\xf9\xaa\x52\xaa\x97\x7b\x9c\xe3\xe1\xd8\x3c\xff\x31\x8e\xb1\xed\x04\xdb\x29\x8a\x7f\x82\xb0\xcc\x61\x71\x54\xb8\x4d\x77\x16\x5d\x0f\x83\x10\x36\x5c\x9c\x90\x01\x61\xf7\x34\xd2\x27\xe4\x78\x2e\x25\xf4\xc5\x87\x6a\x81\xe4\x78\x46\x33\x72\x79\x35\xb9\x38\xc1\x90\x33\x26\x74\xb6\x21\xab\x36\xf1\xfc\xea\xf2\xcd\xdf\x2c\xe5\xdc\x10\xc6\xb1\x1d\x0e\x99\x1e\xc0\x24\xe8\xff\x32\xff\xc4\x59\xa6\x07\x2e\x20\xac\xa6\x8f\x40\xf9\x59\xd3\x84\xc7\xb4\x30\xf2\x61\x33\x1f\x23\x3e\x71\x1d\xaa\x5e\x51\x7e\xba\xe0\x5c\x15\x09\x0c\x88\xa1\x6f\x40\xa5\x62\x2d\x00\xde\x75\x0f\xe8\xc6\xab\x46\x1a\x62\xb5\x67\xcc\x01\xc2\xda\x0f\xe7\x32\x5b\x9d\x38\xb0\x4f\xf3\xe7\xcf\x3f\x8b\xcc\xc0\xf0\x17\x3b\x71\xb5\x86\xba\x18\xbc\x10\xd5\x60\x55\x30\x5c\x02\x2d\xf1\xdd\x11\x96\x43\x0f\x2c\xbc\x3f\x68\x06\x1c\xa3\x25\xbc\xa4\xb3\xd0\x41\x2c\x00\x1e\x57\x8d\x4c\xeb\x6a\x5d\x3e\x7c\xd0\x6e\xea\x44\x27\x82\xd4\x3e\x14\x8f\x56\x1d\x79\xe6\xe8\xec\xed\xb8\x6b\xd4\x07\x10\xa3\xfa\xb5\xfb\x54\x8a\x3a\xac\x8f\x60\xb5\x58\xda\x40\xc6\x40\xa3\x60\xca\xa2\x4b\x4c\x6d\xcb\x7c\xfc\xf8\x0d\xb2\x2a\x32\xad\xed\xb0\x59\xf8\xa4\x70\xd1\xdc\xab\xa8\x61\xe6\x69\x12\x6d\xc1\x87\x6e\x1e\x5a\xbf\x6a\x70\xa3\x77\xc2\x44\xb3\xb5\x3d\xf8\x3c\x48\x26\x52\xf8\x50\x02\xa0\x44\x50\xb5\x75\x1f\x65\x0d\xea\x1f\x1a\x00\x63\x86\x08\x84\xa5\x42\x5d\x32\x1f\x56\x65\x49\x32\x4a\x34\x8b\x96\x82\x47\xb4\x25\x12\x09\xcc\xa2\x68\xf6\xe7\xab\x54\xaa\x32\x78\x0e\x5b\x44\x1d\xaa\xb2\xe8\xf4\x9c\x67\xec\x8e\x26\xe1\xf2\xb9\xe5\x07\xa9\x85\x35\xca\x62\xe9\x6a\x49\x98\x98\x4b\xcc\x5d\xb1\x61\x79\xed\x57\xa3\xd5\x77\x07\x8f\x7d\xf8\x61\x98\x61\x86\xc4\x2f\x97\xd1\xe6\xfa\x2a\x7a\x11\x7c\x89\x71\xdd\xb0\x43\x18\xeb\x22\x5a\x4a\x72\x8d\x4c\x9b\x3c\xe5\x43\x36\x24\x29\x17\x0b\xd5\xec\xfb\xea\xb4\xdf\x0e\xc4\x20\x0d\xa7\x7e\xd5\x00\x64\x34\x76\x29\x60\x1f\x1c\x0c\x56\x31\x6e\xa1\x3c\xee\x43\x79\xec\x3c\x62\xb5\x50\xe8\x00\x81\x9a\x24\x9e\x9a\xcd\xb9\xc6\x02\x5e\x28\x6f\x59\x45\xca\xab\xab\x55\x74\x68\x6b\xde\xdc\x07\x11\x0d\x30\x46\x60\x85\xc1\x46\x74\x2d\x57\x38\xee\xca\x15\xbb\xb2\xa5\x6a\x0e\x52\xb9\x1e\x9b\x7c\x86\xde\xba\x5b\x66\x53\xac\x49\x4a\x79\x56\xdf\x4b\xa3\xfc\x18\x95\xd5\xf6\x55\xf4\x61\x4a\x67\x32\xd7\x1d\x18\xc9\x63\x69\x8e\x42\x6a\x73\xfb\xba\x61\xc6\x25\x3e\xdc\x12\xc5\x03\x8f\x34\x47\xd3\xf5\x0c\xa3\x67\x18\xbf\x6f\x86\x21\xa4\x76\x62\x55\x2d\x58\x9a\xa3\x6d\x3a\xc6\xd9\x74\x8b\xb0\xd9\x09\x02\x75\x22\x5f\x4b\x1c\xa8\x7d\xac\x1e\x60\x2d\xf7\xb8\x43\x48\xcf\xc3\x82\x79\xd2\xdf\x2a\x70\xa7\x07\x3e\x6c\x1f\x91\xf7\xef\x38\xb6\xc0\xc2\xeb\x4b\x02\x0e\x26\x43\xc0\x7a\x9e\x35\x59\xe6\x6d\x44\xae\x3d\xe7\x0b\x48\x2f\xba\x86\xdc\x38\x97\xe9\x85\x66\xf3\xa7\x33\x16\xd1\x5c\xd9\x38\xb8\x16\x57\x42\xb1\xc4\x88\x65\x30\x46\x11\x4b\xf7\x0c\x4d\xf1\xae\x32\x6d\x25\x32\xb0\x8d\xc5\x62\xc8\xe0\x49\x19\xf5\x76\x54\xc6\xbc\xc1\x9f\xe6\xb6\xfb\x7f\xaf\x5f\xb9\x7f\xdd\x9c\x4d\xe0\x97\xfa\xc1\x71\xa4\x37\x5c\x33\x1b\x4e\x07\xcd\x80\x00\x29\x9c\x23\x16\x1b\xa6\xbc\x18\xbc\xfc\xe2\x8b\x06\x33\xff\xc7\x43\x75\x55\x57\x18\x15\x3f\x55\xe7\x6a\x51\x18\xb5\x43\xf6\x59\x4d\xcf\x29\x7f\xd6\x3e\xf1\xac\x4f\x3c\xeb\xe0\xea\xec\x13\xcf\xfa\xc4\xb3\x3e\xf1\xac\x4f\x3c\xab\xdb\x71\x9f\x78\xd6\x27\x9e\xf5\x89\x67\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xf5\x89\x67\x7d\xe2\x59\x68\x17\x3d\x1d\xeb\x13\xcf\xfa\xc4\xb3\x3e\xf1\xac\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\x3e\xf1\xac\xfa\xe9\x13\xcf\xfa\xc4\xb3\xe2\xd3\x27\x9e\xf5\x89\x67\x7d\xe2\x59\x70\xd0\x3e\xf1\xcc\x83\x45\x9f\x78\xd6\x27\x9e\xf5\x89\x67\xd5\xcf\xa7\x4c\x3c\x6b\x68\x86\x49\xc8\xc0\x56\xe8\x0d\xfd\xd6\x3c\x70\x83\x9c\x60\xef\xc6\x03\x0a\x73\x57\x6f\x55\x5f\x99\xbb\xaf\xcc\xdd\x57\xe6\xee\x2b\x73\x87\x96\xd7\x57\xe6\xee\x03\xa4\xfa\x00\xa9\x3e\x40\xaa\x0f\x90\xea\x03\xa4\xfa\x00\xa9\xf2\xd3\x07\x48\x95\x9f\x3e\x40\xaa\x0f\x90\xfa\x4d\x05\x16\xf4\x01\x52\x7d\x80\x54\x1f\x20\xd5\x07\x48\xed\x3c\xfc\x3b\xa3\x63\x7d\x80\x54\x1f\x20\xd5\x07\x48\xf5\x01\x52\x7d\x80\x54\x1f\x20\xd5\x07\x48\x79\x9f\x3e\x40\xaa\x0f\x90\x2a\x3e\x7d\x80\x54\x1f\x20\xd5\x07\x48\x05\x07\xed\x03\xa4\x3c\x58\xf4\x01\x52\x7d\x80\x54\x1f\x20\x55\xfd\xf4\x95\xb9\xfb\xca\xdc\x7d\x65\xee\xca\xa7\xaf\xcc\xdd\x57\xe6\xee\x2b\x73\x77\x9a\xa1\xaf\xcc\xdd\x57\xe6\xee\x2b\x73\xf7\x85\x56\xfb\x42\xab\x7d\x65\xee\xbe\x32\x77\x5f\x99\xbb\x7e\xfd\x7d\x65\xee\x9e\x61\xf4\x0c\xa3\xaf\xcc\xdd\x57\xe6\xae\x7c\xfa\xca\xdc\x7d\x65\x6e\xf8\xf4\x95\xb9\x6b\x3e\x7d\x65\xee\x3e\xf1\xac\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\x3e\xf1\xac\x4f\x3c\xeb\x13\xcf\x2a\x9f\x3e\xf1\xac\x4f\x3c\xfb\x4d\x25\x6c\xf4\x89\x67\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xed\x3c\xfc\x3b\xa3\x63\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xf5\x89\x67\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\x79\x9f\x3e\xf1\xac\x4f\x3c\x2b\x3e\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\x05\x07\xed\x13\xcf\x3c\x58\xf4\x89\x67\x7d\xe2\x59\x9f\x78\x56\xfd\xfc\x67\x57\xe6\xee\x12\x6a\x10\x3e\xea\x66\xe9\x60\x8e\x91\x21\xa5\xa6\x1e\x5a\x75\xae\x50\x17\x41\xfa\x68\xd9\x36\x96\xb7\x96\xa2\xe2\x1f\xac\xd9\x52\xf8\x54\xa0\x84\x78\xdb\x3e\xae\xcc\x43\x0d\x3c\xa9\x8a\xc8\x12\x9f\x0e\xee\x02\x43\x06\xb1\xce\x33\x18\x7d\xcc\xa0\xe0\x21\x8d\x87\x68\x07\x2a\x2c\xd8\x4b\xbe\x30\x6a\xf5\xf4\x00\xc6\x9b\x1e\x80\x08\x60\x9f\x0d\x0d\x4d\xe7\x46\x29\xd4\x20\x74\xc2\x00\x89\xbc\x63\x19\xae\x06\x43\x30\xbd\xc5\x29\x22\x57\x5c\x6b\xc3\x4b\xb8\xcb\xde\x09\x0d\x1a\x49\xa1\x38\x16\x59\x47\x5b\xe5\xf4\x80\x8b\x39\x17\x5c\xb3\xe9\x01\x19\x10\x08\xfc\xf3\xb6\xe3\x38\x95\x5d\x27\x49\xa8\xd2\x43\x52\xec\x2c\x08\x12\xb3\x56\x1e\x33\xa1\x79\x44\x13\xbb\xc0\xed\x71\xb8\x20\x34\x49\x97\x54\xe4\x2b\x96\x79\xcf\x01\x02\x84\x46\xb5\xfc\xc9\x9a\xd6\x30\xd2\x25\xe8\x12\x42\xe4\x10\xf9\x6a\xb6\x6b\xf5\x4c\x33\x76\x7e\x79\x3a\x69\x43\x8f\x31\x3e\x46\xb8\x88\x79\x84\x16\x9d\x22\xd3\x64\xe9\x0a\xa7\x57\xa9\x0a\x99\xb1\xb9\x0c\x8b\x6e\x54\x6c\x88\x19\xae\x76\xad\x33\x29\x13\xb6\x1b\x8c\xd1\x20\xb7\x6f\x49\x59\x13\xdf\x3e\x86\x58\xed\x59\xc9\xdc\x45\x4b\x79\x74\x8b\xff\x27\xf3\x20\x01\x32\x7b\xdb\xb2\x79\x78\x98\x60\xf3\x62\xbc\x33\xd4\xd2\x09\x1d\xf5\x76\x9b\x72\x1d\x46\x76\x4b\x12\x79\x87\x50\x43\xd3\x5d\x61\xcc\x42\xc9\xfa\xcf\x60\xdb\xc1\x7b\xfd\x3e\xe1\x9a\x65\x34\xf9\xf5\xe7\x5f\x42\xe3\x4e\xa7\x64\x80\x59\x61\x06\xa7\x57\x29\xcd\xb8\x92\xe2\x88\x40\x6a\xa8\x33\xca\xd8\x01\xe7\x52\x92\x19\xcd\x7e\xfd\xf9\x97\x72\xaa\x3f\xec\x35\x55\x39\x97\x11\xaa\xd8\x3f\x72\x9a\xfc\x09\x83\x98\x9d\x92\xc0\xe7\x56\x3b\xe0\x0a\x9e\x71\x8e\x8e\x62\xc2\x30\xf9\xf8\xd1\xac\x82\xba\x00\xbc\x99\xfb\x23\x82\x3f\x86\xc3\x21\xf9\xc9\x9b\x5b\x67\x39\x73\x59\x48\x45\x20\x2f\x8e\xfe\x57\x12\x4e\x1c\xb0\xbe\x9d\xda\x49\xca\xf5\x99\x45\x73\xd1\xb8\xa0\xd0\x04\x7b\xae\x11\xa6\xa9\x5b\x54\x68\x7c\x6f\x9d\x4b\xaa\x9e\xc2\x48\xef\x0d\x73\x78\x56\x4e\x3a\x29\xe6\xa4\xba\x3c\x05\xef\x04\xfe\x00\x68\x18\x64\xab\x76\x88\xc2\xf2\x2b\xe7\xf0\x2c\x98\xff\xe0\xbf\xf9\xf3\xe7\x2f\x5f\xe1\xff\xe3\x2f\xc5\x3b\x37\x4b\x99\xe9\x41\xc4\xb3\x28\xe7\x1a\x04\x57\xfb\x52\x68\xa2\x7f\xfd\xab\xf1\x6d\x09\x33\x3e\xc5\x67\x9e\x15\x0f\xa5\x34\x63\x56\xe9\x59\x64\x32\x4f\x8d\xd2\x33\x9d\x6a\x9a\x24\x4f\x83\x6e\x3e\xdb\x11\x00\x83\x7d\x0a\x8a\xe0\x46\x73\xb8\x4a\x93\xc4\xb3\xe2\xc1\x15\x7c\x83\x38\x80\x6a\x6a\x0d\x19\x33\x97\x17\x29\x89\x0b\x7a\xf5\x29\xb8\x3a\x22\x83\x23\xf2\x1e\xe0\x70\x3c\x24\x37\x70\xb3\x88\xbd\x59\xb5\x83\xae\x64\xc6\x48\x6a\x34\x2c\xa5\xf8\x9a\x91\x19\xa6\x6b\x6c\x9c\xed\xd8\xda\xf4\x09\x53\x11\x4d\x19\x89\x96\x34\xa3\x91\x66\x99\x5d\xf6\x05\x46\xbd\x07\x51\xff\x29\xf0\xa1\x15\x8d\xd9\x20\x4f\x11\x2d\xd4\xb3\x82\xe0\x40\x8e\x20\x92\x87\x3b\x36\x33\xaa\x19\x43\x02\xe1\x9f\x77\xcc\xd2\x44\x6e\x56\x4c\x04\xc9\x25\xbe\x9d\x66\x32\xb6\x08\x0a\x63\x9a\x3b\x64\x68\x4e\x26\x85\x66\x22\x2e\x10\x9c\x46\xb7\xf8\xcf\x9f\xcc\xa3\xe5\xc8\xe4\x0f\x7f\xae\xc1\xfb\x98\xad\xed\xc0\x7f\x20\x5b\xb8\x1f\x52\x63\x9a\x84\xa2\xaa\x95\xb5\xab\xb4\x77\x13\x7c\xeb\xa3\x89\x7c\x76\x91\xce\x08\xb3\xaf\xe0\x07\x5e\x9c\x0e\xbc\x12\x9c\x3d\x25\x67\xbf\x5b\x42\xc6\x79\x85\x97\x7b\x21\x6e\x56\x7d\x0c\xd2\x26\x73\xdb\xa4\xed\x79\x72\x64\xff\x35\x93\x7a\x39\x24\x18\x75\x0a\xbc\xe2\x3e\x35\x92\x92\x4e\x36\x9e\x92\xfa\x14\xfa\xb5\x04\xc3\x89\x3d\xba\x29\x48\x94\x31\x9b\xe0\xa2\xec\x9d\x96\x19\x11\x3c\x79\x76\xe4\x92\x54\x62\x36\xa7\x79\xa2\x15\xc1\x6d\x19\xd0\x65\x71\x8d\xae\xa2\x25\xb9\x33\x14\x72\x64\x35\x62\xb3\x88\x0b\x4f\x39\x06\x79\xd4\x51\xcd\xa2\x79\x09\x86\x50\xd6\xe5\xb9\xdb\xf9\x09\x57\x78\xb3\x06\xe4\x07\x2b\xa2\x99\x05\xb9\x99\xfe\x7e\x64\x59\x82\x11\x78\xc1\x27\x53\x99\x38\x78\x7b\xb9\x88\x92\x3c\x76\x0e\xcb\x88\x1a\x21\x18\x06\x28\x87\x21\xc8\x82\x85\x2c\xb6\x04\xc3\x3d\xab\x8b\x94\xac\x2e\xee\x22\xbc\xb6\x0a\x44\x0c\x39\x2a\x87\x0f\x2a\x6d\xf0\x5c\xed\xd6\x8f\x5a\x27\x0c\x0d\x0a\x36\xc3\xba\x63\x42\xca\xf7\xbd\x35\x18\x7a\x6a\x47\xc6\xa8\xb9\x4d\xd1\x2d\xa1\x0b\xca\x45\x10\x65\x11\x4d\xd0\xd1\x94\xdc\xd1\x8d\xda\xc9\x2f\xc0\xc8\x8f\x23\x22\xd8\x9a\x65\x15\xac\x0b\x1a\x4f\x3a\xf6\x45\x2a\xa1\x40\x18\x30\x8c\xc2\x4f\x9a\x4a\xa5\xf8\x2c\x71\x13\x97\xa1\x6d\xe6\x85\x9b\x94\x45\x61\x75\x1a\x37\x52\x1f\xec\xd7\xac\xb8\xd7\xea\xc4\x61\x55\x7a\xf7\x5b\x60\x18\xb1\x1f\xc6\xa0\xb4\xcc\xe8\x82\xb9\xaf\x94\xa6\x3a\x47\xc0\xa0\x47\x8f\xc5\x97\x9e\xaf\xe5\x96\x8b\xd8\x50\x23\x07\xd2\x34\xc9\x33\x9a\x94\xdf\x44\x52\xa0\x63\x5d\x9d\x90\x1f\xfe\x6e\xbe\x31\xe3\xb3\xd8\x26\xca\xda\x6f\xa7\x62\x30\x18\x14\xff\xa1\x29\x77\x69\xb7\x84\xa6\x9c\xdd\x6b\x26\xe0\xe1\xe1\xed\x97\x6a\xc8\xe5\xf1\xfa\xc5\x54\xe0\xc4\x67\xb9\xd2\x72\x75\xcd\xd0\x61\x78\xce\x40\x01\x04\xa2\x5d\x49\x6e\x05\x33\x17\xc1\x30\x69\x81\x21\xc5\x8a\x69\x35\x8c\xb2\x78\x98\x66\xd2\x80\x23\x02\x3a\x34\x94\xd9\x62\x2a\x0c\x81\x83\xf7\x40\x56\x39\x21\x35\x8f\x55\xbd\x4e\xb8\xa0\xed\xe8\x67\xfc\x2d\xe1\x4a\xff\x25\xf8\xfb\x1b\xae\x74\x15\x72\x3b\xab\xb4\xc7\xc2\xc5\x22\x4f\x68\xb6\xfb\x00\x00\x35\x92\xe6\x64\xcf\x92\x5c\x69\xd4\x16\xd7\x0e\xc0\xe6\x1f\x03\x0b\x01\x03\x38\x18\x2c\x5a\xb2\x55\x99\xf7\x2b\x53\x26\x4e\xc7\xa3\xef\x3e\xbb\xa9\x7e\xbf\x85\xfb\x3b\x91\xdd\x95\xdc\x0a\x88\x12\xa0\xd9\x8c\xeb\x8c\x66\x1b\x32\x1a\x13\x95\xcf\x06\x6e\x99\xc7\x67\xa3\xf3\xeb\x0a\xe1\x41\xfb\xc4\xd2\x90\x2a\x94\x69\x40\x37\x05\xc5\x0a\x69\x91\x96\x98\xda\x67\x43\x32\x56\x64\xcd\xa9\x17\x18\x87\x61\x0f\xf8\xaa\x3f\xae\x9c\xef\x2e\xd4\xf9\xcf\x0b\x63\x8c\x7f\xd7\x6a\x8c\xa5\x1e\x16\x56\xaf\x56\xb5\x56\x89\x81\x9b\x8d\x11\xc1\x7c\x0a\xa4\x06\x16\xfc\x2c\xb6\xb0\x46\x72\x00\xc4\xcd\x72\x26\x1a\xb2\x82\x19\x10\x0a\x7b\x41\x87\x20\xb7\xb0\x4c\x39\x8d\x35\x92\x62\xcd\x32\x4d\x32\x16\xc9\x85\xe0\xff\x2c\x06\x57\x2e\x6a\x05\xba\xb4\xed\xc8\x78\x5c\x68\x96\x19\x09\x07\x28\x13\xda\xe8\x57\x74\x43\x32\x66\xa6\x21\xb9\xf0\x06\x74\xf1\x72\x6f\x8d\x3c\xcb\xc5\x5c\x9e\x40\x15\x29\x75\x72\x7c\xbc\xe0\xda\x5d\xc0\x48\xae\x56\xb9\xe0\x7a\x73\x0c\xfe\x74\x3e\xcb\xcd\x91\x1c\xc7\x6c\xcd\x92\x63\xc5\x17\x03\x9a\x45\x4b\xae\x59\xa4\xf3\x8c\x1d\xd3\x94\x0f\x60\xed\x02\x08\xc1\x70\x15\x3f\xc9\xec\x8d\x55\x87\x21\xb2\xb5\x4b\xed\xe0\x72\x35\x1d\x83\xb9\x5d\x36\xf5\x1a\x05\x76\x94\x3d\x0a\x68\x3b\xfe\x7b\x7d\x71\x33\x21\x6e\xf6\x60\x9a\x3a\x02\xbf\x7c\x53\x95\xe7\x60\x80\xc6\xc5\xdc\x09\x59\xe0\xc2\xf0\x6d\x0d\xc8\xe1\x13\x1e\x90\xb3\x55\x3e\x5b\x71\xad\xbc\xf2\x43\x72\x48\xce\x0a\xdf\x46\x9e\xc6\x54\xb3\x78\x48\x46\x82\x9c\xd1\x15\x4b\xce\xa8\x62\x1f\xfd\x14\x40\xd2\x1c\x18\xd8\x76\x3d\x87\x9a\x92\x01\x75\x86\xdb\x82\x90\xd6\x1c\xdb\xf6\x45\x35\x6c\xb2\x9a\xc5\xe6\x12\x1d\xcb\xd2\x02\x94\x6c\x53\xd7\xf2\xe3\x0e\x76\x8b\x93\x36\xb8\x43\x6a\xf2\x2d\x76\x1a\x3a\xba\x90\xd0\xd1\x98\x38\x92\x86\x14\x6c\xc6\x12\x69\x70\x4b\x5a\x73\x10\x0b\x39\xd1\xeb\x85\x8b\xff\x26\xf6\xfe\xb1\xf8\xfa\x52\xaa\x32\xc4\xe9\x23\xf0\x74\x3f\x7b\x69\x9b\x9f\xfb\xbf\xed\xf2\xf2\xca\xca\xb6\xf9\xb8\xff\xe3\xc7\xe4\xe1\x3d\x7f\xeb\xf9\x9b\x7f\x04\x3d\x7f\xfb\x64\xfc\xcd\xa7\x0e\xdd\x78\xdb\x2e\xad\x29\x3f\xfb\x73\x37\x76\x9f\x42\xc8\xc6\x68\xdc\xc5\xa0\x64\x4e\xda\xbe\x50\x4d\xd6\x7b\x3a\x1a\xaf\x3f\x87\x6b\x35\x1a\xaf\x5f\x3d\x73\xaa\xad\x43\x8b\xa0\xde\x3a\x02\xbb\xf8\xc8\x5c\xcd\x39\x8d\x98\x61\x2a\xbf\xfe\xfc\xcb\x96\x57\xa1\x30\xff\x80\x22\x9f\x48\x79\xeb\xec\x6f\xdc\xbd\x18\x34\xb6\xba\xb8\x19\x2f\x85\x70\x34\xae\x44\xb2\x61\xd6\x33\x78\xba\xac\x61\x01\x48\x08\xd5\x43\x88\x0a\x0f\xf2\xe2\xe9\x54\x83\x35\x22\x57\x3b\xe1\xe5\x5b\xc9\xf4\x90\xbd\x58\x44\x64\xc8\xcc\xda\xce\x42\x83\x6e\x77\x38\x9e\x4e\xcd\x78\xb6\xb5\x71\xb1\x7f\x4b\xfa\x54\x75\x56\x2e\xc2\xa9\xfa\x85\xba\xe5\x9f\xd2\x10\xd2\x66\x0d\x53\xa9\x84\xfc\x62\xb8\xc1\x45\x89\x08\x68\x6b\x08\x0d\xcb\x15\x1a\x36\xb1\x80\x13\xd5\x24\xcd\xb3\x54\x9a\x7b\xfa\x74\x34\xb7\x31\x46\x4b\x56\x1e\x8d\x99\xc7\x05\x11\x36\x47\x2a\x39\x23\x9f\x64\x78\xfc\x09\xa3\x99\x28\x8e\xcd\x9e\x60\x39\xae\x59\x40\xae\xc0\x04\x5d\x1b\x1d\x31\x9d\x6a\x77\x1c\xc3\xa0\x19\xf9\xd1\x65\x2e\x52\xae\xf0\x32\x1c\x36\xb3\x75\xa1\x2e\xb0\xe6\xe4\xaf\x3f\xff\xf2\xbf\x60\x3d\xb7\x4e\x8d\x32\x5c\xa6\xa8\xe2\xf1\x86\x8b\xfc\xbe\x19\xe7\x0b\xc7\x6d\x81\xce\x7f\x02\xc4\x5b\xa5\x7a\x33\x24\x6e\x12\xdf\xd3\x8b\x6e\x4f\xae\x1a\x69\x8a\xf9\x2c\xe4\x9a\x65\x02\xdd\x29\x45\x10\x99\x3c\x2a\x03\xc7\x96\x99\xcc\x17\x18\x1c\xe0\xec\xa4\x56\x08\x6e\xce\x67\xb7\x07\x0b\x38\x69\x1e\x2c\xb2\xf9\xa1\xd7\x75\x0c\x04\x01\xb0\xf1\x4f\x84\x99\xbd\xe3\x95\x8e\x0d\x7a\xac\xf1\x0a\x86\xab\x3b\x94\x01\x39\x6b\x68\x3e\xbe\x29\x41\x77\x44\x7c\x7b\xab\x54\x98\x08\x70\xac\x25\x84\x97\x9b\x95\x38\x93\x44\xd8\x3b\x9f\xc8\x88\x26\x45\x3e\xb8\xb5\x51\x8e\xe6\xa4\x42\xc8\x1c\x15\x2b\x4e\xb6\x13\x98\xe1\x02\x39\x58\x57\x82\xf5\x60\xf3\x40\x47\xcc\xce\xad\x84\x05\x50\xf3\x40\x1f\x24\x2e\x0e\x81\xca\xbb\x53\xc0\xb9\xb2\x62\x40\xbe\x01\xb9\x33\xe4\xad\xf2\x43\x0d\x1d\x40\x73\xe9\xa0\x72\xf4\x81\xc9\x8a\x04\xbe\xd2\xf2\x6a\x6e\x74\x70\x50\xe1\x13\x21\xa8\x37\x9b\x41\xa4\xc1\x51\x60\x55\xc5\x12\x8e\x08\x05\x6a\xb1\x2b\xf4\x11\xeb\x14\xf6\x39\x56\xd1\x5a\xbc\xac\xc6\x85\x79\x48\x46\xd5\xc8\xb0\x4e\x9d\x9d\x45\x91\xa7\x2a\x0f\x53\x16\xaa\xcc\xc1\x32\xbd\x7c\xfe\xeb\xcf\xbf\x3c\xb3\x29\x34\xe0\xbd\x63\x31\x31\xab\xfe\x13\xe1\x9a\x70\x25\x0e\x75\x69\xf4\x6d\xe7\xde\x04\x2f\x71\x9a\x49\x23\xb1\x78\x08\x80\x10\xf6\xa8\x41\x15\x07\xcb\x35\x07\xf9\xac\xcb\x73\x3a\xc1\x9d\x42\x4a\x21\x48\x3c\x98\x76\x88\x6e\x20\x23\x65\xad\xd2\x84\xad\x0c\xa6\x21\x81\x77\x04\xc3\x5f\xb2\xfa\x53\xf8\xe4\xb8\xe6\x34\x49\x36\xe4\xff\x6f\xe0\x9b\x66\x6c\x00\x41\x25\x85\x4b\x65\x6c\x0e\x88\xd9\x8a\xc0\x05\xa9\x8f\xf2\x55\x9d\x16\x60\x3e\xae\xe9\x3b\x8a\xf4\xb6\xb9\xbc\x14\x41\xdb\x7c\x13\xc1\x16\xe1\x72\x70\x3b\x0a\xbc\x79\xce\x86\xbc\x43\x44\xcf\x7c\xe3\x98\xbc\x5d\x31\x3c\xc0\x8d\x42\x2c\x82\xa0\x6e\x5a\x44\x5d\x8a\xed\x96\xeb\xc0\x30\xf8\x8a\x04\xe8\x85\xbe\xe2\xbd\xb5\xd9\x9f\xae\x3c\x70\x30\x8c\x76\xc6\xd0\x2e\xca\x44\x84\xf1\x47\x85\x88\x61\x8f\xdb\x46\x88\xee\xc1\x11\x5b\xe3\x45\x1b\xe3\x44\xdb\x63\x0b\xcd\xb6\x5a\x5e\x6f\x4c\xef\xfc\x2d\x95\xfd\xfa\x58\x15\x9f\x5a\xa2\x26\x45\x0d\xb1\x1e\x00\x70\x6b\x7e\x69\xa8\xe3\xf6\xe0\x58\xcb\x14\x45\xd7\x56\x74\x3f\x2d\xd3\xa8\xf1\xc2\x71\xe0\x71\x73\x4f\x22\xc6\x91\xec\x22\xea\xab\x63\x96\x29\x16\x86\xcd\x16\x5a\x07\x56\x45\xb7\xcb\xf1\xc2\x15\x9d\x1a\x80\x71\x78\x75\x83\x62\x8e\x42\x9a\x32\x9a\x15\x11\x70\x90\x02\x43\x8a\x75\x95\xce\x64\x37\xb2\x8b\x64\x2c\x65\xf4\x41\x6d\x9c\xdf\xd6\xad\xec\xad\x82\x9f\xd8\x2a\xc8\x53\xba\x9a\x25\x32\xba\xfd\x18\x26\xc1\xd1\xf8\xf4\xed\xd7\x66\xf0\x6d\x7b\x60\xf1\xc3\xae\x31\xb0\x5c\xd0\xb6\x25\xb0\xf8\xa5\x37\x03\xf6\x66\xc0\xde\x0c\xf8\x1f\x67\x06\x2c\x88\x42\x27\x1b\xa0\xd8\xa6\x2e\xe5\x67\x7f\x0b\xa0\x51\x32\x0c\xec\x5a\xb9\xb5\x7d\xce\x69\x71\x40\x8e\x6c\x80\x0f\x57\xf8\x4f\xa7\xe9\x61\x6a\x1a\xd3\x41\x53\x0f\xd7\x45\x88\xbc\xd7\x6c\x83\x4c\x0f\x8c\x3e\x7b\x82\x0d\x31\xcc\x9f\x20\xcf\x40\x38\xe7\xf4\x00\x06\x84\x28\x49\xa6\x8f\xbc\x09\x6b\x94\x53\xf3\x24\xec\x0b\xdb\xbb\x80\xa6\xbc\xa7\xc0\x4e\x13\xa3\x64\xd5\x15\x10\xaf\x42\xc6\xf0\x59\xa0\x58\xe5\x3b\x84\x8b\x41\x6e\xb3\x19\x9c\xf0\x00\x2b\x1e\x12\xc1\x13\xe8\xd4\x52\x93\x53\xb0\x62\x14\xa5\x93\x72\x34\x02\x77\x8c\x31\x34\xe0\x09\x29\x06\xde\x18\x46\xff\xe5\x22\x66\xf7\x84\x1f\xd5\x59\x01\xec\xef\x45\x8e\x07\x37\x44\xd0\x02\xdf\x9b\x66\x67\xb1\x40\x21\x6b\xc6\x44\xba\x62\xc7\xc4\x09\xdc\x88\x4a\xc9\x88\x43\x71\x0c\xaa\xf1\x3a\xb2\xc2\xf4\x7a\x5a\x7c\x13\x14\xe4\x0c\x28\x1f\x20\x08\x35\xc8\xed\x4f\xc8\xe4\xea\xfc\xea\x04\xeb\xfb\x88\x3c\x49\xe8\x0c\x85\xc1\x15\x15\x39\x28\xad\x34\x8e\x41\x26\x1c\x92\xef\x99\x63\x31\x48\x87\x48\x51\x0c\x20\x1b\x2c\xc2\x05\x2f\x9f\x18\x0c\x5b\x52\x11\x27\x8c\xfc\xf0\xf7\xff\x35\xc4\x0f\x2f\x5b\xb2\xb1\xd5\x3a\x82\x4a\xb9\x5b\x48\x9d\xb4\xdf\x20\x5e\x97\x30\x6d\x45\x4c\x0f\xfa\x10\xc9\x4a\x0b\x4c\x2d\xa2\x70\x1c\x21\xf3\x4e\x2d\xb4\x5e\x88\x30\xae\xe2\x77\x49\x05\x86\x64\x22\xc9\xdc\x30\x1e\xef\xbc\xd1\xde\x81\x79\x6e\xe5\x8b\x41\x8a\x60\x2e\x4a\x25\x8a\xbe\x8a\x97\x87\xca\x76\x36\x72\x28\xe4\x2d\xa3\x36\x29\x9c\x06\x10\x93\xa1\x7d\xa3\x90\xe6\xf7\xc7\xb6\x56\x35\x18\x31\xe1\x3d\x0f\x2b\x69\xa4\x93\x2e\xac\x98\x11\x8f\x69\x16\x22\xc9\x76\x73\xfb\x75\x2d\xe8\xa2\xb4\xb6\xa5\xec\x3d\x58\x1b\x8c\x78\xdc\x1a\x7e\x3d\x71\x98\x74\xa8\xc8\xd9\xe8\xfc\x7a\x4f\x5a\x1d\xb3\x84\xe9\xa0\x5e\x5c\x99\xe5\x1c\x1f\xb3\x77\xa1\x10\x06\x6d\x4e\x52\x11\xb2\x7d\x27\xb3\x5b\x9a\xc9\xdc\xa0\xb3\x57\x7a\xbf\xc6\x64\x69\xf0\xca\x4b\xce\x3e\x1d\x8f\x30\x78\x77\xb6\xc1\x65\x21\x5d\x4d\x30\xeb\x24\x63\x3a\xcf\x04\x81\x0e\x19\xf3\x84\x87\x21\xcd\xb2\x4c\x66\x2e\xb1\xa4\x64\xab\x33\xc6\x84\x27\x1e\x69\x47\xa9\x5c\xee\x33\xd3\x05\x45\xdb\x3f\xfd\xea\x1f\x39\x13\x11\xbb\x84\x4c\xb2\x20\x18\xc1\xa6\x7f\x42\x9e\xb7\x80\xd8\x10\x50\xa3\xc8\x81\x03\x0a\x07\xb5\xf9\x69\x68\x09\xe6\xca\x6d\x01\x33\xbb\x35\x0f\xdb\x2c\xca\xad\x73\x45\xee\x32\xae\x35\x13\x56\x9d\xaf\xf0\x2b\x08\xee\x55\xd2\x4e\x8a\x6a\x37\x4e\x1b\x26\xba\xb0\x12\x5f\x80\x21\x36\xf3\xcb\x2c\x04\x2c\x11\x5a\x15\xb1\xe8\xb6\xa2\x72\xc6\x12\x46\x55\xcd\xd5\x01\x59\xec\x88\xa4\x54\x79\x2e\xc1\xea\xc6\x3d\x76\x08\x54\xb4\x4a\xdc\x82\x83\x26\x89\xbc\x53\x24\x57\xbe\x39\x18\x22\x9d\x95\x26\x94\x64\x14\x2b\x79\xdb\x7a\x54\x86\x47\x33\xa1\x72\x0b\x80\x51\xb0\xf7\xe2\x92\x82\x35\x1a\x90\x08\x37\x64\xb8\xb3\x88\x49\xc6\x06\x76\x31\x46\x8b\x82\xca\x73\x90\xf8\x87\xcf\x38\x31\x3d\x80\x51\xd8\x7a\x04\x58\xef\xab\xcf\xeb\x10\xae\x86\x2f\x57\x11\xee\x1b\x99\x95\x24\x3d\x80\x7d\x9d\xa9\x5d\xcb\x92\x5a\x85\x85\xad\x56\x14\xa9\x27\xd3\xb1\xb8\x90\x9b\xbc\x82\x07\x88\x42\x90\xe6\xf1\x41\x58\x57\xa2\xc3\xd0\x27\x26\xce\x1b\x5a\x8b\x23\xa4\xcc\x29\xbd\x65\x1b\x57\x32\x22\x55\x47\x44\xa1\x1e\x7c\xcb\x20\x5e\x3e\xa2\x4a\xdb\xce\x61\x40\x40\x6b\x09\x44\x98\xbe\x63\xed\x93\xd3\x8e\x8a\xc2\x4d\xe5\x69\x97\xcd\x5a\x68\x2c\x66\x3d\xb1\xd1\x29\x11\xaa\x06\x07\x45\xd0\x87\x9d\x48\xb1\x60\x19\x92\x65\xeb\x15\xc4\x96\x2c\xef\x14\x0e\x77\x26\xc5\x9c\x2f\xb6\xe7\x33\x97\x84\xd1\x50\xa8\x7c\x23\x0d\xcc\x45\x71\xd2\x6d\x1b\x7c\x57\x3e\xea\x32\x84\x32\xcc\x33\x76\xf6\x4c\x5f\x50\x42\x4b\x7d\x4d\xfa\x83\x91\xea\xab\xa2\xd4\x23\xca\xbe\xb5\x4c\xb9\xc6\x90\x3c\xf0\xd7\xbd\xf3\x53\x8d\xdc\x3e\x00\x06\xbf\xfd\x5d\x15\x63\xb6\x7f\xf5\x60\xdd\x9b\x27\x1b\xcd\x93\x11\xa0\xf8\xc7\xb2\x4f\xe2\x05\x0a\x19\x28\xf1\x97\xb0\x85\xd2\xae\x29\x64\xa2\x8c\x8a\x01\x7b\x1b\x65\x6f\xa3\xac\x3d\x86\xde\x46\xf9\x7b\xb5\x51\x22\x5d\xd8\xc3\x48\xe9\x93\x98\xf2\xf3\x00\x2b\x65\xae\xa5\x15\x12\x19\x88\x11\x21\x8e\xd8\xc8\xe0\x57\xf4\x1e\x5f\x1c\xb3\xec\x5b\xb0\x34\xb6\xc9\x7f\xd5\xe7\xc1\xd4\x29\xa4\x18\xfc\x93\x65\xf2\xc8\x19\xbe\x56\xf4\xde\x13\xf0\x7c\xe7\xcd\xd6\xd2\xa0\xfe\x17\x15\x50\x54\xa2\xb0\x4c\x82\x0e\xd4\x68\x9c\xac\x13\xa0\xdb\x24\xb2\x06\x50\xd4\x73\xff\x1d\x18\xef\xc3\xd6\x7b\xde\xbd\xc5\xbb\xd1\x14\xf4\xb1\x78\xf7\xb7\x30\x7a\x88\x77\xe3\x2f\x61\xde\x6d\xd7\x14\xe2\xdd\xcb\x62\xc0\x9e\x77\xf7\xbc\xbb\xf6\x18\x7a\xde\xfd\x7b\xe5\xdd\x48\x17\xf6\xe0\xdd\x3e\x89\x29\x3f\xfb\xf3\x6e\xe0\x8a\x1f\x62\xd7\xe9\xa4\xe7\x86\x4d\x17\xf5\xa6\xe1\x46\x61\x01\x89\xe1\xe8\xbc\xf6\xbd\x90\x21\xba\x96\xb1\x06\x5c\x95\x83\x62\x8a\x9e\x8b\x36\x70\xd1\x54\xca\xe4\xe3\x70\xd0\xb1\x74\x51\x6f\x3e\xf7\x34\xdf\x86\x38\x27\xac\x63\x97\x6b\xa6\x76\x90\x9e\x63\xf6\x1c\xb3\xf6\x18\x7a\x8e\xf9\xfb\xe4\x98\x86\x16\x74\xe6\x96\xe6\xe1\x87\xa8\xb5\x58\x69\xec\x9d\xea\xe0\xcc\x2f\x1e\x75\x51\x09\x0a\x8b\x1c\xa1\x75\x9d\x18\x5a\x54\x04\xd6\xb8\x2c\x2d\x28\x9e\x19\x62\xa9\x10\x4b\x53\x54\x69\x72\x69\x42\x47\x65\x95\x25\x2d\xc9\x0f\xd3\x83\x49\x2e\x04\x4b\xa6\x07\x47\x64\x7a\xf0\xbd\x4d\x37\x98\x1e\xfc\x1d\xf6\x3d\xa3\xd1\xed\x00\x0a\x12\x6a\x3e\xe3\xc9\x8e\x42\x48\x3e\x4e\x8a\x15\x30\xd3\x1b\xfe\xcf\x4e\x31\xfd\xe8\x6d\x51\xfc\x9f\xa0\x6e\xe7\x0a\xd3\x30\xca\xa4\x38\x42\x95\xe2\x0b\xb1\x32\x97\xa9\xb6\xc9\x81\xad\x97\x25\x93\x21\x39\xf7\xc0\xf3\xf2\x95\x1d\xcc\x66\x3e\xbe\x78\xf1\xd2\x7d\xf1\x6a\x5f\x7d\xbe\xab\x93\x1c\x0e\xf9\x21\x1e\x72\xae\xe8\x2c\x69\x77\x6d\x80\xc3\xd3\x3d\x0c\x36\x8e\x2c\x2f\x73\x10\x8d\x50\x58\x3a\xb3\x11\x74\x65\x7a\x61\x08\x74\x96\x0e\x39\xf8\xed\x29\x85\xd9\x85\x7c\xfd\x7a\x7c\x71\x5f\x93\x20\x50\x25\xb5\xe7\xf8\x02\x61\xf0\xb8\x21\xac\x99\xcc\x8b\x0a\xe7\xb0\x8e\xd1\x98\x98\xbb\xfa\xeb\xcf\xff\x2f\x86\x1a\x10\xb9\x0e\xc7\x0d\x7d\xfd\x7a\x3c\x24\x3f\x9c\x3b\xcf\xf7\x9c\x26\x8a\xfd\x3d\xd0\x3f\xb5\x71\x07\x3c\xe5\x69\xfb\xaa\x0b\x6f\xd8\x89\xa5\xde\x50\x67\x8e\x63\x57\xed\x32\xe3\xf2\x74\x3c\x5a\xbf\x80\x6b\x77\x47\xb3\x38\x08\xef\xca\x75\x34\xdc\x41\x5b\xf6\xe2\x8f\x0a\x87\x87\xd4\xe4\xa8\xfa\x53\xf0\x08\x31\xcd\x14\xd9\xb4\xb9\x41\x66\x51\xc3\x00\x20\x5a\x62\x63\x98\xa8\xc3\xc0\x1d\x88\x00\x16\xda\xe7\x4b\x24\x34\xb0\x24\x1a\x08\x92\xd9\x93\x4f\xea\xc2\x63\x42\x36\x55\xcc\x12\xbe\x66\x59\xd9\x2d\xc7\x7c\x55\x74\x90\x53\x5b\x55\xb3\x83\x38\x4a\xda\x4e\x99\x40\x79\xc7\x60\x96\xd1\xce\xde\x26\x40\xad\x47\x63\x78\x01\x4a\x14\x81\x7f\x56\x78\xd5\xc9\xa6\x07\x58\xb0\xcc\x75\x84\x84\x3e\xb3\x03\xec\x7d\x3a\x3d\x18\x12\x72\x5a\xb7\x5f\x33\xe6\xd6\x08\x65\x8c\x44\xae\xec\xcc\x25\x0c\xcd\xd9\x9a\x1b\x02\x38\x52\xdb\xf3\xdb\x83\x57\x35\xeb\x7b\x07\x76\x84\x9c\x7a\x6b\xa8\xae\xbb\x6e\x74\x58\xa0\x43\xf4\xed\x05\xde\xb9\xda\x6f\xfe\x1a\x30\x0f\xcb\xdc\x8e\xba\x31\x69\xd9\xcb\xca\xf6\x8c\x75\x62\xa8\xeb\x7a\x60\x06\x17\xee\x04\xca\xa4\xd5\xc6\xfe\x7f\x4f\xf9\xbc\xca\x37\x9f\x99\x55\x94\xb0\x6e\x44\x9d\x66\x4e\x17\x56\x5e\x0d\xc6\xbf\xed\x90\xbd\x76\xe6\x04\x14\xf4\xbf\xe5\x59\x29\x9c\x04\x0e\xbc\x19\xd5\x47\x5b\x7b\x3c\x72\x0d\x3b\xb8\x42\xcf\x3d\x00\x0a\x23\xa5\xa6\x07\x97\x6c\x0d\xf5\xbd\x9f\x42\x31\xed\xea\x64\xa1\xd1\xcd\x08\x96\xbb\x84\x3a\xc4\x35\xa6\xf1\x51\x3d\x90\xb9\x5e\x48\x2e\x16\xff\x2d\x24\xb5\x91\xea\x08\xaa\xaf\x3a\xc2\x03\x6b\x74\x7a\x00\x2c\xa9\xaa\xa3\x8b\x50\x0a\xd3\xeb\x83\x45\x1a\x93\xa0\xad\x48\x6c\x34\x0f\x9f\x00\xec\x50\x57\x99\x6b\xc5\x63\x56\xa8\x98\x85\x90\x1a\x1a\x14\xba\x84\xa8\x7f\xe4\x2c\xa3\x71\xb0\xe5\x4b\x33\x38\x64\xdc\xb9\xb8\xff\x29\x06\x58\x59\xb1\xdd\x56\x95\x33\xe8\x62\xa3\x56\x8b\x44\x5b\x20\x35\xb3\x0d\x16\x91\x0b\xad\xb9\xe8\x90\xb3\x1f\x32\xaf\xef\x13\x2a\x3e\xf0\x6a\x7f\xf7\xd7\x37\xa7\x97\x9f\xec\x6e\xc3\x6c\x41\xe9\xb8\x58\xc0\x83\x2f\x77\xad\xe1\x6c\x37\xb4\xa4\xb7\x8f\x55\xec\x63\x19\x33\x1b\xc5\xcb\xf6\x51\xcc\x64\xd7\xe5\x04\xbb\xd6\x32\xef\xc7\x90\xd1\xcc\x5f\xdc\xae\xed\x2c\xab\x8e\xdc\x9b\xd0\x7a\x13\x5a\xed\x31\xf4\x26\xb4\xdf\xa7\x09\xcd\x23\x10\x9d\x2d\x69\x3b\x14\xa7\xfc\xec\x6f\x5f\x43\x22\xc3\x62\xa8\x2d\xdb\xc6\x6b\xaf\xfd\x87\xab\x7d\xbe\xf1\x2b\x2a\xe2\xe3\x8a\xf9\x28\x6c\xf4\x80\x58\x8f\x1d\x93\x09\xbb\x8f\x92\x3c\xb6\x6d\x67\x05\xbb\xf3\x83\x2d\xfb\xd4\xef\x4f\xcc\x39\x6f\xf3\x19\x2b\x73\xbb\x54\x45\xb8\xfa\x18\x8c\xf4\x2f\xf9\x8c\x9d\x95\xf3\x9d\xf9\xf3\x6d\xf3\xd5\xa6\x67\x77\xd9\x6c\xe3\x4e\xb6\xb9\x6e\xd3\xc3\x3d\x13\xee\x99\x70\xcf\x84\xff\xe3\x98\x70\x13\x35\xd9\xe5\xc9\x95\xce\x04\xdb\x00\xf6\x32\x53\x3c\x22\x52\xd5\x4c\xbb\xb3\x66\x6f\x88\x2e\x4a\xb0\x9b\x0d\xcd\xc2\xd8\x2b\xc2\xcd\x6c\xbb\x9c\xac\x79\x9c\xd3\xa4\xa5\xc5\xa4\x37\xed\xde\x26\xec\xb6\xae\x91\x35\xbd\x22\x6b\x96\x5c\x6d\x1c\x59\xae\xab\xb6\x53\xe3\x85\xb5\x88\x43\x6a\x21\xa8\xea\x47\x90\xf6\xa7\x25\xe4\x94\x6b\xe9\xd4\xef\x9a\x11\x3a\xf4\xfc\x34\x64\x4a\x44\x3c\x61\xd9\x98\x65\x5c\xd6\x67\xb1\x6e\x13\x87\xeb\xad\x17\x5d\x7c\x6c\x8a\xff\xd2\xd2\xfc\x05\x79\xfe\x6e\x0a\x5e\x9b\xfe\xe6\x3e\x45\xb6\x9c\xab\x18\x46\x35\x05\x59\xc1\xf7\xcb\x7c\xb1\x0a\x39\x65\xdc\xa7\x3d\xf3\xb5\x2d\xef\xb5\xa6\x7a\xd8\x0e\x04\x2e\x65\xdc\x7c\xd2\xe6\xf7\xdf\xc6\x21\x2f\xbd\x82\x6e\x5d\x0f\xd8\x2f\x02\x57\xfa\x9f\xd5\x46\x44\xce\x92\x0e\x1c\x12\x4a\x12\x7a\x6d\xf3\x1b\x4e\xf7\xdc\x79\x19\x1f\xba\xd3\x8e\xbb\x25\x36\x7a\xfc\x2c\x63\xb4\xa6\xac\x6b\xcd\x9e\x0f\x4f\x8b\xd7\xca\x93\xcd\xb5\x5c\x51\xcd\xa3\xb2\x63\x91\x6c\x6d\x8d\x5d\x85\x0a\xa8\x3a\x6c\xcd\xb2\x8d\xf5\x40\x94\xc8\xec\x60\xd2\x84\xd2\xa4\x73\xaf\xd6\x2e\x9d\x5a\x13\x46\x6f\x5f\x67\x34\x62\x7b\xde\xf7\x37\xd5\xf7\xb6\xae\x7b\x35\x67\xcf\xe1\x7c\xd3\x9e\xc0\x70\x8c\xfd\xa7\xa1\xc1\x1d\xf5\x5d\x4d\x65\xfe\xb3\x59\xae\xe1\xe1\x37\x88\x27\x81\x74\xe4\xea\x90\xd6\x1f\x3c\x1a\x93\x05\xcd\x66\x74\x61\x96\x93\x24\x2c\xc2\x54\xcb\x12\xf0\x2f\x3e\x94\x8c\xfc\x37\x92\x4e\x02\xf7\x1f\xfa\xe9\x35\x5d\xbf\xea\x6e\x6f\x8a\x57\xfc\x30\x16\xdb\x98\x4c\x92\x48\xa6\x9b\x8e\x4d\xa2\x81\xa2\x96\x8d\x61\xbc\x22\x8d\xca\xdf\xa5\x25\xa8\x1f\x97\x4b\x60\x05\xb7\x2e\x7c\xc2\x16\x79\x6e\xe0\x14\xb6\x46\xe3\x6f\x83\x57\xfc\xf7\x61\x75\xdb\x51\x57\x1b\x0c\x76\x39\xf2\x6a\x73\xc1\xa6\xa3\xb7\x63\xd7\x2d\xdf\xb6\x0b\xf4\x51\xa3\xc7\x81\x7f\x07\x0e\xb8\xca\xbb\x2d\x52\x54\xd5\x07\xbb\xf5\x4e\x13\x1e\xb8\xf1\xeb\xf6\xc0\xb6\x24\xb1\x1e\x13\xfe\x3d\x98\xd0\x9c\x79\x30\xcb\x17\xb6\x50\xe8\xb8\x43\xf0\xda\xf9\xd6\xf3\xbb\x6c\x21\xd3\x58\x6a\x22\x5b\x33\xb2\x62\x2b\x99\x85\x0b\x1f\x19\x74\x4a\xf3\xa2\x0a\x2b\x31\x92\xce\xae\xe7\x17\x7f\xde\x72\xdb\x36\x97\xf9\xf8\xec\x65\x1d\x04\x6a\xa2\x1a\x99\x8e\xe2\xef\x3e\x3b\x93\xab\x14\x3b\xfa\xd7\x22\x4d\x15\x59\x2e\x82\xaf\x6d\xa1\xcc\x8c\xe9\x3b\x23\x11\x9a\x39\xd6\x9f\x85\x35\x7d\x37\x40\x61\x12\x2a\x05\x47\xff\x3a\xf8\x72\xe0\xf3\x20\xbe\x34\xe1\xc9\x92\xd1\x44\x2f\xcf\x96\x2c\x9c\x93\x5a\xdd\xda\xb7\xde\xc3\x05\x01\x90\x99\x5b\x8a\x2a\xba\x00\x1b\x1d\x01\x47\x0e\x6e\x0d\x07\xe8\x24\xe4\x34\xad\x3d\x91\x8b\x1b\xa3\x89\x70\xbd\xb9\x89\x32\xc6\x42\xd5\x57\xb6\xe4\xfe\xed\x37\xdc\xb1\x24\x72\x41\x94\xfd\x85\xd0\x99\x5c\x33\x5b\xf9\x22\x91\x8b\x9a\x52\x6f\x0c\x83\x4e\xac\x61\x55\xe9\x58\xe6\xda\x3f\x8c\x91\x98\xcb\x7d\x77\x94\x66\x72\x65\x84\xc9\x5c\xbd\x65\x3a\xe3\x91\xea\x72\xf5\x0e\xc7\xa1\xb7\xdc\xce\x26\x67\x63\x7b\xf9\x5c\xb4\x75\xf9\x78\x68\x63\x2b\x1c\x02\x2f\x6a\x56\x34\x93\xe7\x02\xdb\xc8\xb7\x60\xe0\x57\xcf\xbf\xfa\xbc\x7e\xd3\xc1\x8b\x56\x1f\x3e\x51\x67\xeb\xaa\x35\x26\x96\xae\x9d\x1a\x50\x35\x9a\x13\xe1\x6d\xcf\xac\x6b\xcf\xd5\x7c\x1b\xb0\xc2\x5b\xe5\xd0\xb3\x1d\x92\x91\x3e\x84\x0e\x23\xf3\x3c\x41\x87\x60\xbc\x02\xcb\xa4\x84\xb4\x69\xa3\xc9\x01\x01\xc4\x12\x45\x34\xd2\x39\xdd\x09\xca\xc1\x11\xf1\xac\xee\x68\x51\xf2\xd9\x55\x4c\xb7\x91\x96\x2b\x19\x63\xe4\xfb\xcc\x88\xe2\x6b\x9e\x49\x88\x01\x27\x6b\x9a\x71\xb8\x88\x3b\xeb\xc5\x30\xc4\xdb\x7c\xc6\x06\xbe\xf1\x33\xcd\x64\xc4\xd4\xb6\xa5\xa3\xa9\xe1\x4e\x39\xdb\x77\x34\x68\xfa\xdc\x33\x2d\xae\x8e\x7b\x55\x8e\xed\xa2\x3a\xeb\x76\x8d\xf9\x00\x00\x6a\xa2\x2b\x83\x40\xc0\xd2\x5e\x62\x9e\xe4\x58\x71\x1e\xbc\x00\xb9\x10\x5c\x2c\x10\x41\xf6\xac\x37\x94\xf9\xef\xb6\x7a\x6d\xfd\x87\xb7\x36\x36\x9f\x1b\x55\x7f\xcd\x2a\x58\xc1\x95\x9b\x20\xb4\x41\x5e\x77\xd0\x32\x3e\xb2\xd5\xbd\x57\x2c\x5b\x38\x67\xc7\xe9\x78\x54\xfa\x3a\x8c\x44\x12\x66\xc9\x35\x58\x16\x80\x4b\x8b\x14\xd6\x6c\x35\xdf\x01\xce\x63\x5a\xce\x49\x9b\xf5\xbc\xc3\xf2\x49\x07\x2b\xfa\xce\x26\xf6\xb3\xa4\x37\x89\x8c\x8f\x29\x2e\x77\xdc\x2d\xd9\x4f\x6c\xde\xd9\x7c\x77\xd1\xb9\xcd\x0a\x59\x95\xac\x3b\x89\xcf\x6d\x43\x36\x4b\xd7\xe4\x51\x2d\x95\x0d\x86\x78\xf2\xb1\x8c\xf1\xe4\x11\x8c\x2c\xa4\x3b\x9e\x74\x34\xcc\xef\x6c\x77\x0f\xe3\x7c\xdb\x89\x96\xb6\xfb\xc7\x31\xd0\xef\xb1\x7b\xb2\x8f\xa1\x7e\x07\x06\xdd\x8c\xf5\xed\x83\x82\x68\xf2\xe8\x06\x7b\xd2\xf9\x2a\x90\x8e\xd7\x81\xec\x65\xbc\x27\x0f\x37\xe0\xb7\x6d\xac\xbc\x46\x7b\x1a\xf1\xdb\x06\x0e\x08\xca\xad\x86\xfc\xb6\x31\x5b\xec\xfc\x64\x8f\x63\xea\x89\x7a\x2b\x88\x3a\xb9\x07\x76\x81\xf3\x78\x2e\x02\xf2\xa8\x6e\x82\xee\x5b\xef\x72\x81\x1b\x5d\x06\x3b\x40\x79\x4c\xb7\x01\xf9\xb4\x5c\xad\xbf\x28\x8f\x80\x2d\x9d\xbc\x0e\xe4\xa3\x79\x1e\xc8\x47\xf2\x3e\x90\x1e\x8d\x3e\x29\x1a\x75\x74\x5c\x90\x8f\xe9\xbc\x20\x1f\xcb\x81\x41\x7a\x64\xfa\x84\xc8\xd4\xf6\x44\x07\xff\x07\xf9\x58\x3e\x10\xf2\xf8\x7e\x10\xd2\xee\x0b\x21\x5d\xda\x91\x74\xf6\x89\xec\x00\xe7\xb1\xfc\x22\xe4\x71\x7d\x23\xa4\x03\x4e\xb5\xf8\x48\x76\xb7\xfa\x48\x7e\x12\xb2\xa7\xaf\xa4\xcb\x5e\xba\xf8\x4c\x76\x37\xb4\xb7\xdf\xa4\x6e\x3b\x89\x5c\xa8\x0f\xf0\x9d\x74\xd9\x61\x57\x1f\xca\xee\x2e\x1f\xd5\x8f\x42\x3e\xd4\x97\x52\x37\x68\x9d\x8b\x85\xb4\xdf\xdf\x86\x16\x9c\x0d\xee\x16\xd2\x48\x2e\xfb\xc4\x1c\x2f\x31\xc7\x66\x9d\x83\x32\xc3\x3f\x4a\xf1\xd4\x4b\x9c\x01\x15\x2a\xfc\xa1\xcc\xbd\xa9\xfc\xb8\x9b\x6c\xb3\xb5\x3a\x7b\x0a\x45\x7a\x8d\xff\x33\x0c\x6d\xf3\x69\x0a\x03\x36\xc8\x44\x7d\x4a\x4d\x9f\x52\xd3\xa7\xd4\xfc\xbe\x52\x6a\x9a\x1c\xba\x8b\x8c\xa9\xd6\xc8\x8f\x89\x6b\x37\x6c\xd0\x9f\x41\x4e\x29\xbe\x68\x7b\x71\x13\x6c\x6e\x64\xfe\x51\xf8\x30\x43\x1c\x8a\xba\xb7\xb1\x6e\x07\x59\x51\x1d\x2d\x49\x94\x71\xcd\x32\x4e\xe1\x92\x50\x12\xc9\x2c\x63\x2a\x35\xf4\x5c\x2c\x88\x95\xf3\xb4\xc4\x36\xc9\x7b\xe5\x9a\x56\xf6\x30\x3d\x38\x25\xd7\x66\x81\x4c\x44\x34\x55\x39\xdc\xdb\x72\x45\xa1\xa5\xd4\x18\xdc\xa9\xb5\xdb\x92\xaf\xa5\x5e\x6e\x75\x4a\xf6\xba\x3f\xdb\xde\xf4\x22\xde\xe9\x08\x5d\x23\x30\x14\x5d\xcf\x6d\x67\xe6\x01\x51\x2c\xa5\x19\xb6\xef\xc9\x35\xa1\x7e\x4e\x2f\x3e\x02\x95\xec\xcc\x2a\xb8\x80\xf3\xa8\x59\xb0\x88\xdd\x79\xf9\x80\xe7\x62\x31\x84\xfe\xfa\xd8\x68\x1a\x3a\xd4\x1b\xc5\xa4\x0a\x89\x25\xad\x1b\x95\x08\xb6\x80\xc5\x59\xc2\x6b\xd4\x11\x36\xe7\xf7\xae\x55\xd4\xaf\x3f\xff\x72\x29\xf5\xaf\x3f\xff\x32\x24\xa7\x49\x62\x0b\xce\xfb\x63\x87\xc7\xb5\x75\x99\x28\xa2\xd3\x2a\x57\xd8\x21\x8c\x6a\xae\x20\xe8\x01\x8b\x9c\xd8\x8d\x68\x89\x63\x0e\xc9\x29\xb0\xb2\xdd\x8a\xbf\x16\xb6\x80\x9a\x54\x38\xf4\xb4\x0a\x99\xdd\x32\xb4\xf1\x31\x9b\x31\xff\xb0\xbb\x01\xbe\x80\x83\xd7\x43\x15\x60\x1f\x5e\x22\xf4\xa1\xca\x31\xe8\x03\x97\x18\xae\x22\xd5\xaa\xf3\x23\xba\xd5\xca\x83\xed\x1a\xb1\x57\xd3\xa6\x76\x94\x2d\x45\xb6\x2c\x57\x55\x09\x49\xd8\x42\x0d\x10\x85\xe1\x5a\x36\xa8\xe2\x95\x9a\x3a\xc4\x50\x42\x1d\xba\xc5\x1d\x81\x41\x7c\x17\x7c\x43\xc1\x9c\x9a\x9d\x4d\x0f\x2e\xb7\x5f\x76\x4d\x90\x52\x8c\x5a\xb1\xa5\x8f\xea\xda\xaa\x97\x9f\x02\x30\xb4\x20\x01\x84\xdd\x1b\x06\xa6\x80\x3a\x5c\x89\x64\x43\x74\x46\xe7\x73\x1e\x21\xa4\x5c\xf5\xae\x36\xab\x3f\xf0\xb8\xa7\x06\x85\xc0\x19\x85\x74\x4a\x3f\xf3\x5c\x7a\x5e\x13\x2f\x9c\xbb\xbe\x88\xdc\x16\xc8\x54\x51\x79\x0e\xce\xd2\xb0\x3f\x28\xaf\x04\x88\xbc\x03\x9b\xe6\x41\x91\x46\x4a\xf0\x6c\x14\x20\x30\xca\x1d\x0a\x65\xb1\x0b\x3b\x52\x74\x85\x57\x01\x2b\xf6\x34\x0f\x0a\x15\xae\x9c\x11\xce\xdb\x32\xe2\x5a\x56\xac\x9b\xcc\x36\xb8\x68\x37\x73\x0b\x50\xdd\xb6\x1d\xbc\x5c\x82\x8f\x59\x17\x52\xc1\x6f\x64\x56\x95\xa0\x8f\x6a\x39\x80\xfb\x40\xd9\xd1\x5d\xb0\x11\xbe\x4a\x13\xce\x54\xa9\x2b\xfa\xc8\x06\x4d\x19\xdb\x0e\x0c\xcc\x44\xe0\x21\x14\x8b\x5a\x98\x70\x0f\xbe\x9d\x22\x48\x8a\xc6\xa2\x95\x7d\xd6\x6e\xff\x70\x91\xc8\x19\x4d\x9e\x3e\x6b\x31\xca\x7d\x1a\x00\xbc\x86\xc5\xd8\x25\x1a\xdd\x59\x66\x95\xd8\x01\xd8\x46\xf3\xa0\x66\x8f\x95\x61\xca\x83\x6e\x3b\xcb\x96\xd5\xfa\x5b\xc4\xa0\x3d\xe5\xba\x71\x6e\x1d\x1a\x85\xc2\x82\x84\x86\xab\x88\x95\x9f\xf2\xca\xd6\x30\x8e\x62\xee\x4e\x26\x51\xc1\x74\xb3\x51\xb9\x1a\x82\xc2\xb4\xaa\x27\x8c\x46\x98\x87\x5e\x2a\xaa\xdd\xc5\xee\x58\x20\x1c\x21\xf0\x0a\x50\x9c\xc2\x74\xb1\x20\x7d\x2d\xd0\xae\xd2\xc5\x4a\x55\x47\x23\x39\x88\xa2\xcd\x37\x36\xf0\xc5\x22\x8a\xcd\x09\x9d\xf5\x52\xa4\x37\x6f\x47\xcf\x71\x43\xfd\xdf\xf2\x23\xa4\xbe\xdc\xef\x4c\xf0\x05\x67\x90\xda\x12\xbe\xdc\x8e\xcd\x23\x2d\xec\xc5\x9c\xe3\x6f\x0e\x16\x63\x99\xed\x09\x0c\x78\xa3\x05\x1a\xf0\x4c\x17\x70\x90\x1b\x68\x1e\x0a\x58\xaa\xe4\x8a\x41\xe3\x52\x19\xc9\x44\x91\x25\x5d\xa3\xed\x5e\x1d\x61\x58\xc8\x06\xff\xd5\x42\x68\x33\xe6\x95\xa8\xe6\xda\x19\xdf\x94\xb3\x1d\xc2\xe8\x56\xa2\xb2\x84\xdc\xa8\x27\xad\x54\xd1\x76\xcb\x85\x22\x77\x93\xb3\xb1\x2b\xb3\xfa\xee\x7c\x5c\x5b\xc3\x13\x3f\x5d\x4e\x95\x8a\xcd\xd5\xbc\xe5\x99\x41\xbb\x9b\x60\xf7\xe1\x2e\x81\x43\x29\xd5\x9a\x65\xe2\x84\xfc\xdf\xe1\xff\x36\x3f\x79\x3f\xb8\x2d\x22\x28\x06\x5c\xe8\x81\xcc\x06\x38\x43\x5d\x47\xf2\xf2\xd3\x15\x21\xf7\x17\x2e\x2f\xcb\x97\x5a\xd0\xb2\x9b\x7c\x65\x31\x93\xdc\x30\x8f\xb9\x20\x15\x36\x0a\x86\xca\x67\x3a\x61\x46\x56\x46\x75\xcb\xce\xd5\x3c\x66\x21\x2d\x35\xa2\x4a\xb7\x33\x4b\xf7\xbb\xb2\xd3\x83\xe2\xc6\xb6\xb1\x95\x76\x66\xdb\x81\xad\x2c\x41\x5f\xb6\x56\xa7\xa7\x9e\x12\xf2\xac\x05\x0d\x0b\x2b\x3f\x8a\x9a\xca\x55\x36\xd6\x4b\xa6\x18\xc9\xa8\x58\x30\x75\xec\x8c\x76\x50\x01\xb9\xb1\xf0\x2e\x7e\x2a\x05\xb9\xec\xd5\x01\xa7\x10\x42\x59\x39\x08\x58\x0b\x98\x9d\xa6\x45\x56\x9e\xe3\x19\xa0\x00\xd7\x95\x82\xb5\x52\x00\x7c\x74\x2f\x0a\xd6\xb2\xf7\x92\xbc\x55\x29\xd8\xaf\x3f\xff\x32\x39\x1b\xff\xfa\xf3\x2f\x06\x10\xbf\xfe\xfc\xcb\xbb\x73\xf3\x8f\x16\x79\xa7\xa7\x63\xf0\xe9\x44\xc7\xd4\x03\x34\xe4\x76\xc5\xb8\xd1\xc6\x57\x7e\x82\x8a\x31\x79\xaa\x18\x73\xc6\x31\x20\x63\x74\x95\x26\x8c\xa8\x8d\xd0\xf4\x3e\x54\x79\xd5\xff\x4c\xa7\x8d\x7a\xb5\x95\x1f\xeb\xf4\xe6\xe6\xb1\x9d\x4d\xcc\x53\xab\x65\xb6\xab\x2e\x9b\xab\x76\x29\x35\x83\xb9\x0d\xf6\xb4\x00\xc1\xe6\xc3\x38\x77\x41\x0b\x47\x40\xf0\x78\x9c\xa4\x79\xf4\x19\x4b\xe4\xdd\xb3\xa3\xea\x92\x3d\x60\x23\x54\x09\xd7\x8a\x25\x73\xe7\x76\x6e\x81\x03\x1a\xc2\xc0\xc0\x39\x59\x32\xa2\xef\x24\xe0\x1a\xd4\x55\x72\xbf\x21\x71\x30\x0c\x68\x53\x16\x2b\x6f\x39\xbb\x2b\xe1\x76\xef\x82\xb6\x4a\xc3\x2b\xf3\x34\x24\xdc\x0d\x9a\x15\xec\xf3\xed\xfc\xe0\x6e\x29\x13\x7b\x48\x27\x70\x44\xd3\x69\xc9\x8c\xff\x6c\x68\xcb\x1f\x96\x54\x3d\x5d\x6d\xde\x43\x30\xe5\x33\x43\x73\x2c\x79\x6f\xbb\xcc\xb6\xf2\xbe\xb3\x3f\x00\x8a\xe1\xea\x30\xd2\xa5\x4c\xb4\x89\xcd\xac\x1d\xb1\x0d\xc6\x8b\x25\x04\x74\x00\x7d\x46\x5f\xd2\x8c\x25\x66\xb1\x6e\x9d\x60\x3c\xb5\xdb\xe9\x8c\x14\xb0\xdd\xba\xdd\xee\x6e\xc8\xac\xa0\xae\x79\x48\xf9\x69\xde\x6b\xb1\x9d\xe6\xad\xb4\x5d\x6e\x01\x18\x87\x89\x4f\x28\x42\x59\xf3\x41\x02\x24\xd5\xb6\x03\x00\xef\x70\xb1\x8f\xf6\xa5\x0b\x29\x06\x36\x28\xc9\x7a\xc0\xc8\xdd\x92\x65\xcc\xda\x42\xe6\x32\x5b\x31\xdf\x30\x01\x31\x50\x38\x7a\x07\x43\xdd\x2e\x60\xbc\x0a\x42\x8f\xa0\xb8\x57\x63\x27\xf7\x90\xb7\xaa\xe1\x93\x9f\x4e\xee\xda\x22\xc7\xcd\x63\x06\xcc\x9c\x94\xa4\x32\x76\x49\x6e\xe8\xf4\x28\x48\x73\x87\x40\xcf\x22\xd4\xb3\x11\xdb\x3a\x67\x75\xf8\x2e\xf8\xfa\xcf\x6e\xc6\xd7\x87\x83\x9b\x3c\x04\xe4\xed\x43\xd6\x59\x97\x03\x60\xef\x04\x6d\xe2\x05\xd7\xde\x2d\xa5\x42\x53\xa4\xd9\xbe\x15\xfb\x8c\xd0\xdb\x9a\x2e\xd1\x45\xa8\x23\x7b\xa5\xa1\x74\x94\x90\x48\x57\x29\x89\xec\xde\xaf\x56\x39\xe9\x3f\xf7\xa4\x2b\xfa\x51\x69\x69\x43\xaa\x5f\xb4\x15\xa8\x69\xdf\x55\xfd\x94\xae\x07\xf0\x28\xdc\xf8\x9e\x84\x52\xff\xb0\xb5\xfe\xd9\xc6\x7c\xdf\x3e\xe8\xe9\xe5\xf9\x61\x87\x2c\x9d\xfd\xac\x58\x6d\x39\x4d\x16\x8a\x7b\xe9\xc4\x96\x4a\x37\xd1\x8b\x6e\xd2\x36\xbe\x89\x2e\xe1\x82\x5e\x7a\x45\x2f\xdd\x44\x10\x46\x5a\x86\x90\x76\xf0\xc6\x34\x0a\xdb\xdb\xe8\xd5\x55\xda\x0e\xb8\xb0\x1c\xfc\x9e\xaa\x67\xdb\x62\x37\x06\xd0\x98\xd5\xb4\xd9\xc7\x8e\x61\x55\xd0\x9a\xdc\xad\xe4\x50\x81\x46\x6b\xb5\x64\x07\xef\xa8\x08\x04\x29\x80\xd1\x06\x8b\xaa\x37\xcb\xdc\x1c\x87\xac\x47\xbe\xc8\x7e\xb4\xeb\x45\x68\x01\xf3\x25\x33\x62\xaf\x33\xf0\xca\x6c\x9b\x77\xe3\xd2\xd1\x7c\x62\x00\xe1\xac\x9f\x2d\x1e\x4a\x83\x4f\xe6\x00\xfd\x3d\xa2\xad\xa8\x80\x82\x14\x2e\x74\xc0\x86\x72\x34\x8b\x2c\x7b\xb1\xcd\xfd\xb9\x66\xb1\xcc\x32\x2b\x1a\xdd\xf0\xdd\x13\xa6\x88\xdb\x9b\xe7\x77\x7f\x24\x22\xd0\x2d\xf9\xbb\x66\x6b\x98\x02\xbe\xbb\x3f\xfc\x3e\x5c\xb2\x76\xf7\x83\x54\xd6\xee\x10\x6e\x72\xc2\xe6\xda\xb5\x3f\x2c\x78\x08\xdc\x9e\x0e\x86\x19\xe2\x5f\x44\xe8\xbd\x62\xd4\xf2\x43\x55\xae\xec\x93\x52\xd0\xf6\x67\x96\x5a\x87\x3a\xd2\xe1\xa7\x9a\x55\x3c\x99\x8c\x4b\x1f\x7d\x6d\xe0\x82\xc1\x12\xf3\x68\xfd\xd2\x8b\x08\xf3\x0f\x8a\x59\x58\x31\xbd\x94\xf1\x1e\x9c\xe1\x2d\xbe\xf0\xb8\x52\x3b\x6e\x19\x89\x3a\xee\xdb\x0b\x8e\x33\x63\x62\x3b\x27\xd6\x5a\x15\xd4\xc9\x75\x2c\xc6\x51\xdc\x6a\x9f\xb2\xe1\x62\x48\x5e\x5f\x4c\x8e\xc8\xf8\xdd\xe4\x88\x30\x1d\x0d\x9f\x91\xb7\x79\xa2\x79\xda\xe6\xdb\xb0\x20\x02\xbe\x7f\x75\x7d\x68\xd4\xb0\x05\xa4\x4d\xfe\xb6\x7c\x55\x29\xd5\xcb\x3d\xce\xf1\x70\x6c\x9e\xff\x18\xc7\xd8\x76\x82\xed\x14\xc5\x3f\x41\x58\xe6\xb0\x38\x2a\xdc\xa6\x3b\x8b\xae\x87\x41\x08\x1b\x2e\x4e\xc8\x80\xb0\x7b\x1a\xe9\x13\x72\x3c\x97\x92\x0c\x6c\x58\xd8\x09\x39\x9e\xd1\x8c\x5c\x5e\x4d\x2e\x4e\x30\xe4\x8c\x09\x9d\x6d\xc8\xaa\x4d\x3c\xbf\xba\x7c\xf3\x37\x4b\x39\x37\x84\x71\x30\xbd\x50\x32\x3d\x80\x49\xd0\xff\x65\xfe\x89\xb3\x4c\x0f\x5c\x40\xd8\xa4\x6d\xfb\x6b\x9a\xf0\x98\x16\x46\x3e\x48\xb5\xc0\xee\x66\x3a\xd4\xce\xac\xfc\x74\xc1\xb9\xad\x8c\x90\xc9\x64\x6c\x20\xec\x31\x00\x2a\x10\xf0\x06\xd0\xdd\x79\xd5\x48\x43\x44\xec\x8c\x39\x40\x58\xfb\xe1\x5c\x66\xab\x13\x07\xf6\x69\xfe\xfc\xf9\x67\x91\x19\x18\xfe\x62\x27\xb6\x7c\x50\x27\x83\x17\xa2\x1a\xac\x0a\x86\x33\x04\x23\x2b\x8e\xb0\x1c\x7a\x60\xe1\xfd\x41\x33\xe0\x18\x2d\xe1\x25\x7b\x54\x60\x40\x00\x3c\xae\x1a\x69\xb7\xfe\x98\x83\x76\x2d\x91\xd0\x81\x20\xb5\x0f\xc5\xa3\x55\x47\x9e\x39\x3a\x7b\x3b\xee\x1a\xf5\x01\xc4\xa8\x7e\xed\x3e\x95\xf2\x3a\xd2\x99\xd5\xda\xac\x4b\xec\xab\x07\x53\x5a\x05\xc3\xf6\x13\x6d\xd0\xaf\x30\x26\x7f\x57\xa6\xe5\xf3\xaa\x4f\xaa\xe8\x6c\x58\x78\xca\xcd\x3c\x4d\xa2\x2d\xf8\xd0\xcd\x43\xeb\x57\x0d\x6e\xf4\x4e\x98\x18\x35\x97\x7a\xd9\xe6\xf3\x20\x99\x48\xe1\x43\x09\x80\x12\x61\x7f\xcf\x3d\x94\x35\x48\x53\x32\x00\xc6\x38\x7c\x08\x4b\x85\xde\xa9\x3e\xac\xac\xc7\x12\xdc\x91\x9a\x45\x4b\xc1\xa3\xdd\x32\x64\xd5\x0f\x98\x45\xd1\xec\xcf\x57\xa9\xf4\xaa\x63\xdf\x1a\xa1\x3c\x39\x54\x84\xa7\x1a\x33\xdb\xe6\x3c\x63\x77\x34\x49\x5a\x96\x8a\xd4\xc2\x1a\x65\x73\x85\xc1\x52\x4c\xcc\x25\x66\x08\xd8\xb0\xbc\xf6\xab\xd1\xea\xbb\x83\xc7\x3e\xfc\x30\xcc\x30\x43\x8c\x1f\x63\xf7\xe0\xb0\x6a\x73\x7d\xe1\x19\xc8\x39\xf9\x12\xe3\xba\x61\x87\x30\xd6\x45\xb4\x94\xe4\x1a\x99\xb6\x6d\x4f\x98\x72\xb1\x50\xcd\xbe\xaf\x4e\xfb\xed\x40\x0c\xd2\x70\x82\x4d\x0d\x40\x46\x63\x97\x68\xf3\xc1\xc1\x60\x15\xe3\x16\xca\xe3\x3e\x94\xc7\xce\x23\x56\x0b\x85\x0e\x10\xa8\x49\x95\xa8\xd9\xdc\x5b\xfb\xb4\x17\xca\x5b\x14\xaf\x83\x0c\x90\x6c\x55\x76\xf7\x0a\xa5\xad\x54\x37\xf7\x41\x44\x03\x8c\x11\xd8\xf6\xa8\xb9\x17\x40\xd7\xf2\x7a\xe5\xa7\x2b\x5b\xaa\xf6\x18\x2d\xd7\x63\x53\x7c\xd0\x5b\x77\xcb\x36\x16\xb5\x53\xca\x6d\xf1\xbc\xe6\xe9\x8d\xca\x4a\xd8\xbd\xce\x68\x05\xa6\x74\x26\x73\xdd\x81\x91\x3c\x96\xe6\x28\xa4\x36\xb7\xaf\x1b\x66\x5c\xe2\xc3\x2d\x51\x3c\xf0\x48\x73\x34\x5d\xcf\x30\x7a\x86\xf1\xfb\x66\x18\x42\x6a\x27\x56\xd5\x82\xa5\x39\xda\xa6\x63\x9c\x4d\xb7\x08\x9b\x9d\x20\x50\x27\xf2\xb5\xc4\x81\xda\xc7\xea\x01\xd6\x72\x8f\x3b\x84\xf4\x3c\x2c\x98\x27\xfd\xad\x02\x77\x7a\xe0\xc3\xf6\x11\x79\xff\x8e\x63\x0b\x2c\xbc\xbe\x24\xe0\x60\x32\x04\xac\xe7\x59\x93\x65\xde\x46\xe4\xda\x73\xbe\x80\xf4\xa2\x6b\xc8\x8d\x73\x99\x5e\x68\x36\x7f\x3a\x63\x11\xcd\x95\x8d\x83\x6b\x71\x25\x14\x4b\x8c\x58\x06\x63\x14\xb1\x74\xcf\xd0\x14\xff\xd6\xa6\x7c\x55\x22\x03\xdb\x58\x2c\x86\x0c\x9e\x94\x51\x6f\x47\x65\xcc\x1b\xfc\x69\x6e\xbb\xff\xf7\xfa\x95\xfb\xd7\xcd\xd9\x04\x7e\xa9\x1f\x1c\x47\x7a\xc3\x35\xb3\xe1\x74\x54\x38\xa4\x70\x8e\x58\x08\x29\x24\x2f\x06\x2f\xbf\xf8\xa2\xc1\xcc\xff\xf1\x50\x1d\x83\x2f\xba\x71\xe0\x1b\x0c\xdb\xec\x96\x7d\x46\xb4\x6c\x50\x1a\x71\xa4\x3e\xf1\xac\x4f\x3c\x6b\x77\x75\xf6\x89\x67\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xd5\xed\xb8\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\x3e\xf1\xac\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\x3e\xf1\x2c\xb4\x8b\x9e\x8e\xf5\x89\x67\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xf5\x89\x67\x7d\xe2\x59\x9f\x78\x56\xfd\xf4\x89\x67\x7d\xe2\x59\xf1\xe9\x13\xcf\xfa\xc4\xb3\x3e\xf1\x2c\x38\x68\x9f\x78\xe6\xc1\xa2\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\xea\xe7\x53\x26\x9e\x35\x34\x4e\x20\x64\x60\x2b\xf4\x86\x7e\xeb\xd2\x80\x3f\x28\x27\xd8\xbb\xf1\x80\xc2\xdc\xd5\x5b\xd5\x57\xe6\xee\x2b\x73\xf7\x95\xb9\xfb\xca\xdc\xa1\xe5\xf5\x95\xb9\xfb\x00\xa9\x3e\x40\xaa\x0f\x90\xea\x03\xa4\xfa\x00\xa9\x3e\x40\xaa\xfc\xf4\x01\x52\xe5\xa7\x0f\x90\xea\x03\xa4\x7e\x53\x81\x05\x7d\x80\x54\x1f\x20\xd5\x07\x48\xf5\x01\x52\x3b\x0f\xff\xce\xe8\x58\x1f\x20\xd5\x07\x48\xf5\x01\x52\x7d\x80\x54\x1f\x20\xd5\x07\x48\xf5\x01\x52\xde\xa7\x0f\x90\xea\x03\xa4\x8a\x4f\x1f\x20\xd5\x07\x48\xf5\x01\x52\xc1\x41\xfb\x00\x29\x0f\x16\x7d\x80\x54\x1f\x20\xd5\x07\x48\x55\x3f\x7d\x65\xee\xbe\x32\x77\x5f\x99\xbb\xf2\xe9\x2b\x73\xf7\x95\xb9\xfb\xca\xdc\x9d\x66\xe8\x2b\x73\xf7\x95\xb9\xfb\xca\xdc\x7d\xa1\xd5\xbe\xd0\x6a\x5f\x99\xbb\xaf\xcc\xdd\x57\xe6\xae\x5f\x7f\x5f\x99\xbb\x67\x18\x3d\xc3\xe8\x2b\x73\xf7\x95\xb9\x2b\x9f\xbe\x32\x77\x5f\x99\x1b\x3e\x7d\x65\xee\x9a\x4f\x5f\x99\xbb\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\x3e\xf1\xac\x4f\x3c\xeb\x13\xcf\xfa\xc4\xb3\xca\xa7\x4f\x3c\xeb\x13\xcf\x7e\x53\x09\x1b\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xf5\x89\x67\x3b\x0f\xff\xce\xe8\x58\x9f\x78\xd6\x27\x9e\xf5\x89\x67\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\xf5\x89\x67\xde\xa7\x4f\x3c\xeb\x13\xcf\x8a\x4f\x9f\x78\xd6\x27\x9e\xf5\x89\x67\xc1\x41\xfb\xc4\x33\x0f\x16\x7d\xe2\x59\x9f\x78\xd6\x27\x9e\x55\x3f\xff\xd9\x95\xb9\xa1\xdc\x76\x5b\x5d\xee\x2b\xf3\x50\x03\xfd\xae\x1e\xba\xc4\xa7\x83\xeb\xc4\xf0\x3a\xac\x89\x0c\x06\x12\x33\x28\x78\x13\xe3\x21\xda\x4c\x0a\x6b\xef\x92\x2f\x8c\x0a\x3a\x3d\x80\xf1\xa6\x07\xc0\x2e\xed\xb3\xa1\xa1\xe9\xdc\x28\x50\x1a\x04\x34\x18\x20\x91\x77\x2c\xc3\xd5\x60\xb8\xa2\xb7\x38\x45\xe4\x8a\x6b\x6d\xe8\x2e\x77\x99\x2e\xa1\x41\x23\x29\x14\xc7\x82\xe4\x68\xd7\x9b\x1e\x70\x31\xe7\x82\x6b\x36\x3d\x20\x03\x02\x41\x72\xde\x76\x1c\x55\xb7\xeb\x24\x09\x55\x7a\x48\x8a\x9d\x05\x41\x62\xd6\xca\x63\x26\x34\x8f\x68\x62\x17\xb8\x3d\x0e\x17\x84\x26\xe9\x92\x8a\x7c\xc5\x32\xef\x39\xa8\x05\x1e\x1a\xd5\xd2\x72\x6b\x86\xc2\xa8\x90\xa0\xfb\x04\x71\x43\xe4\xab\xd9\xae\x85\xb0\x41\x6c\xdc\x62\xf2\x13\xdf\x3c\x83\x88\xe2\x19\x69\x72\x65\x75\x4e\x1e\xdd\xe2\xff\xc9\x3c\x88\xff\x66\xc9\x5b\x2a\xb7\x07\x5c\x9b\x96\xe1\x81\x45\x4b\xc7\xf3\xea\xcd\x06\xe5\x3a\x8c\xe8\x90\x24\xf2\x0e\x49\x01\x5a\x8e\x0a\x5b\x0a\x0a\x76\x7f\x06\xd3\x02\x5e\xf6\xf7\x09\xd7\x2c\xa3\x46\xaf\x0f\x8d\x3b\x9d\x92\x01\x26\x25\x19\x34\x59\xa5\x34\xe3\x4a\x8a\x23\x02\x99\x89\xce\x26\x60\x07\x9c\x4b\x49\x66\x34\xfb\xf5\xe7\x5f\xca\xa9\xfe\xb0\xd7\x54\xe5\x5c\x86\xa7\xb3\x7f\xe4\x34\xf9\x13\xc6\xd0\x3a\x19\x95\xcf\xad\x70\xca\x15\x3c\xe3\xec\xec\xc5\x84\xe1\x1b\xf9\xa3\x59\x05\x75\xf1\x5f\x33\xf7\x47\x04\x7f\x0c\x87\x43\xf2\x93\x37\xb7\xce\x72\xe6\x92\x60\x8a\x38\x52\x1c\xfd\xaf\x24\x1c\xb7\x6e\x5d\x0b\xb5\x93\x94\xeb\x33\x8b\xe6\xa2\x71\x41\xa1\x09\xf6\x5c\x23\x4c\x53\xb7\xa8\xd0\xf8\xde\x3a\x97\x54\x3d\x85\x91\xde\x1b\xf6\xf1\xac\x9c\x74\x52\xcc\x49\x75\x79\x0a\xde\x09\xfc\x01\xd0\x30\x48\xd5\xed\x10\x85\xe1\x51\xce\xe1\x59\xb0\x3e\xc1\x7f\xf3\xe7\xcf\x5f\xbe\xc2\xff\xc7\x5f\x8a\x77\x6e\x96\x32\xd3\x83\x88\x67\x51\xce\x35\xc8\x4d\xf6\xa5\xd0\x44\xff\xfa\x57\xe3\xdb\x12\x66\x7c\x8a\xcf\x3c\x2b\x1e\x4a\x69\xc6\xac\xcc\xbd\xc8\x64\x9e\x1a\x99\x7b\x3a\xd5\x34\x49\x9e\x06\xbd\x4c\xb6\x20\x3d\xc6\x9a\x14\x14\xc1\x8d\xe6\x70\x95\x26\x89\x67\x44\x82\x2b\xf8\x06\x71\x00\xb5\xa4\xb0\x02\x44\xcd\xe5\x45\x4a\xe2\x62\x2e\x7d\xa2\xa8\x8e\xc8\xe0\x88\xbc\x07\x38\x1c\x0f\xc9\x0d\xdc\x2c\x62\x6f\x56\xed\xa0\x2b\x99\x31\x92\x1a\x01\x5f\x29\xbe\x66\x64\x86\xd9\x02\x1b\x67\xba\xb4\x26\x65\xc2\x54\x44\x53\x46\xa2\x25\xcd\x68\xa4\x59\x66\x97\x7d\x81\x41\xd7\x41\xd4\x7f\x0a\xa4\x7d\x45\x63\x36\xc8\x53\x44\x0b\xf5\xac\x20\x38\x90\xa2\x86\xe4\xe1\x8e\xcd\x8c\x66\xc0\x90\x40\xf8\xe7\x1d\xb3\x34\x91\x9b\x15\x13\x41\x72\x89\x6f\xa7\x99\x8c\x2d\x82\xc2\x98\xe6\x0e\x19\x9a\x93\x49\xa1\x99\x88\x0b\x04\xa7\xd1\x2d\xfe\xf3\x27\xf3\x68\x39\x32\xf9\xc3\x9f\x6b\xf0\x3e\x66\x6b\x3b\xf0\x1f\xc8\x16\xee\x87\xa4\xe8\x26\x49\xa9\x6a\xe4\x6b\x70\x3d\x37\x58\xf8\x9a\xed\x11\x73\x8c\x45\x2d\xc9\x7d\x68\x53\x8e\x13\x21\x66\x5a\x43\x01\x36\xd4\x90\xc2\x2d\xd2\xd9\x00\x42\x2e\xe4\xa6\x3d\x82\x13\xa1\x03\xaf\x04\x5f\x03\x17\x31\x8f\x40\xa5\xbc\x5b\x42\xc2\xb3\x2f\xa0\xfa\x11\x56\x56\x7b\x09\xd2\x26\x73\xdb\xa4\x6d\xb9\x71\x64\xff\x35\x93\x7a\x39\x24\x18\xf4\x08\xbc\xe2\x3e\x35\xc2\x87\x4e\x36\x9e\x8e\xf4\x14\xda\x85\x04\xa3\x59\x3d\xba\x29\x48\x94\x31\x9b\x5f\xa1\xec\x9d\x96\x19\x11\x3c\x79\x76\xe4\x72\x24\x62\x36\xa7\x79\xa2\x15\xc1\x6d\x19\xd0\x65\x71\x8d\xa8\xac\x25\xb9\x33\x14\x72\x64\x15\x32\xb3\x88\x0b\xfb\xa7\xb9\x85\x96\x5e\x16\x5d\x33\x30\x76\x0f\x4c\xe6\x76\x9a\xd0\xa8\x5c\xe1\x9d\x1a\x90\x1f\xac\xbc\x63\x96\xe2\xe6\xf8\xfb\x91\x65\x06\x46\x7a\x04\x67\x80\x9b\x12\x3b\x9b\x3c\xe5\x22\x4a\xf2\xda\x15\x2f\x19\x89\xa8\x91\x28\x61\x80\x72\x18\x82\xcc\x57\xc8\x62\x33\x30\xdc\xb3\xc0\x4a\x2e\x6a\x3b\xa6\x6c\xaf\xad\xb2\x30\x43\x88\xb6\x87\xaf\xdf\x67\x10\x3d\xb6\xd7\xb0\x33\x21\x58\xa6\x02\xa7\x61\x35\xe5\xa0\x28\x22\x10\xb5\xaa\x32\x7c\xc6\xa8\xb9\x47\xd1\x2d\xa1\x0b\xca\xc5\x91\xc5\x06\x74\x67\x24\x77\x74\xa3\x6c\x14\x7b\x10\x8b\x5d\xe4\x01\x86\x1c\x1c\x11\xc1\xd6\x2c\xab\xe0\x5b\x50\x6b\xef\xd8\x90\xa7\x84\x02\x61\xc0\x2a\x0a\x07\x5d\x2a\x95\xe2\xb3\xc4\x4d\x5c\xc6\x54\x99\x17\x6e\x52\x16\x85\xf5\x38\xdc\x5b\x7d\x94\x59\xb3\xc6\x58\xab\x8c\x85\x75\xb8\xdd\x6f\x81\x55\xc4\xbe\xff\x5c\x69\x99\xd1\x05\x73\x5f\x29\x4d\x75\x8e\x80\x41\x57\x12\x8b\x2f\x3d\x23\xff\x2d\x17\xb1\xa1\x43\x0e\xa4\x69\x92\x67\x34\x29\xbf\x89\xa4\x40\x8f\xae\x3a\x21\x3f\xfc\xdd\x7c\x63\xc6\x67\xb1\xcd\xd0\xb4\xdf\x4e\xc5\x60\x30\x98\x0a\x9a\x72\x97\xe8\x49\x68\xca\xd9\xbd\x66\x02\x9e\x1a\xde\x7e\xa9\x86\x5c\x1e\xaf\x5f\x4c\x05\xce\x78\x96\x2b\x2d\x57\xd7\x0c\x5d\x54\xe7\x0c\xd4\x28\xa0\xd3\x95\x74\x4a\x30\xac\x10\x81\xe1\xab\x8a\x69\x35\x8c\xb2\x78\x98\x66\xd2\x40\x20\x02\xa2\x33\x94\xd9\x62\x2a\x0c\x35\x83\x37\x40\x30\x39\x21\x35\x8f\x55\x3d\x1c\xb8\x94\x32\xc6\x16\xbf\x4d\xb8\xd2\x7f\xd9\xfa\xe5\x0d\x57\xba\x0a\x20\x6f\x4d\x16\xee\x5c\x2c\xf2\x84\x66\xfe\x4f\x00\xaf\x48\x9a\x43\x2b\xac\x22\xa0\xa1\xad\x1d\xf8\xcc\x3f\x06\x76\x9b\x06\x3a\x30\x52\xb4\x64\xab\x32\x9d\x54\xa6\x4c\x9c\x8e\x47\xdf\x7d\x76\x53\xfd\x7e\x37\x88\xd5\x85\x0a\xdb\x70\xac\x72\xca\x01\xfb\x47\xce\xd7\x34\x31\x04\xd5\xe2\xf5\x76\x7c\xb1\x87\xbc\x35\x66\x2f\xef\x74\xab\xb8\x5a\xad\x3a\x61\x96\x6a\xbd\xfd\x18\x19\x8f\x8b\xb1\x3b\x66\xb1\xdd\x1e\xae\x03\xa8\x85\x25\xf5\x34\x64\xcf\x90\x73\xe0\xee\x80\xf1\x43\x10\x01\x58\xa6\x9c\xf2\x17\x49\xb1\x66\x99\x26\x19\x8b\xe4\x42\xf0\x7f\x16\x83\x2b\x17\x7f\x00\xfd\xb6\x76\x18\x05\x17\x9a\x65\x46\x58\x80\xab\x8e\xd6\x56\xa3\xf6\x67\xcc\x4c\x43\x72\xe1\x0d\xe8\x22\x9f\xde\x1a\xd1\x90\x8b\xb9\x3c\x81\x7a\x40\xea\xe4\xf8\x78\xc1\xb5\x43\xec\x48\xae\x56\xb9\xe0\x7a\x73\x0c\x9e\x51\x3e\xcb\xb5\xcc\xd4\x71\xcc\xd6\x2c\x39\x56\x7c\x31\xa0\x59\xb4\xe4\x9a\x45\x3a\xcf\xd8\x31\x4d\xf9\x00\xd6\x2e\xe0\x66\x0d\x57\xf1\x93\xcc\xde\x04\x75\x18\xa2\x03\xbb\xe4\x03\x50\xb7\xe9\x18\x0c\x06\xdb\x24\x5a\x94\x7d\x91\x8d\x17\xd0\x76\xa1\x1f\xd7\x17\x37\x13\xe2\x66\x0f\x26\x1c\x23\xf0\xcb\x37\x55\x79\x0e\x06\x68\x5c\xcc\x9d\xbc\x02\xc6\x68\x5f\x6d\x47\x96\x99\xf0\x80\xc8\xaa\xf2\xd9\x8a\x6b\xe5\x15\x92\x91\x43\x72\x56\x58\xa9\xf3\x34\xa6\x9a\xc5\x43\x32\x12\xe4\x8c\xae\x58\x72\x46\x15\xfb\xe8\xa7\x00\x42\xdb\xc0\xc0\xb6\xeb\x39\xd4\x24\x7f\xd7\x99\xe0\x0a\x32\x55\x73\x6c\xe5\x7d\x34\x1c\xa7\x9a\x89\xe4\x92\xd5\xca\xf4\x70\xba\x43\xbb\xca\x8f\x3b\xd2\x2d\xa6\xd4\x60\xd2\xae\x89\x99\xdf\x69\xca\xe7\xc2\xfa\x46\xe3\x82\xd2\xa1\xae\x3b\x63\x89\x34\x58\x25\xad\x4d\x85\x85\x1c\xa1\xf5\x7c\xfa\xbf\x82\x53\x02\x9f\x84\xff\x7b\x62\xd3\xcd\x4e\x08\x32\xa8\x63\xcd\x56\x29\xd0\xab\x63\xfc\x02\xa2\xe5\xca\x48\x8b\x4c\x0d\xb2\x19\x8d\x86\x1b\xba\x4a\x0c\xc7\xfd\xf1\x47\x3e\x27\xec\x1f\x64\x78\xfd\xf5\xe9\xd9\x99\x14\x73\xbe\x20\xd3\x03\xf3\xc8\xf4\xe0\xa7\x9f\xcc\xf8\x23\x10\x66\x19\xa1\x24\x4a\x72\xa5\x59\x96\xc9\x84\x15\x6d\xe2\xb6\x47\x07\xbb\x95\x14\x4c\xe8\x23\xf3\x32\x34\x9a\x03\x1a\xa2\x1d\x31\xad\x59\x96\xd3\x94\xca\x40\x04\xcb\xe2\x71\xd2\x6b\x99\xb0\xaa\x68\x00\xdb\xa0\xb9\x5e\xca\x8c\xff\x13\x83\xaf\x3c\xf9\x20\xc0\xff\x6b\x26\x9e\x0a\x10\x4d\xe1\xc1\x27\xe4\x52\xc6\x68\x2d\x20\x77\x36\xc6\x4a\x4b\xb2\x92\x82\x43\x1c\xb1\xcc\x48\xcc\x12\x86\x37\x1d\x99\x2e\x4d\xf9\x6b\x23\x2c\x98\x93\x31\x87\xf8\x77\x3c\xd7\x82\x12\x17\x48\x3a\x20\xc2\x8c\x8d\xff\x5c\xb3\x6c\xe6\xff\x74\xe7\xfb\x1d\x06\x70\x39\xca\x7f\x2d\xf0\x5e\x3e\x21\x63\x57\x63\xcc\x5b\x5b\x59\xfa\x89\xdd\x73\xa5\xa1\x07\x23\x55\x24\xa5\x99\xbd\x5e\xa7\x6f\x49\xb9\xdb\xfd\x17\x9d\xca\xb8\x66\xcd\x0b\xa6\xeb\x56\x5c\x6c\xe7\x09\x2e\xa0\x18\xd8\x66\xa3\x09\x9e\x42\x13\xcb\xd8\x28\x41\x02\x01\x63\xb3\xe0\x12\xa6\xad\x0f\x7a\x7b\x99\x61\x61\xac\x69\xed\x3c\x4d\xa5\x4c\x94\xff\x85\x61\x3e\xd9\x1a\xab\x43\x84\xb7\xe5\x76\xf2\xe1\xd3\xcf\x12\x19\xdd\xd2\x39\x0a\xa5\xac\xb2\x0c\xba\x82\x1f\xb7\xbe\x5b\x52\x11\x27\x75\x28\xd2\x00\x6e\x50\xa9\x59\xf9\x6f\x64\x7b\xe5\xbf\x11\xaa\xc1\xe3\xd9\xb9\x86\x2b\x2a\xe8\x82\x29\xb2\x94\x4a\x7b\x41\x59\x8f\x02\x90\xca\x98\x1f\x71\x97\x4f\xc8\x25\x63\x31\x58\x0e\x8c\xea\xa9\xa5\x7d\xd6\x51\x30\xaf\x98\xc7\x63\x6d\x2d\x30\x72\x87\x0d\xd6\x6f\xe9\x09\xb8\x6f\xcf\xca\x83\x41\xda\x9c\x67\x85\xed\x04\xcd\x07\x5c\x9b\x11\x15\x31\x42\x50\x04\x8f\x3c\xce\x7e\x0c\x5e\x78\x68\x11\xf9\xb3\x07\x77\xf6\x04\x15\x76\xb3\x0e\x79\x27\xbc\xb5\xec\x6c\xfb\x89\xdd\x36\xa1\xce\x04\x43\xf8\x9c\x08\x29\x18\x92\x30\x55\x07\x9f\x27\xee\x18\x91\xc7\xd6\x61\xc2\x13\xc4\x6f\xa0\x89\xd1\xb2\x92\x12\x50\xa0\x3e\xf0\xce\x1d\x06\xf3\x35\x17\x68\xb5\xf9\x48\x7c\x46\x26\xec\x9a\x61\x88\xbd\x3b\x9f\x86\xf1\xcd\x63\x01\x1e\xd8\x3a\x8d\xca\x41\x5e\x31\x47\x33\xb0\x03\x54\x8d\x9e\x1d\xc6\xf0\xdd\xf6\x48\x23\xd4\x46\x69\xb6\xb2\x90\xeb\x2c\x7c\x18\xca\xee\x0b\x1c\x6d\xe2\x84\xf7\x1a\x39\xa7\x6c\x25\xc5\x0d\x6b\x93\x24\xe0\xe1\x4f\x25\x3d\x98\xc9\xaa\x12\x83\x11\x66\xcf\x2e\x47\x46\x92\x5b\x70\x41\x04\x50\x1e\x2d\x0d\xc6\x03\xf3\x3c\x42\xf6\x86\xfa\xa1\x9f\xa0\xfa\x70\x4e\xbc\x25\x4c\x38\xdd\x1f\x07\x6e\x24\x3b\x4f\x88\xcb\xfc\xbd\x49\xb8\xe3\xc7\x60\xc1\x9e\x97\x11\x34\xb6\x1d\xb4\x15\xcb\x9d\x49\xce\xd5\x3a\x7a\xe2\x6a\xd7\xac\x5c\xf8\xfa\xf6\x2e\x62\xae\x22\xb9\x66\xd9\xc6\x21\x72\xd3\xae\x0a\x7e\x00\xeb\xd9\x4b\x3a\xda\x0b\x7a\x3b\x21\x56\x83\x22\xf4\x2c\x4c\xce\xde\x59\xbb\xbe\xdb\x4d\x61\xca\x1f\x8d\xd1\x79\x45\xe3\xb5\xd1\x81\x54\x09\x88\xc6\xd5\xd6\x8c\x3a\xd9\xa4\x4b\xaa\x86\x61\x69\x8f\x9c\x8d\xce\xaf\x09\xcd\xb5\x1c\xc4\xcc\x68\x9c\xe0\xcd\x13\x70\x23\x69\xbc\xb2\xc8\x56\xb2\x39\xa4\xba\x64\x45\xd3\x07\xe0\x17\xbe\x6c\xde\x6d\x44\xa1\xfd\x45\xde\x63\x9f\x5e\x6f\x83\xd9\x70\x6a\x8b\x7e\x51\xc2\x28\x18\x19\x8c\x10\x6e\x75\xd2\x77\x82\xae\x29\x4f\xe8\xcc\x10\x89\x84\x2e\x3c\x40\xa5\x3e\x9c\x9f\x38\xe7\x01\xa8\x4b\x0a\xb3\xb9\xa2\x2a\xcf\xf4\x4a\x78\x71\x14\x3a\xfd\xda\x65\xc3\x30\x1b\xfe\x7e\x9b\x97\x18\x38\x7b\x21\x82\x7e\x52\x3c\xaf\xb9\xd6\xf6\x26\x71\xb1\xe8\x72\x23\xec\xd3\x69\x25\xc0\xa3\xe3\x95\xb0\x08\x36\xdb\x38\x70\x98\x85\x3b\x9b\x7a\xb9\xff\x0f\x26\x3e\x5b\xd4\xc6\xbb\x4d\xce\xd1\xd5\x2c\x5c\x93\x6d\x39\x74\x8b\x8a\xa6\x2e\xf1\x42\xc6\x0e\x7d\x1e\xb6\xe6\x06\xdc\xf3\x30\xa8\xc0\x1e\xab\xe9\x29\xb2\xa6\x19\x97\xb9\x22\x67\xd7\xe7\x78\xdb\x11\x97\x1e\x49\x5a\xc4\x1a\x11\x73\x96\xf0\x7b\x1c\xd7\x83\xa3\xf7\x6d\x55\xde\x02\x95\x62\x91\xa6\x8c\x65\x6a\x7b\xa8\xd9\x22\xdd\x19\xa8\xf8\x6e\x77\x98\x4e\x8a\x51\x9d\xa6\x82\x33\x06\xb1\x74\xe7\x67\xc5\x7c\x82\x5b\xfb\x4e\xf0\xe9\x5a\x91\xba\x46\x95\x68\x54\xb9\xf0\x60\x80\x1c\x01\x42\x3c\x40\xcb\xba\xdb\xc5\x96\x5c\xe9\x42\x98\x15\x71\x21\x9e\x1a\xda\x03\x88\x23\x85\x91\x55\x33\x9d\xa7\x1f\x4b\xa3\x6d\xc4\x96\xce\x4a\x49\x93\x1e\xe2\xef\x75\x7b\x83\x81\x5d\x91\xda\x6d\x91\x26\xde\xd3\xf1\x78\x02\x0b\xeb\x46\xf0\x6d\xf0\x9a\x99\xe1\x51\x0d\x37\xdd\xf0\x65\x02\xbe\x48\x17\x12\x22\x05\xca\x5d\x10\x67\xec\xe2\x33\x81\xc8\xe4\xe9\x22\xa3\xb1\xcd\x97\x5b\xbf\x1c\xbe\x42\xa9\x31\xc2\x9a\x3a\x4f\xc8\x8c\x91\x8c\xad\xe4\x9a\xc5\x36\x36\xd1\xbd\x20\x33\xb3\xc3\x79\xc6\xd4\x92\x70\xa1\x34\x4d\x92\x47\x55\x6f\x1b\x68\x49\x95\x24\xed\x83\x59\x61\xa8\x54\x00\x62\xcf\xd8\x70\x06\x2d\xcd\xa3\xe6\x44\xd1\xa6\x44\x93\x44\x46\x8f\xbb\xc9\xdf\x9e\xbd\xe6\x31\x28\x06\x5d\x55\x58\x43\xad\x66\xf0\xb5\xd9\x21\x29\xf7\x5f\x2d\xaa\x09\xd8\x0c\x62\xd8\x6c\x03\xf7\x0c\x0f\x28\x93\xb9\x21\x7e\x8b\x45\xe6\x32\x60\x3f\xe2\x59\xd4\x0a\x41\x56\x7e\x40\x64\x01\xec\x58\xf1\x85\xa5\x02\x15\x85\x2c\x06\x9d\x12\x5c\xc0\x01\xf4\x8b\xa8\xb0\x41\xbb\x4f\x8a\x7b\x06\xa6\x09\x6d\x2f\x9a\x11\x4e\xe1\x6e\x42\x85\xba\xf2\x9a\x91\x5c\x99\x9f\x0c\x53\x1a\x18\xac\x4c\x60\x11\x41\x50\xd0\x34\x55\x8d\x3b\x2f\x97\xd8\x70\x5e\x01\x57\x79\xb3\x46\x5b\x6f\xeb\x68\xd5\x75\x3f\x86\xd5\x02\x87\xde\xdf\x52\x81\xef\xd5\x5b\x27\x7e\xfc\x91\x89\xf8\xa7\x9f\xf6\xb2\x4f\x14\xa6\x09\x28\x4b\xb1\xa2\x82\xcf\x99\xd2\xee\x7c\xd5\x8e\xa9\xc1\xba\xd3\x58\x76\x44\xa8\x22\x77\x2c\x81\x97\x6d\x62\x6c\x29\xc3\x62\xf4\x8b\x53\xa2\xad\x66\x26\x85\x79\x16\x32\x6d\x56\xd4\x40\x07\x1e\x32\x4f\xb0\x0c\x35\x12\x2e\x2a\xa9\x1b\x8e\x87\x17\x16\x8d\xc2\x2a\xb2\x1d\x28\x91\xaa\x4e\xa6\x8b\x7a\xd8\x11\x1b\x4f\xe8\x3c\x55\x5f\xaa\x01\x4d\xd3\xed\x23\x73\xae\xc7\xad\x40\x6e\x08\xc3\x7c\xe3\xbf\x5f\x37\x02\xb1\xe4\xee\x46\x67\x54\xb3\xc5\xe6\xc4\x3a\xa1\x86\xef\x2a\x5f\x9b\x43\xfc\xf1\x47\xa2\xe5\xdf\xe8\x2a\xd9\xfe\x91\xfc\x8b\x70\x11\x33\xa1\xc9\xe7\xf8\x1c\x4b\x14\x33\x7f\x91\xc2\x69\x77\x2d\x93\x84\x8b\xc5\x3b\x8f\xb4\x66\xfe\x57\xc5\x2a\x57\xf4\xde\x53\x32\x4f\xc8\x0b\x0f\x8b\x08\x71\x18\xe3\xb6\xb9\xed\xa8\x4d\xaa\x5b\xae\xdf\x34\x01\x25\xf5\x9a\x8a\x68\xc9\xb2\x81\xf3\xc2\xa2\x2f\xb4\xd4\x42\xb1\xba\x43\xb4\x64\x71\x9e\xb0\x6c\x08\xb1\xa8\xc3\xb2\xde\x05\xb8\xa7\x33\x0e\x61\xfd\x83\x54\xc6\x65\x66\x59\x5c\xba\xcd\xd7\x9f\x0d\x5f\x7c\x36\xfc\x1c\x62\x10\x89\x9b\x3a\x5c\xa4\x1b\x71\xfe\x88\x50\x70\xb9\x42\x6c\x29\x20\xb1\x9d\xe2\x34\x8e\xa5\x50\x58\x3c\x42\x26\xcc\x12\x54\xa8\x9f\x70\xe4\x0f\xb2\xa2\xe8\xbd\x65\x10\xfb\x08\xc9\x91\x6e\x95\x84\xc6\xf1\x00\x62\xd8\x85\xca\x41\xb9\xb7\x16\x6b\xff\xfd\x34\xe3\x32\xe3\x7a\xe3\x76\x0e\x29\x96\xc2\x66\x82\xa0\x7b\xdf\xf7\x1f\xa1\xaa\xe2\x27\x29\x3c\x31\x64\x9a\x6b\x02\x41\x5e\x60\x0f\x67\x6b\x1e\xe9\x4a\x32\x63\x77\xa8\x9e\x90\x43\xeb\xb7\xaf\x38\xda\xcd\x49\x06\xa2\x4c\xab\xe3\x48\x75\x42\x12\x2e\xf2\x7b\xf7\xc0\x8f\x3f\xda\xe2\xa5\xff\x73\x7b\x44\xfe\x67\x4d\x4e\xfe\x4c\x86\x97\xde\x48\xc4\xa1\xad\x7d\xf8\x7f\x6e\xc9\x4f\x3f\x9d\x90\xe9\x81\xf9\x7b\x6d\x7e\x3d\xf0\x86\x62\x22\xf6\x5e\x30\xfc\xc6\xda\x1f\xaa\xb5\x4f\xca\xd3\xaa\x9e\xf6\x5b\x7a\xcb\x88\xca\xb3\x2a\x41\x03\x80\x39\xf0\x40\xd4\x2a\x4d\x12\x14\x7a\x3d\xf8\x0d\x6c\x8d\x81\x13\x72\x29\x6f\xec\xc3\xe5\xaf\x10\x60\x94\x51\x03\x1a\x72\x51\xb1\xe2\xe3\xbc\xd9\x6d\x23\x7e\xa0\x2c\xc1\xca\xf3\xaf\x4c\x7c\xcb\x36\x27\x01\xa4\xec\x36\xbb\xbf\xee\x8b\x7b\x16\xe5\xba\xd3\xb2\xdb\x1c\xe3\x16\xa9\x2a\xec\xea\x32\x44\x6e\x71\xb0\x82\xa0\x58\x80\x70\xc1\x57\xfc\x9f\x8c\xc4\xf2\x4e\x68\xbe\x62\x24\xc6\xdb\x41\x1d\x95\xf2\x45\x7b\xe7\x73\xfe\x13\xd1\x2c\x49\x7c\xee\xa0\x25\x89\x25\xb4\x10\x02\x93\x6c\x39\x81\x7b\x65\x7a\x50\xc6\xb8\x54\x31\x35\x96\x91\x3a\x8e\xa4\x88\x58\xaa\xd5\xb1\x2b\xba\xa8\x8e\xc1\x6a\x92\xca\xf8\xf8\x89\xcb\x51\xe5\x52\x0c\xe4\xdc\xdc\x8c\x12\x1f\xbc\xdf\x5e\x67\x34\x62\x63\x96\x71\x19\xdf\xb0\x48\x8a\x58\x9d\x90\xe7\x3b\x24\xaf\xac\x92\x8c\x76\x34\xf7\x80\xbb\xfb\x67\x09\x55\x0a\x01\xf8\xe3\x8f\x64\x88\xb2\x9c\xb9\x28\xe3\xed\x07\xc8\xbf\x0a\xbf\xd1\xf4\x00\x99\x17\xfa\x19\x1c\x4e\x4d\x0f\xbc\x3b\x62\x04\xc8\x33\xc7\xb1\x77\x69\x5f\xc9\xcd\x9d\x76\xa1\xaa\x5a\xd8\x96\x4c\x07\x56\x56\x3c\x60\x23\x59\x0f\xfd\xf1\x46\xda\x4a\x90\xce\x8d\x8d\x91\xb1\xae\x02\xfd\xae\x76\x06\xf1\xd5\x7c\x4e\x36\x32\xc7\x22\x20\x34\xc9\x18\x8d\x37\xfe\xa0\x76\x31\x60\x34\xce\x15\xab\x99\xdc\x05\xff\xd9\xa7\xe1\x67\x1f\xcb\xf9\x0a\x42\x54\x7e\xfc\x71\x78\x76\x39\x1a\x99\x7f\xf8\x64\x07\xb2\x8d\x56\xd4\x88\x17\x3f\x4c\x0f\x8e\x65\xaa\x8f\x23\xc1\x8f\x67\x5c\x1c\x7b\xd3\x4d\x0f\x8e\xc8\xf4\x60\x60\xa7\x28\x64\x58\xfc\x30\xb1\xfe\x26\x93\xab\x4a\x48\x8e\x33\x29\xbf\xa5\xa9\x13\x20\xfd\xcf\x13\x72\x0a\xa9\x53\x7f\x79\xf7\xf5\xc5\xf5\xe5\xc5\xe4\xe2\xe6\xfd\xcd\xc5\xf5\x77\xa3\xb3\x8b\xf7\xdf\x5e\xdd\x4c\x80\x03\x04\x7e\x1b\x5f\x5d\x4f\x6c\xe6\x9c\x5c\xb3\x2c\xe3\x71\xcc\x90\x7e\xb0\xaf\xc7\xdf\x90\x95\xd3\xf0\xfd\x0f\x02\xc7\xab\x1b\xe5\x4c\xff\x03\x67\x43\xda\x7e\xc3\x65\x02\xec\xd6\x94\x62\x62\xbd\xb5\x15\x07\x7c\x6f\xb1\x97\x57\xe7\x17\xef\x2f\x4f\xdf\x5e\x6c\x8f\x0b\xf1\x73\x3b\x90\xc2\x0f\x84\xff\x86\x20\x55\xfc\x38\xa6\x7a\x79\x02\x37\x69\x68\x30\x1e\x32\xf0\x82\x4b\x39\x3b\x7d\x33\x3a\xbb\x7a\x7f\x79\x31\xf9\xfe\xea\xfa\x2f\xa3\xcb\xd7\xef\xbf\x3e\x3d\xfb\xcb\xc5\xe5\xf9\x3e\xeb\x29\x4e\xef\x2f\x6c\x53\xb7\xac\x8a\x84\x59\x75\xfa\xfa\x1f\xa0\xe0\xf8\xd4\x7b\x9b\x35\xe2\x3f\xb6\x96\x49\xbe\x62\x6f\x43\xc5\x5a\x06\x64\x65\xbe\xc6\x9d\x1f\xaf\x69\x76\x9c\xf0\x19\xa0\xa7\x33\x1a\x86\x0f\xbb\xbc\xb7\x03\xc1\xf4\x20\xe6\x59\xd3\xb8\xe6\x69\x1f\xef\xc3\x63\x46\x82\x0f\x66\x5c\x6c\x0f\xa6\x58\x94\x03\x85\x92\x42\xb3\xfb\xed\x1e\x5e\x69\xc6\xd7\x3c\x61\x8b\x6a\xd4\x18\x09\x51\xa0\x8a\xca\x61\x34\x89\x19\x17\x34\xab\x24\x79\xa2\x23\xd4\xfc\xb6\xa5\x59\xcc\x79\x02\xe9\x15\xa0\x5b\x88\xea\x25\x70\x58\x61\xc7\x1f\x44\x82\x3f\x0a\x71\xb0\xe3\xf5\xa4\xc0\xdb\xc8\xa5\xcd\xbf\x77\x47\xe8\x1f\x8f\xe1\x1d\x60\xfa\x19\xd6\xdc\xda\xcb\xd1\xfb\xb3\xab\xcb\x6f\xea\x29\x87\x11\x0c\x5f\x3c\x1f\x58\x23\x8a\x19\x1b\x2c\x4b\x07\xdb\xab\x70\xee\x94\x2d\x24\x81\xdc\x1f\x38\xb3\x3a\x54\xd9\x5e\x8e\xa5\x20\xb0\xac\xd1\xeb\x7f\x2b\xf5\x10\xfc\xbd\xdd\xce\xfb\xd0\xa3\x4f\xc8\x0d\xc3\x50\x61\x73\x99\xa1\x0c\x42\x91\x85\x05\x91\x8a\x5f\x2a\xd4\xb0\xcd\x4f\x35\x3b\xfe\x0d\x50\xf0\x27\x70\x6e\x6f\x27\xef\x88\x15\x3a\xd7\x34\xe3\x46\x33\xad\x3f\xa3\xb7\x93\x77\xff\xce\x83\x59\x33\xbd\x7c\xbf\xd2\xf9\xf6\x3e\xc6\x19\x5b\x33\x61\x5b\xee\x95\x44\x0e\xa4\x2a\x95\x30\x06\x89\x9f\x73\x69\x9e\xda\x6e\xcd\xe9\x76\x77\xf3\xe6\xe2\x62\xa7\xbf\x6d\x71\x11\xe6\x34\x51\xac\x8a\xfb\x9d\x19\xc9\x07\x11\xfc\xe0\x60\x4c\x47\x8e\x2d\x0d\x77\xf2\xe7\xcb\xe1\x02\xcc\xe8\xe1\xfc\xe3\x34\x8e\x8d\x64\xf9\x4d\xc2\xee\xc9\x77\xb0\x75\x72\x9e\xf1\x35\x44\xd2\x53\xe7\x9a\x32\x4f\xa4\x2c\x03\x7b\xc1\x3b\xc1\xef\xc9\xb9\x5c\x51\x2e\xc8\x8d\x8c\x6e\xb1\xa4\x28\x64\xc1\x92\x73\x7e\x4b\x95\xae\x32\x1b\x88\x29\x80\x70\xf8\x88\x6a\x5b\x04\xe1\x1b\x96\xf0\x7b\x20\xb8\x7e\x3d\x80\x9b\x8d\x88\xc8\xe9\x78\x14\x60\x3b\xf3\x84\xdd\xaf\x65\x32\x88\x61\x69\x61\xce\x63\xb6\xf0\x9d\x4c\x46\xab\x45\x95\xf7\xd4\x1e\x68\x78\xf0\x81\x39\x8a\x2a\xfc\x76\x0e\x6a\x77\x19\x1f\xc8\xc0\x8d\x8a\xe1\x21\xf8\x0a\x4b\xc7\x61\xe1\xca\x88\x29\x45\xb3\x0d\xd0\x7f\xd4\x55\x14\x58\xa4\xcb\x66\x0a\x86\x53\x41\x2b\xb7\x34\xa1\xa2\x32\x38\x54\x82\x98\xa5\x73\x42\x35\x39\x56\x1b\x75\x3c\x57\xc7\xf0\x4f\x11\x93\x08\x32\x94\x5e\xc2\x4f\x59\xee\xe4\xf4\x63\xfc\x7a\xe8\x0a\xec\x59\x8b\x22\xd7\x9c\x26\x5c\x95\x69\x97\xa8\x06\x57\x0d\x28\x46\x71\x51\xda\x28\xcb\x32\xd3\x64\x4e\xd5\x12\x34\x14\x58\x84\x90\x64\x4e\x79\x92\x67\x18\xa9\xc5\xb2\x4c\x66\xea\xc8\x60\x87\x90\x9a\xc4\x5c\x65\x79\x0a\xd1\x4e\x5e\x76\xa7\x70\x8d\xb2\xb6\xf9\xb0\x3b\xb9\xe9\x01\x40\x6a\x30\x4b\xe7\x73\x55\xbd\xc6\x25\x5e\x18\x0d\xb0\x45\x24\xf1\xf5\x6d\x54\x51\xcc\x8e\xed\x9f\x66\x4f\x03\xdc\xd3\x96\x98\xd2\x99\x54\x20\xe4\xc3\x37\x5a\x6d\xd4\x60\xf7\xb7\x27\xe4\x6b\x1e\xf3\x0c\xe3\x75\x68\x82\xd9\x8c\xd6\xab\x05\xbd\xbf\xc0\x04\x53\xd4\xa2\x10\xec\x0e\x27\x24\x77\x8c\xac\xe8\x2d\xdb\x3e\xf0\x34\x93\x29\xb5\x45\x40\x65\xc1\xe2\x76\x67\x55\xd2\x99\xcc\x88\xcc\x75\xc2\xd7\x36\x6b\xaa\x8a\xa0\x3b\x22\x11\x6e\xd6\xce\x01\xd6\xe4\xca\xf2\xdb\xe4\xf1\x12\xfd\xc2\x30\x5a\xd3\x6c\x90\xe5\x62\x10\x7e\xe6\x51\x60\xb5\x73\x03\x7e\x53\x20\x7b\x42\x00\xcb\xc8\x71\x9a\xc9\xe8\xb8\x34\x2b\xd8\xd2\x35\xb9\xca\x69\x92\x6c\x6c\x0a\x3a\x4c\x9c\x66\x72\x91\xd1\x15\xec\xcd\xe0\xb5\x79\x71\x48\x46\xfa\xd0\x27\x1e\xb0\x06\xa1\x50\x49\xd8\x1c\x6d\xcf\xe9\x2e\x39\xf8\xeb\xca\x2b\x72\x84\x09\x0d\x66\x3d\x99\x94\xba\x20\x24\x73\x55\x03\x49\xc3\x1f\xb4\x36\xa2\xe2\xd9\xe4\xcd\xd7\x6e\x69\x46\x6d\xc9\xcc\x7e\x93\xed\xc6\x44\x55\x04\x71\xab\x0f\xa3\x46\xdd\xaf\x19\xa3\xf1\x95\x48\x36\xbb\x22\xf7\xc3\x48\x75\x14\x36\x00\x5d\xe7\xe0\xf4\x0b\xb8\x76\x0a\xf1\xd8\xb3\xb5\x81\xa4\xbc\xd5\xe6\xf7\x89\x6f\x3f\x72\x90\xd9\x0a\x9c\x34\xe4\x1a\xdc\xa4\xca\x8d\xea\xbf\x6f\x10\x21\x40\x1c\x03\x46\x44\xd2\x85\x30\xfe\x77\x2b\x5f\xef\x14\xf3\x4f\xec\x74\x3c\x72\x7e\xb9\x19\x8d\x6e\x8d\xbc\x69\x38\x2d\x44\x8c\xd4\x48\x9c\xe7\xa7\x93\xd3\x9b\xc9\xd5\xf5\xc5\xfb\xc9\xdf\xc6\xf5\x3a\x58\xb9\x85\x5d\xdd\xeb\x7b\xca\x75\x11\xd0\xdc\x36\xdf\xf7\xa7\xa3\xc9\xfb\x6f\xae\xae\xdf\x17\x13\xd7\xce\x09\x00\xd8\x99\xcd\x28\x3d\x7b\xeb\x39\x46\xb9\xf9\xf7\xe8\x36\x4b\x29\x15\x2b\x4e\x84\x09\x67\xd7\xac\x53\x41\x7f\x5f\x76\x2c\xd8\x22\x3a\x6c\xb1\x5f\xb8\x51\xb8\xa1\x0e\xd7\x1c\x85\x3d\xaf\x44\x8a\xf9\xbd\x66\xd3\x6f\xde\xdd\x4c\x2e\xae\x5b\x30\xf0\x4b\x75\x34\x5b\xa4\xbb\x08\x71\x5a\x46\x0b\xa3\x7c\xf9\x7a\xec\x75\xfb\xa9\x81\xf3\xa8\x5e\xcb\xa2\xb9\x96\x38\xdc\xee\x5c\x17\x02\x04\xbc\xd1\x78\xfb\xfd\xad\xf3\x1b\x8d\xbf\xfb\x7c\x7c\x75\xf5\xe6\xfd\xee\x93\xde\x4c\xa7\x50\xd5\xa1\x76\x16\x99\x91\x73\xae\xe0\xcf\xef\xfe\xfa\xe6\xf4\xd2\x21\xbc\x73\x06\x8c\xc6\x24\x95\x32\x69\xc6\xa4\x62\x25\x30\x44\xed\x52\x2e\x8d\x52\x1a\xbe\x6c\x46\x35\x87\xdb\x9d\x0b\xc1\x12\x12\x33\x08\x0a\x87\x18\x7a\x3e\x27\x3c\xe5\x29\x88\xd8\xb0\xe6\x38\xbc\x96\x6f\x2e\xde\x8c\xfe\x6a\x60\x71\x39\x1a\x37\x2b\xef\x7a\x3b\x2a\xa1\x54\xe9\xc6\x32\x36\xf0\x30\x92\xb7\x91\xb7\xbf\xce\xe3\x05\x43\xba\x53\x66\x0d\x95\xca\xdd\x5f\xbe\x54\x05\x66\x1a\x0c\x51\x11\xb5\xbf\x83\xa7\xf4\xdf\x67\x25\xa8\x80\x74\xe9\x8e\xb6\x02\xdc\x9a\x13\x45\x28\xc2\xf3\xbf\x51\x0b\xc8\xf6\xde\xbe\xe7\x19\x5b\xe4\x34\x8b\xf7\xd8\xdf\xf7\xa3\xeb\x8b\xd7\xef\x4e\xaf\xcf\x7f\xa3\x7b\x9c\x54\x6e\xe0\xfa\x73\xb8\x83\xa5\xa5\xd3\x0b\x81\xdd\xca\xf2\x1a\x02\x06\x8f\xc6\x45\x77\xc5\xed\x91\xa3\xa5\x54\x46\xa2\xc0\xb8\x06\xa3\x17\x50\xb1\x60\x43\x72\xb6\xa4\x62\x81\x85\x07\x5c\x1b\x19\x1b\x0d\x59\x09\xc9\x82\x51\x97\x74\xbd\x33\xae\x90\xd6\x23\x6c\x1b\xd1\xd8\x32\x10\x73\x9a\x24\xae\xb0\xe7\x60\x60\xc3\x6e\x06\x11\x8f\xb7\xa5\xff\x50\x14\xc7\x85\x57\x11\x89\xe9\x1d\x62\x73\x36\x3a\xbf\x3e\x2e\xbf\x7c\x55\x7c\x39\x15\x3f\xfe\x38\x20\xe8\x69\x7e\x9a\x30\x41\xfe\xc7\x4c\xa8\x9e\x91\x97\xa4\x2a\xd7\xd5\x13\x32\x1c\x26\x80\x18\x36\x88\x60\xce\x33\xa5\xed\xb8\x95\x70\x82\xba\x61\x5f\x75\x1a\x36\xa1\xdb\xa3\x9a\x9d\xb0\x44\xb1\xc7\x5a\xf9\xd0\xd2\x2b\xf3\x98\x37\x83\xef\x48\x77\x07\xe2\xf8\x02\x58\xd9\x13\xb9\x00\xf4\x50\x12\xb3\x18\x75\x62\xbe\x52\x10\x65\x55\xc7\xff\xec\xd2\xce\x47\x37\xa7\x5f\xbf\xb9\x78\xff\xcd\xe8\xcd\xc5\xfb\x37\x57\xaf\x5f\x8f\x2e\xc3\x36\xef\x66\x79\x0c\x2d\x64\x65\xf9\x0a\x89\xea\x9e\xbb\x26\x58\x73\xd5\x7c\x7d\x7a\x76\x76\x31\x9e\x34\xde\xff\xf3\x8b\x6f\x4e\xdf\xbd\x99\x5c\x5c\x9e\x8f\xaf\x46\x97\x93\xc9\x95\x91\xc9\x4f\xcf\x26\xa3\xab\x7a\xee\x85\xc3\xee\xae\x6d\x17\x6f\x6f\x6c\x29\xba\x38\xa7\x89\xd2\x34\xba\x7d\x00\x42\x3a\x6e\xf6\xdd\xab\x9b\x77\x63\xa3\x15\xec\x05\xb1\x52\x02\x79\x55\xf3\x9e\x27\x80\x74\xc2\xdc\xcb\xd3\xc9\xfb\xab\x77\x93\xd7\x57\x5d\x0e\xaf\x16\x69\x4b\xa4\x1a\x8d\xd7\xaf\x0c\x19\x2b\x15\x8b\xc6\x03\xeb\x02\x88\xc2\x72\x5d\x8b\xd1\xbb\x47\x05\xd5\x8d\x30\xcf\xc0\x90\x18\x9c\xec\xcd\xd5\x6b\x83\xab\xe3\xd3\xc9\xb7\x68\x8d\x13\xcc\x66\x97\xe1\x7d\x00\x44\x74\x17\x42\x4b\xb8\x20\x4d\x8b\xf7\xc6\xab\x5d\xbc\x99\xa4\x0b\x6e\xd5\x2d\xf8\xe6\xe2\xbb\x8b\xeb\xd1\xe4\x6f\x37\x7f\xbb\xc1\x35\x5b\x1a\x0e\x84\xbe\xc8\x08\x16\x73\xd9\xb8\x13\xb5\x51\x89\x5c\xb4\xec\xc5\x9b\xaa\x76\x3b\x4d\x57\xd8\x9b\x6f\x7a\x70\x47\x33\xc1\xc5\xa2\xd3\xb5\x0a\xee\xf7\xec\xfa\xe2\xe2\xd2\x8c\xf5\x3d\x8e\xb4\xbb\xe3\xae\xdb\x81\x91\x6a\x77\xf4\x7d\x78\xa1\xd5\xe1\xbe\xbd\x38\x7d\x33\xf9\xf6\xe2\xd2\xd0\xbb\xb0\x36\x55\x4f\xe3\x9a\x36\x3c\x1a\x4f\xcc\x90\x37\x56\x4f\x03\x09\x34\xd7\x98\x88\x56\xde\x64\x5b\x95\x54\xcc\xc1\x42\xac\x9a\xef\x53\x65\xc0\x46\x3d\xa5\xba\xd4\x87\x9a\xf5\x43\x71\xd9\xee\x7b\x2c\x33\xb4\x23\x4d\x45\x69\x7e\x42\x5e\x7e\xf1\xbc\x12\x74\x93\xf0\x39\x8b\x36\x51\xb2\x5d\xf9\x3c\xcd\xd8\x8d\x96\xe9\xce\x20\xec\x7e\xa7\xac\x0f\xf1\x6c\xdd\xbb\xbf\x0c\x88\x1f\xa3\xb3\x6d\x2b\x72\xcf\x0c\xd4\x32\xd7\xb1\xbc\x13\xd5\xb5\xad\x99\x60\x4a\x8d\x33\x39\xdb\x5e\x5f\x70\x1d\x75\xab\x68\x5f\xc3\x80\x0c\xe0\xf6\x0e\xcc\x9c\x81\x1f\x67\x3c\x8b\x03\xbf\xa5\xd5\x88\xb2\x17\xcf\xab\x3f\x5b\xaf\xc6\x39\x4b\xe8\xa6\xf6\x21\xeb\xb4\x98\x2c\x33\xa6\x96\x32\x89\x4f\xc8\x16\x93\xd1\x7c\xc5\x64\xae\x6b\x06\xc8\x18\x8d\xf9\xa7\x86\xd2\x56\x04\x58\x15\x4c\x81\x1f\x5b\xe0\xd4\xbc\xc3\x06\x27\xc8\x13\xe8\xfc\xbc\xa2\x1c\xec\x9b\x86\x5c\x79\xf9\x99\xa7\xe3\x91\x11\xf0\xc1\xb4\x41\x93\x5d\x86\xf8\x88\xde\x51\x52\xb1\x07\x23\xe7\x6c\x98\x2d\xe1\xb3\xe3\x95\x8c\xf3\x40\x01\x5d\x9c\x26\xe1\xb3\x41\xcd\x03\xf5\x66\xe7\xed\x59\xb2\x5c\x1c\xdf\x23\xed\x1a\x26\xd2\x88\x4d\xa1\xa9\xec\x13\x83\xd0\x13\x7b\x6c\xe9\xc3\x9d\x2c\x7b\x4e\x06\x11\x56\x2d\x93\x19\x30\x3e\x68\x32\x1c\x02\x6d\xe3\x6a\x23\x76\x6c\xff\xa1\x9d\x9b\x0b\x43\x17\x3b\xf5\xdf\x10\x45\x0b\x73\xf3\x11\xb9\x63\xe0\x1f\xb1\x66\x69\x10\x1c\x0a\x6f\x87\xf3\xb5\x96\x9e\xd8\x6d\x37\x9b\x92\xe0\x54\x82\xa7\xb1\x60\xec\xf6\x74\x50\xba\x5a\x13\xf4\xf4\xc8\x6c\xd7\xf5\x81\x9b\x43\x8f\x66\xc3\xbe\xca\x49\xc3\x03\x98\xab\x90\xc8\x45\xe8\x2a\xec\x9c\x95\x5c\x14\x0e\x9b\x6a\x58\x17\xa9\xc5\x68\xbc\xf5\x55\x5f\x88\xcb\x1b\xf7\x13\x63\xca\xdf\x07\xcd\x97\xc7\x5c\x71\x58\xd3\x16\x69\x6a\xb8\x92\x83\x56\xc4\x6d\x1e\xb4\xee\x52\x0c\x5a\x71\xb4\x7d\xdc\x10\xfe\x0f\x5a\xee\x74\xf3\xa8\xcd\xf4\x02\x33\x56\xbe\xe1\x09\xbb\xca\xce\x2a\xb9\x81\xe5\xbc\xbb\x9e\xe6\xe6\x19\x2d\x8a\x85\x26\x3a\x77\xe8\x5b\x3f\xdb\x0e\x06\x77\x9a\x6c\x07\x9f\xb7\xe6\xf3\xf1\x6d\x55\xba\x44\x2b\x6e\x4e\x7b\x77\x73\xe5\x39\x39\x31\x44\xa0\x1a\xca\x5d\xeb\xc6\x0c\x60\x6d\xc8\xcd\xd8\xbc\xa1\xea\xd3\x65\xd9\x0e\x17\x3d\x77\x76\x19\x0a\x74\xa9\x09\x17\x6a\x9e\x2a\x18\x84\x34\x68\xe6\x89\xcd\x23\xd6\xf0\xda\x72\x17\xb6\x60\x88\xe1\xe7\x89\x5c\x84\x20\x56\x43\x80\x3a\x5c\x9d\x1a\x72\xe4\x7c\xe0\xb6\x10\x77\x41\x41\x41\x2f\xd8\x8e\xb1\xf7\x53\x7b\x6d\x88\x4d\xc5\xe7\x0a\xc8\x01\x95\xe3\xb6\xd2\x32\xbd\x81\xaa\x71\xfa\x45\x1e\xb5\x97\x42\xed\x8f\xe8\xb2\x3c\x95\x2b\x68\xea\x07\xd2\xd7\x07\x03\x0c\x3a\x05\x1b\x77\x24\x38\xc1\x90\xe6\xf2\xd0\xac\x3d\xb5\x3e\x92\x2b\x40\x5c\xc3\x5c\xb6\x66\x3d\xad\xc4\x81\xec\x52\xdf\x00\x63\xde\xbd\x2c\xbb\xe1\x69\xbb\x2b\x6d\x09\xe3\xda\x77\xc9\xd6\x88\xe5\xc2\xca\xc6\x20\xb5\x9e\xf3\x6c\xc7\xcc\x83\xfb\x29\x03\xd0\x8a\x27\x31\xaf\xb0\xc6\x38\x64\xa1\x90\x2b\x38\x3a\xa3\x09\x78\xc9\x35\xf0\x67\xc2\xf4\xc0\xe6\x81\x1e\x23\xbb\x3d\x86\xc7\x0a\x80\xfd\x3f\x79\xac\x0a\xfb\x0f\x29\x52\x56\xdb\xd2\x8e\xfc\x9c\xcf\x32\xaf\x77\x3b\x6b\xf6\xe1\x49\xa0\xfb\x26\xd0\x6e\x97\x0e\x2b\x92\x69\x6f\x18\xf3\x8b\xeb\x2e\xf3\xd9\x30\x92\xab\xe3\x4a\x16\xf8\xf1\x6e\xe1\xb1\x60\x4e\xab\xcd\x7c\xf5\x1a\x57\xec\x53\x76\xed\xc1\x19\xaf\x81\xd2\x6a\x2e\x1f\x10\xfd\x1e\x95\xba\xa7\xae\x71\x1c\x26\xf2\x40\x21\xef\x84\x81\xad\x77\xcd\xf0\x2a\x08\xeb\xea\xc9\x58\x9a\xf0\x88\x2a\xc8\x35\x7d\x50\x26\x6d\x68\x93\xaa\xcc\xa7\x2d\xaf\xc6\x35\x2b\x6b\x0d\xb4\xa5\xb2\xb6\x82\x91\x90\x26\x50\x92\x2e\xd9\xb0\x75\xc3\x42\x28\x2b\x72\x7c\x97\x2f\x06\xad\xe8\xb2\xdb\xad\x74\xc1\x54\x96\x39\x9d\xe1\x9c\xd6\x4f\x9e\xe7\xe9\x68\xcd\xa4\x4c\xba\xf4\x08\x46\x35\x15\xd3\xcb\x68\xf6\x1f\x2f\xd2\x99\x5f\xd5\x90\x9d\xba\x84\xce\xb0\x25\xce\x7b\xda\x39\xc9\x6b\xab\xee\x4a\x82\x75\xce\x13\x06\x41\x70\x59\x2e\xea\x12\x40\xfb\xf4\xd1\x4e\xe9\xa3\x3e\x49\xc7\x67\x3e\x38\x95\xb4\xee\xd6\xec\xa4\x95\x7e\x48\xae\xe5\x56\xbd\xd1\x4e\x69\x97\x85\x97\x34\x94\x79\x19\x0c\xba\x1b\x74\x23\x33\xa4\x9a\x96\x54\x3e\x10\x0e\x79\xdb\x31\x5d\xd9\x38\x23\x0c\xb0\xf4\xf1\x5d\x4b\x83\xe2\x35\x7a\xbb\xb5\x86\xbf\x3f\xbb\xba\x9c\x5c\x5f\xbd\x79\x73\x71\x5d\xe7\x36\xd8\xb5\xe0\xed\x15\x40\x76\x1b\x6c\xcd\xf9\x98\x36\x59\x23\x9a\x80\xc5\x71\xc9\xa2\xdb\x41\xb5\x60\x6a\xf9\xd8\x60\x2b\x52\xf5\x3f\xcd\xe6\xda\x11\x0a\x59\x2b\x14\x3e\x91\x74\xb6\x8f\xf0\xb2\x2d\xa9\x7d\xa2\x38\x21\x7f\x8b\xa8\x5e\x1c\xaf\x5f\xcc\x98\xa6\xc5\x76\xc7\x32\x2e\xe7\xc3\xe9\xfe\xfd\x02\x5b\xa0\xca\xc7\x23\x49\x5e\x1d\x05\x65\xa6\xa3\x78\xa0\x8c\x38\xa6\x9d\x90\xdc\xf1\x4d\xbd\x31\x62\x4c\xc7\x57\x6c\x91\x2e\x36\x88\xa8\xa0\x89\x7d\xeb\xe0\xe8\xff\x47\x08\x71\x89\x12\xeb\xcf\x86\x2f\x5f\x0e\xbf\x18\x64\xc8\x2c\x5e\x1e\x9c\x10\xeb\x89\xb6\xe1\x1c\x27\x7f\x26\x2a\x4d\x38\xb4\xab\x21\xd3\x83\xa3\xe9\x01\xf1\x63\x31\x08\xf6\x05\xb0\xd5\x96\x26\x76\xee\x32\x08\xd5\xfe\x60\xa7\xe9\xbc\x4d\x5b\x60\xb1\x52\x8c\xe7\xcc\x05\x31\x11\xae\x8a\x46\x6b\xc5\x1e\xa1\x07\x7b\x32\x07\x65\x91\xc5\x6e\x5e\x3f\x08\xa8\xac\x03\xec\x06\xda\xbd\xa3\xf5\x98\x59\x46\x44\xd5\xe1\x63\xf1\xde\x13\xac\xe3\x6a\x96\x69\x3d\xd6\x28\xa6\xc2\xd9\xbd\xb7\xac\xfd\xbd\xcb\x7b\x29\x3d\xe8\x4f\xc8\x59\xb1\x9b\x9a\xa0\xd8\x6a\xb4\xa9\x79\x7d\xc6\xb3\x38\xfc\xfa\xdb\xc9\x3b\x57\x27\xc0\x5c\x70\x57\xd4\x01\x5b\xd5\xcc\x69\x64\xdb\xc5\x63\xf4\x19\x4a\x67\x4f\xc8\x80\x8c\xe6\x5e\x68\x5a\x19\xbc\x78\x04\x7e\x7b\x2d\xc9\x46\xe6\x59\x11\xd5\x6e\xe6\x18\x90\x57\xcf\xdd\xcb\x57\x7a\xc9\xb2\x3b\xae\x18\x34\x02\xb3\x91\x99\x19\x71\x46\xf9\x8e\xe3\x7d\x51\x33\xde\x68\x3c\x1a\x77\x1c\xe2\x65\xcd\x10\xa5\x61\x87\x8a\x0d\x61\x22\xa2\xa9\xca\x5d\x01\x86\x9a\xe1\x86\xa5\x58\x6f\x06\x77\x52\xb9\x19\x8d\xe1\x57\xcf\xad\xa4\xe3\xe2\xe2\x6c\xcc\xd2\xdb\xc9\xbb\x9d\x58\xa5\x2d\x79\xde\x7f\xe3\xc5\xe7\x9f\x3f\xdf\x89\x03\xa9\x4b\xdf\x75\x75\x0d\xeb\xb2\x78\xe1\x35\x10\xfd\x30\x03\xe5\x89\x6b\x42\xe6\x5a\x55\xdb\x2c\xe0\xa2\x13\x70\xae\xe5\x8a\x82\xe0\x96\x6c\x48\x2a\x6d\x4f\x06\x8b\x16\x35\xb2\x24\xb8\xda\x95\xe2\x0b\xf1\x9e\xa7\xeb\x57\xd3\x83\x32\x4c\xc0\x80\xa7\x08\x24\xda\xae\xc5\xa8\xc8\x5c\xe6\x18\x2d\xbd\x9b\xc9\x7b\x42\xfe\x35\x40\x8a\xfb\xa3\x23\xbc\xd3\x03\x01\xfd\x85\x6d\xac\xb3\xd1\xd7\x06\xf6\x25\x43\x92\x8a\xa7\x22\xe1\xae\x33\x3e\xfb\x7c\xf8\xd9\xf0\x45\xe5\x09\x6b\x86\x31\x3f\xff\x50\x32\xfa\x1f\x7d\x9e\x3f\x3d\x80\x68\x6c\x18\xc0\x1a\xfe\x0f\x8e\xaa\x0f\x24\x72\xf1\x3e\x61\x6b\x96\xe0\x53\xdf\x9f\x5e\x5f\x8e\x2e\x5f\x07\x1f\x9b\xf3\x84\xbd\x4f\xa9\x5e\xe2\xa3\x01\xbb\xa8\xf9\xdf\x30\x91\x8b\x9d\xd7\x8b\x74\x81\xf7\xe5\x82\xfc\x5c\x83\xad\xc7\xcd\xb1\x97\x60\x7a\xff\x3e\x94\xbf\xfc\xfe\xfd\xce\x6b\x2b\x9d\x9b\x37\xde\xbf\xb7\xd9\xc3\xef\xdf\x6f\x3d\x80\xe5\x3e\x4e\x0c\x90\x3a\x87\x83\x85\xa0\xe8\xea\x86\xec\x3e\x59\xa2\xd0\xe7\x3e\x0a\x35\x3e\x59\x41\xb6\x06\xeb\x5c\xc3\x4a\x6a\x22\xae\x7e\xda\xda\x3f\x0a\x36\x16\x02\xf5\x43\xdf\x7e\xb9\x15\xad\xbe\x3d\x8e\x7f\x74\xc1\xb1\x6c\x9b\x05\xc3\x66\xbc\x23\xc4\x64\xfb\xf7\x2e\x12\xcb\x9c\x60\x65\x96\xf2\x1f\xfe\x84\xb5\x18\x9d\xca\x4c\xaf\x68\xba\x83\x06\x4a\x50\x6d\x9e\x30\x00\xdd\xfa\x29\xa2\x29\x9d\xf1\x04\x6b\x2f\xc2\xd2\x61\x94\xb7\x34\x4d\xb9\x58\x28\xf7\xd6\xbe\x2b\x99\x51\x11\xdf\xf1\xd8\xdc\x8c\xf6\x09\xbd\x87\x77\x67\x73\x7f\xda\x94\xce\x0e\x06\xcb\xdb\x38\x1e\x44\x59\x5c\x11\xbe\x3e\x56\xab\xc1\x9d\x72\xa9\x1f\xa1\xe1\xe0\xd7\xaf\xc7\x95\x9e\x20\xf8\x5b\xd9\x76\x70\xfb\xf7\xdd\xe6\x83\x35\x45\x5d\xcb\x16\x84\xdb\x0f\x4c\xcb\x46\x84\x56\x1e\x9c\x7e\x9c\x2e\x84\xdb\x6b\xaf\xb6\x30\xab\x72\x16\x6c\xd2\xbb\x81\x3c\x97\x4c\xe6\xba\x6a\xfd\xe9\xbb\x10\xf6\x5d\x08\xfd\x23\xe8\xbb\x10\x7e\xb2\x2e\x84\xdb\x97\x78\xb7\x17\x61\xb5\x47\xae\xb9\xc0\x95\xab\xdd\xbd\xe9\x20\x55\x97\xf9\x6a\xc6\x5a\x9b\x7f\x1f\x9e\xde\xe0\x83\xae\xb9\xa9\xb3\x68\x9e\xde\x10\x81\x3f\xb8\xc0\x03\x6a\x65\xea\x1f\xce\xf1\x91\x60\x02\xcd\xab\xcf\xbf\x78\xf1\xf2\xef\x87\xbb\x3f\x61\xe1\xf1\x13\x73\x3b\x3f\x7b\xb9\xfb\x33\x82\xd4\x5c\xdd\x05\xdb\x89\xf0\x71\x27\x1f\xda\xe8\xd6\x7e\xce\xca\x47\xf1\x7e\xb8\xae\x8a\x08\x4b\x8b\x41\x0e\xce\x58\x52\x93\xed\xc6\x14\x01\x08\xb3\x19\xd7\x19\xcd\x36\xb6\x61\x3e\xe4\x2c\x51\x0c\x7f\xc6\xec\xe5\xbd\xda\x30\x06\x97\xb9\x29\x8f\x5f\x69\x2a\x62\xa3\x6e\xca\x8c\x24\x34\x5b\xb0\xed\xe5\x86\x06\x25\xb0\x05\x73\xd3\x02\xb9\xad\xf8\x69\x40\x12\xfc\x00\x7b\x0a\xff\xb4\xdd\x45\x93\xae\x18\x59\xf0\x35\x13\x5e\x19\x14\xb7\xbc\xe0\xe4\xa4\xb5\xff\x24\x29\x6c\xc0\x9d\x96\xf0\x1d\xd0\x39\xa8\xc3\x3d\x83\xaa\x52\x88\x57\x46\x2a\xa6\x27\xe2\xff\x63\xef\x5f\x97\x1b\xb9\xad\xc5\x51\xfc\x55\x10\xf9\x5f\xa5\x99\xfd\x17\xa9\x99\xb1\x3d\x89\x95\x4a\x9d\x92\xa5\xb1\xa3\xda\x33\x1a\xfe\x24\x8d\x9d\x5d\x61\xb6\x0b\xec\x06\x49\x1c\x35\x81\x4e\x03\x4d\x89\xd9\x7b\x57\xf9\x1d\xce\xa7\x53\xe5\xa7\xf3\x93\x9c\xc2\x5a\x00\x1a\x4d\xa2\x2f\xd4\xc5\xb1\xb3\x9b\x1f\xec\x11\xd9\x8d\xcb\xc2\xc2\xba\x5f\xc4\xf4\xc0\x80\xcf\xfe\x71\xb2\x5a\x4d\x0f\x1a\x97\x45\x20\x54\xce\x43\xbd\xda\x4d\xa9\x58\x30\x1c\x8e\x7f\x64\x9b\x8b\x99\xef\xa7\x07\x06\xe8\xcd\xc3\x4e\x0f\xe0\x45\x5a\x30\xf2\xfa\x2d\x99\x71\x6d\x2f\xd2\x18\x26\xdc\x3e\xda\x60\x36\x58\x6f\xf3\xb8\xb1\x95\x1c\xf9\xd9\x44\x6a\xd4\x98\x95\x9d\xf8\xf3\x37\xb5\x89\xbf\x37\xaf\x44\xbb\x97\xbb\x25\xc3\xb6\xb0\xde\xc2\xe9\x35\x41\x92\xd0\x34\x78\xce\x8a\xd1\xe9\xb5\x4b\xe3\xe5\x91\x62\x10\xee\x93\x53\x6d\x78\xf1\x09\xf9\xcf\x17\xd3\x69\xfa\xff\x7f\x79\x82\xff\xfb\xff\xfd\x77\xfd\x6f\xf7\xf5\x43\x31\xa8\x89\x1e\x87\xbf\x46\x3a\x9c\xa2\x6c\xc8\xc4\x44\x16\x31\x62\x56\xc3\xbb\xf7\xfe\x49\x47\x28\x21\x4b\x08\xcf\xc2\xd0\x96\xbc\x90\x5a\x26\x32\x73\xd2\x0b\x0e\x1d\x85\xcc\xb9\xeb\xe6\xaf\x25\x79\xfd\xfb\xaf\x76\x1f\x59\xd1\x7b\xbe\x2a\x57\x27\xe4\xed\x97\x5f\x7e\xfe\x65\xe4\x77\x2e\xf0\xf7\xd7\x7b\x12\xd2\x4c\x2e\xae\xd9\x9a\x15\x5c\x6f\xae\x93\x82\xb1\x6d\x59\x6f\x67\xdb\x87\xef\xb7\xdf\x70\xdb\xcf\xe4\x82\x28\xfb\x0b\xa1\x33\xb9\x76\xbe\xa5\x4c\x2e\xa2\x7d\xf8\x0d\xe6\x28\x26\x7c\xaf\x32\xa5\x53\x59\xea\x80\x9d\x90\x8b\xcb\x6f\x3e\xc6\x58\x47\xdb\xf1\x1b\x96\x74\x03\x55\x51\x3f\x30\xb5\xc4\xbc\xe8\x58\x62\x40\x7d\x57\x97\xb1\xb7\x88\x62\x1a\x9a\x08\xea\x25\x2b\xc8\xbc\xb4\x2e\x5b\xcc\xc8\x89\x25\x12\x10\x38\xf8\x15\xd4\x30\xf5\xf6\xb8\x70\x43\x46\x45\x6b\xde\xd0\x4c\xca\x8c\xd1\x1d\x99\x38\x2f\xd8\x9c\xdf\x9f\x86\xad\xb4\x3a\xb9\xde\x24\xf2\x4e\xc5\x59\x20\x40\x0a\x9e\xa8\x77\xe8\x8a\xed\xa8\x4d\xdc\x20\xfd\xf9\x5b\x64\x41\x95\x95\x5a\xd5\x97\x11\x70\xa8\x38\x01\x70\xc9\xc2\xd6\xee\xc6\xb0\x09\xd8\xc3\x98\x5d\xc2\xd3\x98\x4c\x14\xd9\x02\x18\xf6\xc1\x66\x0c\x68\x5d\x8d\xec\x6e\xf8\x8c\x55\xfb\x48\x1f\xc1\xfd\xda\xa5\x9b\xd8\xca\x02\x19\xc7\x06\xf0\x39\x29\x87\x71\x40\xde\x8a\xbd\x80\xe8\xd2\x4c\xf8\x6d\x79\x5d\xab\xcb\xa5\x84\x0b\x32\x3d\x30\x62\xa9\x1a\x07\xb3\x20\x57\xed\x25\x8e\x10\xd4\xea\x3a\xb9\x72\x0b\xf3\x6d\x67\x53\xed\x5c\xb9\x9d\xf9\x36\x8f\xdc\xc5\x95\x3b\x99\x6f\xdb\xa2\x3b\xb8\x72\x27\xef\xed\x35\x76\x7f\xa6\xdc\x7c\x85\xf1\xd3\x8d\xb1\xad\x3c\x95\x3c\x86\x21\x5b\xbf\x90\xb5\xa5\x5c\x4c\x3a\x29\xdf\xf5\xf6\x0b\x00\x0c\x28\x35\x6a\xee\x2f\xf6\xa8\x41\xd5\x15\xef\xb1\x9d\x21\x4a\xfb\xac\x97\xd7\x8d\x62\x83\x6e\x41\x4f\x9d\x57\xd4\xe7\xc8\xf9\xd5\xc0\x6b\xe0\x49\x80\x99\x34\x8e\xbc\xb8\x08\xdf\x1b\x03\xe2\x75\xc4\xa6\x36\x9d\xcd\xb2\xd7\x4b\xb6\x7a\x38\xd1\xdd\x86\x05\xb6\xaf\xa9\x34\xfb\x20\x06\x2f\xcb\xe4\x9d\xa1\xa3\xee\xd1\xf8\x39\x57\x20\x7c\x06\x62\xfb\x6c\x42\x9d\x3d\xe1\x77\xf7\x68\x06\xea\x8f\x44\xc1\x1b\x71\x2c\x92\x45\x90\xf2\x1c\x5b\xb3\x1d\x88\xb8\x91\xcc\xd9\x8e\xc3\xfa\x4b\xdb\x0f\xf8\x62\x0f\x10\x28\xb9\x5d\xf1\x01\x3f\x15\x93\xc1\xea\xe9\x6c\x83\x1d\xcf\x11\x65\xa4\x70\xc5\x75\x15\xb3\x0b\x7d\x34\x06\x55\xab\xeb\x44\xa1\xf8\xe9\x06\xfb\xff\x6d\x23\xd1\x7b\x49\xd3\xaf\x69\x46\x45\xb2\x0f\x35\xda\x7a\xeb\x91\xc8\x14\x8e\xd6\x88\x50\xb6\x23\x64\xf8\xec\xf8\x42\x2c\x0a\xa6\xa2\x63\x6f\xe3\xdd\x3f\x01\xc9\xea\x40\x7a\x20\xa2\x6d\xc1\xe6\x37\x89\x6c\xf1\xd7\x76\xbf\xc5\x16\x2f\x61\xde\x9a\xd2\xb2\x80\x88\x40\xfc\x0a\x71\x00\x96\x4f\x93\x84\xe5\x9a\xa5\x97\x3b\x4e\x92\x2a\xbd\xdf\x39\x3d\xdc\x37\x89\x14\x29\xc7\x80\x5a\xf2\x57\xf0\x22\x81\xdf\x35\xfd\xce\x79\x33\xe0\xdb\x7a\xbf\xeb\x67\x74\x17\x41\x0b\xbd\xe7\xf1\x12\x4d\x98\x53\x8d\x6b\xce\x21\xf3\x75\xd4\x27\x14\x74\xf3\xab\xb9\x82\x72\x3b\xce\x73\x79\x80\x06\x57\xcd\xe0\xaa\x09\x8f\x60\x70\xd5\xfc\x92\xae\x1a\x43\x0e\x76\x3d\x34\x2e\xf8\x27\x70\xb5\xba\x87\xfd\xe9\x3d\xbd\x9b\xe6\x66\xc9\x2a\xdd\xd0\xb9\x87\x0c\xf9\x89\xb0\xb9\xc7\x78\x5a\x6e\x19\xcb\x3f\x62\x07\xb5\xec\x92\xdd\xeb\x3f\x47\x8a\x72\x6c\x2d\xed\x63\xee\x42\xb0\xcc\xcb\xb0\x30\xdb\x83\x2d\x23\x82\xdd\xeb\xa5\xcc\xb1\x18\x26\xe6\x27\xa2\xe7\xa4\xcb\x40\x08\x30\x25\x06\xa8\x06\xc7\x35\x5c\x12\x1f\x54\x15\x18\x92\xe0\x44\x20\x66\x95\xa5\xe6\x95\xd8\xb8\x66\x14\xe5\x4d\x79\xa5\x2d\xb6\x39\x3d\x30\x8b\x23\x66\x75\x66\xdd\x7f\x34\x2a\xb8\x50\x9a\xd1\xd4\x80\x37\xf8\x55\xb1\x6c\xfe\xc7\xe9\xc1\x0b\xeb\x18\x7b\x19\x9b\xc2\xe6\x70\xfa\xc0\xb0\x19\x44\x92\xba\x73\xba\x34\x53\x4b\x61\xe3\x14\xc7\xc9\x7c\x11\x75\x4b\xb4\x5a\x05\x57\xf4\xfe\x8a\x41\xd9\xb8\x1b\x1e\x75\xd7\xd4\xd1\x85\xaf\x58\x15\xc1\x0c\x1d\xf4\xe4\x5c\xdf\xd9\x56\x71\x66\x94\x31\x21\xdf\x9b\xe3\xa8\xb4\xda\xa8\x44\x63\x5b\x35\x79\x88\xa7\xae\x7a\xec\xa2\xa0\x09\x9b\x97\x99\x1b\xcf\xc5\xb0\xbb\x71\x0d\xf5\xe8\x1a\x9b\x91\xaf\x2f\xae\xce\xbd\xc7\x51\xce\xc9\xeb\x37\xaf\x94\x0b\x6c\x6d\x84\x50\xb3\x21\xb8\xcf\x2d\xf2\x85\x60\x7d\x19\x52\x47\x80\xad\x56\x6f\x2b\xc4\x63\x76\x1a\x94\xc2\x8e\x9e\xb8\x22\x9a\x16\x0b\xa6\x5d\xd9\x7a\xae\xf0\x3e\x92\x8b\xaa\xc3\x15\x00\x81\x69\xe4\x6b\x42\xd6\xf2\xa8\x1a\x06\x0d\xac\x0c\xda\xc0\x11\x86\x02\xff\x82\x21\x30\x88\xea\xaa\x4a\x27\x72\x98\x57\xf5\xc4\xdc\x17\x66\x91\xbc\xae\x28\xec\x7c\x77\x3e\x67\x8d\xc5\xf9\xa1\x54\xb8\x95\x02\x20\xcf\xcf\x43\x82\x8b\x85\x45\x86\x36\xcc\x02\xf0\xf8\x4b\x82\x74\xc2\x79\xf7\xd8\x2a\xd7\xdb\x05\x25\xba\xb6\x94\x53\xa5\xee\x64\xd1\xe9\x02\xf8\x68\xab\x28\x23\x6c\xed\x4b\x7e\x6f\x76\xfd\x8a\x2c\x98\x60\x05\x0d\x0e\xb9\xc1\x0b\xd0\x46\xfe\x49\xb7\xe2\x81\x51\xf0\x2d\x75\x29\xa3\x87\x61\x64\x8a\x5b\xb6\x01\xd1\xcc\x0e\xe1\xf0\x01\x90\x38\x97\xe9\xa1\xaa\x22\xb5\x1b\x0c\x82\x9d\x3a\x11\x96\xbb\x6c\xb6\x17\xee\x5c\x31\xbb\x26\xa4\xcd\xb0\x2a\x2d\x2d\xea\x82\x64\x32\x26\xe4\x03\x1e\x71\xf3\xa0\x84\x50\x23\x28\xf1\xd4\x0d\x71\xcb\x62\xa8\xe0\x3e\x7d\x6c\x96\xad\x7e\xee\x1d\x0f\x51\xd0\xb4\xa8\x60\x73\x56\x30\xa1\xa3\x52\x4f\x5b\x0b\x41\xb9\x36\xaa\x2e\xbb\x83\x5e\x82\x5c\x2c\x46\x46\x9d\x1e\xa1\x30\xa2\x8e\xe1\x60\x8e\x3f\xeb\xb0\xd0\x13\x72\xf3\xf1\xfc\xe3\x09\x39\x4d\x53\x22\xc1\xb8\x5f\x2a\x20\xbc\x70\x57\xd4\x38\xd0\x06\x8e\x40\x18\x3d\x22\x25\x4f\xff\xaf\x88\xd7\x69\x1f\x58\xf9\x22\xe3\x3d\xe1\x75\x0d\x64\x6b\xe3\xbd\x67\x06\x6c\xd7\x78\x70\xb2\x80\xf8\x04\x83\x14\xab\xee\x53\xb7\x8e\x88\xae\xd5\x37\x70\x49\xfc\xb8\x6e\x09\x0d\x8b\x87\xf4\xc7\xf8\x4f\x7d\x34\xf8\xf8\xaf\x86\x62\x5c\x4c\xfa\x30\xa0\xaa\xf2\x74\x28\xc7\x91\xb9\xb4\x36\xd9\xd9\x06\x14\x2d\x47\x9f\x72\x59\x44\x19\x90\x0d\xce\x81\x1e\xf0\xac\x00\x43\x0d\xf0\x1e\x70\x4b\x0b\x1f\xd2\x03\xd1\x1a\x47\xce\x1f\x53\x79\xae\xa6\x07\x7f\x9d\x96\xaf\x5e\x7d\x9e\x5c\x4c\xd6\x6f\xe1\x5f\xec\x6f\x27\x30\x57\x34\x02\x01\xdc\x37\xfe\x85\x2f\xf0\x85\x13\xfc\x02\xde\x82\x2f\xd0\x4f\x02\x45\x6f\x61\x2d\xb5\x4d\x04\x8b\x72\x7c\x31\x2a\x05\x42\x48\x8e\xe5\x21\x00\x2c\x91\x12\x1f\xa4\x34\x63\x99\x34\x74\x19\x44\x44\x1b\xd0\x0a\xb4\x0e\xfa\xf0\x54\x4e\xfa\x38\x91\x05\xf2\xb8\x1d\x84\x65\x19\xed\x1d\xb3\xa2\x21\xd5\xb8\x5c\x0b\xd9\x7d\xf9\x8f\x51\x1a\x1e\xca\x52\x0b\xb6\x92\xda\x73\xd6\xda\xc9\xa2\x54\xd5\xc4\x81\x42\x46\x3a\x01\x4c\xac\x83\x0d\x69\xc5\x16\x63\xc5\x00\x98\x7a\xf7\x85\xfa\x46\x8c\x64\x34\x63\xfa\x8e\x31\x61\x7d\xfe\x09\xb5\x4e\x71\xac\x61\x69\x05\xef\x70\xdd\x50\x72\xca\xcb\x8b\xf1\x13\xb6\x65\x91\xed\x0c\x7c\x4e\x66\x52\x2f\x8d\xae\xaa\x50\x86\x30\xb2\xc0\xd7\xdf\x4e\x0c\x51\x19\x9b\x47\x4f\xed\x7d\x69\x17\x28\xcd\x92\x70\xec\xb7\xfd\xc7\x7e\xbb\x33\xf6\x98\x98\x6b\x1a\x9b\xc0\x6e\xb3\x8a\x8c\x4b\x24\xc4\x85\x39\x65\x3b\x00\xc3\xa1\xaa\x4d\xe4\x0e\x22\xba\x6e\x7b\xf8\x8b\x4c\xce\x68\x56\x15\xbf\x9c\xdb\x36\x2c\xfe\xba\xec\x89\x89\x28\x8b\xd8\xed\x75\xa2\xa2\xdd\x7d\x15\xff\x60\xa0\xb9\x94\x77\x3b\xe9\x65\x68\x9e\xb0\x14\x2c\xb6\x9d\x6e\x19\x6a\x57\x60\xf2\x31\x31\xcd\xae\xe5\xe9\xc1\x27\xc5\xa0\xc5\xc7\x64\x7a\x40\x56\x8c\x0a\x55\x5f\x9b\x17\x7b\x0c\xf2\x5b\xcd\xb0\xb6\xd8\xb1\x19\xe4\x32\x52\xaa\x15\x3f\x38\xa4\x81\x75\xeb\x96\xf7\x3a\x85\xc1\xb4\x1b\x31\xed\x66\x32\xb9\xa5\x73\x7c\x86\x3d\x8b\x85\xd7\xcc\x70\x8a\x33\x6c\x76\xec\xbc\xe1\x8f\x11\x6b\x6f\x7d\x75\x3b\x46\xdf\xe0\xe7\xcd\x60\xfa\x1d\x4c\xbf\x83\xe9\xf7\x5f\xcf\xf4\x1b\x52\x88\x9e\x06\xe0\x5d\x8a\x53\x7d\xf6\xb7\x0a\x37\x78\x21\xdb\xb8\xbd\xed\xaf\xde\xc5\xe7\xcf\x5d\x1b\x76\x91\x42\xff\x4a\xe5\xfa\xc8\x71\x85\xb4\x8d\x38\xe2\x66\xf0\x76\xc6\xa0\x41\x14\xbe\x13\xd5\xbe\x21\x27\x1d\xad\x36\x21\x9e\xcf\x31\x5c\x2c\xa7\x9a\x43\x0a\xdb\x06\xe5\x73\x99\xa5\xc0\xf5\x33\x46\x95\x9d\x3a\xca\x89\xb9\xd2\xf4\x96\x89\x6c\x43\x74\xc1\xdc\xf2\x70\x16\x5a\xcd\xf2\x34\x06\xc2\x56\x11\x4a\x57\xc5\xa1\xfa\xbd\xd3\xa0\x7a\x8e\xe0\x48\xb7\xbf\xb3\x80\xdd\xfe\x3a\x56\x49\x05\x56\x32\xc8\x16\xcd\xb2\xc5\x6e\xe5\xab\xaa\x24\xc5\x68\xc1\x04\x14\xbd\x9a\x95\xdc\x60\x20\x4c\xe0\xa6\x7f\x01\x94\x09\xac\xfa\xae\x53\xe7\x0d\x5f\x31\xa5\xe9\x2a\x3f\x21\xa2\xcc\xb2\xe9\x56\x15\x04\x50\x73\x00\x66\xcf\x22\xbd\xa0\x19\xda\x48\xba\xd7\x41\x75\x96\x4a\x80\xd9\xfe\x7d\x57\x86\xd9\x5d\xe6\xb6\x18\xb3\xfd\xc4\x20\xc9\x0c\x92\xcc\x20\xc9\xfc\xcb\x49\x32\xdb\xa4\xa2\x9f\x30\x13\x27\x40\xd5\xe7\x01\xf2\x4c\x46\x95\xea\x91\xbb\x87\x8f\x91\x94\x25\x19\x75\xde\x5d\x00\xa2\xb9\xb8\xe6\x9c\x8a\x95\xaf\xf7\xb1\x92\x82\x37\xb8\xd1\xd0\x02\xc1\x55\x68\x20\xc4\x6b\x09\xfe\x50\x8c\xbd\x43\xe3\x15\x5f\xbb\xd0\x39\x83\x91\xb2\xd0\x0d\x36\x71\x3a\x93\xa5\x26\x09\x2b\x0c\xe8\x0c\xb6\x41\xae\x48\x7d\x55\x7b\x45\xc4\xb5\x1b\xe1\x5b\x02\x13\x1f\xec\xe7\xe4\x16\xa0\x51\x37\xe7\x3c\x0e\x49\x78\xc8\x86\x16\xee\x27\x3a\xe1\x8d\x9b\xd4\xea\x86\x75\xac\xfa\xd3\xee\x2b\x3e\xd7\x0a\xbe\x24\xd4\x35\x08\xee\x42\x51\xf3\xa9\x6c\xdd\xfe\xf6\x63\x25\x48\xf2\x2a\x6c\xa3\xb3\x3d\x14\x29\xd8\xbc\x60\x6a\x19\x15\x77\x3f\x60\x62\x96\x1d\xd1\x2d\x8b\x2b\x08\x90\x4c\x69\xcc\x43\xf5\xf0\x68\x8c\xc6\x5b\x5f\xc9\x6b\x0d\x90\xdc\xb9\xf7\xb8\xb3\x90\x81\xca\x19\xca\x85\x28\x59\x1a\x4c\xde\x7e\x69\x67\x2f\x97\x12\x3d\x72\x78\x05\x6d\xd7\xe5\x39\xa6\x71\x98\xe1\x15\x37\x98\xc4\xc1\x64\x69\x41\x4e\x66\x1b\x3b\xee\x1e\x21\x31\x0b\x26\x3a\xd3\xf1\x4e\xcd\x43\x64\x29\xb3\x54\xe1\x0b\x6e\x11\xb2\xf2\x7f\xee\xef\x86\x9d\xf1\x22\xfd\xee\x8b\x3e\x0e\xd8\xaf\x2f\xae\xce\xbf\xfb\x22\x8c\x57\xad\xe4\x83\x3a\x6c\x4b\x20\x13\x66\xe4\x2f\x1e\xee\x80\xcd\xa8\xd2\x5f\x4b\xd9\x14\xfb\x11\x5d\xe2\xfb\xe0\x1d\x0b\x29\x9f\x61\x6e\x96\x14\x8e\xd9\x3c\x24\x41\x36\x8c\x81\x2b\x3a\x23\xb2\xd4\x79\x19\x33\x45\xbb\x4f\x1f\xef\xa2\x99\xfa\x8a\xd5\x52\xcd\xf6\xdd\x59\xe4\xf5\xa6\x4d\xba\x47\xff\x09\x1b\x85\x60\xa7\xe2\xe2\xbc\xef\xce\xae\xe0\x79\x72\x71\xee\x93\xee\x61\x3d\x8f\x5b\x44\x93\x16\x1b\x5d\x01\x14\xcc\x72\x24\xc1\xd5\x20\x38\xa7\x6c\x15\xe5\x6f\xfb\x2c\x63\x1d\x95\xf6\x1b\x17\xe2\xa4\xfe\x60\x19\x29\x2c\xe3\x31\xab\x68\xf7\xef\x5a\x02\xf0\xb6\x37\x01\x78\xbb\x1f\x01\x78\x3b\x10\x80\x60\x3b\x03\x01\x88\xec\x6c\x20\x00\xff\x4c\x02\xd0\xf6\xeb\x6c\xd1\x19\x09\x6b\x96\x88\x28\x08\x72\xb3\xf9\xb3\x51\x76\xee\xb8\xf3\xe8\x60\x7e\xa7\x34\x9d\x65\x5c\x2d\x59\x4f\xb1\xc4\x1c\x9e\x96\x9a\x66\xce\x43\x2d\xe7\xe8\x6b\x67\xd5\x48\x66\x27\x44\x31\x85\xf6\xb6\x36\x30\x35\xc4\x08\xc7\xd7\xd7\x8b\x6a\x36\xac\xef\xed\x33\xad\xef\x52\xea\xa7\x03\xa1\x90\x62\xf4\x8b\x2c\xf3\x71\x90\x7c\x8e\x65\x42\xfe\x4b\x3f\xf0\x4d\xf0\xd1\x90\x31\x02\xf4\x5c\x08\xab\xea\x27\xa8\x93\xce\x3c\xe5\x06\x85\x07\xe2\x0a\xea\x26\x0e\xcf\x83\xfd\x1a\x9a\x29\x48\xf7\xaa\x7a\xb1\xeb\x96\x78\xb0\x86\x1d\x34\x44\x85\xdd\x2d\xa5\x62\x95\x89\x9d\xdc\x31\x42\xe3\x51\x35\xd5\xc7\x1b\x32\x5a\xe8\x75\x3f\x8a\x4d\x50\xa7\xeb\xbf\x8b\x6b\x8e\x31\xd3\x9e\x85\x14\xa4\x60\x54\x49\x81\xcd\xb1\xb1\x5e\x6a\x1b\x3b\xeb\xbd\xae\x0e\x96\xb6\xbd\x2e\x58\x8d\x35\x26\x00\x5d\xc6\x1b\x81\xe3\x3c\xc1\x7a\xe0\xa9\xde\xcb\xb9\xd9\xe4\x2c\x70\xc1\x55\x41\x93\x2e\xec\xad\x16\x72\xdf\x7e\xda\x6b\x4e\x3d\xca\x8e\xb4\x6d\x40\xb1\x62\x6a\x79\x64\xa0\x6f\x7e\x65\x82\x30\xdb\x8c\xdd\x05\x19\xb5\x95\x42\x20\x58\xef\x7d\xe4\x78\x18\xdc\x28\x6b\x32\x7f\x2c\xa0\xba\xe4\xef\xce\xc2\x02\x48\x89\x7a\x51\x48\xa4\x44\x6f\xb7\x28\xd1\xdb\x81\x12\x75\xec\x60\xa0\x44\xfb\xad\x6b\xa0\x44\xf6\xf3\xbf\x89\x12\xb5\x84\x98\x8f\x62\xc2\x7b\xbf\xc7\x76\xfa\xfd\x57\x8f\x6d\x8b\xb2\xbd\x9f\x8c\x8c\xd9\xb6\x77\x73\x3b\xd0\x10\xdf\x19\x4b\xf2\xbe\x7a\x14\x5d\x83\xda\xf9\xcd\x77\xfd\x82\x60\x0f\x29\xe0\x89\x18\xb4\x21\x33\x70\xc7\x12\x6f\x5d\x85\x70\x61\x2b\x0f\x1e\xd8\x97\xfd\x04\x10\xcb\x12\x1b\xf2\xea\x9b\xb3\xcf\x3f\xff\xfc\x2b\xb0\xbf\x63\x91\x44\x48\x96\xfa\x74\x73\xd6\x62\xa4\x37\x73\x8c\xe2\x8b\x14\x65\x66\x1b\x65\xec\x76\x42\x26\x1d\x48\x87\x39\x8f\x5d\xf0\x04\xdd\xdf\xf9\xa1\x94\x7d\x89\xdc\x0a\x79\x27\x9c\x03\xda\xfa\x6e\xda\x75\xe1\x47\x99\xc0\x71\xd6\x7e\xb2\xfe\x95\x7d\x76\x47\xd8\xb7\x4b\x7f\x26\xc6\x0a\xd3\xb6\x71\xd6\xe6\x14\xd3\x3e\x00\xea\x05\x26\xbf\x40\xcd\x05\xd8\x9f\xfa\x93\xdc\xf3\xea\x25\x9f\x60\x64\x16\xfc\x04\xb4\x7f\x41\x35\xbb\xa3\x6d\xb9\x5a\x5b\x6b\xf9\x16\x5f\xf0\x31\xdb\xc1\x86\x9e\x60\x39\xbe\xc7\xc6\x1e\xc2\x87\x7b\x25\xb6\xa4\xc7\xaf\x28\x63\xb4\x10\x2c\xfd\xa6\x90\xab\xfe\x6b\x7a\x5f\xbd\x54\x61\x5d\xe8\x8d\x2e\xd8\x82\x16\x69\xeb\xc4\x04\x89\x5c\x61\xf3\x23\xe1\xc0\x5d\x9a\x74\x53\x6c\x9d\xfb\xf4\x42\x45\xd2\x4f\xd2\xdb\xd9\xdc\xc5\xdc\xc6\xb7\xa3\x24\x80\x69\x0b\x1f\x98\x5a\x42\xc7\x12\xe4\xb9\x47\xa4\xa9\x40\x54\xf8\xd9\x12\x1a\xd1\xf2\x69\xf3\x43\x99\xd0\xa4\x54\xc1\xde\x5b\x37\x4c\x7a\x9f\x27\xf1\x79\x0e\x37\x5d\x62\xcf\xce\xce\x61\xc3\x2e\x4d\x11\xe3\x55\xf0\x84\xa8\x3d\x1e\xae\x1c\xbe\x74\x6f\x1e\xd2\x1a\x9f\x6a\x4f\xdd\xb2\x09\x79\xac\xa0\xc7\x83\x43\xaa\x22\x3d\xc1\xe6\xdc\x10\x0a\x10\xec\x55\x16\x77\x88\xef\x06\x47\x84\xfc\xa7\x0b\x63\x9e\x6b\xf5\xd2\x0b\x2d\xd7\xda\x55\x0c\x07\xae\xd5\xb2\x91\x81\x6b\xb5\x2c\x68\xe0\x5a\xbb\x9f\x81\x6b\x0d\x5c\xab\xe9\xa9\x81\x6b\xb5\xbe\xfe\x9b\x8c\xec\x7f\xae\x74\x41\x5b\xd9\x24\xa0\x5c\xcf\x12\x74\x6f\x0b\xa1\x56\xb3\xe0\xaf\x41\xd8\xfd\xce\x13\x91\xc0\xfb\xdd\xb5\xda\x73\xa9\x22\xef\x77\x1e\x99\xfe\x52\x2d\x84\x76\x77\xb0\xd5\x44\xc8\xd6\xa3\xf5\x55\x8c\xe2\xb1\xad\x43\x3c\xff\x10\xcf\x1f\x1e\xc1\x10\xcf\xff\xcb\xc5\xf3\xef\xdc\xe0\xb6\x0e\x42\xf8\xea\x2c\xc2\xc1\x9a\x2b\x46\xb5\x05\xf1\x03\x09\x8d\xdf\xf1\xdd\x95\x86\x0f\x3b\x77\xc7\xba\x8a\xe8\xb1\x86\x4c\x9b\x7c\xe8\x57\x13\x63\xa3\x86\x08\x94\x42\xb4\xc4\xc9\xc7\xd9\xb4\x1d\xf2\xdb\x4f\xd1\xe8\xab\x18\x5c\xcd\xa3\x6e\xad\xf0\x6f\x2b\x67\x35\x2e\xae\xc7\xf4\x0d\x12\x5e\x6c\x7a\x10\x76\xec\xa1\x05\xc9\x0f\x8f\x5a\x85\xef\x9e\x79\xc5\x68\x1a\x53\xb1\xea\x4a\x5e\xed\x69\xdf\x61\x38\x2d\x81\x44\x28\xbe\x10\x90\x2b\x22\x74\x35\x2e\x59\xf1\x45\xad\x57\xde\xd6\xda\x24\xbc\x46\x33\xdb\x30\x28\x97\x02\x14\x6e\x55\x26\x4b\x42\x15\xf9\x86\x65\xfc\xde\x16\xba\xf0\xe5\x69\xee\x28\x37\xb7\x7c\x2e\x1b\xea\x87\x24\x09\x53\xca\x51\x28\xbf\x92\x7d\x2b\xea\xad\x69\xc1\x69\x77\xa4\xf9\x77\xf8\x58\x95\x94\x82\x19\x08\xf6\xed\x00\x97\x83\xae\x10\x90\x57\x32\x14\x8a\x78\xa4\xe4\x37\x37\xb8\xf1\xec\x4d\x23\x01\x03\x5b\xdb\x46\xee\x3e\xb1\x2b\xf9\x45\xd6\xba\x2d\xf9\xed\x3e\x12\x97\xfc\x1a\xfb\x0c\x9b\x1f\x81\xc9\x16\x6b\xf6\x49\x80\x5f\xe8\x1b\xa8\xeb\x73\x42\xe6\x34\xc3\xd6\x03\xcf\x20\x36\xe2\x15\xdd\xab\xf9\x24\xbc\x32\x88\x8c\x83\xc8\x38\x88\x8c\xff\x6c\x91\x71\x97\x78\x75\x35\x9d\xc4\xfb\xfe\xd0\xb6\x93\x59\x26\xef\x2e\x26\x17\x93\x09\x4d\x6e\x99\x56\xdf\x14\x72\xf5\xbd\xed\xb9\xdf\xe9\x00\x3f\x3c\x6d\x7b\xdb\x25\xf4\x57\x51\x2a\xb0\xd2\x98\x84\x60\x1b\xb3\xa4\x84\x92\xa2\xcc\xa0\x12\x6e\x5a\xc8\x1c\x5b\xe7\x57\xed\xee\x59\x4a\x74\x41\xe7\x86\xc2\x62\x83\x18\x37\x55\x6c\xcc\xaa\xab\x17\x10\xdb\xbd\xdb\x7a\x01\x64\xbe\xfb\xcb\xfb\xd3\xcb\x87\x83\xa6\xf1\xf5\x27\x80\x0d\x8c\xfd\x4f\x03\xce\x9d\xba\x2e\x92\x73\xa5\xcf\x96\x2c\xb9\xed\x04\xc6\x35\xd3\xd6\xf8\x39\x0a\x0c\xed\xa3\xc4\xbc\x4c\xa4\x20\xa7\xdf\x5f\x93\x77\x67\x6f\x7c\x7a\xab\x1a\x93\x53\x2b\x0c\xc5\x56\xbf\xae\xf7\x94\xc4\x5e\x17\xd3\x83\x73\x79\x29\xf5\xd2\x5c\x4f\xe8\xf4\x84\x5d\xe2\x5c\x2b\xab\x73\x4c\x1f\x9d\x1e\x74\xf4\x43\xf5\x83\xc4\x60\xc2\x44\x19\xb3\xe8\x8f\xaa\xb7\x62\x3f\xda\x85\xc4\x5e\xb3\x8b\xda\x4b\x45\x98\xe5\xf3\x33\x29\x04\x4b\x20\x11\xa8\x6a\xa8\xc1\xc5\xa2\x6f\x3b\xbd\xaf\x27\xdf\x74\x0c\x81\x11\x3e\x5c\x90\xaf\x27\xdf\x90\x95\x4c\xe3\xcd\x28\xe3\x58\x8c\xc7\x98\x65\x5e\xda\x30\x13\x99\xf3\xd6\x7c\xc5\x88\xc1\x49\x32\x73\x2d\x4f\x1a\x6b\xf7\xd9\xd7\x22\xef\x60\x38\x11\x86\x73\x79\xff\xcd\x52\x2a\x48\x15\x36\xd2\xfc\x0c\x6e\x49\x6c\xd0\x82\xd1\x64\x19\x76\x63\xb1\x5d\x63\x94\xed\xca\x4a\xf8\x2a\x2f\xe4\x9a\xf9\x24\x66\xd0\xdb\x45\x02\x08\x96\xcb\x74\xa4\xe5\xa8\xad\x1f\x95\xdf\xaa\xc2\x8d\x61\xb7\x16\x1b\xc7\x18\xe4\x30\x63\xce\xad\x59\x7b\xca\x66\x25\x76\xa8\xcd\xcb\x22\x97\xca\xa0\x7e\x3b\x82\x3e\xa8\x47\xe1\x2c\x9f\x1b\x5d\xf1\x62\x4e\x13\x36\xb1\x3d\x3e\x3b\x90\xe4\xeb\xc9\x37\xdb\xaf\xa0\x34\x51\x30\x10\x90\x09\xbb\x37\xe2\x00\x88\x79\xa0\x0f\x3a\x64\x88\x12\x31\xd0\xc1\xbc\xa7\xce\xe9\x91\x56\x8a\xa3\x5a\x9b\x73\x31\xa8\x96\x17\x72\x51\xd0\x15\x88\x6f\x5c\x10\x59\xa4\x50\x33\x35\x0a\x6d\xaa\x93\xa5\xa7\x79\x5a\x1e\x7b\xe1\x43\x30\x6d\xa8\xdf\xd8\x96\x3b\x12\x8c\xa5\x30\xe0\x0a\xdf\x58\xb2\x60\x25\x51\x10\x9b\xed\xb8\x9e\x61\x96\x8c\x56\xc4\x15\x2a\x12\xc8\x35\x2b\xb6\xfb\x83\xf5\x18\x74\x49\x45\x6a\xce\x5f\x24\x72\x05\xf2\x97\x5f\x3d\xf8\x89\x31\x90\x0c\x4b\x75\x5a\xc4\x84\x4d\xc9\x52\x2b\x1e\xef\x68\x19\x9a\x86\x08\xb9\xf0\x3a\xb9\x91\xa2\xaa\xfd\xfa\x5d\x04\x47\xf0\xa2\x54\x25\xcd\xb2\xa8\x7f\xde\xe8\x21\x29\x58\x90\xc6\xe3\xf1\xcb\x3d\x4b\x09\x18\x64\x43\x44\xff\x24\xf2\x82\xaf\x79\xc6\x16\xfd\x88\x52\xe4\xb5\x23\xc2\xe7\xae\x55\xe7\x91\x43\x1b\x66\xd3\x37\x6f\xcd\x3d\xce\xc6\x65\xf0\xfc\x0f\xb3\x7c\xfe\x83\xbd\x67\x51\xe6\xa1\x36\x2a\xd1\x59\x78\x1b\xc3\xd7\xa1\xa6\xac\x9c\x1b\x5c\x74\xe8\xc3\x84\xb2\xad\x0b\xa8\xae\x3d\x1b\x1b\xbd\x54\x46\x2a\x4e\x50\x8a\x45\xc3\x87\xc5\xa4\xc3\x43\x85\xc4\x94\xe6\x78\xc4\xf6\x21\x2e\x94\xd1\x60\xa0\xab\x35\x91\x77\x51\xf7\xf3\xee\xcd\x30\xa7\xc8\x6c\xbf\xa7\x6a\x82\x47\xf7\x32\x9d\xe5\xf3\x3d\x78\xc8\x3b\x77\x2c\xd5\x11\xd9\x13\x02\xa1\xc5\x75\x6e\x30\xab\x37\x12\x72\x9e\x51\x11\x77\xc9\x3e\x56\x1c\x31\xcb\xbe\xd7\x37\xd2\x35\xd4\x93\x42\xac\x68\xd1\x2d\x97\x98\x3d\x44\xde\xab\xf1\xbd\x8a\xc9\xd1\xd8\xd2\x3f\x7f\x33\xe3\xe6\xa6\x15\xb7\xbe\xfc\xab\x62\x9a\xa0\xce\xed\xb8\x01\xde\x62\x2a\x08\x73\x7d\xd6\x50\x25\x6a\xa0\x6c\xd4\x16\xee\xb5\x44\x60\x8c\x78\x08\x73\xd8\x82\x28\xa5\xab\xa5\x6a\x56\x06\x65\x5f\x73\x94\x32\x89\x9c\x37\x12\x9f\x6a\x41\xd0\xba\x03\xbc\xb2\x69\xd0\xc9\x10\x99\xa8\xab\x23\x6b\x7d\xe8\x0d\xfe\x54\x83\x81\x79\xe1\xba\x29\x5c\x4d\xbe\x21\x20\xcc\x85\x08\xf8\xaa\xf9\x18\x1b\x52\xd7\xf0\x18\x01\x40\xf6\x44\x3e\xf4\x28\x9e\x62\x4f\x71\xfb\xb5\x86\x43\x34\x5b\x0b\x4e\x26\xb6\xb7\x90\xe4\xd6\x1c\x6d\x50\x15\xdf\xd2\xe5\x17\xb6\x62\xbf\x23\xd8\x41\x73\xc8\x68\xc7\x11\x03\x71\xeb\xd2\x36\x92\xba\x74\xc5\x87\xbd\x98\x6e\xa8\xf7\x1c\x70\x47\x4b\x32\x3d\xb8\x29\x85\x60\xd9\xf4\x00\x8b\x5d\xcf\xa4\x8e\x16\x7d\xb6\xba\x33\xac\xa0\x60\x2a\x97\xc2\xdc\x39\xcb\x54\xb8\x22\x1a\x46\xc1\x09\xb7\x2a\x1e\xc3\x7c\x51\x02\xe9\x96\x70\x7e\x7d\x65\x24\x69\x7c\x0f\xe7\x89\x0d\x3d\x2b\xb5\x7d\xa6\x3e\x7f\x83\x6f\x00\xa2\x34\x52\x5e\xb0\x44\x67\x9b\x68\x2d\x66\xb3\x32\xe1\xe6\xb7\xe7\x57\x3d\x12\x65\x57\x50\xe1\x3a\xcf\x19\x2d\x54\xd8\x33\xe6\x62\xe2\x94\x64\x8e\xad\xf5\xe0\xc9\x3f\x3a\xb3\x13\xc8\x90\x0d\xf7\x3a\x67\xc5\x8a\x2b\xc5\xd7\x8c\xbc\x7f\x13\x48\x14\x15\x7e\xe3\x09\xed\xdb\xff\x7a\x96\xcf\x8d\xfc\x39\x29\xe4\xfd\xe6\x9d\x35\x92\x5c\x67\x06\xa5\x7a\x12\xde\xaf\x27\xdf\xb4\x0f\x10\x47\xfc\xb8\x54\x16\x48\xed\x87\x8a\xb0\xd5\x8c\xa5\x06\x3d\x6f\xcb\x19\x1b\xe5\x66\x06\x6b\x94\x56\xa4\x3e\x55\x73\x48\x46\x17\x9d\xf6\x6b\xbf\xc8\xb5\x59\xae\x3a\x33\x0f\x96\xf9\x1e\x6c\xa7\x63\x88\x1a\x3b\x42\x58\xc4\x36\x8f\xe0\x09\xd8\x55\x5e\x48\x74\x04\x64\x1b\x92\x98\x11\x49\x89\xdd\x91\xca\x5c\xe9\x82\xd1\x55\xa8\x38\x54\x10\x3a\x3c\x8c\x57\x78\xb7\x6b\x23\xc9\x92\x72\xd0\x07\xae\x51\x30\x73\x0d\x1c\xfd\x0a\xe7\x21\xb8\x6d\xf5\x70\xeb\x40\x7b\x2e\x5d\xc0\x43\xf0\x03\x17\xd7\x1b\x91\x60\x0d\xa7\xbd\x60\x5f\x7b\xf3\xa8\x81\xd8\xea\xb8\x6e\x67\xdb\xe1\x43\x76\x89\xaf\x57\x8f\xf6\x3e\x6f\xb7\xf5\x02\x43\x65\xa0\x3e\x0c\x50\x34\x36\x6c\x05\xc6\x31\x21\xef\xe5\x1d\x2b\x9c\xa5\x6c\x61\xae\x71\xc1\xd2\x32\xc1\xae\xf1\xa3\x32\x07\xc3\xb0\x48\xcc\xa3\x7f\xe6\x8b\xa5\x7f\x36\x4e\x65\xcd\x9b\xce\xb0\x3e\xf9\x44\x4a\x45\x17\x0c\x8a\x3d\x18\x09\x1b\x62\x9a\x72\xb2\x92\x05\x92\xf3\x1a\x95\x78\xad\x1e\x40\x21\xde\xcb\xc5\x7b\xb6\x66\xb1\x6e\x1e\x3b\x27\xe2\x9e\xad\x41\x1d\xba\xfd\x67\xf0\xb5\x2b\xc7\x10\x88\x90\x0d\xb4\xc0\xeb\xfb\x15\xec\x57\x48\x8e\x3f\x3a\x13\xcb\xc7\xf9\x1c\x8d\x2b\x17\x62\x2e\xcd\xbf\xd0\xb6\x62\x94\xd8\xe9\x41\xb3\x32\x9f\xc9\x05\x36\x55\x65\x2b\xae\x75\xc5\x8e\xcc\x64\xba\xa0\x09\x23\x39\xcf\xd9\x91\xf3\x14\x1a\xa1\x1c\x04\x5b\xb4\x1f\xac\x56\x0d\x3d\xb5\xa7\x07\x3a\x21\xec\x9e\x25\x06\x66\xa8\x4a\xd7\xec\x3b\xe4\xe3\x7c\xfe\xb7\xf1\xfe\xe0\x9f\x5c\x5f\x9e\xde\x4c\x0c\x6b\x8f\x1c\x00\x15\x9b\x8f\xb1\x9e\x3f\xa3\xae\xb4\xfc\x51\x47\x90\xda\xce\xc9\x56\xcb\xa8\x34\x9e\x82\x8a\x05\x0b\xdb\x63\xdf\xc1\x77\xa9\x5c\xc5\x15\xb9\x9c\x27\xb7\x84\x62\x83\x0c\x8c\xc6\x2b\x98\x75\x0a\xa0\xbd\x1f\x7e\x49\x64\x96\x71\xa3\xc9\x5b\x51\xd3\xbb\x46\xe3\x06\x49\x2f\x30\xb2\x7c\xc9\x56\xac\xa0\x99\x5d\x17\x55\xbe\x31\xbd\x91\x0a\xbf\x39\x23\x6f\x5f\x7d\xf9\x96\xbc\x78\xfd\xea\xcd\x17\x3f\xff\xf8\xff\xbc\xfd\xf2\xcb\xcf\xbf\x7c\xd9\xd4\x21\x3d\x87\xb6\x3d\x74\x96\x6d\x6a\xc2\xd7\xf6\x24\xca\x57\x5a\x31\x98\x21\x05\x91\x39\x2b\x68\x93\x9c\xaa\x36\x4a\xb3\x95\x1a\x93\xf7\x5c\x94\xf7\xe6\x55\x45\x3e\x7f\xf3\xfb\xb7\x7f\x30\xcb\x79\xf5\xd5\x57\x5f\x1d\x19\x38\x66\x0c\x5b\xf5\x28\xb2\x92\xca\x88\x25\x5e\x80\x38\xbd\x3c\x8d\x0d\xeb\x76\x89\xdb\xfe\xe2\xab\xd7\x5f\xbe\x71\xfb\x73\x19\x6f\x86\x8c\x0b\x66\xf0\x99\x16\x3c\xdb\x98\x43\x28\xe4\x2c\x63\x2b\x3c\x87\x78\x5f\x10\x1c\x4f\xae\x59\x91\x19\x35\xd1\x5f\x02\xbf\xc7\x6a\x43\x5f\xfb\x36\x19\x2e\x14\xd6\xf9\x1c\xb7\x3f\x14\x3c\x26\x46\x40\xe5\x6b\x16\x5e\x8f\x37\xaf\x5e\xbd\x7a\x75\xf2\xe6\xab\xaf\xbe\xfa\x2a\x46\xa4\x72\x6b\x28\x22\xff\x39\xfe\xb7\xdd\x5f\xef\x47\x55\x27\xa5\x11\x17\x7a\x24\x8b\x11\xa2\x76\x3c\xe3\x0e\xf8\xe0\x05\x28\xbb\xbd\xa4\xfa\xb3\xfa\xf3\x4d\xb6\xc6\xa5\x94\xb7\xa1\x31\xa0\x81\x1d\x6b\x99\x8f\x90\x1e\x6e\x31\x66\x83\x48\xa8\x82\x1b\xe8\x5a\x1b\xbb\x0d\x72\xd1\x32\xb7\xc0\x8d\xda\x9f\xcc\xfb\x86\x00\xce\x36\x20\x7b\x8a\x74\x77\x84\x99\xd4\x5a\xae\xc6\x4e\xc9\xb7\xb1\x2a\x8a\xce\x99\xeb\x1b\x12\x45\x5a\x57\x98\x2f\x2f\xd8\x1a\xc2\x2f\x2a\x13\x82\x19\xdd\xea\x93\x18\x4d\x3b\xdb\xe4\x54\x29\xdb\xf3\x7e\x23\x4b\xa2\xee\xb8\x8e\xb7\x88\xd1\xd2\x2e\xd4\xf2\xe9\x19\x23\x0a\x3b\x71\xd8\xe5\x62\xbf\x2a\x9c\xc2\x35\xaa\x43\x28\x61\x50\x48\x14\xbb\x40\x40\x04\x23\xe9\x6c\x63\xf4\xf7\x0c\x1d\x8b\x85\x2c\x17\xcb\xad\x3c\x48\x18\xf9\x08\xa7\xb9\xb3\x2d\xf8\x63\x63\xda\xc7\x73\x99\xf1\x64\x83\xd2\xd9\x8c\x05\x3b\xad\x50\x18\x01\xbb\x2f\x8b\xf5\x0c\xee\xbc\xe0\xeb\x68\x33\xcf\xf6\xd2\xed\xb3\x72\x61\x4d\x55\xef\xe5\xe2\xbc\x90\x79\x6e\xd0\x7e\x4f\x39\x0c\x86\xf9\xc0\x56\xb2\xd8\x4c\x0a\x39\xe7\x19\x9b\x50\xbd\x7c\xc8\x5a\xae\xf9\x0a\x3c\x40\x67\x34\x4b\xbe\x2d\x68\xbe\xfc\x33\x15\x8b\xd3\xb9\x7e\xd8\xce\xdc\x68\xe7\x0e\x48\x0f\x1f\x0d\x0e\xc9\x69\x0e\x37\xf2\xcf\x52\xe9\xd3\xa4\x21\x8f\xa5\x7e\xfb\xcf\x9b\xdf\x0d\x29\x01\x98\x54\x0d\x4a\xab\x06\x53\x8a\x37\xb0\x9a\x47\x17\xd2\x5d\x1d\x5a\x59\x44\x2b\x4f\xb5\xac\x8c\x20\x5c\x2b\x96\xcd\xc9\x0b\x3a\x6f\x08\x72\x03\xf2\x60\xc7\x5e\x72\xcb\x9c\xfd\x50\x0c\x95\x4d\xc4\xdf\x97\x63\xf2\xf5\xc6\xb7\x09\x42\xd4\x8e\x0d\x69\xfb\xcc\x47\x9d\x78\x7e\x68\x15\x5b\x26\xb0\x89\x78\x73\x35\x4f\xed\xa6\x07\xe7\x57\x1f\x27\xd3\x03\x08\x76\x32\x8c\xde\x52\x8b\x3b\x6a\x1b\xb8\x42\xe7\x51\x25\x57\x50\x7a\x81\x66\x59\x9b\x1a\x0f\x6b\x0b\x01\x67\x56\x73\x84\x96\x03\xa8\x44\x40\x0b\xba\x62\xd6\x64\x72\xf5\xee\xe6\xd3\xd5\xa5\x19\xf5\xf4\xec\xec\xdd\xe4\x66\x4c\x3e\xa9\xe8\xad\xb7\x0f\x72\x5c\x18\x34\x7f\xda\xc8\x12\x8c\xa2\x75\x9a\x14\x6c\xea\xe2\x72\xf2\xe9\x66\x7a\x80\x64\xea\x8f\x2d\xb4\x04\x88\x88\x23\xc3\xda\xd1\xd1\x6d\x42\x4f\x35\x8e\x64\x7b\x8c\x4d\x0f\x70\x4d\xf1\x06\x44\xce\xe4\x66\x4f\x64\x6b\x31\x44\x5a\x22\xbe\xa4\x0a\x22\xe9\xb0\x91\x43\x5e\x48\x17\x0d\xe7\x0e\x37\x36\x76\x1c\x95\x00\x74\x16\x8c\x60\xe7\x10\x3e\xfe\x8b\x66\x99\x53\xd6\xdd\xc2\x1a\x4f\xce\xdb\x9c\x08\xe0\x77\x6c\x4d\x4d\x0b\x68\xb7\xde\x1a\x52\xb8\x37\x2d\x66\x6b\x9e\x60\xb6\xdd\xa4\x90\x5a\x26\xb2\x53\xed\x01\x19\x35\x0c\x2d\xc2\x04\x93\xdc\xbe\x4e\x68\x6a\x6d\x6c\x56\xe1\x59\xb1\xd4\x4e\x13\x95\xb9\x20\x8f\xef\xc8\x70\x2f\x77\x49\x01\x89\x1d\xdb\xb9\xba\x99\x5c\x7d\xbc\xf9\xe1\xeb\x8f\x1f\x6f\x50\x4b\xca\xd8\x5c\x93\x59\x46\xc5\x6d\xa3\xfd\xa3\x41\x09\x08\xf6\x7a\xbd\x4f\xb7\xaf\x1b\xdb\x7c\x55\xef\xf4\xc8\x72\xd6\x2e\x29\xf6\xd9\x6c\x8d\x22\x45\x06\x85\x9c\x24\xb7\xc9\x23\x92\x31\xba\xb6\xd1\x42\x51\xbd\x1b\x04\x2f\x30\x48\x2f\xa5\xb4\x92\xf3\xd6\x88\x0f\x68\x10\x6c\xdd\x33\x67\x52\x08\xa3\x23\xde\x5e\x08\xa8\x66\xdc\x14\x71\xd0\xca\x6b\x1d\x36\x5f\xb9\x02\x37\xe7\x2c\x8b\x66\x30\xb6\x2d\x68\x67\x90\x66\x9b\x55\xfb\x62\xac\xb1\xfa\x52\xa6\x0c\xba\x41\x74\x1d\xff\xbb\xf0\x85\xb3\x8b\xf3\x2b\xf3\x12\x6a\x71\x99\xf9\x97\x9c\x13\xf3\xed\x21\xa8\x02\x6e\xf4\x91\x90\x62\x84\xc1\x94\x50\x90\xa5\xc5\x2f\xbb\xa2\x1b\x77\x5e\x68\xd5\xf5\x4c\x08\x9c\x01\xd8\x25\x98\x05\xc6\x64\xfb\x6b\x5c\x3f\x74\x61\xac\x86\xb8\x26\x55\xed\xf2\x58\x31\xbb\x67\x28\xb7\x3e\xa7\x3c\x33\xf2\xf5\x85\x98\xc9\x52\xa4\x46\x6c\x68\xd2\xe4\xeb\x12\xc7\x37\x0d\x2f\xd6\xe1\xfc\xe9\x7c\x72\x7c\x73\x36\x41\xc3\x7f\x74\xf7\x22\x85\xc3\xb0\xfe\xc2\xc0\xbe\x88\x1c\x36\xe6\xfa\x05\x5e\xee\x39\x7c\x6c\x54\x29\x08\x2f\x0a\xa6\x72\x5b\x02\xbf\xea\xd6\x5b\x16\x5c\x6f\x3c\x7b\x70\x84\xc2\xb6\x9c\x35\x7c\x7d\x2d\x79\x94\xc3\xd0\x24\x81\x42\xf3\xc0\x38\x92\x12\x5b\xb6\xcb\xf9\x9c\x50\x5c\x0f\x08\x15\x66\xb5\x45\xc1\x12\xbd\x15\x5f\x46\xbe\x89\xa7\xef\xcd\x68\x72\x3b\xaa\x35\x12\x3a\x72\x49\x80\x9e\x3a\xbb\x06\x89\x55\xe3\x6c\xae\x1d\x31\x6a\x8a\x49\x9f\x1e\xe8\x24\x9f\x1e\x80\xd4\x42\x01\xbe\xf1\x61\x02\x40\x87\x72\x54\x74\xff\x18\x56\x65\xa8\x93\x21\x88\x37\x95\x3f\x98\x82\xa4\x00\x58\x80\xa0\x80\xc3\x3e\xf2\x46\x81\xc6\x96\x87\x42\x0a\x70\xd6\x79\xe5\xce\x46\x2a\x59\xa7\x9d\x52\x4b\xe7\x12\x36\x58\x72\xfe\xe7\xb3\x49\xcd\x61\x9b\xe4\x27\x6f\xde\x44\xe3\x6c\xca\x34\x3f\x79\xfb\x87\x23\x78\xe4\xf5\xef\xbf\xc2\x7f\xbc\xf9\xbc\xfa\xd7\x1f\x5e\xe1\xbf\xde\x7e\xf1\xc5\xe7\xf6\x5f\x6f\xdf\xbe\xf5\xff\xfa\x7d\x8c\x29\x37\x5f\xbe\x7a\x59\x36\x73\x6e\x13\x89\xda\x6b\x22\x57\xb3\x20\xab\xdc\x9d\xe9\x11\x80\xe8\xc8\x23\x7f\x43\xaa\xe6\xc4\x33\x68\x91\xa2\xe1\xc9\xc5\x70\x55\xcd\x3c\xe3\x96\xa1\x8e\xd4\x64\xc1\xe2\xf6\x71\xd2\x2b\x33\xd4\xac\xa4\xe3\xf5\x96\x5a\x9b\xc4\x43\xe1\xc1\x4b\x68\xed\x7f\x3c\x6a\xec\x28\x3c\xf2\x33\x37\x53\xd0\xf6\xca\xb9\xad\x14\xf4\x63\xa9\x1f\x48\x42\x77\xde\x7c\x62\x1a\x2a\x4b\xbd\x90\x21\x0d\x05\xa9\xb6\x9b\x8a\x6a\x39\x50\xd1\x5f\x94\x8a\x4a\x8b\x08\x4f\x43\x46\x25\xe8\xf9\x4c\x27\xe9\xe1\x21\x14\x83\x14\x29\x2d\x52\xeb\x83\xd7\xd2\x06\xea\x34\x76\xa9\x43\x34\x4a\x25\xc3\x2d\x2f\x98\x36\x07\x06\x87\x85\xfa\xac\x4e\xd2\x5a\x48\x97\x01\x80\x39\x4e\x43\xa8\x9b\x8c\xd6\xe7\x97\xd7\xdb\x34\x7c\x1f\x02\x1d\x3d\x28\x4b\xb3\x8f\x80\xec\x7f\xf9\x39\xfe\x7f\xa0\xe1\x03\x0d\x8f\xfe\x1a\xa7\xe1\x8c\xea\xb2\x60\xe7\x4c\xb3\x44\x7f\x5c\xb3\xa2\xe0\xdd\x26\xf7\x6f\x62\x2f\xf9\xa4\x42\x2d\xc1\x2f\x51\x38\xbf\x8c\x9d\x22\x8e\x7b\x9a\x59\x2b\xd3\x77\xe8\x80\xa5\x45\x80\x1f\x84\x0b\x42\xd1\xaf\x47\x14\xcb\x29\xf6\x9a\x06\xee\x00\xe4\x52\x44\xcd\x63\x2a\xa7\x89\x51\xd3\xd9\x3d\x5d\xe5\x19\xfb\x23\x99\x1e\x5c\x5f\x9e\xde\x7c\x53\x66\xd9\xe6\x0a\x3c\x60\x7f\xd2\x45\xc9\x8e\x3e\x9c\x5e\xff\x9f\xf0\x4b\x88\x28\x3b\xba\x62\x90\x17\x77\x5d\xe6\x40\x2e\xde\xcb\xe4\xf6\x4f\xd3\x83\x28\xa6\x4e\x0f\xc0\x7d\x61\xe3\xc6\x31\x53\xeb\x00\x69\xe2\x5c\x16\x49\x6d\xf7\x47\xd8\x9a\xdd\x3c\x2a\xad\x6b\xb3\xd9\x8d\x6c\x80\x40\x4b\x2d\x47\x08\x9f\xbd\x15\xe2\x79\x26\xc1\x07\x74\x31\x89\xb3\x62\x67\x84\x69\x0c\x7e\xac\x9f\x76\x35\x5a\x55\x31\xb4\xf2\xae\x60\x80\xc7\x56\x7c\xc4\xa2\xa0\x51\x2e\xe0\x56\x16\xd4\xa2\x8d\xea\x7b\x8d\xf1\xf3\x56\x93\x8e\xfd\xd4\xbc\x9d\x36\x58\x41\x0f\x73\x9e\xfc\xe5\x7c\xd2\x37\xb0\xe4\xdb\xed\x37\x6c\x84\x86\x22\xf6\x17\xf2\x97\xf3\x09\x51\xd2\xc5\x02\x91\x84\x16\xf1\xe4\x0a\x10\x5a\x52\x29\x0e\x0f\x35\x51\x88\x70\xf0\xae\x9c\xcf\xc1\xb4\x26\x0b\x92\x82\xdf\x01\xdc\x30\x10\x2d\x0a\x4c\xf1\x2f\xe7\x13\x94\x3d\xa2\x86\x5c\x1b\x18\xc2\xcc\xbd\x61\x22\x65\x69\xe5\x26\x32\x3c\x0d\x66\xcb\x0b\xb9\x36\xf7\x73\xc6\x34\xd8\xf5\xaa\x00\xf6\x86\x75\x0a\x6f\x4b\x1d\x3f\x3a\x08\x73\xc9\x68\xa6\x97\x0f\xb4\x89\xe0\xcb\x46\x60\xdc\xd3\x28\x83\x2f\x4e\xe2\xe4\xbf\x95\xf0\xfb\x50\xe8\x77\xf7\x49\x56\xf6\xf0\x48\x5e\x6c\xbd\x80\x52\x2d\xd0\xb1\xd1\x16\x1d\x83\x46\x73\x9d\xd1\xe0\xb5\x20\x78\x66\x07\x05\x13\xa3\x6d\x96\xe7\x5a\xf3\xd6\x45\xdb\x71\x53\x98\x45\x5d\x5c\xaa\xc5\x2d\xdb\xc4\x8c\x85\x90\xe6\xab\x2a\x90\xe9\xf0\x90\x5c\x4c\xbe\xbb\x26\x69\xb9\x5a\x45\x03\x08\xfc\x36\x8e\x5c\x10\xbf\xe5\x07\x2e\x85\x32\xdb\x90\xd9\xa6\x16\x7b\x53\xf7\x2c\x44\xad\xdb\x76\xaf\xab\x32\xd3\x3c\xcf\x82\x78\x7c\x4c\xf8\x25\xa5\x42\x5f\xaa\xf9\x5f\xc6\x5c\x96\x26\x04\xb6\xf0\xdd\x6c\x4e\x02\xd9\x84\xb9\x2d\xc3\xba\x93\x9e\xa0\x40\xd0\x8e\xfd\x00\xeb\x04\xf9\xe5\xae\xa0\x79\x93\x9f\x07\xc1\x09\xac\xe9\xf0\xf0\xf8\xf0\x10\x87\xb3\x7c\x88\x2c\xd1\x36\x6a\x23\x8d\x0e\x0f\x8f\xff\xd3\xc0\xe2\xf8\x68\xcd\xf4\xf2\xf5\x61\xe4\x12\xd9\x94\x2e\x07\x03\xb4\x36\xf8\xa8\x7c\x38\xad\x19\x5b\x70\xe1\x66\x34\xc3\x1d\x1e\xda\x76\x88\x4a\x36\x59\x61\x2b\x10\x1e\x1e\xda\xb9\xc3\x3b\x0d\x07\xc4\xf3\xb5\x6a\x09\xcb\x8d\xdf\x30\x3f\xf0\xa4\x60\x73\x7e\xdf\xff\x9a\xe0\xf3\xce\x6e\x5d\x3f\x62\x88\xf6\xf0\x95\x04\x7c\xc3\xc3\x28\xb4\x76\x7d\x60\x90\x21\x01\xaa\x86\xe1\x3a\x25\x57\x4b\x74\x04\xac\x22\x9a\x60\x2b\xac\xd4\x98\x5c\x4a\x0d\x34\x82\x30\xb1\xe6\x85\x14\x2b\x70\xb8\x4b\x5b\x56\x9b\x0a\x32\x33\x7c\x7b\xc5\x34\xcd\x10\x03\x65\x91\x2c\x99\xd2\x05\xd5\x32\x5e\x0f\xde\x73\x53\xf4\x23\xd0\xdc\xc8\xbe\x05\xa7\x9a\x65\x9b\x3a\xee\xc8\xb2\x08\x83\x0a\xc1\x2a\x24\x93\xdb\x86\xba\x1a\x86\x8c\xd9\x5c\x75\xeb\x6a\x33\x67\x9d\xd0\x8c\x1f\x1e\x86\x89\xcc\x66\xd4\x8f\x39\x13\xd7\x9a\x26\xb7\xe1\x6b\xd1\x7b\xe3\x22\x8b\x0e\x0f\x35\xcd\xdd\x40\x21\xe6\x98\x09\x1e\x8c\x33\x57\xd8\x9c\x11\x70\x62\x4d\x3b\x3d\x3b\x17\x0d\xef\x35\xf5\x95\x6c\xcc\x9a\x2c\x98\x4a\xa8\x50\x36\x90\x3e\xbc\x5f\x92\xac\x59\xc1\xe7\x1b\x9b\x71\x81\x65\xdc\x41\xdb\xc4\x77\x80\x1d\xc7\x2d\xdb\x2e\xad\xc4\x10\x3c\xc5\xb4\xcf\xa0\xe6\x6e\x95\x5a\x92\x57\x7b\x0a\x75\x3c\xe7\x2d\xb1\xaf\xad\x3c\xd3\xbc\xfa\xe1\xe6\x53\xf7\x85\x9c\x5c\x4c\x3e\xdc\x7c\x72\x30\x34\xff\x84\x48\x76\xed\x4a\x54\x5a\xa3\x3f\x7a\x8d\xc6\xe4\x9a\xc5\x83\x32\x2c\x5a\x9b\x5d\x9b\x31\x82\x18\xc7\x2f\xbe\xd8\x3f\xd8\x9f\xe7\x06\xf5\xf6\xc4\x8f\xc3\x8b\xd8\x5b\xad\xd8\x41\x0a\x86\x89\xa6\x71\x99\x3c\x0b\x22\x82\xb0\xf3\x40\xdd\x92\x40\x84\xb4\xc4\xc0\x7a\x49\xc1\x9f\x1b\x9a\x7d\xa2\x16\x9c\x42\xde\xfa\x0a\xe9\x3e\x6c\x27\xde\xd0\xd4\x4f\xef\x1a\x99\xb6\xc7\xfc\x7e\xf5\x6a\xef\x88\x52\x37\xc3\xd7\x34\xb9\x65\x3b\x55\x03\x76\x80\x7c\x51\x7f\xdc\x2b\x6e\xae\x94\xca\xcc\x7e\x6f\x84\x1c\xb7\x76\xc3\xd2\xa2\x80\x60\xe8\xfa\xab\x99\x73\xc0\xbd\xb8\xa0\x51\x77\x72\x9f\x7d\x7c\xc3\x33\xcd\x0a\xc8\xb0\x6e\x0c\x27\xe9\x33\x8e\xd1\x02\xbf\x69\x8e\xbb\xd9\xc6\xbc\xdd\x97\x1c\xe2\x19\x2a\x13\x56\x5a\x75\x13\xc4\x20\x92\xc9\xe4\x96\xcc\x79\xc6\xc6\xe4\x3f\x8c\xf4\x41\x37\x90\xa0\x88\xee\x53\x08\xff\x03\xae\x61\xed\x7d\xfe\x69\xa7\x00\xc4\x8b\xe7\x73\x1d\x18\xc4\xfc\x6a\x5e\xcc\x03\x5e\x13\x86\x55\xac\x68\x9e\x33\x4c\x78\x15\x5a\xfa\xe8\xea\x06\x66\xa6\x29\x17\xac\x30\xd7\x8a\x92\x94\xcf\xe7\xac\x60\x42\x93\x9c\xea\xe5\xcb\x90\x4f\x1c\x17\xa5\x38\xbe\xb7\xda\x84\x59\xf7\x43\xd1\xd4\x40\x78\x52\xc8\x19\xdb\x83\x2a\x34\xbc\xe9\x0e\x08\x22\xcd\xb7\x8c\xc9\x51\x59\x03\x2b\x19\x61\x44\x3a\xd5\xda\x68\xf7\xc0\x33\x68\x02\xe6\x9d\x7a\xf8\x09\x1c\x0e\x9f\xdb\x74\x5e\x21\xa3\xb2\x06\x5d\x53\x0e\x8d\x08\xc6\xf5\x98\xf4\x15\xbd\x75\x21\xe5\x10\x39\x6e\xd3\x67\xf8\xda\xaa\x00\xee\xf4\x1b\x94\x41\x73\x2e\xa0\x06\x1e\x41\x02\x8e\xd1\x1f\x61\x98\xb3\xc9\xa7\xf0\x50\xbe\x7c\xb5\x7a\x30\xb9\x30\xd0\xbc\xe1\x2b\x26\xcb\x4e\x0f\x75\xed\x04\xec\x3b\x6d\xb0\x07\x40\x47\x2d\x09\x36\x9f\xbb\x06\x63\x08\x33\x7f\x75\x14\x10\x4d\xb0\x34\xa3\x21\x99\xab\xca\x18\xd3\x28\x0e\x80\x8c\xaf\x96\x34\x7a\x82\x70\xbd\x30\x86\x2a\xcb\xea\xc4\xde\x0a\xe4\x71\xce\x61\x64\x71\x73\x88\xee\xa4\xc6\xe4\x7b\x73\x70\x36\x77\xa3\xca\x85\x37\x1a\x39\xad\x2e\xd2\x51\x73\xf4\xaf\xcb\x48\x32\x23\x9a\xeb\x64\xf3\xa4\x64\xb1\x71\x94\x25\xc8\x73\x5f\xc9\xd2\xb6\xd3\xb0\x01\x48\x41\xf7\xf4\xd8\xe8\xb2\x70\x4f\xcc\x5d\xc5\x10\x5c\x50\x2d\x69\x4f\x79\x29\xe7\xa1\x68\xf3\x81\x1a\x9d\xed\xf1\xd4\xf9\x03\x2d\x6e\x3f\x50\xd5\x9d\xc5\x79\xb1\xf5\x82\x43\xbc\x95\xf9\x77\xa8\x68\x43\x07\x79\x65\x88\x65\x0c\x3e\x17\x93\x1b\x44\x0a\x33\x0e\x99\x19\x92\x0a\xf5\x76\x5d\xe2\xce\xcc\x9c\xe2\xe7\x6f\xcc\x2f\x64\xc9\xee\x69\xca\x12\xbe\xaa\xfa\xf9\x19\x04\x8a\xe2\x89\x26\x19\xa3\x4a\x93\x3f\xe0\x98\x8a\xe9\x23\x70\x71\x98\x23\x45\x86\x9a\x64\x54\x2d\x5d\x14\xdf\xc6\x62\xe0\xca\xad\x22\xae\x0b\xb8\xa8\x1f\x70\x60\x41\x4c\x78\xed\x18\xef\xe7\xf3\x57\xf0\x89\x9d\xe2\xc3\x5b\x9c\x57\xa7\x73\x79\x7a\xf3\xd1\xba\xe1\xbc\xd0\x8e\x7c\xf9\x81\xc7\x3d\x91\x4a\x7f\x5f\x70\xcd\x20\xc0\x67\x6f\xd2\x1f\x7f\x7d\x5b\x32\x84\x70\xb7\x46\x2a\x61\x24\xbb\xd4\x9c\x0c\x25\x77\x66\xa8\xdd\x5c\x24\x5f\xf8\x2e\x59\xb2\x14\x23\x08\x21\xa9\xb7\xa0\xa4\x60\xf1\x48\xbe\x19\x2a\x61\xbe\x94\x01\x26\xca\x62\x56\x3e\x4c\x72\x47\x91\xb3\x27\x99\x9c\xcd\x58\x81\xea\x05\x15\x35\x3a\x14\x35\x54\x87\xa9\x1a\x90\x55\x26\x93\xa4\x2c\x0c\x43\x72\x6f\xd3\x3c\xcf\xb8\x13\x4d\x42\x5c\xf1\x26\xc3\x06\xdd\x29\x67\x89\xde\xa5\x94\xe3\x47\xe5\x35\xb9\xa1\xf6\x17\xf9\xa3\xef\x3d\x40\x25\xb4\x7a\x80\x4b\x0d\x05\xd5\xd7\x86\x94\x06\x47\xdc\x2e\xfe\x37\xe1\x4d\xcd\x11\xbc\x8f\xf8\x1f\x2f\x7a\x0e\x6b\xf3\x0a\x01\xda\x28\x74\x20\x42\x23\x9f\xe4\xca\x1a\xa7\x8c\x44\x0d\xc2\x05\x58\x2c\x1a\x2c\x44\x36\xba\x1f\x07\xf5\x4a\xab\x02\x5f\x27\x58\x59\x68\x01\xce\x5a\x33\x36\xb5\x09\x33\x36\xb6\x6f\x56\x2e\x1a\x19\xa1\xc1\xdf\x39\xbf\x47\xbf\x8e\x7d\xde\x55\x0e\xfd\x62\xfc\xfa\xb5\x37\x08\x1a\xee\x8b\x86\xbd\xb5\xf9\xde\x30\xa4\x45\xc1\x68\x43\x84\xf5\xc6\x0a\xc7\x2e\x40\xd9\x07\x17\x6b\x79\x44\x28\x59\x06\x49\x7b\x98\x4e\x5d\xcf\xd1\x8b\x0d\x09\x69\x7b\x35\x24\x7e\x88\x2e\xb5\x7e\x6b\xbd\x48\xfb\xea\xeb\xb7\xe5\x8c\x41\xa3\x41\x59\xe8\x2b\x48\x65\xea\xc4\xfd\x7f\xdf\x79\xc5\x36\x2c\x76\x56\x66\x70\x2e\x84\x79\x51\x0d\x75\xd5\x6d\xde\x3a\xa9\xb2\xd6\xc7\xe4\xa3\xc0\x4c\x27\xc8\x41\x45\x99\x00\x3d\x53\x61\x7a\x6b\x73\x2d\x57\xe0\x42\x3c\x5f\x2b\x9b\x25\x88\xa0\x2f\x51\x66\x62\x8a\xb9\x65\xc1\xd9\xa1\x75\xbc\xaa\x30\xd0\x16\xfb\x6c\x63\x0e\xc2\x83\xfa\x1c\x32\x95\x3e\x7f\xf3\xfb\xb7\xbf\x8f\x26\xf4\x35\xfb\xc1\x9b\xd2\xf5\x7a\x24\xec\x75\xa7\xec\x75\xe5\x48\xed\x9f\x25\xd5\xea\xd5\xcd\xe4\x02\x52\x2d\x8d\xfa\x29\xe8\x8a\x5d\xb1\x05\xeb\xb4\xc7\xbe\x8f\xbd\x14\xe6\x50\x18\xa2\x69\xa3\x3f\x13\x83\x1d\x46\x1c\x6e\x20\x73\x18\x08\xca\x0b\x02\x23\x42\x92\x29\x76\x5d\xc7\xfc\xb2\x14\x69\x80\xcd\x3f\x75\x18\x06\xc9\x9f\x4d\xf1\x23\x30\x99\x75\xfb\x82\xe5\x1f\x88\x6e\x55\xb8\x66\xc1\xd7\x4c\xc4\x4a\x0e\xf9\xa4\xb6\x94\xa5\xcd\x89\xa7\x73\x90\x48\x90\x3b\x02\x33\x44\x7c\xb4\xcb\x87\x7c\x30\x58\xe9\x7e\x34\x20\x93\x8b\xde\x66\x83\xf7\xd5\xb3\x8e\x63\xcd\xcb\x2c\x03\xf5\xd9\xc9\x17\x78\x73\x32\xb9\x70\x1c\x22\xb6\x15\x10\x19\x03\xbe\x01\x5a\x4b\x26\xa1\x78\x54\x4d\x0d\x5f\xd3\xe2\x38\x93\x8b\xe3\x50\xd8\x1f\x67\x32\x5a\xd0\xac\x63\x97\x3d\x2d\xfe\xef\xdd\x93\x95\x3d\x64\x51\x33\xf0\x07\xa4\x01\x74\xdb\xc2\x68\xae\x4d\x57\xea\xfd\xc7\x6f\x1d\xbf\xac\x1b\xa1\x13\x39\xc2\xcc\x86\x07\xec\xe4\x9a\xad\x59\xc1\xf5\xc6\x9c\x45\x9f\xfd\x84\xcf\x87\xbb\x52\xf6\x7b\x42\x67\x12\x34\x75\x73\x7b\x0c\x0a\x45\x69\x4f\xc1\xb0\xdc\x85\xab\x45\x2a\x17\xd6\xf2\x53\x6d\xec\x42\xcc\xe5\x23\xf6\x73\x9d\x14\x8c\x75\xa7\x53\xbd\xdf\x7e\xe3\xc9\xf6\xa4\x74\x2a\x4b\xfd\x94\x3b\xda\x74\xb3\xc5\xf7\xb5\xc7\x9f\x6e\x2f\x1b\x15\x5c\x42\x72\x29\x6d\xf5\x01\x21\xdd\x45\x03\x66\x66\x9f\x6a\xb5\xd2\x3e\x04\x08\x2b\x7a\x0f\xe6\xed\x6b\xfe\x8f\x18\x8e\xb6\x72\x2b\x57\x85\xf4\x34\x4d\x63\x0a\x58\x1d\x7c\x1f\x82\x87\x1d\xf0\xc2\x2e\xc2\x05\x49\xe5\x8a\x72\x81\x9e\xba\xe6\x0c\x58\xd7\x24\x14\xd2\xa6\xa8\x20\x54\x28\x23\x83\x7e\xf7\x81\xfc\xbd\x64\x85\xa1\xb5\x06\x7a\x49\x26\xcb\x74\xc4\x05\xd7\x7e\x95\x50\xd4\xd5\xbb\xa8\xe2\x51\x70\x4b\x30\x72\x15\x68\x16\x4b\x7d\x96\xd5\x8a\x26\x4b\x2e\x98\xb7\xb2\x08\xb9\xa6\x23\x9a\x73\xf2\x42\x16\xd0\x2f\x74\x56\x0a\x5d\x46\x87\x74\x8f\x8e\xdc\x32\x5e\x8e\xc9\xa9\x8b\x2d\x9c\x23\x81\x7d\x91\x50\xc5\x20\x4f\x4c\x28\xae\xf9\x9a\xbd\x24\x2b\x46\x45\xb3\x19\xa8\xe6\xc3\x87\x50\x4a\xa6\x49\x99\x83\x22\x7f\x79\x7a\x83\xd9\xc0\xce\xaa\xe5\x26\x06\xea\xdf\x81\x41\xaf\xdf\xfc\x7e\xfc\x6a\xfc\x6a\xfc\x7a\x6f\x34\xb2\x93\x34\xc4\x44\xc4\x51\xc1\x05\x07\x82\x46\x65\xfe\x6d\xed\x4d\x7e\xc5\x78\xd6\x18\x9f\xd2\x50\x0b\x72\x35\x83\x9c\x78\x60\xe6\xd8\x2d\x78\x5c\xc3\xb4\x17\x7c\x0e\x10\x3a\x3c\x34\x37\xeb\xf0\xf0\xe5\x51\x10\x5c\xd6\xa0\x04\x01\x28\x3d\x20\x8f\xd0\xbf\xfb\xfa\xed\x57\xe3\x37\x5f\x7e\x31\xb6\xff\x3f\xf9\x03\x28\x54\xe1\x5c\x27\xe1\xbe\xa2\xca\xf3\x85\x80\x5c\x7f\x62\xce\xdb\xb6\x8c\x0a\x0e\xd1\x59\xe4\x67\xcc\x75\x9e\x0e\x08\xdc\x1f\x7e\xff\xfb\x2f\x5b\xca\x4a\x34\xdd\x50\x5d\xee\x53\x7e\xf1\xc3\xcd\xa7\x5f\xa2\xf4\x22\x78\x3c\x6b\xd6\x09\x9a\x25\x90\xfe\xeb\xcd\x8d\x71\xbf\xc0\x87\x9b\x4f\xf5\x62\x11\x55\xc1\xc1\xb6\x62\x83\x8f\xab\x2c\x28\xa8\x76\x46\xa7\x9e\x99\x73\x81\x99\xca\xbe\x11\xb8\xb3\x0c\xc9\xaa\xa7\xd1\x81\x74\x62\xc3\xa6\x9a\x2a\x4a\xa0\xa8\x6c\x50\x12\xae\xb5\xab\x88\x25\x08\x0d\xd7\x47\x72\x29\x33\x5f\x12\xae\x23\x83\xce\x97\x97\xda\x4a\xcb\x0b\xb3\xe7\x00\x03\xaa\x05\x5b\x73\x8e\x07\x71\x9c\x86\xd6\x8a\x81\xb9\x45\x48\x41\x5e\x70\x08\x1c\x73\xca\x5a\x65\xe6\xf9\x70\x7a\xfd\x7f\x3e\xbd\xbb\x3a\x3d\x7f\x47\x34\x2d\x16\x4c\x47\x8a\x99\x75\x9c\x90\xd7\x55\xff\x69\xc5\x53\x6c\xd9\x14\x58\x44\x70\xdc\x55\xfd\x14\xab\x38\x2b\x7f\x3e\x06\xc0\x4d\xee\x08\x0c\x72\xa6\x90\xe3\x8f\x08\x92\xc2\x01\xfb\x2c\x84\xcb\xd3\x1b\x6b\xfa\x2f\x85\x8b\xcb\x68\xa9\xee\x30\x63\x4b\xba\xe6\xb2\x70\x24\xd6\xc5\x13\x2a\x0c\xd7\x68\xcc\x95\x7c\xda\x72\x1c\x82\xe9\x8c\x8b\x16\xff\x4e\x1b\xbc\x21\x12\xdf\x2c\xf7\x8a\x2d\xfa\x64\xf3\x7f\xac\x3f\xef\x18\x4d\x20\x5e\x18\xd2\xe6\xc9\x99\xe1\x8f\x85\xe6\x86\x0e\x45\xd5\x72\xa4\x60\x33\x96\x49\xb1\xc0\xb2\xf1\x17\xe6\xf6\x41\x34\xd9\xc8\x0e\x84\xb6\xb7\xe3\x2a\x0e\x26\x65\x79\x26\x37\x2b\x26\x74\xb3\xbc\xe1\x42\xd9\xab\x0e\xfa\x90\x11\xbf\x94\x77\x80\x09\x50\x3d\x18\x27\x7f\x81\x85\x74\x2a\xe3\xe1\x4a\xa6\x2c\x8b\x8e\x8c\x72\x09\xaa\x61\xc9\x1c\xba\xd9\x61\xb1\x00\x1f\x6e\x64\x6e\x24\x8c\x9d\xc8\x55\x5e\xda\x2a\x78\x2f\x6d\x57\x82\x32\x1e\xef\x56\xa9\xc8\x7f\x45\xdd\xe8\x6f\xd5\xa9\xfc\x60\x61\x80\xa2\x4d\xb0\x19\x23\xd2\xb1\x52\x17\x52\x8c\xcd\xb7\xd1\xd5\xda\xa5\x60\x21\xbe\x8a\xe9\xbd\x5b\xe5\x7a\xb3\xaf\x28\x82\x09\x35\x50\x27\x8c\xea\x65\x4f\x6d\x72\x12\x79\x29\x8c\x42\x9f\x6d\x5c\x17\x1a\xe8\x50\xb3\x2a\x05\x74\x1b\x8c\x5a\x67\xb0\x80\x08\xb2\x70\xcc\x11\x71\x05\x38\x5d\x21\xc7\x23\x92\xf1\x5b\x46\x4e\x03\x4b\x79\x46\x37\xac\xe8\x97\xf0\xfe\x30\xa8\x14\x72\xc5\xf4\x92\x95\xea\x5b\xf9\x81\xe9\x82\x27\x7d\x6b\xff\x1d\x4e\x1a\x5f\x75\x76\x01\x45\xbe\x95\x46\x38\x06\xaf\xeb\x0a\x1f\x89\x8b\x6b\x59\x86\x41\xfa\x2e\xb0\xd3\xe0\x52\x35\xbe\xab\x50\x0a\xf9\x32\x55\x6a\xfc\x11\x52\x40\xc5\xa2\x48\xa9\x25\xc6\x0e\x5b\xc9\x00\x6d\xb2\xf6\xae\xa3\x97\x4c\xce\xdd\xa2\x6c\xdf\x7c\x96\x1e\xe1\x73\x0d\xec\x36\x58\x91\x91\x29\x1e\x5d\xe1\xb6\x02\xfe\x83\x41\xbf\x05\x78\x17\x26\xbe\x05\xbf\x16\xd8\x5b\xbd\x89\x0b\xe7\x23\xf6\x75\x3f\xcd\x96\x1e\x1f\x89\xbd\xb3\xc7\x86\xb8\xea\x8e\x0d\xfe\x59\x2a\xaf\x13\xa0\xdf\xd9\xd5\x09\xaa\x1e\x8d\x92\x26\x7b\xc0\x76\x9b\xae\x98\x18\x17\x29\xd0\xea\x6a\x77\xec\x71\xb7\xc7\x2e\xb3\x97\x9e\xb3\xb3\xb9\x50\xe1\x71\xc9\x88\x4f\xbe\xc1\xaf\x5e\x7d\xd5\xa2\xbe\x35\x08\x3b\xd5\x06\x27\xe8\x72\x7a\x30\xa2\x46\xdf\xaf\x08\x85\x0b\x68\x1b\xa8\x44\xcb\x0d\xfa\x9e\x17\xec\xdb\x92\x16\xe9\x83\x4f\xa1\x61\x84\xea\x1c\xee\xb8\xd1\xeb\x68\x11\x95\x40\x1d\x1c\x1e\x7a\x12\x71\x95\x10\x0f\xe7\x81\x27\x11\x77\xae\xe2\xe1\x3c\xf9\x49\x14\x6c\x25\xd7\xcc\x55\xc0\xc0\x5e\xf0\x5d\xc0\xff\xbe\x9e\xc3\x64\x8b\x2d\xaf\x99\x8d\x70\x75\x8d\xe3\x6d\x45\xfe\x35\x6b\x0a\xdd\x9a\x31\x56\x2b\xab\xe2\x24\x8f\xb1\x4d\x4a\x42\x8d\xce\x95\x8a\xc1\x84\x59\x2f\x60\x04\xbe\xf7\xa6\x7c\x5c\x08\x21\xa2\x69\x5a\x5f\x57\x95\x7f\xec\x4a\xc4\x06\x95\x69\x6c\xc1\x0e\x46\xe3\x83\xde\x31\x5c\x8b\xdd\xaf\x5b\x4c\xb6\xb1\x35\x71\xec\x0c\x7b\x9f\x81\x2d\x78\xd2\xdb\x67\x7f\xb5\xfd\x46\x2d\x0b\xc0\xfc\xbd\x13\xa4\xdb\x98\x0d\x6e\x63\x1b\x75\xa9\xaa\x50\xa7\xaa\x9d\xa1\x2c\x6a\xee\xf4\x31\xf9\x60\x65\x78\x21\xc5\xe8\x1f\xac\x88\x1a\x96\x78\x60\x7d\x0c\x14\x03\x55\x77\x39\xee\xed\x1b\xf6\x70\xba\xb9\x79\xdf\x1f\x44\x37\x37\xef\xc3\x50\xb9\x91\x96\xa3\x8c\xaf\x99\x8f\x30\x07\x1d\x14\x49\xf5\xe8\xae\xa1\x0b\x84\x85\x8f\x85\x62\x9d\x05\xed\xbf\x0d\x83\x24\xfb\x46\x69\x5c\x45\x5e\x7a\x44\x5c\xb6\xaf\xea\xb4\x7f\x84\x06\x59\xd2\xb8\xb5\xff\xa1\x11\x1a\x58\x5d\xca\x05\x63\xb4\x2b\x04\x0f\x05\x37\x96\x83\xea\x07\xe5\x6b\xe7\xac\x0d\x93\x36\x0b\xe7\x46\x5c\x30\x0c\x71\x6b\xaf\xde\x5f\x35\x8a\x26\x23\xe2\xda\x52\x5d\x4c\xd4\x09\x9a\xc1\xa2\x65\xe7\x12\x29\x94\x2e\xca\x78\xf3\x74\x47\xbb\x46\x16\xa6\x17\x93\xd3\x0f\xf5\x90\x95\x11\x0c\x6d\xbe\x87\xb3\xac\x8d\xe8\x5e\x7f\x08\xe8\x20\x6a\xaf\xc9\xe0\x14\x69\x72\x5b\x75\xd2\xa0\xa9\xab\x9d\x66\xa3\x5d\xf0\xa4\xad\x29\xcc\xdc\xbb\x35\x2d\xb8\x8c\x0b\x81\x41\xbf\x9e\xab\xfa\x32\xb6\x4c\x4e\xd0\x0e\xbf\x6a\xd7\x16\xce\x11\xc7\xfc\xaa\xf9\x8c\x95\x2c\x4b\x15\x6b\x9b\xd1\x91\x51\xbf\xa2\x31\x55\x9b\xf4\x49\x87\x5f\xf1\x98\x49\xa7\xc7\xab\x2d\x49\xf0\x23\xb3\xa0\xe8\xd7\xb1\x88\xf6\xb6\xc4\x77\xab\xb9\xbf\x97\x32\x9f\x60\x7d\xd4\x3e\x26\xa8\xef\x51\xe6\xc1\x28\x18\x70\x76\xad\x0d\xf0\x14\x03\x03\x4c\xc5\x6c\x8f\x5c\xd1\xd5\xb6\xfb\x93\x49\x99\xab\xa0\x1d\x04\xb9\x98\x58\x71\x82\x16\xcc\x86\xe9\x9b\x53\xc3\xa2\x72\xb6\x3e\x28\x81\x1c\x44\xb3\xa3\xc6\x58\x12\x5b\x4f\x10\xf3\x87\x7d\x95\x8a\xf3\xcb\xd3\x9b\xc3\xc3\x74\x3b\xcd\xf2\x93\xc8\xc0\x9c\xed\xdb\x35\xb8\x44\xe9\x83\xa8\x84\xc6\x85\x8b\x36\xa5\x8a\x61\x3f\x5f\xbb\x43\xbb\x9d\x44\x0a\xcd\x05\x46\x53\xcd\x6c\xd1\xa2\x5a\xb1\xd5\xd8\xa8\x0f\xa9\xf8\xa7\x78\xca\x12\x5a\x9c\x26\x09\xcb\x18\x66\xa6\xf5\x95\xaa\xaf\x1b\x5f\xf5\x6a\x38\xbb\x37\xec\x66\x05\x84\xde\x4d\xd5\xc0\x0e\xfc\x18\x8f\xd6\xb8\x21\xb2\xac\x47\x5d\xb8\xfa\x6e\x3e\xc5\xde\x72\x4c\x9c\x50\x21\xc5\x66\x25\x4b\x57\xfd\xd7\x05\xd5\x45\x1d\x08\x28\xad\x87\x8d\x48\x14\xff\x07\xb3\x35\x10\xeb\x6d\x75\xc7\xe4\xbd\x5c\x28\x72\x47\x0b\xc1\xc5\xc2\x08\x0d\xba\x2c\x44\xdc\xfe\x3d\x83\x34\x39\x5b\xef\xde\xb9\x00\x83\x0c\x46\xa8\x4b\x43\x6b\x9d\xa6\x7d\x35\x9d\x75\x99\x09\x56\x50\x2c\x60\x13\x1b\x7c\x49\x15\x8a\xd8\x29\x57\x89\x5c\xb3\xa2\x0a\x1f\xda\xed\x3c\x8e\xc5\x8e\x4b\xd5\x89\x91\x0f\xd2\x32\xea\xe7\x77\x21\xb8\xe6\x34\x6b\xaa\x11\xd8\x76\x88\xe1\xab\xf5\x8a\xfc\xae\xe9\x41\x6a\x7e\x8a\x6b\x1b\x73\xe9\xb9\xf8\x8a\xde\x32\xf4\xf8\x99\x81\xb7\x42\xe1\xf6\x16\x31\xb6\xb7\xd7\x53\xa6\xdb\xde\x9a\x95\xea\x6a\xdb\xda\x11\xe8\x9b\x0d\xf6\xb8\xa7\x88\x8c\xfa\x87\xb7\x5f\x3c\x68\x53\x98\xe6\x23\x68\x76\xde\xb3\x9e\x73\x53\x67\xf1\xfb\x8c\xb6\x90\xa0\xee\x77\xfb\x64\x61\x42\xbf\xce\x5f\x5f\x1a\x26\xac\xff\x21\xe5\x13\xe0\xc5\xef\x2e\x2f\xf6\x7d\xcf\x5b\x3b\xfa\x52\xc9\xef\xb7\x5e\xd8\xad\x04\xef\x9f\x08\xf8\xf8\xb3\xf4\x19\xf3\x6b\xff\xb3\x54\xfa\x9d\x48\x8a\x4d\xbe\x0f\xf7\xfa\xbe\xf5\xf5\x96\x7d\x45\xa9\xa7\x54\xda\xe8\x8a\x36\xd9\xdd\x0d\x16\x82\xe0\xe9\xf6\xeb\x53\x3c\x2e\xe9\xaa\x5b\x4b\xf9\x3e\xfa\xda\x96\x58\x0c\xce\x3f\xeb\x76\x6f\x08\x5a\x36\x8f\x05\x67\xeb\x06\x0b\xf7\x75\xb7\x18\x5b\xf7\xd7\x9e\xd4\xc3\x6f\xed\x3d\x57\x9a\x19\x4e\xd8\xcb\x8e\xfc\x7d\xf4\xb5\xad\xde\x2b\xee\x27\x34\x2a\x37\xf9\x96\x67\x9b\x6a\x73\xb5\x94\xbd\xd7\x7f\x78\xb3\xff\x3d\xf6\xfb\xe9\x43\x8b\xbe\x0f\x1e\xae\xaf\xdd\x7c\x61\xc9\x51\x0c\xf2\xb1\x7d\x5c\x33\xd6\x4a\x94\x1e\xb3\x99\x2b\x94\x50\xaf\xca\x8c\x4d\x0a\x2e\x8d\x5c\xd1\x7f\x73\x91\x97\xeb\x9b\xcd\xdd\xb7\x8d\xa5\xe8\x2a\xfc\xdc\x02\x89\x13\x9d\x8b\xb2\x1e\xce\x19\xef\xa4\xd1\xba\xd9\xfb\xb4\x77\xf3\xab\x48\x71\xa2\xbf\x9c\x4f\xea\xa2\xac\x59\xab\x2a\xb9\xb6\xad\x2d\xa1\x74\x72\x1c\x01\x7d\x29\xda\x94\x89\xcd\x6e\xc8\xed\x83\x04\xa9\xfb\x34\xdf\xd7\x72\xf4\x97\xf3\xc9\xd3\xe6\xf3\x43\x9d\xa6\x07\xa5\xf2\x5b\xb3\x50\x94\xed\xee\x36\xf1\x94\x85\xed\x5c\x8b\x65\xdd\xc1\xa6\x10\xb7\x20\xfd\xe5\x3c\x9a\xe4\xb3\x9b\xf0\xbf\xbf\xfd\x28\xae\x29\xef\x7e\x0b\xc2\x7b\x1a\xc6\x82\x28\x2d\x0b\xba\x60\xee\x2b\x34\x21\xc2\x69\xb9\x0a\xce\x86\x6a\x3b\xe3\xc2\x2d\x17\xe9\x09\x99\x1e\xb8\x52\xf8\x79\x56\x16\x34\xab\xbe\xf1\x85\xe8\xd5\x09\xf9\xeb\xdf\xcc\x37\x60\x9f\x4d\xbf\x43\x49\xde\x7e\x3b\x15\xa3\xd1\x68\x2a\x68\xce\xed\xf7\x27\x84\xe6\x9c\xdd\x6b\x26\xb0\x52\x8f\xed\xe3\xbf\x7e\x3d\x15\x38\xe3\x59\xa9\xb4\x5c\x5d\x31\x0c\xbb\x3a\x67\x73\x2e\x38\xd6\x32\xa9\x35\xde\x37\xdc\xe4\xc4\x46\x1d\xda\x80\x1a\x70\xe0\x73\xa6\xc6\x49\x91\x8e\x77\xb4\xa0\xa9\xf0\x9d\xf8\x17\x85\x2c\xf3\x13\xd2\xf0\x18\x8e\x5d\x07\xc3\xb7\x30\xcf\x25\xce\x83\xf1\x0a\xf8\xb3\x21\xfd\xff\xde\xf4\xc8\x7b\x5f\xba\xc8\x01\x2f\xba\x5e\x7b\x3a\x5c\x40\xac\x5f\xec\x21\x98\x4c\x25\xd2\x9c\xf1\x19\xaa\x7b\xe6\x9b\xb5\x03\xb5\xf9\x63\x64\x41\x62\x20\x09\xe3\x25\x4b\xb6\xa2\xfe\x32\xca\x9c\x89\xd3\xc9\xc5\x77\x9f\x5f\xd7\xbf\x6f\x34\x2b\x05\x47\x56\x47\xc0\xad\xb6\xf7\x93\x0b\xfb\x58\xad\x40\xbf\x5d\x1a\x4b\xed\x3a\xd0\x18\x06\x2e\xa7\xbc\x60\xca\x5c\xbf\x58\x81\x1a\x39\x27\x54\x58\x34\x36\x37\xcb\xe8\x9f\x3e\xe0\x30\x91\x62\xcd\x0a\x2c\x89\xb6\x10\xfc\x1f\x7e\x70\x1f\x2b\x9c\x51\xcd\x76\xa3\x67\x5c\xe1\xaa\xb0\x64\xce\x8a\x6e\xac\x6d\x86\x94\x22\x18\x10\x73\xf5\xc7\xe4\x83\x84\x68\x9f\xb9\x3c\x21\x4b\xad\x73\x75\x72\x7c\xbc\xe0\xda\x61\xab\x8d\x42\xd1\x9b\x63\x60\x2f\x7c\x56\x6a\x59\xa8\xe3\x94\xad\x59\x76\xac\xf8\x62\x44\x8b\x64\xc9\x35\x4b\x74\x59\xb0\x63\x9a\xf3\x11\xac\x5d\x60\xa7\xf0\x55\xfa\x59\x61\xd1\x5b\x1d\xc6\x2e\xf7\xee\xb5\x07\x2c\x6c\x3b\x06\x83\x83\xb6\xcd\x17\xbc\x6c\x43\x81\x3c\xb4\x5d\xe5\x9a\xab\x77\xd7\x37\xc4\xcd\x1e\xcd\x4b\x47\xe0\x57\x6f\xaa\xea\x1c\x0c\xd0\xb8\x98\x33\x9b\x89\xe8\x5b\x79\x56\x8d\x41\xa0\x77\x2a\x67\xbb\x45\x98\x54\x39\x5b\x81\x8d\x1a\xfb\x8a\x62\x10\xd7\x19\x36\x44\x9e\x31\xdb\x0b\x30\x85\xb8\xae\x33\xba\x62\xd9\x19\x55\xec\xd9\x4f\xc1\x40\x5b\x8d\x0c\x6c\xfb\x9e\x43\x8d\x04\x6d\x3f\xbe\x6b\xbd\xf4\x14\xa7\xfa\xb4\x18\x71\x69\x9e\x67\x9b\x8f\xe2\x1b\x6c\x1a\xdb\xc5\x46\x4f\x6b\x4f\xa3\xd1\xd9\xf5\x53\x84\x91\xd0\xf8\x5c\xb5\x51\xe1\xae\xa7\x47\x8c\x33\xa1\x1c\x01\x23\xb9\x6c\xbc\x3d\x05\x81\x54\x5e\x4a\x7d\x63\x84\x8f\xae\x95\x9f\xfb\x27\x83\x55\x3b\x15\xc8\xd9\x44\x21\xdc\x0d\x5d\xa1\x7e\x1f\x0d\x56\xce\x60\x6b\x8e\x54\x2c\x64\xd5\x90\xca\xba\x92\x08\xd8\x0b\x0e\x55\xd8\x15\x19\x64\x25\x2e\x16\x51\xfb\x29\x58\x4c\xa9\xb2\x9e\x82\xc4\x75\xa5\xc0\xb6\xbd\x37\x85\xab\x4f\x17\x83\x30\xa1\xf1\x3a\xa9\x98\x91\x96\x3a\xcb\x0f\x15\x9b\x60\x69\xd1\x85\x61\xd5\x5d\x0b\x13\x6b\xa1\x6d\xb4\xdb\xd5\xe6\x87\x7a\x02\x0c\x0a\x1c\x5b\x9f\xf8\x8c\x11\x2b\x1c\xee\x7b\xb6\xd8\x12\xa6\xbb\x69\x09\xc3\xb0\x72\xec\xb9\x09\xbd\x29\xb0\x97\x8c\x15\x35\xc9\x3b\x9a\x2c\x31\x41\xc2\xd6\xa2\x88\x8b\x74\xee\x6d\xdc\xb7\x8d\x7c\x4c\x0a\xae\x59\xc1\x29\xd6\xc5\x0b\x32\x45\xa0\x70\xa0\x05\x9b\x45\xfd\xbd\x3a\x4f\xd4\xf6\x30\x3d\x38\x25\x46\x7f\x30\x0a\x36\xcd\x15\x04\xc6\xab\x6a\x45\xb1\xa5\x44\xa5\x47\xe2\xdb\x2e\x61\xdf\x3e\x2c\x45\x21\x8b\xd1\x8c\x2a\x00\x8f\xb5\x99\x4e\xec\x79\x89\xf0\x3b\x6c\x0e\x16\x85\x0d\xc8\x90\xac\x60\x22\x71\x98\x37\x0a\x4a\xea\xca\x52\x63\x72\xb7\xcb\x16\xb6\xcd\xe3\x64\x01\x0d\xa5\x5d\x53\xe4\x86\x05\x8b\xd4\xf7\xfe\x09\x00\x0f\xd9\x86\xd3\xa9\xc0\xc3\xcb\x25\x66\xc9\x6c\x43\xa2\xc1\x05\x6b\x0e\x53\xb0\x05\x2c\xce\x8a\x04\x47\x36\x51\xd0\x25\x8e\xfc\xfc\xe3\x4f\x97\x52\xff\xfc\xe3\x4f\x63\x72\x9a\x65\x36\xe5\x27\x1c\x3b\x3e\xae\x6d\x4a\x69\xbb\xef\xf9\x92\xd4\x54\x73\x05\x25\x87\x31\xa7\xdd\x6e\x44\x4b\x1c\x73\x4c\x4e\x6d\x85\xc9\x06\xd8\x02\x6a\x52\xe1\xd0\xd3\x66\xc7\xd8\x2d\x1b\x00\xc1\x66\xcc\x1f\x81\xc1\x9a\xe2\xe0\xcd\x50\x05\xd8\xc7\x97\xe8\x28\x48\xb5\xc4\x86\xd6\x53\x5d\xd5\xb4\x69\x53\xe5\x15\xfc\x74\x17\xd4\x4e\x99\xd2\xb6\x4a\x78\xe3\x28\x75\x32\x5e\xbd\xe0\xaf\x73\xe4\xf8\xac\x9b\xcc\x5c\xcb\xa6\x61\x41\xed\x0e\xe6\x27\x86\x47\xeb\x78\x28\x6e\x2f\x60\x10\x62\x85\xf8\x9c\x26\xec\xda\x5e\xbd\x96\x67\x77\x88\xc0\xe5\xf6\xcb\x36\x19\x43\xe6\xd6\x7d\x3c\xe7\x2c\x4b\x1b\x73\xc4\xaa\x8f\x07\x0c\xf5\x24\x20\x48\xe6\xb1\x09\xd3\xb5\x9e\x75\xb2\xe0\x0b\x03\x87\xa6\xfb\xef\x3e\x20\x7d\xbd\x30\x28\xc4\x8a\x15\xbe\x40\xa8\x7e\x19\x78\xf0\x83\xbe\xad\x38\x77\x9c\x75\x44\x40\x56\xf5\xc2\xb2\x6c\xd8\xa6\x3b\x00\x22\xef\xc0\xa6\x7d\x50\xa4\x91\xa8\x86\x7b\x10\x18\xfe\xe4\x5a\xaa\xba\x3a\x25\x74\xc5\x6c\xce\x97\x5e\xc6\x55\xf2\xea\x03\xf9\xdd\xb1\xa0\x05\xe7\x92\x0d\xc4\x87\x59\x48\x7f\x3b\x80\xea\xb6\xed\xe0\x15\x8a\x1f\x48\x05\xbf\x91\x05\xa9\x29\x79\x47\x8d\x1c\xc0\x7d\xb0\x62\x78\x04\xa5\x56\x36\x3f\xdd\x05\xa1\x86\xc8\x96\xf1\x15\xef\x3c\x30\x70\x27\x64\xe8\x60\x6e\x84\x09\x0f\xe0\xeb\x4f\xb8\xe3\xcc\xf0\x22\xd7\xf6\xd9\xb8\xfd\x43\xd4\x57\x5f\xbc\x8c\x96\xbe\xad\x3e\xbf\x0c\x00\x6a\x6a\xf8\xb5\xe1\xda\x05\x41\xeb\x3b\xc2\x03\xb6\xd1\x3e\xa8\xd9\x63\x44\x9b\x3f\x82\xd2\x3f\xed\x67\xd9\xb1\xda\x70\x8b\x41\x75\x82\x58\xc1\xdb\xa4\x90\x0a\x24\xbe\xbe\x57\xb6\x81\x71\xf8\xb9\x3b\x19\x00\xc1\x24\xa1\x36\x9a\xba\x9d\x76\xc5\x6c\xa7\x97\x28\x61\x34\x6a\xa6\x2e\x78\xa2\x1b\xdb\xc2\x57\x1f\xc7\x02\x7d\xdd\x86\x0d\x06\xc7\x47\xe9\xa2\x27\x7d\x1d\xd0\xae\xd3\xc5\xb0\x52\x3d\x24\xef\x09\x5f\x63\x0d\x6b\x4e\xa8\x72\x66\xb6\xdf\xc8\x75\x48\xab\x14\x19\xcc\xdb\x0b\xd2\xad\x75\x3f\xaa\x8f\x90\xfa\x72\xbf\x33\xc1\x17\x7c\xc6\x55\x5d\xf8\x72\x3b\xbe\x6c\xe8\x16\x59\x7d\xe0\x1c\x7f\x75\xb0\x68\x6a\x4b\x54\x7d\xb6\x81\xe1\xdb\x11\xb5\x40\x63\xd2\x14\x89\x5a\x7d\x10\x1c\xe4\x1a\x2a\xf0\x03\x96\x42\xe7\x54\xd7\xcb\x43\x61\x58\xb1\x6d\x78\x03\x05\xb9\x36\xcd\xed\x8e\xaa\xcf\x56\x9b\x0c\x5d\xaf\x08\xe8\x5b\xaf\xa0\x44\x65\x09\xb9\x51\x4f\x3a\xa9\x22\xf0\x30\x1b\x27\x74\x73\x36\x71\xcd\x2d\x3e\x9d\x4f\x1a\x9a\x60\xb8\x4f\x9f\x53\x6d\x2e\xb1\x53\x7d\x7a\x14\xdb\xd9\x7d\xb8\x1b\x51\xba\x0b\xf0\x54\x9f\xfd\x4b\xf1\x54\x9f\xbe\x08\xb9\xbf\x70\x79\x59\xbd\xd4\x81\x96\xfd\xe4\x2b\x8b\x99\xe0\x95\xf3\x03\x23\x15\x46\xcf\xd0\x4c\x67\x4c\x73\x5f\x74\x07\xe7\x6a\x1f\xd3\x4b\x4b\xad\xa8\xd2\xef\xcc\xf2\xfd\xae\xec\xf4\xa0\x6a\x20\xd6\xc1\x56\xba\x99\x6d\x0f\xb6\x02\x1e\x21\x97\xe3\xfd\x22\x50\x42\x22\x79\xd0\xdb\xdb\x0a\x6a\x17\x31\x45\x6c\x85\xc7\xb0\x14\xd6\xb1\x33\x27\xdf\xf8\xca\x6d\xed\xa3\xd6\xda\xa6\xd9\xab\x03\x7e\x27\x84\xb2\x72\x10\xb0\xb6\x59\x3b\x4d\x87\xac\x3c\x77\xf5\xbf\x8c\x00\xd7\x97\x82\x75\x52\x00\x9b\x50\xbd\x0f\x05\xeb\xd8\x7b\x45\xde\xea\x14\xec\xe7\x1f\x7f\xba\x39\x9b\xfc\xfc\xe3\x4f\x06\x10\x3f\xff\xf8\xd3\xa7\x73\xf3\x47\x87\xbc\x33\xd0\x31\xf8\xf4\xa2\x63\xea\x01\x1a\x72\xb7\x62\xdc\x6a\xe3\xab\x3e\x51\xc5\x98\xbc\x50\x8c\x39\xe3\x18\x90\x31\xac\x69\xad\x36\x42\xd3\xfb\x58\x15\x89\xf0\x33\x9d\xb6\xea\xd5\x56\x7e\x6c\xd2\x9b\xdb\xc7\x76\x36\xb1\x40\xad\x96\xc5\xae\xba\x6c\xae\xda\xa5\xd4\xe8\x87\x3e\x69\x28\xe2\x1d\x00\xc1\x06\xa6\x3b\x47\x56\x07\x47\x40\xf0\x04\x9c\xa4\x7d\xf4\x19\xcb\xe4\xdd\xcb\xa3\xfa\x92\x03\x60\x23\x54\x5d\x73\x79\xd7\x58\xa5\x43\xf1\x00\x43\x18\x18\x38\x6f\x96\x8c\xe8\x3b\x09\xb8\x06\x51\xef\xee\x37\x24\x0e\x86\x01\x6d\xaa\x3a\xe2\x1d\x67\xf7\x51\xb8\xdd\xdb\xee\xd7\x81\xe1\x95\x05\x1a\x92\x6d\xcd\x01\x66\x05\xfb\x7c\x37\x3f\xb8\x5b\xca\xcc\x1e\xd2\x09\x1c\xd1\x74\x5a\x31\xe3\x3f\x19\xda\xf2\xbb\x25\x55\x2f\x56\x9b\x1f\x32\x3a\x63\xd9\x4b\x43\x73\x2c\x79\xef\xba\xcc\x41\x24\xb7\xd9\x35\xa0\x18\xae\x0e\x03\x09\x46\x36\x10\x25\x63\xa9\x99\xb5\x27\xb6\x85\x91\xe1\xbe\x2d\x33\xac\xcd\x2c\xd6\xad\x13\x8c\xa7\x76\x3b\xbd\x91\x02\xb6\xdb\xb4\xdb\xdd\x0d\x99\x15\x34\xd5\xf4\xab\x3e\xed\x7b\xf5\xdb\x69\xdf\x4a\xd7\xe5\x16\x80\x71\x6c\x3e\x67\x89\xcd\xe8\xb5\xe6\x83\x0c\x48\xaa\x4d\xce\xab\x75\xc6\xef\xb1\x74\x21\xc5\xc8\x65\x61\xa0\x6f\x16\xb3\x6c\xac\x2d\x64\x2e\x8b\x15\x0b\x0d\x13\x10\x6a\xdd\xdc\x77\xbf\xfa\x00\x2a\xec\x02\xa6\xea\xee\xf4\x14\x8a\xbb\xcd\x4b\x38\x4d\x12\x59\x8a\x7d\xe4\xad\xeb\xfa\x8b\xbf\x98\xdc\xb5\x45\x8e\xdb\xc7\x8c\x98\x39\x29\xc9\x65\xea\x8b\x82\x81\x10\xe7\x49\xb3\x05\x46\x07\xc9\xc5\x1d\xb7\x62\x5b\x2f\x43\x33\x21\xf5\x88\x91\xe6\x4f\x5d\x0f\x80\xea\x97\x8f\x06\x37\x79\x08\xc8\xbb\x87\x6c\xb2\x2e\x47\xc0\xde\x0b\xda\xa4\x82\xb8\xa1\xc2\xca\x86\x83\x72\x6f\x9e\x34\x42\x6f\xc7\xcd\xef\x27\xd4\x91\x3d\xcc\x0e\xa4\xaf\x84\x44\xfa\x4a\x49\x64\xf7\x7e\x75\xca\x49\xff\xba\x27\x5d\xd3\x8f\x2a\x4b\x1b\x52\x7d\x07\xcf\x31\xb9\xe8\xd0\x36\xcc\xa7\x72\x3d\x80\x47\xe1\x3a\xf4\x24\x54\xfa\x87\xb6\x8d\x34\x1a\x3d\xf0\xf5\xcf\xe9\xe5\xf9\x61\x43\xe4\x78\xf8\xd9\xcf\x8a\xd5\xd4\xbd\xd5\x7d\x5c\x21\x9a\xfd\xa4\x6d\x7c\xe7\xd1\xd2\x36\xbe\x89\x2e\x61\x4f\x2f\x83\x8e\x64\x6e\x22\xa8\xe1\x5d\x35\x89\xee\xe1\x8d\x69\x15\xb6\xb7\xd1\xab\xaf\xb4\x1d\x71\x61\x39\xf8\xbd\x50\x2f\xb7\xc5\x6e\xdb\x0d\x4d\xb4\x79\x1a\x09\xd8\xc7\x8e\xb1\x01\x34\x4d\x96\x7e\x25\x87\x8a\x60\xe6\x0d\x68\xc9\x0e\xde\x89\x0f\x51\xf2\xc0\xe8\x82\x45\xdd\x9b\x65\x6e\x8e\x43\xd6\xa3\x50\x64\x3f\xda\xf5\x22\x74\x80\xf9\x92\x19\xb1\xd7\x19\x78\x65\xb1\xcd\xbb\x71\xe9\x13\x9b\x4b\x96\x7a\xeb\x67\x87\x87\xd2\xe0\x93\x39\xc0\x70\x8f\x68\x2b\xf2\x50\x90\xc2\x85\x0e\xd8\x50\x8e\x76\x91\x65\x2f\xb6\xb9\x3f\xd7\x8c\xe5\x15\x80\x1b\xbe\xc2\xe3\xee\xab\x6f\xf7\x16\xf8\xdd\x9f\x88\x08\x04\x3e\x99\x07\x08\x04\xe6\xb5\xc8\xfe\xf0\xfb\xe6\xc2\xac\xf5\x0f\x52\x59\xbb\x43\xb8\xc9\x19\x9b\x6b\xf4\x5d\x55\x41\x4b\x78\x7b\x7a\x18\x66\x48\x78\x11\x7d\x8c\xd1\xa1\xaa\x56\xf6\x8b\x52\xd0\xee\x67\x96\x5a\xe7\xfd\x62\x18\xfe\x7c\x73\x33\xa9\x7c\xf4\x8d\x81\x0b\x06\x4b\xcc\xa3\xcd\x4b\x77\x71\x8d\x8f\x8b\x59\x58\x31\xbd\x94\xe9\x1e\x9c\xe1\x03\xbe\xf0\xb4\x52\x3b\x6e\x19\x89\x3a\xee\x3b\x08\xdb\x34\x63\x62\x27\x1a\x83\x8f\xdd\x83\x42\x6e\x4c\x8a\xa3\xb8\xd5\xbe\x60\xe3\xc5\x98\x7c\xfb\xee\xe6\x88\x4c\x3e\xdd\x1c\x11\xa6\x93\xf1\x4b\xf2\xc1\xf6\x86\xed\xb0\xbf\xd8\x31\x0c\xdf\xff\x78\x75\x68\xd4\xb0\x05\x44\x0e\xfe\xba\x7c\x55\x39\xd5\xcb\x3d\xce\xf1\x70\x62\x9e\x7f\x8e\x63\xec\x3a\xc1\x6e\x8a\x12\x9e\x20\x2c\x73\xec\x8f\x0a\xb7\xe9\xce\xa2\xef\x61\x10\xc2\xc6\x8b\x13\x32\x22\xec\x9e\x26\xfa\x84\x1c\xcf\xa5\x84\xbe\xf8\x50\x2d\x90\x1c\xcf\x68\x41\x2e\x3f\xde\xbc\x3b\xc1\x90\x33\x26\x74\xb1\x21\xab\x2e\xf1\xfc\xe3\xe5\xfb\xff\xb0\x94\x73\x43\x18\xc7\x76\x38\x64\x7a\x00\x93\xa0\xff\xcb\xfc\x89\xb3\x4c\x0f\x5c\x40\x58\x43\x1f\x81\xea\xb3\xa6\x19\x4f\xa9\x37\xf2\x61\x33\x1f\x23\x3e\x71\x1d\xab\x5e\x51\x7d\xfa\xe0\x5c\x1d\x09\x0c\x88\xa1\x6f\x40\xad\x62\x2d\x00\xde\x75\x0f\xe8\xc7\xab\x2e\x34\xc4\x6a\xcf\x98\x03\x84\xb5\x1f\xce\x65\xb1\x3a\x71\x60\x9f\x96\xaf\x5e\x7d\x9e\x98\x81\xe1\x5f\xec\xc4\xd5\x1a\xea\x63\xf0\x42\x54\x83\x55\xc1\x70\x19\xb4\xc4\x77\x47\x58\x0d\x3d\xb2\xf0\x7e\xd4\x0c\x38\x46\x47\x78\x49\x6f\xa1\x83\x58\x00\x3c\xad\x1a\x99\x37\xd5\xba\x7c\xf8\xa0\xfd\xd4\x89\x5e\x04\xa9\x7b\x28\x9e\xac\x7a\xf2\xcc\x8b\xb3\x0f\x93\xbe\x51\x1f\x40\x8c\x9a\xd7\x1e\x52\x29\xea\xb0\x3e\x81\xd5\x62\x69\x03\x99\x02\x8d\x82\x29\x7d\x97\x98\xc6\x96\xf9\xf8\x09\x1b\x64\xd5\x64\x5a\xdb\x61\xd3\xfb\xa4\x70\xd1\x3c\xa8\xa8\x61\xe6\x69\x13\x6d\xc1\x87\x6e\x1e\x5a\xbf\x6d\x71\xa3\xf7\xc2\x44\xb3\xb5\x3d\xf8\x3c\x48\x26\x52\x84\x50\x02\xa0\x24\x50\xb5\x75\x1f\x65\x0d\xea\x1f\x1a\x00\x63\x86\x08\x84\xa5\x42\x5d\xb2\x10\x56\x55\x49\x32\x4a\x34\x4b\x96\x82\x27\xb4\x23\x12\x09\xcc\xa2\x68\xf6\xe7\xab\x5c\xaa\x2a\x78\x0e\x5b\x44\x1d\xaa\xaa\xe8\xf4\x9c\x17\xec\x8e\x66\xf1\xf2\xb9\xd5\x07\xa9\x85\x35\xca\x62\xe9\x6a\x49\x98\x98\x4b\xcc\x5d\xb1\x61\x79\xdd\x57\xa3\xd3\x77\x07\x8f\x3d\xfe\x30\xcc\x30\x63\x12\x96\xcb\xe8\x72\x7d\xf9\x5e\x04\x7f\xc0\xb8\x6e\xd8\x21\x8c\xf5\x2e\x59\x4a\x72\x85\x4c\x9b\xbc\xe0\x63\x36\x26\x39\x17\x0b\xd5\xee\xfb\xea\xb5\xdf\x1e\xc4\x20\x8f\xa7\x7e\x35\x00\xe4\x62\xe2\x52\xc0\x1e\x1d\x0c\x56\x33\x6e\xa1\x3c\x1e\x42\x79\xe2\x3c\x62\x8d\x50\xe8\x01\x81\x86\x24\x9e\x86\xcd\xb9\xc6\x02\x41\x28\x6f\x55\x45\x2a\xa8\xab\xe5\x3b\xb4\xb5\x6f\xee\x51\x44\x03\x8c\x11\x58\x61\xb0\x15\x5d\xab\x15\x4e\xfa\x72\xc5\xbe\x6c\xa9\x9e\x83\x54\xad\xc7\x26\x9f\xa1\xb7\xee\x96\xd9\x14\x6b\x92\x53\x5e\x34\xf7\xd2\xa8\x3e\x46\x65\xb5\x7d\x15\x43\x98\xd2\x99\x2c\x75\x0f\x46\xf2\x54\x9a\xa3\x90\xda\xdc\xbe\x7e\x98\x71\x89\x0f\x77\x44\xf1\xc0\x23\xed\xd1\x74\x03\xc3\x18\x18\xc6\x6f\x9b\x61\x08\xa9\x9d\x58\xd5\x08\x96\xf6\x68\x9b\x9e\x71\x36\xfd\x22\x6c\x76\x82\x40\x9d\xc8\xd7\x11\x07\x6a\x1f\x6b\x06\x58\xc7\x3d\xee\x11\xd2\xf3\xb0\x60\x9e\xfc\xd7\x0a\xdc\xe9\x41\x08\xdb\x27\xe4\xfd\x3b\x8e\x2d\xb0\xf0\x86\x92\x80\x83\xc9\x18\xb0\x9e\x17\x6d\x96\x79\x1b\x91\x6b\xcf\xf9\x1d\xa4\x17\x5d\x41\x6e\x9c\xcb\xf4\x42\xb3\xf9\x8b\x19\x4b\x68\xa9\x6c\x1c\x5c\x87\x2b\xc1\x2f\x31\x61\x05\x8c\xe1\x63\xe9\x5e\xa2\x29\xde\x55\xa6\xad\x45\x06\x76\xb1\x58\x0c\x19\x3c\xa9\xa2\xde\x8e\xaa\x98\x37\xf8\xa7\xb9\xed\xe1\xbf\xd7\x6f\xdd\x5f\xd7\x67\x37\xf0\x4b\xf3\xe0\x38\xd2\x7b\xae\x99\x0d\xa7\x83\x66\x40\x80\x14\xce\x11\x8b\x0d\x53\x5e\x8f\xde\x7c\xf9\x65\x8b\x99\xff\xf9\x50\x5d\x35\x15\x46\xc5\x4f\xdd\xb9\xea\x0b\xa3\xf6\xc8\x3e\x6b\xe8\x39\x15\xce\x3a\x24\x9e\x0d\x89\x67\x3d\x5c\x9d\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x4d\x3b\x1e\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x8b\xed\x62\xa0\x63\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\xd5\x3f\x43\xe2\xd9\x90\x78\xe6\x3f\x43\xe2\xd9\x90\x78\x36\x24\x9e\x45\x07\x1d\x12\xcf\x02\x58\x0c\x89\x67\x43\xe2\xd9\x90\x78\x56\xff\xfc\x92\x89\x67\x2d\xcd\x30\x09\x19\xd9\x0a\xbd\xb1\xdf\xda\x07\x6e\x91\x13\xec\xdd\x78\x40\x61\xee\xfa\xad\x1a\x2a\x73\x0f\x95\xb9\x87\xca\xdc\x43\x65\xee\xd8\xf2\x86\xca\xdc\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\x55\x7d\x86\x00\xa9\xea\x33\x04\x48\x0d\x01\x52\xbf\xaa\xc0\x82\x21\x40\x6a\x08\x90\x1a\x02\xa4\x86\x00\xa9\x9d\x87\x7f\x63\x74\x6c\x08\x90\x1a\x02\xa4\x86\x00\xa9\x21\x40\x6a\x08\x90\x1a\x02\xa4\x86\x00\xa9\xe0\x33\x04\x48\x0d\x01\x52\xfe\x33\x04\x48\x0d\x01\x52\x43\x80\x54\x74\xd0\x21\x40\x2a\x80\xc5\x10\x20\x35\x04\x48\x0d\x01\x52\xf5\xcf\x50\x99\x7b\xa8\xcc\x3d\x54\xe6\xae\x7d\x86\xca\xdc\x43\x65\xee\xa1\x32\x77\xaf\x19\x86\xca\xdc\x43\x65\xee\xa1\x32\xf7\x50\x68\x75\x28\xb4\x3a\x54\xe6\x1e\x2a\x73\x0f\x95\xb9\x9b\xd7\x3f\x54\xe6\x1e\x18\xc6\xc0\x30\x86\xca\xdc\x43\x65\xee\xda\x67\xa8\xcc\x3d\x54\xe6\x86\xcf\x50\x99\xbb\xe1\x33\x54\xe6\x1e\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\xac\xf6\x19\x12\xcf\x86\xc4\xb3\x5f\x55\xc2\xc6\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\xce\xc3\xbf\x31\x3a\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\x59\xf0\x19\x12\xcf\x86\xc4\x33\xff\x19\x12\xcf\x86\xc4\xb3\x21\xf1\x2c\x3a\xe8\x90\x78\x16\xc0\x62\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\xfa\xe7\x5f\xbb\x32\x77\x9f\x50\x83\xf8\x51\xb7\x4b\x07\x73\x8c\x0c\xa9\x34\xf5\xd8\xaa\x4b\x85\xba\x08\xd2\x47\xcb\xb6\xb1\xbc\xb5\x14\x35\xff\x60\xc3\x96\xe2\xa7\x02\x25\xc4\xbb\xf6\xf1\xd1\x3c\xd4\xc2\x93\xea\x88\x2c\xf1\xe9\xe8\x2e\x30\x64\x10\xeb\x3c\x83\xd1\xc7\x0c\x0a\x1e\xd2\x74\x8c\x76\x20\x6f\xc1\x5e\xf2\x85\x51\xab\xa7\x07\x30\xde\xf4\x00\x44\x00\xfb\x6c\x6c\x68\x3a\x37\x4a\xa1\x06\xa1\x13\x06\xc8\xe4\x1d\x2b\x70\x35\x18\x82\x19\x2c\x4e\x11\xb9\xe2\x5a\x1b\x5e\xc2\x5d\xf6\x4e\x6c\xd0\x44\x0a\xc5\xb1\xc8\x3a\xda\x2a\xa7\x07\x5c\xcc\xb9\xe0\x9a\x4d\x0f\xc8\x88\x40\xe0\x5f\xb0\x1d\xc7\xa9\xec\x3a\x49\x46\x95\x1e\x13\xbf\xb3\x28\x48\xcc\x5a\x79\xca\x84\xe6\x09\xcd\xec\x02\xb7\xc7\xe1\x82\xd0\x2c\x5f\x52\x51\xae\x58\x11\x3c\x07\x08\x10\x1b\xd5\xf2\x27\x6b\x5a\xc3\x48\x97\xa8\x4b\x08\x91\x43\x94\xab\xd9\xae\xd5\x33\x2f\xd8\xf9\xe5\xe9\x4d\x17\x7a\x4c\xf0\x31\xc2\x45\xca\x13\xb4\xe8\xf8\x4c\x93\xa5\x2b\x9c\x5e\xa7\x2a\x64\xc6\xe6\x32\x2e\xba\x51\xb1\x21\x66\xb8\xc6\xb5\xce\xa4\xcc\xd8\x6e\x30\x46\x8b\xdc\xbe\x25\x65\xdd\x84\xf6\x31\xc4\xea\xc0\x4a\xe6\x2e\x5a\xce\x93\x5b\xfc\x8f\x2c\xa3\x04\xc8\xec\x6d\xcb\xe6\x11\x60\x82\xcd\x8b\x09\xce\x50\x4b\x27\x74\x34\xdb\x6d\xaa\x75\x18\xd9\x2d\xcb\xe4\x1d\x42\x0d\x4d\x77\xde\x98\x85\x92\xf5\x9f\xc0\xb6\x83\xf7\xfa\x87\x8c\x6b\x56\xd0\xec\xe7\x1f\x7f\x8a\x8d\x3b\x9d\x92\x11\x66\x85\x19\x9c\x5e\xe5\xb4\xe0\x4a\x8a\x23\x02\xa9\xa1\xce\x28\x63\x07\x9c\x4b\x49\x66\xb4\xf8\xf9\xc7\x9f\xaa\xa9\x7e\xb7\xd7\x54\xd5\x5c\x46\xa8\x62\x7f\x2f\x69\xf6\x47\x0c\x62\x76\x4a\x02\x9f\x5b\xed\x80\x2b\x78\xc6\x39\x3a\xfc\x84\x71\xf2\xf1\x5f\x66\x15\xd4\x05\xe0\xcd\xdc\x3f\x12\xf8\xc7\x78\x3c\x26\xff\x13\xcc\xad\x8b\x92\xb9\x2c\x24\x1f\xc8\x8b\xa3\xff\x85\xc4\x13\x07\xac\x6f\xa7\x71\x92\x6a\x7d\x66\xd1\x5c\xb4\x2e\x28\x36\xc1\x9e\x6b\x84\x69\x9a\x16\x15\x1b\x3f\x58\xe7\x92\xaa\x17\x30\xd2\x0f\x86\x39\xbc\xac\x26\xbd\xf1\x73\x52\x5d\x9d\x42\x70\x02\xbf\x03\x34\x8c\xb2\x55\x3b\x84\xb7\xfc\xca\x39\x3c\x0b\xe6\x3f\xf8\x7f\xf9\xea\xd5\x9b\xb7\xf8\x5f\xfc\xc5\xbf\x73\xbd\x94\x85\x1e\x25\xbc\x48\x4a\xae\x41\x70\xb5\x2f\xc5\x26\xfa\xef\xff\x6e\x7d\x5b\xc2\x8c\x2f\xf0\x99\x97\xfe\xa1\x9c\x16\xcc\x2a\x3d\x8b\x42\x96\xb9\x51\x7a\xa6\x53\x4d\xb3\xec\x45\xd4\xcd\x67\x3b\x02\x60\xb0\x8f\xa7\x08\x6e\x34\x87\xab\x34\xcb\x02\x2b\x1e\x5c\xc1\xf7\x88\x03\xa8\xa6\x36\x90\x31\x73\x79\x91\x92\xb8\xa0\xd7\x90\x82\xab\x23\x32\x3a\x22\x3f\x00\x1c\x8e\xc7\xe4\x1a\x6e\x16\xb1\x37\xab\x71\xd0\x95\x2c\x18\xc9\x8d\x86\xa5\x14\x5f\x33\x32\xc3\x74\x8d\x8d\xb3\x1d\x5b\x9b\x3e\x61\x2a\xa1\x39\x23\xc9\x92\x16\x34\xd1\xac\xb0\xcb\x7e\x87\x51\xef\x51\xd4\x7f\x01\x7c\x68\x45\x53\x36\x2a\x73\x44\x0b\xf5\xd2\x13\x1c\xc8\x11\x44\xf2\x70\xc7\x66\x46\x35\x63\x48\x20\xc2\xf3\x4e\x59\x9e\xc9\xcd\x8a\x89\x28\xb9\xc4\xb7\xf3\x42\xa6\x16\x41\x61\x4c\x73\x87\x0c\xcd\x29\xa4\xd0\x4c\xa4\x1e\xc1\x69\x72\x8b\x7f\xfe\x8f\x79\xb4\x1a\x99\xfc\xee\x4f\x0d\x78\x9f\xb2\xb5\x1d\xf8\x77\x64\x0b\xf7\x63\x6a\x4c\x9b\x50\x54\xb7\xb2\xf6\x95\xf6\xae\xa3\x6f\x3d\x9b\xc8\x67\x17\xe9\x8c\x30\xfb\x0a\x7e\xe0\xc5\xe9\xc1\x2b\xc1\xd9\x53\x71\xf6\xbb\x25\x64\x9c\xd7\x78\x79\x10\xe2\x66\xd5\xc7\x28\x6d\x32\xb7\x4d\xda\x9e\x27\x47\xf6\xaf\x99\xd4\xcb\x31\xc1\xa8\x53\xe0\x15\xf7\xb9\x91\x94\x74\xb6\x09\x94\xd4\x17\xd0\xaf\x25\x1a\x4e\x1c\xd0\x4d\x41\x92\x82\xd9\x04\x17\x65\xef\xb4\x2c\x88\xe0\xd9\xcb\x23\x97\xa4\x92\xb2\x39\x2d\x33\xad\x08\x6e\xcb\x80\xae\x48\x1b\x74\x15\x2d\xc9\x9d\xa1\x90\x17\x56\x23\x36\x8b\x78\x17\x28\xc7\x20\x8f\x3a\xaa\xe9\x9b\x97\x60\x08\x65\x53\x9e\xbb\x9d\x9f\x70\x85\x37\x6b\x44\xfe\x6a\x45\x34\xb3\x20\x37\xd3\xdf\x8e\x2c\x4b\x30\x02\x2f\xf8\x64\x6a\x13\x47\x6f\x2f\x17\x49\x56\xa6\xce\x61\x99\x50\x23\x04\xc3\x00\xd5\x30\x04\x59\xb0\x90\x7e\x4b\x30\xdc\xcb\xa6\x48\xc9\xfa\xe2\xde\xc5\xd7\x56\x83\x88\x21\x47\xd5\xf0\x51\xa5\x0d\x9e\x6b\xdc\xfa\x51\xe7\x84\xb1\x41\xc1\x66\xd8\x74\x4c\x48\xf9\xbe\xb7\x06\xc3\x40\xed\x28\x18\x35\xb7\x29\xb9\x25\x74\x41\xb9\x88\xa2\x2c\xa2\x09\x3a\x9a\xb2\x3b\xba\x51\x3b\xf9\x05\x18\xf9\x71\x44\x04\x5b\xb3\xa2\x86\x75\x51\xe3\x49\xcf\xbe\x48\x15\x14\x08\x03\x86\xe1\xfd\xa4\xb9\x54\x8a\xcf\x32\x37\x71\x15\xda\x66\x5e\xb8\xce\x59\x12\x57\xa7\x71\x23\xcd\xc1\x7e\xed\x8a\x7b\xa3\x4e\x1c\x57\xa5\x77\xbf\x05\x86\x91\x86\x61\x0c\x4a\xcb\x82\x2e\x98\xfb\x4a\x69\xaa\x4b\x04\x0c\x7a\xf4\x58\x7a\x19\xf8\x5a\x6e\xb9\x48\x0d\x35\x72\x20\xcd\xb3\xb2\xa0\x59\xf5\x4d\x22\x05\x3a\xd6\xd5\x09\xf9\xeb\xdf\xcc\x37\x66\x7c\x96\xda\x44\x59\xfb\xed\x54\x8c\x46\x23\xff\x3f\x9a\x73\x97\x76\x4b\x68\xce\xd9\xbd\x66\x02\x1e\x1e\xdf\xfe\x41\x8d\xb9\x3c\x5e\xbf\x9e\x0a\x9c\xf8\xac\x54\x5a\xae\xae\x18\x3a\x0c\xcf\x19\x28\x80\x40\xb4\x6b\xc9\xad\x60\xe6\x22\x18\x26\x2d\x30\xa4\x58\x31\xad\xc6\x49\x91\x8e\xf3\x42\x1a\x70\x24\x40\x87\xc6\xb2\x58\x4c\x85\x21\x70\xf0\x1e\xc8\x2a\x27\xa4\xe1\xb1\xba\xd7\x09\x17\xb4\x1d\xfd\x8c\xbf\x65\x5c\xe9\x7f\x8f\xfe\xfe\x9e\x2b\x5d\x87\xdc\xce\x2a\xed\xb1\x70\xb1\x28\x33\x5a\xec\x3e\x00\x40\x4d\xa4\x39\xd9\xb3\xac\x54\x1a\xb5\xc5\xb5\x03\xb0\xf9\x63\x64\x21\x60\x00\x07\x83\x25\x4b\xb6\xaa\xf2\x7e\x65\xce\xc4\xe9\xe4\xe2\xbb\xcf\xaf\xeb\xdf\x6f\xe1\xfe\x4e\x64\x77\x2d\xb7\x02\xa2\x04\x68\x31\xe3\xba\xa0\xc5\x86\x5c\x4c\x88\x2a\x67\x23\xb7\xcc\xe3\xb3\x8b\xf3\xab\x1a\xe1\x41\xfb\xc4\xd2\x90\x2a\x94\x69\x40\x37\x05\xc5\x0a\x69\x91\x96\x98\xda\x67\x43\x32\x56\x64\xcd\x69\x10\x18\x87\x61\x0f\xf8\x6a\x38\xae\x9c\xef\x2e\xd4\xf9\xcf\xbd\x31\x26\xbc\x6b\x0d\xc6\xd2\x00\x0b\xeb\x57\xab\x5e\xab\xc4\xc0\xcd\xc6\x88\x60\x3e\x05\x52\x03\x0b\x7e\x96\x5a\x58\x23\x39\x00\xe2\x66\x39\x13\x8d\x59\xc1\x0c\x08\x85\xbd\xa0\x63\x90\x5b\x58\xa1\x9c\xc6\x9a\x48\xb1\x66\x85\x26\x05\x4b\xe4\x42\xf0\x7f\xf8\xc1\x95\x8b\x5a\x81\x2e\x6d\x3b\x32\x1e\x17\x9a\x15\x46\xc2\x01\xca\x84\x36\xfa\x15\xdd\x90\x82\x99\x69\x48\x29\x82\x01\x5d\xbc\xdc\x07\x23\xcf\x72\x31\x97\x27\x50\x45\x4a\x9d\x1c\x1f\x2f\xb8\x76\x17\x30\x91\xab\x55\x29\xb8\xde\x1c\x83\x3f\x9d\xcf\x4a\x73\x24\xc7\x29\x5b\xb3\xec\x58\xf1\xc5\x88\x16\xc9\x92\x6b\x96\xe8\xb2\x60\xc7\x34\xe7\x23\x58\xbb\x00\x42\x30\x5e\xa5\x9f\x15\xf6\xc6\xaa\xc3\x18\xd9\xda\xa5\x76\x70\xb9\xda\x8e\xc1\xdc\x2e\x9b\x7a\x8d\x02\x3b\xca\x1e\x1e\xda\x8e\xff\x5e\xbd\xbb\xbe\x21\x6e\xf6\x68\x9a\x3a\x02\xbf\x7a\x53\x55\xe7\x60\x80\xc6\xc5\xdc\x09\x59\xe0\xc2\x08\x6d\x0d\xc8\xe1\x33\x1e\x91\xb3\x55\x39\x5b\x71\xad\x82\xf2\x43\x72\x4c\xce\xbc\x6f\xa3\xcc\x53\xaa\x59\x3a\x26\x17\x82\x9c\xd1\x15\xcb\xce\xa8\x62\xcf\x7e\x0a\x20\x69\x8e\x0c\x6c\xfb\x9e\x43\x43\xc9\x80\x26\xc3\xad\x27\xa4\x0d\xc7\xb6\x7d\x51\x0d\x9b\xac\x67\xb1\xb9\x44\xc7\xaa\xb4\x00\x25\xdb\xd4\xb5\xfa\xb8\x83\xdd\xe2\xa4\x2d\xee\x90\x86\x7c\x8b\x9d\x86\x8e\x2e\x24\xf4\x62\x42\x1c\x49\x43\x0a\x36\x63\x99\x34\xb8\x25\xad\x39\x88\xc5\x9c\xe8\xcd\xc2\xc5\xff\x26\xf6\xfe\x5c\x7c\x7d\x29\x55\x15\xe2\xf4\x0c\x3c\x3d\xcc\x5e\xda\xe6\xe7\xe1\x6f\xbb\xbc\xbc\xb6\xb2\x6d\x3e\x1e\xfe\xf8\x9c\x3c\x7c\xe0\x6f\x03\x7f\x0b\x8f\x60\xe0\x6f\xbf\x18\x7f\x0b\xa9\x43\x3f\xde\xb6\x4b\x6b\xaa\xcf\xfe\xdc\x8d\xdd\xe7\x10\xb2\x71\x31\xe9\x63\x50\x32\x27\x6d\x5f\xa8\x27\xeb\xbd\xb8\x98\xac\xbf\x80\x6b\x75\x31\x59\xbf\x7d\xe9\x54\x5b\x87\x16\x51\xbd\xf5\x02\xec\xe2\x17\xe6\x6a\xce\x69\xc2\x0c\x53\xf9\xf9\xc7\x9f\xb6\xbc\x0a\xde\xfc\x03\x8a\x7c\x26\xe5\xad\xb3\xbf\x71\xf7\x62\xd4\xd8\xea\xe2\x66\x82\x14\xc2\x8b\x49\x2d\x92\x0d\xb3\x9e\xc1\xd3\x65\x0d\x0b\x40\x42\xa8\x1e\x43\x54\x78\x94\x17\x4f\xa7\x1a\xac\x11\xa5\xda\x09\x2f\xdf\x4a\xa6\x87\xec\x45\x1f\x91\x21\x0b\x6b\x3b\x8b\x0d\xba\xdd\xe1\x78\x3a\x35\xe3\xd9\xd6\xc6\x7e\xff\x96\xf4\xa9\xfa\xac\x5c\xc4\x53\xf5\xbd\xba\x15\x9e\xd2\x18\xd2\x66\x0d\x53\xa9\x85\xfc\x62\xb8\xc1\xbb\x0a\x11\xd0\xd6\x10\x1b\x96\x2b\x34\x6c\x62\x01\x27\xaa\x49\x5e\x16\xb9\x34\xf7\xf4\xc5\xc5\xdc\xc6\x18\x2d\x59\x75\x34\x66\x1e\x17\x44\xd8\x1e\xa9\xe4\x8c\x7c\x92\xe1\xf1\x67\x8c\x16\xc2\x1f\x9b\x3d\xc1\x6a\x5c\xb3\x80\x52\x81\x09\xba\x31\x3a\x62\x3a\xd5\xee\x38\xc6\x51\x33\xf2\x93\xcb\x5c\xa4\x5a\xe1\x65\x3c\x6c\x66\xeb\x42\xbd\xc3\x9a\x93\x3f\xff\xf8\xd3\xbf\x81\xf5\xdc\x3a\x35\xaa\x70\x19\x5f\xc5\xe3\x3d\x17\xe5\x7d\x3b\xce\x7b\xc7\xad\x47\xe7\x3f\x02\xe2\xad\x72\xbd\x19\x13\x37\x49\xe8\xe9\x45\xb7\x27\x57\xad\x34\xc5\x7c\x16\x72\xcd\x0a\x81\xee\x14\x1f\x44\x26\x8f\xaa\xc0\xb1\x65\x21\xcb\x05\x06\x07\x38\x3b\xa9\x15\x82\xdb\xf3\xd9\xed\xc1\x02\x4e\x9a\x07\x7d\x36\x3f\xf4\xba\x4e\x81\x20\x00\x36\xfe\x91\x30\xb3\x77\xbc\xd2\xa9\x41\x8f\x35\x5e\xc1\x78\x75\x87\x2a\x20\x67\x0d\xcd\xc7\x37\x15\xe8\x8e\x48\x68\x6f\x95\x0a\x13\x01\x8e\xb5\x84\xf0\x72\xb3\x12\x67\x92\x88\x7b\xe7\x33\x99\xd0\xcc\xe7\x83\x5b\x1b\xe5\xc5\x9c\xd4\x08\x99\xa3\x62\xfe\x64\x7b\x81\x19\x2e\x90\x83\x75\x2d\x58\x0f\x36\x0f\x74\xc4\xec\xdc\x4a\x58\x00\xb5\x00\xf4\x51\xe2\xe2\x10\xa8\xba\x3b\x1e\xce\xb5\x15\x03\xf2\x8d\xc8\x9d\x21\x6f\xb5\x1f\x1a\xe8\x00\x9a\x4b\x47\xb5\xa3\x8f\x4c\xe6\x13\xf8\x2a\xcb\xab\xb9\xd1\xd1\x41\x45\x48\x84\xa0\xde\x6c\x01\x91\x06\x47\x91\x55\xf9\x25\x1c\x11\x0a\xd4\x62\x57\xe8\x23\xd6\x29\x1c\x72\x2c\xdf\x5a\xbc\xaa\xc6\x85\x79\x48\x46\xd5\x28\xb0\x4e\x9d\x9d\x45\x91\x17\xaa\x8c\x53\x16\xaa\xcc\xc1\x32\xbd\x7c\xf5\xf3\x8f\x3f\xbd\xb4\x29\x34\xe0\xbd\x63\x29\x31\xab\xfe\x23\xe1\x9a\x70\x25\x0e\x75\x65\xf4\xed\xe6\xde\x04\x2f\x71\x5e\x48\x23\xb1\x04\x08\x80\x10\x0e\xa8\x41\x1d\x07\xab\x35\x47\xf9\xac\xcb\x73\x3a\xc1\x9d\x42\x4a\x21\x48\x3c\x98\x76\x88\x6e\x20\x23\x65\xad\xf2\x8c\xad\x0c\xa6\x21\x81\x77\x04\x23\x5c\xb2\xfa\x63\xfc\xe4\xb8\xe6\x34\xcb\x36\xe4\xff\x36\xf0\xcd\x0b\x36\x82\xa0\x12\xef\x52\x99\x98\x03\x62\xb6\x22\xb0\x27\xf5\x49\xb9\x6a\xd2\x02\xcc\xc7\x35\x7d\x47\x91\xde\x36\x97\x97\x22\x6a\x9b\x6f\x23\xd8\x22\x5e\x0e\x6e\x47\x81\x37\xcf\xd9\x90\x77\x88\xe8\x99\x6f\x1c\x93\xb7\x2b\x86\x07\xb8\x51\x88\x45\x14\xd4\x6d\x8b\x68\x4a\xb1\xdd\x72\x1d\x18\x06\x5f\x93\x00\x83\xd0\x57\xbc\xb7\x36\xfb\xd3\x95\x07\x8e\x86\xd1\xce\x18\xda\x45\x99\x48\x30\xfe\xc8\x8b\x18\xf6\xb8\x6d\x84\xe8\x1e\x1c\xb1\x33\x5e\xb4\x35\x4e\xb4\x3b\xb6\xd0\x6c\xab\xe3\xf5\xd6\xf4\xce\x5f\x53\xd9\xaf\xe7\xaa\xf8\xd4\x11\x35\x29\x1a\x88\xf5\x08\x80\xdb\xf0\x4b\x4b\x1d\xb7\x07\xc7\x5a\xe6\x28\xba\x76\xa2\xfb\x69\x95\x46\x8d\x17\x8e\x03\x8f\x9b\x07\x12\x31\x8e\x64\x17\xd1\x5c\x1d\xb3\x4a\xb1\x30\x6c\xd6\x6b\x1d\x58\x15\xdd\x2e\x27\x08\x57\x74\x6a\x00\xc6\xe1\x35\x0d\x8a\x39\x0a\x79\xce\x68\xe1\x23\xe0\x20\x05\x86\xf8\x75\x55\xce\x64\x37\xb2\x8b\x64\xac\x64\xf4\x51\x63\x9c\xdf\xd6\xad\x1c\xac\x82\xbf\xb0\x55\x90\xe7\x74\x35\xcb\x64\x72\xfb\x1c\x26\xc1\x8b\xc9\xe9\x87\xaf\xcd\xe0\xdb\xf6\x40\xff\xc3\xae\x31\xb0\x5a\xd0\xb6\x25\xd0\xff\x12\x37\x03\x7e\x46\xae\xa8\x48\xa0\x7c\x97\x13\x11\x92\x25\x15\x0b\x38\x3b\xd0\xa4\x8b\x35\xfb\x24\x6e\x85\xbc\x13\xdf\x18\x71\x5a\x9d\x90\x39\xcd\x14\x1b\x6c\x88\x83\x0d\x71\xb0\x21\xfe\xc6\x6d\x88\x9e\xa2\xf4\x32\x20\x8a\x6d\xd2\x54\x7d\xf6\x37\x1f\x1a\x0d\xc5\xc0\xae\x93\xd5\xdb\xe7\x9c\x0a\x08\xb4\xcc\x46\x07\x71\x85\x7f\x3a\x35\x11\xf3\xda\x98\x8e\xda\x89\xb8\xf6\xf1\xf5\x41\xa7\x0e\x32\x3d\x30\xca\xf0\x09\x76\xd3\x30\xff\x04\x61\x08\x62\x41\xa7\x07\x30\x20\x84\x58\x32\x7d\x14\x4c\xd8\xa0\xd9\x9a\x27\x61\x5f\xd8\x1b\x06\xd4\xec\x3d\xa5\x7d\x9a\x19\x0d\xad\xa9\xfa\x78\x1d\x32\x86\x49\x03\xc5\xaa\xde\x21\x5c\x8c\x4a\x9b\x0a\xe1\x24\x0f\x58\xf1\x98\x08\x9e\x41\x9b\x97\x86\x84\x84\x15\xa3\x28\xda\x54\xa3\x11\xb8\x63\x8c\xa1\xf5\x4f\x48\x31\x0a\xc6\x30\xca\x33\x17\x29\xbb\x27\xfc\xa8\xc9\x84\x60\x7f\xf7\x09\x22\xdc\x10\x41\x0b\xfc\x60\x9a\x9d\xc5\x02\x85\x6c\x18\x13\xe9\x8a\x1d\x13\x27\x70\x23\x2a\x25\x13\x0e\x95\x35\xa8\xc6\xeb\xc8\xbc\xdd\xf6\xd4\x7f\x13\x95\x02\x0d\x28\x1f\x20\x45\xb5\x08\xfd\x9f\x91\x9b\x8f\xe7\x1f\x4f\xb0\x38\x90\x28\xb3\x8c\xce\x50\x92\x5c\x51\x51\x82\xc6\x4b\xd3\x14\x04\xca\x31\xf9\x9e\x39\x16\x83\x74\x88\xf8\x4a\x02\xc5\x68\x11\xaf\x96\xf9\x99\xc1\xb0\x25\x15\x69\xc6\xc8\x5f\xff\xf6\x6f\x86\xf8\xe1\x65\xcb\x36\xb6\xd4\x47\x54\xa3\x77\x0b\x69\x52\x15\x5a\x64\xf3\x0a\xa6\x9d\x88\x19\x40\x1f\xc2\x60\xa9\xc7\x54\x1f\xc2\xe3\x08\x59\x70\x6a\xb1\xf5\x42\x78\x72\x1d\xbf\x2b\x2a\x30\x26\x37\x92\xcc\x0d\xe3\x09\xce\x1b\x8d\x25\x98\x24\x57\xbd\x18\xa5\x08\xe6\xa2\xd4\x42\xf0\xeb\x78\x79\xa8\x6c\x5b\x24\x87\x42\xc1\x32\x1a\x33\xca\x69\x04\x31\x19\x1a\x47\xbc\x2a\xb0\x3f\xb6\x75\xea\xd0\x88\x09\x3f\xf0\xb8\x86\x47\x7a\x29\xd2\x8a\x19\xd9\x9a\x16\x31\x92\x6c\x37\xb7\x5f\xcb\x83\x3e\x1a\x6f\x57\xbe\xdf\x83\x55\xc9\x84\xa7\x9d\xb1\xdb\x37\x0e\x93\x0e\x15\x39\xbb\x38\xbf\xda\x93\x56\xa7\x2c\x63\x3a\xaa\x54\xd7\x66\x39\xc7\xc7\xec\x5d\xf0\xc2\xa0\x4d\x68\xf2\xf1\xde\x77\xb2\xb8\xa5\x85\x2c\x0d\x3a\x07\x75\xfb\x1b\xec\x9d\x06\xaf\x82\xcc\xee\xd3\xc9\x05\x46\xfe\xce\x36\xb8\x2c\xa4\xab\x19\xa6\xac\x14\x4c\x97\x85\x20\xd0\x5e\x63\x9e\xf1\x38\xa4\x59\x51\xc8\xc2\x65\xa5\x54\x6c\x75\xc6\x98\x08\xc4\x23\xed\x28\x95\x4b\x9c\x66\xda\x53\xb4\xfd\x73\xb7\xfe\x5e\x32\x91\xb0\x4b\x48\x43\x8b\x82\x11\x1c\x02\x27\xe4\x55\x07\x88\x0d\x01\x35\x5a\x20\x78\xaf\x70\x50\x9b\xdc\x86\x66\x64\xae\xdc\x16\x30\x2d\x5c\xf3\xb8\xc1\xa3\xda\x3a\x57\xe4\xae\xe0\x5a\x33\x61\x6d\x01\x35\x7e\x05\x91\xc1\x4a\xda\x49\x51\x67\xc7\x69\xe3\x44\x17\x56\x12\x0a\x30\xc4\xa6\x8d\x99\x85\x80\x19\x43\x2b\x1f\xc8\x6e\xcb\x31\x17\x2c\x63\x54\x35\x5c\x1d\x90\xc5\x8e\x48\x4e\x55\xe0\x4f\xac\x6f\x3c\x60\x87\x40\x45\xeb\xc4\x2d\x3a\x68\x96\xc9\x3b\x45\x4a\x15\xda\x92\x21\x4c\x5a\x69\x42\x49\x41\xb1\x0c\xb8\x2d\x66\x65\x78\x34\x13\xaa\xb4\x00\xb8\x88\x36\x6e\x5c\x52\x30\x65\x03\x12\xe1\x86\x0c\x77\x16\x29\x29\xd8\xc8\x2e\xc6\x68\x51\x50\xb6\x0e\xb2\x06\xf1\x19\x27\xa6\x47\x30\x0a\xfb\x96\x00\xeb\x7d\xfb\x45\x13\xc2\x35\xf0\xe5\x3a\xc2\x7d\x23\x8b\x8a\xa4\x47\xb0\xaf\x37\xb5\xeb\x58\x52\xa7\xb0\xb0\xd5\xc7\x22\x0f\x64\x3a\x96\x7a\xb9\x29\xa8\x96\x80\x28\x04\x39\x22\x8f\xc2\xba\x0a\x1d\xc6\x21\x31\x71\xae\xd4\x46\x1c\x21\x55\x42\xea\x2d\xdb\xb8\x7a\x13\xb9\x3a\x22\x0a\xf5\xe0\x5b\x06\xc1\xf6\x09\x55\xda\xb6\x1d\x03\x02\xda\x48\x20\xe2\xf4\x1d\x0b\xa7\x9c\xf6\x54\x14\xae\x6b\x4f\xbb\x54\x58\xaf\xb1\x98\xf5\xa4\x46\xa7\x44\xa8\x1a\x1c\x14\x51\x07\x78\x26\xc5\x82\x15\x48\x96\xad\x4b\x11\xfb\xb9\x7c\x52\x38\xdc\x99\x14\x73\xbe\xd8\x9e\xcf\x5c\x12\x46\x63\x71\xf6\xad\x34\xb0\x14\xfe\xa4\xbb\x36\xf8\xa9\x7a\xd4\xa5\x17\x15\x98\xa4\xec\x8c\xa1\xa1\xa0\x84\x66\xfe\x86\xdc\x09\x23\xd5\xd7\x45\xa9\x27\x94\x7d\x1b\x99\x72\x83\x15\x7a\x14\xae\x7b\xe7\xa7\x06\xb9\x7d\x04\x0c\x7e\xfb\xbb\x3a\xc6\x6c\xff\x1a\xc0\x7a\xb0\x6d\xb6\xda\x36\x13\x40\xf1\xe7\x32\x6e\xe2\x05\x8a\x59\x37\xf1\x97\xb8\x79\xd3\xae\x29\x66\xdf\x4c\xfc\x80\x43\x9c\xe3\x60\xa3\x6c\x3c\x86\xc1\x46\xf9\x5b\xb5\x51\x22\x5d\xd8\xc3\x48\x19\x92\x98\xea\xf3\x00\x2b\x65\xa9\xa5\x15\x12\x19\x88\x11\x31\x8e\xd8\xca\xe0\x57\xf4\x1e\x5f\x9c\xb0\xe2\xcf\x60\x69\xec\x92\xff\xea\xcf\x83\xa9\x53\x48\x31\xfa\x07\x2b\xe4\x91\x33\x7c\xad\xe8\x7d\x20\xe0\x85\x9e\x9f\xad\xa5\x41\xf1\x30\x2a\xa0\x22\x85\xb7\x4c\x82\x0e\xd4\x6a\x9c\x6c\x12\xa0\xbb\x24\xb2\x16\x50\x34\x73\xff\x1d\x18\xef\xc3\xd6\x07\xde\xbd\xc5\xbb\xd1\x14\xf4\x5c\xbc\xfb\xcf\x30\x7a\x8c\x77\xe3\x2f\x71\xde\x6d\xd7\x14\xe3\xdd\x4b\x3f\xe0\xc0\xbb\x07\xde\xdd\x78\x0c\x03\xef\xfe\xad\xf2\x6e\xa4\x0b\x7b\xf0\xee\x90\xc4\x54\x9f\xfd\x79\x37\x70\xc5\xc7\xd8\x75\x7a\xe9\xb9\x71\xd3\x45\xb3\x69\xb8\x55\x58\x40\x62\x78\x71\xde\xf8\x5e\xcc\x10\xdd\xc8\x58\x23\xae\xca\x91\x9f\x62\xe0\xa2\x2d\x5c\x34\x97\x32\x7b\x1e\x0e\x3a\x91\x2e\x64\x2e\xe4\x9e\xe6\xdb\x18\xe7\x84\x75\xec\x72\xcd\xdc\x0e\x32\x70\xcc\x81\x63\x36\x1e\xc3\xc0\x31\x7f\x9b\x1c\xd3\xd0\x82\xde\xdc\xd2\x3c\xfc\x10\xb5\x16\xcb\x94\x7d\x52\x3d\x9c\xf9\xfe\x51\x17\x95\xa0\xb0\x42\x12\x5a\xd7\x89\xa1\x45\x3e\xb0\xc6\xa5\x78\x41\xe5\xcd\x18\x4b\x85\x58\x1a\x5f\xe2\xc9\xe5\x18\x1d\x55\x25\x9a\xb4\x24\x7f\x9d\x1e\xdc\x94\x42\xb0\x6c\x7a\x70\x44\xa6\x07\xdf\xdb\x5c\x85\xe9\xc1\xdf\x60\xdf\x33\x9a\xdc\x8e\xa0\x9a\xa1\xe6\x33\x9e\xed\x28\x84\xe4\x79\xf2\xb3\x80\x99\x5e\xf3\x7f\xf4\x4a\x08\x40\x6f\x8b\xe2\xff\x00\x75\xbb\x54\x98\xc3\x51\x65\xd4\x11\xaa\x14\x5f\x88\x95\xb9\x4c\x8d\x1d\x12\x6c\xb1\x2d\x99\x8d\xc9\x79\x00\x9e\x37\x6f\xed\x60\x36\x6d\xf2\xf5\xeb\x37\xee\x8b\xb7\xfb\xea\xf3\x7d\x9d\xe4\x70\xc8\x0f\xf1\x90\x73\x45\x67\x59\xb7\x6b\x03\x1c\x9e\xee\x61\xb0\x71\x14\x65\x95\xc0\x68\x84\xc2\xca\x99\x8d\xa0\xab\x72\x13\x63\xa0\xb3\x74\xc8\xc1\x6f\x4f\x29\xcc\x2e\xe4\xeb\x6f\x27\xef\xee\x1b\xb2\x0b\xea\xa4\xf6\x1c\x5f\x20\x0c\x1e\x37\x84\xb5\x90\xa5\x2f\x8f\x0e\xeb\xb8\x98\x10\x73\x57\x7f\xfe\xf1\xff\xc5\x50\x03\x22\xd7\xf1\xb8\xa1\xaf\xbf\x9d\x8c\xc9\x5f\xcf\x9d\xe7\x1b\x62\x6d\xff\x16\x69\xbe\xda\xba\x03\x9e\xf3\xbc\x7b\xd5\xde\x1b\x76\x62\xa9\x37\x14\xa9\xe3\xd8\x92\xbb\x4a\xd7\x3c\x9d\x5c\xac\x5f\xc3\xb5\xbb\xa3\x45\x1a\x85\x77\xed\x3a\x1a\xee\xa0\x2d\x7b\x09\x47\x85\xc3\x43\x6a\x72\x54\xff\x29\x7a\x84\x98\xa3\x8a\x6c\xda\xdc\x20\xb3\xa8\x71\x04\x10\x1d\xb1\x31\x4c\x34\x61\xe0\x0e\x44\x00\x0b\xed\xf3\x15\x12\x1a\x58\x12\x0d\x04\xc9\xec\x29\x24\x75\xf1\x31\x21\x15\x2b\x65\x19\x5f\xb3\xa2\x6a\xb5\x63\xbe\xf2\xed\xe7\xd4\x56\xc9\xed\x28\x8e\x92\xae\x53\x26\x50\x1b\x32\x9a\xa2\xb4\xb3\xb7\x1b\xa0\xd6\x17\x13\x78\x01\xea\x1b\x81\x7f\x56\x04\xa5\xcd\xa6\x07\x58\xed\xcc\xb5\x93\x84\x26\xb5\x23\x6c\x9c\x3a\x3d\x18\x13\x72\xda\xb4\x5f\x33\xe6\xd6\x08\x55\x8c\x44\xa9\xec\xcc\x15\x0c\xcd\xd9\x9a\x1b\x02\x38\xd2\xd8\x30\x3c\x80\x57\x3d\x65\x7c\x07\x76\x84\x9c\x06\x6b\xa8\xaf\xbb\x69\x74\x58\xa0\x43\xf4\xed\x05\xde\xb9\xc2\x71\xe1\x1a\x30\x89\xcb\xdc\x8e\xa6\x31\x69\xd5\x08\xcb\x36\x9c\x75\x62\xa8\x6b\x99\x60\x06\x17\xee\x04\xaa\x8c\xd7\xd6\xe6\x81\x2f\xf8\xbc\xce\x37\x5f\x9a\x55\x54\xb0\x6e\x45\x9d\x76\x4e\x17\x57\x5e\x0d\xc6\x7f\xe8\x91\xfa\x76\xe6\x04\x14\xf4\xbf\x95\x45\x25\x9c\x44\x0e\xbc\x1d\xd5\x2f\xb6\xf6\x78\xe4\xba\x7d\x70\x85\x9e\x7b\x00\x14\x46\x4a\x4d\x0f\x2e\xd9\x1a\x8a\x83\xbf\x80\x4a\xdc\xf5\xc9\x62\xa3\x9b\x11\x2c\x77\x89\xb5\x97\x6b\xcd\x01\xa4\x7a\x24\x4b\xbd\x90\x5c\x2c\xfe\xb7\x90\xd4\x56\xaa\x23\xa8\xfe\xd8\x13\x1e\x58\xe0\x33\x00\x60\x45\x55\x1d\x5d\x84\x3a\x9a\x41\x13\x2d\xd2\x9a\x41\x6d\x45\x62\xa3\x79\x84\x04\x60\x87\xba\xca\x52\x2b\x9e\x32\xaf\x62\x7a\x21\x35\x36\x28\xb4\x18\x51\x7f\x2f\x59\x41\xd3\x68\xbf\x98\x76\x70\xc8\xb4\x77\x67\x80\x53\x0c\xb0\xb2\x62\xbb\x2d\x49\x67\xd0\xc5\x46\xad\xfa\x14\x1c\x20\x35\xb3\x0d\x56\xa0\x8b\xad\xd9\xb7\xd7\xd9\x0f\x99\xd7\xf7\x19\x15\x8f\xbc\xda\xdf\xfd\xe5\xfd\xe9\xe5\x2f\x76\xb7\x61\xb6\xa8\x74\xec\x17\xf0\xe0\xcb\xdd\x68\x38\xdb\x0d\x2d\x19\xec\x63\x35\xfb\x18\xe6\x85\xe1\x65\x7b\x16\x33\xd9\x55\x35\xc1\xae\xb5\x2c\xf8\x31\x66\x34\x0b\x17\xb7\x6b\x3b\x2b\xea\x23\x0f\x26\xb4\xc1\x84\xd6\x78\x0c\x83\x09\xed\xb7\x69\x42\x0b\x08\x44\x6f\x4b\xda\x0e\xc5\xa9\x3e\xfb\xdb\xd7\x6c\xde\x6c\x0a\x85\x69\xbb\x78\xed\x55\xf8\x70\xbd\x49\x38\x7e\x45\x45\x7a\x5c\x33\x1f\xc5\x8d\x1e\x10\xeb\xb1\x63\x32\x61\xf7\x49\x56\xa6\xb6\x67\xad\x60\x77\x61\xb0\xe5\x90\x37\xfe\x0b\x73\xce\xdb\x72\xc6\xaa\xdc\x2e\x55\x13\xae\x9e\x83\x91\xfe\x7b\x39\x63\x67\xd5\x7c\x67\xe1\x7c\xdb\x7c\xb5\xed\xd9\x5d\x36\xdb\xba\x93\x6d\xae\xdb\xf6\xf0\xc0\x84\x07\x26\x3c\x30\xe1\x7f\x39\x26\xdc\x46\x4d\x76\x79\x72\xad\xad\xc1\x36\x80\x83\xcc\x94\x80\x88\xd4\x35\xd3\xfe\xac\x39\x18\xa2\x8f\x12\xec\x66\x43\xb3\x30\x36\x9a\x70\x33\xdb\x16\x29\x6b\x9e\x96\x34\xeb\xe8\x4f\x19\x4c\xbb\xb7\x09\xbb\xab\xe5\x64\x43\xa3\xc9\x86\x25\xd7\xbb\x4e\x56\xeb\x6a\x6c\xf3\xf8\xce\x5a\xc4\x21\xb5\x10\x54\xf5\x23\x48\xfb\xd3\x12\x72\xca\xb5\x74\xea\x77\xc3\x08\x3d\x1a\x86\x1a\x32\x25\x12\x9e\xb1\x62\xc2\x0a\x2e\x9b\xb3\x58\xb7\x89\xc3\xd5\xd6\x8b\x2e\x3e\x36\xc7\xbf\xb4\x34\xff\x82\x3c\x7f\x37\x05\x6f\x4c\x7f\x73\x1f\x9f\x2d\xe7\xca\x8d\x51\x4d\x41\x56\x08\xfd\x32\x5f\xae\x62\x4e\x19\xf7\xe9\xce\x7c\xed\xca\x7b\x6d\x28\x3d\xb6\x03\x81\x4b\x99\xb6\x9f\xb4\xf9\xfd\xd7\x71\xc8\xcb\xa0\x1a\x5c\xdf\x03\x0e\x2b\xc8\x55\xfe\x67\xb5\x11\x89\xb3\xa4\x03\x87\x84\x7a\x86\x41\xcf\xfd\x96\xd3\x3d\x77\x5e\xc6\x87\xee\xb4\xe7\x6e\x89\x8d\x1e\x3f\x2b\x18\x6d\xa8\x09\xdb\xb0\xe7\xc3\x53\xff\x5a\x75\xb2\xa5\x96\x2b\xaa\x79\x52\xb5\x3b\x92\x9d\x7d\xb5\xeb\x50\x01\x55\x87\xad\x59\xb1\xb1\x1e\x88\x0a\x99\x1d\x4c\xda\x50\x9a\xf4\x6e\xf4\xda\xa7\xcd\x6b\xc6\xe8\xed\xb7\x05\x4d\xd8\x9e\xf7\xfd\x7d\xfd\xbd\xad\xeb\x5e\xcf\xd9\x73\x38\xdf\xb6\x27\x30\x1c\x63\xf3\x6a\xe8\x8e\x47\x43\x57\x53\x95\xff\x6c\x96\x6b\x78\xf8\x35\xe2\x49\x24\x1d\xb9\x3e\xa4\xf5\x07\x5f\x4c\xc8\x82\x16\x33\xba\x30\xcb\xc9\x32\x96\x60\xaa\x65\x05\xf8\xd7\x8f\x25\x23\xff\x1b\x49\x27\x81\xfb\x0f\xcd\xf8\xda\xae\x5f\x7d\xb7\xd7\xfe\x95\x30\x8c\xc5\x76\x35\x93\x24\x91\xf9\xa6\x67\x87\x69\xa0\xa8\x55\x57\x99\xa0\xc2\xa3\x0a\x77\x69\x09\xea\xf3\x72\x09\x2c\xff\xd6\x87\x4f\xd8\x0a\xd1\x2d\x9c\xc2\x16\x78\xfc\x75\xf0\x8a\xff\x7d\x58\xdd\x75\xd4\xf5\xee\x84\x7d\x8e\xbc\xde\x99\xb0\xed\xe8\xed\xd8\x4d\xcb\xb7\xbd\x06\x43\xd4\x18\x70\xe0\x9f\x81\x03\xae\x6c\x6f\x87\x14\x55\xf7\xc1\x6e\xbd\xd3\x86\x07\x6e\xfc\xa6\x3d\xb0\x2d\x49\x6c\xc0\x84\x7f\x0e\x26\xb4\x67\x1e\xcc\xca\x85\xad\x32\x3a\xe9\x11\xbc\x76\xbe\xf5\xfc\x2e\x5b\x28\x34\x96\x9a\x28\xd6\x8c\xac\xd8\x4a\x16\xf1\xc2\x47\x06\x9d\xf2\xd2\x97\x70\x25\x46\xd2\xd9\xf5\xfc\xe2\xcf\x5b\x6e\xdb\xf6\x32\x1f\x9f\xbf\x69\x82\x40\x43\x54\x23\xd3\x49\xfa\xdd\xe7\x67\x72\x95\x53\x90\xb8\x1a\x91\xa6\x8e\x2c\xef\xa2\xaf\x6d\xa1\xcc\x8c\xe9\x3b\x23\x11\x9a\x39\xd6\x9f\xc7\x35\x7d\x37\x80\x37\x09\x55\x82\x63\x78\x1d\x42\x39\xf0\x55\x14\x5f\xda\xf0\x64\xc9\x68\xa6\x97\x67\x4b\x16\xcf\x49\xad\x6f\xed\xcf\xc1\xc3\x9e\x00\xc8\xc2\x2d\x45\xf9\x16\xc2\x46\x47\xc0\x91\xa3\x5b\xc3\x01\x7a\x09\x39\x6d\x6b\xcf\xe4\xe2\xda\x68\x22\x5c\x6f\xae\x93\x82\xb1\x58\xf5\x95\x2d\xb9\x7f\xfb\x0d\x77\x2c\x99\x5c\x10\x65\x7f\x21\x74\x26\xd7\xcc\x56\xbe\xc8\xe4\xa2\xa1\xd4\x1b\xc3\xa0\x13\x6b\x58\x55\x3a\x95\xa5\x0e\x0f\xe3\x42\xcc\xe5\xbe\x3b\xca\x0b\xb9\x32\xc2\x64\xa9\x3e\x30\x5d\xf0\x44\xf5\xb9\x7a\x87\x93\xd8\x5b\x6e\x67\x37\x67\x13\x7b\xf9\x5c\xb4\x75\xf5\x78\x6c\x63\x2b\x1c\x02\x2f\x6a\xe1\x3b\xd1\x73\x81\x3d\xe8\x3b\x30\xf0\xab\x57\x5f\x7d\xd1\xbc\xe9\xe8\x45\x6b\x0e\x9f\x68\xb2\x75\x35\x1a\x13\x2b\xd7\x4e\x03\xa8\x5a\xcd\x89\xf0\x76\x60\xd6\xb5\xe7\x6a\xbe\x8d\x58\xe1\xad\x72\x18\xd8\x0e\xc9\x85\x3e\x84\xf6\x24\xf3\x32\x43\x87\x60\xba\x02\xcb\xa4\x84\xb4\x69\xa3\xc9\x01\x01\xc4\x12\x45\x34\xd1\x25\xdd\x09\xca\xc1\x11\xf1\xac\xee\xa8\xaf\x17\xed\xca\xad\xdb\x48\xcb\x95\x4c\x31\xf2\x7d\x66\x44\xf1\x35\x2f\x24\xc4\x80\x93\x35\x2d\x38\x5c\xc4\x9d\xf5\x62\x18\xe2\x6d\x39\x63\xa3\xd0\xf8\x99\x17\x32\x61\x6a\xdb\xd2\xd1\xd6\xad\xa7\x9a\xed\x3b\x1a\x35\x7d\xee\x99\x16\xd7\xc4\xbd\x6a\xc7\xf6\xae\x3e\xeb\x76\x81\xfa\x08\x00\x1a\xa2\x2b\xa3\x40\xc0\xd2\x5e\x62\x9e\x95\x58\xae\x1e\xbc\x00\xa5\x10\x5c\x2c\x10\x41\xf6\xac\x37\x54\x84\xef\x76\x7a\x6d\xc3\x87\xb7\x36\x36\x9f\x1b\x55\x7f\xcd\x6a\x58\xc1\x95\x9b\x20\xb6\x41\xde\x74\xd0\x32\x3d\xb2\xa5\xc1\x57\xac\x58\x38\x67\xc7\xe9\xe4\xa2\xf2\x75\x18\x89\x24\xce\x92\x1b\xb0\x2c\x02\x97\x0e\x29\xac\xdd\x6a\xbe\x03\x9c\xa7\xb4\x9c\x93\x2e\xeb\x79\x8f\xe5\x93\x1e\x56\xf4\x9d\x4d\xec\x67\x49\x6f\x13\x19\x9f\x52\x5c\xee\xb9\x5b\xb2\x9f\xd8\xbc\xb3\xf9\xfe\xa2\x73\x97\x15\xb2\x2e\x59\xf7\x12\x9f\xbb\x86\x6c\x97\xae\xc9\x93\x5a\x2a\x5b\x0c\xf1\xe4\xb9\x8c\xf1\xe4\x09\x8c\x2c\xa4\x3f\x9e\xf4\x34\xcc\xef\x6c\x77\x0f\xe3\x7c\xd7\x89\x56\xb6\xfb\xa7\x31\xd0\xef\xb1\x7b\xb2\x8f\xa1\x7e\x07\x06\xfd\x8c\xf5\xdd\x83\x82\x68\xf2\xe4\x06\x7b\xd2\xfb\x2a\x90\x9e\xd7\x81\xec\x65\xbc\x27\x0f\x37\xe0\x77\x6d\xac\xba\x46\x7b\x1a\xf1\xbb\x06\x8e\x08\xca\x9d\x86\xfc\xae\x31\x3b\xec\xfc\x64\x8f\x63\x1a\x88\x7a\x27\x88\x7a\xb9\x07\x76\x81\xf3\x74\x2e\x02\xf2\xa4\x6e\x82\xfe\x5b\xef\x73\x81\x5b\x5d\x06\x3b\x40\x79\x4a\xb7\x01\xf9\x65\xb9\xda\x70\x51\x9e\x00\x5b\x7a\x79\x1d\xc8\xb3\x79\x1e\xc8\x33\x79\x1f\xc8\x80\x46\xbf\x28\x1a\xf5\x74\x5c\x90\xe7\x74\x5e\x90\xe7\x72\x60\x90\x01\x99\x7e\x41\x64\xea\x7a\xa2\x87\xff\x83\x3c\x97\x0f\x84\x3c\xbd\x1f\x84\x74\xfb\x42\x48\x9f\x76\x24\xbd\x7d\x22\x3b\xc0\x79\x2a\xbf\x08\x79\x5a\xdf\x08\xe9\x81\x53\x1d\x3e\x92\xdd\xad\x3e\x91\x9f\x84\xec\xe9\x2b\xe9\xb3\x97\x3e\x3e\x93\xdd\x0d\xed\xed\x37\x69\xda\x4e\x26\x17\xea\x11\xbe\x93\x3e\x3b\xec\xeb\x43\xd9\xdd\xe5\x93\xfa\x51\xc8\x63\x7d\x29\x4d\x83\x36\xb9\x58\x48\xf7\xfd\x6d\xe9\xdf\xd9\xe2\x6e\x21\xad\xe4\x72\x48\xcc\x09\x12\x73\x6c\xd6\x39\x28\x33\xfc\x59\x8a\xa7\x5e\xe2\x0c\xa8\x50\xe1\x0f\x55\xee\x4d\xed\xc7\xdd\x64\x9b\xad\xd5\xd9\x53\xf0\xe9\x35\xe1\xcf\x30\xb4\xcd\xa7\xf1\x06\x6c\x90\x89\x86\x94\x9a\x21\xa5\x66\x48\xa9\xf9\x6d\xa5\xd4\xb4\x39\x74\x17\x05\x53\x9d\x91\x1f\x37\xae\x57\xb1\x41\x7f\x06\x39\xa5\xf8\xa2\x6d\xe4\x4d\xb0\xb9\x91\xf9\xc3\xfb\x30\x63\x1c\x8a\xba\xb7\xb1\x6e\x07\x59\x51\x9d\x2c\x49\x52\x70\xcd\x0a\x4e\xe1\x92\x50\x92\xc8\xa2\x60\x2a\x37\xf4\x5c\x2c\x88\x95\xf3\xb4\xc4\x1e\xcb\x7b\xe5\x9a\xd6\xf6\x30\x3d\x38\x25\x57\x66\x81\x4c\x24\x34\x57\x25\xdc\xdb\x6a\x45\xb1\xa5\x34\x18\xdc\xa9\xb5\xdb\x92\xaf\xa5\x5e\x6e\xb5\x59\x0e\x5a\x47\xdb\xc6\xf6\x22\xdd\x69\x27\xdd\x20\x30\xf8\x96\xe9\xb6\xad\xf3\x88\x28\x96\xd3\x02\xdb\xf7\x94\x9a\xd0\x30\xa7\x17\x1f\x81\x4a\x76\x66\x15\x5c\xc0\x79\x34\x2c\x58\xa4\xee\xbc\x42\xc0\x73\xb1\x18\x43\x73\x7e\xec\x52\x0d\xed\xed\x8d\x62\x52\x87\xc4\x92\x36\x8d\x4a\x04\x5b\xc0\xe2\x2c\xe1\x35\xea\x08\x9b\xf3\x7b\xd7\x2a\xea\xe7\x1f\x7f\xba\x94\xfa\xe7\x1f\x7f\x1a\x93\xd3\x2c\xb3\x05\xe7\xc3\xb1\xe3\xe3\xda\xba\x4c\x14\xd1\x69\x55\x2a\xec\x10\x46\x35\x57\x10\xf4\x80\x45\x4e\xec\x46\xb4\xc4\x31\xc7\xe4\x14\x58\xd9\x6e\xc5\x5f\x0b\x5b\x40\x4d\x2a\x1c\x7a\x5a\x85\xcc\x6e\x19\xda\xf8\x98\xcd\x98\x3f\xec\x6e\x80\x2f\xe0\xe0\xcd\x50\x05\xd8\xc7\x97\x08\x7d\xa8\x4a\x0c\xfa\xc0\x25\xc6\xab\x48\x75\xea\xfc\x88\x6e\x8d\xf2\x60\xb7\x46\x1c\xd4\xb4\x69\x1c\x65\x4b\x91\xad\xca\x55\xd5\x42\x12\xb6\x50\x03\x44\x61\xb8\x96\x2d\xaa\x78\xad\xa6\x0e\x31\x94\x50\xc7\x6e\x71\x4f\x60\x90\xd0\x05\xdf\x52\x30\xa7\x61\x67\xd3\x83\xcb\xed\x97\x5d\x13\xa4\x1c\xa3\x56\x6c\xe9\xa3\xa6\x9e\xec\xd5\xc7\x03\x86\x7a\x12\x40\xd8\xbd\x61\x60\x0a\xa8\xc3\x47\x91\x6d\x88\x2e\xe8\x7c\xce\x13\x84\x94\xab\xde\xd5\x65\xf5\x07\x1e\xf7\xc2\xa0\x10\x38\xa3\x90\x4e\xe9\x97\x81\x4b\x2f\x68\xe2\x85\x73\x37\x17\x91\xdb\x02\x99\xf2\x95\xe7\xe0\x2c\x0d\xfb\x83\xf2\x4a\x80\xc8\x3b\xb0\x69\x1f\x14\x69\xa4\x04\xcf\x86\x07\x81\x51\xee\x50\x28\x4b\x5d\xd8\x91\xa2\x2b\xbc\x0a\x58\xb1\xa7\x7d\x50\xa8\x70\xe5\x8c\x70\xc1\x96\x11\xd7\x0a\xbf\x6e\x32\xdb\xe0\xa2\xdd\xcc\x1d\x40\x75\xdb\x76\xf0\x72\x09\x3e\x66\x5d\x48\x05\xbf\x91\x45\x5d\x82\x3e\x6a\xe4\x00\xee\x03\x65\x47\x77\xc1\x46\xf8\x2a\xcf\x38\x53\x95\xae\x18\x22\x1b\x34\x65\xec\x3a\x30\x30\x13\x81\x87\x50\x2c\x1a\x61\xc2\x03\xf8\xf6\x8a\x20\xf1\x8d\x45\x6b\xfb\x6c\xdc\xfe\xe1\x22\x93\x33\x9a\xbd\x78\xd9\x61\x94\xfb\x65\x00\xf0\x2d\x2c\xc6\x2e\xd1\xe8\xce\xb2\xa8\xc5\x0e\xc0\x36\xda\x07\x35\x7b\xac\x0d\x53\x1d\x74\xd7\x59\x76\xac\x36\xdc\x22\x06\xed\x29\xd7\x8d\x73\xeb\xd0\x28\x14\x16\x24\x34\x5e\x45\xac\xfa\x54\x57\xb6\x81\x71\xf8\xb9\x7b\x99\x44\x05\xd3\xed\x46\xe5\x7a\x08\x0a\xd3\xaa\x99\x30\x1a\x61\x1e\x7a\xa9\xa8\x6e\x17\xbb\x63\x81\x70\x84\xc0\x2b\x40\x71\x8a\xd3\x45\x4f\xfa\x3a\xa0\x5d\xa7\x8b\xb5\xaa\x8e\x46\x72\x10\xbe\xcd\x37\x36\xf0\xc5\x22\x8a\xed\x09\x9d\xcd\x52\x64\x30\x6f\x4f\xcf\x71\x4b\xfd\xdf\xea\x23\xa4\xbe\xdc\xef\x4c\xf0\x05\x67\x90\xda\x12\xbe\xdc\x8e\xcd\x23\x1d\xec\xc5\x9c\xe3\xaf\x0e\x16\x13\x59\xec\x09\x0c\x78\xa3\x03\x1a\xf0\x4c\x1f\x70\x90\x6b\x68\x1e\x0a\x58\xaa\xe4\x8a\x41\xe3\x52\x99\xc8\x4c\x91\x25\x5d\xa3\xed\x5e\x1d\x61\x58\xc8\x06\xff\xea\x20\xb4\x05\x0b\x4a\x54\x73\xed\x8c\x6f\xca\xd9\x0e\x61\x74\x2b\x51\x59\x42\x6e\xd4\x93\x4e\xaa\x68\xbb\xe5\x42\x91\xbb\x9b\xb3\x89\x2b\xb3\xfa\xe9\x7c\xd2\x58\xc3\x13\x3f\x7d\x4e\x95\x8a\xcd\xc7\x79\xc7\x33\xa3\x6e\x37\xc1\xee\xc3\x7d\x02\x87\x72\xaa\x35\x2b\xc4\x09\xf9\xcf\xf1\xbf\xb5\x3f\x79\x3f\xba\xf5\x11\x14\x23\x2e\xf4\x48\x16\x23\x9c\xa1\xa9\x23\x79\xf5\xe9\x8b\x90\xfb\x0b\x97\x97\xd5\x4b\x1d\x68\xd9\x4f\xbe\xb2\x98\x49\xae\x59\xc0\x5c\x90\x0a\x1b\x05\x43\x95\x33\x9d\x31\x23\x2b\xa3\xba\x65\xe7\x6a\x1f\xd3\x4b\x4b\xad\xa8\xd2\xef\xcc\xf2\xfd\xae\xec\xf4\xc0\xdf\xd8\x2e\xb6\xd2\xcd\x6c\x7b\xb0\x95\x25\xe8\xcb\xd6\xea\xf4\x22\x50\x42\x5e\x76\xa0\xa1\xb7\xf2\xa3\xa8\xa9\x5c\x65\x63\xbd\x64\x8a\x91\x82\x8a\x05\x53\xc7\xce\x68\x07\x15\x90\x5b\x0b\xef\xe2\xa7\x56\x90\xcb\x5e\x1d\x70\x0a\x21\x94\x95\x83\x80\xb5\x80\xd9\x69\x3a\x64\xe5\x39\x9e\x01\x0a\x70\x7d\x29\x58\x27\x05\xc0\x47\xf7\xa2\x60\x1d\x7b\xaf\xc8\x5b\x9d\x82\xfd\xfc\xe3\x4f\x37\x67\x93\x9f\x7f\xfc\xc9\x00\xe2\xe7\x1f\x7f\xfa\x74\x6e\xfe\xe8\x90\x77\x06\x3a\x06\x9f\x5e\x74\x4c\x3d\x40\x43\xee\x56\x8c\x5b\x6d\x7c\xd5\x27\xaa\x18\x93\x17\x8a\x31\x67\x1c\x03\x32\x46\x57\x79\xc6\x88\xda\x08\x4d\xef\x63\x95\x57\xc3\xcf\x74\xda\xaa\x57\x5b\xf9\xb1\x49\x6f\x6e\x1f\xdb\xd9\xc4\x02\xb5\x5a\x16\xbb\xea\xb2\xb9\x6a\x97\x52\x33\x98\xdb\x60\x4f\x07\x10\x6c\x3e\x8c\x73\x17\x74\x70\x04\x04\x4f\xc0\x49\xda\x47\x9f\xb1\x4c\xde\xbd\x3c\xaa\x2f\x39\x00\x36\x42\x95\x70\xad\x58\x36\x77\x6e\xe7\x0e\x38\xa0\x21\x0c\x0c\x9c\x37\x4b\x46\xf4\x9d\x04\x5c\x83\xba\x4a\xee\x37\x24\x0e\x86\x01\x6d\xaa\x62\xe5\x1d\x67\xf7\x51\xb8\xdd\xbb\xa0\xad\xca\xf0\xca\x02\x0d\x09\x77\x83\x66\x05\xfb\x7c\x37\x3f\xb8\x5b\xca\xcc\x1e\xd2\x09\x1c\xd1\x74\x5a\x31\xe3\x3f\x19\xda\xf2\xbb\x25\x55\x2f\x56\x9b\x1f\x20\x98\xf2\xa5\xa1\x39\x96\xbc\x77\x5d\x66\x5b\x79\xdf\xd9\x1f\x00\xc5\x70\x75\x18\xe9\x52\x25\xda\xa4\x66\xd6\x9e\xd8\x06\xe3\xa5\x12\x02\x3a\x80\x3e\xa3\x2f\x69\xc6\x32\xb3\x58\xb7\x4e\x30\x9e\xda\xed\xf4\x46\x0a\xd8\x6e\xd3\x6e\x77\x37\x64\x56\xd0\xd4\x3c\xa4\xfa\xb4\xef\xd5\x6f\xa7\x7d\x2b\x5d\x97\x5b\x00\xc6\x61\xe2\x13\x8a\x50\xd6\x7c\x90\x01\x49\xb5\xed\x00\xc0\x3b\xec\xf7\xd1\xbd\x74\x21\xc5\xc8\x06\x25\x59\x0f\x18\xb9\x5b\xb2\x82\x59\x5b\xc8\x5c\x16\x2b\x16\x1a\x26\x20\x06\x0a\x47\xef\x61\xa8\xdb\x05\x4c\x50\x41\xe8\x09\x14\xf7\x7a\xec\xe4\x1e\xf2\x56\x3d\x7c\xf2\x97\x93\xbb\xb6\xc8\x71\xfb\x98\x11\x33\x27\x25\xb9\x4c\x5d\x92\x1b\x3a\x3d\x3c\x69\xee\x11\xe8\xe9\x43\x3d\x5b\xb1\xad\x77\x56\x47\xe8\x82\x6f\xfe\xec\x66\x7c\x3d\x1e\xdc\xe4\x21\x20\xef\x1e\xb2\xc9\xba\x1c\x01\x7b\x2f\x68\x93\x20\xb8\xf6\x6e\x29\x15\x9a\x22\xcd\xf6\xad\xd8\x67\x84\xde\xce\x74\x89\x3e\x42\x1d\xd9\x2b\x0d\xa5\xa7\x84\x44\xfa\x4a\x49\x64\xf7\x7e\x75\xca\x49\xff\xba\x27\x5d\xd3\x8f\x2a\x4b\x1b\x52\x7d\xdf\x56\xa0\xa1\x7d\x57\xfd\x53\xb9\x1e\xc0\xa3\x70\x1d\x7a\x12\x2a\xfd\xc3\xd6\xfa\x67\x1b\xf3\x7d\xf7\xa0\xa7\x97\xe7\x87\x3d\xb2\x74\xf6\xb3\x62\x75\xe5\x34\x59\x28\xee\xa5\x13\x5b\x2a\xdd\x46\x2f\xfa\x49\xdb\xf8\x26\xba\x84\x3d\xbd\x0c\x8a\x5e\xba\x89\x20\x8c\xb4\x0a\x21\xed\xe1\x8d\x69\x15\xb6\xb7\xd1\xab\xaf\xb4\x1d\x71\x61\x39\xf8\xbd\x50\x2f\xb7\xc5\x6e\x0c\xa0\x31\xab\xe9\xb2\x8f\x1d\xc3\xaa\xa0\x35\xb9\x5b\xc9\xa1\x02\x8d\xd6\x6a\xc9\x0e\xde\x89\x0f\x04\xf1\xc0\xe8\x82\x45\xdd\x9b\x65\x6e\x8e\x43\xd6\xa3\x50\x64\x3f\xda\xf5\x22\x74\x80\xf9\x92\x19\xb1\xd7\x19\x78\x65\xb1\xcd\xbb\x71\xe9\x68\x3e\x31\x80\x70\xd6\xcf\x0e\x0f\xa5\xc1\x27\x73\x80\xe1\x1e\xd1\x56\xe4\xa1\x20\x85\x0b\x1d\xb0\xa1\x1c\xed\x22\xcb\x5e\x6c\x73\x7f\xae\xe9\x97\x59\x65\x45\xa3\x1b\xbe\x7f\xc2\x14\x71\x7b\x0b\xfc\xee\x4f\x44\x04\xfa\x25\x7f\x37\x6c\x0d\x53\xc0\x77\xf7\x87\xdf\xc7\x4b\xd6\xee\x7e\x90\xca\xda\x1d\xc2\x4d\xce\xd8\x5c\xbb\xf6\x87\x9e\x87\xc0\xed\xe9\x61\x98\x21\xe1\x45\x84\xde\x2b\x46\x2d\x3f\x54\xd5\xca\x7e\x51\x0a\xda\xfd\xcc\x52\xeb\x58\x47\x3a\xfc\xd4\xb3\x8a\x6f\x6e\x26\x95\x8f\xbe\x31\x70\xc1\x60\x89\x79\xb4\x79\xe9\x3e\xc2\xfc\x51\x31\x0b\x2b\xa6\x97\x32\xdd\x83\x33\x7c\xc0\x17\x9e\x56\x6a\xc7\x2d\x23\x51\xc7\x7d\x07\xc1\x71\x66\x4c\x6c\xe7\xc4\x3a\xab\x82\x3a\xb9\x8e\xa5\x38\x8a\x5b\xed\x0b\x36\x5e\x8c\xc9\xb7\xef\x6e\x8e\xc8\xe4\xd3\xcd\x11\x61\x3a\x19\xbf\x24\x1f\xca\x4c\xf3\xbc\xcb\xb7\x61\x41\x04\x7c\xff\xe3\xd5\xa1\x51\xc3\x16\x90\x36\xf9\xeb\xf2\x55\xe5\x54\x2f\xf7\x38\xc7\xc3\x89\x79\xfe\x39\x8e\xb1\xeb\x04\xbb\x29\x4a\x78\x82\xb0\xcc\xb1\x3f\x2a\xdc\xa6\x3b\x8b\xbe\x87\x41\x08\x1b\x2f\x4e\xc8\x88\xb0\x7b\x9a\xe8\x13\x72\x3c\x97\x92\x8c\x6c\x58\xd8\x09\x39\x9e\xd1\x82\x5c\x7e\xbc\x79\x77\x82\x21\x67\x4c\xe8\x62\x43\x56\x5d\xe2\xf9\xc7\xcb\xf7\xff\x61\x29\xe7\x86\x30\x0e\xa6\x17\x4a\xa6\x07\x30\x09\xfa\xbf\xcc\x9f\x38\xcb\xf4\xc0\x05\x84\xdd\x74\x6d\x7f\x4d\x33\x9e\x52\x6f\xe4\x83\x54\x0b\xec\x6e\xa6\x63\xed\xcc\xaa\x4f\x1f\x9c\xdb\xca\x08\xb9\xb9\x99\x18\x08\x07\x0c\x80\x0a\x04\xbc\x01\x74\x7f\x5e\x75\xa1\x21\x22\x76\xc6\x1c\x20\xac\xfd\x70\x2e\x8b\xd5\x89\x03\xfb\xb4\x7c\xf5\xea\xf3\xc4\x0c\x0c\xff\x62\x27\xb6\x7c\x50\x2f\x83\x17\xa2\x1a\xac\x0a\x86\x33\x04\xa3\xf0\x47\x58\x0d\x3d\xb2\xf0\x7e\xd4\x0c\x38\x46\x47\x78\xc9\x1e\x15\x18\x10\x00\x4f\xab\x46\xda\xad\x3f\xe5\xa0\x7d\x4b\x24\xf4\x20\x48\xdd\x43\xf1\x64\xd5\x93\x67\x5e\x9c\x7d\x98\xf4\x8d\xfa\x00\x62\xd4\xbc\xf6\x90\x4a\x05\x1d\xe9\xcc\x6a\x6d\xd6\x25\xf6\xd5\x83\x29\xad\x82\x61\xfb\x89\xb6\xe8\x57\x18\x93\xbf\x2b\xd3\xf2\x79\xdd\x27\xe5\x3b\x1b\x7a\x4f\xb9\x99\xa7\x4d\xb4\x05\x1f\xba\x79\x68\xfd\xb6\xc5\x8d\xde\x0b\x13\x93\xf6\x52\x2f\xdb\x7c\x1e\x24\x13\x29\x42\x28\x01\x50\x12\xec\xef\xb9\x87\xb2\x06\x69\x4a\x06\xc0\x18\x87\x0f\x61\xa9\xd0\x3b\x35\x84\x95\xf5\x58\x82\x3b\x52\xb3\x64\x29\x78\xb2\x5b\x86\xac\xfe\x01\xb3\x28\x9a\xfd\xf9\x2a\x97\x41\x75\xec\x5b\x23\x94\x67\x87\x8a\xf0\x5c\x63\x66\xdb\x9c\x17\xec\x8e\x66\x59\xc7\x52\x91\x5a\x58\xa3\x6c\xa9\x30\x58\x8a\x89\xb9\xc4\x0c\x01\x1b\x96\xd7\x7d\x35\x3a\x7d\x77\xf0\xd8\xe3\x0f\xc3\x0c\x33\xc6\xf8\x31\x76\x0f\x0e\xab\x2e\xd7\x17\x9e\x81\x9c\x93\x3f\x60\x5c\x37\xec\x10\xc6\x7a\x97\x2c\x25\xb9\x42\xa6\x6d\xdb\x13\xe6\x5c\x2c\x54\xbb\xef\xab\xd7\x7e\x7b\x10\x83\x3c\x9e\x60\xd3\x00\x90\x8b\x89\x4b\xb4\x79\x74\x30\x58\xcd\xb8\x85\xf2\x78\x08\xe5\x89\xf3\x88\x35\x42\xa1\x07\x04\x1a\x52\x25\x1a\x36\xf7\xc1\x3e\x1d\x84\xf2\xfa\xe2\x75\x90\x01\x52\xac\xaa\xee\x5e\xb1\xb4\x95\xfa\xe6\x1e\x45\x34\xc0\x18\x81\x6d\x8f\xda\x7b\x01\xf4\x2d\xaf\x57\x7d\xfa\xb2\xa5\x7a\x8f\xd1\x6a\x3d\x36\xc5\x07\xbd\x75\xb7\x6c\x63\x51\x3b\xa7\xdc\x16\xcf\x6b\x9f\xde\xa8\xac\x84\xdd\xeb\x82\xd6\x60\x4a\x67\xb2\xd4\x3d\x18\xc9\x53\x69\x8e\x42\x6a\x73\xfb\xfa\x61\xc6\x25\x3e\xdc\x11\xc5\x03\x8f\xb4\x47\xd3\x0d\x0c\x63\x60\x18\xbf\x6d\x86\x21\xa4\x76\x62\x55\x23\x58\xda\xa3\x6d\x7a\xc6\xd9\xf4\x8b\xb0\xd9\x09\x02\x75\x22\x5f\x47\x1c\xa8\x7d\xac\x19\x60\x1d\xf7\xb8\x47\x48\xcf\xc3\x82\x79\xf2\x5f\x2b\x70\xa7\x07\x21\x6c\x9f\x90\xf7\xef\x38\xb6\xc0\xc2\x1b\x4a\x02\x0e\x26\x63\xc0\x7a\x5e\xb4\x59\xe6\x6d\x44\xae\x3d\xe7\x77\x90\x5e\x74\x05\xb9\x71\x2e\xd3\x0b\xcd\xe6\x2f\x66\x2c\xa1\xa5\xb2\x71\x70\x1d\xae\x04\xbf\xc4\x84\x15\x30\x86\x8f\xa5\x7b\x89\xa6\xf8\x0f\x36\xe5\xab\x16\x19\xd8\xc5\x62\x31\x64\xf0\xa4\x8a\x7a\x3b\xaa\x62\xde\xe0\x9f\xe6\xb6\x87\xff\x5e\xbf\x75\x7f\x5d\x9f\xdd\xc0\x2f\xcd\x83\xe3\x48\xef\xb9\x66\x36\x9c\x8e\x0a\x87\x14\xce\x11\x0b\x21\x85\xe4\xf5\xe8\xcd\x97\x5f\xb6\x98\xf9\x9f\x0f\xd5\x31\xf8\xa2\x1f\x07\xbe\xc6\xb0\xcd\x7e\xd9\x67\x44\xcb\x16\xa5\x11\x47\x1a\x12\xcf\x86\xc4\xb3\x6e\x57\xe7\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\x59\xd3\x8e\x87\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x62\xbb\x18\xe8\xd8\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\xf5\xcf\x90\x78\x36\x24\x9e\xf9\xcf\x90\x78\x36\x24\x9e\x0d\x89\x67\xd1\x41\x87\xc4\xb3\x00\x16\x43\xe2\xd9\x90\x78\x36\x24\x9e\xd5\x3f\xbf\x64\xe2\x59\x4b\xe3\x04\x42\x46\xb6\x42\x6f\xec\xb7\x3e\x0d\xf8\xa3\x72\x82\xbd\x1b\x0f\x28\xcc\x5d\xbf\x55\x43\x65\xee\xa1\x32\xf7\x50\x99\x7b\xa8\xcc\x1d\x5b\xde\x50\x99\x7b\x08\x90\x1a\x02\xa4\x86\x00\xa9\x21\x40\x6a\x08\x90\x1a\x02\xa4\xaa\xcf\x10\x20\x55\x7d\x86\x00\xa9\x21\x40\xea\x57\x15\x58\x30\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\xb5\xf3\xf0\x6f\x8c\x8e\x0d\x01\x52\x43\x80\xd4\x10\x20\x35\x04\x48\x0d\x01\x52\x43\x80\xd4\x10\x20\x15\x7c\x86\x00\xa9\x21\x40\xca\x7f\x86\x00\xa9\x21\x40\x6a\x08\x90\x8a\x0e\x3a\x04\x48\x05\xb0\x18\x02\xa4\x86\x00\xa9\x21\x40\xaa\xfe\x19\x2a\x73\x0f\x95\xb9\x87\xca\xdc\xb5\xcf\x50\x99\x7b\xa8\xcc\x3d\x54\xe6\xee\x35\xc3\x50\x99\x7b\xa8\xcc\x3d\x54\xe6\x1e\x0a\xad\x0e\x85\x56\x87\xca\xdc\x43\x65\xee\xa1\x32\x77\xf3\xfa\x87\xca\xdc\x03\xc3\x18\x18\xc6\x50\x99\x7b\xa8\xcc\x5d\xfb\x0c\x95\xb9\x87\xca\xdc\xf0\x19\x2a\x73\x37\x7c\x86\xca\xdc\x43\xe2\xd9\x90\x78\x36\x24\x9e\x0d\x89\x67\x43\xe2\xd9\x90\x78\x36\x24\x9e\xd5\x3e\x43\xe2\xd9\x90\x78\xf6\xab\x4a\xd8\x18\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\xdb\x79\xf8\x37\x46\xc7\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x1b\x12\xcf\x86\xc4\xb3\x21\xf1\x6c\x48\x3c\x0b\x3e\x43\xe2\xd9\x90\x78\xe6\x3f\x43\xe2\xd9\x90\x78\x36\x24\x9e\x45\x07\x1d\x12\xcf\x02\x58\x0c\x89\x67\x43\xe2\xd9\x90\x78\x56\xff\xfc\x6b\x57\xe6\x86\x72\xdb\x5d\x75\xb9\x3f\x9a\x87\x5a\xe8\x77\xfd\xd0\x25\x3e\x1d\x5d\x27\x86\xd7\x61\x4d\x64\x30\x90\x98\x41\xc1\x9b\x98\x8e\xd1\x66\xe2\xad\xbd\x4b\xbe\x30\x2a\xe8\xf4\x00\xc6\x9b\x1e\x00\xbb\xb4\xcf\xc6\x86\xa6\x73\xa3\x40\x69\x10\xd0\x60\x80\x4c\xde\xb1\x02\x57\x83\xe1\x8a\xc1\xe2\x14\x91\x2b\xae\xb5\xa1\xbb\xdc\x65\xba\xc4\x06\x4d\xa4\x50\x1c\x0b\x92\xa3\x5d\x6f\x7a\xc0\xc5\x9c\x0b\xae\xd9\xf4\x80\x8c\x08\x04\xc9\x05\xdb\x71\x54\xdd\xae\x93\x64\x54\xe9\x31\xf1\x3b\x8b\x82\xc4\xac\x95\xa7\x4c\x68\x9e\xd0\xcc\x2e\x70\x7b\x1c\x2e\x08\xcd\xf2\x25\x15\xe5\x8a\x15\xc1\x73\x50\x0b\x3c\x36\xaa\xa5\xe5\xd6\x0c\x85\x51\x21\x51\xf7\x09\xe2\x86\x28\x57\xb3\x5d\x0b\x61\x8b\xd8\xb8\xc5\xe4\x6f\x42\xf3\x0c\x22\x4a\x60\xa4\x29\x95\xd5\x39\x79\x72\x8b\xff\x91\x65\x14\xff\xcd\x92\xb7\x54\xee\x00\xb8\x36\x2d\x23\x00\x8b\x96\x8e\xe7\x35\x9b\x0d\xaa\x75\x18\xd1\x21\xcb\xe4\x1d\x92\x02\xb4\x1c\x79\x5b\x0a\x0a\x76\x7f\x02\xd3\x02\x5e\xf6\x1f\x32\xae\x59\x41\x8d\x5e\x1f\x1b\x77\x3a\x25\x23\x4c\x4a\x32\x68\xb2\xca\x69\xc1\x95\x14\x47\x04\x32\x13\x9d\x4d\xc0\x0e\x38\x97\x92\xcc\x68\xf1\xf3\x8f\x3f\x55\x53\xfd\x6e\xaf\xa9\xaa\xb9\x0c\x4f\x67\x7f\x2f\x69\xf6\x47\x8c\xa1\x75\x32\x2a\x9f\x5b\xe1\x94\x2b\x78\xc6\xd9\xd9\xfd\x84\xf1\x1b\xf9\x5f\x66\x15\xd4\xc5\x7f\xcd\xdc\x3f\x12\xf8\xc7\x78\x3c\x26\xff\x13\xcc\xad\x8b\x92\xb9\x24\x18\x1f\x47\x8a\xa3\xff\x85\xc4\xe3\xd6\xad\x6b\xa1\x71\x92\x6a\x7d\x66\xd1\x5c\xb4\x2e\x28\x36\xc1\x9e\x6b\x84\x69\x9a\x16\x15\x1b\x3f\x58\xe7\x92\xaa\x17\x30\xd2\x0f\x86\x7d\xbc\xac\x26\xbd\xf1\x73\x52\x5d\x9d\x42\x70\x02\xbf\x03\x34\x8c\x52\x75\x3b\x84\x37\x3c\xca\x39\x3c\x0b\xd6\x27\xf8\x7f\xf9\xea\xd5\x9b\xb7\xf8\x5f\xfc\xc5\xbf\x73\xbd\x94\x85\x1e\x25\xbc\x48\x4a\xae\x41\x6e\xb2\x2f\xc5\x26\xfa\xef\xff\x6e\x7d\x5b\xc2\x8c\x2f\xf0\x99\x97\xfe\xa1\x9c\x16\xcc\xca\xdc\x8b\x42\x96\xb9\x91\xb9\xa7\x53\x4d\xb3\xec\x45\xd4\xcb\x64\x0b\xd2\x63\xac\x89\xa7\x08\x6e\x34\x87\xab\x34\xcb\x02\x23\x12\x5c\xc1\xf7\x88\x03\xa8\x25\xc5\x15\x20\x6a\x2e\x2f\x52\x12\x17\x73\x19\x12\x45\x75\x44\x46\x47\xe4\x07\x80\xc3\xf1\x98\x5c\xc3\xcd\x22\xf6\x66\x35\x0e\xba\x92\x05\x23\xb9\x11\xf0\x95\xe2\x6b\x46\x66\x98\x2d\xb0\x71\xa6\x4b\x6b\x52\x26\x4c\x25\x34\x67\x24\x59\xd2\x82\x26\x9a\x15\x76\xd9\xef\x30\xe8\x3a\x8a\xfa\x2f\x80\xb4\xaf\x68\xca\x46\x65\x8e\x68\xa1\x5e\x7a\x82\x03\x29\x6a\x48\x1e\xee\xd8\xcc\x68\x06\x0c\x09\x44\x78\xde\x29\xcb\x33\xb9\x59\x31\x11\x25\x97\xf8\x76\x5e\xc8\xd4\x22\x28\x8c\x69\xee\x90\xa1\x39\x85\x14\x9a\x89\xd4\x23\x38\x4d\x6e\xf1\xcf\xff\x31\x8f\x56\x23\x93\xdf\xfd\xa9\x01\xef\x53\xb6\xb6\x03\xff\x8e\x6c\xe1\x7e\x4c\x8a\x6e\x93\x94\xea\x46\xbe\x16\xd7\x73\x8b\x85\xaf\xdd\x1e\x31\xc7\x58\xd4\x8a\xdc\xc7\x36\xe5\x38\x11\x62\xa6\x35\x14\x60\x43\x0d\x29\xdc\x22\x9d\x0d\x20\xe6\x42\x6e\xdb\x23\x38\x11\x7a\xf0\x4a\xf0\x35\x70\x91\xf2\x04\x54\xca\xbb\x25\x24\x3c\x87\x02\x6a\x18\x61\x65\xb5\x97\x28\x6d\x32\xb7\x4d\xda\x96\x1b\x47\xf6\xaf\x99\xd4\xcb\x31\xc1\xa0\x47\xe0\x15\xf7\xb9\x11\x3e\x74\xb6\x09\x74\xa4\x17\xd0\x2e\x24\x1a\xcd\x1a\xd0\x4d\x41\x92\x82\xd9\xfc\x0a\x65\xef\xb4\x2c\x88\xe0\xd9\xcb\x23\x97\x23\x91\xb2\x39\x2d\x33\xad\x08\x6e\xcb\x80\xae\x48\x1b\x44\x65\x2d\xc9\x9d\xa1\x90\x17\x56\x21\x33\x8b\x78\x67\xff\x69\x6e\xa1\xa5\x97\xbe\x6b\x06\xc6\xee\x81\xc9\xdc\x4e\x13\x1b\x95\x2b\xbc\x53\x23\xf2\x57\x2b\xef\x98\xa5\xb8\x39\xfe\x76\x64\x99\x81\x91\x1e\xc1\x19\xe0\xa6\xc4\xce\x26\x2f\xb8\x48\xb2\xb2\x71\xc5\x4b\x46\x12\x6a\x24\x4a\x18\xa0\x1a\x86\x20\xf3\x15\xd2\x6f\x06\x86\x7b\x19\x59\xc9\xbb\xc6\x8e\x29\xdb\x6b\xab\x2d\xcc\x10\xa2\xed\xe1\x9b\xf7\x19\x45\x8f\xed\x35\xec\x4c\x08\x96\xa9\xc8\x69\x58\x4d\x39\x2a\x8a\x08\x44\xad\xba\x0c\x5f\x30\x6a\xee\x51\x72\x4b\xe8\x82\x72\x71\x64\xb1\x01\xdd\x19\xd9\x1d\xdd\x28\x1b\xc5\x1e\xc5\x62\x17\x79\x80\x21\x07\x47\x44\xb0\x35\x2b\x6a\xf8\x16\xd5\xda\x7b\x36\xe4\xa9\xa0\x40\x18\xb0\x0a\xef\xa0\xcb\xa5\x52\x7c\x96\xb9\x89\xab\x98\x2a\xf3\xc2\x75\xce\x92\xb8\x1e\x87\x7b\x6b\x8e\x32\x6b\xd7\x18\x1b\x95\xb1\xb8\x0e\xb7\xfb\x2d\xb0\x8a\x34\xf4\x9f\x2b\x2d\x0b\xba\x60\xee\x2b\xa5\xa9\x2e\x11\x30\xe8\x4a\x62\xe9\x65\x60\xe4\xbf\xe5\x22\x35\x74\xc8\x81\x34\xcf\xca\x82\x66\xd5\x37\x89\x14\xe8\xd1\x55\x27\xe4\xaf\x7f\x33\xdf\x98\xf1\x59\x6a\x33\x34\xed\xb7\x53\x31\x1a\x8d\xa6\x82\xe6\xdc\x25\x7a\x12\x9a\x73\x76\xaf\x99\x80\xa7\xc6\xb7\x7f\x50\x63\x2e\x8f\xd7\xaf\xa7\x02\x67\x3c\x2b\x95\x96\xab\x2b\x86\x2e\xaa\x73\x06\x6a\x14\xd0\xe9\x5a\x3a\x25\x18\x56\x88\xc0\xf0\x55\xc5\xb4\x1a\x27\x45\x3a\xce\x0b\x69\x20\x90\x00\xd1\x19\xcb\x62\x31\x15\x86\x9a\xc1\x1b\x20\x98\x9c\x90\x86\xc7\xea\x1e\x0e\x5c\x4a\x15\x63\x8b\xdf\x66\x5c\xe9\x7f\xdf\xfa\xe5\x3d\x57\xba\x0e\xa0\x60\x4d\x16\xee\x5c\x2c\xca\x8c\x16\xe1\x4f\x00\xaf\x44\x9a\x43\xf3\x56\x11\xd0\xd0\xd6\x0e\x7c\xe6\x8f\x91\xdd\xa6\x81\x0e\x8c\x94\x2c\xd9\xaa\x4a\x27\x95\x39\x13\xa7\x93\x8b\xef\x3e\xbf\xae\x7f\xbf\x1b\xc4\xea\x42\x85\x6d\x38\x56\x35\xe5\x88\xfd\xbd\xe4\x6b\x9a\x19\x82\x6a\xf1\x7a\x3b\xbe\x38\x40\xde\x06\xb3\x57\x70\xba\x75\x5c\xad\x57\x9d\x30\x4b\xb5\xde\x7e\x8c\x8c\xc7\xc5\xd8\x1d\xb3\xd4\x6e\x0f\xd7\x01\xd4\xc2\x92\x7a\x1a\xb3\x67\xc8\x39\x70\x77\xc0\xf8\x31\x88\x00\xac\x50\x4e\xf9\x4b\xa4\x58\xb3\x42\x93\x82\x25\x72\x21\xf8\x3f\xfc\xe0\xca\xc5\x1f\x40\xbf\xad\x1d\x46\xc1\x85\x66\x85\x11\x16\xe0\xaa\xa3\xb5\xd5\xa8\xfd\x05\x33\xd3\x90\x52\x04\x03\xba\xc8\xa7\x0f\x46\x34\xe4\x62\x2e\x4f\xa0\x1e\x90\x3a\x39\x3e\x5e\x70\xed\x10\x3b\x91\xab\x55\x29\xb8\xde\x1c\x83\x67\x94\xcf\x4a\x2d\x0b\x75\x9c\xb2\x35\xcb\x8e\x15\x5f\x8c\x68\x91\x2c\xb9\x66\x89\x2e\x0b\x76\x4c\x73\x3e\x82\xb5\x0b\xb8\x59\xe3\x55\xfa\x59\x61\x6f\x82\x3a\x8c\xd1\x81\x5d\xf2\x01\xa8\xdb\x76\x0c\x06\x83\x6d\x12\x2d\xca\xbe\xc8\xc6\x3d\xb4\x5d\xe8\xc7\xd5\xbb\xeb\x1b\xe2\x66\x8f\x26\x1c\x23\xf0\xab\x37\x55\x75\x0e\x06\x68\x5c\xcc\x9d\xbc\x02\xc6\xe8\x50\x6d\x47\x96\x99\xf1\x88\xc8\xaa\xca\xd9\x8a\x6b\x15\x14\x92\x91\x63\x72\xe6\xad\xd4\x65\x9e\x52\xcd\xd2\x31\xb9\x10\xe4\x8c\xae\x58\x76\x46\x15\x7b\xf6\x53\x00\xa1\x6d\x64\x60\xdb\xf7\x1c\x1a\x92\xbf\x9b\x4c\x70\x9e\x4c\x35\x1c\x5b\x75\x1f\x0d\xc7\xa9\x67\x22\xb9\x64\xb5\x2a\x3d\x9c\xee\xd0\xae\xea\xe3\x8e\x74\x8b\x29\xb5\x98\xb4\x1b\x62\xe6\x77\x9a\xf2\xb9\xb0\xbe\x8b\x89\xa7\x74\xa8\xeb\xce\x58\x26\x0d\x56\x49\x6b\x53\x61\x31\x47\x68\x33\x9f\xfe\x5f\xc1\x29\x81\x4f\xc2\x7f\x3e\xb3\xe9\x66\x27\x04\x19\xd4\xb1\x66\xab\x1c\xe8\xd5\x31\x7e\x01\xd1\x72\x55\xa4\x45\xa1\x46\xc5\x8c\x26\xe3\x0d\x5d\x65\x86\xe3\xfe\xd7\x7f\xf1\x39\x61\x7f\x27\xe3\xab\xaf\x4f\xcf\xce\xa4\x98\xf3\x05\x99\x1e\x98\x47\xa6\x07\xff\xf3\x3f\x66\xfc\x0b\x10\x66\x19\xa1\x24\xc9\x4a\xa5\x59\x51\xc8\x8c\xf9\x36\x71\xdb\xa3\x83\xdd\x4a\x0a\x26\xf4\x91\x79\x19\x1a\xcd\x01\x0d\xd1\x8e\x98\x36\x2c\xcb\x69\x4a\x55\x20\x82\x65\xf1\x38\xe9\x95\xcc\x58\x5d\x34\x80\x6d\xd0\x52\x2f\x65\xc1\xff\x81\xc1\x57\x81\x7c\x10\xe1\xff\x0d\x13\x4f\x05\x88\xa6\xf0\xe0\x67\xe4\x52\xa6\x68\x2d\x20\x77\x36\xc6\x4a\x4b\xb2\x92\x82\x43\x1c\xb1\x2c\x48\xca\x32\x86\x37\x1d\x99\x2e\xcd\xf9\xb7\x46\x58\x30\x27\x63\x0e\xf1\x6f\x78\xae\x9e\x12\x7b\x24\x1d\x11\x61\xc6\xc6\x3f\xd7\xac\x98\x85\x3f\xdd\x85\x7e\x87\x11\x5c\x8e\xea\xaf\x05\xde\xcb\xcf\xc8\xc4\xd5\x18\x0b\xd6\x56\x95\x7e\x62\xf7\x5c\x69\xe8\xc1\x48\x15\xc9\x69\x61\xaf\xd7\xe9\x07\x52\xed\x76\xff\x45\xe7\x32\x6d\x58\xf3\x82\xe9\xa6\x15\xfb\xed\x7c\x86\x0b\xf0\x03\xdb\x6c\x34\xc1\x73\x68\x62\x99\x1a\x25\x48\x20\x60\x6c\x16\x5c\xc6\xb4\xf5\x41\x6f\x2f\x33\x2e\x8c\xb5\xad\x9d\xe7\xb9\x94\x99\x0a\xbf\x30\xcc\xa7\x58\x63\x75\x88\xf8\xb6\xdc\x4e\x1e\x3f\xfd\x2c\x93\xc9\x2d\x9d\xa3\x50\xca\x6a\xcb\xa0\x2b\xf8\x71\xeb\xbb\x25\x15\x69\xd6\x84\x22\x2d\xe0\x06\x95\x9a\x55\x7f\x23\xdb\xab\xfe\x46\xa8\x46\x8f\x67\xe7\x1a\xae\xa8\xa0\x0b\xa6\xc8\x52\x2a\x1d\x04\x65\x3d\x09\x40\x6a\x63\x3e\xe3\x2e\x3f\x23\x97\x8c\xa5\x60\x39\x30\xaa\xa7\x96\xf6\x59\x47\xc1\x82\x62\x1e\x4f\xb5\xb5\xc8\xc8\x3d\x36\xd8\xbc\xa5\xcf\xc0\x7d\x7b\x56\x1d\x0c\xd2\xe6\xb2\xf0\xb6\x13\x34\x1f\x70\x6d\x46\x54\xc4\x08\x41\x09\x3c\xf2\x34\xfb\x31\x78\x11\xa0\x45\x12\xce\x1e\xdd\xd9\x67\xa8\xb0\x9b\x75\xc8\x3b\x11\xac\x65\x67\xdb\x9f\xd9\x6d\x13\xea\x4c\x30\x84\xcf\x89\x90\x82\x21\x09\x53\x4d\xf0\xf9\xcc\x1d\x23\xf2\xd8\x26\x4c\xf8\x0c\xf1\x1b\x68\x62\xb2\xac\xa5\x04\x78\xd4\x07\xde\xb9\xc3\x60\xbe\xe6\x02\xad\x36\xcf\xc4\x67\x64\xc6\xae\x18\x86\xd8\xbb\xf3\x69\x19\xdf\x3c\x16\xe1\x81\x9d\xd3\xa8\x12\xe4\x15\x73\x34\x23\x3b\x40\xdd\xe8\xd9\x63\x8c\xd0\x6d\x8f\x34\x42\x6d\x94\x66\x2b\x0b\xb9\xde\xc2\x87\xa1\xec\xa1\xc0\xd1\x25\x4e\x04\xaf\x91\x73\xca\x56\x52\x5c\xb3\x2e\x49\x02\x1e\xfe\xa5\xa4\x07\x33\x59\x5d\x62\x30\xc2\xec\xd9\xe5\x85\x91\xe4\x16\x5c\x10\x01\x94\x47\x4b\x83\xf1\xc0\x3c\x8f\x90\xbd\xa1\x7e\x18\x26\xa8\x3e\x9c\x13\x6f\x09\x13\x4e\xf7\xc7\x81\x5b\xc9\xce\x67\xc4\x65\xfe\x5e\x67\xdc\xf1\x63\xb0\x60\xcf\xab\x08\x1a\xdb\x0e\xda\x8a\xe5\xce\x24\xe7\x6a\x1d\x7d\xe6\x6a\xd7\xac\x5c\xf8\xfa\xf6\x2e\x52\xae\x12\xb9\x66\xc5\xc6\x21\x72\xdb\xae\x3c\x3f\x80\xf5\xec\x25\x1d\xed\x05\xbd\x9d\x10\xab\x91\x0f\x3d\x8b\x93\xb3\x4f\xd6\xae\xef\x76\xe3\x4d\xf9\x17\x13\x74\x5e\xd1\x74\x6d\x74\x20\x55\x01\xa2\x75\xb5\x0d\xa3\xde\x6c\xf2\x25\x55\xe3\xb8\xb4\x47\xce\x2e\xce\xaf\x08\x2d\xb5\x1c\xa5\xcc\x68\x9c\xe0\xcd\x13\x70\x23\x69\xba\xb2\xc8\x56\xb1\x39\xa4\xba\x64\x45\xf3\x07\xe0\x17\xbe\x6c\xde\x6d\x45\xa1\xfd\x45\xde\xe3\x90\x5e\x6f\x83\xd9\x70\x6a\x8b\x7e\x49\xc6\x28\x18\x19\x8c\x10\x6e\x75\xd2\x4f\x82\xae\x29\xcf\xe8\xcc\x10\x89\x8c\x2e\x02\x40\xe5\x21\x9c\x3f\x73\xce\x03\x50\x97\x14\x66\x73\x25\x75\x9e\x19\x94\xf0\xe2\x28\x74\x86\xb5\xcb\xc6\x71\x36\xfc\xfd\x36\x2f\x31\x70\x0e\x42\x04\xc3\xa4\x78\xde\x70\xad\xed\x4d\xe2\x62\xd1\xe7\x46\xd8\xa7\xf3\x5a\x80\x47\xcf\x2b\x61\x11\x6c\xb6\x71\xe0\x30\x0b\x77\x36\xf5\x6a\xff\x8f\x26\x3e\x5b\xd4\x26\xb8\x4d\xce\xd1\xd5\x2e\x5c\x93\x6d\x39\x74\x8b\x8a\xe6\x2e\xf1\x42\xa6\x0e\x7d\x1e\xb6\xe6\x16\xdc\x0b\x30\xc8\x63\x8f\xd5\xf4\x14\x59\xd3\x82\xcb\x52\x91\xb3\xab\x73\xbc\xed\x88\x4b\x4f\x24\x2d\x62\x8d\x88\x39\xcb\xf8\x3d\x8e\x1b\xc0\x31\xf8\xb6\x2e\x6f\x81\x4a\xb1\xc8\x73\xc6\x0a\xb5\x3d\xd4\x6c\x91\xef\x0c\xe4\xbf\xdb\x1d\xa6\x97\x62\xd4\xa4\xa9\xe0\x8c\x51\x2c\xdd\xf9\x59\xb1\x90\xe0\x36\xbe\x13\x7d\xba\x51\xa4\x6e\x50\x25\x5a\x55\x2e\x3c\x18\x20\x47\x80\x10\x0f\xd0\xb2\xee\x76\xb1\xa5\x54\xda\x0b\xb3\x22\xf5\xe2\xa9\xa1\x3d\x80\x38\x52\x18\x59\xb5\xd0\x65\xfe\x5c\x1a\x6d\x2b\xb6\xf4\x56\x4a\xda\xf4\x90\x70\xaf\xdb\x1b\x8c\xec\x8a\x34\x6e\x8b\xb4\xf1\x9e\x9e\xc7\x13\x59\x58\x3f\x82\x6f\x83\xd7\xcc\x0c\x4f\x6a\xb8\xe9\x87\x2f\x37\xe0\x8b\x74\x21\x21\x52\xa0\xdc\x05\x71\xc6\x2e\x3e\x13\x88\x4c\x99\x2f\x0a\x9a\xda\x7c\xb9\xf5\x9b\xf1\x5b\x94\x1a\x13\xac\xa9\xf3\x19\x99\x31\x52\xb0\x95\x5c\xb3\xd4\xc6\x26\xba\x17\x64\x61\x76\x38\x2f\x98\x5a\x12\x2e\x94\xa6\x59\xf6\xa4\xea\x6d\x0b\x2d\xa9\x93\xa4\x7d\x30\x2b\x0e\x95\x1a\x40\xec\x19\x1b\xce\xa0\xa5\x79\xd4\x9c\x28\xda\x94\x68\x96\xc9\xe4\x69\x37\xf9\xeb\xb3\xd7\x3c\x05\xc5\xa0\xff\x1f\x7b\x6f\xbb\xdc\xc8\x8d\x2c\x0a\xfe\xdf\xa7\xc0\x91\x4f\x84\xba\xef\x15\xa9\xfe\xb2\xc6\xd6\xc4\xc4\x86\x5a\x52\xdb\x8c\x51\x4b\xbc\x92\xba\xdb\x13\xe6\xdc\x0e\xb0\x0a\x24\xb1\x2a\x02\x75\x0a\x55\x94\x38\x9e\xd9\xd8\x77\xd8\x37\xdc\x27\xd9\x40\x26\x50\x85\x2a\x02\x55\x45\xa9\xdb\xf6\x1c\x93\x11\x33\x56\x93\xf8\x4c\x24\x12\xf9\x9d\xcb\xda\xd3\x10\x94\x0c\xde\xea\x1d\x92\x6a\xff\xf5\xa4\x9a\x80\xcd\xc0\x86\x4d\xd7\x70\xcf\xf0\x80\x32\x59\x68\xe2\x37\x9f\x67\x36\x02\xf6\x2b\x9e\x45\x90\x09\x32\xfc\x03\x22\x0b\x60\xc7\x92\xcf\x0d\x15\xa8\x09\x64\x31\xc8\x94\x60\x02\xf6\xa0\x5f\x44\x85\x71\xda\xfd\xa6\xbc\x67\xa0\x9a\xc8\xcd\x45\xd3\xcc\x29\xdc\x4d\xc8\x50\x57\x5d\x33\x52\x28\xfd\x93\x7e\x94\x06\x1a\x2b\x13\x58\x84\x17\x14\x34\x4d\x55\xeb\xce\xab\x25\xb6\x9c\x97\xc7\x54\xde\x2e\xd1\x86\x75\x1d\x9d\xb2\xee\xd7\xd0\x5a\xe0\xd0\xdb\x6b\x2a\xb0\x5f\x58\x3b\xf1\xcb\x2f\x4c\xc4\xff\xfa\xd7\x56\xfa\x89\x52\x35\x01\x69\x29\x96\x54\xf0\x19\x53\xb9\x3d\x5f\xb5\xa1\x6a\x30\xe6\x34\x96\x1d\x10\xaa\xc8\x3d\x4b\xa0\xb3\x09\x8c\xad\x78\x58\xf4\x7e\xb1\x42\xb4\x91\xcc\xa4\xd0\x6d\x21\xd2\x66\x49\x35\x74\xa0\x91\x6e\xc1\x32\x94\x48\xb8\xa8\x85\x6e\xd8\x37\xbc\xd4\x68\x94\x5a\x91\xa6\xa3\x44\xaa\x7a\xa9\x2e\xc2\xb0\x23\xc6\x9f\xd0\x5a\xaa\xbe\x53\x03\x9a\xa6\xcd\x23\xb3\xa6\xc7\x86\x23\x37\xb8\x61\x5e\xb8\xfd\x43\x23\x10\x43\xee\x6e\xf2\x8c\xe6\x6c\xbe\x3e\x36\x46\xa8\xe1\x87\xda\xd7\xfa\x10\x7f\xf9\x85\xe4\xf2\x6f\x74\x99\x34\x7f\x24\xff\x24\x5c\xc4\x4c\xe4\xe4\x0d\xb6\x63\x89\x62\xfa\x2f\x52\x1a\xed\xae\x65\x92\x70\x31\xff\xe0\x90\xd6\xcc\xfd\xaa\x5c\xe5\x92\x3e\x38\x42\xe6\x31\x79\xe9\x60\x11\x21\x16\x63\xec\x36\x9b\x86\xda\xa4\xbe\xe5\xf0\xa6\x09\x08\xa9\xd7\x54\x44\x0b\x96\x0d\xac\x15\x16\x6d\xa1\x95\x14\x8a\xd9\x1d\xa2\x05\x8b\x8b\x84\x65\x43\xf0\x45\x1d\x56\xf9\x2e\xc0\x3c\x9d\x71\x70\xeb\x1f\xa4\x32\xae\x22\xcb\xe2\xca\x6c\xbe\x7a\x3d\x7c\xf9\x7a\xf8\x06\x7c\x10\x89\x9d\xda\x9f\xa4\x1b\x71\xfe\x80\x50\x30\xb9\x82\x6f\x29\x20\xb1\x99\xe2\x24\x8e\xa5\x50\x98\x3c\x42\x26\xcc\x10\x54\xc8\x9f\x70\xe0\x0e\xb2\xa4\x68\xbd\x65\xe0\xfb\x08\xc1\x91\x76\x95\x84\xc6\xf1\x00\x7c\xd8\x85\x2a\x40\xb8\x37\x1a\x6b\xb7\x7f\x9a\x71\x99\xf1\x7c\x6d\x77\x0e\x21\x96\xc2\x44\x82\xa0\x79\xdf\xb5\x1f\xa1\xa8\xe2\x06\x29\x7c\xa3\xc9\x34\xcf\x09\x38\x79\x81\x3e\x9c\xad\x78\x94\xd7\x82\x19\xfb\x43\xf5\x98\xec\x1b\xbb\x7d\xcd\xd0\xae\x4f\xd2\xe3\x65\x5a\x1f\x47\xaa\x63\x92\x70\x51\x3c\xd8\x06\xbf\xfc\x62\x92\x97\xfe\xe7\xdd\x01\xf9\xcf\x15\x39\xfe\x0b\x19\x5e\x3a\x23\x11\x8b\xb6\xa6\xf1\x7f\xde\x91\x7f\xfd\xeb\x98\x4c\xf6\xf4\xdf\x2b\xfd\xeb\x9e\x33\x14\x13\xb1\xd3\x41\xbf\x37\x46\xff\x50\xcf\x7d\x52\x9d\x56\xfd\xb4\xdf\xd3\x3b\x46\x54\x91\xd5\x09\x1a\x00\xcc\x82\x07\xbc\x56\x69\x92\x20\xd3\xeb\xc0\x6f\x60\x72\x0c\x1c\x93\x4b\x79\x63\x1a\x57\xbf\x82\x83\x51\x46\x35\x68\xc8\x79\x4d\x8b\x8f\xf3\x66\x77\xad\xf8\x81\xbc\x04\xab\xce\xbf\x36\xf1\x1d\x5b\x1f\x7b\x90\xb2\xdf\xec\xee\xba\xcf\x1f\x58\x54\xe4\xbd\x96\xdd\x65\x18\x37\x48\x55\x7b\xae\x2e\x7d\xe4\x16\x07\x2b\x09\x8a\x01\x08\x17\x7c\xc9\xff\xc1\x48\x2c\xef\x45\xce\x97\x8c\xc4\x78\x3b\xa8\xa5\x52\x2e\x6b\x6f\x6d\xce\x7f\x26\x39\x4b\x12\xf7\x75\xc8\x25\x89\x25\x94\x10\x02\x95\x6c\x35\x81\xed\x32\xd9\xab\x7c\x5c\xea\x98\x1a\xcb\x48\x1d\x46\x52\x44\x2c\xcd\xd5\xa1\x4d\xba\xa8\x0e\x41\x6b\x92\xca\xf8\xf0\x1b\x1b\xa3\xca\xa5\x18\xc8\x99\xbe\x19\x15\x3e\x38\xbf\xfd\x90\xd1\x88\x8d\x59\xc6\x65\x7c\xc3\x22\x29\x62\x75\x4c\x5e\x6c\x90\xbc\x2a\x4b\x32\xea\xd1\x6c\x03\x7b\xf7\x4f\x13\xaa\x14\x02\xf0\x97\x5f\xc8\x10\x79\x39\x7d\x51\xc6\xcd\x06\xe4\x9f\xa5\xdd\x68\xb2\x87\x8f\x17\xda\x19\x2c\x4e\x4d\xf6\x9c\x3b\xa2\x19\xc8\x53\xfb\x62\x6f\xd2\xbe\xea\x35\xb7\xd2\x85\xaa\x4b\x61\x0d\x9e\x0e\xb4\xac\x78\xc0\x9a\xb3\x1e\xba\xe3\x8d\x72\xc3\x41\x5a\x33\x36\x7a\xc6\xda\x0c\xf4\x9b\xd2\x19\xf8\x57\xf3\x19\x59\xcb\x02\x93\x80\xd0\x24\x63\x34\x5e\xbb\x83\x9a\xc5\x80\xd2\xb8\x50\x2c\x30\xb9\x75\xfe\x33\xad\xe1\x67\x17\xcb\xf9\x12\x5c\x54\x7e\xf9\x65\x78\x7a\x39\x1a\xe9\x7f\xb8\x64\x07\xa2\x8d\x96\x54\xb3\x17\x3f\x4f\xf6\x0e\x65\x9a\x1f\x46\x82\x1f\x4e\xb9\x38\x74\xa6\x9b\xec\x1d\x90\xc9\xde\xc0\x4c\x51\xf2\xb0\xf8\x61\x62\xf5\x2e\x93\xcb\x9a\x4b\x8e\x55\x29\xbf\xa7\xa9\x65\x20\xdd\xcf\x37\xe4\x04\x42\xa7\xfe\xfa\xe1\xed\xf9\xf5\xe5\xf9\xed\xf9\xcd\xe7\x9b\xf3\xeb\x8f\xa3\xd3\xf3\xcf\x3f\x5e\xdd\xdc\xc2\x0b\xe0\xf9\x6d\x7c\x75\x7d\x6b\x22\xe7\xe4\x8a\x65\x19\x8f\x63\x86\xf4\x83\xbd\x1d\xbf\x23\x4b\x2b\xe1\xbb\x1f\x04\x8e\x93\x37\xca\xaa\xfe\x07\x56\x87\xd4\xec\x61\x23\x01\x36\x73\x4a\x31\xb1\x6a\x6c\xc5\x02\xdf\x59\xec\xe5\xd5\xd9\xf9\xe7\xcb\x93\xf7\xe7\xcd\x71\xc1\x7f\x6e\x03\x52\xf8\x01\xf7\x5f\x1f\xa4\xca\x1f\xc7\x34\x5f\x1c\xc3\x4d\x1a\x6a\x8c\x87\x08\x3c\xef\x52\x4e\x4f\x2e\x46\xa7\x57\x9f\x2f\xcf\x6f\x3f\x5d\x5d\xff\x75\x74\xf9\xc3\xe7\xb7\x27\xa7\x7f\x3d\xbf\x3c\xdb\x66\x3d\xe5\xe9\xfd\x95\xad\x43\xcb\xaa\x71\x98\x75\xa3\xaf\xfb\x01\x0a\x8e\xad\x3e\x9b\xa8\x11\xb7\xd9\x4a\x26\xc5\x92\xbd\xf7\x25\x6b\x19\x90\xa5\xfe\x1a\x77\x7e\xb8\xa2\xd9\x61\xc2\xa7\x80\x9e\x56\x69\xe8\x3f\xec\xea\xde\x0e\x04\xcb\x07\x31\xcf\xda\xc6\xd5\xad\x5d\xbc\xf7\x8f\x19\x09\x3e\x98\x72\xd1\x1c\x4c\xb1\xa8\x00\x0a\x25\x45\xce\x1e\x9a\x35\xbc\xd2\x8c\xaf\x78\xc2\xe6\x75\xaf\x31\xe2\xa3\x40\x35\x91\x43\x4b\x12\x53\x2e\x68\x56\x0b\xf2\x44\x43\xa8\xfe\xad\x21\x59\xcc\x78\x02\xe1\x15\x20\x5b\x88\xfa\x25\xb0\x58\x61\xc6\x1f\x44\x82\x7f\x11\xe2\x60\xc6\xdb\x91\x02\x67\x23\x97\x26\xfe\xde\x1e\xa1\x7b\x3c\xfa\xed\x00\xd5\xcf\x30\x70\x6b\x2f\x47\x9f\x4f\xaf\x2e\xdf\x85\x29\x87\x66\x0c\x5f\xbe\x18\x18\x25\x8a\x1e\x1b\x34\x4b\x7b\xcd\x55\x58\x73\x4a\x03\x49\x20\xf6\x07\xce\x2c\x84\x2a\xcd\xe5\x18\x0a\x02\xcb\x1a\xfd\xf0\x9b\x52\x0f\xc1\x3f\x9b\xed\x7c\xf6\x35\xfd\x86\xdc\x30\x74\x15\xd6\x97\x19\xd2\x20\x94\x51\x58\xe0\xa9\xf8\x9d\x42\x09\x5b\xff\x14\xd8\xf1\xef\x80\x82\x7f\x03\xe7\xf6\xfe\xf6\x03\x31\x4c\xe7\x8a\x66\x5c\x4b\xa6\xe1\x33\x7a\x7f\xfb\xe1\xb7\x3c\x98\x15\xcb\x17\x9f\x97\x79\xd1\xdc\xc7\x38\x63\x2b\x26\x4c\xc9\xbd\x8a\xc8\x01\x57\xa5\x12\xc6\x20\xf0\x73\x26\x75\xab\x66\x69\x4e\xbb\xbb\x9b\x8b\xf3\xf3\x8d\xfa\xb6\xe5\x45\x98\xd1\x44\xb1\x3a\xee\xf7\x7e\x48\x9e\x44\xf0\xbd\x83\xb1\x3c\xb2\xcf\xd2\x70\x23\x7e\xbe\x1a\xce\xf3\x18\x3d\xfe\xfd\x38\x89\x63\xcd\x59\xbe\x4b\xd8\x03\xf9\x08\x5b\x27\x67\x19\x5f\x81\x27\x3d\xb5\xa6\x29\xdd\x22\x65\x19\xe8\x0b\x3e\x08\xfe\x40\xce\xe4\x92\x72\x41\x6e\x64\x74\x87\x29\x45\x21\x0a\x96\x9c\xf1\x3b\xaa\xf2\xfa\x63\x03\x3e\x05\xe0\x0e\x1f\xd1\xdc\x24\x41\x78\xc7\x12\xfe\x00\x04\xd7\xcd\x07\x70\xb3\x16\x11\x39\x19\x8f\x3c\xcf\xce\x2c\x61\x0f\x2b\x99\x0c\x62\x58\x9a\xff\xe5\xd1\x5b\xf8\x28\x93\xd1\x72\x5e\x7f\x7b\x82\x07\xea\x1f\x7c\xa0\x8f\xa2\x0e\xbf\x8d\x83\xda\x5c\xc6\x13\x1f\x70\x2d\x62\x38\x08\xbe\xc4\xd4\x71\x98\xb8\x32\x62\x4a\xd1\x6c\x0d\xf4\x1f\x65\x15\x05\x1a\xe9\xaa\x98\x82\x7e\xa9\xa0\x94\x5b\x9a\x50\x51\x1b\x1c\x32\x41\x4c\xd3\x19\xa1\x39\x39\x54\x6b\x75\x38\x53\x87\xf0\x4f\x11\x93\x08\x22\x94\x5e\xc1\x4f\x59\x61\xf9\xf4\x43\xfc\x7a\x68\x13\xec\x19\x8d\x22\xcf\x39\x4d\xb8\xaa\xc2\x2e\x51\x0c\xae\x2b\x50\xb4\xe0\xa2\x72\x2d\x2c\xcb\x2c\x27\x33\xaa\x16\x20\xa1\xc0\x22\x84\x24\x33\xca\x93\x22\x43\x4f\x2d\x96\x65\x32\x53\x07\x1a\x3b\x84\xcc\x49\xcc\x55\x56\xa4\xe0\xed\xe4\x44\x77\x0a\x5b\x28\xab\xf9\x0e\xdb\x93\x9b\xec\x01\xa4\x06\xd3\x74\x36\x53\xf5\x6b\x5c\xe1\x85\x96\x00\x3b\x58\x12\x57\xde\x46\x11\x45\xef\xd8\xfc\xa9\xf7\x34\xc0\x3d\x35\xd8\x94\xde\xa4\x02\x21\xef\xbf\xd1\x6a\xad\x06\x9b\xbf\x7d\x43\xde\xf2\x98\x67\xe8\xaf\x43\x13\x8c\x66\x34\x56\x2d\xa8\xfd\x05\x2a\x98\x32\x17\x85\x60\xf7\x38\x21\xb9\x67\x64\x49\xef\x58\xf3\xc0\xd3\x4c\xa6\xd4\x24\x01\x95\xe5\x13\xb7\x39\xab\x92\x56\x65\x46\x64\x91\x27\x7c\x65\xa2\xa6\xea\x08\xba\xc1\x12\xe1\x66\xcd\x1c\xa0\x4d\xae\x2d\xbf\x8b\x1f\xaf\xd0\xcf\x0f\xa3\x15\xcd\x06\x59\x21\x06\xfe\x36\x5f\x04\x56\x1b\x37\xe0\x77\x05\xb2\x6f\x08\x60\x19\x39\x4c\x33\x19\x1d\x56\x6a\x05\x93\xba\xa6\x50\x05\x4d\x92\xb5\x09\x41\x87\x89\xd3\x4c\xce\x33\xba\x84\xbd\x69\xbc\xd6\x1d\x87\x64\x94\xef\xbb\xc4\x03\xd6\x20\x14\x0a\x09\xeb\x83\xe6\x9c\xf6\x92\x83\xbd\xae\xba\x22\x07\x18\xd0\xa0\xd7\x93\x49\x99\x97\x84\x64\xa6\x02\x90\xd4\xef\x43\x9e\x6b\x56\xf1\xf4\xf6\xe2\xad\x5d\x9a\x16\x5b\x32\xbd\xdf\xa4\x59\x98\xa8\x8e\x20\x76\xf5\x7e\xd4\x08\xfd\x9a\x31\x1a\x5f\x89\x64\xbd\xc9\x72\x3f\x8e\x54\x47\x7e\x05\xd0\x75\x01\x46\x3f\x8f\x69\xa7\x64\x8f\x1d\x5d\x1b\x70\xca\x8d\x32\xbf\xdf\xb8\xfa\x23\x0b\x99\x86\xe3\xa4\x26\xd7\x60\x26\x55\x76\x54\xb7\xbf\x46\x04\x0f\x71\xf4\x28\x11\x49\x1f\xc2\xf8\xc7\x16\xbe\x3e\x28\xe6\x9e\xd8\xc9\x78\x64\xed\x72\x53\x1a\xdd\x69\x7e\x53\xbf\xb4\xe0\x31\x12\xe0\x38\xcf\x4e\x6e\x4f\x6e\x6e\xaf\xae\xcf\x3f\xdf\xfe\x6d\x1c\x96\xc1\xaa\x2d\x6c\xca\x5e\x9f\x28\xcf\x4b\x87\xe6\xae\xf9\x3e\x9d\x8c\x6e\x3f\xbf\xbb\xba\xfe\x5c\x4e\x1c\x9c\x13\x00\xb0\x31\x9b\x16\x7a\xb6\x96\x73\xb4\x70\xf3\xdb\xc8\x36\x0b\x29\x15\x2b\x4f\x84\x09\xab\xd7\x0c\x89\xa0\xff\x5e\x7a\x2c\xd8\x22\x1a\x6c\xb1\x5e\xb8\x16\xb8\x21\x0f\xd7\x0c\x99\x3d\x27\x45\x8a\xfe\x3d\xb0\xe9\x8b\x0f\x37\xb7\xe7\xd7\x1d\x18\xf8\x9d\x3a\x98\xce\xd3\x4d\x84\x38\xa9\xbc\x85\x91\xbf\xfc\x61\xec\x54\xfb\x09\xc0\x79\x14\x96\xb2\x68\x91\x4b\x1c\x6e\x73\xae\x73\x01\x0c\xde\x68\xdc\xec\xdf\x38\xbf\xd1\xf8\xe3\x9b\xf1\xd5\xd5\xc5\xe7\xcd\x96\xce\x4c\x27\x90\xd5\x21\x38\x8b\xcc\xc8\x19\x57\xf0\xe7\xc7\x9f\x2e\x4e\x2e\x2d\xc2\x5b\x63\xc0\x68\x4c\x52\x29\x93\x76\x4c\x2a\x57\x02\x43\x04\x97\x72\xa9\x85\x52\xff\x65\xd3\xa2\x39\xdc\xee\x42\x08\x96\x90\x98\x81\x53\x38\xf8\xd0\xf3\x19\xe1\x29\x4f\x81\xc5\x86\x35\xc7\xfe\xb5\xbc\x3b\xbf\x18\xfd\xa4\x61\x71\x39\x1a\xb7\x0b\xef\x79\xd3\x2b\xa1\x12\xe9\xc6\x32\xd6\xf0\xd0\x9c\xb7\xe6\xb7\xdf\x16\xf1\x9c\x21\xdd\xa9\xa2\x86\x2a\xe1\xee\xaf\xdf\xa9\x12\x33\x35\x86\xa8\x88\x9a\xdf\xc1\x52\xfa\xdb\x69\x09\x6a\x20\x5d\xd8\xa3\xad\x01\x37\x70\xa2\x08\x45\x68\xff\x3b\xd5\x80\x34\xf7\xf6\x89\x67\x6c\x5e\xd0\x2c\xde\x62\x7f\x9f\x46\xd7\xe7\x3f\x7c\x38\xb9\x3e\xfb\x9d\xee\xf1\xb6\x76\x03\x57\x6f\xe0\x0e\x56\x9a\x4e\xc7\x05\xb6\x11\xe5\x35\x04\x0c\x1e\x8d\xcb\xea\x8a\xcd\x91\xa3\x85\x54\x9a\xa3\x40\xbf\x06\x2d\x17\x50\x31\x67\x43\x72\xba\xa0\x62\x8e\x89\x07\x6c\x19\x19\xe3\x0d\x59\x73\xc9\x82\x51\x17\x74\xb5\x31\xae\x90\xc6\x22\x6c\x0a\xd1\x98\x34\x10\x33\x9a\x24\x36\xb1\xe7\x60\x60\xdc\x6e\x06\x11\x8f\x9b\xdc\xbf\xcf\x8b\xe3\xdc\xc9\x88\xc4\xf2\x0d\x62\x73\x3a\x3a\xbb\x3e\xac\xbe\x3c\x2a\xbf\x9c\x88\x5f\x7e\x19\x10\xb4\x34\x3f\x4b\x98\x20\xff\xa9\x27\x54\xcf\xc9\x2b\x52\xe7\xeb\xc2\x84\x0c\x87\xf1\x20\x86\x71\x22\x98\xf1\x4c\xe5\x66\xdc\x9a\x3b\x41\x68\xd8\xa3\x5e\xc3\x26\xb4\x39\xaa\xde\x09\x4b\x14\xfb\x52\x2b\x1f\x1a\x7a\xa5\x9b\x39\x33\xb8\x86\x74\x7b\x20\xf6\x5d\x00\x2d\x7b\x22\xe7\x80\x1e\x4a\x62\x14\x63\x9e\xe8\xaf\x14\x78\x59\x85\xde\x3f\xb3\xb4\xb3\xd1\xcd\xc9\xdb\x8b\xf3\xcf\xef\x46\x17\xe7\x9f\x2f\xae\x7e\xf8\x61\x74\xe9\xd7\x79\xb7\xf3\x63\xa8\x21\xab\xd2\x57\x48\x14\xf7\xec\x35\xc1\x9c\xab\xfa\xeb\x93\xd3\xd3\xf3\xf1\x6d\xeb\xfd\x3f\x3b\x7f\x77\xf2\xe1\xe2\xf6\xfc\xf2\x6c\x7c\x35\xba\xbc\xbd\xbd\xd2\x3c\xf9\xc9\xe9\xed\xe8\x2a\xfc\x7a\xe1\xb0\x9b\x6b\xdb\xc4\xdb\x1b\x93\x8a\x2e\x2e\x68\xa2\x72\x1a\xdd\x3d\x02\x21\xed\x6b\xf6\xf1\xe8\xe6\xc3\x58\x4b\x05\x5b\x41\xac\xe2\x40\x8e\x02\xfd\x1c\x06\xa4\x17\xe6\x5e\x9e\xdc\x7e\xbe\xfa\x70\xfb\xc3\x55\x9f\xc3\x0b\x22\x6d\x85\x54\xa3\xf1\xea\x48\x93\xb1\x4a\xb0\x68\x3d\xb0\x3e\x80\x28\x35\xd7\x41\x8c\xde\x3c\x2a\xc8\x6e\x84\x71\x06\x9a\xc4\xe0\x64\x17\x57\x3f\x68\x5c\x1d\x9f\xdc\xfe\x88\xda\x38\xc1\x4c\x74\x19\xde\x07\x40\x44\x7b\x21\x72\x09\x17\xa4\x6d\xf1\xce\x78\xc1\xc5\xeb\x49\xfa\xe0\x56\x68\xc1\x37\xe7\x1f\xcf\xaf\x47\xb7\x7f\xbb\xf9\xdb\x0d\xae\xd9\xd0\x70\x20\xf4\x65\x44\xb0\x98\xc9\xd6\x9d\xa8\xb5\x4a\xe4\xbc\x63\x2f\xce\x54\xc1\xed\xb4\x5d\x61\x67\xbe\xc9\xde\x3d\xcd\x04\x17\xf3\x5e\xd7\xca\xbb\xdf\xd3\xeb\xf3\xf3\x4b\x3d\xd6\x27\x1c\x69\x73\xc7\x7d\xb7\x03\x23\x05\x77\xf4\xc9\xbf\xd0\xfa\x70\x3f\x9e\x9f\x5c\xdc\xfe\x78\x7e\xa9\xe9\x9d\x5f\x9a\x0a\xd3\xb8\xb6\x0d\x8f\xc6\xb7\x7a\xc8\x1b\x23\xa7\x01\x07\x5a\xe4\x18\x88\x56\xdd\x64\x93\x95\x54\xcc\x40\x43\xac\xda\xef\x53\x6d\xc0\x56\x39\xa5\xbe\xd4\xc7\xaa\xf5\x7d\x7e\xd9\xf6\x7b\x4c\x33\xb4\xc1\x4d\x45\x69\x71\x4c\x5e\x7d\xfb\xa2\xe6\x74\x93\xf0\x19\x8b\xd6\x51\xd2\xcc\x7c\x9e\x66\xec\x26\x97\xe9\xc6\x20\xec\x61\x23\xad\x0f\x71\x74\xdd\x9b\xbf\x0c\x88\xeb\xa3\xd3\xd4\x15\xd9\x36\x03\xb5\x28\xf2\x58\xde\x8b\xfa\xda\x56\x4c\x30\xa5\xc6\x99\x9c\x36\xd7\xe7\x5d\x47\x68\x15\xdd\x6b\x18\x90\x01\xdc\xde\x81\x9e\xd3\xf3\xe3\x94\x67\xb1\xe7\xb7\xb4\xee\x51\xf6\xf2\x45\xfd\x67\x63\xd5\x38\x63\x09\x5d\x07\x1b\x19\xa3\xc5\xed\x22\x63\x6a\x21\x93\xf8\x98\x34\x1e\x99\x9c\x2f\x99\x2c\xf2\xc0\x00\x19\xa3\x31\xff\xb5\xa1\xd4\xf0\x00\xab\x83\xc9\xf3\x63\x07\x9c\xda\x77\xd8\x62\x04\xf9\x06\x2a\x3f\x2f\x29\x07\xfd\xa6\x26\x57\x4e\x7c\xe6\xc9\x78\xa4\x19\x7c\x50\x6d\xd0\x64\xf3\x41\xfc\x82\xd6\x51\x52\xd3\x07\xe3\xcb\xd9\x32\x5b\xc2\xa7\x87\x4b\x19\x17\x9e\x04\xba\x38\x4d\xc2\xa7\x83\x40\x83\xb0\xda\xb9\x39\x4b\x56\x88\xc3\x07\xa4\x5d\xc3\x44\x6a\xb6\xc9\x37\x95\x69\x31\xf0\xb5\xd8\x62\x4b\x4f\x37\xb2\x6c\x39\x19\x78\x58\x75\x4c\xa6\xc1\xf8\xa8\xc9\x70\x08\xd4\x8d\xab\xb5\xd8\xd0\xfd\xfb\x76\xae\x2f\x0c\x9d\x6f\xe4\x7f\x43\x14\x2d\xd5\xcd\x07\xe4\x9e\x81\x7d\xc4\xa8\xa5\x81\x71\x28\xad\x1d\xd6\xd6\x5a\x59\x62\x9b\x66\x36\x25\xc1\xa8\x04\xad\x31\x61\x6c\x73\x3a\x48\x5d\x9d\x13\xb4\xf4\xc8\x6c\xd3\xf4\x81\x9b\x43\x8b\x66\xcb\xbe\xaa\x49\xfd\x03\xe8\xab\x90\xc8\xb9\xef\x2a\x6c\x9c\x95\x9c\x97\x06\x9b\xba\x5b\x17\x09\x62\x34\xde\xfa\xba\x2d\xc4\xc6\x8d\xbb\x81\x31\xd5\xef\x83\xf6\xcb\xa3\xaf\x38\xac\xa9\x41\x9a\x5a\xae\xe4\xa0\x13\x71\xdb\x07\x0d\x5d\x8a\x41\x27\x8e\x76\x8f\xeb\xc3\xff\x41\xc7\x9d\x6e\x1f\xb5\x9d\x5e\x60\xc4\xca\x3b\x9e\xb0\xab\xec\xb4\x16\x1b\x58\xcd\xbb\x69\x69\x6e\x9f\xd1\xa0\x98\x6f\xa2\x33\x8b\xbe\xe1\xd9\x36\x30\xb8\xd7\x64\x1b\xf8\xdc\x98\xcf\xc5\xb7\x65\x65\x12\xad\x99\x39\xcd\xdd\x2d\x94\x63\xe4\x44\x17\x81\xba\x2b\x77\xd0\x8c\xe9\xc1\x5a\x9f\x99\xb1\x7d\x43\xf5\xd6\x55\xda\x0e\xeb\x3d\x77\x7a\xe9\x73\x74\x09\xb8\x0b\xb5\x4f\xe5\x75\x42\x1a\xb4\xbf\x89\xed\x23\x06\xde\xda\x6a\x17\x26\x61\x88\x7e\xcf\x13\x39\xf7\x41\x2c\x40\x80\x7a\x5c\x9d\x00\x39\xb2\x36\x70\x93\x88\xbb\xa4\xa0\x20\x17\x34\x7d\xec\xdd\xd0\x5e\xe3\x62\x53\xb3\xb9\x02\x72\x40\xe6\xb8\x46\x58\xa6\x33\x50\xdd\x4f\xbf\x8c\xa3\x76\x42\xa8\xdd\x11\x6d\x94\xa7\xb2\x09\x4d\x5d\x47\xfa\xb0\x33\xc0\xa0\x97\xb3\x71\x4f\x82\xe3\x75\x69\xae\x0e\xcd\xe8\x53\xc3\x9e\x5c\x1e\xe2\xea\x7f\x65\x03\xeb\xe9\x24\x0e\x64\x93\xfa\x7a\x1e\xe6\xcd\xcb\xb2\xe9\x9e\xb6\xb9\xd2\x0e\x37\xae\x6d\x97\x6c\x94\x58\xd6\xad\x6c\x0c\x5c\xeb\x19\xcf\x36\xd4\x3c\xb8\x9f\xca\x01\xad\x6c\x89\x71\x85\x01\xe5\x90\x81\x42\xa1\xe0\xe8\xb4\x24\xe0\x04\xd7\xc0\x9f\x09\xcb\x07\x26\x0e\xf4\x10\x9f\xdb\x43\x68\x56\x02\xec\xff\x2e\x62\x55\xea\x7f\x48\x19\xb2\xda\x15\x76\xe4\xc6\x7c\x56\x71\xbd\xcd\xa8\xd9\xc7\x07\x81\x6e\x1b\x40\xdb\x4c\x1d\x56\x06\xd3\xde\x30\xe6\x26\xd7\x5d\x14\xd3\x61\x24\x97\x87\xb5\x28\xf0\xc3\xcd\xc4\x63\xde\x98\x56\x13\xf9\xea\x14\xae\xd8\x26\xed\xda\xa3\x23\x5e\x3d\xa9\xd5\x6c\x3c\x20\xda\x3d\x6a\x79\x4f\x6d\xe1\x38\x0c\xe4\x81\x44\xde\x09\x03\x5d\xef\x8a\xe1\x55\x10\xc6\xd4\x93\xb1\x34\xe1\x11\x55\x10\x6b\xfa\xa8\x48\x5a\xdf\x26\x55\x15\x4f\x5b\x5d\x8d\x6b\x56\xe5\x1a\xe8\x0a\x65\xed\x04\x23\x21\x6d\xa0\x24\x7d\xa2\x61\x43\xc3\x82\x2b\x2b\xbe\xf8\x36\x5e\x0c\x4a\xd1\x65\x77\x8d\x70\xc1\x54\x56\x31\x9d\xfe\x98\xd6\x5f\x3d\xce\xd3\xd2\x9a\xdb\x2a\xe8\xd2\x21\x18\xf5\x50\x4c\x27\xa2\xd9\x6d\x5e\x86\x33\x1f\x05\xc8\x4e\x28\xa0\xd3\xaf\x89\x73\x5a\x5b\x23\x79\x30\xeb\xae\x24\x98\xe7\x3c\x61\xe0\x04\x97\x15\x22\x14\x00\xba\x0b\x1f\xed\x15\x3e\xea\x92\x74\x6c\xf3\xe4\x50\xd2\xd0\xad\xd9\x08\x2b\x7d\x4a\xac\x65\x23\xdf\x68\xaf\xb0\xcb\xd2\x4a\xea\x8b\xbc\xf4\x3a\xdd\x0d\xfa\x91\x19\x52\x0f\x4b\xaa\x1a\xf8\x5d\xde\x36\x54\x57\xc6\xcf\x08\x1d\x2c\x5d\x7c\xcf\xa5\x46\xf1\x80\xdc\x6e\xb4\xe1\x9f\x4f\xaf\x2e\x6f\xaf\xaf\x2e\x2e\xce\xaf\x43\x66\x83\x4d\x0d\xde\x56\x0e\x64\x77\xde\xd2\x9c\x5f\x52\x27\xab\x59\x13\xd0\x38\x2e\x58\x74\x37\xa8\x27\x4c\xad\x9a\x0d\x1a\x9e\xaa\xff\xdd\x74\xae\x3d\xa1\x90\x75\x42\xe1\x57\xe2\xce\xb6\x61\x5e\x9a\x9c\xda\xaf\xe4\x27\xe4\x6e\x11\xc5\x8b\xc3\xd5\xcb\x29\xcb\x69\xb9\xdd\xb1\x8c\xab\xf9\x70\xba\xdf\x9e\x61\xf3\x64\xf9\xf8\x42\x9c\x57\x4f\x46\x99\xe5\x51\x3c\x50\x9a\x1d\xcb\x2d\x93\xdc\xb3\x67\xbe\xd6\x6c\x4c\xcf\x2e\x26\x49\x17\x1b\x44\x54\xd0\xc4\xf4\xda\x3b\xf8\x3f\x08\x21\x36\x50\x62\xf5\x7a\xf8\xea\xcd\xf0\xe5\xde\x31\x31\x06\x68\xe3\xc5\x71\xfc\x17\xa2\xd2\x84\x43\x95\x1a\x32\xd9\x3b\x98\xec\x11\xd7\x05\x83\x60\x39\x00\x93\x64\xe9\xd6\x4c\x59\xf9\x9e\x9a\x1f\xcc\xe8\xbd\x77\x67\xf2\x2a\xd6\x72\xf0\x9c\x5a\xdf\x25\xc2\x55\x59\x5f\xad\xdc\x1a\x94\x5e\x4f\x66\x20\x23\xb2\xd8\xce\xeb\xfa\xfe\x54\xe9\x7f\xed\x40\x9b\x57\x33\x8c\x90\x95\x23\x54\x08\x0d\xcb\x7e\xdf\x60\xfa\x56\xbd\x4c\x63\xa8\x46\xee\x14\x8e\xec\xb3\x79\xd1\x3f\xdb\x70\x97\xca\x70\xfe\x0d\x39\x2d\x77\x13\xf0\x85\xad\x3b\x99\xea\xee\x53\x9e\xc5\xfe\xee\xef\x6f\x3f\xd8\xf4\x00\xfa\x5e\xdb\x5c\x0e\x58\xa1\x66\x46\x23\x53\x25\x1e\x9d\xce\x90\x29\xfb\x86\xbc\x5d\xdb\xf7\xfc\x00\x06\xe0\xca\x4d\x34\x6b\xcb\x87\xb3\x9a\x63\x53\x5e\xba\x5d\x61\x81\x3c\xe3\x3a\x65\xaa\xad\xd8\xb8\x0d\x33\xc1\xdf\x64\x81\x52\x11\x7a\x87\xb3\x66\x1e\xdb\xe9\x9a\xa4\x99\x5c\xf1\x18\xf3\x5e\x08\x29\x06\xff\x60\x99\xf1\x06\x18\x56\x7c\xb5\x5e\x9c\x65\x8b\xf9\x8c\x08\x86\x5f\xbd\x30\xac\x86\x75\x4c\x33\x4e\x43\xef\x6f\x3f\x6c\x38\x0b\x35\x18\x6a\xb7\xc7\xcb\x37\x6f\x5e\x6c\x38\x62\x84\xe2\x67\x6d\x62\xc1\x50\x18\x2d\x74\x03\xde\x0b\x43\x40\xbe\xb1\x55\xc0\x6c\xad\x68\x13\x86\x5b\x96\xe2\x2d\x72\xb9\xa4\xc0\x39\x25\x6b\x92\x4a\x53\x14\xc1\xc0\x2f\xc0\xcc\x81\xad\x5b\x29\x3e\x17\x9f\x79\xba\x3a\x9a\xec\x55\x76\x7a\x0d\x9e\xd2\x93\xa7\x99\x0c\x51\x91\x99\x2c\xd0\x5d\x79\x33\x94\xf6\x98\xfc\x73\x80\x24\xef\x17\x4b\xf9\x26\x7b\x02\x0a\xfc\x1a\x67\x63\x2d\x30\x0d\x4c\x27\x4d\x1c\xca\x56\x91\xb0\x17\x0b\xdb\xbe\x18\xbe\x1e\xbe\xac\xb5\x30\x7a\x10\xfd\xf3\xcf\xd5\x4b\xfb\x8b\xfb\xe8\x4e\xf6\xc0\x1d\x1a\x06\x30\x9a\xf7\xbd\x83\x7a\x83\x44\xce\x3f\x27\x6c\xc5\x12\x6c\x05\xee\x12\xbe\x36\x33\x9e\xb0\xcf\x29\xcd\x17\xd8\xce\xa3\x95\xd4\xff\x1b\x26\x72\xbe\xd1\xbd\x74\xd6\xff\x5c\xad\xc6\xf5\xf4\x6f\x34\xd7\x67\x5e\xc1\xe8\xf3\x67\x5f\xf4\xf0\xe7\xcf\x1b\xdd\x96\x79\xa1\x7b\x7c\xfe\x6c\x62\x77\x3f\x7f\x6e\x34\xc0\x64\x1b\xc7\x1a\x42\xbd\x9d\xb1\x7c\x20\xb4\x59\x3b\x36\x5b\x56\xf8\xf3\xc6\xc5\x9f\xd6\x96\x35\x4c\x6b\xd1\x8d\xb5\xac\x24\xe0\xef\xf4\xaf\xc6\xfe\x91\xad\x30\x10\x08\x0f\x7d\xf7\x5d\xc3\x57\xbc\x39\x8e\x7b\x74\xde\xb1\x4c\x91\x03\x4d\xed\x9d\x23\xc4\x50\xf7\xcf\xd6\x0f\x4a\x9f\x60\x6d\x96\xea\x1f\xee\x84\x41\x74\x4e\x65\x96\x2f\x69\xba\x81\x06\x4a\xd0\x5c\xb7\xd0\x00\x6d\xfc\x14\xd1\x94\x4e\x79\x82\x99\x0f\x61\xe9\x30\xca\x7b\x9a\xa6\x5c\xcc\x95\xed\xb5\xed\x4a\xa6\x54\xc4\xf7\x3c\xd6\x37\xa3\x7b\x42\xa7\xf1\xe6\x6c\xf6\x4f\x13\x50\xd9\x43\x5d\x78\x17\xc7\x83\x28\x8b\x6b\xac\xcf\xd7\x2a\xf4\xb7\x91\xac\xf4\x2b\x94\xfb\x7b\xfb\xc3\xb8\x56\x91\x03\x7f\xab\x8a\xfe\x35\x7f\xdf\x2c\xfd\x17\x48\xa9\x5a\x15\x00\x6c\x36\xd0\xbf\x9b\x34\xcd\xec\x83\xb8\x13\xf2\x5e\xbc\xd3\xaf\xb0\x72\x0c\xed\xa6\x4c\xa0\x61\xdb\x26\x5f\xa7\x46\x60\x73\x6f\xf5\x02\x63\xf5\x67\x07\x4b\xe8\xae\x21\x0a\x25\x93\x45\x5e\xd7\xcd\xec\x6a\x04\xee\x6a\x04\xba\x47\xb0\xab\x11\xf8\xab\xd5\x08\x6c\x5e\xe2\xcd\x4a\x81\xf5\x0a\xb6\xfa\x02\xd7\xae\x76\xff\x92\x80\x54\x5d\x16\xcb\x29\xeb\x2c\xcd\xbd\x7f\x72\x83\x0d\x6d\xe9\x51\xab\x6f\x3c\xb9\x21\x02\x7f\xb0\x6e\x01\xd4\x30\xdc\x3f\x9f\x61\x13\x6f\x78\xcb\xd1\x9b\x6f\x5f\xbe\xfa\xfb\xfe\xe6\x4f\x98\x16\xfc\x58\xdf\xce\xd7\xaf\x36\x7f\x46\x90\xea\xab\x3b\x67\x1b\xfe\x37\xf6\xe4\x7d\x1b\x6d\xec\xe7\xb4\x6a\x8a\xf7\xc3\xd6\x3c\x44\x58\x1a\x0c\xb2\x70\xc6\x84\x97\x6c\xd3\xe3\x07\x40\x98\x4d\x79\x9e\xd1\x6c\x6d\xca\xd9\x43\x44\x11\x45\xe7\x64\x8c\x2d\xde\xaa\x48\xa2\x77\x99\xeb\xea\xf8\x55\x4e\x45\x4c\xb3\x98\xc8\x8c\x24\x34\x9b\xb3\xe6\x72\x7d\x83\x12\xd8\x82\xbe\x69\x9e\xc8\x53\xfc\xb4\x20\x09\x7e\xe0\x79\xf2\xff\xd4\xac\x71\x49\x97\x8c\xcc\xf9\x8a\x09\x27\x49\x89\x5d\x9e\x77\x72\xd2\x59\x1d\x92\x94\x1a\xda\x5e\x4b\xf8\x08\x74\x0e\xb2\x64\x4f\x21\xe7\x13\xe2\x95\xe6\x9a\xe9\xb1\x10\x93\x3d\x0d\x3e\xf3\x8f\xe3\xe5\x72\xb2\x17\x5c\x16\x01\x47\xb6\x12\xea\xd5\x6e\xb4\x48\x5f\x0d\x87\xe3\x1f\x98\xd2\x5f\xfa\xfb\xc9\x9e\x06\x7a\x78\xd8\xc9\x1e\x74\xa4\x19\x23\x2f\x8f\xc8\x94\xe7\xe6\x22\x0d\x61\xc2\xe6\xd1\x3a\xb3\xc1\x7a\xc3\xe3\xfa\x56\x72\x50\xce\x26\x62\x2d\xe6\x2c\xcd\xc4\xaf\x5f\xd5\x26\xfe\xa4\xbb\x78\x6b\x8b\xdb\x25\xc3\xb6\x30\x1b\xc2\xc9\x0d\x41\x92\x10\x1a\x3c\x65\xd9\xe0\xe4\xc6\x06\xd9\x72\x4f\xaa\x06\xfb\x49\x69\xae\xdf\xe2\x63\xf2\xbf\x9f\x4d\x26\xf1\xff\x7c\x7e\x8c\xff\xf9\xcf\x7f\xd6\xff\x6d\xbf\x7e\x2c\x06\x85\xe8\xb1\xfb\xab\xa7\xfe\x28\xf2\x8e\x4c\x8c\x65\xe6\x23\x66\x35\xbc\xbb\x28\x5b\x5a\x42\x09\x31\x3c\x78\x16\x9a\xb6\xa4\x99\xcc\x65\x24\x13\xcb\xbd\xe0\xd0\x5e\xc8\x9c\xd9\x5a\xfb\xb9\x24\x2f\xff\xf4\xfd\x66\x93\x25\x7d\xe0\xcb\x62\x79\x4c\x8e\xbe\xfd\xf6\xf5\xb7\x9e\xdf\xb9\xc0\xdf\x5f\x6e\x49\x48\x13\x39\xbf\x61\x2b\x96\xf1\x7c\x7d\x13\x65\x8c\x35\x79\xbd\x8d\x6d\xef\x5f\x34\x7b\xd8\xed\x27\x72\x4e\x94\xf9\x85\xd0\xa9\x5c\x59\xcb\x4f\x22\xe7\xde\x2a\xf9\x1a\x73\x14\x13\x65\x25\x31\x95\xc7\xb2\xc8\x9d\xe7\x84\x8c\x2e\xdf\x5d\xf9\x9e\x8e\xb6\xe3\xd7\x4f\xd2\x7b\xa6\x16\xef\xe9\xc3\x35\x83\xa0\xc7\x5b\x1e\x20\x67\xf5\x72\xb8\x7c\xc9\x2a\x0d\x3c\x64\x80\x96\xb3\xfc\xde\xa4\x3a\xd6\xe3\xc0\x97\x90\xe3\x34\x97\x83\x25\x53\x0b\x92\x32\xa6\x97\xa0\x86\x04\x6a\xe7\xfb\xb1\xd5\x68\x8e\x58\x7c\x50\xa6\x21\x2d\xb5\xa8\xb1\xcd\x8c\x30\xcf\x68\xc4\x66\x45\x52\xce\x65\xec\x33\xad\x23\x6b\xde\xa9\x36\x3a\x23\x6f\x47\xd7\x67\xe5\x8b\x2d\x67\xe4\xe5\xab\x17\xca\xea\x6f\x8d\x17\x17\x2a\x0d\x4d\x35\x8b\xcd\x0f\xb8\x4f\x4c\x19\x44\x0b\x35\x62\xbb\x37\x44\x0e\xeb\x50\x81\xd9\x35\x50\xf1\xe8\x3d\x6a\x82\xf9\x5d\x2e\xcd\xd9\x04\x63\xb3\xfb\x1f\xef\x98\x2a\x75\x2f\x33\x5f\x40\x46\xe3\x60\xaf\x4c\xf2\x0a\xbc\x94\xa6\x1b\x9c\xe5\xac\x30\x26\xf2\xcd\x03\xf5\x6f\xa2\x0e\xbf\x47\x81\x2a\xfc\x66\x5b\xf8\x6d\x05\xaa\xce\xb7\x1c\x8d\x1d\x2d\xe1\xc7\x1b\xf0\x42\xaf\x0b\xcd\x29\xdd\xb1\x35\x08\x64\x66\x10\xeb\x36\x08\xfe\x06\xa9\x8c\xf7\x55\xa5\x9b\x0f\x13\xfc\xae\x05\x12\x13\xdb\x1c\xfe\xd5\x53\xb7\xda\xac\x0c\xa8\x06\xae\x2d\x97\xc6\x90\x04\x52\xc9\x90\x90\xf7\xc8\x11\xb4\x0d\x4b\x08\xd5\x9c\x06\x8f\xed\x20\x77\xac\xe9\x4c\x5e\xff\x74\x33\x2e\xa4\x8b\x7d\xda\xd8\xce\xbe\x9b\xab\x32\x63\x33\x96\x31\x91\x7b\x25\x9f\xb6\xcc\xd1\x72\xc5\xb2\x15\x67\xf7\x87\xa6\xc4\xd9\xe0\x9e\xe7\x8b\x01\x3e\x80\xea\x10\x8e\xe9\xf0\x1b\xf8\x4f\xdb\xc2\x6e\xaf\xce\xae\x8e\xc9\x49\x1c\x13\x99\x2f\x90\xd1\xd7\x34\x09\x30\x5e\x0d\x1d\x8d\xc0\x01\x08\xa4\x07\xa4\xe0\xf1\xff\xe9\xa1\xcf\xdb\x42\xac\xcc\x2f\xd3\x1b\x6a\x37\x40\xf6\xd6\xfa\xb9\x85\x95\x6a\xe0\xdd\xe0\x21\xca\x0c\xd8\x5f\x8d\x22\xcb\x3e\x38\x80\x5a\x8b\x16\xf6\xcd\xee\x62\x2a\x65\xc2\x42\x64\x93\x94\x86\x97\x96\x4d\x80\x17\x4c\x3b\x4f\x13\xe2\x59\xda\x7f\xd7\x57\xf2\x56\x5a\x9a\x81\xa9\x3a\x7c\x0b\x69\x60\x9e\xaf\x97\xa6\x66\xaa\x84\x6b\x49\x22\x31\x48\xd4\x17\xdb\x46\x80\xb0\x2e\xeb\xb4\xca\x7d\xc5\xf3\xac\x60\xe1\x57\x3c\x00\xd5\x34\x63\x33\xfe\x70\xe2\x56\x77\xec\x14\xf5\xc6\x9e\x3e\x95\x38\x05\x3e\xbb\xd0\xa2\x5e\x34\xd2\xb7\xa3\x36\x19\x9b\xf4\x17\xea\x3c\x0b\xaa\xde\x7e\x55\x5f\x86\x43\x29\xfd\x18\x62\xf3\x57\x94\x2f\x3e\xd4\xa5\x7c\x9c\x84\x17\xf1\xd8\xa7\x08\xf0\x6c\x01\x8c\xce\x60\xcf\x04\x5e\xae\x1a\xd9\xb2\xb5\x53\x56\xed\x23\x7e\x82\xc8\xd7\x2e\xd2\xfb\x56\xe6\x08\xf6\xc6\xa7\xdc\x8a\xf6\x8c\x03\xf2\x56\x32\x55\x07\xe5\x33\x19\xdf\x2d\x29\xd0\x0f\xdd\x64\x4f\x93\x18\x35\x74\x66\x41\x51\xb2\x97\x0c\x4e\x50\x95\xd9\x29\x8a\xb6\x48\x9c\xed\xb2\x59\xbb\x28\xda\x2e\x71\x86\x47\xee\x12\x45\x3b\x25\xce\xb6\x45\x77\x88\xa2\x9d\x02\x67\xaf\xb1\xfb\x4b\xa2\xe1\x2b\x8c\x9f\x3e\x2f\x57\x8b\x20\x49\x9e\x22\x85\x1a\x9f\x05\x63\x40\x18\x8d\x3b\x29\xdf\x4d\xb3\x03\x00\x03\xb2\x5f\xeb\xfb\x8b\x65\xd3\x50\x5f\x8b\xf7\xd8\xcc\xe0\xa5\x7d\xc6\xf1\xc8\x8e\x62\xe2\x40\x40\x39\x3b\x73\xe5\x0d\xe3\xf3\x01\x76\xf4\x92\x04\xe8\x49\xfd\xc8\x8b\x8b\x28\xcb\x35\x81\x0b\xa9\x58\xd7\xa6\x33\x89\x5f\xf2\x05\x5b\x3e\x9e\xe8\x36\x61\x81\x15\xd5\x2a\x75\xb6\xe3\x16\xae\x45\x3d\x4d\x47\x6d\x53\xff\x39\x57\x20\xfc\x0a\xc4\xf6\xab\x69\x32\xcc\x09\x9f\x3f\xa0\xed\xa3\x3f\x12\x39\x3d\xfc\x58\x24\x33\x27\x0b\x87\x6f\xcd\x66\x20\x62\x47\xd2\x67\x3b\x74\x53\x02\x36\x1b\x94\xf9\x87\x8c\x44\xe5\xd5\x16\x94\x8f\x0c\x16\xf4\x60\x6b\x58\x9d\x41\x19\x29\x2c\x0f\xad\x98\x59\xe8\x93\x31\xa8\x5a\x5d\x27\x0a\xf9\x4f\xd7\xd9\xff\xbf\x37\x12\x5d\x48\x1a\xbf\xa5\x89\x96\x5f\xb7\xa0\x46\x8d\x5e\x4f\x44\x26\x77\xb4\x20\x42\x99\x22\xc5\x6e\xdb\xe1\x48\xcc\x33\xa6\xbc\x63\x37\xf1\xee\x37\x40\xb2\x3a\x90\x1e\x89\x68\x0d\xd8\xfc\x5b\x22\x9b\xbf\xdb\xe6\xb7\x58\x75\xcc\x0d\xa5\x56\xb9\xcc\xc0\x49\x1d\xbf\x42\x1c\x80\xe5\xd3\x48\x4b\xc7\x2c\xbe\xdc\xf0\x1c\xa8\x32\xce\x58\x4f\x00\xfb\x4d\x24\x45\xcc\x31\xc6\x83\xfc\x0c\xae\x15\xe0\x8c\x14\x7f\xb4\x26\x7c\xf8\xd6\x38\x4f\x7c\x7d\x1f\x0a\xa8\xea\xfa\x75\x5c\x27\xc6\xcc\xea\x83\x6b\x1e\x13\xfa\x6b\xaf\xa3\x84\x53\x60\xb6\xe6\x1f\x91\x9a\x71\x7e\x2b\xb7\x88\x9d\xff\xc2\xce\x7f\xc1\x3d\x82\x9d\xff\xc2\xaf\xe9\xbf\xa0\xc9\xc5\xa6\xdb\x82\x75\x97\x75\xfc\x8f\x6c\xe3\xf2\xf4\xbe\xbc\xef\xc2\xed\x82\x55\xb2\xa3\xd5\xa9\x6a\xf2\xe4\x79\x06\x9f\xe2\x7e\x70\xc7\x58\x7a\x85\x45\x3f\x93\x4b\xf6\x90\xff\xe8\xc9\x23\xe5\xb5\x42\xe8\x7b\xae\x3b\xc3\xc2\x4c\xd9\xd0\x84\x08\xf6\x90\x2f\x64\x6a\x2c\x0b\x10\x52\x8f\xee\x04\x5e\x3e\xd8\xb1\x9a\x01\x4c\x89\x06\xaa\xc6\x71\x74\x0c\x2f\xdd\x90\x1d\x45\x13\xea\xc9\x13\xf0\x28\xd7\x5d\x7c\xe3\xea\x51\x54\xa9\xea\x2b\x4c\x7e\xe8\xc9\x9e\x5e\x1c\xd1\xab\xd3\xeb\xfe\xb3\x16\xd1\x85\xca\x19\x8d\x35\x78\x9d\x5f\x15\x4b\x66\x7f\x9e\xec\x3d\x33\x06\x90\xe7\xbe\x29\x8c\xfd\xa0\x74\xa5\x9e\x66\x54\x44\x0b\x7b\x4e\x97\x7a\x6a\x29\x8c\x8f\xfd\x30\x9a\xcd\xbd\xb6\xfa\x56\xad\xe1\xb2\xcb\xe8\xb7\xa5\xc9\xcf\x98\xdf\x1c\xa9\xd7\xcb\xf1\x3c\xd6\xac\xd7\xb0\xe0\xf9\xc7\xee\x30\xea\x85\x20\x14\x36\x9f\xf5\xb9\x45\x65\xee\xf2\x32\x73\xb6\x25\xc0\x46\xea\x37\x45\x4d\x8c\xfd\x2f\x5f\x50\xaf\x1e\x95\x2b\x92\xd3\x6c\xce\x72\x5b\x69\x85\x2b\xbc\x8f\x64\x54\x15\x65\x04\x20\xb0\x1c\xdf\x35\x21\x6b\xa1\xbf\x81\x41\xeb\x56\x4f\xe3\xd7\x0f\xf6\x3d\x4d\x60\x94\xb5\x60\xd9\x08\x58\x8b\x79\x55\x19\xe7\x6d\x61\xe6\x09\x45\xf6\xc2\xae\x2c\x28\x6b\xb5\xb5\x38\x3f\x98\xf4\x0c\x17\x00\xa1\xe9\x25\x24\xb8\x98\xb7\xd8\x78\x2d\x88\x00\x3c\xe5\x25\x41\x3a\x61\x5d\x5e\xd8\x32\xcd\x7d\x66\xab\xd6\x2d\x15\xcb\x13\x14\x28\x2e\x64\x44\x13\xeb\xf2\xd5\x29\xd9\xbd\x47\x3f\x04\xeb\x08\x26\x67\x04\xf3\x7c\x94\xbe\x61\x66\xab\x56\x6f\x74\x0f\xca\xd4\x10\x5e\x9f\xdc\x40\x0e\x07\x13\x37\x1c\x31\xbe\x62\xb6\x48\x83\xb1\x55\x63\x92\x10\x3c\xda\x44\xca\x54\xf3\x98\xe6\x01\xf4\xd2\x46\x51\x46\xc3\x58\x89\xce\xa6\x04\xa7\x53\x25\x93\x22\x67\xc9\xda\xd4\x03\x52\x74\x23\x73\x14\x79\xe2\xb3\x90\x86\x6d\xd2\x3d\x2d\xd2\xf6\xbd\xe2\x62\xae\xc8\x9c\x09\x96\x51\xe7\xea\xf8\xb6\xdc\xf1\xa8\x92\x6e\x71\xaf\x87\x85\xf8\xab\xd9\x87\x7b\x58\x87\xdb\x6d\xc3\x5f\xc9\x32\xbc\x95\x5d\xb8\x8f\xa6\xb8\xc3\x26\xfc\x87\xb1\x08\xf7\x81\x55\x0f\x6b\xf0\xd7\xb1\x05\x77\x5a\x82\x7b\xd8\x81\x3b\xac\xc0\x2d\x16\xe0\x3e\x7a\x13\xff\xaf\x9a\x62\x8c\xc6\x7d\x9e\xf5\xaa\x04\x85\xcb\x1d\x93\x99\x34\xb4\x7a\xba\x06\xf1\xd5\xd2\xa7\x54\x66\xde\x67\xdd\x90\xff\x5c\x62\x77\x8d\x59\xf0\xa2\x83\x07\x9c\x28\xbd\x87\xc1\x31\xf4\xc0\x5a\xc1\x2a\x7b\xe1\x64\xef\xe7\x49\xf1\xe2\xc5\xeb\x68\x34\x5e\x1d\xc1\x5f\xec\xef\xc7\x30\x97\xd7\xd9\x11\x8c\x66\x65\x87\x37\xd8\xe1\x18\xbf\x80\x5e\xf0\x05\x5a\xa7\x20\xfb\x3d\xac\xa5\xb6\x09\x67\x51\x96\xdb\x08\xbd\x1f\xe5\xcb\x0c\xc0\x12\x31\x29\xfd\xa1\xa7\x2c\x91\x9a\x2e\x03\xe3\x6d\x62\x6b\x80\xd6\x41\x41\xbe\xca\x1f\xd0\x4f\x64\x81\x3c\x36\xdd\x82\x0c\xfb\x72\xcf\x0c\xc3\x4d\x73\x5c\xae\x81\xec\x96\xaf\xba\xee\xf2\x68\x46\x45\x3f\xb5\x79\xc9\xaf\xd4\x4e\x16\x79\xd5\xd0\x0b\xe4\xb2\x27\x63\xc0\xc4\x3a\xd8\x90\x56\x34\xd8\x15\xf4\xb5\xad\x97\x61\xaa\x6f\x44\xf3\x9b\x53\x96\xdf\x33\x26\x8c\x7b\xa1\x66\x34\x00\xde\x98\xcc\xda\x88\x33\xee\xba\x21\xf7\x64\xc9\x85\xfb\x4f\xd8\xd4\x47\x30\x33\xf0\x19\x99\xca\x7c\x41\x98\x88\x15\x72\x66\x9a\xc3\x7a\xfb\xc3\x58\x13\x95\xa1\x6e\x7a\x62\xee\x4b\x3b\x9b\xae\x97\x84\x63\x1f\xf5\x1f\xfb\x68\x63\xec\x21\xd1\xd7\xd4\x37\x81\xd9\x66\xe5\x84\x1f\x49\x70\x41\xb7\x2a\x0c\x07\x0c\xfb\xaa\x36\x91\x3d\x08\xef\xba\xcd\xe1\xcf\x13\x39\xa5\x49\x95\x05\x7b\x66\xea\xb1\x95\xd7\x65\x4b\x4c\x44\x5e\xc4\x6c\xaf\x13\x15\xcd\xee\x2b\xaf\x13\x0d\xcd\x85\xbc\xdf\x08\x38\x47\xa5\x8f\xa1\x60\xbe\xed\x74\xf3\x50\x9b\x0c\x53\xe9\x7e\x1b\x36\xe8\x4f\xf6\x3e\x28\x06\xb5\xbe\xc6\x93\x3d\xb2\x64\x54\xa8\xfa\xda\x4a\xb6\x47\x23\xbf\x91\xb7\x6b\x8b\x1d\xea\x41\x2e\x3d\x39\xdb\xf1\x83\x43\x6a\x58\xb7\x6e\x79\xab\x53\xd8\x29\xd4\x3d\x0a\xf5\x44\x46\x77\x74\x86\x6d\xd8\x57\xd1\xab\xeb\x19\x4e\x70\x86\xf5\x86\x76\xdd\xfd\xd1\xa3\x63\xaf\xaf\x6e\x43\xd5\xee\xfc\xbc\xde\x29\xdc\xcd\x2a\x77\x0a\xf7\x9d\xc2\xfd\x0f\xa4\x70\x77\x29\x48\x4f\xb5\xfb\x26\x45\xaa\x3e\xdb\xeb\xe2\x03\xb6\xe1\x36\x6e\x20\x66\x09\xcb\xbb\xfd\x51\xcf\xb0\x19\xe1\x22\x86\x42\xd7\xca\x16\x9c\xe5\x0a\x69\x1f\xb1\xc4\x4f\xe3\xed\x94\x41\x25\x49\xec\xe3\x95\xce\x1d\x6f\x7d\x17\xcf\x67\xe8\xc4\x97\xd2\x9c\x43\xb4\xfd\x1a\xf9\x77\x99\xc4\xc0\x15\x24\x8c\x2a\x33\xb5\xf7\xa5\xe6\x2a\xa7\x77\x4c\x24\x6b\x92\x67\xcc\x2e\x0f\x67\xa1\xd5\x2c\x5f\x46\x2d\xdb\xca\x62\xe5\x55\x16\xc9\x7e\x7d\x02\xa2\xe9\x00\x8e\xb4\xf9\x9d\x01\x6c\xf3\x6b\x5f\xca\x35\x58\xc9\x8e\xf7\x08\xf3\x1e\x9b\x29\x32\xab\xdc\x55\x83\x39\x13\x90\x1d\x73\x5a\x70\x8d\x81\x30\x81\x9d\xfe\x19\x50\x26\xb0\xa5\xd8\x92\xde\xb7\x7c\xc9\x54\x4e\x97\xe9\x31\x11\x45\x92\x4c\x1a\x79\x93\x40\x0c\x02\x98\x7d\x15\xee\x06\x95\xff\x9a\x13\xbe\x71\xd2\xb8\x55\x0c\x4e\xf3\xf7\x4d\x1e\x67\x73\x99\x4d\x36\xa7\xd9\x62\xc7\xe9\x98\x55\xee\x38\x9d\x1d\xa7\xf3\xc7\xe1\x74\x9a\xa4\xa4\x1f\xb3\xe3\x27\x50\xd5\xe7\x11\xfc\x4e\x42\x95\xea\x91\x66\x00\x9b\x91\x98\x45\x09\xb5\x36\x77\x00\xa2\xbe\xb8\xfa\x9c\xb2\x65\x99\xb7\x6c\x29\x05\x0f\x18\x37\x51\x83\xc1\x95\xab\x60\xc4\x6b\x09\xf6\x34\xf4\x98\x44\xe5\x17\x5f\x59\x87\x47\x8d\x91\x32\xcb\x03\x3a\x75\x3a\x95\x45\x4e\x22\x96\x69\xd0\x69\x6c\x83\x08\x9f\xfa\xaa\xb6\xf2\x63\x6c\x57\xe2\xb7\xb8\x93\x3e\xda\xfa\xcc\x0d\x40\xbd\xc6\xe7\x99\x1f\x92\xd0\xc8\x38\x84\x6e\xc7\x5a\xe1\x8d\x1b\xd7\x12\x90\x76\xac\xfa\xc3\x66\x97\x32\x2c\x1c\xbe\x24\x34\x37\xae\xf7\x5d\x28\xaa\x3f\x95\xae\xbc\xbc\xfd\x98\x52\x9a\xbc\x70\xeb\xf1\x35\x87\x22\x19\x9b\x65\x4c\x2d\xbc\xec\xb0\xb5\xdd\xe2\x88\x76\x59\x5c\x81\x5b\x6b\x4c\xbf\xac\x31\x34\x78\xeb\x2b\x7e\x2e\x00\xc9\x8d\x7b\x8f\x3b\x73\x1f\x50\x39\x45\xbe\x11\x39\x4f\x8d\xc9\xcd\x4e\x1b\x7b\xb9\x94\x68\xd1\xc3\x2b\x28\x18\x8b\x19\x5a\x5c\xcd\x05\x52\x5c\x63\x12\x07\x95\xa7\x01\x39\x99\xae\xcd\xb8\x5b\x38\x2a\xcd\x99\xe8\xcc\x1c\x70\xa2\x1b\x91\x85\x4c\x62\x85\x1d\xec\x22\x64\x65\x3f\xdd\xde\x8c\x3b\xe5\x59\xfc\xf1\x4d\x1f\x03\xee\xdb\xd1\xf5\xd9\xc7\x37\xae\x97\x71\xc5\x1f\xd4\x61\x5b\x00\x99\xd0\x23\xbf\x79\xbc\x01\x37\xa1\x2a\x7f\x2b\x65\x38\x0c\xdf\xb3\xc4\x0b\xa7\x8f\x81\x54\x99\x0c\x07\xbc\x0e\x9c\xdf\xc3\x43\x12\x7c\x86\xd1\x9d\x28\x4f\x88\x2c\xf2\xb4\xf0\xa9\xb2\xed\xa7\x8f\x75\x52\x4f\x7d\xcd\x6a\x01\x82\xdb\xee\xcc\xd3\x3d\xb4\x49\xdb\xf4\x37\xd8\x28\x38\x62\x64\xa3\xb3\xbe\x3b\xbb\x86\xf6\x64\x74\x56\xe6\x07\x82\xf5\x3c\x6d\x11\x21\x29\xd7\xbb\x02\x48\xfc\x69\x49\x82\x4d\x97\x74\x46\xd9\xd2\xfb\xbe\x6d\xb3\x8c\x95\x97\xdb\x0f\x2e\xc4\x72\xfd\xce\x32\x62\x58\xc6\x53\x56\xd1\x15\x1f\x0c\x04\xe0\xa8\x37\x01\x38\xda\x8e\x00\x1c\xed\x08\x80\xb3\x9d\x1d\x01\xf0\xec\x6c\x47\x00\x7e\x4b\x02\xd0\xf6\xeb\x74\xde\xe9\x9f\xac\x97\x88\x28\x08\x7c\xb3\xfe\x67\x90\x77\xee\xb8\xf3\x68\xa0\x3e\x57\x39\x9d\x26\x5c\x2d\x58\x4f\xb6\x44\x1f\x5e\x2e\x73\x9a\x38\xde\x85\x60\xab\x67\xd5\x48\x7a\x27\x44\x31\x85\xfa\xb8\x36\x30\x05\x5c\xf4\xfc\xeb\xeb\x45\x35\x03\xeb\x3b\xfa\x4a\xeb\xbb\x94\xf9\x97\x03\xa1\x90\x62\xf0\xab\x2c\xf3\x69\x90\xfc\x1a\xcb\x84\xa8\xa5\x7e\xe0\x1b\x63\x53\xf7\x61\x04\xe8\x59\xc7\x62\xd5\x8f\x51\x27\x9d\xd1\xe5\x01\x81\x07\xfc\x12\xea\x2a\x8e\xf2\x0d\x2e\xd7\x10\xa6\x20\xdd\xab\xea\x99\x8e\x27\xe8\x4f\x16\xd8\x41\xc0\xab\xec\x7e\x21\x15\xab\x54\xf0\xe4\x9e\x11\xea\xf7\xca\xa9\x3e\xa5\x22\xe3\x0b\xe4\xe1\x01\x99\x6e\x8b\x94\x32\x1c\x3d\xd9\xcb\x27\x24\x23\x19\xa3\x4a\x0a\x78\x87\x4d\xde\xf7\xb6\xe7\xac\xf7\xba\x3a\x9e\xb4\xe6\xba\x60\x35\x46\x99\x00\x74\x19\x6f\x04\x8e\xf3\x05\xd6\x03\xad\x7a\x2f\xe7\x76\x9d\x32\xc7\x44\x57\x39\x5d\x5a\xb7\xb9\x5a\x20\x44\xfb\x69\xaf\x38\x2d\x51\x76\x90\x9b\x4a\x56\x4b\xa6\x16\x07\x1a\xfa\xfa\x57\x26\xca\xe2\x07\xd6\x49\xa9\x2d\x81\x05\xc1\xc2\x31\x03\xfb\x86\xc1\x8d\x32\x2a\xf3\xa7\x02\xaa\x8b\xff\xee\x4c\x07\x81\x94\xa8\x17\x85\x44\x4a\x74\xd4\xa0\x44\x47\x3b\x4a\xd4\xb1\x83\x1d\x25\xda\x6e\x5d\x3b\x4a\x64\x3e\x7f\x24\x4a\xd4\xe2\xa2\x3e\xf0\x31\xef\xfd\x9a\x1d\x85\x9b\x35\x59\xd9\xde\x2d\x3d\x63\xb6\xed\x5d\xdf\x0e\x54\xc4\x77\xfa\x9a\x5c\x54\x4d\xd1\x34\x98\x5b\xbb\xfa\xa6\x5d\x10\xf4\x21\x19\xb4\xf0\x41\x1b\xe2\x35\x37\x34\xf1\xc6\x54\x08\x17\xb6\xb2\xe0\x81\x7e\xb9\x9c\x20\x18\x1c\x75\xfd\xee\xf4\xf5\xeb\xd7\xdf\x83\xfe\x1d\xf3\x39\x43\x08\xdb\x87\xdb\xd3\x16\x25\xbd\x9e\x63\xe0\x5f\xa4\x28\x12\x53\x71\xcb\x2d\x40\xdf\x04\xaa\x1f\xe9\x30\x1e\xab\x0b\x9e\x20\xfb\x5b\x3b\x94\x32\x9d\x08\x18\xeb\xad\x01\xda\xd8\x6e\xda\x65\xe1\x27\xa9\xc0\x71\xd6\x7e\xbc\xfe\xb5\x69\xbb\xc1\xec\x9b\xa5\x7f\xa5\x87\x15\xa6\x6d\x7b\x59\xc3\x81\xbf\x7d\x00\xd4\x0b\x4c\xe5\x02\x73\x2e\x40\xff\xd4\x9f\xe4\x9e\x55\x9d\xca\x00\x25\xbd\xe0\x2f\x40\xfb\xe7\x34\x67\xf7\x74\x8b\x3c\xa0\x3f\x60\x87\xd2\xe7\xdb\xd9\xd0\x17\x58\x4e\x59\xb5\x6b\x0b\xe6\xc3\x76\xf1\x2d\xe9\xe9\x2b\x4a\x18\xcd\x04\x8b\xdf\x65\x72\xd9\x7f\x4d\x17\x55\xa7\x0a\xeb\x5c\x6b\x74\xc6\xe6\x34\x8b\x5b\x27\x26\x48\xe4\x32\x13\xb5\x0a\x07\x6e\x83\xd7\x43\xbe\x77\xf6\xd3\x0b\x15\x49\x3f\x4e\x6f\x63\x73\xa3\x99\xf1\x8f\x47\x4e\x40\x55\x49\x73\x65\x66\xdf\xdc\x03\x12\x4a\xeb\xe5\x7e\x1a\x4c\x23\x6a\x3e\x4d\xd4\x2e\x13\x39\x29\x94\xb3\xf7\xd6\x0d\x93\xde\xe7\x49\xca\x38\x89\xdb\x2e\xb6\x67\x63\xe7\xb0\x61\x1b\xe6\x88\xfe\x2a\x78\x42\xd4\x1c\x0f\x57\x16\x5f\xba\x37\x0f\x61\x91\x5f\x6a\x4f\xdd\xbc\x09\x79\x2a\xa3\xc7\x9d\x43\xaa\x3c\x41\x41\xe7\x1c\x70\x05\x70\xf6\x2a\xb3\x7b\xc4\x77\x02\xc9\xbc\x7f\x73\x66\xac\x7c\xb5\x7a\xc9\x85\xe6\xd5\xda\x14\x0c\x77\xaf\x56\xcb\x46\x76\xaf\x56\xcb\x82\x76\xaf\xd6\xe6\x67\xf7\x6a\xed\x5e\xad\x50\xab\xdd\xab\xd5\xda\xfd\xdf\xd2\xf3\xff\x6b\x85\x1b\x9a\x7c\x33\x0e\xe5\xfa\x2a\x4e\xf9\x26\x7d\x6d\x35\x0b\xfe\xea\xb8\xe5\x6f\xb4\xf0\x38\xe6\x6f\xae\xd5\x9c\x4b\xe5\x99\xbf\xd1\x64\xf2\x7b\xa9\x86\xb8\xb9\xc3\x46\x3d\x44\x93\x65\xb8\xcc\x3d\xe5\xf7\x7d\xdd\xf9\xfb\xef\xfc\xfd\xdd\x23\xd8\xf9\xfb\xff\x7a\xfe\xfe\x1b\x37\xb8\xad\x18\x22\x76\x9d\x7a\x5e\xb8\x70\x9e\xaf\x36\x27\x7f\x20\xb1\xfe\x3b\xbe\xb9\x52\xb7\xb1\x35\x87\xac\x2a\x8f\x1f\xa3\xe8\x34\xc1\x8b\xe5\x6a\x7c\xcf\xac\x26\x02\x85\x10\x2d\x7e\xf4\xfe\x67\xdc\x0c\xf9\xc3\x07\xaf\x77\x96\x0f\xae\xba\xa9\x5d\x2b\xfc\x6d\xf8\xb0\xe0\xe2\x7a\x4c\x1f\xe0\x00\x7d\xd3\x03\x33\x64\x0e\xcd\x09\x8e\x78\xd2\x2a\xca\x42\xe1\xd7\x8c\xc6\x3e\x11\xac\x2e\x04\xd6\x5a\xdb\xf4\x79\x24\x2e\x80\x44\x28\x3e\x17\x10\x4b\x22\xf2\x6a\x5c\xb2\xe4\xf3\x5a\x59\xe0\xc6\xda\x24\x74\xa3\x89\xa9\x7d\x98\x4a\x01\x02\xb9\x2a\xa2\x05\xa1\x8a\xbc\x63\x09\x7f\x30\x89\x34\xca\xf4\x37\xf7\x94\xeb\x5b\x3e\x93\x81\xfc\x24\x51\xc4\x94\xb2\x14\xaa\x5c\xc9\xb6\x79\x10\x57\x34\xe3\xb4\xdb\x13\xfd\x23\x36\xab\x82\x56\x30\x42\xc1\xf4\x76\x70\xd9\xa9\xf5\x01\x71\x27\xbb\x44\x14\x4f\xe4\x0c\x67\x1a\x37\xbe\x7a\x7d\x6c\xc0\xc0\xd6\x0a\xd9\x9b\x2d\x36\x39\x43\xcf\x5a\x9b\x9c\xe1\x66\x93\xdf\x0d\x67\x88\xb7\x70\xab\x52\xd9\xd0\x65\xc7\x15\xee\xb8\xc2\x1d\x57\xf8\x5b\x73\x85\x9b\xf4\xa9\xab\x44\x36\xde\xf7\xc7\x16\xc9\x4e\x12\x79\x3f\x1a\x8f\xc6\x63\x1a\xdd\xb1\x5c\xbd\xcb\xe4\xf2\x93\xcc\xee\x12\x49\xbb\x63\x00\xf7\x4f\xda\x7a\xdb\x98\xff\xca\x51\x05\x56\xea\x63\x02\x4c\x45\x9d\x98\x50\x92\x15\x09\xa4\x28\x8e\x33\x99\x12\x3d\x34\x61\x22\xa2\xa9\x2a\x12\x70\x5d\xc8\x33\x3a\xd3\xd2\x2c\x56\xf6\xb1\x53\xf9\xc6\xac\xca\xb1\x01\xf9\xdd\xba\x1e\x1b\x40\xe6\xe3\x4f\x17\x27\x97\x8f\x07\x4d\xb0\xfb\x17\x80\x0d\x8c\xfd\x9b\x01\xe7\x5e\xdd\x64\xd1\x99\xca\x4f\x17\x2c\xba\xeb\x04\xc6\x0d\xcb\x8d\xfe\x73\xe0\xe8\xda\x07\x91\xee\x4c\xa4\x20\x27\x9f\x6e\xc8\xf9\xe9\xab\x32\xc2\x55\x0d\xc9\x89\xe1\x77\x7c\xab\x5f\xd5\x2b\x60\x63\x91\x92\xc9\xde\x99\xbc\x94\xf9\x42\x5f\x4f\x28\xd1\x85\xe5\xfd\x6c\x0d\xb2\x33\x8c\x20\x9d\xec\x75\x54\x6f\x2f\x07\xf1\xc1\x84\x89\xc2\xa7\xd4\x1f\x54\xbd\x7c\x3f\x9a\x85\xf8\xba\x99\x45\x6d\x25\x05\x4c\xd3\xd9\xa9\x14\x82\x45\x10\x0b\x54\x55\x42\xe1\x62\xde\xb7\x0e\xe2\xdb\xf1\xbb\x8e\x21\xd0\xc9\x87\x0b\xf2\x76\xfc\x8e\x2c\x65\xec\x2f\x9d\xed\xc7\x62\x3c\xc6\x24\x29\xb9\x0d\x3d\x91\x3e\xef\x9c\x2f\x19\xd1\x38\x49\xa6\xb6\x56\x4d\x30\xfd\x9f\xe9\xe6\xe9\x83\x1e\x45\xe8\xd1\x55\x9a\x70\x16\x52\x41\xb4\xb0\x66\xd8\xa7\x70\x4b\x7c\x83\x66\x8c\x46\x0b\xb7\x8c\x8e\x29\xf7\xa3\x4c\x0d\x79\xc2\x97\x69\x06\xf9\x97\x4d\x1c\x33\x88\xe6\x22\x02\x04\x4b\x65\x3c\xc8\xe5\xa0\xad\x90\x58\xb9\x55\x85\x1b\xc3\xa4\xcc\xc6\x95\xd1\x09\x63\xc6\xb0\x5b\xbd\xf6\x98\x4d\x0b\xac\xa7\x9f\x16\x59\x2a\x95\x46\xfd\x76\x04\x7d\x54\x71\xc9\x69\x3a\xd3\xe2\xe0\x68\x46\x23\x36\x36\x15\xc9\x3b\x90\xe4\xed\xf8\x5d\xb3\x0b\x72\x13\x19\x03\x1e\x98\xb0\x07\xcd\x0e\x00\x9b\x07\x22\x9f\x45\x06\x2f\x11\x03\x31\xab\x34\xd6\x59\x51\xd1\x70\x71\x34\xcf\xf5\xb9\x68\x54\x4b\x33\x39\xcf\xe8\x12\xd8\x37\x2e\x88\xcc\x62\x48\xbb\xea\x85\x36\xcd\xa3\x45\x49\xf3\x72\x79\x58\x32\x1f\x82\xe5\x9a\xfa\x0d\x4d\x46\x24\xc1\x58\x0c\x03\x2e\xb1\xc7\x82\x39\x2b\xf1\x82\x58\x6f\xc7\x16\x7b\x33\x64\xb4\x22\xae\x90\x94\x40\xae\x58\xd6\x2c\xec\xd6\x63\xd0\x05\x15\xb1\x3e\x7f\x11\xc9\x25\xf0\x5f\xe5\xea\xc1\x54\x8c\xbe\x64\x98\xed\xd3\x20\x26\x6c\x4a\x16\xb9\xe2\xfe\x52\xa4\xae\xf6\x87\x90\x51\x29\x76\x6b\x2e\xaa\xda\x6f\xb9\x0b\xe7\x08\x9e\x15\xaa\xa0\x49\xe2\x35\xd1\x6b\x39\x24\x06\x25\xd1\x70\x38\x7c\xbe\x65\x36\x01\x8d\x6c\x88\xe8\x1f\x44\x9a\xf1\x15\x4f\xd8\xbc\x1f\x51\xf2\x74\x3b\x20\x7c\x66\x6b\xac\x1e\x58\xb4\x61\x26\x82\xf3\x4e\xdf\xe3\x64\x58\x38\xed\x3f\x4f\xd3\xd9\x67\x73\xcf\xbc\x8f\x87\x5a\xab\x28\x4f\xdc\xdb\xe8\x76\x87\xb4\xb4\x72\xa6\x71\xd1\xa2\x0f\x13\xaa\x28\xab\x54\xbb\x6d\x7d\xa3\x17\x4a\x73\xc5\x11\x72\xb1\xa8\xdb\x30\x98\xb4\xbf\xaf\x90\x98\xd2\x14\x8f\xd8\x34\xe2\x42\x69\x09\x26\x5f\x30\x9e\x11\x79\xef\xb5\x40\x6f\xde\x0c\x7d\x8a\xcc\x14\xea\xaa\x26\x78\x72\x11\xda\x69\x3a\xdb\xe2\x0d\x39\xb7\xc7\x52\x1d\x91\x39\x21\x60\x5a\x6c\x49\x0d\xbd\x7a\xcd\x21\xa7\x09\x15\x7e\xab\xec\x53\xd9\x11\x58\xf6\x4c\x66\x11\xbb\x1e\xbf\xeb\xb7\x72\xdb\x9a\x30\xfc\x13\x70\x39\xca\x89\xfe\x4a\x0a\xa8\xa4\xe0\xdc\x15\x0d\xe6\xce\x83\x41\x1b\x7d\x62\x0c\xd4\xf7\x26\x9f\xac\x79\x49\x06\xce\x68\x32\x33\x0e\xd5\x5e\xfc\xc4\xb2\x26\x43\x32\x96\x4a\x71\x8d\x9f\x86\xdd\xa7\x19\xb3\x0c\x43\xac\x87\xb8\x81\x05\xbb\x47\x8e\xdf\x84\xa1\x17\xbc\xae\xe7\x0f\xf9\xad\xb4\x65\x24\xa5\x10\x4b\x9a\x75\x33\x75\x1a\x8c\x9e\x7e\x35\xa6\xc1\x3e\x0a\x84\x92\xd7\xaf\xa6\xdc\x9f\x60\x4e\x77\xb2\xd9\x77\x4d\x65\x79\xe7\x25\x45\x0a\x48\x05\x61\xb6\xb8\x20\x8a\x93\x98\x95\x1a\x92\x24\xfb\xc1\x08\xab\x32\x65\x15\x60\x0e\x93\x4f\xa6\xb0\xa9\x6c\x61\x61\x0b\x79\x4f\x52\xe4\xd0\x51\xa0\xc2\x97\xcc\xcc\xee\xd5\x58\x66\xc6\xa8\x1d\x3b\xe5\x3b\x91\x01\xb1\x69\x7c\x8d\x0b\x02\xe4\x44\xd6\xc7\x9e\x66\xb6\x20\xc8\xf5\xf8\x9d\xf7\x2d\xd3\x9c\xb0\x7b\x94\x2f\xc2\xa7\x18\x08\xfd\xc3\x63\x04\x08\x99\x13\x79\xdf\x23\xf9\x8c\x39\xc5\x66\x37\xef\x21\x2a\xd8\x9b\x73\x34\xbe\x9d\xb8\xef\x55\xcd\x10\x09\x55\x09\xcc\xa3\xf6\xcc\x54\x4c\xb0\xaf\x9d\x53\x12\xd5\x5b\x47\x47\x83\xdc\xb8\x04\x68\x31\x47\xda\xe4\xcf\xa5\x8c\xa3\x9f\xbe\x19\x20\x4f\x2e\xc9\x64\xef\xb6\x10\x82\x25\x93\x3d\x4c\x36\x3e\x95\xfe\xcb\x6b\x14\x0f\xb0\x82\x8c\xa9\x54\x0a\x4d\xb0\xcc\x8b\xac\x6f\x2e\x8c\x82\x13\x36\x32\x4e\xc3\x7c\x81\xdb\x8b\x4b\x38\xbb\xb9\xd6\x62\x08\xf6\xc3\x79\x7c\x43\x4f\x8b\xdc\xb4\xa9\xcf\x1f\xb0\x9d\x80\x97\x4b\xcc\x33\x16\xe5\xc9\xda\x9b\x0b\x5b\xaf\x4c\xd8\xf9\xcd\xf9\x55\x4d\xbc\x6f\x3d\x64\x18\x4f\x53\x46\x33\xe5\x56\x42\x1a\x8d\xad\x86\x81\x63\x41\x49\x68\xf9\x67\xab\xb3\x03\x06\x5c\x11\xea\x1b\x32\x65\xd9\x92\x2b\xc5\x57\x8c\x5c\xbc\x72\xd8\xb1\x0a\xbf\xf1\x84\x1e\x41\xaa\x34\xf3\x3e\xce\xe4\xc3\xfa\xdc\x68\x98\x6e\x12\x8d\x52\x3d\x5f\xad\xb7\xe3\x77\xed\x03\xf8\x11\xdf\xcf\xd2\x3a\x22\xcf\xbe\x22\x6c\x39\x65\xb1\x46\xcf\xbb\x62\xca\x06\xa9\x9e\xc1\x28\xed\x15\xa9\x4f\x15\x76\x69\xe9\x7a\xe4\xca\xb5\x8f\xd2\x5c\x2f\x57\x9d\xea\x86\x45\xba\xc5\x9b\xdd\x31\x44\xed\x2d\x47\x58\x78\x69\x36\x80\xc7\x79\xeb\xd3\x4c\xa2\xa1\x24\x59\x93\x48\x8f\x48\x0a\xac\xf9\x55\xa4\x2a\xcf\x18\x5d\xba\x52\x57\x05\xa1\xfd\x7d\x7f\x86\x7d\xb3\x36\x12\x2d\x28\x07\x61\xea\xa6\x5e\xe4\xa6\x5c\xe1\xcc\x05\xb7\xc9\xde\x6e\x0c\x8c\x5f\x4b\x90\x2a\x21\xf8\x9e\x8b\x9b\xb5\x88\x30\x07\xd6\x56\xb0\xaf\xf5\x3c\x08\x10\xdb\xdc\x2f\x18\x2f\xb9\x80\xac\x56\x20\x18\xdb\x7a\x01\xa8\x2c\x2d\x95\xde\x25\xb7\x55\x69\xf7\xf7\x1d\x14\xf5\x0d\x5b\x81\x71\x48\xc8\x85\xbc\x67\x99\xe5\x3b\xe6\xfa\x1a\x67\x2c\x2e\x22\xa6\xe5\x92\x7c\x50\xa4\xa0\x55\x17\x91\x6e\xfa\x23\x9f\x2f\xca\xb6\x7e\x2a\xab\x7b\x5a\xab\xc4\xf8\x03\x29\x14\x9d\x33\x48\x96\xa1\xc5\x13\xf0\x09\x4b\xc9\x52\x66\x48\xce\x6b\x54\xe2\xa5\x7a\x04\x85\xb8\x90\xf3\x0b\xb6\x62\xbe\x6a\x2a\x1b\x27\x62\xdb\xd6\xa0\x4e\x12\x39\x27\x09\x7c\x6d\xd3\x59\x38\x6c\x5e\x80\x16\x94\xca\x92\x0a\xf6\x4b\x24\xc7\x57\x56\x3f\x75\x35\x9b\xa1\x66\x6a\x24\x66\x52\xff\x85\x8a\x29\x36\x2d\xe6\x93\xbd\xb0\x26\x24\x91\x73\x64\xfe\xd8\x92\xe7\x79\xf5\x1c\xe9\xc9\xf2\x8c\x46\x8c\xa4\x3c\x65\x07\xd6\x92\xaa\x39\x46\x90\x0a\x50\xf9\xb2\x5c\x06\x2a\xc9\x4f\xf6\xf2\x88\xb0\x07\x16\x69\x98\xa1\x1e\xa2\xa6\x1c\x23\x57\xb3\xd9\xdf\x87\xdb\x83\xff\x3d\x4d\x6f\xf8\x3f\x80\x1d\xd4\xab\xeb\xc5\x47\x36\xfb\x54\x12\x9e\xe2\xff\xa8\xfc\x74\x23\xfb\xbb\x9f\x8d\x4c\xad\xc4\xb6\xa4\x69\xa9\x1d\xc4\x0a\xff\x4c\xc8\x62\xbe\xd0\x90\x5b\xc8\x04\x0a\x57\x30\x91\x67\xe8\x94\x0c\x3a\x21\x24\x5e\xed\x4a\x9d\x21\x21\x9f\x68\xa6\x49\xcb\x31\x86\xa4\x96\xf1\x72\x7a\x91\xd6\xb0\x5f\xee\x41\xaf\x22\xf2\x57\xcd\x89\xa8\x7e\x64\x63\xae\xb2\x02\xa0\x10\x06\x73\x98\xd9\x33\x30\x1b\x8d\x6f\x58\xde\xa9\x8e\xae\x60\x8c\xed\x3d\x00\xe6\x29\x7c\x67\xc1\xc8\x02\x0e\xb9\xb6\xd1\xb6\x00\xb6\x06\x21\xff\xd1\xe5\xd1\x02\xf9\x63\xb6\x62\xd9\xda\xa4\x7b\xd4\x8b\x12\x8e\xef\xec\xa1\xa3\x3b\x36\x7d\x20\x4a\xd0\xf0\x17\x5e\x46\x44\x26\x1c\xc8\x94\xad\xfe\x52\x39\x2b\x4c\xf6\x68\x92\x3c\x7b\x3e\xd9\xd3\x87\xa4\xf9\x2f\xa8\x03\x22\xcc\x7e\x6c\x71\x37\xe9\xe5\xf2\xf4\xde\xb8\xe6\x63\xa5\x60\x66\xa3\x29\xcb\x2a\xa3\x17\xb7\x2a\x31\xaa\x58\x58\x7b\xd2\x7d\xb6\xb3\x9b\x40\xbc\x72\xe8\x70\xb1\x83\xef\x74\x67\x18\x59\x5d\x1e\xaf\xf7\xd9\xad\x1a\x6d\x7b\xbc\x31\x0b\x29\x45\x9f\x81\x64\xf4\x3f\x2b\x5e\xfd\x39\xc8\xd7\x20\x30\x3d\x1e\x34\x97\x27\xb7\x36\xc3\xbb\x07\x3c\xfd\x07\x79\xab\x45\xbf\x0d\x43\x6a\x0b\x88\xab\x3e\x1e\x28\x0b\x9a\x93\xa9\xbe\xfb\x0c\xec\xc9\x69\x38\x4b\xbb\x51\x0c\x34\x93\xc2\x58\x0c\xb2\xe5\x00\x35\x31\x93\x4a\xf3\xfa\xf0\x40\xe6\x0b\x3f\x3d\x69\x12\xa1\x6a\x40\x2b\x72\x3d\x09\xd2\xef\x32\x29\xf2\x6d\xa1\x64\x3b\x05\xc0\x34\xd3\x3f\xeb\xfd\x06\x69\xb9\x1d\xe0\x3d\x4d\x1d\x77\x9c\x7e\xf8\x18\x92\x73\xb4\xc8\x79\x50\x69\x12\x4c\xe5\x26\xc0\x60\x28\x43\xc5\x05\xfe\xc3\x6a\x0f\x1e\x0d\x35\x08\x20\xea\x0f\x2f\x8c\x37\xf2\xbf\x7a\x26\xd2\xa9\xf5\xe6\x56\x6d\xba\x40\x55\xa7\x58\xf6\x52\x7a\x85\x6e\x11\xeb\x6b\x4a\x45\x3c\x2b\x12\x44\x4e\xa4\x7a\xba\x23\x5c\xea\x67\xd5\xd8\x11\x28\xc4\x79\xae\x88\xbc\x17\x5a\x8e\x27\x01\xb6\x03\x25\x5f\x90\xf4\x1f\x01\xdd\xf1\xcd\xe5\xc9\xed\x58\x66\xde\x17\x8f\x8a\xf5\x95\xaf\xa0\xe3\xa0\x2b\x67\xd2\xa0\x23\x82\x60\x83\x5f\xa9\x96\x51\x9d\x59\x46\xc5\x9c\x19\xd3\x2b\x58\x3b\xee\xe1\xbb\x58\x2e\xfd\x2a\xf6\x94\x47\x77\x84\x1a\xb4\x83\x6b\x9b\x31\xe3\xae\x81\x9e\x18\xf0\x4b\x24\x93\x84\x2b\x60\x3e\x80\x20\x94\xa7\xeb\x37\x15\x97\xea\x28\x96\x2e\xd8\x92\x65\x34\x31\xeb\xa2\x36\xa1\x2c\x6a\xa1\xde\x9d\x92\xa3\x17\xdf\x1e\x91\x67\x2f\x5f\xbc\x7a\xf3\xff\xfd\x3f\xff\xef\xd1\xb7\xdf\xbe\xfe\xf6\x79\xe8\xcc\x52\xa8\xc9\x48\xa7\xc9\xba\xa6\xd9\x69\x4e\xa2\xca\x34\x78\x9a\xed\x94\x82\xc8\x94\x65\x34\x94\xa4\x59\xad\x55\xce\x96\x6a\x48\x2e\xb8\x28\x1e\x74\x57\x45\x5e\xbf\xfa\xd3\xd1\x77\x7a\x39\x2f\xbe\xff\xfe\xfb\x03\x0d\xc7\x84\x61\x1d\xc6\x92\x0e\x96\xda\x89\x93\xcb\x13\xdf\xb0\x76\x97\xb8\xed\x37\xdf\xbf\xfc\xf6\x95\xdd\x9f\x4d\x47\xa0\x65\x44\x2c\x89\x4a\x33\x9e\xac\xf5\x21\x64\x72\x9a\xb0\x25\x9e\x83\xbf\xe8\x1b\x8e\xa7\xb1\x3c\xa1\xa9\xaa\x38\xec\x72\x8f\xd5\x86\xde\x96\x35\xd0\x6c\x9c\x92\xee\x1b\xd2\x6b\x71\x11\x25\x85\xe2\x2b\xe6\xf2\xde\xaf\x5e\xbc\x78\xf1\xe2\xf8\xd5\xf7\xdf\x7f\xff\xbd\x4f\x02\x4a\x8d\x09\x8f\xfc\xef\xe1\xff\xd8\xfc\xf5\x61\x50\x95\xc9\x1c\x70\x91\x0f\x64\x36\x40\xd4\xf6\xa7\x43\xd0\xf7\x0a\xf8\x24\x10\x45\xfa\x6b\x52\x36\x3b\xa1\x20\xa4\xe7\xb0\xca\x81\x8c\x45\x32\x8b\x35\xf2\xe5\x94\x07\x2c\x32\x6e\x9c\x1b\xa6\xee\x2e\x65\x2e\x98\xa1\x14\xbd\x0e\xcc\xcd\xd2\x0c\xdb\x94\x11\xf6\x40\x97\xa1\xf2\x95\x95\x04\x04\xb6\x91\x81\x96\x71\x8c\x30\x34\x48\xb8\xd0\x2f\xaf\x4c\xb6\xd5\xc0\x80\x36\x62\x04\xf6\x9a\x5e\xba\xd5\xd3\x7a\xfb\x90\xb9\x7c\x21\xe5\x9d\x6b\xcf\x0a\x28\x45\x72\x99\x0e\x50\x2a\x6d\xa8\x47\xf4\x8d\x43\x2b\x92\x46\x43\xe3\x26\x62\x5c\xb1\x73\x99\x1a\x2c\xf4\xab\x9d\x29\x18\x59\xa1\x0c\x66\x9a\x32\x11\x6f\x8e\x30\x95\x79\x2e\x97\x43\x6b\xa7\x32\x8c\x8b\xa2\x33\x66\xab\xe7\x79\x6f\xb7\x4d\x2f\x6d\xea\x17\xbb\x56\x30\x3d\xba\x51\xeb\x63\x4c\xd8\x74\x9d\x52\xa5\xc0\xd7\x6b\x46\xd6\xb2\x20\xea\x9e\xe7\xfe\x47\x3c\x97\x66\xa1\x46\x5b\x32\x65\x44\x61\x3d\x3a\xb3\x5c\xac\xda\x8a\x53\xd8\x22\xd8\x08\x25\x74\x5d\xf6\x5e\x43\x50\xd3\x81\x9d\x7f\xba\x26\x33\x9a\x24\x28\xd9\x65\xf6\x75\x73\xb2\x79\xc0\xc8\x07\x38\xcd\x3d\x47\x62\xe4\x1b\xd3\x34\x37\x18\x0c\x3a\xb2\x29\x73\x76\x5a\xdd\x75\x04\xec\xb6\x8a\x8e\x52\xcd\x70\x96\xf1\x15\xeb\xac\x7e\x79\x56\x6f\x4e\x66\x3c\x61\xc2\xa9\xba\x5b\xb2\x44\x95\xfa\x22\x86\x96\x81\x43\x28\x14\xaa\x36\x90\x22\x83\x22\xee\x83\x62\x23\xe3\x56\xd9\x9c\xcd\x18\x76\x72\x89\xf6\xbd\x2d\xed\xc9\xe5\x92\x3e\x69\x99\x2f\x96\x90\x1a\x56\x16\x9d\xce\xde\xfb\x67\x81\x8e\x16\x89\x33\x46\x63\x2e\x98\x52\x87\x09\x5f\x31\xfd\x87\x2d\x57\x1f\x30\xed\xc6\x75\x7d\xda\x33\xeb\x46\xfa\x7c\x03\x6c\x43\x32\x12\x51\xc6\xa8\x32\xd1\xb8\xc1\x4a\x8b\x1c\x31\x9e\x3d\xa4\x2c\xe3\x4c\xa3\xa0\x4a\x8b\x8c\xcb\x42\x41\x72\xc8\x0c\x7c\xf7\x41\x61\x2c\x06\x7a\x95\xc4\x5c\x27\xa0\xb4\x41\xa7\x31\xae\x48\x21\x62\xcd\xa7\x31\xba\x5a\x83\xff\xcc\x90\x9c\xb1\x72\x45\x36\xe7\x6e\x2e\xc9\x9c\xe5\xe8\xcd\x8c\x76\x15\x2c\x1e\x6b\x26\xf3\x0d\x6d\xd6\x82\x0b\x03\xa9\xe4\xbf\x0a\x1e\xdd\x25\x6b\x17\xa7\xbf\x7f\xb1\xb5\xe6\x0e\x34\x50\xc6\xbe\x79\x21\xe7\x67\x99\x4c\x53\xfd\x64\x6d\x49\xa3\x61\x98\xf7\x6c\x29\xb3\xf5\x38\x93\x1a\xcd\xc7\x34\x5f\x04\x47\x69\x59\xcb\x0d\x5f\x82\x5f\xdd\x29\x4d\xa2\x1f\x32\x9a\x2e\x7e\xa4\x62\x7e\x32\xcb\xbd\x97\xad\xf7\x68\x25\x4e\x3e\x7e\x34\x80\xb1\x35\x29\xdc\xca\x1f\xa5\xca\x4f\xa2\x40\x82\x80\xc6\x85\x08\xf7\x75\x1f\x27\x70\x54\xd1\x54\x56\x05\x5c\x6f\x4a\xb7\x15\xdd\x74\x2e\x2d\x35\xa7\x95\x9f\x49\xe5\xff\x2b\x2b\xf3\x28\xcf\x15\x4b\x66\xe4\x19\x9d\x05\xa2\x83\xe0\xc5\x32\x63\x2f\xb8\x61\xac\xcb\xa1\x18\x5a\xa1\x90\xa4\x3e\x1f\x92\xb7\xeb\xb2\x7e\x2b\x52\x5b\xdf\x90\x50\x47\x4d\xf9\x5d\x23\x2b\x71\xdb\xb7\x4c\x60\x21\xfc\xf2\x76\xf9\x00\x4f\xf6\xce\xae\xaf\xc6\x93\x3d\xd0\x1f\x6a\x26\xdd\x3c\x60\xf7\xd4\x18\xa8\x93\x44\xde\x13\x25\x97\x90\xd3\x8e\x26\x49\x9b\x7d\x0f\xd6\xe6\x02\x4e\xaf\xe6\x00\x29\x27\xa4\x78\xa3\x19\x5d\x32\x63\x4b\xbd\x3e\xbf\xfd\x70\x7d\xa9\x47\x3d\x39\x3d\x3d\x1f\xdf\x0e\x35\xfd\xf5\x8d\x6a\x1a\x1a\x3a\x03\x55\x79\xd7\xb2\x00\x57\x93\xfa\x33\xe9\x6c\x6a\x74\x39\xfe\x70\x3b\xd9\xc3\x97\xf3\xcf\x2d\xcf\x1b\xbc\x6b\x96\x33\xc8\xed\xd3\xde\xe4\x3d\x68\x8e\x23\x99\xe2\xcf\x93\x3d\x5c\x93\xbf\x32\xac\x35\xc6\x9b\x13\x69\x2c\x86\x48\xc3\x57\x2c\xa8\x82\x10\x24\xac\xa0\x97\x66\xd2\x86\x11\xb5\x89\xb4\x7e\x54\x02\xd0\x19\x30\xc2\xdb\x26\xca\xc0\x19\x9a\x24\xd6\x8a\x67\x17\x16\x3c\xb9\x52\xc1\x45\x00\xbf\x7d\x6b\x0a\x2d\xc0\x37\x66\x45\x4c\x35\x29\xdc\x9e\x9a\xae\x78\x84\x6a\x85\x71\x26\x73\x19\xc9\x4e\x7b\x08\xc8\x97\x6e\xc0\x06\x46\xee\xa7\xa6\x3b\xa1\xb1\x31\xbe\x1b\x76\x7c\xc9\xe2\x16\xb5\x1f\x6a\x24\x0e\x34\x43\x65\x2f\x29\x20\xb1\xe5\x84\xae\x6f\xc7\xd7\x57\xb7\x9f\xdf\x5e\x5d\xdd\xe2\x5b\x96\xb0\x59\x4e\xa6\x09\x15\x77\xdb\xea\x05\x9c\xbd\xde\x6c\x53\x86\xd9\x55\xc4\x41\x26\xb4\x7a\xed\x61\x6b\x0b\x97\xc2\xd9\xb1\x5f\xe4\xd4\xf3\x9b\x1d\xd7\xc8\x52\xbe\x51\x16\x19\x33\x3e\xd8\x9d\x1e\x90\x84\xd1\x55\x40\x40\xae\x04\x02\x50\xb0\x2c\xa4\x34\x4f\x77\x63\x44\xcd\x97\x6c\xcb\x51\x05\x20\x36\x1a\xaf\x7c\x59\x79\xda\xa0\x76\xf4\x07\x82\x1a\x32\x27\xa5\x95\x6a\x24\xa0\xc2\x4e\xc8\x05\xbe\x95\x4d\xb1\x84\xe0\xda\x26\x5d\x3d\x63\x89\x37\xab\x4e\xdb\x82\x36\x06\x09\xcb\xee\xed\x8b\x31\xcc\xff\xa5\x8c\x19\x54\x30\xec\xc2\x81\x73\xb7\xc3\xe9\xe8\xec\x5a\x77\x42\xe5\x55\xa2\xff\x92\x33\xa2\xbf\xdd\x07\x0d\x88\x1d\x7d\xa0\xd9\x46\x23\x8e\x43\xb1\x43\xbf\x25\x55\x0b\xf8\x4b\xba\xb6\xe7\x65\xf4\x85\xf6\xfd\x06\x0f\x2b\xfd\x86\xc1\x03\x53\x3a\xe8\x98\x5f\xfd\x6a\x31\x1b\x3a\x49\xc0\x22\x53\xd6\xd3\xf2\xe9\xc4\xbf\x42\x09\xb0\x19\xe5\x89\x96\x96\x47\x62\x2a\x0b\x11\x6b\x8e\x2b\xa4\xc0\xac\x33\x6b\xef\x02\x1d\xeb\x70\xfe\x70\x36\x3e\xbc\x3d\x1d\xa3\x33\x55\x48\x8d\xab\x0f\xc3\x38\xb0\x3a\x3e\x1b\xc8\x9c\xf8\x7c\x91\x81\x0d\x2a\x99\x23\xaf\x14\x20\x08\xcf\x32\xa6\x52\x53\x96\xcd\x26\xb9\x61\x51\x91\xf1\x7c\x5d\xbe\xac\x96\x5a\x14\x8a\xcd\x0a\xb8\x92\x74\x25\xb9\x5f\xdf\x1c\x45\x50\xfc\x0c\xde\xdc\xa8\x00\x2f\x48\x22\x67\x33\x63\x2b\x42\x7e\x4c\xaf\x36\xcb\x58\x94\x37\x02\x9e\xc8\x3b\x7f\x4a\x99\x29\x8d\xee\x06\xb5\xe2\xb7\x07\x36\x31\x4d\xf9\xb0\xd9\xa2\xff\xa6\x2a\x7f\x7c\xa0\xf9\x0b\x43\x8c\x42\x71\xd0\x93\xbd\x3c\x4a\x27\x7b\xc0\xf0\x51\x80\xaf\x7f\x18\x07\xd0\x2e\x0b\xea\xdd\x3f\xc6\xf9\x68\xea\xa4\x09\xe2\x6d\xe5\xa0\x8c\xce\xa8\x80\x05\x08\x0a\x38\xec\x83\x52\x17\x1a\x14\x2e\x85\x14\xe0\x01\x59\xaa\x6a\x8c\xd8\x67\x3c\x21\x95\x5a\x58\x1f\x65\x8d\x25\x67\x3f\x9e\x8e\x6b\x1e\xc4\x51\x7a\xfc\xea\x95\x37\xf0\xa3\x88\xd3\xe3\xa3\xef\x0e\xa0\xc9\xcb\x3f\x7d\x8f\x7f\xbc\x7a\x5d\xfd\xf5\xdd\x0b\xfc\xeb\xe8\xcd\x9b\xd7\xe6\xaf\xa3\xa3\xa3\xf2\xaf\x3f\xf9\xf8\x99\xf0\xe5\xab\xa7\x0a\xd7\xe7\x36\x96\xa8\x8b\x8a\xe4\x72\xea\x64\x3a\xb3\x67\x7a\x40\xd0\xd2\x63\x91\x3f\x90\x3e\x68\x5c\xf2\x36\x22\x46\x7d\xbb\x35\x7b\x96\xa7\xe8\xed\xd9\x99\x2e\x4b\x30\xbf\xcf\x11\xe9\x95\xad\x48\xaf\xa4\xa3\x7b\x4b\xfd\x07\x52\x42\xe1\xd1\x4b\x68\x49\x98\x4c\xc8\x00\xd6\x17\xf8\xc5\xcc\x1c\xa6\xa0\xed\xd5\x5c\x5a\x29\xe8\x55\x91\x3f\x92\x84\x6e\xf4\xfc\xc2\x34\x54\x16\xf9\x5c\xba\x34\x14\x04\x82\x6e\x2a\x9a\xcb\x1d\x15\xfd\x55\xa9\xa8\x34\x88\xf0\x65\xc8\xa8\x04\x15\x09\xcb\xa3\x78\x7f\x1f\x0a\x14\x88\x98\x66\xb1\xf1\x6b\xce\xa5\x89\x1c\x09\x56\x56\x47\x34\x8a\x25\xc3\x2d\xcf\x59\xae\x0f\x0c\x0e\x0b\x55\x01\x79\x14\xd7\x62\x8c\x34\x00\xf4\x71\x6a\x42\x1d\xb2\xd5\x9d\x5d\xde\x34\x69\xf8\x36\x04\xda\x7b\x50\x86\x66\x1f\x00\xd9\xff\xf6\x35\xfe\x77\x47\xc3\x77\x34\xdc\xfb\xab\x9f\x86\x33\x9a\x17\x19\x3b\x63\x39\x8b\xf2\xab\x15\xcb\x32\xde\x6d\x40\x7b\xe7\xeb\x54\x26\xb2\xc9\x25\x98\x63\x33\x6b\x8e\x36\x53\xf8\x71\x2f\xb7\x2e\x7c\x1f\xab\x60\x9a\x12\x3f\x08\x17\x84\xa2\x79\x90\x28\x96\xd2\x0c\xa2\xa9\xe1\x75\x00\x72\x29\xbc\x9a\x45\x95\xd2\x88\xa9\x03\x30\x43\xa6\x09\xfb\x33\x99\xec\xdd\x5c\x9e\xdc\xbe\x2b\x92\x64\x7d\x0d\x86\xff\xbf\x80\x25\xf4\xfd\xc9\xcd\xff\x72\xbf\x04\x13\xc8\xc1\x35\x83\x5c\x2c\x37\x45\x0a\xe4\xe2\x42\x46\x77\x7f\x99\xec\x79\x31\x75\xb2\x07\x56\x5b\x13\xc8\x8c\xc9\x44\xf6\x90\x26\x62\xe8\x92\xb3\xfb\x03\xc2\x96\x69\x0e\x16\x03\x69\xdc\x45\xc3\xae\xb9\x1a\x08\xb4\xc8\xe5\x00\xe1\xb3\xb5\x40\x3c\x4b\x24\x98\xbe\x47\xe3\xce\xa7\xf8\x5d\xd5\xb4\x2a\x51\x51\x19\x42\xd1\x23\xbe\xe1\x50\x3e\xcf\xa8\x97\xc4\xdb\x69\x9d\xe2\x27\x5e\x61\x2e\x18\xad\x6d\xc4\x64\xdf\x4f\x67\xc1\xc8\xc1\x36\x40\xcc\x99\x60\x19\x8f\x7e\x3a\x1b\xf7\xf5\xc4\xff\xa1\xd9\xc3\xb8\xb4\x2b\x62\x7e\x21\x3f\x9d\x8d\x89\x92\xd6\xb9\x91\x44\x34\xf3\x87\xf2\x03\x47\x12\x4b\xb1\xbf\x9f\x13\x85\xd8\x04\x7d\xe5\x6c\x06\x2a\x47\x99\x19\x93\x14\x58\x4c\x21\x36\x11\x5e\xbc\x9f\xce\xc6\xc8\x58\x04\xec\x47\xe0\x49\xcf\xf4\xa5\x60\x22\x66\x71\x65\xd1\xd5\x0f\x16\xcc\x96\x66\x72\xa5\x2f\xdf\x94\xe5\xa0\xef\xac\xc2\xa5\x03\xeb\x14\xa5\x8e\x79\xf8\xe4\x90\xbf\x05\xa3\x49\xbe\x78\xa4\xc2\x03\x3b\x6b\x6e\x70\x4b\x8d\x0b\x76\x1c\xfb\x69\x7b\x2b\x55\x2f\xc3\xff\xce\x1f\xa2\xa4\xe8\xe1\x3c\x30\x6a\x74\x40\x96\x15\x88\xd4\xa0\x41\xa4\xa0\xb2\x79\x67\xec\x71\x2d\xe4\x9a\x99\x41\x41\xf5\x6a\xaa\xb3\xeb\x2b\x35\x93\x59\x83\x6f\x1d\x86\x7c\xce\xea\xbc\x50\x2d\x4a\xd6\xa4\x01\x98\x0b\xa9\xbf\xaa\x22\x3f\xf6\xf7\xc9\x68\xfc\xf1\x86\xc4\xc5\x72\xe9\x75\x8a\x2a\xb7\x61\x5d\x3d\x2c\xb1\xb7\x96\xd6\x64\x4d\xa6\xeb\x5a\xb0\x42\xdd\xe2\xe2\xd5\xfa\x9b\xbd\x2e\x8b\x24\xe7\x69\xe2\x44\x7f\x63\x06\x29\x52\x28\x74\x7b\xd0\xff\xb1\xf1\x96\x18\x35\x95\xf0\xcd\xdc\x41\x04\x72\xd7\xa4\xa6\xee\xc7\x46\x30\xbc\x02\x2e\xda\xf7\x03\xac\x13\x98\x93\xfb\x8c\xa6\x21\xe5\x25\x82\x13\xde\x9d\xfd\xfd\xc3\xfd\x7d\x1c\xce\x3c\x32\x64\x01\x8a\x4f\x1b\x9a\xb1\xbf\x7f\xf8\xbf\x35\x2c\x0e\x0f\x56\x2c\x5f\xbc\xdc\xf7\x5c\x22\x93\x40\xc4\xc2\xa0\x11\xd7\x0a\xa7\x35\x65\x73\x2e\xec\x8c\x7a\xb8\xfd\x7d\x53\x7f\x5f\xc9\x90\x7b\x43\x05\xc2\xfd\x7d\x33\xb7\x7b\xa7\xe1\x80\x78\xba\x52\x2d\x71\x8c\xfe\x1b\x56\x0e\x3c\xce\xd8\x8c\x3f\xf4\xbf\x26\xd8\xde\x6a\xa6\xeb\x47\x0c\x1e\x6c\x65\x6a\xba\xb2\xc2\xbe\x17\x5a\x9b\xb6\x41\x88\xc7\x07\x39\x42\xbf\x3a\x05\x57\x0b\x34\x90\x2c\x3d\x62\x5e\x2b\xac\xd4\x90\x5c\xca\x1c\x68\x04\x61\x62\xc5\x33\x29\x96\x60\xcc\x97\xa6\x8e\x13\x15\x64\xaa\x1f\xe5\x25\xcb\x69\x82\x18\x28\xb3\x68\xc1\x54\x9e\xd1\x5c\xfa\x0b\x90\x95\xaf\x29\xda\x57\x68\xaa\x19\xdb\x8c\xd3\x9c\x25\xeb\x3a\xee\xc8\x22\x73\xa3\xb0\x40\xe5\x23\xa3\xbb\x40\xa2\x46\x4d\xc6\x4c\xf2\x33\x63\x82\xd4\x67\x1d\xd1\x84\xef\xef\xbb\x69\xb3\xf4\xa8\x57\x29\x13\x37\x39\x8d\xee\xdc\x6e\xde\x7b\x63\xbd\x25\xf7\xf7\x73\x9a\xda\x81\x5c\xcc\xd1\x13\x3c\x1a\x67\xae\xd9\x2c\x63\x6a\x01\x38\xb1\xa2\x9d\x16\xaf\x51\xa0\x9f\x13\xb6\xcd\x25\xa8\x8d\x91\x18\x05\xdd\x2d\x32\xa6\x22\x2a\x14\x46\x23\xd7\xee\x97\x24\x2b\x96\xf1\xd9\xda\xc4\xf7\x63\xdd\x30\x10\x25\xb1\x8f\xf1\x65\xf3\xd2\x57\x1b\xeb\x3d\x5d\xdb\xa0\xf0\x0a\xb5\x57\x98\x84\xf1\xc5\x96\x1c\x1b\x4f\x79\xef\x60\xc1\xd1\x78\x54\x32\x27\x96\xd1\x6e\xba\xae\x55\x69\xd8\x10\x07\xfd\xca\x13\xcc\xe3\x54\x5d\x49\x59\x85\x4c\x0f\xc9\x55\x8a\x86\xd6\x2a\x81\xa4\xe6\x46\xb3\xa5\x31\x43\xfa\xf9\x93\x29\xd5\x8f\x82\x19\x87\x3d\xe0\xcd\xd4\xfc\x60\x2a\x65\x52\xe3\x2e\x04\x4f\xc8\xb3\x42\x28\x96\x3f\xdf\x9a\xc7\xd0\xd0\x7a\x7f\xfb\xa1\x17\xa4\xde\xdf\x7e\xb0\x68\xa3\xff\x84\x68\xe7\xdc\xae\xd0\x18\x31\xd0\xe4\x35\x24\x37\xcc\xef\x32\x66\xa0\xa8\xb7\xa2\xc7\x70\xe2\xe0\xde\xbc\xd9\x3e\x20\x1c\x03\x7a\xb6\xbc\x12\xfb\x23\x5f\xaf\xd6\x0b\x41\x32\x86\x99\x9c\xfc\x32\x46\xe2\xf8\x2b\x62\x78\x49\x5d\x33\x42\x84\x34\xf4\xcf\x18\xcc\xc1\xb4\xef\xaa\xb1\xbc\x08\x90\xc9\xbb\xb2\x0a\x59\xe9\x54\xa8\x41\x0b\x9e\x13\x2f\x6a\xd9\x76\xec\xf4\x19\xee\xaa\x23\x03\xd4\x23\x7c\x97\xec\x0c\x3d\xa3\x49\x46\xf5\xe6\xa5\x20\x6a\xd3\x91\x4e\xcd\xf7\x9a\xaf\xb3\x6b\xd7\xaf\xb8\x17\x10\x0c\x4d\x99\x35\xf5\x14\x98\x4b\xe7\xd4\xeb\x59\xd0\x67\x1f\xef\x78\x92\xb3\x0c\x52\x98\x05\x3d\x8b\xfa\x8c\xa3\xa5\xda\x77\x61\x17\xac\x26\xe6\x6d\x76\xb2\x88\xa7\x09\xab\x5b\xcd\xc4\x4e\xe0\x83\x48\x22\xa3\x3b\xf0\x6f\x1c\x92\xbf\x69\x86\x8b\xae\x21\x03\x10\x9a\x83\xc1\x8b\x1b\x1e\x4a\xa3\xbf\x2c\x5b\x5b\x99\xc7\x5f\xa0\x8e\xe7\x8e\x82\xaf\x5c\xcd\xb3\x99\xf3\xbc\xba\x1e\x36\x4b\x9a\xa6\x0c\x33\x4a\x89\x5c\x96\x1e\x83\x81\xf7\x3b\xa7\x5c\xb0\x4c\x5f\x2b\x4a\x62\x3e\x9b\xb1\x8c\x89\x9c\xa4\x34\x5f\x3c\x77\x49\xd9\x61\x56\x88\xc3\x07\x23\x40\xe9\x75\x3f\x16\x4d\x35\x84\xc7\x99\x9c\xb2\x2d\xa8\x42\xa0\x67\x19\xc8\xc4\x97\xac\xa9\x1c\xf7\xb2\x57\x98\x0d\x18\xa3\x96\x69\x9e\xb3\x65\x8a\xba\x52\x1a\x81\xba\xaa\xee\x89\x04\x87\xc3\x67\x26\x5f\x96\x90\x5e\xf6\x8a\xae\x28\x87\x62\x7f\xc3\x7a\xdc\xf2\x92\xde\xd9\xb0\x63\x70\x53\x34\x29\x16\xf8\xca\x48\x3d\xf6\xf4\x03\xf2\x6f\x84\xd1\x47\x2c\x3e\x80\x24\x0d\x5a\x64\x86\x61\x4e\xc7\x1f\xdc\x43\xf9\xf6\xc5\xf2\xd1\xe4\x42\x43\xb3\xaf\x2f\xeb\x68\xb3\x4f\x1b\xec\x01\xd0\x5e\xe5\x89\x89\x2a\xaa\xc1\x18\x42\x91\x5f\x1c\x38\x44\x13\x34\xe7\x85\xf5\x5e\x2d\x95\x4b\x41\x0e\x08\xc4\x1a\xb5\xa0\xde\x13\x84\xeb\x85\xee\x74\x49\x52\x27\xf6\x46\x06\xf1\xbf\x1c\x5a\xfc\xd0\x87\x68\x4f\x6a\x48\x3e\xe9\x83\x33\xf1\xfd\x55\xb2\x39\xae\x05\x9b\xea\x22\x1d\x84\x83\x38\x6c\xd6\x0a\x3d\xa2\xbe\x4e\x26\x97\x86\xcc\xd6\x96\xb2\x38\x89\xe4\x96\xb2\x30\x25\x2b\x8d\x2f\x1a\x3a\x0f\x1c\x0a\xe9\x4f\xc5\x25\x33\xdb\x62\x66\x53\x72\xe2\x82\x6a\x89\x5d\x54\xc9\xd8\x3d\x16\x6d\xde\x53\x2d\xa6\x3e\x9d\x3a\xbf\xa7\xd9\xdd\x7b\xaa\xba\x23\xb4\x47\x8d\x0e\x16\xf1\x96\xfa\x6f\x57\xb7\x00\x41\xb6\x4a\x13\x4b\x1f\x7c\x46\xe3\x5b\x44\x0a\x3d\x0e\x99\x6a\x92\x0a\x35\x6d\x6c\x72\x87\x29\x83\x34\x41\xfa\x17\xb2\x60\x0f\x34\x66\x11\x5f\x56\xe1\x91\xa1\x1c\x4c\x34\x27\x09\xa3\x2a\x27\xdf\xe1\x98\x8a\xe5\x07\x60\xb2\xc1\x2c\x4c\x10\x30\x92\x50\xb5\xb0\x0e\x9d\x6b\x83\x81\x4b\xbb\x0a\xbf\xf8\x63\xbd\x98\xc0\x20\x07\xa1\x3d\xb5\x63\x7c\x98\xcd\x5e\xc0\xc7\x77\x8a\xb6\x42\x29\x17\xf9\xeb\x57\x5b\xb3\x6d\x08\xec\xcb\x93\xdb\x2b\x63\x56\x2c\xe5\x14\x7c\x97\x1f\x79\xdc\x63\xa9\xf2\x4f\x19\xcf\x19\x38\x2c\x6d\x4d\xfa\xfd\xdd\x9b\x9c\x21\x78\x3e\x06\xa9\x84\xe6\xec\x62\x7d\x32\x94\xdc\xeb\xa1\x36\xf3\x55\x94\xc9\xe3\xa3\x05\x8b\xd1\x99\x14\x32\x3f\x65\x14\xbc\xf5\x43\xc6\x49\x37\x57\x20\x26\x53\xc2\xb4\x77\x30\xc9\x3d\xc5\x97\x3d\x4a\xe4\x74\xca\x32\x94\xa8\xa8\xa8\xd1\xa1\x70\xa4\xae\x72\x32\x8f\xc8\x28\x2a\x32\xfd\x20\xd9\xde\x34\x4d\x13\x6e\x59\x13\x17\x57\x4a\x2d\x69\x40\x5c\x4c\x59\x94\x6f\x52\xca\xe1\x93\x72\x5f\xd8\xa1\xb6\x67\xf9\xbd\xfd\x1e\x21\x05\x1b\x39\xc0\xa6\x0f\x02\x69\xdf\x78\x17\x3b\x47\xdc\xce\xfe\x87\xf0\xa6\x66\xd8\xde\x86\xfd\x6f\xc9\x63\x50\x0a\x04\xa8\x96\xc9\x1d\x16\x1a\xdf\x49\x1b\xb9\x01\x1c\x35\x30\x17\xa0\xa4\x09\x28\xc5\x4c\xec\x11\x0e\x5a\xca\xe9\x0a\x6c\xb7\xa0\x58\xa2\x19\x18\x9f\xf5\xd8\xd4\xc4\x3d\x1a\x5f\xc5\x69\x31\x0f\x3e\x84\x1a\x7f\x67\xfc\x01\xed\x54\xa6\xbd\xad\xbe\xf1\x66\xf8\xf2\x65\xa9\x03\xd5\xaf\x2f\xea\x32\x57\xfa\x7b\xc8\x33\x97\x31\x1a\x70\xb6\x5f\x1b\xe6\xd8\xfa\xaa\x97\x7e\xe6\xb9\x3c\x20\x94\x2c\x9c\xc4\x2e\x18\x1a\x52\xcf\xe3\xe2\x1b\x12\x52\xbb\xd4\x90\xf8\x31\xb2\xd4\xea\xc8\x58\xc5\x3a\xe5\xa8\x71\xd9\x34\x14\x5b\x67\xad\x2a\xd6\x32\x12\xa8\x3c\x06\x8e\xac\xcf\xf8\xcc\xb6\x43\x1a\x81\xda\x96\x01\xe4\xea\xb0\xe8\x1b\x8e\x5a\x0e\x28\x11\xee\x8a\x29\xbb\x94\x31\x1b\xcb\x2c\xbf\x86\x30\xd9\xce\x0b\xf9\xd7\x8d\x2e\x10\xbb\xad\x4a\x6d\x3f\x6c\xc5\x8d\xb9\x0d\x6c\xcb\x84\xb1\x93\x2a\xdd\xda\xb0\x1e\xb3\x35\x2b\x15\x2e\xfa\xdd\x76\x52\x29\x05\x8b\xb4\xc0\xd3\xc8\xd3\x95\x32\xe9\x6d\x10\xcc\x05\x32\x72\x4c\x31\xbb\x2c\x40\x28\xb4\x52\x54\xb9\xf1\xda\x7c\xf3\x8d\x63\x87\x8b\x3d\xaf\x21\x0a\xf6\xf5\xab\x3f\x1d\xfd\xc9\x9b\x89\x26\xec\x6c\x10\x0a\x05\xef\x11\x0c\xde\x1d\x0e\xde\x15\x7f\xbb\x7d\x04\x6e\xab\xe9\x3c\x91\x73\x88\xb1\x7d\x67\x42\xf6\xae\xd9\x9c\x75\xea\xc5\x2f\x7c\x9d\xdc\x4b\xa2\x29\xb9\x71\xb1\x8d\x34\x76\x68\x1e\x3d\x40\x7b\xd1\xdb\x96\x67\x04\x46\x84\xec\x48\xb2\xc8\x53\x2d\x80\x08\xb0\x2a\xc4\x96\xc8\x27\x72\x6e\x31\x0c\xb2\x16\x85\x9c\x74\x60\x32\x63\x5b\x07\x0b\x0c\xbc\x04\x55\xba\xda\x39\x5f\x31\xe1\x4b\x34\x5c\x06\x4c\xc7\x2c\x0e\x67\x43\x98\x01\x9b\x84\x4f\x36\xbc\xd0\x88\x8f\x66\xf9\x10\x42\x0b\x2b\xdd\x8e\x30\x25\x72\xde\x5b\x97\x71\x51\xb5\xb5\xcf\xe8\xac\x48\x12\x90\xe9\x2d\xd3\x83\x37\x27\x91\x73\xfb\x6c\xf9\xb6\x02\x7c\xac\xf3\x98\x81\x28\x95\x48\x48\x19\x5d\xd3\x0d\xac\x68\x76\x98\xc8\xf9\xa1\x2b\x81\x0c\x13\xe9\x4d\x63\xde\xb1\xcb\x9e\x96\x97\x0b\xdb\xb2\x52\xd2\xcc\x6b\x86\x16\x87\x34\x80\xc0\x9d\x69\x71\x3a\x74\xa5\x2e\xae\x7e\xb0\x8f\x78\xdd\x18\x10\xc9\x01\x46\xde\x3c\x62\x27\x37\x6c\xc5\x32\x9e\xaf\xf5\x59\xf4\xd9\x8f\xdb\xde\xdd\x95\x32\xdf\x13\x3a\x95\xa0\x3e\xd0\xb7\x47\xa3\x90\x97\xf6\x64\x0c\xf3\x34\xda\x0a\x24\x72\x6e\xd4\x51\xd5\xc6\x46\x62\x26\x9f\xb0\x9f\x9b\x28\x63\xac\x3b\xdc\xef\xa2\xd9\xe3\x8b\xed\x49\xe5\xb1\x2c\xf2\x2f\xb9\xa3\x75\xf7\xb3\x78\x51\x6b\xfe\xe5\xf6\xb2\x56\xce\x25\x24\x97\xd2\xa4\xcd\x13\xd2\x5e\x34\x78\xcc\x4c\xab\x56\xd5\xf1\x63\x80\xb0\xa4\x0f\xa0\x73\xbf\xe1\xff\xf0\xe1\x68\xeb\x6b\x65\x6b\x8f\x9c\xc4\x71\x67\x04\xf8\xfe\x7b\xa7\x71\x15\xc0\x53\xd5\xd4\xcd\x48\x2c\x97\x94\x0b\xe2\xc4\x85\x87\x98\x0a\x5b\x75\x37\xa2\x82\x50\xa1\x34\x63\xfc\xf1\x3d\xf9\xaf\x82\x41\x82\x18\x0d\xbd\x28\x91\x45\x3c\xe0\x82\xe7\xe5\x2a\xa1\x94\x4b\x69\x2a\xf4\xbb\x1a\x2e\x40\xf3\x96\xa1\xae\x2e\x2e\xa3\x00\x97\x34\x5a\x70\xc1\x4a\xd5\x8f\x90\x2b\x3a\xa0\x29\x27\xcf\x30\x49\xd8\x87\x69\x21\xf2\xc2\x3b\xa4\x6d\x3a\xb0\xcb\x78\x3e\x24\x27\xd6\x81\x73\x86\x04\xf6\x59\x44\x15\x83\x38\x46\xa1\x78\xce\x57\xec\x39\x59\x32\x2a\xc2\xba\xa9\x9a\xf5\x0b\xfc\x55\x59\x4e\x8a\x14\xb4\x0b\x97\x27\xb7\x98\x40\xc1\xaa\xda\xec\xc4\x40\xfd\x3b\x30\xe8\xe5\xab\x3f\x0d\x5f\x0c\x5f\x0c\x5f\x6e\x8d\x46\x66\x92\x80\x6f\x8a\x1f\x15\xac\x07\x26\x88\x79\xfa\x6f\xa3\x04\x2b\x57\x8c\x67\x8d\x7e\x42\x81\x0a\x10\xcb\x29\xe4\x5b\x81\xc7\x1c\xb3\x5a\x0f\x6b\x98\xa6\xb9\x6a\x0d\xa1\xfd\x7d\x7d\xb3\xf6\xf7\x9f\x1f\x38\x1e\x7c\x01\xc9\x0c\x40\x59\x02\xf2\x00\xed\xec\x2f\x8f\xbe\x1f\xbe\xfa\xf6\xcd\xd0\xfc\xf7\xf8\x3b\x90\xf2\xdc\xb9\x8e\xdd\x7d\x79\x25\xfa\x91\x80\x3c\x32\x90\x98\xcd\xd4\x8a\x76\x0e\xd1\x9a\x09\xa6\xcc\x58\x0a\x62\x87\xc0\x7d\xf7\xa7\x3f\x7d\xdb\x92\x0f\x31\x74\x43\xf3\x62\x9b\xa2\x0b\xef\x6f\x3f\xfc\x1a\x05\x17\xc0\xf2\x5c\x53\x99\xd0\x24\x82\xf0\xf4\x52\x07\xea\x37\x56\xbc\xbf\xfd\x50\x4f\x44\x54\x95\x19\x68\x2b\x31\xf0\xb4\x7a\x02\x82\xe6\x56\x13\xd6\x33\xb2\xd3\xd1\x9d\x99\x1e\x8e\x8d\x4d\x93\xac\x7a\xac\x22\x70\x27\xc6\x7d\x2d\x94\xad\x08\x59\x65\x8d\x92\x70\xad\x6d\x2a\x67\x41\xa8\xbb\x3e\xb0\x3f\x97\xc9\xcc\x4d\x98\x62\x88\x90\x96\x79\x91\x1b\xb1\x8f\x6e\x88\x22\x60\x40\xb5\x60\xa3\x63\x2a\x41\xec\xa7\xa1\xb5\x2c\xd6\x76\x11\x52\x90\x67\x1c\x1c\xf8\xac\xb0\x56\xe9\x9e\xde\x9f\xdc\xfc\xaf\x0f\xe7\xd7\x27\x67\xe7\x24\xa7\xd9\x9c\xe5\x9e\x2c\xdc\x1d\x27\x54\xca\xaa\xbf\x59\x62\x2e\x93\x92\x0b\x16\xe1\x1c\x77\x95\x9b\xcb\x08\xce\xaa\x3c\x1f\x0d\xe0\x90\x8d\x04\x3d\xc9\x29\xe4\xa0\x40\x04\x89\xe1\x80\xcb\x50\x8f\xcb\x93\x5b\x63\x8f\x00\xef\x02\x57\x79\xe4\xb7\xd3\x2e\xe8\x8a\xcb\xac\x4c\xd1\x67\xfc\x3a\x15\xba\xcd\x04\x03\x52\xbf\x6c\xaa\x27\xc1\xf2\x84\x8b\x16\xa3\x53\x1b\xbc\x21\xdc\x41\x2f\xf7\x9a\xcd\xfb\x64\x9b\xb8\xaa\xb7\xb7\x0f\x8d\x9b\x76\x26\xc3\x5f\xe0\x40\xf4\xfb\x98\xe5\x5c\xd3\x21\xaf\x58\x8e\x14\x6c\xca\x12\x29\xe6\x58\x2c\x6e\xa4\x6f\x1f\x78\xf5\x0d\xcc\x40\xa8\x10\x3c\xac\xfc\x91\x62\x96\x26\x72\xbd\x64\x22\x0f\xf3\x1b\x36\x5e\xa0\xf4\x62\x89\x21\x63\xc3\x42\xde\x57\xf9\x2d\x71\xf2\x67\x98\xa4\xad\xd2\x68\x2e\x65\xcc\x12\xef\xc8\xc8\x97\xa0\x18\x16\xcd\xa0\x8c\x3d\x26\xb3\x28\xdd\xbe\xf4\x8d\x84\xb1\x23\xb9\x4c\x0b\x93\xbe\xfd\xb9\xa9\x45\x58\xf8\xfd\x0e\x2b\x11\xf9\x67\x94\x8d\xfe\x5e\x9d\xca\x67\x03\x03\x64\x6d\x9c\xcd\x40\x8a\xd4\x22\xcf\xa4\x18\xea\x6f\xbd\xab\x35\x4b\xc1\x0c\xf2\xd5\xa3\x77\xbe\x4c\xf3\xf5\xb6\xac\x08\x46\x2d\x41\x82\x6b\x9a\x2f\x7a\x4a\x93\x63\x4f\x27\xd7\xd5\x7f\xba\xb6\xe5\x65\xa1\xf4\xec\xb2\x10\x3c\xa2\xfe\x84\xf6\x26\xe7\x12\x3e\xe1\x18\x88\x63\xb3\x1b\xd9\x74\x98\x07\x24\xe1\x77\x8c\x9c\x38\xea\xfb\x84\xae\x59\xd6\x2f\x21\xc3\xe3\xa0\x92\xc9\x25\xcb\x17\xac\x50\x3f\xc8\xf7\x2c\xcf\x78\xd4\x37\x69\xfd\xfe\x38\xd8\xd5\xea\x05\x14\xf9\x41\x6a\xe6\x18\x4c\xc1\x4b\x6c\xe2\x67\xd7\x92\x04\x23\x21\xac\x83\xad\xc6\xa5\x6a\x7c\x5b\x5b\x03\x82\x92\xaa\xd4\x0d\x07\x48\x01\x15\xf3\x22\x65\x99\xd6\x09\x39\x03\x54\x14\xab\x46\x22\x52\xb3\x28\x93\x61\x88\xc5\x07\xd8\x2e\xf0\xdc\x3a\x2b\xc2\xdc\x45\x4f\xac\x6b\x53\x01\xff\xd1\xa0\x6f\x00\xde\x2a\x96\x1b\xf0\x6b\x81\xbd\x91\x9b\xb8\xb0\x86\xeb\xb2\x60\x85\xde\xd2\xd3\x3d\xe2\x37\xf6\x18\xf0\x6f\xef\xd8\xe0\x8f\x52\x95\x32\x01\x1a\xc3\x6d\x6a\xb5\xaa\xa9\x97\x34\x99\x03\x36\xdb\xb4\x89\x2a\xb9\x88\x81\x56\x57\xbb\x63\x4f\xbb\x3d\x66\x99\xbd\xe4\x9c\x8d\xcd\xb9\x02\x8f\x8d\xf8\xfc\xe2\x1b\xfc\xfe\xc5\xf7\x2d\xe2\x5b\x80\xd9\xa9\x36\x38\x46\x3b\xd8\xa3\x11\xd5\xdb\xbf\x22\x14\xd6\xcb\x6e\x47\x25\x5a\x6e\xd0\x27\x9e\xb1\x1f\x0a\x9a\xc5\x8f\x3e\x85\xc0\x08\xd5\x39\xdc\x73\x2d\xd7\xd1\xcc\x9f\x00\xd9\xc0\xe1\xb1\x27\xe1\x17\x09\xf1\x70\x1e\x79\x12\xbe\x21\xed\xe1\x7c\xf1\x93\xc8\xd8\x52\xae\x98\x4d\x33\x02\x89\x6a\x3a\x85\xbe\x4f\xf5\x58\x32\x53\x25\x68\xc5\xea\x99\x66\x6c\x1d\xbe\x15\x0b\xf9\x93\x4d\x19\x73\x73\xd7\x94\x9c\xc7\xd0\x04\x87\xa1\x44\x67\x53\x19\x61\x54\x72\xc9\x60\x38\x0e\x01\xa1\xa0\x67\xf0\x6b\xa2\x71\xdc\xcc\x80\x63\x83\xbc\x6d\x6d\x13\x27\x73\x92\xc9\x8a\xc2\xa8\x7f\xd0\x7b\x86\x6b\x31\xfb\xb5\x8b\x49\xd6\x26\x67\x93\x99\x61\xeb\x33\x30\x59\x65\x7a\x3b\x12\x5c\x37\x7b\xd4\xa2\x31\xf4\xbf\x37\x3c\x87\x83\x21\xf7\xc6\xe1\x32\x2f\x54\xe5\x7f\xa5\x39\x6e\x88\x9a\x04\x77\xb5\x9a\xb7\xda\x7b\xc3\xc3\x0b\x29\x06\xff\x60\x99\x57\xb1\xc4\x1d\xed\xa3\x23\x18\xa8\xba\xc9\x71\x6b\x83\x75\x09\xa7\xdb\xdb\x8b\xfe\x20\xba\xbd\xbd\x70\xfd\xf7\x06\xb9\xc4\xf4\x8e\xd6\xd3\x1f\x64\x50\x24\xd5\x83\xfb\x40\xed\x47\x03\x1f\x03\xc5\x27\xe6\x5f\x04\x24\xd9\xd6\x75\xe4\xda\xd3\xe9\x09\xce\xe2\x4e\xba\xf3\x6d\xdd\x46\xc8\x82\xfa\xb5\xfd\x8f\x75\x1b\xc1\xec\x67\xd6\x43\xa4\x5d\x20\x78\x2c\xb8\x31\xf9\x56\x3f\x28\xdf\x58\x63\xad\x1b\x3c\x9b\x59\x33\xe2\x9c\xa1\xdf\x9d\xad\x3b\xe7\xc7\xff\x32\xcf\xf2\x90\x0c\x88\x2d\x46\x3d\x1a\xab\x63\x54\x83\x79\xd3\x22\x46\x52\xa8\x3c\x2b\x7c\xf1\xde\xa4\xa4\x5d\x03\x03\xd3\xd1\xf8\xe4\x7d\xdd\x8f\x66\x00\x43\xeb\xef\xe1\x2c\x6b\x23\xda\xee\x8f\x02\xdd\x5a\x44\x36\x58\xb7\x0b\x80\xd7\xcd\x0e\x48\x2e\x6b\x89\x21\x30\x8d\xb7\x14\xca\x2a\x02\xfd\xaa\x21\xa3\x80\x43\xe4\xc8\x91\xf6\xdc\x54\x5c\x3c\xbc\x3a\x85\x70\xaa\x92\x0c\x8c\x34\xba\x94\x31\x96\x03\xde\x9a\x0c\xeb\xa9\xc0\x71\x32\xa4\x5e\xab\x27\xfa\x65\x69\xc6\x22\x8a\x7e\xab\x64\x46\x57\xa8\x72\xba\xae\x8f\xa2\x86\x65\x82\xe2\x96\xb2\x46\x34\xb6\x59\x10\x8d\xb3\x92\xb3\x6d\xb4\xf2\xac\x28\xa6\xaa\xad\x8a\x17\x37\x26\xf2\x92\xad\x9a\x6e\x8e\x8b\x18\x8b\xa2\xcd\x9a\x90\x55\xb5\x42\xbc\x86\xdf\x2e\xbc\xe9\x83\x3b\x92\x39\x2c\xa9\x4f\x01\x41\xfa\x64\x62\x58\x72\x9f\xa2\xab\x47\xd7\x96\xfc\x0b\x03\xbd\x20\xef\xd7\xbe\xe0\x83\xb6\x9c\x0b\x0d\xe4\xe8\xe4\x91\x1a\x87\xde\xff\x84\xbd\x7a\x96\xd0\xa1\xd7\xb4\xed\x18\x07\x35\xc3\x31\xf5\x69\xb3\x07\xe3\x23\xe4\x7f\x01\xbc\x27\x5e\xa1\xb5\x32\xe4\xb0\x9a\x6d\xff\xc0\x09\x4f\xdb\xf8\x71\xab\x24\x6f\x9d\x39\x41\xc2\x88\xd4\x2b\xa9\x47\x18\x99\x7a\x74\xef\x48\xe8\xe1\x45\xa9\x20\x52\x3d\x21\x95\x87\xd1\xa1\x5d\x48\x99\x8e\x31\xb9\x7b\x1f\x65\xf0\x27\x94\x3e\xd0\x1f\x0d\xcc\xce\x2b\x0d\x69\xc5\x40\x15\x5a\xb1\xbd\x07\x36\x63\x7c\xdb\x4b\x96\x48\x99\x2a\xa7\xa2\x28\x14\x1c\x41\x25\x72\xc6\x4c\x14\x8f\xc6\x1b\x4c\x3f\x6a\x32\x49\x13\x88\xca\xd6\xdb\x0d\x7a\x75\x99\xcc\xb3\x98\x51\xa1\x4c\xca\x73\x76\x79\x72\xbb\xbf\x1f\x37\x03\xcf\x3f\x08\x28\xf5\x5b\x55\xfc\xb4\xa9\x23\xf6\xbc\xb2\x12\x17\x65\xf5\x02\xc5\xb0\x0a\x95\xad\x11\x8b\xdb\x89\xa4\xc8\xb9\xc0\x37\x64\x6a\x72\xb4\xd5\x32\xc5\xfb\x46\x7d\x4c\x6e\x58\xc5\x63\x16\xd1\xec\x24\x8a\x58\x62\x5e\xbd\xbe\xf2\xed\x4d\xb0\x6b\xa9\x10\xc3\x4c\xe6\x4b\x60\xb9\xec\x54\x01\xc6\xac\x1c\xe3\xc9\xba\x2f\x70\x3c\xed\x91\x06\xb3\xbe\x9b\x0f\xbe\x5e\x96\x9d\x26\x54\x48\xb1\x5e\xea\xd7\xcd\xd0\x23\xe3\x73\xeb\x35\xe5\xa1\xdc\xec\xd6\xb2\x85\x1a\x3e\x98\x2d\x57\xe3\x1c\xaa\xeb\x87\x32\x9b\x0f\xc9\x85\x9c\x2b\x72\x8f\xa5\xe4\x34\xfb\x9e\x17\x59\xa0\x8c\x85\x71\x42\xc5\x92\x89\xd6\x18\xef\xc4\x74\x43\x1a\x2e\x0a\xa5\x0d\xf8\x8c\x47\x54\xe4\x55\xf2\xb0\x55\x91\x08\x96\x51\xcc\xd7\xe5\x1b\x7c\x41\x15\x0a\xbb\x31\x57\x50\xbf\xa7\x72\xe4\xb3\xee\xc5\x72\x66\x37\x8f\x95\x1a\x0a\xd5\x89\x91\x8f\x92\xf7\xeb\xe7\x37\x12\x3c\xe7\x34\x09\xa5\x44\x6d\x3b\x44\xb7\x6b\xbd\xa8\xa3\xad\x9b\x19\xeb\x9f\xfc\x72\xff\x4c\x96\xfc\xf4\x92\xde\x31\xb4\xbd\xeb\x81\x1b\x4e\xa9\x5b\x33\xfb\xcd\xed\xf5\x94\xae\x9a\x5b\x33\xf2\x55\x6d\x5b\x1b\xa2\x75\xd8\x74\x86\x7b\xf2\x48\x8b\xdf\x1d\xbd\x79\xd4\xa6\x42\xf5\x1e\xba\x36\x16\xae\x14\x81\x69\xe5\x9c\xfa\x31\x65\x21\xf9\x60\x9c\xce\x46\xdd\x0a\xab\xba\x41\xca\x3a\xe7\x11\x16\x87\xc6\xb4\x4b\x65\x36\xb9\x84\x16\xc2\x0f\x2c\xb7\xd4\x78\xb3\xac\x03\xde\xf0\xca\xfc\x64\xd2\xe9\xe5\xc0\x81\x60\xe6\xac\x69\x31\xdb\x96\xc5\x5f\x3d\x24\xb4\x37\x09\xfe\xf8\xd3\xc5\xc9\x65\xdf\xb8\x7c\xf0\xfe\x0f\xf9\x1f\xc0\x48\xf5\xd8\x74\x60\xf9\xf0\x7b\x23\xbf\x80\x9f\x69\x5b\x8c\xbe\x9f\x8b\xe3\xea\x57\x8a\xd1\x07\xd8\xf5\x09\xd2\x87\x5d\xb5\x46\xe9\x43\x0e\x70\x17\x28\xbe\xad\x39\x31\xfc\xad\x01\xfb\x2f\xb7\x0f\xd8\xb7\x5b\xf9\xd8\x99\x83\xbb\xdc\xcc\xc7\xa3\xd6\xed\x1c\x7d\xa9\xed\xbc\xfe\xfe\x91\xdb\x79\x4c\xaa\x24\xe8\xf8\xf1\x72\xb4\x6d\xbf\x52\xa3\xde\xf7\x2a\x7d\x6a\x74\xd8\x0c\x22\x29\x5b\x38\x1c\xaa\x0f\x8c\xfa\xda\x00\xfa\x3c\x63\x22\xa2\xa9\x2a\x12\x9b\xa1\x6c\xf5\xa6\x74\xc6\x91\x48\x40\xf0\x4b\x28\xcf\x92\x40\x6c\x3a\xdc\x33\x9f\x53\x14\x79\x32\x5f\xd4\x04\x49\x0f\xd4\x6a\x02\xe5\xe3\xd1\x93\xc1\x72\xe4\x01\xcb\x91\x0f\x2c\x47\xbf\x36\x58\x7e\x94\x2a\x3f\x17\x51\xb6\x4e\xb7\xe1\x82\x3f\xb5\x76\x6f\x01\x97\x97\x0b\x93\x2a\x1f\xe4\x72\x60\xd2\x08\xd9\xc1\x1c\xc8\x3e\xdd\x34\x5c\xee\xb7\x8c\x24\xbd\xa4\xcb\x6e\xbd\xe3\x27\x6f\xb7\x86\xfe\x06\xdc\x79\x8c\x23\x5d\x20\x0c\xa9\x24\xae\x0e\xde\xd8\x11\xdd\xcd\x95\xcb\x1c\x3e\x26\x0b\x90\x7f\x93\xdb\x60\x7c\xa3\xe3\xa3\x37\x7a\xd4\xb9\xd1\xf9\x60\x75\xf4\xb4\x4d\xfe\x95\xb1\xf4\x24\xe1\xab\x2d\x4e\xb1\xec\x52\x61\x68\xb5\xce\xb1\xe6\xf8\x55\xce\x44\xae\x9b\xd1\x60\xf5\x27\xac\x57\x0d\x3a\xcf\xba\x05\xc6\x89\x8d\x7e\xf4\xa6\x2e\x60\x05\x5c\xcc\x7b\x59\xf7\x3f\x79\xbb\x35\x4a\xb9\xdb\x9f\xd0\xd4\x1f\xf2\xf8\x9b\xae\x1b\x08\x5a\x4b\xf1\xf0\xf2\xbb\x57\xdb\x3f\x7f\xfe\x4d\x6d\x83\x8e\x8d\x8e\x6d\x1b\xf3\xed\xc9\x16\xe3\xac\x23\x64\x73\x63\xdb\x7b\x2a\x94\x1b\xeb\xc3\x75\x7d\x72\x1a\xd7\x37\xa0\xbf\x70\x19\xaf\x56\x22\xe9\xdc\xa2\x2e\xc6\xeb\x11\x99\x92\xdc\x1d\x6d\x73\x40\xc8\x80\xb5\xec\xea\xe8\x8b\xed\xea\x29\x08\x78\x8d\x6a\xa6\xeb\x22\x61\xe3\x8c\xcb\xcc\x5f\x33\x3b\xb0\x47\x4f\xe7\xfa\x8e\x53\xfb\x6d\x30\x7d\x76\x45\x33\xa1\x43\x45\x73\xac\xfe\x2b\x2b\xea\x04\xc4\x5f\xf4\xb4\x7d\xb3\xc6\x76\x85\x56\xb2\x9b\x54\xca\x99\xbf\x78\x5c\xdd\x65\xc0\xdb\x6b\xf3\x01\x4f\x65\x5c\x26\x4e\x0d\xd1\x7d\xa3\xaf\xc3\xa1\xd0\x7f\x11\x9c\xcd\x85\xcc\x51\xc7\x05\xdc\xb9\xa8\x8a\x95\x60\x3a\x0a\xe3\x59\xee\x1b\xd5\x09\xce\xb1\x1e\xcb\xe0\xd8\xb0\x60\x3c\x73\xfc\x05\xdc\x3c\x71\xc6\xea\x86\x8e\xc9\x5e\xdb\x8b\xd5\x56\x9e\x88\xf5\x64\xef\xa0\xda\x59\xc6\xfe\xab\x60\x10\xa6\xbb\x36\x41\x7c\x5b\x7a\xe9\x3f\xc4\xbd\x33\xcb\x79\xb2\xde\xfe\x74\x36\xae\x6b\x04\x35\xb6\xa8\x82\xa3\xd5\xa0\xc0\x82\x3b\xa1\xf2\xb1\xa6\x80\x49\xcc\xc4\x7a\x33\x86\xf0\x51\xfa\xa8\x87\x38\xdd\xd6\x14\xfe\xd3\xd9\xf8\xcb\x66\x4d\x83\x04\xc0\x8f\x4a\x98\x66\xec\xdc\xbe\x81\x2b\xd3\xf7\xdb\xf1\x3b\xb2\xa4\x29\x04\x7e\xd1\x3c\xa7\xd1\x02\xeb\xa8\x81\x61\xc8\x6f\x12\xff\xe9\xcc\x9b\x4a\x61\x33\xad\xda\xf6\x06\x71\xbf\x35\x62\xf3\x5b\xd0\x81\xc6\xae\x73\xbb\xca\x65\x46\xe7\xcc\x7e\x85\x3e\x11\x70\x5a\xb6\xee\x8f\xe6\xe6\xac\x41\xe7\x8e\x8b\xf8\x98\x4c\xf6\x6c\xed\xb9\x34\x29\x32\x9a\x54\xdf\x94\x95\xdf\xd4\x31\xf9\xf9\xef\xfa\x1b\x70\x38\x89\x3f\xa2\x42\xd4\x7c\x3b\x11\x83\xc1\x60\x22\x68\xca\xcd\xf7\xc7\x84\xa6\x9c\x3d\xe4\x4c\x60\x0a\xd8\xbb\xef\xd4\x90\xcb\xc3\xd5\xcb\x89\xc0\x19\x4f\x0b\x95\xcb\xe5\x35\xc3\xdb\x7e\xc6\x66\x5c\x70\x4c\x92\x69\x63\xad\x60\x81\x9a\xc7\x3c\x36\x61\x54\x46\x02\x02\xfb\x31\x67\x6a\x18\x65\xf1\x70\x43\x99\x3c\x11\x9a\x49\x85\xbe\xf3\x4c\x16\xe9\x31\x09\x34\xc3\xb1\xeb\x60\xf8\x01\xe6\xb9\xc4\x79\xd0\x01\x1b\x7f\xd6\xcc\xc5\x5f\x43\x4d\x2e\xca\x9c\xb8\x16\x78\xde\xf5\x9a\xd3\xe1\x02\x82\x97\x7c\x8d\x60\xb2\x34\x63\x70\xa6\x1f\xc4\x9d\x90\xf7\xe2\x1d\x67\x49\xac\x8c\x9c\x03\xe0\x8f\xa4\xc6\x81\x53\xd4\xaa\xeb\x6f\x56\xf6\x28\xf4\x3f\x06\x06\x64\x1a\xd2\x30\x5f\xb4\x60\x4b\x5a\x5e\x56\x99\x32\x71\x32\x1e\x7d\x7c\x7d\x53\xff\x3e\x68\xea\x73\x8e\xb4\x8e\xa0\xf5\xcb\xae\xc7\x34\x2a\x72\xb7\x62\x9e\x59\x1a\x8b\xcd\x3a\xd0\xa8\x0d\x3e\x76\xb0\x4f\x91\x7b\x33\xa3\xca\x99\x96\x7f\x11\xcd\xf5\xcd\xcb\xf4\x38\x4e\x6e\xcd\x15\xcb\x30\x17\xf7\x5c\xf0\x7f\x94\x83\x97\xc1\x91\x09\xcd\xd9\x66\xb8\x40\xa9\x19\x75\x72\xb5\x2e\xe9\xda\x98\xc0\x48\x21\x9c\x01\x31\x63\xda\x90\xbc\x97\x10\xde\x30\x93\xc7\x64\x91\xe7\xa9\x3a\x3e\x3c\x9c\xf3\xdc\x62\xb3\xd1\x7b\xe6\xeb\x43\x78\x20\xf9\xb4\xc8\x65\xa6\x0e\x63\xb6\x62\xc9\xa1\xe2\xf3\x01\xcd\xa2\x05\xcf\x59\x94\x17\x19\x3b\xa4\x29\x1f\xc0\xda\xc1\x3e\xa8\x86\xcb\xf8\x9b\xcc\xa0\xbf\xda\xf7\x5d\xfe\x4d\xb2\x00\x58\xda\x76\x0c\x1a\x47\x4d\xcd\x7c\xe8\x6c\x62\x1f\x4a\x68\xdb\x94\xa9\xd7\xe7\x37\xb7\xc4\xce\xee\xcd\x0e\x86\xc0\xaf\x7a\xaa\xea\x1c\x34\xd0\xb8\x98\x31\x93\x0f\x06\x62\x11\x73\xb7\x2e\x29\xa4\x06\x03\x3f\xcc\xe6\xa8\xaa\x98\x2e\xc1\x29\x07\x1f\x57\x8c\x5a\x39\x05\x9e\x00\x12\x37\xa6\x31\xcd\xa1\xec\xb5\x20\xa7\x74\xc9\x92\x53\xaa\xd8\x57\x3f\x05\x0d\x6d\x35\xd0\xb0\xed\x7b\x0e\x35\x12\xd5\x6c\xbe\x69\x41\x2e\x29\x52\xf5\x69\x31\xac\xd3\x34\x4d\xd6\x57\xe2\x9d\xcc\xee\x69\xd6\xc9\x3b\x9c\xd4\x5a\xa3\xf3\x08\x78\x05\x60\x61\xf0\x04\xed\x65\x4e\x5d\x53\x6e\x8b\x6c\x7a\xa5\x59\xe0\x33\x60\x24\x9b\x7e\x64\x4b\x46\x21\x96\x97\x32\xbf\xd5\xcc\x49\xa7\x63\x4e\xd9\xd2\x59\x75\xc9\x60\x1a\xd3\x33\xc4\xf7\x54\xc9\x67\x60\x1f\x7e\x9e\xc7\xdd\x9a\x25\x15\x73\x59\x15\x2d\x37\xbe\x73\x04\xac\x17\xfb\x60\x5d\x16\xe8\x49\x4c\x80\x97\xe2\x62\xee\x35\x53\x83\x61\x9a\x2a\xe3\x0e\x12\xd9\x5a\x87\x68\x43\xb9\xcd\x6c\x62\x74\x1f\x84\x09\x0d\x24\x00\x86\x14\x1c\xb1\x35\xb0\x69\x0e\xb3\x5a\x9a\x77\x61\x58\xcb\xc5\xc0\xc4\x30\xd6\x01\xb1\xbd\x31\x3f\x64\x75\x63\x50\x36\xc7\x38\x01\x4f\x19\x31\xcc\xe3\xb6\x67\x8b\x35\x5a\xbb\xce\xf5\x16\x92\x74\xc7\x60\x3d\x35\xae\x2e\xa6\xb8\xab\x61\x45\xc9\x39\x8d\x16\x18\x11\x6e\x32\x02\xfa\x59\x3e\xdb\x1b\xf7\x6d\x42\xbd\xa2\x8c\xe7\x2c\xe3\x14\x13\xb2\x3b\xa1\xf1\x90\xb1\x3e\xb2\x82\x05\xa0\xfe\x56\xae\x2e\xb5\x3d\x4c\xf6\x4e\x88\x96\xf0\x48\xa5\xa6\x75\x5d\x77\x7c\x4b\xf1\x72\x97\xa4\xac\x83\x4c\xde\xca\x7c\x61\x12\x02\xca\x6c\x80\xb6\xa0\xd2\x34\x3d\x36\xe7\x25\xdc\xef\xb0\x5a\xb7\x17\x36\xc0\x63\xb2\x0c\xca\xa3\x23\xe6\x0d\x9c\x42\x2d\xb2\xc8\x31\xc5\x96\x4d\x8f\x84\x4d\xb4\x04\x31\x95\x50\xed\x0a\xce\x23\xb0\x60\x11\x97\xc5\x78\x1d\xc0\x83\xd9\x6b\x32\x11\x78\x78\xa9\xc4\xb4\x00\x4d\x48\x04\x7c\x4e\xf5\x61\x0a\x36\x87\xc5\x19\x96\xe0\xc0\x08\x55\x36\x52\x7e\x32\x99\xec\x5d\xca\x5c\xff\x67\x48\x4e\x92\xc4\x64\x39\x70\x47\xf7\x8f\xac\x7b\x43\xd4\x31\x20\x54\x59\xea\x88\xe6\x5c\x41\x29\x1b\xcc\x2d\x66\xb6\x92\x4b\x1c\x73\x48\x4e\x4c\x71\x83\x00\x74\x01\x39\xa9\xb0\x08\x6a\x12\x02\x98\x4d\x6b\x10\xc1\x76\xf4\x3f\x1c\xcf\x00\x8a\x83\x87\xe1\x0a\xd0\xf7\x2f\xd1\xd2\x90\x6a\x89\x81\x6a\xd0\x5d\x1e\x59\x34\x94\x01\x13\x3f\xdd\x85\x9a\x62\xa6\x72\x53\x7d\x2a\x38\x4a\xc3\xc3\xb2\xec\x50\x5e\x68\xcf\xf1\x19\x7f\x24\x7d\x31\x43\xc3\x82\x6a\xc4\x99\x9f\xe8\x57\x3a\xf7\x47\x1f\xf6\x02\x06\x21\x86\xcd\x4f\x69\xc4\x6e\xcc\xe5\x6b\x69\xbb\x41\x06\x2e\x9b\x9d\x4d\xfc\xb9\xb4\x06\xe0\x99\xe6\xcf\x83\x69\x31\xaa\x4f\x09\x18\x5a\x12\x01\x27\x7f\x81\xc9\x11\x55\x2b\x23\x2f\x33\x3e\xd7\x70\x08\x51\x00\xfb\x01\xfe\xeb\x99\x46\x21\x30\x40\x23\xa5\xca\x9f\x3b\x4e\xcb\xe6\x8a\x40\x6e\x17\x98\xdb\xff\x78\x78\x40\x56\x95\xa7\x36\x0f\xb1\x89\xf0\x06\x44\xde\x80\x4d\xfb\xa0\x48\x25\x51\x50\x2f\x41\xa0\x5f\x28\x14\x18\x4a\xcb\xb8\xa2\x4b\x66\xd2\x5c\xe4\x01\xa5\x4d\xf5\x81\x94\x56\x3e\x3f\x6d\xeb\xfb\xe6\x30\x10\x53\x97\x02\x77\x00\xd5\x6e\xdb\xc2\xcb\x65\x40\x90\x0e\xbe\x93\x19\xa9\x89\x81\x07\xc1\x37\xc0\x7e\xb0\x12\x95\x07\xa5\x96\x26\x25\x97\x8d\xbb\x73\x91\x2d\xe1\x4b\xde\x79\x60\xa0\x4a\x4b\xd0\x93\x2f\x08\x13\xee\xc0\xb7\x3c\xe1\x8e\x33\xc3\x8b\x5c\xdb\x67\x70\xfb\xfb\x28\xd1\x3e\x7b\xee\xad\xba\x52\x7d\x7e\x1d\x00\xd4\x04\xf5\x1b\xfd\x6e\x67\x04\xcd\x93\x08\x0f\xd8\x46\xfb\xa0\x7a\x8f\x1e\x79\xff\x00\x3c\x62\xda\xcf\xb2\x63\xb5\xee\x16\x9d\x84\x6c\xbe\x5a\x2b\x51\x26\x15\xf0\x7c\x7d\xaf\x6c\xe0\xe1\x28\xe7\xee\x7c\x00\x08\xe6\x45\x68\xa3\xa9\xcd\x4c\x13\xcc\x54\x10\xf5\x12\x46\x2d\x68\xe6\x19\x8f\xb0\xd2\x49\xfb\x36\xec\x13\x58\xa6\xaa\x5b\x63\x24\x81\x97\x2e\x96\xa4\xaf\x03\xda\x75\xba\xe8\x16\x49\x83\x7c\x25\xa2\xcc\x75\x8d\x69\xf6\x54\x31\xd5\xdb\x0f\xbe\x3a\xa4\x95\x8f\x74\xe6\xed\x05\xe9\x56\xd7\xe2\xea\x23\x64\x7e\xb9\xdd\x99\x60\x87\x32\xc9\x44\x9d\xfd\xb2\x3b\xd6\x4d\x3a\x9e\x17\x7d\x8e\xbf\x3b\x58\x84\xca\xdd\x56\x9f\x26\x30\xca\x32\xb7\x2d\xd0\x18\x87\x82\xef\xaa\x0f\x82\x83\xdc\x40\xf1\x37\xc0\x52\x25\x97\x55\xd5\x57\x85\x91\x94\xa6\x90\x2a\x24\x46\x5e\x87\xcb\xe8\x56\x9f\x46\xf9\xc5\xbc\x9e\x99\xbd\x2c\xe9\x89\x1c\x95\x21\xe4\x5a\x40\xe9\xa4\x8a\xf0\x86\x19\x13\xc7\xed\xe9\xd8\x16\x4d\xfc\x70\x36\x0e\x14\x57\xb4\x9f\x3e\xa7\x1a\xce\x2a\x5a\x7d\x7a\xe4\x17\xdd\x6c\xdc\x8d\x28\xdd\x39\x47\xab\xcf\xf6\xd9\x47\xab\x4f\x5f\x84\xdc\x9e\xb9\xbc\xac\x3a\x75\xa0\x65\x3f\xfe\xca\x60\x26\x58\x4e\xcb\x81\x91\x0a\xa3\xed\x68\x9a\x27\x2c\xe7\x65\x9e\x51\x9c\xab\x7d\xcc\x92\x5b\x6a\x45\x95\x7e\x67\x96\x6e\x77\x65\x27\x7b\x55\x61\xea\x8e\x67\xa5\xfb\xb1\xed\xf1\xac\x80\xcd\xc8\xa6\xb5\x7a\xe6\x08\x21\x9e\xd4\x4f\xcd\x6d\x39\xe9\x5a\x99\x22\x26\xd3\xbe\x9b\xfd\xf7\xd0\x2a\x94\x6f\xcb\x0c\xda\xed\xa3\xd6\xca\x71\x9b\xab\x03\x96\x29\x84\xb2\xb2\x10\x30\xda\xd9\x96\x00\xa2\xea\x63\xd3\x3d\x21\x03\xd7\x97\x82\x75\x52\x00\x93\x43\x6a\x1b\x0a\xd6\xb1\xf7\x8a\xbc\x35\x28\xd8\x04\x69\xd8\xc4\x50\xb1\x09\xd2\xb1\x89\xa6\x64\xad\x3c\xcf\x8e\x96\xc1\xa7\x17\x2d\x53\x8f\x90\x92\xbb\x85\xe3\x56\x4d\x5f\xf5\xf1\x0a\xc7\xe4\x99\x62\xcc\xaa\xc8\x80\x94\x61\x7d\x21\xb5\x16\x39\x7d\xf0\x3b\x44\x56\x9f\xc9\xa4\x55\xb6\x36\x3c\x64\x48\x76\x6e\x1f\xdb\x6a\xc6\x1c\xd1\x5a\x66\x9b\x22\xb3\xbe\x6e\x97\x32\x47\x6b\xf5\x71\xa0\xa0\x92\x03\x04\x13\x83\x68\xcd\x59\x1d\xaf\x02\x82\xc7\x79\x4d\xda\x47\x9f\xb2\x44\xde\x3f\x3f\xa8\x2f\xd9\x01\x36\x42\x95\xf0\x5c\xb1\xa4\x4c\xff\xde\x01\x07\x54\x86\x81\x9a\xf3\x76\xc1\x48\x7e\x2f\x01\xd7\x20\x86\xd5\xfe\x86\x04\x42\x3f\x42\xeb\xaa\xa6\x53\xc7\xd9\x5d\x09\xbb\x7b\x65\xd6\x5b\xa9\x5f\x99\x23\x25\x99\xca\x90\xa0\x5a\x30\xed\xbb\xdf\x84\xfb\x85\x4c\xcc\x21\x1d\xc3\x11\x4d\x26\xd5\x83\xfc\x17\xa0\x2e\xff\xb1\xa0\xea\xd9\x72\xfd\x39\xa1\x53\x96\x3c\x07\xba\x63\x88\x7c\xd7\x75\x76\x02\xe7\xf4\xbe\x01\xc9\x70\x7d\xe8\x70\x30\x30\x2e\x35\x09\x8b\xf5\xbc\x3d\xf1\xcd\x0d\xc4\xb3\x69\xc8\x09\x2c\x0e\x96\x6b\x57\x8a\x4a\x54\xb3\xa5\xde\x88\x81\x5b\x0e\xee\x78\x73\x53\x7a\x15\xa1\x84\xe6\xd5\xa7\x7d\xbf\xe5\x96\xba\xb6\xd3\x75\xc9\x05\x60\x1e\x9b\xcd\x58\x64\x12\x1a\x19\x55\x42\x02\xa4\xd5\xe4\x26\x01\x07\x88\x72\x27\xdd\x8b\x17\x52\x0c\x6c\xf0\x2d\x5a\x6a\x31\xc9\x80\xd1\x8b\x40\x58\xbc\xab\xa4\x80\xf8\x36\x1c\xbd\x87\xd2\x6e\x13\x34\x55\x91\xe1\x2f\x21\xc4\x9b\x60\xd0\x93\x28\x92\x85\xd8\x86\xf7\xba\xa9\x77\xfc\xd5\x78\xb0\x06\x59\x6e\x1f\xd3\xa3\xf2\xa4\x24\x95\x71\x99\x13\x19\x18\xba\x92\x44\x1b\x60\x74\x90\x5e\xdc\x71\x2b\xb6\xf5\x52\x3a\x13\x52\xf7\x2f\x09\x7f\xea\x32\x01\x24\xff\x7f\x32\xb8\xc9\x63\x40\xde\x3d\x64\x48\xd3\xec\x01\x7b\x2f\x68\x93\x0a\xe2\x9a\x1a\x2b\xe3\x52\xce\x4b\x55\xa5\x66\x80\x3b\x6e\x7e\x3f\xe6\x8e\x6c\xa1\x82\x20\x7d\x39\x25\xd2\x97\x5b\x22\x9b\xf7\xab\x93\x5f\xfa\xef\x7b\xd2\x35\x59\xa9\xd2\xba\x21\xdd\xb7\xf0\x1c\x92\x51\x87\xe4\xa1\x3f\x95\x19\x02\xac\x0b\x37\xae\x55\xa1\x92\x45\x72\x53\xdc\x30\x68\x8f\xaf\x7f\x4e\x2e\xcf\xf6\xbd\xb6\xf1\xfa\x67\x3b\x8d\x56\x28\xad\x80\xfd\xd8\x3c\x9c\xdb\x71\xdd\xd8\xe7\xc9\x5c\x37\xf6\x44\x03\x71\x49\x2f\x9d\xc2\xd8\x76\x22\xa8\xab\x54\xc2\xd5\xeb\x2d\xe1\x0c\xda\xc9\x74\x37\xd1\xab\x2f\xd7\xed\x31\x67\x59\xf8\x3d\x53\xcf\x9b\xec\xb7\x29\xca\x2d\xda\xac\x8e\x04\x74\x65\x87\xb0\x2a\x48\xfb\x6a\x57\xb2\xaf\x08\x86\x3b\x83\xc4\x6c\xe1\x1d\x95\x0e\x4b\x25\x30\xba\x60\x51\xb7\x6c\xe9\x9b\x63\x91\xf5\xc0\x65\xdd\x0f\x36\x2d\x0a\x1d\x60\xbe\x64\x9a\xfd\xb5\xca\x5e\x99\x35\xdf\x6e\x5c\xfa\xd8\x04\xf0\xc7\xa5\x26\xb4\xc3\x5a\xa9\xf1\x49\x1f\xa0\xbb\x47\xd4\x1b\x95\x50\x90\xc2\x3a\x12\x18\xc7\x8e\x76\x96\x65\xab\x67\x73\xfb\x57\xd3\x17\x9b\x04\x26\xf9\x0a\x8f\xbb\xaf\xbe\xd9\x9b\x63\x83\xff\x42\x44\xc0\xb1\xcf\x3c\x82\x21\xd0\xdd\x3c\xfb\xc3\xef\xc3\x75\x29\xea\x1f\xa4\xb2\x66\x87\x70\x93\x13\x36\xcb\xd1\x8e\x55\xb9\x30\xe1\xed\xe9\xa1\xa4\x21\xee\x45\x2c\x3d\x8e\xf6\x55\xb5\xb2\x5f\x95\x82\x76\xb7\x59\xe4\x79\xda\xcf\x9f\xe1\xc7\xdb\xdb\x71\x65\xaf\x0f\x3a\x31\x68\x2c\xd1\x4d\xc3\x4b\xb7\x5e\x8e\x4f\xf3\x5f\x58\xb2\x7c\x21\xe3\x2d\x5e\x86\xf7\xd8\xe1\xcb\x72\xed\xb8\x65\x24\xea\xb8\x6f\xc7\x89\x53\x8f\x89\xd5\x41\x35\x3e\x76\x0f\x0a\xb1\x5a\x31\x8e\x62\x57\xfb\x8c\x0d\xe7\x43\xf2\xc3\xf9\xed\x01\x19\x7f\xb8\x3d\x20\x2c\x8f\x86\xcf\xc9\xfb\x22\xc9\x79\xda\x65\xe7\x30\x20\x82\x77\xff\xea\x7a\x5f\x8b\x61\x73\xf0\x23\xfc\x7d\xd9\xad\x52\x9a\x2f\xb6\x38\xc7\xfd\xb1\x6e\xff\x35\x8e\xb1\xeb\x04\xbb\x29\x8a\x7b\x82\xb0\xcc\x61\x79\x54\xb8\x4d\x7b\x16\x7d\x0f\x83\x10\x36\x9c\x1f\x93\x01\x61\x0f\x34\xca\x8f\xc9\xe1\x4c\x4a\x32\x30\x4e\x62\xc7\xe4\x70\x4a\x33\x72\x79\x75\x7b\x7e\x8c\x0e\x68\x4c\xe4\xd9\x9a\x2c\xbb\xd8\xf3\xab\xcb\x8b\xbf\x19\xca\xb9\x26\x8c\x63\x89\x52\x32\xd9\x83\x49\x50\x8b\xac\xff\x89\xb3\x58\x5d\xc7\x30\x54\x46\xad\xfa\xac\x68\xc2\x63\x5a\x2a\xfb\xb0\xc0\xaa\x66\x9f\x78\xee\x4b\xde\x57\x7d\xfa\xe0\x5c\x1d\x09\x34\x88\xa1\x6c\x5a\xad\x60\x07\x00\xde\x16\x4f\xeb\xf7\x56\x8d\x72\xf0\xdc\x9e\x32\x0b\x08\xa3\x47\x9c\xc9\x6c\x79\x6c\xc1\x3e\x29\x5e\xbc\x78\x1d\xe9\x81\xe1\x2f\x76\x6c\x53\xad\xf6\x51\x7b\x21\xaa\xc1\xaa\x60\x38\x4d\x30\xb2\xf2\x08\xab\xa1\x07\x06\xde\x4f\x9a\x01\xc7\xe8\x70\x35\xe9\xcd\x74\x10\x03\x80\x2f\x2b\x46\xa6\xa1\x54\xff\x8f\x1f\xb4\x9f\x38\xd1\x8b\x20\x75\x0f\xc5\xa3\x65\xcf\x37\x73\x74\xfa\x7e\xdc\xd7\x03\x04\x88\x51\x78\xed\x2e\x95\xa2\x16\xeb\x23\x58\xad\xc9\x36\x13\x03\x8d\x82\x29\xcb\x22\x99\x60\x59\x6b\x91\xaf\x9c\xa2\xc5\x35\x9e\x96\xcf\xea\xf6\x29\x5c\x34\x77\xd2\x98\xe9\x79\xda\x58\x5b\xb0\xa7\xeb\x46\xab\xa3\x16\x3d\x65\x2f\x4c\xd4\x5b\xdb\xe2\x9d\x07\xce\x44\x0a\x17\x4a\x00\x94\x08\x8a\x56\x6c\x23\xac\x41\xfa\x77\x0d\x60\x8c\x17\x01\x17\x55\x48\xcb\xec\xc2\xaa\x8a\xb0\xa4\x24\x67\xd1\x42\xf0\x88\x76\x78\x25\x81\x5a\x14\xd5\xff\x7c\x99\x4a\x55\x39\xd2\x61\xd9\xde\x7d\x55\xd5\xdc\x99\xf1\x8c\xdd\xd3\xc4\x5f\x3d\xa4\xfa\x20\xb5\x30\x4a\x59\xac\xdc\x23\x09\x13\x33\x89\x91\x2c\xc6\x45\xaf\xfb\x6a\x74\xda\xf0\xa0\xd9\xd3\x0f\x43\x0f\x33\x24\x6e\x8e\xb2\x2e\x13\x58\x59\x8a\xed\x3b\xf4\xf2\x86\x1d\xc2\x58\xe7\xd1\x42\x92\x6b\x13\x98\xfa\x8c\x0f\xd9\x90\xa4\x5c\xcc\x55\xbb\x0d\xac\xd7\x7e\x7b\x10\x83\xd4\x1f\x08\x16\x00\xc8\x68\x6c\x03\xc2\x9e\xec\x18\x56\x53\x6e\x21\x3f\xee\x42\x79\x6c\x2d\x63\x41\x28\xf4\xc9\x44\xe9\x0f\xe9\x09\x6c\xce\xd6\x55\x73\xdc\x7a\xab\xc4\xa1\x4e\x5a\xe1\xb2\x6a\x76\xfb\xe6\x9e\x44\x34\xaa\x88\xea\xf6\x47\xae\x5a\xe1\xb8\xef\xab\xd8\xf7\x59\xaa\x47\x24\x55\xeb\x31\xa1\x68\x68\xb5\xbb\x63\x26\x24\x9e\xa4\x94\x67\xe1\x52\x82\xd5\x47\x8b\xac\xa6\xd6\xbd\x0b\x53\x3a\x95\x45\xde\xe3\x21\xf9\x52\x92\xa3\x90\xb9\xbe\x7d\xfd\x30\xe3\x12\x1b\x77\x78\xf4\x40\x93\x76\xcf\xba\xdd\x83\xb1\x7b\x30\xfe\xbd\x1f\x0c\x21\x73\xcb\x56\x05\xc1\xd2\xee\x75\xd3\xd3\xdf\xa6\x9f\xa7\xcd\x86\x43\xa8\x65\xf9\x3a\x7c\x42\x4d\xb3\x30\xc0\x3a\xee\x71\x0f\xd7\x9e\xc7\x39\xf5\xa4\xbf\x57\xe0\x4e\xf6\x5c\xd8\x7e\xc1\xb7\x7f\xc3\xb0\x05\x1a\x5e\x97\x13\xb0\x30\x19\x02\xd6\xf3\xac\x4d\x33\x6f\xbc\x73\xcd\x39\x9f\x43\xa8\xd1\x35\x44\xca\xd9\xa8\x2f\x54\x9b\x3f\x9b\xb2\x88\x16\xca\xf8\xc4\x75\x98\x12\xca\x25\x46\x2c\x83\x31\x4a\xbf\xba\xe7\xa8\x8a\xb7\x85\x39\x6a\x5e\x82\x5d\x4f\x2c\xba\x0f\x1e\xbb\x1e\x70\x07\xae\xff\x1b\xfe\x03\x24\x95\xda\xbf\x56\x47\xd5\xbf\x6f\x4e\x6f\xf1\xd7\xf0\x34\x66\xc4\x0b\x9e\x33\xeb\x64\x07\x75\x51\x01\x41\xac\x51\x16\x6b\x47\xbe\x1c\xbc\xfa\xf6\xdb\x16\x95\xff\xd7\x43\x7b\x15\xaa\x11\x81\x9f\xba\xa1\xb5\xac\x11\xd1\x23\x2a\x2d\x50\x7e\xd7\x9d\x75\x17\x90\xb6\x0b\x48\xeb\x61\xf6\xdc\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\xd0\x8e\x77\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x42\x3b\xd9\xd1\xb2\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xe1\x67\x17\x90\xb6\x0b\x48\x6b\x7e\x76\x01\x69\xbb\x80\xb4\xf2\xb3\x0b\x48\xdb\x05\xa4\xed\x02\xd2\xbc\x83\xee\x02\xd2\x1c\x58\xec\x02\xd2\x76\x01\x69\xbb\x80\xb4\xfa\xe7\xd7\x0c\x48\xeb\x28\x5e\x8e\x59\x7c\x7d\xbf\x3d\xba\x4c\xb9\xb9\x1b\x8f\x48\xdf\x5d\xbf\x55\xbb\xfc\xdd\xbb\xfc\xdd\xbb\xfc\xdd\xbb\xfc\xdd\xfe\xe5\xed\xf2\x77\xef\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\x6a\xe7\x2e\x55\x7d\x76\xee\x52\xd5\x67\xe7\x2e\xb5\x73\x97\xfa\x5d\xb9\x18\xec\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\x94\xb7\xf1\xbf\x19\x2d\xdb\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\x6a\xe7\x2e\xe5\xf9\xec\xdc\xa5\x76\xee\x52\xe5\x67\xe7\x2e\xb5\x73\x97\xda\xb9\x4b\x79\x07\xdd\xb9\x4b\x39\xb0\xd8\xb9\x4b\xed\xdc\xa5\x76\xee\x52\xf5\xcf\x2e\x7f\xf7\x2e\x7f\xf7\x2e\x7f\x77\xed\xb3\xcb\xdf\xbd\xcb\xdf\xbd\xcb\xdf\xdd\x6b\x86\x5d\xfe\xee\x5d\xfe\xee\x5d\xfe\xee\x5d\x3a\xd6\x5d\x3a\xd6\x5d\xfe\xee\x5d\xfe\xee\x5d\xfe\xee\xf0\xfa\x77\xf9\xbb\x77\x0f\xc6\xee\xc1\xd8\xe5\xef\xde\xe5\xef\xae\x7d\x76\xf9\xbb\x77\xf9\xbb\x1b\x9f\x5d\xfe\xee\xb0\x00\xb9\xcb\xdf\xbd\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\xcd\xfd\xec\x02\xd2\x76\x01\x69\xbf\xab\x20\x8e\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xf3\x36\xfe\x37\xa3\x65\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x3c\x9f\x5d\x40\xda\x2e\x20\xad\xfc\xec\x02\xd2\x76\x01\x69\xbb\x80\x34\xef\xa0\xbb\x80\x34\x07\x16\xbb\x80\xb4\x5d\x40\xda\x2e\x20\xad\xfe\xf9\xef\x9d\xbf\xbb\x8f\xdb\x81\xff\xa8\xdb\xb9\x83\x19\x7a\x89\x54\x12\xbb\x6f\xd5\x85\x42\x59\x04\xe9\xa3\x79\xb6\x31\x09\xb6\x14\x35\x5b\x61\x60\x4b\xfe\x53\x81\x44\xe3\x5d\xfb\xb8\xd2\x8d\x5a\xde\xa4\x3a\x22\x4b\x6c\xed\xdd\x05\xba\x12\x62\x2e\x68\x50\xfe\xe8\x41\xc1\x5a\x1a\x0f\x51\x1f\x54\x6a\xb3\x17\x7c\xae\x85\xeb\xc9\x1e\x8c\x37\xd9\x03\x16\xc0\xb4\xf5\x0d\x4d\x67\x5a\x28\xcc\x81\xe9\x84\x01\x12\x79\xcf\x32\x5c\x0d\xba\x66\x3a\x8b\x53\x44\x2e\x79\x9e\xeb\xb7\x84\xdb\xa8\x1e\xdf\xa0\x91\x14\x8a\x63\x2a\x76\xd4\x5b\x4e\xf6\xb8\x98\x71\xc1\x73\x36\xd9\x23\x03\x02\x0e\x81\xce\x76\xec\x4b\x65\xd6\x49\x12\xaa\xf2\x21\x29\x77\xe6\x05\x89\x5e\x2b\x8f\x99\xc8\x79\x44\x13\xb3\xc0\xe6\x38\x5c\x10\x9a\xa4\x0b\x2a\x8a\x25\xcb\x9c\x76\x80\x00\xbe\x51\xcd\xfb\x64\x54\x6c\xe8\xf5\xe2\x95\xb9\x11\x39\x44\xb1\x9c\x6e\x6a\x3f\xd3\x8c\x9d\x5d\x9e\xdc\x76\xa1\xc7\x18\x9b\x11\x2e\x62\x1e\xa1\x66\xa7\x8c\x40\x59\xd8\xf4\xea\x75\xaa\x42\xa6\x6c\x26\xfd\xac\x1b\x15\x6b\xa2\x87\x0b\xae\x75\x2a\x65\xc2\x36\x1d\x33\x5a\xf8\xf6\x06\x97\x75\xeb\xea\xc9\x10\xab\x1d\x6d\x99\xbd\x68\x29\x8f\xee\xf0\xff\x64\xe1\x25\x40\x7a\x6f\x0d\xad\x87\x83\x09\x26\x5e\xc6\x39\xc3\x5c\x5a\xa6\x23\xac\xbb\xa9\xd6\xa1\x79\xb7\x24\x91\xf7\x08\x35\x54\xe1\x95\x4a\x2d\xe4\xac\xff\x82\xfa\x1d\xbc\xd8\x9f\x13\x9e\xb3\x8c\x82\x6a\xc5\x37\xf2\x64\x42\x06\x18\x2f\xa6\xb1\x7a\x99\xd2\x8c\x2b\x29\x0e\x08\x04\x8d\x5a\xbd\x8c\x1d\x72\x26\x25\x99\xd2\x0c\x94\x45\xe5\x74\xff\xb1\xe5\x74\xd5\x7c\x9a\xb5\x62\xff\x55\xd0\xe4\xcf\xe8\xe2\x6c\x45\x05\x3e\x33\x32\x02\x57\xd0\xc6\x9a\x3e\xca\x29\xfd\x44\xe4\x17\x58\x07\xad\x1c\xf3\xa6\xd5\x9f\x11\xfe\x39\x1c\x0e\xc9\xbf\x9c\x15\xe4\x59\xc1\x6c\xa4\x52\xe9\xec\x8b\x73\xfc\x44\xfc\xc1\x05\xc6\xe6\xd3\x31\x55\xb5\x56\xbd\x01\x2e\x7a\x2c\xce\x37\xd9\x96\xeb\x85\xc9\xda\x16\xe8\x3f\x12\x67\xcd\x0b\xaa\x9e\xc1\x78\x9f\xf5\xd3\xf1\xbc\x9a\xfa\xb6\x9c\x99\xe6\xd5\xe9\x38\x27\xf3\x1f\x80\xa4\xde\x47\xd7\x0c\x51\xea\x87\xe5\x0c\xda\x82\x7a\x10\xfe\x5b\xbc\x78\xf1\xea\x08\xff\x1f\x7f\x29\xfb\xdc\x2c\x64\x96\x0f\x22\x9e\x45\x05\xcf\x81\xad\x35\x9d\x7c\x13\xfd\xf3\x9f\xad\xbd\xc1\x90\x94\x3f\xc3\x36\xcf\xcb\x46\x29\xcd\x98\x11\x89\xe6\x99\x2c\x52\x2d\x12\x4d\x26\x39\x4d\x92\x67\x5e\x83\xa0\xa9\x29\x80\x6e\x41\x25\xbd\xb0\xa3\x59\x1c\xa6\x49\xe2\xe8\xf8\xe0\x82\x5e\x20\x3e\xa0\x10\x1b\x20\x72\xfa\x6a\x23\x9d\xb1\xae\xb2\x2e\x7d\x57\x07\x64\x70\x40\x3e\x03\x1c\x0e\x87\xe4\x06\xae\x1c\x31\x57\x2e\x38\xe8\x52\x66\x8c\xa4\x5a\xfe\x52\x8a\xaf\x18\x99\x62\x90\xc7\xda\xea\x97\x8d\xe6\x9f\x30\x15\xd1\x94\x91\x68\x41\x33\x1a\xe5\x2c\x33\xcb\x3e\x47\x5f\x79\xef\x65\x78\x06\xaf\xd4\x92\xc6\x6c\x50\xa4\x88\x16\xea\x79\x49\x8e\x20\xb2\xd0\x90\x8e\x7b\x36\xd5\x92\x1b\x33\xc4\xc3\x3d\xf1\x98\xa5\x89\x5c\x2f\x99\xf0\x92\x53\xd3\x3f\xcd\x64\x6c\x91\x14\xc6\xd5\x77\x0a\x68\x52\x26\x45\xce\x44\xec\xa0\x3a\x8d\xee\xcc\x17\xff\xd2\xcd\xab\xf1\xc9\x7f\xfc\x25\x74\x03\x62\xb6\xb2\xc3\xff\x07\x69\xdc\x02\x1f\x29\x6b\x63\x9e\xea\xda\xd8\xbe\x5c\xe1\x8d\xb7\xd7\x57\x63\x0d\xcd\x22\xad\xb2\x66\x5b\x06\x11\xac\x3e\x3d\xde\x54\x30\x0e\x55\x1c\xc0\xfd\x02\x22\xd6\x6b\x6f\xbe\xe3\x16\x67\xc4\x4c\x2f\x9d\xd2\xf7\x4e\x9a\x0a\x2a\x07\xe6\x5f\x53\x99\x2f\x86\x04\x3d\x55\xe1\x35\x79\x48\x35\x47\x95\x27\x6b\x47\x98\x7d\x06\xd5\x5f\xbc\x2e\xc8\x0e\x1d\x15\x24\xca\x98\x09\x90\x51\xe6\x76\xcb\x8c\x08\x9e\x3c\x3f\xb0\x41\x2e\x31\x9b\xd1\x22\xc9\x15\xc1\x6d\x69\xd0\x65\x71\x40\xa6\xc9\x25\xb9\xd7\xb4\x72\x64\x24\x67\xbd\x88\x73\x47\x88\x06\xbe\xd5\xd2\xcf\xb2\x10\x0a\xba\x5d\x86\xe2\xe4\xcd\xfc\x84\x2b\xbc\x63\x03\xf2\xb3\x61\xe5\xf4\x82\xec\x4c\x7f\x3f\x30\x4f\x84\x66\x8c\xc1\x7a\x53\x9b\xd8\x7b\x8f\xb9\x88\x92\x22\xb6\x06\xce\x88\x6a\x66\x19\x06\xa8\x86\x21\xf8\x48\x0b\x59\x6e\x09\x86\x7b\x1e\xf2\xae\xac\x2f\xee\xdc\xbf\xb6\x1a\x44\x34\x61\xaa\x86\xf7\x0a\x77\xd0\x2e\xb8\xf5\x83\xce\x09\x7d\x83\x82\x6e\x31\x74\x4c\x48\x03\x3f\x19\xc5\xa2\x23\x9e\x64\x8c\xea\xdb\x14\xdd\x11\x3a\xa7\x5c\x78\x51\x16\xd1\x04\x0d\x52\xc9\x3d\x5d\xab\x8d\xf8\x04\xf4\x16\x39\x20\x82\xad\x58\x56\xc3\x3a\xaf\x92\xa5\x67\x95\xa5\x0a\x0a\x84\xc1\xd3\x51\xda\x55\x53\xa9\x14\x9f\x26\x76\xe2\xca\x1d\x4e\x77\xb8\x49\x59\xe4\x17\xbb\x71\x23\x61\x07\xc1\x76\x01\x3f\x28\x3b\xfb\x45\xee\xcd\x6f\xe1\xe5\x88\x5d\xb7\x07\x95\xcb\x8c\xce\x99\xfd\x4a\xe5\x34\x2f\x10\x30\x68\xf9\x63\xf1\xa5\x63\x93\xb9\xe3\x22\xd6\xd4\xc8\x82\x34\x4d\x8a\x8c\x26\xd5\x37\x91\x14\x68\x88\x57\xc7\xe4\xe7\xbf\xeb\x6f\xf4\xf8\x2c\x36\x81\xb6\xe6\xdb\x89\x18\x0c\x06\xe5\x7f\x68\xca\x6d\xd8\x2e\xa1\x29\x67\x0f\x39\x13\xd0\x78\x78\xf7\x9d\x1a\x72\x79\xb8\x7a\x39\x11\x38\xf1\x69\xa1\x72\xb9\xbc\x66\x68\x58\x3c\x63\x20\x28\x02\xd1\xae\x05\xc7\x82\x3a\x8c\xa0\x6b\xb5\x40\x37\x64\xc5\x72\x35\x8c\xb2\x78\x98\x66\x52\x83\x23\x02\x3a\x34\x94\xd9\x7c\x22\x34\x81\x83\x7e\xc0\xb5\x1c\x93\x40\xb3\xba\x75\x0a\x17\xd4\xf4\x98\xc6\xdf\x12\xae\xf2\xbf\x7a\x7f\xbf\xe0\x2a\xaf\x43\x6e\x63\x95\xe6\x58\xb8\x98\x17\x09\xcd\x36\x1b\xe8\xdf\x81\xda\x65\x2b\xf6\x41\xdc\x09\x79\x2f\xde\x69\x74\x52\xc7\x64\x46\x13\x05\xc7\xaa\x22\xa9\x4f\xfe\x34\x29\x54\x8e\x52\xe7\xca\x1e\x80\xfe\xc7\xc0\x40\x48\x03\x16\x26\x8b\x16\x6c\x59\xc5\x15\xcb\x94\x89\x93\xf1\xe8\xe3\xeb\x9b\xfa\xf7\x8d\xbb\xb1\xe1\x2d\x5e\x8b\xd7\x00\xaf\x03\x9a\x4d\x79\x9e\xd1\x6c\x4d\x46\x63\xa2\x8a\xe9\xc0\x6e\xe3\xf0\x74\x74\x76\x5d\x23\x4c\xa8\xe7\x58\x68\x52\x86\xdc\x0f\xc8\xb8\x20\xa0\x21\xad\xca\x25\x86\x0e\x1a\x17\x8f\x25\x59\x71\xea\x38\xdb\xa1\x1b\x05\x76\x75\xc7\x95\xb3\xcd\x85\x5a\x4b\x7c\xa9\xd4\x71\xef\x62\x40\xe9\xea\x60\x69\xfd\xea\xd5\x73\xa1\x68\xb8\x19\x9f\x13\x8c\xd1\x40\x6a\x61\xc0\xcf\x62\x03\x6b\x24\x17\x40\xfc\xcc\xcb\x45\x7d\xda\x34\x0d\x42\x61\x2e\xf0\x10\xf8\x1a\x96\x29\x2b\xf9\x46\x52\xac\x58\x96\x93\x8c\x45\x72\x2e\xf8\x3f\xca\xc1\x95\xf5\x82\x81\x9a\x70\x1b\xbc\x20\x17\x39\xcb\x34\x07\x04\x94\x0b\x75\xfd\x4b\xba\x26\x19\xd3\xd3\x90\x42\x38\x03\x5a\x1f\xbc\xf7\x9a\xf3\xe5\x62\x26\x8f\x21\x4b\x95\x3a\x3e\x3c\x9c\xf3\xdc\x5e\xd0\x48\x2e\x97\x85\xe0\xf9\xfa\x10\xec\xf2\x7c\x5a\xe8\x23\x39\x8c\xd9\x8a\x25\x87\x8a\xcf\x07\x34\x8b\x16\x3c\x67\x51\x5e\x64\xec\x90\xa6\x7c\x00\x6b\x17\x40\x28\x86\xcb\xf8\x9b\xcc\xdc\x68\xb5\xef\x23\x6b\x9b\xd4\x10\x2e\x5f\xdb\x31\xe8\xdb\x67\x42\xbb\x91\xb5\x47\xde\xa4\x84\xb6\x7d\x9f\xaf\xcf\x6f\x6e\x89\x9d\xdd\x1b\x06\x8f\xc0\xaf\x7a\xaa\xea\x1c\x34\xd0\xb8\x98\x59\x26\x0c\x4c\x21\xae\xce\x02\x39\x80\x84\x7b\xf8\x71\x55\x4c\x97\x3c\x57\x4e\x7a\x23\x39\x24\xa7\xa5\x8d\xa4\x48\x63\x9a\xb3\x78\x48\x46\x82\x9c\xd2\x25\x4b\x4e\xa9\x62\x5f\xfd\x14\x80\x13\x1d\x68\xd8\xf6\x3d\x87\x40\x4a\x82\x90\x02\xb8\x24\xb4\x81\x63\x6b\x5e\x54\xfd\x8c\xd6\x23\xe3\x6c\x20\x65\x95\xba\x80\x92\x26\xf5\xad\x3e\xf6\x60\x1b\x2f\x6d\x8b\x59\x25\x10\xc3\xb1\x51\x3e\xd2\xba\x99\x8e\xc6\xc4\x92\x34\xa4\x60\x53\x96\x48\x8d\x5b\xd2\xa8\x95\x98\xcf\x18\x1f\x66\x3e\xfe\x48\xcf\xff\xd7\x7a\xf7\x17\x52\x55\xce\x52\x5f\xe1\xcd\x77\x23\xa2\x9a\xef\xbd\xfb\xdb\xe6\x5b\x5f\x5b\x59\xf3\x9d\x77\x7f\xfc\x2d\xdf\xf8\xdd\xfb\xb7\x7b\xff\xdc\x23\xd8\xbd\x7f\xbf\xda\xfb\xe7\x52\x8f\x7e\x6f\xdf\x26\x2d\xaa\x3e\xdb\xbf\x7e\xec\x21\x05\xd7\x90\xd1\xb8\x8f\x42\x4a\x9f\xb4\xe9\x50\x0f\x10\x7c\x36\x1a\xaf\xde\xc0\xb5\x1a\x8d\x57\x47\xcf\xad\x68\x6c\xd1\xc2\x2b\xf7\x8e\x50\xcf\x3e\xd2\x77\x73\x46\x23\x06\xe6\xb4\xc9\x64\xaf\x61\xb9\x28\x15\x48\xa0\x0a\x48\xa4\xbc\xb3\x1a\x3c\x6e\x7b\x7a\x15\xb7\xd6\x43\xc7\x09\x5c\x1c\x8d\x6b\x3e\x73\x18\x6b\x0d\x36\x35\xa3\x9a\x00\x22\x42\xf3\x21\xf8\xa1\x7b\x5f\xeb\xc9\x24\x07\x7d\x46\xa1\x36\x1c\xda\x1b\x21\xfc\x10\x33\x59\xfa\x7e\xc8\xcc\x68\xdf\x7c\x83\x36\x2b\x2e\x4f\x26\x7a\x3c\x53\x6a\xb9\xdc\xbf\x21\x7e\xaa\x3e\x2b\x17\xfe\x04\x01\xa5\x40\xe6\x9e\xd3\x10\x82\x75\xf5\xb3\x53\x73\x2f\x46\xc7\x86\xf3\x0a\x15\x50\x5b\xe1\x1b\x96\x2b\x54\x8d\x62\x0a\x29\x9a\x93\xb4\xc8\x52\xa9\x6f\xea\xb3\xd1\xcc\x78\x33\x2d\x58\x75\x34\x7a\x1e\xeb\xae\xd8\xee\x13\x65\xd5\x84\x92\xe1\xf1\x27\x8c\x66\xa2\x3c\x36\x73\x82\xd5\xb8\x7a\x01\x85\x02\x55\x76\xd0\x0f\x63\x32\xc9\xed\x71\x0c\xbd\x8a\xe8\x2f\xce\x95\x91\x6a\x85\x97\x7e\x07\x9d\xc6\x95\x3a\xc7\xac\x97\x1a\xef\xff\x07\x6a\xe1\x8d\x89\xa4\x72\xcd\x29\x33\x89\x5c\x70\x51\x3c\xb4\x63\x7d\x69\x24\x2e\x11\xfa\xcf\x80\x7a\xcb\x34\x5f\x0f\x49\x35\x8d\x6b\x57\x46\x23\x2b\x57\xad\x94\x45\x7f\xe6\x72\xc5\x32\x81\xe6\x99\xd2\x65\x4d\x1e\x54\x6e\x6a\x8b\x4c\x16\x73\x74\x45\xb0\xda\x56\xc3\x2a\xb7\x47\xd2\x9b\xc3\x05\xbc\xd4\x0d\xcb\x3c\x02\x58\x7f\x3b\x46\xb2\x00\x38\xf9\x67\xc2\xf4\xfe\xf1\x62\xc7\x1a\x49\x56\x78\x11\xfd\x99\x25\x2a\x07\xa0\x15\x94\x44\x5f\x57\xe0\x3b\x20\xae\xde\x56\x2a\x0c\x3f\x38\xcc\x25\xb8\xb3\xeb\xb5\x58\xd5\x85\xdf\x1b\x20\x91\x11\x4d\xca\x58\x74\xa3\xeb\x1c\xcd\x48\x8d\x9e\x59\x5a\xe6\x9c\x6f\x2f\x50\xc3\x45\xb2\xf0\xae\xb9\x07\xc2\xf6\x81\x9e\xe8\xbd\x1b\x5e\x0b\x20\xe7\x80\xdf\x4b\x64\x2c\x1a\x55\x77\xa8\x84\x75\x6d\xcd\x80\x82\x03\x72\xaf\xc9\x5c\x9d\x38\xfb\xe9\x01\x2a\x5e\x07\xb5\xe3\xf7\x4c\x56\x86\x0f\x56\x3a\x5c\x7d\xb3\xbd\x83\x0a\x97\x18\x41\xe6\xdb\x0c\x7c\x1b\x0e\x3c\xab\x2a\x97\x70\x40\x28\x50\x8d\x4d\xf6\x8f\x18\xd3\xb3\xfb\x76\x95\x05\xcf\xab\xbc\x60\x18\x01\xa5\x85\x92\x0c\x33\xe6\x99\x59\x14\x79\xa6\x0a\x3f\x85\xa1\x0a\x8e\x96\xe5\x8b\x17\xfa\xbf\xcf\x4d\xf8\x0e\xd8\x04\x59\x4c\xf4\xba\xff\x4c\x78\x4e\xb8\x12\xfb\x79\xa5\x40\xee\x7e\xc9\x09\x5e\xe6\x34\x93\x9a\x7b\x71\x50\x00\x61\xec\x50\x85\x3a\x1e\x56\xab\xf6\xbe\xb9\x36\xc6\xea\x18\xf7\x0a\x21\x8d\xc0\xfd\x60\xd8\x23\x9a\x94\x34\xc7\xb5\x4c\x13\xb6\xd4\xb8\x86\xa4\xbe\x22\x1c\xee\xa2\xd5\x9f\xfd\xa7\xc7\x73\x4e\x93\x64\x4d\xfe\x2f\x0d\xe3\x34\x63\x03\x70\x65\x29\x0d\x34\x63\x7d\x48\xcc\xe4\x27\x2e\xc9\x7e\x54\x2c\x43\x32\x81\xfe\xd8\x72\xf4\xc8\xe0\x9b\xb2\xf7\x52\x78\x35\xfd\x6d\xc4\x5b\xf8\x93\xd3\x6d\x88\xfb\xba\x9d\x71\xb4\x07\x3f\xa2\xd9\xda\x3e\xf8\x66\xc5\xd0\x80\x6b\xf1\x59\x78\x81\xdd\xb6\x88\x50\x90\x6f\xc3\x10\xa1\x1f\xfb\x1a\x3f\xe8\x38\xdc\xe2\xdd\x35\xf1\xa7\x36\x59\xb1\xd7\x79\x77\xca\x50\x8b\xca\x44\x84\x5e\x4f\x25\xbb\x61\x0e\xdc\xf8\xa5\x6e\xf1\x3a\x76\x7a\xa9\xb6\x7a\xa7\x76\x7b\x34\xea\x6d\x75\x74\x6f\x0d\x2e\xfd\x3d\x25\x21\xfb\x5a\x39\xa7\x3a\x7c\x35\x45\x80\x60\x0f\x00\xb8\x81\x5f\x5a\xb2\xca\x3d\xda\xc3\x33\x45\x36\xb6\x13\xdd\x4f\xaa\x40\x6e\xbc\x70\x1c\xde\xb9\x99\xc3\x1d\xe3\x48\x66\x11\xe1\x5c\x9d\x55\x60\x87\x7e\x6a\x4b\x19\x04\x73\xb4\x9b\xe5\x38\x4e\x92\x56\x24\x40\xef\xbf\xd0\xa0\x18\x19\x91\xa6\x8c\x66\xa5\xdf\x1d\x04\xde\x90\x72\x5d\x95\x69\xda\x8e\x6c\xfd\x27\x2b\x7e\x7d\x10\xf4\x2e\x6c\xdc\xca\x9d\x0e\xf1\x57\xd6\x21\xf2\x94\x2e\xa7\x89\x8c\xee\xbe\x86\x02\x71\x34\x3e\x79\xff\x56\x0f\xde\xd4\x1e\x96\x3f\x6c\xaa\x0e\xab\x05\x35\xf5\x86\xe5\x2f\x3b\xa5\xa1\x59\xe5\x4e\x69\xb8\x53\x1a\xfe\x71\x94\x86\x25\xd1\xe8\xa5\x31\x14\x4d\xea\x53\x7d\xb6\xd7\x17\x6a\x31\x44\xc3\xae\xf3\x35\x37\xed\xac\xa4\x07\xe4\xca\xb8\x13\x71\x85\xff\xb4\xd2\x20\x06\xcc\xb1\xdc\xab\x16\xe2\x79\xe9\xb8\xef\x94\x06\x21\x93\x3d\x2d\xf3\x1e\x63\xf9\x0e\xfd\x27\xf0\x3b\xe0\x46\x3a\xd9\x83\x01\xc1\x3b\x93\xe5\x07\xce\x84\x01\x01\x56\xb7\x84\x7d\x61\x31\x1a\x90\xa6\xb7\x64\xe8\x69\xa2\xc5\xb0\x50\xba\xf3\x3a\x64\xf4\x3b\x0c\x14\xab\xea\x43\xb8\x18\x14\x26\xc6\xc2\x32\x17\xb0\xe2\x21\x11\x3c\x81\xba\x32\x81\x48\x87\x25\xa3\xc8\xbd\x54\xa3\x11\xb8\x63\x8c\xa1\xb2\x4f\x48\x31\x70\xc6\xd0\x32\x32\x17\x31\x7b\x20\xfc\x20\xa4\x29\x30\xbf\x97\x91\x27\x5c\x13\x41\x03\x7c\x67\x9a\x8d\xc5\x02\x85\x0c\x8c\x89\x74\xc5\x8c\x89\x13\xd8\x11\x95\x92\x11\x87\xd4\x1d\x34\xc7\xeb\xc8\x4a\x35\xed\x49\xf9\x8d\x97\xd1\xd3\xa0\x7c\x04\xa3\xd4\xc2\xd7\x7f\x43\x6e\xaf\xce\xae\x8e\x31\x03\x91\x28\x92\x84\x4e\x91\x59\x5c\x52\x51\x80\x50\x4b\xe3\x18\x78\xc6\x21\xf9\xc4\xec\x13\x83\x74\x88\x94\x29\x0a\xb2\xc1\xdc\x9f\x92\xf3\x1b\x8d\x61\x0b\x2a\xe2\x84\x91\x9f\xff\xfe\x3f\x34\xf1\xc3\xcb\x96\xac\x4d\x2e\x11\xaf\xd8\x6e\x17\x12\x92\x06\x5a\xd8\xef\x0a\xa6\x9d\x88\xe9\x40\x1f\xfc\x66\x69\x89\xa9\xa5\x4f\x8f\x25\x64\xce\xa9\xf9\xd6\x0b\x9e\xcd\x75\xfc\xae\xa8\xc0\x90\xdc\x4a\x32\xd3\x0f\x8f\x73\xde\xa8\x11\xc1\xe8\xbb\xaa\xa3\x97\x22\xe8\x8b\x52\xf3\xe1\xaf\xe3\xe5\xbe\x32\x75\x98\x2c\x0a\x39\xcb\x08\x86\xaa\x53\x0f\x62\x32\xd4\x80\x94\xdc\xfe\xf6\xd8\xd6\x29\x26\x23\x26\x7c\xe6\x7e\x21\x8e\xf4\x92\x95\x15\xd3\xec\x33\xcd\x7c\x24\xd9\x6c\x6e\xbb\x1a\x0b\x7d\x84\xda\xae\x40\xc2\x47\x4b\x8b\x11\x8f\x3b\x9d\xbd\x6f\x2d\x26\xed\x2b\x72\x3a\x3a\xbb\xde\x92\x56\xc7\x2c\x61\xb9\x57\x6e\xae\xcd\x72\x86\xcd\xcc\x5d\x28\x99\x41\x13\x29\x55\x3a\x88\xdf\xcb\xec\x8e\x66\xb2\xd0\xe8\xec\x14\x0a\x08\xa8\x35\x35\x5e\x39\x21\xe3\x27\xe3\x11\xba\x0a\x4f\xd7\xb8\x2c\xa4\xab\x09\x46\xbe\x64\x2c\x2f\x32\x41\xa0\x9e\xc7\x2c\xe1\x7e\x48\xb3\x2c\x93\x99\x0d\x6b\xa9\x9e\xd5\x29\x63\xc2\x61\x8f\x72\x4b\xa9\x6c\x44\x36\xcb\x4b\x8a\xb6\x7d\x50\xd8\x7f\x15\x4c\x44\xec\x12\xe2\xdb\xbc\x60\x04\xdd\xff\x31\x79\xd1\x01\x62\x4d\x40\xb5\xa0\x07\xc6\x2a\x1c\xd4\x44\xcd\xa1\xb6\x98\x2b\xbb\x05\x8c\x37\xcf\xb9\x5f\xa7\x51\x6d\x9d\x2b\x72\x9f\xf1\x3c\x67\xc2\x88\xfb\xb5\xf7\x0a\x5c\x89\x95\x34\x93\xa2\x58\x8e\xd3\xfa\x89\x2e\xac\xc4\x65\x60\x88\x89\x47\xd3\x0b\x01\x4d\x45\xae\x4a\xcf\x77\x93\xf3\x39\x63\x09\xa3\x2a\x70\x75\x80\x17\x3b\x20\x29\x55\x8e\xf9\xb0\xbe\x71\xe7\x39\x04\x2a\x5a\x27\x6e\xde\x41\x93\x44\xde\x2b\x52\x28\x57\x61\x0c\x7e\xd5\x2a\x27\x94\x64\x14\x73\x8d\x9b\x6c\x59\xfa\x8d\x66\x42\x15\x06\x00\x23\x6f\xa5\xc8\x05\x05\x7d\x35\x20\x11\x6e\x48\xbf\xce\x22\x26\x19\x1b\x98\xc5\x68\x29\x0a\x72\xe3\x41\x38\x22\xb6\xb1\x6c\xba\x07\xa3\xb0\x50\x0a\x3c\xbd\x47\x6f\x42\x08\x17\x78\x97\xeb\x08\xf7\x4e\x66\x15\x49\xf7\x60\x5f\x6f\x6a\xd7\xb1\xa4\x4e\x66\xa1\x51\x38\x23\x75\x78\x3a\x16\x97\x7c\x93\x93\x86\x01\x51\x08\x82\x4a\x9e\x84\x75\x15\x3a\x0c\x5d\x62\x62\x2d\xa7\x41\x1c\x21\x55\xa4\xeb\x1d\x5b\xdb\x44\x16\xa9\x3a\x20\x0a\xe5\xe0\x3b\x06\xde\xf9\x11\x55\xb9\xa9\x73\x06\x04\x34\x48\x20\xfc\xf4\x1d\x33\xb2\x9c\xf4\x14\x14\x6e\x6a\xad\x6d\x8c\x6d\x29\xb1\xe8\xf5\xc4\x5a\xa6\x44\xa8\x6a\x1c\x14\x5e\x7b\x77\x22\xc5\x9c\x65\x48\x96\x8d\xf5\x10\x0b\xc8\x7c\x50\x38\xdc\xa9\x14\x33\x3e\x6f\xce\xa7\x2f\x09\xa3\x3e\xc7\xfc\x56\x1a\x58\x88\xf2\xa4\xbb\x36\xf8\xa1\x6a\x6a\xe3\x91\x32\x8c\x7e\xb6\xfa\x4e\x97\x51\x42\x4d\x7e\x20\xd8\x42\x73\xf5\x75\x56\xea\x0b\xf2\xbe\xc1\x47\x39\xa0\x68\x1e\xb8\xeb\xde\xf8\x29\xc0\xb7\x0f\xe0\x81\x6f\x7e\x57\xc7\x98\xe6\xaf\x0e\xac\x77\xea\xcb\x56\xf5\x65\x04\x28\xfe\xb5\xf4\x97\x78\x81\x7c\x0a\x4c\xfc\xc5\xaf\xc1\x34\x6b\xf2\xa9\x30\xa3\x72\xc0\x9d\x0e\x73\xa7\xc3\xdc\xe9\x30\xff\x70\x3a\x4c\xa4\x1b\x5b\x28\x31\x5d\x12\x54\x7d\x1e\xa1\xc5\x2c\x72\x69\x98\x48\x06\x6c\x86\xef\xc5\x6c\x65\x00\x96\xf4\x01\x3b\x8e\x59\xf6\x23\x68\x22\xbb\xf8\xc3\x7a\x7b\x50\x85\x0a\x29\x06\xff\x60\x99\x3c\xb0\x8a\xb1\x25\x7d\x70\x18\x40\xd7\xf8\xd3\x58\x1a\x64\x2d\xa3\x02\x52\x61\x94\x9a\x4b\x90\x91\x02\xca\xcb\x25\x7d\xe0\xcb\x62\x79\x4c\x5e\xbd\x7c\xf3\xa7\x37\xdf\xbd\x3e\x7a\xf3\x27\x4f\x23\x2e\xb0\x91\x47\x70\x6b\xe7\xd0\xbb\x58\xbe\x16\x58\x86\xd9\x8b\x8d\x43\xda\x86\x6f\xd8\x31\x07\x0d\xe6\x00\x75\x4d\x5f\x8b\x39\xf8\x11\x46\xf7\x31\x07\xf8\x8b\x9f\x39\x30\x6b\xf2\x31\x07\x8b\x72\xc0\x1d\x73\xb0\x63\x0e\x76\xcc\xc1\x1f\x8e\x39\x40\xba\xb1\x05\x73\xe0\x92\xa0\xea\xb3\x3d\x73\x00\xcf\xee\x53\x14\x4b\xbd\x04\x6d\xbf\xee\x24\xac\x9b\x6e\xe5\x46\x90\x58\x8e\xce\x82\xfd\x7c\x9a\xf0\xe0\xc3\xeb\xb1\x95\x0e\xca\x29\x76\xaf\x6c\xcb\x2b\x9b\x4a\x99\x7c\x9d\x17\x76\x2c\xad\x5b\x9e\xfb\xba\xea\x6f\x7d\x2f\x2b\xac\x63\xf3\x55\x4d\xcd\x20\xbb\x17\x75\xf7\xa2\xee\x5e\xd4\x3f\xd8\x8b\xaa\x69\x45\xef\xd7\x54\x37\x7e\x8c\x5c\x8d\x29\xd8\x3e\xa8\x1e\xde\x06\x65\x53\xeb\x36\xa1\x30\xe7\x13\xaa\xff\x89\xa6\x55\xa5\xe7\x8f\x0d\x39\x83\x9c\xa3\xbe\x27\x17\x9c\x7d\xca\xa4\x55\x36\xe2\xe9\xa0\x4a\x3a\x95\x4b\xf2\xf3\x64\xef\xb6\x10\x82\x25\x90\xeb\x6c\xef\x93\x89\x98\x98\xec\xfd\x1d\xf6\x3d\xa5\xd1\xdd\x00\xb2\x38\xe6\x7c\xca\x93\x0d\x81\x92\x7c\x9d\x78\x31\x78\x6c\x6f\xf8\x3f\x7a\x05\x25\xa0\x39\x48\xf1\x7f\x80\xbc\x5f\x28\x8c\x24\xa9\x22\xfc\x08\x55\x8a\xcf\xc5\x52\x5f\xa6\x60\x6d\x08\x93\x3e\x4c\x26\x43\x72\xe6\x80\xe7\xd5\x91\x19\xcc\x04\x72\xbe\x7c\xf5\xca\x7e\x71\x14\x34\x8f\x04\x98\x9c\xbe\x56\x7c\x38\xe4\xc7\x98\xf0\xb9\xa2\xd3\x84\xbd\xfd\x61\x7c\xfe\x10\x88\x15\xa8\x13\xad\x33\xec\x40\x18\x34\xd7\x24\x2a\x93\x45\x99\x62\x1d\x20\x32\x1a\x13\x8d\xf5\xfb\xc6\xa9\x80\xc8\x95\xdf\x43\xe8\xed\x0f\xe3\x21\xf9\xf9\xcc\xda\xb8\xe1\xd1\xfc\xbb\xa7\x96\x6b\x2b\xc3\x66\x36\xd0\x69\x3c\x02\x93\xb2\x6d\x0c\x5a\xa2\xac\xa8\x22\x42\x35\xd7\x5b\xb9\x0b\xe0\xd9\x57\xc1\x9e\xbe\xc5\x57\xdb\x05\x04\xd8\x72\xd5\x3c\xe5\x69\x37\xa8\x4b\x6b\xdd\xb1\x21\xde\x90\x75\x8f\x63\x8d\xf2\x2a\x7a\xf4\x64\x3c\x5a\xbd\x84\x5b\x77\x4f\xb3\xd8\xbb\xda\xda\x6d\xd4\x8f\x43\x6e\x5e\x17\x77\x54\xd8\x3a\x12\x93\x83\xfa\x4f\x5e\x00\x60\xc8\x2c\xbe\xd2\xfa\x02\xe9\x45\x0d\x3d\xc7\xd7\xe1\xbb\xc3\x44\xe8\xfc\xfc\x67\x68\xda\x57\x47\xa8\x61\x49\x72\xa0\x47\x7a\x4f\x2e\xa5\xf3\x8f\x09\xf1\x60\x31\x4b\xf8\x8a\x65\x55\x95\x21\xfd\x55\x59\x83\x4f\x35\x72\x8d\x7b\x4f\x98\x74\x9d\x32\x81\xb4\x97\xde\x28\xa9\x8d\xbd\xdd\x02\xb1\x1e\x8d\xa1\x03\x24\x64\x02\xfb\xb1\x70\x72\xb5\x4d\xf6\x30\x7d\x9b\xad\xa9\x09\x95\x7a\x07\x58\x3d\x76\xb2\x37\x24\xe4\x24\xb4\x5f\x3d\x66\x63\x84\xca\x87\xa3\x50\x66\xe6\x0a\x86\xfa\x6c\xf5\xb5\x06\x1c\x09\x56\x4d\x77\xe0\x55\x8f\x61\xdf\x80\x1d\x21\x27\xce\x1a\xea\xeb\x0e\x8d\x0e\x0b\xb4\x88\xde\x5c\xe0\xbd\xcd\x84\xe7\xae\x01\xe3\xc8\xf4\xed\x08\x8d\x49\xab\x4a\x60\xa6\xea\xae\xe5\x42\x6d\xad\x08\x3d\xb8\xb0\x27\x50\x05\xdf\xb6\x56\x50\x7c\xc6\x67\xf5\x67\xf3\xb9\x5e\x45\x05\xeb\x56\xd4\x69\x7f\xe8\xfc\xb2\xad\xc6\xf8\xf7\x3d\xa2\xef\x4e\x2d\x7f\x82\xf6\xc1\x22\xab\x78\x13\xcf\x81\xb7\xa3\xfa\xa8\xb1\xc7\x03\x5b\xe6\x84\x2b\xf4\x2c\x00\x40\xa1\x27\xd7\x64\xef\x92\xad\x20\x2b\xfa\x33\x48\x41\x5e\x9f\xcc\x37\xba\x1e\xc1\xd0\x66\x5f\x7d\xbd\xd6\x30\x44\x9a\x0f\x64\x91\xcf\x25\x17\xf3\x3f\x0a\x49\x6d\xa5\x3a\x82\xe6\x57\x3d\xe1\x81\x19\x4b\x1d\x00\x56\x54\xd5\xd2\x45\x48\x0c\xea\x54\x0f\x23\xad\xa1\xdc\x86\x23\xd6\x82\x87\x4b\x00\x36\xa8\xab\x2c\x72\xc5\x63\x56\x4a\x98\x25\x8f\xea\x1b\x14\x6a\xab\xa8\xff\x2a\x58\x46\x63\x6f\xa1\x9c\x76\x70\xc8\xb8\x77\x49\x84\x13\x74\x00\x33\x5c\xbb\xc9\xa1\xa7\xd1\xc5\x78\xd5\x96\xa1\xc2\x40\x6a\xa6\x6b\x4c\x99\xe7\x5b\x73\x59\x57\x68\x3b\x64\x5e\x3d\x24\x54\x3c\xf1\x6a\x7f\xfc\xe9\xe2\xe4\xf2\x57\xbb\xdb\x30\x9b\x97\x39\x2e\x17\xf0\xe8\xcb\x1d\xd4\xab\x6d\xba\xbe\xec\xd4\x67\xb8\x64\x2d\x9c\xd7\xa2\x27\xea\x9e\xf4\xc3\xbb\x62\xca\xa6\x05\x4f\x62\x96\xc1\x04\x76\xfa\x67\x20\x81\x43\xa6\x71\xeb\x86\x79\xcb\x97\x4c\xe5\x74\x99\x1e\x83\xd7\xbc\xab\x9d\x43\xad\x17\xce\xf3\x55\x94\x74\xd7\xd5\x04\x9b\xba\x3a\xe7\x47\x9f\xca\xce\x5d\xdc\xa6\xe6\x2e\xab\x8f\xbc\x53\xe0\xed\x14\x78\x3b\x05\xde\x1f\x4c\x81\xe7\x10\x90\xde\x7a\xbc\x0d\x8a\x54\x7d\xb6\xd7\xee\x19\xa2\x13\x43\x22\xdf\xae\xa7\xfe\xda\x6d\x5c\x2f\xd4\x8e\x5f\x51\x11\x1f\xd6\x94\x57\x7e\x8d\x05\xb8\xba\x6c\xe8\x3b\xd8\x43\x94\x14\xb1\xa9\x18\x2c\xd8\xbd\xeb\x8b\xba\x8b\x9c\xff\x95\xed\x5e\xfa\x75\xae\x1e\x6c\x55\xe3\xed\xbe\xc6\x43\xfb\xd7\x62\xca\x4e\xab\xf9\x4e\xdd\xf9\x9a\xef\x6e\x5b\xdb\xcd\x67\xb8\x75\x27\xcd\x57\xb9\xad\xf1\xee\x91\x36\xab\xdc\x3d\xd2\xbb\x47\xfa\x8f\xf3\x48\xb7\x51\x9b\xcd\x37\xbb\x56\x46\xa2\x09\x60\x27\xb0\xc7\x21\x32\x75\xc1\xb9\xff\xd3\xed\x0c\xd1\x47\x46\xb7\xb3\xa1\xd6\x1a\x0b\x7b\xd8\x99\x4d\x49\x9a\x15\x8f\x0b\x9a\x74\xd4\x0d\x75\xa6\xdd\xfc\xb9\x43\xc3\xde\x55\x0a\x34\x50\x00\x34\xb0\xe4\x7a\x35\xd0\x6a\x5d\xc1\xf2\x9b\xe7\x46\x61\x0f\x91\x99\xa0\x49\x38\x80\xa8\xc9\x5c\x42\x48\x7e\x2e\xad\x76\x20\x30\x42\x8f\x42\xae\x9a\x4c\x89\x88\x27\x2c\x1b\xb3\xec\xff\x67\xef\xdf\x97\xdb\xc8\xad\x85\x51\xfc\xff\xdf\x53\x60\xcb\xbb\x4a\xf6\xf7\x89\x94\x2f\x33\xce\x8c\x52\xa9\x5f\xc9\x92\xec\x61\x45\x96\xf8\x49\xb2\x3d\x39\x61\xb6\x0b\xec\x06\x49\x94\x9a\x40\xef\x06\x9a\x12\x33\x49\xd5\x79\x87\xf3\x86\xe7\x49\x4e\x61\x2d\xa0\x1b\xdd\x44\x5f\x28\xc9\x33\x93\x1d\xb2\x2a\x19\x8b\xc4\x75\x61\x61\x61\xdd\x17\x97\xcd\x41\xc0\x75\xe2\x70\x55\xeb\xe8\xdc\x87\x53\xfc\x4b\x4b\xf3\x2f\x48\x93\xe0\xa6\xe0\x8d\xd1\x83\xee\x53\x04\x1b\xba\x84\x6c\x54\x53\xe0\x25\x7c\x63\xd7\xf7\xcb\x90\xa5\xcb\x7d\xba\x03\x87\xbb\xc2\x86\x1b\x92\xb3\x6d\x40\xe0\x42\xc6\xed\x27\x6d\x7e\xff\x7d\x1c\xf2\xc2\xcb\x97\xd7\xf7\x80\xfd\x1c\x7b\xa5\x75\x5c\xad\x45\xe4\x14\xfd\xf0\x42\x42\xd6\xc7\x32\xed\x79\xdb\xe9\x9e\x3a\x13\xe2\x43\x77\xda\x73\xb7\xc4\x3a\xd7\x9f\x64\x8c\x36\x64\xd0\x6d\xd8\xf3\xfe\x71\xd1\xad\x3c\xd9\x5c\xcb\x25\xd5\x3c\x2a\xcb\x4b\xc9\xce\x7a\xe7\x55\xa8\x80\x28\xc4\x56\x2c\x5b\x5b\x03\x49\x89\xcc\x0e\x26\x6d\x28\x4d\x7a\x17\xe0\xed\x53\x7e\x37\x61\xf4\xf6\x43\x46\x23\xb6\xe5\x7d\x3f\xaf\xf6\xab\x5d\xf7\x6a\xc8\xa3\xc3\xf9\xb6\x3d\x81\x5e\x1b\x8b\x8a\x43\x5d\x42\xea\x5b\xc2\xca\xf0\x71\xb3\x5c\xf3\x86\x5f\x23\x9e\x04\x82\x02\xaa\x43\x5a\x1b\xfb\x68\x4c\xe6\x34\x9b\xd2\xb9\x59\x4e\x92\xb0\x08\x23\x55\x4b\xc0\xbf\x7a\x2c\x19\xf9\x77\x24\x9d\x04\xee\x3f\x94\x41\x6c\xbb\x7e\xd5\xdd\x5e\x17\x5d\x7c\x27\x1b\x5b\x45\x4e\x92\x48\xa6\xeb\x9e\x95\xbf\x81\xa2\x96\x55\x7a\xbc\x1c\x98\xca\xdf\xa5\x25\xa8\xdf\xf6\x95\xc0\x04\x79\x7d\xde\x09\x9b\x4f\xbb\xe5\xa5\xb0\x29\x30\x7f\x1f\x6f\xc5\xbf\x1f\x56\x77\x1d\x75\xb5\x1a\x64\x9f\x23\xaf\x56\x82\x6c\x3b\x7a\x3b\x76\xd3\xf2\x6d\x6d\x47\x1f\x35\x76\x38\xf0\x5b\xe0\x80\x4b\x6d\xdc\xc1\x45\x55\x4d\xc4\xb5\x3e\x6d\x78\xe0\xc6\x6f\xda\x03\xab\x71\x62\x3b\x4c\xf8\x6d\x30\xa1\x3d\x6e\x62\x9a\xcf\x6d\x1e\xd6\x71\x0f\x87\xc0\xd3\x5a\xfb\xcd\x67\x21\xd3\x98\xa9\x23\x5b\x31\xb2\x64\x4b\x99\x85\xf3\x46\x19\x74\x4a\xf3\x22\xc9\x2d\x31\x9c\xce\xa6\x61\x1a\x7f\xae\x59\x95\xdb\xb3\xa4\xbc\x79\xdd\x04\x81\x06\x9f\x4b\xa6\xa3\xf8\xf3\x9b\x13\xb9\x4c\x29\x70\x5c\x8d\x48\x53\x45\x96\xb3\x60\xb7\x1a\xca\x4c\x99\xbe\x33\x1c\xa1\x99\x63\xf5\x26\x2c\xe9\xbb\x01\x0a\x95\x50\xc9\x38\xfa\xd7\xc1\xe7\x03\x5f\x06\xf1\xa5\x0d\x4f\x16\x8c\x26\x7a\x71\xb2\x60\xe1\x90\xdd\xea\xd6\x7e\xf2\x1a\x17\x04\x40\x66\x6e\x29\xaa\x28\xde\x6c\x64\x04\x1c\x39\xb8\x35\x1c\xa0\x17\x93\xd3\xb6\xf6\x44\xce\xaf\x8d\x24\xc2\xf5\xfa\x3a\xca\x18\x0b\x25\xaf\xa9\xf1\xfd\xf5\x1e\xee\x58\x12\x39\x27\xca\xfe\x42\xe8\x54\xae\x98\x4d\x1c\x92\xc8\x79\x43\xa6\x3c\x86\x3e\x31\x56\xb1\xaa\x74\x2c\x73\xed\x1f\xc6\x48\xcc\xe4\xb6\x3b\x4a\x33\xb9\x34\xcc\x64\xae\x3e\x32\x9d\xf1\x48\xf5\xb9\x7a\xfb\xe3\x50\x2f\xb7\xb3\x9b\x93\xb1\xbd\x7c\xce\x17\xbc\x6c\x1e\xda\xd8\x12\x87\xc0\x8b\x9a\x39\xcd\xf2\x94\x8b\x18\x34\x92\x1d\x18\xf8\xe3\xcb\x1f\xbf\x6b\xde\x74\xf0\xa2\x35\x7b\x77\x34\xe9\xba\x1a\x95\x89\xa5\xe9\xa7\x01\x54\xad\xea\x44\xe8\xed\xa9\x75\xed\xb9\x9a\x6f\x03\x5a\x78\x2b\x1c\x7a\xba\x43\x32\xd2\xfb\x50\xcc\x65\x96\x27\x68\x30\x8c\x97\xa0\x99\x94\x10\x55\x6e\x24\x39\x20\x80\x98\xe1\x89\x46\x3a\xa7\x1b\x3e\x43\x38\x22\x9e\xd5\x1d\x2d\x32\x6a\xbb\x84\xf4\xd6\x11\x74\x29\x63\xf4\xcb\x9f\x1a\x56\x7c\xc5\x33\x09\x1e\xea\x64\x45\x33\x0e\x17\x71\x63\xbd\xe8\x25\x79\x9b\x4f\xd9\xc0\x57\x7e\xa6\x99\x8c\x98\xaa\x6b\x3a\xda\xaa\x1b\x95\xb3\x7d\xa6\x41\xd5\xe7\x96\x41\x7d\x4d\xaf\x57\xe5\xd8\xce\xaa\xb3\xd6\x53\xf8\x07\x00\xd0\xe0\xfc\x19\x04\x02\x66\x46\x13\xb3\x24\xc7\x84\xfe\x60\x05\xc8\x85\xe0\x62\x8e\x08\xb2\x65\xba\xa6\xcc\xef\xdb\x69\xd5\xf5\x1b\xd7\x36\x36\x9b\x19\x51\x7f\xc5\x2a\x58\xc1\x95\x9b\x20\xb4\x41\xde\x74\xd0\x32\x3e\xb0\xc9\xd3\x97\x2c\x9b\x3b\x63\xc7\xf1\x78\x54\xda\x3a\x0c\x47\x12\x7e\x92\x1b\xb0\x2c\x00\x97\x0e\x2e\xac\x5d\x6b\xbe\x01\x9c\xa7\xd4\x9c\x93\x2e\xed\x79\x8f\xe5\x93\x1e\x5a\xf4\x8d\x4d\x6c\xa7\x49\x6f\x63\x19\x9f\x92\x5d\xee\xb9\x5b\xb2\x1d\xdb\xbc\xb1\xf9\xfe\xac\x73\x97\x16\xb2\xca\x59\xf7\x62\x9f\xbb\x86\x6c\xe7\xae\xc9\x93\x6a\x2a\x5b\x14\xf1\xe4\x5b\x29\xe3\xc9\x13\x28\x59\x48\x7f\x3c\xe9\xa9\x98\xdf\xd8\xee\x16\xca\xf9\xae\x13\x2d\x75\xf7\x4f\xa3\xa0\xdf\x62\xf7\x64\x1b\x45\xfd\x06\x0c\xfa\x29\xeb\xbb\x07\x05\xd6\xe4\xc9\x15\xf6\xa4\xf7\x55\x20\x3d\xaf\x03\xd9\x4a\x79\x4f\x1e\xae\xc0\xef\xda\x58\x79\x8d\xb6\x54\xe2\x77\x0d\x1c\x60\x94\x3b\x15\xf9\x5d\x63\x76\xe8\xf9\xc9\x16\xc7\xb4\x23\xea\x9d\x20\xea\x65\x1e\xd8\x04\xce\xd3\x99\x08\xc8\x93\x9a\x09\xfa\x6f\xbd\xcf\x05\x6e\x35\x19\x6c\x00\xe5\x29\xcd\x06\xe4\xd7\x7d\xd5\x76\x17\xe5\x09\xb0\xa5\x97\xd5\x81\x7c\x33\xcb\x03\xf9\x46\xd6\x07\xb2\x43\xa3\x5f\x15\x8d\x7a\x1a\x2e\xc8\xb7\x34\x5e\x90\x6f\x65\xc0\x20\x3b\x64\xfa\x15\x91\xa9\xab\x45\x0f\xfb\x07\xf9\x56\x36\x10\xf2\xf4\x76\x10\xd2\x6d\x0b\x21\x7d\xaa\xb9\xf4\xb6\x89\x6c\x00\xe7\xa9\xec\x22\xe4\x69\x6d\x23\xa4\x07\x4e\x75\xd8\x48\x36\xb7\xfa\x44\x76\x12\xb2\xa5\xad\xa4\xcf\x5e\xfa\xd8\x4c\x36\x37\xb4\xb5\xdd\xa4\x69\x3b\x89\x9c\xab\x47\xd8\x4e\xfa\xec\xb0\xaf\x0d\x65\x73\x97\x4f\x6a\x47\x21\x8f\xb5\xa5\x34\x0d\xda\x64\x62\x21\xdd\xf7\xb7\xa5\xc2\x69\x8b\xb9\x85\xb4\x92\xcb\x5d\xe0\x8e\x17\xb8\x63\x83\xe2\x41\x98\xe1\xdf\x24\x35\xec\x05\xce\x80\x02\x15\xfe\x50\xc6\xe6\x54\x7e\xdc\x0c\xc6\xa9\xad\xce\x9e\x42\x11\x7e\xe3\xff\x0c\x43\xf7\x8c\xb7\x29\x14\xdc\xc0\x33\xed\x42\x6e\x76\x21\x37\xbb\x90\x9b\x7f\xad\x90\x9b\x36\x83\xef\x3c\x63\xaa\xd3\x33\xe4\xc6\x55\x7b\x36\xe8\xcf\x20\x26\x15\x3b\xda\x52\xe8\x04\x6b\x47\x99\x3f\x0a\x1b\x67\xe8\x05\xa3\xae\x37\xa6\x1d\x21\x4b\xaa\xa3\x05\x89\x32\xae\x59\xc6\x29\x5c\x12\x4a\x22\x99\x65\x4c\xa5\x86\xde\x8b\x39\xb1\x7c\xa0\x96\x58\xa5\x7a\xab\x58\xd5\xca\x1e\x26\x7b\xc7\xe4\xca\x2c\x90\x89\x88\xa6\x2a\x87\x7b\x5b\xae\x28\xb4\x94\x06\x85\x3c\xb5\x7a\x5d\xf2\x4e\xea\x45\xad\x50\xb5\x57\x7c\x1b\x35\x5e\x66\xa0\x7a\x41\xee\x06\x86\xa2\x28\x3a\x6f\x0b\x63\x0f\x88\x62\x29\xcd\xb0\x3a\x52\xae\x09\xf5\x63\x82\xb1\x09\xe4\xe1\x33\xab\xe0\x02\xce\xa3\x61\xc1\x22\x76\xe7\xe5\x03\x9e\x8b\xf9\x90\x4c\x26\xc2\xd6\xf9\x96\x8a\x83\x35\xba\x06\x89\x05\x6d\x1a\x95\x08\x36\x87\xc5\x59\xc2\x6b\xc4\x15\x36\xe3\xf7\xae\x12\xd7\x64\x32\xd9\xbb\x90\xda\xfc\x67\x48\x8e\x93\xc4\x66\xec\xf7\x47\x0f\x8f\x6c\x13\x4b\x51\x44\xa8\x65\xae\xb0\x04\x1b\xd5\x5c\x81\x5b\x04\x66\x69\xb1\x5b\xd1\x12\xc7\x1c\x92\x63\x78\xec\x36\x33\x1a\x5b\xe8\x02\x72\x52\xe1\x10\xd4\x8a\x6c\x76\xd3\x50\x27\xc9\x6c\xc7\xfc\x61\xf7\x03\x2f\x03\x0e\xde\x0c\x57\x80\x7e\x78\x89\x50\xe8\x2b\x47\xb7\x10\x5c\x62\x38\x0d\x56\xa7\x56\x00\x11\xae\x91\x63\xec\x96\x99\xbd\xa4\x3c\x8d\xa3\xd4\x44\xdd\x32\xdf\x56\xc5\x69\xa1\x86\x1c\xc0\x2c\xc3\xc5\x6c\x11\xd6\x2b\x49\x81\x88\xa1\x85\x3a\x74\x8f\x7b\x02\x83\xf8\x46\xfa\x96\x8c\x3f\x0d\x3b\x9b\xec\x5d\xd4\x3b\xbb\x2a\x53\x29\xfa\xb5\xd8\xdc\x4d\x4d\x75\xed\xcb\x4f\x01\x18\x5a\x10\x01\xc2\xee\xcd\x13\xa6\x80\x3e\x5c\x8a\x64\x4d\x74\x46\x67\x33\x1e\x21\xa4\x5c\xfa\xb1\x2e\xbb\x00\xbc\x72\xcf\x0d\x0a\x81\xb9\x0a\x29\x95\x7e\xe1\x19\xfd\xbc\x2a\x69\x38\x77\x73\x16\xbc\x1a\xc8\x54\x91\x3a\x0f\xce\xd2\x3c\x80\x90\x1f\x0a\x10\x79\x03\x36\xed\x83\x22\x95\x94\x60\xfb\x28\x40\x60\xc4\x3f\x64\xcb\x62\xe7\x98\xa4\xe8\x12\xaf\x02\xa6\x1c\x6a\x1f\x14\x52\x74\x39\x35\x9d\xb7\x65\xc4\xb5\xac\x58\x37\x99\xae\x71\xd1\x6e\xe6\x0e\xa0\xba\x6d\x3b\x78\xb9\x10\x20\xb3\x2e\xa4\x83\xef\x65\x56\xe5\xb1\x0f\x1a\xdf\x00\xf7\x81\xb4\xa9\x9b\x60\x23\x7c\x99\x26\x9c\xa9\x52\x9a\xf4\x91\x0d\xaa\x5e\x76\x1d\x18\x28\x92\xc0\x86\x28\xe6\x8d\x30\xe1\x1e\x7c\x7b\xf9\x98\x14\x95\x5b\x2b\xfb\x6c\xdc\xfe\xfe\x3c\x91\x53\x9a\x3c\x7f\xd1\xa1\xb6\xfb\x75\x00\xf0\x01\x16\x63\x97\x68\xa4\x6b\x99\x55\xbc\x0b\x60\x1b\xed\x83\x9a\x3d\x56\x86\x29\x0f\xba\xeb\x2c\x3b\x56\xeb\x6f\x11\xdd\xfa\x94\x2b\x77\x5a\x3b\x34\x0a\x99\x11\x09\x0d\xa7\x41\x2b\x3f\xe5\x95\x6d\x78\x38\x8a\xb9\x7b\x29\x4d\x05\xd3\xed\x6a\xe7\xaa\x93\x0a\xd3\xaa\x99\x30\x1a\x76\x1e\x6a\xc9\xa8\x6e\x23\xbc\x7b\x02\xe1\x08\xe1\xad\x00\xd1\x29\x4c\x17\x0b\xd2\xd7\x01\xed\x2a\x5d\xac\xa4\xa5\x34\x9c\x83\x28\xea\xa8\x63\x85\x64\xcc\x02\xd9\x1e\xf2\xd9\xcc\x47\x7a\xf3\xf6\xb4\x2d\xb7\xe4\x2f\x2e\x3f\x42\xea\x8b\xed\xce\x04\x3b\x38\x95\x55\x8d\xfd\x72\x3b\x36\x4d\x3a\x9e\x17\x73\x8e\xbf\x3b\x58\x8c\x65\xb6\x25\x30\xa0\x47\x07\x34\xa0\x4d\x1f\x70\x90\x6b\xa8\xce\x0a\x58\xaa\xe4\x92\x41\x65\x58\x19\xc9\x44\x91\x05\x5d\xa1\x76\x5f\x1d\xa0\xe3\xc8\x1a\xff\xea\x20\xb4\x19\xf3\x52\x6c\x73\xed\xd4\x73\xca\x69\x17\x61\x74\xcb\x51\x59\x42\x6e\x04\x94\x4e\xaa\x68\xcb\x11\x43\x96\xbe\x9b\x93\xb1\xcb\x13\xfb\xe9\x74\xdc\x98\x84\x14\x3f\x7d\x4e\x95\x8a\xf5\xe5\xac\xa3\xcd\xa0\xdb\x90\xb0\xd9\xb8\x8f\x6b\x51\x4a\xb5\x66\x99\x38\x22\xff\x35\xfc\x5f\xed\x2d\xef\x07\xb7\x85\x8f\xc5\x80\x0b\x3d\x90\xd9\x00\x67\x68\x2a\xf9\x5e\x7e\xfa\x22\xe4\xf6\xcc\xe5\x45\xd9\xa9\x03\x2d\xfb\xf1\x57\x16\x33\xc9\x35\xf3\x1e\x17\xa4\xc2\x46\xc0\x50\xf9\x54\x27\xcc\xf0\xca\x28\x70\xd9\xb9\xda\xc7\x2c\xb8\xa5\x56\x54\xe9\x77\x66\xe9\x76\x57\x76\xb2\x57\xdc\xd8\xae\x67\xa5\xfb\xb1\xed\xf1\xac\x2c\x40\x62\xb6\x7a\xa7\xe7\x9e\x10\xf2\xa2\x03\x0d\x0b\x3b\x00\xb2\x9a\xca\xa5\x66\xd6\x0b\xa6\x18\xc9\xa8\x98\x33\x75\xe8\xd4\x76\x90\xc2\xb9\x35\x73\x30\x7e\x2a\x29\xbd\xec\xd5\x01\xb3\x11\x42\x59\x39\x08\x58\x1d\x98\x9d\xa6\x83\x57\x9e\xe1\x19\x20\x03\xd7\x97\x82\x75\x52\x00\x6c\xba\x15\x05\xeb\xd8\x7b\x49\xde\x6a\x14\x6c\x82\x34\x6c\x62\xa9\xd8\x04\xe9\xd8\xc4\x50\xb2\x56\x9e\x67\x47\xcb\xe0\xd3\x8b\x96\xa9\x07\x48\xc9\xdd\xc2\x71\xab\xa6\xaf\xfc\x04\x85\x63\xf2\x5c\x31\xe6\x54\x64\x40\xca\xe8\x32\x4d\x18\x51\x6b\xa1\xe9\x7d\x28\x7d\xac\xff\x99\x4c\x5a\x65\x6b\xcb\x43\x36\xc9\xce\xed\x63\x3b\xcd\x98\x27\x5a\xcb\x6c\x53\x64\x36\xd7\xed\x42\x6a\x06\x73\x1b\xec\xe9\x00\x82\x8d\x9a\x71\x46\x83\x8e\x57\x01\xc1\xe3\xbd\x26\xed\xa3\x4f\x59\x22\xef\x5e\x1c\x54\x97\xec\x01\x1b\xa1\x4a\xb8\x56\x2c\x99\x39\xe3\x74\x07\x1c\x50\x19\x06\x6a\xce\x9b\x05\x23\xfa\x4e\x02\xae\x41\xf6\x25\xf7\x1b\x12\x08\xf3\x08\xad\xcb\x8c\xeb\x1d\x67\x77\x29\xdc\xee\x9d\x6b\x57\xa9\x7e\x65\x9e\x94\x84\xbb\x41\xd5\x82\x6d\xdf\xfd\x26\xdc\x2d\x64\x62\x0f\xe9\x08\x8e\x68\x32\x29\x1f\xe4\x3f\x01\x75\xf9\x8f\x05\x55\xcf\x97\xeb\xaf\xe0\x73\xf9\x02\xe8\x8e\x25\xf2\x5d\xd7\xd9\x16\x10\x70\x5a\x08\x40\x32\x5c\x1f\x7a\xc4\x94\x01\x39\xb1\x99\xb7\x27\xbe\xc1\x78\xb1\x04\xc7\x0f\xa0\xd2\x68\x53\x9a\xb2\x04\x96\xeb\x56\x8a\x4a\x54\xbb\xa5\xde\x88\x81\x5b\x6e\xdc\xf1\xe6\xa6\xcc\x2a\x9a\xca\xa0\x94\x9f\xf6\xfd\x16\x5b\xea\xda\x4e\xd7\x25\x17\x80\x79\x18\x26\x85\xec\x94\x55\x25\x24\x40\x5a\x6d\x6d\x03\xb0\x25\x17\x3b\xe9\x5e\xbc\x90\x62\x60\x5d\x98\xac\x3d\x8c\xdc\x2d\x58\xc6\xac\x5e\x64\x26\xb3\x25\xf3\x95\x14\xe0\x31\x85\xa3\xf7\x50\xda\x6d\x82\xc6\xcb\x37\xf4\x04\x42\x7c\xd5\xd3\x72\x0b\xde\xab\xea\x6c\xf9\xeb\xf1\x60\x35\xb2\xdc\x3e\x66\x40\xe5\x49\x49\x2a\x63\x17\x12\x87\x26\x90\x82\x44\xf7\x70\x0b\x2d\x1c\x43\x5b\xb1\xad\x77\x0c\x88\x6f\xb0\x6f\xfe\x6c\xc6\x87\x3d\x1e\xdc\xe4\x21\x20\xef\x1e\xb2\x49\xd3\x1c\x00\x7b\x2f\x68\x13\xcf\x15\xf7\x6e\x21\x15\xaa\x25\xcd\xf6\x2d\x0b\x68\x18\xe0\xce\xe0\x8a\x3e\xcc\x1d\xd9\x2a\x68\xa5\x27\xa7\x44\xfa\x72\x4b\x64\xf3\x7e\x75\xf2\x4b\xff\x73\x4f\xba\x22\x2b\x95\x5a\x37\xa4\xfb\x45\x8d\x84\x86\x52\x64\xd5\x4f\x69\x86\x00\xeb\xc2\xb5\x6f\x55\x28\x65\x11\x5b\xb8\x80\xad\xcd\xf7\xdd\x83\x1e\x5f\x9c\xee\xf7\x88\xe9\xd9\x4e\xa3\xd5\x15\x01\x65\xa1\xb8\x95\x7c\x6c\xa9\x74\x1b\xbd\xe8\xc7\x75\x63\x4f\x34\x10\x17\xf4\xd2\x4b\x91\xe9\x26\x02\xa7\xd3\xd2\xe1\xb4\x87\x65\xa6\x95\xe9\xae\xa3\x57\x5f\xae\x3b\x60\xce\x72\xf0\x7b\xae\x5e\xd4\xd9\x6f\x74\xa7\x31\xab\xe9\xd2\x95\x1d\xc2\xaa\xa0\xce\xbb\x5b\xc9\xbe\x02\xe9\xd6\x4a\xcc\x0e\xde\x51\xe1\x16\x52\x00\xa3\x0b\x16\x55\xcb\x96\xb9\x39\x0e\x59\x0f\x7c\xd6\xfd\x60\xd3\xa2\xd0\x01\xe6\x0b\x66\xd8\x5f\xa7\xec\x95\x59\xfd\xed\xc6\xa5\xa3\x2a\xc5\x00\xc2\x69\x42\x3b\xac\x95\x06\x9f\xcc\x01\xfa\x7b\x44\xbd\x51\x01\x05\x29\x9c\x23\x81\x75\xec\x68\x67\x59\xb6\x7a\x36\xb7\x7f\x35\x8b\x65\x96\x31\xd4\x68\x92\xef\x1f\x5e\x45\xdc\xde\x3c\x1b\xfc\x13\x11\x81\x7e\xa1\xe2\x0d\x5b\xc3\x80\xf1\xcd\xfd\xe1\xf7\xe1\x04\xb7\x9b\x1f\xa4\xb2\x76\x87\x70\x93\x13\x36\xd3\xae\x94\x63\xf1\x86\xc0\xed\xe9\xa1\xa4\x21\xfe\x45\x84\x42\x32\x46\x3c\xdf\x57\xe5\xca\x7e\x55\x0a\xda\xdd\x66\xa1\x75\xa8\xbc\x1e\x7e\xaa\x31\xc8\x37\x37\xe3\xd2\x5e\xdf\xe8\xc4\x60\xb0\xc4\x34\x6d\x5e\x7a\xe1\x8f\xfe\x28\xff\x85\x25\xd3\x0b\x19\x6f\xf1\x32\x7c\xc4\x0e\x4f\xcb\xb5\xe3\x96\x91\xa8\xe3\xbe\x3d\x57\x39\x33\x26\xd6\xa6\x62\x9d\x39\x44\x1d\x5f\xc7\x62\x1c\xc5\xad\xf6\x39\x1b\xce\x87\xe4\xc3\xd9\xcd\x01\x19\x7f\xba\x39\x20\x4c\x47\xc3\x17\xe4\x63\x9e\x68\x9e\x76\xd9\x39\x2c\x88\xe0\xdd\xbf\xbc\xda\x37\x62\xd8\x1c\x82\x2c\x7f\x5f\x76\xab\x94\xea\xc5\x16\xe7\xb8\x3f\x36\xed\xbf\xc5\x31\x76\x9d\x60\x37\x45\xf1\x4f\x10\x96\x39\x2c\x8e\x0a\xb7\xe9\xce\xa2\xef\x61\x10\xc2\x86\xf3\x23\x32\x20\xec\x9e\x46\xfa\x88\x1c\xce\xa4\x24\x03\xeb\x24\x76\x44\x0e\xa7\x34\x23\x17\x97\x37\x67\x47\xe8\x80\xc6\x84\xce\xd6\x64\xd9\xc5\x9e\x5f\x5e\x9c\xff\xc5\x52\xce\x35\x61\x1c\x14\x30\x94\x4c\xf6\x60\x12\xd4\x22\x9b\x3f\x71\x16\xa7\xeb\x18\x92\x9b\xae\xed\xaf\x68\xc2\x63\x5a\x28\xfb\x20\x30\x03\x4b\xb5\xe9\x50\x6d\xb6\xf2\xd3\x07\xe7\x6a\xf1\x23\x37\x37\x63\x03\x61\xef\x01\xa0\x02\x01\x6f\x00\xdd\xff\xad\x1a\x69\xf0\x8f\x9d\x32\x07\x08\xab\x47\x9c\xc9\x6c\x79\xe4\xc0\x3e\xc9\x5f\xbe\x7c\x13\x99\x81\xe1\x5f\xec\xc8\x26\x1b\xea\xa5\xf6\x42\x54\x83\x55\xc1\x70\x86\x60\x64\xc5\x11\x96\x43\x0f\x2c\xbc\x1f\x35\x03\x8e\xd1\xe1\x6a\xb2\x45\xbe\x06\x04\xc0\xd3\x8a\x91\x76\xeb\x4f\x39\x68\xdf\x84\x0a\x3d\x08\x52\xf7\x50\x3c\x5a\xf6\x7c\x33\x47\x27\x1f\xc7\x7d\x3d\x40\x80\x18\x35\xaf\xdd\xa7\x52\x5e\x79\x3d\xb3\x5a\x1b\xa3\x89\x45\x02\x61\x4a\x2b\x60\xd8\xe2\xa8\x2d\xf2\x15\x7a\xe8\x6f\xf2\xb4\x7c\x56\xb5\x4f\x15\x65\x1a\x0b\xab\xb9\x99\xa7\x8d\xb5\x05\x7b\xba\x69\xb4\x7a\xdb\xa2\xa7\xec\x85\x89\x51\x7b\x62\x98\xfa\x3b\x0f\x9c\x89\x14\x3e\x94\x00\x28\x11\x16\x2b\xdd\x42\x58\x83\xa0\x26\x03\x60\xf4\xca\x07\x17\x55\x28\x04\xeb\xc3\xca\x5a\x2f\xc1\x34\xa9\x59\xb4\x10\x3c\xda\x4c\x5a\x56\xfd\x80\x5a\x14\xd5\xff\x7c\x99\x4a\x2f\x97\xf6\xad\x61\xca\x93\x7d\x45\x78\xaa\x31\x0e\x6e\xc6\x33\x76\x47\x93\xa4\x63\xa9\x48\x2d\xac\x52\x36\x57\xe8\x38\xc5\xc4\x4c\x62\xbc\x80\x75\xd1\xeb\xbe\x1a\x9d\x36\x3c\x68\xf6\xf8\xc3\x30\xc3\x0c\xd1\x97\x8c\xdd\x83\xe1\xaa\xcb\x04\x86\x67\x20\x67\xe4\x07\xf4\xf2\x86\x1d\xc2\x58\x67\xd1\x42\x92\x2b\x7c\xb4\x6d\xad\xc5\x94\x8b\xb9\x6a\xb7\x81\xf5\xda\x6f\x0f\x62\x90\x86\xc3\x6d\x1a\x00\x32\x1a\xbb\xb0\x9b\x47\x3b\x86\x55\x94\x5b\xc8\x8f\xfb\x50\x1e\x3b\xcb\x58\x23\x14\x7a\x40\xa0\x21\x70\xa2\x61\x73\x1f\x6d\x6b\xcf\xad\xb7\x48\x75\x07\xf1\x20\xd9\xb2\xac\x15\x16\x0a\x62\xa9\x6e\xee\x51\x44\x63\xb3\xbe\x63\x43\xbb\xbe\xc9\xf8\xca\x4f\xdf\x67\xa9\x5a\x30\xb5\x5c\x8f\x0d\xf8\x41\xab\xdd\x2d\x5b\x5b\xd4\x4e\x29\xb7\xa9\xf6\xda\xa7\x37\x22\x2b\x61\xf7\x3a\xa3\x15\x98\xd2\xa9\xcc\x75\x8f\x87\xe4\xa9\x24\x47\x21\xb5\xb9\x7d\xfd\x30\xe3\x02\x1b\x77\x78\xf4\x40\x93\x76\xcf\xba\xdd\x83\xb1\x7b\x30\xfe\xb5\x1f\x0c\x21\xb5\x63\xab\x1a\xc1\xd2\xee\x75\xd3\xd3\xdf\xa6\x9f\xa7\xcd\x86\x43\xa8\x63\xf9\x3a\x7c\x42\x6d\xb3\x66\x80\x75\xdc\xe3\x1e\xae\x3d\x0f\x73\xea\x49\x7f\xaf\xc0\x9d\xec\xf9\xb0\x7d\xc2\xb7\x7f\xc3\xb0\x05\x1a\x5e\x9f\x13\x70\x30\x19\x02\xd6\xf3\xac\x4d\x33\x6f\xbd\x73\xed\x39\x9f\x41\xa8\xd1\x15\x44\xca\xb9\xa8\x2f\x54\x9b\x3f\x9f\xb2\x88\xe6\xca\xfa\xc4\x75\x98\x12\x8a\x25\x46\x2c\x83\x31\x0a\xbf\xba\x17\xa8\x8a\xff\x68\xc3\xbf\x2a\x5e\x82\x5d\x4f\x2c\xba\x0f\x1e\xf9\x1e\x70\x07\xbe\xff\x1b\xfe\x01\x92\x4a\xe5\xaf\xd5\xdb\xf2\xef\xeb\x93\x1b\xfc\xb5\x79\x1a\x3b\xe2\x39\xd7\xcc\x39\xd9\x51\xe1\x10\xc4\x19\x65\xc1\xd5\x90\xbc\x1a\xbc\xfe\xfe\xfb\x16\x95\xff\xb7\x43\x7b\x74\xc4\xe8\xf7\x1a\x5f\xa3\x3b\x67\xbf\xa8\x34\xa2\x65\x8b\x00\x89\x23\xed\x02\xd2\x76\x01\x69\xdd\x66\xcf\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\x6b\xda\xf1\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\x5a\xd3\x4e\x76\xb4\x6c\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xf8\xd9\x05\xa4\xed\x02\xd2\xea\x9f\x5d\x40\xda\x2e\x20\xad\xf8\xec\x02\xd2\x76\x01\x69\xbb\x80\xb4\xe0\xa0\xbb\x80\x34\x0f\x16\xbb\x80\xb4\x5d\x40\xda\x2e\x20\xad\xfa\xf9\x35\x03\xd2\x5a\xca\x2f\x10\x32\xb0\x59\x7c\x43\xbf\xf5\x29\xe3\x1f\xe4\x13\xec\xdd\x78\x40\xfa\xee\xea\xad\xda\xe5\xef\xde\xe5\xef\xde\xe5\xef\xde\xe5\xef\x0e\x2f\x6f\x97\xbf\x7b\xe7\x2e\xb5\x73\x97\xda\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\xf2\xb3\x73\x97\x2a\x3f\x3b\x77\xa9\x9d\xbb\xd4\xef\xca\xc5\x60\xe7\x2e\xb5\x73\x97\xda\xb9\x4b\xed\xdc\xa5\x82\x8d\xff\xc5\x68\xd9\xce\x5d\x6a\xe7\x2e\xb5\x73\x97\xda\xb9\x4b\xed\xdc\xa5\x76\xee\x52\x3b\x77\xa9\xc0\x67\xe7\x2e\xb5\x73\x97\x2a\x3e\x3b\x77\xa9\x9d\xbb\xd4\xce\x5d\x2a\x38\xe8\xce\x5d\xca\x83\xc5\xce\x5d\x6a\xe7\x2e\xb5\x73\x97\xaa\x7e\x76\xf9\xbb\x77\xf9\xbb\x77\xf9\xbb\x2b\x9f\x5d\xfe\xee\x5d\xfe\xee\x5d\xfe\xee\x5e\x33\xec\xf2\x77\xef\xf2\x77\xef\xf2\x77\xef\xd2\xb1\xee\xd2\xb1\xee\xf2\x77\xef\xf2\x77\xef\xf2\x77\x37\xaf\x7f\x97\xbf\x7b\xf7\x60\xec\x1e\x8c\x5d\xfe\xee\x5d\xfe\xee\xca\x67\x97\xbf\x7b\x97\xbf\xbb\xf6\xd9\xe5\xef\x6e\x16\x20\x77\xf9\xbb\x77\x01\x69\xbb\x80\xb4\x5d\x40\xda\x2e\x20\x6d\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xf9\x9f\x5d\x40\xda\x2e\x20\xed\x77\x15\xc4\xb1\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xc1\xc6\xff\x62\xb4\x6c\x17\x90\xb6\x0b\x48\xdb\x05\xa4\xed\x02\xd2\x76\x01\x69\xbb\x80\xb4\x5d\x40\x5a\xe0\xb3\x0b\x48\xdb\x05\xa4\x15\x9f\x5d\x40\xda\x2e\x20\x6d\x17\x90\x16\x1c\x74\x17\x90\xe6\xc1\x62\x17\x90\xb6\x0b\x48\xdb\x05\xa4\x55\x3f\xff\xb3\xf3\x77\x43\x52\xee\xae\xec\xdd\x97\xa6\x51\x0b\xfd\xae\x1e\xba\xc4\xd6\xc1\x75\xa2\xdb\x1d\xe6\x4d\x06\x45\x89\x19\x14\x2c\x8b\xf1\x10\x75\x27\x85\xe6\x77\xc1\xe7\x46\x10\x9d\xec\xc1\x78\x93\x3d\x78\x2e\x6d\xdb\xd0\xd0\x74\x66\x04\x28\x0d\x0c\x1a\x0c\x90\xc8\x3b\x96\xe1\x6a\xd0\x8d\xd1\x5b\x9c\x22\x72\xc9\xb5\x36\x74\x97\xbb\x08\x98\xd0\xa0\x91\x14\x8a\x63\xda\x72\xd4\xf1\x4d\xf6\xb8\x98\x71\xc1\x35\x9b\xec\x91\x01\x01\xe7\x39\x6f\x3b\x8e\xaa\xdb\x75\x92\x84\x2a\x3d\x24\xc5\xce\x82\x20\x31\x6b\xe5\x31\x13\x9a\x47\x34\xb1\x0b\xac\x8f\xc3\x05\xa1\x49\xba\xa0\x22\x5f\xb2\xcc\x6b\x07\x19\xc3\x43\xa3\x5a\x5a\x6e\xd5\x51\xe8\x21\x12\x94\x4f\x11\x37\x44\xbe\x9c\x6e\x6a\x0a\x5b\xd8\xc6\xda\x23\x7f\xe3\xab\x69\x10\x51\x3c\x65\x4d\xae\xac\xcc\xc9\xa3\x5b\xfc\x3f\x99\x07\xf1\xdf\x2c\xb9\x26\x74\x7b\xc0\xb5\xe1\x1a\x1e\x58\xb4\x74\x6f\x5e\xb3\xea\xa0\x5c\x87\x61\x1d\x92\x44\xde\x21\x29\x40\x0d\x52\xa1\x53\x41\xc6\xee\x4f\xa8\x5e\xc0\xdb\xfe\x35\xe1\x9a\x65\x14\x24\xfb\xd0\xc8\x93\x09\x19\x60\xb8\x92\x41\x94\x65\x4a\x33\xae\xa4\x38\x20\x10\xb3\xe8\xd4\x02\x6e\xc8\x99\x94\x64\x4a\x33\xd0\x55\x14\xd3\xfd\xc7\x96\xd3\x95\xf3\x99\x97\x9d\xfd\x77\x4e\x93\x3f\xa2\x87\xad\xe3\x54\xf9\xcc\xb2\xa8\x5c\x41\x1b\xa7\x79\x2f\xa6\x0c\xdf\xcb\x5f\x60\x1d\xb4\xf4\x0b\x9b\x96\xff\x8c\xf0\x9f\xc3\xe1\x90\xfc\xd3\x5b\x81\xce\x72\xe6\x02\x65\x0a\x5f\x53\x9c\xe3\x67\x12\xf6\x6d\xb7\x26\x87\x8e\xa9\xca\xb5\x9a\x0d\x70\xd1\x63\x71\xa1\xc9\xb6\x5c\x2f\x4c\xd6\xb6\xc0\xf0\x91\x78\x6b\x5e\x50\xf5\x1c\xc6\xfb\x6a\x1e\x97\x17\xe5\xd4\x37\xc5\xcc\x54\x97\xa7\xe3\x9d\xcc\x7f\x00\x92\x06\x69\xbe\x1d\xa2\x50\x4f\xca\x19\xb4\x05\xed\x14\xfc\x37\x7f\xf9\xf2\xf5\x5b\xfc\x7f\xfc\xa5\xe8\x73\xbd\x90\x99\x1e\x44\x3c\x8b\x72\xae\x81\xab\xb2\x9d\x42\x13\xfd\xe3\x1f\xad\xbd\xc1\x8e\xa1\x9f\x63\x9b\x17\x45\xa3\x94\x66\xcc\x72\xe4\xf3\x4c\xe6\xa9\xe1\xc8\x27\x13\x4d\x93\xe4\x79\xd0\x1e\x65\x53\xda\xa3\x57\x4a\x41\x2f\xdc\x68\x0e\x87\x69\x92\x78\x2a\x26\xb8\xa0\xe7\x88\x0f\x28\x43\x85\xc5\x23\x6a\xae\x36\xd2\x19\xe7\xa9\xe9\x93\x4c\x75\x40\x06\x07\xe4\x2b\xc0\xe1\x70\x48\xae\xe1\xca\x11\x7b\xe5\x1a\x07\x5d\xca\x8c\x91\xd4\xb0\xff\x4a\xf1\x15\x23\x53\x8c\x31\x58\x3b\xf5\xa6\x55\x3c\x13\xa6\x22\x9a\x32\x12\x2d\x68\x46\x23\xcd\x32\xbb\xec\x33\x74\xd5\x0e\x5e\x86\xe7\x40\xf8\x97\x34\x66\x83\x3c\x45\xb4\x50\x2f\x0a\x72\x04\x81\x6d\x96\x74\xdc\xb1\xa9\x11\x1c\x98\x25\x1e\xfe\x89\xc7\x2c\x4d\xe4\x7a\xc9\x44\x90\x9c\xda\xfe\x69\x26\x63\x87\xa4\x30\xae\xb9\x53\x40\x93\x32\x29\x34\x13\xb1\x87\xea\x34\xba\xb5\x5f\xfc\xd3\x34\x2f\xc7\x27\xff\xf1\xa7\xa6\x1b\x10\xb3\x95\x1b\xfe\x3f\x48\xed\x16\x84\x48\x59\x1b\x47\x55\x55\x06\xb6\x98\xab\x5b\x34\x81\xed\x7a\x8b\x19\xfa\xaf\x96\xcf\x42\x68\x5b\xee\xc5\x42\x1c\xb5\x0a\x05\x2c\xcf\x21\x85\x5b\xa4\xd3\x15\x84\xcc\xce\x6d\x7b\x04\xa3\x43\x8f\x37\x15\x6c\x13\x5c\xc4\x3c\x02\xd1\xf3\x6e\x01\x01\xd3\x3e\x23\xeb\x7b\x65\x59\x29\x27\x48\xa7\xcc\xbd\x93\xb6\x80\xc7\x81\xfd\x6b\x2a\xf5\x62\x48\xd0\x51\x12\x5e\x93\xfb\xd4\x30\x29\x3a\x59\x7b\xb2\xd4\x73\x28\x3e\x12\xf4\x80\xf5\xe8\xa8\x20\x51\xc6\x6c\x7c\x86\xb2\xb7\x5b\x66\x44\xf0\xe4\xc5\x81\x8b\xb1\x88\xd9\x8c\xe6\x89\x56\x04\xb7\x65\x40\x97\xc5\x0d\x2c\xb5\x96\xe4\xce\xd0\xca\x91\x15\xdc\xcc\x22\xce\xec\x3f\xcd\x7d\xb4\x94\xb3\xa8\xc0\x81\xfe\x7e\xa0\x5a\xb7\xd3\x84\x46\xe5\x0a\x6f\xd7\x80\xfc\xd5\xf2\x45\x66\x29\x6e\x8e\xbf\x1d\xd8\xc7\xc1\x70\x99\x60\x36\x70\x53\x62\x9d\x94\xe7\x5c\x44\x49\xde\xb8\xe2\x05\x23\x11\x35\x9c\x27\x0c\x50\x0e\x43\xf0\x79\x16\xb2\xd8\x0c\x0c\xf7\x22\xb0\x92\xb3\xc6\xfa\x2b\xf5\xb5\x55\x16\x66\x48\x52\x7d\xf8\xe6\x7d\x06\xd1\xa3\xbe\x86\x8d\x09\x41\x83\x15\x38\x0d\x2b\x51\x07\xe9\x82\x40\xd4\xaa\xf2\xfa\x19\xa3\xe6\x1e\x45\xb7\x84\xce\x29\x17\x07\x16\x1b\xd0\xec\x91\xdc\xd1\xb5\xb2\x5e\xf0\x41\x2c\x76\xde\x0a\xe8\xa6\x70\x40\x04\x5b\xb1\xac\x82\x6f\x41\xe9\xbe\x67\x79\x9f\x12\x0a\x84\xc1\xa3\x51\x18\xf4\x52\xa9\x14\x9f\x26\x6e\xe2\xd2\x0f\xcb\x74\xb8\x4e\x59\x14\x96\xf7\x70\x6f\xcd\x9e\x69\xed\x92\x65\xa3\xd0\x16\x96\xf5\x36\xbf\x85\x37\x23\xf6\xed\xed\x4a\xcb\x8c\xce\x99\xfb\x4a\x69\xaa\x73\x04\x0c\x9a\x9c\x58\x7c\xe1\x19\x03\x6e\xb9\x88\x0d\x1d\x72\x20\x4d\x93\x3c\xa3\x49\xf9\x4d\x24\x05\x5a\x80\xd5\x11\xf9\xeb\xdf\xcc\x37\x66\x7c\x16\xdb\x08\x4f\xfb\xed\x44\x0c\x06\x83\x89\xa0\x29\x77\x81\xa2\x84\xa6\x9c\xdd\x6b\x26\xa0\xd5\xf0\xf6\x07\x35\xe4\xf2\x70\xf5\x6a\x22\x70\xc6\x93\x5c\x69\xb9\xbc\x62\x68\xca\x3a\x65\x20\x6e\x01\x9d\xae\x84\x63\x82\x02\x86\x08\x74\x79\x55\x4c\xab\x61\x94\xc5\xc3\x34\x93\x06\x02\x11\x10\x9d\xa1\xcc\xe6\x13\x61\xa8\x19\xf4\x00\x16\xe5\x88\x34\x34\xab\x5a\x42\x70\x29\xa5\x5f\x2e\x7e\x9b\x70\xa5\xff\x5c\xfb\xe5\x9c\x2b\x5d\x05\x90\xb7\x26\x0b\x77\x2e\xe6\x79\x42\x33\xff\x27\xf3\x0b\x10\xb2\x6c\xc5\x3e\x89\x5b\x21\xef\xc4\x7b\x83\x29\xea\x88\xcc\x68\xa2\xe0\xc4\x54\x24\xcd\xa1\x16\xda\x15\x90\xf4\x56\x0e\xbc\xe6\x8f\x81\x05\x83\x81\x1e\xcc\x14\x2d\xd8\xb2\x0c\x57\x95\x29\x13\xc7\xe3\xd1\xe7\x37\xd7\xd5\xef\x37\x1d\x63\x9d\xfb\xb1\x75\xf1\x2a\xa7\x1c\xb0\xff\xce\xf9\x8a\x26\x86\xe0\x5a\xbc\xaf\xfb\x2c\x7b\xc8\xdd\xa0\x3e\xf3\x4e\xbf\x8a\xcb\xd5\xac\x16\x66\xa9\xd6\x7b\x00\xbd\xed\x71\x31\x76\xc7\x2c\xb6\xdb\xc3\x75\x00\x35\xb1\x4f\x01\x0d\xe9\x45\xe4\x0c\x5e\x7f\xb8\x11\x43\x60\x11\x58\xa6\x9c\x10\x19\x49\xb1\x62\x99\x26\x19\x8b\xe4\x5c\xf0\xbf\x17\x83\x2b\xe7\xcf\x00\xd5\xbd\x36\x1e\x12\x2e\x34\xcb\x0c\x33\x01\xa4\x00\xb5\xb6\x4b\xba\x26\x19\x33\xd3\x90\x5c\x78\x03\x3a\x6f\xaa\x8f\x86\x89\xe4\x62\x26\x8f\x20\xdf\x90\x3a\x3a\x3c\x9c\x73\xed\x10\x3f\x92\xcb\x65\x2e\xb8\x5e\x1f\x82\x85\x95\x4f\x73\x2d\x33\x75\x18\xb3\x15\x4b\x0e\x15\x9f\x0f\x68\x16\x2d\xb8\x66\x91\xce\x33\x76\x48\x53\x3e\x80\xb5\x0b\xb8\x79\xc3\x65\xfc\x2c\xb3\x37\x45\xed\x87\xe8\xc4\x26\x79\x01\xd4\x6e\x3b\x06\x83\xe1\x36\x48\x17\xb9\x64\x7c\xe6\x0b\x68\x3b\x57\x92\xab\xb3\xeb\x1b\xe2\x66\x0f\x06\x34\x23\xf0\xcb\x9e\xaa\x3c\x07\x03\x34\x2e\x66\x8e\x9f\x01\xa5\xb6\x2f\xfe\xe3\x93\x9a\xf0\x00\x6b\xab\xf2\xe9\x92\x6b\xe5\x25\xaa\x91\x43\x72\x52\x68\xbb\xf3\x34\xa6\x9a\xc5\x43\x32\x12\xe4\x84\x2e\x59\x72\x42\x15\xfb\xe6\xa7\x00\x4c\xdd\xc0\xc0\xb6\xef\x39\x34\x04\x97\x37\xa9\xf2\x0a\x32\xd6\x70\x6c\xe5\x7d\x34\x2f\x52\x35\xba\xc9\x05\xc3\x95\xe1\xe7\x74\x83\xb6\x95\x1f\x77\xa4\xb5\x47\xab\x45\x35\xde\xe0\x87\xbf\x51\x02\xd0\xb9\x0a\x8e\xc6\x05\x25\x44\xa9\x78\xca\x12\x69\xb0\x4a\x5a\xdd\x0c\x0b\x19\x54\x9b\xdf\xf1\x7f\x8b\x97\x14\xde\x51\xf8\xbf\x67\x36\x84\xed\x88\xe0\x03\x76\xa8\xd9\x32\x05\x7a\x75\x88\x5f\x80\xf7\x5d\xe9\xb1\x91\xa9\x41\x36\xa5\xd1\x70\x4d\x97\x89\x79\x91\x7f\xf9\x85\xcf\x08\xfb\x6f\x32\xbc\x7a\x77\x7c\x72\x22\xc5\x8c\xcf\xc9\x64\xcf\x34\x99\xec\xfd\xf3\x9f\x66\xfc\x11\x30\xbb\x8c\x50\x12\x25\xb9\xd2\x2c\xcb\x64\xc2\x8a\x92\x74\xf5\xd1\x41\xfb\x25\x05\x13\xfa\xc0\x74\x86\xa2\x76\x40\x43\xb4\x23\xa6\x0d\xcb\x72\x92\x54\xe9\xd0\x60\x59\x00\x9c\xf4\x4a\x26\xac\xca\x3a\xc0\x36\x68\xae\x17\x32\xe3\x7f\x47\x67\x2e\x8f\x7f\x08\xf0\x07\x0d\x13\x4f\x04\xb0\xae\xd0\xf0\x19\xb9\x90\x31\xea\x15\xc8\x9d\xf5\xd9\xd2\x92\x2c\xa5\xe0\xe0\x9b\x2c\x33\x12\xb3\x84\xe1\x4d\xc7\x47\x97\xa6\xfc\x83\x61\x26\xcc\xc9\x98\x43\xfc\x1b\x9e\x6b\x41\x89\x0b\x24\x1d\x10\x61\xc6\xc6\x3f\x57\x2c\x9b\xfa\x3f\xdd\xf9\xf6\x8b\x01\x5c\x8e\xf2\xaf\x39\xde\xcb\x67\x64\xec\x72\x98\x79\x6b\x2b\x53\x4b\xb1\x7b\xae\x34\x54\x7c\xa4\x8a\xa4\x34\xb3\xd7\xeb\xf8\x23\x29\x77\xbb\xfd\xa2\x53\x19\x37\xac\x79\xce\x74\xd3\x8a\x8b\xed\x3c\xc3\x05\x14\x03\xdb\x08\x37\xc1\x53\x28\x99\x09\xda\x6c\xac\xcf\xa9\xc0\x88\x65\x40\x84\x48\x93\xc8\xe8\xd6\xd2\x6f\x75\x60\x76\x74\xc7\x8c\x60\xa0\x48\xca\x32\x2e\x63\x1e\x11\x9d\xf1\xf9\x9c\x65\xe1\x83\x08\x73\x76\x6d\x1b\xe5\x96\x05\xc3\xcc\x14\xe1\x2d\xbb\x5d\x3e\x7e\x36\xd8\x1f\x9d\x21\x43\x5b\x6a\x85\xcc\x32\xe8\x12\x7e\xac\x7d\xb7\xa0\x22\x4e\x9a\xd0\xa7\xe5\x28\x40\x1c\x67\xe5\xdf\x08\xd2\xf2\x6f\xc0\x67\x16\x3c\xba\xb1\x94\xc9\xe6\x5d\xa0\xdc\x6a\xd4\xc8\x92\xa6\xa0\xe6\x93\x33\xdc\x0e\xa6\x15\x18\x93\xd4\xf4\x7b\xb2\x53\x81\xd1\xda\x8f\x63\x63\xe5\x1b\xc4\x65\x49\x05\x9d\x33\x45\x16\x52\x69\xcf\x65\xed\x49\x96\x58\x19\xf3\x1b\x9e\xcf\x33\x72\xc1\x58\x0c\xfa\x12\x23\x70\x6b\x69\xdb\x3a\xba\xec\xa5\x40\x79\xaa\xad\x05\x46\x7e\xf2\x0d\x7a\xc7\xf6\xe7\x7c\xca\x4e\xca\x53\xc3\xe7\x28\xcf\x0a\x75\x12\x6a\x54\xb8\x36\xd3\x29\x62\xf8\xbe\x08\x9a\x3c\xcd\x66\x0d\xd2\x78\x38\x13\xf9\xb3\x07\xb7\xfd\x0c\x75\x18\x66\x1d\xf2\x4e\x78\x6b\xd9\x80\xc9\x33\x0b\x05\x42\x9d\x56\x8a\xf0\x19\x11\x52\x30\xa4\xda\xaa\x09\x5c\xcf\xdc\x19\x23\x5b\xd1\x04\xc5\x67\x08\x45\x78\x06\xa2\x45\x25\xb2\xa2\x00\x30\xb0\x0b\x1b\x6f\xea\x3b\x2e\x50\x91\xf5\x8d\x9e\x56\x99\xb0\x2b\x86\x51\x0a\xee\x7c\x5a\xc6\x37\xcd\x02\xcf\x7e\xe7\x34\x2a\x07\x16\xcd\x1c\xcd\xc0\x0e\x50\xd5\x03\xf7\x18\xc3\xf7\x78\x40\x02\xa2\xd6\x4a\xb3\xa5\x85\x5c\x6f\x7e\xcb\x3c\x61\x3e\x8f\xd5\xc5\x41\x79\xdd\xc8\x29\x65\x4b\x29\xae\x59\x17\xf3\x04\x8d\x7f\x2d\x86\xc9\x4c\x56\x65\x92\x3e\x29\x5b\x94\x18\x75\xbd\xa5\xaf\x6a\xe9\x32\x27\x6f\x99\x50\xd6\x50\x9e\x7b\x59\x7a\x4e\x2e\x46\x86\xe7\x9d\xa3\xed\x71\x2b\x4e\xa4\xba\x5f\x75\x08\x73\x54\x9b\x5f\x54\x1c\x58\x07\xd5\x1d\x84\xe8\x56\x79\xdb\x9e\x81\x54\x52\x2e\x8f\x08\x20\xb6\x5a\x9a\x7b\x0c\x5c\xd0\x01\x32\x70\x28\xe8\xfb\xd1\xcb\x0f\x67\xa9\x6a\x5c\xa1\x53\xe2\xe0\xc0\xad\x94\xf6\x19\x71\x61\xe1\xd7\x09\x77\x8c\x55\xee\xce\xc5\x22\xbf\xad\x22\x6e\xe5\x2b\xa7\x7b\x75\x49\xb1\x9e\xb9\x24\x47\x4b\x17\xd7\x50\xdf\x45\xcc\x55\x24\x57\x2c\x5b\xbb\xeb\xd9\xb6\xab\xe2\x09\x84\xf5\x6c\xc5\xe6\x6e\x05\xbd\x0d\x9f\xbb\x02\x33\x1a\x88\xf4\x27\x6b\xc0\x71\xbb\x29\x90\x75\x34\x46\x7b\x25\x8d\x57\x46\x98\x55\x25\x20\x5a\x57\xdb\x30\xea\xcd\x3a\x5d\x50\x35\x0c\xb3\xed\xe4\x64\x74\x7a\x45\x68\xae\xe5\x20\x66\x9a\x61\x19\x7a\x29\x80\xce\xd0\x78\x69\x91\xad\x7c\xd9\xf1\x2d\x31\x1c\xd6\x03\xf0\x0b\x3b\x9b\xbe\xad\x28\xb4\xbd\xec\x72\xe8\xbf\x42\x75\x30\x1b\xe6\xc4\x91\x85\x84\x51\xd0\x16\x19\x69\xca\x2a\x17\x3e\x09\xba\xa2\x3c\xa1\x53\x43\xfa\x12\x3a\xf7\x00\x95\xfa\x70\x7e\xe6\xac\x44\x20\xf7\x2a\x0c\xf5\x8b\xaa\x9c\x80\x97\xeb\xcd\x5c\x54\x94\x19\x8a\xa4\x72\xc3\xd0\x2b\xf9\x8c\x7c\xa9\xbf\x90\x06\xce\x9e\xcf\xa8\x9f\x31\x81\x37\x5c\x6b\x7b\x93\xb8\x98\xf7\xb9\x11\xb6\x75\x5a\xf1\xf8\xe9\x79\x25\x2c\x82\x4d\xd7\x0e\x1c\x66\xe1\xce\x78\x52\xee\xff\xd1\xc4\xa7\x46\x6d\x02\x74\x76\x4b\xd6\xbb\x46\x45\x53\x17\x8b\x23\x63\x87\x3e\x0f\x5b\x73\x0b\xee\x79\x18\x54\x60\x8f\x15\xd9\x15\x59\xd1\x8c\xcb\x5c\x91\x93\xab\x53\xbc\xed\x88\x4b\x4f\xc4\x20\x63\x02\x91\x19\x4b\xf8\x3d\x8e\xeb\xc1\xd1\xfb\xb6\xca\x45\x82\xfc\x37\x4f\x53\xc6\x32\x55\x1f\x6a\x3a\x4f\x37\x06\x2a\xbe\xdb\x1c\xa6\x22\x1e\x35\x49\xb1\x4d\x62\x25\xce\x18\xc4\xd2\x8d\x9f\x15\xf3\x09\x6e\x63\x9f\x60\xeb\x46\x29\xa2\x41\x7a\x6a\x95\x8f\xf1\x60\x80\x1c\x01\x42\x3c\x40\x24\xbe\xdb\xc4\x96\x5c\xe9\x82\x45\x17\x71\xc1\x74\x1b\xda\x03\x88\x23\x85\xe1\xc0\x33\x9d\xa7\xdf\x42\xae\xed\xc4\x96\xde\x72\x58\xb3\xb0\x55\xdd\x6b\x7d\x83\x81\x5d\x91\xc6\x6d\x91\xb6\xb7\xa7\xe7\xf1\x04\x16\xd6\x8f\xe0\x5b\x6f\x46\x33\xc3\x93\x6a\xe0\xfa\xe1\xcb\x0d\x18\x9d\x9d\x17\x90\x14\xc8\x77\x81\xe3\xb9\x73\xd8\x05\x22\x93\xa7\xf3\x8c\xc6\x36\x8c\x72\xf5\x7a\xf8\x16\xb9\xc6\x08\x13\x2e\x3d\x33\x5c\x71\xc6\x96\x72\xc5\x62\xeb\xac\xea\x3a\xc8\xcc\xec\x70\x96\x31\xb5\x20\x5c\x28\x4d\x93\xe4\x49\x25\xfa\x16\x5a\x52\x25\x49\xdb\x60\x56\x18\x2a\x15\x80\xd8\x33\x36\x2f\x83\x96\xa6\xa9\x39\x51\x54\x0e\xd2\x24\x91\xd1\xd3\x6e\xf2\xf7\xa7\x5c\xdb\x78\x18\x11\x1d\x40\x84\x04\x06\xc6\x70\x80\x56\x5e\x02\x1e\xc9\x30\x81\x35\x9d\xc1\xa4\x50\xa8\x56\x34\x23\x4f\x45\x90\xe8\xb2\xf2\xf2\xb4\x82\xc1\x97\x9b\xde\x81\xaa\xb6\x04\x77\x35\xd9\x2b\x5c\x1e\xd8\xd1\x74\x0d\xd7\x1a\xf1\x21\x93\xb9\xd9\xda\x7c\x9e\xb9\x48\xec\x6f\x78\xf4\x8d\x3c\x97\x3d\x15\xc4\x4d\x40\xc6\x25\x9f\x5b\xa2\x53\x91\xff\x62\x10\xcc\xc1\xb5\x20\x80\xed\x11\x15\xd6\x69\xfc\x59\x71\xad\x41\xbf\xa3\xed\xbd\x36\xbc\x30\x90\x02\xc8\x96\x58\xde\x6a\x92\x2b\xf3\x93\x79\x03\x07\xe6\x12\x24\xb0\x88\x20\x28\x68\x9a\xaa\xd6\x9d\x97\x4b\x6c\x39\xbf\x80\x0b\x46\xbb\x5a\xa0\x59\x61\xd4\xa9\x30\xf8\x16\xaa\x1f\x1c\x7a\x7b\x75\x8f\xd3\x00\x34\xa9\x78\x7e\xf9\x85\x89\xf8\x9f\xff\xdc\x4a\xc9\x53\xe8\x77\x20\x45\xca\x92\x0a\x3e\x63\x4a\xbb\xf3\x55\x1b\xfa\x1a\x6b\x86\x65\x59\x61\xce\x00\x25\x8f\xaa\xe9\x45\xd0\xab\xca\xc9\xec\x56\x10\x34\xb7\xfc\x19\x46\x7a\x2d\xa9\x81\x0e\x34\x32\x2d\x58\x86\x02\x10\x68\xe4\x3d\x71\xc6\xb2\x0c\x85\x5a\xa8\x50\x2d\xd5\x1d\x70\x52\xd5\x4b\xff\xd3\x0c\x3b\x62\x3d\x56\x9d\x85\xf3\x07\x35\xa0\x69\x5a\x3f\x32\x67\xb2\xae\x05\x12\x80\xa3\xef\xb9\xdf\xbf\x69\x04\x62\xa9\xeb\xb5\xce\xa8\x66\xf3\xf5\x91\x35\x5e\x0e\x3f\x55\xbe\x36\x87\xf8\xcb\x2f\x44\xcb\xbf\xd0\x65\x52\xff\x91\xfc\x83\x70\x11\x33\xa1\xc9\x77\xd8\x8e\x25\x8a\x99\x7f\x91\xc2\xd8\x7b\x25\x93\x84\x8b\xf9\x27\x8f\x92\x67\xfe\x57\xc5\x2a\x97\xf4\xde\x93\x69\x8f\xc8\x2b\x0f\x8b\x08\x71\x18\xe3\xb6\x59\x37\xf0\x27\xd5\x2d\x37\x6f\x9a\x80\x4c\x7c\x45\x45\xb4\x60\xd9\xc0\x59\xef\xd1\x86\x5e\x0a\xbd\x98\x65\x24\x5a\xb0\x38\x4f\x58\x36\x04\x6f\xe7\x61\x99\x77\x05\xdc\x1a\x32\x0e\x61\x25\x83\x54\xc6\x65\x64\x63\x5c\xba\x5b\xac\xde\x0c\x5f\xbd\x19\x7e\x07\xbe\xad\xc4\x4d\x1d\x4e\x1e\x8f\x38\x7f\x40\x28\x98\xea\xc1\x7b\x19\x90\xd8\x4e\x71\x1c\xc7\x52\x28\x4c\x62\x22\x13\x66\x09\x2a\xe4\xf1\x38\xf0\x07\x59\x52\xb4\xfa\x33\xf0\xa9\x85\xe0\x5c\xb7\x4a\x42\xe3\x78\x00\x11\x14\x42\xe5\xa0\x4b\xb0\x6a\x7f\xbf\x7f\x9a\x71\x99\x71\xbd\x76\x3b\x87\x10\x5f\x61\x23\x91\xd0\x2d\xc4\xb7\x3b\x5a\x17\xab\xd8\x1f\x82\xcf\xcc\xc0\xe0\x3c\x08\x46\x05\xb6\xe2\x91\xae\x04\xd3\xf6\x87\xea\x11\xd9\xb7\xfe\x1e\x15\x07\x0d\x73\x92\x01\xef\xe5\xea\x38\x52\x1d\x91\x84\x8b\xfc\xde\x35\xf8\xe5\x17\x9b\x48\xf7\x3f\x6f\x0f\xc8\x7f\xae\xc8\xd1\x9f\xc8\xf0\xc2\x1b\x89\x38\xb4\xb5\x8d\xff\xf3\x96\xfc\xf3\x9f\x47\x64\xb2\x67\xfe\xbd\x32\xbf\xee\x79\x43\x31\x11\x7b\x1d\xcc\x7b\x63\xd5\x1d\xd5\x1c\x3c\xe5\x69\x55\x4f\xfb\x23\xbd\x65\x44\xe5\x59\x95\xa0\x01\xc0\x1c\x78\xc0\x1b\x9a\x26\x09\xf2\xd8\x1e\xfc\x06\x36\xc7\xc5\x11\xb9\x90\xd7\xb6\x71\xf9\x2b\x38\xa6\x65\xd4\x80\x86\x9c\x55\x4c\x21\x38\x6f\x76\xdb\x8a\x1f\xc8\x4b\xb0\xf2\xfc\x2b\x13\xdf\xb2\xf5\x51\x00\x29\xfb\xcd\xee\xaf\xfb\xec\x9e\x45\xb9\xee\xb5\xec\x2e\x87\x0a\x8b\x54\x95\xe7\xea\x22\x44\x6e\x71\xb0\x82\xa0\x58\x80\x70\xc1\x97\xfc\xef\x8c\xc4\xf2\x4e\x68\xbe\x64\x24\xc6\xdb\x41\x1d\x95\xf2\x25\x09\xe7\xab\xf0\x47\xa2\x59\x92\xf8\xaf\x83\x96\x24\x96\x50\xda\x0a\x34\xc0\xe5\x04\xae\xcb\x64\xaf\xf4\x8d\xaa\x62\x6a\x2c\x23\x75\x18\x49\x11\xb1\x54\xab\x43\x97\x00\x54\x1d\x82\x92\x26\x95\xf1\xe1\x33\x17\x23\xcd\xa5\x18\xc8\x99\xb9\x19\x25\x3e\x78\xbf\x7d\xc8\x68\xc4\xc6\x60\xcd\xbf\x66\x91\x14\xb1\x3a\x22\x2f\x37\x48\x5e\x99\xbd\x1b\xd5\x76\xae\x81\xbb\xfb\x27\x09\x55\x0a\x01\xf8\xcb\x2f\x64\x88\xbc\x9c\xb9\x28\xe3\x7a\x03\xf2\x8f\xc2\xf8\x36\xd9\xc3\xc7\x0b\x8d\x35\x0e\xa7\x26\x7b\xde\x1d\x31\x0c\xe4\x89\x7b\xb1\x37\x69\x5f\xf9\x9a\x3b\x61\x46\x55\x85\xbe\x1a\x4f\x07\xfc\x3c\x1e\xb0\xe1\xb4\x87\xfe\x78\x23\x6d\x39\x48\x2b\x2f\xd8\xa2\x43\xae\x32\xc2\xa6\x30\x08\x7e\xfb\x7c\x46\xd6\x32\xc7\x34\x34\x34\xc9\x18\x8d\xd7\xfe\xa0\x76\x31\x20\x53\xe4\x8a\x35\x4c\xee\x9c\x46\x6d\x6b\xf8\xd9\xc7\x72\xbe\x04\xd7\xa6\x5f\x7e\x19\x9e\x5c\x8c\x46\xe6\x0f\x9f\xec\xd8\xdf\xc7\x79\x92\xa0\x03\xf4\x11\x19\xcd\x20\x73\x3e\xb8\xf8\xf9\x0d\x23\xb9\x5c\x52\xc3\x87\xfc\x75\xb2\x77\x28\x53\x7d\x18\x09\x7e\x38\xe5\xe2\xd0\x5b\x17\x44\x9e\xec\x0d\xec\x5a\x0a\x66\x17\x3f\x4c\xac\xde\x67\x72\x59\xf1\xf9\x72\xaa\xee\x8f\x34\x75\x9c\xa6\xff\x79\x46\x8e\x21\xc6\xef\xcf\x9f\xde\x9d\x5d\x5d\x9c\xdd\x9c\x5d\x7f\xbd\x3e\xbb\xfa\x3c\x3a\x39\xfb\xfa\xd3\xe5\xf5\x0d\x3c\x15\x81\xdf\xc6\x97\x57\x37\x56\x12\x93\x2b\x96\x65\x3c\x8e\x19\x12\x1a\xf6\x6e\xfc\x9e\x2c\x9d\xe6\xc1\xff\x20\x14\xbd\x44\x67\xce\x24\x31\x70\xba\xad\x7a\x0f\x17\x8a\xb2\x99\x04\x8d\x89\x55\x6d\x2b\xee\x94\xbc\xc5\x5e\x5c\x9e\x9e\x7d\xbd\x38\xfe\x78\x56\x1f\x17\x1c\x34\x37\x20\x85\x1f\xf0\x3f\x0f\x41\xaa\xf8\x71\x4c\xf5\xe2\x08\xae\xdc\xd0\x5c\x0d\x08\x15\x0d\x2e\xe5\xe4\xf8\x7c\x74\x72\xf9\xf5\xe2\xec\xe6\xcb\xe5\xd5\x9f\x47\x17\x1f\xbe\xbe\x3b\x3e\xf9\xf3\xd9\xc5\xe9\x36\xeb\x29\x4e\xef\xcf\x6c\xdd\xb4\xac\x0a\x2b\x5a\x35\xb1\xfb\x1f\x20\xf5\xd8\xea\xab\x8b\x5c\xf2\x9a\xad\x64\x92\x2f\xd9\xc7\x50\x56\xa1\x01\x59\x9a\xaf\x71\xe7\x87\x2b\x9a\x1d\x26\x7c\x0a\xe8\xe9\x94\x99\xe1\xc3\x2e\x2f\xf8\x40\x30\x3d\x88\x79\xd6\x36\xae\x69\xed\xe3\x7d\x78\xcc\x48\xf0\xc1\x94\x8b\xfa\x60\x8a\x45\x39\x90\x32\x29\x34\xbb\xaf\x17\xa1\x4b\x33\xbe\xe2\x09\x9b\x57\xdd\x12\x49\x88\x54\x55\x64\x13\x23\x72\x4c\xb9\xa0\x59\x25\x1a\x19\xcd\xce\xe6\xb7\x9a\x08\x32\xe3\x09\xc4\xf7\x80\x10\x22\xaa\x97\xc0\x61\x85\x1d\x7f\x10\x09\xfe\xeb\x52\x11\x3b\xf1\x8e\x66\x78\x1b\xb9\xb0\x19\x25\xdc\x59\xfb\xe7\x58\x68\x97\x86\x0d\xd7\xfb\x62\xf4\xf5\xe4\xf2\xe2\x7d\x33\x89\x31\xac\xe6\xab\x97\x03\xab\x96\x31\x63\x83\x6a\x6c\xaf\xbe\x0a\xa7\xf6\xaa\x61\x13\x44\xa9\xc1\x99\x35\xe1\x54\x7d\x39\x96\xd4\xc0\xb2\x46\x1f\x7e\x53\x32\x23\xf8\x57\xbb\x9d\xaf\xa1\xa6\xcf\xc8\x35\x43\xa7\x75\x73\xeb\x21\xb1\x47\x11\x2f\x08\x3e\xb3\x3f\x28\x94\xd9\xcd\x4f\x0d\x3b\xfe\x1d\x90\xfa\x67\x70\x6e\x1f\x6f\x3e\x11\xcb\xc6\xae\x68\xc6\x8d\xac\xdb\x7c\x46\x1f\x6f\x3e\xfd\x96\x07\xb3\x62\x7a\xf1\x75\xa9\xf3\xfa\x3e\xc6\x19\x5b\x31\x61\x8b\x4b\x96\xd4\x10\xf8\x34\x95\x30\x06\x5e\x8c\x33\x69\x5a\xd5\x8b\xd0\xba\xdd\x5d\x9f\x9f\x9d\x6d\x54\x72\x2e\x2e\x02\x86\xe9\xec\x3d\xe8\xc5\x79\xd4\xcb\x10\x1c\x8c\xe9\xc8\xbd\x5f\xc3\x8d\x8c\x10\xe5\x70\x81\x57\xeb\x91\x0f\x8d\xe1\x99\x3d\xf8\x2e\x31\x17\x1f\x66\x04\x8d\x98\x52\x34\x5b\x03\xf9\x41\xe6\x5b\x81\x8a\xb5\x74\x0d\x32\x84\x12\x6a\xe6\xa5\x09\x15\x95\xc1\x21\xb5\xc6\x34\x9d\x11\xaa\xc9\xa1\x5a\xab\xc3\x99\x3a\x84\x3f\x45\x4c\x22\x08\xe5\x7a\x0d\x3f\x65\xb9\xe3\x27\x0f\xf1\xeb\xa1\xcb\x58\x68\x55\x64\x5c\x73\x9a\x70\x55\xc6\xa7\xa2\x5c\x57\xd5\x08\x18\x4e\x5c\x69\x23\xfd\xc9\x4c\x93\x19\x55\x0b\x60\xb9\x61\x11\x42\x92\x19\xe5\x89\x91\x84\x81\xb8\x67\x99\xcc\xd4\x01\x7a\x2e\x6b\x12\x73\x95\xe5\x29\x78\x0b\x79\x61\xb0\xc2\x55\x24\xab\x3f\x03\x0e\xb7\x26\x7b\x00\xa9\xc1\x34\x9d\xcd\x54\x15\x8b\xca\x97\xd3\x88\x34\x4f\xf5\x74\xfa\x92\x26\xf2\xdc\x06\x34\xf6\x9f\x66\xf3\x03\xdc\x7c\xed\x39\xed\x8d\xd2\x78\x44\x61\xcc\x53\x6b\x35\xd8\xfc\xed\x19\x79\xc7\x63\x9e\xa1\x63\x0c\x4d\x30\x3e\xd4\x9a\x8f\xa0\x1a\x1b\x28\x1f\x8a\x2c\x20\x82\xdd\xe1\x84\xe4\x8e\x91\x25\xbd\x65\x75\xcc\x48\x33\x99\x52\x9b\x86\x55\x16\xa4\x78\x73\x56\x25\x9d\xb2\x88\xc8\x5c\x27\x7c\x65\xe3\xcc\xaa\x98\xbc\xf1\x74\xe3\x66\xed\x1c\xa0\x47\xad\x2c\xbf\x8b\xc1\x2c\xf1\x34\x0c\xa3\x15\xcd\x06\x59\x2e\x06\xe1\x36\x4f\x02\xab\x8d\xab\xf2\xbb\x02\xd9\x33\x02\x58\x46\x0e\xd3\x4c\x46\x87\xa5\x40\x6d\x93\x06\xe5\x2a\xa7\x49\xb2\xb6\x41\xfd\x30\x71\x9a\xc9\x79\x46\x97\xb0\x37\x83\xd7\xa6\xe3\x90\x8c\xf4\xbe\x4f\x65\x60\x0d\x42\x21\xd7\xbb\x3e\xa8\xcf\xe9\xa8\x01\x58\xaa\xca\x2b\x72\x80\x21\x20\x66\x3d\x99\x94\xba\xa0\x38\x33\xd5\x00\x49\x2d\x09\xd5\xda\xb0\x34\x27\x37\xe7\xef\xdc\xd2\x0c\x1f\x9e\x99\xfd\x26\xf5\xf2\x50\x55\x04\x71\xab\x0f\xa3\x46\xd3\xaf\x46\xfe\xbf\x14\xc9\x7a\x93\x35\x7c\x18\x4d\x8f\xc2\xaa\x8f\xab\x1c\xcc\x5d\x01\xa3\x46\xc1\xc6\x79\x5a\x26\xe0\xe8\x6a\x85\x97\x9f\xf9\x9a\x13\x07\x99\x9a\x87\xa2\xa1\xeb\x60\x20\x54\x6e\x54\xbf\xbf\x41\x84\x00\x15\x0d\xa8\xcf\xc8\x93\x52\xd0\x7f\x6f\x69\xe2\x93\x62\xfe\xd1\x1e\x8f\x47\xce\x74\x65\xc4\x6d\xc3\x40\x99\xb7\x1b\x7c\x38\x1a\x58\xa8\xd3\xe3\x9b\xe3\xeb\x9b\xcb\xab\xb3\xaf\x37\x7f\x19\x37\x0b\x15\xe5\x16\x36\x85\x89\x2f\x94\xeb\xc2\x71\xba\x6b\xbe\x2f\xc7\xa3\x9b\xaf\xef\x2f\xaf\xbe\x16\x13\x37\xce\x09\x00\xd8\x98\xcd\x70\xf1\x5b\x33\xee\x86\x5b\xff\x6d\x98\xf5\x85\x94\x8a\x15\x27\xc2\x84\x53\xfd\x35\xc9\x54\xff\x5a\x1a\x1c\xd8\x22\xda\x34\xb1\xd4\xbb\x91\x20\x21\x55\xda\x0c\xd9\x47\x2f\x3f\x8d\xf9\xbd\x61\xd3\xe7\x9f\xae\x6f\xce\xae\x3a\x30\xf0\x07\x75\x30\x9d\xa7\x9b\x08\x71\x5c\xfa\xef\x22\xc7\xfa\x61\xec\x15\x67\x6a\x80\xf3\xa8\x59\x6c\xa0\xb9\x96\x38\xdc\xe6\x5c\x67\x02\x58\xc6\xd1\xb8\xde\xbf\x76\x7e\xa3\xf1\xe7\xef\xc6\x97\x97\xe7\x5f\x37\x5b\x7a\x33\x1d\x43\x42\x8d\xc6\x59\x64\x46\x4e\xb9\x82\x7f\x7e\xfe\xf9\xfc\xf8\xc2\x21\xbc\xd3\x97\xdb\xa0\xae\x76\x4c\x2a\x56\x02\x43\x34\x2e\xe5\xc2\x48\x59\x8f\x58\xc9\xea\x6d\xef\xe5\xbc\x7d\xf8\x72\xcc\xdd\x37\xa2\x2f\x10\x9b\x5c\x08\x96\x90\x98\x81\xd7\x38\x38\xd9\xf3\x19\xe1\x29\x4f\x41\x86\x80\x85\xc7\xe1\xb5\xbc\x3f\x3b\x1f\xfd\x6c\x8e\xe6\x62\x34\xfe\x9d\x0a\xc7\x95\x9d\x2e\x1c\xd8\x2b\x7b\x6e\x00\x34\x6e\x0e\xda\xff\x8b\xec\xed\x0b\xcf\xd8\x3c\xa7\x59\xbc\xc5\xfe\xbe\x8c\xae\xce\x3e\x7c\x3a\xbe\x3a\xfd\x9d\xee\xf1\xa6\x7a\x3b\xbe\x83\xab\xe1\xb9\x8f\x95\xae\xab\xb5\x98\xb3\x21\x04\x26\x8c\xc6\x45\xc9\xcc\xfa\xc8\xd1\x42\x2a\xc3\x77\xa0\x83\x80\x11\x33\xa8\x98\xb3\x21\x39\x59\x50\x31\xc7\xcc\x0f\xae\x36\x90\xf5\x62\xac\xf8\x36\xc1\xa8\x0b\xba\xda\x18\x57\x48\x6b\x5a\xb5\xd5\x85\x6c\x1e\x8e\x19\x4d\x12\x97\xa1\x75\x30\xb0\xfe\x2b\x83\x88\xc7\x75\x61\x22\xe4\x0e\x71\xe6\xa5\xac\x62\x7a\x83\x24\x9d\x8c\x4e\xaf\x0e\xeb\x84\xc1\x7c\x39\x11\xbf\xfc\x32\x20\x68\xb2\x7d\x9e\x30\x41\xfe\xd3\x4c\xa8\x5e\x90\xd7\xa4\xca\x26\x36\x93\x3b\x1c\x26\x80\x18\xd6\x1a\x3f\xe3\x99\xd2\x76\xdc\x8a\x5d\xbe\x69\xd8\xb7\xbd\x86\x4d\x68\x7d\x54\xb3\x13\x96\x28\xf6\x54\x2b\x1f\xda\xf7\xd6\x34\xf3\x66\xf0\x2d\xd2\xee\x40\x1c\xcd\x06\xe5\x72\x22\xe7\x80\x1e\x4a\x62\x4c\xa5\x4e\xcc\x57\x0a\xdc\x95\x9a\x5e\x49\xbb\xb4\xd3\xd1\xf5\xf1\xbb\xf3\xb3\xaf\xef\x47\xe7\x67\x5f\xcf\x2f\x3f\x7c\x18\x5d\x84\x55\xbd\xed\x5c\xdb\x7b\x96\xf0\x7b\x2f\x7f\x88\x44\xe9\xd1\x5d\x13\x4c\x9e\x6b\xbe\x3e\x3e\x39\x39\x1b\xdf\xb4\xde\xff\xd3\xb3\xf7\xc7\x9f\xce\x6f\xce\x2e\x4e\xc7\x97\xa3\x8b\x9b\x9b\x4b\xc3\xb9\x1f\x9f\xdc\x8c\x2e\x9b\x1f\x15\x1c\x76\x73\x6d\x9b\x78\x7b\x6d\xb3\x06\xc6\x39\x4d\x94\xa6\xd1\xed\x03\x10\xd2\x3d\x32\x9f\xdf\x5e\x7f\x1a\x1b\xd9\x61\x2b\x88\x95\x7c\xca\xdb\x86\x7e\x1e\x9b\xd2\x0b\x73\x2f\x8e\x6f\xbe\x5e\x7e\xba\xf9\x70\xd9\xe7\xf0\x1a\x91\xb6\x44\x2a\x78\xf3\xa5\xf0\xc4\x8f\xd6\x03\xeb\x03\x88\x42\x61\xdb\x88\xd1\x9b\x47\x05\xe9\xa7\x30\x3e\xc0\x90\x18\x9c\xec\xfc\xf2\x83\xc1\xd5\xf1\xf1\xcd\x4f\xa8\x05\x14\xcc\x46\x85\xe1\x7d\x00\x44\x74\x17\x42\x4b\xb8\x20\x6d\x8b\xf7\xc6\x6b\x5c\xbc\x99\xa4\x0f\x6e\x35\x2d\xf8\xfa\xec\xf3\xd9\xd5\xe8\xe6\x2f\xd7\x7f\xb9\xc6\x35\x5b\x1a\x0e\x84\xbe\x88\x4f\x16\x33\xd9\xba\x13\xb5\x56\x89\x9c\x77\xec\xc5\x9b\xaa\x71\x3b\x6d\x57\xd8\x9b\x6f\xb2\x77\x47\x33\xc1\xc5\xbc\xd7\xb5\x0a\xee\xf7\xe4\xea\xec\xec\xc2\x8c\xf5\x05\x47\xda\xdc\x71\xdf\xed\xc0\x48\x8d\x3b\xfa\x12\x5e\x68\x75\xb8\x9f\xce\x8e\xcf\x6f\x7e\x3a\xbb\x30\xf4\x2e\x2c\x73\x35\xd3\xb8\xb6\x0d\x8f\xc6\x37\x66\xc8\x6b\x2b\xcd\x81\x36\x2a\xd7\x18\x40\x56\xde\x64\x9b\x40\x56\xcc\x40\x33\xad\xda\xef\x53\x65\xc0\x56\x69\xa6\xba\xd4\x87\x9a\x13\x42\x0e\xce\xee\x7b\xcc\xf3\xb4\xc1\x4d\x45\x69\x7e\x44\x5e\x7f\xff\xb2\xe2\xbd\x92\xf0\x19\x8b\xd6\x51\x52\x4f\x61\x9f\x66\xec\x5a\xcb\x74\x63\x10\x76\xbf\x91\x57\x89\x78\xaa\xf3\xcd\x5f\x06\xc4\xf7\x61\xa9\xab\x9e\x5c\x9b\x81\x5a\xe4\x3a\x96\x77\xa2\xba\xb6\x15\x13\x4c\xa9\x71\x26\xa7\xf5\xf5\x05\xd7\xd1\xb4\x8a\xee\x35\x0c\xc8\x00\x6e\xef\xc0\xcc\x19\xf8\x71\xca\xb3\x38\xf0\x5b\x5a\x75\xcd\x7a\xf5\xb2\xfa\xb3\xb5\xa6\x9c\xb2\x84\xae\x1b\x1b\x59\x63\xc9\xcd\x22\x63\x6a\x21\x93\xf8\x88\xd4\x1e\x19\xcd\x97\x4c\xe6\xba\x61\x80\x8c\xd1\x98\xff\xda\x50\xaa\xb9\x52\x55\xc1\x14\xf8\xb1\x03\x4e\xed\x3b\x6c\xb1\xa9\x3c\x83\x72\xde\x2e\xdf\x8a\x21\x57\x5e\xf8\xc8\xf1\x78\x64\x18\x7c\x50\x80\xd0\x64\xf3\x41\x7c\x42\xa3\x20\xa9\xa8\x97\x8b\x8c\x84\x4d\xb3\x25\x7c\x7a\xb8\x94\x71\x1e\xc8\x75\x8c\xd3\x24\x7c\x3a\x68\x68\xd0\xac\xc5\xae\xcf\x92\xe5\xe2\xf0\x1e\x69\xd7\x30\x91\x86\x6d\x0a\x4d\x65\x5b\x0c\x42\x2d\xb6\xd8\xd2\xe3\x6d\x36\x5b\x4e\x06\x1e\x48\x1d\x93\x19\x30\x3e\x68\x32\x1c\x02\x55\xed\x6a\x2d\x36\x4c\x09\xa1\x9d\x9b\x0b\x43\xe7\x1b\x09\xf8\x10\x45\x0b\xa5\xf4\x01\xb9\x0b\x06\x32\x2d\x6d\x19\x25\xb4\xf1\x96\x16\xe0\xba\xd5\x4e\x49\xb0\x51\x41\x6b\xcc\xe8\x5b\x9f\x0e\xb2\x8c\x6b\x82\x86\x23\x99\x6d\x5a\x52\x70\x73\x68\x49\x6d\xd9\x57\x39\x69\x78\x00\x73\x15\x12\x39\x0f\x5d\x85\x8d\xb3\x92\xf3\xc2\xfe\x53\x75\x7b\x22\x8d\x18\x8d\xb7\xbe\x6a\x5a\x71\xf1\xde\x7e\x84\x49\xf9\xfb\xa0\xfd\xf2\x98\x2b\x0e\x6b\xaa\x91\xa6\x96\x2b\x39\xe8\x44\xdc\xf6\x41\x9b\x2e\xc5\xa0\x13\x47\xbb\xc7\x0d\xe1\xff\xa0\xe3\x4e\xb7\x8f\xda\x4e\x2f\x30\xf4\xe3\x3d\x4f\xd8\x65\x76\x52\x89\xe9\x2b\xe7\xdd\x34\x5c\xb7\xcf\x68\x51\x2c\x34\xd1\xa9\x43\xdf\xe6\xd9\x36\x30\xb8\xd7\x64\x1b\xf8\x5c\x9b\xcf\xc7\xb7\x65\x69\x61\xad\x58\x4d\x6b\x49\x5b\x3c\xd7\x84\xaa\x4f\x74\xa3\x55\x34\x80\xb5\x21\xab\x65\xfb\x86\xaa\xad\xcb\x74\x1b\xce\x69\xec\xe4\x62\x14\xb2\x01\x86\xbd\x64\xda\xa7\x0a\xfa\xde\x0c\xda\xdf\xc4\xf6\x11\x1b\xde\xda\x72\x17\x36\xd1\x87\x79\xcf\x13\x39\x0f\x41\xac\x81\x00\xf5\xb8\x3a\x0d\xe4\xc8\x99\xd4\x6d\xa6\xf4\x82\x82\x82\x5c\x50\x77\x56\xf7\x43\x72\xad\x6b\x4f\xc5\x84\x0b\xc8\x71\xb7\x60\xa2\x1e\xdf\xe8\x0d\x54\x75\x78\x2f\xe2\x9f\xbd\xd0\x67\x7f\x44\x17\x2e\xa9\x5c\x46\x59\xdf\x23\xbd\xd9\xb7\x60\xd0\xcb\x19\xb7\x27\xc1\x09\xba\xfc\x96\x87\x66\xf5\xa9\x29\xcb\x20\x84\xea\x93\xe0\xf7\xe4\x54\x1a\xfe\x8c\x5c\xcb\x5a\x05\xd5\xf6\x57\xb6\x61\x3d\x9d\xc4\x81\x6c\x52\x5f\xef\x61\x86\xd0\xc5\xae\xf0\x13\x3f\xf6\xaf\x8c\xef\xac\x47\x4f\x3e\x3c\x18\x70\xdb\x40\xca\x7a\x1e\xae\x22\xa8\xf2\x9a\x31\x3f\x39\xef\x22\x9f\x0e\x23\xb9\x3c\xac\x44\x03\x1f\x6e\x66\xf1\x0a\xc6\x36\xda\x08\x48\xaf\x40\xc6\x36\x39\xcc\x1e\x1c\xf9\x18\xc8\x53\xe6\xe2\xc2\x50\x6d\x5f\xc9\x9b\xea\x0a\xd8\x61\x40\x07\x24\x0a\x4f\x18\xa8\x2a\x57\x0c\xc9\x9e\xb0\x96\x8a\x8c\xa5\x09\x8f\xa8\x82\x98\xc3\x07\x45\x54\x86\x36\xa9\xca\xb8\xca\x12\x19\xaf\x58\x19\xe9\xdd\x15\xd2\xd8\x09\x46\x42\xda\x40\x49\xfa\x44\x45\x36\x0d\xfb\x8c\x1c\xc7\xd6\xc9\xc7\xc5\x0d\x41\xae\xca\xec\xb6\x16\x36\x96\xca\x32\xb6\x2f\x1c\xdb\xf8\xab\xc7\xfb\x59\x7d\xef\xf0\xa6\x0c\xbe\xf3\x94\xa1\xd5\x90\x3c\x2f\xb2\xd5\x6f\x5e\x84\xb5\xbe\xc5\xb0\xd6\x0d\x95\x6a\x53\x60\x5f\x58\x91\xe4\xb5\x76\xf6\xd7\xc6\xac\xbd\x92\x60\x9e\xf4\x84\x81\x4b\x58\x96\x8b\xa6\x40\xc0\x7f\xd7\x30\x42\xe8\x8e\x59\x01\x65\xc2\x6a\xf8\x84\xd1\xdc\xfe\x50\x6d\xdb\xec\x18\xcc\x1e\xcc\xa0\xe6\x40\x1b\x1e\xd3\x6a\xbe\x3d\x24\x79\x74\xe8\x62\xd3\xed\xdc\x08\x63\x7c\x4c\x6c\x5f\x2d\x49\x68\xaf\x30\xbf\xc2\x98\x18\x8a\xf4\x0b\xba\xba\x0d\xfa\x91\x33\x52\x8d\x6e\x29\x1b\x3c\xd2\xd1\x6c\x43\x15\x64\xbd\x7b\xd0\xff\xd1\xbf\x80\x5a\x9a\x3b\xd7\x20\x07\x5b\xed\xf2\xd7\x93\xcb\x8b\x9b\xab\xcb\xf3\xf3\xb3\xab\x26\x35\xfc\xa6\x46\x6c\x2b\xb7\xad\xdb\x60\xcd\xd2\xa7\xd4\x71\xe6\x2a\x43\x0d\xde\x82\x45\xb7\x83\x6a\x3a\xd4\xb2\xd9\xa0\xe6\x48\xfa\x3f\x4d\x87\xd9\x13\x0a\x59\x27\x14\x7e\x25\x76\x71\x1b\x6e\xaa\xce\x3a\x56\xd3\x6a\x20\x1f\x62\x68\xf7\x58\xc6\xe4\x14\x3d\xed\xb9\x14\xe4\x5d\x1e\xcf\x19\x7a\x05\x96\xf7\x0f\x84\x2c\x74\xbd\xfc\x41\x15\x7e\x63\xc7\xb9\x96\x2a\xa2\xf6\x77\x08\xf5\xaf\x6e\x11\xd9\x75\x8f\x67\x1c\xcb\xb8\x9c\x0a\x67\xfa\xed\x99\xc7\x40\xe6\x89\x27\xe2\x02\xf7\x0e\xfe\x7f\x84\x10\x17\x1f\xb0\x7a\x33\x7c\xfd\xfd\xf0\xe5\xde\x11\xb1\x86\x52\xeb\x6d\x70\xf4\x27\xa2\xd2\x84\x43\xb9\x1b\x32\xd9\x3b\x98\xec\x11\xdf\x55\x80\x60\xdd\x00\x9b\x55\xe7\xc6\x72\x8d\xa5\x27\xa5\xfd\xc1\x8e\xde\x5b\x52\xb0\x79\xfb\x2a\x49\x57\x4e\x9c\x8f\x0d\xe1\xaa\x28\xd4\xe6\xf2\x5b\x01\x17\xcd\x92\xd9\x00\x52\xcc\xc5\x6e\x5e\xdf\x47\xa5\x4c\x9a\xeb\x06\xda\x44\xf9\xe6\xd3\x2e\x1d\x76\x9a\xce\xb8\xe8\xf7\x0c\xd3\x83\x9a\x65\x5a\x83\x2a\xb2\xa1\xda\x7c\xfb\xd5\x3e\xa9\x5f\x5d\x38\x48\x69\xe0\x7d\x46\x4e\x8a\xdd\x34\x78\x76\x56\x5d\x26\x4d\xf7\x29\xcf\xe2\x70\xf7\x8f\x37\x9f\x5c\x3c\xb8\xb9\x2f\x2e\x78\x1f\x4b\xd9\xcc\x68\x64\xcb\xd2\xa3\x73\x14\x72\x5f\xcf\xc8\xbb\xb5\x7b\x50\x0f\x60\x00\xae\xfc\x44\xa6\xae\x5e\x39\xab\x38\xe0\xe8\xc2\x3d\x08\x2b\xed\x59\x17\x1f\x5b\x96\xc5\x85\x2b\xd8\x09\xfe\x22\x73\x14\x7f\xd0\xd7\x99\xd5\xf3\xa4\x4e\xd7\x24\xcd\xe4\x8a\xc7\x98\xe8\x40\x48\x31\xf8\x3b\xcb\xac\xd5\x7a\x58\x32\xd0\x66\x71\x8e\xff\xe5\x33\x22\x18\x7e\xf5\xd2\xbe\xf5\xce\x81\xca\x3a\xb7\x7c\xbc\xf9\xb4\xe1\xd4\x52\xe3\x9c\xfd\x1e\xaf\xbe\xfb\xee\xe5\x86\xc3\x40\x53\x78\xa3\x4b\x5c\xd7\x14\xe5\x08\xdd\x80\xf9\xc1\xc8\x87\x67\xae\x9c\x98\x2b\x4e\x6d\xa3\x24\x8b\xda\xbf\xb9\x96\x4b\x0a\xac\x4b\xb2\x26\xa9\xb4\xd5\x13\x2c\xfc\x1a\xb8\x29\xb0\xc9\x2a\xc5\xe7\xe2\x2b\x4f\x57\x6f\x27\x7b\xa5\x3d\xd9\x80\xa7\xf0\x38\xa9\x27\xdb\x53\x64\x26\x73\x74\xbe\xdd\x8c\x74\x3c\x22\xff\x18\x20\x3d\xf9\xc5\x91\x95\xc9\x9e\x80\x8a\xc2\xd6\x75\xd6\x48\x46\x03\xdb\xc9\xab\x95\x3a\xd9\x8b\x84\xbb\x58\xd8\xf6\xe5\xf0\xcd\xf0\x55\xa5\x85\x4d\x80\x64\x7e\xfe\x6b\xf9\x82\xfd\xe2\x3f\x66\x93\x3d\x70\xee\x85\x01\xac\x86\xb8\x5a\x8f\x75\xb2\x97\xc8\xf9\xd7\x84\xad\x58\x82\xad\xc0\xac\x1f\x6a\x33\xe3\x09\xfb\x9a\x52\xbd\xc0\x76\x01\xed\x99\xf9\xdf\x30\x91\xf3\x8d\xee\x85\xeb\xf9\xd7\x72\x35\xbe\xdf\x7a\xad\xb9\x39\xf3\x12\x46\x5f\xbf\x86\x82\x3b\xbf\x7e\xdd\xe8\xb6\xd4\xb9\xe9\xf1\xf5\xab\x0d\xad\xfc\xfa\xb5\xd6\x00\x93\x26\x1c\x19\x08\xf5\x76\x1a\x0a\x81\xd0\x65\x5f\xd8\x6c\x59\xe2\xcf\x77\x3e\xfe\xb4\xb6\xac\x60\x5a\x8b\x83\x4f\xcb\x4a\x1a\xfc\x72\xfe\x59\xdb\x3f\x3e\xd7\x16\x02\xcd\x43\xdf\xfe\x50\xf3\x7c\xae\x8f\xe3\x1f\x5d\x70\x2c\x5b\x1a\xc0\x50\x7b\xef\x08\x31\x12\xf9\xab\xf3\xd7\x31\x27\x58\x99\xa5\xfc\xc3\x9f\xb0\x11\x9d\x53\x99\xe9\x25\x4d\x37\xd0\x40\x09\xaa\x4d\x0b\x03\xd0\xda\x4f\x11\x4d\xe9\x94\x27\x98\xea\x0e\x96\x0e\xa3\x7c\xc4\xc2\x1c\xca\xf5\xda\x76\x25\x53\x2a\xe2\x3b\x1e\x9b\x9b\xd1\x3d\xa1\xd7\x78\x73\x36\xf7\x4f\x1b\x47\xd8\x43\x2f\x78\x1b\xc7\x83\x28\x8b\x9d\x22\xf0\x9b\x56\x0c\xdc\x48\x86\xf9\x0d\xea\x06\xbe\xfb\x30\xde\xc8\xd6\xe8\x57\x0f\xac\xff\xbe\x59\x43\xb0\x21\x65\x67\x59\x49\xb0\xde\x60\xd2\xbf\x9e\xa0\x65\xdb\x26\xdf\xa6\x98\x60\x7d\x6f\xd5\x4a\x64\xd5\x67\x07\x6b\xf1\xae\x21\xa6\x22\x93\xb9\xae\x2a\x61\x76\xc5\x04\x77\xc5\x04\xfd\x23\xd8\x15\x13\xfc\xd5\x8a\x09\xd6\x2f\xf1\x66\x49\xc1\x6a\x29\x5c\x73\x81\x2b\x57\xbb\x7f\xed\x40\xaa\x2e\xf2\xe5\x94\x75\xd6\xf8\xde\x3f\xbe\xc6\x86\xae\x46\xa9\x53\xf8\x1d\x5f\x13\x81\x3f\x38\xf3\x35\xb5\x0c\xf7\x5f\x4f\xb1\x49\x30\x0c\xe3\xed\x77\xdf\xbf\x7a\xfd\xb7\xfd\xcd\x9f\x30\xed\xf4\x91\xb9\x9d\x6f\x5e\x6f\xfe\x8c\x20\x35\x57\x77\xce\x36\xfc\x44\xa6\x5c\xc4\x1f\x65\x5c\xd7\xf8\x6c\xc2\xd7\xb6\x0b\x95\xf7\x96\xf0\x50\xd8\xd8\x4f\x0b\x58\x81\x52\x51\xb0\x3a\xb4\xd5\x9d\xdb\x80\x34\xa6\xc8\xf3\x0b\x29\xd8\x0b\xcc\x2a\x9d\xac\xfd\xe4\xd9\xfb\x60\x72\x92\x82\xa3\xd1\xd7\xf5\x09\x8d\x7a\x61\x20\x68\x8e\x7d\xf8\xee\xc3\x78\x38\x1a\xaf\x7e\x3e\xc6\xc6\x66\xf8\x98\x8d\xc6\x2f\x86\xc4\x82\x97\x4c\xd9\x82\xae\xb8\xcc\xf1\x68\xdc\xfa\x43\xa3\x06\xb6\xb4\xb1\xfe\x2d\xab\xa9\xbb\xcb\x16\xc2\xad\x1a\xd4\x4f\xca\xa6\x48\x92\x5c\x3d\x4a\x5c\x92\xbd\xb4\x0e\xb5\x31\xa9\x24\xdb\x74\x06\x32\x1f\x9a\x4d\xb9\xce\x68\xb6\xc6\xd7\x1f\x83\x8d\x28\xfa\x2d\x63\x14\xf3\x56\x05\x2c\x83\xcb\x5c\x97\x37\x4e\x69\x2a\x62\x9a\xc5\xe6\x50\x13\x9a\xcd\x59\x7d\xb9\xa1\x41\x09\x6c\xc1\x10\xb7\x40\xe8\x2a\x7e\x5a\xee\x25\x7e\x80\x23\x08\xff\x54\xaf\x3f\x4a\x97\x8c\xcc\xf9\x8a\x09\xd4\xc7\x54\x96\x17\x9c\x9c\x74\x56\xee\x24\x85\xb2\xb9\xd7\x12\x3e\xc3\xd3\x02\x99\xa8\xa7\x90\x05\x09\xaf\xb2\x11\x54\xe8\x91\x10\x93\x3d\x03\x3e\xfb\xc7\xd1\x72\x39\xd9\x6b\x5c\x16\x01\x1f\xb7\x02\xea\xe5\x6e\x72\xc5\xbc\xe1\x70\xfc\x03\x5b\xa3\xcc\x7c\x3f\xd9\x33\x40\x6f\x1e\x76\xb2\x07\x1d\x69\xc6\xc8\xab\xb7\x64\xca\xb5\xa5\x5d\x43\x98\xb0\x7e\xb4\xde\x6c\xb0\xde\xe6\x71\x43\x2b\x39\x28\x66\x13\xb1\x91\x2c\x97\x76\xe2\x37\xaf\x2b\x13\x7f\x31\x5d\x82\x75\xe1\xdd\x92\x61\x5b\x98\x77\xe1\xf8\x9a\x20\x15\x6e\x1a\x3c\x65\xd9\xe0\xf8\xda\x45\xe9\xf2\x40\x52\x08\xf7\x49\xa9\x36\xec\xcf\x11\xf9\xaf\xe7\x93\x49\xfc\xbf\x5f\x1c\xe1\x7f\xfe\xf3\x1f\xd5\xbf\xdd\xd7\x0f\xc5\xa0\xa6\x27\xd0\xff\x35\x50\x1b\x96\x10\x3e\x17\x32\x63\xf1\xa8\x50\x93\x75\x91\x97\x51\xbd\x83\x47\xdd\x31\x29\x07\xaa\x8b\x3c\xc5\x9b\x5e\xd0\xc0\xa2\x48\x99\x87\x7c\xca\x08\xbb\x87\x4a\x62\xd6\xf7\x06\x2d\x0b\x73\x17\x98\xfa\x00\x5a\xf3\xc0\x62\xb9\xc4\x92\xf5\xb1\xcc\x42\x0f\x6a\x05\x12\xe7\x45\x4b\xf7\x58\x43\xbc\x13\x22\xa7\x21\xb6\x69\x26\xb5\x8c\x64\xe2\x38\x68\x1c\x3a\x88\x2a\xf6\x91\x01\x68\xbc\xfa\xc3\x8f\x9b\x4d\x96\xf4\x9e\x2f\xf3\xe5\x11\x79\xfb\xfd\xf7\x6f\xbe\x0f\xfc\xce\x05\xfe\xfe\x6a\xcb\xc7\x3c\x91\xf3\x6b\xb6\x62\x19\xd7\xeb\xeb\x28\x63\xac\x2e\x6f\x6c\x6c\x7b\xff\xbc\xde\xc3\x6d\x3f\x91\x73\xa2\xec\x2f\x84\x4e\xe5\xca\x59\xf5\x12\x39\x0f\x3e\xbf\xe6\x2a\x29\x26\x8a\x1a\x70\x4a\xc7\x32\xd7\x1e\x4b\x43\x46\x17\xef\x2f\x43\xec\x4b\xdb\xf1\x1a\x1e\xe0\x23\x53\x8b\x8f\xf4\xfe\x8a\x41\x80\xe8\x0d\x6f\xa0\xef\xd5\xda\xcd\x7c\xc9\x4a\xeb\x0a\xa4\x9d\x96\x33\x7d\x67\xf3\x2b\x9b\x71\xe0\x4b\x30\x51\x6b\x39\x58\x32\xb5\x20\x29\x63\x66\x09\x6a\x48\x0c\x85\x09\x72\x03\xc4\x69\x2f\x59\x7c\x50\xe4\x3e\x2d\x34\xf9\xb1\xcb\x35\x31\xcf\x68\xc4\x66\x79\x52\xcc\x65\x6d\x6f\xad\x23\x1b\xfe\xbd\x32\x3a\x23\xef\x46\x57\xa7\x05\xd7\x28\x67\xe4\xd5\xeb\x97\xca\xd9\x10\xac\xc7\x1b\x2a\xae\x6d\xc5\x8e\xcd\x0f\xf0\x53\x53\x06\x91\x55\xb5\x18\xf5\x0d\xb1\xd7\x79\xef\x60\x62\x13\x54\x7e\x07\x8f\x9a\x60\x6a\x9d\x0b\x7b\x36\x8d\xe1\xe5\xfd\x8f\x77\x4c\x95\xba\x93\x59\x28\x78\xa5\x76\xb0\x97\x36\x1d\x08\x5e\x4a\xdb\x0d\xce\x72\x96\x5b\x7f\x8c\xcd\x03\x0d\x6f\xa2\x0a\xbf\x07\x81\xaa\x99\x89\x71\xf0\xdb\x0a\x54\x9d\xcc\x8d\x62\x51\xc6\x74\x4b\xa8\xf6\x06\xbc\xd0\xc5\xc7\xb0\x8e\xb7\x6c\x0d\x4a\x01\x3b\x88\x73\xb1\x04\xe7\x96\x54\xc6\xfb\xaa\xb4\x0f\x35\xbf\x80\x5d\x0b\x24\x36\x0e\xbc\xf9\xd7\x40\x91\x75\xbb\x32\xa0\x1a\xb8\x36\x2d\xad\xa5\x10\x24\xe3\x21\x21\x1f\x91\x45\x6a\x1b\x96\x10\x6a\x58\x2f\x1e\xbb\x41\x6e\x59\xdd\xf1\xbe\xfa\xe9\xe6\xe4\x48\x17\x3f\xb9\xb1\x9d\x7d\x3f\x9d\x65\xc6\x66\x2c\x63\x42\x07\xa5\xef\xb6\x74\xd5\x72\xc5\xb2\x15\x67\x77\x87\xb6\x8c\xdb\xe0\x8e\xeb\xc5\x00\x39\x02\x75\x08\xc7\x74\xf8\x0c\xfe\xd3\xb6\xb0\x9b\xcb\xd3\xcb\x23\x72\x1c\xc7\x44\x82\x9c\x96\x2b\xa0\x49\x80\xf1\x6a\xe8\x69\xa5\x0e\x40\x29\x72\x40\x72\x1e\xff\xff\x03\xf4\x79\x5b\x88\x15\x19\x7b\x7a\x43\xed\x1a\xc8\xde\xba\x94\x28\x17\x8c\x5c\xe3\x21\xca\x0c\xe4\x01\x83\x22\xcb\x3e\x38\x80\x9a\xb3\x16\x7e\xd6\xed\x62\x2a\x65\xc2\x9a\xc8\x26\x29\x8c\x7f\x2d\x9b\x00\x37\xa7\x76\x26\xaf\x89\x89\x6b\xff\xdd\x5c\xc9\x1b\xe9\x68\x06\xa6\x1c\x09\x2d\xa4\x86\x79\xa1\x5e\x86\x9a\x95\x92\x7a\x41\x22\x5d\x11\xf3\xd0\xca\x0c\x61\x5d\x56\x69\x95\xff\x8a\xeb\x2c\x67\xcd\xaf\x78\x03\x54\xd3\x8c\xcd\xf8\xfd\xb1\x5f\xc1\xb2\x93\x39\x1d\x07\xfa\x94\xf2\x25\xf8\x37\x43\x8b\x6a\x61\xcc\xd0\x8e\xda\xf4\x3c\xa4\xbf\x94\x1b\x58\x50\xf9\xf6\xab\xea\x32\x3c\x4a\x19\xc6\x10\x97\xeb\xa3\x78\xf1\xa1\xf6\xe6\xc3\x44\xde\x88\xc7\x21\x65\x54\x60\x0b\xe0\xf8\x00\x36\x75\xe0\xe5\xca\x91\x1d\x5b\x3b\x65\xe5\x3e\xe2\x47\xc8\xc0\xed\x3a\x8e\xd0\xca\x3c\x4d\x87\xf5\xbf\x77\xba\x0e\xc6\x01\x79\x4b\x21\xb3\x83\xf2\xd9\x34\xf3\x8e\x14\x98\x87\x6e\xb2\x67\x48\x8c\x1a\x7a\xb3\xa0\x6c\xdd\x4b\x29\x41\x50\x9d\xde\x29\x9b\xb7\x88\xe0\xed\xc2\x6a\xbb\x6c\xde\x2e\x82\x37\x8f\xdc\x25\x9b\x77\x8a\xe0\x6d\x8b\xee\x90\xcd\x3b\x25\xf0\x5e\x63\xf7\x17\xcd\x9b\xaf\x30\x7e\xfa\xbc\x5c\x2d\x82\x24\x79\x8c\x58\x6e\xfd\x66\xac\x11\x6b\x34\xee\xa4\x7c\xd7\xf5\x0e\x00\x0c\x48\x90\x6d\xee\x2f\x96\x86\x43\x9b\x01\xde\x63\x3b\x43\x90\xf6\x59\xa7\x32\x37\x8a\x8d\x99\x01\x03\xc1\xcc\x97\x37\xac\xdf\x11\xf8\x72\x14\x24\xc0\x4c\x1a\x46\x5e\x5c\x44\x51\x23\x0a\xfc\x95\xc5\xba\x32\x9d\x4d\x92\xa3\x17\x6c\xf9\x70\xa2\x5b\x87\x05\x96\x71\x2b\x4d\x2a\x5e\x0c\x82\x11\xf5\x0c\x1d\x75\x4d\xc3\xe7\x5c\x82\xf0\x1b\x10\xdb\x6f\xa6\xda\xb1\x27\x7c\x76\x8f\xf6\xb7\xfe\x48\xe4\xf5\x08\x63\x91\xcc\xbc\x8c\x25\xa1\x35\xdb\x81\x88\x1b\xc9\x9c\xed\xd0\x4f\xb2\x58\x6f\x50\xe4\x6a\xb2\x12\x55\x50\x5b\x50\x3c\x32\x58\x45\x84\xad\x61\x75\x16\x65\xa4\x70\x3c\xb4\x62\x76\xa1\x8f\xc6\xa0\x72\x75\x9d\x28\x14\x3e\x5d\x6f\xff\xff\xda\x48\x74\x2e\x69\xfc\x8e\x26\x46\x7e\xdd\x82\x1a\xd5\x7a\x3d\x12\x99\xfc\xd1\x1a\x11\xca\x16\x62\xf6\xdb\x0e\x47\x62\xde\x64\x00\xaa\xe3\xdd\x6f\x80\x64\x55\x20\x3d\x10\xd1\x6a\xb0\xf9\x97\x44\xb6\x70\xb7\xcd\x6f\xb1\xd4\x99\x1f\x76\xae\xb4\xcc\x20\x52\x01\xbf\x42\x1c\x80\xe5\xd3\xc8\x48\xc7\x2c\xbe\xd8\xf0\x5e\x29\xb3\xf3\x38\x6f\x14\xf7\x4d\x24\x45\xcc\x31\xa0\x88\xfc\x15\xdc\x7b\xc0\x21\x2e\xfe\xec\xdc\x48\xe0\x5b\xeb\xc0\xb3\xb5\xdb\xcf\x37\xf4\xf8\x81\x1a\xb7\xdf\xc6\xd1\x67\xcc\x9c\xe6\xb8\xe2\xdf\x63\xbe\x0e\xba\xf5\x78\xe5\x76\x2b\xde\x3c\xa9\x1d\xe7\xb7\x72\xe2\xd9\x79\xdb\xec\xbc\x6d\xfc\x23\xd8\x79\xdb\xfc\x9a\xde\x36\x86\x5c\x6c\x3a\xd9\x38\xe7\x6e\xcf\x5b\xce\x35\x2e\x4e\xef\xe9\x3d\x6d\x6e\x16\xac\x94\x32\x9d\xf6\xd5\x90\xa7\xc0\x83\xf9\x18\x67\x99\x5b\xc6\xd2\x4b\xac\x49\x9a\x5c\xb0\x7b\xfd\x53\x20\x3b\x57\xd0\x5e\x61\xee\xb9\xe9\x0c\x0b\xb3\x55\x4d\x13\x22\xd8\xbd\x5e\xc8\xd4\xda\x20\xd0\x58\x0a\xd6\xd1\x20\xc7\xec\xd9\xd7\x00\xa6\xc4\x00\xd5\xe0\x38\x86\x31\x14\x4e\xf3\x9e\x4a\x0a\x35\xea\x09\xc4\x3f\x98\x2e\xa1\x71\xcd\x28\xaa\x50\x0a\xe6\x36\x37\xf7\x64\xcf\x2c\x8e\x98\xd5\x99\x75\xff\xd1\x08\xf3\x42\x69\x46\x63\x03\x5e\xef\x57\xc5\x92\xd9\x1f\x27\x7b\xcf\xad\xa9\xe4\x45\x68\x0a\x6b\x69\x28\x1c\xff\xa7\x19\x15\xd1\xc2\x9d\xd3\x85\x99\x5a\x0a\x1b\x11\x32\x8c\x66\xf3\xa0\x9b\x43\xab\x7e\x71\xd9\x65\x1e\xdc\xd2\x38\x68\x0d\x75\x9e\x7c\x1c\xe4\x8d\x1e\x6a\x00\xac\xd9\xfa\xc2\x63\x77\x98\xff\x9a\x20\xd4\x6c\x68\xeb\x73\x8b\x8a\xbc\xf1\x45\xd6\x72\x47\x80\xad\x7e\xc0\x96\xa8\xb1\x96\xc2\x26\x6f\x00\xae\x88\xa6\xd9\x9c\x69\x57\x37\x87\x2b\xbc\x8f\x64\x54\xd6\x8c\x04\x20\x30\x8d\xef\x9a\x90\x95\x88\xf4\x86\x41\xab\xf6\x51\x1b\x85\x02\x96\x40\x43\x60\x94\xb3\x75\xb9\xc0\x6c\x87\x79\x65\x95\xe9\x6d\x61\x16\x88\x90\x0f\xc2\xae\xa8\x77\xeb\xf4\xba\x38\x3f\x18\xff\x2c\x17\x00\x19\x13\x0a\x48\x70\x31\x6f\xb1\x06\x3b\x10\x01\x78\x8a\x4b\x82\x74\xc2\x79\x0b\xb1\x65\xaa\x43\x06\xae\xd6\x2d\xe5\xcb\x63\x14\x3d\xce\x65\x44\x13\xe7\xa0\xd8\x29\x03\x7e\x44\x8f\x05\xe7\xb6\x28\x67\x04\xb3\xa7\x14\x9e\x8c\x76\xab\x4e\xc3\x74\x07\x6a\xd7\x26\xbc\x3e\xbe\x86\xfc\x20\x36\x9c\x3d\x62\x7c\xc5\x5c\x25\x0d\x6b\xd5\xc6\xd4\x2b\x78\xb4\x89\x94\xa9\xe1\x31\xed\x03\x18\xa4\x8d\xa2\x88\xdd\x72\xb2\x9f\xcb\x7f\x4e\xa7\x4a\x26\xb9\x66\xc9\xda\x56\x77\x52\x74\x23\x1f\x17\x79\xe4\xb3\x90\x36\x5b\xaf\x7b\xda\xae\xdd\x7b\xc5\xc5\x5c\x91\x39\x13\x2c\xa3\xde\xd5\x09\x6d\xb9\xe3\x51\x25\xdd\x82\x61\x0f\x5b\xf2\x37\xb3\x24\xf7\xb0\x23\xb7\x5b\x91\xbf\x91\x0d\x79\x2b\x0b\x72\x1f\x9d\x72\x87\xf5\xf8\xdf\xc6\x76\xdc\x07\x56\x3d\xec\xc6\xdf\xc6\x6a\xdc\x69\x33\xee\x61\x31\xee\xb0\x17\xb7\xd8\x8a\xfb\x68\x58\xc2\xbf\x1a\x8a\x31\x1a\xf7\x79\xd6\x4b\xcf\x69\x9f\x3b\x26\x33\x69\x69\xf5\x74\x0d\xe2\xab\xa3\x4f\xa9\xcc\xc2\x4e\x7e\x48\xfe\xb5\xc4\xee\x06\xb3\xe0\x45\x07\x5f\x39\x51\xf8\xba\x83\x4f\xed\x81\xb3\x97\x95\x96\xc5\xc9\xde\x5f\x27\xf9\xcb\x97\x6f\xa2\xd1\x78\xf5\x16\xfe\xc5\xfe\x76\x04\x73\x05\xfd\x44\xc1\xbc\x56\x74\xf8\x0e\x3b\x1c\xe1\x17\xd0\x0b\xbe\x40\x3b\x16\xd4\x14\x80\xb5\x54\x36\xe1\x2d\xca\x71\x1b\x4d\xef\x47\xf1\x32\x03\xb0\x44\x4c\x0a\xef\xfd\x29\x4b\xa4\xa1\xcb\xc0\x78\x5b\x95\x10\xd0\x3a\xb3\x7f\xcf\x73\x30\x4c\x64\x81\x3c\xd6\x1d\x88\x2c\xfb\x72\xc7\x2c\xc3\x4d\x35\x2e\xd7\x42\x76\xcb\x57\xdd\x74\x79\x30\xa3\x62\x9e\x5a\x5d\xf0\x2b\x95\x93\x45\x5e\xb5\xe9\x05\xf2\xd9\x93\x31\x60\x62\x15\x6c\x48\x2b\x6a\xec\x0a\xba\x29\x57\x6b\x65\x55\x37\x62\xf8\xcd\x29\xd3\x77\x8c\x09\xeb\x88\x68\x18\x0d\x80\x37\xa6\x08\xb7\xe2\x8c\xbf\x6e\xc8\xe8\x59\x70\xe1\xe1\x13\xb6\x55\x27\xec\x0c\x7c\x46\xa6\x52\x2f\x08\x13\xb1\x42\xce\xcc\x70\x58\xef\x3e\x8c\x21\x80\xc0\x34\x75\xc1\x03\xed\x6c\xba\x59\x12\x8e\xfd\xb6\xff\xd8\x6f\x37\xc6\x1e\x12\x73\x4d\x43\x13\xd8\x6d\x96\x21\x23\x91\x04\xef\x7d\xa7\xc2\xf0\xc0\xb0\xaf\x2a\x13\xb9\x83\x08\xae\xdb\x1e\xfe\x3c\x91\x53\x9a\x94\xb9\xc5\x67\xb6\x68\x5e\x71\x5d\xb6\xc4\xc4\xcc\x9c\x2c\x9d\x26\xec\x5d\xe8\xf1\xae\x20\xa2\x79\x5b\xa8\x20\xec\x9e\x46\xda\x96\xad\x3c\x7c\xf3\xfa\x00\x94\xfe\x3c\x42\x76\x90\x68\x79\x47\xb3\xb8\xb8\x96\x61\x96\x52\x66\xb1\x25\x4a\xc8\x24\xda\xbe\xb3\x04\xe3\x4b\x87\xe4\xaa\x5c\x55\x55\x5b\xd1\x12\x4d\x62\xc9\xe4\x9c\x6a\x76\x47\xd7\xce\x5f\xc2\xac\xa3\xc8\x0e\x48\xa3\x05\x90\xce\x2d\x61\x84\xfc\x9a\x45\x81\xce\xeb\x6a\x31\xa4\xf4\xe1\x31\x18\xb7\x90\x77\x1b\x29\x24\x50\x31\xd6\xb2\xa3\x6e\x3e\x73\x93\xa9\x2c\x9c\x99\x9b\xdd\x23\x26\x7b\x9f\x14\xc3\x00\x9b\xc9\x1e\x59\x32\x2a\x54\x75\x6d\x05\x6b\x68\x08\x84\xd5\x49\x54\x16\x3b\x34\x83\x5c\x04\xaa\x05\xe0\x07\x87\x34\xf8\xd8\xba\xe5\x2d\x4f\x41\xeb\xe4\xda\xe6\x7d\xef\x7c\x40\x6f\xce\x5d\x53\xeb\x10\x65\x85\x7c\x80\x5f\x02\xea\xd7\x9b\x9b\xf3\x22\x8f\x3c\x59\xb2\x68\x41\x05\x57\xcb\xd0\x76\x9e\x7f\xb8\xb9\xfe\xf8\xa2\x74\xc0\xd1\xc8\x54\xcf\x0d\x52\x6a\xa2\x52\x29\x67\x2c\x26\x29\x85\x54\x8d\xe6\x64\xc0\xab\x1f\xa2\x74\xac\xa8\x14\xa4\x9c\xb6\x3d\x3c\x49\x94\xa8\x25\xc5\xfc\x32\x0b\xb8\x62\x29\x92\x4c\xb3\x48\x0c\x6e\x01\xa6\x00\xb3\x55\x38\xdd\x71\x93\x18\x6f\x4e\xaf\x90\xfa\x16\x32\x55\xe4\x39\x8b\xe7\x4c\xbd\xa8\x50\x69\x34\x57\x6c\x25\x37\xed\x4c\x44\x8f\x32\x11\x25\x32\xba\xa5\x33\x6c\xc3\xbe\x89\xa5\xc8\xcc\x70\x8c\x33\xac\x37\xec\x45\xfe\x8f\x01\xab\x51\x75\x75\x1b\xc6\x23\xef\xe7\xf5\xce\x84\x64\x57\xb9\x33\x21\xed\x4c\x48\xff\x46\x26\x24\x9f\x82\xf4\x34\x24\x6d\x52\xa4\xf2\xb3\xbd\x75\xa9\xc1\x2f\xa2\x8d\x6b\x88\x59\xc2\x74\xb7\x2f\xf6\x29\x36\xab\x44\xd3\x41\x9d\x6b\xae\x90\xf6\x11\x47\xfc\x0c\xde\x4e\x19\x86\xc7\x41\x9f\xa0\xbe\xc9\x8b\x54\xf1\xf1\x7c\x86\x0e\xac\x29\xd5\x1c\xb2\x9d\xac\xf1\xf9\x97\x49\x0c\x3c\x5c\xc2\xa8\x6a\x89\xd8\x5b\x72\xa5\xe9\x2d\x13\xc9\x9a\xe8\x8c\xb9\xe5\xe1\x2c\xb4\x9c\xe5\x69\x0c\x0d\xad\x0c\xb1\x2e\xd3\xf5\xf6\xeb\xd3\xa0\x6c\x19\xc0\x91\xd6\xbf\xb3\x80\xad\x7f\x1d\x4a\x25\x09\x2b\xd9\x71\x29\x4f\xc1\xa5\x6c\x66\x2d\x2e\x53\xf8\x0d\xe6\x4c\x40\x4e\xd8\x69\xce\x0d\xae\xc2\x04\x6e\xfa\xe7\x40\xc3\xc0\x8e\x08\xc9\x14\xb9\x14\x37\x7c\xc9\x94\xa6\xcb\xf4\x88\x88\x3c\x49\x26\xb5\x0c\x77\xa0\x02\x00\xe8\x7e\x13\x3e\x08\x0d\x5f\x46\xc2\xb9\xf6\x12\x59\x96\xac\x50\xfd\xf7\x4d\x6e\x68\x73\x99\x75\x86\xa8\xde\x62\xc7\x13\xd9\x55\xee\x78\xa2\x1d\x4f\xf4\xef\xc3\x13\xd5\x49\x49\x3f\xb6\x28\x4c\xa0\xca\xcf\x03\x38\xa3\x84\x2a\xd5\x23\x3b\x09\x36\x23\x31\x8b\x12\xea\xfc\x4d\x00\x88\xe6\xe2\x9a\x73\xca\x96\x45\x86\xc9\xa5\x14\xbc\xc1\xb0\x8f\x9a\x29\xae\x7c\xe5\x3a\x5e\x4b\xb0\x25\xa3\x5f\x31\x2a\x7e\xf9\xca\xb9\x05\x1b\x8c\x94\x99\x6e\xb0\x27\xd1\xa9\xcc\x35\x89\x58\x66\x40\x67\xb0\x0d\xe2\xe0\xaa\xab\xfa\x75\x72\x10\x3c\xd8\xf3\x82\x5b\x80\x06\x1d\x2f\x66\x61\x48\x42\x23\xeb\x36\xbd\x1d\x13\x86\x37\x6e\x5c\x49\xc1\xdc\xb1\xea\x4f\x9b\x5d\x8a\xe4\x09\xf0\x25\xa1\xda\xea\xb9\xba\x50\xd4\x7c\x4a\x3b\x51\x71\xfb\x31\xcb\x3f\x79\xe9\x57\xf8\xac\x0f\x45\x32\x36\xcb\x98\x5a\x04\x19\x67\xe7\xb7\x80\x23\xba\x65\x71\x05\xce\xdf\x31\x7d\x5a\x47\x80\xc6\x5b\x5f\x72\x7e\x0d\x90\xdc\xb8\xf7\xb8\x33\xff\x01\x95\x53\xe4\x30\x91\x47\x35\x98\x5c\xef\xb4\xb1\x97\x0b\x89\xd6\x6c\xbc\x82\x82\xb1\x98\xa1\xb7\x81\xbd\x40\x8a\x1b\x4c\xe2\xa0\xee\xb7\x20\x27\xd3\xb5\x1d\x77\x0b\x27\xbd\x39\x13\x9d\xf9\x35\x8e\x4d\x23\xb2\x90\x49\xac\xb0\x83\x5b\x84\x97\xeb\x69\x7b\x17\x86\x29\xcf\xe2\xcf\xdf\xf5\x71\x5e\x78\x37\xba\x3a\xfd\xfc\x9d\xef\x8b\x5f\xf2\x07\x55\xd8\xe6\x40\x26\xcc\xc8\xdf\x3d\xdc\x79\x21\xa1\x4a\xbf\x93\xb2\x39\x59\x45\x60\x89\xe7\x5e\x1f\x0b\xa9\x22\x6d\x19\x78\xdc\x78\xbf\x37\x0f\x49\xf0\x19\x46\x57\x3a\x9d\x10\x99\xeb\x34\x0f\x99\x71\xdc\xa7\x8f\x65\xde\x4c\x7d\xc5\x2a\x61\xb4\xdb\xee\x2c\xd0\xbd\x69\x93\xae\xe9\x6f\xb0\x51\xb0\x1c\x65\xa3\xd3\xbe\x3b\xbb\x82\xf6\x64\x74\x5a\x64\x72\x83\xf5\x3c\x6e\x11\x4d\xf2\x70\x70\x05\x90\xa2\xd9\x91\x04\x97\xd8\xee\x94\xb2\x65\xf0\x7d\xdb\x66\x19\xab\x20\xb7\xdf\xb8\x10\xc7\xf5\x7b\xcb\x88\x61\x19\x8f\x59\x45\x57\x14\x3d\x10\x80\xb7\xbd\x09\xc0\xdb\xed\x08\xc0\xdb\x1d\x01\xf0\xb6\xb3\x23\x00\x81\x9d\xed\x08\xc0\x6f\x49\x00\xda\x7e\x9d\xce\x3b\x7d\xf3\xcd\x12\x11\x05\x81\x6f\x36\x7f\x36\xf2\xce\x1d\x77\x1e\x4d\xa4\x67\x4a\xd3\x69\xc2\xd5\x82\xf5\x64\x4b\xcc\xe1\x69\xa9\x69\xe2\xd9\x58\xc1\x4f\x85\x95\x23\x99\x9d\x10\xc5\x14\xea\xe3\xda\xc0\xd4\xe0\x9e\x1a\x5e\x5f\x2f\xaa\xd9\xb0\xbe\xb7\xdf\x68\x7d\x17\x52\x3f\x1d\x08\x85\x14\x83\x5f\x65\x99\x8f\x83\xe4\xb7\x58\x26\x58\xe3\xfb\x81\x6f\x8c\x4d\xfd\x87\x11\xa0\xe7\x9c\xea\x55\x3f\x46\x9d\x74\xe6\x60\x68\x10\x78\xc0\xdf\xa4\xaa\xe2\x28\xde\xe0\x62\x0d\xcd\x14\xa4\x7b\x55\x3d\x93\x56\x35\xfa\x52\x36\xec\xa0\xc1\xa3\xf2\x6e\x21\x15\x2b\x95\xf5\xe4\x8e\x11\x1a\xf6\x48\x2b\x3f\x85\x22\xe3\x09\xb2\x55\x81\x4c\xb7\x45\xe2\x25\x8e\x51\x1c\xc5\x13\x92\x91\x8c\x51\x25\x05\xbc\xc3\xb6\x42\x47\xdb\x73\xd6\x7b\x5d\x1d\x4f\x5a\x7d\x5d\xb0\x1a\xab\x4c\x00\xba\x8c\x37\x02\xc7\x79\x82\xf5\x40\xab\xde\xcb\xb9\x59\xa7\xc1\xc4\xc7\x85\xcb\x68\x25\x08\xa8\xfd\xb4\x57\x9c\x16\x28\x3b\xd0\xb6\xb8\xe0\x92\xa9\xc5\x81\x81\xbe\xf9\x95\x89\xa2\x4c\x8d\x73\xd0\x6b\x4b\xf3\x42\xb0\x74\xd6\xc0\xbd\x61\x70\xa3\xac\xca\xfc\xb1\x80\xea\xe2\xbf\x3b\x93\xa6\x20\x25\xea\x45\x21\x91\x12\xbd\xad\x51\xa2\xb7\x3b\x4a\xd4\xb1\x83\x1d\x25\xda\x6e\x5d\x3b\x4a\x64\x3f\xff\x4e\x94\xa8\x25\x3c\x63\x10\x62\xde\xfb\x35\x7b\xdb\xdc\xac\xce\xca\xf6\x6e\x19\x18\xb3\x6d\xef\xe6\x76\xa0\x22\xbe\xd3\x2b\xe5\xbc\x6c\x8a\xa6\x41\xed\xec\xea\x9b\x76\x41\xd0\x87\x64\xd0\x22\x04\x6d\x88\x55\xde\xd0\xc4\x5b\x53\x21\x5c\xd8\xd2\x82\x07\xfa\xe5\x62\x82\xc6\xc0\xc0\xab\xf7\x27\x6f\xde\xbc\xf9\x11\xf4\xef\x98\x06\x1e\xc2\x37\x3f\xdd\x9c\xb4\x28\xe9\xcd\x1c\x83\xf0\x22\x45\x9e\xd8\xc2\x83\xa5\x4b\xc6\x26\x50\x1b\xdc\xd8\x21\x16\xb1\x0b\x9e\x20\xfb\x3b\x3b\x94\xb2\x9d\x08\x18\xeb\x9d\x01\xda\xda\x6e\xda\x65\xe1\x47\xa9\xc0\x71\xd6\x7e\xbc\xfe\x95\x6d\xbb\xc1\xec\xdb\xa5\x7f\xa3\x87\x15\xa6\x6d\x7b\x59\x9b\x83\xde\xfb\x00\xa8\x17\x98\x8a\x05\x6a\x2e\x40\xff\xd4\x9f\xe4\x9e\x96\x9d\x8a\xe0\x3c\xb3\xe0\x27\xa0\xfd\x36\xba\xa0\xff\x5a\x3e\xd8\x70\x04\xe7\xcb\xef\x6d\xe8\x09\x96\x53\xa4\x79\xdf\x82\xf9\x70\x5d\x42\x4b\x7a\xfc\x8a\x12\x46\x33\xc1\xe2\xf7\x99\x5c\xf6\x5f\xd3\x79\xd9\xa9\xc4\x3a\xdf\x1a\x9d\xb1\x39\xcd\xe2\xd6\x89\x09\x12\xb9\xcc\x46\x6c\x63\x44\x89\x4d\xdc\xd0\xe4\xa5\xe7\x3e\xbd\x50\x91\xf4\xe3\xf4\x36\x36\x37\x9a\xd9\xb8\x07\xe4\x04\x54\x99\x5a\x1a\x0b\x95\x98\x37\xf7\x80\x34\x25\xbf\xf3\x3f\x35\xa6\x11\x35\x9f\x36\x62\x9d\x09\x4d\x72\xe5\xed\xbd\x75\xc3\xa4\xf7\x79\x92\x22\xfe\xe5\xa6\x8b\xed\xd9\xd8\x39\x6c\xd8\x85\xf8\xa2\xbf\x0a\x9e\x10\xb5\xc7\xc3\x95\xc3\x97\xee\xcd\x43\x48\xf0\x53\xed\xa9\x9b\x37\x21\x8f\x65\xf4\xb8\x77\x48\xa5\xcf\x28\xe8\x9c\x1b\x5c\x01\xbc\xbd\xca\xec\x0e\xf1\x9d\x40\xca\xfb\xdf\x9c\x19\x2b\x5e\xad\x5e\x72\xa1\x7d\xb5\x36\x05\xc3\xdd\xab\xd5\xb2\x91\xdd\xab\xd5\xb2\xa0\xdd\xab\xb5\xf9\xd9\xbd\x5a\xbb\x57\xab\xa9\xd5\xee\xd5\x6a\xed\xfe\x2f\x19\x23\xf0\xdb\x87\x30\xda\xac\x4c\x1e\x8d\xfb\x26\xee\xfb\x36\x1d\x74\x39\x0b\xfe\xea\x39\xf0\x6f\xb4\x08\xb8\xf0\x6f\xae\xd5\x9e\x60\xe9\xc3\xbf\xd1\x64\xf2\x7b\xa9\x70\xbb\xb9\xc3\x5a\x8d\x5b\x9b\xb5\xbb\xc8\xd0\x16\xf6\x92\xdd\x45\x06\xec\x22\x03\xfc\x23\xd8\x45\x06\xfc\x7a\x91\x01\x1b\x37\xb8\xad\xc0\x2d\x76\x9d\x86\xd2\x1e\x34\x66\xc3\x6b\x0b\x07\x00\x12\x1b\xbe\xe3\x9b\x2b\xf5\x1b\x3b\xc3\xc9\xaa\xf4\x0d\xb2\x2a\x51\x1b\x10\x59\xac\x26\xf4\x20\x1b\x22\x90\x0b\xd1\xe2\x71\xdf\x50\x60\x15\x87\xfc\xf0\x29\xe8\xc7\x15\x82\xab\x69\xea\xd6\x0a\xff\xb6\x1c\x5b\xe3\xe2\x7a\x4c\xdf\xc0\x2b\x86\xa6\x07\xb6\xc9\x1e\x9a\x17\x46\xf1\xa8\x55\x18\xe4\x83\xe7\xff\x8a\xd1\xb8\x33\xc7\xc5\x69\xa5\xb5\x4b\x32\x49\xe2\x1c\x48\x84\xe2\x73\x01\x51\x27\x42\x97\xe3\x92\x25\x9f\x57\x4a\xbd\xd7\xd6\x26\xa1\x1b\x4d\x6c\x71\xd5\x54\x0a\x10\xdd\x55\x1e\x2d\x08\x55\xe4\x3d\x4b\xf8\xbd\x4d\x37\x53\x24\x89\xba\xa3\xdc\xdc\xf2\x99\x6c\xc8\xe2\x13\x45\x4c\x29\x47\xa1\x8a\x95\x6c\x9b\x2d\x74\x45\x33\x4e\xbb\x7d\xd6\x3f\x63\xb3\x32\xbc\x05\x63\x19\x6c\x6f\x0f\x97\xbd\xda\x39\x10\xa1\xb2\x55\xe8\xc5\xbf\x24\xf3\xf8\xbb\xe1\x21\x67\x06\x8b\x2a\x8e\xa5\xdf\x82\x87\x04\x5c\xad\x24\xf0\xaa\xf3\x90\x9b\x2d\x36\x79\xc8\xc0\x5a\xeb\x3c\xe4\x66\x93\xdf\x0d\x0f\x89\xf7\xb5\x5a\x06\xb1\xca\x44\x56\x7e\x9a\xc9\x0c\xbb\xec\xf8\xc7\x1d\xff\xb8\xe3\x1f\x7f\x6b\xfe\x71\x93\x3e\xb5\xf1\x8f\xe6\x2f\xbc\xef\x6d\xa5\xf3\xda\x62\xc2\x92\x44\xde\x8d\xc6\xa3\xf1\x18\xf3\x52\xbd\xcf\xe4\xf2\x8b\xcc\x6e\x13\x49\xbb\xe3\x0a\xf7\x8f\xdb\x7a\xbb\x3c\x02\xa5\xf3\x0b\xac\x34\xc4\x2e\xd8\x5a\x56\x31\xa1\x24\xcb\x13\x48\xf9\x1d\x67\x32\x25\x66\x68\xc2\x44\x44\x53\x95\x27\xe0\x0e\xa1\x33\x3a\x33\x72\x2f\xd6\xd4\x72\x53\x85\xc6\x2c\x0b\x21\x02\xf9\xdd\xba\x12\x22\x40\xe6\xf3\xcf\xe7\xc7\x17\x0f\x07\x4d\x63\xf7\x27\x80\x0d\x8c\xfd\x9b\x01\xe7\x4e\x5d\x67\xd1\xa9\xd2\x27\x0b\x16\xdd\x76\x02\xe3\x9a\x69\xab\x53\x1d\x78\xfa\xfb\x41\x64\x3a\x13\x29\xc8\xf1\x97\x6b\x72\x76\xf2\xba\x88\x9a\x55\x43\x72\x6c\x39\xa3\xd0\xea\x57\xd5\x62\xfc\x58\x1e\x68\xb2\x77\x2a\x2f\xa4\x5e\x98\xeb\x09\xc5\xf1\xb0\xb0\xa6\xab\xfe\x77\x8a\x51\xa9\x93\x3d\xaf\x44\x66\x68\xec\x62\x90\x10\x4c\x98\xc8\x43\x86\x82\x41\xd9\x2b\xf4\xa3\x5d\x48\xa8\x9b\x5d\xd4\x56\xf2\xc2\x34\x9d\x9d\x48\x21\x58\x04\xf1\x45\x65\x0d\x22\x2e\xe6\x7d\x2b\x90\xbe\x1b\xbf\xef\x18\x02\x1d\x87\xb8\x20\xef\xc6\xef\xc9\x52\xc6\xe1\x2a\xfe\x61\x2c\xc6\x63\x4c\x92\x82\xdb\x30\x13\x99\xf3\xd6\x7c\xc9\x88\xc1\x49\x32\x75\x55\xa2\x1a\xd3\x69\xda\x6e\x81\x3e\xe8\xa5\x84\x5e\x62\x85\x59\x68\x21\x95\xb6\x45\xed\x21\xf8\x58\xcb\xd0\xa0\x90\x0a\xd2\x2f\x60\x65\x0b\x6d\x29\xf4\x63\xd2\x84\x2f\xd3\x0c\xf2\x99\xdb\xd8\x68\x10\xe2\x45\x04\x08\x96\xca\x78\xa0\xe5\xa0\xad\x84\x5f\xb1\x55\x85\x1b\xc3\x24\xe7\xd6\x3d\xd2\x0b\x8d\xc6\x50\x5e\xb3\xf6\x98\x4d\xf3\xf9\xdc\x3c\xc5\x69\x9e\xa5\x52\x19\xd4\x6f\x47\xd0\x07\x95\x75\x9d\xa6\x33\x23\x38\x8e\x66\x34\x62\x63\xaa\x0d\xf3\xd3\x19\x73\x33\x7e\x5f\xef\x82\xdc\x44\xc6\x80\x07\x26\xec\xde\xb0\x03\xc0\xe6\x81\x70\xe8\x90\x21\x48\xc4\x40\x20\x2b\x0c\x80\x4e\xa8\xb4\x5c\x1c\xd5\xda\x9c\x8b\x41\xb5\x34\x93\xf3\x8c\x2e\x81\x7d\xe3\xa2\xc8\x18\x1a\x84\x36\xd5\xd1\xa2\xa0\x79\x5a\x1e\x16\xcc\x87\x60\xda\x50\xbf\xa1\xcd\xc7\x24\x18\x8b\x61\xc0\x25\xf6\x58\x30\x6f\x25\x41\x10\x9b\xed\xb8\x32\x8b\x96\x8c\x96\xc4\x15\x12\x1d\xc8\x15\xcb\xea\x25\x15\x7b\x0c\xba\xa0\x22\x36\xe7\x2f\x22\xb9\x04\xfe\xab\x58\x3d\x98\x9f\xd1\x3f\x0d\xb3\xe7\x5a\xc4\x84\x4d\xc9\x5c\x2b\x1e\x2e\x02\xec\xeb\x89\x08\x19\x15\x02\xba\xe1\xa2\xca\xfd\x16\xbb\xf0\x8e\xe0\x79\xae\x72\x9a\x24\x41\xb3\xbf\x91\x43\x62\x90\x15\x87\xc3\xe1\x8b\x2d\x33\x14\x18\x64\x43\x44\xff\x24\xd2\x8c\xaf\x78\xc2\xe6\xfd\x88\x52\xa0\xdb\x01\xe1\x33\x57\xdd\xf8\xc0\xa1\x0d\xb3\x51\xa1\xb7\xe6\x1e\x27\xc3\xdc\x6b\xff\x75\x9a\xce\xbe\xda\x7b\x16\x7c\x3c\xd4\x5a\x45\x3a\xf1\x6f\xa3\xdf\x1d\xd2\x3c\xcb\x99\xc1\x45\x87\x3e\x4c\xa8\xbc\xa8\x0f\xef\xb7\x0d\x8d\x9e\x2b\xc3\x15\x47\xc8\xc5\xa2\x16\xc4\x62\xd2\xfe\xbe\x42\x62\x4a\x53\x3c\x62\xdb\x88\x0b\x65\x24\x18\xbd\x60\x3c\x23\xf2\x2e\x68\xd5\xde\xbc\x19\xe6\x14\x99\x2d\x91\x57\x4e\xf0\xe8\xf2\xcf\xd3\x74\xb6\xc5\x1b\x72\xe6\x8e\xa5\x3c\x22\x7b\x42\xc0\xb4\xb8\x12\x35\x66\xf5\x86\x43\x4e\x13\x2a\xc2\x96\xde\xc7\xb2\x23\xb0\xec\x99\xcc\x22\x76\x35\x7e\xdf\x6f\xe5\xae\x35\x61\xf8\x4f\xc0\xe5\x48\x13\xf3\x95\x14\x50\x99\x04\xde\x94\xf6\x4b\x0d\xe0\xaf\x9c\x0e\x1a\xff\x13\x6b\xf9\xbe\xb3\x49\x9a\xed\x73\x32\xf0\xae\x9f\xcc\xac\xa7\x76\x10\x49\xb1\x56\xd0\x90\x8c\xa5\x52\xdc\x20\xa9\xe5\xf9\x69\xc6\x1c\xd7\x10\x1f\x90\x6b\x5c\xb3\xcc\xc8\xb9\x94\x46\x3a\x6a\x7d\x39\xb0\x75\x33\x70\x1b\x6f\xf3\xd9\xbd\xbe\x91\xae\xbe\xab\x14\x62\x49\xb3\x6e\x9e\xcf\x40\x39\xd0\xaf\xc2\x53\xb8\x37\x83\x50\xf2\xe6\xf5\x94\x87\xb3\xdf\x99\x4e\x2e\xd9\xb5\x62\x9a\xa0\x3a\xc3\x3d\xb4\x48\x20\x21\x79\xae\x15\xe9\x51\xda\xc4\x24\xf0\x90\x93\x3c\x0c\x60\x58\x95\xad\x62\x02\x73\xd8\x14\x36\xb9\xcb\x8a\x0c\x0b\x5b\xc8\xbb\x22\x65\xaf\x9c\x15\x0f\x9d\x9d\x3d\xa8\xfa\xcc\xac\x1d\x3d\xf6\xea\xea\x22\x2e\xb9\x8c\xd0\xd6\xeb\x01\x52\x90\x1b\x84\x48\x33\x57\x7f\xe7\x6a\xfc\x3e\xf8\xd4\x19\x46\xd9\xbf\xdc\x2f\x9b\x4f\xb1\x21\xda\x10\x8f\x11\x20\x64\x4f\xe4\x63\x8f\x7c\x37\xf6\x14\xeb\xdd\x82\x87\xa8\x60\x6f\xde\xd1\x84\x76\xe2\x3f\x67\x15\x8b\x26\x14\x01\xb1\x6f\xde\x73\x5b\xa0\xc4\x3d\x86\x5e\xad\xe2\x60\xd9\x2a\x03\x72\xeb\x85\x60\xa4\x20\xe9\x72\xad\x17\x22\x90\x79\x19\x67\x80\x3c\x5a\x92\xc9\xde\x4d\x2e\x04\x4b\x26\x7b\x98\xdb\x7f\x2a\x75\x30\xc7\xbd\xd5\x4b\xc0\x0a\x32\xa6\x52\x29\x0c\x3d\xb3\x0f\xb6\xb9\xd3\x30\x0a\x4e\x58\x4b\xf0\x0e\xf3\x35\xdc\x6b\x5c\xc2\xe9\xf5\x95\x91\x52\xb0\x1f\xce\x13\x1a\x7a\x9a\x6b\xdb\xa6\x3a\x7f\x83\x11\x06\x1c\x6b\x62\x9e\xb1\x48\x27\xeb\x60\xea\x79\xb3\x32\xe1\xe6\xb7\xe7\x57\x36\x09\xb2\x02\x90\xd0\x3f\x4d\x19\xcd\x94\x5f\x78\x6c\x34\x76\x0a\x08\x8e\x95\x5e\xa1\xe5\x1f\x9d\x4a\x0f\xf8\x73\x45\x68\x68\xc8\x94\x65\x4b\xae\x14\x5f\x31\x72\xfe\xda\xe3\xd6\x4a\xfc\xc6\x13\x7a\x00\xa9\xfa\x49\x2a\x6d\x48\x8d\xce\x68\x74\xfb\x6e\x9d\xd2\xee\xcc\xed\x06\xc7\x03\xdd\xc8\x49\x5d\xb8\x31\xe2\x05\xfe\x74\xce\x45\x1e\x14\xd6\x23\x37\x86\x7f\x43\xb0\x8e\x7f\x21\xfa\xfb\xec\x5d\xfd\xc1\x0e\x8d\x39\xa8\xcc\x5a\x4e\xf1\x90\x57\xd2\x88\x3e\xe3\x4c\xde\xaf\xcf\xac\x7e\xee\x3a\x31\xcb\xe8\xf9\xe6\xbf\x1b\xbf\x6f\x1f\x20\x4c\x17\xc2\x02\x81\x27\x30\xee\x2b\xc2\x96\x53\x16\x9b\xdb\x7b\x9b\x4f\xd9\x20\x35\x33\x58\xe3\x88\x22\xd5\xa9\x9a\x9d\x8c\x7a\x6f\x7e\x94\x6a\x48\x0e\x7f\x62\x1a\xe6\xe9\x16\x1c\x4f\xc7\x10\x15\x4e\x08\x61\x11\x7c\xd2\x00\x3c\x1e\xa7\x94\x66\x12\x0d\x52\xc9\x9a\x44\x66\x44\x92\x63\x05\xc2\x3c\x55\x3a\x63\x74\xe9\xcb\xac\x25\x84\xf6\xf7\xc3\xf5\x3e\xec\xda\x48\xb4\xa0\x1c\x44\xd1\xeb\x6a\xc9\xad\x62\x85\x33\x1f\xdc\xb6\x96\x84\x35\xe4\x7e\x2b\x31\xb4\x80\xe0\x47\x2e\xae\xd7\x22\xc2\xac\x64\x5b\xc1\xbe\xd2\xf3\xa0\xe1\x2d\xd2\x61\xb5\xc2\x92\x0b\xc8\x33\x06\x6a\x05\x97\x17\x1f\x55\xcd\x85\xc9\xa0\xe0\x55\x4b\xdb\xc8\xbe\x87\xa2\xa1\x61\x4b\x30\x0e\x09\x39\x97\x77\x2c\x73\x0c\xdb\xdc\x50\xb9\x8c\xc5\x79\xc4\xcc\xb5\xd7\x83\x3c\x05\x9b\x84\x88\x4c\xd3\x9f\xf8\x7c\x51\xb4\x0d\x3f\x42\xa6\xa7\xb3\xe9\x8c\x3f\x91\x5c\xd1\x39\x83\xf4\x25\x46\xb8\x03\x2f\xbd\x94\x2c\x65\x86\xaf\x5d\x85\x88\xbe\x52\x0f\x20\xa0\xe7\x6f\xb6\x54\x12\x54\x3b\xb4\xab\x08\x90\xc5\x0a\xa2\x93\x04\x1b\x9d\x7d\xf9\x48\xcc\x90\x13\x48\xf8\xad\x91\x71\xcc\x78\x34\x8b\x21\xda\xf1\x3e\xa1\x82\x3c\xe7\x43\x36\x3c\x20\xe7\x6f\x5c\xcb\xa6\x72\x96\x34\xb6\x51\xb5\x5a\x86\x34\x1a\x86\xff\x03\xce\xf2\xc0\xcd\xec\x71\xe8\x42\x06\x19\x52\x48\x76\xeb\x67\x60\x3b\xd8\x56\x61\x10\xe4\x61\xea\x3a\x84\xed\x14\x06\x2d\x3c\xae\x6a\x64\xba\xb6\x97\xeb\xcf\xe5\xfc\x9c\xad\x58\xa8\xf2\xd7\xc6\x7d\x75\x6d\x2b\x77\x92\x24\x72\x4e\x12\xf8\xda\xa5\x9f\xf1\xa4\xa7\x86\x97\xa2\x50\x44\x96\x37\x73\x89\xbc\xcc\xa5\xd3\xfd\x5e\xce\x66\xa8\xf5\x1d\x89\x99\x34\xff\x42\xa5\x2f\x9b\xe6\xf3\xc9\x5e\xb3\x96\x31\x91\x73\x94\xa9\xd8\x92\x6b\x5d\xf2\x72\x66\x32\xf3\xc8\x32\x92\xf2\x94\x1d\x38\x7f\x06\x23\x88\x81\xc8\x87\x8a\xcd\xe5\xb2\x01\xf2\x93\x3d\x1d\x11\x76\xcf\x22\x03\x33\xd4\xf1\x55\x14\xcf\xe4\x72\x36\xfb\xdb\x70\xfb\xcb\xf9\x91\xa6\xd7\xfc\xef\xac\xe0\x54\xfa\x1c\x43\xbd\x4f\xa9\x3d\x51\xfc\xef\xa5\x5f\x7d\xc1\x56\x84\x65\xb0\xd4\x69\x43\x96\x34\x2d\x34\xef\x09\xcd\xe6\xe6\x35\x91\xf9\x7c\x61\x20\xb7\x90\x09\x96\x0a\x12\x3a\xc3\x20\x02\xd0\xb7\xe2\xd3\xd6\xae\x30\x1d\x12\xf2\x85\x66\xe6\xe1\x39\xc2\x10\xf2\x22\xbe\xd5\x2c\xd2\xb9\xd7\x14\x7b\x30\xab\x88\xc2\x15\xde\x22\x6a\x38\xd4\x98\xab\x2c\x07\x28\x34\x83\xb9\x59\x52\xb2\x30\x1b\x8d\xaf\x99\xee\xe4\x1f\x4b\x18\x63\xfb\x00\x80\x79\x0a\xdf\x39\x30\xb2\x06\x07\x7a\xd7\x68\x5b\x00\x3b\x63\x6b\xf8\xe8\xb4\xad\x7e\x44\xd8\x8a\x65\x6b\x9b\x9e\xd5\x2c\x4a\x78\xbe\xee\x87\x9e\x5d\xc6\xf6\x81\xa8\x5e\xcb\x9c\x07\xb9\x78\x99\x70\x78\xc4\x5c\xa5\xb2\xd2\x65\x68\xb2\x47\x93\xe4\xf9\x8b\xc9\x1e\xd4\x60\xca\x98\x82\x9a\x55\xc2\xee\xc7\x15\x22\x95\x41\x11\xc9\xec\x8d\x1b\x21\x50\x0a\x66\x37\x9a\xb2\xac\x34\x28\x73\xa7\x6e\xa6\x8a\x35\x6b\x26\xbb\xcf\x76\x76\xdd\x90\x5f\xa0\xe9\x70\xb1\x43\xe8\x74\x67\x98\x09\xa1\x38\xde\xe0\x5b\x54\x36\xda\xf6\x78\xf1\x89\x0b\x0d\xfa\x1c\xd4\x0a\xff\xbb\x14\x2e\x5e\x80\xee\x0a\xb4\x0d\x0f\x07\xcd\xc5\xf1\x8d\xab\xdd\x10\x00\x4f\xff\x41\xde\xd1\xe8\x96\x6d\x38\x29\xb4\x80\xb8\xec\x13\x80\xb2\xa0\x9a\x4c\xcd\xdd\x67\xe0\xab\x91\x36\xd7\x5f\xb0\xfa\xb6\x7a\x12\x27\x87\x41\xae\x74\xad\x21\x66\x52\x19\x41\x19\xd8\x27\xbd\x08\xd3\x93\x3a\x11\x2a\x07\x2c\x84\xb8\xc7\x00\xe9\x7d\x26\x85\xde\x16\x4a\xae\x53\x03\x98\x66\xe6\x67\xb3\xdf\x46\x5a\xee\x06\xf8\x48\x53\xcf\x29\xae\x1f\x3e\x36\x29\x09\x0c\x2f\x72\x50\xaa\xe1\x6c\x95\x41\xc0\x60\x28\x99\xc8\x05\xfe\xe1\x54\x6f\x0f\x86\x1a\x04\xfc\xf5\x87\x17\xc6\x07\x86\x5f\x3d\x1b\x99\xd8\x7a\x73\xcb\x36\x5d\xa0\xaa\x52\x2c\x77\x29\x83\xdc\x9e\x88\xcd\x35\xa5\x22\x9e\xe5\x09\x22\x27\x52\x3d\xd3\x11\x2e\xf5\xf3\x72\xec\x08\x78\x47\xae\x15\x91\x77\x82\x8c\xc6\x8d\x0c\x9f\x65\x61\x47\x63\xf5\x10\xc2\x38\xbe\xbe\x38\xbe\x19\x1b\x86\x32\x00\x5b\x2a\xd6\x97\xa1\xe2\xc3\x83\xae\x1c\x67\x83\x8e\x88\x9f\x0d\x7e\xa5\x5c\x46\x79\x66\x19\x15\x73\x66\xdd\x1a\xc0\x92\x78\x07\xdf\xc5\x72\x19\x36\x5f\xa5\x3c\xba\x25\xd4\xa2\x1d\x5c\xdb\x8c\x59\x57\x28\xf4\x72\x82\x5f\x22\x99\x24\x5c\x01\xf3\x01\x04\xa1\x38\xdd\x26\x4d\xbf\x7d\x31\x59\xba\x60\x4b\x96\xd1\xc4\xae\x8b\xba\x04\xd0\xa8\xc2\x7d\x7f\x42\xde\xbe\xfc\xfe\x2d\x79\xfe\xea\xe5\xeb\xef\xfe\xdf\xff\xfb\xff\x79\xfb\xfd\xf7\x6f\xbe\x7f\xd1\x74\x66\x29\xd4\x0f\xa6\xd3\x64\x5d\xe1\xd0\xeb\x93\xa8\x22\x6d\xa5\x61\x3b\xa5\x20\x32\x65\x19\x6d\x4a\xaa\xae\xd6\x4a\xb3\xa5\x1a\x5a\x95\x51\xae\x98\x22\x6f\x5e\xff\xe1\xed\x0f\x66\x39\x2f\x7f\xfc\xf1\xc7\x03\x03\xc7\x84\x61\xcd\xe0\x82\x0e\x16\xaa\xbd\xe3\x8b\xe3\xd0\xb0\x6e\x97\xb8\xed\xef\x7e\x7c\xf5\xfd\x6b\xb7\x3f\x97\x3e\x44\x48\x6d\xcb\x77\xd3\x8c\x27\x6b\x73\x08\x99\x9c\x26\x6c\x89\xe7\x10\x2e\x50\x8a\xe3\x19\x2c\x4f\x68\xaa\x4a\x0e\xbb\xd8\x63\xb9\xa1\x77\x45\xbd\x4e\x17\x57\x68\xfa\x36\x29\x85\xb9\x30\x92\x0e\x5f\xf9\x96\x11\xf2\xfa\xe5\xcb\x97\x2f\x8f\x5e\xff\xf8\xe3\x8f\x3f\x86\xe4\xe3\xd4\x4a\xbe\xe4\xbf\x86\xff\x6b\xf3\xd7\xfb\x41\x59\xd2\x79\xc0\x85\x1e\xc8\x6c\x80\xa8\x1d\x56\xe0\x99\x7b\x05\x7c\x12\x88\x22\xfd\xf5\x6c\x9b\x9d\x50\x10\x32\x73\x38\xd5\x51\xc6\x22\x99\xc5\x06\xf9\x34\xe5\x0d\xd6\x4e\x3f\x2e\x15\x53\xed\x17\x32\x17\xcc\x50\x88\x5e\x07\xf6\x66\xd9\xa2\x99\xec\x9e\x2e\x9b\x4a\x2d\x97\x12\x10\x48\xbc\x03\x23\xe3\x58\x61\x68\x90\x70\x61\x5e\x5e\x99\x6c\xab\x9f\x03\x5d\xd5\x08\x6c\xa1\xbd\x0c\x13\x27\xd5\xf6\x4d\xae\x28\x0b\x29\x6f\x7d\x5b\x71\x83\xca\x4c\xcb\x74\x80\x52\x69\x4d\x79\x06\x75\x1d\x61\x16\x83\x86\xd6\x05\xcb\x06\x44\x68\x99\x5a\x2c\x0c\xdb\x6c\x28\x38\x30\x40\xc9\xe6\x34\x65\x22\xde\x1c\x61\x2a\xb5\x96\xcb\xa1\xb3\x01\x5b\xc6\x45\xd1\x19\x73\x95\x5e\x83\xb7\xdb\xa5\x83\xb7\x65\x54\x7d\x0b\xb3\x19\xdd\x0a\xfc\x18\xc3\x89\xba\x63\xf0\xa3\x9c\x91\xb5\xcc\x89\xba\xe3\x3a\xfc\x88\x6b\x69\x17\x6a\x75\x69\x53\x46\x14\xd6\x05\xb5\xcb\xc5\x0a\xe3\x38\x85\xa5\x85\x16\x4a\x18\x40\x10\xbc\x86\xa0\xc4\x05\x1f\x9a\xe9\x9a\xcc\x68\x92\xa0\x64\x97\xb9\xd7\xcd\xcb\xbe\x03\x23\x1f\xe0\x34\x77\x1c\x89\x51\x68\x4c\xdb\xdc\x62\x30\x68\x50\xa7\xcc\xdb\x69\x79\xd7\x11\xb0\xdb\xaa\xc1\x0a\x35\xc3\x69\xc6\x57\xac\xb3\x52\xf3\x69\xb5\x39\x99\xf1\x84\x09\xaf\x42\x7c\xc1\x12\x95\xea\x8b\x18\x5a\x36\x1c\x42\xae\x50\xb5\x81\x14\x19\xd4\xb4\x9f\x14\x1b\x59\x97\xe5\xfa\x6c\xd6\x2a\xaa\x25\xda\xce\xb7\xd4\xe9\x14\x4b\xfa\x62\x64\xbe\x58\x42\x2a\x67\x99\x77\x86\x5c\x4c\xf6\x4e\x1b\x7a\x3a\x2c\xce\x18\x8d\xb9\x60\x4a\x1d\x26\x7c\xc5\xcc\x3f\x40\xe9\x2a\xf3\x20\x4e\xbb\x50\xe3\xc2\x20\xf0\xdc\xb9\x68\xbf\xd8\x00\xdb\x90\x8c\x44\x94\x31\xaa\x6c\xf4\x7c\x73\x55\x54\xc4\x78\x76\x9f\xb2\x8c\x33\x83\x82\x2a\xcd\x33\x2e\x73\x05\xc9\x5c\x33\x88\xa0\x01\x73\x82\x18\x98\x45\x12\x7b\x9d\x80\xd2\x36\x3a\x64\x72\x45\x72\x11\x1b\x3e\x8d\xd1\xd5\x1a\x7c\xd3\x86\xe4\x94\x15\x2b\x72\x39\xb2\xb5\x24\x73\xa6\x31\x52\x00\x8d\x92\x58\xe8\xdc\x4e\x16\x1a\xda\xae\x05\x17\x06\x52\xc9\x7f\xe7\x3c\xba\x4d\xd6\x3e\x4e\xff\xf8\x52\xfd\x8d\x4c\x26\x82\x9c\xb2\x34\x63\x11\x24\x14\x33\x83\x27\x34\x0a\xd3\x6b\x28\x1a\x6c\xab\xe0\xf2\x88\xfc\xc4\x68\xa2\x17\xf6\xb4\x2e\x57\x2c\xcb\x78\x6c\x84\x98\x40\x4d\xdf\xf6\x0a\x7b\xd3\x7c\x6e\x5d\x11\xce\xe5\xfc\x34\x93\x50\xc4\xb9\x51\x62\x6c\xa0\xfb\x30\xcc\x47\xb6\x94\xd9\x7a\x9c\x49\x73\x75\xc6\x54\x2f\x1a\x47\x69\x59\xcb\x35\x5f\x82\x1f\xec\x09\x4d\xa2\x0f\x19\x4d\x17\x3f\x51\x31\x3f\x9e\xe9\xe0\x05\xee\x3d\x5a\x81\xe6\x0f\x1f\x0d\xce\xcd\x19\xb1\x6e\xe4\x4f\x52\xe9\xe3\xa8\x21\x49\x48\xf5\x91\x3b\x6d\xee\xeb\x3f\x78\xa0\x27\x36\x94\x5b\x35\xb8\xca\x15\x5a\x63\xd3\x74\x2e\xdd\x0b\x41\x4b\x65\x75\xe9\xaf\x2f\x4b\x7f\x05\xae\x15\x4b\x66\xe4\x39\x9d\x35\xc4\xfd\xc1\x2b\x68\xc7\x5e\x70\xcb\xac\x17\x43\x31\x34\x0b\x23\x99\x7e\x31\x24\xef\xd6\x45\xfd\x72\xa4\xe0\x41\x64\x4d\x64\x64\x5e\xec\x90\x2b\x73\x29\xc2\x87\x96\x89\x15\x95\x83\x32\x7c\xf1\xa8\x4f\xf6\x4e\xaf\x2e\xc7\x93\x3d\xd0\x49\x1a\xc6\xdf\x3e\x8a\x77\xd4\x7a\x8c\x24\x89\xbc\x23\x4a\x2e\x21\xaf\x25\x4d\x92\x36\x83\x3b\xac\xcd\x07\x9c\x59\xcd\x01\x52\x63\x48\xf3\x48\x33\xba\x64\xd6\xb9\xe1\xea\xec\xe6\xd3\xd5\x85\x19\xf5\xf8\xe4\xe4\x6c\x7c\x33\x34\x34\x3d\x34\xaa\x6d\x68\x69\x17\x54\xa5\x5f\xcb\x1c\x5c\xc3\xaa\x4f\xaf\xb7\xa9\xd1\xc5\xf8\xd3\xcd\x64\x0f\x5f\xe3\x3f\xb6\x3c\x99\xf0\x56\x3a\x6e\x43\x3b\x76\xa1\xce\xcf\x50\x8d\x23\x1d\xa0\x83\xc4\x64\x0f\xd7\x14\xae\xfa\xed\xbc\x63\xec\x89\xd4\x16\x43\xa4\xe5\x55\x16\x54\x41\x70\x21\xd6\xdb\x4c\x33\xe9\x02\x04\xdb\xc4\xe4\x30\x2a\x01\xe8\x2c\x18\xe1\xbd\x14\x45\x48\x1c\x4d\x12\x67\x37\x76\x0b\x6b\x3c\x39\xcf\x22\x6f\xf0\x3b\xb4\xa6\xa6\x05\x84\xc6\x2c\x09\xb4\x21\x85\x5b\xb3\x1c\xa0\xe3\x03\x55\xc5\x38\x93\x5a\x46\xb2\xd3\xc6\x02\x32\xab\x1f\x60\x85\xd9\x3b\x52\xdb\x9d\xd0\xd8\x7a\xc3\x58\x16\x7f\xc9\xe2\x16\x55\x22\x6a\x39\x0e\xcc\x63\xe1\x2e\x29\x20\xb1\xe3\xae\xae\x6e\xc6\x57\x97\x37\x5f\xdf\x5d\x5e\xde\xe0\xfb\x98\xb0\x99\x26\xd3\x84\x8a\xdb\x6d\x75\x0d\xde\x5e\xaf\xb7\x29\xb1\xef\x2b\xf7\x20\x1b\x62\xb5\xae\xbc\x73\x4e\x91\xc2\xdb\x71\x58\x8c\x35\xf3\xdb\x1d\x57\xc8\x92\xde\x28\x79\x8f\x59\x5f\xdc\x4e\x0f\x48\xc2\xe8\xaa\x41\xe8\x2e\x85\x0c\x50\xda\x2c\xa4\xb4\xec\x40\x6d\x44\xc3\xea\x6c\xcb\xa5\x35\x40\x6c\x34\x5e\x85\x32\x73\xb5\x41\xed\xed\xbf\x11\xd4\x90\x39\x29\x2c\x5f\x23\x01\x55\xb6\x9a\x42\x56\x5a\xd9\x14\x47\x08\xae\x5c\xe2\xe5\x53\x96\x04\x33\x6b\xb5\x2d\x68\x63\x90\x66\x7d\x40\xfb\x62\xac\x40\x71\x21\x63\x06\x55\x4c\xbb\x70\xe0\xcc\xef\x70\x32\x3a\xbd\x32\x9d\x50\x21\x06\x56\x77\x39\x23\xe6\xdb\x7d\xd0\xaa\xb8\xd1\x07\x86\x15\xb5\x22\x3e\x14\x3c\x0d\x5b\x67\x79\xb4\x80\x28\x40\x17\x3f\x88\x3a\x48\xf7\x7e\x83\xcb\xa3\x79\xc3\xe0\x81\x29\x3c\xe6\xec\xaf\x61\x55\x9b\x0b\x8a\x26\x60\xe5\x29\x6a\xea\x85\xf4\xec\xdf\xa0\x0c\xe0\x8c\xf2\xc4\x48\xe0\x23\x31\x95\xb9\x88\x0d\xc7\xd5\xa4\x14\xad\x32\x6b\xef\x1b\x3a\x56\xe1\xfc\xe9\x74\x7c\x78\x73\x32\x46\xef\xc6\x26\xd5\xb0\x39\x0c\xeb\x00\xe0\x79\x09\x21\x73\x12\x72\x05\x00\x36\xa8\x60\x8e\x82\x92\x85\x20\x3c\xcb\x98\x4a\x6d\x69\x46\x97\xe8\x8a\x45\x79\xc6\xf5\xba\x78\x59\x1d\xb5\xc8\x15\x9b\xe5\x70\x25\xe9\x4a\xf2\xb0\x0e\x3b\x8a\xa0\x00\x22\xbc\xb9\x51\x0e\x0e\xcb\x44\xce\x66\xd6\xfe\x84\xfc\x98\x59\x6d\x96\xb1\x48\xd7\x02\x14\xc9\xfb\x70\x5a\xa9\x29\x8d\x6e\x07\x95\x52\xd9\x07\x2e\x39\x55\xf1\xb0\x59\x35\xa3\xcd\x81\x03\x5e\x57\xda\x11\xa3\x26\xe7\x92\xc9\x9e\x8e\xd2\xc9\x1e\x30\x7c\x14\xe0\x1b\x1e\xc6\x03\xb4\xcf\x82\x06\xf7\x8f\x71\x79\x86\x3a\x19\x82\x78\x53\x06\x14\x50\x60\xb2\x00\x0b\x10\x14\x70\xd8\x07\x85\x7e\xb5\x51\x60\x15\x52\x80\x4b\x72\xa1\xfe\xb1\xa2\xa4\x75\x4d\x56\x6a\xe1\x62\x0a\x0c\x96\x9c\xfe\x74\x32\xae\x38\x10\x46\xe9\xd1\xeb\xd7\xc1\x40\xad\x3c\x4e\x8f\xde\xfe\x70\x00\x4d\x5e\xfd\xe1\x47\xfc\xc7\xeb\x37\xe5\xbf\x7e\x78\x89\xff\x7a\xfb\xdd\x77\x6f\xec\xbf\xde\xbe\x7d\x5b\xfc\xeb\x0f\x21\x7e\xa6\xf9\xf2\x55\xcb\x05\x98\x73\x1b\x4b\xd4\x6f\x45\x72\x39\xf5\xb2\x1d\xba\x33\x3d\x20\x68\x3d\x72\xc8\xdf\x90\x42\x6c\x5c\xf0\x36\x22\x46\x1d\xbe\x33\xa5\x16\xa7\x18\xec\xd9\x99\x32\x4f\xb0\xb0\x97\x1b\xe9\x95\xb1\xcc\xac\xa4\xa3\x7b\x4b\x0d\x18\x52\x40\xe1\xc1\x4b\x68\x49\x9a\x4e\xc8\x00\xd6\xd7\xf0\x8b\x9d\xb9\x99\x82\xb6\x57\x74\x6a\xa5\xa0\x97\xb9\x7e\x20\x09\xdd\xe8\xf9\xc4\x34\x54\xe6\x7a\x2e\x7d\x1a\x0a\x02\x41\x37\x15\xd5\x72\x47\x45\x7f\x55\x2a\x2a\x2d\x22\x3c\x0d\x19\x95\xa0\x22\x61\x3a\x8a\xf7\xf7\xa1\x48\x89\x88\x69\x16\xdb\x40\x03\x2d\x6d\xa4\x17\xe0\x4c\x68\x58\x44\xa3\x58\xa2\x6b\x20\x28\xf7\xa2\x5c\xc3\x61\xa1\x2a\x40\x47\x71\x25\x26\xd0\x00\xc0\x1c\xa7\x21\xd4\x4d\xf6\xbf\xd3\x8b\xeb\x3a\x0d\xdf\x86\x40\x07\x0f\xca\xd2\xec\x03\x20\xfb\xdf\xbf\xc1\xff\xee\x68\xf8\x8e\x86\x07\x7f\x0d\xd3\x70\x46\x75\x9e\xb1\x53\xa6\x59\x54\x28\x89\xbb\xe8\xf7\xfb\x50\xa7\x22\x45\x95\x96\x60\xe2\x85\xef\xec\xf0\x24\x86\xa6\x0d\x91\x54\x53\x6a\xba\x49\x41\x68\xae\xe5\x00\x9b\xb2\x98\xa4\x09\xd5\x50\x7b\x22\xa2\x29\x05\xea\xc6\x21\x6a\xfa\x73\x19\x21\x57\x60\x52\xd8\x24\x4a\x28\xda\x2b\x89\x62\x29\xcd\xc0\x99\x17\x9e\x16\xa0\xb5\x42\x12\x95\xd2\x88\xa9\x03\x30\x82\xa6\x09\xfb\x23\x99\xec\x5d\x5f\x1c\xdf\xbc\xcf\x93\x64\x7d\x05\x6e\x07\x7f\x02\x3b\xec\xc7\xe3\xeb\xff\xe3\x7f\x09\x06\x98\x83\x2b\x06\xf9\x98\xae\xf3\x14\x08\xcb\xb9\x8c\x6e\xff\x04\x3e\xa8\x93\x3d\xb0\x10\x07\xb5\x68\xe0\xae\x8a\x79\x82\xf6\x90\x7c\x62\x54\xa2\xa1\x73\x16\x58\x07\x84\x2d\x53\x0d\x06\x0b\x69\xbd\x55\xbd\xa0\xc0\x0a\x8c\xb6\x14\x94\xed\x04\x1f\x68\x8f\x5a\x1a\xef\xbd\xb6\xfe\xd1\x62\x4c\x81\x59\x9c\xa3\xdf\x9a\x45\x8b\x41\x9a\xb1\x15\x67\x77\x2d\x2a\x49\x3b\xb9\x1a\x06\x0f\xb0\xf9\xb4\x82\xd2\x68\xf3\x01\xb6\xa4\x3c\xf8\x22\xb3\x5b\x9a\x99\x67\xe6\x4f\x2e\xd0\xf8\xe7\xf5\xff\xf5\x27\x7b\x1a\xad\x7e\x66\xb5\xdd\xbb\xbd\x58\x6f\xf7\x8c\xc1\x43\x31\x33\x28\x62\xae\x69\x9c\x47\x36\x41\x34\x8d\x43\x4a\xc4\xd6\x33\x4a\x24\xb8\x42\x8c\xc6\xdd\x47\x54\x36\x2d\x4b\x0c\x95\x86\x71\x8c\x9f\xa9\x85\x9f\xcc\x33\x1a\x7c\x9e\x85\x14\x83\xcb\x94\x89\x6b\x4d\xa3\xdb\x62\x11\x5e\x29\x2b\xb8\x7a\xcf\x8b\x26\x83\x98\x65\x7c\xc5\xe2\xa2\x69\x68\x50\x70\x61\x32\x38\x9b\xdc\xd1\xb5\xf2\xf4\x4e\x07\xb5\xf0\x59\xd0\x40\xba\x58\xd8\x80\x8b\x7f\x63\x3e\x0e\xab\x58\x09\xfd\x74\xda\x18\x1b\xde\x06\x7e\x6b\x3c\xfb\xf9\x74\xdc\x37\x5a\xe8\x43\xbd\x87\x45\x12\x45\xec\x2f\xe4\xe7\xd3\x31\x51\xd2\xb9\xd8\x92\x88\x66\xe1\x64\x2d\x80\x4c\xb1\x14\xfb\xfb\x9a\x28\xa4\x2a\xd0\x57\xce\x66\xa0\xa4\x36\x77\x0e\x6d\xc1\x4b\x19\x33\x88\x3e\x07\x1e\xe9\xe7\xd3\x31\xb2\xa2\x0d\x56\x4c\x88\xf6\x61\xe6\x6e\x31\x11\xb3\xb8\xf4\x2b\x30\x2c\x0e\xcc\x96\x66\x72\x65\xc8\xf5\x94\x69\xd0\x90\x97\x09\x31\x1a\xd6\x29\x0a\xab\xc4\xf0\xd1\x41\xdd\x0b\xb0\x53\x3e\x50\x45\x86\x9d\x8d\xfc\xb0\xa5\x8e\x0e\x3b\x8e\xc3\xdc\x40\x2b\x1f\xb0\x08\xda\x55\xbb\xf0\x24\x6c\x8d\x75\x12\x7f\x91\xab\x42\xd0\x84\xdc\x59\x43\xbb\xb3\xa3\x87\x15\x3d\x33\x48\xeb\xbd\xe2\x71\x4e\x13\xa2\xf2\xa9\x97\xd1\x11\xf3\xa3\xd8\x47\x38\x66\x62\x48\xea\x92\x4a\x43\xb2\x6f\x83\x9f\xe0\xbd\x02\x54\xd2\xbd\x54\x24\x95\x8a\x83\x6b\xff\x1e\xa9\xdb\xf8\x95\x73\xd2\x16\x44\x46\x51\x1e\xce\x1a\x2a\x48\x4a\x33\xcd\xa3\x3c\xa1\x59\xb2\x36\x07\xc2\x94\x32\xcb\x28\x4d\x33\xe0\x5e\x0d\x81\x4f\x58\x2f\x4d\xe9\x8c\x72\xc1\xe2\x21\x69\x92\x7d\x4a\x31\x11\xe3\x0e\xaa\x30\x38\x20\x8a\xb1\xc2\xc9\x20\x91\xf3\xed\xb4\x8a\xdd\x4c\x28\x6d\x29\xb6\xdd\xa3\x8a\x72\xa3\xf7\x45\xbf\x11\x3a\x98\x48\xb3\xba\xf0\x2f\x2d\xae\x19\x0f\xe6\x21\x8b\x58\xa6\xb3\xfb\x28\xc9\x7b\xf8\x74\x8d\x6a\x1d\x50\xea\x87\xc7\x7f\x50\x63\xd5\x00\xcd\x3b\xd3\xad\x54\xb2\xcc\x30\x3b\x28\x58\xaf\x96\x52\x70\x2d\x21\x2d\xde\x4c\x66\x35\xd1\x7f\xd8\xe4\x0a\x5c\x15\x27\x2b\x89\x41\x6c\xe6\xa3\xb9\x90\xe6\xab\x32\x5c\x73\x7f\x9f\x8c\xc6\x9f\xaf\x49\x9c\x2f\x97\x41\x5f\xd5\x62\x1b\xce\x03\xcf\xb1\x15\xee\xde\x27\x6b\x32\x5d\x57\x22\x0c\xab\x46\xeb\xd0\xa0\x6e\xaf\xcb\x3c\xd1\x3c\x4d\xbc\x84\x37\x98\x34\x93\xe4\x0a\xbd\xd1\xcc\x7f\x5c\x76\x09\x8c\x04\x6f\xe2\xad\xec\xcb\xa3\x02\xc1\x7d\x0a\x14\x11\xa1\x1f\x60\x9d\x20\xdf\xdd\x65\x34\x6d\xb2\xff\x20\x38\x81\x79\xdb\xdf\x3f\xdc\xdf\xc7\xe1\x2c\xf3\x46\x16\x60\x3b\x72\xbc\xee\xfe\xfe\xe1\x7f\x19\x58\x1c\x1e\xac\x98\x5e\xbc\xda\x0f\xbc\x2a\x36\x67\x9a\x83\x01\x6a\x63\xab\x61\x75\x53\x36\xe7\xc2\xcd\x68\x86\xdb\xdf\x47\x9f\xec\x44\xc9\x26\xaf\xb3\x12\x84\xfb\xfb\x76\x6e\xff\x91\x83\x03\xe2\xe9\x4a\xb5\xe4\x66\x08\x5f\xdc\x62\xe0\x71\xc6\x66\xfc\xbe\xff\x35\xc1\xf6\xce\xb8\x57\x3d\x62\x70\x2c\x2e\xf2\xf6\xc6\x4c\x68\xc3\x4f\x87\x6d\x38\x9b\xee\x15\x10\xa3\x0e\xaa\x18\xc3\x7a\xe5\x5c\x2d\xd0\xc6\xbc\x0c\x68\xca\x5a\x61\xa5\x86\xe4\x42\x6a\x78\x34\x09\x13\x2b\x9e\x49\xb1\x84\xb7\x48\xda\x72\x98\x54\x90\xa9\xe1\x05\x97\x4c\xd3\x04\x31\x50\x66\xd1\x82\x19\x42\xaf\x65\xb8\x8e\x6b\xc1\xd4\x22\x83\x48\x53\x43\x96\x33\x4e\x35\x4b\xd6\x55\xdc\x91\x79\xe6\x87\x4e\x83\xd6\x5c\x46\xb7\x0d\x59\xac\xcd\xbb\x6e\xf3\xbd\x5a\x2f\x0e\x73\xd6\x11\x4d\xf8\xfe\xbe\x9f\x29\xd4\x8c\x5a\x32\xc5\x5e\xb7\xe0\xbd\x71\x4e\xec\xfb\xfb\x9a\xa6\x6e\x20\x1f\x73\xcc\x04\x0f\xc6\x99\x2b\x36\xcb\x98\x5a\x00\x4e\xac\x68\xa7\xd3\xc0\xa8\xa1\x9f\x97\xa4\x86\x4b\xb0\xbc\x21\x31\x6a\xf4\x82\xcb\x98\x8a\xa8\x50\x98\x61\xa5\x72\xbf\x24\x59\xb1\x8c\xcf\xd6\x36\xa5\x11\x96\x5f\x05\x6d\x1c\xf6\xb1\x2e\xc6\x41\xfa\x6a\x79\x73\x43\xf0\x2c\xdb\x5f\xa2\xf6\x0a\x33\x54\xbf\xdc\x52\x70\xe2\x29\xef\x1d\xe1\x3f\x1a\x8f\x0a\x6e\x5d\x16\xbc\x58\xd5\xa3\xb8\xcc\x3c\x8b\x38\x18\xd6\x3f\x63\xea\xca\xf2\x4a\xca\x32\x0d\xcc\x90\x5c\xa6\xe8\xab\x52\x66\xd7\x36\x82\x7b\xb6\xb4\x9e\x1c\x61\x86\xbd\xd0\x86\xa0\x4b\x29\xde\x4c\x23\x88\xa5\x52\x26\x15\x76\x5b\xf0\x84\x3c\xcf\x85\x62\xfa\xc5\xd6\x4c\xb7\x81\xd6\xc7\x9b\x4f\xbd\x20\xf5\xf1\xe6\x93\x43\x1b\xf3\x4f\xc8\xe0\xa2\xdd\x0a\x2b\x81\xdc\x43\x72\xcd\xc2\x9e\xbc\x16\x8a\x66\x2b\x66\x0c\x2f\x78\xfd\xbb\xef\xb6\x4f\x72\x83\x71\x96\x5b\x5e\x89\xfd\x51\xa8\x57\xeb\x85\x20\x19\xc3\xe4\x95\x61\xeb\x43\xe2\xb9\x91\x63\xd4\x5f\x55\xb9\x4c\x84\xb4\xf4\xcf\xfa\x1c\x81\x77\x94\x6f\x09\x08\x22\x40\x26\x6f\x8b\x62\xae\x85\xaf\xb7\x01\x2d\x38\x9f\xbd\xac\x24\x18\x74\xd3\x67\xb8\xab\x8e\xcc\x50\x3f\xbe\xdc\x3a\x55\x80\x9b\xa1\x67\x90\xdf\xa8\xda\xbc\x50\xf0\xb8\x5c\xed\x53\xfb\xbd\xe1\xeb\xdc\xda\xcd\x2b\x1e\x04\x04\x43\x6f\x90\x8a\x86\x9f\x2b\x72\x9c\x6b\xb9\x35\x71\xc0\xb9\xde\xf3\x44\xb3\x0c\x72\xb6\x36\xba\x66\xf6\x19\xe7\x5c\x46\xb7\xef\x9b\x7d\x58\xeb\x78\xb7\xd9\xc9\xa1\x9d\x21\xab\x7e\x49\x38\x37\x41\x08\x1e\x89\x8c\x6e\xc1\xe9\x7c\x48\xfe\x62\xd8\x2d\xba\x86\x94\x87\xe8\x4f\x03\xa1\x35\xf0\x4c\x5a\x03\x50\xd1\xda\xa9\x00\xc2\x55\x7e\xb9\xf6\x2c\x24\xc5\x6a\x9e\xcf\xbc\xc7\xd5\x77\x51\x5c\xd2\x34\x65\x98\x42\x53\x68\x59\x24\xcd\x68\x78\xbd\xb5\x91\xe1\x32\x73\xa9\x28\x89\xf9\x6c\xc6\x32\x26\x34\x49\xa9\x5e\xbc\xf0\x09\xd9\x61\x96\x8b\xc3\x7b\xab\x4f\x30\xeb\x7e\x28\x92\x1a\x08\x8f\x33\x39\x65\x5b\xd0\x84\x86\x9e\x45\x74\x29\x5f\xb2\xba\x75\x31\xc8\x5c\x61\xa1\x04\x4c\x34\x42\xb5\x66\xcb\x14\x25\x71\x1a\x81\xa8\x56\x75\xe5\x84\xc3\xe1\x33\x9b\x20\xb4\x21\x01\x05\x5d\x51\x0e\x15\x93\x87\xd5\x54\x23\x4b\x7a\xeb\x32\x85\x80\xef\xb8\x4d\x1a\x65\x64\x60\x8c\x1d\xb2\xa7\xdf\xa0\x0e\x8a\x30\x24\x94\xc5\x07\x90\x76\x2a\x57\x0c\x87\x39\x19\x7f\xf2\x0f\xe5\xfb\x97\xcb\x07\x13\x0b\x03\xcd\x9e\x01\x06\x95\x13\xa8\x85\x16\x84\x60\x0f\x80\x0e\xed\xcc\x85\x7a\x56\x60\x0c\xf9\x21\x5e\x1e\x78\x24\x13\x4c\x8f\xb9\x0b\x29\x28\x54\xee\x8d\xfc\x0f\x08\x35\x6a\x41\x83\x27\x08\xd7\x0b\xfd\x91\x93\xa4\x4a\xea\xad\x04\x12\x7e\x37\x8c\xf0\x61\x0e\xd1\x9d\xd4\x90\x7c\x31\x07\x67\x53\xf2\x94\xd9\x75\xb9\x11\x6b\xca\x8b\x74\xd0\x1c\x59\xe7\xf2\x70\x99\x11\xcd\x75\xb2\xd9\xc1\x64\xb6\x76\x94\xc5\xcb\x9c\xbb\x94\xb9\xad\xfb\x6d\x9d\x79\x6d\xb1\x08\x21\xc3\xb9\x47\x65\xe6\x5a\xcc\x5c\x0e\x72\x5c\x50\x25\x55\x9d\x2a\xd8\xba\x87\xa2\xcd\x47\x6a\x84\xd4\xc7\x53\xe7\x8f\x34\xbb\xfd\x48\x55\x77\xda\x8c\x51\xad\x83\x43\xbc\xa5\xf9\xb7\xaf\x59\x80\xcc\x07\xca\x10\xcb\xb0\x9e\xfb\x06\x91\xc2\x8c\x43\xa6\x86\xa4\x42\x61\x40\x97\x8f\x69\xca\x20\xf1\xa1\xf9\x85\x2c\xd8\x3d\x8d\x59\xc4\x97\x65\xcc\xba\x41\xa0\x20\x9e\x68\x92\x30\xaa\x34\xf9\x01\xc7\x54\x4c\x1f\x80\xcd\x1b\x33\x4e\x42\x14\x5f\x42\xd5\xc2\x79\xc4\xaf\x2d\x06\x2e\xdd\x2a\x1a\x94\x71\xd6\x0d\x14\x3c\x1a\x20\xde\xb2\x72\x8c\xf7\xb3\xd9\x4b\xf8\x84\x4e\xd1\x95\x79\xe7\x42\xbf\x79\xbd\x35\xd3\x86\xc0\xbe\x38\xbe\xb9\xb4\x7e\x19\x85\x94\x82\xef\xf2\x03\x8f\x7b\x2c\x95\xfe\x92\x71\xcd\xc0\xe3\x73\x6b\xd2\x1f\xee\x5e\xe7\x0b\xc1\x75\xbc\x91\x4a\x18\xbe\x2e\x36\x27\x43\xc9\x9d\x19\x6a\x33\xc5\x54\x51\x57\x27\x5a\xb0\x18\xbd\xf1\x21\x97\x65\x46\xc1\x4c\x14\x96\x04\x30\xbf\x9c\x4b\x8e\x8c\xe9\x21\x31\xcf\x2f\x4c\x72\x47\xf1\x65\x8f\x12\x39\x9d\xb2\x0c\xe5\x29\x2a\x2a\x74\xa8\xd9\xac\xa5\xbc\x64\x61\xa0\xbb\x35\x0f\x92\xeb\x4d\xd3\x34\xe1\x8e\x35\xf1\x71\xa5\x30\x1a\x34\x08\x8b\x29\x8b\xf4\x26\xa5\x1c\x3e\x2a\x5d\x95\x1b\x6a\x7b\x86\x3f\xd8\xef\x01\x32\xb0\x95\x02\x5c\x42\x44\x90\xf5\x6d\x78\x86\x77\xc4\xed\xcc\x7f\x13\xde\x54\x3c\x83\xb6\x61\xfe\x5b\x92\xcb\x14\xe2\x00\x2a\x65\xb4\xc7\x40\xe3\x3b\xe9\xc2\xe9\xc0\x83\x1b\x98\x0b\x50\xd1\x34\xa8\xc4\x6c\x40\x28\x0e\x5a\x48\xe9\x0a\x9c\x5f\x40\xad\x64\x0d\x06\x66\x6c\x6a\x83\xd1\xad\xb3\xf7\x34\x9f\x37\x3e\x84\x06\x7f\x67\xfc\x1e\xad\xbf\xb6\xbd\x2b\x4c\xf6\xdd\xf0\xd5\xab\x42\x03\x6a\x5e\x5f\xd4\x64\xae\xcc\xf7\x90\x53\x17\xb2\x73\x05\xf5\x3b\x6b\xcb\x1c\xbb\x60\x9f\x22\x50\x47\xcb\x03\x42\xc9\xc2\xcb\xc5\x86\xf1\x7a\xd5\xd4\x6b\xa1\x21\x21\x1b\x5b\x05\x89\x1f\x22\x49\xad\xde\x5a\x67\x81\x4e\x29\x6a\x5c\x34\x6d\x0a\x78\x76\x46\x46\x67\x28\x6c\xb0\xe8\x40\x24\xc0\x73\x3e\x73\xed\x90\x46\xa0\xae\x65\x00\x09\x94\x1c\xfa\x36\xa7\x92\x68\x50\x21\xdc\xe6\x53\x76\x21\x63\x36\x96\x99\xbe\x82\xdc\x05\x9d\x17\xf2\xcf\x1b\x5d\x20\xa1\x86\x2a\x74\xfd\xb0\x15\x3f\x11\x42\xc3\xb6\x6c\x6e\x11\x52\x26\x90\x1d\x56\x03\x69\x67\x85\xba\xc5\xbc\xdb\x5e\xf6\xc3\xc6\xfa\x75\xf0\x34\xf2\x74\xa5\x6c\xce\x31\x04\x73\x8e\x8c\x1c\x53\xcc\x2d\x0b\x10\x0a\x6d\x14\x65\xb6\xdf\xb6\xe0\x26\xeb\x19\xe7\x63\xcf\x1b\x48\x4d\xf0\xe6\xf5\x1f\xde\xfe\x21\x98\x1e\xac\xd9\x30\xd5\x94\x9f\xa3\x47\x86\x8e\xee\x1c\x1d\x5d\x49\x11\xb6\x4f\x8b\xd0\x6a\x37\x4a\xe4\x1c\x12\x1f\xbc\xb7\x71\xd4\x57\x6c\xce\x3a\xb5\xe2\xe7\xa1\x4e\xfe\x25\x31\x94\xdc\xc6\x28\x44\x90\x94\x95\x37\x88\xd3\x2e\x5c\x81\x67\x04\x46\x84\x94\x75\x32\xd7\xa9\x11\x40\x04\xd8\x14\x62\x47\xe4\xc1\x80\x88\x18\x06\xa9\xe4\x9a\xbc\x1c\x61\x32\xeb\x9e\x02\xf6\x17\x78\x09\xca\xfc\xfc\x73\xbe\x62\x22\x94\x36\xb1\xc8\x62\x11\x83\xcd\xb3\xc1\x2e\x35\x03\x36\x09\x9f\x6c\x78\xa1\x11\x1f\xed\xf2\x21\xaf\x41\x83\xa9\xb3\xed\xe0\x13\x39\xef\xad\xcb\x38\x2f\xdb\xba\x67\x74\x96\x27\x09\xc8\xf4\x8e\xe9\xc1\x9b\x93\xc8\xb9\x7b\xb6\x42\x5b\x01\x3e\xd6\x7b\xcc\x40\x94\x4a\x24\xd4\xc8\xa8\xe8\x06\x56\x34\x3b\x4c\xe4\xfc\xd0\x97\x40\x86\x89\x0c\xd6\x6d\xe9\xd8\x65\x4f\xbb\xcb\xb9\x6b\x59\x2a\x69\xe6\x15\x33\x8b\x47\x1a\x40\xe0\xce\x8c\x38\xdd\x74\xa5\xce\x2f\x3f\xb8\x47\xbc\x6a\x0a\x88\xe4\x00\x43\x17\x1f\xb0\x93\x6b\xb6\x62\x19\xd7\x6b\x73\x16\x7d\xf6\xe3\xb7\xf7\x77\xa5\xec\xf7\x84\x4e\x25\xa8\x0f\xcc\xed\x31\x28\x14\xa4\x3d\x19\xc3\xcc\xd3\xae\xe4\x9a\x9c\x5b\x75\x54\xb9\xb1\x91\x98\xc9\x47\xec\xe7\x3a\xca\x18\xeb\x8e\x97\x3e\xaf\xf7\x78\xb2\x3d\x29\x1d\xcb\x5c\x3f\xe5\x8e\xd6\xdd\xcf\xe2\x79\xa5\xf9\xd3\xed\x65\xad\xbc\x4b\x48\x2e\xa4\xcd\x74\x2b\xa4\xbb\x68\xf0\x98\xd9\x56\xad\x8a\xe3\x87\x00\x61\x49\xef\x41\xe3\x7e\xcd\xff\x1e\xc2\xd1\xd6\xd7\xca\x15\x5b\x3b\x8e\xe3\xce\xb4\x1c\xfb\x1f\xbd\xc6\x65\x04\x64\x11\x51\x28\x33\x12\xcb\x25\xe5\x82\x78\xc9\x3a\x9a\x98\x0a\x64\x84\xd1\xa1\x85\x0a\x65\x18\xe3\xcf\x1f\xc9\x7f\xe7\x0c\xb2\x76\x19\xe8\x45\x89\xcc\xe3\x01\x17\x5c\x17\xab\x84\xda\x75\x85\xa1\x30\xec\xab\xbd\x00\xcd\x5b\x86\xba\xba\xb8\x08\xa3\x5e\xd2\x68\xc1\x05\x2b\x54\x3f\x42\xae\xe8\x80\xa6\x9c\x3c\xc7\xcc\x8d\x9f\xa6\xb9\xd0\x79\x70\x48\xd7\x74\xe0\x96\xf1\x62\x48\x8e\x9d\x07\xfc\x0c\x09\xec\xf3\x88\x2a\x06\x81\xe0\x02\x5d\x78\x5e\x90\x25\xa3\xa2\x59\x37\x55\xb1\x7d\x81\xc3\x3f\xd3\x24\x4f\x41\xbb\x70\x71\x7c\x83\x59\x6d\x9c\xaa\xcd\x4d\x0c\xd4\xbf\x03\x83\x5e\xbd\xfe\xc3\xf0\xe5\xf0\xe5\xf0\xd5\xd6\x68\x64\x27\x69\x70\xd5\x0a\xa3\x82\x73\x61\x07\x31\xcf\xfc\xdb\x2a\xc1\x8a\x15\xe3\x59\xa3\xdb\x5c\x43\xc9\xab\xe5\x14\x92\x60\xc1\x63\x8e\x15\x3c\x86\x15\x4c\x33\x5c\xb5\x81\xd0\xfe\xbe\xb9\x59\xfb\xfb\x2f\x0e\x3c\x4f\xd1\x06\xc9\x0c\x40\x59\x00\xf2\x00\xad\xec\xaf\xde\xfe\x38\x7c\xfd\xfd\x77\x43\xfb\xdf\xa3\x1f\x40\xca\xf3\xe7\x3a\xf2\xf7\x15\x94\xe8\x47\x02\x92\x7b\x41\xb6\x4c\x65\xfd\x29\xcb\x43\x74\x66\x82\x29\xb3\x96\x82\xd8\x23\x70\x3f\xfc\xe1\x0f\xdf\xb7\x24\xa9\x6d\xba\xa1\x3a\xdf\x26\x81\xf4\xc7\x9b\x4f\xbf\x46\x85\x29\xb0\x3b\x57\x54\x26\x34\x89\x20\xbf\x47\xa1\x03\x0d\x1b\x2b\x3e\xde\x7c\xaa\x66\x87\x2b\xeb\x2a\xb5\xd5\x54\x7a\x5c\x01\x25\x41\xb5\xd3\x84\xf5\x0c\x8d\xf7\x74\x67\xb6\x87\x67\x61\xa3\xa2\x1e\xec\x0d\xdc\x89\xf5\xe6\x6c\x4a\x21\x87\xac\xb2\x41\x49\xb8\xd6\xae\x38\x85\x20\xd4\x5f\x1f\x58\x9f\x8b\xf2\x2c\x36\xce\xbb\x89\x90\x16\x95\x1e\x6a\xc1\xe3\x7e\x8c\x37\x60\x40\xb9\x60\xab\x63\x2a\x40\x1c\xa6\xa1\x95\xba\x1c\x6e\x11\x52\x90\xe7\x1c\xfc\x59\x9d\xb0\x56\xea\x9e\x3e\x1e\x5f\xff\x9f\x4f\x67\x57\xc7\xa7\x67\x44\xd3\x6c\xce\x74\xc0\xb9\xb8\xe3\x84\x0a\x59\xf5\x37\xcb\x96\x68\xf3\x24\xc2\x22\xbc\xe3\x2e\x13\x26\x5a\xc1\x59\x15\xe7\x63\x00\xdc\x64\x23\xc1\x50\x1c\x0a\x49\x7c\x10\x41\x62\x38\xe0\x22\x56\xee\xe2\xf8\xc6\xda\x23\xc0\xb7\xc0\x57\x1e\x85\xad\xb4\x0b\xba\xe2\x32\x2b\xf2\xa6\x5a\x37\x67\x85\x4e\x33\x8d\x11\xfd\x4f\x9b\x7f\x4f\x30\x9d\x70\xd1\x62\x74\x6a\x83\x37\xc4\x8b\x99\xe5\x5e\xb1\x79\x9f\x74\x3d\x97\xd5\xf6\xee\xa1\xf1\x73\x81\x65\xf8\x0b\xc6\x07\x78\xee\xaf\xcd\x6f\xee\x94\x25\x52\xcc\xb1\x3a\xee\xc8\xdc\x3e\xf0\xe9\x1b\xd8\x81\x50\x21\x78\x58\x7a\x23\xc5\x2c\x4d\xe4\x7a\xc9\x84\x6e\xe6\x37\x5c\xc0\x55\xe1\xc3\x12\x43\xca\x9b\x85\xbc\x2b\x93\x0e\xe3\xe4\xcf\x31\x73\x66\xa9\xd1\x5c\xca\x98\x25\xc1\x91\x91\x2f\x41\x31\x2c\x9a\xcd\x89\xe5\x05\x3c\xa7\x2f\x73\x23\x61\xec\x48\x2e\xd3\xdc\x16\xa4\x79\x61\x8b\x2f\xe7\x61\xaf\xc3\x52\x44\xfe\x2b\xca\x46\x7f\x2b\x4f\xe5\xab\x85\x01\xb2\x36\xde\x66\x20\x6f\x75\xae\x33\x29\x86\xe6\xdb\xe0\x6a\xed\x52\xb0\x26\x4e\xf9\xe8\x9d\x2d\x53\xbd\xde\x96\x15\xc1\xb0\x4f\xa8\x49\x41\xf5\xa2\xa7\x34\x39\x0e\x74\xf2\x43\x4a\xa6\x6b\x57\x79\x1f\xaa\xf2\x2f\x73\xc1\x23\x1a\x2e\xd1\x63\x13\xe1\xe1\x13\x8e\x91\x8c\x2e\xe5\x9c\xcb\x51\x7c\x80\xa5\x14\x8e\x3d\xf5\x7d\x42\xd7\x2c\xeb\x97\xd1\xe6\x61\x50\xc9\xe4\x92\xe9\x05\xcb\xd5\x07\xf9\x91\xe9\x8c\x47\x7d\xeb\xcc\xec\x8f\x1b\xbb\x3a\xbd\x80\x22\x1f\xa4\x61\x8e\xc1\x14\xbc\xc4\x26\x61\x76\x2d\x49\x30\xc2\xcc\xb9\xd7\x1a\x5c\x2a\xc7\x77\xd5\xc2\x20\xaa\xb3\xcc\x7d\x73\x80\x14\x50\xb1\xb0\x47\xb4\xcb\xb5\x87\x9c\x01\x2a\x8a\x55\x2d\x3b\xb4\x5d\x94\x4d\xfb\x86\xb1\x2d\x71\x1e\x35\x3c\xb7\xde\x8a\x30\xa1\xdc\x23\x0b\xf9\x95\xc0\x7f\x30\xe8\x6b\x80\x77\x8a\xe5\x1a\xfc\x5a\x60\x6f\xe5\x26\x2e\x9c\xe1\xba\x28\xc1\x65\xb6\xf4\xf8\x00\x91\x8d\x3d\x36\x84\x7b\x74\x6c\xf0\x27\xa9\x0a\x99\x00\x8d\xe1\x2e\xdf\x65\xd9\x34\x48\x9a\xec\x01\xdb\x6d\xba\xec\xc1\x5c\xc4\x40\xab\xcb\xdd\xb1\xc7\xdd\x1e\xbb\xcc\x5e\x72\xce\xc6\xe6\x7c\x81\xc7\x85\xcc\x3f\xf9\x06\x7f\x7c\xf9\x63\x8b\xf8\xd6\xc0\xec\x94\x1b\x1c\xa3\x1d\xec\xc1\x88\x1a\xec\x5f\x12\x0a\xe7\x63\xb7\xa3\x12\x2d\x37\xe8\x0b\xcf\xd8\x87\x9c\x66\xf1\x83\x4f\xa1\x61\x84\xf2\x1c\x8a\x32\x3e\x6d\xb8\xf6\xd0\x93\x08\x8b\x84\x78\x38\x0f\x3c\x89\xd0\x90\xee\x70\x9e\xfc\x24\x32\xb6\x94\x2b\xe6\xf2\x34\x41\xa6\xaf\x4e\xa1\xef\x4b\x35\xa0\xd3\xd6\x3d\x5c\xb1\x6a\xaa\x2e\x57\x47\x68\xc5\x9a\xfc\xc9\xa6\x8c\xf9\xc9\xbf\x0a\xce\x63\x68\x63\x25\x51\xa2\x73\xb9\xe0\x30\xad\x43\xc1\x60\x78\x0e\x01\x4d\x59\x23\xc0\xaf\x89\xc6\x71\x3d\x85\x98\x8b\x3d\x73\xe5\xc8\xbc\xd4\x73\x36\xad\x14\xa3\xe1\x41\xef\x18\xae\xc5\xee\xd7\x2d\x26\x59\xdb\xa4\x77\x76\x86\xad\xcf\xc0\xa6\xe5\xea\xed\x48\x70\x55\xef\x51\x89\xc5\x30\x7f\x6f\xf8\x0d\x37\xe6\x2c\xb1\x0e\x97\x3a\x57\xa5\xff\x95\xe1\xb8\x21\x98\x1c\xdc\xd5\x2a\xde\x6a\x1f\x2d\x0f\x2f\xa4\x18\xfc\x9d\x65\x41\xc5\x12\xf7\xb4\x8f\x9e\x60\xa0\xaa\x26\xc7\xad\x0d\xd6\x05\x9c\x6e\x6e\xce\xfb\x83\xe8\xe6\xe6\xdc\xf7\xdf\x1b\x68\x89\x39\x77\x9d\x9f\x3f\xc8\xa0\x48\xaa\x07\x77\x0d\xc5\xae\x2d\x7c\x2c\x14\xeb\x49\x71\xb7\xdd\x86\x41\x92\x6d\x5d\x47\xae\x02\x9d\x1e\xe1\x2a\xee\xd5\xa0\xd8\xd6\x6d\x84\x2c\x68\x58\xdb\xff\x50\xb7\x11\x4c\x1f\xe9\x3c\x44\xda\x05\x82\x87\x82\x1b\xb3\x17\xf6\x83\xf2\xb5\x33\xd6\xfa\x11\xec\x99\x33\x23\xce\x19\xfa\xdd\xb9\x4a\xba\x61\xfc\x2f\x92\xdf\x0f\xc9\x80\x7c\xb1\x0a\xbb\xd1\x58\x1d\xa1\x1a\x2c\x98\x57\x16\xa3\x4c\xf3\x50\xb0\x23\x29\x68\xd7\xc0\xc2\x74\x34\x3e\xfe\x58\xf5\xa3\x19\xc0\xd0\xe6\x7b\x38\xcb\xca\x88\xae\xfb\x83\x40\xb7\x16\x91\x8b\x5d\xef\x02\xe0\x55\xbd\x03\x92\xcb\x4a\x66\x1d\xac\xad\x20\x85\x72\x8a\xc0\xb0\x6a\xc8\x2a\xe0\x10\x39\x34\xd2\x9e\xeb\x92\x8b\x87\x57\x27\x17\x5e\xa9\xa8\x81\x95\x46\xa1\xf2\xa9\x14\x49\x73\xa2\x83\x26\x32\x6c\xa6\x02\xc7\xc9\x26\xf5\x5a\x35\xfb\x7a\x91\x05\x1b\xf4\x0f\x74\x85\x2a\xa7\xab\xea\x28\x6a\x58\x64\x8d\x6f\xa9\x35\xe7\xaa\x05\xd2\xc4\x3a\x2b\x79\xdb\x46\x2b\xcf\x8a\x62\xfe\xf0\x34\xcf\x52\x09\xc9\x0f\x6a\x13\x05\xc9\x56\x45\x37\xc7\x45\x8c\x75\x4c\x67\x75\xc8\xaa\x4a\x21\x41\xcb\x6f\xe7\xc1\x9c\xee\x1d\x81\xc8\x4b\x1a\x52\x40\x90\x3e\xa9\x6c\x96\x3c\xa4\xe8\xea\xd1\xb5\x25\xf6\x78\x60\x16\x14\xfc\x3a\x14\x7c\xd0\x16\x70\x5c\x43\x8e\x4e\x1e\xa9\x76\xe8\xfd\x4f\x38\xa8\x67\x69\x3a\xf4\x8a\xb6\x1d\xa3\xa0\x66\x38\xa6\x39\x6d\x76\x6f\x7d\x84\xc2\x2f\x40\xf0\xc4\x4b\xb4\x56\x96\x1c\x96\xb3\xed\x1f\x78\xc1\x69\x1b\x3f\x3e\x6d\x3c\x7b\x33\x22\xf5\xca\x8a\xd4\x8c\x4c\x3d\xba\x77\x04\xb3\x07\x51\xaa\x11\xa9\x1e\x11\xc7\x6e\x75\x68\xe7\x52\xa6\x63\xac\xb8\xd1\x47\x19\xfc\x05\xa5\x0f\xf4\x47\x03\xb3\xf3\xca\x40\x5a\x31\x50\x85\x96\x6c\xef\x81\x2b\xe3\xd1\xf6\x92\x25\x52\xa6\xca\xab\x91\x0e\x29\x54\x2a\x49\x66\xd0\x7f\x1b\xf3\x37\xdb\x54\xfc\x04\x62\xb2\xcd\x76\x1b\xbd\xba\x6c\xea\x6e\x4c\x30\x52\x64\x35\x3b\xbd\x38\xbe\xd9\xdf\x8f\xeb\x61\xe7\x9f\x04\xe4\x65\x29\x6b\x98\xbb\x4c\x2a\x7b\x41\x59\x89\x8b\xa2\xa4\x8c\x62\x58\x1a\xd0\x55\xbd\xc7\xed\x44\x52\x68\x2e\xf0\x0d\x99\xda\x24\x97\x95\xf2\x1d\xa1\x51\x1f\x92\x5c\x5b\xf1\x98\x45\x34\x3b\x8e\x22\x96\xd8\x57\xaf\xaf\x7c\x7b\xdd\xd8\xb5\x50\x88\x61\x79\x89\x25\xb0\x5c\x6e\xaa\x06\xc6\xac\x18\xe3\xd1\xba\x2f\x70\x3c\xed\x91\x47\xb8\xba\x9b\x4f\xa1\x5e\x8e\x9d\x26\x54\x48\xb1\x5e\x9a\xd7\xcd\xd2\x23\xeb\x73\x1b\x34\xe5\xa1\xdc\xec\x57\xe7\x87\xc2\x6a\x98\x6e\xdc\xe0\x1c\xaa\xeb\x87\x32\x9b\x0f\xc9\xb9\x9c\x2b\x72\x87\xf5\x3d\x0d\xfb\xae\xf3\xac\xa1\xb6\x90\x75\x42\xc5\x2a\xc7\xce\x18\xef\x45\x74\x43\x1e\x43\x0a\xf5\x66\xf8\x8c\x47\x54\xe8\x32\xfb\xe2\x2a\x4f\x04\xcb\x30\x25\x58\x30\x82\x72\x41\x15\x0a\xbb\x31\x57\x50\x54\xad\x74\xe4\x73\xee\xc5\x72\xe6\x36\x8f\xe5\x73\x72\xd5\x89\x91\x0f\x92\xf7\xab\xe7\x37\x12\x5c\x73\x9a\x34\xe5\x94\x6e\x3b\x44\xbf\x6b\xb5\xd2\xae\x2b\x75\x1d\x9b\x9f\xc2\x72\xff\x4c\x16\xfc\xf4\x92\xde\x32\xb4\xbd\x9b\x81\x6b\x4e\xa9\x5b\x33\xfb\xf5\xed\xf5\x94\xae\xea\x5b\xb3\xf2\x55\x65\x5b\x1b\xa2\x75\xb3\xe9\x0c\xf7\x14\x90\x16\x7f\x78\xfb\xdd\x83\x36\xd5\x54\x84\xa7\x6b\x63\xcd\xe5\x7b\x30\x2f\xa7\x57\xd4\x0b\x18\x75\x23\x41\x34\xc6\xe9\x6c\x14\x13\x72\xaa\x1b\xa4\xac\x73\x1e\x0d\x09\x19\xcd\x90\xb0\x94\xe9\x38\x13\x9a\x8b\x30\xb0\x30\xe0\x24\x5c\xa2\x08\x6f\x78\x69\x7e\xb2\xf9\x48\x35\xd6\xb3\x86\xd4\x83\xd3\x7c\xb6\x2d\x8b\x0f\x45\xbc\xfb\x12\xad\xcf\x3f\x9f\x1f\x5f\xf4\x8d\xca\x07\xef\xff\x26\xff\x03\x18\xa9\x1a\x99\x0e\x2c\x1f\x14\x13\xc0\x1f\xad\x10\x03\xce\xa6\x9b\x61\xfa\xa1\x41\x6b\xa1\xfb\xbf\x52\x9c\x3e\x40\xb0\x4f\xa0\x3e\x6c\xab\x35\x52\xdf\xdb\x3d\x82\x26\xbc\xcb\x22\x8e\xbf\x35\x68\xff\xd5\xf6\x41\xfb\x6e\x2b\x9f\x3b\x4b\x19\x14\x9b\xf9\xfc\xb6\x75\x3b\x6f\x9f\x6a\x3b\x6f\x7e\x7c\xe0\x76\x1e\x92\x3f\x0c\x3a\x7e\xbe\x18\x6d\xdb\xaf\xd0\xab\xf7\xbd\x50\x5f\x6a\x1d\x36\x43\x49\x8a\x16\x1e\x9f\x1a\x02\x63\x71\x79\x9e\x33\x11\xd1\x54\xe5\x89\x4b\x0f\xb8\xfa\xae\x70\xc9\xc1\xca\xf7\x02\xbf\x84\xca\x59\x09\x44\xa8\xc3\x45\x0b\xb9\x46\x91\x47\x73\x47\x75\x90\xf4\x40\xad\x3a\x50\x3e\xbf\x7d\x34\x58\xde\x06\xc0\xf2\x36\x04\x96\xb7\xbf\x36\x58\x7e\x92\x4a\x9f\x89\x28\x5b\xa7\xdb\xf0\xc2\x5f\x5a\xbb\xb7\x80\x2b\xc8\x8b\x49\xa5\x07\x5a\x0e\x6c\x2a\x21\x37\x98\x07\xd9\xc7\x1b\x88\x8b\xfd\x16\xf1\xa4\x17\xe1\xf4\x6c\x0d\xfb\xac\x74\xab\x69\x71\xc0\xa9\xc7\xba\xd3\x35\x04\x23\x15\xc4\xd5\xc3\x1b\x37\xa2\xbf\xb9\x62\x99\xc3\x87\x64\x02\x0a\x6f\x72\x1b\x8c\xaf\x75\x7c\xf0\x46\xdf\x76\x6e\x74\x3e\x58\xbd\x7d\xdc\x26\xff\xcc\x58\x7a\x9c\xf0\xd5\x16\xa7\x58\x74\x29\x31\xb4\x5c\xe7\xd8\xf0\xfd\x4a\x33\xa1\x4d\x33\xda\x58\x98\x2f\x45\x25\xf2\x35\xd3\x35\x3b\x8c\x17\x21\xfd\xe0\x4d\x9d\xc3\x0a\xb8\x98\xf7\xb2\xf1\x7f\x09\x76\xab\x32\xc9\x89\xfb\x09\x0d\xfe\x4d\x7e\x7f\xd3\x75\x0d\x41\x2b\x89\x1e\x5e\xfd\xf0\x7a\xfb\xe7\x2f\xbc\xa9\x6d\xd0\xb1\xd6\xb1\x6d\x63\xa1\x3d\xb9\x3a\xc9\x55\x84\xac\x6f\x6c\x7b\x7f\x85\x62\x63\x7d\xb8\xae\x2f\x5e\xe3\xea\x06\xcc\x17\x3e\xe3\xd5\x4a\x24\xbd\x5b\xd4\xc5\x78\x3d\x20\x5b\x92\xbf\xa3\x6d\x0e\x08\x19\xb0\x96\x5d\xbd\x7d\xb2\x5d\x3d\x06\x01\xaf\x50\xd9\x74\x95\x27\x6c\x9c\x71\x99\x71\xdd\x2d\x5b\x7f\x69\xe9\x5c\xdd\x71\xea\xbe\x6d\xac\x42\x50\xd2\x4c\xe8\x50\xd2\x1c\xa7\x05\xcb\xf2\x2a\x01\x09\xd7\xa3\x6e\xdf\xac\xb5\x60\xa1\xad\xec\x3a\x95\x72\x16\xae\xc1\x59\x75\x1c\x08\xf6\xda\x7c\xc0\x53\x19\x17\xd9\x84\x9b\xe8\xbe\xd5\xda\xe1\x50\xe8\xc5\x08\x2e\xe7\x42\x6a\xd4\x74\x01\x77\x2e\xca\x9a\x4f\x98\x94\xc2\xfa\x97\x87\x46\xf5\x42\x74\x9c\xdf\x32\xb8\x37\x2c\x18\xcf\x3c\xaf\x01\x3f\x57\x9c\xb5\xbd\xa1\x7b\x72\xd0\x02\xe3\x74\x96\xc7\x62\x3d\xd9\x3b\x28\x77\x96\xb1\xff\xce\x19\x04\xeb\xae\x6d\x28\xdf\x96\xbe\xfa\xf7\x71\xef\xec\x72\x81\x54\xd0\x3f\x9f\x8e\xab\x7a\x41\x83\x2d\x2a\xe7\x68\x3b\xc8\xb1\x6e\x59\x53\x1a\x7b\x5b\x07\x2a\x66\x62\xbd\x19\x49\xf8\x20\xad\xd4\x7d\x9c\x6e\x6b\x10\xff\xf9\x74\xfc\xb4\x99\xd3\x20\x2b\xf6\x83\x92\xa6\x59\x6b\x77\x68\xe0\xd2\x00\xfe\x6e\xfc\x9e\x2c\x69\x0a\xe1\x5f\x54\x6b\x1a\x2d\xb0\x1c\x25\x98\x87\xc2\x86\xf1\x9f\x4f\x83\x09\x15\x36\x53\xab\x6d\x6f\x16\x0f\xdb\x24\x36\xbf\x05\x4d\x68\xec\xbb\xb8\x2b\x2d\x33\x3a\x67\xee\x2b\xf4\x8c\x80\xd3\x72\xe5\xd3\x0c\x37\xe7\xcc\x3a\xb7\x5c\xc4\x47\x64\xb2\xe7\x8a\x0f\xa4\x49\x9e\xd1\xa4\xfc\xa6\x28\xa0\xa9\x8e\xc8\x5f\xff\x66\xbe\x01\xb7\x93\xf8\x33\xaa\x45\xed\xb7\x13\x31\x18\x0c\x26\xe2\x19\xb1\x66\x7c\x97\xfd\x47\xb3\x65\x9a\x50\xcd\xd4\xe1\x6d\x1c\x0f\xa2\x2c\x56\xc3\x35\x5d\x26\x13\x41\x53\x6e\x47\x38\x22\x34\xe5\xec\x5e\x33\x81\x09\x63\x6f\x7f\x50\x43\x2e\x0f\x57\xaf\x26\x02\xd7\x76\x92\x2b\x2d\x97\x57\x0c\xe9\xc2\x29\x9b\x71\xc1\x31\xa5\xa6\x8b\xcd\x82\xad\x40\x7e\x65\x1b\x76\x65\x65\x25\xb0\x37\x73\xa6\x86\x51\x16\x0f\x37\x94\xcf\x13\x61\xd8\x59\xe8\x3b\xcf\x64\x9e\x1e\x91\x86\x66\x38\x76\x15\x60\x1f\x60\x9e\x0b\x9c\x07\x1d\xb6\xf1\x67\xc3\x86\xfc\xb9\xa9\xc9\x79\x91\x41\xd7\x81\x39\xb8\x5e\x7b\x8e\x5c\x40\xb0\x53\xa8\x11\x4c\x96\x66\x0c\x4e\xff\x93\xb8\x15\xf2\x4e\xbc\xe7\x2c\x89\x95\x95\x88\xe0\xa0\x22\x69\xb0\xe5\x04\xb5\xf0\xe6\x9b\x95\x3b\x34\xf3\xc7\xc0\x82\xcc\x40\x1a\xe6\x8b\x16\x6c\x49\x8b\x6b\x2d\x53\x26\x8e\xc7\xa3\xcf\x6f\xae\xab\xdf\x37\x9a\x06\xbd\x23\xad\xa2\x72\x95\x2c\x98\x31\xad\x4a\xdd\x2f\x51\x6a\x97\xc6\x62\xbb\x8e\x22\xc9\x7f\xc6\x60\x9f\x42\x07\xf3\xa8\xca\x99\x91\x94\xf1\x42\x98\x3b\x9a\x99\x71\xbc\x4c\x9c\x2b\x96\x61\x2a\xfb\xb9\xe0\x7f\x2f\x06\x2f\x82\x29\x01\x37\x37\x98\xc5\x42\x93\xea\x65\x76\x5d\xd2\xb5\x35\x99\x91\x5c\x78\x03\x62\x86\xb5\x21\xf9\x28\x21\x1c\x62\x26\x8f\xc8\x42\xeb\x54\x1d\x1d\x1e\xce\xb9\x76\xd8\x6c\xf5\xa4\x7a\x7d\x08\x4f\x29\x9f\xe6\x5a\x66\xea\x30\x66\x2b\x96\x1c\x2a\x3e\x1f\xd0\x2c\x5a\x70\xcd\x22\x9d\x67\xec\x90\xa6\x7c\x00\x6b\x07\x7b\xa2\x1a\x2e\xe3\x67\x99\x45\xff\xff\x8f\xbd\x7f\x6f\x8e\x1b\x37\x16\x87\xe1\xff\xdf\x4f\x81\xc8\xa7\xca\xf6\xef\xd5\x8c\xbc\x97\xf8\xe4\x28\x95\x7a\x4a\x96\xe4\xcd\x54\x6c\x79\x4a\x92\x77\x93\xda\xd9\x9f\x0b\x43\x62\x66\xf0\x88\x03\x30\x04\x28\x69\xb2\xc9\x77\x7f\x0a\xdd\x00\x09\x92\xe0\x65\x64\xc9\xbb\x7b\x96\xac\x4a\xd6\x1a\x82\x40\xa3\xd1\x68\x34\xfa\xaa\x9e\x87\xd8\x44\x93\x81\x00\x95\x76\x2d\x83\xa1\x51\x8c\xa9\xc3\x8f\x6d\xac\x44\x81\x6d\x97\x60\xf5\xf2\xfc\xea\x9a\xb8\xd1\x83\xd9\xc4\x10\xf9\xe5\x97\xaa\x5c\x07\x83\x34\x2e\x56\xcc\xe6\x8f\x81\xd8\x45\xed\x17\x82\x86\x54\x62\xe0\xb7\x59\xef\x55\xe5\xcb\x2d\x38\xf1\xe0\x31\x8c\x51\x2e\xa7\x20\x3d\x40\x9a\xc7\x34\xa6\x9a\xc5\x10\xf8\x72\x4a\xb7\x2c\x39\xa5\x8a\x3d\xf9\x2a\x18\x6c\xab\x89\xc1\xed\xd0\x75\xa8\xb0\xa8\x7a\xf3\xa6\xc5\xb9\xe0\x48\xe5\xd3\x61\x88\xa7\x69\x9a\xec\x3e\x88\xb7\x32\xbb\xa3\x59\xaf\x94\x71\x52\x69\x8d\xce\x26\xe0\x45\xa0\x25\xf6\x84\x4e\x27\x65\x21\x69\xee\xaa\x1a\x07\xef\xbd\x20\x91\x40\x4f\x2e\x5d\xc9\x9e\x22\x45\x2c\x2f\xa4\xbe\x36\x62\x4c\xaf\x23\x4f\xd1\xd2\x83\xba\x10\x45\xad\xa9\x1a\xe2\x81\xca\x64\x35\x30\x8f\xb0\x74\xe4\x4f\xcd\xb1\x8a\xb5\xe1\x07\x99\xcc\xd7\x9b\xc2\xd7\x8e\x80\xb5\xe3\x39\x58\xa3\x05\x7a\x1e\x13\x90\xba\xb8\x58\x07\xcd\xda\x60\xc8\xa6\xca\xba\x8f\x44\xae\xb8\x2c\xda\x5c\xae\x33\x97\x46\x3d\x84\x61\x42\x5b\xd2\x05\x43\xca\x8e\xd8\x19\xe4\x8c\x2c\x5a\x82\x16\x04\x0c\x8b\x67\x59\x9c\x58\x11\xbc\xe5\x82\x5f\x1b\x1f\xb2\xc0\x31\xa8\x53\x66\x9d\x86\x97\x8c\x58\x31\x73\xdf\xb5\xc5\xa2\xd8\x7d\xeb\x7a\x0d\x29\xbd\x63\xb0\xb6\x5a\xd7\x18\x5b\x4d\xdb\x0a\xad\xe4\x9c\x46\x1b\x8c\x20\xb7\x19\x04\xc3\xc2\xa1\xfb\x1a\xe7\x6d\x43\xc3\xa2\x8c\x6b\x96\x71\x8a\xe9\xdb\xbd\x50\x7a\xc8\x6f\x1f\xb9\x2b\x08\x90\xfe\x5e\xae\x31\x95\x39\x2c\x0e\x4e\x88\xb9\x0b\x92\x52\xa1\xeb\xbb\xfa\x84\x40\x09\xca\xa1\xa4\x28\x3c\x4f\xde\x48\xbd\xb1\x09\x04\x65\x36\x41\xab\x51\x61\xca\x9e\xdb\xf5\x12\xfe\x6f\x99\x6c\xcd\x59\x03\xd2\x28\xcb\x98\x88\x1c\xe5\x4d\xbc\x72\x49\x32\xd7\x98\x92\xcb\xa5\x53\xc2\x26\xe6\xae\xb1\x94\x50\x5e\x10\xd6\xa3\x05\x60\x11\x17\xd5\xcf\x3d\xc4\x83\x85\x6c\xb1\x10\xb8\x78\xae\x12\x48\x1d\x13\x2d\x3e\xaa\x66\x31\x05\x5b\x03\x70\x56\x24\x38\xb4\xd7\x2f\x17\x59\xbf\x58\x2c\x0e\x2e\xa4\x36\xff\x99\x92\x93\x24\xb1\x59\x11\xfc\xde\xc3\x3d\x9b\xaf\x21\x4a\x19\x08\xaa\xa8\x2d\x47\x35\x57\x50\x50\x0a\x73\x91\xd9\xa9\x68\x89\x7d\x4e\xc9\x89\x2d\x85\xd0\x82\x5d\x20\x4e\x2a\x1c\x81\xda\x04\x02\x76\xd2\x06\x45\x30\x1d\xf3\x87\xe7\x49\x40\xb1\xf3\x76\xbc\x02\xf6\xc3\x20\x3a\x1e\x52\x82\xd8\x52\x7e\xbf\xcf\x83\x8b\xb6\x65\xcc\xc4\xa7\xbf\x26\x49\xcc\x94\xb6\xe5\xfe\x5a\x7b\xa9\x79\x64\x16\x1f\x14\x1b\x3a\xb0\x7c\xd6\x7f\xc9\x6c\xcc\xb6\x6e\x41\x89\xe2\x8d\x4f\xcc\x29\xad\xc3\xd1\x8a\x83\x90\x41\x6c\x89\x16\x28\x10\x76\x65\x37\x5f\x47\xdb\x06\x1b\xb8\xa8\x7f\x6c\xe3\xd5\xa5\xb3\x15\xaf\x8c\x7c\xde\x9a\x46\xa3\x7c\x0a\xc4\xd0\x82\x09\x78\xf9\x0e\x6c\x4e\xa9\xa2\xc4\xb3\xc1\x94\xcc\xf8\xda\xe0\xa1\x8d\x03\xb8\x07\xe4\xaf\x17\x86\x84\xc0\x2e\x8d\x9c\x4a\xbf\xf4\x9c\x9c\xed\x16\x81\x5c\x30\x30\x76\xf8\xf0\x08\xa0\xcc\xc6\x80\x2c\x99\x3b\x88\x6d\x44\x38\x10\x72\x03\x37\xdd\x9d\x22\x97\xc4\x2b\x7d\x81\x02\x0a\x45\x01\x57\x90\x61\xc3\xe5\x97\xa4\x5b\x66\xd3\x62\xe8\x16\xf5\x4e\xf9\x40\x0a\xac\x90\x5f\xb7\xf3\x95\xf3\x04\x88\xa5\xcf\x81\x7b\x90\xea\xa6\xed\xf0\xe5\x0b\x20\xc8\x07\xdf\xca\x8c\x54\xae\x81\x87\xad\x67\x80\x7b\xb0\x9e\x5f\x80\xa4\xb6\x36\x85\x97\x8b\xd3\xf3\x89\x2d\xe1\x5b\xde\xbb\x60\xa0\x74\x4b\xd0\xf3\xaf\x15\x27\xdc\xc3\x6f\xb1\xc2\x3d\x6b\x86\x1b\xb9\x32\xcf\xd6\xe9\x3f\xc7\x1b\xed\x8b\x97\xc1\x1a\x2d\xe5\xf3\x65\x10\x50\xb9\xa8\x5f\x99\x73\x3b\x23\x68\xc8\x44\x7c\xc0\x34\xba\x3b\x35\x73\x0c\xdc\xf7\x0f\xc1\x83\xa6\x7b\x2d\x7b\xa0\xf5\xa7\xe8\x25\x70\x0b\x55\x66\x89\x32\xa9\x40\xe6\x1b\xba\x65\x5b\x0e\x8e\x62\xec\xde\x03\x80\x60\x1e\x85\x2e\x9e\x5a\xcf\x4c\xc1\x6c\xc9\xe6\x20\x63\x34\x17\x4d\x9d\xf1\x08\xeb\xa2\x74\x4f\xc3\x1d\x81\x45\x6a\xbb\x1d\x46\x1e\x04\xf9\x62\xc1\xfa\x7a\xb0\x5d\xe5\x8b\x7e\x2d\x43\xc8\x6f\x22\x8a\xdc\xd8\x98\x96\x4f\xe5\x4b\x33\xfd\xd6\x53\x87\x74\xca\x91\xde\xb8\x83\x30\xdd\xe9\x8a\x5c\x3e\x42\xea\x8b\xfd\xd6\x04\x3f\x28\x92\x52\x54\xc5\x2f\x37\x63\xd3\xa4\xe7\x78\x31\xeb\xf8\xab\xc3\x45\x5b\x7d\xf1\xf2\xa9\x23\xa3\xa8\x2b\xde\x81\x8d\x79\x5b\xb0\x5e\xf9\x20\x3a\xc8\x15\xd4\x4e\x04\x2a\x55\x72\x5b\x96\xd9\x56\x18\x79\x69\x2b\x57\x43\x22\xe5\x5d\x7b\xdd\xf2\xf2\xa9\x15\x41\xd5\xd5\x4c\xee\x45\x0d\x65\x94\xa8\x2c\x23\x37\x17\x94\x5e\xae\x08\x67\x98\x35\x86\x5c\x9f\xce\x17\x07\x58\x7a\xf6\xe3\xd9\xbc\xa5\xd4\xa9\x7b\x86\xac\x6a\x7b\x16\xd2\xf2\x19\x90\x8f\xb4\xd9\xb8\x9f\x50\xfa\x73\x94\x96\xcf\xfe\xd9\x4a\xcb\x67\x28\x41\xee\x2f\x5c\x5e\x94\x1f\xf5\x90\xe5\x30\xf9\xca\x52\x26\xd8\x58\x8b\x8e\x91\x0b\xa3\x95\x69\xa9\x13\xa6\x79\x91\x97\x14\xc7\xea\xee\xb3\x90\x96\x3a\x49\x65\xd8\x9a\xa5\xfb\x6d\xd9\xc5\x41\xb1\x63\xfb\x8e\x95\xfe\xc3\x76\xc0\xb1\x02\xd6\x25\x97\x06\xeb\x85\x77\x09\x09\xa4\x8a\xaa\x4f\xcb\x4b\xef\xca\x14\xb1\x99\xf9\xfd\x6c\xc1\x47\x4e\xa1\x7c\x5d\x64\xdc\xee\xee\x95\xfb\xd7\x77\xbb\x75\xc0\x86\x85\x58\x56\x0e\x03\x56\x3b\xdb\x11\x70\x54\x3e\x2e\x3d\x14\x0a\x70\x43\x39\x58\x2f\x07\xb0\x39\xa7\xf6\xe1\x60\x3d\x73\x2f\xd9\x5b\x8d\x83\x2d\x90\x87\x2d\x2c\x17\x5b\x20\x1f\x5b\x18\x4e\xd6\x29\xf3\x8c\xbc\x0c\x9e\x41\xbc\x4c\x3d\xe0\x96\xdc\x7f\x39\xee\xd4\xf4\x95\x4f\xf0\x72\x4c\x5e\x28\xc6\x9c\x8a\x0c\x58\x19\xd6\x23\x52\x3b\xa1\xe9\x7d\xd8\x75\xb2\x7c\x16\x8b\xce\xbb\xb5\x95\x21\xdb\xee\xce\xdd\x7d\x3b\xcd\x98\x77\xb5\x96\x59\xf3\xca\x6c\xb6\xdb\x85\xd4\x68\xd7\x3e\x6e\x29\xc0\xe4\x21\xc1\xc6\x2c\x3a\x73\x56\xcf\xa9\x80\xe8\xf1\x4e\x93\xee\xde\x97\x2c\x91\x77\x2f\x0f\xab\x20\x7b\xc8\x46\xac\x12\xae\x15\x4b\x8a\x74\xf1\x3d\x78\x40\x65\x98\xc4\x02\xc3\x8c\xe8\x3b\x09\xb4\x06\x31\xaf\xee\x1d\x32\x08\x73\x08\xed\xca\x1a\x50\x3d\x6b\xf7\x41\xb8\xd9\x2b\x0b\x6f\xa9\x7e\x65\xde\x2d\xc9\xd6\x91\x04\xd5\x82\x6d\xdf\x7f\x26\xdc\x6d\x64\x62\x17\xe9\x18\x96\x68\xb1\x28\x0f\xe4\xbf\x00\x77\xf9\xc3\x86\xaa\x17\xdb\xdd\xa7\x84\x2e\x59\xf2\x12\xf8\x8e\x65\xf2\x7d\xdb\xd9\x0b\xb4\x33\xf3\x06\x22\x43\xf8\xd0\x35\x61\x62\x9d\x6f\x12\x16\x9b\x71\x07\xd2\x9b\x1f\xb8\xe7\xd2\x96\x13\x00\x0e\xc0\x75\x90\xa2\x12\xd5\x4e\x69\x30\x61\xe0\x94\x5b\x67\xdc\x9c\x14\xd4\xba\x6f\x49\x80\x5e\x3e\xdd\xf3\x2d\xa6\xd4\x37\x9d\xbe\x4d\x2e\x80\xf2\xd8\x6a\xc5\x22\x9b\x00\xc9\xaa\x12\x12\x60\xad\x36\x97\x09\xb8\x4a\x14\x33\xe9\x07\x5e\x48\x31\x71\xc1\xba\x68\xa9\xc5\xa4\x04\x56\x2f\x02\x61\xf4\xbe\x92\x02\xe2\xe1\xb0\xf7\x01\x4a\xbb\x26\x6a\xca\x92\xc4\x8f\x71\x89\xb7\xc1\xa3\x27\x51\x24\x73\xb1\x8f\xec\x75\x55\xfd\xf0\x8b\xc9\x60\x35\xb6\xdc\xdd\x67\x40\xe5\x49\x49\x2a\xe3\x22\x87\x32\x08\x74\x05\x8b\xb6\xc8\xe8\x61\xbd\x38\xe3\x4e\x6a\x1b\xa4\x74\x26\xa4\xea\x5f\xd2\xfe\x54\xef\x04\x50\x2c\xe0\xb3\xd1\x4d\x1e\x82\xf2\xfe\x2e\xdb\x34\xcd\x01\xb4\x0f\xc2\x36\x29\x31\x6e\xb8\xb1\xb2\xce\xe7\xbc\x50\x55\x1a\x01\xb8\x67\xe7\x0f\x13\xee\xc8\x1e\x2a\x08\x32\x54\x52\x22\x43\xa5\x25\xd2\xdc\x5f\xbd\xf2\xd2\xff\xde\x95\xae\xdc\x95\x4a\xad\x1b\xf2\x7d\x87\xcf\x29\x99\xf5\xdc\x3c\xcc\x53\x9a\x21\xc0\xba\x70\xe5\x5b\x15\xca\xbb\x88\xb6\xc5\x10\x5b\xed\xf1\xd5\xe7\xe4\xe2\xec\x79\xd0\x36\x5e\x7d\xf6\xd3\x68\xb5\xa5\x21\x70\x8f\xcb\xdb\xb9\x9f\xd4\x8d\xdf\x7c\xb6\xd4\x8d\x5f\xa2\x81\xb8\xe0\x97\x5e\x19\x6d\x37\x10\xd4\x61\x2a\xf0\x1a\xf4\x96\xf0\x3a\xed\x15\xba\xeb\xe4\x35\x54\xea\x0e\x98\xb3\x1c\xfe\x5e\xa8\x97\x75\xf1\xdb\x96\xf0\x16\x5d\x56\x47\x02\xba\xb2\x23\x80\x0a\xd2\xc4\x3a\x48\x9e\x2b\x82\xe1\xd1\x70\x63\x76\xf8\x8e\x0a\x87\xa5\x02\x19\x7d\xb8\xa8\x5a\xb6\xcc\xce\x71\xc4\x7a\xe8\x8b\xee\x87\x4d\x8b\x42\x0f\x9a\x2f\x98\x11\x7f\x9d\xb2\x57\x66\xf5\xb3\x1b\x41\x9f\xdb\x80\xff\xb8\xd0\x84\xf6\x58\x2b\x0d\x3d\x99\x05\xf4\xe7\x88\x7a\xa3\x02\x0b\x52\x38\x47\x02\xeb\xd8\xd1\x2d\xb2\xec\x75\x6c\xee\x7f\x6a\x86\xa2\x98\xc0\x24\x5f\xd2\x71\xff\xd6\xb7\x73\xf3\x6c\xf0\x8f\xc4\x04\x3c\xfb\xcc\x03\x04\x02\xf3\x59\x60\x7e\xf8\x7b\x7b\x1d\x8b\xea\x83\x5c\xd6\xce\x10\x76\x72\xc2\x56\x1a\xed\x58\xa5\x0b\x13\xee\x9e\x01\x4a\x1a\xe2\x6f\xc4\xc2\xe3\xe8\xb9\x2a\x21\xfb\xa2\x1c\xb4\xbf\xcd\x46\xeb\x74\x98\x3f\xc3\x5f\xaf\xaf\xe7\xa5\xbd\xbe\xd5\x89\xc1\x50\x89\x69\xda\x0e\xba\xf3\x72\xfc\x3c\xff\x85\x2d\xd3\x1b\x19\xef\x71\x32\xbc\xc7\x0f\x1e\x57\x6a\xc7\x29\x23\x53\xc7\x79\x7b\x4e\x9c\xa6\x4f\xac\x26\x6a\xe8\xb1\xbf\x53\x88\xea\x8a\xb1\x17\x07\xed\x0b\x36\x5d\x4f\xc9\x77\xe7\xd7\x87\x64\xfe\xf1\xfa\x90\x30\x1d\x4d\x5f\x92\xf7\x79\xa2\x79\xda\x67\xe7\xb0\x28\x82\x73\xff\xc3\xe5\x73\x73\x0d\x5b\x83\x1f\xe1\xaf\xcb\x6e\x95\x52\xbd\xd9\x63\x1d\x9f\xcf\x4d\xfb\xa7\x58\xc6\xbe\x15\xec\xe7\x28\xfe\x0a\x02\x98\xd3\x62\xa9\x70\x9a\x6e\x2d\x86\x2e\x06\x21\x6c\xba\x3e\x26\x13\xc2\xee\x69\xa4\x8f\xc9\xd1\x4a\x4a\x32\xb1\x4e\x62\xc7\xe4\x68\x49\x33\x72\xf1\xe1\xfa\xfc\x18\x1d\xd0\x98\xd0\xd9\x8e\x6c\xfb\xc4\xf3\x0f\x17\xef\xfe\x61\x39\xe7\x8e\x30\x8e\x25\x4d\xc9\xe2\x00\x06\x41\x2d\xb2\xf9\x13\x47\x71\xba\x8e\x69\x5b\xd9\xb5\xf2\xb9\xa5\x09\x8f\x69\xa1\xec\xc3\x82\xac\x46\x7c\xe2\x3a\x94\xec\xaf\x7c\x86\xd0\x5c\x95\x08\x0c\x8a\xa1\xcc\x5a\xa5\xc0\x07\x20\xde\x15\x5b\x1b\x76\x56\xcd\x34\x78\x6e\x2f\x99\x43\x84\xd5\x23\xae\x64\xb6\x3d\x76\x68\x5f\xe4\xaf\x5e\x7d\x13\x99\x8e\xe1\x5f\xec\xd8\xa5\x66\x1d\xa2\xf6\x42\x52\x03\xa8\xa0\x3b\xc3\x30\xb2\x62\x09\xcb\xae\x27\x16\xdf\x9f\x35\x02\xf6\xd1\xe3\x6a\x32\x58\xe8\x20\x16\x01\x8f\x7b\x8d\x4c\xdb\x4a\x03\x3c\xbc\xd3\x61\xd7\x89\x41\x0c\xa9\xbf\x2b\x1e\x6d\x07\x9e\x99\xb3\xd3\xf7\xf3\xa1\x1e\x20\xc0\x8c\xda\x61\xf7\xb9\x14\x75\x54\x1f\x01\xb4\x36\x3b\x4d\x0c\x3c\x0a\x86\x2c\x8a\x6a\x82\x65\xad\xe3\x7e\xe5\x15\x39\xae\xc8\xb4\x7c\x55\xb5\x4f\x21\xd0\xdc\x4b\x7b\x66\xc6\xe9\x12\x6d\xc1\x9e\x6e\x1a\xdd\xbe\xee\xd0\x53\x0e\xa2\x44\x33\xb5\x3d\xce\x79\x90\x4c\xa4\xf0\xb1\x04\x48\x89\xa0\xc8\xc5\x3e\x97\x35\x48\x17\x6f\x10\x8c\xf1\x22\xe0\xa2\x0a\x69\x9c\x7d\x5c\x95\xb1\x98\x94\x68\x16\x6d\x04\x8f\x68\x8f\x57\x12\xa8\x45\x51\xfd\xcf\xb7\xa9\x54\xa5\x23\x1d\x96\xf9\x7d\xae\xca\x1a\x3d\x2b\x9e\xb1\x3b\x9a\x84\xab\x8d\x94\x0f\x72\x0b\xab\x94\xc5\x4a\x3f\x92\x30\xb1\x92\x18\xc9\x62\x5d\xf4\xfa\xb7\x46\xaf\x0d\x0f\x9a\x7d\xfe\x62\x98\x6e\xa6\xc4\xcf\x69\xd6\x67\x02\x2b\x4a\xb7\xfd\x09\xbd\xbc\x61\x86\xd0\xd7\x79\xb4\x91\xe4\xd2\x86\xb0\xbe\xe0\x53\x36\x25\x29\x17\x6b\xd5\x6d\x03\x1b\x34\xdf\x01\xcc\x20\x0d\x07\x82\xb5\x20\x64\x36\x77\x01\x61\x9f\xed\x18\x56\x51\x6e\xa1\x3c\xee\x63\x79\xee\x2c\x63\xad\x58\x18\x92\xb9\x32\x1c\xd2\xd3\x32\x39\x57\x87\xcd\x73\xeb\x2d\x13\x8d\x7a\x69\x88\x8b\x2a\xdb\xdd\x93\xfb\x2c\xa6\x51\xc6\x5e\x77\x1f\x72\x25\x84\xf3\xa1\xa7\xe2\xd0\x63\xa9\x1a\x91\x54\xc2\x63\x43\xd1\xd0\x6a\x77\xc3\x6c\xf0\x3c\x49\x29\xcf\xda\x4b\x0f\x96\x8f\xb9\xb2\xda\xda\xf8\x3e\x4e\xe9\x52\xe6\x7a\xc0\x41\xf2\x58\x37\x47\x21\xb5\xd9\x7d\xc3\x28\xe3\x02\x1b\xf7\x78\xf4\x40\x93\x6e\xcf\xba\xf1\xc0\x18\x0f\x8c\xdf\xf6\x81\x21\xa4\x76\x62\x55\x2b\x5a\xba\xbd\x6e\x06\xfa\xdb\x0c\xf3\xb4\x69\x38\x84\x3a\x91\xaf\xc7\x27\xd4\x36\x6b\x47\x58\xcf\x3e\x1e\xe0\xda\xf3\x30\xa7\x9e\xf4\xd7\x8a\xdc\xc5\x81\x8f\xdb\x47\x3c\xfb\x1b\x86\x2d\xd0\xf0\xfa\x92\x80\xc3\xc9\x14\xa8\x9e\x67\x5d\x9a\x79\xeb\x9d\x6b\xd7\xf9\x1c\x42\x8d\x2e\x21\x52\xce\x45\x7d\xa1\xda\xfc\xc5\x92\x45\x34\x57\xd6\x27\xae\xc7\x94\x50\x80\x18\xb1\x0c\xfa\x28\xfc\xea\x5e\xa2\x2a\xde\x15\xf2\xa8\x78\x09\xf6\x1d\xb1\xe8\x3e\x78\xec\x7b\xc0\x1d\xfa\xfe\x6f\xf8\x07\xdc\x54\x2a\x7f\xdd\xbe\x2e\xff\xbe\x3a\xbd\xc6\xb7\xed\xc3\xd8\x1e\xdf\x71\xcd\x9c\x93\x1d\xd4\x51\x05\x02\x71\x46\x59\xac\x35\xf9\xd5\xe4\xeb\x3f\xfe\xb1\x43\xe5\xff\x74\x64\xaf\xda\x6a\x4a\xe0\x53\x35\xb4\x16\x35\x25\x06\x44\xa5\xb5\x94\xeb\xf5\x47\x1d\x03\xd2\xc6\x80\xb4\x01\x66\xcf\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\xb6\x19\x8f\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\xb5\xcd\x64\xe4\x65\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\x1a\x3e\x63\x40\xda\x18\x90\x56\x7f\xc6\x80\xb4\x31\x20\xad\x78\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x0b\x76\x3a\x06\xa4\x79\xb8\x18\x03\xd2\xc6\x80\xb4\x31\x20\xad\xfa\x7c\xc9\x80\xb4\x9e\x62\xe7\x98\xc5\x37\xf4\xee\xc1\x65\xcd\xed\xde\x78\x40\xfa\xee\xea\xae\x1a\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\x63\xfe\xee\x30\x78\x63\xfe\xee\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x2a\x9f\xd1\x5d\xaa\x7c\x46\x77\xa9\xd1\x5d\xea\x57\xe5\x62\x30\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x15\x6c\xfc\x1b\xe3\x65\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x05\x9e\xd1\x5d\x6a\x74\x97\x2a\x9e\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x82\x9d\x8e\xee\x52\x1e\x2e\x46\x77\xa9\xd1\x5d\x6a\x74\x97\xaa\x3e\x63\xfe\xee\x31\x7f\xf7\x98\xbf\xbb\xf2\x8c\xf9\xbb\xc7\xfc\xdd\x63\xfe\xee\x41\x23\x8c\xf9\xbb\xc7\xfc\xdd\x63\xfe\xee\x31\x1d\xeb\x98\x8e\x75\xcc\xdf\x3d\xe6\xef\x1e\xf3\x77\xb7\xc3\x3f\xe6\xef\x1e\x0f\x8c\xf1\xc0\x18\xf3\x77\x8f\xf9\xbb\x2b\xcf\x98\xbf\x7b\xcc\xdf\x5d\x7b\xc6\xfc\xdd\xed\x17\xc8\x31\x7f\xf7\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\xfe\x33\x06\xa4\x8d\x01\x69\xbf\xaa\x20\x8e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x60\xe3\xdf\x18\x2f\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x2d\xf0\x8c\x01\x69\x63\x40\x5a\xf1\x8c\x01\x69\x63\x40\xda\x18\x90\x16\xec\x74\x0c\x48\xf3\x70\x31\x06\xa4\x8d\x01\x69\x63\x40\x5a\xf5\xf9\xdf\x9d\xbf\x7b\x88\xdb\x41\x78\xa9\xbb\xa5\x83\x15\x7a\x89\x94\x37\xf6\x10\xd4\xb9\xc2\xbb\x08\xf2\x47\x7b\x6c\x63\x12\x6c\x29\x2a\xb6\xc2\x96\x29\x85\x57\x05\x12\x8d\xf7\xcd\xe3\x83\x69\xd4\x71\x26\x55\x09\x59\x62\xeb\xe0\x2c\xd0\x95\x10\x73\x41\x83\xf2\xc7\x74\x0a\xd6\xd2\x78\x8a\xfa\xa0\x42\x9b\xbd\xe1\x6b\x73\xb9\x5e\x1c\x40\x7f\x8b\x03\x10\x01\x6c\xdb\x50\xd7\x74\x65\x2e\x85\x1a\x84\x4e\xe8\x20\x91\x77\x2c\x43\x68\xd0\x35\xd3\x03\x4e\x11\xb9\xe5\x5a\x9b\xb3\x84\xbb\xa8\x9e\x50\xa7\x91\x14\x8a\x63\x2a\x76\xd4\x5b\x2e\x0e\xb8\x58\x71\xc1\x35\x5b\x1c\x90\x09\x01\x87\x40\x6f\x3a\xee\xa4\xb2\x70\x92\x84\x2a\x3d\x25\xc5\xcc\x82\x28\x31\xb0\xf2\x98\x09\xcd\x23\x9a\x58\x00\xeb\xfd\x70\x41\x68\x92\x6e\xa8\xc8\xb7\x2c\xf3\xda\x01\x01\x84\x7a\xb5\xe7\x93\x55\xb1\xa1\xd7\x4b\xf0\xce\x8d\xc4\x21\xf2\xed\xb2\xa9\xfd\x4c\x33\x76\x76\x71\x72\xdd\x47\x1e\x73\x6c\x46\xb8\x88\x79\x84\x9a\x9d\x22\x02\x65\xe3\xd2\xab\x57\xb9\x0a\x59\xb2\x95\x0c\x8b\x6e\x54\xec\x88\xe9\xae\x15\xd6\xa5\x94\x09\x6b\x3a\x66\x74\xc8\xed\x35\x29\xeb\xda\xd7\x93\x21\x55\x7b\xda\x32\xb7\xd1\x52\x1e\xdd\xe0\xff\xc9\x3c\xc8\x80\xcc\xdc\x6a\x5a\x0f\x8f\x12\x6c\xbc\x8c\xb7\x86\x5a\x3a\xa1\xa3\x5d\x77\x53\xc2\x61\x64\xb7\x24\x91\x77\x88\x35\x54\xe1\x15\x4a\x2d\x94\xac\xff\x82\xfa\x1d\xdc\xd8\x9f\x12\xae\x59\x46\x41\xb5\x12\xea\x79\xb1\x20\x13\x8c\x17\x33\x54\xbd\x4d\x69\xc6\x95\x14\x87\x04\x82\x46\x9d\x5e\xc6\x75\xb9\x92\x92\x2c\x69\x06\xca\xa2\x62\xb8\x3f\xec\x39\x5c\x39\x9e\x11\xad\xd8\x3f\x73\x9a\xfc\x19\x5d\x9c\xdd\x55\x81\xaf\xec\x1d\x81\x2b\x68\xe3\x4c\x1f\xc5\x90\x61\x26\xf2\x33\xc0\x41\x4b\xc7\xbc\x65\xf9\xcf\x08\xff\x39\x9d\x4e\xc9\x7f\x3c\x08\x74\x96\x33\x17\xa9\x54\x38\xfb\xe2\x18\x7f\x27\xe1\xe0\x02\x6b\xf3\xe9\x19\xaa\x84\xd5\x4c\x80\x8b\x01\xc0\x85\x06\xdb\x13\x5e\x18\xac\x0b\xc0\xf0\x92\x78\x30\x6f\xa8\x7a\x01\xfd\x7d\x32\x47\xc7\xcb\x72\xe8\xeb\x62\x64\xaa\xcb\xd5\xf1\x56\xe6\x0f\x40\xa4\xc1\x43\xd7\x76\x51\xe8\x87\xe5\x0a\xda\x82\x7a\x10\xfe\x9b\xbf\x7a\xf5\xf5\x6b\xfc\x7f\x7c\x53\x7c\x73\xb5\x91\x99\x9e\x44\x3c\x8b\x72\xae\x41\xac\xb5\x1f\x85\x06\xfa\xf7\xbf\x3b\xbf\x06\x43\x92\x7e\x81\x6d\x5e\x16\x8d\x52\x9a\x31\x7b\x25\x5a\x67\x32\x4f\xcd\x95\x68\xb1\xd0\x34\x49\x5e\x04\x0d\x82\xb6\xa6\x00\xba\x05\x15\xfc\xc2\xf5\xe6\x68\x98\x26\x89\xa7\xe3\x83\x0d\xfa\x0e\xe9\x01\x2f\xb1\x2d\x4c\xce\x6c\x6d\xe4\x33\xce\x55\xd6\xe7\xef\xea\x90\x4c\x0e\xc9\x27\xc0\xc3\xd1\x94\x5c\xc1\x96\x23\x76\xcb\xb5\x76\xba\x95\x19\x23\xa9\xb9\x7f\x29\xc5\x6f\x19\x59\x62\x90\xc7\xce\xe9\x97\xad\xe6\x9f\x30\x15\xd1\x94\x91\x68\x43\x33\x1a\x69\x96\x59\xb0\xcf\xd1\x57\x3e\xb8\x19\x5e\xc0\x29\xb5\xa5\x31\x9b\xe4\x29\x92\x85\x7a\x59\xb0\x23\x88\x2c\xb4\xac\xe3\x8e\x2d\xcd\xcd\x8d\x59\xe6\xe1\xaf\x78\xcc\xd2\x44\xee\xb6\x4c\x04\xd9\xa9\xfd\x3e\xcd\x64\xec\x88\x14\xfa\x35\x7b\x0a\x78\x52\x26\x85\x66\x22\xf6\x48\x9d\x46\x37\xf6\x87\xff\x98\xe6\x65\xff\xe4\x0f\x7f\x69\xdb\x01\x31\xbb\x75\xdd\xff\x81\xd4\x76\x41\x88\x95\x75\x09\x4f\x55\x6d\xec\x50\xa9\xf0\x2a\xf8\xd5\x93\x89\x86\x16\x48\xa7\xac\xd9\x57\x40\x04\xab\xcf\x80\x33\x15\x8c\x43\xa5\x04\x70\xb7\x81\x88\xf5\xca\x99\xef\xb9\xc5\xd9\x6b\x66\x90\x4f\x99\x7d\x27\x6d\x05\x95\x43\xfb\xd7\x52\xea\xcd\x94\xa0\xa7\x2a\x9c\x26\xf7\xa9\x91\xa8\x74\xb2\xf3\x2e\xb3\x2f\xa0\xfa\x4b\xd0\x05\xd9\xe3\xa3\x82\x44\x19\xb3\x01\x32\xca\xee\x6e\x99\x11\xc1\x93\x97\x87\x2e\xc8\x25\x66\x2b\x9a\x27\x5a\x11\x9c\x96\x41\x5d\x16\xb7\xdc\x69\xb4\x24\x77\x86\x57\xce\xec\xcd\xd9\x00\x71\xee\x5d\xa2\x41\x6e\x75\xfc\xb3\x28\x84\x82\x6e\x97\x6d\x71\xf2\x76\x7c\xc2\x15\xee\xb1\x09\xf9\xd1\x8a\x72\x06\x20\x37\xd2\x4f\x87\xf6\x88\x30\x82\x31\x58\x6f\x2a\x03\x07\xf7\x31\x17\x51\x92\xc7\xce\xc0\x19\x51\x23\x2c\x43\x07\x65\x37\x04\x0f\x69\x21\x8b\x29\x41\x77\x2f\xdb\xbc\x2b\xab\xc0\x9d\x87\x61\xab\x60\xc4\x30\xa6\xb2\xfb\xe0\xe5\x0e\xda\xb5\x4e\xfd\xb0\x77\xc0\x50\xa7\xa0\x5b\x6c\x5b\x26\xe4\x81\x3f\x58\xc5\xa2\x77\x3d\xc9\x18\x35\xbb\x29\xba\x21\x74\x4d\xb9\x08\x92\x2c\x92\x09\x1a\xa4\x92\x3b\xba\x53\x8d\xf8\x04\xf4\x16\x39\x24\x82\xdd\xb2\xac\x42\x75\x41\x25\xcb\xc0\x2a\x4b\x25\x16\x08\x83\xa3\xa3\xb0\xab\xa6\x52\x29\xbe\x4c\xdc\xc0\xa5\x3b\x9c\xf9\xe0\x2a\x65\x51\xf8\xda\x8d\x13\x69\x77\x10\xec\xbe\xe0\xb7\xde\x9d\xc3\x57\xee\xe6\xaf\x70\x72\xc4\xbe\xdb\x83\xd2\x32\xa3\x6b\xe6\x7e\x52\x9a\xea\x1c\x11\x83\x96\x3f\x16\x5f\x78\x36\x99\x1b\x2e\x62\xc3\x8d\x1c\x4a\xd3\x24\xcf\x68\x52\xfe\x12\x49\x81\x86\x78\x75\x4c\x7e\xfc\xc9\xfc\x62\xfa\x67\xb1\x0d\xb4\xb5\xbf\x2e\xc4\x64\x32\x29\xfe\xf3\xcc\xc6\x40\x1c\x93\x08\x98\xc3\x91\x66\xdb\x14\xca\x59\x1d\xdd\xc4\xf1\x24\xca\x62\x35\xdd\xd1\x6d\xb2\x10\x34\xe5\x2e\xc0\x97\xd0\x94\xb3\x7b\xcd\x04\x74\x3b\xbd\xf9\x93\x9a\x72\x79\x74\xfb\xd5\x42\x20\x88\xa7\xb9\xd2\x72\x7b\xc9\xd0\x04\x79\xc6\xe0\x4a\x09\xec\xbd\x12\x46\x0b\x8a\x33\x82\x4e\xd8\x02\x1d\x96\x15\xd3\x6a\x1a\x65\xf1\x34\xcd\xa4\x41\x1c\x02\x35\x95\xd9\x7a\x21\x0c\x2b\x84\xef\x40\xbe\x39\x26\x2d\xcd\xaa\x76\x2c\x04\xa8\xee\x5b\x8d\xef\x12\xae\xf4\xdf\x82\xef\xdf\x71\xa5\xab\x38\x6e\x40\x69\x17\x90\x8b\x75\x9e\xd0\xac\xd9\xc0\xbc\x07\xbe\x98\xdd\xb2\x8f\xe2\x46\xc8\x3b\xf1\xd6\x10\x9e\x3a\x26\x2b\x9a\x28\x20\x00\x15\x49\x43\x23\xa7\x49\xae\x34\xde\x4f\x6f\xdd\x52\x99\x3f\x26\x16\x43\x06\xb1\x30\x58\xb4\x61\xdb\x32\x02\x59\xa6\x4c\x9c\xcc\x67\xdf\x7f\x73\x55\xfd\xbd\xb6\x8b\x1a\x7e\xe5\x95\xc8\x0e\xf0\x4f\xa0\xd9\x92\xeb\x8c\x66\x3b\x32\x9b\x13\x95\x2f\x27\x6e\x1a\x47\xa7\xb3\xb3\xcb\x0a\x0b\x43\x8d\xc8\xc6\x30\x3d\x94\x93\xe0\x36\x0c\x57\x39\xe4\x6a\x5a\x62\x90\xa1\x75\x06\xd9\x92\x5b\x4e\x3d\xb7\x3c\x74\xb8\xc0\x4f\xfd\x7e\xe5\xaa\x09\xa8\xb3\xd9\x17\xea\x1f\x7f\xd7\xb6\xa8\x67\x3d\x2a\xad\x6e\xd2\x6a\xd6\x14\x83\x37\xeb\x9d\x82\xd1\x1c\xc8\x57\x2c\xfa\x59\x6c\x71\x8d\x8c\x05\xd8\xa4\x3d\xe3\x68\x48\xef\x66\x50\x28\xec\x56\x9f\x82\x04\xc4\x32\xe5\xee\xc8\x91\x14\xb7\x2c\xd3\x24\x63\x91\x5c\x0b\xfe\xaf\xa2\x73\xe5\xfc\x65\x60\xbb\x35\xa4\x46\x2e\x34\xcb\x8c\xac\x04\x3c\x0e\xad\x02\x5b\xba\x23\x19\x33\xc3\x90\x5c\x78\x1d\x3a\x6f\xbd\xf7\x46\x46\xe6\x62\x25\x8f\x21\x9f\x95\x3a\x3e\x3a\x5a\x73\xed\x36\x68\x24\xb7\xdb\x5c\x70\xbd\x3b\x02\x0b\x3e\x5f\xe6\x66\x49\x8e\x62\x76\xcb\x92\x23\xc5\xd7\x13\x9a\x45\x1b\xae\x59\xa4\xf3\x8c\x1d\xd1\x94\x4f\x00\x76\x01\x2c\x65\xba\x8d\x9f\x65\x76\x47\xab\xe7\x21\x06\xd8\xe4\x9b\xb0\xf9\xba\x96\xc1\xec\x3e\x1b\x04\x8e\x97\x00\x94\x62\x0a\x6c\xbb\x93\xfc\xf2\xfc\xea\x9a\xb8\xd1\x83\x01\xf3\x88\xfc\xf2\x4b\x55\xae\x83\x41\x1a\x17\x2b\x27\xae\x81\xd1\xc4\xd7\x6e\xa0\xac\x90\xf0\x80\xe4\xae\xf2\xe5\x96\x6b\xe5\x25\x42\x92\x53\x72\x5a\x58\x53\xf2\x34\xa6\x9a\xc5\x53\x32\x13\xe4\x94\x6e\x59\x72\x4a\x15\x7b\xf2\x55\x00\x99\x75\x62\x70\x3b\x74\x1d\x5a\x92\x17\xb4\xa9\x8a\x0b\x46\xdb\xb2\x6c\xf5\x8d\x6a\x0e\xdc\x6a\x0c\x9d\x0b\xb9\x2c\x93\x1c\x50\x52\xe7\xbe\xe5\xe3\x16\xb6\x76\x26\x77\x18\x60\x5a\xa2\x3d\x1a\x85\x26\x9d\x43\xea\x6c\x4e\x1c\x4b\x43\x0e\xb6\x64\x89\x34\xb4\x25\xad\x02\x8a\x85\xcc\xf6\xed\x62\xca\xef\x49\x50\xf8\xe5\x25\x84\x8d\x54\xa5\x03\xd6\x13\x48\x07\x7e\x94\x55\x5d\x32\xf0\xdf\x35\xa5\x82\x0a\x64\x75\x89\xc0\x7f\xf9\x4b\x4a\x03\xe3\x49\x39\x9e\x94\xfe\x12\x8c\x27\xe5\x17\x3b\x29\x7d\xee\x31\xec\x94\x6c\xf2\xa2\xf2\xd9\xff\x9c\x64\xf7\x29\xb8\x9b\xcc\xe6\x43\x94\x5c\x66\xa5\xed\x07\xd5\xa0\xc3\x17\xb3\xf9\xed\xb7\xb0\xad\x66\xf3\xdb\xd7\x2f\xdd\x75\xdb\x91\x45\xf0\x2e\x3d\x43\xdd\xfd\xcc\xec\xcd\x15\x8d\x18\x98\xe8\x16\x8b\x83\x9a\x35\xa4\x50\x4a\x81\x7a\x21\x91\xf2\xc6\x69\x05\xb9\xfb\x32\xa8\x0c\x76\x5e\x3f\x5e\x30\xe4\x6c\x5e\xf1\xc3\xc3\xf8\x6d\xb0\xd3\x59\x75\x07\x30\x11\xaa\xa7\xe0\xdb\x1e\x3c\xd7\x17\x0b\x0d\x3a\x92\x5c\x35\x9c\xe4\x6b\x69\x01\x20\x0e\xb3\xf0\x27\x91\x99\xd5\xe8\x85\x3a\xad\x57\x71\x5e\x2c\x4c\x7f\xb6\x7c\x73\x31\x7f\xcb\xfc\x54\x75\x54\x2e\xc2\x49\x07\x8a\xab\x9b\xbf\x4e\x53\x08\x00\x36\xc7\x4e\xc5\x65\x19\x9d\x25\xce\x4b\x52\x40\x0d\x48\xa8\x5b\xae\x50\xdd\x8a\x69\xa9\xa8\x26\x69\x9e\xa5\xd2\xec\xd4\x17\xb3\x95\xf5\x90\xda\xb0\x72\x69\xcc\x38\xce\x05\xb2\xdb\xcf\xca\xa9\x1e\x25\xc3\xe5\x4f\x18\xcd\x44\xb1\x6c\x76\x05\xcb\x7e\x0d\x00\xb9\x02\xf5\x78\xab\x6f\xc7\x62\xa1\xdd\x72\x4c\x83\xca\xed\x47\x97\xdf\x48\x09\xe1\x45\xd8\xe9\xa7\xb6\xa5\xce\x31\x93\xa6\xa1\xfb\xff\x83\x9a\x7d\x6b\x76\x29\xdd\x7d\x8a\xec\x24\xef\xb8\xc8\xef\xbb\xa9\xbe\x30\x3c\x17\x04\xfd\x67\x20\xbd\x6d\xaa\x77\x53\x52\x0e\xe3\xdb\xaa\xd1\x70\xcb\x55\x27\x67\x31\xcf\x5a\xde\xb2\x4c\xa0\xc9\xa7\x70\x83\x93\x87\xa5\xeb\xdb\x26\x93\xf9\x1a\xdd\x1b\x9c\x06\xd7\x0a\xd5\xdd\xd1\xf9\x76\x71\x81\x2e\x4d\xc3\x22\x37\x01\xd6\xf4\x8e\x91\x2d\x00\x4d\xfe\x99\x30\x33\x7f\xdc\xd8\xb1\x21\x92\x5b\xdc\x88\xe1\x6c\x15\xa5\x53\xd1\x2d\x94\x59\xdf\x95\xe8\x3b\x24\xbe\x2e\x58\x2a\x0c\x69\x38\xd2\x12\x5c\xe4\x0d\x2c\x4e\xc9\x11\xf6\x30\x48\x64\x44\x93\x22\xbe\xdd\xea\x4f\x67\x2b\x52\xe1\x67\x8e\x97\x79\xeb\x3b\x08\xd5\xb0\x91\x1c\xbe\x2b\x2e\x87\x30\x7d\xe0\x27\x66\xee\x56\xd6\x02\xcc\x79\xe8\x0f\x32\x19\x47\x46\xe5\x1e\x2a\x70\x5d\x81\x19\x48\x70\x42\xee\x0c\x9b\xab\x32\xe7\x30\x3f\x40\x65\xee\xa4\xb2\xfc\x81\xc1\x8a\x90\xc4\x52\x2f\x6c\x76\x76\xb0\x53\xe1\x33\x23\xc8\xa6\x9b\x81\xbf\xc4\x61\x00\xaa\x02\x84\x43\x42\x81\x6b\x34\xc5\x3f\x62\xcd\xd9\xfe\xd9\x55\x14\x51\x2f\x73\x8d\x61\x54\x95\xb9\x94\x64\x98\x85\xcf\x8e\xa2\xc8\x0b\x95\x87\x39\x0c\x55\xb0\xb4\x4c\x6f\x5e\x99\xff\xbe\xb4\x21\x41\x60\x67\x64\x31\x31\x70\xff\x99\x70\x4d\xb8\x12\xcf\x75\xa9\x94\xee\x3f\xc9\x09\x6e\xe6\x34\x93\x46\x7a\xf1\x48\x00\x71\xec\x71\x85\x2a\x1d\x96\x50\x07\xcf\x5c\x17\xb7\x75\x8c\x73\x85\x30\x49\x90\x7e\x30\x94\x12\xcd\x54\x46\xe2\xda\xa6\x09\xdb\x1a\x5a\x43\x56\x5f\x32\x0e\x1f\x68\xf5\xe7\xf0\xea\x71\xcd\x69\x92\xec\xc8\xff\x6b\x70\x9c\x66\x6c\x02\xee\x31\x85\xd1\x67\x6e\x16\x89\xd9\x9c\xc7\x05\xdb\x8f\xf2\x6d\xdb\x9d\xc0\x3c\xae\xc4\x3d\x0a\xf8\xb6\x94\xbe\x14\x41\xeb\x41\x17\xf3\x16\xe1\x84\x77\x0d\xc5\x80\x69\x67\x9d\xf7\xc1\x37\x69\xb5\x73\x07\xbe\x85\x18\x1a\x70\x73\xd1\x16\x41\x64\x77\x01\xd1\x16\x38\x5c\x33\x6e\x98\xc3\xbe\x22\x0f\x7a\x4e\xbc\xb8\x77\x6d\x4c\xab\x4b\x80\x1c\x74\x08\x5e\x32\xd4\xb7\x32\x11\xa1\x27\x55\x21\x6e\xd8\x05\xb7\xbe\xae\x7b\x9c\x8e\xbd\x9e\xaf\x9d\x1e\xaf\xfd\x5e\x92\x66\x5a\x3d\x9f\x77\x06\xac\xfe\x9a\x12\x9b\x3d\x55\x1e\xab\x1e\xff\x4f\xd1\xc2\xb0\x27\x80\xdc\x96\x37\x1d\x99\xea\x1e\xec\x35\x9a\xa2\x18\xdb\x4b\xee\x27\x65\x70\x38\x6e\x38\x0e\xe7\xdc\xca\x93\x8e\xb1\x27\x0b\x44\x7b\xfe\xcf\x32\x58\xc4\x1c\xb5\xc5\x1d\x04\xf3\xbe\x5b\x70\x3c\xc7\x4b\x77\x25\x40\x8f\xc2\xb6\x4e\x31\xda\x22\x4d\x19\xcd\x0a\x5f\x3e\x08\xe6\x21\x05\x5c\xa5\xb9\xdb\xf5\xec\x7c\x32\x4b\x79\x7d\xd2\xea\xb1\x58\xdb\x95\xa3\xb6\xf1\x57\xab\x6d\xe4\x29\xdd\x2e\x13\x19\xdd\x3c\x85\xaa\x71\x36\x3f\x79\xff\xc6\x74\x5e\xd7\x33\x16\x2f\x9a\x4a\xc6\x12\xa0\xba\x86\xb1\x78\x33\xaa\x17\x2d\x94\xa3\x7a\x71\x54\x2f\xfe\x7e\xd4\x8b\x05\xd3\x18\xa4\x5b\x14\x75\xee\x53\x3e\xfb\x6b\x16\xcd\x85\xc5\xe0\xae\xf7\xdc\xb7\xed\xdc\x9d\x10\xd8\x95\x75\x66\xe2\x0a\xff\x74\xf7\x46\x0c\xd7\x63\x3a\xa8\x40\xe2\xba\x08\x1b\xf0\x0a\x93\x90\xc5\x81\xb9\x1d\x1f\x63\xf1\x10\xf3\x4f\x90\x8c\xc0\x89\x75\x71\x00\x1d\x82\x6f\x28\xd3\x87\xde\x80\x2d\x57\x5d\xd3\x12\xe6\x85\xa5\x70\xe0\xde\xbd\xa7\xe8\x4f\x13\x73\x61\x6b\x4b\xb6\x5e\xc5\x8c\x39\xb1\x81\x63\x95\xdf\x10\x2e\x26\xb9\x8d\xf0\x70\x62\x08\x40\x3c\x25\x82\x27\x50\xd5\xa6\x25\xce\x62\xcb\x28\xca\x39\x65\x6f\x04\xf6\x18\x63\xa8\x16\x14\x52\x4c\xbc\x3e\xcc\x6d\x9a\x8b\x98\xdd\x13\x7e\xd8\xa6\x53\xb0\xef\x8b\xb8\x17\x6e\x98\xa0\x45\xbe\x37\x4c\x03\x58\xe0\x90\x2d\x7d\x22\x5f\xb1\x7d\xe2\x00\xae\x47\xa5\x64\xc4\x21\x71\x08\xd5\xb8\x1d\x59\xa1\xd0\x3d\x29\x7e\x09\x8a\x84\x06\x95\x0f\x10\xa9\x3a\x6e\x00\xcf\xc8\xf5\x87\xb3\x0f\xc7\x98\xff\x48\xe4\x49\x42\x97\x28\x56\x6e\xa9\xc8\xe1\xfa\x4b\xe3\x18\xa4\xcb\x29\xf9\x81\xb9\x23\x06\xf9\x10\x29\x12\x24\x64\x93\x75\x38\x21\xe8\x33\x43\x61\x1b\x2a\xe2\x84\x91\x1f\x7f\xfa\x3f\x86\xf9\xe1\x66\x4b\x76\x36\x93\x49\xf0\x82\xef\x00\x69\xbb\x37\x74\x08\xea\x25\x4e\x7b\x09\xd3\xc3\x3e\x78\xed\xd2\x82\x52\x0b\x3f\x21\xc7\xc8\xbc\x55\x0b\xc1\x0b\x7e\xd5\x55\xfa\x2e\xb9\xc0\x94\x5c\x4b\xb2\x32\x07\x8f\xb7\xde\xa8\x3b\xc1\xd8\xbf\xf2\xc3\x20\x47\x30\x1b\xa5\x12\x41\x50\xa5\xcb\xe7\xca\x56\x81\x72\x24\xe4\x81\xd1\x1a\x28\x4f\x03\x84\xc9\x50\x57\x52\xdc\x0b\xf6\xa7\xb6\xde\x0b\x35\x52\xc2\x27\x1e\xbe\xee\x91\x41\xb7\x6a\xc5\x8c\xa0\x4d\xb3\x10\x4b\xb6\x93\xdb\xaf\xc2\xc3\x90\xeb\x6f\x5f\x18\xe3\x83\xef\x95\x11\x8f\x7b\x5d\xcd\xaf\x1d\x25\x3d\x57\xe4\x74\x76\x76\xb9\x27\xaf\x8e\x59\xc2\x74\xf0\x86\x5d\x19\xe5\x0c\x9b\xd9\xbd\x50\x08\x83\x36\x4e\xab\x70\x4f\xbf\x93\xd9\x0d\xcd\x64\x6e\xc8\xd9\x2b\x53\xd0\xa2\x00\x35\x74\xe5\x05\xac\x9f\xcc\x67\xe8\xa8\xbc\xdc\x21\x58\xc8\x57\x13\x8c\xbb\xc9\x98\xce\x33\x41\xa0\x9a\xc8\x2a\xe1\x61\x4c\xb3\x2c\x93\x99\x0b\xaa\x29\x8f\xd5\x25\x63\xc2\x13\x8f\xb4\xe3\x54\x2e\x1e\x9c\xe9\x82\xa3\xed\x1f\x92\xf6\xcf\x9c\x89\x88\x5d\x40\x74\x5d\x10\x8d\x60\x25\x38\x26\xaf\x7a\x50\x6c\x18\xa8\xb9\x12\x82\x59\x0b\x3b\xb5\x31\x7b\xa8\x57\xe6\xca\x4d\x01\xa3\xdd\x35\x0f\x6b\x3f\xca\xa9\x73\x45\xee\x32\xae\x35\x13\x56\x31\x50\x39\xaf\xc0\x91\x59\x49\x3b\x28\x5e\xe0\x71\xd8\x30\xd3\x05\x48\x7c\x01\x86\xd8\x68\x38\x03\x08\xe8\x34\xb4\x2a\xfc\xee\x6d\xc6\xe9\x8c\x25\x8c\xaa\x96\xad\x03\xb2\xd8\x21\x49\xa9\xf2\x0c\x8d\xd5\x89\x7b\xc7\x21\x70\xd1\x2a\x73\x0b\x76\x9a\x24\xf2\x4e\x91\x5c\xf9\xaa\x65\xf0\xea\x56\x9a\x50\x92\x51\xcc\x74\x6e\x73\x75\x99\x33\x9a\x09\x95\x5b\x04\xcc\x82\x75\x2a\x37\x14\x34\xdb\x40\x44\x38\x21\x73\x3a\x8b\x98\x64\x6c\x62\x81\x31\xb7\x28\xc8\xcc\x07\xc1\x90\xd8\xc6\x89\xe9\x01\x8a\xc2\x32\x2d\x70\xf4\xbe\xfe\xb6\x8d\xe0\x5a\xce\xe5\x2a\xc1\xbd\x95\x59\xc9\xd2\x03\xd4\x37\x98\xdb\xf5\x80\xd4\x2b\x2c\xd4\xca\x76\xa4\x9e\x4c\xc7\xe2\x42\x6e\xf2\x92\x40\x20\x09\x41\x48\xcb\x67\x51\x5d\x49\x0e\x53\x9f\x99\x38\x1b\x6b\x2b\x8d\x90\x32\xce\xf6\x86\xed\x5c\x1a\x8d\x54\x1d\x12\x85\xf7\xe0\x1b\x06\xb1\x01\x11\x55\xda\x56\x59\x03\x06\xda\xca\x20\xc2\xfc\x1d\xf3\xc1\x9c\x0c\xbc\x28\x5c\x55\x5a\xbb\x08\xdf\xe2\xc6\x62\xe0\x89\xcd\x9d\x12\xb1\x6a\x68\x50\x04\x2d\xe3\x89\x14\x6b\x96\x21\x5b\xb6\x76\x46\x2c\x5f\xf3\x51\x61\x77\xa7\x52\xac\xf8\xba\x3e\x9e\xd9\x24\x8c\x86\xc2\x02\x3a\x79\x60\x2e\x8a\x95\xee\x9b\xe0\xc7\xb2\xa9\x8b\x86\xca\x30\xf6\xda\x69\x46\x7d\x41\x09\x75\xfe\x2d\xa1\x1e\x46\xaa\xaf\x8a\x52\x8f\x28\xfb\xb6\x1e\xca\x2d\x2a\xe9\x89\x0f\x77\xe3\x55\x8b\xdc\x3e\x81\x03\xbe\xfe\x5b\x95\x62\xea\x6f\x3d\x5c\x8f\x8a\xce\x47\x52\x74\x46\xb0\x19\x9e\x4a\xd3\x89\x5b\x2d\xa4\xea\xc4\x37\x61\x5d\xa7\x85\x29\xa4\xec\x8c\x8a\x0e\x47\x6d\xe7\xa8\xed\x1c\xb5\x9d\xbf\x3b\x6d\x27\xf2\x8d\x3d\xd4\x9d\x3e\x0b\x2a\x9f\x07\xe8\x3b\x73\x2d\xad\xb8\xc9\x40\x20\x09\x9d\xad\x9d\xa2\xc2\x96\xde\xe3\x87\x73\x96\xfd\x15\x74\x96\x7d\x92\x64\xb5\x3d\x28\x4d\x85\x14\x93\x7f\xb1\x4c\x1e\x3a\x15\xda\x96\xde\x7b\xa2\xa2\x6f\x26\xaa\x81\x06\xd9\xd5\xa8\x80\x94\x1d\x85\x8e\x13\x6e\x53\x2d\x6a\xce\x2d\xbd\xe7\xdb\x7c\x7b\x4c\xbe\xfe\xea\xdb\xff\xfe\xf6\x4f\xdf\xbc\xfe\xf6\xbf\x03\x8d\xb8\xc0\x46\x81\x2b\x5e\xb7\x2c\xdf\x27\x1c\x76\xe0\xb2\x5d\x10\x69\x2c\xd2\x3e\x12\xc6\x28\x46\x3c\x58\x8c\x40\xfd\xd5\x53\x89\x11\x7f\x85\xde\x43\x62\x04\xbe\x09\x8b\x11\x16\xa6\x90\x18\xb1\x29\x3a\x1c\xc5\x88\x51\x8c\x18\xc5\x88\xdf\x9d\x18\x81\x7c\x63\x0f\x31\xc2\x67\x41\xe5\xb3\xbf\x18\x01\x07\xf4\xe7\x28\xab\x06\x5d\xde\xc3\xfa\x98\x76\x7d\x77\xa7\xdc\x82\xcc\x72\x76\xd6\xfa\x5d\x48\xbb\xde\x7a\x44\x07\xec\xaf\x93\x62\x88\xf1\x3c\x7e\x94\xf3\x38\x95\x32\x79\x9a\xb3\x78\x2e\x9d\xfb\xa0\x7f\x0e\x9b\x5f\x43\x67\x30\xc0\xd1\x3c\x7f\x53\xdb\xc9\x78\xf6\x8e\x67\xef\x78\xf6\xfe\xce\xce\x5e\xc3\x2b\x06\x9f\xbb\xa6\xf1\x43\xee\xea\x98\x7e\xee\xa3\x1a\xe0\xeb\x50\x34\x75\x4e\x1b\x0a\xf3\x5d\xa1\xf1\x81\x18\x5e\x55\xf8\x1d\xb9\xd0\x38\xc8\xb7\x1a\x3a\x9c\xc1\xd5\xa8\x48\xd8\xe5\x22\xb3\x0e\xcb\x84\x5b\x5a\x92\x1f\x17\x07\xd7\xb9\x10\x2c\x81\x3c\x6f\x07\x3f\xd8\xc8\x8e\xc5\xc1\x4f\x30\xef\x25\x8d\x6e\x26\x90\xc1\x52\xf3\x25\x4f\x1a\x97\x54\xf2\x34\x71\x6d\x70\x2c\x5f\xf1\x7f\x0d\x0a\x9e\x40\x63\x94\xe2\xff\x02\x1d\x42\xae\x30\xe2\xa5\x8c\x44\x24\x54\x29\xbe\x16\x5b\xb3\x99\x5a\xeb\x62\xd8\xd4\x69\x32\x99\x92\x33\x0f\x3d\x5f\xbf\xb6\x9d\xd9\x80\xd3\xaf\xbe\xfe\xda\xfd\xf0\xba\xd5\x38\xd3\x22\x0e\x0d\xf5\x21\x80\x45\x7e\x88\x03\x01\x57\x74\x99\xb0\x37\xdf\xcd\xcf\xef\x5b\x62\x1a\xaa\x4c\xeb\x0c\x3f\x20\x0c\x9a\x1b\x16\x95\xc9\xbc\x48\x2f\x0f\x18\x99\xcd\x89\xa1\xfa\xe7\xd6\xa5\x81\xc8\xdb\xb0\x7f\xd2\x9b\xef\xe6\x53\xf2\xe3\x99\xb3\xb0\xc3\xa1\xf9\x53\xa0\x8e\x6d\xa7\x68\x67\x27\xd0\x6b\xba\x02\x83\xb6\x6b\x0c\x9a\xa7\x2c\x2f\x23\x57\x8d\x7c\x5c\x3a\x2b\xe0\xda\x97\x41\xa9\x21\xe0\xcb\xe9\x02\x01\xec\x09\x35\x4f\x79\xda\x8f\xea\xc2\x56\x78\x6c\x99\x37\x64\x1c\xe4\x58\x9f\xbd\x8c\x72\x3d\x99\xcf\x6e\xbf\x82\x5d\x77\x47\xb3\x38\x08\x6d\x65\x37\x9a\xc3\x41\xdb\xd3\xc5\xef\x15\xa6\x8e\xcc\xe4\xb0\xfa\x2a\x88\x00\x0c\xed\xc5\x53\xda\x6c\x20\x03\xd4\x34\xb0\x7c\x3d\x9e\x43\x4c\xb4\xad\x5f\x78\x0d\x6d\xfb\x72\x09\x0d\x2e\x89\x06\x7e\x64\xe6\xe4\x73\xba\x70\x9f\x10\xb7\x16\xb3\x84\xdf\xb2\xac\xac\xb0\x64\x7e\x2a\xea\x0f\xaa\x5a\x9e\xf5\xe0\x0a\x93\xbe\x55\x26\x90\xf2\x33\x18\xcd\xd5\x98\xdb\x35\x30\xeb\xd9\x1c\x3e\x80\x14\x53\x60\xbd\x16\x5e\x9e\xba\xc5\x01\xa6\xae\x73\xf5\x44\xa1\x4a\xf1\x04\x2b\xe7\x2e\x0e\xa6\x84\x9c\xb4\xcd\xd7\xf4\x59\xeb\xa1\xf4\x20\xc9\x95\x1d\xb9\xc4\xa1\x59\x5b\xb3\xad\x81\x46\x5a\x2b\xc6\x7b\xf8\xaa\xc6\xda\x37\x70\x47\xc8\x89\x07\x43\x15\xee\xb6\xde\x01\x40\x47\xe8\x75\x00\xef\x5c\x16\x40\x1f\x06\x8c\x77\x33\xbb\xa3\xad\x4f\x5a\x56\x41\xb3\x15\x87\x9d\x14\xea\xea\x64\x98\xce\x85\x5b\x81\x32\x48\xb8\xb3\x7a\xe4\x0b\xbe\xaa\x1e\x9b\x2f\x0d\x14\x25\xae\x3b\x49\xa7\xfb\xa0\x0b\xdf\x82\x0d\xc5\xbf\x1f\x10\x25\x78\xea\xe4\x13\xb4\x39\xe6\x59\x29\x9b\x04\x16\xbc\x9b\xd4\x67\xb5\x39\x1e\xba\x12\x2f\x5c\xa1\x5f\x03\x20\x0a\xfd\xc8\x16\x07\x17\xec\x16\x32\xc2\xbf\x80\xf4\xeb\xd5\xc1\x42\xbd\x9b\x1e\x2c\x6f\x0e\xd5\x16\xec\x0c\x97\xa4\x7a\x22\x73\xbd\x96\x5c\xac\x7f\x2f\x2c\xb5\x93\xeb\x08\xaa\x3f\x0c\xc4\x07\x66\x6b\x2d\xdb\x97\x4c\xd5\xb1\x45\xc8\x89\xea\x15\x4e\x23\x9d\x11\xe7\x56\x20\x36\xf7\x0e\x7f\xff\x37\x98\xab\xcc\xb5\xe2\x31\x2b\x2e\x98\x85\x88\x1a\xea\x14\xca\xca\xa8\x7f\xe6\x2c\xa3\x71\xb0\x46\x50\x37\x36\x64\x3c\xb8\x1a\xc4\x09\x7a\x9f\x59\xa1\xdd\x26\x05\x34\xd4\x62\x5d\x7a\x8b\x88\x66\xe0\x34\xcb\x1d\xe6\x00\x0c\xc1\x5c\x94\x54\xda\x8f\x96\x6f\xef\x13\x2a\x3e\x73\x67\x7f\xff\xf7\x77\x27\x17\x5f\x6c\x6b\xc3\x68\x41\xd9\xb8\x00\xe0\xc1\x7b\xbb\x55\x01\xd7\xf4\xbb\x19\xf5\x6c\x7b\xea\xd9\xe0\x16\x5f\x09\xf2\xa8\x3a\xfc\x4f\x6f\xf2\x25\x5b\xe6\x3c\x89\x59\x06\x03\xb8\xe1\x5f\xc0\x55\x1d\xd2\xb1\x3b\x6f\xd1\x6b\xbe\x65\x4a\xd3\x6d\x7a\x0c\xce\xfd\xbe\x1a\x0f\xd5\x63\x38\xce\x93\x68\xf3\x2e\xcb\x01\x9a\x4a\x3d\xef\x65\x48\xb7\xe7\x03\xd7\x54\xf1\x65\xd5\x9e\x47\x4d\xdf\xa8\xe9\x1b\x35\x7d\xbf\x33\x4d\x9f\xc7\x40\x06\x2b\xfc\x1a\x1c\xa9\x7c\xf6\x57\x03\x5a\xa6\x13\x43\x0e\xe3\x3e\xa1\xe0\xd2\x6f\x5c\xad\x66\x8f\x3f\x51\x11\x1f\x55\xb4\x5c\x61\xd5\x06\xf8\xd9\x34\x14\x23\xec\x3e\x4a\xf2\xd8\x96\x55\x16\xec\xce\x77\x99\x1d\x53\x01\xb4\x1c\xf1\x4f\x65\x20\x33\xa7\x73\x79\x60\xab\x8a\x14\xf8\x14\x07\xed\xdf\xf2\x25\x3b\x2d\xc7\x3b\xf5\xc7\xab\x9f\xbb\x5d\x6d\x9b\xc7\x70\xe7\x4c\xea\xa7\x72\x57\xe3\xf1\x90\xb6\x50\x8e\x87\xf4\x78\x48\xff\x7e\x0e\xe9\x2e\x6e\xd3\x3c\xb3\x2b\xb5\x36\xea\x08\xf6\xe2\x8f\x3c\x26\x53\xbd\x62\x0f\x3f\xba\xbd\x2e\x86\xdc\xe6\xdd\x68\xa8\xde\xc6\xea\x27\x6e\x64\x5b\xb7\xe7\x96\xc7\x39\x4d\x7a\x8a\xab\x7a\xc3\x36\x5f\xf7\xa8\xe2\xfb\xea\xa5\xb6\x54\x49\x6d\x01\xb9\x5a\x32\xb5\x84\xab\xb5\x46\xe9\xb9\xd5\xec\x43\x00\x29\xe8\x1c\x0e\x21\xb8\x53\x4b\xc8\x1c\xa0\xa5\xd3\x23\xb4\xf4\x30\xa0\xda\xad\x61\x53\x22\xe2\x09\xcb\xe6\x2c\xe3\xb2\x3d\x56\xb9\xce\x1c\x2e\x6b\x1f\x3a\xdf\xe5\x14\xff\xd2\xd2\xfc\x0b\xb2\x39\xb8\x21\x78\x6b\x90\xa3\x7b\x8a\x98\x48\x97\x61\x8e\x6a\x0a\xb2\x84\x6f\x15\xfb\xe3\x36\x64\x12\x73\x4f\x7f\x7c\x73\x5f\x74\x73\x4b\xb6\xb9\x06\x06\x2e\x64\xdc\xbd\xd2\xe6\xfd\xaf\x63\x91\x37\x5e\x02\xc0\xa1\x0b\xec\x27\x0d\x2c\xcd\xe8\x6a\x27\x22\x67\x11\x80\x13\x12\xd2\x58\x96\x79\xdc\xbb\x56\xf7\xcc\xd9\x1a\x1f\x3a\xd3\x81\xb3\x25\xd6\xb3\xff\x34\x63\xb4\x25\x25\x70\xcb\x9c\x9f\x9f\x14\x9f\x95\x2b\x9b\x6b\xb9\xa5\x9a\x47\x65\x0d\x2e\xd9\x5b\x14\xbe\x8a\x15\xb8\x0a\xb1\x5b\x96\xed\xac\x25\xa5\x24\x66\x87\x93\x2e\x92\x26\x83\xab\x14\x0f\xa9\x51\x9c\x30\x7a\xf3\x5d\x46\x23\xb6\xe7\x7e\x7f\x57\xfd\xae\xb6\xdd\xab\x91\x99\x8e\xe6\xbb\xe6\x04\x1a\x70\xac\xbc\x0e\xc5\x1b\xa9\x6f\x32\x2b\xa3\xdc\x0d\xb8\xe6\x0c\xbf\x42\x3a\x09\x44\x24\x54\xbb\xb4\xc6\xf8\xd9\x9c\xac\x69\xb6\xa4\x6b\x03\x4e\x92\xb0\x08\x03\x6a\x4b\xc4\x7f\xf5\xb9\x6c\xe4\xf7\xc8\x3a\x09\xec\x7f\xa8\x15\xd9\xb5\xfd\xaa\xb3\xbd\x2a\x3e\xf1\xbd\x71\x6c\xa9\x3d\x49\x22\x99\xee\x06\x96\x47\x07\x8e\x5a\x16\x28\xf2\x92\x7a\x2a\x7f\x96\x96\xa1\x3e\xed\x29\x81\x19\xff\x86\x9c\x13\x36\x41\x78\xc7\x49\x61\x73\x7a\xfe\x3a\xce\x8a\xdf\x1f\x55\xf7\x2d\x75\xb5\x64\xe6\x90\x25\xaf\x96\xcb\xec\x5a\x7a\xdb\x77\x1b\xf8\xb6\x00\xa6\x4f\x1a\x23\x0d\xfc\x12\x34\xe0\x72\x35\xf7\x48\x51\x55\x5b\x72\xed\x9b\x2e\x3a\x70\xfd\xb7\xcd\x81\xd5\x24\xb1\x91\x12\x7e\x19\x4a\xe8\x0e\xc5\x58\xe6\x6b\x9b\x58\x76\x3e\xc0\x73\xf0\xac\xd6\xbe\x79\x2c\x64\x1a\x13\x8a\x64\xb7\x8c\x6c\xd9\x56\x66\xe1\xf4\x56\x86\x9c\xd2\xbc\xc8\xda\x4b\x8c\xa4\xd3\x34\x61\xe3\xeb\x9a\xfd\xb9\x3b\x99\xcb\x37\x5f\xb7\x61\xa0\xc5\x39\x93\xe9\x28\xfe\xfe\x9b\x53\xb9\x4d\x29\x48\x5c\xad\x44\x53\x25\x96\xf3\xe0\x67\x35\x92\x59\x32\x7d\x67\x24\x42\x33\xc6\xed\x37\xe1\x9b\xbe\xeb\xa0\x50\x09\x95\x82\xa3\xbf\x1d\x7c\x39\xf0\x55\x90\x5e\xba\xe8\x64\xc3\x68\xa2\x37\xa7\x1b\x16\x8e\x17\xae\x4e\xed\xaf\x5e\xe3\x82\x01\xc8\xcc\x81\xa2\x8a\x0a\xd7\xe6\x8e\x80\x3d\x07\xa7\x86\x1d\x0c\x12\x72\xba\x60\x4f\xe4\xfa\xca\xdc\x44\xb8\xde\x5d\x45\x19\x63\xa1\x1c\x3b\x35\xb9\xbf\xfe\x85\x5b\x96\x44\xae\x89\xb2\x6f\x08\x5d\xca\x5b\x66\xf3\x9b\x24\x72\xdd\x92\xd0\x8f\xa1\xf7\x8c\x55\xac\x2a\x1d\xcb\x5c\xfb\x8b\x31\x13\x2b\xb9\xef\x8c\xd2\x4c\x6e\x8d\x30\x99\xab\xf7\x4c\x67\x3c\x52\x43\xb6\xde\xf3\x79\xe8\x2b\x37\xb3\xeb\xd3\xb9\xdd\x7c\xce\x69\xbc\x6c\x1e\x9a\xd8\x16\xbb\xc0\x8d\x9a\x39\xcd\xf2\x92\x8b\x18\x34\x92\x3d\x14\xf8\x3f\xaf\xfe\xe7\xdb\xf6\x49\x07\x37\x5a\xbb\x1f\x48\x9b\xae\xab\x55\x99\x58\x9a\x7e\x5a\x50\xd5\xa9\x4e\x84\xaf\x3d\xb5\xae\x5d\x57\xf3\x6b\x40\x0b\x6f\x2f\x87\x9e\xee\x90\xcc\xf4\x73\xa8\x4e\xb3\xca\x13\x34\x18\xc6\x5b\xd0\x4c\x4a\x08\x69\x37\x37\x39\x60\x80\x98\x88\x8a\x46\x3a\xa7\x0d\xef\x22\xec\x11\xd7\xea\x8e\x16\x29\xc2\x5d\x86\x7d\xeb\x31\xba\x95\x31\x3a\xf0\x2f\x8d\x28\x7e\xcb\x33\x09\xae\xec\xe4\x96\x66\x1c\x36\x62\x03\x5e\x74\xa7\xbc\xc9\x97\x6c\xe2\x2b\x3f\xd3\x4c\x46\x4c\xd5\x35\x1d\x5d\xe5\x9a\xca\xd1\xbe\xa7\x41\xd5\xe7\x9e\x71\x82\x6d\xa7\x57\x65\xd9\xce\xab\xa3\xd6\x6b\x12\x04\x10\xd0\xe2\x25\x1a\x44\x02\x26\x70\x13\xab\x24\xc7\x0a\x05\x60\x05\xc8\x85\xe0\x62\x8d\x04\xb2\x67\x56\xa9\xcc\xff\xb6\xd7\xaa\xeb\x37\xae\x4d\x6c\xb5\x32\x57\xfd\x5b\x56\xa1\x0a\xae\xdc\x00\xa1\x09\xf2\xb6\x85\x96\xf1\xa1\xcd\x06\xbf\x65\xd9\xda\x19\x3b\x4e\xe6\xb3\xd2\xd6\x61\x24\x92\xf0\x91\xdc\x42\x65\x01\xbc\xf4\x48\x61\xdd\x5a\xf3\x06\x72\x1e\x53\x73\x4e\xfa\xb4\xe7\x03\xc0\x27\x03\xb4\xe8\x8d\x49\xec\xa7\x49\xef\x12\x19\x1f\x53\x5c\x1e\x38\x5b\xb2\x9f\xd8\xdc\x98\xfc\x70\xd1\xb9\x4f\x0b\x59\x95\xac\x07\x89\xcf\x7d\x5d\x76\x4b\xd7\xe4\x51\x35\x95\x1d\x8a\x78\xf2\x54\xca\x78\xf2\x08\x4a\x16\x32\x9c\x4e\x06\x2a\xe6\x1b\xd3\xdd\x43\x39\xdf\xb7\xa2\xa5\xee\xfe\x71\x14\xf4\x7b\xcc\x9e\xec\xa3\xa8\x6f\xe0\x60\x98\xb2\xbe\xbf\x53\x10\x4d\x1e\x5d\x61\x4f\x06\x6f\x05\x32\x70\x3b\x90\xbd\x94\xf7\xe4\xe1\x0a\xfc\xbe\x89\x95\xdb\x68\x4f\x25\x7e\x5f\xc7\x01\x41\xb9\x57\x91\xdf\xd7\x67\x8f\x9e\x9f\xec\xb1\x4c\x23\x53\xef\x45\xd1\x20\xf3\x40\x13\x39\x8f\x67\x22\x20\x8f\x6a\x26\x18\x3e\xf5\x21\x1b\xb8\xd3\x64\xd0\x40\xca\x63\x9a\x0d\xc8\x97\x3d\xd5\xc6\x8d\xf2\x08\xd4\x32\xc8\xea\x40\x9e\xcc\xf2\x40\x9e\xc8\xfa\x40\x46\x32\xfa\xa2\x64\x34\xd0\x70\x41\x9e\xd2\x78\x41\x9e\xca\x80\x41\x46\x62\xfa\x82\xc4\xd4\xd7\x62\x80\xfd\x83\x3c\x95\x0d\x84\x3c\xbe\x1d\x84\xf4\xdb\x42\xc8\x90\xa2\x33\x83\x6d\x22\x0d\xe4\x3c\x96\x5d\x84\x3c\xae\x6d\x84\x0c\xa0\xa9\x1e\x1b\x49\x73\xaa\x8f\x64\x27\x21\x7b\xda\x4a\x86\xcc\x65\x88\xcd\xa4\x39\xa1\xbd\xed\x26\x6d\xd3\x49\xe4\x5a\x7d\x86\xed\x64\xc8\x0c\x87\xda\x50\x9a\xb3\x7c\x54\x3b\x0a\xf9\x5c\x5b\x4a\x5b\xa7\x6d\x26\x16\xd2\xbf\x7f\x3b\x4a\xb6\x76\x98\x5b\x48\x27\xbb\x1c\x03\x77\xbc\xc0\x1d\x1b\x3e\x0f\x97\x19\xfe\x24\xd9\x66\x2f\x70\x04\xbc\x50\xe1\x8b\x32\x36\xa7\xf2\xb2\x19\x8c\x53\x83\xce\xae\x42\x11\x7e\xe3\xbf\x86\xae\x07\xc6\xdb\x14\x0a\x6e\x90\x99\xc6\x90\x9b\x31\xe4\x66\x0c\xb9\xf9\x6d\x85\xdc\x74\x19\x7c\xd7\x19\x53\xbd\x9e\x21\xd7\xae\x7c\xb5\x21\x7f\x06\x31\xa9\xf8\xa1\xad\xed\x4e\xb0\xc4\x95\xf9\xa3\xb0\x71\x86\x4e\x30\xea\xbe\xc6\x04\x25\x64\x4b\x75\xb4\x21\x51\xc6\x35\xcb\x38\x85\x4d\x42\x49\x24\xb3\x8c\xa9\xd4\xf0\x7b\xb1\x26\x56\x0e\xd4\x12\xcb\x6e\xef\x15\xab\x5a\x99\xc3\xe2\xe0\x84\x5c\x1a\x00\x99\x88\x68\xaa\x72\xd8\xb7\x25\x44\x21\x50\x5a\x14\xf2\xd4\xea\x75\xc9\x1b\xa9\x37\xb5\xca\xdb\x5e\x35\x71\xd4\x78\x99\x8e\xea\x15\xc6\x5b\x04\x8a\xa2\x8a\xbe\xad\xf4\x3d\x21\x8a\xa5\x34\xc3\x22\x4e\xb9\x26\xd4\x8f\x09\xc6\x26\x90\xb0\xcf\x40\xc1\x05\xac\x47\x0b\xc0\x22\x76\xeb\xe5\x23\x9e\x8b\xf5\x94\x2c\x16\xc2\x16\x2e\x97\x8a\x83\x35\xba\x86\x89\x0d\x6d\xeb\x95\x08\xb6\x06\xe0\x2c\xe3\x35\xd7\x15\xb6\xe2\xf7\xae\x60\xd8\x62\xb1\x38\xb8\x90\xda\xfc\x67\x4a\x4e\x92\xc4\x96\x0b\xf0\x7b\x0f\xf7\x6c\x33\x50\x51\x24\xa8\x6d\xae\xb0\x52\x1c\xd5\x5c\x81\x5b\x04\xe6\x73\xb1\x53\xd1\x12\xfb\x9c\x92\x13\x38\xec\x9a\x49\x92\x2d\x76\x81\x38\xa9\x70\x04\x6a\xaf\x6c\x76\xd2\x50\xce\xc9\x4c\xc7\xfc\x61\xe7\x03\x27\x03\x76\xde\x8e\x57\xc0\x7e\x18\x44\xa8\x47\x96\xa3\x5b\x08\x82\x18\xce\x97\xd5\xab\x15\x40\x82\x6b\x95\x18\xfb\xef\xcc\x5e\xfa\x9e\xd6\x5e\x6a\x57\xdd\x32\x31\x57\xc5\x69\xa1\x46\x1c\x20\x2c\xc3\xc6\xec\xb8\xac\x57\xd2\x07\x11\xc3\x0b\x75\x68\x1f\x0f\x44\x06\xf1\x8d\xf4\x1d\xb9\x81\x5a\x66\xb6\x38\xb8\xa8\x7f\xec\x8a\x61\xa5\xe8\xd7\x62\x93\x3c\xb5\x15\xea\x2f\x9f\x02\x31\xb4\x60\x02\x84\xdd\x9b\x23\x4c\x01\x7f\xf8\x20\x92\x1d\xd1\x19\x5d\xad\x78\x84\x98\x72\x79\xca\xfa\xec\x02\x70\xca\xbd\x30\x24\x04\xe6\x2a\xe4\x54\xfa\xa5\x67\xf4\xf3\x8a\xb9\xe1\xd8\xed\xe9\xf2\x6a\x28\x53\x45\x8e\x3d\x58\x4b\x73\x00\x42\x22\x29\x20\xe4\x06\x6e\xba\x3b\x45\x2e\x29\xc1\xf6\x51\xa0\xc0\x5c\xff\x50\x2c\x8b\x9d\x63\x92\xa2\x5b\xdc\x0a\x98\x9c\xa8\xbb\x53\xc8\xe5\xe5\xd4\x74\xde\x94\x91\xd6\xb2\x02\x6e\xb2\xdc\x21\xd0\x6e\xe4\x1e\xa4\xba\x69\x3b\x7c\xb9\x10\x20\x03\x17\xf2\xc1\xb7\x32\xab\xca\xd8\x87\xad\x67\x80\x7b\x20\xbf\x6a\x13\x6d\x84\x6f\xd3\x84\x33\x55\xde\x26\x7d\x62\x83\xe2\x9c\x7d\x0b\x06\x8a\x24\xb0\x21\x8a\x75\x2b\x4e\xb8\x87\xdf\x41\x3e\x26\x45\x81\xd9\xca\x3c\x5b\xa7\xff\x7c\x9d\xc8\x25\x4d\x5e\xbc\xec\x51\xdb\x7d\x19\x04\x7c\x07\xc0\x58\x10\xcd\xed\x5a\x66\x15\xef\x02\x98\x46\x77\xa7\x66\x8e\x95\x6e\xca\x85\xee\x5b\xcb\x1e\x68\xfd\x29\xa2\x5b\x9f\x72\x55\x59\x6b\x8b\x46\x21\x85\x22\xa1\xe1\x84\x69\xe5\x53\x6e\xd9\x96\x83\xa3\x18\x7b\x90\xd2\x54\x30\xdd\xad\x76\xae\x3a\xa9\x30\xad\xda\x19\xa3\x11\xe7\xa1\x90\x8d\xea\x37\xc2\xbb\x23\x10\x96\x10\xce\x0a\xb8\x3a\x85\xf9\x62\xc1\xfa\x7a\xb0\x5d\xe5\x8b\x95\xfc\x95\x46\x72\x10\x45\xb9\x77\x2c\xe4\x8c\xe9\x22\xbb\x43\x3e\xdb\xe5\x48\x6f\xdc\x81\xb6\xe5\x8e\x44\xc7\xe5\x23\xa4\xbe\xd8\x6f\x4d\xf0\x03\xa7\xb2\xaa\x89\x5f\x6e\xc6\xa6\x49\xcf\xf1\x62\xd6\xf1\x57\x87\x8b\xb9\xcc\xf6\x44\x06\x7c\xd1\x83\x0d\x68\x33\x04\x1d\xe4\x0a\x8a\xc8\x02\x95\x2a\xb9\x65\x50\xc0\x56\x46\x32\x51\x64\x43\x6f\x51\xbb\xaf\x0e\xd1\x71\x64\x87\x7f\xf5\x30\xda\x8c\x79\xb9\xb8\xb9\x76\xea\x39\xe5\xb4\x8b\xd0\xbb\x95\xa8\x2c\x23\x37\x17\x94\x5e\xae\x68\xab\x26\x43\x3e\xbf\xeb\xd3\xb9\x4b\x28\xfb\xf1\x6c\xde\x9a\xad\x14\x9f\x21\xab\x4a\xc5\xee\xc3\xaa\xa7\xcd\xa4\xdf\x90\xd0\x6c\x3c\xc4\xb5\x28\xa5\x5a\xb3\x4c\x1c\x93\xff\x3b\xfd\x3f\xdd\x2d\xef\x27\x37\x85\x8f\xc5\x84\x0b\x3d\x91\xd9\x04\x47\x68\xab\x4c\x5f\x3e\x43\x09\x72\x7f\xe1\xf2\xa2\xfc\xa8\x87\x2c\x87\xc9\x57\x96\x32\xc9\x15\xf3\x0e\x17\xe4\xc2\xe6\x82\xa1\xf2\xa5\x4e\x98\x91\x95\xf1\xc2\x65\xc7\xea\xee\xb3\x90\x96\x3a\x49\x65\xd8\x9a\xa5\xfb\x6d\xd9\xc5\x41\xb1\x63\xfb\x8e\x95\xfe\xc3\x76\xc0\xb1\xb2\x81\x1b\xb3\xd5\x3b\xbd\xf0\x2e\x21\x2f\x7b\xc8\xb0\xb0\x03\xa0\xa8\xa9\x5c\x0e\x67\xbd\x61\x8a\x91\x8c\x8a\x35\x53\x47\x4e\x6d\x07\xb9\x9e\x3b\x53\x0c\xe3\x53\x49\xe9\x65\xb7\x0e\x98\x8d\x10\xcb\xca\x61\xc0\xea\xc0\xec\x30\x3d\xb2\xf2\x0a\xd7\x00\x05\xb8\xa1\x1c\xac\x97\x03\x60\xd3\xbd\x38\x58\xcf\xdc\x4b\xf6\x56\xe3\x60\x0b\xe4\x61\x0b\xcb\xc5\x16\xc8\xc7\x16\x86\x93\x75\xca\x3c\x23\x2f\x83\x67\x10\x2f\x53\x0f\xb8\x25\xf7\x5f\x8e\x3b\x35\x7d\xe5\x13\xbc\x1c\x93\x17\x8a\x31\xa7\x22\x03\x56\x46\xb7\x69\xc2\x88\xda\x09\x4d\xef\x43\x89\x66\xfd\x67\xb1\xe8\xbc\x5b\x5b\x19\xb2\xed\xee\xdc\xdd\xb7\xd3\x8c\x79\x57\x6b\x99\x35\xaf\xcc\x66\xbb\x5d\x48\xcd\x60\x6c\x43\x3d\x3d\x48\xb0\x51\x33\xce\x68\xd0\x73\x2a\x20\x7a\xbc\xd3\xa4\xbb\xf7\x25\x4b\xe4\xdd\xcb\xc3\x2a\xc8\x1e\xb2\x11\xab\x84\x6b\xc5\x92\x95\x33\x4e\xf7\xe0\x01\x95\x61\xa0\xe6\xbc\xde\x30\xa2\xef\x24\xd0\x1a\x64\x5f\x72\xef\x90\x41\x98\x43\x68\x57\xa6\x66\xef\x59\xbb\x0f\xc2\xcd\xde\xb9\x76\x95\xea\x57\xe6\xdd\x92\x70\x36\xa8\x5a\xb0\xed\xfb\xcf\x84\xbb\x8d\x4c\xec\x22\x1d\xc3\x12\x2d\x16\xe5\x81\xfc\x17\xe0\x2e\x7f\xd8\x50\xf5\x62\xbb\xfb\x04\x3e\x97\x2f\x81\xef\x58\x26\xdf\xb7\x9d\x6d\xa5\x01\xa7\x85\x00\x22\x43\xf8\xd0\x23\xa6\x0c\xc8\x89\xcd\xb8\x03\xe9\x0d\xfa\x8b\x25\x38\x7e\x00\x97\x46\x9b\xd2\x92\x25\x00\xae\x83\x14\x95\xa8\x76\x4a\x83\x09\x03\xa7\xdc\x3a\xe3\xe6\xa4\x0c\x14\x6d\xf5\x52\xca\xa7\x7b\xbe\xc5\x94\xfa\xa6\xd3\xb7\xc9\x05\x50\x1e\x86\x49\xa1\x38\x65\x55\x09\x09\xb0\x56\x5b\x04\x01\x6c\xc9\xc5\x4c\xfa\x81\x17\x52\x4c\xac\x0b\x93\xb5\x87\x91\xbb\x0d\xcb\x98\xd5\x8b\xac\x64\xb6\x65\xbe\x92\x02\x3c\xa6\xb0\xf7\x01\x4a\xbb\x26\x6a\xbc\x7c\x43\x8f\x70\x89\xaf\x7a\x5a\xee\x21\x7b\x55\x9d\x2d\xbf\x9c\x0c\x56\x63\xcb\xdd\x7d\x06\x54\x9e\x94\xa4\x32\x76\x21\x71\x68\x02\x29\x58\xf4\x00\xb7\xd0\xc2\x31\xb4\x93\xda\x06\xc7\x80\xf8\x06\xfb\xf6\xa7\x19\x1f\xf6\xf9\xe8\x26\x0f\x41\x79\x7f\x97\x6d\x9a\xe6\x00\xda\x07\x61\x9b\x78\xae\xb8\x77\x1b\xa9\x50\x2d\x69\xa6\x6f\x45\x40\x23\x00\xf7\x06\x57\x0c\x11\xee\xc8\x5e\x41\x2b\x03\x25\x25\x32\x54\x5a\x22\xcd\xfd\xd5\x2b\x2f\xfd\xef\x5d\xe9\xca\x5d\xa9\xd4\xba\x21\xdf\x2f\xaa\x29\xb4\xd4\x2c\xab\x3e\xa5\x19\x02\xac\x0b\x57\xbe\x55\xa1\xbc\x8b\xd8\x12\x07\x6c\x67\x7e\xef\xef\xf4\xe4\xe2\xec\xf9\x80\x98\x9e\xfd\x34\x5a\x7d\x11\x50\x16\x8b\x7b\xdd\x8f\x2d\x97\xee\xe2\x17\xc3\xa4\x6e\xfc\x12\x0d\xc4\x05\xbf\xf4\x52\x64\xba\x81\xc0\xe9\xb4\x74\x38\x1d\x60\x99\xe9\x14\xba\xeb\xe4\x35\x54\xea\x0e\x98\xb3\x1c\xfe\x5e\xa8\x97\x75\xf1\x1b\xdd\x69\x0c\x34\x7d\xba\xb2\x23\x80\x0a\x8a\xcc\x3b\x48\x9e\x2b\xb8\xdd\xda\x1b\xb3\xc3\x77\x54\xb8\x85\x14\xc8\xe8\xc3\x45\xd5\xb2\x65\x76\x8e\x23\xd6\x43\x5f\x74\x3f\x6c\x5a\x14\x7a\xd0\x7c\xc1\x8c\xf8\xeb\x94\xbd\x32\xab\x9f\xdd\x08\x3a\xaa\x52\x0c\x22\x9c\x26\xb4\xc7\x5a\x69\xe8\xc9\x2c\xa0\x3f\x47\xd4\x1b\x15\x58\x90\xc2\x39\x12\x58\xc7\x8e\x6e\x91\x65\xaf\x63\x73\xff\x53\xb3\x00\xb3\x8c\xa1\x46\x93\xfc\xf0\xf0\x2a\xe2\xe6\xe6\xd9\xe0\x1f\x89\x09\x0c\x0b\x15\x6f\x99\x1a\x06\x8c\x37\xe7\x87\xbf\x87\x13\xdc\x36\x1f\xe4\xb2\x76\x86\xb0\x93\x13\xb6\xd2\xae\xe6\x63\x71\x86\xc0\xee\x19\xa0\xa4\x21\xfe\x46\x84\x92\x33\xe6\x7a\xfe\x5c\x95\x90\x7d\x51\x0e\xda\xdf\x66\xa3\x75\xa8\x0e\x1f\x3e\xd5\x18\xe4\xeb\xeb\x79\x69\xaf\x6f\x75\x62\x30\x54\x62\x9a\xb6\x83\x5e\xf8\xa3\x7f\x96\xff\xc2\x96\xe9\x8d\x8c\xf7\x38\x19\xde\xe3\x07\x8f\x2b\xb5\xe3\x94\x91\xa9\xe3\xbc\x3d\x57\x39\xd3\x27\x16\xb1\x62\xbd\x39\x44\x9d\x5c\xc7\x62\xec\xc5\x41\xfb\x82\x4d\xd7\x53\xf2\xdd\xf9\xf5\x21\x99\x7f\xbc\x3e\x24\x4c\x47\xd3\x97\xe4\x7d\x9e\x68\x9e\xf6\xd9\x39\x2c\x8a\xe0\xdc\xff\x70\xf9\xdc\x5c\xc3\xd6\x10\x64\xf9\xeb\xb2\x5b\xa5\x54\x6f\xf6\x58\xc7\xe7\x73\xd3\xfe\x29\x96\xb1\x6f\x05\xfb\x39\x8a\xbf\x82\x00\xe6\xb4\x58\x2a\x9c\xa6\x5b\x8b\xa1\x8b\x41\x08\x9b\xae\x8f\xc9\x84\xb0\x7b\x1a\xe9\x63\x72\xb4\x92\x92\x4c\xac\x93\xd8\x31\x39\x5a\xd2\x8c\x5c\x7c\xb8\x3e\x3f\x46\x07\x34\x26\x74\xb6\x23\xdb\x3e\xf1\xfc\xc3\xc5\xbb\x7f\x58\xce\xb9\x23\x8c\x83\x02\x86\x92\xc5\x01\x0c\x82\x5a\x64\xf3\x27\x8e\xe2\x74\x1d\x53\x72\xdd\x37\xfd\x5b\x9a\xf0\x98\x16\xca\x3e\x08\xcc\xc0\x9a\x6e\x3a\x54\xc4\xad\x7c\x86\xd0\x5c\x2d\x7e\xe4\xfa\x7a\x6e\x30\xec\x1d\x00\x54\x20\xe2\x0d\xa2\x87\x9f\x55\x33\x0d\xfe\xb1\x4b\xe6\x10\x61\xf5\x88\x2b\x99\x6d\x8f\x1d\xda\x17\xf9\xab\x57\xdf\x44\xa6\x63\xf8\x17\x3b\xb6\xc9\x86\x06\xa9\xbd\x90\xd4\x00\x2a\xe8\xce\x30\x8c\xac\x58\xc2\xb2\xeb\x89\xc5\xf7\x67\x8d\x80\x7d\xf4\xb8\x9a\xec\x91\xaf\x01\x11\xf0\xb8\xd7\x48\x3b\xf5\xc7\xec\x74\x68\x42\x85\x01\x0c\xa9\xbf\x2b\x1e\x6d\x07\x9e\x99\xb3\xd3\xf7\xf3\xa1\x1e\x20\xc0\x8c\xda\x61\xf7\xb9\x94\x57\x88\xcf\x40\x6b\x63\x34\xb1\x9c\x20\x0c\x69\x2f\x18\xb6\x8a\x6a\xc7\xfd\x0a\x3d\xf4\x9b\x32\x2d\x5f\x55\xed\x53\x45\x3d\xc7\xc2\x6a\x6e\xc6\xe9\x12\x6d\xc1\x9e\x6e\x1a\xdd\xbe\xee\xd0\x53\x0e\xa2\xc4\xa8\x3b\x31\x4c\xfd\x9c\x07\xc9\x44\x0a\x1f\x4b\x80\x94\x08\xab\x9a\xee\x71\x59\x83\xa0\x26\x83\x60\xf4\xca\x07\x17\x55\xa8\x18\xeb\xe3\xca\x5a\x2f\xc1\x34\xa9\x59\xb4\x11\x3c\x6a\x26\x2d\xab\x3e\xa0\x16\x45\xf5\x3f\xdf\xa6\xd2\xcb\xa5\x7d\x63\x84\xf2\xe4\xb9\x22\x3c\xd5\x18\x07\xb7\xe2\x19\xbb\xa3\x49\xd2\x03\x2a\x72\x0b\xab\x94\xcd\x15\x3a\x4e\x31\xb1\x92\x18\x2f\x60\x5d\xf4\xfa\xb7\x46\xaf\x0d\x0f\x9a\x7d\xfe\x62\x98\x6e\xa6\xe8\x4b\xc6\xee\xc1\x70\xd5\x67\x02\xc3\x35\x90\x2b\xf2\x27\xf4\xf2\x86\x19\x42\x5f\xe7\xd1\x46\x92\x4b\x3c\xb4\x6d\x55\xc6\x94\x8b\xb5\xea\xb6\x81\x0d\x9a\xef\x00\x66\x90\x86\xc3\x6d\x5a\x10\x32\x9b\xbb\xb0\x9b\xcf\x76\x0c\xab\x28\xb7\x50\x1e\xf7\xb1\x3c\x77\x96\xb1\x56\x2c\x0c\xc0\x40\x4b\xe0\x44\xcb\xe4\xde\xdb\xd6\x9e\x5b\x6f\x91\xea\x0e\xe2\x41\xb2\x6d\x59\x2b\x2c\x14\xc4\x52\x9d\xdc\x67\x31\x8d\x66\x7d\xc7\x96\x76\x43\x93\xf1\x95\xcf\xd0\x63\xa9\x5a\x5a\xb5\x84\xc7\x06\xfc\xa0\xd5\xee\x86\xed\x2c\x69\xa7\x94\xdb\x54\x7b\xdd\xc3\x9b\x2b\x2b\x61\xf7\x3a\xa3\x15\x9c\xd2\xa5\xcc\xf5\x80\x83\xe4\xb1\x6e\x8e\x42\x6a\xb3\xfb\x86\x51\xc6\x05\x36\xee\xf1\xe8\x81\x26\xdd\x9e\x75\xe3\x81\x31\x1e\x18\xbf\xed\x03\x43\x48\xed\xc4\xaa\x56\xb4\x74\x7b\xdd\x0c\xf4\xb7\x19\xe6\x69\xd3\x70\x08\x75\x22\x5f\x8f\x4f\xa8\x6d\xd6\x8e\xb0\x9e\x7d\x3c\xc0\xb5\xe7\x61\x4e\x3d\xe9\xaf\x15\xb9\x8b\x03\x1f\xb7\x8f\x78\xf6\x37\x0c\x5b\xa0\xe1\xf5\x25\x01\x87\x93\x29\x50\x3d\xcf\xba\x34\xf3\xd6\x3b\xd7\xae\xf3\x39\x84\x1a\x5d\x42\xa4\x9c\x8b\xfa\x42\xb5\xf9\x8b\x25\x8b\x68\xae\xac\x4f\x5c\x8f\x29\xa1\x00\x31\x62\x19\xf4\x51\xf8\xd5\xbd\x44\x55\xfc\x7b\x1b\xfe\x55\xf1\x12\xec\x3b\x62\xd1\x7d\xf0\xd8\xf7\x80\x3b\xf4\xfd\xdf\xf0\x0f\xb8\xa9\x54\xfe\xba\x7d\x5d\xfe\x7d\x75\x7a\x8d\x6f\xdb\x87\xb1\x3d\xbe\xe3\x9a\x39\x27\x3b\x2a\x1c\x81\x38\xa3\x2c\xb8\x1a\x92\xaf\x26\x5f\xff\xf1\x8f\x1d\x2a\xff\xa7\x23\x7b\x74\xc4\x18\x76\x1a\x63\xd5\xed\x81\x51\x69\x44\xcb\x8e\x0b\x24\xf6\x34\x06\xa4\x8d\x01\x69\xfd\x66\xcf\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\xb6\x19\x8f\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\xb5\xcd\x64\xe4\x65\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\x1a\x3e\x63\x40\xda\x18\x90\x56\x7f\xc6\x80\xb4\x31\x20\xad\x78\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x0b\x76\x3a\x06\xa4\x79\xb8\x18\x03\xd2\xc6\x80\xb4\x31\x20\xad\xfa\x7c\xc9\x80\xb4\x8e\xf2\x0b\x84\x4c\x6c\x16\xdf\xd0\xbb\x21\x65\xfc\x83\x72\x82\xdd\x1b\x0f\x48\xdf\x5d\xdd\x55\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\x1d\x06\x6f\xcc\xdf\x3d\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xe5\x33\xba\x4b\x95\xcf\xe8\x2e\x35\xba\x4b\xfd\xaa\x5c\x0c\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x82\x8d\x7f\x63\xbc\x6c\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xc0\x33\xba\x4b\x8d\xee\x52\xc5\x33\xba\x4b\x8d\xee\x52\xa3\xbb\x54\xb0\xd3\xd1\x5d\xca\xc3\xc5\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xd5\x67\xcc\xdf\x3d\xe6\xef\x1e\xf3\x77\x57\x9e\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\x3d\x68\x84\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\x3d\xa6\x63\x1d\xd3\xb1\x8e\xf9\xbb\xc7\xfc\xdd\x63\xfe\xee\x76\xf8\xc7\xfc\xdd\xe3\x81\x31\x1e\x18\x63\xfe\xee\x31\x7f\x77\xe5\x19\xf3\x77\x8f\xf9\xbb\x6b\xcf\x98\xbf\xbb\xfd\x02\x39\xe6\xef\x1e\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\xcd\x7f\xc6\x80\xb4\x31\x20\xed\x57\x15\xc4\x31\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x16\x6c\xfc\x1b\xe3\x65\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x05\x9e\x31\x20\x6d\x0c\x48\x2b\x9e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x82\x9d\x8e\x01\x69\x1e\x2e\xc6\x80\xb4\x31\x20\x6d\x0c\x48\xab\x3e\xff\xbb\xf3\x77\x43\x52\xee\xbe\xec\xdd\x1f\x4c\xa3\x0e\xfe\x5d\x5d\x74\x89\xad\x83\x70\xa2\xdb\x1d\xe6\x4d\x06\x45\x89\xe9\x14\x2c\x8b\xf1\x14\x75\x27\x85\xe6\x77\xc3\xd7\xe6\x22\xba\x38\x80\xfe\x16\x07\x70\x5c\xda\xb6\xa1\xae\xe9\xca\x5c\xa0\x34\x08\x68\xd0\x41\x22\xef\x58\x86\xd0\xa0\x1b\xa3\x07\x9c\x22\x72\xcb\xb5\x36\x7c\x97\xbb\x08\x98\x50\xa7\x91\x14\x8a\x63\xda\x72\xd4\xf1\x2d\x0e\xb8\x58\x71\xc1\x35\x5b\x1c\x90\x09\x01\xe7\x39\x6f\x3a\x8e\xab\x5b\x38\x49\x42\x95\x9e\x92\x62\x66\x41\x94\x18\x58\x79\xcc\x84\xe6\x11\x4d\x2c\x80\xf5\x7e\xb8\x20\x34\x49\x37\x54\xe4\x5b\x96\x79\xed\x20\x63\x78\xa8\x57\xcb\xcb\xad\x3a\x0a\x3d\x44\x82\xf7\x53\xa4\x0d\x91\x6f\x97\x4d\x4d\x61\x87\xd8\x58\x3b\xe4\xaf\x7d\x35\x0d\x12\x8a\xa7\xac\xc9\x95\xbd\x73\xf2\xe8\x06\xff\x4f\xe6\x41\xfa\x37\x20\xd7\x2e\xdd\x1e\x72\x6d\xb8\x86\x87\x16\x2d\xdd\x99\xd7\xae\x3a\x28\xe1\x30\xa2\x43\x92\xc8\x3b\x64\x05\xa8\x41\x2a\x74\x2a\x28\xd8\xfd\x05\xd5\x0b\xb8\xdb\x3f\x25\x5c\xb3\x8c\xc2\xcd\x3e\xd4\xf3\x62\x41\x26\x18\xae\x64\x08\x65\x9b\xd2\x8c\x2b\x29\x0e\x09\xc4\x2c\x3a\xb5\x80\xeb\x72\x25\x25\x59\xd2\x0c\x74\x15\xc5\x70\x7f\xd8\x73\xb8\x72\x3c\x73\xb2\xb3\x7f\xe6\x34\xf9\x33\x7a\xd8\x3a\x49\x95\xaf\xac\x88\xca\x15\xb4\x71\x9a\xf7\x62\xc8\xf0\xbe\xfc\x19\xe0\xa0\xa5\x5f\xd8\xb2\xfc\x67\x84\xff\x9c\x4e\xa7\xe4\x3f\x1e\x04\x3a\xcb\x99\x0b\x94\x29\x7c\x4d\x71\x8c\xbf\x93\xb0\x6f\xbb\x35\x39\xf4\x0c\x55\xc2\x6a\x26\xc0\xc5\x00\xe0\x42\x83\xed\x09\x2f\x0c\xd6\x05\x60\x78\x49\x3c\x98\x37\x54\xbd\x80\xfe\x3e\x99\xc3\xe5\x65\x39\xf4\x75\x31\x32\xd5\xe5\xea\x78\x2b\xf3\x07\x20\xd2\x20\xcf\xb7\x5d\x14\xea\x49\xb9\x82\xb6\xa0\x9d\x82\xff\xe6\xaf\x5e\x7d\xfd\x1a\xff\x1f\xdf\x14\xdf\x5c\x6d\x64\xa6\x27\x11\xcf\xa2\x9c\x6b\x90\xaa\xec\x47\xa1\x81\xfe\xfd\xef\xce\xaf\xc1\x8e\xa1\x5f\x60\x9b\x97\x45\xa3\x94\x66\xcc\x4a\xe4\xeb\x4c\xe6\xa9\x91\xc8\x17\x0b\x4d\x93\xe4\x45\xd0\x1e\x65\x53\xda\xa3\x57\x4a\xc1\x2f\x5c\x6f\x8e\x86\x69\x92\x78\x2a\x26\xd8\xa0\xef\x90\x1e\xf0\x0e\x15\xbe\x1e\x51\xb3\xb5\x91\xcf\x38\x4f\x4d\x9f\x65\xaa\x43\x32\x39\x24\x9f\x00\x0f\x47\x53\x72\x05\x5b\x8e\xd8\x2d\xd7\xda\xe9\x56\x66\x8c\xa4\x46\xfc\x57\x8a\xdf\x32\xb2\xc4\x18\x83\x9d\x53\x6f\x5a\xc5\x33\x61\x2a\xa2\x29\x23\xd1\x86\x66\x34\xd2\x2c\xb3\x60\x9f\xa3\xab\x76\x70\x33\xbc\x00\xc6\xbf\xa5\x31\x9b\xe4\x29\x92\x85\x7a\x59\xb0\x23\x08\x6c\xb3\xac\xe3\x8e\x2d\xcd\xc5\x81\x59\xe6\xe1\xaf\x78\xcc\xd2\x44\xee\xb6\x4c\x04\xd9\xa9\xfd\x3e\xcd\x64\xec\x88\x14\xfa\x35\x7b\x0a\x78\x52\x26\x85\x66\x22\xf6\x48\x9d\x46\x37\xf6\x87\xff\x98\xe6\x65\xff\xe4\x0f\x7f\x69\xdb\x01\x31\xbb\x75\xdd\xff\x81\xd4\x76\x41\x88\x95\x75\x49\x54\x55\x65\x60\x87\xb9\xba\x43\x13\xd8\xad\xb7\x58\xa1\xff\x6a\x79\x2c\x84\xa6\xe5\x4e\x2c\xa4\x51\xab\x50\xc0\xf2\x1c\x52\x38\x20\x9d\xae\x20\x64\x76\xee\x9a\x23\x18\x1d\x06\x9c\xa9\x60\x9b\xe0\x22\xe6\x11\x5c\x3d\xef\x36\x10\x30\xed\x0b\xb2\xbe\x57\x96\xbd\xe5\x04\xf9\x94\xd9\x77\xd2\x16\xf0\x38\xb4\x7f\x2d\xa5\xde\x4c\x09\x3a\x4a\xc2\x69\x72\x9f\x1a\x21\x45\x27\x3b\xef\x2e\xf5\x02\x8a\x8f\x04\x3d\x60\x3d\x3e\x2a\x48\x94\x31\x1b\x9f\xa1\xec\xee\x96\x19\x11\x3c\x79\x79\xe8\x62\x2c\x62\xb6\xa2\x79\xa2\x15\xc1\x69\x19\xd4\x65\x71\x8b\x48\xad\x25\xb9\x33\xbc\x72\x66\x2f\x6e\x06\x88\x73\xfb\x4f\xb3\x1f\x2d\xe7\x2c\x2a\x70\xa0\xbf\x1f\xa8\xd6\xed\x30\xa1\x5e\xb9\xc2\xdd\x35\x21\x3f\x5a\xb9\xc8\x80\xe2\xc6\xf8\xe9\xd0\x1e\x0e\x46\xca\x04\xb3\x81\x1b\x12\xeb\xa4\xbc\xe0\x22\x4a\xf2\x56\x88\x37\x8c\x44\xd4\x48\x9e\xd0\x41\xd9\x0d\xc1\xe3\x59\xc8\x62\x32\xd0\xdd\xcb\x00\x24\xe7\xad\xf5\x57\xea\xb0\x55\x00\x33\x2c\xa9\xde\x7d\xfb\x3c\x83\xe4\x51\x87\xa1\x31\x20\x68\xb0\x02\xab\x61\x6f\xd4\x41\xbe\x20\x90\xb4\xaa\xb2\x7e\xc6\xa8\xd9\x47\xd1\x0d\xa1\x6b\xca\xc5\xa1\xa5\x06\x34\x7b\x24\x77\x74\xa7\xac\x17\x7c\x90\x8a\x9d\xb7\x02\xba\x29\x1c\x12\xc1\x6e\x59\x56\xa1\xb7\xe0\xed\x7e\x60\x79\x9f\x12\x0b\x84\xc1\xa1\x51\x18\xf4\x52\xa9\x14\x5f\x26\x6e\xe0\xd2\x0f\xcb\x7c\x70\x95\xb2\x28\x7c\xdf\xc3\xb9\xb5\x7b\xa6\x75\xdf\x2c\x5b\x2f\x6d\xe1\xbb\x5e\xf3\x57\x38\x33\x62\xdf\xde\xae\xb4\xcc\xe8\x9a\xb9\x9f\x94\xa6\x3a\x47\xc4\xa0\xc9\x89\xc5\x17\x9e\x31\xe0\x86\x8b\xd8\xf0\x21\x87\xd2\x34\xc9\x33\x9a\x94\xbf\x44\x52\xa0\x05\x58\x1d\x93\x1f\x7f\x32\xbf\x98\xfe\x59\x6c\x23\x3c\xed\xaf\x0b\x31\x99\x4c\x16\x82\xa6\xdc\x05\x8a\x12\x9a\x72\x76\xaf\x99\x80\x56\xd3\x9b\x3f\xa9\x29\x97\x47\xb7\x5f\x2d\x04\x8e\x78\x9a\x2b\x2d\xb7\x97\x0c\x4d\x59\x67\x0c\xae\x5b\xc0\xa7\x2b\xe1\x98\xa0\x80\x21\x02\x5d\x5e\x15\xd3\x6a\x1a\x65\xf1\x34\xcd\xa4\xc1\x40\x04\x4c\x67\x2a\xb3\xf5\x42\x18\x6e\x06\x5f\x80\x88\x72\x4c\x5a\x9a\x55\x2d\x21\x08\x4a\xe9\x97\x8b\xbf\x26\x5c\xe9\xbf\xd5\xde\xbc\xe3\x4a\x57\x11\xe4\xc1\x64\xf1\xce\xc5\x3a\x4f\x68\xe6\xbf\x32\x6f\x80\x91\x65\xb7\xec\xa3\xb8\x11\xf2\x4e\xbc\x35\x94\xa2\x8e\xc9\x8a\x26\x0a\x56\x4c\x45\xd2\x2c\x6a\xa1\x5d\x81\x9b\xde\xad\x43\xaf\xf9\x63\x62\xd1\x60\xb0\x07\x23\x45\x1b\xb6\x2d\xc3\x55\x65\xca\xc4\xc9\x7c\xf6\xfd\x37\x57\xd5\xdf\x9b\x8e\xb1\xce\xfd\xd8\xba\x78\x95\x43\x4e\xd8\x3f\x73\x7e\x4b\x13\xc3\x70\x2d\xdd\xd7\x7d\x96\x3d\xe2\x6e\x51\x9f\x79\xab\x5f\xa5\xe5\x6a\x56\x0b\x03\xaa\xf5\x1e\x40\x6f\x7b\x04\xc6\xce\x98\xc5\x76\x7a\x08\x07\x70\x13\x7b\x14\xd0\x90\x5e\x44\xae\xe0\xf4\x87\x1d\x31\x05\x11\x81\x65\xca\x5d\x22\x23\x29\x6e\x59\xa6\x49\xc6\x22\xb9\x16\xfc\x5f\x45\xe7\xca\xf9\x33\x40\x75\xaf\xc6\x41\xc2\x85\x66\x99\x11\x26\x80\x15\xa0\xd6\x76\x4b\x77\x24\x63\x66\x18\x92\x0b\xaf\x43\xe7\x4d\xf5\xde\x08\x91\x5c\xac\xe4\x31\xe4\x1b\x52\xc7\x47\x47\x6b\xae\x1d\xe1\x47\x72\xbb\xcd\x05\xd7\xbb\x23\xb0\xb0\xf2\x65\xae\x65\xa6\x8e\x62\x76\xcb\x92\x23\xc5\xd7\x13\x9a\x45\x1b\xae\x59\xa4\xf3\x8c\x1d\xd1\x94\x4f\x00\x76\x01\x3b\x6f\xba\x8d\x9f\x65\x76\xa7\xa8\xe7\x21\x3e\xd1\x64\x2f\x40\xda\x5d\xcb\x60\x28\xdc\x06\xe9\xa2\x94\x8c\xc7\x7c\x81\x6d\xe7\x4a\x72\x79\x7e\x75\x4d\xdc\xe8\xc1\x80\x66\x44\x7e\xf9\xa5\x2a\xd7\xc1\x20\x8d\x8b\x95\x93\x67\x40\xa9\xed\x5f\xff\xf1\x48\x4d\x78\x40\xb4\x55\xf9\x72\xcb\xb5\xf2\x12\xd5\xc8\x29\x39\x2d\xb4\xdd\x79\x1a\x53\xcd\xe2\x29\x99\x09\x72\x4a\xb7\x2c\x39\xa5\x8a\x3d\xf9\x2a\x80\x50\x37\x31\xb8\x1d\xba\x0e\x2d\xc1\xe5\x6d\xaa\xbc\x82\x8d\xb5\x2c\x5b\xb9\x1f\xcd\x89\x54\x8d\x6e\x72\xc1\x70\x65\xf8\x39\x6d\xf0\xb6\xf2\x71\x4b\x5a\x3b\xb4\x3a\x54\xe3\x2d\x7e\xf8\x8d\x12\x80\xce\x55\x70\x36\x2f\x38\x21\xde\x8a\x97\x2c\x91\x86\xaa\xa4\xd5\xcd\xb0\x90\x41\xb5\xfd\x1c\xff\x5d\x9c\xa4\x70\x8e\xc2\xff\x3d\xb3\x21\x6c\xc7\x04\x0f\xb0\x23\xcd\xb6\x29\xf0\xab\x23\xfc\x01\xbc\xef\x4a\x8f\x8d\x4c\x4d\xb2\x25\x8d\xa6\x3b\xba\x4d\xcc\x89\xfc\xf3\xcf\x7c\x45\xd8\x3f\xc9\xf4\xf2\xcd\xc9\xe9\xa9\x14\x2b\xbe\x26\x8b\x03\xd3\x64\x71\xf0\x9f\xff\x98\xfe\x67\x20\xec\x32\x42\x49\x94\xe4\x4a\xb3\x2c\x93\x09\x2b\x4a\xd2\xd5\x7b\x07\xed\x97\x14\x4c\xe8\x43\xf3\x31\x14\xb5\x03\x1e\xa2\x1d\x33\x6d\x01\xcb\xdd\xa4\x4a\x87\x06\x2b\x02\xe0\xa0\x97\x32\x61\x55\xd1\x01\xa6\x41\x73\xbd\x91\x19\xff\x17\x3a\x73\x79\xf2\x43\x40\x3e\x68\x19\x78\x21\x40\x74\x85\x86\xcf\xc8\x85\x8c\x51\xaf\x40\xee\xac\xcf\x96\x96\x64\x2b\x05\x07\xdf\x64\x99\x91\x98\x25\x0c\x77\x3a\x1e\xba\x34\xe5\xdf\x19\x61\xc2\xac\x8c\x59\xc4\x9f\x70\x5d\x0b\x4e\x5c\x10\xe9\x84\x08\xd3\x37\xfe\x79\xcb\xb2\xa5\xff\xea\xce\xb7\x5f\x4c\x60\x73\x94\x7f\xad\x71\x5f\x3e\x23\x73\x97\xc3\xcc\x83\xad\x4c\x2d\xc5\xee\xb9\xd2\x50\xf1\x91\x2a\x92\xd2\xcc\x6e\xaf\x93\xf7\xa4\x9c\xed\xfe\x40\xa7\x32\x6e\x81\x79\xcd\x74\x1b\xc4\xc5\x74\x9e\x21\x00\x45\xc7\x36\xc2\x4d\xf0\x14\x4a\x66\x82\x36\x1b\xeb\x73\x2a\x30\x62\x19\x14\x21\xd1\x24\x32\xba\xb1\xfc\x5b\x1d\x9a\x19\xdd\x31\x73\x31\x50\x24\x65\x19\x97\x31\x8f\x88\xce\xf8\x7a\xcd\xb2\xf0\x42\x84\x25\xbb\xae\x89\x72\x2b\x82\x61\x66\x8a\xf0\x94\xdd\x2c\x3f\x7f\x34\x98\x1f\x5d\xa1\x40\x5b\x6a\x85\x0c\x18\x74\x0b\x2f\x6b\xbf\x6d\xa8\x88\x93\x36\xf2\xe9\x58\x0a\xb8\x8e\xb3\xf2\x6f\x44\x69\xf9\x37\xd0\x33\x0b\x2e\xdd\x5c\xca\xa4\xb9\x17\x28\xb7\x1a\x35\xb2\xa5\x29\xa8\xf9\xe4\x0a\xa7\x83\x69\x05\xe6\x24\x35\xdf\x3d\xda\xaa\x40\x6f\xdd\xcb\xd1\x80\xbc\xc1\x5c\xb6\x54\xd0\x35\x53\x64\x23\x95\xf6\x5c\xd6\x1e\x05\xc4\x4a\x9f\x4f\xb8\x3e\xcf\xc8\x05\x63\x31\xe8\x4b\xcc\x85\x5b\x4b\xdb\xd6\xf1\x65\x2f\x05\xca\x63\x4d\x2d\xd0\xf3\xa3\x4f\xd0\x5b\xb6\xbf\xe5\x4b\x76\x5a\xae\x1a\x1e\x47\x79\x56\xa8\x93\x50\xa3\xc2\xb5\x19\x4e\x11\x23\xf7\x45\xd0\xe4\x71\x26\x6b\x88\xc6\xa3\x99\xc8\x1f\x3d\x38\xed\x67\xa8\xc3\x30\x70\xc8\x3b\xe1\xc1\xd2\xc0\xc9\x33\x8b\x05\x42\x9d\x56\x8a\xf0\x15\x11\x52\x30\xe4\xda\xaa\x0d\x5d\xcf\xdc\x1a\xa3\x58\xd1\x86\xc5\x67\x88\x45\x38\x06\xa2\x4d\x25\xb2\xa2\x40\x30\x88\x0b\x8d\x33\xf5\x0d\x17\xa8\xc8\x7a\xa2\xa3\x55\x26\xec\x92\x61\x94\x82\x5b\x9f\x8e\xfe\x4d\xb3\xc0\xb1\xdf\x3b\x8c\xca\x41\x44\x33\x4b\x33\xb1\x1d\x54\xf5\xc0\x03\xfa\xf0\x3d\x1e\x90\x81\xa8\x9d\xd2\x6c\x6b\x31\x37\x58\xde\x32\x47\x98\x2f\x63\xf5\x49\x50\xde\x67\xe4\x8c\xb2\xad\x14\x57\xac\x4f\x78\x82\xc6\x5f\x4a\x60\x32\x83\x55\x85\xa4\x8f\xca\x16\x25\x46\x5d\x6f\xe9\xab\x5a\xba\xcc\xc9\x1b\x26\x94\x35\x94\xe7\x5e\x96\x9e\xd3\x8b\x99\x91\x79\xd7\x68\x7b\xdc\x4b\x12\xa9\xce\x57\x1d\xc1\x18\xd5\xe6\x17\x15\x07\xd6\x49\x75\x06\x21\xbe\x55\xee\xb6\x67\x70\x2b\x29\xc1\x23\x02\x98\xad\x96\x66\x1f\x83\x14\x74\x88\x02\x1c\x5e\xf4\xfd\xe8\xe5\x87\x8b\x54\x35\xa9\xd0\x29\x71\xb0\xe3\x4e\x4e\xfb\x8c\xb8\xb0\xf0\xab\x84\x3b\xc1\x2a\x77\xeb\x62\x89\xdf\x56\x11\xb7\xf7\x2b\xa7\x7b\x75\x49\xb1\x9e\xb9\x24\x47\x5b\x17\xd7\x50\x9f\x45\xcc\x55\x24\x6f\x59\xb6\x73\xdb\xb3\x6b\x56\xc5\x11\x08\xf0\xec\x25\xe6\xee\x85\xbd\x86\xcf\x5d\x41\x19\x2d\x4c\xfa\xa3\x35\xe0\xb8\xd9\x14\xc4\x3a\x9b\xa3\xbd\x92\xc6\xb7\xe6\x32\xab\x4a\x44\x74\x42\xdb\xd2\xeb\xf5\x2e\xdd\x50\x35\x0d\x8b\xed\xe4\x74\x76\x76\x49\x68\xae\xe5\x24\x66\x9a\x61\x19\x7a\x29\x80\xcf\xd0\x78\x6b\x89\xad\x3c\xd9\xf1\x2c\x31\x12\xd6\x03\xe8\x0b\x3f\x36\xdf\x76\x92\xd0\xfe\x77\x97\x23\xff\x14\xaa\xa3\xd9\x08\x27\x8e\x2d\x24\x8c\x82\xb6\xc8\xdc\xa6\xac\x72\xe1\xa3\xa0\xb7\x94\x27\x74\x69\x58\x5f\x42\xd7\x1e\xa2\x52\x1f\xcf\xcf\x9c\x95\x08\xee\xbd\x0a\x43\xfd\xa2\xaa\x24\xe0\xe5\x7a\x33\x1b\x15\xef\x0c\x45\x52\xb9\x69\xe8\x94\x7c\x46\x7e\xa8\x9f\x90\x06\xcf\x9e\xcf\xa8\x9f\x31\x81\xb7\x6c\x6b\xbb\x93\xb8\x58\x0f\xd9\x11\xb6\x75\x5a\xf1\xf8\x19\xb8\x25\x2c\x81\x2d\x77\x0e\x1d\x06\x70\x67\x3c\x29\xe7\xff\xd9\xcc\xa7\xc6\x6d\x02\x7c\x76\x4f\xd1\xbb\xc6\x45\x53\x17\x8b\x23\x63\x47\x3e\x0f\x83\xb9\x83\xf6\x3c\x0a\x2a\xa8\xc7\x5e\xd9\x15\xb9\xa5\x19\x97\xb9\x22\xa7\x97\x67\xb8\xdb\x91\x96\x1e\x49\x40\xc6\x04\x22\x2b\x96\xf0\x7b\xec\xd7\xc3\xa3\xf7\x6b\x55\x8a\x84\xfb\xdf\x3a\x4d\x19\xcb\x54\xbd\xab\xe5\x3a\x6d\x74\x54\xfc\xd6\xec\xa6\x72\x3d\x6a\xbb\xc5\xb6\x5d\x2b\x71\xc4\x20\x95\x36\x5e\x2b\xe6\x33\xdc\xd6\x6f\x82\xad\x5b\x6f\x11\x2d\xb7\xa7\xce\xfb\x31\x2e\x0c\xb0\x23\x20\x88\x07\x5c\x89\xef\x9a\xd4\x92\x2b\x5d\x88\xe8\x22\x2e\x84\x6e\xc3\x7b\x80\x70\xa4\x30\x12\x78\xa6\xf3\xf4\x29\xee\xb5\xbd\xd4\x32\xf8\x1e\xd6\x7e\xd9\xaa\xce\xb5\x3e\xc1\xc0\xac\x48\xeb\xb4\x48\xd7\xd9\x33\x70\x79\x02\x80\x0d\x63\xf8\xd6\x9b\xd1\x8c\xf0\xa8\x1a\xb8\x61\xf4\x72\x0d\x46\x67\xe7\x05\x24\x05\xca\x5d\xe0\x78\xee\x1c\x76\x81\xc9\xe4\xe9\x3a\xa3\xb1\x0d\xa3\xbc\xfd\x7a\xfa\x1a\xa5\xc6\x08\x13\x2e\x3d\x33\x52\x71\xc6\xb6\xf2\x96\xc5\xd6\x59\xd5\x7d\x20\x33\x33\xc3\x55\xc6\xd4\x86\x70\xa1\x34\x4d\x92\x47\xbd\xd1\x77\xf0\x92\x2a\x4b\xda\x87\xb2\xc2\x58\xa9\x20\xc4\xae\xb1\x39\x19\xb4\x34\x4d\xcd\x8a\xa2\x72\x90\x26\x89\x8c\x1e\x77\x92\xbf\x3e\xe5\x5a\xe3\x60\x44\x72\x80\x2b\x24\x08\x30\x46\x02\xb4\xf7\x25\x90\x91\x8c\x10\x58\xd3\x19\x2c\x0a\x85\x6a\x45\x33\xf2\x58\x0c\x89\x6e\x2b\x27\x4f\x27\x1a\xfc\x7b\xd3\x1b\x50\xd5\x96\xe8\xae\x26\x7b\x85\xcd\x03\x33\x5a\xee\x60\x5b\x23\x3d\x64\x32\x37\x53\x5b\xaf\x33\x17\x89\xfd\x84\x4b\xdf\x2a\x73\xd9\x55\x41\xda\x04\x62\xdc\xf2\xb5\x65\x3a\x95\xfb\x5f\x0c\x17\x73\x70\x2d\x08\x50\x7b\x44\x85\x75\x1a\x7f\x56\x6c\x6b\xd0\xef\x68\xbb\xaf\x8d\x2c\x0c\xac\x00\xb2\x25\x96\xbb\x9a\xe4\xca\xbc\x32\x67\xe0\xc4\x6c\x82\x04\x80\x08\xa2\x82\xa6\xa9\xea\x9c\x79\x09\x62\xc7\xfa\x05\x5c\x30\xba\xd5\x02\xed\x0a\xa3\x5e\x85\xc1\x53\xa8\x7e\xb0\xeb\xfd\xd5\x3d\x4e\x03\xd0\xa6\xe2\xf9\xf9\x67\x26\xe2\xff\xfc\x67\x2f\x25\x4f\xa1\xdf\x81\x14\x29\x5b\x2a\xf8\x8a\x29\xed\xd6\x57\x35\xf4\x35\xd6\x0c\xcb\xb2\xc2\x9c\x01\x4a\x1e\x55\xd3\x8b\xa0\x57\x95\xbb\xb3\xdb\x8b\xa0\xd9\xe5\xcf\x30\xd2\x6b\x4b\x0d\x76\xa0\x91\x69\xc1\x32\xbc\x00\x81\x46\xde\xbb\xce\x58\x91\xa1\x50\x0b\x15\xaa\xa5\xba\x03\x4e\xaa\x06\xe9\x7f\xda\x71\x47\xac\xc7\xaa\xb3\x70\xfe\x49\x4d\x68\x9a\xd6\x97\xcc\x99\xac\x6b\x81\x04\xe0\xe8\xfb\xce\xff\xbe\xad\x07\x62\xb9\xeb\x95\xce\xa8\x66\xeb\xdd\xb1\x35\x5e\x4e\x3f\x56\x7e\x36\x8b\xf8\xf3\xcf\x44\xcb\x7f\xd0\x6d\x52\x7f\x49\xfe\x4d\xb8\x88\x99\xd0\xe4\x5b\x6c\xc7\x12\xc5\xcc\xbf\x48\x61\xec\xbd\x94\x49\xc2\xc5\xfa\xa3\xc7\xc9\x33\xff\xa7\x02\xca\x2d\xbd\xf7\xee\xb4\xc7\xe4\x2b\x8f\x8a\x08\x71\x14\xe3\xa6\x59\x37\xf0\x27\xd5\x29\xb7\x4f\x9a\xc0\x9d\xf8\x92\x8a\x68\xc3\xb2\x89\xb3\xde\xa3\x0d\xbd\xbc\xf4\x62\x96\x91\x68\xc3\xe2\x3c\x61\xd9\x14\xbc\x9d\xa7\x65\xde\x15\x70\x6b\xc8\x38\x84\x95\x4c\x52\x19\x97\x91\x8d\x71\xe9\x6e\x71\xfb\xcd\xf4\xab\x6f\xa6\xdf\x82\x6f\x2b\x71\x43\x87\x93\xc7\x23\xcd\x1f\x12\x0a\xa6\x7a\xf0\x5e\x06\x22\xb6\x43\x9c\xc4\xb1\x14\x0a\x93\x98\xc8\x84\x59\x86\x0a\x79\x3c\x0e\xfd\x4e\xb6\x14\xad\xfe\x0c\x7c\x6a\x21\x38\xd7\x41\x49\x68\x1c\x4f\x20\x82\x42\xa8\x1c\x74\x09\x56\xed\xef\x7f\x9f\x66\x5c\x66\x5c\xef\xdc\xcc\x21\xc4\x57\xd8\x48\x24\x74\x0b\xf1\xed\x8e\xd6\xc5\x2a\xf6\xbb\xe0\x2b\xd3\x31\x38\x0f\x82\x51\x81\xdd\xf2\x48\x57\x82\x69\x87\x63\xf5\x98\x3c\xb7\xfe\x1e\x15\x07\x0d\xb3\x92\x01\xef\xe5\x6a\x3f\x52\x1d\x93\x84\x8b\xfc\xde\x35\xf8\xf9\x67\x9b\x48\xf7\xbf\x6e\x0e\xc9\x7f\xdd\x92\xe3\xbf\x90\xe9\x85\xd7\x13\x71\x64\x6b\x1b\xff\xd7\x0d\xf9\xcf\x7f\x8e\xc9\xe2\xc0\xfc\xfb\xd6\xbc\x3d\xf0\xba\x62\x22\xf6\x3e\x30\xe7\x8d\x55\x77\x54\x73\xf0\x94\xab\x55\x5d\xed\xf7\xf4\x86\x11\x95\x67\x55\x86\x06\x08\x73\xe8\x01\x6f\x68\x9a\x24\x28\x63\x7b\xf8\x9b\xd8\x1c\x17\xc7\xe4\x42\x5e\xd9\xc6\xe5\x5b\x70\x4c\xcb\xa8\x41\x0d\x39\xaf\x98\x42\x70\xdc\xec\xa6\x93\x3e\x50\x96\x60\xe5\xfa\x57\x06\xbe\x61\xbb\xe3\x00\x51\x0e\x1b\xdd\x87\xfb\xfc\x9e\x45\xb9\x1e\x04\x76\x9f\x43\x85\x25\xaa\xca\x71\x75\x11\x62\xb7\xd8\x59\xc1\x50\x2c\x42\xb8\xe0\x5b\xfe\x2f\x46\x62\x79\x27\x34\xdf\x32\x12\xe3\xee\xa0\x8e\x4b\xf9\x37\x09\xe7\xab\xf0\x67\xa2\x59\x92\xf8\xa7\x83\x96\x24\x96\x50\xda\x0a\x34\xc0\xe5\x00\xee\x93\xc5\x41\xe9\x1b\x55\xa5\xd4\x58\x46\xea\x28\x92\x22\x62\xa9\x56\x47\x2e\x01\xa8\x3a\x02\x25\x4d\x2a\xe3\xa3\x67\x2e\x46\x9a\x4b\x31\x91\x2b\xb3\x33\x4a\x7a\xf0\xde\x7d\x97\xd1\x88\xcd\xc1\x9a\x7f\xc5\x22\x29\x62\x75\x4c\x5e\x35\x58\x5e\x99\xbd\x1b\xd5\x76\xae\x81\xdb\xfb\xa7\x09\x55\x0a\x11\xf8\xf3\xcf\x64\x8a\xb2\x9c\xd9\x28\xf3\x7a\x03\xf2\xef\xc2\xf8\xb6\x38\xc0\xc3\x0b\x8d\x35\x8e\xa6\x16\x07\xde\x1e\x31\x02\xe4\xa9\x3b\xb1\x9b\xbc\xaf\x3c\xcd\xdd\x65\x46\x55\x2f\x7d\x35\x99\x0e\xe4\x79\x5c\x60\x23\x69\x4f\xfd\xfe\x66\xda\x4a\x90\xf6\xbe\x60\x8b\x0e\xb9\xca\x08\xcd\xcb\x20\xf8\xed\xf3\x15\xd9\xc9\x1c\xd3\xd0\xd0\x24\x63\x34\xde\xf9\x9d\x5a\x60\xe0\x4e\x91\x2b\xd6\x32\xb8\x73\x1a\xb5\xad\xe1\xb5\x4f\xe5\x7c\x0b\xae\x4d\x3f\xff\x3c\x3d\xbd\x98\xcd\xcc\x1f\x3e\xdb\xb1\xef\xe7\x79\x92\xa0\x03\xf4\x31\x99\xad\x20\x73\x3e\xb8\xf8\xf9\x0d\x23\xb9\xdd\x52\x23\x87\xfc\xb8\x38\x38\x92\xa9\x3e\x8a\x04\x3f\x5a\x72\x71\xe4\xc1\x05\x91\x27\x07\x13\x0b\x4b\x21\xec\xe2\xc3\xc4\xed\xdb\x4c\x6e\x2b\x3e\x5f\x4e\xd5\xfd\x9e\xa6\x4e\xd2\xf4\x9f\x67\xe4\x04\x62\xfc\xfe\xf6\xf1\xcd\xf9\xe5\xc5\xf9\xf5\xf9\xd5\xa7\xab\xf3\xcb\xef\x67\xa7\xe7\x9f\xfe\xfa\xe1\xea\x1a\x8e\x8a\xc0\xbb\xf9\x87\xcb\x6b\x7b\x13\x93\xb7\x2c\xcb\x78\x1c\x33\x64\x34\xec\xcd\xfc\x2d\xd9\x3a\xcd\x83\xff\x20\x16\xbd\x44\x67\xce\x24\x31\x71\xba\xad\xfa\x17\x2e\x14\xa5\x99\x04\x8d\x89\xdb\xda\x54\xdc\x2a\x79\xc0\x5e\x7c\x38\x3b\xff\x74\x71\xf2\xfe\xbc\xde\x2f\x38\x68\x36\x30\x85\x0f\xf8\x9f\x87\x30\x55\xbc\x9c\x53\xbd\x39\x86\x2d\x37\x35\x5b\x03\x42\x45\x83\xa0\x9c\x9e\xbc\x9b\x9d\x7e\xf8\x74\x71\x7e\xfd\xc3\x87\xcb\xbf\xcd\x2e\xbe\xfb\xf4\xe6\xe4\xf4\x6f\xe7\x17\x67\xfb\xc0\x53\xac\xde\xdf\xd8\xae\x0d\xac\x8a\x28\x5a\x35\xb1\xfb\x0f\xb0\x7a\x6c\xf5\xc9\x45\x2e\x79\xcd\x6e\x65\x92\x6f\xd9\xfb\x50\x56\xa1\x09\xd9\x9a\x9f\x71\xe6\x47\xb7\x34\x3b\x4a\xf8\x12\xc8\xd3\x29\x33\xc3\x8b\x5d\x6e\xf0\x89\x60\x7a\x12\xf3\xac\xab\x5f\xd3\xda\xa7\xfb\x70\x9f\x91\xe0\x93\x25\x17\xf5\xce\x14\x8b\x72\x60\x65\x52\x68\x76\x5f\x2f\x42\x97\x66\xfc\x96\x27\x6c\x5d\x75\x4b\x24\x21\x56\x55\xb9\x9b\x98\x2b\xc7\x92\x0b\x9a\x55\xa2\x91\xd1\xec\x6c\xde\xd5\xae\x20\x2b\x9e\x40\x7c\x0f\x5c\x42\x44\x75\x13\x38\xaa\xb0\xfd\x4f\x22\xc1\xbf\x2c\x17\xb1\x03\x8f\x3c\xc3\x9b\xc8\x85\xcd\x28\xe1\xd6\xda\x5f\xc7\x42\xbb\x34\x6d\xd9\xde\x17\xb3\x4f\xa7\x1f\x2e\xde\xb6\xb3\x18\x23\x6a\x7e\xf5\x6a\x62\xd5\x32\xa6\x6f\x50\x8d\x1d\xd4\xa1\x70\x6a\xaf\x1a\x35\x41\x94\x1a\xac\x59\x1b\x4d\xd5\xc1\xb1\xac\x06\xc0\x9a\x7d\xf7\x8b\xb2\x19\xc1\x3f\xd9\xe9\x7c\x0a\x35\x7d\x46\xae\x18\x3a\xad\x9b\x5d\x0f\x89\x3d\x8a\x78\x41\xf0\x99\xfd\x93\xc2\x3b\xbb\x79\xd5\x32\xe3\x5f\x01\xab\x7f\x06\xeb\xf6\xfe\xfa\x23\xb1\x62\xec\x2d\xcd\xb8\xb9\xeb\xb6\xaf\xd1\xfb\xeb\x8f\xbf\xe4\xc2\xdc\x32\xbd\xf9\xb4\xd5\x79\x7d\x1e\xf3\x8c\xdd\x32\x61\x8b\x4b\x96\xdc\x10\xe4\x34\x95\x30\x06\x5e\x8c\x2b\x69\x5a\xd5\x8b\xd0\xba\xd9\x5d\xbd\x3b\x3f\x6f\x54\x72\x2e\x36\x02\x86\xe9\x1c\x3c\xe8\xc4\xf9\xac\x93\x21\xd8\x19\xd3\x91\x3b\xbf\xa6\x8d\x8c\x10\x65\x77\x81\x53\xeb\x33\x0f\x1a\x23\x33\x7b\xf8\xdd\x62\x2e\x3e\xcc\x08\x1a\x31\xa5\x68\xb6\x03\xf6\x83\xc2\xb7\x02\x15\x6b\xe9\x1a\x64\x18\x25\xd4\xcc\x4b\x13\x2a\x2a\x9d\x43\x6a\x8d\x65\xba\x22\x54\x93\x23\xb5\x53\x47\x2b\x75\x04\x7f\x8a\x98\x44\x10\xca\xf5\x35\xbc\xca\x72\x27\x4f\x1e\xe1\xcf\x53\x97\xb1\xd0\xaa\xc8\xb8\xe6\x34\xe1\xaa\x8c\x4f\xc5\x7b\x5d\x55\x23\x60\x24\x71\xa5\xcd\xed\x4f\x66\x9a\xac\xa8\xda\x80\xc8\x0d\x40\x08\x49\x56\x94\x27\xe6\x26\x0c\xcc\x3d\xcb\x64\xa6\x0e\xd1\x73\x59\x93\x98\xab\x2c\x4f\xc1\x5b\xc8\x0b\x83\x15\xae\x22\x59\xfd\x18\x70\xb4\xb5\x38\x00\x4c\x4d\x96\xe9\x6a\xa5\xaa\x54\x54\x9e\x9c\xe6\x4a\xf3\x58\x47\xa7\x7f\xd3\x44\x99\xdb\xa0\xc6\xfe\xd3\x4c\x7e\x82\x93\xaf\x1d\xa7\x83\x49\x1a\x97\x28\x4c\x79\x6a\xa7\x26\xcd\x77\xcf\xc8\x1b\x1e\xf3\x0c\x1d\x63\x68\x82\xf1\xa1\xd6\x7c\x04\xd5\xd8\x40\xf9\x50\x64\x01\x11\xec\x0e\x07\x24\x77\x8c\x6c\xe9\x0d\xab\x53\x46\x9a\xc9\x94\xda\x34\xac\xb2\x60\xc5\xcd\x51\x95\x74\xca\x22\x22\x73\x9d\xf0\x5b\x1b\x67\x56\xa5\xe4\xc6\xd1\x8d\x93\xb5\x63\x80\x1e\xb5\x02\x7e\x9f\x80\x59\xd2\x69\x18\x47\xb7\x34\x9b\x64\xb9\x98\x84\xdb\x3c\x0a\xae\x1a\x5b\xe5\x57\x85\xb2\x67\x04\xa8\x8c\x1c\xa5\x99\x8c\x8e\xca\x0b\xb5\x4d\x1a\x94\xab\x9c\x26\xc9\xce\x06\xf5\xc3\xc0\x69\x26\xd7\x19\xdd\xc2\xdc\x0c\x5d\x9b\x0f\xa7\x64\xa6\x9f\xfb\x5c\x06\x60\x10\x0a\xa5\xde\xdd\x61\x7d\x4c\xc7\x0d\xc0\x52\x55\x6e\x91\x43\x0c\x01\x31\xf0\x64\x52\xea\x82\xe3\xac\x54\x0b\x26\xb5\x24\x54\x6b\x23\xd2\x9c\x5e\xbf\x7b\xe3\x40\x33\x72\x78\x66\xe6\x9b\xd4\xcb\x43\x55\x09\xc4\x41\x1f\x26\x8d\xb6\xb7\xe6\xfe\xff\x41\x24\xbb\xa6\x68\xf8\x30\x9e\x1e\x85\x55\x1f\x97\x39\x98\xbb\x02\x46\x8d\x42\x8c\xf3\xb4\x4c\x20\xd1\xd5\x0a\x2f\x3f\xf3\x35\x27\x0e\x33\x35\x0f\x45\xc3\xd7\xc1\x40\xa8\x5c\xaf\xfe\xf7\x86\x10\x02\x5c\x34\xa0\x3e\x23\x8f\xca\x41\x7f\xdf\xb7\x89\x8f\x8a\xf9\x4b\x7b\x32\x9f\x39\xd3\x95\xb9\x6e\x1b\x01\xca\x9c\xdd\xe0\xc3\xd1\x22\x42\x9d\x9d\x5c\x9f\x5c\x5d\x7f\xb8\x3c\xff\x74\xfd\x8f\x79\xfb\xa5\xa2\x9c\x42\xf3\x32\xf1\x03\xe5\xba\x70\x9c\xee\x1b\xef\x87\x93\xd9\xf5\xa7\xb7\x1f\x2e\x3f\x15\x03\xb7\x8e\x09\x08\x68\x8c\x66\xa4\xf8\xbd\x05\x77\x23\xad\xff\x32\xc2\xfa\x46\x4a\xc5\x8a\x15\x61\xc2\xa9\xfe\xda\xee\x54\xbf\x2d\x0d\x0e\x4c\x11\x6d\x9a\x58\xea\xdd\xdc\x20\x21\x55\xda\x0a\xc5\x47\x2f\x3f\x8d\x79\xdf\x32\xe9\x77\x1f\xaf\xae\xcf\x2f\x7b\x28\xf0\x4f\xea\x70\xb9\x4e\x9b\x04\x71\x52\xfa\xef\xa2\xc4\xfa\xdd\xdc\x2b\xce\xd4\x82\xe7\x59\xfb\xb5\x81\xe6\x5a\x62\x77\xcd\xb1\xce\x05\x88\x8c\xb3\x79\xfd\xfb\xda\xfa\xcd\xe6\xdf\x7f\x3b\xff\xf0\xe1\xdd\xa7\x66\x4b\x6f\xa4\x13\x48\xa8\xd1\x3a\x8a\xcc\xc8\x19\x57\xf0\xcf\xef\xff\xfe\xee\xe4\xc2\x11\xbc\xd3\x97\xdb\xa0\xae\x6e\x4a\x2a\x20\x81\x2e\x5a\x41\xb9\x30\xb7\xac\xcf\x80\xe4\xf6\xf5\x60\x70\x5e\x3f\x1c\x1c\xb3\xf7\xcd\xd5\x17\x98\x4d\x2e\x04\x4b\x48\xcc\xc0\x6b\x1c\x9c\xec\xf9\x8a\xf0\x94\xa7\x70\x87\x00\xc0\xe3\x30\x2c\x6f\xcf\xdf\xcd\xfe\x6e\x96\xe6\x62\x36\xff\x95\x5e\x8e\x2b\x33\xdd\x38\xb4\x57\xe6\xdc\x82\x68\x9c\x1c\xb4\xff\x8d\xcc\xed\x07\x9e\xb1\x75\x4e\xb3\x78\x8f\xf9\xfd\x30\xbb\x3c\xff\xee\xe3\xc9\xe5\xd9\xaf\x74\x8e\xd7\xd5\xdd\xf1\x2d\x6c\x0d\xcf\x7d\xac\x74\x5d\xad\xc5\x9c\x4d\x21\x30\x61\x36\x2f\x4a\x66\xd6\x7b\x8e\x36\x52\x19\xb9\x03\x1d\x04\xcc\x35\x83\x8a\x35\x9b\x92\xd3\x0d\x15\x6b\xcc\xfc\xe0\x6a\x03\x59\x2f\xc6\x8a\x6f\x13\xf4\xba\xa1\xb7\x8d\x7e\x85\xb4\xa6\x55\x5b\x5d\xc8\xe6\xe1\x58\xd1\x24\x71\x19\x5a\x27\x13\xeb\xbf\x32\x89\x78\x5c\xbf\x4c\x84\xdc\x21\xce\xbd\x94\x55\x4c\x37\x58\xd2\xe9\xec\xec\xf2\xa8\xce\x18\xcc\x8f\x0b\xf1\xf3\xcf\x13\x82\x26\xdb\x17\x09\x13\xe4\xbf\xcc\x80\xea\x25\xf9\x9a\x54\xc5\xc4\x76\x76\x87\xdd\x04\x08\xc3\x5a\xe3\x57\x3c\x53\xda\xf6\x5b\xb1\xcb\xb7\x75\xfb\x7a\x50\xb7\x09\xad\xf7\x6a\x66\xc2\x12\xc5\x1e\x0b\xf2\xa9\x3d\x6f\x4d\x33\x6f\x04\xdf\x22\xed\x16\xc4\xf1\x6c\x50\x2e\x27\x72\x0d\xe4\xa1\x24\xc6\x54\xea\xc4\xfc\xa4\xc0\x5d\xa9\xed\x94\xb4\xa0\x9d\xcd\xae\x4e\xde\xbc\x3b\xff\xf4\x76\xf6\xee\xfc\xd3\xbb\x0f\xdf\x7d\x37\xbb\x08\xab\x7a\xbb\xa5\xb6\xb7\x2c\xe1\xf7\x5e\xfe\x10\x89\xb7\x47\xb7\x4d\x30\x79\xae\xf9\xf9\xe4\xf4\xf4\x7c\x7e\xdd\xb9\xff\xcf\xce\xdf\x9e\x7c\x7c\x77\x7d\x7e\x71\x36\xff\x30\xbb\xb8\xbe\xfe\x60\x24\xf7\x93\xd3\xeb\xd9\x87\xf6\x43\x05\xbb\x6d\xc2\xd6\xa4\xdb\x2b\x9b\x35\x30\xce\x69\xa2\x34\x8d\x6e\x1e\x40\x90\xee\x90\xf9\xfe\xf5\xd5\xc7\xb9\xb9\x3b\xec\x85\xb1\x52\x4e\x79\xdd\xf2\x9d\x27\xa6\x0c\xa2\xdc\x8b\x93\xeb\x4f\x1f\x3e\x5e\x7f\xf7\x61\xc8\xe2\xb5\x12\x6d\x49\x54\x70\xe6\x4b\xe1\x5d\x3f\x3a\x17\x6c\x08\x22\x0a\x85\x6d\x2b\x45\x37\x97\x0a\xd2\x4f\x61\x7c\x80\x61\x31\x38\xd8\xbb\x0f\xdf\x19\x5a\x9d\x9f\x5c\xff\x15\xb5\x80\x82\xd9\xa8\x30\xdc\x0f\x40\x88\x6e\x43\x68\x09\x1b\xa4\x0b\x78\xaf\xbf\x56\xe0\xcd\x20\x43\x68\xab\x0d\xe0\xab\xf3\xef\xcf\x2f\x67\xd7\xff\xb8\xfa\xc7\x15\xc2\x6c\x79\x38\x30\xfa\x22\x3e\x59\xac\x64\xe7\x4c\xd4\x4e\x25\x72\xdd\x33\x17\x6f\xa8\xd6\xe9\x74\x6d\x61\x6f\xbc\xc5\xc1\x1d\xcd\x04\x17\xeb\x41\xdb\x2a\x38\xdf\xd3\xcb\xf3\xf3\x0b\xd3\xd7\x0f\xd8\x53\x73\xc6\x43\xa7\x03\x3d\xb5\xce\xe8\x87\x30\xa0\xd5\xee\xfe\x7a\x7e\xf2\xee\xfa\xaf\xe7\x17\x86\xdf\x85\xef\x5c\xed\x3c\xae\x6b\xc2\xb3\xf9\xb5\xe9\xf2\xca\xde\xe6\x40\x1b\x95\x6b\x0c\x20\x2b\x77\xb2\x4d\x20\x2b\x56\xa0\x99\x56\xdd\xfb\xa9\xd2\x61\xe7\x6d\xa6\x0a\xea\x43\xcd\x09\x21\x07\x67\xf7\x3b\xe6\x79\x6a\x48\x53\x51\x9a\x1f\x93\xaf\xff\xf8\xaa\xe2\xbd\x92\xf0\x15\x8b\x76\x51\x52\x4f\x61\x9f\x66\xec\x4a\xcb\xb4\xd1\x09\xbb\x6f\xe4\x55\x22\x9e\xea\xbc\xf9\x66\x42\x7c\x1f\x96\xba\xea\xc9\xb5\x99\xa8\x4d\xae\x63\x79\x27\xaa\xb0\xdd\x32\xc1\x94\x9a\x67\x72\x59\x87\x2f\x08\x47\x1b\x14\xfd\x30\x4c\xc8\x04\x76\xef\xc4\x8c\x19\x78\xb9\xe4\x59\x1c\x78\x97\x56\x5d\xb3\xbe\x7a\x55\x7d\x6d\xad\x29\x67\x2c\xa1\xbb\xd6\x46\xd6\x58\x72\xbd\xc9\x98\xda\xc8\x24\x3e\x26\xb5\x43\x46\xf3\x2d\x93\xb9\x6e\xe9\x20\x63\x34\xe6\x5f\x1a\x4b\x35\x57\xaa\x2a\x9a\x02\x2f\x7b\xf0\xd4\x3d\xc3\x0e\x9b\xca\x33\x28\xe7\xed\xf2\xad\x18\x76\xe5\x85\x8f\x9c\xcc\x67\x46\xc0\x07\x05\x08\x4d\x9a\x07\xe2\x23\x1a\x05\x49\x45\xbd\x5c\x64\x24\x6c\x1b\x2d\xe1\xcb\xa3\xad\x8c\xf3\x40\xae\x63\x1c\x26\xe1\xcb\x49\x4b\x83\x76\x2d\x76\x7d\x94\x2c\x17\x47\xf7\xc8\xbb\xa6\x89\x34\x62\x53\x68\x28\xdb\x62\x12\x6a\xb1\xc7\x94\x3e\xdf\x66\xb3\xe7\x60\xe0\x81\xd4\x33\x98\x41\xe3\x83\x06\xc3\x2e\x50\xd5\xae\x76\xa2\x61\x4a\x08\xcd\xdc\x6c\x18\xba\x6e\x24\xe0\x43\x12\x2d\x94\xd2\x87\xe4\x2e\x18\xc8\xb4\xb5\x65\x94\xd0\xc6\x5b\x5a\x80\xeb\x56\x3b\x25\xc1\x46\x05\xad\x31\xa3\x6f\x7d\x38\xc8\x32\xae\x09\x1a\x8e\x64\xd6\xb4\xa4\xe0\xe4\xd0\x92\xda\x31\xaf\x72\xd0\x70\x07\x66\x2b\x24\x72\x1d\xda\x0a\x8d\xb5\x92\xeb\xc2\xfe\x53\x75\x7b\x22\xad\x14\x8d\xbb\xbe\x6a\x5a\x71\xf1\xde\x7e\x84\x49\xf9\x7e\xd2\xbd\x79\xcc\x16\x07\x98\x6a\xac\xa9\x63\x4b\x4e\x7a\x09\xb7\xbb\xd3\xb6\x4d\x31\xe9\xa5\xd1\xfe\x7e\x43\xf4\x3f\xe9\xd9\xd3\xdd\xbd\x76\xf3\x0b\x0c\xfd\x78\xcb\x13\xf6\x21\x3b\xad\xc4\xf4\x95\xe3\x36\x0d\xd7\xdd\x23\x5a\x12\x0b\x0d\x74\xe6\xc8\xb7\x7d\xb4\x06\x05\x0f\x1a\xac\x41\xcf\xb5\xf1\x7c\x7a\xdb\x96\x16\xd6\x8a\xd5\xb4\x96\xb4\xc5\x73\x4d\xa8\xfa\x44\xb7\x5a\x45\x03\x54\x1b\xb2\x5a\x76\x4f\xa8\xda\xba\x4c\xb7\xe1\x9c\xc6\x4e\x2f\x66\x21\x1b\x60\xd8\x4b\xa6\x7b\xa8\xa0\xef\xcd\xa4\xfb\x4c\xec\xee\xb1\xe5\xac\x2d\x67\x61\x13\x7d\x98\xf3\x3c\x91\xeb\x10\xc6\x5a\x18\xd0\x80\xad\xd3\xc2\x8e\x9c\x49\xdd\x66\x4a\x2f\x38\x28\xdc\x0b\xea\xce\xea\x7e\x48\xae\x75\xed\xa9\x98\x70\x81\x38\xee\x36\x4c\xd4\xe3\x1b\xbd\x8e\xaa\x0e\xef\x45\xfc\xb3\x17\xfa\xec\xf7\xe8\xc2\x25\x95\xcb\x28\xeb\x7b\xa4\xb7\xfb\x16\x4c\x06\x39\xe3\x0e\x64\x38\x41\x97\xdf\x72\xd1\xac\x3e\x35\x65\x19\x84\x50\x7d\x14\xfc\x9e\x9c\x49\x23\x9f\x91\x2b\x59\xab\xa0\xda\x7d\xca\xb6\xc0\xd3\xcb\x1c\x48\x93\xfb\x7a\x07\x33\x84\x2e\xf6\x85\x9f\xf8\xb1\x7f\x65\x7c\x67\x3d\x7a\xf2\xe1\xc1\x80\xfb\x06\x52\xd6\xf3\x70\x15\x41\x95\x57\x8c\xf9\xc9\x79\x37\xf9\x72\x1a\xc9\xed\x51\x25\x1a\xf8\xa8\x99\xc5\x2b\x18\xdb\x68\x23\x20\xbd\x02\x19\xfb\xe4\x30\x7b\x70\xe4\x63\x20\x4f\x99\x8b\x0b\x43\xb5\x7d\x25\x6f\xaa\x2b\x60\x87\x01\x1d\x90\x28\x3c\x61\xa0\xaa\xbc\x65\xc8\xf6\x84\xb5\x54\x64\x2c\x4d\x78\x44\x15\xc4\x1c\x3e\x28\xa2\x32\x34\x49\x55\xc6\x55\x96\xc4\x78\xc9\xca\x48\xef\xbe\x90\xc6\x5e\x34\x12\xd2\x85\x4a\x32\x24\x2a\xb2\xad\xdb\x67\xe4\x24\xb6\x4e\x3e\x2e\x6e\x08\x72\x55\x66\x37\xb5\xb0\xb1\x54\x96\xb1\x7d\xe1\xd8\xc6\x2f\x1e\xef\x67\xf5\xbd\xd3\xeb\x32\xf8\xce\x53\x86\x56\x43\xf2\xbc\xc8\x56\xbf\x79\x11\xd6\xfa\x1a\xc3\x5a\x1b\x2a\xd5\xb6\xc0\xbe\xb0\x22\xc9\x6b\xed\xec\xaf\xad\x59\x7b\x25\xc1\x3c\xe9\x09\x03\x97\xb0\x2c\x17\x6d\x81\x80\xbf\xd7\x30\x42\xf8\x1c\xb3\x02\xca\x84\xd5\xe8\x09\xa3\xb9\xfd\xae\xba\xa6\xd9\xd3\x99\x5d\x98\x49\xcd\x81\x36\xdc\xa7\xd5\x7c\x7b\x44\xf2\xd9\xa1\x8b\x6d\xbb\xb3\x11\xc6\xf8\x39\xb1\x7d\xb5\x24\xa1\x83\xc2\xfc\x0a\x63\x62\x28\xd2\x2f\xe8\xea\x36\x19\xc6\xce\x48\x35\xba\xa5\x6c\xf0\x99\x8e\x66\x0d\x55\x90\xf5\xee\x41\xff\x47\x7f\x03\x6a\x69\xf6\x5c\xcb\x3d\xd8\x6a\x97\x3f\x9d\x7e\xb8\xb8\xbe\xfc\xf0\xee\xdd\xf9\x65\x9b\x1a\xbe\xa9\x11\xdb\xcb\x6d\xeb\x26\x58\xb3\xf4\x31\x75\x9c\xb9\xca\x50\x83\xb7\x61\xd1\xcd\xa4\x9a\x0e\xb5\x6c\x36\xa9\x39\x92\xfe\x6f\xd3\x61\x0e\xc4\x42\xd6\x8b\x85\x2f\x24\x2e\xee\x23\x4d\xd5\x45\xc7\x6a\x5a\x0d\x94\x43\x0c\xef\x9e\xcb\x98\x9c\xa1\xa7\x3d\x97\x82\xbc\xc9\xe3\x35\x43\xaf\xc0\x72\xff\xc1\x25\x0b\x5d\x2f\xff\xa4\x0a\xbf\xb1\x93\x5c\x4b\x15\x51\xfb\x1e\x42\xfd\xab\x53\x44\x71\xdd\x93\x19\xe7\x32\x2e\x87\xc2\x91\x7e\x79\xe1\x31\x90\x79\xe2\x91\xa4\xc0\x83\xc3\xff\x1f\x21\xc4\xc5\x07\xdc\x7e\x33\xfd\xfa\xf5\xf4\xab\x83\x63\x62\x0d\xa5\xd6\xdb\xe0\xf8\x2f\x44\xa5\x09\x87\x72\x37\x64\x71\x70\xb8\x38\x20\xbe\xab\x00\xc1\xba\x01\x36\xab\xce\xb5\x95\x1a\x4b\x4f\x4a\xfb\xc2\xf6\x3e\xf8\xa6\x60\xf3\xf6\x55\x92\xae\x9c\x3a\x1f\x1b\xc2\x55\x51\xa8\xcd\xe5\xb7\x02\x29\x9a\x25\xab\x09\xa4\x98\x8b\xdd\xb8\xbe\x8f\x4a\x99\x34\xd7\x75\xd4\x24\xf9\xf6\xd5\x2e\x1d\x76\xda\xd6\xb8\xf8\xee\x19\xa6\x07\x35\x60\x5a\x83\x2a\x8a\xa1\xda\xfc\xfa\xc9\x1e\xa9\x9f\x5c\x38\x48\x69\xe0\x7d\x46\x4e\x8b\xd9\xb4\x78\x76\x56\x5d\x26\xcd\xe7\x4b\x9e\xc5\xe1\xcf\xdf\x5f\x7f\x74\xf1\xe0\x66\xbf\xb8\xe0\x7d\x2c\x65\xb3\xa2\x91\x2d\x4b\x8f\xce\x51\x28\x7d\x3d\x23\x6f\x76\xee\x40\x3d\x84\x0e\xb8\xf2\x13\x99\xba\x7a\xe5\xac\xe2\x80\xa3\x0b\xf7\x20\xac\xb4\x67\x5d\x7c\x6c\x59\x16\x17\xae\x60\x07\xf8\x87\xcc\xf1\xfa\x83\xbe\xce\xac\x9e\x27\x75\xb9\x23\x69\x26\x6f\x79\x8c\x89\x0e\x84\x14\x93\x7f\xb1\xcc\x5a\xad\xa7\xa5\x00\x6d\x80\x73\xf2\x2f\x5f\x11\xc1\xf0\xa7\x57\xf6\xac\x77\x0e\x54\xd6\xb9\xe5\xfd\xf5\xc7\x86\x53\x4b\x4d\x72\xf6\xbf\xf8\xea\xdb\x6f\x5f\x35\x1c\x06\xda\xc2\x1b\x5d\xe2\xba\xb6\x28\x47\xf8\x0c\x84\x1f\x8c\x7c\x78\xe6\xca\x89\xb9\xe2\xd4\x36\x4a\xb2\xa8\xfd\x9b\x6b\xb9\xa5\x20\xba\x24\x3b\x92\x4a\x5b\x3d\xc1\xe2\xaf\x45\x9a\x02\x9b\xac\x52\x7c\x2d\x3e\xf1\xf4\xf6\xf5\xe2\xa0\xb4\x27\x1b\xf4\x14\x1e\x27\xf5\x64\x7b\x8a\xac\x64\x8e\xce\xb7\xcd\x48\xc7\x63\xf2\xef\x09\xf2\x93\x9f\x1d\x5b\x59\x1c\x08\xa8\x28\x6c\x5d\x67\xcd\xcd\x68\x62\x3f\xf2\x6a\xa5\x2e\x0e\x22\xe1\x36\x16\xb6\x7d\x35\xfd\x66\xfa\x55\xa5\x85\x4d\x80\x64\x5e\xff\x58\x9e\x60\x3f\xfb\x87\xd9\xe2\x00\x9c\x7b\xa1\x03\xab\x21\xae\xd6\x63\x5d\x1c\x24\x72\xfd\x29\x61\xb7\x2c\xc1\x56\x60\xd6\x0f\xb5\x59\xf1\x84\x7d\x4a\xa9\xde\x60\xbb\x80\xf6\xcc\xfc\x6f\x9a\xc8\x75\xe3\xf3\xc2\xf5\xfc\x53\x09\x8d\xef\xb7\x5e\x6b\x6e\xd6\xbc\xc4\xd1\xa7\x4f\xa1\xe0\xce\x4f\x9f\x1a\x9f\x6d\x75\x6e\xbe\xf8\xf4\xc9\x86\x56\x7e\xfa\x54\x6b\x80\x49\x13\x8e\x0d\x86\x06\x3b\x0d\x85\x50\xe8\xb2\x2f\x34\x5b\x96\xf4\xf3\xad\x4f\x3f\x9d\x2d\x2b\x94\xd6\xe1\xe0\xd3\x01\x49\x8b\x5f\xce\x7f\x6a\xf3\xc7\xe3\xda\x62\xa0\xbd\xeb\x9b\x3f\xd5\x3c\x9f\xeb\xfd\xf8\x4b\x17\xec\xcb\x96\x06\x30\xdc\xde\x5b\x42\x8c\x44\xfe\xe4\xfc\x75\xcc\x0a\x56\x46\x29\xff\xf0\x07\x6c\x25\xe7\x54\x66\x7a\x4b\xd3\x06\x19\x28\x41\xb5\x69\x61\x10\x5a\x7b\x15\xd1\x94\x2e\x79\x82\xa9\xee\x00\x74\xe8\xe5\x3d\x16\xe6\x50\xee\xab\x7d\x21\x59\x52\x11\xdf\xf1\xd8\xec\x8c\xfe\x01\xbd\xc6\xcd\xd1\xdc\x3f\x6d\x1c\xe1\x00\xbd\xe0\x4d\x1c\x4f\xa2\x2c\x76\x8a\xc0\x27\xad\x18\xd8\x48\x86\xf9\x04\x75\x03\xdf\x7c\x37\x6f\x64\x6b\xf4\xab\x07\xd6\xdf\x37\x6b\x08\xb6\xa4\xec\x2c\x2b\x09\xd6\x1b\x2c\x86\xd7\x13\xb4\x62\xdb\xe2\x69\x8a\x09\xd6\xe7\x56\xad\x44\x56\x3d\x76\xb0\x16\xef\x0e\x62\x2a\x32\x99\xeb\xaa\x12\x66\x2c\x26\x38\x16\x13\xf4\x97\x60\x2c\x26\xf8\xc5\x8a\x09\xd6\x37\x71\xb3\xa4\x60\xb5\x14\xae\xd9\xc0\x95\xad\x3d\xbc\x76\x20\x55\x17\xf9\x76\xc9\x7a\x6b\x7c\x3f\x3f\xb9\xc2\x86\xae\x46\xa9\x53\xf8\x9d\x5c\x11\x81\x2f\x9c\xf9\x9a\x5a\x81\xfb\xc7\x33\x6c\x12\x0c\xc3\x78\xfd\xed\x1f\xbf\xfa\xfa\xa7\xe7\xcd\x57\x98\x76\xfa\xd8\xec\xce\x6f\xbe\x6e\xbe\x46\x94\x9a\xad\xbb\x66\x0d\x3f\x91\x25\x17\xf1\x7b\x19\xd7\x35\x3e\x4d\xfc\xda\x76\xa1\xf2\xde\x12\x0e\x0a\x1b\xfb\x69\x11\x2b\xf0\x56\x14\xac\x0e\x6d\x75\xe7\x36\x20\x8d\x29\xf2\xe2\x42\x0a\xf6\x12\xb3\x4a\x27\x3b\x3f\x79\xf6\x73\x30\x39\x49\xc1\xd1\xe8\xeb\xbe\x09\xf5\x7a\x61\x30\x68\x96\x7d\xfa\xe6\xbb\xf9\x74\x36\xbf\xfd\xfb\x09\x36\x36\xdd\xc7\x6c\x36\x7f\x39\x25\x16\xbd\x64\xc9\x36\xf4\x96\xcb\x1c\x97\xc6\xc1\x1f\xea\x35\x30\xa5\x06\xfc\x7b\x56\x53\x77\x9b\x2d\x44\x5b\x35\xac\x9f\x96\x4d\x91\x25\xb9\x7a\x94\x08\x92\xdd\xb4\x8e\xb4\x31\xa9\x24\x6b\x3a\x03\x99\x87\x66\x4b\xae\x33\x9a\xed\xf0\xf4\xc7\x60\x23\x8a\x7e\xcb\x18\xc5\xbc\x57\x01\xcb\x20\x98\xbb\x72\xc7\x29\x4d\x45\x4c\xb3\xd8\x2c\x6a\x42\xb3\x35\xab\x83\x1b\xea\x94\xc0\x14\x0c\x73\x0b\x84\xae\xe2\xd3\xb1\x2f\xf1\x01\x89\x20\xfc\xaa\x5e\x7f\x94\x6e\x19\x59\xf3\x5b\x26\x50\x1f\x53\x01\x2f\x38\x38\xe9\xad\xdc\x49\x0a\x65\xf3\x20\x10\xbe\x87\xa3\x05\x32\x51\x2f\x21\x0b\x12\x6e\x65\x73\x51\xa1\xc7\x42\x2c\x0e\x0c\xfa\xec\x1f\xc7\xdb\xed\xe2\xa0\x15\x2c\x02\x3e\x6e\x05\xd6\xcb\xd9\xe4\x8a\x79\xdd\x61\xff\x87\xb6\x46\x99\xf9\x7d\x71\x60\x90\xde\xde\xed\xe2\x00\x3e\xa4\x19\x23\x5f\xbd\x26\x4b\xae\x2d\xef\x9a\xc2\x80\xf5\xa5\xf5\x46\x03\x78\xdb\xfb\x0d\x41\x72\x58\x8c\x26\x62\x73\xb3\xdc\xda\x81\xbf\xf9\xba\x32\xf0\x0f\xe6\x93\x60\x5d\x78\x07\x32\x4c\x0b\xf3\x2e\x9c\x5c\x11\xe4\xc2\x6d\x9d\xa7\x2c\x9b\x9c\x5c\xb9\x28\x5d\x1e\x48\x0a\xe1\x9e\x94\x6a\x23\xfe\x1c\x93\xff\xfb\x62\xb1\x88\xff\xff\x2f\x8f\xf1\x3f\xff\xf5\xef\xea\xdf\xee\xe7\x87\x52\x50\xdb\x11\xe8\xbf\x0d\xd4\x86\x25\x84\xaf\x85\xcc\x58\x3c\x2b\xd4\x64\x7d\xec\x65\x56\xff\xc0\xe3\xee\x98\x94\x03\xd5\x45\x9e\xe2\x4d\x6f\x68\x00\x28\x52\xe6\x21\x5f\x32\xc2\xee\xa1\x92\x98\xf5\xbd\x41\xcb\xc2\xda\x05\xa6\x3e\x80\xd7\x3c\xb0\x58\x2e\xb1\x6c\x7d\x2e\xb3\xd0\x81\x5a\xc1\xc4\xbb\xa2\xa5\x3b\xac\x21\xde\x09\x89\xd3\x30\xdb\x34\x93\x5a\x46\x32\x71\x12\x34\x76\x1d\x24\x15\x7b\xc8\x00\x36\xbe\xfa\xef\xff\x69\x36\xd9\xd2\x7b\xbe\xcd\xb7\xc7\xe4\xf5\x1f\xff\xf8\xcd\x1f\x03\xef\xb9\xc0\xf7\x5f\xed\x79\x98\x27\x72\x7d\xc5\x6e\x59\xc6\xf5\xee\x2a\xca\x18\xab\xdf\x37\x1a\xd3\x7e\xfe\xae\xfe\x85\x9b\x7e\x22\xd7\x44\xd9\x37\x84\x2e\xe5\xad\xb3\xea\x25\x72\x1d\x3c\x7e\xcd\x56\x52\x4c\x14\x35\xe0\x94\x8e\x65\xae\x3d\x91\x86\xcc\x2e\xde\x7e\x08\x89\x2f\x5d\xcb\x6b\x64\x80\xf7\x4c\x6d\xde\xd3\xfb\x4b\x06\x01\xa2\xd7\xbc\x85\xbf\x57\x6b\x37\xf3\x2d\x2b\xad\x2b\x90\x76\x5a\xae\xf4\x9d\xcd\xaf\x6c\xfa\x81\x1f\xc1\x44\xad\xe5\x64\xcb\xd4\x86\xa4\x8c\x19\x10\xd4\x94\x18\x0e\x13\x94\x06\x88\xd3\x5e\xb2\xf8\xb0\xc8\x7d\x5a\x68\xf2\x63\x97\x6b\x62\x9d\xd1\x88\xad\xf2\xa4\x18\xcb\xda\xde\x3a\x7b\x36\xf2\x7b\xa5\x77\x46\xde\xcc\x2e\xcf\x0a\xa9\x51\xae\xc8\x57\x5f\xbf\x52\xce\x86\x60\x3d\xde\x50\x71\x6d\x2b\x76\x34\x1f\x90\xa7\x96\x0c\x22\xab\x6a\x31\xea\x8d\x6b\xaf\xf3\xde\xc1\xc4\x26\xa8\xfc\x0e\x2e\x35\xc1\xd4\x3a\x17\x76\x6d\x5a\xc3\xcb\x87\x2f\xef\x9c\x2a\x75\x27\xb3\x50\xf0\x4a\x6d\x61\x3f\xd8\x74\x20\xb8\x29\xed\x67\xb0\x96\xab\xdc\xfa\x63\x34\x17\x34\x3c\x89\x2a\xfe\x1e\x84\xaa\x76\x21\xc6\xe1\x6f\x2f\x54\xf5\x0a\x37\x8a\x45\x19\xd3\x1d\xa1\xda\x0d\x7c\xa1\x8b\x8f\x11\x1d\x6f\xd8\x0e\x94\x02\xb6\x13\xe7\x62\x09\xce\x2d\xa9\x8c\x9f\xab\xd2\x3e\xd4\x7e\x02\xf6\x01\x48\x6c\x1c\x78\xfb\xdb\x40\x91\x75\x0b\x19\x70\x0d\x84\x4d\x4b\x6b\x29\x84\x9b\xf1\x94\x90\xf7\x28\x22\x75\x75\x4b\x08\x35\xa2\x17\x8f\x5d\x27\x37\xac\xee\x78\x5f\x7d\xfa\x25\x39\xd2\x27\x4f\x36\xa6\xf3\xdc\x4f\x67\x99\xb1\x15\xcb\x98\xd0\xc1\xdb\x77\x57\xba\x6a\x79\xcb\xb2\x5b\xce\xee\x8e\x6c\x19\xb7\xc9\x1d\xd7\x9b\x09\x4a\x04\xea\x08\x96\xe9\xe8\x19\xfc\xa7\x0b\xb0\xeb\x0f\x67\x1f\x8e\xc9\x49\x1c\x13\x09\xf7\xb4\x5c\x01\x4f\x02\x8a\x57\x53\x4f\x2b\x75\x08\x4a\x91\x43\x92\xf3\xf8\xff\x09\xf0\xe7\x7d\x31\x56\x64\xec\x19\x8c\xb5\x2b\x60\x7b\xbb\xf2\x46\xb9\x61\xe4\x0a\x17\x51\x66\x70\x1f\x30\x24\xb2\x1d\x42\x03\xa8\x39\xeb\x90\x67\xdd\x2c\x96\x52\x26\xac\x8d\x6d\x92\xc2\xf8\xd7\x31\x09\x70\x73\xea\x16\xf2\xda\x84\xb8\xee\xf7\x66\x4b\x5e\x4b\xc7\x33\x30\xe5\x48\x08\x90\x1a\xe5\x85\xbe\x32\xdc\xac\xbc\xa9\x17\x2c\xd2\x15\x31\x0f\x41\x66\x18\xeb\xb6\xca\xab\xfc\x53\x5c\x67\x39\x6b\x3f\xc5\x5b\xb0\x9a\x66\x6c\xc5\xef\x4f\xfc\x0a\x96\xbd\xc2\xe9\x3c\xf0\x4d\x79\xbf\x04\xff\x66\x68\x51\x2d\x8c\x19\x9a\x51\x97\x9e\x87\x0c\xbf\xe5\x06\x00\x2a\xcf\x7e\x55\x05\xc3\xe3\x94\x61\x0a\x71\xb9\x3e\x8a\x13\x1f\x6a\x6f\x3e\xec\xca\x1b\xf1\x38\xa4\x8c\x0a\x4c\x01\x1c\x1f\xc0\xa6\x0e\xb2\x5c\xd9\xb3\x13\x6b\x97\xac\x9c\x47\xfc\x19\x77\xe0\x6e\x1d\x47\x08\x32\x4f\xd3\x61\xfd\xef\x9d\xae\x83\x71\x20\xde\xf2\x92\xd9\xc3\xf9\x6c\x9a\x79\xc7\x0a\xcc\x41\xb7\x38\x30\x2c\x46\x4d\xbd\x51\xf0\x6e\x3d\x48\x29\x41\x50\x9d\xde\x7b\x37\xef\xb8\x82\x77\x5f\x56\xbb\xef\xe6\xdd\x57\xf0\xf6\x9e\xfb\xee\xe6\xbd\x57\xf0\x2e\xa0\x7b\xee\xe6\xbd\x37\xf0\x41\x7d\x0f\xbf\x9a\xb7\x6f\x61\x7c\x86\x9c\x5c\x1d\x17\x49\xf2\x39\xd7\x72\xeb\x37\x63\x8d\x58\xb3\x79\x2f\xe7\xbb\xaa\x7f\x00\xc8\x80\x04\xd9\x66\xff\x62\x69\x38\xb4\x19\xe0\x3e\xb6\x23\x04\x79\x9f\x75\x2a\x73\xbd\xd8\x98\x19\x30\x10\xac\xfc\xfb\x86\xf5\x3b\x02\x5f\x8e\x82\x05\x98\x41\xc3\xc4\x8b\x40\x14\x35\xa2\xc0\x5f\x59\xec\x2a\xc3\xd9\x24\x39\x7a\xc3\xb6\x0f\x67\xba\x75\x5c\x60\x19\xb7\xd2\xa4\xe2\xc5\x20\x98\xab\x9e\xe1\xa3\xae\x69\x78\x9d\x4b\x14\x3e\x01\xb3\x7d\x32\xd5\x8e\x5d\xe1\xf3\x7b\xb4\xbf\x0d\x27\x22\xef\x8b\x30\x15\xc9\xcc\xcb\x58\x12\x82\xd9\x76\x44\x5c\x4f\x66\x6d\xa7\x7e\x92\xc5\x7a\x83\x22\x57\x93\xbd\x51\x05\xb5\x05\xc5\x21\x83\x55\x44\xd8\x0e\xa0\xb3\x24\x23\x85\x93\xa1\x15\xb3\x80\x7e\x36\x05\x95\xd0\xf5\x92\x50\x78\x75\xbd\xf9\xff\xb6\x89\xe8\x9d\xa4\xf1\x1b\x9a\x98\xfb\xeb\x1e\xdc\xa8\xf6\xd5\x67\x12\x93\xdf\x5b\x2b\x41\xd9\x42\xcc\x7e\xdb\xe9\x4c\xac\xdb\x0c\x40\x75\xba\xfb\x05\x88\xac\x8a\xa4\x07\x12\x5a\x0d\x37\xbf\x49\x62\x0b\x7f\xd6\xfc\x15\x4b\x9d\xf9\x61\xe7\x4a\xcb\x0c\x22\x15\xf0\x27\xa4\x01\x00\x9f\x46\xe6\x76\xcc\xe2\x8b\x86\xf7\x4a\x99\x9d\xc7\x79\xa3\xb8\x5f\x22\x29\x62\x8e\x01\x45\xe4\x47\x70\xef\x01\x87\xb8\xf8\x7b\xe7\x46\x02\xbf\x5a\x07\x9e\xbd\xdd\x7e\x1e\xdf\xe3\xa7\x19\xec\x55\x7a\x3e\x4f\xd6\x4c\x40\x28\xcd\x32\xe7\x49\xcc\x32\x18\xc0\x0d\xff\x02\x6c\xf5\x2f\x61\xce\x36\xa7\xfb\x35\xdf\x32\xa5\xe9\x36\x3d\x26\x22\x4f\xc0\x83\xb3\x70\x28\x5a\xf1\x44\xb3\xec\x89\x3c\x89\xde\x42\xe7\xf8\x63\xc5\x85\x08\x5f\x04\x7d\x87\x2c\x40\x96\x06\x7c\xa7\xa1\x55\xd1\xdb\x53\x79\x03\x8d\x6e\x3b\xa3\xdb\x8e\xbf\x04\xa3\xdb\xce\x97\x74\xdb\x41\xa6\xd0\xf4\xd7\x81\x2c\xa1\x86\x52\x21\xb1\x1e\x72\x01\x92\xe5\x09\xf8\xf0\xd4\xb1\xeb\x5c\x7a\xb0\xb3\xe1\xbe\x3c\xec\x3e\x95\x99\xfe\xfe\xdb\x3e\x21\xe8\x7a\xc3\x88\xcc\x62\x96\xa1\x4a\xcd\x6c\x53\x80\xaf\x80\xdf\x42\x46\x23\x20\x34\x29\x6c\xcf\x2d\xa7\xaa\x4d\x1b\xaf\x25\xa1\x60\xa5\x78\xb8\xe0\x51\x00\x70\x99\x27\xec\xfb\x6f\x0b\x16\x44\x01\x1d\x1e\xd6\x0c\x72\x15\x57\x6d\x10\x91\x52\x38\x81\x89\x95\x42\x07\xac\x01\x75\x5d\xd9\xa4\x94\xa8\xbe\xe2\xea\x33\xb4\x56\xd8\xd3\x83\x05\x93\xcf\x94\x6b\x6c\xec\xd1\x07\x17\x11\xfb\xd0\x7e\x3a\xf5\xc4\x13\x3b\xc9\xf0\x3b\x03\x7f\xf8\x4d\x05\xb4\x47\xbd\x02\x58\x7a\x7f\xfd\x30\x7a\x7f\xfd\x6b\xa3\xf7\xd7\x8f\x44\xef\xaf\x47\x7a\x1f\xd8\xcf\x6f\x8c\xde\xf9\xf6\xa9\xf8\x3b\xf6\xdc\x4d\xef\x58\x4c\x7f\xe4\xf0\xa1\x97\x23\xc5\x3f\x29\xc5\x3f\x01\x87\xff\x85\x28\x7e\xe4\xf1\xc3\x3f\xff\x1d\x52\xfc\x6f\x4b\xd3\xf4\x8b\x2b\x98\x0a\x0d\x90\xd9\xa2\x4f\xa4\xff\x99\xb3\xa0\xf6\xc7\xfc\x1c\xd4\xfd\x00\x28\x01\xcd\x4f\x6a\xfb\xf9\xa5\xa2\xc4\x46\xbd\xd0\xa8\x17\xf2\x97\x60\xd4\x0b\x7d\x49\xbd\x90\x61\x17\x4d\xad\x90\xcb\x1e\xe0\x85\x63\xba\xc6\xc5\xea\x3d\x7e\x28\x97\x11\x96\x0a\x37\x06\xe7\xde\xd7\x22\xe4\x7c\x4e\x34\x96\xd5\x82\x3f\x40\x76\x2b\x64\x26\x45\x68\x9a\x26\xdc\x95\x83\xe3\x0a\x3d\x65\xf7\x15\xc8\x1e\xec\x73\x7f\xc3\x58\xfa\x21\xe3\x6b\x2e\x68\x72\xc1\xee\xf5\x5f\x03\x19\xec\x83\x3e\xbd\x86\x55\x99\x8f\x01\xb7\xd2\xf6\x40\x04\xbb\xd7\x1b\x99\x5a\x3f\x5d\x0c\x28\x00\x51\x33\x04\xb4\xef\x83\x8e\xc2\xa2\xa1\x0b\xb3\x4d\x31\xd5\x47\x91\x58\xc2\x73\xdb\x42\xaf\xd3\x04\x72\x84\x98\x4f\x42\xfd\x9a\x5e\x54\xe1\x38\x97\xdb\xfa\x75\x8b\x03\x03\x1c\x31\xd0\x19\xb8\xff\xbc\x38\x00\xbf\x60\x46\x63\xb3\x20\xde\x5b\xc5\x92\xd5\x9f\x17\x07\x2f\xac\x3b\xf1\xcb\xd0\x10\xd6\x1b\xb7\x48\x8e\xb1\xcc\xa8\x88\x36\x8e\xd4\x2e\xcc\xd0\x52\xd8\xac\x29\xd3\x68\xb5\x0e\x86\x02\x75\xfa\xe0\x6d\xfb\x5c\xe8\xf7\x74\xa0\xb7\xce\xec\x9e\x0f\x49\x90\x8e\x1e\xea\x24\x5f\xf3\x87\x0f\xf7\xdd\xe3\x22\xdf\x86\xa1\x76\x67\xf4\x21\x3b\xaf\xa8\xad\x58\x54\xf6\x73\x67\x88\xf5\xa1\xb1\x65\x9c\xad\x37\x7d\x5b\xc4\x0c\x57\x44\xd3\x6c\xcd\xb4\xab\x2d\xcd\x15\x6e\x53\x32\x5b\x15\x68\x03\x24\x30\x8d\x47\xb3\x90\x95\xac\x8d\x2d\x9d\x56\x63\x08\x6a\x3c\xc0\x92\xba\x2a\x93\x17\x3a\xca\xb3\x9e\x3b\x0f\xc0\x59\x20\x8b\x64\x10\x77\xae\x5d\xe1\xfb\x88\xe3\x83\x83\xbc\x15\x64\x20\xab\x68\x81\x09\x2e\xd6\x1d\x11\x13\x0e\x45\x80\x9e\x62\x93\x20\x9f\x70\x11\x75\x6c\x9b\xea\x90\x13\x78\xe7\x94\xf2\xed\x09\x9a\xe7\xdf\xc9\x88\x26\x2e\x88\xb7\x97\x29\xbf\xc7\xa8\x1e\x17\xda\x2b\x57\x04\x33\x0c\x17\xd1\xbe\x76\xaa\xce\x0b\xeb\x0e\x5c\x13\xdb\xe8\xfa\xe4\x0a\x72\xe8\xda\x94\x8f\x11\xe3\xb7\xcc\x55\x9b\xb5\x91\x1f\x98\x9e\x18\x97\x36\x91\x32\x35\x62\xb2\x3d\xc3\x83\xbc\x51\x14\xf9\x8d\x9c\x7f\x84\xab\x11\x48\x97\x4a\x26\xb9\x66\xc9\xce\x56\x40\x57\xb4\x91\xb3\x9e\x7c\xe6\xc9\x96\xb6\x47\x78\x0c\x8c\xef\x70\x47\x2e\x17\x6b\x45\xd6\x4c\x98\x9b\x64\xb9\x75\x42\x53\xee\x91\x0b\x48\xff\x8d\x7e\x40\xbc\xc5\x93\x45\x5b\x0c\x88\xb5\xe8\x8e\xb4\x78\xa2\x38\x8b\xbd\xa2\x2c\x86\xf8\x5d\xf6\x44\x58\xfc\x6e\xe2\x2b\x86\xe0\x6a\x40\x6c\xc5\xd3\x44\x56\xf4\xc6\x55\x0c\x88\xaa\xe8\x89\xa9\xe8\x88\xa7\x18\xa2\x1b\x0a\xbf\x35\x1c\x63\x36\x1f\x72\xac\x97\xd9\x05\x7c\x01\x9f\xac\xa4\xe5\xd5\xcb\x1d\xdc\xc0\x1d\x7f\x4a\x65\x16\x0e\x84\x45\xf6\xaf\x25\x7e\x6e\x28\x0b\x4e\x74\x88\x27\x15\x45\x3e\x08\x88\x3b\x3f\x74\x3e\xe5\xa5\xf7\xfd\xe2\xe0\xc7\x45\xfe\xea\xd5\x37\xd1\x6c\x7e\xfb\x1a\xfe\xc5\x7e\x3a\x86\xb1\x82\xb1\xd4\xe0\x82\x5e\x7c\xf0\x2d\x7e\x70\x8c\x3f\xc0\x57\xf0\x03\xfa\x7a\x83\xda\x1f\x60\xa9\x4c\xc2\x03\xca\x49\x1b\x6d\xe7\x47\x71\x32\x03\xb2\x44\x4c\x8a\x0c\x17\x4b\x96\x48\xc3\x97\x41\xf0\xb6\x5a\x2d\xe0\x75\x66\xfe\x5e\x74\x6d\x98\xc9\x02\x7b\xac\x07\xd9\x59\xf1\xe5\x8e\x59\x81\x9b\x6a\x04\xd7\x62\x76\xcf\x53\xdd\x7c\xf2\x60\x41\xc5\x1c\xb5\xba\x90\x57\x2a\x2b\x8b\xb2\x6a\xdb\x09\xe4\x8b\x27\x73\xa0\xc4\x2a\xda\x90\x57\xd4\xc4\x15\x0c\xe5\xaf\xd6\x93\xaf\x4e\xc4\xc8\x9b\x4b\xa6\xef\x18\x13\x36\x58\xd7\x08\x1a\x80\x6f\x2c\xa3\x67\xaf\x33\x3e\xdc\x50\xf5\xa6\x90\xc2\xc3\x2b\x6c\x2b\xb3\xda\x11\xf8\x8a\x2c\xa5\xde\x10\x26\x62\x85\x92\x99\x91\xb0\xde\x7c\x37\x87\x24\x1b\xa6\xa9\x4b\xb0\xd1\x2d\xa6\x83\xae\x5d\xa0\x0a\x7e\x70\xdf\xaf\x1b\x7d\x4f\x89\xd9\xa6\x61\x7d\x35\x4c\xb3\x4c\xab\x12\xc9\x2d\xf3\xb4\x30\x1e\x1a\x9e\xab\xca\x40\x6e\x21\x82\x70\xdb\xc5\x5f\x27\x72\x49\x93\xb2\xfe\xde\x0a\x69\xb1\xdc\x2e\x7b\x52\x62\x66\x56\x96\x2e\x13\xf6\x26\x74\x78\x57\x08\xd1\x9c\x2d\x54\x10\x76\x4f\x23\x7d\x48\xf8\x94\x4d\xc9\xd1\x37\x5f\x1f\x82\x63\x2c\x8f\x50\x1c\x24\x5a\xde\xd1\x2c\x2e\xb6\x65\x58\xa4\x04\x6d\x01\x90\x2e\x0a\x89\xf6\xdb\x55\x82\x39\xd8\xa6\xe4\xb2\x84\xaa\xaa\x70\xe9\xc8\xb8\x62\xd9\xe4\x9a\x6a\x76\x47\x77\x2e\xa6\xc8\xc0\x51\x54\xd0\xa0\xd1\x06\x58\xe7\x9e\x38\x42\x79\xcd\x92\x40\xef\x76\xb5\x14\x52\xc6\xb9\x19\x8a\xdb\xc8\xbb\x46\x9a\x55\xd4\xed\x75\xcc\xa8\x5f\xce\x6c\x0a\x95\x45\xc0\x7f\x7b\x08\xd1\xe2\xe0\xa3\x62\x98\x84\x66\x71\x40\xb6\x8c\x0a\x55\x85\xad\x10\x0d\x0d\x83\xb0\x3a\x89\x0a\xb0\x53\xd3\xc9\x45\xa0\xa2\x26\x3e\xd8\xa5\xa1\xc7\xce\x29\xef\xb9\x0a\x5a\x27\x57\xb6\x36\x62\xef\x01\x7a\xfd\xce\x35\xb5\x41\x83\xf6\x92\x0f\xf8\x4b\x40\x83\x7c\x7d\xfd\xae\xa8\xb5\x48\xb6\x2c\xda\x50\xc1\xd5\x36\x34\x9d\x17\xdf\x5d\x5f\xbd\x7f\x59\x06\xa9\x69\x14\xaa\xd7\x86\x28\x35\x51\xa9\x94\x2b\x16\x93\x94\x42\x39\x13\xb3\x32\x90\xf9\x02\x32\xd9\xd8\xab\x52\x90\x73\xda\xf6\x70\x24\x51\xa2\xb6\x14\x73\x30\x6f\x60\x8b\xa5\xc8\x32\x0d\x90\x98\x00\x06\x84\x02\xcc\xe8\xea\xd4\xdf\x6d\xd7\x78\xb3\x7a\xc5\xad\x6f\x23\x53\x45\x5e\xb0\x78\xcd\xd4\xcb\x0a\x97\x46\x8b\xcb\x5e\xf7\xa6\xdf\x96\x71\xeb\xd7\xe3\x46\x6d\xad\x5c\x89\x8c\x6e\xe8\x0a\xdb\xb0\x27\x31\x76\x99\x11\x4e\x70\x04\x2b\xba\x7a\x26\x2f\xff\x65\xc0\xf0\x55\x85\x6e\x51\xb7\x7f\x79\xaf\xa1\xeb\xd1\x0a\x36\x5a\xc1\x46\x2b\xd8\xef\xcb\x0a\xe6\x73\x90\x81\xb6\xb0\x26\x47\x2a\x9f\xfd\x0d\x64\x2d\xfe\x28\x5d\x52\x43\xcc\x12\xa6\xfb\xf3\x15\x9c\x61\xb3\x4a\xc6\x29\xaa\x91\x72\xac\x8f\x8e\x9d\x85\xa1\xdb\x25\xc3\x14\x52\xf0\x4d\x50\xdf\xe4\x65\x73\xf1\xe9\x7c\x85\x41\xde\x29\xd5\x1c\x32\x02\xef\xf0\xf8\x97\x49\x0c\x32\x5c\xc2\xa8\xea\xc8\x6a\xb5\xe5\x4a\xd3\x1b\x26\x92\x1d\xd1\x19\x73\xe0\xe1\x28\xb4\x1c\xe5\x71\x0c\x0d\x9d\x02\xb1\x2e\x4b\x5a\x0d\xfb\xa6\x45\xd9\x12\x72\xd1\x99\x38\xc4\xd6\x7f\x0e\x95\x5b\x01\x48\x46\x29\xe5\x37\x13\xec\x85\xd3\x02\x15\x00\x60\xf7\x49\xe4\x20\x34\x7c\x99\x1b\xce\x95\x57\xec\xa5\x14\x85\xea\xef\x9b\xd2\x50\x13\xcc\xba\x40\x54\x6f\x31\xca\x44\x16\xca\x51\x26\x1a\x65\xa2\xdf\x8f\x4c\x54\x67\x25\xc3\xc4\xa2\x30\x83\x2a\x9f\x07\x48\x46\x09\x55\x6a\x40\x06\x5f\x6c\x46\x62\x16\x25\xd4\xf9\x9b\x00\x12\xcd\xc6\x35\xeb\x94\x6d\x8b\x2a\x2c\x5b\x29\x78\x8b\x61\xbf\x70\x4e\xf6\x94\xeb\xb8\x2d\xc1\x96\x8c\xb1\xf7\xa8\xf8\xe5\xb7\x2e\x74\xde\x50\x64\xbb\xcb\x36\x5d\xca\x5c\x93\x88\x65\x06\x75\x86\xda\x20\x57\x54\x15\xaa\x2f\xe3\x33\xf4\x60\xcf\x0b\x6e\x11\x1a\x74\xbc\x58\x85\x31\x09\x8d\x6c\x6a\x81\xfd\x84\x30\xdc\x71\xf3\x4a\x99\xb2\x1e\xa8\x3f\x36\x3f\x29\x12\x8c\xc2\x8f\x84\x6a\xab\xe7\xea\x23\x51\xf3\x94\x76\xa2\x62\xf7\x63\x25\x4c\xf2\xca\xfc\x9f\x2d\xda\xd4\xe8\x8a\x64\x6c\x95\x31\xb5\x09\x0a\xce\xce\x6f\x01\x7b\x74\x60\x71\x05\x09\x12\x62\xfa\xb8\x8e\x00\xad\xbb\xbe\x94\xfc\x5a\x30\xd9\xd8\xf7\x38\x33\xff\x00\x95\x4b\x94\x30\x51\x46\x35\x94\x5c\xff\xa8\x31\x97\x0b\x89\xd6\x6c\xdc\x82\x82\xb1\x98\xa1\xb7\x81\xdd\x40\x8a\x1b\x4a\xe2\xa0\xee\xb7\x28\x27\xcb\x9d\xed\x77\x0f\x3f\xc3\x35\x13\xbd\x39\x68\x4f\x4c\x23\xb2\x91\x49\xac\xf0\x03\x07\x84\x97\x0f\x7d\x7f\x17\x86\x25\xcf\xe2\x60\xfc\x53\x63\xfc\x37\xb3\xcb\xb3\xef\xbf\xf5\xf3\x55\x94\xf2\x41\x15\xb7\x39\xb0\x09\xd3\xf3\xb7\x0f\x77\x5e\x48\xa8\xd2\x6f\xa4\x6c\x4f\xe8\x1a\x00\xf1\x9d\xf7\x8d\xc5\x54\x91\xda\x1f\x3c\x6e\xbc\xf7\xed\x5d\x12\x3c\x86\xd1\x95\x4e\x27\x44\xe6\x3a\xcd\x43\x66\x1c\xf7\x0c\xb1\xcc\x9b\xa1\x2f\x59\x25\xd5\xdc\xbe\x33\x0b\x7c\xde\x36\x49\xd7\xf4\x17\x98\x28\x58\x8e\xb2\xd9\xd9\xd0\x99\x5d\x42\x7b\x32\x3b\x2b\xaa\x1d\x00\x3c\x9f\x07\x44\xdb\x7d\x38\x08\x01\x94\x31\x73\x2c\xc1\x45\x8a\x9f\x51\xb6\x0d\x9e\x6f\xfb\x80\x71\x1b\x94\xf6\x5b\x01\x71\x52\xbf\x07\x46\x0c\x60\x7c\x0e\x14\x7d\x99\x26\x81\x01\x84\xc2\xc1\x1a\xe0\x01\x03\x78\xbd\x1f\x03\x78\x3d\x32\x00\x6f\x3a\x23\x03\x08\xcc\x6c\x64\x00\xbf\x24\x03\xe8\x7a\xbb\x5c\xf7\xfa\xe6\x1b\x10\x91\x04\x41\x6e\x36\x7f\xb6\xca\xce\x3d\x7b\x1e\x4d\xa4\xe7\x4a\xd3\x65\xc2\xd5\x86\x0d\x14\x4b\xcc\xe2\x69\xa9\x69\xe2\xd9\x58\xc1\x4f\x85\x95\x3d\x99\x99\x10\xc5\x14\xea\xe3\xba\xd0\xd4\xe2\x9e\x1a\x86\x6f\x10\xd7\x6c\x81\xef\xf5\x13\xc1\x77\x21\xf5\xe3\xa1\x50\x48\x31\xf9\x22\x60\x7e\x1e\x26\x9f\x02\x4c\xb0\xc6\x0f\x43\xdf\x1c\x9b\xfa\x07\xa3\x4b\x0e\x80\xdd\x0c\x13\xd4\x49\x6f\x9e\xd2\x96\x0b\x0f\xf8\x9b\x54\x55\x1c\xc5\x19\x5c\xc0\xd0\xce\x41\xfa\xa1\x1a\x98\xd8\xbd\xd5\x97\xb2\x65\x06\x2d\x1e\x95\x77\x1b\xa9\x58\xa9\xac\x27\x77\x8c\xd0\xb0\x47\x5a\xf9\x14\x8a\x8c\x47\xc8\xe8\x0e\x77\xba\xe1\xb3\xb8\xe2\x18\xc5\x51\x1c\x21\x19\xc9\x18\x55\x52\xc0\x39\x6c\xab\xd8\x76\x1d\x67\x83\xe1\xea\x39\xd2\xea\x70\x01\x34\x56\x99\x00\x7c\x19\x77\x04\xf6\xf3\x08\xf0\x40\xab\xc1\xe0\x5c\xef\xd2\x60\x71\xb0\xc2\x65\xb4\x12\x04\xd4\xbd\xda\xb7\x9c\x16\x24\x3b\xd1\x72\x02\x47\xcf\x96\xa9\xcd\xa1\xc1\xbe\x79\xcb\x44\x51\xca\xd9\x39\xe8\x75\xa5\x42\x26\x58\x5e\x7e\xe2\xce\x30\xd8\x51\x56\x65\xfe\xb9\x88\xea\x93\xbf\x7b\x13\x0b\x23\x27\x1a\xc4\x21\x91\x13\xbd\xae\x71\xa2\xd7\x23\x27\xea\x99\xc1\xc8\x89\xf6\x83\x6b\xe4\x44\xf6\xf9\x3d\x71\xa2\x8e\xf0\x8c\x49\x48\x78\x1f\xd6\xec\x75\x7b\xb3\xba\x28\x3b\xb8\x65\xa0\xcf\xae\xb9\x9b\xdd\x81\x8a\xf8\x5e\xaf\x94\x77\x65\x53\x34\x0d\x6a\x67\x57\x6f\xda\x05\x41\x1f\x92\x41\x8b\x10\xb6\x21\x56\xb9\xa1\x89\xb7\xa6\x42\xd8\xb0\xa5\x05\x0f\xf4\xcb\xc5\x00\xad\x81\x81\x97\x6f\x4f\xbf\xf9\xe6\x9b\xff\x01\xfd\x3b\x96\x4a\x84\xf0\xcd\x8f\xd7\xa7\x1d\x4a\x7a\x33\xc6\x24\x0c\xa4\xc8\x93\x84\x2e\x13\xe6\xbb\x64\x34\x91\xda\xe2\xc6\x0e\xb1\x88\x7d\xf8\xbc\xc4\xb4\x40\xc8\x34\x95\xcb\x12\x04\xc6\x7a\x67\x80\xb6\xb6\x9b\xee\xbb\xf0\x67\xa9\xc0\x71\xd4\x61\xb2\xfe\xa5\x6d\xdb\x10\xf6\x2d\xe8\x4f\x74\xb0\xc2\xb0\x5d\x27\x6b\x7b\xd0\xfb\x10\x04\x0d\x42\x53\x01\xa0\xe6\x82\x76\xe6\x31\x6a\x4c\xe4\xac\xfc\xa8\x08\xce\x33\x00\x3f\x02\xef\xb7\xd1\x05\xc3\x61\xf9\xce\x86\x23\x38\x5f\x7e\x6f\x42\x8f\x00\x4e\x51\x0a\x71\x0f\xe1\xc3\x7d\x12\x02\xe9\xf3\x21\x4a\x18\xcd\x04\x8b\xdf\x66\x72\x3b\x1c\xa6\x77\xe5\x47\x25\xd5\xf9\xd6\xe8\x8c\xad\x69\x16\x77\x0e\x4c\x90\xc9\x65\x36\x62\x1b\x23\x4a\x6c\xe2\x86\x36\x2f\x3d\xf7\x0c\x22\x45\x32\x4c\xd2\x6b\x4c\x6e\xb6\xb2\x71\x0f\x28\x09\xa8\xb2\xfc\x1a\x16\xf3\x35\x67\xee\x21\x69\x2b\x10\xe1\x3f\x35\xa1\x11\x35\x9f\x36\x62\x9d\x09\x4d\x72\xe5\xcd\xbd\x73\xc2\x64\xf0\x7a\x92\x22\xfe\xe5\xba\x4f\xec\x69\xcc\x1c\x26\xec\x42\x7c\xd1\x5f\x05\x57\x88\xda\xe5\xe1\xca\xd1\x4b\xff\xe4\x21\x24\xf8\xb1\xe6\xd4\x2f\x9b\x90\xcf\x15\xf4\xb8\xb7\x48\xa5\xcf\x28\xe8\x9c\x5b\x5c\x01\xbc\xb9\xca\xec\x0e\xe9\x9d\x40\x59\xc8\x5f\x5c\x18\x2b\x4e\xad\x41\xf7\x42\x7b\x6a\x35\x2f\x86\xe3\xa9\xd5\x31\x91\xf1\xd4\xea\x00\x68\x3c\xb5\x9a\xcf\x78\x6a\x8d\xa7\x56\x5b\xab\xf1\xd4\xea\xfc\xfc\x37\x19\x23\xf0\xcb\x87\x30\xda\xac\x4c\x1e\x8f\x7b\x12\xf7\x7d\x5b\x32\xad\x1c\x05\xdf\x7a\x0e\xfc\x8d\x16\x01\x17\xfe\x26\xac\x76\x05\x4b\x1f\xfe\x46\x93\xc5\x2f\xe8\xc5\x5f\x73\xd4\xad\xcf\xb0\x2a\xd8\xb8\xca\x76\x45\x86\xb6\xb0\x97\xec\x18\x19\x30\x46\x06\xf8\x4b\x30\x46\x06\x7c\xb9\xc8\x80\xc6\x0e\x6e\xc6\x06\x20\x45\x9a\x9d\x81\x9f\x2e\x43\x69\x0f\x5a\xb3\xe1\x75\x85\x03\x00\x8b\x0d\xef\xf1\x26\xa4\x7e\x63\x67\x38\xb9\x2d\x7d\x83\xac\x4a\xd4\x06\x44\x16\xd0\x84\x0e\x64\xc3\x04\x72\x21\x3a\x3c\xee\xc3\x07\xbe\xed\xf2\xbb\x8f\x41\x3f\xae\x10\x5e\x4d\x53\x07\x2b\xfc\xdb\x4a\x6c\xad\xc0\x0d\x18\xbe\x45\x56\x0c\x0d\x0f\x62\x93\x5d\x34\x2f\x8c\xe2\xb3\xa0\x30\xc4\x07\xc7\xff\x25\xa3\x71\x6f\x8e\x8b\xb3\x4a\x6b\x97\x64\x92\xc4\x39\xb0\x08\xc5\xd7\x02\xa2\x4e\x84\x2e\xfb\x25\x5b\xbe\xce\xfc\xa3\xb0\x06\x9b\x84\xcf\x68\x82\x69\x3b\xb6\xa9\x14\x70\x75\x57\x79\xb4\x21\x54\x91\xb7\x2c\xe1\xf7\x36\xdd\x4c\x91\x24\xea\x8e\x72\xb3\xcb\x57\xb2\x25\x8b\x4f\x14\x31\xa5\x1c\x87\x2a\x20\xd9\x37\x5b\xe8\x2d\xcd\x38\xed\xf7\x59\xff\x1e\x9b\x95\xe1\x2d\x18\xcb\x60\xbf\xf6\x68\xd9\xab\x2f\x0d\x11\x2a\x7b\x85\x5e\xfc\x26\x85\xc7\x5f\x8d\x0c\xb9\x32\x54\x54\x71\x2c\x7d\x0a\x19\x12\x68\xb5\x92\xc0\xab\x2e\x43\x36\x5b\x34\x65\xc8\x00\xac\x75\x19\xb2\xd9\xe4\x57\x23\x43\xe2\x7e\xad\x4c\xb1\x26\x44\x56\x5e\xad\x64\x86\x9f\x8c\xf2\xe3\x28\x3f\x8e\xf2\xe3\x2f\x2d\x3f\x36\xf9\x53\x97\xfc\x68\xfe\xc2\xfd\x5e\xd9\xd4\x7b\xc4\x84\x25\x89\xbc\x9b\xcd\x67\xf3\x39\xe6\xa5\x7a\x9b\xc9\xed\x0f\x32\xbb\x49\x24\xed\x8f\x2b\x7c\x7e\xd2\xf5\xb5\xcb\x23\x50\x3a\xbf\x00\xa4\x21\x71\xc1\xd6\x7b\x8f\x09\xc5\x8a\x3a\x5a\x92\x38\x93\x29\x31\x5d\x13\x26\x22\x9a\xaa\x3c\x01\x77\x08\x9d\xd1\x95\xb9\xf7\x62\xdd\x79\x37\x54\xa8\xcf\x1f\x6d\x42\x34\xcb\x7e\x7f\x0a\xe4\x3c\xed\x94\x3d\x00\x33\xdf\xff\xfd\xdd\xc9\xc5\xc3\x51\xd3\xfa\xf9\x23\xe0\x06\xfa\xfe\xc5\x90\x73\xa7\xae\xb2\xe8\x4c\xe9\xd3\x0d\x8b\x6e\x7a\x91\x71\xc5\xb4\xd5\xa9\x4e\x3c\xfd\xfd\x24\x32\x1f\x13\x29\xc8\xc9\x0f\x57\xe4\xfc\xf4\xeb\x22\x6a\x56\x4d\xc9\x89\x95\x8c\x42\xd0\x23\x23\x73\xf9\x2a\x6d\x09\xed\xc5\xc1\x99\xbc\x90\x7a\x63\xb6\xe7\xc1\x21\x59\x1c\x9c\x43\x06\xb8\xc5\x01\xa6\x27\x3d\xc3\xa8\xd4\xc5\xc1\xb4\x9c\x7c\xa8\xef\xa2\x93\x10\x4e\x98\xc8\x43\x86\x82\x49\xf9\x55\xe8\xa5\x05\x24\xf4\x99\x05\x6a\xaf\xfb\xc2\x32\x5d\x9d\x4a\x21\x58\x04\xf1\x45\x65\x9d\x6e\x2e\xd6\x38\x52\xaf\x7f\xd1\xf3\x37\xf3\xb7\x3d\x5d\xa0\xe3\x10\x17\xe4\xcd\xfc\x2d\xd9\xca\x98\x05\x93\x53\x86\xa9\x18\x97\x31\x49\x0a\x69\xc3\x0c\x64\xd6\x5b\xf3\x2d\x23\x86\x26\xc9\xd2\x55\x52\x6f\x4d\xa7\x69\x3f\x0b\x7c\x83\x5e\x4a\xe8\x25\x56\x98\x85\x36\x52\x41\x04\xb2\x11\xed\x97\xb0\x4b\x42\x9d\x42\x2a\x48\xbf\xc8\xbb\x2d\x46\xaf\xd0\x8f\x49\x13\xbe\x4d\x33\xc8\x67\x6e\x63\xa3\xe1\x12\x2f\x22\x20\xb0\x54\xc6\x13\x2d\x27\xf6\x93\x0e\x98\xe1\x2c\x21\x58\x1f\x43\x24\x3b\xe7\x1e\xe9\x85\x46\x63\x28\xaf\x81\x3d\x66\xcb\x7c\xbd\x36\x47\x71\x9a\x67\xa9\x54\x86\xf4\xbb\x09\xd4\xdc\x21\xf6\xde\xaf\xcb\x74\x75\x76\x75\xf9\x21\xd5\x32\xd7\xa7\xb3\xb3\xcb\x5e\xfe\xf5\x66\xfe\xb6\xfa\x01\x4a\x12\x46\x8e\x86\xfb\x14\xfc\x84\xd7\x2c\x9a\x31\xc2\xee\xa3\x24\x8f\xc3\xbb\x15\xb8\xd1\xd9\xd5\xe5\x94\x5c\x63\xca\xd2\x43\x2b\x10\xd8\xac\xff\x52\x31\xd7\x1f\xb0\x3a\xb8\x3a\x32\x0c\xf5\x01\x87\xad\xe0\x05\x13\x6c\x16\x6f\xe6\x6f\xcf\xef\x51\x92\xb3\xb5\xef\xdf\x43\xba\x5f\x0a\x19\x6f\x0d\xc6\xaf\x73\x21\x58\xf2\x65\x12\x08\x18\x24\x53\x4d\x67\x2b\x1a\xb1\x39\xd5\x06\xae\x21\x68\xae\x7d\x82\x88\xce\x18\x5c\x34\x08\xbb\x37\x32\x17\xc8\xd2\x70\x03\x77\x3b\x2e\x78\x52\xc0\x72\x14\x56\x56\x77\x73\xb7\xa2\x32\xd5\xda\x10\xbf\xd9\xcf\x69\x26\xd7\x19\xdd\x82\x8c\xcc\x45\x91\x96\x35\x48\xd2\x54\x47\x9b\xe2\x60\xd1\xf2\xa8\x90\xf0\x04\xd3\xe6\x88\x99\xda\xa4\x57\x82\xb1\x18\x3a\xdc\xe2\x17\x1b\xe6\x41\x12\x44\xb3\x99\x8e\xbd\x97\xbb\xb3\xaa\x3c\xc1\x20\x9b\x84\xbc\x65\x99\x59\xe9\x3b\x66\xe8\xc2\x6c\xd2\xdd\x90\x4e\x37\x54\xc4\x66\x93\x89\x48\x6e\x41\xc8\x2d\xa0\x2f\x69\xca\xa6\x28\xb6\xbb\x1f\x26\x25\x73\xad\x78\x3d\xd5\x94\xeb\xb6\x54\xc6\x11\x32\x2b\xb4\x20\x46\x54\x2d\xe7\x5b\xcc\xc2\x5b\x82\x17\xb9\xca\x69\x92\x04\x7d\x2b\xcc\x65\x2f\x86\x0b\xf9\x74\x3a\x7d\xb9\x67\x1a\x08\x43\x6c\xc8\x4d\x3e\x8a\x34\xe3\xb7\x3c\x61\xeb\x61\x9c\x3f\xf0\xd9\xa1\xd9\x4c\x98\x31\x35\x3e\x74\x64\xc3\x6c\xe8\xed\x8d\x61\x96\xc9\x34\xf7\xda\x7f\x5a\xa6\xab\x4f\x96\x99\x05\xf7\xbc\xda\xa9\x48\x27\x3e\xcb\xf3\x3f\x87\x5c\xda\x12\xb6\xaf\x23\x1f\x26\x94\x2d\x84\x43\x75\xa5\x6d\xa8\xf7\x5c\x99\xab\x47\x84\x57\x05\xe4\x17\x96\x92\x9e\x3f\x57\x78\x62\xd1\x14\x97\xd8\x36\xe2\x42\x99\x6b\xa2\xde\x30\x9e\x11\x79\x17\x74\x1d\x68\xee\x0c\xb3\x8a\x2c\xb3\xe9\xc3\x8b\x01\x3c\x01\xe2\xc1\xcc\x78\x8f\x83\xfa\xdc\x2d\x4b\xb9\x44\x76\x85\x80\x5d\xba\x3a\x40\x06\x7a\x73\x0d\x49\x13\x2a\xc2\xe6\xf4\xcf\x95\xf9\x00\xec\x95\xcc\x22\x76\x39\x7f\x3b\x0c\x72\xd7\x9a\x30\xfc\x27\xd0\x72\xa4\x89\xf9\x49\x0a\x28\xff\x02\x07\x77\xf7\xa6\x06\xf4\x57\x56\x07\x3d\x2c\x12\xeb\x5e\x70\x67\x33\x61\xdb\x33\x7b\xe2\x6d\x3f\x99\x59\x77\xf8\x20\x91\x62\x41\xa6\x29\x99\x4b\xa5\xb8\x21\x52\x7b\xb1\x32\x27\x9a\xdd\x25\xf1\x21\xb9\x42\x98\x65\x46\xde\x49\x69\xae\xa0\x9d\xc7\x33\xb4\x69\xc7\x6d\xeb\x66\x3e\xbf\xd7\xd7\xd2\x1e\x62\x46\x36\xdb\xd2\xac\x5f\xae\xc6\xf3\xaf\xf1\x5d\x45\x6e\x73\x47\x06\xa1\xe4\x9b\xaf\x97\x3c\x9c\x61\xd0\x7c\xe4\x12\x8a\x43\x2d\x2f\xe1\x0b\x33\xb6\xa0\xaa\x20\xcc\x1e\xb6\xf6\x00\xc7\x44\xfb\x90\xf7\x3d\x8c\x5f\x80\xca\x56\x8a\x81\x31\x6c\x9a\xa0\xdc\x65\x9e\x06\xc0\x36\xf2\xae\x48\x8b\x2c\x57\xc5\x39\x67\x47\x0f\x9e\xfe\x99\xf5\x55\x88\x81\x38\x6c\x59\x13\x20\x25\x97\x75\xdb\x7a\x96\x40\x9a\x77\x43\x0f\x69\xe6\x6a\x1c\x5d\xce\xdf\x06\x4f\x3a\x73\x19\xf1\xf7\xf6\xab\xf6\x55\x6c\x89\xe8\xc4\x65\xac\x8b\x23\x03\x57\xb1\x21\xc5\x84\x16\x51\xc1\xdc\xbc\xa5\x69\x15\xb8\xec\x69\x56\xb1\x1a\x43\xa1\x15\x7b\xe4\xbd\xb0\x45\x60\xdc\x59\xe8\xda\xcc\xe6\x2a\x58\x1a\xcc\xa0\xdc\x7a\x7a\x98\x9b\xa6\x74\xf9\xec\x8b\x6b\xa6\x39\x18\x57\x4e\xec\x5a\x1c\xa0\xe0\xb5\x38\xc0\xfa\x09\x4b\xa9\x83\x75\x04\xac\xee\x07\x20\xc8\x98\x4a\xa5\x30\xec\xcc\x9e\xd7\x66\x4b\x43\x2f\x38\x60\x2d\x89\x3e\x8c\xd7\xb2\xad\x11\x84\xb3\xab\x4b\x73\x13\xc4\xef\x70\x9c\x50\xd7\xcb\x5c\xdb\x36\xd5\xf1\x5b\x0c\x5d\xe0\xbc\x14\xf3\x8c\x45\x3a\xd9\x05\xd3\xfb\x1b\xc8\x84\x1b\xdf\xae\x5f\xd9\x24\x28\x09\x40\xd1\x84\x34\x65\x34\x53\x7e\x71\xb7\xd9\xdc\x29\x79\xb8\x58\x83\x37\x95\x69\xf9\x67\xa7\x36\x85\x3b\x90\x22\x34\xd4\x65\xca\xb2\x2d\x57\x8a\xdf\x32\xf2\xee\x6b\x4f\x58\x2b\xe9\x1b\x57\xe8\x01\xac\xea\xaf\x52\x69\xc3\x6a\x74\x46\xa3\x9b\x37\xbb\x94\xf6\x67\xc7\x37\x34\x1e\xf8\x8c\x9c\xd6\x2f\x90\xe6\x0a\x87\xaf\xde\x71\x91\x07\x15\x22\x91\xeb\xc3\xdf\x21\x70\x99\x2a\x68\xb1\x22\xdd\xd5\xcf\xeb\x50\x9f\x93\xca\xa8\xe5\x10\x0f\x39\x24\xcd\xf5\x72\x9e\xc9\xfb\xdd\xb9\xd5\x81\x5e\x25\x06\x8c\x81\x47\xfe\x9b\xf9\xdb\xee\x0e\xc2\x7c\x21\x7c\x1f\xf0\x2e\xe5\xcf\x15\x61\xdb\x25\x8b\xcd\xee\xbd\xc9\x97\x6c\x92\x9a\x11\xac\x01\x4a\x91\xea\x50\xed\x8e\x5c\x83\x27\x3f\x4b\x35\x24\xe0\x3f\x35\x0d\xf3\x74\x0f\x81\xa7\xa7\x8b\x8a\x20\x84\xb8\x08\x1e\x69\x80\x1e\x4f\x50\x4a\x33\x89\x46\xbf\x64\x47\x22\xd3\x23\xc9\xb1\xca\x63\x9e\x2a\x9d\x31\xba\xf5\xf5\x02\x25\x86\x9e\x3f\x0f\xd7\x54\xb1\xb0\x91\x68\x43\x39\x5c\xf7\xaf\xaa\x65\xcd\x0a\x08\x57\x3e\xba\x6d\xbd\x0e\x6b\x2c\x7f\xaa\xab\x7e\x81\xc1\xf7\x5c\x5c\xed\x44\x84\x99\xdf\xf6\xc2\x7d\xe5\xcb\xc3\x96\xb3\x48\x87\x55\x37\x5b\x2e\x20\x97\x1b\xa8\x6e\x5c\xed\x01\x54\xe7\x17\x66\x99\x42\x54\x2d\xed\x4f\xcf\x3d\x12\x0d\x75\x5b\xa2\x71\x6a\xc4\xac\x3b\x96\x39\x79\x6d\x6d\xb8\x5c\xc6\xe2\x3c\xc2\x52\xa4\x93\x3c\x05\xbb\x8f\x88\x4c\xd3\xbf\xf2\xf5\xa6\x68\x1b\x3e\x84\xcc\x97\xce\x6e\x36\xff\x48\x72\x45\xd7\x0c\x52\xc4\x98\xbb\x1d\x78\x42\xa6\x64\x2b\x33\x3c\xed\x2a\x4c\xf4\x2b\xf5\x00\x06\xfa\xee\x9b\x3d\x75\x04\xd5\x0f\xba\x35\x04\x28\x62\x05\xc9\x49\xa2\xfe\x06\x4f\x3e\x12\x33\x94\x04\x12\x7e\x63\xae\x38\xa6\x3f\x9a\xc5\x10\x51\x7a\x9f\x50\x41\x5e\xf0\x29\x9b\x1e\x92\x77\xdf\xb8\x96\x6d\x25\x43\x69\x6c\x23\x97\xb5\x0c\x29\x34\x3c\xbd\x8f\x1d\xd9\x13\xd0\x85\x0c\x0a\xa4\x90\x50\xd8\xcf\x72\x77\xb8\xaf\xbe\xa0\x45\x69\x54\x55\x21\xec\xa7\x2f\xe8\x90\x71\x55\xab\xd0\xb5\xff\xb5\xfe\x9d\x5c\xbf\x63\xb7\x2c\x54\x5d\xad\xb1\x5f\x5d\xdb\xca\x9e\x24\x89\x5c\x93\x04\x7e\x76\x29\x7e\xbc\xcb\x53\xcb\x49\x51\x28\x7b\xcb\x9d\xb9\x45\x59\xe6\x83\xd3\xaf\x7f\x58\xad\x50\xb3\x3e\x13\x2b\x69\xfe\x85\x8a\x75\xb6\xcc\xd7\x8b\x83\x76\x4d\x6e\x22\xd7\x78\xa5\x62\x5b\xae\x75\x29\xcb\x99\xc1\xcc\x21\xcb\x48\xca\x53\x76\xe8\x7c\x46\xcc\x3d\x0c\x6e\x7c\xa8\x3c\xde\x6e\x5b\x30\xbf\x38\xd0\x11\x61\xf7\x2c\x32\x38\x43\x3d\x6a\x45\xb9\x4f\x3e\xac\x56\x3f\x4d\xf7\xdf\x9c\xef\x69\x7a\xc5\xff\xc5\x0a\x49\x65\xc8\x32\xd4\xbf\x29\x95\x27\x8a\xff\xab\x8c\x5d\x28\xc4\x8a\xf0\x1d\x2c\x75\xca\x90\x2d\x4d\x0b\xeb\x46\x42\xb3\xb5\x39\x4d\x64\xbe\xde\x18\xcc\x6d\xfe\x3f\xf6\xde\xbe\xbb\x8d\xdb\x6a\x1c\xfc\x2a\xa8\xfc\x9c\x23\xf9\x59\x91\x72\x9c\xc4\x4d\xd4\xd3\x3f\x14\x49\x76\xb9\xb5\x25\xfe\x24\x39\x4e\xb7\xec\xcf\x07\x9c\x01\x49\xac\x86\xc0\x74\x80\xa1\xcc\xa6\x3d\x67\xbf\xc3\x7e\xc3\xfd\x24\x7b\x70\x2f\x30\x83\x19\x62\x5e\x28\xcb\x69\xfa\x64\xf8\x47\x62\x91\x33\x78\xb9\xb8\xb8\xef\x2f\x32\xc1\x76\x4c\x42\x67\x98\xa8\x01\x36\x6d\x64\x6d\xed\x46\xe9\x31\x21\x1f\x68\x66\x18\xcf\x29\xa6\xe9\x17\x39\xc4\x66\x91\x2e\x84\xa9\xd8\x83\x59\x45\x14\xee\xa2\x17\x51\x23\xa1\xc6\x5c\x65\x39\x40\xa1\x19\xcc\xcd\x9a\x92\x85\xd9\x64\x7a\xcb\x74\x1f\x73\x74\xe5\xf9\x00\x80\x79\x0a\xdf\x39\x30\xb2\x86\x24\x05\xf7\xd0\xbe\x00\x76\x0e\xed\xf0\xd1\x69\xdb\x61\x8a\xb0\x0d\xcb\xb6\xb6\x04\xae\x59\x94\xf0\xf2\x09\x4e\x3c\xdf\x97\x7d\x07\x4c\xe0\x56\x38\x0f\x4a\xf1\x32\xe1\xc0\xc4\x5c\x37\xb8\x32\x2c\x6b\x76\x40\x93\xe4\xe8\xf9\xec\x00\xfa\x5c\x65\x4c\x41\x5f\x30\x61\xf7\xe3\x9a\xbd\xca\xa0\x8a\x64\xf6\xc6\x8d\x12\x28\x05\xb3\x1b\x4d\x59\x56\x3a\xed\xb9\xb3\x36\x53\xc5\x9a\x0d\x93\xdd\x67\xbb\xb8\x6d\xa8\xe1\xd0\x74\xb8\xf8\x42\xe8\x74\x17\x58\x6d\xa2\x38\xde\x20\x2f\x2a\x1f\xda\xf7\x78\x91\xc5\x85\x06\x3d\x02\xb3\xc2\xff\x51\x2a\x17\xcf\xc1\x74\x05\xd6\x86\xc7\x83\xe6\xea\xec\xce\xf5\xc7\x08\x80\xa7\xff\x20\x3f\xd0\xe8\x9e\xed\x04\x82\xb4\x80\xb8\x7c\x27\x00\x65\x41\x35\x99\x9b\xbb\xcf\x20\x1e\x26\x6d\xee\x71\x61\xcd\x6d\xf5\x42\x59\x0e\x83\x5c\x7b\x60\x43\xcc\xa4\x32\x8a\x32\x88\x4f\x7a\x15\xa6\x27\x75\x22\x54\x0e\x58\x28\x71\x9f\x03\xa4\xd7\x99\x14\x7a\x5f\x28\xb9\x97\x1a\xc0\xb4\x30\x3f\x9b\xfd\x36\xd2\x72\x37\xc0\x3b\x9a\x7a\x81\x87\xfd\xf0\xb1\xc9\x48\x60\x64\x91\xe3\xd2\x0c\x67\x3b\x39\x02\x06\x43\x5b\x4a\x2e\xf0\x0f\x67\x7a\x7b\x34\xd4\x20\xa9\xb2\x3f\xbc\x30\x07\x33\xcc\xf5\x6c\xf6\x67\xeb\xcd\x2d\x9f\xe9\x02\x55\x95\x62\xb9\x4b\x19\x94\xf6\x44\x6c\xae\x29\x15\xf1\x22\x4f\x10\x39\x91\xea\x99\x17\xe1\x52\x1f\x95\x63\x47\x20\x3b\x72\xad\x88\x7c\x10\x64\x32\x6d\x14\xf8\xac\x08\x3b\x99\xaa\xc7\x10\xc6\xe9\xed\xd5\xd9\xdd\xd4\x08\x94\x01\xd8\x52\xb1\xbd\x0e\x35\x78\x1e\x75\xd5\x91\x1b\x75\xf8\x2c\x77\xe4\x95\x72\x19\xe5\x99\x65\x54\x2c\x99\x0d\x1d\x01\x47\xe2\x03\x7c\x17\xcb\x75\xd8\x7b\x95\xf2\xe8\x9e\x50\x8b\x76\x70\x6d\x33\x66\xc3\xcd\x30\x92\x0c\x7e\x89\x64\x92\x70\x05\xc2\x07\x10\x84\xe2\x74\x9b\x0c\xfd\x96\x63\xb2\x74\xc5\xd6\x2c\xa3\x89\x5d\x17\x75\x45\xb6\xd1\x84\xfb\xfa\x9c\xbc\x7a\xf1\xed\x2b\x72\xf4\xd5\x8b\x97\xdf\xfc\x7f\xff\xcf\xff\xfb\xea\xdb\x6f\xbf\xfe\xf6\x79\xd3\x99\xa5\xd0\xa3\x99\xce\x93\x6d\x45\x42\xaf\x4f\xa2\x8a\xd2\xa0\x46\xec\x94\x82\xc8\x94\x65\xb4\xa9\x70\xbd\xda\x2a\xcd\xd6\x6a\x6c\x4d\x46\xb9\x62\x8a\x7c\xfd\xf2\xf7\xaf\xbe\x33\xcb\x79\xf1\xfd\xf7\xdf\x1f\x1b\x38\x26\x0c\xfb\x32\x17\x74\xb0\x30\xed\x9d\x5d\x9d\x85\x86\x75\xbb\xc4\x6d\x7f\xf3\xfd\x57\xdf\xbe\x74\xfb\x73\x25\x5a\x84\xd4\xb6\x45\x3a\xcd\x78\xb2\x35\x87\x90\xc9\x79\xc2\xd6\x78\x0e\xe1\x26\xb0\x38\x9e\xc1\xf2\x84\xa6\xaa\x94\xb0\x8b\x3d\x96\x1b\xfa\xa1\xe8\x89\xea\x72\x37\xcd\xbb\x4d\x46\x61\x2e\x8c\xa6\xc3\x37\xbe\x63\x84\xbc\x7c\xf1\xe2\xc5\x8b\xd3\x97\xdf\x7f\xff\xfd\xf7\x21\xfd\x38\xb5\x9a\x2f\xf9\xdf\xe3\xff\xde\xfd\xf5\xd3\xa8\x6c\x9b\x3d\xe2\x42\x8f\x64\x36\x42\xd4\x0e\x1b\xf0\xcc\xbd\x02\x39\x09\x54\x91\xfe\x76\xb6\xdd\x97\x50\x11\x32\x73\x38\xd3\x51\xc6\x22\x99\xc5\x06\xf9\x34\xe5\x0d\xce\x4e\x3f\xf7\x17\xdb\x19\x14\x3a\x17\xcc\x50\xa8\x5e\xc7\xf6\x66\xd9\xc6\xa4\xec\x13\x5d\x37\xb5\xb3\x2e\x35\x20\xd0\x78\x47\x46\xc7\xb1\xca\xd0\x28\xe1\xc2\x70\x5e\x19\x0a\x6b\x68\x35\x0d\x81\xad\x6a\x02\xae\xd0\x5e\x8e\x89\xf3\xea\xf3\x4d\xe1\x3e\x2b\x29\xef\x7d\x57\x71\x83\xc9\x4c\xcb\x74\x84\x5a\x69\xcd\x78\x06\xbd\x33\x61\x16\x83\x86\x36\xcc\xcd\x26\x9d\x68\x99\x5a\x2c\x0c\xfb\x6c\x28\xc4\x2f\x40\x5b\xec\x34\x65\x22\xde\x1d\x61\x2e\xb5\x96\xeb\xb1\x73\x01\x5b\xc1\x45\xd1\x05\x73\xdd\x74\x83\xb7\xdb\x95\xdc\xb7\xad\x6a\x7d\x07\xb3\x19\xdd\x2a\xfc\x98\x27\x8b\xb6\x63\x88\x55\x5d\x90\xad\xcc\x89\x7a\xe0\x3a\xcc\xc4\xb5\xb4\x0b\xb5\xb6\xb4\x39\x23\x0a\x7b\xaf\xda\xe5\x62\x17\x77\x9c\xc2\xd2\x42\x0b\x25\x4c\xd2\x08\x5e\x43\x30\xe2\x42\x9c\xd2\x7c\x4b\x16\x34\x49\x50\xb3\xcb\x1c\x77\xf3\x2a\x1c\xc1\xc8\xc7\x38\xcd\x03\x47\x62\x14\x1a\xd3\x3e\x6e\x31\x18\x2c\xa8\x73\xe6\xed\xb4\xbc\xeb\x08\xd8\x7d\xcd\x60\x85\x99\xe1\x22\xe3\x1b\xd6\xd9\x0d\xfb\xa2\xfa\x38\x59\xf0\x84\x09\xaf\x0b\x7f\x21\x12\x95\xe6\x8b\x18\x9e\x6c\x38\x84\x5c\xa1\x69\x03\x29\x32\x98\x69\xdf\x2b\x36\xb1\x61\xe1\xf5\xd9\x78\x11\x4f\x04\xae\xf3\x3d\x6d\x3a\xc5\x92\x3e\x18\x9d\x2f\x96\x50\x2e\x5b\xe6\x9d\x69\x2d\xb3\x83\x8b\x86\x37\x1d\x16\x67\x8c\xc6\x5c\x30\xa5\x4e\x12\xbe\x61\xe6\x1f\x60\x74\x95\x79\x10\xa7\x5d\x3a\x77\xe1\x10\x38\x72\x61\xf0\xcf\x77\xc0\x36\x26\x13\x11\x65\x8c\x2a\x5b\xa1\xa0\xb9\xf3\x2c\x62\x3c\xfb\x94\xb2\x8c\x33\x83\x82\x2a\xcd\x33\x2e\x73\x05\x05\x73\x33\xc8\x52\x02\x77\x82\x18\x99\x45\x12\x7b\x9d\x80\xd2\x36\x06\xbd\x72\x45\x72\x11\x1b\x39\x8d\xd1\xcd\x16\xe2\xff\xc6\xe4\x82\x15\x2b\x72\x75\xc8\xb5\x24\x4b\xa6\x31\x1b\x03\x9d\x92\xd8\x4c\xde\x4e\x16\x1a\xda\xae\x05\x17\x06\x5a\xc9\xdf\x73\x1e\xdd\x27\x5b\x1f\xa7\xbf\x7f\xa1\xfe\x46\x66\x33\x41\x2e\x58\x9a\xb1\x08\x8a\xb6\x99\xc1\x13\x1a\x85\xe9\x35\x34\x66\xb6\x9d\x86\x79\x44\xfe\xc4\x68\xa2\x57\xf6\xb4\xae\x37\x2c\xcb\x78\x6c\x94\x98\x40\xdf\xe4\xf6\x2e\x86\xf3\x7c\x69\x23\x11\xde\xca\xe5\x45\x26\xa1\x51\x76\xa3\xc6\xd8\x40\xf7\x61\x98\x77\x6c\x2d\xb3\xed\x34\x93\xe6\xea\x4c\xa9\x5e\x35\x8e\xd2\xb2\x96\x5b\xbe\x86\x58\xe3\x73\x9a\x44\x6f\x32\x9a\xae\xfe\x44\xc5\xf2\x6c\xa1\x83\x17\xb8\xf7\x68\x05\x9a\x3f\x7e\x34\x38\x37\xe7\xc4\xba\x93\x7f\x92\x4a\x9f\x45\x0d\x85\x58\xaa\x4c\xee\xa2\xf9\x5d\x9f\xe1\x81\x9d\xd8\x50\x6e\xd5\x10\x29\x57\x58\x8d\xcd\xa3\x4b\xe9\x38\x04\x2d\x8d\xd5\x65\x4e\x84\x2c\xe3\x15\xb8\x56\x2c\x59\x90\x23\xba\x68\xc8\xad\x04\x2e\x68\xc7\x5e\x71\x2b\xac\x17\x43\x31\x74\x0b\x23\x99\x7e\x3e\x26\x3f\x6c\x8b\x1e\xf1\x48\xc1\x83\xc8\x9a\xc8\xc8\x70\xec\x50\xb8\x78\xa9\xc2\x87\x96\x89\x5d\xab\x83\x3a\x7c\xc1\xd4\x67\x07\x17\x37\xd7\xd3\xd9\x01\xd8\x24\x8d\xe0\x6f\x99\xe2\x03\xb5\x11\x23\x49\x22\x1f\x88\x92\x6b\xa8\x1d\x4a\x93\xa4\xcd\xe1\x0e\x6b\xf3\x01\x67\x56\x73\x8c\xd4\x18\x4a\x69\xd2\x8c\xae\x99\x0d\x6e\xb8\xb9\xbc\x7b\x7f\x73\x65\x46\x3d\x3b\x3f\xbf\x9c\xde\x8d\x0d\x4d\x0f\x8d\x6a\x1f\xb4\xb4\x0b\x3a\xff\x6f\x65\x0e\x91\x61\x55\xd6\xeb\x6d\x6a\x72\x35\x7d\x7f\x37\x3b\x40\x6e\xfc\x87\x16\x96\x09\xbc\xd2\x49\x1b\xda\x89\x0b\x75\x79\x86\x6a\x1c\xe9\x18\x03\x24\x66\x07\xb8\xa6\x70\x67\x75\x17\x1d\x63\x4f\xa4\xb6\x18\x22\xad\xac\xb2\xa2\x0a\x12\x38\xb1\xa7\x69\x9a\x49\x97\x84\xd9\xa6\x26\x87\x51\x09\x40\x67\xc1\x08\xfc\x52\x14\x69\x87\x34\x49\x9c\xdf\xd8\x2d\xac\xf1\xe4\x3c\x8f\xbc\xc1\xef\xd0\x9a\x9a\x16\x10\x1a\xb3\x24\xd0\x86\x14\xee\x2d\x72\x80\x8d\x0f\x4c\x15\xd3\x4c\x6a\x19\xc9\x4e\x1f\x0b\xe8\xac\x7e\x12\x1b\x56\x48\x49\xed\xeb\x84\xc6\x36\x1a\xc6\x8a\xf8\x6b\x16\xb7\x98\x12\xd1\xca\x71\x6c\x98\x85\xbb\xa4\x80\xc4\x4e\xba\xba\xb9\x9b\xde\x5c\xdf\x7d\xfc\xe1\xfa\xfa\x0e\xf9\x63\xc2\x16\x9a\xcc\x13\x2a\xee\xf7\xb5\x35\x78\x7b\xc5\xcc\xcf\x33\x2c\xc7\xd3\x6b\xc3\x56\xba\x80\x8a\x93\xd5\xde\xfd\x2e\x38\x45\x0a\x6f\xc7\x61\x35\xd6\xcc\x6f\x77\x5c\x21\x4b\x5e\x7d\x1d\x37\x28\x54\xd6\x71\x3b\x3d\x26\x09\xa3\x9b\x06\xa5\xbb\x54\x32\xc0\x68\xb3\x92\xd2\x8a\x03\xb5\x11\x8d\xa8\xb3\xaf\x94\xd6\x00\xb1\xc9\x74\x13\xaa\x7e\xd6\x06\xb5\x57\xbf\x21\xa8\xa1\x70\x52\x78\xbe\x26\x02\x3a\x99\x35\xa5\x05\xb5\x8a\x29\x8e\x10\xdc\xb8\xe2\xd6\x17\x2c\x09\x56\x2f\x6b\x5b\xd0\xce\x20\xcd\xf6\x80\xf6\xc5\x58\x85\xe2\x4a\xc6\x0c\x3a\xc5\x76\xe1\xc0\xa5\xff\xc2\xf9\xe4\xe2\xc6\xbc\xb4\x9b\x35\x71\x08\x56\x15\x37\xfa\xc8\x88\xa2\x56\xc5\x87\xa6\xb2\x61\xef\x2c\x8f\x56\x90\x69\xe9\x72\x34\xd1\x06\xe9\xf8\x37\x84\x3c\x1a\x1e\x06\x0c\xa6\x88\x98\xb3\xbf\x86\x4d\x6d\x2e\xf1\x9c\x80\x97\xa7\xe8\x5b\x18\xb2\xb3\x7f\x81\x4c\x89\x05\xe5\x89\xd1\xc0\x27\x62\x2e\x73\x11\x1b\x89\xab\xc9\x28\x5a\x15\xd6\x5e\x37\xbc\x58\x85\xf3\xfb\x8b\xe9\xc9\xdd\xf9\x94\x34\x67\x8f\x88\xd8\xa6\x9c\x00\x23\xf6\xa2\x84\x50\x38\x09\x85\x02\x80\x18\x54\x08\x47\x41\xcd\x42\x10\x9e\x65\x4c\xa5\xb6\xfd\xa5\x2b\x26\xc6\xa2\x3c\xe3\x7a\x5b\x70\x56\x47\x2d\x72\xc5\x16\x39\x5c\x49\xba\x91\x3c\x6c\xc3\x8e\x22\x68\x32\x09\x3c\x37\xca\x21\x5e\x99\xc8\xc5\xc2\xfa\x9f\x50\x1e\x33\xab\xcd\x32\x16\xe9\x5a\x12\x28\x79\x1d\x2e\xdd\x35\xa7\xd1\xfd\xa8\xd2\x8e\xfc\xd8\x15\x00\x2b\x18\x9b\x35\x33\xda\x3a\x43\x10\x75\xa5\x1d\x31\x6a\x0a\x2e\x99\x1d\xe8\x28\x9d\x1d\x80\xc0\x47\x01\xbe\xe1\x61\x3c\x40\xfb\x22\x68\x70\xff\x98\xfb\x98\x41\x46\xd0\x98\xdc\x95\xf9\x04\x14\x84\x2c\xc0\x02\x04\x05\x1c\xf6\x71\x61\x5f\x6d\x54\x58\x85\x14\x10\x92\x5c\x98\x7f\xac\x2a\x69\x43\x93\x95\x5a\xb9\x94\x02\x83\x25\x17\x7f\x3a\x9f\x56\x02\x08\xa3\xf4\xf4\xe5\xcb\x60\x32\x5c\x1e\xa7\xa7\xaf\xbe\x3b\x86\x47\xbe\xfa\xfd\xf7\xf8\x8f\x97\x5f\x97\xff\xfa\xee\x05\xfe\xeb\xd5\x37\xdf\x7c\x6d\xff\xf5\xea\xd5\xab\xe2\x5f\xbf\x0f\xc9\x33\xcd\x97\xaf\xda\x92\xc1\x9c\xdb\x54\xa2\x7d\x2b\x92\xeb\xb9\x57\x51\xd2\x9d\xe9\x31\x41\xef\x91\x43\xfe\x86\x32\x6d\xd3\x42\xb6\x11\x31\xda\xf0\x9d\x2b\xb5\x38\xc5\xe0\x9b\x9d\x65\x09\x05\x0b\x47\xb9\x91\x5e\x55\xe1\xcc\x4a\x3a\x5e\x6f\xe9\xb3\x43\x0a\x28\x3c\x7a\x09\x2d\x85\xe9\x09\x19\xc1\xfa\x1a\x7e\xb1\x33\x37\x53\xd0\xf6\xae\x59\xad\x14\xf4\x3a\xd7\x8f\x24\xa1\x3b\x6f\x3e\x31\x0d\x95\xb9\x5e\x4a\x9f\x86\x82\x42\xd0\x4d\x45\xb5\x1c\xa8\xe8\x2f\x4a\x45\xa5\x45\x84\xa7\x21\xa3\x12\x4c\x24\x4c\x47\xf1\xe1\x21\x34\x82\x11\x31\xcd\x62\x9b\x68\xa0\xa5\x4d\xf4\x02\x9c\x09\x0d\x8b\x68\x14\x4b\x0c\x0d\x04\xe3\x5e\x94\x6b\x38\x2c\x34\x05\xe8\x28\xae\xa4\x04\x1a\x00\x98\xe3\x34\x84\xba\xc9\xff\x77\x71\x75\x5b\xa7\xe1\xfb\x10\xe8\xe0\x41\x59\x9a\x7d\x0c\x64\xff\xdb\xaf\xf1\xff\x03\x0d\x1f\x68\x78\xf0\xd7\x30\x0d\x67\x54\xe7\x19\xbb\x60\x9a\x45\x85\x91\xb8\x8b\x7e\xbf\x0e\xbd\x54\x94\x01\xd3\x12\x5c\xbc\xf0\x9d\x1d\x9e\xc4\xf0\x68\x43\x26\xd5\x9c\x9a\xd7\xa4\x20\x34\xd7\x72\x84\x8f\xb2\x98\xa4\x09\xd5\xd0\xdf\x23\xa2\x29\x05\xea\xc6\x21\x33\xfd\xc7\x32\x41\xae\xc0\xa4\xb0\x4b\x94\x50\xf4\x57\x12\xc5\x52\x9a\x41\x30\x2f\xb0\x16\xa0\xb5\x42\x12\x95\xd2\x88\xa9\x63\x70\x82\xa6\x09\xfb\x03\x99\x1d\xdc\x5e\x9d\xdd\xbd\xce\x93\x64\x7b\x03\x61\x07\x7f\x04\x3f\xec\xbb\xb3\xdb\xff\xe5\x7f\x09\x0e\x98\xe3\x1b\x06\x35\xaf\x6e\xf3\x14\x08\xcb\x5b\x19\xdd\xff\x11\x62\x50\x67\x07\xe0\x21\x0e\x5a\xd1\x20\x5c\x15\x6b\x31\x1d\x20\xf9\xc4\xa4\x44\x43\xe7\x2c\xb0\x8e\x09\x5b\xa7\x1a\x1c\x16\xd2\x46\xab\x7a\x39\x81\x15\x18\xed\xa9\x28\xdb\x09\xde\xd0\x1e\xfd\x4a\x5e\x7b\xcf\xfa\x47\x8b\x39\x05\x66\x71\x8e\x7e\x6b\x16\xad\x46\x69\xc6\x36\x9c\x3d\xb4\x98\x24\xed\xe4\x6a\x1c\x3c\xc0\xe6\xd3\x0a\x6a\xa3\xcd\x07\xd8\x52\x56\xe2\x83\xcc\xee\x69\x66\xd8\xcc\x1f\x5d\x9e\xf1\x4f\xdb\xff\xeb\x8f\xf6\x34\x5a\xe3\xcc\x6a\xbb\x77\x7b\xb1\xd1\xee\x19\x03\x46\xb1\x30\x28\x62\xae\x69\x9c\x47\xb6\x08\x37\x8d\x43\x46\xc4\xd6\x33\x4a\x24\x84\x42\x4c\xa6\xdd\x47\x54\x3e\x5a\xb6\x71\x2a\x1d\xe3\x98\x3f\x53\x4b\x3f\x59\x66\x34\xc8\x9e\x85\x14\xa3\xeb\x94\x89\x5b\x4d\xa3\xfb\x62\x11\x5e\xbb\x30\xb8\x7a\x47\xc5\x23\xa3\x98\x65\x7c\xc3\xe2\xe2\xd1\xd0\xa0\x10\xc2\x64\x70\x36\x79\xa0\x5b\xe5\xd9\x9d\x8e\x6b\xd9\xb3\x60\x81\x74\xa9\xb0\x81\x10\xff\xc6\x9a\x27\xd6\xb0\x12\xfa\xe9\xa2\x31\x35\xbc\x0d\xfc\xd6\x79\xf6\xd3\xc5\xb4\x6f\xb6\xd0\x9b\xfa\x1b\x16\x49\x14\xb1\xbf\x90\x9f\x2e\xa6\x44\x49\x17\x62\x4b\x22\x9a\x85\x0b\xe2\x00\x32\xc5\x52\x1c\x1e\x6a\xa2\x90\xaa\xc0\xbb\x72\xb1\x00\x23\xb5\xb9\x73\xe8\x0b\x5e\xcb\x98\x41\xf2\x39\xc8\x48\x3f\x5d\x4c\x51\x14\x6d\xf0\x62\x42\xb6\x0f\x33\x77\x8b\x89\x98\xc5\x65\x5c\x81\x11\x71\x60\xb6\x34\x93\x1b\x43\xae\xe7\x4c\x83\x85\xbc\x2c\x3a\xd2\xb0\x4e\x51\x78\x25\xc6\x9f\x9d\xd3\xbd\x02\x3f\xe5\x23\x4d\x64\xf8\xb2\xd1\x1f\xf6\xb4\xd1\xe1\x8b\xd3\xb0\x34\xd0\x2a\x07\xac\x82\x7e\xd5\x2e\x3c\x09\x7b\x63\x9d\xc6\x5f\x94\xaa\x10\x34\x21\x0f\xd6\xd1\xee\xfc\xe8\x61\x43\xcf\x02\x4a\xa7\x6f\x78\x9c\xd3\x84\xa8\x7c\xee\x55\xcd\xc4\x1a\x34\x96\x09\xc7\x4c\x8c\x49\x5d\x53\x69\x28\xa8\x6e\xf0\x13\xa2\x57\x80\x4a\x3a\x4e\x45\x52\xa9\x38\x84\xf6\x1f\x90\xba\x8f\x5f\xb9\x20\x6d\x41\x64\x14\xe5\xe1\xca\xac\x82\xa4\x34\xd3\x3c\xca\x13\x9a\x25\x5b\x73\x20\x4c\x29\xb3\x8c\xd2\x35\x03\xe1\xd5\x90\xf8\x84\x3d\xe9\x94\xce\x28\x17\x2c\x1e\x93\x26\xdd\xa7\x54\x13\x31\xef\xa0\x0a\x83\x63\xa2\x18\x2b\x82\x0c\x12\xb9\xdc\xcf\xaa\xd8\x2d\x84\xd2\x96\x86\xe6\x3d\x3a\x55\x37\x46\x5f\xf4\x1b\xa1\x43\x88\x34\xab\x0b\xff\xd2\x12\x9a\xf1\x68\x19\xb2\xc8\x65\xba\xc4\x0a\x3c\x9d\x24\x73\x52\x7b\x01\xb5\x7e\x60\xfe\xa3\x9a\xa8\x06\x68\xde\x59\x6d\xa5\x52\x64\xc6\xd6\x01\x42\xef\xd5\x5a\x0a\xae\x25\x94\x1e\x5c\xc8\xac\xa6\xfa\x8f\x9b\x42\x81\xab\xea\x64\xa5\x2e\x88\xad\x2e\xb5\x14\xd2\x7c\x55\xa6\x6b\x1e\x1e\x92\xc9\xf4\xc7\x5b\x12\xe7\xeb\x75\x30\x56\xb5\xd8\x86\x8b\xc0\x73\x62\x85\xbb\xf7\xc9\x96\xcc\xb7\x95\x0c\xc3\xaa\xd3\x3a\x34\xa8\xdb\xeb\x3a\x4f\x34\x4f\x13\xaf\xde\x0d\x16\x26\x25\xb9\xc2\x68\x34\xf3\x3f\x57\x5c\x02\x33\xc1\x9b\x64\x2b\xcb\x79\x54\x20\xb9\x4f\x81\x21\x22\xf4\x03\xac\x13\xf4\xbb\x87\x8c\xa6\x4d\xfe\x1f\x04\x27\x08\x6f\x87\x87\x27\x87\x87\x38\x9c\x15\xde\xc8\x0a\x7c\x47\x4e\xd6\x3d\x3c\x3c\xf9\xdf\x06\x16\x27\xc7\x1b\xa6\x57\x5f\x1d\x06\xb8\x8a\xad\x4b\xe7\x60\x80\xd6\xd8\x6a\x5a\xdd\x9c\x2d\xb9\x70\x33\x9a\xe1\x0e\x0f\x31\x26\x3b\x51\xb2\x29\xea\xac\x04\xe1\xe1\xa1\x9d\xdb\x67\x72\x70\x40\x3c\xdd\xa8\x96\xda\x0c\xe1\x8b\x5b\x0c\x3c\xcd\xd8\x82\x7f\xea\x7f\x4d\xf0\x79\xe7\xdc\xab\x1e\x31\x04\x16\x17\xb5\x91\x63\x26\xb4\x91\xa7\xc3\x3e\x9c\xdd\xf0\x0a\xc8\x51\x07\x53\x8c\x11\xbd\x72\xae\x56\xe8\x63\x5e\x07\x2c\x65\xad\xb0\x52\x63\x72\x25\x35\x30\x4d\xc2\xc4\x86\x67\x52\xac\x81\x17\x49\xdb\x72\x94\x0a\x32\x37\xb2\xe0\x9a\x69\x9a\x20\x06\xca\x2c\x5a\x31\x43\xe8\xb5\x0c\xf7\xca\x2d\x84\x5a\x14\x10\x69\x6a\xc8\x72\xc6\xa9\x66\xc9\xb6\x8a\x3b\x32\xcf\xfc\xd4\x69\xb0\x9a\xcb\xe8\xbe\xa1\x52\xb8\xe1\xeb\xb6\xa6\xae\x8d\xe2\x30\x67\x1d\xd1\x84\x1f\x1e\xfa\xd5\x58\xcd\xa8\xa5\x50\xec\xbd\x16\xbc\x37\x2e\x88\xfd\xf0\x50\xd3\xd4\x0d\xe4\x63\x8e\x99\xe0\xd1\x38\x73\xc3\x16\x19\x53\x2b\xc0\x89\x0d\xed\x0c\x1a\x98\x34\xbc\xe7\xd5\xa8\xe1\x12\x3c\x6f\x48\x8c\x1a\xa3\xe0\x32\xa6\x22\x2a\x14\x56\x58\xa9\xdc\x2f\x49\x36\x2c\xe3\x8b\xad\xad\x68\x84\x2d\x6e\xc1\x1a\x87\xef\xd8\x10\xe3\x20\x7d\xb5\xb2\xb9\x21\x78\x56\xec\x2f\x51\x7b\x83\x55\xc0\x5f\xec\xa9\x38\xf1\x94\xf7\xce\xf0\x9f\x4c\x27\x85\xb4\x2e\x0b\x59\xac\x1a\x51\x5c\x56\xf7\x45\x1c\x0c\xdb\x9f\xb1\x3c\x68\x79\x25\x65\x59\x06\x66\x4c\xae\x53\x8c\x55\x29\x2b\x98\x1b\xc5\x3d\x5b\xdb\x48\x8e\xb0\xc0\x5e\x58\x43\x30\xa4\x14\x6f\xa6\x51\xc4\x52\x29\x93\x8a\xb8\x2d\x78\x42\x8e\x72\xa1\x98\x7e\xbe\xb7\xd0\x6d\xa0\xf5\xee\xee\x7d\x2f\x48\xbd\xbb\x7b\xef\xd0\xc6\xfc\x13\x2a\xb8\x68\xb7\xc2\x4a\x22\xf7\x98\xdc\xb2\x70\x24\xaf\x85\xa2\xd9\x8a\x19\xc3\x4b\x5e\xff\xe6\x9b\xfd\x8b\xdc\x60\x9e\xe5\x9e\x57\xe2\x70\x12\x7a\xab\xf5\x42\x90\x8c\x61\x81\xd0\xb0\xf7\x21\xf1\xc2\xc8\x31\xeb\xaf\x6a\x5c\x26\x42\x5a\xfa\x67\x63\x8e\x20\x3a\xca\xf7\x04\x04\x11\x20\x93\xf7\x45\xc3\xdc\x22\xd6\xdb\x80\x16\x82\xcf\x5e\x54\x8a\x38\xba\xe9\x33\xdc\x55\x47\x61\xa8\xef\x5f\xec\x5d\x2a\xc0\xcd\xd0\x33\xc9\x6f\x52\x7d\xbc\x30\xf0\xb8\x42\x8d\x73\xfb\xbd\x91\xeb\xdc\xda\x0d\x17\x0f\x02\x82\x61\x34\x48\xc5\xc2\xcf\x15\x39\xcb\xb5\xdc\x9b\x38\xe0\x5c\xaf\x79\xa2\x59\x06\x75\x71\x1b\x43\x33\xfb\x8f\x73\xc1\xc4\xb6\x5f\x84\xe7\xa4\xe1\xbd\xc6\xe8\xce\xb6\x78\x44\x57\x24\x2b\x66\x82\x23\x0d\x75\xa6\x05\xe7\x97\xda\x89\xc0\xac\x85\x5b\x36\xda\xd4\x3c\xc5\xbe\x33\x86\x32\x57\x0c\x42\x06\xff\xcf\xcb\xf3\xbb\xe2\xa9\x30\xbf\x55\x9a\xd1\x18\x5e\x06\xbe\x50\xb0\x75\x0e\xd9\x82\x2b\xd6\xd2\x95\xa1\xfd\x1c\xde\xca\xe8\xfe\x75\x73\x2c\x71\xfd\xfe\xef\xbe\xe4\xae\xbf\x61\x6f\xda\x6b\x7f\xe8\x26\x08\xed\xc7\x80\x12\x82\xff\xc7\xe4\x2f\x46\xec\xa5\x5b\xa8\x3c\x89\x71\x4d\x90\xe2\x04\xe2\x8a\x75\xc4\x15\x4f\x3b\x53\x4c\xb8\xa3\x35\xd7\x9e\xa7\xaa\x58\xcd\xd1\xc2\x13\x72\xfc\x50\xd1\xb5\xc1\x14\x2c\x17\x2b\xb4\x2c\x8a\x97\x34\x48\x51\xda\xe8\xd2\x99\x21\x6e\x94\xc4\x7c\xb1\x60\x19\x13\x9a\xa4\x54\xaf\x9e\xfb\x0c\xe5\x24\xcb\xc5\xc9\x27\x6b\xd7\x31\xeb\x7e\x2c\xb1\x30\x10\x9e\x66\x72\xce\xf6\xa0\xcd\x0d\x6f\x16\x59\xbe\x7c\xcd\xea\x5e\xde\x20\x1a\x63\x53\x10\x2c\xf8\x42\xb5\x66\xeb\x14\x2d\x22\x34\x02\x95\xb9\x1a\x52\x0b\x87\xc3\x17\xb6\x18\x6e\x43\x21\x10\xba\xa1\x1c\xba\x83\x8f\xab\x25\x5f\xd6\xf4\xde\x55\x6c\x81\x18\x7e\x5b\xbc\x8b\x6f\xac\xee\xe9\x4e\xbf\xc1\x2c\x17\x61\x6a\x2e\x8b\x8f\xa1\xfc\x97\xb9\x4e\x30\xcc\xf9\xf4\xbd\x7f\x28\xdf\xbe\x58\x3f\x9a\x68\x1b\x68\xf6\x4c\xf4\xa8\x9c\x40\x2d\xc5\x23\x04\x7b\x00\x74\x68\x67\x2e\xe5\xb6\x02\x63\xa8\xd3\xf1\xe2\xd8\x63\x5d\xe0\x02\xce\x5d\x6a\x47\xe1\xfa\x68\x94\x43\x41\xb9\x54\x2b\x1a\x3c\x41\xb8\x5e\x48\xc0\x92\xa4\xca\x72\xad\x26\x18\xe6\xdf\x46\x09\x34\x87\xe8\x4e\x6a\x4c\x3e\x98\x83\xb3\xa5\x91\xca\x4a\xd2\xdc\xa8\x97\xe5\x45\x3a\x6e\xce\x70\x74\xf5\xd0\xcc\x88\xe6\x3a\xd9\x2a\x6d\x32\xdb\x3a\xca\xe2\x55\x89\x5e\xcb\xdc\xf6\xb8\xb7\x41\xd5\xb6\x31\x8a\x90\xe1\x12\xb0\x32\x73\x4f\x2c\x5c\xbd\x7d\x5c\x50\xa5\x64\xa0\x2a\xc4\xeb\xc7\xa2\xcd\x3b\x2a\x96\x09\xfb\x7c\x2e\xf9\x8e\x66\xf7\xef\xa8\xea\x2e\x5f\x32\xa9\xbd\xe0\x10\x6f\x6d\xfe\xed\x5b\x78\xa0\x02\x85\x32\xc4\x32\xec\x6f\xb8\x43\xa4\x30\xe3\x90\xb9\x21\xa9\xd0\x04\xd3\xd5\xc5\x9a\x33\x28\x40\x69\x7e\x21\x2b\xf6\x89\xc6\x2c\xe2\xeb\xb2\x76\x80\x41\xa0\x20\x9e\x68\x92\x30\xaa\x34\xf9\x0e\xc7\x54\x4c\x1f\x43\xec\x01\x16\xfe\x84\x6c\xca\x84\xaa\x95\x63\xa1\x5b\x8b\x81\x6b\xb7\x8a\x06\xa3\xa8\x0d\xc7\x85\xc8\x12\xc8\x7b\xad\x1c\xe3\xa7\xc5\xe2\x05\x7c\x42\xa7\x88\xc9\x9e\x20\x1f\x7f\xfd\x72\x6f\xe1\x19\x81\x7d\x75\x76\x77\x6d\xe3\x63\x0a\x6d\x11\xe5\x93\x47\x1e\xf7\x54\x2a\xfd\x21\xe3\x9a\x41\xe4\xed\xde\xa4\x3f\xfc\x7a\x5d\x3e\x87\x10\xfe\x46\x2a\x61\xe4\xeb\xd8\x9c\x0c\x25\x0f\x66\xa8\xdd\x52\x5f\x45\x0f\xa9\x68\xc5\x62\xcc\x8a\x80\x9a\xa2\x19\x05\x77\x5d\x58\x23\xc3\x3a\x7f\xae\x46\x35\x96\xe9\xc4\x72\xcb\x30\xc9\x03\x45\xce\x1e\x25\x72\x3e\x67\x19\xca\x64\x54\x54\xe8\x50\xb3\x7b\x51\x79\x45\xdb\xc0\x86\x6e\x18\x92\x7b\x9b\xa6\x69\xc2\x9d\x68\xe2\xe3\x4a\xe1\xbc\x69\x50\xda\x53\x16\xe9\x5d\x4a\x39\xfe\xac\xb2\x61\x6e\xa8\xfd\x15\xaf\xe0\x7b\x8f\xb0\x45\x58\x6d\xcc\x15\xa6\x04\x9b\x8b\x4d\x93\xf1\x8e\xb8\x5d\x09\x6b\xc2\x9b\x4a\x84\xd6\x3e\x4a\x58\x4b\x91\x9f\x42\x2d\x43\xe3\x98\xf6\x14\x19\xe4\x93\x2e\xad\x11\x22\xe9\x41\xb8\x00\x53\x59\x83\x69\xd2\x26\xe6\xe2\xa0\x85\xb5\x44\x41\x10\x12\x98\xf7\xac\xe3\xc6\x8c\x4d\x6d\x51\x00\x1b\x74\x3f\xcf\x97\x8d\x8c\xd0\xe0\xef\x82\x7f\x42\x2f\xbc\x7d\xde\x35\xe1\xfb\x66\xfc\xd5\x57\x85\xe8\x6f\xb8\x2f\x5a\x94\x37\xe6\x7b\x28\x6d\x0c\x55\xd2\x82\x76\xb6\xad\x15\x8e\x9d\xc2\x50\x24\x4c\x69\x79\x4c\x28\x59\x79\x35\xf1\x30\x6f\xb2\x5a\x02\x2f\x34\x24\x54\xc5\xab\x20\xf1\x63\x34\xda\xcd\x2b\x1b\xb4\xd1\xa9\xb6\x4d\x8b\x47\x9b\x12\xcf\x9d\xb3\xd7\x39\x6c\x1b\x3c\x6b\x90\x91\x71\xc4\x17\xee\x39\xa4\x11\x68\xf3\x1a\x41\x21\x2b\x87\xbe\xcd\x25\x3d\x1a\x4c\x39\xf7\xf9\x9c\x5d\xc9\x98\x4d\x65\xa6\x6f\xa0\x86\x44\xe7\x85\xfc\xf3\xce\x2b\x50\xd8\x44\x15\x3e\x17\xd8\x8a\x5f\x90\xa2\x61\x5b\xb6\xc6\x0b\x29\x0b\xf9\x8e\xab\x09\xcd\x8b\xc2\xec\x65\xf8\xb6\x57\x85\xb2\xb1\x57\x23\xb0\x46\x9e\x6e\x94\xad\xfd\x86\x60\xce\x51\x90\x63\x8a\xb9\x65\x01\x42\xa1\xaf\xa8\xac\xba\xdc\x96\x64\x66\x75\x5f\x1f\x7b\xbe\x86\x12\x11\x5f\xbf\xfc\xfd\xab\xdf\x07\xcb\xb4\x35\x3b\x08\x9b\xea\xa4\xf4\xa8\x94\xd2\x5d\x2b\xa5\xab\x38\xc5\xfe\xe5\x29\x5a\xfd\x77\x89\x5c\x42\x01\x8a\xd7\x36\x9f\xfd\x86\x2d\x59\xa7\x77\xe2\x6d\xe8\x25\xff\x92\x18\x4a\x6e\x73\x45\x22\x28\x8e\xcb\x1b\xd4\x69\x97\x36\xc2\x33\x02\x23\x42\xe9\x40\x99\xeb\xd4\x28\x20\x02\x7b\x7a\x38\x22\x0f\x8e\x5c\xc4\x30\x28\xe9\xd7\x14\x6d\x0a\x93\xd9\x30\x21\xf0\x83\x01\x27\x28\xdb\x24\x2c\xf9\x86\x89\x50\xf9\xca\xa2\x9a\x48\x0c\xbe\xe7\x06\xff\xe0\x02\xc4\x24\x64\xd9\xc0\xa1\x11\x1f\xed\xf2\xa1\xbe\x44\x83\xcb\xb9\xed\xe0\x13\xb9\xec\x6d\xcb\x78\x5b\x3e\xeb\xd8\xe8\x22\x4f\x12\xd0\xe9\x9d\xd0\x83\x37\x27\x91\x4b\xc7\xb6\x42\x5b\x01\x39\xd6\x63\x66\xa0\x4a\x25\x12\xfa\xc1\x54\x6c\x03\x1b\x9a\x9d\x24\x72\x79\xe2\x6b\x20\xe3\x44\x06\x7b\x14\x75\xec\xb2\xa7\xff\xeb\xad\x7b\xb2\x34\xd2\x2c\x2b\xee\x2e\x8f\x34\x80\xc2\x9d\x19\x75\xba\xe9\x4a\xbd\xbd\x7e\xe3\x98\x78\xd5\x25\x13\xc9\x11\xa6\x90\x3e\x62\x27\xb7\x6c\xc3\x32\xae\xb7\xe6\x2c\xfa\xec\xc7\x7f\xde\xdf\x95\xb2\xdf\x13\x3a\x97\x60\x3e\x30\xb7\xc7\xa0\x50\x90\xf6\x64\x0c\x2b\x80\xbb\xf6\x82\x72\x69\xcd\x51\xe5\xc6\x26\x62\x21\x3f\x63\x3f\xb7\x51\xc6\x58\x77\xde\xfa\xdb\xfa\x1b\x4f\xb6\x27\xa5\x63\x99\xeb\xa7\xdc\xd1\xb6\x9b\x2d\xbe\xad\x3c\xfe\x74\x7b\xd9\x2a\xef\x12\x92\x2b\x69\x2b\x0e\x0b\xe9\x2e\x1a\x30\x33\xfb\x54\xab\x01\xff\x31\x40\x58\xd3\x4f\xe0\xf9\xb8\xe5\xff\x08\xe1\x68\x2b\xb7\x72\x8d\x05\xcf\xe2\xb8\xb3\x3c\xca\xe1\x3b\xef\xe1\x32\x13\xb5\xc8\xec\x94\x19\x89\xe5\x9a\x72\x41\xbc\xa2\x29\x4d\x42\x05\x0a\xc2\x18\x58\x44\x85\x32\x82\xf1\x8f\xef\xc8\xdf\x73\x06\xd5\xd3\x0c\xf4\xa2\x44\xe6\xf1\x88\x0b\xae\x8b\x55\x42\x9f\xc6\xc2\x61\x1b\x8e\x99\x5f\x81\xe5\x2d\x43\x5b\x5d\x5c\xa4\xb3\xaf\x69\xb4\xe2\x82\x15\xa6\x1f\x21\x37\x74\x44\x53\x4e\x8e\xb0\x82\xe6\xfb\x79\x2e\x74\x1e\x1c\xd2\x3d\x3a\x72\xcb\x78\x3e\x26\x67\x2e\x13\x61\x81\x04\xf6\x28\xa2\x8a\x41\x42\xbe\xc0\x50\xaa\xe7\x64\xcd\xa8\x68\xb6\x4d\x55\x7c\x90\x90\x78\xc1\x34\xc9\x53\xb0\x2e\x5c\x9d\xdd\x61\x75\x21\x67\x6a\x73\x13\x03\xf5\xef\xc0\xa0\xaf\x5e\xfe\x7e\xfc\x62\xfc\x62\xfc\xd5\xde\x68\x64\x27\x69\x08\x99\x0b\xa3\x82\x4b\x25\x00\x35\xcf\xfc\xdb\x1a\xc1\x8a\x15\xe3\x59\x63\xf8\x62\x43\x7b\xb7\xf5\x1c\x8a\x91\x01\x33\xc7\x46\x2a\xe3\x0a\xa6\x19\xa9\xda\x40\xe8\xf0\xd0\xdc\xac\xc3\xc3\xe7\xc7\x5e\xc4\x6e\x83\x66\x06\xa0\x2c\x00\x79\x8c\xd1\x0e\x5f\xbd\xfa\x7e\xfc\xf2\xdb\x6f\xc6\xf6\xff\xa7\xdf\x81\x96\xe7\xcf\x75\xea\xef\x2b\xa8\xd1\x4f\x04\x14\x59\x83\xaa\xa5\xca\xc6\xb5\x96\x87\xe8\xdc\x04\x73\x66\x3d\x05\xb1\x47\xe0\xbe\xfb\xfd\xef\xbf\x6d\x29\x16\xdc\x74\x43\x75\xbe\x4f\x21\xef\x77\x77\xef\x7f\x89\x46\x5f\xe0\xff\xaf\x98\x4c\x68\x12\x41\x9d\x95\xc2\x06\x1a\x76\x56\xbc\xbb\x7b\x5f\xad\xd2\x57\xb6\xb7\x6a\x6b\x6d\xf5\x79\x7d\xac\x04\xd5\xce\x12\xd6\xb3\x44\x81\x67\x3b\xb3\x6f\x78\x9e\x4e\x2a\xea\x49\xf7\x20\x9d\xd8\xa8\xda\xa6\x52\x7e\x28\x2a\x1b\x94\x84\x6b\xed\x9a\x84\x08\x42\xfd\xf5\x41\x14\x40\xe1\x01\xb4\xf9\xf6\x4d\x84\xb4\xe8\xb8\x51\x4b\xe2\xf7\x73\xed\x01\x03\xca\x05\x5b\x1b\x53\x01\xe2\x30\x0d\xad\xf4\x47\x71\x8b\x90\x82\x1c\x71\xf0\xe9\x39\x65\xad\xb4\x3d\xbd\x3b\xbb\xfd\x5f\xef\x2f\x6f\xce\x2e\x2e\x89\xa6\xd9\x92\xe9\x40\x90\x77\xc7\x09\x15\xba\xea\xbf\xad\x6a\xa5\xad\x57\x09\x8b\xf0\x8e\xbb\x2c\x5c\x69\x15\x67\x55\x9c\x8f\x01\x70\x93\x8f\x04\x53\xa2\x28\x14\x53\x42\x04\x89\xe1\x80\x8b\x9c\xc5\xab\xb3\x3b\xeb\x8f\x80\x18\x0f\xdf\x78\x14\xb4\x52\xb2\x15\xdd\x70\x99\x15\xf5\x6b\xad\x4f\x58\x61\xf0\x52\x63\x65\x85\xa7\xad\x83\x28\x98\x4e\xb8\x68\x71\x3a\xb5\xc1\x1b\xf2\xf6\xcc\x72\x6f\xd8\xb2\x4f\xd9\xa4\xeb\xea\xf3\x8e\xd1\xf8\x35\xd9\x32\xfc\x05\xf3\x34\xbc\x30\xe4\x66\x9e\x3b\x67\x89\x14\x4b\xec\x04\x3d\x31\xb7\x0f\x62\x2b\x47\x76\x20\x34\x08\x9e\x94\x51\x61\x31\x4b\x13\xb9\x5d\x33\xa1\x9b\xe5\x0d\x97\xf8\x56\x38\xbe\x63\x28\x3d\xb4\x92\x0f\x65\xf1\x67\x9c\xfc\x08\x2b\x98\x96\x16\xcd\xb5\x8c\x59\x12\x1c\x19\xe5\x12\x54\xc3\xa2\xc5\x92\x58\x59\xc0\x0b\xbe\x33\x37\x12\xc6\x8e\xe4\x3a\xcd\x6d\x63\xa0\xe7\xb6\xd1\x78\x1e\x8e\xfe\x2c\x55\xe4\xbf\xa2\x6e\xf4\xb7\xf2\x54\x3e\x5a\x18\xa0\x68\xe3\x6d\x06\xea\x87\xe7\x3a\x93\x62\x6c\xbe\x0d\xae\xd6\x2e\x05\x7b\x13\x95\x4c\xef\x72\x9d\xea\xed\xbe\xa2\x08\x86\x39\x40\x6f\x10\xaa\x57\x3d\xb5\xc9\x69\xe0\x25\x3f\xb5\x67\xbe\xb5\x67\x00\x95\x78\xa1\x85\x77\x44\xc3\xad\x92\x6c\x41\x42\x64\xe1\x98\x51\xea\x4a\xff\xb9\x5a\xd1\xc7\xd8\xd2\xe2\xcc\x33\xdf\x27\x74\xcb\xb2\x7e\x95\x85\x1e\x07\x95\x4c\xae\x99\x5e\xb1\x5c\xbd\x91\xef\x98\xce\x78\xd4\xb7\xdf\xcf\xe1\xb4\xf1\x55\x67\x17\x50\xe4\x8d\x34\xc2\x31\xb8\x82\xd7\xf8\x48\x58\x5c\x4b\x12\xcc\xf4\x73\x61\xce\x06\x97\xca\xf1\x5d\xd7\x36\xc8\xae\x2d\x6b\x10\x1d\x23\x05\x54\x2c\x1c\x99\xee\x6a\x1e\xa2\x64\x80\x86\x62\x55\xab\xd2\x6d\x17\x65\xcb\xef\x61\x8e\x51\x9c\x47\x0d\xec\xd6\x5b\x11\x16\xf6\xfb\xcc\x7e\x8a\x25\xf0\x1f\x0d\xfa\x1a\xe0\x9d\x61\xb9\x06\xbf\x16\xd8\x5b\xbd\x89\x0b\xe7\xb8\x2e\x5a\xa1\x99\x2d\x7d\x7e\xa2\xce\xce\x1e\x1b\xd2\x6e\x3a\x36\xf8\x27\xa9\x0a\x9d\x00\x9d\xe1\xae\xee\x68\xf9\x68\x90\x34\xd9\x03\xb6\xdb\x74\x55\x9c\xb9\x88\x81\x56\x97\xbb\x63\x9f\x77\x7b\xec\x32\x7b\xe9\x39\x3b\x9b\xf3\x15\x1e\x57\xba\xe0\xc9\x37\xf8\xfd\x8b\xef\x5b\xd4\xb7\x06\x61\xa7\xdc\xe0\x14\xfd\x60\x8f\x46\xd4\xe0\xfb\x25\xa1\x70\xb1\x8e\x03\x95\x68\xb9\x41\x1f\x78\xc6\xde\xe4\x34\x8b\x1f\x7d\x0a\x0d\x23\x94\xe7\x50\xb4\x53\x6a\xc3\xb5\xc7\x9e\x44\x58\x25\xc4\xc3\x79\xe4\x49\x84\x86\x74\x87\xf3\xe4\x27\x91\xb1\xb5\xdc\x30\x57\x2f\x0b\x2a\xae\x75\x2a\x7d\x1f\xaa\x89\xb5\xb6\xff\xe4\x86\x55\x4b\xa6\xb9\x7e\x4e\x1b\xd6\x14\x4f\x36\x67\xcc\x2f\xc2\x56\x48\x1e\x63\x9b\xb3\x8a\x1a\x9d\xab\xc9\x87\xe5\x35\x0a\x01\xc3\x0b\x08\x68\xaa\xde\x01\x71\x4d\x34\x8e\xeb\xa5\xdc\x5c\x0e\xa0\x6b\x0b\xe7\x95\x00\xb4\xe5\xbd\x18\x0d\x0f\xfa\xc0\x70\x2d\x76\xbf\x6e\x31\xc9\xd6\x16\x1f\xb4\x33\xec\x7d\x06\xb6\x3c\x5a\xef\x40\x82\x9b\xfa\x1b\x95\x9c\x18\xf3\xf7\x4e\xfc\x76\x63\xed\x18\x1b\x70\xa9\x73\x55\xc6\x5f\x19\x89\x1b\x92\xfa\x21\x5c\xad\x12\xad\xf6\xce\xca\xf0\x42\x8a\xd1\x3f\x58\x16\x34\x2c\x71\xcf\xfa\xe8\x29\x06\xaa\xea\x72\xdc\xdb\x61\x5d\xc0\xe9\xee\xee\x6d\x7f\x10\xdd\xdd\xbd\xf5\xe3\xf7\x46\x5a\x62\xed\x63\x97\x6f\x01\x3a\x28\x92\xea\xd1\x43\x43\xcf\x71\x0b\x1f\x0b\xc5\x7a\x71\xe2\x7d\xb7\x61\x90\x64\xdf\xd0\x91\x9b\xc0\x4b\x9f\x11\xb2\xef\xf5\x02\xd9\x37\x6c\x84\xac\x68\xd8\xda\xff\xd8\xb0\x11\x2c\xe3\xe9\x22\x44\xda\x15\x82\xc7\x82\x1b\xab\x48\xf6\x83\xf2\xad\x73\xd6\xfa\x95\x04\x32\xe7\x46\x5c\x32\x8c\xbb\x73\x1d\x8d\xc3\xf8\x5f\x34\x21\x18\x93\x11\xf9\x60\x0d\x76\x93\xa9\x3a\x45\x33\x58\xb0\xbe\x2f\x66\xfb\xe6\xa1\xa4\x53\x52\xd0\xae\x91\x85\xe9\x64\x7a\xf6\xae\x1a\x47\x33\x82\xa1\xcd\xf7\x70\x96\x95\x11\xdd\xeb\x8f\x02\xdd\x56\x44\xae\x86\x40\x17\x00\x6f\xea\x2f\x20\xb9\xac\x54\x38\xc2\x1e\x17\x52\x28\x67\x08\x0c\x9b\x86\xac\x01\x0e\x91\x43\x23\xed\xb9\x2d\xa5\x78\xe0\x3a\xb9\xf0\x5a\x76\x8d\xac\x36\x0a\x1d\x68\xa5\x48\x9a\x0b\x4e\x34\x91\x61\x33\x15\x04\x4e\x36\x99\xd7\xaa\x55\xf0\x8b\x6a\xe4\x60\x7f\xa0\x1b\x34\x39\xdd\x54\x47\x51\xe3\xa2\x7a\x7f\x4b\xcf\x3f\xd7\xb5\x91\x26\x36\x58\xc9\xdb\x36\x7a\x79\x36\x14\xeb\xb8\xa7\x79\x96\x4a\x28\x42\x51\x9b\x28\x48\xb6\x2a\xb6\x39\x2e\x62\xec\x27\xbb\xa8\x43\x56\x55\x1a\x3a\x5a\x79\x3b\x0f\xd6\xd6\xef\x48\x08\x5f\xd3\x90\x01\x82\xf4\x29\x29\xb4\xe6\x21\x43\x57\x8f\x57\x5b\x72\xc0\x47\x66\x41\xc1\xaf\x43\xc9\x07\x6d\x89\xdf\x35\xe4\xe8\x94\x91\x6a\x87\xde\xff\x84\x83\x76\x96\xa6\x43\xaf\x58\xdb\x31\x1b\x6d\x81\x63\x9a\xd3\x66\x9f\x6c\x8c\x50\x98\x03\x04\x4f\xbc\x44\x6b\x65\xc9\x61\x39\xdb\xe1\xb1\x97\x24\xb8\xf3\xe3\xd3\xd6\x15\x68\x46\xa4\x5e\xd5\xa9\x9a\x91\xa9\xc7\xeb\x1d\x45\x05\x82\x28\xd5\x88\x54\x9f\x51\x4f\xc0\xda\xd0\xde\x4a\x99\x4e\xb1\xf3\x49\x1f\x63\xf0\x07\xd4\x3e\x30\x1e\x0d\xdc\xce\x1b\x03\x69\xc5\xc0\x14\x5a\x8a\xbd\xc7\xae\x9d\x4a\x1b\x27\x4b\xa4\x4c\x95\xd7\xab\x1e\x4a\xd9\x54\x8a\xfd\x60\xfc\x36\xd6\xd1\xb6\x2d\x11\x08\xe4\xc6\x9b\xed\x36\x46\x75\xd9\x12\xea\x58\xe8\xa5\xa8\x2e\x77\x71\x75\x76\x77\x78\x18\xd7\xd3\xff\xdf\x0b\xa8\x8f\x53\xf6\x92\x77\x15\x6d\x0e\x82\xba\x12\x17\x45\x6b\x1f\xc5\xb0\x45\xa3\xdd\xa1\xdd\x4e\x24\x85\xe6\x02\x79\xc8\xdc\x16\x1b\xad\xb4\x51\x09\x8d\xfa\x98\x22\xe7\x8a\xc7\x2c\xa2\xd9\x59\x14\xb1\xc4\x72\xbd\xbe\xfa\xed\x6d\xe3\xab\x85\x41\x0c\xdb\x7c\xac\x41\xe4\x72\x53\x35\x08\x66\xc5\x18\x9f\x6d\xfb\x82\xc0\xd3\x1e\xf5\x9c\xab\xbb\x79\x1f\x7a\xcb\x89\xd3\x84\x0a\x29\xb6\x6b\xc3\xdd\x2c\x3d\xb2\x31\xb7\x41\x57\x1e\xea\xcd\x54\xc4\xae\xa9\x2f\x36\xb8\xc3\xb2\xef\x06\xe7\xd0\x5c\x3f\x96\xd9\x72\x4c\xde\xca\xa5\x22\x0f\xd8\x67\xd5\x88\xef\x3a\xcf\x1a\x7a\x3c\xd9\x20\x54\xec\x36\xed\x9c\xf1\x5e\x66\x3d\xd4\x93\xa4\xd0\xf7\x87\x2f\x78\x44\x85\x2e\xab\x60\x6e\xf2\x44\xb0\x0c\x4b\xb3\x05\x33\x59\x57\x54\xa1\xb2\x1b\x73\x05\xcd\xed\xca\x40\x3e\x17\x5e\x2c\x17\x45\x86\x22\xb4\x31\xca\x55\x27\x46\x3e\x4a\xdf\xaf\x9e\xdf\x44\x70\xcd\x69\xd2\x54\xdb\xbb\xed\x10\xfd\x57\xab\x1d\x8f\x5d\xcb\xf1\xd8\xfc\x14\xd6\xfb\x17\xb2\x90\xa7\xd7\xf4\x9e\xa1\xef\xdd\x0c\x5c\x0b\x4a\xdd\x5b\xd8\xaf\x6f\xaf\xa7\x76\x55\xdf\x9a\xd5\xaf\x2a\xdb\xda\x51\xad\x9b\x5d\x67\xb8\xa7\x80\xb6\xf8\xdd\xab\x6f\x1e\xb5\xa9\xa6\x66\x48\x5d\x1b\x6b\x6e\xa3\x84\xf5\x51\xbd\xe6\x6a\x20\xa8\x1b\x0d\xa2\x31\x4f\x67\xa7\xa9\x93\x33\xdd\x20\x65\x5d\xf2\x68\x4c\xc8\x64\x81\x84\xa5\x2c\x8b\x9a\xd0\x5c\x84\x81\x85\x09\x27\xe1\x56\x51\x78\xc3\x4b\xf7\x93\xad\x0b\xab\xb1\xaf\x38\x94\x80\x9c\xe7\x8b\x7d\x45\x7c\x68\xa6\xde\x97\x68\xfd\xf8\xd3\xdb\xb3\xab\xbe\xd5\x11\x20\xfa\xbf\x29\xfe\x00\x46\xaa\x56\x08\x00\x91\x0f\x9a\x3a\xe0\x8f\x56\x89\x81\x60\xd3\xdd\x72\x09\xa1\x41\x6b\x25\x14\x7e\xa1\x7a\x09\x00\xc1\x3e\x05\x13\x60\x5b\xad\x15\x13\xbc\xdd\x23\x68\xc2\xbb\x2c\xea\x29\xb4\x16\x4f\xf8\x6a\xff\xe2\x09\x6e\x2b\x3f\x76\xb6\x94\x28\x36\xf3\xe3\xab\xd6\xed\xbc\x7a\xaa\xed\x7c\xfd\xfd\x23\xb7\xf3\x98\x3a\x6e\xf0\xe2\x8f\x57\x93\x7d\xdf\x2b\xec\xea\x7d\x2f\xd4\x87\xda\x0b\xbb\xa9\x24\xc5\x13\x9e\x9c\x1a\x02\x63\x71\x79\x8e\x98\x88\x68\xaa\xf2\xc4\x95\x69\xdc\x7c\x53\x84\xe4\x48\x24\x23\xf8\x25\x74\x30\x4b\x68\x51\x22\x20\x14\x1a\x45\x3e\x5b\x3a\xaa\x83\xa4\x07\x6a\xd5\x81\xf2\xe3\xab\xcf\x06\xcb\xab\x00\x58\x5e\x85\xc0\xf2\xea\x97\x06\xcb\x9f\xa4\xd2\x97\x22\xca\xb6\xe9\x3e\xb2\xf0\x87\xd6\xd7\x5b\xc0\x15\x94\xc5\xa4\xd2\x23\x2d\x47\xb6\xa4\x93\x1b\xcc\x83\xec\xe7\x3b\x88\x8b\xfd\x16\xf9\xa4\x57\xe1\x32\x79\x0d\xfb\xac\xbc\x56\xb3\xe2\x40\x50\x8f\x0d\xa7\x6b\x48\x46\x2a\x88\xab\x87\x37\x6e\x44\x7f\x73\xc5\x32\xc7\x8f\xa9\xc8\x14\xde\xe4\x3e\x18\x5f\x7b\xf1\xd1\x1b\x7d\xd5\xb9\xd1\xe5\x68\xf3\xea\xf3\x36\xf9\x67\xc6\xd2\xb3\x84\x6f\xf6\x38\xc5\xe2\x95\x12\x43\xcb\x75\x4e\x8d\xdc\xaf\x34\x13\xda\x3c\x46\x1b\x1b\x24\xa6\x68\x44\xbe\x65\xba\xe6\x87\xf1\x32\xa4\x1f\xbd\xa9\xb7\xb0\x02\x2e\x96\xbd\x7c\xfc\x1f\x82\xaf\x55\x85\xe4\xc4\xfd\x84\x0e\xff\xa6\xb8\xbf\xf9\xb6\x86\xa0\x95\x42\x0f\x5f\x7d\xf7\x72\x7f\xf6\x17\xde\xd4\x3e\xe8\x58\x7b\xb1\x6d\x63\xa1\x3d\xb9\x7e\xd5\x55\x84\xac\x6f\x6c\xff\x78\x85\x62\x63\x7d\xa4\xae\x0f\xde\xc3\xd5\x0d\x98\x2f\x7c\xc1\xab\x95\x48\x7a\xb7\xa8\x4b\xf0\x7a\x44\xd5\x2a\x7f\x47\xfb\x1c\x10\x0a\x60\x2d\xbb\x7a\xf5\x64\xbb\xfa\x1c\x04\xbc\x41\x63\xd3\x4d\x9e\xb0\x69\xc6\x65\xc6\x75\xb7\x6e\xfd\xa1\xe5\xe5\xea\x8e\x53\xf7\x6d\x63\x37\x88\x92\x66\xc2\x0b\x25\xcd\x71\x56\xb0\x2c\xaf\x12\x90\x70\x5f\xf0\xf6\xcd\x5a\x0f\x16\xfa\xca\x6e\x53\x29\x17\xe1\x5e\xa8\xd5\xc0\x81\xe0\x5b\xbb\x0c\x3c\x95\x71\x51\xd5\xb9\x89\xee\x5b\xab\x1d\x0e\x85\x51\x8c\x10\x72\x2e\xa4\x46\x4b\x17\x48\xe7\xa2\xec\xbd\x85\x45\x29\x6c\x7c\x79\x68\x54\x2f\x45\xc7\xc5\x2d\x43\x78\xc3\x8a\xf1\xcc\x8b\x1a\xf0\x6b\xf6\x59\xdf\x1b\x86\x27\x07\x3d\x30\xce\x66\x79\x26\xb6\xb3\x83\xe3\x72\x67\x19\xfb\x7b\xce\x20\x59\x77\x6b\x53\xf9\xf6\x8c\xd5\xff\x14\xf7\xae\xf2\x17\x28\xc9\xfd\xd3\xc5\xb4\x6a\x17\x34\xd8\xa2\x72\x8e\xbe\x83\x1c\xfb\xc7\x35\xb5\x13\xb0\xfd\xb8\x62\x26\xb6\xbb\x99\x84\x8f\xb2\x4a\x7d\x8a\xd3\x7d\x1d\xe2\x3f\x5d\x4c\x9f\xb6\x82\x1d\x54\x27\x7f\x54\xf1\x3a\xeb\xed\x0e\x0d\x5c\x3a\xc0\x7f\x98\xbe\x26\x6b\x9a\x42\xfa\x17\xd5\x9a\x46\x2b\x6c\x0b\x0a\xee\xa1\xb0\x63\xfc\xa7\x8b\x60\x41\x85\xdd\x12\x77\xfb\xbb\xc5\xc3\x3e\x89\xdd\x6f\xc1\x12\x1a\xfb\x21\xee\x4a\xcb\x8c\x2e\x99\xfb\x0a\x23\x23\xe0\xb4\x5c\x1b\x3b\x23\xcd\x39\xb7\xce\x3d\x17\xf1\x29\x99\x1d\xb8\x26\x10\x69\x92\x67\x34\x29\xbf\x29\x1a\x99\xaa\x53\xf2\xd7\xbf\x99\x6f\x20\xec\x24\xfe\x11\xcd\xa2\xf6\xdb\x99\x18\x8d\x46\x33\xf1\x8c\x58\x37\xbe\xab\xfe\xa3\xd9\x3a\x4d\xa8\x66\xea\xe4\x3e\x8e\x47\x51\x16\xab\xf1\x96\xae\x93\x99\xa0\x29\xb7\x23\x9c\x12\x9a\x72\xf6\x49\x33\x81\x85\x7b\xef\xbf\x53\x63\x2e\x4f\x36\x5f\xcd\x04\xae\xed\x3c\x57\x5a\xae\x6f\x18\xd2\x85\x0b\xb6\xe0\x82\x63\x01\x37\x97\x9b\x05\x5b\x81\x3a\xd7\x36\xed\xca\xea\x4a\xe0\x6f\xe6\x4c\x8d\xa3\x2c\x1e\xef\x18\x9f\x67\xc2\x88\xb3\xf0\xee\x32\x93\x79\x7a\x4a\x1a\x1e\xc3\xb1\xab\x00\x7b\x03\xf3\x5c\xe1\x3c\x18\xb0\x8d\x3f\x1b\x31\xe4\xcf\x4d\x8f\xbc\x2d\x2a\x19\x3b\x30\x07\xd7\x6b\xcf\x91\x0b\x48\x76\x0a\x3d\x04\x93\xa5\x19\x83\xd3\x7f\x2f\xee\x85\x7c\x10\xaf\x39\x4b\x62\x65\x35\x22\x38\xa8\x48\x1a\x6c\x39\x47\x2b\xbc\xf9\x66\xe3\x0e\xcd\xfc\x31\xb2\x20\x33\x90\x86\xf9\xa2\x15\x5b\xd3\xe2\x5a\xcb\x94\x89\xb3\xe9\xe4\xc7\xaf\x6f\xab\xdf\x37\xba\x06\xbd\x23\xad\xa2\x72\x95\x2c\x98\x31\xad\x49\xdd\x6f\x15\x6b\x97\xc6\x62\xbb\x8e\xa2\xd9\x42\xc6\x60\x9f\x42\x07\xeb\xd9\xca\x85\xd1\x94\xf1\x42\x98\x3b\x9a\x99\x71\xbc\x8a\xa8\x1b\x96\x61\x4b\x81\xa5\xe0\xff\x28\x06\x2f\x92\x29\x01\x37\x77\x84\xc5\xc2\x92\xea\x55\xd8\x5d\xd3\xad\x75\x99\x91\x5c\x78\x03\x62\x85\xb5\x31\x79\x27\x21\x1d\x62\x21\x4f\xc9\x4a\xeb\x54\x9d\x9e\x9c\x2c\xb9\x76\xd8\x6c\xed\xa4\x7a\x7b\x02\xac\x94\xcf\x73\x2d\x33\x75\x12\xb3\x0d\x4b\x4e\x14\x5f\x8e\x68\x16\xad\xb8\x66\x91\xce\x33\x76\x42\x53\x3e\x82\xb5\x83\x3f\x51\x8d\xd7\xf1\xb3\xcc\xa2\xbf\x3a\x0c\x91\x89\x5d\x02\x02\x58\xda\x76\x0c\x06\x47\x31\xa7\x0e\x5f\xb6\xb9\x12\x05\xb4\x5d\xa1\xdb\x9b\xcb\xdb\x3b\xe2\x66\x0f\x56\x13\x43\xe0\x97\x6f\xaa\xf2\x1c\x0c\xd0\xb8\x58\x30\x5b\x3f\x06\x72\x17\xb5\xdf\x90\x1b\x4a\x89\x41\xdc\x66\x7d\x54\x95\xcf\xd7\x10\xc4\x83\x6c\x18\xb3\x5c\xce\x41\x7a\x80\x72\x9b\x69\x4c\x35\x8b\x21\xf1\xe5\x9c\xae\x59\x72\x4e\x15\xfb\xe2\xa7\x60\xa0\xad\x46\x06\xb6\x7d\xcf\xa1\x42\xa2\xea\x8f\xef\x7a\x9c\x0b\x8a\x54\x7e\x5a\x1c\xf1\x34\x4d\x93\xed\xb5\x78\x2d\xb3\x07\x9a\x75\x4a\x19\x67\x95\xa7\x31\xd8\x04\xa2\x08\xb4\xc4\x91\x30\xe8\xa4\x6c\xe8\xcd\x5d\x77\xe9\xa0\xde\x0b\x12\x09\x8c\xe4\xca\x95\xec\x29\x52\xc4\xf2\x4a\xea\x3b\x23\xc6\x74\x06\xf2\x14\x4f\x7a\xab\x2e\x44\x51\xeb\xaa\x86\x7c\xa0\xb2\x58\x0d\xec\x23\x2c\x1d\xf9\x5b\x73\xa4\x62\x69\xe8\x41\x26\xf3\xe5\xaa\x88\xb5\x23\xe0\xed\x38\x04\x6f\xb4\xc0\xc8\x63\x02\x52\x17\x17\xcb\xa0\x5b\x1b\x1c\xd9\x54\xd9\xf0\x91\xc8\x35\xf9\x45\x9f\xcb\x5d\xe6\xca\xd9\x87\x20\x4c\x68\x43\xd9\x66\x28\xd9\x11\x3b\x87\x9c\x91\x45\xcb\xa5\x05\x17\x86\x4d\xcc\x2c\x4c\xac\x08\xde\xa0\xe0\xd7\xe6\x87\x2a\x70\x0c\xfa\xc5\xd9\xa0\xe1\x39\x23\x56\xcc\xdc\xf7\x6c\xb1\x39\x79\xd7\xb9\xde\x41\x69\xf5\x18\xbc\xad\x36\x34\xc6\x76\x35\xb7\x42\x2b\xb9\xa4\xd1\x0a\x33\xc8\x6d\x05\xc1\xb0\x70\xe8\xde\xc6\x7d\xdb\xd4\xb0\x28\xe3\x9a\x65\x9c\x62\x19\x7d\x2f\x95\x1e\xfa\x0c\x44\x4e\x05\x01\xd4\xdf\x2b\x34\xa6\xb2\x87\xd9\xc1\x19\x31\xba\x20\x29\x0d\xba\x7e\xa8\x4f\x68\x29\x41\x39\x94\x14\xc5\x6b\xc9\x0f\x52\xaf\x6c\x01\x41\x99\x8d\xd0\x6b\x54\xb8\xb2\xa7\xf6\xbc\x84\xff\x5d\x26\x1b\x6b\xd6\x80\x34\xca\x32\x26\x22\x87\x79\x23\xaf\x6d\x95\xcc\x35\x96\xe4\x72\xe5\x94\xf0\x11\xa3\x6b\xcc\x25\xb4\x79\x84\xf3\x68\x58\xb0\x88\x8b\x2e\xf4\x1e\xe0\xc1\x43\x36\x9b\x09\x3c\x3c\xd7\x91\xa5\x0e\x89\x86\x18\x55\x73\x98\x82\x2d\x61\x71\x56\x24\x38\xb6\xea\x97\xcb\xac\x9f\xcd\x66\x07\x57\x52\x9b\xff\x8d\xc9\x59\x92\xd8\xaa\x08\xfe\xe8\xe1\x91\xcd\xdb\x90\xa5\x0c\x08\x55\xf4\xf8\xa3\x9a\x2b\x68\xec\x85\xb5\xc8\xec\x56\xb4\xc4\x31\xc7\xe4\xcc\xb6\xa4\x68\x80\x2e\x20\x27\xd6\x0a\x36\x08\x6a\x0b\x08\xd8\x4d\x1b\x10\xc1\x76\xcc\x1f\x5e\x24\x01\xc5\xc1\x9b\xe1\x0a\xd0\x0f\x2f\xd1\xd1\x90\x72\x89\xe1\x06\x6e\x9d\x11\x5c\xb4\xa9\x62\x26\x7e\xba\x7b\xc3\xc4\x4c\x69\xdb\x76\xb1\x71\x94\x5a\x44\x66\xf1\x42\x71\xa1\x03\xc7\x67\xe3\x97\xcc\xc5\x6c\x1a\x16\x8c\x28\xde\xfc\xc4\x70\x69\x1d\xce\x56\xec\x05\x0c\x62\x5b\xe5\x40\xa3\xb6\x5b\x7b\xf9\x5a\x9e\xdd\x21\x03\x57\xf5\x97\x6d\xbe\xba\x74\xbe\xe2\x85\x91\xcf\x1b\xcb\x68\x94\x9f\x02\x30\xb4\x20\x02\x5e\xbd\x03\x5b\x53\xaa\x68\xb5\x6d\x20\x25\x33\xbe\x34\x70\x68\xa2\x00\xee\x03\xf2\xd7\x91\x41\x21\xf0\x4b\x23\xa5\xd2\xcf\xbd\x20\x67\x7b\x45\xa0\x16\x0c\xcc\x1d\x66\x1e\x01\x90\xd9\x1c\x90\x39\x73\x8c\xd8\x66\x84\x03\x22\xef\xc0\xa6\x7d\x50\xa4\x92\xa8\xd2\x17\x20\xa0\xd0\x9c\x71\x01\x15\x36\x5c\x7d\x49\xba\x66\xb6\x2c\x86\x6e\x30\xef\x94\x1f\x28\x81\x15\x8a\xeb\x76\xb1\x72\x9e\x00\x31\xf7\x29\x70\x07\x50\xdd\xb6\x1d\xbc\x7c\x01\x04\xe9\xe0\x6b\x99\x91\x8a\x1a\x78\xdc\xc8\x03\xdc\x07\xfb\x2a\x06\x50\x6a\x6d\x4b\x78\xb9\x3c\x3d\x1f\xd9\x12\xbe\xe6\x9d\x07\x06\x46\xb7\x04\x23\xff\x1a\x61\xc2\x3d\xf8\x16\x27\xdc\x71\x66\x78\x91\x2b\xfb\x6c\xdc\xfe\x21\x6a\xb4\x47\xcf\x83\xbd\x72\xca\xcf\x2f\x03\x80\x8a\xa2\x7e\x6b\xf8\x76\x46\xd0\x91\x89\xf0\x80\x6d\xb4\x0f\x6a\xf6\x18\xd0\xf7\x8f\x21\x82\xa6\xfd\x2c\x3b\x56\xeb\x6f\xd1\x2b\xe0\x16\xea\x90\x13\x65\x52\x81\xcc\xd7\xf7\xca\x36\x30\x8e\x62\xee\x4e\x06\x40\xb0\x8e\x42\x1b\x4d\xad\x57\xa6\x60\xb6\x75\x76\x90\x30\x1a\x45\x53\x67\x3c\xc2\xfe\x34\xed\xdb\x70\x2c\xb0\x28\x6d\xb7\xf5\x9a\x11\xd4\xe9\x62\x41\xfa\x3a\xa0\x5d\xa5\x8b\x7e\x4f\x49\xa8\x6f\x22\x8a\xda\xd8\x58\x96\x4f\xe5\x73\xb3\xfd\x46\xae\x43\x5a\xe5\x48\x6f\xde\x5e\x90\x6e\x0d\x45\x2e\x3f\x42\xea\xab\xfd\xce\x04\x5f\x28\x8a\x52\x54\xc5\x2f\xb7\x63\xf3\x48\x07\x7b\x31\xe7\xf8\xab\x83\x45\x53\x9f\xf7\xf2\x53\x07\x46\xd1\xdf\xbd\x05\x1a\xd3\xa6\x64\xbd\xf2\x83\xe0\x20\xb7\xd0\xc3\x12\xb0\x54\xc9\x75\xd9\xee\x5c\x61\xe6\xa5\xed\x20\x0e\x85\x94\xb7\xcd\xfd\xe3\xcb\x4f\xad\x19\xad\xae\x56\x72\x2f\x7a\x59\xa3\x44\x65\x09\xb9\x51\x50\x3a\xa9\x22\xf0\x30\xeb\x0c\xb9\x3b\x9f\xce\x0e\xb0\x05\xf0\xfb\x8b\x69\x43\xcb\x59\xf7\xe9\x73\xaa\xcd\x55\x48\xcb\x4f\x8f\x7a\xa4\xbb\x0f\x77\x23\x4a\x77\x8d\xd2\xf2\xb3\x7f\xb5\xd2\xf2\xd3\x17\x21\xf7\x17\x2e\xaf\xca\x97\x3a\xd0\xb2\x9f\x7c\x65\x31\x13\x7c\xac\xc5\xc0\x48\x85\xd1\xcb\x34\xd7\x09\xd3\xbc\xa8\x4b\x8a\x73\xb5\x8f\x59\x48\x4b\xad\xa8\xd2\xef\xcc\xd2\xfd\xae\xec\xec\xa0\xb8\xb1\x5d\x6c\xa5\x9b\xd9\xf6\x60\x2b\xe0\x5d\x72\x65\xb0\x8e\x3c\x25\x24\x50\x2a\xaa\xbe\x2d\xaf\xbc\x2b\x53\xc4\x56\xe6\xf7\xab\x05\x9f\x38\x83\xf2\x5d\x51\x71\xbb\x7d\x54\xee\xab\xef\xf6\xea\x80\x0f\x0b\xa1\xac\x1c\x04\xac\x75\xb6\x25\xe1\xa8\xfc\xb8\xf2\x50\x28\xc0\xf5\xa5\x60\x9d\x14\xc0\xd6\x9c\xda\x87\x82\x75\xec\xbd\x24\x6f\x35\x0a\x36\x43\x1a\x36\xb3\x54\x6c\x86\x74\x6c\x66\x28\x59\xab\xcc\x33\xd0\x32\xf8\xf4\xa2\x65\xea\x11\x5a\x72\xb7\x72\xdc\x6a\xe9\x2b\x3f\x41\xe5\x98\x1c\x29\xc6\x9c\x89\x0c\x48\x19\xf6\x23\x52\x5b\xa1\xe9\xa7\x70\xe8\x64\xf9\x99\xcd\x5a\x75\x6b\x2b\x43\x36\xe9\xce\xed\x63\x3b\xcb\x98\xa7\x5a\xcb\x6c\x57\x65\x36\xd7\xed\x4a\x6a\xf4\x6b\x9f\x36\x34\x60\xf2\x80\x60\x73\x16\x9d\x3b\xab\x83\x2b\x20\x78\x3c\x6e\xd2\x3e\xfa\x9c\x25\xf2\xe1\xf9\x71\x75\xc9\x1e\xb0\x11\xaa\x84\x6b\xc5\x92\xa2\x5c\x7c\x07\x1c\xd0\x18\x26\xb1\xd1\x33\x23\xfa\x41\x02\xae\x41\xce\xab\xfb\x0d\x09\x84\x61\x42\xdb\xb2\x07\x54\xc7\xd9\x5d\x0b\xb7\x7b\x65\xd7\x5b\x9a\x5f\x99\xa7\x25\xd9\x7e\x9e\x60\x5a\xb0\xcf\x77\xf3\x84\x87\x95\x4c\xec\x21\x9d\xc2\x11\xcd\x66\x25\x43\xfe\x23\x50\x97\xdf\xad\xa8\x3a\x5a\x6f\x3f\x26\x74\xce\x92\xe7\x40\x77\x2c\x91\xef\xba\xce\x5e\xa2\x9d\xd9\x37\x20\x19\xae\x0f\x43\x13\x46\x36\xf8\x26\x61\xb1\x99\xb7\x27\xbe\xf9\x89\x7b\xae\x6c\x39\x81\xc5\xc1\x72\xdd\x4a\xd1\x88\x6a\xb7\xd4\x1b\x31\x70\xcb\x8d\x3b\xde\xdd\x94\x59\x45\x53\x01\xf4\xf2\xd3\xbe\xdf\x62\x4b\x5d\xdb\xe9\xba\xe4\x02\x30\x8f\x2d\x16\x2c\xb2\x05\x90\xac\x29\x21\x01\xd2\x6a\x6b\x99\x40\xa8\x44\xb1\x93\xee\xc5\x0b\x29\x46\x2e\x59\x17\x3d\xb5\x58\x94\xc0\xda\x45\x20\x8d\xde\x37\x52\x40\x3e\x1c\x8e\xde\xc3\x68\xb7\x0b\x9a\xb2\x35\xf4\x53\x28\xf1\x36\x79\xf4\x2c\x8a\x64\x2e\xf6\x91\xbd\x6e\xab\x2f\xfe\x62\x32\x58\x8d\x2c\xb7\x8f\x19\x30\x79\x52\x92\xca\xb8\xa8\xa1\x0c\x02\x5d\x41\xa2\x2d\x30\x3a\x48\x2f\xee\xb8\x15\xdb\x7a\x19\x9d\x09\xa9\xc6\x97\x34\x7f\xaa\x3a\x01\x34\x0b\xf8\x6c\x70\x93\xc7\x80\xbc\x7b\xc8\x26\x4b\x73\x00\xec\xbd\xa0\x4d\x4a\x88\x1b\x6a\xac\x6c\xf0\x39\x2f\x4c\x95\x46\x00\xee\xb8\xf9\xfd\x84\x3b\xb2\x87\x09\x82\xf4\x95\x94\x48\x5f\x69\x89\xec\xde\xaf\x4e\x79\xe9\x7f\xee\x49\x57\x74\xa5\xd2\xea\x86\x74\xdf\xc1\x73\x4c\x26\x1d\x9a\x87\xf9\x94\x6e\x08\xf0\x2e\xdc\xfa\x5e\x85\x52\x17\xd1\xb6\x19\x62\xa3\x3f\xbe\xfa\x39\xbb\xba\x38\x0c\xfa\xc6\xab\x9f\xfd\x2c\x5a\x4d\x65\x08\xdc\xc7\xd5\xed\xdc\x4f\xea\xc6\x77\x3e\x5b\xea\xc6\x37\xd1\x41\x5c\xd0\x4b\xaf\x9d\xb9\x9b\x08\xfa\x30\x15\x70\x0d\x46\x4b\x78\x83\x76\x0a\xdd\x75\xf4\xea\x2b\x75\x07\xdc\x59\x0e\x7e\x47\xea\x79\x5d\xfc\xb6\xad\xd4\x45\x9b\xd7\x91\x80\xad\xec\x04\x56\x05\x65\x62\xdd\x4a\x0e\x15\xc1\xf4\x68\xd0\x98\x1d\xbc\xa3\x22\x60\xa9\x00\x46\x17\x2c\xaa\x9e\x2d\x73\x73\x1c\xb2\x1e\xfb\xa2\xfb\xf1\xae\x47\xa1\x03\xcc\x57\xcc\x88\xbf\xce\xd8\x2b\xb3\x3a\xef\xc6\xa5\x4f\x6d\xc2\x7f\x5c\x58\x42\x3b\xbc\x95\x06\x9f\xcc\x01\xfa\x7b\x44\xbb\x51\x01\x05\x29\x5c\x20\x81\x0d\xec\x68\x17\x59\xf6\x62\x9b\xfb\x73\xcd\x50\x16\x13\xb8\xe4\x4b\x3c\xee\xbe\xfa\x76\x6f\x9e\x0f\xfe\x89\x88\x80\xe7\x9f\x79\x84\x40\x60\x5e\x0b\xec\x0f\xbf\x6f\xee\x63\x51\xfd\x20\x95\xb5\x3b\x84\x9b\x9c\xb0\x85\x46\x3f\x56\x19\xc2\x84\xb7\xa7\x87\x91\x86\xf8\x17\xb1\x88\x38\x3a\x54\xe5\xca\x7e\x51\x0a\xda\xfd\xcc\x4a\xeb\xb4\x5f\x3c\xc3\x9f\xee\xee\xa6\xa5\xbf\xbe\x31\x88\xc1\x60\x89\x79\xb4\x79\xe9\x2e\xca\xf1\xf3\xe2\x17\xd6\x4c\xaf\x64\xbc\x07\x67\x78\x87\x2f\x3c\xad\xd4\x8e\x5b\x46\xa2\x8e\xfb\xf6\x82\x38\xcd\x98\xd8\x4d\xd4\xe0\x63\xf7\xa0\x90\xd5\x15\xe3\x28\x6e\xb5\x47\x6c\xbc\x1c\x93\x37\x97\x77\xc7\x64\xfa\xfe\xee\x98\x30\x1d\x8d\x9f\x93\x77\x79\xa2\x79\xda\xe5\xe7\xb0\x20\x02\xbe\x7f\x7d\x73\x68\xd4\xb0\x25\xc4\x11\xfe\xba\xfc\x56\x29\xd5\xab\x3d\xce\xf1\x70\x6a\x9e\xff\x12\xc7\xd8\x75\x82\xdd\x14\xc5\x3f\x41\x58\xe6\xb8\x38\x2a\xdc\xa6\x3b\x8b\xbe\x87\x41\x08\x1b\x2f\x4f\xc9\x88\xb0\x4f\x34\xd2\xa7\xe4\x64\x21\x25\x19\xd9\x20\xb1\x53\x72\x32\xa7\x19\xb9\xba\xbe\xbb\x3c\xc5\x00\x34\x26\x74\xb6\x25\xeb\x2e\xf1\xfc\xfa\xea\xed\x5f\x2c\xe5\xdc\x12\xc6\xb1\xa5\x29\x99\x1d\xc0\x24\x68\x45\x36\x7f\xe2\x2c\xce\xd6\x31\x6e\x6a\xbb\x56\x7e\x36\x34\xe1\x31\x2d\x8c\x7d\xd8\x90\xd5\x88\x4f\x5c\x87\x8a\xfd\x95\x9f\x3e\x38\x57\x45\x02\x03\x62\x68\xb3\x56\x69\xf0\x01\x80\x77\xcd\xd6\xfa\xf1\xaa\x89\x86\xc8\xed\x39\x73\x80\xb0\x76\xc4\x85\xcc\xd6\xa7\x0e\xec\xb3\xfc\xc5\x8b\xaf\x23\x33\x30\xfc\x8b\x9d\xba\xd2\xac\x7d\xcc\x5e\x88\x6a\xb0\x2a\x18\xce\x10\x8c\xac\x38\xc2\x72\xe8\x91\x85\xf7\x67\xcd\x80\x63\x74\x84\x9a\xf4\x16\x3a\x88\x05\xc0\xd3\xaa\x91\x69\x53\x6b\x80\xc7\x0f\xda\x4f\x9d\xe8\x45\x90\xba\x87\xe2\xd1\xba\x27\xcf\x9c\x9c\xbf\x9b\xf6\x8d\x00\x01\x62\xd4\xbc\x76\x9f\x4a\x51\x87\xf5\x11\xac\xd6\x56\xa7\x89\x81\x46\xc1\x94\x45\x53\x4d\xf0\xac\xb5\xe8\x57\x5e\x93\xe3\x8a\x4c\xcb\x17\x55\xff\x14\x2e\x9a\x7b\x65\xcf\xcc\x3c\x6d\xa2\x2d\xf8\xd3\xcd\x43\x9b\x57\x2d\x76\xca\x5e\x98\x68\xb6\xb6\x07\x9f\x07\xc9\x44\x0a\x1f\x4a\x00\x94\x08\x9a\x5c\xec\xa3\xac\x41\xb9\x78\x03\x60\xcc\x17\x81\x10\x55\x28\xe3\xec\xc3\xaa\xcc\xc5\xa4\x44\xb3\x68\x25\x78\x44\x3b\xa2\x92\xc0\x2c\x8a\xe6\x7f\xbe\x4e\xa5\x2a\x03\xe9\xb0\xcd\xef\xa1\x2a\x7b\xf4\x2c\x78\xc6\x1e\x68\x12\xee\x36\x52\x7e\x90\x5a\x58\xa3\x2c\x76\xfa\x91\x84\x89\x85\xc4\x4c\x16\x1b\xa2\xd7\x7d\x35\x3a\x7d\x78\xf0\xd8\xe7\x1f\x86\x19\x66\x4c\xfc\x9a\x66\x5d\x2e\xb0\xa2\x75\xdb\x77\x18\xe5\x0d\x3b\x84\xb1\x2e\xa3\x95\x24\x37\x36\x85\xf5\x88\x8f\xd9\x98\xa4\x5c\x2c\x55\xbb\x0f\xac\xd7\x7e\x7b\x10\x83\x34\x9c\x08\xd6\x00\x90\xc9\xd4\x25\x84\x7d\x76\x60\x58\xc5\xb8\x85\xf2\xb8\x0f\xe5\xa9\xf3\x8c\x35\x42\xa1\x4f\xe5\xca\x70\x4a\x4f\xc3\xe6\x5c\x1f\x36\x2f\xac\xb7\x2c\x34\xea\x95\x21\x2e\xba\x6c\xb7\x6f\xee\xb3\x88\x46\x99\x7b\xdd\xce\xe4\xca\x15\x4e\xfb\x72\xc5\xbe\x6c\xa9\x9a\x91\x54\xae\xc7\xa6\xa2\xa1\xd7\xee\x9e\xd9\xe4\x79\x92\x52\x9e\x35\xb7\x1e\x2c\x3f\x46\x65\xb5\xbd\xf1\x7d\x98\xd2\xb9\xcc\x75\x0f\x46\xf2\x54\x9a\xa3\x90\xda\xdc\xbe\x7e\x98\x71\x85\x0f\x77\x44\xf4\xc0\x23\xed\x91\x75\x03\xc3\x18\x18\xc6\x7f\x36\xc3\x10\x52\x3b\xb1\xaa\x11\x2c\xed\x51\x37\x3d\xe3\x6d\xfa\x45\xda\xec\x04\x84\x3a\x91\xaf\x23\x26\xd4\x3e\xd6\x0c\xb0\x8e\x7b\xdc\x23\xb4\xe7\x71\x41\x3d\xe9\xaf\x15\xb8\xb3\x03\x1f\xb6\x4f\xc8\xfb\x77\x1c\x5b\x60\xe1\xf5\x25\x01\x07\x93\x31\x60\x3d\xcf\xda\x2c\xf3\x36\x3a\xd7\x9e\xf3\x25\xa4\x1a\xdd\x40\xa6\x9c\xcb\xfa\x42\xb3\xf9\xd1\x9c\x45\x34\x57\x36\x26\xae\xc3\x95\x50\x2c\x31\x62\x19\x8c\x51\xc4\xd5\x3d\x47\x53\xbc\x6b\xe4\x51\x89\x12\xec\x62\xb1\x18\x3e\x78\xea\x47\xc0\x1d\xfb\xf1\x6f\xf8\x07\x68\x2a\x95\xbf\x36\xaf\xca\xbf\x6f\xcf\xef\xf0\xd7\xe6\x69\xec\x88\x6f\xb9\x66\x2e\xc8\x0e\xfa\xa8\x02\x82\x38\xa7\x2c\xf6\x9a\xfc\x6a\xf4\xf2\xdb\x6f\x5b\x4c\xfe\x5f\x0e\xed\x55\x53\x4f\x09\xfc\x54\x1d\xad\x45\x4f\x89\x1e\x59\x69\x0d\xed\x7a\xfd\x59\x87\x84\xb4\x21\x21\xad\x87\xdb\x73\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\xad\x69\xc7\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x4d\x3b\x19\x68\xd9\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x86\x9f\x21\x21\x6d\x48\x48\xab\x7f\x86\x84\xb4\x21\x21\xad\xf8\x0c\x09\x69\x43\x42\xda\x90\x90\x16\x1c\x74\x48\x48\xf3\x60\x31\x24\xa4\x0d\x09\x69\x43\x42\x5a\xf5\xf3\x4b\x26\xa4\x75\x34\x3b\xc7\x2a\xbe\xa1\xdf\x1e\xdd\xd6\xdc\xde\x8d\x47\x94\xef\xae\xde\xaa\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\x3d\xd4\xef\x0e\x2f\x6f\xa8\xdf\x3d\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\xe5\x67\x08\x97\x2a\x3f\x43\xb8\xd4\x10\x2e\xf5\xab\x0a\x31\x18\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x0a\x3e\xfc\x1f\x46\xcb\x86\x70\xa9\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x0a\x7c\x86\x70\xa9\x21\x5c\xaa\xf8\x0c\xe1\x52\x43\xb8\xd4\x10\x2e\x15\x1c\x74\x08\x97\xf2\x60\x31\x84\x4b\x0d\xe1\x52\x43\xb8\x54\xf5\x33\xd4\xef\x1e\xea\x77\x0f\xf5\xbb\x2b\x9f\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\xdd\x6b\x86\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\x3d\x94\x63\x1d\xca\xb1\x0e\xf5\xbb\x87\xfa\xdd\x43\xfd\xee\xe6\xf5\x0f\xf5\xbb\x07\x86\x31\x30\x8c\xa1\x7e\xf7\x50\xbf\xbb\xf2\x19\xea\x77\x0f\xf5\xbb\x6b\x9f\xa1\x7e\x77\xb3\x02\x39\xd4\xef\x1e\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\xcd\xff\x0c\x09\x69\x43\x42\xda\xaf\x2a\x89\x63\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x2d\xf8\xf0\x7f\x18\x2d\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x2d\xf0\x19\x12\xd2\x86\x84\xb4\xe2\x33\x24\xa4\x0d\x09\x69\x43\x42\x5a\x70\xd0\x21\x21\xcd\x83\xc5\x90\x90\x36\x24\xa4\x0d\x09\x69\xd5\xcf\xff\xec\xfa\xdd\x7d\xc2\x0e\xc2\x47\xdd\x2e\x1d\x2c\x30\x4a\xa4\xd4\xd8\x43\xab\xce\x15\xea\x22\x48\x1f\x2d\xdb\xc6\x22\xd8\x52\x54\x7c\x85\x0d\x5b\x0a\x9f\x0a\x14\x1a\xef\xda\xc7\xb5\x79\xa8\x85\x27\x55\x11\x59\xe2\xd3\xc1\x5d\x60\x28\x21\xd6\x82\x06\xe3\x8f\x19\x14\xbc\xa5\xf1\x18\xed\x41\x85\x35\x7b\xc5\x97\x46\xb9\x9e\x1d\xc0\x78\xb3\x03\x10\x01\xec\xb3\xa1\xa1\xe9\xc2\x28\x85\x1a\x84\x4e\x18\x20\x91\x0f\x2c\xc3\xd5\x60\x68\xa6\xb7\x38\x45\xe4\x9a\x6b\x6d\x78\x09\x77\x59\x3d\xa1\x41\x23\x29\x14\xc7\x52\xec\x68\xb7\x9c\x1d\x70\xb1\xe0\x82\x6b\x36\x3b\x20\x23\x02\x01\x81\xde\x76\x1c\xa7\xb2\xeb\x24\x09\x55\x7a\x4c\x8a\x9d\x05\x41\x62\xd6\xca\x63\x26\x34\x8f\x68\x62\x17\x58\x1f\x87\x0b\x42\x93\x74\x45\x45\xbe\x66\x99\xf7\x1c\x20\x40\x68\x54\xcb\x9f\xac\x89\x0d\xa3\x5e\x82\x3a\x37\x22\x87\xc8\xd7\xf3\x5d\xeb\x67\x9a\xb1\x8b\xab\xb3\xbb\x2e\xf4\x98\xe2\x63\x84\x8b\x98\x47\x68\xd9\x29\x32\x50\x56\xae\xbc\x7a\x95\xaa\x90\x39\x5b\xc8\xb0\xe8\x46\xc5\x96\x98\xe1\x1a\xd7\x3a\x97\x32\x61\xbb\x81\x19\x2d\x72\x7b\x4d\xca\xba\xf3\xed\x64\x88\xd5\x9e\xb5\xcc\x5d\xb4\x94\x47\xf7\xf8\x1f\x99\x07\x09\x90\xd9\x5b\xcd\xea\xe1\x61\x82\xcd\x97\xf1\xce\x50\x4b\x27\x74\x34\xdb\x6e\xca\x75\x18\xd9\x2d\x49\xe4\x03\x42\x0d\x4d\x78\x85\x51\x0b\x25\xeb\x3f\xa2\x7d\x07\x2f\xf6\xc7\x84\x6b\x96\x51\x30\xad\x84\x46\x9e\xcd\xc8\x08\xf3\xc5\x0c\x56\xaf\x53\x9a\x71\x25\xc5\x31\x81\xa4\x51\x67\x97\x71\x43\x2e\xa4\x24\x73\x9a\x81\xb1\xa8\x98\xee\x77\x7b\x4e\x57\xce\x67\x44\x2b\xf6\xf7\x9c\x26\x7f\xc0\x10\x67\xa7\x2a\xf0\x85\xd5\x11\xb8\x82\x67\x9c\xeb\xa3\x98\x32\x4c\x44\x7e\x86\x75\xd0\x32\x30\x6f\x5e\xfe\x33\xc2\x7f\x8e\xc7\x63\xf2\x2f\x6f\x05\x3a\xcb\x99\xcb\x54\x2a\x82\x7d\x71\x8e\x9f\x48\x38\xb9\xc0\xfa\x7c\x3a\xa6\x2a\xd7\x6a\x36\xc0\x45\x8f\xc5\x85\x26\xdb\x73\xbd\x30\x59\xdb\x02\xc3\x47\xe2\xad\x79\x45\xd5\x11\x8c\xf7\xd1\xb0\x8e\xe7\xe5\xd4\x77\xc5\xcc\x54\x97\xa7\xe3\x9d\xcc\xef\x00\x49\x83\x4c\xd7\x0e\x51\xd8\x87\xe5\x02\x9e\x05\xf3\x20\xfc\x3f\x7f\xf1\xe2\xe5\x2b\xfc\x2f\xfe\x52\xbc\x73\xbb\x92\x99\x1e\x45\x3c\x8b\x72\xae\x41\xac\xb5\x2f\x85\x26\xfa\xe7\x3f\x5b\xdf\x06\x47\x92\x3e\xc2\x67\x9e\x17\x0f\xa5\x34\x63\x56\x25\x5a\x66\x32\x4f\x8d\x4a\x34\x9b\x69\x9a\x24\x47\x41\x87\xa0\xed\x29\x80\x61\x41\x05\xbd\x70\xa3\x39\x1c\xa6\x49\xe2\xd9\xf8\xe0\x82\xbe\x45\x7c\x40\x25\xb6\x81\xc8\x99\xab\x8d\x74\xc6\x85\xca\xfa\xf4\x5d\x1d\x93\xd1\x31\xf9\x08\x70\x38\x19\x93\x5b\xb8\x72\xc4\x5e\xb9\xc6\x41\xd7\x32\x63\x24\x35\xfa\x97\x52\x7c\xc3\xc8\x1c\x93\x3c\xb6\xce\xbe\x6c\x2d\xff\x84\xa9\x88\xa6\x8c\x44\x2b\x9a\xd1\x48\xb3\xcc\x2e\xfb\x12\x63\xe5\x83\x97\xe1\x08\xb8\xd4\x9a\xc6\x6c\x94\xa7\x88\x16\xea\x79\x41\x8e\x20\xb3\xd0\x92\x8e\x07\x36\x37\x9a\x1b\xb3\xc4\xc3\x3f\xf1\x98\xa5\x89\xdc\xae\x99\x08\x92\x53\xfb\x7e\x9a\xc9\xd8\x21\x29\x8c\x6b\xee\x14\xd0\xa4\x4c\x0a\xcd\x44\xec\xa1\x3a\x8d\xee\xed\x17\xff\x32\x8f\x97\xe3\x93\xdf\xfd\xb1\xe9\x06\xc4\x6c\xe3\x86\xff\x1d\xa9\xdd\x82\x10\x29\x6b\x13\x9e\xaa\xd6\xd8\xbe\x52\xe1\x6d\xf0\xad\x2f\x26\x1a\xda\x45\x3a\x63\xcd\xbe\x02\x22\x78\x7d\x7a\xf0\x54\x70\x0e\x95\x12\xc0\xc3\x0a\x32\xd6\x2b\x3c\xdf\x0b\x8b\xb3\x6a\x66\x90\x4e\x99\x7b\x27\x6d\x07\x95\x63\xfb\xd7\x5c\xea\xd5\x98\x60\xa4\x2a\x70\x93\x4f\xa9\x91\xa8\x74\xb2\xf5\x94\xd9\x23\xe8\xfe\x12\x0c\x41\xf6\xe8\xa8\x20\x51\xc6\x6c\x82\x8c\xb2\xb7\x5b\x66\x44\xf0\xe4\xf9\xb1\x4b\x72\x89\xd9\x82\xe6\x89\x56\x04\xb7\x65\x40\x97\xc5\x0d\x3a\x8d\x96\xe4\xc1\xd0\xca\x89\xd5\x9c\xcd\x22\x2e\x3d\x25\x1a\xe4\x56\x47\x3f\x8b\x46\x28\x18\x76\xd9\x94\x27\x6f\xe7\x27\x5c\xe1\x1d\x1b\x91\xbf\x5a\x51\xce\x2c\xc8\xcd\xf4\xb7\x63\xcb\x22\x8c\x60\x0c\xde\x9b\xca\xc4\xc1\x7b\xcc\x45\x94\xe4\xb1\x73\x70\x46\xd4\x08\xcb\x30\x40\x39\x0c\x41\x26\x2d\x64\xb1\x25\x18\xee\x79\x53\x74\x65\x75\x71\x97\xe1\xb5\x55\x20\x62\x08\x53\x39\x7c\x50\xb9\x83\xe7\x1a\xb7\x7e\xdc\x39\x61\x68\x50\xb0\x2d\x36\x1d\x13\xd2\xc0\x0f\xd6\xb0\xe8\xa9\x27\x19\xa3\xe6\x36\x45\xf7\x84\x2e\x29\x17\x41\x94\x45\x34\x41\x87\x54\xf2\x40\xb7\x6a\x27\x3f\x01\xa3\x45\x8e\x89\x60\x1b\x96\x55\xb0\x2e\x68\x64\xe9\xd9\x65\xa9\x84\x02\x61\xc0\x3a\x0a\xbf\x6a\x2a\x95\xe2\xf3\xc4\x4d\x5c\x86\xc3\x99\x17\x6e\x53\x16\x85\xd5\x6e\xdc\x48\x73\x80\x60\xbb\x82\xdf\xa8\x3b\x87\x55\xee\xdd\x6f\x81\x73\xc4\x7e\xd8\x83\xd2\x32\xa3\x4b\xe6\xbe\x52\x9a\xea\x1c\x01\x83\x9e\x3f\x16\x5f\x79\x3e\x99\x7b\x2e\x62\x43\x8d\x1c\x48\xd3\x24\xcf\x68\x52\x7e\x13\x49\x81\x8e\x78\x75\x4a\xfe\xfa\x37\xf3\x8d\x19\x9f\xc5\x36\xd1\xd6\x7e\x3b\x13\xa3\xd1\xa8\xf8\xdf\x33\x9b\x03\x71\x4a\x22\x20\x0e\x27\x9a\xad\x53\x68\x67\x75\x72\x1f\xc7\xa3\x28\x8b\xd5\x78\x4b\xd7\xc9\x4c\xd0\x94\xbb\x04\x5f\x42\x53\xce\x3e\x69\x26\x60\xd8\xf1\xfd\x77\x6a\xcc\xe5\xc9\xe6\xab\x99\xc0\x25\x9e\xe7\x4a\xcb\xf5\x0d\x43\x17\xe4\x05\x03\x95\x12\xc8\x7b\x25\x8d\x16\x0c\x67\x04\x83\xb0\x05\x06\x2c\x2b\xa6\xd5\x38\xca\xe2\x71\x9a\x49\x03\x38\x5c\xd4\x58\x66\xcb\x99\x30\xa4\x10\xde\x03\xf9\xe6\x94\x34\x3c\x56\xf5\x63\xe1\x82\xea\xb1\xd5\xf8\x5b\xc2\x95\xfe\x73\xf0\xf7\xb7\x5c\xe9\x2a\x8c\x77\x56\x69\x0f\x90\x8b\x65\x9e\xd0\x6c\xf7\x01\xf3\x3b\xd0\xc5\x6c\xc3\xde\x8b\x7b\x21\x1f\xc4\x6b\x83\x78\xea\x94\x2c\x68\xa2\x00\x01\x54\x24\x0d\x8e\x9c\x27\xb9\xd2\xa8\x9f\x6e\xdc\x51\x99\x3f\x46\x16\x42\x06\xb0\x30\x59\xb4\x62\xeb\x32\x03\x59\xa6\x4c\x9c\x4d\x27\x3f\x7e\x7d\x5b\xfd\xbe\x76\x8b\x76\xe2\xca\x2b\x99\x1d\x10\x9f\x40\xb3\x39\xd7\x19\xcd\xb6\x64\x32\x25\x2a\x9f\x8f\xdc\x36\x4e\xce\x27\x17\x37\x15\x12\x86\x16\x91\x95\x21\x7a\x28\x27\x81\x36\x0c\xaa\x1c\x52\x35\x2d\x31\xc9\xd0\x06\x83\xac\xc9\x86\x53\x2f\x2c\x0f\x03\x2e\xf0\x55\x7f\x5c\xb9\xd8\x5d\xa8\xf3\xd9\x17\xe6\x1f\xff\xd6\x36\x98\x67\x3d\x2c\xad\x5e\xd2\x6a\xd5\x14\x03\x37\x1b\x9d\x82\xd9\x1c\x48\x57\x2c\xf8\x59\x6c\x61\x8d\x84\x05\xc8\xa4\xe5\x71\x34\x64\x77\x33\x20\x14\xf6\xaa\x8f\x41\x02\x62\x99\x72\x3a\x72\x24\xc5\x86\x65\x9a\x64\x2c\x92\x4b\xc1\xff\x51\x0c\xae\x5c\xbc\x0c\x5c\xb7\x1d\xa9\x91\x0b\xcd\x32\x23\x2b\x01\x8d\x43\xaf\xc0\x9a\x6e\x49\xc6\xcc\x34\x24\x17\xde\x80\x2e\x5a\xef\x9d\x91\x91\xb9\x58\xc8\x53\xa8\x67\xa5\x4e\x4f\x4e\x96\x5c\xbb\x0b\x1a\xc9\xf5\x3a\x17\x5c\x6f\x4f\xc0\x83\xcf\xe7\xb9\x39\x92\x93\x98\x6d\x58\x72\xa2\xf8\x72\x44\xb3\x68\xc5\x35\x8b\x74\x9e\xb1\x13\x9a\xf2\x11\xac\x5d\x00\x49\x19\xaf\xe3\x67\x99\xbd\xd1\xea\x30\x44\x00\x77\xe9\x26\x5c\xbe\xb6\x63\x30\xb7\xcf\x26\x81\xa3\x12\x80\x52\x4c\x01\x6d\xc7\xc9\x6f\x2e\x6f\xef\x88\x9b\x3d\x98\x30\x8f\xc0\x2f\xdf\x54\xe5\x39\x18\xa0\x71\xb1\x70\xe2\x1a\x38\x4d\x7c\xeb\x06\xca\x0a\x09\x0f\x48\xee\x2a\x9f\xaf\xb9\x56\x5e\x21\x24\x39\x26\xe7\x85\x37\x25\x4f\x63\xaa\x59\x3c\x26\x13\x41\xce\xe9\x9a\x25\xe7\x54\xb1\x2f\x7e\x0a\x20\xb3\x8e\x0c\x6c\xfb\x9e\x43\x43\xf1\x82\x26\x53\x71\x41\x68\x1b\x8e\xad\x7e\x51\x0d\xc3\xad\xe6\xd0\xb9\x94\xcb\xb2\xc8\x01\x25\x75\xea\x5b\x7e\xdc\xc1\xd6\x78\x72\x8b\x03\xa6\x21\xdb\x63\xa7\xd1\xa4\x0b\x48\x9d\x4c\x89\x23\x69\x48\xc1\xe6\x2c\x91\x06\xb7\xa4\x35\x40\xb1\x90\xdb\xbe\x59\x4c\xf9\x2d\x09\x0a\xff\x7e\x09\x61\x25\x55\x19\x80\xf5\x05\xa4\x03\x3f\xcb\xaa\x2e\x19\xf8\xbf\xed\x4a\x05\x95\x95\xd5\x25\x02\xff\xc7\x7f\xa7\x34\x30\x70\xca\x81\x53\xfa\x47\x30\x70\xca\x5f\x8c\x53\xfa\xd4\xa3\x1f\x97\xdc\xa5\x45\xe5\x67\x7f\x3e\xc9\x3e\xa5\x10\x6e\x32\x99\xf6\x31\x72\x99\x93\xb6\x2f\x54\x93\x0e\x8f\x26\xd3\xcd\x37\x70\xad\x26\xd3\xcd\xab\xe7\x4e\xdd\x76\x68\x11\xd4\xa5\x27\x68\xbb\x9f\x98\xbb\xb9\xa0\x11\x03\x17\xdd\x6c\x76\x50\xf3\x86\x14\x46\x29\x30\x2f\x24\x52\xde\x3b\xab\x20\x77\x6f\x06\x8d\xc1\x2e\xea\xc7\x4b\x86\x9c\x4c\x2b\x71\x78\x98\xbf\x0d\x7e\x3a\x6b\xee\x00\x22\x42\xf5\x18\x62\xdb\x83\x7c\x7d\x36\xd3\x60\x23\xc9\xd5\x4e\x90\x7c\xad\x2c\x00\xe4\x61\x16\xf1\x24\x32\xb3\x16\xbd\xd0\xa0\xf5\x2e\xce\xb3\x99\x19\xcf\xb6\x6f\x2e\xf6\x6f\x89\x9f\xaa\xce\xca\x45\xb8\xe8\x40\xa1\xba\xf9\xe7\x34\x86\x04\x60\xc3\x76\x2a\x21\xcb\x18\x2c\x71\x59\xa2\x02\x5a\x40\x42\xc3\x72\x85\xe6\x56\x2c\x4b\x45\x35\x49\xf3\x2c\x95\xe6\xa6\x1e\x4d\x16\x36\x42\x6a\xc5\xca\xa3\x31\xf3\xb8\x10\xc8\xf6\x38\x2b\x67\x7a\x94\x0c\x8f\x3f\x61\x34\x13\xc5\xb1\xd9\x13\x2c\xc7\x35\x0b\xc8\x15\x98\xc7\x1b\x63\x3b\x66\x33\xed\x8e\x63\x1c\x34\x6e\x3f\xb9\xfc\x46\xca\x15\x5e\x85\x83\x7e\x6a\x57\xea\x12\x2b\x69\x1a\xbc\xff\x6f\xb4\xec\x5b\xb7\x4b\x19\xee\x53\x54\x27\x79\xcb\x45\xfe\xa9\x1d\xeb\x0b\xc7\x73\x81\xd0\x7f\x00\xd4\x5b\xa7\x7a\x3b\x26\xe5\x34\xbe\xaf\x1a\x1d\xb7\x5c\xb5\x52\x16\xf3\x59\xca\x0d\xcb\x04\xba\x7c\x8a\x30\x38\x79\x5c\x86\xbe\xad\x32\x99\x2f\x31\xbc\xc1\x59\x70\xad\x50\xdd\x9e\x9d\x6f\x0f\x17\xf0\xd2\x3c\x58\xd4\x26\xc0\x9e\xde\x31\x92\x05\xc0\xc9\x3f\x10\x66\xf6\x8f\x17\x3b\x36\x48\xb2\xc1\x8b\x18\xae\x56\x51\x06\x15\x6d\xa0\xcd\xfa\xb6\x04\xdf\x31\xf1\x6d\xc1\x52\x61\x4a\xc3\x89\x96\x10\x22\x6f\xd6\xe2\x8c\x1c\xe1\x08\x83\x44\x46\x34\x29\xf2\xdb\xad\xfd\x74\xb2\x20\x15\x7a\xe6\x68\x99\x77\xbe\xbd\x40\x0d\x17\xc9\xc1\xbb\x12\x72\x08\xdb\x07\x7a\x62\xf6\x6e\x65\x2d\x80\x9c\x07\xfe\x20\x91\x71\x68\x54\xde\xa1\x02\xd6\x95\x35\x03\x0a\x8e\xc8\x83\x21\x73\x55\xe2\x1c\xa6\x07\x68\xcc\x1d\x55\x8e\x3f\x30\x59\x91\x92\x58\xda\x85\xcd\xcd\x0e\x0e\x2a\x7c\x62\x04\xd5\x74\x33\x88\x97\x38\x0e\xac\xaa\x58\xc2\x31\xa1\x40\x35\x76\xc5\x3f\x62\xdd\xd9\x3e\xef\x2a\x9a\xa8\x97\xb5\xc6\x30\xab\xca\x28\x25\x19\x56\xe1\xb3\xb3\x28\x72\xa4\xf2\x30\x85\xa1\x0a\x8e\x96\xe9\xd5\x0b\xf3\xff\xe7\x36\x25\x08\xfc\x8c\x2c\x26\x66\xdd\x7f\x20\x5c\x13\xae\xc4\xa1\x2e\x8d\xd2\xdd\x9c\x9c\xe0\x65\x4e\x33\x69\xa4\x17\x0f\x05\x10\xc6\x1e\x55\xa8\xe2\x61\xb9\xea\x20\xcf\x75\x79\x5b\xa7\xb8\x57\x48\x93\x04\xe9\x07\x53\x29\xd1\x4d\x65\x24\xae\x75\x9a\xb0\xb5\xc1\x35\x24\xf5\x25\xe1\xf0\x17\xad\xfe\x10\x3e\x3d\xae\x39\x4d\x92\x2d\xf9\xbf\x0d\x8c\xd3\x8c\x8d\x20\x3c\xa6\x70\xfa\x4c\xcd\x21\x31\x5b\xf3\xb8\x20\xfb\x51\xbe\x6e\xd2\x09\xcc\xc7\xb5\xb8\x47\x01\xdf\xb6\xd2\x97\x22\xe8\x3d\x68\x23\xde\x22\x5c\xf0\x6e\xc7\x30\x60\x9e\xb3\xc1\xfb\x10\x9b\xb4\xd8\x3a\x86\x6f\x57\x0c\x0f\x70\xa3\x68\x8b\x20\xb0\xdb\x16\xd1\x94\x38\x5c\x73\x6e\x18\x66\x5f\x91\x07\xbd\x20\x5e\xbc\xbb\x36\xa7\xd5\x15\x40\x0e\x06\x04\xcf\x19\xda\x5b\x99\x88\x30\x92\xaa\x10\x37\xec\x81\xdb\x58\xd7\x3d\xb8\x63\x67\xe4\x6b\x6b\xc4\x6b\x77\x94\xa4\xd9\x56\xc7\xeb\xad\x09\xab\xbf\xa6\xc2\x66\x5f\xaa\x8e\x55\x47\xfc\xa7\x68\x20\xd8\x23\x00\x6e\xc3\x2f\x2d\x95\xea\x1e\x1d\x35\x9a\xa2\x18\xdb\x89\xee\x67\x65\x72\x38\x5e\x38\x0e\x7c\x6e\xe1\x49\xc7\x38\x92\x5d\x44\x73\xfd\xcf\x32\x59\xc4\xb0\xda\x42\x07\xc1\xba\xef\x76\x39\x5e\xe0\xa5\x53\x09\x30\xa2\xb0\x69\x50\xcc\xb6\x48\x53\x46\xb3\x22\x96\x0f\x92\x79\x48\xb1\xae\xd2\xdd\xed\x46\x76\x31\x99\xa5\xbc\x3e\x6a\x8c\x58\xac\xdd\xca\xc1\xda\xf8\xab\xb5\x36\xf2\x94\xae\xe7\x89\x8c\xee\xbf\x84\xa9\x71\x32\x3d\x7b\xf7\x83\x19\xbc\x6e\x67\x2c\x7e\xd8\x35\x32\x96\x0b\xaa\x5b\x18\x8b\x5f\x06\xf3\xa2\x5d\xe5\x60\x5e\x1c\xcc\x8b\xbf\x1d\xf3\x62\x41\x34\x7a\xd9\x16\x45\x9d\xfa\x94\x9f\xfd\x2d\x8b\x46\x61\x31\xb0\xeb\xe4\xfb\xf6\x39\xa7\x13\x02\xb9\xb2\xc1\x4c\x5c\xe1\x9f\x4e\x6f\xc4\x74\x3d\xa6\x83\x06\x24\xae\x8b\xb4\x01\xaf\x31\x09\x99\x1d\x18\xed\xf8\x14\x9b\x87\x98\x7f\x82\x64\x04\x41\xac\xb3\x03\x18\x10\x62\x43\x99\x3e\xf6\x26\x6c\x50\x75\xcd\x93\xb0\x2f\x6c\x85\x03\x7a\xf7\x9e\xa2\x3f\x4d\x8c\xc2\xd6\x54\x6c\xbd\x0a\x19\xc3\xb1\x81\x62\x95\xef\x10\x2e\x46\xb9\xcd\xf0\x70\x62\x08\xac\x78\x4c\x04\x4f\xa0\xab\x4d\x43\x9e\xc5\x9a\x51\x94\x73\xca\xd1\x08\xdc\x31\xc6\xd0\x2c\x28\xa4\x18\x79\x63\x18\x6d\x9a\x8b\x98\x7d\x22\xfc\xb8\xc9\xa6\x60\x7f\x2f\xf2\x5e\xb8\x21\x82\x16\xf8\xde\x34\x3b\x8b\x05\x0a\xd9\x30\x26\xd2\x15\x3b\x26\x4e\xe0\x46\x54\x4a\x46\x1c\x0a\x87\x50\x8d\xd7\x91\x15\x06\xdd\xb3\xe2\x9b\xa0\x48\x68\x40\xf9\x08\x91\xaa\x45\x03\x78\x46\xee\xae\x2f\xae\x4f\xb1\xfe\x91\xc8\x93\x84\xce\x51\xac\x5c\x53\x91\x83\xfa\x4b\xe3\x18\xa4\xcb\x31\xf9\xc0\x1c\x8b\x41\x3a\x44\x8a\x02\x09\xd9\x68\x19\x2e\x08\xfa\xcc\x60\xd8\x8a\x8a\x38\x61\xe4\xaf\x7f\xfb\x6f\x43\xfc\xf0\xb2\x25\x5b\x5b\xc9\x24\xa8\xe0\xbb\x85\x34\xe9\x0d\x2d\x82\x7a\x09\xd3\x4e\xc4\xf4\xa0\x0f\x51\xbb\xb4\xc0\xd4\x22\x4e\xc8\x11\x32\xef\xd4\x42\xeb\x85\xb8\xea\x2a\x7e\x97\x54\x60\x4c\xee\x24\x59\x18\xc6\xe3\x9d\x37\xda\x4e\x30\xf7\xaf\x7c\x31\x48\x11\xcc\x45\xa9\x64\x10\x54\xf1\xf2\x50\xd9\x2e\x50\x0e\x85\xbc\x65\x34\x26\xca\xd3\x00\x62\x32\xb4\x95\x14\x7a\xc1\xfe\xd8\xd6\xa9\x50\x23\x26\x7c\xe4\x61\x75\x8f\xf4\xd2\xaa\x15\x33\x82\x36\xcd\x42\x24\xd9\x6e\x6e\xbf\x0e\x0f\x7d\xd4\xdf\xae\x34\xc6\x47\xeb\x95\x11\x8f\x3b\x43\xcd\xef\x1c\x26\x1d\x2a\x72\x3e\xb9\xb8\xd9\x93\x56\xc7\x2c\x61\x3a\xa8\x61\x57\x66\xb9\xc0\xc7\xec\x5d\x28\x84\x41\x9b\xa7\x55\x84\xa7\x3f\xc8\xec\x9e\x66\x32\x37\xe8\xec\xb5\x29\x68\x30\x80\x1a\xbc\xf2\x12\xd6\xcf\xa6\x13\x0c\x54\x9e\x6f\x71\x59\x48\x57\x13\xcc\xbb\xc9\x98\xce\x33\x41\xa0\x9b\xc8\x22\xe1\x61\x48\xb3\x2c\x93\x99\x4b\xaa\x29\xd9\xea\x9c\x31\xe1\x89\x47\xda\x51\x2a\x97\x0f\xce\x74\x41\xd1\xf6\x4f\x49\xfb\x7b\xce\x44\xc4\xae\x20\xbb\x2e\x08\x46\xf0\x12\x9c\x92\x17\x1d\x20\x36\x04\xd4\xa8\x84\xe0\xd6\xc2\x41\x6d\xce\x1e\xda\x95\xb9\x72\x5b\xc0\x6c\x77\xcd\xc3\xd6\x8f\x72\xeb\x5c\x91\x87\x8c\x6b\xcd\x84\x35\x0c\x54\xf8\x15\x04\x32\x2b\x69\x27\x45\x05\x1e\xa7\x0d\x13\x5d\x58\x89\x2f\xc0\x10\x9b\x0d\x67\x16\x02\x36\x0d\xad\x8a\xb8\x7b\x5b\x71\x3a\x63\x09\xa3\xaa\xe1\xea\x80\x2c\x76\x4c\x52\xaa\x3c\x47\x63\x75\xe3\x1e\x3b\x04\x2a\x5a\x25\x6e\xc1\x41\x93\x44\x3e\x28\x92\x2b\xdf\xb4\x0c\x51\xdd\x4a\x13\x4a\x32\x8a\x95\xce\x6d\xad\x2e\xc3\xa3\x99\x50\xb9\x05\xc0\x24\xd8\xa7\x72\x45\xc1\xb2\x0d\x48\x84\x1b\x32\xdc\x59\xc4\x24\x63\x23\xbb\x18\xa3\x45\x41\x65\x3e\x48\x86\xc4\x67\x9c\x98\x1e\xc0\x28\x6c\xd3\x02\xac\xf7\xd5\x37\x4d\x08\xd7\xc0\x97\xab\x08\xf7\x5a\x66\x25\x49\x0f\x60\x5f\x6f\x6a\xd7\xb1\xa4\x4e\x61\xa1\xd6\xb6\x23\xf5\x64\x3a\x16\x17\x72\x93\x57\x04\x02\x51\x08\x52\x5a\x3e\x0b\xeb\x4a\x74\x18\xfb\xc4\xc4\xf9\x58\x1b\x71\x84\x94\x79\xb6\xf7\x6c\xeb\xca\x68\xa4\xea\x98\x28\xd4\x83\xef\x19\xe4\x06\x44\x54\x69\xdb\x65\x0d\x08\x68\x23\x81\x08\xd3\x77\xac\x07\x73\xd6\x53\x51\xb8\xad\x3c\xed\x32\x7c\x0b\x8d\xc5\xac\x27\x36\x3a\x25\x42\xd5\xe0\xa0\x08\x7a\xc6\x13\x29\x96\x2c\x43\xb2\x6c\xfd\x8c\xd8\xbe\xe6\xbd\xc2\xe1\xce\xa5\x58\xf0\x65\x7d\x3e\x73\x49\x18\x0d\xa5\x05\xb4\xd2\xc0\x5c\x14\x27\xdd\xb5\xc1\xf7\xe5\xa3\x2e\x1b\x2a\xc3\xdc\x6b\x67\x19\xf5\x05\x25\xb4\xf9\x37\xa4\x7a\x18\xa9\xbe\x2a\x4a\x3d\xa1\xec\xdb\xc8\x94\x1b\x4c\xd2\x23\x7f\xdd\x3b\x3f\x35\xc8\xed\x23\x60\xf0\xf5\xef\xaa\x18\x53\xff\xd5\x83\xf5\x60\xe8\x7c\x22\x43\x67\x04\x97\xe1\x4b\x59\x3a\xf1\xaa\x85\x4c\x9d\xf8\x4b\xd8\xd6\x69\xd7\x14\x32\x76\x46\xc5\x80\x83\xb5\x73\xb0\x76\x0e\xd6\xce\xdf\x9c\xb5\x13\xe9\xc6\x1e\xe6\x4e\x9f\x04\x95\x9f\x47\xd8\x3b\x73\x2d\xad\xb8\xc9\x40\x20\x09\xf1\xd6\x56\x51\x61\x4d\x3f\xe1\x8b\x53\x96\xfd\x09\x6c\x96\x5d\x92\x64\xf5\x79\x30\x9a\x0a\x29\x46\xff\x60\x99\x3c\x76\x26\xb4\x35\xfd\xe4\x89\x8a\xbe\x9b\xa8\xb6\x34\xa8\xae\x46\x05\x94\xec\x28\x6c\x9c\xa0\x4d\x35\x98\x39\xd7\xf4\x13\x5f\xe7\xeb\x53\xf2\xf2\xab\x6f\x7e\xff\xcd\x77\x5f\xbf\xfa\xe6\xf7\x81\x87\xb8\xc0\x87\x02\x2a\x5e\xbb\x2c\xdf\x25\x1c\xb6\xc0\xb2\x59\x10\xd9\x39\xa4\x7d\x24\x8c\x41\x8c\x78\xb4\x18\x81\xf6\xab\x2f\x25\x46\xfc\x09\x46\x0f\x89\x11\xf8\x4b\x58\x8c\xb0\x6b\x0a\x89\x11\xab\x62\xc0\x41\x8c\x18\xc4\x88\x41\x8c\xf8\xcd\x89\x11\x48\x37\xf6\x10\x23\x7c\x12\x54\x7e\xf6\x17\x23\x80\x41\x7f\x8e\xb1\xaa\x97\xf2\x1e\xb6\xc7\x34\xdb\xbb\x5b\xe5\x16\x24\x96\x93\x8b\xc6\xf7\x42\xd6\xf5\x46\x16\x1d\xf0\xbf\x8e\x8a\x29\x06\x7e\xfc\x24\xfc\x38\x95\x32\xf9\x32\xbc\x78\x2a\x5d\xf8\xa0\xcf\x87\xcd\xb7\x21\x1e\x0c\xeb\xd8\xe5\xbf\xa9\x1d\x64\xe0\xbd\x03\xef\x1d\x78\xef\x6f\x8c\xf7\x1a\x5a\xd1\x9b\xef\x9a\x87\x1f\xa3\xab\x63\xf9\xb9\xf7\xaa\x47\xac\x43\xf1\xa8\x0b\xda\x50\x58\xef\x0a\x9d\x0f\xc4\xd0\xaa\x22\xee\xc8\xa5\xc6\x41\xbd\xd5\x10\x73\x86\x50\xa3\xa2\x60\x97\xcb\xcc\x3a\x2e\x0b\x6e\x69\x49\xfe\x3a\x3b\xb8\xcb\x85\x60\x09\xd4\x79\x3b\xf8\x60\x33\x3b\x66\x07\x7f\x83\x7d\xcf\x69\x74\x3f\x82\x0a\x96\x9a\xcf\x79\xb2\xa3\xa4\x92\x2f\x93\xd7\x06\x6c\xf9\x96\xff\xa3\x57\xf2\x04\x3a\xa3\x14\xff\x07\xd8\x10\x72\x85\x19\x2f\x65\x26\x22\xa1\x4a\xf1\xa5\x58\x9b\xcb\xd4\xd8\x17\xc3\x96\x4e\x93\xc9\x98\x5c\x78\xe0\x79\xf9\xca\x0e\x66\x13\x4e\xbf\x7a\xf9\xd2\x7d\xf1\xaa\xd1\x39\xd3\x20\x0e\xf5\x8d\x21\x80\x43\x7e\x4c\x00\x01\x57\x74\x9e\xb0\x1f\xde\x4c\x2f\x3f\x35\xe4\x34\x54\x89\xd6\x05\xbe\x40\x18\x3c\x6e\x48\x54\x26\xf3\xa2\xbc\x3c\x40\x64\x32\x25\x06\xeb\x0f\x6d\x48\x03\x91\x9b\x70\x7c\xd2\x0f\x6f\xa6\x63\xf2\xd7\x0b\xe7\x61\x07\xa6\xf9\xb7\x40\x1f\xdb\x56\xd1\xce\x6e\xa0\xd3\x75\x05\x0e\x6d\xf7\x30\x58\x9e\xb2\xbc\xcc\x5c\x35\xf2\x71\x19\xac\x80\x67\x5f\x26\xa5\x86\x16\x5f\x6e\x17\x10\x60\xcf\x55\xf3\x94\xa7\xdd\xa0\x2e\x7c\x85\xa7\x96\x78\x43\xc5\x41\x8e\xfd\xd9\xcb\x2c\xd7\xb3\xe9\x64\xf3\x15\xdc\xba\x07\x9a\xc5\xc1\xd5\x56\x6e\xa3\x61\x0e\xda\x72\x17\x7f\x54\xd8\x3a\x12\x93\xe3\xea\x4f\x41\x00\x60\x6a\x2f\x72\x69\x73\x81\xcc\xa2\xc6\x81\xe3\xeb\x88\x1c\x62\xa2\xe9\xfc\xc2\x67\x68\x9f\x2f\x8f\xd0\xc0\x92\x68\xa0\x47\x66\x4f\x3e\xa5\x0b\x8f\x09\x79\x6b\x31\x4b\xf8\x86\x65\x65\x87\x25\xf3\x55\xd1\x7f\x50\xd5\xea\xac\x07\x4f\x98\x74\x9d\x32\x81\x92\x9f\xc1\x6c\xae\x9d\xbd\xdd\x01\xb1\x9e\x4c\xe1\x05\x28\x31\x05\xde\x6b\xe1\xd5\xa9\x9b\x1d\x60\xe9\x3a\xd7\x4f\x14\xba\x14\x8f\xb0\x73\xee\xec\x60\x4c\xc8\x59\xd3\x7e\xcd\x98\xb5\x11\xca\x08\x92\x5c\xd9\x99\x4b\x18\x9a\xb3\x35\xd7\x1a\x70\xa4\xb1\x63\xbc\x07\xaf\x6a\xae\xfd\x0e\xec\x08\x39\xf3\xd6\x50\x5d\x77\xd3\xe8\xb0\x40\x87\xe8\xf5\x05\x3e\xb8\x2a\x80\xfe\x1a\x30\xdf\xcd\xdc\x8e\xa6\x31\x69\xd9\x05\xcd\x76\x1c\x76\x52\xa8\xeb\x93\x61\x06\x17\xee\x04\xca\x24\xe1\xd6\xee\x91\x47\x7c\x51\x65\x9b\xcf\xcd\x2a\x4a\x58\xb7\xa2\x4e\x3b\xa3\x0b\x6b\xc1\x06\xe3\xdf\xf5\xc8\x12\x3c\x77\xf2\x09\xfa\x1c\xf3\xac\x94\x4d\x02\x07\xde\x8e\xea\x93\xda\x1e\x8f\x5d\x8b\x17\xae\x30\xae\x01\x00\x85\x71\x64\xb3\x83\x2b\xb6\x81\x8a\xf0\x47\x50\x7e\xbd\x3a\x59\x68\x74\x33\x82\xa5\xcd\xa1\xde\x82\xad\xe9\x92\x54\x8f\x64\xae\x97\x92\x8b\xe5\x6f\x85\xa4\xb6\x52\x1d\x41\xf5\x75\x4f\x78\x60\xb5\xd6\xf2\xf9\x92\xa8\x3a\xb2\x08\x35\x51\xbd\xc6\x69\xa4\x35\xe3\xdc\x0a\xc4\x46\xef\xf0\xef\xff\x0e\x71\x95\xb9\x56\x3c\x66\x85\x82\x59\x88\xa8\xa1\x41\xa1\xad\x8c\xfa\x7b\xce\x32\x1a\x07\x7b\x04\xb5\x43\x43\xc6\xbd\xbb\x41\x9c\x61\xf4\x99\x15\xda\x6d\x51\x40\x83\x2d\x36\xa4\xb7\xc8\x68\x06\x4a\x33\xdf\x62\x0d\xc0\xd0\x9a\x8b\x96\x4a\xfb\xe1\xf2\xe6\x53\x42\xc5\x67\xde\xec\x1f\x7f\x7a\x7b\x76\xf5\x8b\x5d\x6d\x98\x2d\x28\x1b\x17\x0b\x78\xf4\xdd\x6e\x34\xc0\xed\xc6\xdd\x0c\x76\xb6\x3d\xed\x6c\xa0\xc5\x57\x92\x3c\xaa\x01\xff\xe3\xfb\x7c\xce\xe6\x39\x4f\x62\x96\xc1\x04\x6e\xfa\x23\x50\xd5\xa1\x1c\xbb\x8b\x16\xbd\xe3\x6b\xa6\x34\x5d\xa7\xa7\x10\xdc\xef\x9b\xf1\xd0\x3c\x86\xf3\x7c\x11\x6b\xde\x4d\x39\xc1\xae\x51\xcf\xfb\x31\x64\xdb\xf3\x17\xb7\x6b\xe2\xcb\xaa\x23\x0f\x96\xbe\xc1\xd2\x37\x58\xfa\x7e\x63\x96\x3e\x8f\x80\xf4\x36\xf8\xed\x50\xa4\xf2\xb3\xbf\x19\xd0\x12\x9d\x18\x6a\x18\x77\x09\x05\x37\xfe\xc3\xd5\x6e\xf6\xf8\x15\x15\xf1\x49\xc5\xca\x15\x36\x6d\x40\x9c\xcd\x8e\x61\x84\x7d\x8a\x92\x3c\xb6\x6d\x95\x05\x7b\xf0\x43\x66\x87\x52\x00\x0d\x2c\xfe\x4b\x39\xc8\x0c\x77\x2e\x19\xb6\xaa\x48\x81\x5f\x82\xd1\xfe\x39\x9f\xb3\xf3\x72\xbe\x73\x7f\xbe\x3a\xdf\x6d\x7b\x76\x97\x0d\xb7\xee\xa4\xce\x95\xdb\x1e\x1e\x98\xb4\x5d\xe5\xc0\xa4\x07\x26\xfd\xdb\x61\xd2\x6d\xd4\x66\x97\x67\x57\x7a\x6d\xd4\x01\xec\xe5\x1f\x79\x44\xa6\xaa\x62\xf7\x67\xdd\xde\x10\x7d\xb4\x79\x37\x1b\x9a\xb7\xb1\xfb\x89\x9b\xd9\xf6\xed\xd9\xf0\x38\xa7\x49\x47\x73\x55\x6f\xda\xdd\x9f\x3b\x4c\xf1\x5d\xfd\x52\x1b\xba\xa4\x36\x2c\xb9\xda\x32\xb5\x5c\x57\x63\x8f\xd2\x4b\x6b\xd9\x87\x04\x52\xb0\x39\x1c\x43\x72\xa7\x96\x50\x39\x40\x4b\x67\x47\x68\x18\xa1\x47\xb7\x5b\x43\xa6\x44\xc4\x13\x96\x4d\x59\xc6\x65\x73\xae\x72\x9d\x38\xdc\xd4\x5e\x74\xb1\xcb\x29\xfe\xa5\xa5\xf9\x17\x54\x73\x70\x53\xf0\xc6\x24\x47\xf7\x29\x72\x22\x5d\x85\x39\xaa\x29\xc8\x12\xbe\x57\xec\xdb\x75\xc8\x25\xe6\x3e\xdd\xf9\xcd\x5d\xd9\xcd\x0d\xd5\xe6\x76\x20\x70\x25\xe3\xf6\x93\x36\xbf\xff\x3a\x0e\x79\xe5\x15\x00\xec\x7b\xc0\x7e\xd1\xc0\xd2\x8d\xae\xb6\x22\x72\x1e\x01\xe0\x90\x50\xc6\xb2\xac\xe3\xde\x76\xba\x17\xce\xd7\xf8\xd8\x9d\xf6\xdc\x2d\xb1\x91\xfd\xe7\x19\xa3\x0d\x25\x81\x1b\xf6\x7c\x78\x56\xbc\x56\x9e\x6c\xae\xe5\x9a\x6a\x1e\x95\x3d\xb8\x64\x67\x53\xf8\x2a\x54\x40\x15\x62\x1b\x96\x6d\xad\x27\xa5\x44\x66\x07\x93\x36\x94\x26\xbd\xbb\x14\xf7\xe9\x51\x9c\x30\x7a\xff\x26\xa3\x11\xdb\xf3\xbe\xbf\xad\xbe\x57\xbb\xee\xd5\xcc\x4c\x87\xf3\x6d\x7b\x02\x0b\x38\x76\x5e\x87\xe6\x8d\xd4\x77\x99\x95\x59\xee\x66\xb9\x86\x87\xdf\x22\x9e\x04\x32\x12\xaa\x43\x5a\x67\xfc\x64\x4a\x96\x34\x9b\xd3\xa5\x59\x4e\x92\xb0\x08\x13\x6a\x4b\xc0\x7f\xf5\xb9\x64\xe4\xb7\x48\x3a\x09\xdc\x7f\xe8\x15\xd9\x76\xfd\xaa\xbb\xbd\x2d\x5e\xf1\xa3\x71\x6c\xab\x3d\x49\x22\x99\x6e\x7b\xb6\x47\x07\x8a\x5a\x36\x28\xf2\x8a\x7a\x2a\x7f\x97\x96\xa0\x7e\x59\x2e\x81\x15\xff\xfa\xf0\x09\x5b\x20\xbc\x85\x53\xd8\x9a\x9e\xbf\x0e\x5e\xf1\xdb\xc3\xea\xae\xa3\xae\xb6\xcc\xec\x73\xe4\xd5\x76\x99\x6d\x47\x6f\xc7\x6e\x5a\xbe\x6d\x80\xe9\xa3\xc6\x80\x03\xff\x0e\x1c\x70\xb5\x9a\x3b\xa4\xa8\xaa\x2f\xb9\xf6\x4e\x1b\x1e\xb8\xf1\x9b\xf6\xc0\x6a\x92\xd8\x80\x09\xff\x1e\x4c\x68\x4f\xc5\x98\xe7\x4b\x5b\x58\x76\xda\x23\x72\xf0\xa2\xf6\xfc\x2e\x5b\xc8\x34\x16\x14\xc9\x36\x8c\xac\xd9\x5a\x66\xe1\xf2\x56\x06\x9d\xd2\xbc\xa8\xda\x4b\x8c\xa4\xb3\xeb\xc2\xc6\x9f\x6b\xfe\xe7\xf6\x62\x2e\x5f\xbf\x6c\x82\x40\x43\x70\x26\xd3\x51\xfc\xe3\xd7\xe7\x72\x9d\x52\x90\xb8\x1a\x91\xa6\x8a\x2c\x97\xc1\xd7\x6a\x28\x33\x67\xfa\xc1\x48\x84\x66\x8e\xcd\xd7\x61\x4d\xdf\x0d\x50\x98\x84\x4a\xc1\xd1\xbf\x0e\xbe\x1c\xf8\x22\x88\x2f\x6d\x78\xb2\x62\x34\xd1\xab\xf3\x15\x0b\xe7\x0b\x57\xb7\xf6\x27\xef\xe1\x82\x00\xc8\xcc\x2d\x45\x15\x1d\xae\x8d\x8e\x80\x23\x07\xb7\x86\x03\xf4\x12\x72\xda\xd6\x9e\xc8\xe5\xad\xd1\x44\xb8\xde\xde\x46\x19\x63\xa1\x1a\x3b\x35\xb9\xbf\xfe\x86\x3b\x96\x44\x2e\x89\xb2\xbf\x10\x3a\x97\x1b\x66\xeb\x9b\x24\x72\xd9\x50\xd0\x8f\x61\xf4\x8c\x35\xac\x2a\x1d\xcb\x5c\xfb\x87\x31\x11\x0b\xb9\xef\x8e\xd2\x4c\xae\x8d\x30\x99\xab\x77\x4c\x67\x3c\x52\x7d\xae\xde\xe1\x34\xf4\x96\xdb\xd9\xdd\xf9\xd4\x5e\x3e\x17\x34\x5e\x3e\x1e\xda\xd8\x1a\x87\xc0\x8b\x9a\x39\xcb\xf2\x9c\x8b\x18\x2c\x92\x1d\x18\xf8\xfd\x8b\xef\xbf\x69\xde\x74\xf0\xa2\x35\xc7\x81\x34\xd9\xba\x1a\x8d\x89\xa5\xeb\xa7\x01\x54\xad\xe6\x44\x78\xdb\x33\xeb\xda\x73\x35\xdf\x06\xac\xf0\x56\x39\xf4\x6c\x87\x64\xa2\x0f\xa1\x3b\xcd\x22\x4f\xd0\x61\x18\xaf\xc1\x32\x29\x21\xa5\xdd\x68\x72\x40\x00\xb1\x10\x15\x8d\x74\x4e\x77\xa2\x8b\x70\x44\x3c\xab\x07\x5a\x94\x08\x77\x15\xf6\x6d\xc4\xe8\x5a\xc6\x18\xc0\x3f\x37\xa2\xf8\x86\x67\x12\x42\xd9\xc9\x86\x66\x1c\x2e\xe2\xce\x7a\x31\x9c\xf2\x3e\x9f\xb3\x91\x6f\xfc\x4c\x33\x19\x31\x55\xb7\x74\xb4\xb5\x6b\x2a\x67\xfb\x91\x06\x4d\x9f\x7b\xe6\x09\x36\x71\xaf\xca\xb1\x5d\x56\x67\xad\xf7\x24\x08\x00\xa0\x21\x4a\x34\x08\x04\x2c\xe0\x26\x16\x49\x8e\x1d\x0a\xc0\x0b\x90\x0b\xc1\xc5\x12\x11\x64\xcf\xaa\x52\x99\xff\x6e\xa7\x57\xd7\x7f\xb8\xb6\xb1\xc5\xc2\xa8\xfa\x1b\x56\xc1\x0a\xae\xdc\x04\xa1\x0d\xf2\xa6\x83\x96\xf1\xb1\xad\x06\xbf\x66\xd9\xd2\x39\x3b\xce\xa6\x93\xd2\xd7\x61\x24\x92\x30\x4b\x6e\xc0\xb2\x00\x5c\x3a\xa4\xb0\x76\xab\xf9\x0e\x70\x9e\xd2\x72\x4e\xba\xac\xe7\x3d\x96\x4f\x7a\x58\xd1\x77\x36\xb1\x9f\x25\xbd\x4d\x64\x7c\x4a\x71\xb9\xe7\x6e\xc9\x7e\x62\xf3\xce\xe6\xfb\x8b\xce\x5d\x56\xc8\xaa\x64\xdd\x4b\x7c\xee\x1a\xb2\x5d\xba\x26\x4f\x6a\xa9\x6c\x31\xc4\x93\x2f\x65\x8c\x27\x4f\x60\x64\x21\xfd\xf1\xa4\xa7\x61\x7e\x67\xbb\x7b\x18\xe7\xbb\x4e\xb4\xb4\xdd\x3f\x8d\x81\x7e\x8f\xdd\x93\x7d\x0c\xf5\x3b\x30\xe8\x67\xac\xef\x1e\x14\x44\x93\x27\x37\xd8\x93\xde\x57\x81\xf4\xbc\x0e\x64\x2f\xe3\x3d\x79\xbc\x01\xbf\x6b\x63\xe5\x35\xda\xd3\x88\xdf\x35\x70\x40\x50\xee\x34\xe4\x77\x8d\xd9\x61\xe7\x27\x7b\x1c\xd3\x40\xd4\x3b\x41\xd4\xcb\x3d\xb0\x0b\x9c\xa7\x73\x11\x90\x27\x75\x13\xf4\xdf\x7a\x9f\x0b\xdc\xea\x32\xd8\x01\xca\x53\xba\x0d\xc8\x2f\xcb\xd5\x86\x8b\xf2\x04\xd8\xd2\xcb\xeb\x40\xbe\x98\xe7\x81\x7c\x21\xef\x03\x19\xd0\xe8\x17\x45\xa3\x9e\x8e\x0b\xf2\x25\x9d\x17\xe4\x4b\x39\x30\xc8\x80\x4c\xbf\x20\x32\x75\x3d\xd1\xc3\xff\x41\xbe\x94\x0f\x84\x3c\xbd\x1f\x84\x74\xfb\x42\x48\x9f\xa6\x33\xbd\x7d\x22\x3b\xc0\x79\x2a\xbf\x08\x79\x5a\xdf\x08\xe9\x81\x53\x1d\x3e\x92\xdd\xad\x3e\x91\x9f\x84\xec\xe9\x2b\xe9\xb3\x97\x3e\x3e\x93\xdd\x0d\xed\xed\x37\x69\xda\x4e\x22\x97\xea\x33\x7c\x27\x7d\x76\xd8\xd7\x87\xb2\xbb\xcb\x27\xf5\xa3\x90\xcf\xf5\xa5\x34\x0d\xda\xe4\x62\x21\xdd\xf7\xb7\xa5\x65\x6b\x8b\xbb\x85\xb4\x92\xcb\x21\x71\xc7\x4b\xdc\xb1\xe9\xf3\xa0\xcc\xf0\x2f\x52\x6d\xf6\x0a\x67\x40\x85\x0a\x7f\x28\x73\x73\x2a\x3f\xee\x26\xe3\xd4\x56\x67\x4f\xa1\x48\xbf\xf1\x7f\x86\xa1\x7b\xe6\xdb\x14\x06\x6e\x90\x99\x86\x94\x9b\x21\xe5\x66\x48\xb9\xf9\xcf\x4a\xb9\x69\x73\xf8\x2e\x33\xa6\x3a\x23\x43\xee\x5c\xfb\x6a\x83\xfe\x0c\x72\x52\xf1\x45\xdb\xdb\x9d\x60\x8b\x2b\xf3\x47\xe1\xe3\x0c\x71\x30\xea\xde\xc6\x02\x25\x64\x4d\x75\xb4\x22\x51\xc6\x35\xcb\x38\x85\x4b\x42\x49\x24\xb3\x8c\xa9\xd4\xd0\x7b\xb1\x24\x56\x0e\xd4\x12\xdb\x6e\xef\x95\xab\x5a\xd9\xc3\xec\xe0\x8c\xdc\x98\x05\x32\x11\xd1\x54\xe5\x70\x6f\xcb\x15\x85\x96\xd2\x60\x90\xa7\xd6\xae\x4b\x7e\x90\x7a\x55\xeb\xbc\xed\x75\x13\x47\x8b\x97\x19\xa8\xde\x61\xbc\x41\xa0\x28\xba\xe8\xdb\x4e\xdf\x23\xa2\x58\x4a\x33\x6c\xe2\x94\x6b\x42\xfd\x9c\x60\x7c\x04\x0a\xf6\x99\x55\x70\x01\xe7\xd1\xb0\x60\x11\xbb\xf3\xf2\x01\xcf\xc5\x72\x4c\x66\x33\x61\x1b\x97\x4b\xc5\xc1\x1b\x5d\x83\xc4\x8a\x36\x8d\x4a\x04\x5b\xc2\xe2\x2c\xe1\x35\xea\x0a\x5b\xf0\x4f\xae\x61\xd8\x6c\x36\x3b\xb8\x92\xda\xfc\x6f\x4c\xce\x92\xc4\xb6\x0b\xf0\x47\x0f\x8f\x6c\x2b\x50\x51\x44\xa8\x75\xae\xb0\x53\x1c\xd5\x5c\x41\x58\x04\xd6\x73\xb1\x5b\xd1\x12\xc7\x1c\x93\x33\x60\x76\xbb\x45\x92\x2d\x74\x01\x39\xa9\x70\x08\x6a\x55\x36\xbb\x69\x68\xe7\x64\xb6\x63\xfe\xb0\xfb\x01\xce\x80\x83\x37\xc3\x15\xa0\x1f\x5e\x22\xf4\x23\xcb\x31\x2c\x04\x97\x18\xae\x97\xd5\x69\x15\x40\x84\x6b\x94\x18\xbb\x75\x66\xaf\x7c\x4f\xe3\x28\x35\x55\xb7\x2c\xcc\x55\x09\x5a\xa8\x21\x07\x08\xcb\x70\x31\x5b\x94\xf5\x4a\xf9\x20\x62\x68\xa1\x0e\xdd\xe3\x9e\xc0\x20\xbe\x93\xbe\xa5\x36\x50\xc3\xce\x66\x07\x57\xf5\x97\x5d\x33\xac\x14\xe3\x5a\x6c\x91\xa7\xa6\x46\xfd\xe5\xa7\x00\x0c\x2d\x88\x00\x61\x9f\x0c\x0b\x53\x40\x1f\xae\x45\xb2\x25\x3a\xa3\x8b\x05\x8f\x10\x52\xae\x4e\x59\x97\x5f\x00\xb8\xdc\x91\x41\x21\x70\x57\x21\xa5\xd2\xcf\x3d\xa7\x9f\xd7\xcc\x0d\xe7\x6e\x2e\x97\x57\x03\x99\x2a\x6a\xec\xc1\x59\x1a\x06\x08\x85\xa4\x00\x91\x77\x60\xd3\x3e\x28\x52\x49\x09\xbe\x8f\x02\x04\x46\xfd\x43\xb1\x2c\x76\x81\x49\x8a\xae\xf1\x2a\x60\x71\xa2\xf6\x41\xa1\x96\x97\x33\xd3\x79\x5b\x46\x5c\xcb\x8a\x75\x93\xf9\x16\x17\xed\x66\xee\x00\xaa\xdb\xb6\x83\x97\x4b\x01\x32\xeb\x42\x3a\xf8\x5a\x66\x55\x19\xfb\xb8\x91\x07\xb8\x0f\xd4\x57\xdd\x05\x1b\xe1\xeb\x34\xe1\x4c\x95\xda\xa4\x8f\x6c\xd0\x9c\xb3\xeb\xc0\xc0\x90\x04\x3e\x44\xb1\x6c\x84\x09\xf7\xe0\xdb\x2b\xc6\xa4\x68\x30\x5b\xd9\x67\xe3\xf6\x0f\x97\x89\x9c\xd3\xe4\xe8\x79\x87\xd9\xee\x97\x01\xc0\x1b\x58\x8c\x5d\xa2\xd1\xae\x65\x56\x89\x2e\x80\x6d\xb4\x0f\x6a\xf6\x58\x19\xa6\x3c\xe8\xae\xb3\xec\x58\xad\xbf\x45\x0c\xeb\x53\xae\x2b\x6b\xed\xd0\x28\x94\x50\x24\x34\x5c\x30\xad\xfc\x94\x57\xb6\x81\x71\x14\x73\xf7\x32\x9a\x0a\xa6\xdb\xcd\xce\xd5\x20\x15\xa6\x55\x33\x61\x34\xe2\x3c\x34\xb2\x51\xdd\x4e\x78\xc7\x02\xe1\x08\x81\x57\x80\xea\x14\xa6\x8b\x05\xe9\xeb\x80\x76\x95\x2e\x56\xea\x57\x1a\xc9\x41\x14\xed\xde\xb1\x91\x33\x96\x8b\x6c\x4f\xf9\x6c\x96\x23\xbd\x79\x7b\xfa\x96\x5b\x0a\x1d\x97\x1f\x21\xf5\xd5\x7e\x67\x82\x2f\x38\x93\x55\x4d\xfc\x72\x3b\x36\x8f\x74\xb0\x17\x73\x8e\xbf\x3a\x58\x4c\x65\xb6\x27\x30\xe0\x8d\x0e\x68\xc0\x33\x7d\xc0\x41\x6e\xa1\x89\x2c\x60\xa9\x92\x6b\x06\x0d\x6c\x65\x24\x13\x45\x56\x74\x83\xd6\x7d\x75\x8c\x81\x23\x5b\xfc\xab\x83\xd0\x66\xcc\xab\xc5\xcd\xb5\x33\xcf\x29\x67\x5d\x84\xd1\xad\x44\x65\x09\xb9\x51\x50\x3a\xa9\xa2\xed\x9a\x0c\xf5\xfc\xee\xce\xa7\xae\xa0\xec\xfb\x8b\x69\x63\xb5\x52\xfc\xf4\x39\x55\x2a\xb6\xd7\x8b\x8e\x67\x46\xdd\x8e\x84\xdd\x87\xfb\x84\x16\xa5\x54\x6b\x96\x89\x53\xf2\xbf\xc7\xff\xdd\xfe\xe4\xa7\xd1\x7d\x11\x63\x31\xe2\x42\x8f\x64\x36\xc2\x19\x9a\x3a\xd3\x97\x9f\xbe\x08\xb9\xbf\x70\x79\x55\xbe\xd4\x81\x96\xfd\xe4\x2b\x8b\x99\xe4\x96\x79\xcc\x05\xa9\xb0\x51\x30\x54\x3e\xd7\x09\x33\xb2\x32\x2a\x5c\x76\xae\xf6\x31\x0b\x69\xa9\x15\x55\xfa\x9d\x59\xba\xdf\x95\x9d\x1d\x14\x37\xb6\x8b\xad\x74\x33\xdb\x1e\x6c\x65\x05\x1a\xb3\xb5\x3b\x1d\x79\x4a\xc8\xf3\x0e\x34\x2c\xfc\x00\x28\x6a\x2a\x57\xc3\x59\xaf\x98\x62\x24\xa3\x62\xc9\xd4\x89\x33\xdb\x41\xad\xe7\xd6\x12\xc3\xf8\xa9\x94\xf4\xb2\x57\x07\xdc\x46\x08\x65\xe5\x20\x60\x6d\x60\x76\x9a\x0e\x59\x79\x81\x67\x80\x02\x5c\x5f\x0a\xd6\x49\x01\xf0\xd1\xbd\x28\x58\xc7\xde\x4b\xf2\x56\xa3\x60\x33\xa4\x61\x33\x4b\xc5\x66\x48\xc7\x66\x86\x92\xb5\xca\x3c\x03\x2d\x83\x4f\x2f\x5a\xa6\x1e\xa1\x25\x77\x2b\xc7\xad\x96\xbe\xf2\x13\x54\x8e\xc9\x91\x62\xcc\x99\xc8\x80\x94\xd1\x75\x9a\x30\xa2\xb6\x42\xd3\x4f\xa1\x42\xb3\xfe\x67\x36\x6b\xd5\xad\xad\x0c\xd9\xa4\x3b\xb7\x8f\xed\x2c\x63\x9e\x6a\x2d\xb3\x5d\x95\xd9\x5c\xb7\x2b\xa9\x19\xcc\x6d\xb0\xa7\x03\x08\x36\x6b\xc6\x39\x0d\x3a\xb8\x02\x82\xc7\xe3\x26\xed\xa3\xcf\x59\x22\x1f\x9e\x1f\x57\x97\xec\x01\x1b\xa1\x4a\xb8\x56\x2c\x59\x38\xe7\x74\x07\x1c\xd0\x18\x06\x66\xce\xbb\x15\x23\xfa\x41\x02\xae\x41\xf5\x25\xf7\x1b\x12\x08\xc3\x84\xb6\x65\x69\xf6\x8e\xb3\xbb\x16\x6e\xf7\x2e\xb4\xab\x34\xbf\x32\x4f\x4b\xc2\xdd\xa0\x69\xc1\x3e\xdf\xcd\x13\x1e\x56\x32\xb1\x87\x74\x0a\x47\x34\x9b\x95\x0c\xf9\x8f\x40\x5d\x7e\xb7\xa2\xea\x68\xbd\xfd\x08\x31\x97\xcf\x81\xee\x58\x22\xdf\x75\x9d\x6d\xa7\x01\x67\x85\x00\x24\xc3\xf5\x61\x44\x4c\x99\x90\x13\x9b\x79\x7b\xe2\x1b\x8c\x17\x4b\x08\xfc\x00\x2a\x8d\x3e\xa5\x39\x4b\x60\xb9\x6e\xa5\x68\x44\xb5\x5b\xea\x8d\x18\xb8\xe5\xc6\x1d\xef\x6e\xca\xac\xa2\xa9\x5f\x4a\xf9\x69\xdf\x6f\xb1\xa5\xae\xed\x74\x5d\x72\x01\x98\x87\x69\x52\x28\x4e\x59\x53\x42\x02\xa4\xd5\x36\x41\x00\x5f\x72\xb1\x93\xee\xc5\x0b\x29\x46\x36\x84\xc9\xfa\xc3\xc8\xc3\x8a\x65\xcc\xda\x45\x16\x32\x5b\x33\xdf\x48\x01\x11\x53\x38\x7a\x0f\xa3\xdd\x2e\x68\xbc\x7a\x43\x4f\xa0\xc4\x57\x23\x2d\xf7\x90\xbd\xaa\xc1\x96\xbf\x9c\x0c\x56\x23\xcb\xed\x63\x06\x4c\x9e\x94\xa4\x32\x76\x29\x71\xe8\x02\x29\x48\x74\x8f\xb0\xd0\x22\x30\xb4\x15\xdb\x7a\xe7\x80\xf8\x0e\xfb\xe6\xcf\x6e\x7e\xd8\xe7\x83\x9b\x3c\x06\xe4\xdd\x43\x36\x59\x9a\x03\x60\xef\x05\x6d\xe2\x85\xe2\x3e\xac\xa4\x42\xb3\xa4\xd9\xbe\x15\x01\x8d\x00\xdc\x99\x5c\xd1\x47\xb8\x23\x7b\x25\xad\xf4\x94\x94\x48\x5f\x69\x89\xec\xde\xaf\x4e\x79\xe9\x7f\xee\x49\x57\x74\xa5\xd2\xea\x86\x74\xbf\xe8\xa6\xd0\xd0\xb3\xac\xfa\x29\xdd\x10\xe0\x5d\xb8\xf5\xbd\x0a\xa5\x2e\x62\x5b\x1c\xb0\xad\xf9\xbe\x7b\xd0\xb3\xab\x8b\xc3\x1e\x39\x3d\xfb\x59\xb4\xba\x32\xa0\x2c\x14\xf7\xd2\x8f\x2d\x95\x6e\xa3\x17\xfd\xa4\x6e\x7c\x13\x1d\xc4\x05\xbd\xf4\x4a\x64\xba\x89\x20\xe8\xb4\x0c\x38\xed\xe1\x99\x69\x15\xba\xeb\xe8\xd5\x57\xea\x0e\xb8\xb3\x1c\xfc\x8e\xd4\xf3\xba\xf8\x8d\xe1\x34\x66\x35\x5d\xb6\xb2\x13\x58\x15\x34\x99\x77\x2b\x39\x54\xa0\xdd\x5a\x8d\xd9\xc1\x3b\x2a\xc2\x42\x0a\x60\x74\xc1\xa2\xea\xd9\x32\x37\xc7\x21\xeb\xb1\x2f\xba\x1f\xef\x7a\x14\x3a\xc0\x7c\xc5\x8c\xf8\xeb\x8c\xbd\x32\xab\xf3\x6e\x5c\x3a\x9a\x52\x0c\x20\x9c\x25\xb4\xc3\x5b\x69\xf0\xc9\x1c\xa0\xbf\x47\xb4\x1b\x15\x50\x90\xc2\x05\x12\xd8\xc0\x8e\x76\x91\x65\x2f\xb6\xb9\x3f\xd7\x2c\x96\x59\xe6\x50\xa3\x4b\xbe\x7f\x7a\x15\x71\x7b\xf3\x7c\xf0\x4f\x44\x04\xfa\xa5\x8a\x37\x6c\x0d\x13\xc6\x77\xf7\x87\xdf\x87\x0b\xdc\xee\x7e\x90\xca\xda\x1d\xc2\x4d\x4e\xd8\x42\xbb\x9e\x8f\x05\x0f\x81\xdb\xd3\xc3\x48\x43\xfc\x8b\x08\x2d\x67\x8c\x7a\x7e\xa8\xca\x95\xfd\xa2\x14\xb4\xfb\x99\x95\xd6\xa1\x3e\x7c\xf8\xa9\xe6\x20\xdf\xdd\x4d\x4b\x7f\x7d\x63\x10\x83\xc1\x12\xf3\x68\xf3\xd2\x8b\x78\xf4\xcf\x8a\x5f\x58\x33\xbd\x92\xf1\x1e\x9c\xe1\x1d\xbe\xf0\xb4\x52\x3b\x6e\x19\x89\x3a\xee\xdb\x0b\x95\x33\x63\x62\x13\x2b\xd6\x59\x43\xd4\xc9\x75\x2c\xc6\x51\xdc\x6a\x8f\xd8\x78\x39\x26\x6f\x2e\xef\x8e\xc9\xf4\xfd\xdd\x31\x61\x3a\x1a\x3f\x27\xef\xf2\x44\xf3\xb4\xcb\xcf\x61\x41\x04\x7c\xff\xfa\xe6\xd0\xa8\x61\x4b\x48\xb2\xfc\x75\xf9\xad\x52\xaa\x57\x7b\x9c\xe3\xe1\xd4\x3c\xff\x25\x8e\xb1\xeb\x04\xbb\x29\x8a\x7f\x82\xb0\xcc\x71\x71\x54\xb8\x4d\x77\x16\x7d\x0f\x83\x10\x36\x5e\x9e\x92\x11\x61\x9f\x68\xa4\x4f\xc9\xc9\x42\x4a\x32\xb2\x41\x62\xa7\xe4\x64\x4e\x33\x72\x75\x7d\x77\x79\x8a\x01\x68\x4c\xe8\x6c\x4b\xd6\x5d\xe2\xf9\xf5\xd5\xdb\xbf\x58\xca\xb9\x25\x8c\x83\x01\x86\x92\xd9\x01\x4c\x82\x56\x64\xf3\x27\xce\xe2\x6c\x1d\x63\x72\xd7\xb5\xfd\x0d\x4d\x78\x4c\x0b\x63\x1f\x24\x66\x60\x4f\x37\x1d\x6a\xe2\x56\x7e\xfa\xe0\x5c\x2d\x7f\xe4\xee\x6e\x6a\x20\xec\x31\x00\x2a\x10\xf0\x06\xd0\xfd\x79\xd5\x44\x43\x7c\xec\x9c\x39\x40\x58\x3b\xe2\x42\x66\xeb\x53\x07\xf6\x59\xfe\xe2\xc5\xd7\x91\x19\x18\xfe\xc5\x4e\x6d\xb1\xa1\x5e\x66\x2f\x44\x35\x58\x15\x0c\x67\x08\x46\x56\x1c\x61\x39\xf4\xc8\xc2\xfb\xb3\x66\xc0\x31\x3a\x42\x4d\xf6\xa8\xd7\x80\x00\x78\x5a\x35\xd2\x6e\xfd\x29\x07\xed\x5b\x50\xa1\x07\x41\xea\x1e\x8a\x47\xeb\x9e\x3c\x73\x72\xfe\x6e\xda\x37\x02\x04\x88\x51\xf3\xda\x7d\x2a\xe5\x35\xe2\x33\xab\xb5\x39\x9a\xd8\x4e\x10\xa6\xb4\x0a\x86\xed\xa2\xda\xa2\x5f\x61\x84\xfe\xae\x4c\xcb\x17\x55\xff\x54\xd1\xcf\xb1\xf0\x9a\x9b\x79\xda\x44\x5b\xf0\xa7\x9b\x87\x36\xaf\x5a\xec\x94\xbd\x30\x31\x6a\x2f\x0c\x53\xe7\xf3\x20\x99\x48\xe1\x43\x09\x80\x12\x61\x57\xd3\x3d\x94\x35\x48\x6a\x32\x00\xc6\xa8\x7c\x08\x51\x85\x8e\xb1\x3e\xac\xac\xf7\x12\x5c\x93\x9a\x45\x2b\xc1\xa3\xdd\xa2\x65\xd5\x0f\x98\x45\xd1\xfc\xcf\xd7\xa9\xf4\x6a\x69\xdf\x1b\xa1\x3c\x39\x54\x84\xa7\x1a\xf3\xe0\x16\x3c\x63\x0f\x34\x49\x3a\x96\x8a\xd4\xc2\x1a\x65\x73\x85\x81\x53\x4c\x2c\x24\xe6\x0b\xd8\x10\xbd\xee\xab\xd1\xe9\xc3\x83\xc7\x3e\xff\x30\xcc\x30\x63\x8c\x25\x63\x9f\xc0\x71\xd5\xe5\x02\xc3\x33\x90\x0b\xf2\x1d\x46\x79\xc3\x0e\x61\xac\xcb\x68\x25\xc9\x0d\x32\x6d\xdb\x95\x31\xe5\x62\xa9\xda\x7d\x60\xbd\xf6\xdb\x83\x18\xa4\xe1\x74\x9b\x06\x80\x4c\xa6\x2e\xed\xe6\xb3\x03\xc3\x2a\xc6\x2d\x94\xc7\x7d\x28\x4f\x9d\x67\xac\x11\x0a\x3d\x20\xd0\x90\x38\xd1\xb0\xb9\x77\xf6\x69\x2f\xac\xb7\x28\x75\x07\xf9\x20\xd9\xba\xec\x15\x16\x4a\x62\xa9\x6e\xee\xb3\x88\xc6\x6e\x7f\xc7\x86\xe7\xfa\x16\xe3\x2b\x3f\x7d\xd9\x52\xb5\xb5\x6a\xb9\x1e\x9b\xf0\x83\x5e\xbb\x7b\xb6\xb5\xa8\x9d\x52\x6e\x4b\xed\xb5\x4f\x6f\x54\x56\xc2\x3e\xe9\x8c\x56\x60\x4a\xe7\x32\xd7\x3d\x18\xc9\x53\x69\x8e\x42\x6a\x73\xfb\xfa\x61\xc6\x15\x3e\xdc\x11\xd1\x03\x8f\xb4\x47\xd6\x0d\x0c\x63\x60\x18\xff\xd9\x0c\x43\x48\xed\xc4\xaa\x46\xb0\xb4\x47\xdd\xf4\x8c\xb7\xe9\x17\x69\xb3\x13\x10\xea\x44\xbe\x8e\x98\x50\xfb\x58\x33\xc0\x3a\xee\x71\x8f\xd0\x9e\xc7\x05\xf5\xa4\xbf\x56\xe0\xce\x0e\x7c\xd8\x3e\x21\xef\xdf\x71\x6c\x81\x85\xd7\x97\x04\x1c\x4c\xc6\x80\xf5\x3c\x6b\xb3\xcc\xdb\xe8\x5c\x7b\xce\x97\x90\x6a\x74\x03\x99\x72\x2e\xeb\x0b\xcd\xe6\x47\x73\x16\xd1\x5c\xd9\x98\xb8\x0e\x57\x42\xb1\xc4\x88\x65\x30\x46\x11\x57\xf7\x1c\x4d\xf1\xef\x6c\xfa\x57\x25\x4a\xb0\x8b\xc5\x62\xf8\xe0\xa9\x1f\x01\x77\xec\xc7\xbf\xe1\x1f\xa0\xa9\x54\xfe\xda\xbc\x2a\xff\xbe\x3d\xbf\xc3\x5f\x9b\xa7\xb1\x23\xbe\xe5\x9a\xb9\x20\x3b\x2a\x1c\x82\x38\xa7\x2c\x84\x1a\x92\xaf\x46\x2f\xbf\xfd\xb6\xc5\xe4\xff\xe5\xd0\x1e\x03\x31\xfa\x71\x63\xec\xba\xdd\x33\x2b\x8d\x68\xd9\xa2\x40\xe2\x48\x43\x42\xda\x90\x90\xd6\xed\xf6\x1c\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x6b\xda\xf1\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\x5a\xd3\x4e\x06\x5a\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\xe1\x67\x48\x48\x1b\x12\xd2\xea\x9f\x21\x21\x6d\x48\x48\x2b\x3e\x43\x42\xda\x90\x90\x36\x24\xa4\x05\x07\x1d\x12\xd2\x3c\x58\x0c\x09\x69\x43\x42\xda\x90\x90\x56\xfd\xfc\x92\x09\x69\x2d\xed\x17\x08\x19\xd9\x2a\xbe\xa1\xdf\xfa\xb4\xf1\x0f\xca\x09\xf6\x6e\x3c\xa2\x7c\x77\xf5\x56\x0d\xf5\xbb\x87\xfa\xdd\x43\xfd\xee\xa1\x7e\x77\x78\x79\x43\xfd\xee\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x6a\x08\x97\x2a\x3f\x43\xb8\x54\xf9\x19\xc2\xa5\x86\x70\xa9\x5f\x55\x88\xc1\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\x54\xf0\xe1\xff\x30\x5a\x36\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\x54\xe0\x33\x84\x4b\x0d\xe1\x52\xc5\x67\x08\x97\x1a\xc2\xa5\x86\x70\xa9\xe0\xa0\x43\xb8\x94\x07\x8b\x21\x5c\x6a\x08\x97\x1a\xc2\xa5\xaa\x9f\xa1\x7e\xf7\x50\xbf\x7b\xa8\xdf\x5d\xf9\x0c\xf5\xbb\x87\xfa\xdd\x43\xfd\xee\x5e\x33\x0c\xf5\xbb\x87\xfa\xdd\x43\xfd\xee\xa1\x1c\xeb\x50\x8e\x75\xa8\xdf\x3d\xd4\xef\x1e\xea\x77\x37\xaf\x7f\xa8\xdf\x3d\x30\x8c\x81\x61\x0c\xf5\xbb\x87\xfa\xdd\x95\xcf\x50\xbf\x7b\xa8\xdf\x5d\xfb\x0c\xf5\xbb\x9b\x15\xc8\xa1\x7e\xf7\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\xfe\x67\x48\x48\x1b\x12\xd2\x7e\x55\x49\x1c\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\xc1\x87\xff\xc3\x68\xd9\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x81\xcf\x90\x90\x36\x24\xa4\x15\x9f\x21\x21\x6d\x48\x48\x1b\x12\xd2\x82\x83\x0e\x09\x69\x1e\x2c\x86\x84\xb4\x21\x21\x6d\x48\x48\xab\x7e\xfe\x67\xd7\xef\x86\xa2\xdc\x5d\xd5\xbb\xaf\xcd\x43\x2d\xf4\xbb\x7a\xe8\x12\x9f\x0e\xae\x13\xc3\xee\xb0\x6e\x32\x18\x4a\xcc\xa0\xe0\x59\x8c\xc7\x68\x3b\x29\x2c\xbf\x2b\xbe\x34\x8a\xe8\xec\x00\xc6\x9b\x1d\x00\xbb\xb4\xcf\x86\x86\xa6\x0b\xa3\x40\x69\x10\xd0\x60\x80\x44\x3e\xb0\x0c\x57\x83\x61\x8c\xde\xe2\x14\x91\x6b\xae\xb5\xa1\xbb\xdc\x65\xc0\x84\x06\x8d\xa4\x50\x1c\xcb\x96\xa3\x8d\x6f\x76\xc0\xc5\x82\x0b\xae\xd9\xec\x80\x8c\x08\x04\xcf\x79\xdb\x71\x54\xdd\xae\x93\x24\x54\xe9\x31\x29\x76\x16\x04\x89\x59\x2b\x8f\x99\xd0\x3c\xa2\x89\x5d\x60\x7d\x1c\x2e\x08\x4d\xd2\x15\x15\xf9\x9a\x65\xde\x73\x50\x31\x3c\x34\xaa\xa5\xe5\xd6\x1c\x85\x11\x22\x41\xfd\x14\x71\x43\xe4\xeb\xf9\xae\xa5\xb0\x45\x6c\xac\x31\xf9\x3b\xdf\x4c\x83\x88\xe2\x19\x6b\x72\x65\x75\x4e\x1e\xdd\xe3\x7f\x64\x1e\xc4\x7f\xb3\xe4\x9a\xd2\xed\x01\xd7\xa6\x6b\x78\x60\xd1\xd2\xf1\xbc\x66\xd3\x41\xb9\x0e\x23\x3a\x24\x89\x7c\x40\x52\x80\x16\xa4\xc2\xa6\x82\x82\xdd\x1f\xd1\xbc\x80\xb7\xfd\x63\xc2\x35\xcb\x28\x68\xf6\xa1\x91\x67\x33\x32\xc2\x74\x25\x83\x28\xeb\x94\x66\x5c\x49\x71\x4c\x20\x67\xd1\x99\x05\xdc\x90\x0b\x29\xc9\x9c\x66\x60\xab\x28\xa6\xfb\xdd\x9e\xd3\x95\xf3\x19\xce\xce\xfe\x9e\xd3\xe4\x0f\x18\x61\xeb\x24\x55\xbe\xb0\x22\x2a\x57\xf0\x8c\xb3\xbc\x17\x53\x86\xef\xe5\xcf\xb0\x0e\x5a\xc6\x85\xcd\xcb\x7f\x46\xf8\xcf\xf1\x78\x4c\xfe\xe5\xad\x40\x67\x39\x73\x89\x32\x45\xac\x29\xce\xf1\x13\x09\xc7\xb6\x5b\x97\x43\xc7\x54\xe5\x5a\xcd\x06\xb8\xe8\xb1\xb8\xd0\x64\x7b\xae\x17\x26\x6b\x5b\x60\xf8\x48\xbc\x35\xaf\xa8\x3a\x82\xf1\x3e\x1a\xe6\xf2\xbc\x9c\xfa\xae\x98\x99\xea\xf2\x74\xbc\x93\xf9\x1d\x20\x69\x90\xe6\xdb\x21\x0a\xf3\xa4\x5c\xc0\xb3\x60\x9d\x82\xff\xe7\x2f\x5e\xbc\x7c\x85\xff\xc5\x5f\x8a\x77\x6e\x57\x32\xd3\xa3\x88\x67\x51\xce\x35\x48\x55\xf6\xa5\xd0\x44\xff\xfc\x67\xeb\xdb\xe0\xc7\xd0\x47\xf8\xcc\xf3\xe2\xa1\x94\x66\xcc\x4a\xe4\xcb\x4c\xe6\xa9\x91\xc8\x67\x33\x4d\x93\xe4\x28\xe8\x8f\xb2\x25\xed\x31\x2a\xa5\xa0\x17\x6e\x34\x87\xc3\x34\x49\x3c\x13\x13\x5c\xd0\xb7\x88\x0f\xa8\x43\x85\xd5\x23\x6a\xae\x36\xd2\x19\x17\xa9\xe9\x93\x4c\x75\x4c\x46\xc7\xe4\x23\xc0\xe1\x64\x4c\x6e\xe1\xca\x11\x7b\xe5\x1a\x07\x5d\xcb\x8c\x91\xd4\x88\xff\x4a\xf1\x0d\x23\x73\xcc\x31\xd8\x3a\xf3\xa6\x35\x3c\x13\xa6\x22\x9a\x32\x12\xad\x68\x46\x23\xcd\x32\xbb\xec\x4b\x0c\xd5\x0e\x5e\x86\x23\x20\xfc\x6b\x1a\xb3\x51\x9e\x22\x5a\xa8\xe7\x05\x39\x82\xc4\x36\x4b\x3a\x1e\xd8\xdc\x28\x0e\xcc\x12\x0f\xff\xc4\x63\x96\x26\x72\xbb\x66\x22\x48\x4e\xed\xfb\x69\x26\x63\x87\xa4\x30\xae\xb9\x53\x40\x93\x32\x29\x34\x13\xb1\x87\xea\x34\xba\xb7\x5f\xfc\xcb\x3c\x5e\x8e\x4f\x7e\xf7\xc7\xa6\x1b\x10\xb3\x8d\x1b\xfe\x77\xa4\x76\x0b\x42\xa4\xac\x4d\xa2\xaa\x1a\x03\x5b\xdc\xd5\x2d\x96\xc0\x76\xbb\xc5\x02\xe3\x57\x4b\xb6\x10\xda\x96\xe3\x58\x88\xa3\xd6\xa0\x80\xed\x39\xa4\x70\x8b\x74\xb6\x82\x90\xdb\xb9\x6d\x8f\xe0\x74\xe8\xc1\x53\xc1\x37\xc1\x45\xcc\x23\x50\x3d\x1f\x56\x90\x30\xed\x0b\xb2\x7e\x54\x96\xd5\x72\x82\x74\xca\xdc\x3b\x69\x1b\x78\x1c\xdb\xbf\xe6\x52\xaf\xc6\x04\x03\x25\x81\x9b\x7c\x4a\x8d\x90\xa2\x93\xad\xa7\x4b\x1d\x41\xf3\x91\x60\x04\xac\x47\x47\x05\x89\x32\x66\xf3\x33\x94\xbd\xdd\x32\x23\x82\x27\xcf\x8f\x5d\x8e\x45\xcc\x16\x34\x4f\xb4\x22\xb8\x2d\x03\xba\x2c\x6e\x10\xa9\xb5\x24\x0f\x86\x56\x4e\xac\xe2\x66\x16\x71\x69\xff\x69\xee\xa3\xa5\x9c\x45\x07\x0e\x8c\xf7\x03\xd3\xba\x9d\x26\x34\x2a\x57\x78\xbb\x46\xe4\xaf\x56\x2e\x32\x4b\x71\x73\xfc\xed\xd8\x32\x07\x23\x65\x82\xdb\xc0\x4d\x89\x7d\x52\x8e\xb8\x88\x92\xbc\x71\xc5\x2b\x46\x22\x6a\x24\x4f\x18\xa0\x1c\x86\x20\x7b\x16\xb2\xd8\x0c\x0c\xf7\x3c\xb0\x92\xcb\xc6\xfe\x2b\xf5\xb5\x55\x16\x66\x48\x52\x7d\xf8\xe6\x7d\x06\xd1\xa3\xbe\x86\x9d\x09\xc1\x82\x15\x38\x0d\xab\x51\x07\xe9\x82\x40\xd4\xaa\xca\xfa\x19\xa3\xe6\x1e\x45\xf7\x84\x2e\x29\x17\xc7\x16\x1b\xd0\xed\x91\x3c\xd0\xad\xb2\x51\xf0\x41\x2c\x76\xd1\x0a\x18\xa6\x70\x4c\x04\xdb\xb0\xac\x82\x6f\x41\xed\xbe\x67\x7b\x9f\x12\x0a\x84\x01\xd3\x28\x1c\x7a\xa9\x54\x8a\xcf\x13\x37\x71\x19\x87\x65\x5e\xb8\x4d\x59\x14\xd6\xf7\x70\x6f\xcd\x91\x69\xed\x9a\x65\xa3\xd2\x16\xd6\xf5\x76\xbf\x05\x9e\x11\xfb\xfe\x76\xa5\x65\x46\x97\xcc\x7d\xa5\x34\xd5\x39\x02\x06\x5d\x4e\x2c\xbe\xf2\x9c\x01\xf7\x5c\xc4\x86\x0e\x39\x90\xa6\x49\x9e\xd1\xa4\xfc\x26\x92\x02\x3d\xc0\xea\x94\xfc\xf5\x6f\xe6\x1b\x33\x3e\x8b\x6d\x86\xa7\xfd\x76\x26\x46\xa3\xd1\x4c\xd0\x94\xbb\x44\x51\x42\x53\xce\x3e\x69\x26\xe0\xa9\xf1\xfd\x77\x6a\xcc\xe5\xc9\xe6\xab\x99\xc0\x19\xcf\x73\xa5\xe5\xfa\x86\xa1\x2b\xeb\x82\x81\xba\x05\x74\xba\x92\x8e\x09\x06\x18\x22\x30\xe4\x55\x31\xad\xc6\x51\x16\x8f\xd3\x4c\x1a\x08\x44\x40\x74\xc6\x32\x5b\xce\x84\xa1\x66\xf0\x06\x88\x28\xa7\xa4\xe1\xb1\xaa\x27\x04\x97\x52\xc6\xe5\xe2\xb7\x09\x57\xfa\xcf\xb5\x5f\xde\x72\xa5\xab\x00\xf2\xd6\x64\xe1\xce\xc5\x32\x4f\x68\xe6\xff\x64\x7e\x01\x42\x96\x6d\xd8\x7b\x71\x2f\xe4\x83\x78\x6d\x30\x45\x9d\x92\x05\x4d\x14\x9c\x98\x8a\xa4\x39\xd4\xc2\xba\x02\x9a\xde\xc6\x81\xd7\xfc\x31\xb2\x60\x30\xd0\x83\x99\xa2\x15\x5b\x97\xe9\xaa\x32\x65\xe2\x6c\x3a\xf9\xf1\xeb\xdb\xea\xf7\xbb\x81\xb1\x2e\xfc\xd8\x86\x78\x95\x53\x8e\xd8\xdf\x73\xbe\xa1\x89\x21\xb8\x16\xef\xeb\x31\xcb\x1e\x72\x37\x98\xcf\xbc\xd3\xaf\xe2\x72\xb5\xaa\x85\x59\xaa\x8d\x1e\xc0\x68\x7b\x5c\x8c\xdd\x31\x8b\xed\xf6\x70\x1d\x40\x4d\x2c\x2b\xa0\x21\xbb\x88\x5c\x00\xf7\x87\x1b\x31\x06\x11\x81\x65\xca\x29\x91\x91\x14\x1b\x96\x69\x92\xb1\x48\x2e\x05\xff\x47\x31\xb8\x72\xf1\x0c\xd0\xdd\x6b\x87\x91\x70\xa1\x59\x66\x84\x09\x20\x05\x68\xb5\x5d\xd3\x2d\xc9\x98\x99\x86\xe4\xc2\x1b\xd0\x45\x53\xbd\x33\x42\x24\x17\x0b\x79\x0a\xf5\x86\xd4\xe9\xc9\xc9\x92\x6b\x87\xf8\x91\x5c\xaf\x73\xc1\xf5\xf6\x04\x3c\xac\x7c\x9e\x6b\x99\xa9\x93\x98\x6d\x58\x72\xa2\xf8\x72\x44\xb3\x68\xc5\x35\x8b\x74\x9e\xb1\x13\x9a\xf2\x11\xac\x5d\xc0\xcd\x1b\xaf\xe3\x67\x99\xbd\x29\xea\x30\x44\x27\x76\xc9\x0b\xa0\x76\xdb\x31\x18\x0c\xb7\x49\xba\x28\x25\x23\x9b\x2f\xa0\xed\x42\x49\x6e\x2e\x6f\xef\x88\x9b\x3d\x98\xd0\x8c\xc0\x2f\xdf\x54\xe5\x39\x18\xa0\x71\xb1\x70\xf2\x0c\x18\xb5\x7d\xf5\x1f\x59\x6a\xc2\x03\xa2\xad\xca\xe7\x6b\xae\x95\x57\xa8\x46\x8e\xc9\x79\x61\xed\xce\xd3\x98\x6a\x16\x8f\xc9\x44\x90\x73\xba\x66\xc9\x39\x55\xec\x8b\x9f\x02\x08\x75\x23\x03\xdb\xbe\xe7\xd0\x90\x5c\xde\x64\xca\x2b\xc8\x58\xc3\xb1\x95\xf7\xd1\x70\xa4\x6a\x76\x93\x4b\x86\x2b\xd3\xcf\xe9\x0e\x6d\x2b\x3f\xee\x48\x6b\x4c\xab\xc5\x34\xde\x10\x87\xbf\xd3\x02\xd0\x85\x0a\x4e\xa6\x05\x25\x44\xad\x78\xce\x12\x69\xb0\x4a\x5a\xdb\x0c\x0b\x39\x54\x9b\xf9\xf8\x6f\x82\x93\x02\x1f\x85\xff\x3c\xb3\x29\x6c\xa7\x04\x19\xd8\x89\x66\xeb\x14\xe8\xd5\x09\x7e\x31\x12\x32\x66\xa3\x6c\x4e\xa3\xf1\x96\xae\x13\xf3\xc6\xf9\xd5\x84\x44\x49\xae\x34\xcb\x48\x26\x13\x56\x70\x5b\xfc\xee\x06\xbe\xf2\xb9\x34\xbc\x4d\x73\xbd\x92\x19\xff\x07\xc6\x4d\x79\xac\x3a\xc0\x8a\xed\xd4\x91\xe0\xa3\x34\xc9\x97\x5c\xcc\x04\xc8\x87\x96\x51\xd1\x94\xbf\x31\x0c\xd8\xec\xc6\x6c\xfc\x6f\x08\x8b\x82\x7a\x15\x07\x3b\x32\xca\x96\x2a\xff\x32\x7b\xf1\xff\x2c\x52\x48\xf0\xbb\x0d\xcb\xe6\xfe\xcb\x4b\x44\xe8\xbd\x27\x3c\xc1\x43\x0c\x0f\x9a\x3a\x57\x43\x7d\xd8\xb0\x30\xd1\x36\xd7\x3c\x91\xd1\x3d\x5d\xa0\x54\xe3\x6f\x8c\xa7\x74\x0d\x3f\xd6\xbe\x5b\x51\x11\x27\xfe\x83\xf6\x18\xbd\xea\x07\x95\x37\x52\x29\x93\xca\x17\x28\x65\xec\x3e\x48\xd7\x91\x14\x0b\xbe\x6c\x07\x24\xfe\x91\x70\xe5\xfd\x05\xea\x1e\x2b\xff\x46\x92\x5b\xfe\x1d\xb3\x84\x99\xbf\x7b\x62\xeb\x7d\x3e\x67\x65\x7c\x51\xa6\x7c\xcc\x9d\x89\x9f\x7f\xe6\x0b\xc2\xfe\x4e\xc6\x37\x3f\x9c\x9d\x9f\xc3\x8a\xc9\xec\xc0\x3c\x32\x3b\xf8\xd7\xbf\xcc\xf8\x13\x50\xcd\x18\xa1\x0e\x34\x06\xc1\x8b\x06\x8a\xf5\xd1\xc1\x56\x2b\x05\x13\xfa\xd8\xbc\x0c\x2d\x18\x81\xe3\x69\xc7\xfa\x1b\x96\xe5\xf4\xfe\x32\xfc\xe6\x0b\x5d\xa1\xfa\xc4\xfe\x45\x7a\x46\xae\xcc\x7d\x00\xb5\xec\xc1\x46\x18\x6a\x49\xd6\x52\x70\x88\xa4\x97\x19\x42\x1f\xf8\xd2\xde\x17\xc1\xbb\x6b\x75\x74\x78\xf0\xbd\x6d\x75\x84\xb0\xb8\xf2\x8c\x4c\x5d\xc5\x3d\x6f\x6d\x65\x21\x34\xf6\x89\x2b\x0d\xfd\x49\xa9\x22\x29\xcd\x2c\x33\x38\x7b\x47\xca\xdd\xee\xbf\xe8\x92\x5c\xec\x81\xc2\xc5\x76\x9e\xe1\x02\x8a\x81\x6d\x3e\xa6\xe0\x29\x34\x78\x05\xdf\x0b\x76\x93\x55\xe0\x72\x35\x20\x42\xa4\x31\x77\xd5\xa2\xbe\x3a\x36\x3b\x7a\x60\x46\x8d\x55\x24\x65\x19\x97\x31\x8f\x88\xce\xf8\x72\xc9\xb2\xf0\x41\xec\x4f\x3a\x42\x57\xb9\xbe\x65\xb7\xcb\x7f\x37\xa1\xfa\x02\xd4\x24\x70\x74\x53\x43\xeb\x76\xee\x02\xe5\xd6\xfe\x4b\xd6\x34\x05\xa3\xb4\x5c\xe0\x76\xb0\x08\xc6\x94\x00\x8d\x7c\xb2\x53\xf1\x28\x6e\xd3\x71\xec\xac\x7c\x87\xb8\xac\xa9\xa0\x4b\xa6\xc8\x4a\x2a\xed\x05\x58\x3e\xc9\x12\x2b\x63\x7e\xc1\xf3\x79\x46\xae\x18\x8b\xc1\xba\xc7\x14\xc0\x1a\x9f\x0d\xb1\xac\x27\xda\x5a\x23\x33\x7c\xc2\x0d\x7a\xc7\xf6\xe7\x7c\xce\xce\xcb\x53\x43\x76\x94\x67\x85\xf1\x13\xed\x7f\x5c\x9b\xe9\x14\x31\x5a\x0a\xf2\xd8\xa7\xd9\xac\x41\x1a\x0f\x67\x22\x7f\xf6\xe0\xb6\x9f\xa1\xc5\xcd\xac\x43\x3e\x08\x6f\x2d\x3b\x30\x79\x66\xa1\x40\xa8\xb3\xa1\x12\xbe\x20\x42\x0a\x86\x54\x5b\x35\x81\xeb\x99\x3b\x63\x5f\x7e\xda\x85\xe2\x33\x84\x22\xb0\x81\x68\x55\xc9\x03\x2a\x00\x0c\xe2\xc2\x0e\x4f\xfd\x81\x0b\x34\xbb\x7e\x21\xd6\x2a\x13\x76\xc3\x30\xa7\xc6\x9d\x4f\xcb\xf8\xe6\xb1\x00\xdb\xef\x9c\x46\xe5\xa0\x50\x98\xa3\x19\xd9\x01\xaa\x5e\x8b\x1e\x63\xf8\xf1\x39\x48\x40\xd4\x56\x69\xb6\xb6\x90\xfb\x0c\xed\xa0\x5d\x82\xf2\x5e\x23\x17\x94\xad\xa5\xb8\x65\x5d\xc2\x13\x3c\xfc\x4b\x09\x4c\x66\xb2\xaa\x90\xf4\x5e\xd9\x16\xda\xe8\x99\x28\x23\xab\xcb\x00\x4f\x79\xcf\x84\xb2\x61\x1d\xb9\x57\x53\xca\x68\x4a\x4e\x81\xd9\x53\x12\xa9\xee\x57\x9d\xc0\x1c\xd5\xc7\xaf\x2a\xe1\xd6\xa3\x90\xd6\x14\xa2\x5e\xe5\x9d\x7b\x06\x9a\x74\xb9\x48\x22\x80\xe4\x6a\x69\x6e\x33\xc8\x42\xc7\x28\xc6\xa1\x71\xca\xcf\xb8\xff\x77\xe8\x61\xcf\x88\x2b\x65\x70\x9b\x70\x27\x5e\xe5\xee\x74\xec\x15\xb0\x9d\xef\xad\x4d\xc0\xf9\x0b\x5c\x21\xb7\x67\xae\x30\xd7\xda\xe5\xe2\xd4\x77\x11\x73\x15\xc9\x0d\xcb\xb6\xee\x92\xb6\xed\xaa\x60\x84\xb0\x9e\xbd\x84\xdd\xbd\xa0\xb7\x13\x27\x5a\xe0\x47\x03\xa9\x7e\x6f\x9d\x8e\x6e\x37\x05\xca\x4e\xa6\xe8\x63\xa7\xf1\x86\x65\x9a\xab\x12\x10\xad\xab\x6d\x18\xf5\x6e\x9b\xae\xa8\x1a\x87\x85\x77\x72\x3e\xb9\xb8\x21\x34\xd7\x72\x14\x33\xcd\x22\x0c\x3a\x10\x40\x6d\x68\xbc\xb6\xc8\x56\xf2\x77\xe4\x28\x46\xce\x7a\x04\x7e\xe1\xcb\xe6\xdd\x56\x14\xda\x5f\x83\x69\xd1\xe5\x51\x44\x71\xc4\x21\x61\x14\x2c\x9c\x46\xa7\xb2\x06\xb1\xf7\x82\x6e\x28\x4f\xe8\xdc\x10\xc0\x84\x2e\x3d\x40\xa5\x3e\x9c\x9f\x39\xcf\x26\xd8\x6a\x14\xa6\xa7\x46\x55\x79\xc0\xab\x4f\x68\x2e\x2a\x6a\x0e\x45\x21\xc4\x71\x88\x57\x3e\x23\x1f\xea\x7c\xd2\xc0\xd9\x8b\x73\xf6\xab\x7c\xf0\x86\x6b\x6d\x6f\x12\x17\xcb\x3e\x37\xc2\x3e\x9d\x56\xa2\xd4\x7a\x5e\x09\x8b\x60\xf3\xad\x03\x87\x59\xb8\x73\xf8\x95\xfb\xff\x6c\xe2\x53\xa3\x36\x01\x6a\xbb\xa7\x00\x5e\xa3\xa2\xa9\xcb\x1f\x2b\x4d\x41\x8f\x5b\x73\x3f\x3b\x52\x81\x3d\x56\x71\x57\x64\x43\x33\x2e\x73\x45\xce\x6f\x2e\xf0\xb6\x23\x2e\x3d\x91\x98\x8c\x45\x6f\x16\x2c\xe1\x9f\x2a\x46\x1f\xf3\x9b\xf7\x6d\x55\x96\x04\x2d\x70\x99\xa6\x8c\x65\xd5\x6f\x16\x3c\xd1\x95\xef\x70\xf8\xf9\x32\xdd\x19\xbc\xf8\x6e\x77\xe8\xbd\x4c\x55\x75\x85\x13\x67\x0c\x62\xee\xce\xcf\x8a\xf9\x44\xb8\xf1\x9d\xe0\xd3\xad\xc6\xb6\x80\x5e\xd5\xaa\x39\xe3\x61\x01\x89\x02\x24\x79\x84\xb2\xfc\xb0\x8b\x41\xb9\xd2\x85\xf0\x2e\xe2\x42\x1c\x37\xf4\x08\x90\x49\x0a\x23\x9b\x67\x3a\x4f\xbf\x84\xc6\xdb\x89\x41\xbd\x35\xb4\x66\x35\xac\xba\xd7\xfa\x06\x03\xbb\x22\x8d\xdb\x22\x6d\xfc\xa8\xe7\xf1\x04\x16\xd6\x8f\x09\xd8\xa8\x5c\x33\xc3\x93\xda\xe6\xfa\xe1\xcb\x1d\x04\x4f\xb8\x68\x36\x29\x50\x16\x83\x04\x0a\x17\x78\x0e\x84\x27\x4f\x97\x19\x8d\x6d\x3a\xf0\xe6\xe5\xf8\x15\x4a\x92\x11\x16\x0e\x7b\x66\xe4\xe5\x8c\xad\xe5\x86\xc5\x36\xe8\xda\xbd\x20\x33\xb3\xc3\x45\xc6\xd4\x8a\x70\xa1\x34\x4d\x92\x27\xd5\xf5\x5b\x68\x49\x95\x4c\xed\x83\x59\x61\xa8\x54\x00\x62\xcf\xd8\x70\x0b\x2d\xcd\xa3\xe6\x44\xd1\x6c\x48\x93\x44\x46\x4f\xbb\xc9\x5f\x9f\xd9\x6d\x87\x59\x22\x3a\x80\x72\x09\x42\x8d\x91\x0a\xad\x26\x05\x72\x93\x11\x0c\x6b\xd6\x84\x59\x61\x6a\xad\xd8\x4c\x9e\x8a\x20\xed\xe3\xcb\xf0\x75\xa9\x1f\xc0\x88\x5b\x82\xbb\x5a\xb4\x18\x2e\x0f\xec\x68\xbe\x85\x6b\x8d\xf8\x90\xc9\xdc\x6c\x6d\xb9\xcc\x5c\x45\x81\x2f\x78\xf4\x8d\x72\x98\x3d\x15\xc4\x4d\x40\xc6\x35\x5f\x5a\xa2\x53\xd1\x09\x63\x50\xd9\x21\x44\x26\x80\xed\x11\x15\x36\xf9\xe1\x59\x71\xad\xc1\xf2\xa3\xed\xbd\x36\xf2\x31\x90\x02\xa8\xfa\x59\xde\x6a\x92\x2b\xf3\x93\xe1\x81\x23\x73\x09\x12\x58\x44\x10\x14\x34\x4d\x55\xeb\xce\xcb\x25\xb6\x9c\x5f\x20\x94\xa8\xdd\x60\xd0\x6c\x4a\xea\x34\x25\x7c\x09\xa3\x10\x0e\xbd\xbf\x21\x08\xdf\x6b\x36\xfe\xfc\xfc\x33\x13\xf1\xbf\xfe\xf5\x68\xf3\xcf\x97\x05\x68\xc5\x1f\xfc\x25\xc0\xea\x4f\xb0\x3f\x70\xab\x86\x97\x56\xfb\x5a\x3f\xc8\x16\x36\x35\x28\xa2\xb4\xa6\x82\x2f\x98\xd2\xee\xe6\xa8\x1d\x1b\x99\x0d\xd4\x60\x59\xe1\x42\x02\xc3\x9a\xaa\xd9\xa2\x30\xee\xd2\x59\x48\xac\xda\x6d\xe8\xe7\x33\xcc\x05\x5d\x53\x70\xed\x9b\x87\xcc\x13\x2c\x43\x75\x13\xbc\x20\x9e\xf2\x68\x85\xb1\xc2\x14\x57\x98\xf3\xea\x21\x7a\xa9\xea\x65\x73\x6b\x06\x19\xb1\x31\xed\x2e\x06\xe2\x3b\x35\xa2\x69\x5a\xbf\x0c\x2e\xa8\xa5\x96\x6a\x04\xa9\x00\x6f\xfd\xf7\x9b\x46\x20\x96\x6f\xdd\xea\x8c\x6a\xb6\xdc\x9e\x5a\x87\xf1\xf8\x7d\xe5\x6b\x73\x3d\x7e\xfe\x99\x68\xf9\x17\xba\x4e\xea\x3f\x92\x7f\x12\x2e\x62\x26\x34\xf9\x06\x9f\x63\x89\x62\xe6\x5f\xa4\x08\x07\xb9\x91\x49\xc2\xc5\xf2\xbd\xc7\x23\x33\xff\xab\x62\x95\x6b\xfa\xc9\xb3\x20\x9c\x92\xaf\xbc\xfb\x49\x88\xc3\x18\xb7\xcd\x7a\x08\x50\x52\xdd\x72\xf3\xa6\x09\x58\x20\x6e\xa8\x88\x56\x2c\x1b\xb9\xf8\x1e\x8c\xb2\x29\x4d\x0c\x58\x87\x28\x5a\xb1\x38\x4f\x58\x36\x86\x7c\x88\x71\x59\x99\x09\x02\x9f\x32\x0e\x89\x67\xa3\x54\xc6\x65\xee\x73\x5c\x06\x64\x6d\xbe\x1e\x7f\xf5\xf5\xf8\x1b\x88\x7e\x27\x6e\xea\x70\x7b\x09\xc4\xf9\x63\x42\x21\x98\x07\xf2\x1b\x00\x89\xed\x14\x67\x71\x2c\x85\xc2\x32\x47\x32\x61\x96\x55\x41\xa5\x9f\x63\x7f\x90\x35\xc5\xb8\x20\x06\x51\xf7\x90\xbe\xef\x56\x49\x68\x1c\x8f\x20\xc7\x4a\xa8\x1c\x2c\x37\xd6\xd5\xe2\xbf\x9f\x66\x5c\x66\x5c\x6f\xdd\xce\xa1\x08\x80\xb0\xb9\x8a\x18\x38\xe6\xfb\x7a\x6d\x10\x66\xec\x0f\xc1\x17\x66\x60\x08\x2f\x06\x47\x0e\xdb\xf0\x48\x57\xd2\xed\xfb\x43\xf5\x94\x1c\xda\x88\xb0\x4a\x08\x97\x39\xc9\x40\x7e\x43\x75\x1c\xa9\x4e\x49\xc2\x45\xfe\xc9\x3d\xf0\xf3\xcf\xb6\xd4\xf6\x7f\xdd\x1f\x93\xff\xda\x90\xd3\x3f\x92\xf1\x95\x37\x12\x71\x68\x6b\x1f\xfe\xaf\x7b\xf2\xaf\x7f\x9d\x92\xd9\x81\xf9\xf7\xc6\xfc\x7a\xe0\x0d\xc5\x44\xec\xbd\x60\x38\xb9\x35\x2e\x55\xab\x74\x95\xa7\x55\x3d\xed\x77\xf4\x9e\x11\x95\x67\x55\x82\x06\x00\x73\xe0\x81\x7c\x09\x9a\x24\xa8\xbd\x78\xf0\x1b\xd9\x2a\x38\xa7\xe4\x4a\xde\xda\x87\xcb\x5f\x21\x74\x35\xa3\x06\x34\xe4\xb2\xe2\x7e\xc2\x79\xb3\xfb\x56\xfc\x40\x29\x8d\x95\xe7\x5f\x99\xf8\x9e\x6d\x4f\x03\x48\xd9\x6f\x76\x7f\xdd\x97\x9f\x58\x94\xeb\x5e\xcb\xee\x0a\x62\xb1\x48\x55\xe1\x55\x57\x21\x72\x8b\x83\x15\x04\xc5\x02\x84\x0b\xbe\xe6\xff\x60\x24\x96\x0f\x42\xf3\x35\x23\x31\xde\x0e\xea\xa8\x94\xaf\xa3\xb9\xf8\x90\x3f\x10\xcd\x92\xc4\xe7\x0e\x5a\x92\x58\x42\xf3\x3b\xb0\xb7\x97\x13\xb8\x57\x66\x07\x65\xf4\x64\x15\x53\x63\x19\xa9\x93\x48\x8a\x88\xa5\x5a\x9d\xb8\x12\xc1\xea\x04\x4c\x62\xa9\x8c\x4f\x9e\xb9\x2a\x0a\x5c\x8a\x91\x5c\x98\x9b\x51\xe2\x83\xf7\xdb\x9b\x8c\x46\x6c\x0a\x11\x14\xb7\x2c\x92\x22\x56\xa7\xe4\xc5\x0e\xc9\x2b\xeb\xfb\xa3\x91\xd4\x3d\xe0\xee\xfe\x79\x42\x95\x42\x00\xfe\xfc\x33\x19\xa3\x94\x6c\x2e\xca\xb4\xfe\x00\xf9\x67\xe1\xf0\x9c\x1d\x20\xf3\x42\x09\xc9\xe1\xd4\xec\xc0\xbb\x23\x46\x34\x3f\x77\x1c\x7b\x97\xf6\x95\xdc\xdc\xa9\x89\xaa\xaa\x4e\xd7\xa4\x65\xd0\x94\xf0\x80\x8d\x0e\x33\xf6\xc7\x9b\x68\x2b\x9b\x5b\x4d\xcc\xb6\x25\x73\xbd\x53\x76\xd5\x6c\xc8\xec\xe1\x0b\xb2\x95\x39\x16\xaa\xa2\x49\xc6\x68\xbc\xf5\x07\xb5\x8b\x01\x6d\x2d\x57\xac\x61\x72\x17\x56\x6e\x9f\x86\x9f\x7d\x2c\xe7\x6b\x08\x7e\xfc\xf9\xe7\xf1\xf9\xd5\x64\x62\xfe\xf0\xc9\x8e\xfd\x7d\x9a\x27\x09\xa6\x48\x9c\x92\xc9\x02\x7a\x6b\x40\x10\xb0\xff\x60\x24\xd7\x6b\x6a\xe4\x90\xbf\xce\x0e\x4e\x64\xaa\x4f\x22\xc1\x4f\xe6\x5c\x9c\x78\xeb\x82\xdc\xb4\x83\x91\x5d\x4b\xa1\x46\xe0\x87\x89\xcd\xeb\x4c\xae\x2b\x51\xa1\xce\xb1\xf0\x8e\xa6\x4e\xd8\xf4\x3f\xcf\xc8\x19\x64\x01\xff\xf9\xfd\x0f\x97\x37\x57\x97\x77\x97\xb7\x1f\x6f\x2f\x6f\x7e\x9c\x9c\x5f\x7e\xfc\xd3\xf5\xed\x1d\xb0\x8a\xc0\x6f\xd3\xeb\x9b\x3b\xab\xe3\xca\x0d\xcb\x32\x1e\xc7\x0c\x09\x0d\xfb\x61\xfa\x9a\xac\x9d\x4d\xc7\xff\x20\x14\xbd\x52\x88\xce\x01\x34\x72\x56\xc3\xfa\x1b\x2e\x59\x6d\xb7\x4c\x22\x13\x9b\xda\x56\xdc\x29\x79\x8b\xbd\xba\xbe\xb8\xfc\x78\x75\xf6\xee\xb2\x3e\x2e\x84\x70\xef\x40\x0a\x3f\x90\xa1\x12\x82\x54\xf1\xe3\x94\xea\xd5\x29\x5c\xb9\xb1\xb9\x1a\x90\x4c\x1e\x5c\xca\xf9\xd9\xdb\xc9\xf9\xf5\xc7\xab\xcb\xbb\x0f\xd7\x37\x7f\x9e\x5c\xbd\xf9\xf8\xc3\xd9\xf9\x9f\x2f\xaf\x2e\xf6\x59\x4f\x71\x7a\x7f\x66\xdb\xa6\x65\x55\x65\xf8\x4a\x58\x83\xff\x01\x52\x8f\x4f\x7d\x74\xb9\x8d\xde\x63\x1b\x99\xe4\x6b\xf6\x2e\x54\x77\x6c\x44\xd6\xe6\x6b\xdc\xf9\xc9\x86\x66\x27\x09\x9f\x03\x7a\x3a\x33\x71\xf8\xb0\xcb\x0b\x3e\x12\x4c\x8f\x62\x9e\xb5\x8d\x6b\x9e\xf6\xf1\x3e\x3c\xa6\xd1\x51\xe6\x5c\xd4\x07\x53\x2c\xca\x81\x94\x49\xa1\xd9\xa7\x7a\x9b\xca\x34\xe3\x1b\x9e\xb0\x65\x35\x70\x99\x84\x48\x55\x45\x37\x31\x2a\xc7\x9c\x0b\x9a\x55\xea\x15\xa0\xab\xdf\xfc\x56\x53\x41\x16\x3c\x81\x0c\x40\x50\x42\x44\xf5\x12\x38\xac\xb0\xe3\x1b\x5d\xeb\x97\xa5\x22\x76\xe2\x81\x66\x78\x1b\xb9\xb2\x35\x67\xdc\x59\xfb\xe7\x58\xd8\xed\xc6\x0d\xd7\xfb\x6a\xf2\xf1\xfc\xfa\xea\x75\x33\x89\x31\xa2\xe6\x57\x2f\x46\xd6\xe0\x65\xc6\x06\xa3\xe3\x41\x7d\x15\xce\xa0\x58\xc3\x26\xc8\x63\x85\x33\x6b\xc2\xa9\xfa\x72\x2c\xa9\x81\x65\x4d\xde\xfc\x5b\xc9\x8c\xe0\x1f\xed\x76\x3e\x86\x1e\x7d\x46\x6e\x19\xa6\xb5\x98\x5b\x0f\xa5\x7f\x8a\x8c\x62\x88\x53\xfe\x4e\xa1\xce\x6e\x7e\x6a\xd8\xf1\xaf\x80\xd4\x63\x2a\xc1\xbb\xbb\xf7\xc4\x8a\xb1\x1b\x9a\x71\xa3\xeb\x36\x9f\xd1\xbb\xbb\xf7\xff\xce\x83\xd9\x30\xbd\xfa\xb8\xd6\x79\x7d\x1f\xd3\x8c\x6d\x98\xb0\xed\x67\x4b\x6a\x08\x72\x9a\x4a\x18\x83\xc8\xd1\x85\x34\x4f\xd5\xdb\x54\xbb\xdd\xdd\xbe\xbd\xbc\xdc\xe9\xf5\x5e\x5c\x04\x4c\xe4\x3b\x78\x14\xc7\xf9\x2c\xce\x10\x1c\x8c\xe9\xc8\xf1\xaf\xf1\x4e\xcd\x98\x72\xb8\x00\xd7\xfa\x4c\x46\x63\x64\x66\x0f\xbe\x6b\xac\xd6\x89\x35\x83\x23\xa6\x14\xcd\xb6\x40\x7e\x50\xf8\x56\x60\xbc\x2e\xc3\xb1\x0c\xa1\x84\xae\x9a\x69\x42\x45\x65\x70\x28\xbe\x33\x4f\x17\x84\x6a\x72\xa2\xb6\xea\x64\xa1\x4e\xe0\x4f\x11\x93\x08\x92\x3d\x5f\xc2\x4f\x59\xee\xe4\xc9\x13\xfc\x7a\xec\x6a\x9a\x5a\x13\x19\xd7\x9c\x26\x5c\x95\x19\xec\xa8\xd7\x55\x2d\x02\x46\x12\x57\xda\x68\x7f\x32\xd3\x64\x41\xd5\x0a\x44\x6e\x58\x84\x90\x64\x41\x79\x62\x34\x61\x20\xee\x59\x26\x33\x75\x8c\xd1\xe2\x9a\xc4\x5c\x65\x79\x0a\xb1\x59\x5e\xa2\xbc\x70\x3d\x0b\xeb\x6c\xc0\xe1\xd6\xec\x00\x20\x35\x9a\xa7\x8b\x85\xaa\x62\x51\xc9\x39\x8d\x4a\xf3\x54\xac\xd3\xd7\x34\x51\xe6\x36\xa0\xb1\xff\x34\x9b\x1f\xe1\xe6\x6b\xec\xb4\x37\x4a\xe3\x11\x85\x31\x4f\x6d\xd5\x68\xf7\xb7\x67\xe4\x07\x1e\xf3\x0c\xc3\x90\x68\x82\x19\xe4\xd6\x31\x07\xfd\x1a\xc1\xf8\x50\xd4\x09\x12\xec\x01\x27\x24\x0f\x8c\xac\xe9\x3d\xab\x63\x46\x9a\xc9\x94\xda\x42\xcd\xb2\x20\xc5\xbb\xb3\x2a\xe9\x8c\x45\x44\xe6\x3a\xe1\x1b\x9b\x89\x5a\xc5\xe4\x1d\xd6\x8d\x9b\xb5\x73\x80\x1d\xb5\xb2\xfc\x2e\x01\xb3\xc4\xd3\x30\x8c\x36\x34\x1b\x65\xb9\x18\x85\x9f\x79\x12\x58\xed\x5c\x95\x5f\x15\xc8\x9e\x11\xc0\x32\x72\x92\x66\x32\x3a\x29\x15\x6a\x5b\x56\x2c\x57\x39\x4d\x92\xad\x2d\xfb\x01\x13\xa7\x99\x5c\x66\x74\x0d\x7b\x33\x78\x6d\x5e\x1c\x93\x89\x3e\xf4\xa9\x0c\xac\x41\x28\x94\x7a\xb7\xc7\xf5\x39\x1d\x35\x00\x1f\x60\x79\x45\x8e\x31\xed\xc6\xac\x27\x93\x52\x17\x14\x67\xa1\x1a\x20\xa9\x25\xa1\x5a\x1b\x91\xe6\xfc\xee\xed\x0f\x6e\x69\x46\x0e\xcf\xcc\x7e\x93\x7a\x03\xb9\x2a\x82\xb8\xd5\x87\x51\xa3\xe9\x57\xa3\xff\x5f\x8b\x64\xbb\x2b\x1a\x3e\x8e\xa6\x47\x61\xd3\xc7\x4d\x0e\x8e\xc4\x80\x53\xa3\x10\xe3\x3c\x2b\x13\x48\x74\xb5\xd6\xec\xcf\x7c\xcb\x89\x83\x4c\x2d\x1e\xd4\xd0\x75\x70\xbd\x2a\x37\xaa\xff\xbe\x41\x84\x00\x15\x0d\x98\xcf\xc8\x93\x52\xd0\xdf\xb6\x36\xf1\x5e\x31\xff\x68\xcf\xa6\x13\xe7\xba\x32\xea\xb6\x11\xa0\x0c\xef\x86\xe8\x98\x06\x11\xea\xe2\xec\xee\xec\xf6\xee\xfa\xe6\xf2\xe3\xdd\x5f\xa6\xcd\x4a\x45\xb9\x85\x5d\x65\xe2\x03\xe5\xba\x08\x56\xef\x9a\xef\xc3\xd9\xe4\xee\xe3\xeb\xeb\x9b\x8f\xc5\xc4\x8d\x73\x02\x00\x76\x66\x33\x52\xfc\xde\x82\xbb\x91\xd6\xff\x3d\xc2\xfa\x4a\x4a\xc5\x8a\x13\x61\xc2\x99\xfe\x9a\x74\xaa\xff\x2c\x0b\x0e\x6c\xd1\xa6\x35\x43\x6d\x2b\xa3\x41\x42\x31\xc5\x05\x8a\x8f\x5e\x05\x2b\xf3\x7b\xc3\xa6\xdf\xbe\xbf\xbd\xbb\xbc\xe9\xc0\xc0\xef\xd4\xf1\x7c\x99\xee\x22\xc4\x59\x19\x2d\x8d\x12\xeb\x9b\xa9\xd7\xbe\xad\x01\xce\x93\x66\xb5\x81\xe6\x5a\xe2\x70\xbb\x73\x5d\x0a\x10\x19\x27\xd3\xfa\xfb\xb5\xf3\x9b\x4c\x7f\xfc\x66\x7a\x7d\xfd\xf6\xe3\xee\x93\xde\x4c\x67\x50\x72\xa7\x71\x16\x99\x91\x0b\xae\xe0\x9f\x3f\xfe\xf4\xf6\xec\xca\x21\xbc\xb3\x97\xdb\x44\xba\x76\x4c\x2a\x56\x02\x43\x34\x2e\xe5\xca\x68\x59\x9f\xb1\x92\xcd\xab\xde\xcb\x79\xf5\xf8\xe5\x98\xbb\x6f\x54\x5f\x20\x36\xb9\x10\x2c\x21\x31\x83\x18\x7d\x48\x69\xe0\x0b\xc2\x53\x9e\x82\x0e\x01\x0b\x8f\xc3\x6b\x79\x7d\xf9\x76\xf2\x93\x39\x9a\xab\xc9\xf4\x57\xaa\x1c\x57\x76\xba\x72\x60\xaf\xec\xb9\x01\xd0\xb8\x39\x78\xfe\x3f\x64\x6f\x1f\x78\xc6\x96\x39\xcd\xe2\x3d\xf6\xf7\x61\x72\x73\xf9\xe6\xfd\xd9\xcd\xc5\xaf\x74\x8f\x77\xd5\xdb\xf1\x0d\x5c\x0d\x2f\x30\xaf\x0c\x0a\xae\xe5\xf9\x8d\x21\x0d\x64\x32\x2d\x9a\xea\xd6\x47\x8e\x56\x52\x19\xb9\x03\x03\x04\x8c\x9a\x41\xc5\x92\x8d\xc9\xf9\x8a\x8a\x25\xd6\x86\x71\xdd\xc3\x6c\x7c\x68\x25\x6a\x0c\x46\x5d\xd1\xcd\xce\xb8\x42\x5a\xd7\xaa\xed\x3f\x66\x2b\xf5\x2c\x68\x92\xb8\x1a\xce\xa3\x91\x8d\x5f\x19\x45\x3c\xae\x2b\x13\xa1\x70\x88\x4b\xaf\xa8\x1d\xd3\x3b\x24\xe9\x7c\x72\x71\x73\x52\x27\x0c\xe6\xcb\x99\xf8\xf9\xe7\x11\x41\x97\xed\x51\xc2\x04\xf9\x2f\x33\xa1\x7a\x4e\x5e\x92\xaa\x98\xd8\x4c\xee\x70\x98\x00\x62\x58\x6f\xfc\x82\x67\x4a\xdb\x71\x2b\x7e\xf9\xa6\x61\x5f\xf5\x1a\x36\xa1\xf5\x51\xcd\x4e\x58\xa2\xd8\x53\xad\x7c\x6c\xf9\xad\x79\xcc\x9b\xc1\xf7\x48\xbb\x03\x71\x34\x1b\x8c\xcb\x89\x5c\x02\x7a\x28\x89\x79\xac\x3a\x31\x5f\x29\x08\x57\x6a\xe2\x92\x76\x69\x17\x93\xdb\xb3\x1f\xde\x5e\x7e\x7c\x3d\x79\x7b\xf9\xf1\xed\xf5\x9b\x37\x93\xab\xb0\xa9\xb7\x5d\x6a\x7b\xcd\x12\xfe\xc9\xab\x30\x24\x51\x7b\x74\xd7\x04\xcb\x6b\x9b\xaf\xcf\xce\xcf\x2f\xa7\x77\xad\xf7\xff\xe2\xf2\xf5\xd9\xfb\xb7\x77\x97\x57\x17\xd3\xeb\xc9\xd5\xdd\xdd\xb5\x91\xdc\xcf\xce\xef\x26\xd7\xcd\x4c\x05\x87\xdd\x5d\xdb\x2e\xde\xde\xda\xba\xa2\x71\x4e\x13\xa5\x69\x74\xff\x08\x84\x74\x4c\xe6\xc7\x57\xb7\xef\xa7\x46\x77\xd8\x0b\x62\xa5\x9c\xf2\xaa\xe1\x3d\x4f\x4c\xe9\x85\xb9\x57\x67\x77\x1f\xaf\xdf\xdf\xbd\xb9\xee\x73\x78\x8d\x48\x5b\x22\x15\xf0\x7c\x29\x3c\xf5\xa3\xf5\xc0\xfa\x00\xa2\x30\xd8\x36\x62\xf4\xee\x51\x41\x81\x3a\xcc\xbc\x30\x24\x06\x27\x7b\x7b\xfd\xc6\xe0\xea\xf4\xec\xee\x4f\x68\x05\x14\xcc\xe6\xe0\xe1\x7d\x00\x44\x74\x17\x42\x4b\xb8\x20\x6d\x8b\xf7\xc6\x6b\x5c\xbc\x99\xa4\x0f\x6e\x35\x2d\xf8\xf6\xf2\xc7\xcb\x9b\xc9\xdd\x5f\x6e\xff\x72\x8b\x6b\xb6\x34\x1c\x08\x7d\x91\x13\x2e\x16\xb2\x75\x27\x6a\xab\x12\xb9\xec\xd8\x8b\x37\x55\xe3\x76\xda\xae\xb0\x37\xdf\xec\xe0\x81\x66\x82\x8b\x65\xaf\x6b\x15\xdc\xef\xf9\xcd\xe5\xe5\x95\x19\xeb\x03\x8e\xb4\xbb\xe3\xff\x9f\xbd\x77\x5d\x6e\xdc\xd6\x1a\x05\xff\xcf\x53\xe0\x73\xa6\xca\xee\x73\x2c\xf5\x35\xde\x89\x77\xed\x9a\x72\xdb\xdd\x89\xe7\xeb\x76\xeb\xd8\xee\x24\x67\xa2\x9c\x2e\x88\x84\x24\x8e\x29\x82\x9b\x00\x65\x6b\x9f\xef\x54\xcd\x3b\xcc\x1b\xce\x93\x4c\x61\x2d\x00\x04\x29\x80\xa4\x7c\xe9\x24\x5f\xa8\xaa\xbd\xd3\x96\x70\x5d\x58\x58\x58\xf7\xd5\x77\x3b\x30\x52\x70\x47\x3f\xfb\x17\x5a\x1f\xee\xc7\x77\x27\x1f\xae\x7f\x7c\x77\xa1\xe8\x9d\x5f\xe6\x0a\xd3\xb8\xb6\x0d\x9f\x4f\xae\xd5\x90\x57\x5a\x9a\x03\x6d\x54\x29\x31\x5c\xaf\xba\xc9\x3a\xc5\x74\x36\x07\xcd\xb4\x68\xbf\x4f\xb5\x01\x5b\xa5\x99\xfa\x52\xef\x6b\x4e\xf0\xb9\x8e\x9b\xef\x31\x13\xdc\x16\x37\x15\xe5\xe5\x31\x79\xf5\xed\x8b\x9a\xf7\x4a\x9a\xcc\x59\xb4\x89\xd2\x66\x91\x8b\xbc\x60\x57\x92\xe7\x5b\x83\xb0\xbb\xad\xcc\x6b\xc4\x51\x9d\x6f\xff\x32\x22\xae\x0f\x4b\x53\xf5\x64\xda\x8c\xc4\xb2\x94\x31\xbf\xcd\xea\x6b\x5b\xb3\x8c\x09\x31\x29\xf8\xac\xb9\x3e\xef\x3a\x42\xab\xe8\x5e\xc3\x88\x8c\xe0\xf6\x8e\xd4\x9c\x9e\x1f\x67\x49\x11\x7b\x7e\xcb\xeb\xae\x59\x2f\x5f\xd4\x7f\xd6\xd6\x94\x33\x96\xd2\x4d\xb0\x91\x36\x96\x5c\x2f\x0b\x26\x96\x3c\x8d\x8f\x49\xe3\x91\x91\xc9\x8a\xf1\x52\x06\x06\x28\x18\x8d\x93\xaf\x0d\xa5\x86\x2b\x55\x1d\x4c\x9e\x1f\x3b\xe0\xd4\xbe\xc3\x16\x9b\xca\x37\x50\xf0\xdf\xe4\xb8\x51\xe4\xca\x09\xcc\x39\x99\x9c\x2b\x06\x1f\x14\x20\x34\xdd\x7e\x10\x1f\xd1\x28\x48\x6a\xea\x65\x9b\xb3\x34\x34\x5b\x9a\xcc\x9e\xaf\x78\x5c\x7a\xb2\xa1\xe3\x34\x69\x32\x1b\x05\x1a\x84\xb5\xd8\xcd\x59\x8a\x32\x7b\x7e\x87\xb4\x6b\x9c\x72\xc5\x36\xf9\xa6\xd2\x2d\x46\xbe\x16\x3b\x6c\xe9\xe1\x36\x9b\x1d\x27\x03\x0f\xa4\x8e\xc9\x14\x18\xef\x35\x19\x0e\x81\xaa\x76\xb1\xc9\xb6\x4c\x09\xbe\x9d\xab\x0b\x43\x17\x5b\x29\x3a\x11\x45\xad\x52\xfa\x90\xdc\x7a\x43\xc4\x56\xba\xd0\x1a\xda\x78\x2b\x0b\x70\xd3\x6a\x27\x38\xd8\xa8\xa0\x35\xe6\xfc\x6e\x4e\x07\x75\x08\x24\x41\xc3\x11\x2f\xb6\x2d\x29\xb8\x39\xb4\xa4\xb6\xec\xab\x9a\xd4\x3f\x80\xba\x0a\x29\x5f\xf8\xae\xc2\xd6\x59\xf1\x85\xb5\xff\xd4\xdd\x9e\x48\x10\xa3\xf1\xd6\xd7\x4d\x2b\x26\xba\xde\x8d\x30\xa9\x7e\x1f\xb5\x5f\x1e\x75\xc5\x61\x4d\x0d\xd2\xd4\x72\x25\x47\x9d\x88\xdb\x3e\x68\xe8\x52\x8c\x3a\x71\xb4\x7b\x5c\x1f\xfe\x8f\x3a\xee\x74\xfb\xa8\xed\xf4\x02\x43\x3f\xde\x27\x29\xfb\x54\x9c\xd6\xa2\x25\xab\x79\xb7\x0d\xd7\xed\x33\x6a\x14\xf3\x4d\x74\x66\xd0\x37\x3c\xdb\x16\x06\xf7\x9a\x6c\x0b\x9f\x1b\xf3\xb9\xf8\xb6\xaa\x2c\xac\x35\xab\x69\x23\x51\x8e\xe3\x9a\x50\xf7\x89\x0e\x5a\x45\x3d\x58\xeb\xb3\x5a\xb6\x6f\xa8\xde\xba\x4a\x6e\x62\x9c\xc6\x4e\x2f\xce\x7d\x36\x40\xbf\x97\x4c\xfb\x54\x5e\xdf\x9b\x51\xfb\x9b\xd8\x3e\x62\xe0\xad\xad\x76\xa1\xd3\xaa\xa8\xf7\x3c\xe5\x0b\x1f\xc4\x02\x04\xa8\xc7\xd5\x09\x90\x23\x63\x52\xd7\xb5\x14\x2c\x05\x05\xb9\xa0\xe9\xac\xee\x06\x3b\x6b\xd7\x9e\x9a\x09\x17\x90\xe3\x76\xc9\xb2\x66\xe4\xa8\x33\x50\xdd\xe1\xdd\x46\x96\x3b\x41\xe5\xee\x88\x26\x10\x55\x98\x9c\xd3\xae\x47\x7a\xd8\xb7\x60\xd4\xcb\x19\xb7\x27\xc1\xf1\xba\xfc\x56\x87\xa6\xf5\xa9\x39\x2b\x20\x84\xea\x73\x96\xdc\x91\x33\xae\xf8\x33\x72\xc5\x1b\x35\x96\xdb\x5f\xd9\xc0\x7a\x3a\x89\x03\xd9\xa6\xbe\xce\xc3\x0c\xa1\x8b\x5d\xe1\x27\x6e\xec\x5f\x15\xe8\xd9\x0c\x9d\xbc\x7f\x30\x60\x3d\x44\xf5\xa9\x57\xd3\x2f\xa6\x73\xd7\xb0\xd9\x66\x3e\x36\x1b\xe8\x79\xc5\x98\x9b\x52\x7c\x59\xce\xc6\x11\x5f\x3d\xaf\xc5\x7e\x3f\xdf\xce\xe6\xe6\x8d\xb7\xd4\x51\x99\x4e\x59\x9f\x5d\x72\xd9\xdd\x3b\x1a\xd3\x93\xaf\xce\xc4\xaa\xa1\x29\xa1\x96\x3f\xd7\x94\xdd\xc4\x20\x13\x28\x6f\x90\x32\x50\x9f\xae\x19\x92\xe2\x4c\x5b\x4f\x0a\x96\xa7\x49\x44\x05\xc4\x41\xde\x2b\xca\xd3\xb7\x49\x51\xc5\x7a\x56\x17\xe4\x92\x55\x71\xfd\x5d\x61\x96\x9d\x60\x24\xa4\x0d\x94\xa4\x4f\xa4\x66\x68\xd8\x6f\xc8\x49\xac\x1d\x8f\x4c\x2c\x13\xe4\x2c\x2d\x6e\x1a\xa1\x6c\x39\xaf\xe2\x0d\xfd\xf1\x96\x5f\x3d\x06\x51\xeb\xa0\xc7\xd7\x55\x40\xa0\xa3\xa0\xad\x87\x09\x3a\xd1\xb6\x6e\x73\x1b\x6a\x7b\x84\xa1\xb6\x5b\x6a\xde\x50\xb0\xa1\x5f\xb9\xe5\xb4\x36\x36\xe1\x60\xf6\x66\x4e\xb0\xba\x43\xca\xc0\x4d\xad\x28\xb3\x50\x70\xe2\x5f\x35\xb4\x11\xba\x63\x7a\x00\x9e\xb2\x06\x3e\x61\x84\xb9\x3b\x54\xdb\x36\x3b\x06\xd3\x07\x33\x6a\x38\xf5\xfa\xc7\xd4\xda\x78\x07\x49\x1e\x1c\x4e\x19\xba\x9d\x5b\xa1\x95\x0f\x89\x37\x6c\x24\x8b\xed\x15\x7a\x68\x0d\x9c\xbe\xe8\x43\xaf\xfb\xdd\xa8\x1f\x39\x23\xf5\x88\x9b\xaa\xc1\x03\x9d\xdf\xb6\xd4\x53\xda\xe3\x08\x7d\x32\xdd\x0b\x28\xb9\xba\x73\x01\xd9\x5c\x6b\xbc\xbf\x9c\x7e\xba\xb8\xbe\xfc\xf4\xe1\xc3\xbb\xcb\x90\x69\x60\x5b\x4b\xb7\x93\x2b\xd9\x8d\xb7\xd2\xf2\x63\xea\x5d\x4b\x51\xa0\x56\x71\xc9\xa2\x9b\x51\x3d\x2d\x6e\xd5\x6c\xd4\x70\x6e\xfd\xcf\xa6\x57\xed\x09\x85\xa2\x13\x0a\x5f\x89\x69\xdc\x85\x9b\x6a\xb2\x8e\xf5\x54\x1f\xc8\x87\x28\xda\x3d\xe1\x31\x39\x43\xef\xff\x84\x67\xe4\x6d\x19\x2f\x18\x7a\x2a\x56\xf7\x0f\x04\x3f\x74\x07\xfd\x4e\x58\x5f\xb6\x93\x52\x72\x11\x51\xfd\x3b\xa4\x1f\xa8\x6f\x11\x45\x08\x87\x67\x9c\xf0\xb8\x9a\x0a\x67\xfa\xfd\x99\x47\x4f\x36\x8c\x47\xe2\x02\xf7\x0e\xff\x37\x42\x88\x89\x59\x58\xbf\x1e\xbf\x3a\x1a\xbf\x1c\x15\x48\xad\x5f\xed\x1d\x13\x6d\xc5\xd5\xae\x10\xc7\xff\x20\x22\x4f\x13\xa8\xd6\x45\xa6\x7b\x87\xd3\x3d\xe2\xfa\x31\x10\x2c\x24\xa1\x93\x29\x5d\x6b\xf6\xb1\x72\xf3\xd4\x3f\xe8\x69\x7a\x8b\x0c\x3a\x85\x63\x2d\x23\xcc\xa9\x71\x00\x22\x89\xb0\x75\x26\x4d\x5a\x33\x60\xa7\x59\x3a\x1f\x41\x66\xc1\xd8\xcc\xeb\x3a\xd0\x54\x59\x94\xcd\x40\xdb\xb8\xdf\x22\x1a\x59\x6f\xa2\xd0\x61\xdb\x7e\xdf\x60\xa6\x58\xb5\x4c\x6d\xed\x45\x7e\x54\xaa\x6f\xbf\xe8\xb7\xf5\x8b\x89\x55\xa9\xac\xcf\xdf\x90\x53\xbb\x9b\x80\xdb\x69\xdd\x9f\x53\x75\x9f\x25\x45\xec\xef\xfe\xf1\xfa\xb3\x09\x56\x57\x17\xc7\x64\x16\xc0\x4a\x5c\x73\x0a\x59\x3c\x32\xe3\xb9\x85\x6c\xd8\x37\xe4\xed\xc6\xbc\xac\x87\x30\x40\x22\xdc\x9c\xb6\x2c\x46\xbd\x03\xab\x79\x07\x49\xeb\xbb\x84\x85\x42\xb5\xff\x91\xae\x2a\x65\x62\x29\xf4\x04\xff\x9d\x97\x28\x07\xa1\x23\x36\x6b\xa6\xcc\x9d\x6d\x48\x5e\xf0\x75\x12\x63\x16\x86\x8c\x67\xa3\x7f\xb1\x42\x9b\xd4\xc7\x15\x27\xad\x16\x67\x18\xe1\x64\x4e\x32\x86\x5f\xbd\xd0\x8f\xbe\xf1\xee\xd2\x9e\x37\x1f\xaf\x3f\x6f\x79\xdc\x34\x58\x68\xb7\xc7\xcb\x37\x6f\x5e\x6c\x79\x33\x84\x62\x2f\x4d\xbe\xc2\x50\x08\x26\x74\x03\x2e\x08\xc3\x32\xbe\x31\xd5\x10\x4d\x6d\x7d\x1d\xc2\x69\x4b\x97\x97\x92\xaf\x28\xf0\x30\xe9\x86\xe4\x5c\x97\xd3\xd0\xf0\x0b\xb0\x55\x60\x30\x16\x22\x59\x64\x5f\x92\x7c\x7d\x34\xdd\xab\x8c\xdd\x0a\x3c\xd6\x1d\xa6\x99\x63\x51\x90\x39\x2f\xd1\x33\x78\x3b\x0c\xf3\x98\xfc\xc7\x08\x09\xcb\xff\x34\xf4\x65\xba\x97\x41\x41\x74\xed\xd7\xab\x44\xa4\x91\xee\xe4\x94\x7a\x9e\xee\x45\x99\xb9\x58\xd8\xf6\xc5\xf8\xf5\xf8\x65\xad\x85\xce\xce\xa4\x7e\xfe\xb5\x7a\xca\xfe\xa7\xfb\xaa\x4d\xf7\xc0\xf3\x18\x06\xd0\xea\xeb\x7a\x39\xe9\xe9\x5e\xca\x17\x5f\x52\xb6\x66\x29\xb6\x02\x9f\x03\x5f\x9b\x79\x92\xb2\x2f\x39\x95\x4b\x6c\xe7\x51\xed\xa9\xff\x8d\x53\xbe\xd8\xea\x6e\xfd\xe2\xbf\x54\xab\x71\x9d\xea\x1b\xcd\xd5\x99\x57\x30\xfa\xf2\xc5\x17\x79\xfa\xe5\xcb\x56\xb7\x95\x2c\x55\x8f\x2f\x5f\x74\xdc\xe7\x97\x2f\x8d\x06\x98\xd1\xe1\x58\x41\xa8\xb7\x47\x93\x0f\x84\x26\x35\xc4\x76\xcb\x0a\x7f\xde\xb8\xf8\xd3\xda\xb2\x86\x69\x2d\xde\x47\x2d\x2b\x09\x38\x0d\xfd\xaf\xc6\xfe\xf1\xdd\xd6\x10\x08\x0f\x7d\xf3\x5d\xc3\x2d\xbb\x39\x8e\x7b\x74\xde\xb1\x74\xad\x08\x45\xed\x9d\x23\xc4\x30\xe9\x2f\xc6\x99\x48\x9d\x60\x6d\x96\xea\x0f\x77\xc2\x20\x3a\xe7\xbc\x90\x2b\x9a\x6f\xa1\x81\xc8\xa8\x54\x2d\x14\x40\x1b\x3f\x45\x34\xa7\xb3\x24\xc5\x0c\x87\xb0\x74\x18\xe5\x23\x56\x6a\x11\xa6\xd7\xae\x2b\x99\xd1\x2c\xbe\x4d\x62\x75\x33\xba\x27\x74\x1a\x6f\xcf\x66\xfe\xa9\x83\x1c\x7b\x28\x08\x6f\xe2\x78\x14\x15\xb1\xd1\x08\x3e\x69\xc1\xd3\xad\x1c\xa8\x4f\x50\xf6\xf4\xed\x0f\x93\xad\x24\x9d\x6e\xf1\xd3\xe6\xef\xdb\x25\x50\x03\x99\x5a\xab\x42\xa8\xcd\x06\xd3\xfe\xe5\x50\x35\xdb\x36\x7d\x9a\x5a\xa8\xcd\xbd\xd5\x0b\x29\xd6\x9f\x1d\x2c\x25\xbe\x81\x80\x8f\x82\x97\xb2\xae\x8d\x19\x6a\xa1\x0e\xb5\x50\xdd\x23\x18\x6a\xa1\x7e\xb5\x5a\xa8\xcd\x4b\xbc\x5d\x11\xb5\x5e\xc9\x5b\x5d\xe0\xda\xd5\xee\x5f\xfa\x94\x8a\x8b\x72\x35\x63\x85\xc7\x0d\xb0\x71\xa1\xaf\xb0\xa1\x29\xb1\x6c\x34\x7f\x27\x57\x24\xc3\x1f\x8c\x6d\x9d\x6a\x86\xfb\xd7\x33\x6c\xe2\x8d\x11\x39\x7a\xf3\xed\xcb\x57\xbf\xed\x6f\xff\x84\xd9\xc6\x8f\xd5\xed\x7c\xfd\x6a\xfb\x67\x04\xa9\xba\xba\x0b\xb6\xe5\xc4\x32\x4b\xb2\xf8\x23\x8f\x9b\xaa\x9f\x6d\xf8\xea\x76\x24\xc9\xe2\x24\x02\x65\xc7\xed\x92\x49\x6d\xcb\x48\xa1\xc8\x1f\x50\x47\x0d\xd8\x0c\xa5\x22\x6f\x71\x7b\xad\x44\xd7\xd1\x72\x4c\x90\x83\x0b\x9e\xb1\x67\x98\x4c\x3c\xdd\xb8\x39\xd3\xf7\xc1\xf6\xc4\xb3\x04\x2d\xd2\xa6\x8f\x6f\xd4\x0b\x05\x41\x75\xec\xe3\xb7\x3f\x4c\xc6\xe7\x93\xf5\x2f\x27\xd8\x58\x0d\x1f\xb3\xf3\xc9\xb3\x31\xd1\xe0\x25\x33\xb6\xa4\xeb\x84\x97\x78\x34\x66\xfd\xbe\x51\x3d\x5b\xda\x5a\xbf\xa7\x70\x6d\x5b\x79\x5a\x73\xd9\x7c\xb8\xd5\x80\xfa\x69\xd5\x14\x49\x92\x29\xa7\x8b\x4b\xd2\x97\xd6\xa0\x36\x66\xbc\x64\xdb\x9e\x4a\xea\x43\x8b\x59\x22\x0b\x5a\x6c\xf0\xf5\xc7\x48\x28\x8a\x4e\xd5\x18\x62\xbd\x53\xfd\x5d\xef\x32\x37\xd5\x8d\x13\x92\x66\x31\x2d\x62\x75\xa8\x29\x2d\x16\xac\xb9\x5c\xdf\xa0\x04\xb6\xa0\x88\x9b\x27\xae\x16\x3f\x2d\xf7\x12\x3f\xc0\x11\xf8\x7f\x6a\x96\x4f\xa6\x2b\x46\x16\xc9\x9a\x65\xa8\x8f\xa9\x2d\xcf\x3b\x39\xe9\x2c\x3c\x4c\xac\xd6\xb9\xd7\x12\x7e\x82\xa7\x05\x12\x90\xcf\x20\x45\x13\x5e\x65\x25\xa8\xd0\xe3\x2c\x9b\xee\x29\xf0\xe9\x3f\x8e\x57\xab\xe9\x5e\x70\x59\x04\x1c\xf0\x2c\xd4\xab\xdd\x94\x82\x39\xc3\xe1\xf8\x87\xba\x68\x9d\xfa\x7e\xba\xa7\x80\x1e\x1e\x76\xba\x07\x1d\x69\xc1\xc8\xcb\x23\x32\x4b\xa4\xa6\x5d\x63\x98\xb0\x79\xb4\xce\x6c\xb0\xde\xf0\xb8\xbe\x95\x1c\xda\xd9\xb2\x58\x49\x96\x2b\x3d\xf1\xeb\x57\xb5\x89\x7f\x56\x5d\xb6\x84\x3b\x77\xc9\xb0\x2d\x4c\x0a\x71\x72\x45\x90\x0a\x87\x06\xcf\x59\x31\x3a\xb9\x32\x21\xc4\x89\x27\x63\x85\xf9\xe4\x54\x2a\xf6\xe7\x98\xfc\x8f\x83\xe9\x34\xfe\xaf\xcf\x8e\xf1\x3f\xff\xfb\x7f\xd4\xff\x36\x5f\xdf\x17\x83\x42\x4f\xa0\xfb\xab\xa7\xb4\x35\x21\xc9\x22\xe3\x05\x8b\xcf\xad\x9a\xac\x8b\xbc\x9c\x37\x3b\x38\xd4\x1d\x33\x86\xa0\xba\xc8\x51\xbc\xc9\x25\xf5\x2c\x8a\x54\xe9\xe7\x67\x8c\xb0\x3b\x28\x2d\xa7\x1d\x83\xd0\xc4\xb0\x30\x51\xb3\xf7\xa0\x35\xf7\xac\xf5\x4d\x34\x59\x9f\xf0\xc2\xf7\xa0\xd6\x20\xf1\xc1\xb6\x34\x8f\x35\x04\x63\x21\x72\x2a\x62\x9b\x17\x5c\xf2\x88\xa7\x86\x83\xc6\xa1\xbd\xa8\xa2\x1f\x19\x80\xc6\xcb\xbf\x7d\xbf\xdd\x64\x45\xef\x92\x55\xb9\x3a\x26\x47\xdf\x7e\xfb\xfa\x5b\xcf\xef\x49\x86\xbf\xbf\xdc\xf1\x31\x4f\xf9\xe2\x8a\xad\x59\x91\xc8\xcd\x55\x54\x30\xd6\x94\x37\xb6\xb6\xbd\xff\xa1\xd9\xc3\x6c\x3f\xe5\x0b\x22\xf4\x2f\x84\xce\xf8\xda\x98\xf7\x52\xbe\xf0\x3e\xbf\xea\x2a\x09\x96\xd9\xa2\x80\x42\xc6\xbc\x94\x0e\x4b\x43\xce\x2f\xde\x7f\xf2\xb1\x2f\x6d\xc7\xab\x78\x80\x8f\x4c\x2c\x3f\xd2\xbb\x4b\x06\xd1\xab\xd7\x49\x80\xbe\xd7\x4b\xcf\x27\x2b\x56\x99\x59\x20\x27\x36\x9f\xcb\x5b\x9d\xfc\x59\x8d\x03\x5f\x82\xad\x5a\xf2\xd1\x8a\x89\x25\xc9\x19\x53\x4b\x10\x63\xa2\x28\x8c\x97\x1b\x20\x46\x7b\xc9\xe2\x43\x9b\x98\xd5\x6a\xf2\x63\x93\x08\x63\x51\xd0\x88\xcd\xcb\xd4\xce\xa5\x8d\x70\xad\x23\x2b\xfe\xbd\x36\x3a\x23\x6f\xcf\x2f\xcf\x2c\xd7\xc8\xe7\xe4\xe5\xab\x17\xc2\xd8\x10\xb4\x3b\x1e\x2a\xae\x75\xa1\x96\xed\x0f\xf0\x53\x33\x06\x61\x5f\x8d\x00\xfa\x2d\xb1\xd7\xb8\xf1\x60\xd6\x15\x54\x7e\x7b\x8f\x9a\x60\xde\x9f\x0b\x7d\x36\xc1\xd8\xf7\xfe\xc7\x3b\xa1\x42\xdc\xf2\xc2\x17\x59\xd3\x38\xd8\x4f\x3a\x57\x09\x5e\x4a\xdd\x0d\xce\x72\x5e\x6a\xc7\x8c\xed\x03\xf5\x6f\xa2\x0e\xbf\x7b\x81\x2a\xcc\xc4\x18\xf8\xed\x04\xaa\x4e\xe6\x46\xb0\xa8\x60\xb2\x25\x8e\x7c\x0b\x5e\xe8\xeb\xa3\x58\xc7\x1b\xb6\x01\xa5\x80\x1e\xc4\xf8\x7f\x82\x97\x4b\xce\xe3\x7d\x51\xd9\x87\xc2\x2f\x60\xd7\x02\x89\x0e\x52\x0f\xff\xda\xbc\xa8\x4b\x66\x56\x06\x54\x03\xd7\x26\xb9\x36\x19\x82\x64\x3c\x26\xe4\x23\xb2\x48\x6d\xc3\x12\x42\x15\xeb\x95\xc4\x66\x90\x1b\xd6\x8c\x0a\xa8\x7f\xba\x39\x39\xd2\xc5\x4f\x6e\x6d\x67\xdf\xcd\xb5\x59\xb0\x39\x2b\x58\x26\xbd\xd2\x77\x5b\x2e\x6d\xbe\x66\xc5\x3a\x61\xb7\xcf\x75\x45\xbf\xd1\x6d\x22\x97\x23\xe4\x08\xc4\x73\x38\xa6\xe7\xdf\xc0\x7f\xda\x16\x76\xfd\xe9\xec\xd3\x31\x39\x89\x63\xc2\x41\x4e\x2b\x05\xd0\x24\xc0\x78\x31\x76\xb4\x52\x87\xa0\x14\x39\x24\x65\x12\xff\x1f\x1e\xfa\xbc\x2b\xc4\x6c\x3a\xa1\xde\x50\xbb\x02\xb2\xb7\xa9\x24\xca\x25\x23\x57\x78\x88\xbc\x00\x79\x40\xa1\xc8\xaa\x0f\x0e\xa0\xe6\xac\x85\x9f\x35\xbb\x98\x71\x9e\xb2\x10\xd9\x24\xd6\xf8\xd7\xb2\x09\xf0\x77\x6a\x67\xf2\x42\x4c\x5c\xfb\xef\xea\x4a\x5e\x73\x43\x33\x30\x1f\x8a\x6f\x21\x0d\xcc\xf3\xf5\x52\xd4\xac\x92\xd4\x2d\x89\x34\x55\xed\x7d\x2b\x53\x84\x75\x55\xa7\x55\xee\x2b\x2e\x8b\x92\x85\x5f\xf1\x00\x54\xf3\x82\xcd\x93\xbb\x13\xb7\x98\x69\x27\x73\x3a\xf1\xf4\xa9\xe4\x4b\x70\xbe\x86\x16\xf5\x1a\xa9\xbe\x1d\xb5\xe9\x79\x48\x7f\x29\xd7\xb3\xa0\xea\xed\x17\xf5\x65\x38\x94\xd2\x8f\x21\x26\x11\x89\x7d\xf1\xa1\x0c\xeb\xfd\x44\xde\x28\x89\x7d\xca\x28\xcf\x16\xc0\xf1\x01\x6c\xea\xc0\xcb\x55\x23\x1b\xb6\x76\xc6\xaa\x7d\xc4\x0f\x90\x81\xdb\x75\x1c\xbe\x95\x39\x9a\x0e\x1d\x1c\x60\x74\x1d\x2c\x01\xe4\xad\x84\xcc\x0e\xca\xa7\x73\xe0\x1b\x52\xa0\x1e\xba\xe9\x9e\x22\x31\x62\xec\xcc\x82\xb2\x75\x2f\xa5\x04\x41\x75\x7a\xa7\x6c\xde\x22\x82\xb7\x0b\xab\xed\xb2\x79\xbb\x08\x1e\x1e\xb9\x4b\x36\xef\x14\xc1\xdb\x16\xdd\x21\x9b\x77\x4a\xe0\xbd\xc6\xee\x2f\x9a\x87\xaf\x30\x7e\xfa\xbc\x5c\x2d\x82\x24\x79\x88\x58\xae\xfd\x66\xb4\x11\xeb\x7c\xd2\x49\xf9\xae\x9a\x1d\x00\x18\x90\xbd\x5b\xdd\x5f\xac\x08\x88\x36\x03\xbc\xc7\x7a\x06\x2f\xed\xd3\xde\x65\x66\x14\x1d\xd0\x03\x06\x82\xb9\x2b\x6f\x68\xbf\x23\xf0\xe5\xb0\x24\x40\x4d\xea\x47\x5e\x5c\x84\x2d\x60\x05\x8e\xcb\xd9\xa6\x36\x9d\xce\xe0\x23\x97\x6c\x75\x7f\xa2\xdb\x84\x05\x56\xef\xab\x4c\x2a\x4e\x30\x82\x12\xf5\x14\x1d\x35\x4d\xfd\xe7\x5c\x81\xf0\x09\x88\xed\x93\xa9\x76\xf4\x09\xbf\xbb\x43\xfb\x5b\x7f\x24\x72\x7a\xf8\xb1\x88\x17\x4e\x3a\x15\xdf\x9a\xf5\x40\xc4\x8c\xa4\xce\x76\xec\x66\x80\x6c\x36\xb0\x89\xa4\xb4\x44\xe5\xd5\x16\xd8\x47\x06\x4b\x9c\xb0\x0d\xac\x4e\xa3\x0c\xcf\x0c\x0f\x2d\x98\x5e\xe8\x83\x31\xa8\x5a\x5d\x27\x0a\xf9\x4f\xd7\xd9\xff\x9f\x1b\x89\x3e\x70\x1a\xbf\xa5\xa9\x92\x5f\x77\xa0\x46\x8d\x5e\x0f\x44\x26\x77\xb4\x20\x42\xe9\x9a\xdc\x6e\xdb\xf1\x79\xb6\x08\x19\x80\x9a\x78\xf7\x3b\x20\x59\x1d\x48\xf7\x44\xb4\x06\x6c\xfe\x94\xc8\xe6\xef\xb6\xfd\x2d\xd6\x61\x73\x63\xe2\x85\xe4\x05\x84\x2c\xe0\x57\x88\x03\xb0\x7c\x1a\x29\xe9\x98\xc5\x17\x5b\xde\x2b\x55\xea\x20\xe3\x8d\x62\xbe\x89\x78\x16\x27\x18\x59\x44\x7e\x05\xf7\x1e\x70\x88\x8b\x7f\x32\x6e\x24\xf0\xad\x76\xe0\xd9\xd9\xed\xe7\xf1\x3d\x7e\xb6\xa3\xbe\x2a\x17\xe8\xd1\x82\x65\x10\x53\x33\x2b\x93\x34\x66\x05\x4c\x60\xa6\x3f\x00\x5b\xfd\x33\xd8\xb3\x4e\x38\x7f\x9d\xac\x98\x90\x74\x95\x1f\x93\xac\x4c\xc1\x83\xd3\x3a\x14\xe9\x72\xee\x4f\xe3\x49\xf4\x1e\x06\xc7\x2f\x6b\x2e\x44\xf8\x83\xd7\x77\xa8\x56\x5f\xbe\xe6\x34\x34\xb7\xa3\x3d\x95\x37\xd0\xe0\xb6\x33\xb8\xed\xb8\x47\x30\xb8\xed\x7c\x4d\xb7\x1d\x24\x0a\xdb\xfe\x3a\x90\xc2\x54\x61\x2a\x64\xfd\x43\x2a\x40\x8a\x32\x05\x1f\x9e\x26\x74\x8d\x4b\x0f\x0e\xd6\xdf\x97\x87\xdd\xe5\xbc\x90\x3f\xbd\xe9\x62\x82\xae\x97\x8c\xf0\x22\x66\x05\xaa\xd4\xd4\x35\x85\xf5\xd9\xf5\xeb\x95\xd1\x08\x10\x8d\x67\x7a\xe4\xc0\xab\xaa\x73\xda\x4b\x4e\x28\x58\x29\xee\xcf\x78\xd8\x05\x5c\x96\x29\xfb\xe9\x8d\x25\x41\x14\xc0\xe1\x40\x4d\x01\x57\x24\x22\xb4\x22\x52\x31\x27\xb0\xb1\x8a\xe9\x80\x33\xa0\x66\x28\x9d\x31\x13\xd5\x57\x89\x78\x80\xd6\x0a\x47\xba\x37\x63\xf2\x40\xbe\x46\x07\x21\x7d\x32\xa1\xb1\xf7\x1d\xa7\x55\x4f\x3c\xd2\x9b\xf4\xff\xa6\xd6\xef\xff\xa5\xb6\xb4\x47\x15\x01\x34\xbe\x1f\xdd\x0f\xdf\x8f\xfe\x68\xf8\x7e\xf4\x48\xf8\x7e\x34\xe0\x7b\xcf\x71\xfe\x64\xf8\x9e\xac\x9e\x8a\xbe\xe3\xc8\xed\xf8\x0e\xfc\xc1\x40\xe1\x07\x8c\xdf\xfa\xe5\xc9\x31\xfe\x09\x28\xfc\xef\x84\xf1\x03\x8d\xef\xdf\xfd\x2f\x88\xf1\x7f\x2e\x4d\xd3\xef\xae\x60\xb2\x1a\x20\x75\x45\x9f\x48\xff\x33\x61\x5e\xed\x8f\xfa\xda\xab\xfb\x81\xa5\x78\x34\x3f\xb9\x1e\xe7\xf7\x8a\x12\x1b\xf4\x42\x83\x5e\xc8\x3d\x82\x41\x2f\xf4\x35\xf5\x42\x8a\x5c\x6c\x6b\x85\x4c\xf6\x00\x27\x1c\xd3\x34\xb6\xa7\xf7\xf8\xa1\x5c\x8a\x59\xb2\x6e\x0c\xc6\xbd\x2f\xc0\xe4\x3c\x24\x1a\x4b\x6b\xc1\xef\xc1\xbb\x59\x9e\x49\x10\x9a\xe7\x69\x62\x6a\xd5\x25\x02\x3d\x65\x77\x65\xc8\xee\xed\x73\x7f\xc3\x58\xfe\xa9\x48\x16\x49\x46\xd3\x0b\x76\x27\x7f\xf4\xa4\xd7\xf7\xfa\xf4\x2a\x52\xa5\x3a\x03\x6c\xb9\x1e\x81\x64\xec\x4e\x2e\x79\xae\xfd\x74\x31\xa0\x00\x58\x4d\xdf\xa2\x5d\x1f\x74\x64\x16\x15\x5e\xa8\x6b\x8a\xa9\x3e\x6c\x62\x09\xc7\x6d\x0b\xbd\x4e\x53\xc8\x11\xa2\xba\xf8\xc6\x55\xa3\x08\xeb\x38\x57\xea\xe2\x7a\xd3\x3d\xb5\x38\xa2\x56\xa7\xd6\xfd\xf7\xe9\x1e\xf8\x05\x33\x1a\xab\x03\x71\x7e\x15\x2c\x9d\xff\x7d\xba\x77\xa0\xdd\x89\x9f\xf9\xa6\xd0\xde\xb8\x36\x39\xc6\x0c\xf2\xda\x18\x54\xbb\x50\x53\xf3\x4c\x67\x4d\x19\x47\xf3\x85\x37\x14\xa8\xd5\x07\x6f\xd5\xe5\x42\xbf\xa3\x03\xbd\x76\x66\x77\x7c\x48\xbc\x78\x74\x5f\x27\xf9\x86\x3f\xbc\x7f\xec\x0e\x17\xf9\x10\x84\xc2\xce\xe8\x7d\x6e\x9e\x2d\xfc\x68\xcb\x0e\x9a\x37\x44\xfb\xd0\xe8\x1a\xd3\xda\x9b\x3e\x14\x31\x93\x08\x22\x69\xb1\x60\xd2\x14\xbe\x4e\x04\x5e\x53\x72\x3e\xb7\x60\x03\x20\x30\x89\x4f\x73\xc6\x6b\xe9\x1b\x03\x83\xd6\x63\x08\x1a\x34\x40\xa3\xba\xa8\xb2\x18\x1a\xcc\xd3\x9e\x3b\xf7\x80\x99\x27\x9d\xa4\x17\x76\xa6\x9d\xf5\x7d\xc4\xf9\xc1\x41\x5e\x33\x32\x90\x5e\xd4\x42\x22\xc9\x16\x2d\x11\x13\x06\x44\x00\x1e\x7b\x49\x90\x4e\x98\x88\x3a\xb6\xca\xa5\xcf\x09\xbc\x75\x4b\xe5\xea\x04\xcd\xf3\x1f\x78\x44\x53\x13\xc4\xdb\x49\x94\x3f\x62\x54\x8f\x09\xed\xe5\x73\x82\xe9\x8f\x6d\xb4\xaf\xde\xaa\xf1\xc2\xba\x05\xd7\xc4\x10\x5e\x9f\x5c\x41\x82\x5f\x9d\xfb\x31\x62\xc9\x9a\x99\x52\xb8\x3a\xf2\x03\x73\x27\xe3\xd1\xa6\x9c\xe7\x8a\x4d\xd6\x6f\xb8\x97\x36\x66\x36\xbf\x91\xf1\x8f\x30\x05\x0c\xe9\x4c\xf0\xb4\x94\x2c\xdd\xe8\xf2\xec\x82\x6e\x25\xd4\x27\x0f\x7c\xd9\xf2\x70\x84\x47\xcf\xf8\x0e\xf3\xe4\x26\xd9\x42\x90\x05\xcb\x94\x24\x59\x5d\x1d\xdf\x96\x3b\xf8\x02\xd2\x2d\xd1\xf7\x88\xb7\x78\xb2\x68\x8b\x1e\xb1\x16\xed\x91\x16\x4f\x14\x67\xb1\x53\x94\x45\x1f\xbf\xcb\x8e\x08\x8b\xbf\x4c\x7c\x45\x1f\x58\xf5\x88\xad\x78\x9a\xc8\x8a\xce\xb8\x8a\x1e\x51\x15\x1d\x31\x15\x2d\xf1\x14\x7d\x74\x43\xfe\x5f\x15\xc5\x38\x9f\xf4\x79\xd6\xab\xec\x02\x2e\x83\x4f\xe6\x5c\xd3\xea\xd9\x06\x24\x70\x43\x9f\x72\x5e\xf8\x03\x61\x91\xfc\x4b\x8e\xdd\x15\x66\xc1\x8b\x0e\xf1\xa4\x99\xcd\x07\x01\x71\xe7\x87\xc6\xa7\xbc\xf2\xbe\x9f\xee\xfd\x3a\x2d\x5f\xbc\x78\x1d\x9d\x4f\xd6\x47\xf0\x2f\xf6\xdb\x31\xcc\xe5\x8d\xa5\x06\x17\x74\xdb\xe1\x0d\x76\x38\xc6\x2f\xa0\x17\x7c\x81\xbe\xde\xa0\xf6\x87\xb5\xd4\x36\xe1\x2c\xca\x70\x1b\xa1\xf7\xc3\xbe\xcc\x00\xac\x2c\x26\x36\xc3\xc5\x8c\xa5\x5c\xd1\x65\x60\xbc\xb5\x56\x0b\x68\x9d\xda\xbf\x13\x5d\xeb\x27\xb2\x40\x1e\x9b\x41\x76\x9a\x7d\xb9\x65\x9a\xe1\xa6\x12\x97\xab\x21\xbb\xe3\xab\xae\xba\xdc\x9b\x51\x51\x4f\xad\xb4\xfc\x4a\xed\x64\x91\x57\x0d\xbd\x40\x2e\x7b\x32\x01\x4c\xac\x83\x0d\x69\x45\x83\x5d\xc1\x50\xfe\x7a\xb1\xfb\xfa\x46\x14\xbf\x39\x63\xf2\x96\xb1\x4c\x07\xeb\x2a\x46\x03\xe0\x8d\x35\xfe\xb4\x38\xe3\xae\x1b\x4a\xf2\x58\x2e\xdc\x7f\xc2\xba\x6c\xac\x9e\x21\x99\x93\x19\x97\x4b\xc2\xb2\x58\x20\x67\xa6\x38\xac\xb7\x3f\x4c\x20\xc9\x86\x6a\x6a\x12\x6c\xb4\xb3\xe9\xa0\x6b\xcf\x50\x05\xdf\x7b\xec\xa3\xad\xb1\xc7\x44\x5d\x53\xbf\xbe\x1a\xb6\x59\xa5\x55\x89\xf8\x8a\x39\x5a\x18\x07\x0c\xfb\xa2\x36\x91\x39\x08\xef\xba\xf5\xe1\x2f\x52\x3e\xa3\x69\x55\x1c\x70\x8e\xb8\x58\x5d\x97\x1d\x31\xb1\x50\x27\x4b\x67\x29\x7b\xeb\x7b\xbc\x6b\x88\xa8\xde\x16\x9a\x11\x76\x47\x23\x79\x48\x92\x31\x1b\x93\xe7\xaf\x5f\x1d\x82\x63\x6c\x12\x21\x3b\x48\x24\xbf\xa5\x45\x6c\xaf\xa5\x9f\xa5\x04\x6d\x01\xa0\x2e\x32\x89\xba\xef\x3c\xc5\x1c\x6c\x63\x72\x59\xad\xaa\xae\x70\x69\xc9\xb8\xa2\xc9\xe4\x82\x4a\x76\x4b\x37\x26\xa6\x48\xad\xc3\x96\xf7\xa0\xd1\x12\x48\xe7\x8e\x30\x42\x7e\x4d\xa3\x40\xe7\x75\xd5\x18\x52\xc5\xb9\x29\x8c\x5b\xf2\xdb\xad\x34\xab\xa8\xdb\x6b\xd9\x51\x37\x9f\xb9\xcd\x54\xda\x80\xff\x70\x08\xd1\x74\xef\xb3\x60\x98\x84\x66\xba\x47\x56\x8c\x66\xa2\xbe\x36\xcb\x1a\x2a\x02\xa1\x75\x12\xb5\xc5\x8e\xd5\x20\x17\x9e\x72\x9f\xf8\xc1\x21\x15\x3e\xb6\x6e\x79\xc7\x53\x90\x32\xbd\xd2\x85\x1b\x3b\x1f\xd0\xeb\x0f\xa6\xa9\x0e\x1a\xd4\x42\x3e\xc0\x2f\x05\x0d\xf2\xf5\xf5\x07\x5b\x08\x92\xac\x58\xb4\xa4\x59\x22\x56\xbe\xed\x1c\xfc\x70\x7d\xf5\xf1\x59\x15\xa4\x26\x91\xa9\x5e\x28\xa4\x94\x44\xe4\x9c\xcf\x59\x4c\x72\x0a\xb5\x56\xd4\xc9\x40\xe6\x0b\xc8\x64\xa3\x45\x25\x2f\xe5\xd4\xed\xe1\x49\xa2\x44\xac\x28\x26\x63\x5e\xc2\x15\xcb\x91\x64\xaa\x45\x62\x02\x18\x60\x0a\x30\xa3\xab\x51\x7f\x87\xc4\x78\x75\x7a\x56\xea\x5b\xf2\x5c\x90\x03\x16\x2f\x98\x78\x56\xa3\xd2\x68\x71\xd9\x49\x6e\xfa\x73\x19\xb7\xfe\x38\x6e\xd4\xda\xca\x95\xf2\xe8\x86\xce\xb1\x0d\x7b\x12\x63\x97\x9a\xe1\x04\x67\xd0\xac\xab\x63\xf2\x72\x7f\xf4\x18\xbe\xea\xab\x9b\x36\xed\x5f\xce\xcf\x30\xf4\x60\x05\x1b\xac\x60\x83\x15\xec\xaf\x65\x05\x73\x29\x48\x4f\x5b\xd8\x36\x45\xaa\x3e\xbb\x1b\xc8\x02\xfe\x28\x6d\x5c\x43\xcc\x52\x26\xbb\xf3\x15\x9c\x61\xb3\x5a\xc6\x29\x2a\x11\x73\xb4\x8f\x8e\xde\x85\xc2\xdb\x19\xc3\x14\x52\xd0\xc7\xab\x6f\x72\xb2\xb9\xb8\x78\x3e\xc7\x20\xef\x9c\xca\x04\x32\x02\x6f\xf0\xf9\xe7\x69\x0c\x3c\x5c\xca\xa8\x68\xc9\x6a\xb5\x4a\x84\xa4\x37\x2c\x4b\x37\x44\x16\xcc\x2c\x0f\x67\xa1\xd5\x2c\x8f\x63\x68\x68\x65\x88\x65\x55\xdb\xaa\x5f\x9f\x80\xb2\xc5\xe7\xa2\x33\x32\x80\x6d\x7e\xed\xab\xbb\x02\x2b\x19\xb8\x94\x3f\x4d\xb0\x17\x6e\x0b\x54\x00\x00\xdd\x27\xe1\x83\xd0\xf0\xa5\x24\x9c\x2b\xa7\xea\x4b\xc5\x0a\x35\x7f\xdf\xe6\x86\xb6\x97\xd9\x64\x88\x9a\x2d\x06\x9e\x48\xaf\x72\xe0\x89\x06\x9e\xe8\xaf\xc3\x13\x35\x49\x49\x3f\xb6\xc8\x4f\xa0\xaa\xcf\x3d\x38\xa3\x94\x0a\xd1\x23\x83\x2f\x36\x23\x31\x8b\x52\x6a\xfc\x4d\x00\x88\xea\xe2\xaa\x73\x2a\x56\xb6\x0a\xcb\x8a\x67\x49\xc0\xb0\x6f\x9d\x93\x1d\xe5\x3a\x5e\x4b\xb0\x25\x63\xec\x3d\x2a\x7e\x93\xb5\x09\x9d\x57\x18\x19\x76\xd9\xa6\x33\x5e\x4a\x12\xb1\x42\x81\x4e\x61\x1b\xe4\x8a\xaa\xaf\xea\xeb\xf8\x0c\xdd\xdb\xf3\x22\xd1\x00\xf5\x3a\x5e\xcc\xfd\x90\x84\x46\x3a\xb5\xc0\x6e\x4c\x18\xde\xb8\x49\xad\x5e\x59\xc7\xaa\x3f\x6f\x77\xb1\x09\x46\xe1\x4b\x42\xa5\xd6\x73\x75\xa1\xa8\xfa\x54\x76\x22\x7b\xfb\xb1\x24\x26\x79\xa1\xfe\x4f\x17\x6d\xda\x1a\x8a\x14\x6c\x5e\x30\xb1\xf4\x32\xce\xc6\x6f\x01\x47\x34\xcb\x4a\x04\x24\x48\x88\xe9\xe3\x3a\x02\x04\x6f\x7d\xc5\xf9\x05\x20\xb9\x75\xef\x71\x67\xee\x03\xca\x67\xc8\x61\x22\x8f\xaa\x30\xb9\xd9\x69\x6b\x2f\x17\x1c\xad\xd9\x78\x05\x33\xc6\x62\x86\xde\x06\xfa\x02\x89\x44\x61\x52\x02\xea\x7e\x0d\x72\x32\xdb\xe8\x71\x77\xf0\x33\x5c\xb0\xac\x33\x07\xed\x89\x6a\x44\x96\x3c\x8d\x05\x76\x30\x8b\x70\xf2\xa1\xef\xee\xc2\x30\x4b\x8a\xd8\x1b\xff\xb4\x35\xff\xdb\xf3\xcb\xb3\x9f\xde\xb8\xf9\x2a\x2a\xfe\xa0\x0e\xdb\x12\xc8\x84\x1a\xf9\xcd\xfd\x9d\x17\x52\x2a\xe4\x5b\xce\xc3\x09\x5d\x3d\x4b\xfc\xe0\xf4\xd1\x90\xb2\xa9\xfd\xc1\xe3\xc6\xf9\x3d\x3c\x24\xc1\x67\x18\x5d\xe9\x64\x4a\x78\x29\xf3\xd2\x67\xc6\x31\x9f\x3e\x96\x79\x35\xf5\x25\xab\xa5\x9a\xdb\x75\x67\x9e\xee\xa1\x4d\x9a\xa6\xbf\xc3\x46\xc1\x72\x54\x9c\x9f\xf5\xdd\xd9\x25\xb4\x27\xe7\x67\xb6\xda\x01\xac\xe7\x61\x8b\x08\xc9\xc3\xde\x15\x40\x19\x33\x43\x12\x4c\xa4\xf8\x19\x65\x2b\xef\xfb\xb6\xcb\x32\xd6\x5e\x6e\x3f\xb8\x10\xc3\xf5\x3b\xcb\x88\x61\x19\x0f\x59\x45\x57\xa6\x49\x20\x00\xbe\x70\xb0\xad\xe5\x01\x01\x38\xda\x8d\x00\x1c\x0d\x04\xc0\xd9\xce\x40\x00\x3c\x3b\x1b\x08\xc0\xef\x49\x00\xda\x7e\x9d\x2d\x3a\x7d\xf3\xd5\x12\x11\x05\x81\x6f\x56\x7f\x06\x79\xe7\x8e\x3b\x8f\x26\xd2\x77\x42\xd2\x59\x9a\x88\x25\xeb\xc9\x96\xa8\xc3\x93\x5c\xd2\xd4\xb1\xb1\x82\x9f\x0a\xab\x46\x52\x3b\x21\x82\x09\xd4\xc7\xb5\x81\x29\xe0\x9e\xea\x5f\x5f\x2f\xaa\x19\x58\xdf\xd1\x13\xad\xef\x82\xcb\xc7\x03\x61\xc6\xb3\xd1\x57\x59\xe6\xc3\x20\xf9\x14\xcb\x04\x6b\x7c\x3f\xf0\x4d\xb0\xa9\xfb\x30\x9a\xe4\x00\x38\x4c\x3f\x46\x9d\x74\xe6\x29\x0d\x08\x3c\xe0\x6f\x52\x57\x71\xd8\x37\xd8\xae\x21\x4c\x41\xba\x57\xd5\x33\xb1\x7b\xd0\x97\x32\xb0\x83\x80\x47\xe5\xed\x92\x0b\x56\x29\xeb\xc9\x2d\x23\xd4\xef\x91\x56\x7d\xac\x22\xe3\x11\x32\xba\x83\x4c\xd7\x7f\x17\x57\x09\x46\x71\xd8\x27\xa4\x20\x05\xa3\x82\x67\xf0\x0e\xeb\x2a\xb6\x6d\xcf\x59\xef\x75\x75\x3c\x69\xcd\x75\xc1\x6a\xb4\x32\x01\xe8\x32\xde\x08\x1c\xe7\x11\xd6\x03\xad\x7a\x2f\xe7\x7a\x93\x7b\x8b\x83\x59\x97\xd1\x5a\x10\x50\xfb\x69\xaf\x13\x6a\x51\x76\x24\xf9\x08\x9e\x9e\x15\x13\xcb\x43\x05\x7d\xf5\x2b\xcb\x6c\x29\x67\xe3\xa0\xd7\x96\x0a\x99\x60\x9d\xf9\x91\x79\xc3\xe0\x46\x69\x95\xf9\x43\x01\xd5\xc5\x7f\x77\x26\x16\x46\x4a\xd4\x8b\x42\x22\x25\x3a\x6a\x50\xa2\xa3\x81\x12\x75\xec\x60\xa0\x44\xbb\xad\x6b\xa0\x44\xfa\xf3\x57\xa2\x44\x2d\xe1\x19\x23\x1f\xf3\xde\xaf\xd9\x51\xb8\x59\x93\x95\xed\xdd\xd2\x33\x66\xdb\xde\xd5\xed\x40\x45\x7c\xa7\x57\xca\x87\xaa\x29\x9a\x06\xa5\xb1\xab\x6f\xdb\x05\x41\x1f\x52\x40\x0b\x1f\xb4\x21\x56\x79\x4b\x13\xaf\x4d\x85\x70\x61\x2b\x0b\x1e\xe8\x97\xed\x04\xc1\xc0\xc0\xcb\xf7\xa7\xaf\x5f\xbf\xfe\x1e\xf4\xef\x58\x2a\x11\xc2\x37\x3f\x5f\x9f\xb6\x28\xe9\xd5\x1c\x23\xff\x22\xb3\x32\x4d\xe9\x2c\x65\xae\x4b\xc6\x36\x50\x03\x6e\xec\x10\x8b\xd8\x05\xcf\x4b\x4c\x0b\x84\x44\x53\x98\x2c\x41\x60\xac\x37\x06\x68\x6d\xbb\x69\x97\x85\x1f\xa4\x02\xc7\x59\xfb\xf1\xfa\x97\xba\xed\x16\xb3\xaf\x97\xfe\x44\x0f\x2b\x4c\xdb\xf6\xb2\x86\x83\xde\xfb\x00\xa8\x17\x98\xec\x02\x65\x92\xd1\xd6\x3c\x46\x5b\x1b\x39\xab\x3a\xd9\xe0\x3c\xb5\xe0\x47\xa0\xfd\x3a\xba\xa0\xff\x5a\x7e\xd0\xe1\x08\xc6\x97\xdf\xd9\xd0\x23\x2c\xc7\x96\x42\xdc\x81\xf9\x30\x5d\x7c\x4b\x7a\xf8\x8a\x52\x46\x8b\x8c\xc5\xef\x0b\xbe\xea\xbf\xa6\x0f\x55\xa7\x0a\xeb\x5c\x6b\x74\xc1\x16\xb4\x88\x5b\x27\x26\x48\xe4\x0a\x1d\xb1\x8d\x11\x25\x3a\x71\x43\xc8\x4b\xcf\x7c\x7a\xa1\x22\xe9\xc7\xe9\x6d\x6d\xee\x7c\xae\xe3\x1e\x90\x13\x10\x55\xf9\x35\x2c\xe6\xab\xde\xdc\x43\x12\x2a\x10\xe1\x7e\x1a\x4c\x23\x6a\x3e\x75\xc4\x3a\xcb\x24\x29\x85\xb3\xf7\xd6\x0d\x93\xde\xe7\x49\x6c\xfc\xcb\x75\x17\xdb\xb3\xb5\x73\xd8\xb0\x09\xf1\x45\x7f\x15\x3c\x21\xaa\x8f\x27\x11\x06\x5f\xba\x37\x0f\x21\xc1\x8f\xb5\xa7\x6e\xde\x84\x3c\x94\xd1\x4b\x9c\x43\xaa\x7c\x46\x41\xe7\x1c\x70\x05\x70\xf6\xca\x8b\x5b\xc4\x77\x02\x65\x21\x7f\x77\x66\xcc\xbe\x5a\xbd\xe4\x42\xfd\x6a\x6d\x0b\x86\xc3\xab\xd5\xb2\x91\xe1\xd5\x6a\x59\xd0\xf0\x6a\x6d\x7f\x86\x57\x6b\x78\xb5\x42\xad\x86\x57\xab\xb5\xfb\x9f\x32\x46\xe0\xf7\x0f\x61\xd4\x59\x99\x1c\x1a\xf7\x24\xee\xfb\xba\x64\x5a\x35\x0b\xfe\xea\x38\xf0\x6f\xb5\xf0\xb8\xf0\x6f\xaf\x55\x9f\x60\xe5\xc3\xbf\xd5\x64\xfa\x3b\x7a\xf1\x37\x1c\x75\x9b\x3b\xac\x33\x36\xa6\xb2\x9d\xcd\xd0\xe6\xf7\x92\x1d\x22\x03\x86\xc8\x00\xf7\x08\x86\xc8\x80\xaf\x17\x19\xb0\x75\x83\xb7\x63\x03\x10\x23\xd5\xcd\xc0\xae\x33\x5f\xda\x83\x60\x36\xbc\xb6\x70\x00\x20\xb1\xfe\x3b\xbe\xbd\x52\xb7\xb1\x31\x9c\xac\x2b\xdf\x20\xad\x12\xd5\x01\x91\x76\x35\xbe\x07\x59\x11\x81\x32\xcb\x5a\x3c\xee\xfd\x0f\xbe\x1e\xf2\x87\xcf\x5e\x3f\x2e\x1f\x5c\x55\x53\xb3\x56\xf8\xb7\xe6\xd8\x82\x8b\xeb\x31\x7d\x80\x57\xf4\x4d\x0f\x6c\x93\x3e\x34\x27\x8c\xe2\x41\xab\x50\xc8\x07\xcf\xff\x25\xa3\x71\x67\x8e\x8b\xb3\x5a\x6b\x93\x64\x92\xc4\x25\x90\x08\x91\x2c\x32\x88\x3a\xc9\x64\x35\x2e\x59\x25\x8b\xc2\x7d\x0a\x1b\x6b\xe3\xd0\x8d\xa6\x98\xb6\x63\x95\xf3\x0c\x44\x77\x51\x46\x4b\x42\x05\x79\xcf\xd2\xe4\x4e\xa7\x9b\xb1\x49\xa2\x6e\x69\xa2\x6e\xf9\x9c\x07\xb2\xf8\x44\x11\x13\xc2\x50\x28\xbb\x92\x5d\xb3\x85\xae\x69\x91\xd0\x6e\x9f\xf5\x9f\xb0\x59\x15\xde\x82\xb1\x0c\xba\xb7\x83\xcb\x4e\x7d\x69\x88\x50\xd9\x29\xf4\xe2\x4f\xc9\x3c\xfe\x61\x78\xc8\xb9\xc2\xa2\x9a\x63\xe9\x53\xf0\x90\x80\xab\xb5\x04\x5e\x4d\x1e\x72\xbb\xc5\x36\x0f\xe9\x59\x6b\x93\x87\xdc\x6e\xf2\x87\xe1\x21\xf1\xbe\xd6\xb6\xd8\x60\x22\x6b\x3f\xcd\x79\x81\x5d\x06\xfe\x71\xe0\x1f\x07\xfe\xf1\xf7\xe6\x1f\xb7\xe9\x53\x1b\xff\xa8\xfe\xc2\xfb\x5e\xbb\xd4\x3b\xc4\x84\xa5\x29\xbf\x3d\x9f\x9c\x4f\x26\x98\x97\xea\x7d\xc1\x57\x3f\xf3\xe2\x26\xe5\xb4\x3b\xae\x70\xff\xa4\xad\xb7\xc9\x23\x50\x39\xbf\xc0\x4a\x7d\xec\x82\xae\xf7\x1e\x13\x8a\x15\x75\x24\x27\x71\xc1\x73\xa2\x86\x26\x2c\x8b\x68\x2e\xca\x14\xdc\x21\x64\x41\xe7\x4a\xee\xc5\xba\xf3\x66\x2a\xdf\x98\xbf\xea\x84\x68\x9a\xfc\xfe\xe6\xc9\x79\xda\xca\x7b\x00\x64\x7e\xfa\xe5\xc3\xc9\xc5\xfd\x41\x13\xec\xfe\x08\xb0\x81\xb1\x7f\x37\xe0\xdc\x8a\xab\x22\x3a\x13\xf2\x74\xc9\xa2\x9b\x4e\x60\x5c\x31\xa9\x75\xaa\x23\x47\x7f\x3f\x8a\x54\x67\xc2\x33\x72\xf2\xf3\x15\x79\x77\xfa\xca\x46\xcd\x8a\x31\x39\xd1\x9c\x91\x6f\xf5\x48\xc8\x4c\xbe\x4a\x5d\x42\x7b\xba\x77\xc6\x2f\xb8\x5c\xaa\xeb\xb9\x77\x48\xa6\x7b\xef\x20\x03\xdc\x74\x0f\xd3\x93\x9e\x61\x54\xea\x74\x6f\x5c\x6d\xde\x37\xb6\x1d\xc4\x07\x13\x96\x95\x3e\x43\xc1\xa8\xea\xe5\xfb\x51\x2f\xc4\xd7\x4d\x2f\x6a\x27\x79\x61\x96\xcf\x4f\x79\x96\xb1\x08\xe2\x8b\xaa\x3a\xdd\x49\xb6\xc0\x99\x3a\xfd\x8b\xf6\xdf\x4e\xde\x77\x0c\x81\x8e\x43\x49\x46\xde\x4e\xde\x93\x15\x8f\x99\x37\x39\xa5\x1f\x8b\xf1\x18\xd3\xd4\x72\x1b\x6a\x22\x75\xde\x32\x59\x31\xa2\x70\x92\xcc\x4c\x25\xf5\x60\x3a\x4d\xdd\xcd\xd3\x07\xbd\x94\xd0\x4b\xcc\x9a\x85\x96\x5c\x40\x04\xb2\x62\xed\x67\x70\x4b\x7c\x83\x42\x2a\x48\xb7\xc8\xbb\x2e\x46\x2f\xd0\x8f\x49\x92\x64\x95\x17\x90\xcf\x5c\xc7\x46\x83\x10\x9f\x45\x80\x60\x39\x8f\x47\x92\x8f\x74\x97\x96\x35\xc3\x5b\x42\xb0\x3e\x46\x96\x6e\x8c\x7b\xa4\x13\x1a\x8d\xa1\xbc\x6a\xed\x31\x9b\x95\x8b\x85\x7a\x8a\xf3\xb2\xc8\xb9\x50\xa8\xdf\x8e\xa0\x4a\x86\xd8\xf9\xbe\xce\xf2\xf9\xd9\xd5\xe5\xa7\x5c\xf2\x52\x9e\x9e\x9f\x5d\x76\xd2\xaf\xb7\x93\xf7\xf5\x0e\xc8\x49\x28\x3e\x1a\xe4\x29\xf8\x0a\xc5\x2c\x5a\x30\xc2\xee\xa2\xb4\x8c\xfd\xb7\x15\xa8\xd1\xd9\xd5\xe5\x98\x5c\x63\xca\xd2\x43\xcd\x10\xe8\xac\xff\x5c\x30\x33\x1e\x90\x3a\x10\x1d\x19\x86\xfa\x80\xc3\x96\x57\xc0\x04\x9b\xc5\xdb\xc9\xfb\x77\x77\xc8\xc9\xe9\xda\xf7\x1f\x21\xdd\x2f\x85\x8c\xb7\x0a\xe2\xd7\x65\x96\xb1\xf4\xeb\x24\x10\x50\x40\xa6\x92\x9e\xcf\x69\xc4\x26\x54\xaa\x75\xf5\x01\x73\xa3\x0b\x02\xba\x60\x20\x68\x10\x76\xa7\x78\x2e\xe0\xa5\x41\x02\x37\x37\xce\xfb\x52\xc0\x71\x58\x2b\xab\x91\xdc\x35\xab\x4c\xa5\x54\xc8\xaf\xee\x73\x5e\xf0\x45\x41\x57\xc0\x23\x27\x99\x4d\xcb\xea\x45\x69\x2a\xa3\xa5\x7d\x58\x24\x7f\x6e\x39\xbc\x8c\x49\xf5\xc4\x8c\x75\xd2\xab\x8c\xb1\x18\x06\x5c\x61\x8f\x25\x73\x56\xe2\x05\xb3\xda\x8e\x96\xcb\xcd\x5b\x55\xbd\x60\x90\x4d\x82\xaf\x59\xa1\x4e\xfa\x96\x29\xbc\x50\x97\x74\xd3\x67\xd0\x25\xcd\x62\x75\xc9\xb2\x88\xaf\x80\xc9\xb5\xab\xaf\x70\x4a\xa7\x28\xd6\xb7\x1f\x36\xc5\x4b\x29\x92\x66\xaa\x29\x33\x6c\xa5\x8c\x23\xe4\xdc\x6a\x41\x14\xab\x5a\xed\xd7\xee\xc2\x39\x82\x83\x52\x94\x34\x4d\xbd\xbe\x15\x4a\xd8\x8b\x41\x20\x1f\x8f\xc7\xcf\x76\x4c\x03\xa1\x90\x0d\xa9\xc9\xe7\x2c\x2f\x92\x75\x92\xb2\x45\x3f\xca\xef\xe9\x76\xa8\x2e\x13\x66\x4c\x8d\x0f\x0d\xda\x30\x1d\x7a\x7b\xa3\x88\x65\x3a\x2e\x9d\xf6\x5f\x66\xf9\xfc\x8b\x26\x66\xde\x3b\x2f\x36\x22\x92\xa9\x4b\xf2\xdc\xee\x90\x4b\x9b\xc3\xf5\x35\xe8\xc3\x32\xa1\x0b\xe1\x50\x59\x6b\xeb\x1b\xbd\x14\x4a\xf4\x88\x50\x54\x40\x7a\xa1\x31\x69\x7f\x5f\xe0\x8b\x45\x73\x3c\x62\xdd\x28\xc9\x84\x12\x13\xe5\x92\x25\x05\xe1\xb7\x5e\xd7\x81\xed\x9b\xa1\x4e\x91\x15\x3a\x7d\xb8\x9d\xc0\x61\x20\xee\x4d\x8c\x77\x78\xa8\xdf\x99\x63\xa9\x8e\x48\x9f\x10\x90\x4b\x53\x07\x48\xad\x5e\x89\x21\x79\x4a\x33\xbf\x39\xfd\xa1\x3c\x1f\x2c\x7b\xce\x8b\x88\x5d\x4e\xde\xf7\x5b\xb9\x69\x4d\x18\xfe\x13\x70\x39\x92\x44\x7d\xc5\x33\x28\xff\x02\x0f\x77\xfb\xa5\x06\xf0\xd7\x4e\x07\x3d\x2c\x52\xed\x5e\x70\xab\x33\x61\xeb\x37\x7b\xe4\x5c\x3f\x5e\x68\x77\x78\x2f\x92\x62\x41\xa6\x31\x99\x70\x21\x12\x85\xa4\x5a\xb0\x52\x2f\x9a\xbe\x25\xf1\x21\xb9\xc2\x35\xf3\x82\x7c\xe0\x5c\x89\xa0\xad\xcf\x33\xb4\x09\xc3\x36\x78\x99\xdf\xdd\xc9\x6b\xae\x1f\x31\xc5\x9b\xad\x68\xd1\xcd\x57\xe3\xfb\xb7\xd5\xaf\xc6\xb7\x99\x27\x83\x50\xf2\xfa\xd5\x2c\xf1\x67\x18\x54\x9d\x4c\x42\x71\xa8\xe5\x95\xb9\xcc\x8c\x2e\xa8\x9a\x11\xa6\x1f\x5b\xfd\x80\x63\xa2\x7d\xc8\xfb\xee\x87\x2f\xac\x4a\x57\x8a\x81\x39\x74\x9a\xa0\xd2\x64\x9e\x86\x85\x2d\xf9\xad\x4d\x8b\xcc\xe7\xf6\x9d\xd3\xb3\x7b\x5f\xff\x42\xfb\x2a\xc4\x80\x1c\xba\xac\x09\xa0\x92\xc9\xba\xad\x3d\x4b\x20\xcd\xbb\xc2\x87\xbc\x30\x35\x8e\x2e\x27\xef\xbd\x2f\x9d\x12\x46\xdc\xbb\xfd\x22\x7c\x8a\x81\x88\x4e\x3c\xc6\x26\x3b\xd2\xf3\x14\xb7\xb8\x18\xdf\x21\x0a\xd8\x9b\x73\x34\x41\x86\x4b\xbf\x66\x35\xab\x31\x14\x5a\xd1\x4f\xde\x81\x2e\x02\x63\xde\x42\xd3\xe6\x7c\x22\xbc\xa5\xc1\x14\xc8\xb5\xa7\x87\x92\x34\xb9\xc9\x67\x6f\xc5\x4c\xf5\x30\xce\x0d\xdb\x35\xdd\x43\xc6\x6b\xba\x87\xf5\x13\x66\x5c\x7a\xeb\x08\x68\xdd\x0f\xac\xa0\x60\x22\xe7\x99\x22\x67\xfa\xbd\x56\x57\x1a\x46\xc1\x09\x1b\x49\xf4\x61\xbe\xc0\xb5\xc6\x25\x9c\x5d\x5d\x2a\x49\x10\xfb\xe1\x3c\xbe\xa1\x67\xa5\xd4\x6d\xea\xf3\x07\x0c\x5d\xe0\xbc\x14\x27\x05\x8b\x64\xba\xf1\xa6\xf7\x57\x2b\xcb\xcc\xfc\xfa\xfc\xaa\x26\x5e\x4e\x00\x8a\x26\xe4\x39\xa3\x85\x70\x8b\xbb\x9d\x4f\x8c\x92\x27\xc9\x16\xe0\x4d\xa5\x5a\xfe\xdd\xa8\x4d\x41\x06\x12\x84\xfa\x86\xcc\x59\xb1\x4a\x84\x48\xd6\x8c\x7c\x78\xe5\x30\x6b\x15\x7e\xe3\x09\xdd\x83\x54\xfd\xc8\x85\x54\xa4\x46\x16\x34\xba\x79\xbb\xc9\x69\x77\x76\x7c\x85\xe3\x9e\x6e\xe4\xb4\x29\x40\x2a\x11\x0e\x7f\xfa\x90\x64\xa5\x57\x21\x12\x99\x31\xdc\x1b\x02\xc2\x94\xc5\xc5\x1a\x77\xd7\x7c\xaf\x7d\x63\x8e\x6a\xb3\x56\x53\xdc\xe7\x91\x54\xe2\xe5\xa4\xe0\x77\x9b\x77\x5a\x07\x7a\x95\xaa\x65\xf4\x7c\xf2\xdf\x4e\xde\xb7\x0f\xe0\xa7\x0b\x7e\x79\xc0\x11\xca\xf7\x05\x61\xab\x19\x8b\xd5\xed\xbd\x29\x67\x6c\x94\xab\x19\xb4\x01\x4a\x90\xfa\x54\x61\x47\xae\xde\x9b\x3f\xcf\x25\x24\xe0\x3f\x55\x0d\xcb\x7c\x07\x86\xa7\x63\x88\x1a\x23\x84\xb0\xf0\x3e\x69\x00\x1e\x87\x51\xca\x0b\x8e\x46\xbf\x74\x43\x22\x35\x22\x29\xb1\xca\x63\x99\x0b\x59\x30\xba\x72\xf5\x02\x15\x84\xf6\xf7\xfd\x35\x55\xf4\xda\x48\xb4\xa4\x09\x88\xfb\x57\xf5\xb2\x66\x76\x85\x73\x17\xdc\xba\x5e\x87\x36\x96\x3f\x95\xa8\x6f\x21\xf8\x31\xc9\xae\x36\x59\x84\x99\xdf\x76\x82\x7d\xad\xe7\x61\xe0\x2d\x92\x7e\xd5\xcd\x2a\xc9\x20\x97\x1b\xa8\x6e\x4c\xed\x01\x54\xe7\x5b\xb3\x8c\x65\x55\x2b\xfb\xd3\xbe\x83\xa2\xbe\x61\x2b\x30\x8e\x15\x9b\x75\xcb\x0a\xc3\xaf\x2d\x14\x95\x2b\x58\x5c\x46\x58\x8a\x74\x54\xe6\x60\xf7\xc9\x22\xd5\xf4\xc7\x64\xb1\xb4\x6d\xfd\x8f\x90\xea\x69\xec\x66\x93\xcf\xa4\x14\x74\xc1\x20\x45\x8c\x92\xed\xc0\x13\x32\x27\x2b\x5e\xe0\x6b\x57\x23\xa2\x2f\xc5\x3d\x08\xe8\x87\xd7\x3b\xea\x08\xea\x1d\xda\x35\x04\xc8\x62\x79\xd1\x89\xa3\xfe\x06\x5f\x3e\x12\x33\xe4\x04\xd2\xe4\x46\x89\x38\x6a\x3c\x5a\xc4\x10\x51\x7a\x97\xd2\x8c\x1c\x24\x63\x36\x3e\x24\x1f\x5e\x9b\x96\xa1\x92\xa1\x34\xd6\x91\xcb\x92\xfb\x14\x1a\x8e\xde\x47\xcf\xec\x30\xe8\x19\xf7\x32\xa4\x90\x50\xd8\xcd\x72\x77\xb8\xab\xbe\x20\xa0\x34\xaa\xab\x10\x76\xd3\x17\xb4\xf0\xb8\x22\xc8\x74\xed\x2e\xd6\x7f\xe0\x8b\x0f\x6c\xcd\x7c\xd5\xd5\xb6\xee\xab\x69\x5b\xbb\x93\x24\xe5\x0b\x92\xc2\xd7\x26\xc5\x8f\x23\x3c\x05\x5e\x0a\xab\xec\xad\x6e\xe6\x0a\x79\x99\x4f\x46\xbf\xfe\x69\x3e\x47\xcd\xfa\x79\x36\xe7\xea\x5f\xa8\x58\x67\xb3\x72\x31\xdd\x0b\x6b\x72\x53\xbe\x40\x91\x8a\xad\x12\x29\x2b\x5e\x4e\x4d\xa6\x1e\x59\x46\xf2\x24\x67\x87\xc6\x67\x44\xc9\x61\x20\xf1\xa1\xf2\x78\xb5\x0a\x40\x7e\xba\x27\x23\xc2\xee\x58\xa4\x60\x86\x7a\xd4\x9a\x72\x9f\x7c\x9a\xcf\x7f\x1b\xef\x7e\x39\x3f\xd2\xfc\x2a\xf9\x17\xb3\x9c\x4a\x9f\x63\x68\xf6\xa9\x94\x27\x22\xf9\x57\x15\xbb\x60\xd9\x0a\xbf\x0c\x96\x1b\x65\xc8\x8a\xe6\xd6\xba\x91\xd2\x62\xa1\x5e\x13\x5e\x2e\x96\x0a\x72\x4b\x9e\x62\x39\xa6\x4c\x16\x18\xa8\x01\x3a\x6d\x7c\xda\xda\x95\xd2\x63\x42\x7e\xa6\x85\x7a\x78\x8e\x31\x4c\xdf\xc6\x10\xab\x45\x1a\x17\x26\xbb\x07\xb5\x8a\xc8\x5f\x45\x2f\xa2\x8a\x43\x8d\x13\x51\x94\x00\x85\x30\x98\xc3\x92\x92\x86\xd9\xf9\xe4\x8a\xc9\x3e\xea\xe8\x5a\x7b\x0f\x80\x93\x1c\xbe\x33\x60\x64\x81\x20\x05\xd3\x68\x57\x00\x1b\x83\xb6\xff\xe8\xa4\xae\x30\x45\xd8\x9a\x15\x1b\x9d\x02\x57\x2d\x2a\x73\xe2\x09\x9e\x3b\xb6\x2f\xdd\x07\x54\xe0\x9a\x39\xf7\x72\xf1\x3c\x4d\xe0\x11\x33\xd5\xe0\x2a\xb7\xac\xe9\x1e\x4d\xd3\x83\x67\xd3\x3d\xa8\x73\x55\x30\x01\x75\xc1\x32\xbd\x1f\x53\xec\x95\x7b\x45\x24\xb5\xb7\x44\x09\x81\x3c\x63\x7a\xa3\x39\x2b\x2a\xa3\x7d\x62\xb4\xcd\x54\xb0\xb0\x62\xb2\xfb\x6c\xe7\x57\x81\x1c\x0e\xa1\xc3\xc5\x0e\xbe\xd3\x9d\x63\xb6\x09\x7b\xbc\xde\xb7\xa8\x6a\xb4\xeb\xf1\xe2\x13\xe7\x1b\xf4\x00\xd4\x0a\xff\xb5\x12\x2e\x9e\x81\xea\x0a\xb4\x0d\xf7\x07\xcd\xc5\xc9\xb5\xa9\x8f\xe1\x01\x4f\xff\x41\xde\xd2\xe8\x86\x6d\x39\x82\xb4\x80\xb8\xea\xe3\x81\x72\x46\x25\x99\xa9\xbb\xcf\xc0\x1f\x26\x0f\xd7\xb8\xd0\xea\xb6\x66\xa2\x2c\x83\x41\xa6\x3c\xb0\x22\x66\x5c\x28\x41\x19\xd8\x27\xb9\xf4\xd3\x93\x26\x11\xaa\x06\xb4\x42\xdc\x43\x80\xf4\xbe\xe0\x99\xdc\x15\x4a\xa6\x53\x00\x4c\x73\xf5\xb3\xda\x6f\x90\x96\x9b\x01\x3e\xd2\xdc\x71\x3c\xec\x87\x8f\x21\x25\x81\xe2\x45\x0e\x2b\x35\x9c\xae\xe4\x08\x18\x0c\x65\x29\x93\x0c\xff\x30\xaa\xb7\x7b\x43\x0d\x82\x2a\xfb\xc3\x0b\x63\x30\xfd\xaf\x9e\x8e\xfe\x6c\xbd\xb9\x55\x9b\x2e\x50\xd5\x29\x96\xb9\x94\x5e\x6e\x2f\x8b\xd5\x35\xa5\x59\x3c\x2f\x53\x44\x4e\xa4\x7a\xaa\x23\x5c\xea\x83\x6a\xec\x08\x78\xc7\x44\x0a\xc2\x6f\x33\x72\x3e\x09\x32\x7c\x9a\x85\x3d\x9f\x88\xfb\x10\xc6\xc9\xd5\xc5\xc9\xf5\x44\x31\x94\x1e\xd8\xd2\x6c\xf3\xc9\x57\xe0\x79\xd4\x95\x47\x6e\xd4\x61\xb3\xdc\xe2\x57\xaa\x65\x54\x67\x56\xd0\x6c\xc1\xb4\xeb\x08\x18\x12\x6f\xe1\xbb\x98\xaf\xfc\xd6\xab\x3c\x89\x6e\x08\xd5\x68\x07\xd7\xb6\x60\xda\xdd\x0c\x3d\xc9\xe0\x97\x88\xa7\x69\x22\x80\xf9\x00\x82\x60\x4f\x37\xa4\xe8\xd7\x2f\x26\xcb\x97\x6c\xc5\x0a\x9a\xea\x75\x51\x93\x64\x1b\x55\xb8\xef\x4f\xc9\xd1\x8b\x6f\x8f\xc8\xc1\xcb\x17\xaf\xde\xfc\x7f\xff\xcf\xff\x7b\xf4\xed\xb7\xaf\xbf\x7d\x16\x3a\xb3\x1c\x6a\x34\xd3\x59\xba\xa9\x71\xe8\xcd\x49\x84\x4d\x0d\xaa\xd8\x4e\x9e\x11\x9e\xb3\x82\x86\x12\xd7\x8b\x8d\x90\x6c\x25\xc6\x5a\x65\x54\x0a\x26\xc8\xeb\x57\x7f\x3b\xfa\x4e\x2d\xe7\xc5\xf7\xdf\x7f\x7f\xa8\xe0\x98\x32\xac\xcb\x6c\xe9\xa0\x55\xed\x9d\x5c\x9c\xf8\x86\x35\xbb\xc4\x6d\xbf\xf9\xfe\xe5\xb7\xaf\xcc\xfe\x4c\x8a\x96\x8c\x4b\x5d\x22\x9d\x16\x49\xba\x51\x87\x50\xf0\x59\xca\x56\x78\x0e\xfe\x22\xb0\x38\x9e\xc2\xf2\x94\xe6\xa2\xe2\xb0\xed\x1e\xab\x0d\xbd\xb5\x35\x51\x4d\xec\xa6\xea\x1b\x52\x0a\x27\x99\x92\x74\x92\xb5\x6b\x18\x21\xaf\x5e\xbc\x78\xf1\xe2\xf8\xd5\xf7\xdf\x7f\xff\xbd\x4f\x3e\xce\xb5\xe4\x4b\xfe\xc7\xf8\xbf\x6c\xff\x7a\x37\xaa\xca\x66\x8f\x92\x4c\x8e\x78\x31\x42\xd4\xf6\x2b\xf0\xd4\xbd\x02\x3e\x09\x44\x91\xfe\x7a\xb6\xed\x4e\x28\x08\xa9\x39\x8c\xea\xa8\x60\x11\x2f\x62\x85\x7c\x92\x26\x01\x63\xa7\x1b\xfb\x8b\xe5\x0c\xac\xcc\x05\x33\x58\xd1\xeb\x50\xdf\x2c\x5d\x98\x94\xdd\xd1\x55\xa8\x9c\x75\x25\x01\x81\xc4\x3b\x52\x32\x8e\x16\x86\x46\x69\x92\xa9\x97\x97\xfb\xdc\x1a\x5a\x55\x43\xa0\xab\x3a\x07\x53\x68\x2f\xc3\xc4\x69\xbd\x7d\xc8\xdd\x67\xc9\xf9\x8d\x6b\x2a\x0e\xa8\xcc\x24\xcf\x47\x28\x95\x36\x94\x67\x50\x3b\x13\x66\x51\x68\xa8\xdd\xdc\x74\xd0\x89\xe4\xb9\xc6\x42\xbf\xcd\x86\x82\xff\x02\x94\xc5\xce\x73\x96\xc5\xdb\x23\xcc\xb8\x94\x7c\x35\x36\x26\x60\xcd\xb8\x08\x3a\x67\xa6\x9a\xae\xf7\x76\x9b\x94\xfb\xba\x54\xad\x6b\x60\x56\xa3\x6b\x81\x1f\xe3\x64\x51\x77\x0c\xbe\xaa\x73\xb2\xe1\x25\x11\xb7\x89\xf4\x3f\xe2\x92\xeb\x85\x6a\x5d\xda\x8c\x11\x81\xb5\x57\xf5\x72\xb1\x8a\x3b\x4e\xa1\x69\xa1\x86\x12\x06\x69\x78\xaf\x21\x28\x71\xc1\x4f\x69\xb6\x21\x73\x9a\xa6\x28\xd9\x15\xe6\x75\x73\x32\x1c\xc1\xc8\x87\x38\xcd\x6d\x82\xc4\xc8\x37\xa6\x6e\xae\x31\x18\x34\xa8\x33\xe6\xec\xb4\xba\xeb\x08\xd8\x5d\xd5\x60\x56\xcd\x70\x56\x24\x6b\xd6\x59\x0d\xfb\xac\xde\x9c\xcc\x93\x94\x65\x4e\x15\x7e\xcb\x12\x55\xea\x8b\x18\x5a\x06\x0e\xa1\x14\xa8\xda\x40\x8a\x0c\x6a\xda\xcf\x82\x9d\x6b\xb7\xf0\xe6\x6c\x89\xf5\x27\x02\xd3\xf9\x8e\x3a\x1d\xbb\xa4\x9f\x95\xcc\x17\x73\x48\x97\xcd\xcb\xce\xb0\x96\xe9\xde\x59\xa0\xa7\xc1\xe2\x82\xd1\x38\xc9\x98\x10\xcf\xd3\x64\xcd\xd4\x3f\x40\xe9\xca\x4b\x2f\x4e\x9b\x70\x6e\x6b\x10\x38\x30\x6e\xf0\xcf\xb6\xc0\x36\x26\xe7\x59\x54\x30\x2a\x74\x86\x82\x70\xe5\x59\xc4\x78\x76\x97\xb3\x22\x61\x0a\x05\x45\x5e\x16\x09\x2f\x05\x24\xcc\x2d\x20\x4a\x09\xcc\x09\xd9\x48\x2d\x92\xe8\xeb\x04\x94\x36\xe8\xf4\x9a\x08\x52\x66\xb1\xe2\xd3\x18\x5d\x6f\xc0\xff\x6f\x4c\xce\x98\x5d\x91\xc9\x43\x2e\x39\x59\x30\x89\xd1\x18\x68\x94\xc4\x62\xf2\x7a\x32\xdf\xd0\x7a\x2d\xb8\x30\x90\x4a\xfe\x59\x26\xd1\x4d\xba\x71\x71\xfa\xfb\x17\xe2\x37\x32\x9d\x66\xe4\x8c\xe5\x05\x8b\x20\x69\x9b\x1a\x3c\xa5\x91\x9f\x5e\x43\x61\x66\x5d\x69\x38\x89\xc8\x8f\x8c\xa6\x72\xa9\x4f\xeb\xd3\x9a\x15\x45\x12\x2b\x21\xc6\x53\x37\xb9\xbd\x8a\xe1\xac\x5c\x68\x4f\x84\x0f\x7c\x71\x56\x70\x28\x94\x1d\x94\x18\x03\x74\x1f\x86\xf9\xc8\x56\xbc\xd8\x4c\x0a\xae\xae\xce\x84\xca\x65\x70\x94\x96\xb5\x5c\x25\x2b\xf0\x35\x3e\xa5\x69\xf4\x43\x41\xf3\xe5\x8f\x34\x5b\x9c\xcc\xa5\xf7\x02\xf7\x1e\xcd\xa2\xf9\xfd\x47\x83\x73\x33\x46\xac\x6b\xfe\x23\x17\xf2\x24\x0a\x24\x62\xa9\x3f\x72\x67\xe1\xbe\xee\x83\x07\x7a\x62\x45\xb9\x45\xc0\x53\xce\x6a\x8d\x55\xd3\x05\x37\x2f\x04\xad\x94\xd5\x55\x4c\x04\xaf\xfc\x15\x12\x29\x58\x3a\x27\x07\x74\x1e\x88\xad\x84\x57\x50\x8f\xbd\x4c\x34\xb3\x6e\x87\x62\x68\x16\x46\x32\xfd\x6c\x4c\xde\x6e\x6c\x8d\x78\xa4\xe0\x5e\x64\x4d\x79\xa4\x5e\x6c\x9f\xbb\x78\x25\xc2\xfb\x96\x89\x55\xab\xbd\x32\xbc\x7d\xd4\xa7\x7b\x67\x97\x9f\x26\xd3\x3d\xd0\x49\x2a\xc6\x5f\x3f\x8a\xb7\x54\x7b\x8c\xa4\x29\xbf\x25\x82\xaf\x20\x77\x28\x4d\xd3\x36\x83\x3b\xac\xcd\x05\x9c\x5a\xcd\x21\x52\x63\x48\xa5\x49\x0b\xba\x62\xda\xb9\xe1\xf2\xdd\xf5\xe7\xcb\x0b\x35\xea\xc9\xe9\xe9\xbb\xc9\xf5\x58\xd1\x74\xdf\xa8\xba\xa1\xa6\x5d\x50\xf9\x7f\xc3\x4b\xf0\x0c\xab\x3f\xbd\xce\xa6\xce\x2f\x26\x9f\xaf\xa7\x7b\xf8\x1a\xff\xbd\xe5\xc9\x84\xb7\xd2\x70\x1b\xd2\xb0\x0b\x4d\x7e\x86\x4a\x1c\xe9\x10\x1d\x24\xa6\x7b\xb8\x26\x7f\x65\x75\xe3\x1d\xa3\x4f\xa4\xb1\x18\xc2\x35\xaf\xb2\xa4\x02\x02\x38\xb1\xa6\x69\x5e\x70\x13\x84\xd9\x26\x26\xfb\x51\x09\x40\xa7\xc1\x08\xef\x65\x66\xc3\x0e\x69\x9a\x1a\xbb\xb1\x59\x58\xf0\xe4\x1c\x8b\xbc\xc2\x6f\xdf\x9a\x42\x0b\xf0\x8d\x59\x11\x68\x45\x0a\x77\x66\x39\x40\xc7\x07\xaa\x8a\x49\xc1\x25\x8f\x78\xa7\x8d\x05\x64\x56\x37\x88\x0d\x33\xa4\xe4\xba\x3b\xa1\xb1\xf6\x86\xd1\x2c\xfe\x8a\xc5\x2d\xaa\x44\xd4\x72\x1c\xaa\xc7\xc2\x5c\x52\x40\x62\xc3\x5d\x5d\x5e\x4f\x2e\x3f\x5d\x7f\x79\xfb\xe9\xd3\x35\xbe\x8f\x29\x9b\x4b\x32\x4b\x69\x76\xb3\xab\xae\xc1\xd9\x2b\x46\x7e\x9e\x60\x3a\x9e\x5e\x1b\xd6\xdc\x05\x64\x9c\xac\xd7\xee\x37\xce\x29\x3c\x73\x76\xec\x17\x63\xd5\xfc\x7a\xc7\x35\xb2\xe4\xe4\xd7\x31\x83\x42\x66\x1d\xb3\xd3\x43\x92\x32\xba\x0e\x08\xdd\x95\x90\x01\x4a\x9b\x25\xe7\x9a\x1d\x68\x8c\xa8\x58\x9d\x5d\xb9\xb4\x00\xc4\xce\x27\x6b\x5f\xf6\xb3\x36\xa8\x1d\xfd\x85\xa0\x86\xcc\x89\xb5\x7c\x9d\x67\x50\xc9\x2c\x14\x16\xd4\xca\xa6\x18\x42\x70\x69\x92\x5b\x9f\xb1\xd4\x9b\xbd\xac\x6d\x41\x5b\x83\x84\xf5\x01\xed\x8b\xd1\x02\xc5\x05\x8f\x19\x54\x8a\xed\xc2\x81\x77\x6e\x87\xd3\xf3\xb3\x4b\xd5\x69\x3b\x6a\x62\x1f\xb4\x2a\x66\xf4\x91\x62\x45\xb5\x88\x0f\x45\x65\xfd\xd6\xd9\x24\x5a\x42\xa4\xa5\x89\xd1\x44\x1d\xa4\x79\xbf\xc1\xe5\x51\xbd\x61\xf0\xc0\x58\x8f\x39\xfd\xab\x5f\xd5\x66\x02\xcf\x09\x58\x79\x6c\xdd\x42\x9f\x9e\xfd\x09\x22\x25\xe6\x34\x49\x95\x04\x7e\x9e\xcd\x78\x99\xc5\x8a\xe3\x0a\x29\x45\xeb\xcc\xda\xfb\x40\xc7\x3a\x9c\x3f\x9f\x4d\x9e\x5f\x9f\x4e\x48\x38\x7a\x24\x8b\x75\xc8\x09\x3c\xc4\x8e\x97\x10\x32\x27\x3e\x57\x00\x60\x83\x2c\x73\xe4\x95\x2c\x32\x92\x14\x05\x13\xb9\x2e\x7f\x69\x92\x89\xb1\xa8\x2c\x12\xb9\xb1\x2f\xab\xa1\x16\xa5\x60\xf3\x12\xae\x24\x5d\xf3\xc4\xaf\xc3\x8e\x22\x28\x32\x09\x6f\x6e\x54\x82\xbf\x32\xe1\xf3\xb9\xb6\x3f\x21\x3f\xa6\x56\x5b\x14\x2c\x92\x8d\x20\x50\xf2\xde\x9f\xba\x6b\x46\xa3\x9b\x51\xad\x1c\xf9\xa1\x49\x00\x66\x1f\x36\xad\x66\xd4\x79\x86\xc0\xeb\x4a\x1a\x62\x14\x72\x2e\x99\xee\xc9\x28\x9f\xee\x01\xc3\x47\x01\xbe\xfe\x61\x1c\x40\xbb\x2c\xa8\x77\xff\x18\xfb\x58\x40\x44\xd0\x98\x5c\x57\xf1\x04\x14\x98\x2c\xc0\x02\x04\x05\x1c\xf6\xa1\xd5\xaf\x06\x05\xd6\x8c\x67\xe0\x92\x6c\xd5\x3f\x5a\x94\xd4\xae\xc9\x42\x2c\x4d\x48\x81\xc2\x92\xb3\x1f\x4f\x27\x35\x07\xc2\x28\x3f\x7e\xf5\xca\x1b\x0c\x57\xc6\xf9\xf1\xd1\x77\x87\xd0\xe4\xe5\xdf\xbe\xc7\x7f\xbc\x7a\x5d\xfd\xeb\xbb\x17\xf8\xaf\xa3\x37\x6f\x5e\xeb\x7f\x1d\x1d\x1d\xd9\x7f\xfd\xcd\xc7\xcf\x84\x2f\x5f\xbd\x24\x83\x3a\xb7\x09\x47\xfd\x56\xc4\x57\x33\x27\xa3\xa4\x39\xd3\x43\x82\xd6\x23\x83\xfc\x81\x34\x6d\x13\xcb\xdb\x64\x31\xea\xf0\x8d\x29\xd5\x9e\xa2\xb7\x67\x67\x5a\xc2\x8c\xf9\xbd\xdc\x48\xaf\xac\x70\x6a\x25\x1d\xdd\x5b\xea\xec\x10\x0b\x85\x7b\x2f\xa1\x25\x31\x3d\x21\x23\x58\x5f\xe0\x17\x3d\x73\x98\x82\xb6\x57\xcd\x6a\xa5\xa0\x9f\x4a\x79\x4f\x12\xba\xd5\xf3\x91\x69\x28\x2f\xe5\x82\xbb\x34\x14\x04\x82\x6e\x2a\x2a\xf9\x40\x45\xbf\x2a\x15\xe5\x1a\x11\x1e\x87\x8c\x72\x50\x91\x30\x19\xc5\xfb\xfb\x50\x08\x26\x8b\x69\x11\xeb\x40\x03\xc9\x75\xa0\x17\xe0\x8c\x6f\x58\x44\xa3\x98\xa3\x6b\x20\x28\xf7\xa2\x52\xc2\x61\xa1\x2a\x40\x46\x71\x2d\x24\x50\x01\x40\x1d\xa7\x22\xd4\x21\xfb\xdf\xd9\xc5\x55\x93\x86\xef\x42\xa0\xbd\x07\xa5\x69\xf6\x21\x90\xfd\x6f\x5f\xe3\x7f\x07\x1a\x3e\xd0\x70\xef\xaf\x7e\x1a\xce\xa8\x2c\x0b\x76\xc6\x24\x8b\xac\x92\xb8\x8b\x7e\xbf\xf7\x75\xb2\x69\xc0\x24\x07\x13\x2f\x7c\xa7\x87\x27\x31\x34\x0d\x44\x52\xcd\xa8\xea\xc6\x33\x42\x4b\xc9\x47\xd8\x94\xc5\x24\x4f\xa9\x84\xfa\x1e\x11\xcd\x29\x50\xb7\x04\x22\xd3\x7f\xaa\x02\xe4\x2c\x26\xf9\x4d\xa2\x84\xa2\xbd\x92\x08\x96\xd3\x02\x9c\x79\xe1\x69\x01\x5a\x9b\x71\x22\x72\x1a\x31\x71\x08\x46\xd0\x3c\x65\x7f\x27\xd3\xbd\xab\x8b\x93\xeb\xf7\x65\x9a\x6e\x2e\xc1\xed\xe0\x1f\x60\x87\xfd\x78\x72\xf5\xdf\xdc\x2f\xc1\x00\x73\x78\xc9\x20\xe7\xd5\x55\x99\x03\x61\xf9\xc0\xa3\x9b\x7f\x80\x0f\xea\x74\x0f\x2c\xc4\x5e\x2d\x1a\xb8\xab\x62\x2e\xa6\x3d\x24\x9f\x18\x94\xa8\xe8\x9c\x06\xd6\x21\x61\xab\x5c\x82\xc1\x82\x6b\x6f\x55\x27\x26\xb0\x06\xa3\x1d\x05\x65\x3d\xc1\x0f\xb4\x47\xbd\x92\xf7\x4e\x5b\xf7\x68\x31\xa6\x40\x2d\xce\xd0\x6f\xc9\xa2\xe5\x28\x2f\xd8\x3a\x61\xb7\x2d\x2a\x49\x3d\xb9\x18\x7b\x0f\x30\x7c\x5a\x5e\x69\x34\x7c\x80\x2d\x69\x25\x7e\xe6\xc5\x0d\x2d\xd4\x33\xf3\x0f\x13\x67\xfc\xcb\xe6\xff\xfa\x87\x3e\x8d\x56\x3f\xb3\xc6\xee\xcd\x5e\xb4\xb7\x7b\xc1\xe0\xa1\x98\x2b\x14\x51\xd7\x34\x2e\x23\x9d\x84\x9b\xc6\x3e\x25\x62\xeb\x19\xa5\x1c\x5c\x21\xce\x27\xdd\x47\x54\x35\xad\xca\x38\x55\x86\x71\x8c\x9f\x69\x84\x9f\x2c\x0a\xea\x7d\x9e\x33\x9e\x8d\x3e\xe5\x2c\xbb\x92\x34\xba\xb1\x8b\x70\xca\x85\xc1\xd5\x3b\xb0\x4d\x46\x31\x2b\x92\x35\x8b\x6d\x53\xdf\xa0\xe0\xc2\xa4\x70\x36\xbd\xa5\x1b\xe1\xe8\x9d\x0e\x1b\xd1\xb3\xa0\x81\x34\xa1\xb0\x1e\x17\xff\x60\xce\x13\xad\x58\xf1\xfd\x74\x16\x0c\x0d\x6f\x03\xbf\x36\x9e\xfd\x72\x36\xe9\x1b\x2d\xf4\x43\xb3\x87\x46\x12\x41\xf4\x2f\xe4\x97\xb3\x09\x11\xdc\xb8\xd8\x92\x88\x16\xfe\x84\x38\x80\x4c\x31\xcf\xf6\xf7\x25\x11\x48\x55\xa0\x2f\x9f\xcf\x41\x49\xad\xee\x1c\xda\x82\x57\x3c\x66\x10\x7c\x0e\x3c\xd2\x2f\x67\x13\x64\x45\x03\x56\x4c\x88\xf6\x61\xea\x6e\xb1\x2c\x66\x71\xe5\x57\xa0\x58\x1c\x98\x2d\x2f\xf8\x5a\x91\xeb\x19\x93\xa0\x21\xaf\x92\x8e\x04\xd6\x99\x59\xab\xc4\xf8\xc1\x31\xdd\x4b\xb0\x53\xde\x53\x45\x86\x9d\x95\xfc\xb0\xa3\x8e\x0e\x3b\x4e\xfc\xdc\x40\x2b\x1f\xb0\xf4\xda\x55\xbb\xf0\xc4\x6f\x8d\x35\x12\xbf\x4d\x55\x91\xd1\x94\xdc\x6a\x43\xbb\xb1\xa3\xfb\x15\x3d\x73\x48\x9d\xbe\x4e\xe2\x92\xa6\x44\x94\x33\x27\x6b\x26\xe6\xa0\xd1\x8f\x70\xcc\xb2\x31\x69\x4a\x2a\x81\x84\xea\x0a\x3f\xc1\x7b\x05\xa8\xa4\x79\xa9\x48\xce\x45\x02\xae\xfd\x7b\xa4\x69\xe3\x17\xc6\x49\x3b\x23\x3c\x8a\x4a\x7f\x66\xd6\x8c\xe4\xb4\x90\x49\x54\xa6\xb4\x48\x37\xea\x40\x98\x10\x6a\x19\x95\x69\x06\xdc\xab\x21\xf0\x09\x6b\xd2\x09\x59\xd0\x24\x63\xf1\x98\x84\x64\x9f\x4a\x4c\xc4\xb8\x83\x3a\x0c\x0e\x89\x60\xcc\x3a\x19\xa4\x7c\xb1\x9b\x56\xb1\x9b\x09\xa5\x2d\x05\xcd\x7b\x54\xaa\x0e\x7a\x5f\xf4\x1b\xa1\x83\x89\x54\xab\xf3\xff\xd2\xe2\x9a\x71\x6f\x1e\xd2\xc6\x32\xbd\xc3\x0c\x3c\x9d\x24\xf3\xbc\xd1\x01\xa5\x7e\x78\xfc\x47\x0d\x56\x0d\xd0\xbc\x33\xdb\x4a\x2d\xc9\x8c\xce\x03\x84\xd6\xab\x15\xcf\x12\xc9\x21\xf5\xe0\x9c\x17\x0d\xd1\x7f\x1c\x72\x05\xae\x8b\x93\xb5\xbc\x20\x3a\xbb\xd4\x22\xe3\xea\xab\x2a\x5c\x73\x7f\x9f\x9c\x4f\x7e\xba\x22\x71\xb9\x5a\x79\x7d\x55\xed\x36\x8c\x07\x9e\x61\x2b\xcc\xbd\x4f\x37\x64\xb6\xa9\x45\x18\xd6\x8d\xd6\xbe\x41\xcd\x5e\x57\x65\x2a\x93\x3c\x75\xf2\xdd\x60\x62\x52\x52\x0a\xf4\x46\x53\xff\x31\xc9\x25\x30\x12\x3c\xc4\x5b\xe9\x97\x47\x78\x82\xfb\x04\x28\x22\x7c\x3f\xc0\x3a\x41\xbe\xbb\x2d\x68\x1e\xb2\xff\x20\x38\x81\x79\xdb\xdf\x7f\xbe\xbf\x8f\xc3\x69\xe6\x8d\x2c\xc1\x76\x64\x78\xdd\xfd\xfd\xe7\xff\x43\xc1\xe2\xf9\xe1\x9a\xc9\xe5\xcb\x7d\xcf\xab\xa2\xf3\xd2\x19\x18\xa0\x36\xb6\x1e\x56\x37\x63\x8b\x24\x33\x33\xaa\xe1\xf6\xf7\xd1\x27\x3b\x15\x3c\xe4\x75\x56\x81\x70\x7f\x5f\xcf\xed\x3e\x72\x70\x40\x49\xbe\x16\x2d\xb9\x19\xfc\x17\xd7\x0e\x3c\x29\xd8\x3c\xb9\xeb\x7f\x4d\xb0\xbd\x31\xee\xd5\x8f\x18\x1c\x8b\x6d\x6e\xe4\x98\x65\x52\xf1\xd3\x7e\x1b\xce\xb6\x7b\x05\xc4\xa8\x83\x2a\x46\xb1\x5e\x65\x22\x96\x68\x63\x5e\x79\x34\x65\xad\xb0\x12\x63\x72\xc1\x25\x3c\x9a\x84\x65\xeb\xa4\xe0\xd9\x0a\xde\x22\xae\x4b\x8e\xd2\x8c\xcc\x14\x2f\xb8\x62\x92\xa6\x88\x81\xbc\x88\x96\x4c\x11\x7a\xc9\xfd\xb5\x72\x2d\x53\x8b\x0c\x22\xcd\x15\x59\x2e\x12\x2a\x59\xba\xa9\xe3\x0e\x2f\x0b\x37\x74\x1a\xb4\xe6\x3c\xba\x09\x64\x0a\x57\xef\xba\xce\xa9\xab\xbd\x38\xd4\x59\x47\x34\x4d\xf6\xf7\xdd\x6c\xac\x6a\xd4\x8a\x29\x76\xba\x79\xef\x8d\x71\x62\xdf\xdf\x97\x34\x37\x03\xb9\x98\xa3\x26\xb8\x37\xce\x5c\xb2\x79\xc1\xc4\x12\x70\x62\x4d\x3b\x9d\x06\xce\x03\xfd\x9c\x1c\x35\x09\x07\xcb\x1b\x12\xa3\xa0\x17\x5c\xc1\x44\x44\x33\x81\x19\x56\x6a\xf7\x8b\x93\x35\x2b\x92\xf9\x46\x67\x34\xc2\x12\xb7\xa0\x8d\xc3\x3e\xda\xc5\xd8\x4b\x5f\x35\x6f\xae\x08\x9e\x66\xfb\x2b\xd4\x5e\x63\x16\xf0\x17\x3b\x0a\x4e\x49\x9e\xf4\x8e\xf0\x3f\x9f\x9c\x5b\x6e\x9d\x5b\x5e\xac\xee\x51\x5c\x65\xf7\x45\x1c\xf4\xeb\x9f\x31\x3d\x68\x75\x25\x79\x95\x06\x66\x4c\x3e\xe5\xe8\xab\x52\x65\x30\x57\x82\x7b\xb1\xd2\x9e\x1c\x7e\x86\xdd\x6a\x43\xd0\xa5\x14\x6f\xa6\x12\xc4\x72\xce\xd3\x1a\xbb\x9d\x25\x29\x39\x28\x33\xc1\xe4\xb3\x9d\x99\x6e\x05\xad\x8f\xd7\x9f\x7b\x41\xea\xe3\xf5\x67\x83\x36\xea\x9f\x90\xc1\x45\x9a\x15\xd6\x02\xb9\xc7\xe4\x8a\xf9\x3d\x79\x35\x14\xd5\x56\xd4\x18\x4e\xf0\xfa\x9b\x37\xbb\x27\xb9\xc1\x38\xcb\x1d\xaf\xc4\xfe\xb9\xaf\x57\xeb\x85\x20\x05\xc3\x04\xa1\x7e\xeb\x43\xea\xb8\x91\x63\xd4\x5f\x5d\xb9\x4c\x32\xae\xe9\x9f\xf6\x39\x02\xef\x28\xd7\x12\xe0\x45\x80\x82\xdf\xd8\x82\xb9\xd6\xd7\x5b\x81\x16\x9c\xcf\x5e\xd4\x92\x38\x9a\xe9\x0b\xdc\x55\x47\x62\xa8\xef\x5f\xec\x9c\x2a\xc0\xcc\xd0\x33\xc8\xef\xbc\xde\xdc\x2a\x78\x4c\xa2\xc6\x99\xfe\x5e\xf1\x75\x66\xed\xea\x15\xf7\x02\x82\xa1\x37\x48\x4d\xc3\x9f\x08\x72\x52\x4a\xbe\x33\x71\xc0\xb9\xde\x27\xa9\x64\x05\xe4\xc5\x0d\xba\x66\xf6\x1f\xe7\x8c\x65\x9b\x7e\x1e\x9e\xe7\x81\x7e\x41\xef\xce\x36\x7f\x44\x93\x24\x2b\x66\x59\x82\x34\xd4\xa8\x16\x8c\x5d\x6a\xcb\x03\xb3\xe1\x6e\x19\xd4\xa9\x39\x82\x7d\xa7\x0f\x65\x29\x18\xb8\x0c\xfe\x9f\xef\x4e\xaf\x6d\x2b\xff\x7b\x2b\x24\xa3\x31\x74\x86\x77\xc1\x3e\xeb\x09\x44\x0b\x2e\x59\x4b\x55\x86\xf6\x73\xf8\xc0\xa3\x9b\xf7\x61\x5f\xe2\xe6\xfd\xdf\xee\x64\xae\xbf\x7a\xde\xa4\x53\xfe\xd0\x4c\xe0\xdb\x8f\x02\x25\x38\xff\x8f\xc9\x7f\x57\x6c\x2f\xdd\x40\xe6\x49\xf4\x6b\x82\x10\x27\x60\x57\xb4\x21\xce\xb6\x36\xaa\x18\x7f\x45\xeb\x44\x3a\x96\x2a\xbb\x9a\x83\xb9\xc3\xe4\xb8\xae\xa2\x2b\x85\x29\x98\x2e\x36\x93\xdc\x26\x2f\x09\x70\x51\x52\xc9\xd2\x85\x22\x6e\x94\xc4\xc9\x7c\xce\x0a\x96\x49\x92\x53\xb9\x7c\xe6\x3e\x28\xcf\x8b\x32\x7b\x7e\xa7\xf5\x3a\x6a\xdd\xf7\x25\x16\x0a\xc2\x93\x82\xcf\xd8\x0e\xb4\x39\xd0\xd3\x46\xf9\x26\x2b\xd6\xb4\xf2\x7a\xd1\x18\x8b\x82\x60\xc2\x17\x2a\x25\x5b\xe5\xa8\x11\xa1\x11\x88\xcc\x75\x97\x5a\x38\x9c\x64\xae\x93\xe1\x06\x12\x81\xd0\x35\x4d\xa0\x3a\xf8\xb8\x9e\xf2\x65\x45\x6f\x4c\xc6\x16\xf0\xe1\xd7\xc9\xbb\x92\xb5\x96\x3d\xcd\xe9\x07\xd4\x72\x11\x86\xe6\xb2\xf8\x10\xd2\x7f\xa9\xeb\x04\xc3\x9c\x4e\x3e\xbb\x87\xf2\xed\x8b\xd5\xbd\x89\xb6\x82\x66\xcf\x40\x8f\xda\x09\x34\x42\x3c\x7c\xb0\x07\x40\xfb\x76\x66\x42\x6e\x6b\x30\x86\x3c\x1d\x2f\x0e\x9d\xa7\x0b\x4c\xc0\xa5\x09\xed\xb0\xa6\x8f\x20\x1f\x0a\xc2\xa5\x58\x52\xef\x09\xc2\xf5\x42\x02\x96\xa6\xf5\x27\x57\x4b\x82\xfe\xf7\x5b\x09\x81\xea\x10\xcd\x49\x8d\xc9\xcf\xea\xe0\x74\x6a\xa4\x2a\x93\x74\xa2\xc4\xcb\xea\x22\x1d\x86\x23\x1c\x4d\x3e\x34\x35\xa2\xba\x4e\x3a\x4b\x1b\x2f\x36\x86\xb2\x38\x59\xa2\x57\xbc\xd4\x35\xee\xb5\x53\xb5\x2e\x8c\x92\x71\x7f\x0a\x58\x5e\x98\x16\x73\x93\x6f\x1f\x17\x54\x4b\x19\x28\x2c\x7b\x7d\x5f\xb4\xf9\x48\xb3\x45\xca\x1e\xfe\x4a\x7e\xa4\xc5\xcd\x47\x2a\xba\xd3\x97\x9c\x37\x3a\x18\xc4\x5b\xa9\x7f\xbb\x1a\x1e\xc8\x40\x21\x14\xb1\xf4\xdb\x1b\xae\x11\x29\xd4\x38\x64\xa6\x48\x2a\x14\xc1\x34\x79\xb1\x66\x0c\x12\x50\xaa\x5f\xc8\x92\xdd\xd1\x98\x45\xc9\xaa\xca\x1d\xa0\x10\xc8\x8b\x27\x92\xa4\x8c\x0a\x49\xbe\xc3\x31\x05\x93\x87\xe0\x7b\x80\x89\x3f\x21\x9a\x32\xa5\x62\x69\x9e\xd0\x8d\xc6\xc0\x95\x59\x45\x40\x29\xaa\xdd\x71\xc1\xb3\x04\xe2\x5e\x6b\xc7\x78\x37\x9f\xbf\x80\x8f\xef\x14\x31\xd8\x13\xf8\xe3\xd7\xaf\x76\x66\x9e\x11\xd8\x17\x27\xd7\x9f\xb4\x7f\x8c\x95\x16\x91\x3f\xb9\xe7\x71\x4f\xb8\x90\x3f\x17\x89\x64\xe0\x79\xbb\x33\xe9\xf7\x77\x6f\xf2\xe7\xe0\xc2\x1f\xa4\x12\x8a\xbf\x8e\xd5\xc9\x50\x72\xab\x86\xda\x4e\xf5\x65\x6b\x48\x45\x4b\x16\x63\x54\x04\xe4\x14\x2d\x28\x98\xeb\xfc\x12\x19\xe6\xf9\x33\x39\xaa\x31\x4d\x27\xa6\x5b\x86\x49\x6e\x29\xbe\xec\x51\xca\x67\x33\x56\x20\x4f\x46\xb3\x1a\x1d\x0a\x9b\x17\x85\x93\xb4\x0d\x74\xe8\xea\x41\x32\xbd\x69\x9e\xa7\x89\x61\x4d\x5c\x5c\xb1\xc6\x9b\x80\xd0\x9e\xb3\x48\x6e\x53\xca\xf1\x83\xd2\x86\x99\xa1\x76\x17\xbc\xbc\xfd\xee\xa1\x8b\xd0\xd2\x98\x49\x4c\x09\x3a\x17\x1d\x26\xe3\x1c\x71\xbb\x10\x16\xc2\x9b\x9a\x87\xd6\x2e\x42\x58\x4b\x92\x1f\x2b\x96\xa1\x72\x4c\x3a\x82\x0c\xbe\x93\x26\xac\x11\x3c\xe9\x81\xb9\x00\x55\x59\x40\x35\xa9\x03\x73\x71\x50\xab\x2d\x11\xe0\x84\x04\xea\x3d\x6d\xb8\x51\x63\x53\x9d\x14\x40\x3b\xdd\xcf\xca\x45\xf0\x21\x54\xf8\x3b\x4f\xee\xd0\x0a\xaf\xdb\x9b\x22\x7c\x6f\xc6\x2f\x5f\x5a\xd6\x5f\xbd\xbe\xa8\x51\x5e\xab\xef\x21\xb5\x31\x64\x49\xf3\xea\xd9\x36\x9a\x39\x36\x02\x83\x0d\x98\x92\xfc\x90\x50\xb2\x74\x72\xe2\x61\xdc\x64\x3d\x05\x9e\x6f\x48\xc8\x8a\x57\x43\xe2\xfb\x48\xb4\xeb\x23\xed\xb4\xd1\x29\xb6\x4d\x6c\xd3\x50\xe0\xb9\x31\xf6\x1a\x83\x6d\xc0\xb2\x06\x11\x19\x07\xc9\xdc\xb4\x43\x1a\x81\x3a\xaf\x11\x24\xb2\x32\xe8\x1b\x4e\xe9\x11\x50\xe5\xdc\x94\x33\x76\xc1\x63\x36\xe1\x85\xbc\x84\x1c\x12\x9d\x17\xf2\xdf\xb7\xba\x40\x62\x13\x61\x6d\x2e\xb0\x15\x37\x21\x45\x60\x5b\x3a\xc7\x0b\xa9\x12\xf9\x8e\xeb\x01\xcd\x73\xab\xf6\x52\xef\xb6\x93\x85\x32\x58\xab\x11\x9e\xc6\x24\x5f\x0b\x9d\xfb\x0d\xc1\x5c\x22\x23\xc7\x04\x33\xcb\x02\x84\x42\x5b\x51\x95\x75\xb9\x2d\xc8\x4c\xcb\xbe\x2e\xf6\xbc\x86\x14\x11\xaf\x5f\xfd\xed\xe8\x6f\xde\x34\x6d\x61\x03\x61\x28\x4f\x4a\x8f\x4c\x29\xdd\xb9\x52\xba\x92\x53\xec\x9e\x9e\xa2\xd5\x7e\x97\xf2\x05\x24\xa0\x78\xaf\xe3\xd9\x2f\xd9\x82\x75\x5a\x27\x3e\xf8\x3a\xb9\x97\x44\x51\x72\x1d\x2b\x12\x41\x72\xdc\x24\x20\x4e\x9b\xb0\x91\xa4\x20\x30\x22\xa4\x0e\xe4\xa5\xcc\x95\x00\x92\x61\x4d\x0f\x43\xe4\xc1\x90\x8b\x18\x06\x29\xfd\x42\xde\xa6\x30\x99\x76\x13\x02\x3b\x18\xbc\x04\x55\x99\x84\x45\xb2\x66\x99\x2f\x7d\xa5\xcd\x26\x12\x83\xed\x39\x60\x1f\x9c\x03\x9b\x84\x4f\x36\xbc\xd0\x88\x8f\x7a\xf9\x90\x5f\x22\x60\x72\x6e\x3b\xf8\x94\x2f\x7a\xeb\x32\x3e\x54\x6d\xcd\x33\x3a\x2f\xd3\x14\x64\x7a\xc3\xf4\xe0\xcd\x49\xf9\xc2\x3c\x5b\xbe\xad\x00\x1f\xeb\x3c\x66\x20\x4a\xa5\x1c\xea\xc1\xd4\x74\x03\x6b\x5a\x3c\x4f\xf9\xe2\xb9\x2b\x81\x8c\x53\xee\xad\x51\xd4\xb1\xcb\x9e\xf6\xaf\x0f\xa6\x65\xa5\xa4\x59\xd4\xcc\x5d\x0e\x69\x00\x81\xbb\x50\xe2\x74\xe8\x4a\x7d\xf8\xf4\x83\x79\xc4\xeb\x26\x99\x88\x8f\x30\x84\xf4\x1e\x3b\xb9\x62\x6b\x56\x24\x72\xa3\xce\xa2\xcf\x7e\xdc\xf6\xee\xae\x84\xfe\x9e\xd0\x19\x07\xf5\x81\xba\x3d\x0a\x85\xbc\xb4\xa7\x60\x98\x01\xdc\x94\x17\xe4\x0b\xad\x8e\xaa\x36\x76\x9e\xcd\xf9\x03\xf6\x73\x15\x15\x8c\x75\xc7\xad\x7f\x68\xf6\x78\xb4\x3d\x09\x19\xf3\x52\x3e\xe6\x8e\x36\xdd\xcf\xe2\x87\x5a\xf3\xc7\xdb\xcb\x46\x38\x97\x90\x5c\x70\x9d\x71\x38\xe3\xe6\xa2\xc1\x63\xa6\x5b\xb5\x2a\xf0\xef\x03\x84\x15\xbd\x03\xcb\xc7\x55\xf2\x2f\x1f\x8e\xb6\xbe\x56\xa6\xb0\xe0\x49\x1c\x77\xa6\x47\xd9\xff\xe8\x34\xae\x22\x51\x6d\x64\x27\x2f\x48\xcc\x57\x34\xc9\x88\x93\x34\x25\xc4\x54\x20\x23\x8c\x8e\x45\x34\x13\x8a\x31\xfe\xe9\x23\xf9\x67\xc9\x20\x7b\x9a\x82\x5e\x94\xf2\x32\x1e\x25\x59\x22\xed\x2a\xa1\x4e\xa3\x35\xd8\xfa\x7d\xe6\x97\xa0\x79\x2b\x50\x57\x17\xdb\x70\xf6\x15\x8d\x96\x49\xc6\xac\xea\x27\xe3\x6b\x3a\xa2\x79\x42\x0e\x30\x83\xe6\xe7\x59\x99\xc9\xd2\x3b\xa4\x69\x3a\x32\xcb\x78\x36\x26\x27\x26\x12\x61\x8e\x04\xf6\x20\xa2\x82\x41\x40\x7e\x86\xae\x54\xcf\xc8\x8a\xd1\x2c\xac\x9b\xaa\xd9\x20\x21\xf0\x82\x49\x52\xe6\xa0\x5d\xb8\x38\xb9\xc6\xec\x42\x46\xd5\x66\x26\x06\xea\xdf\x81\x41\x2f\x5f\xfd\x6d\xfc\x62\xfc\x62\xfc\x72\x67\x34\xd2\x93\x04\x5c\xe6\xfc\xa8\x60\x42\x09\x40\xcc\x53\xff\xd6\x4a\x30\xbb\x62\x3c\x6b\x74\x5f\x0c\x94\x77\x5b\xcd\x20\x19\x19\x3c\xe6\x58\x48\x65\x5c\xc3\x34\xc5\x55\x2b\x08\xed\xef\xab\x9b\xb5\xbf\xff\xec\xd0\xf1\xd8\x0d\x48\x66\x00\x4a\x0b\xc8\x43\xf4\x76\x78\x79\xf4\xfd\xf8\xd5\xb7\x6f\xc6\xfa\xbf\xc7\xdf\x81\x94\xe7\xce\x75\xec\xee\xcb\x2b\xd1\x9f\x67\x90\x64\x0d\xb2\x96\x0a\xed\xd7\x5a\x1d\xa2\x31\x13\xcc\x98\xb6\x14\xc4\x0e\x81\xfb\xee\x6f\x7f\xfb\xb6\x25\x59\x70\xe8\x86\xca\x72\x97\x44\xde\x1f\xaf\x3f\x7f\x8d\x42\x5f\x60\xff\xaf\xa9\x4c\x68\x1a\x41\x9e\x15\xab\x03\xf5\x1b\x2b\x3e\x5e\x7f\xae\x67\xe9\xab\xca\x5b\xb5\x95\xb6\x7a\x58\x1d\xab\x8c\x4a\xa3\x09\xeb\x99\xa2\xc0\xd1\x9d\xe9\x1e\x8e\xa5\x93\x66\xcd\xa0\x7b\xe0\x4e\xb4\x57\x6d\x28\x95\x1f\xb2\xca\x0a\x25\xe1\x5a\x9b\x22\x21\x19\xa1\xee\xfa\xc0\x0b\xc0\x5a\x00\x75\xbc\x7d\x88\x90\xda\x8a\x1b\x8d\x20\x7e\x37\xd6\x1e\x30\xa0\x5a\xb0\xd6\x31\x59\x10\xfb\x69\x68\xad\x3e\x8a\x59\x04\xcf\xc8\x41\x02\x36\x3d\x23\xac\x55\xba\xa7\x8f\x27\x57\xff\xed\xf3\xbb\xcb\x93\xb3\x77\x44\xd2\x62\xc1\xa4\xc7\xc9\xbb\xe3\x84\xac\xac\xfa\xbb\x65\xad\xd4\xf9\x2a\x61\x11\xce\x71\x57\x89\x2b\xb5\xe0\x2c\xec\xf9\x28\x00\x87\x6c\x24\x18\x12\x45\x21\x99\x12\x22\x48\x0c\x07\x6c\x63\x16\x2f\x4e\xae\xb5\x3d\x02\x7c\x3c\x5c\xe5\x91\x57\x4b\xc9\x96\x74\x9d\xf0\xc2\xe6\xaf\xd5\x36\x61\x81\xce\x4b\xc1\xcc\x0a\x8f\x9b\x07\x31\x63\x32\x4d\xb2\x16\xa3\x53\x1b\xbc\x21\x6e\x4f\x2d\xf7\x92\x2d\xfa\xa4\x4d\xfa\x54\x6f\x6f\x1e\x1a\x37\x27\x5b\x81\xbf\x60\x9c\x86\xe3\x86\x1c\x7e\x73\x67\x2c\xe5\xd9\x02\x2b\x41\x9f\xab\xdb\x07\xbe\x95\x23\x3d\x10\x2a\x04\x9f\x57\x5e\x61\x31\xcb\x53\xbe\x59\xb1\x4c\x86\xf9\x0d\x13\xf8\x66\x0d\xdf\x31\xa4\x1e\x5a\xf2\xdb\x2a\xf9\x33\x4e\x7e\x80\x19\x4c\x2b\x8d\xe6\x8a\xc7\x2c\xf5\x8e\x8c\x7c\x09\x8a\x61\xd1\x7c\x41\x34\x2f\xe0\x38\xdf\xa9\x1b\x09\x63\x47\x7c\x95\x97\xba\x30\xd0\x33\x5d\x68\xbc\xf4\x7b\x7f\x56\x22\xf2\xaf\x28\x1b\xfd\x56\x9d\xca\x17\x0d\x03\x64\x6d\x9c\xcd\x40\xfe\xf0\x52\x16\x3c\x1b\xab\x6f\xbd\xab\xd5\x4b\xc1\xda\x44\xd5\xa3\xf7\x6e\x95\xcb\xcd\xae\xac\x08\xba\x39\x40\x6d\x10\x2a\x97\x3d\xa5\xc9\x89\xa7\x93\x1b\xda\x33\xdb\xe8\x33\x80\x4c\xbc\x50\xc2\x3b\xa2\xfe\x52\x49\x3a\x21\x21\x3e\xe1\x18\x51\x6a\x52\xff\x99\x5c\xd1\x87\x58\xd2\xe2\xc4\x51\xdf\xa7\x74\xc3\x8a\x7e\x99\x85\xee\x07\x95\x82\xaf\x98\x5c\xb2\x52\xfc\xc0\x3f\x32\x59\x24\x51\xdf\x7a\x3f\xfb\x93\x60\x57\xa3\x17\x10\xe4\x07\xae\x98\x63\x30\x05\xaf\xb0\x89\x9f\x5d\x4b\x53\x8c\xf4\x33\x6e\xce\x0a\x97\xaa\xf1\x4d\xd5\x36\x88\xae\xad\x72\x10\x1d\x22\x05\x14\xcc\xef\x99\x6e\x72\x1e\x22\x67\x80\x8a\x62\xd1\xc8\xd2\xad\x17\xa5\xd3\xef\x61\x8c\x51\x5c\x46\x81\xe7\xd6\x59\x11\x26\xf6\x7b\x60\x3d\xc5\x0a\xf8\xf7\x06\x7d\x03\xf0\x46\xb1\xdc\x80\x5f\x0b\xec\xb5\xdc\x94\x64\xc6\x70\x6d\x4b\xa1\xa9\x2d\x3d\x3c\x50\x67\x6b\x8f\x81\xb0\x9b\x8e\x0d\xfe\xc8\x85\x95\x09\xd0\x18\x6e\xf2\x8e\x56\x4d\xbd\xa4\x49\x1f\xb0\xde\xa6\xc9\xe2\x9c\x64\x31\xd0\xea\x6a\x77\xec\x61\xb7\x47\x2f\xb3\x97\x9c\xb3\xb5\x39\x57\xe0\x31\xa9\x0b\x1e\x7d\x83\xdf\xbf\xf8\xbe\x45\x7c\x0b\x30\x3b\xd5\x06\x27\x68\x07\xbb\x37\xa2\x7a\xfb\x57\x84\xc2\xf8\x3a\x0e\x54\xa2\xe5\x06\xfd\x9c\x14\xec\x87\x92\x16\xf1\xbd\x4f\x21\x30\x42\x75\x0e\xb6\x9c\x52\x1b\xae\xdd\xf7\x24\xfc\x22\x21\x1e\xce\x3d\x4f\xc2\x37\xa4\x39\x9c\x47\x3f\x89\x82\xad\xf8\x9a\x99\x7c\x59\x90\x71\xad\x53\xe8\xfb\xb9\x1e\x58\xab\xeb\x4f\xae\x59\x3d\x65\x9a\xa9\xe7\xb4\x66\x21\x7f\xb2\x19\x63\x6e\x12\x36\xcb\x79\x8c\x75\xcc\x2a\x4a\x74\x26\x27\x1f\xa6\xd7\xb0\x0c\x86\xe3\x10\x10\xca\xde\x01\x7e\x4d\x34\x8e\x9b\xa9\xdc\x4c\x0c\xa0\x29\x0b\xe7\xa4\x00\xd4\xe9\xbd\x18\xf5\x0f\x7a\xcb\x70\x2d\x7a\xbf\x66\x31\xe9\x46\x27\x1f\xd4\x33\xec\x7c\x06\x3a\x3d\x5a\x6f\x47\x82\xcb\x66\x8f\x5a\x4c\x8c\xfa\x7b\xcb\x7f\x3b\x98\x3b\x46\x3b\x5c\xca\x52\x54\xfe\x57\x8a\xe3\x86\xa0\x7e\x70\x57\xab\x79\xab\x7d\xd4\x3c\x7c\xc6\xb3\xd1\xbf\x58\xe1\x55\x2c\x25\x8e\xf6\xd1\x11\x0c\x44\xdd\xe4\xb8\xb3\xc1\xda\xc2\xe9\xfa\xfa\x43\x7f\x10\x5d\x5f\x7f\x70\xfd\xf7\x46\x92\x63\xee\x63\x13\x6f\x01\x32\x28\x92\xea\xd1\x6d\xa0\xe6\xb8\x86\x8f\x86\x62\x33\x39\xf1\xae\xdb\x50\x48\xb2\xab\xeb\xc8\xa5\xa7\xd3\x03\x5c\xf6\x9d\x5a\x20\xbb\xba\x8d\x90\x25\xf5\x6b\xfb\xef\xeb\x36\x82\x69\x3c\x8d\x87\x48\xbb\x40\x70\x5f\x70\x63\x16\xc9\x7e\x50\xbe\x32\xc6\x5a\x37\x93\x40\x61\xcc\x88\x0b\x86\x7e\x77\xa6\xa2\xb1\x1f\xff\x6d\x11\x82\x31\x19\x91\x9f\xb5\xc2\xee\x7c\x22\x8e\x51\x0d\xe6\xcd\xef\x8b\xd1\xbe\xa5\x2f\xe8\x94\x58\xda\x35\xd2\x30\x3d\x9f\x9c\x7c\xac\xfb\xd1\x8c\x60\x68\xf5\x3d\x9c\x65\x6d\x44\xd3\xfd\x5e\xa0\xdb\x64\x91\xc9\x21\xd0\x05\xc0\xcb\x66\x07\x24\x97\xb5\x0c\x47\x58\xe3\x82\x67\xc2\x28\x02\xfd\xaa\x21\xad\x80\x43\xe4\x90\x48\x7b\xae\x2a\x2e\x1e\x5e\x9d\x32\x73\x4a\x76\x8d\xb4\x34\x0a\x15\x68\x79\x96\x86\x13\x4e\x84\xc8\xb0\x9a\x0a\x1c\x27\x43\xea\xb5\x7a\x16\x7c\x9b\x8d\x1c\xf4\x0f\x74\x8d\x2a\xa7\xcb\xfa\x28\x62\x6c\xb3\xf7\xb7\xd4\xfc\x33\x55\x1b\x69\xaa\x9d\x95\x9c\x6d\xa3\x95\x67\x4d\x31\x8f\x7b\x5e\x16\x39\x87\x24\x14\x8d\x89\xbc\x64\xab\xa6\x9b\x4b\xb2\x18\xeb\xc9\xce\x9b\x90\x15\xb5\x82\x8e\x9a\xdf\x2e\xbd\xb9\xf5\x3b\x02\xc2\x57\xd4\xa7\x80\x20\x7d\x52\x0a\xad\x12\x9f\xa2\xab\x47\xd7\x96\x18\xf0\x91\x5a\x90\xf7\x6b\x5f\xf0\x41\x5b\xe0\x77\x03\x39\x3a\x79\xa4\xc6\xa1\xf7\x3f\x61\xaf\x9e\x25\x74\xe8\x35\x6d\x3b\x46\xa3\xcd\x71\x4c\x75\xda\xec\x4e\xfb\x08\xf9\x5f\x00\xef\x89\x57\x68\x2d\x34\x39\xac\x66\xdb\x3f\x74\x82\x04\xb7\x7e\x7c\xdc\xbc\x02\x61\x44\xea\x95\x9d\x2a\x8c\x4c\x3d\xba\x77\x24\x15\xf0\xa2\x54\x10\xa9\x1e\x90\x4f\x40\xeb\xd0\x3e\x70\x9e\x4f\xb0\xf2\x49\x1f\x65\xf0\xcf\x28\x7d\xa0\x3f\x1a\x98\x9d\xd7\x0a\xd2\x82\x81\x2a\xb4\x62\x7b\x0f\x4d\x39\x95\xb6\x97\x2c\xe5\x3c\x17\x4e\xad\x7a\x48\x65\x53\x4b\xf6\x83\xfe\xdb\x98\x47\x5b\x97\x44\x20\x10\x1b\xaf\xb6\x1b\xf4\xea\xd2\x29\xd4\x31\xd1\x8b\xcd\x2e\x77\x76\x71\x72\xbd\xbf\x1f\x37\xc3\xff\x3f\x67\x90\x1f\xa7\xaa\x25\x6f\x32\xda\xec\x79\x65\xa5\x24\xb3\xa5\x7d\x04\xc3\x12\x8d\x7a\x87\x7a\x3b\x11\xcf\x64\x92\xe1\x1b\x32\xd3\xc9\x46\x6b\x65\x54\x7c\xa3\xde\x27\xc9\xb9\x48\x62\x16\xd1\xe2\x24\x8a\x58\xaa\x5f\xbd\xbe\xf2\xed\x55\xb0\xab\x55\x88\x61\x99\x8f\x15\xb0\x5c\x66\xaa\x00\x63\x66\xc7\x78\xb0\xee\x0b\x1c\x4f\x7b\xe4\x73\xae\xef\xe6\xb3\xaf\x97\x61\xa7\x09\xcd\x78\xb6\x59\xa9\xd7\x4d\xd3\x23\xed\x73\xeb\x35\xe5\xa1\xdc\x4c\xb3\xd8\x14\xf5\xc5\x02\x77\x98\xf6\x5d\xe1\x1c\xaa\xeb\xc7\xbc\x58\x8c\xc9\x07\xbe\x10\xe4\x16\xeb\xac\x2a\xf6\x5d\x96\x45\xa0\xc6\x93\x76\x42\xc5\x6a\xd3\xc6\x18\xef\x44\xd6\x43\x3e\x49\x0a\x75\x7f\x92\x79\x12\xd1\x4c\x56\x59\x30\xd7\x65\x9a\xb1\x02\x53\xb3\x79\x23\x59\x97\x54\xa0\xb0\x1b\x27\x02\x8a\xdb\x55\x8e\x7c\xc6\xbd\x98\xcf\x6d\x84\x22\x94\x31\x2a\x45\x27\x46\xde\x4b\xde\xaf\x9f\xdf\x79\x96\xc8\x84\xa6\xa1\xdc\xde\x6d\x87\xe8\x76\xad\x57\x3c\x36\x25\xc7\x63\xf5\x93\x5f\xee\x9f\x73\xcb\x4f\xaf\xe8\x0d\x43\xdb\xbb\x1a\xb8\xe1\x94\xba\x33\xb3\xdf\xdc\x5e\x4f\xe9\xaa\xb9\x35\x2d\x5f\xd5\xb6\xb5\x25\x5a\x87\x4d\x67\xb8\x27\x8f\xb4\xf8\xdd\xd1\x9b\x7b\x6d\x2a\x54\x0c\xa9\x6b\x63\xe1\x32\x4a\x98\x1f\xd5\x29\xae\x06\x8c\xba\x92\x20\x82\x71\x3a\x5b\x45\x9d\x8c\xea\x06\x29\xeb\x22\x89\xc6\x84\x9c\xcf\x91\xb0\x54\x69\x51\x53\x5a\x66\x7e\x60\x61\xc0\x89\xbf\x54\x14\xde\xf0\xca\xfc\xa4\xf3\xc2\x4a\xac\x2b\x0e\x29\x20\x67\xe5\x7c\x57\x16\x1f\x8a\xa9\xf7\x25\x5a\x3f\xfd\xf2\xe1\xe4\xa2\x6f\x76\x04\xf0\xfe\x0f\xf9\x1f\xc0\x48\xf5\x0c\x01\xc0\xf2\x41\x51\x07\xfc\x51\x0b\x31\xe0\x6c\xba\x9d\x2e\xc1\x37\x68\x23\x85\xc2\x57\xca\x97\x00\x10\xec\x93\x30\x01\xb6\xd5\x9a\x31\xc1\xd9\x3d\x82\xc6\xbf\x4b\x9b\x4f\xa1\x35\x79\xc2\xcb\xdd\x93\x27\x98\xad\xfc\xd4\x59\x52\xc2\x6e\xe6\xa7\xa3\xd6\xed\x1c\x3d\xd6\x76\x5e\x7f\x7f\xcf\xed\xdc\x27\x8f\x1b\x74\xfc\xe9\xe2\x7c\xd7\x7e\x56\xaf\xde\xf7\x42\xfd\xdc\xe8\xb0\x1d\x4a\x62\x5b\x38\x7c\xaa\x0f\x8c\xf6\xf2\x1c\xb0\x2c\xa2\xb9\x28\x53\x93\xa6\x71\xfd\xc6\xba\xe4\x70\x24\x23\xf8\x25\x54\x30\x4b\xa9\x4d\x11\xe0\x73\x8d\x22\x0f\xe6\x8e\x9a\x20\xe9\x81\x5a\x4d\xa0\xfc\x74\xf4\x60\xb0\x1c\x79\xc0\x72\xe4\x03\xcb\xd1\xd7\x06\xcb\x8f\x5c\xc8\x77\x59\x54\x6c\xf2\x5d\x78\xe1\x9f\x5b\xbb\xb7\x80\xcb\xcb\x8b\x71\x21\x47\x92\x8f\x74\x4a\x27\x33\x98\x03\xd9\x87\x1b\x88\xed\x7e\x6d\x3c\xe9\x85\x3f\x4d\x5e\x60\x9f\xb5\x6e\x0d\x2d\x0e\x38\xf5\x68\x77\xba\x40\x30\x92\x25\xae\x0e\xde\x98\x11\xdd\xcd\xd9\x65\x8e\xef\x93\x91\xc9\xbf\xc9\x5d\x30\xbe\xd1\xf1\xde\x1b\x3d\xea\xdc\xe8\x62\xb4\x3e\x7a\xd8\x26\xff\x9d\xb1\xfc\x24\x4d\xd6\x3b\x9c\xa2\xed\x52\x61\x68\xb5\xce\x89\xe2\xfb\x85\x64\x99\x54\xcd\x68\xb0\x40\x62\x8e\x4a\xe4\x2b\x26\x1b\x76\x18\x27\x42\xfa\xde\x9b\xfa\x00\x2b\x48\xb2\x45\x2f\x1b\xff\xcf\xde\x6e\x75\x26\x39\x35\x3f\xa1\xc1\x3f\xe4\xf7\x37\xdb\x34\x10\xb4\x96\xe8\xe1\xe5\x77\xaf\x76\x7f\xfe\xfc\x9b\xda\x05\x1d\x1b\x1d\xdb\x36\xe6\xdb\x93\xa9\x57\x5d\x47\xc8\xe6\xc6\x76\xf7\x57\xb0\x1b\xeb\xc3\x75\xfd\xec\x34\xae\x6f\x40\x7d\xe1\x32\x5e\xad\x44\xd2\xb9\x45\x5d\x8c\xd7\x3d\xb2\x56\xb9\x3b\xda\xe5\x80\x90\x01\x6b\xd9\xd5\xd1\xa3\xed\xea\x21\x08\x78\x89\xca\xa6\xcb\x32\x65\x93\x22\xe1\x45\x22\xbb\x65\xeb\x9f\x5b\x3a\xd7\x77\x9c\x9b\x6f\x83\xd5\x20\x2a\x9a\x09\x1d\x2a\x9a\x63\xb4\x60\x45\x59\x27\x20\xfe\xba\xe0\xed\x9b\xd5\x16\x2c\xb4\x95\x5d\xe5\x9c\xcf\xfd\xb5\x50\xeb\x8e\x03\xde\x5e\xdb\x0f\x78\xce\x63\x9b\xd5\x39\x44\xf7\xb5\xd6\x0e\x87\x42\x2f\x46\x70\x39\xcf\xb8\x44\x4d\x17\x70\xe7\x59\x55\x7b\x0b\x93\x52\x68\xff\x72\xdf\xa8\x4e\x88\x8e\xf1\x5b\x06\xf7\x86\x25\x4b\x0a\xc7\x6b\xc0\xcd\xd9\xa7\x6d\x6f\xe8\x9e\xec\xb5\xc0\x18\x9d\xe5\x49\xb6\x99\xee\x1d\x56\x3b\x2b\xd8\x3f\x4b\x06\xc1\xba\x1b\x1d\xca\xb7\xa3\xaf\xfe\x5d\xdc\x3b\xcb\x9f\x27\x25\xf7\x2f\x67\x93\xba\x5e\x50\x61\x8b\x28\x13\xb4\x1d\x94\x58\x3f\x2e\x54\x4e\x40\xd7\xe3\x8a\x59\xb6\xd9\x8e\x24\xbc\x97\x56\xea\x2e\xce\x77\x35\x88\xff\x72\x36\x79\xdc\x0c\x76\x90\x9d\xfc\x5e\xc9\xeb\xb4\xb5\xdb\x37\x70\x65\x00\x7f\x3b\x79\x4f\x56\x34\x87\xf0\x2f\x2a\x25\x8d\x96\x58\x16\x14\xcc\x43\x7e\xc3\xf8\x2f\x67\xde\x84\x0a\xdb\x29\xee\x76\x37\x8b\xfb\x6d\x12\xdb\xdf\x82\x26\x34\x76\x5d\xdc\x85\xe4\x05\x5d\x30\xf3\x15\x7a\x46\xc0\x69\x99\x32\x76\x8a\x9b\x33\x66\x9d\x9b\x24\x8b\x8f\xc9\x74\xcf\x14\x81\xc8\xd3\xb2\xa0\x69\xf5\x8d\x2d\x64\x2a\x8e\xc9\xaf\xbf\xa9\x6f\xc0\xed\x24\xfe\x09\xd5\xa2\xfa\xdb\x69\x36\x1a\x8d\xa6\xd9\x37\x44\x9b\xf1\x4d\xf6\x1f\xc9\x56\x79\x4a\x25\x13\xcf\x6f\xe2\x78\x14\x15\xb1\x18\x6f\xe8\x2a\x9d\x66\x34\x4f\xf4\x08\xc7\x84\xe6\x09\xbb\x93\x2c\xc3\xc4\xbd\x37\xdf\x89\x71\xc2\x9f\xaf\x5f\x4e\x33\x5c\xdb\x69\x29\x24\x5f\x5d\x32\xa4\x0b\x67\x6c\x9e\x64\x09\x26\x70\x33\xb1\x59\xb0\x15\xc8\x73\xad\xc3\xae\xb4\xac\x04\xf6\xe6\x84\x89\x71\x54\xc4\xe3\x2d\xe5\xf3\x34\x53\xec\x2c\xf4\x5d\x14\xbc\xcc\x8f\x49\xa0\x19\x8e\x5d\x07\xd8\x0f\x30\xcf\x05\xce\x83\x0e\xdb\xf8\xb3\x62\x43\xfe\x3d\xd4\xe4\x83\xcd\x64\x6c\xc0\xec\x5d\xaf\x3e\xc7\x24\x83\x60\x27\x5f\x23\x98\x2c\x2f\x18\x9c\xfe\xe7\xec\x26\xe3\xb7\xd9\xfb\x84\xa5\xb1\xd0\x12\x11\x1c\x54\xc4\x15\xb6\x9c\xa2\x16\x5e\x7d\xb3\x36\x87\xa6\xfe\x18\x69\x90\x29\x48\xc3\x7c\xd1\x92\xad\xa8\xbd\xd6\x3c\x67\xd9\xc9\xe4\xfc\xa7\xd7\x57\xf5\xef\x83\xa6\x41\xe7\x48\xeb\xa8\x5c\x27\x0b\x6a\x4c\xad\x52\x77\x4b\xc5\xea\xa5\xb1\x58\xaf\xc3\x16\x5b\x28\x18\xec\x33\x93\xde\x7c\xb6\x7c\xae\x24\x65\xbc\x10\xea\x8e\x16\x6a\x1c\x27\x23\xea\x9a\x15\x58\x52\x60\x91\x25\xff\xb2\x83\xdb\x60\x4a\xc0\xcd\x2d\x66\xd1\x6a\x52\x9d\x0c\xbb\x2b\xba\xd1\x26\x33\x52\x66\xce\x80\x98\x61\x6d\x4c\x3e\x72\x08\x87\x98\xf3\x63\xb2\x94\x32\x17\xc7\xcf\x9f\x2f\x12\x69\xb0\x59\xeb\x49\xe5\xe6\x39\x3c\xa5\xc9\xac\x94\xbc\x10\xcf\x63\xb6\x66\xe9\x73\x91\x2c\x46\xb4\x88\x96\x89\x64\x91\x2c\x0b\xf6\x9c\xe6\xc9\x08\xd6\x0e\xf6\x44\x31\x5e\xc5\xdf\x14\x1a\xfd\xc5\xbe\x8f\x4c\x6c\x13\x10\xc0\xd2\xb6\x63\x50\x38\x8a\x31\x75\xd8\x59\xc7\x4a\x58\x68\x9b\x44\xb7\x97\xef\xae\xae\x89\x99\xdd\x9b\x4d\x0c\x81\x5f\xf5\x14\xd5\x39\x28\xa0\x25\xd9\x9c\xe9\xfc\x31\x10\xbb\x28\xdd\x82\xdc\x90\x4a\x0c\xfc\x36\x9b\xa3\x8a\x72\xb6\x02\x27\x1e\x7c\x86\x31\xca\xe5\x14\xb8\x07\x48\xb7\x99\xc7\x54\xb2\x18\x02\x5f\x4e\xe9\x8a\xa5\xa7\x54\xb0\x27\x3f\x05\x05\x6d\x31\x52\xb0\xed\x7b\x0e\x35\x12\xd5\x6c\xbe\x6d\x71\xb6\x14\xa9\xfa\xb4\x18\xe2\x69\x9e\xa7\x9b\x4f\xd9\x7b\x5e\xdc\xd2\xa2\x93\xcb\x38\xa9\xb5\x46\x67\x13\xf0\x22\x90\x1c\x47\x42\xa7\x93\xaa\xa0\x77\x62\xaa\x4b\x7b\xe5\x5e\xe0\x48\x60\x24\x93\xae\x64\x47\x96\x22\xe6\x17\x5c\x5e\x2b\x36\xa6\xd3\x91\xc7\xb6\x74\x56\x6d\x59\x51\x6d\xaa\x86\x78\xa0\x2a\x59\x0d\xec\xc3\xcf\x1d\xb9\x5b\x33\xa4\x62\xa1\xe8\x41\xc1\xcb\xc5\xd2\xfa\xda\x11\xb0\x76\xec\x83\x35\x3a\x43\xcf\x63\x02\x5c\x57\x92\x2d\xbc\x66\x6d\x30\x64\x53\xa1\xdd\x47\x22\x53\xe4\x17\x6d\x2e\xd7\x85\x49\x67\xef\x83\x30\xa1\x81\xb4\xcd\x90\xb2\x23\x36\x06\x39\xc5\x8b\x56\x4b\xf3\x2e\x0c\x8b\x98\x69\x98\x68\x16\x3c\x20\xe0\x37\xe6\x87\x2c\x70\x0c\xea\xc5\x69\xa7\xe1\x19\x23\x9a\xcd\xdc\xf5\x6c\xb1\x38\x79\xd7\xb9\x5e\x43\x6a\xf5\x18\xac\xad\xda\x35\x46\x57\x35\xd7\x4c\x2b\x79\x47\xa3\x25\x46\x90\xeb\x0c\x82\x7e\xe6\xd0\xf4\xc6\x7d\xeb\xd0\xb0\xa8\x48\x24\x2b\x12\x8a\x69\xf4\x9d\x50\x7a\xa8\x33\x10\x19\x11\x04\x50\x7f\x27\xd7\x98\xda\x1e\xa6\x7b\x27\x44\xc9\x82\xa4\x52\xe8\xba\xae\x3e\xbe\xa5\x78\xf9\x50\x62\x93\xd7\x92\xb7\x5c\x2e\x75\x02\x41\x5e\x8c\xd0\x6a\x64\x4d\xd9\x13\x7d\x5e\x99\xfb\x5d\xc1\x83\x39\x6b\x80\x1b\x65\x05\xcb\x22\x83\x79\x23\xa7\x6c\x15\x2f\x25\xa6\xe4\x32\xe9\x94\xb0\x89\x92\x35\x66\x1c\xca\x3c\xc2\x79\x04\x16\x9c\xc5\xb6\x0a\xbd\x03\x78\xb0\x90\x4d\xa7\x19\x1e\x9e\xa9\xc8\xd2\x84\x44\xc0\x47\x55\x1d\x66\xc6\x16\xb0\x38\xcd\x12\x1c\x6a\xf1\xcb\x44\xd6\x4f\xa7\xd3\xbd\x0b\x2e\xd5\x7f\xc6\xe4\x24\x4d\x75\x56\x04\x77\x74\xff\xc8\xaa\x37\x44\x29\x03\x42\xd9\x1a\x7f\x54\x26\x02\x0a\x7b\x61\x2e\x32\xbd\x15\xc9\x71\xcc\x31\x39\xd1\x25\x29\x02\xd0\x05\xe4\xc4\x5c\xc1\x0a\x41\x75\x02\x01\xbd\x69\x05\x22\xd8\x8e\xfa\xc3\xf1\x24\xa0\x38\x78\x18\xae\x00\x7d\xff\x12\x0d\x0d\xa9\x96\xe8\x2f\xe0\xd6\xe9\xc1\x45\x43\x19\x33\xf1\xd3\x5d\x1b\x26\x66\x42\xea\xb2\x8b\xc1\x51\x1a\x1e\x99\xb6\x83\xbd\xd0\x9e\xe3\xd3\xfe\x4b\xea\x62\x86\x86\x05\x25\x8a\x33\x3f\x51\xaf\xb4\xf4\x47\x2b\xf6\x02\x06\xd1\xa5\x72\xa0\x50\xdb\x95\xbe\x7c\x2d\x6d\xb7\xc8\xc0\x45\xb3\xb3\x8e\x57\xe7\xc6\x56\x3c\x57\xfc\x79\x30\x8d\x46\xf5\xb1\x80\xa1\x96\x08\x38\xf9\x0e\x74\x4e\x29\x5b\x6a\x5b\x41\x8a\x17\xc9\x42\xc1\x21\x44\x01\xcc\x07\xf8\xaf\x03\x85\x42\x60\x97\x46\x4a\x25\x9f\x39\x4e\xce\xfa\x8a\x40\x2e\x18\x98\xdb\xff\x78\x78\x40\xa6\x63\x40\x66\xcc\x3c\xc4\x3a\x22\x1c\x10\x79\x0b\x36\xed\x83\x22\x95\x44\x91\xde\x82\x80\x42\x71\xc6\x39\x64\xd8\x30\xf9\x25\xe9\x8a\xe9\xb4\x18\x32\xa0\xde\xa9\x3e\x90\x02\xcb\xe7\xd7\x6d\x7c\xe5\x1c\x06\x62\xe6\x52\xe0\x0e\xa0\x9a\x6d\x1b\x78\xb9\x0c\x08\xd2\xc1\xf7\xbc\x20\x35\x31\xf0\x30\xf8\x06\x98\x0f\xd6\x55\xf4\xa0\xd4\x4a\xa7\xf0\x32\x71\x7a\x2e\xb2\xa5\xc9\x2a\xe9\x3c\x30\x50\xba\xa5\xe8\xf9\x17\x84\x49\xe2\xc0\xd7\x9e\x70\xc7\x99\xe1\x45\xae\xed\x33\xb8\xfd\x7d\x94\x68\x0f\x9e\x79\x6b\xe5\x54\x9f\xaf\x03\x80\x9a\xa0\x7e\xa5\xde\xed\x82\xa0\x21\x13\xe1\x01\xdb\x68\x1f\x54\xed\xd1\x23\xef\x1f\x82\x07\x4d\xfb\x59\x76\xac\xd6\xdd\xa2\x93\xc0\xcd\x57\x21\x27\x2a\xb8\x00\x9e\xaf\xef\x95\x0d\x3c\x1c\x76\xee\xce\x07\x80\x60\x1e\x85\x36\x9a\xda\xcc\x4c\xc1\x74\xe9\x6c\x2f\x61\x54\x82\xa6\x2c\x92\x08\xeb\xd3\xb4\x6f\xc3\x3c\x81\x36\xb5\xdd\xc6\x29\x46\xd0\xa4\x8b\x96\xf4\x75\x40\xbb\x4e\x17\xdd\x9a\x92\x90\xdf\x24\xb3\xb9\xb1\x31\x2d\x9f\x28\x67\x6a\xfb\xc1\x57\x87\xb4\xf2\x91\xce\xbc\xbd\x20\xdd\xea\x8a\x5c\x7d\x32\x2e\x2f\x76\x3b\x13\xec\x60\x93\x52\xd4\xd9\x2f\xb3\x63\xd5\xa4\xe3\x79\x51\xe7\xf8\x87\x83\x45\xa8\xce\x7b\xf5\x69\x02\xc3\xd6\x77\x6f\x81\xc6\x24\x14\xac\x57\x7d\x10\x1c\xe4\x0a\x6a\x58\x02\x96\x0a\xbe\xaa\xca\x9d\x0b\x8c\xbc\xd4\x15\xc4\x21\x91\xf2\x26\x5c\x3f\xbe\xfa\x34\x8a\xd1\xca\x7a\x26\x77\x5b\xcb\x1a\x39\x2a\x4d\xc8\x95\x80\xd2\x49\x15\xe1\x0d\xd3\xc6\x90\xeb\xd3\xc9\x74\x0f\x4b\x00\x7f\x3e\x9b\x04\x4a\xce\x9a\x4f\x9f\x53\x0d\x67\x21\xad\x3e\x3d\xf2\x91\x6e\x37\xee\x46\x94\xee\x1c\xa5\xd5\x67\xf7\x6c\xa5\xd5\xa7\x2f\x42\xee\xce\x5c\x5e\x54\x9d\x3a\xd0\xb2\x1f\x7f\xa5\x31\x13\x6c\xac\x76\x60\xa4\xc2\x68\x65\x9a\xc9\x94\xc9\xc4\xe6\x25\xc5\xb9\xda\xc7\xb4\xdc\x52\x2b\xaa\xf4\x3b\xb3\x7c\xb7\x2b\x3b\xdd\xb3\x37\xb6\xeb\x59\xe9\x7e\x6c\x7b\x3c\x2b\x60\x5d\x32\x69\xb0\x0e\x1c\x21\xc4\x93\x2a\xaa\xb9\x2d\x27\xbd\x2b\x13\x44\x67\xe6\x77\xb3\x05\x3f\x37\x0a\xe5\x6b\x9b\x71\xbb\x7d\xd4\xc4\x15\xdf\xf5\xd5\x01\x1b\x16\x42\x59\x18\x08\x68\xed\x6c\x4b\xc0\x51\xf5\x31\xe9\xa1\x90\x81\xeb\x4b\xc1\x3a\x29\x80\xce\x39\xb5\x0b\x05\xeb\xd8\x7b\x45\xde\x1a\x14\x6c\x8a\x34\x6c\xaa\xa9\xd8\x14\xe9\xd8\x54\x51\xb2\x56\x9e\x67\xa0\x65\xf0\xe9\x45\xcb\xc4\x3d\xa4\xe4\x6e\xe1\xb8\x55\xd3\x57\x7d\xbc\xc2\x31\x39\x10\x8c\x19\x15\x19\x90\x32\xac\x47\x24\x36\x99\xa4\x77\x7e\xd7\xc9\xea\x33\x9d\xb6\xca\xd6\x9a\x87\x0c\xc9\xce\xed\x63\x1b\xcd\x98\x23\x5a\xf3\x62\x5b\x64\x56\xd7\xed\x82\x4b\xb4\x6b\x1f\x07\x0a\x30\x39\x40\xd0\x31\x8b\xc6\x9c\xd5\xf1\x2a\x20\x78\x9c\xd7\xa4\x7d\xf4\x19\x4b\xf9\xed\xb3\xc3\xfa\x92\x1d\x60\x23\x54\x49\x22\x05\x4b\x6d\xba\xf8\x0e\x38\xa0\x32\x8c\x63\xa1\x67\x46\xe4\x2d\x07\x5c\x83\x98\x57\xf3\x1b\x12\x08\xf5\x08\x6d\xaa\x1a\x50\x1d\x67\xf7\x29\x33\xbb\x17\x7a\xbd\x95\xfa\x95\x39\x52\x92\xae\xe7\x09\xaa\x05\xdd\xbe\xfb\x4d\xb8\x5d\xf2\x54\x1f\xd2\x31\x1c\xd1\x74\x5a\x3d\xc8\xff\x00\xea\xf2\x6f\x4b\x2a\x0e\x56\x9b\x2f\x29\x9d\xb1\xf4\x19\xd0\x1d\x4d\xe4\xbb\xae\xb3\x13\x68\xa7\xf6\x0d\x48\x86\xeb\x43\xd7\x84\x91\x76\xbe\x49\x59\xac\xe6\xed\x89\x6f\x6e\xe0\x9e\x49\x5b\x4e\x60\x71\xb0\x5c\xb3\x52\x54\xa2\xea\x2d\xf5\x46\x0c\xdc\x72\x70\xc7\xdb\x9b\x52\xab\x08\x25\x40\xaf\x3e\xed\xfb\xb5\x5b\xea\xda\x4e\xd7\x25\xcf\x00\xf3\xd8\x7c\xce\x22\x9d\x00\x49\xab\x12\x52\x20\xad\x3a\x97\x09\xb8\x4a\xd8\x9d\x74\x2f\x3e\xe3\xd9\xc8\x04\xeb\xa2\xa5\x16\x93\x12\x68\xbd\x08\x84\xd1\xbb\x4a\x0a\x88\x87\xc3\xd1\x7b\x28\xed\xb6\x41\x53\x95\x86\x7e\x0c\x21\x5e\x07\x8f\x9e\x44\x11\x2f\xb3\x5d\x78\xaf\xab\x7a\xc7\xaf\xc6\x83\x35\xc8\x72\xfb\x98\x1e\x95\x27\x25\x39\x8f\x6d\x0e\x65\x60\xe8\x2c\x89\xd6\xc0\xe8\x20\xbd\xb8\xe3\x56\x6c\xeb\xa5\x74\x26\xa4\xee\x5f\x12\xfe\xd4\x65\x02\x28\x16\xf0\x60\x70\x93\xfb\x80\xbc\x7b\xc8\x90\xa6\xd9\x03\xf6\x5e\xd0\x26\x15\xc4\x15\x35\x16\xda\xf9\x3c\xb1\xaa\x4a\xc5\x00\x77\xdc\xfc\x7e\xcc\x1d\xd9\x41\x05\x41\xfa\x72\x4a\xa4\x2f\xb7\x44\xb6\xef\x57\x27\xbf\xf4\x9f\xf7\xa4\x6b\xb2\x52\xa5\x75\x43\xba\x6f\xe0\x39\x26\xe7\x1d\x92\x87\xfa\x54\x66\x08\xb0\x2e\x5c\xb9\x56\x85\x4a\x16\x91\xba\x18\x62\xd0\x1e\x5f\xff\x9c\x5c\x9c\xed\x7b\x6d\xe3\xf5\xcf\x6e\x1a\xad\x50\x1a\x02\xf3\x31\x79\x3b\x77\xe3\xba\xb1\xcf\x83\xb9\x6e\xec\x89\x06\x62\x4b\x2f\x9d\x72\xe6\x66\x22\xa8\xc3\x64\xe1\xea\xf5\x96\x70\x06\xed\x64\xba\x9b\xe8\xd5\x97\xeb\xf6\x98\xb3\x0c\xfc\x0e\xc4\xb3\x26\xfb\xad\x4b\xa9\x67\x6d\x56\x47\x02\xba\xb2\xe7\xb0\x2a\x48\x13\x6b\x56\xb2\x2f\x08\x86\x47\x83\xc4\x6c\xe0\x1d\x59\x87\x25\x0b\x8c\x2e\x58\xd4\x2d\x5b\xea\xe6\x18\x64\x3d\x74\x59\xf7\xc3\x6d\x8b\x42\x07\x98\x2f\x98\x62\x7f\x8d\xb2\x97\x17\xcd\xb7\x1b\x97\x3e\xd1\x01\xff\xb1\xd5\x84\x76\x58\x2b\x15\x3e\xa9\x03\x74\xf7\x88\x7a\x23\x0b\x05\x9e\x19\x47\x02\xed\xd8\xd1\xce\xb2\xec\xf4\x6c\xee\xfe\x6a\xfa\xa2\x98\xc0\x24\x5f\xe1\x71\xf7\xd5\xd7\x7b\x73\x6c\xf0\x8f\x44\x04\x1c\xfb\xcc\x3d\x18\x02\xd5\xcd\xb3\x3f\xfc\x3e\x5c\xc7\xa2\xfe\x41\x2a\xab\x77\x08\x37\x39\x65\x73\x89\x76\xac\xca\x85\x09\x6f\x4f\x0f\x25\x0d\x71\x2f\xa2\xf5\x38\xda\x17\xd5\xca\xbe\x2a\x05\xed\x6e\xb3\x94\x32\xef\xe7\xcf\xf0\xe3\xf5\xf5\xa4\xb2\xd7\x07\x9d\x18\x14\x96\xa8\xa6\xe1\xa5\x1b\x2f\xc7\x87\xf9\x2f\xac\x98\x5c\xf2\x78\x87\x97\xe1\x23\x76\x78\x5c\xae\x1d\xb7\x8c\x44\x1d\xf7\xed\x38\x71\xaa\x31\xb1\x9a\xa8\xc2\xc7\xee\x41\x21\xaa\x2b\xc6\x51\xcc\x6a\x0f\xd8\x78\x31\x26\x3f\xbc\xbb\x3e\x24\x93\xcf\xd7\x87\x84\xc9\x68\xfc\x8c\x7c\x2c\x53\x99\xe4\x5d\x76\x0e\x0d\x22\x78\xf7\x3f\x5d\xee\x2b\x31\x6c\x01\x7e\x84\x7f\x2c\xbb\x55\x4e\xe5\x72\x87\x73\xdc\x9f\xa8\xf6\x4f\x71\x8c\x5d\x27\xd8\x4d\x51\xdc\x13\x84\x65\x8e\xed\x51\xe1\x36\xcd\x59\xf4\x3d\x0c\x42\xd8\x78\x71\x4c\x46\x84\xdd\xd1\x48\x1e\x93\xe7\x73\xce\xc9\x48\x3b\x89\x1d\x93\xe7\x33\x5a\x90\x8b\x4f\xd7\xef\x8e\xd1\x01\x8d\x65\xb2\xd8\x90\x55\x17\x7b\xfe\xe9\xe2\xc3\x7f\xd7\x94\x73\x43\x58\x82\x25\x4d\xc9\x74\x0f\x26\x41\x2d\xb2\xfa\x13\x67\x31\xba\x8e\x71\xa8\xec\x5a\xf5\x59\xd3\x34\x89\xa9\x55\xf6\x61\x41\x56\xc5\x3e\x25\xd2\x97\xec\xaf\xfa\xf4\xc1\xb9\x3a\x12\x28\x10\x43\x99\xb5\x5a\x81\x0f\x00\xbc\x29\xb6\xd6\xef\xad\x3a\x97\xe0\xb9\x3d\x63\x06\x10\x5a\x8f\x38\xe7\xc5\xea\xd8\x80\x7d\x5a\xbe\x78\xf1\x3a\x52\x03\xc3\xbf\xd8\xb1\x49\xcd\xda\x47\xed\x85\xa8\x06\xab\x82\xe1\x14\xc1\x28\xec\x11\x56\x43\x8f\x34\xbc\x1f\x34\x03\x8e\xd1\xe1\x6a\xd2\x9b\xe9\x20\x1a\x00\x8f\x2b\x46\xe6\xa1\xd2\x00\xf7\x1f\xb4\x9f\x38\xd1\x8b\x20\x75\x0f\x95\x44\xab\x9e\x6f\xe6\xf9\xe9\xc7\x49\x5f\x0f\x10\x20\x46\xe1\xb5\xbb\x54\x8a\x1a\xac\x8f\x60\xb5\x3a\x3b\x4d\x0c\x34\x0a\xa6\xb4\x45\x35\xc1\xb2\xd6\x22\x5f\x39\x45\x8e\x6b\x3c\x6d\x32\xaf\xdb\xa7\x70\xd1\x89\x93\xf6\x4c\xcd\xd3\xc6\xda\x82\x3d\x5d\x35\x5a\x1f\xb5\xe8\x29\x7b\x61\xa2\xda\xda\x0e\xef\x3c\x70\x26\x3c\x73\xa1\x04\x40\x89\xa0\xc8\xc5\x2e\xc2\x1a\xa4\x8b\x57\x00\xc6\x78\x11\x70\x51\x85\x34\xce\x2e\xac\xaa\x58\x4c\x4a\x24\x8b\x96\x59\x12\xd1\x0e\xaf\x24\x50\x8b\xa2\xfa\x3f\x59\xe5\x5c\x54\x8e\x74\x58\xe6\x77\x5f\x54\x35\x7a\xe6\x49\xc1\x6e\x69\xea\xaf\x36\x52\x7d\x90\x5a\x68\xa5\x2c\x56\xfa\xe1\x84\x65\x73\x8e\x91\x2c\xda\x45\xaf\xfb\x6a\x74\xda\xf0\xa0\xd9\xc3\x0f\x43\x0d\x33\x26\x6e\x4e\xb3\x2e\x13\x98\x2d\xdd\xf6\x1d\x7a\x79\xc3\x0e\x61\xac\x77\xd1\x92\x93\x4b\x1d\xc2\x7a\x90\x8c\xd9\x98\xe4\x49\xb6\x10\xed\x36\xb0\x5e\xfb\xed\x41\x0c\x72\x7f\x20\x58\x00\x20\xe7\x13\x13\x10\xf6\x60\xc7\xb0\x9a\x72\x0b\xf9\x71\x17\xca\x13\x63\x19\x0b\x42\xa1\x4f\xe6\x4a\x7f\x48\x4f\x60\x73\xa6\x0e\x9b\xe3\xd6\x5b\x25\x1a\x75\xd2\x10\xdb\x2a\xdb\xed\x9b\x7b\x10\xd1\xa8\x62\xaf\xdb\x1f\xb9\x6a\x85\x93\xbe\xaf\x62\xdf\x67\xa9\x1e\x91\x54\xad\x47\x87\xa2\xa1\xd5\xee\x86\xe9\xe0\x79\x92\xd3\xa4\x08\x97\x1e\xac\x3e\x4a\x64\xd5\xb5\xf1\x5d\x98\xd2\x19\x2f\x65\x8f\x87\xe4\xb1\x24\xc7\x8c\x4b\x75\xfb\xfa\x61\xc6\x05\x36\xee\xf0\xe8\x81\x26\xed\x9e\x75\xc3\x83\x31\x3c\x18\x7f\xee\x07\x23\xe3\xd2\xb0\x55\x41\xb0\xb4\x7b\xdd\xf4\xf4\xb7\xe9\xe7\x69\xb3\xe5\x10\x6a\x58\xbe\x0e\x9f\x50\xdd\x2c\x0c\xb0\x8e\x7b\xdc\xc3\xb5\xe7\x7e\x4e\x3d\xf9\x1f\x15\xb8\xd3\x3d\x17\xb6\x8f\xf8\xf6\x6f\x19\xb6\x40\xc3\xeb\x72\x02\x06\x26\x63\xc0\xfa\xa4\x68\xd3\xcc\x6b\xef\x5c\x7d\xce\xef\x20\xd4\xe8\x12\x22\xe5\x4c\xd4\x17\xaa\xcd\x0f\x66\x2c\xa2\xa5\xd0\x3e\x71\x1d\xa6\x04\xbb\xc4\x88\x15\x30\x86\xf5\xab\x7b\x86\xaa\x78\x53\xc8\xa3\xe6\x25\xd8\xf5\xc4\xa2\xfb\xe0\xb1\xeb\x01\x77\xe8\xfa\xbf\xe1\x1f\x20\xa9\xd4\xfe\x5a\x1f\x55\x7f\x5f\x9d\x5e\xe3\xaf\xe1\x69\xf4\x88\x1f\x12\xc9\x8c\x93\x1d\xd4\x51\x05\x04\x31\x46\x59\xac\x35\xf9\x72\xf4\xea\xdb\x6f\x5b\x54\xfe\x4f\x87\xf6\x22\x54\x53\x02\x3f\x75\x43\xab\xad\x29\xd1\x23\x2a\x2d\x50\xae\xd7\x9d\x75\x08\x48\x1b\x02\xd2\x7a\x98\x3d\x87\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x42\x3b\x1e\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x0b\xed\x64\xa0\x65\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x1a\x7e\x86\x80\xb4\x21\x20\xad\xf9\x19\x02\xd2\x86\x80\x34\xfb\x19\x02\xd2\x86\x80\xb4\x21\x20\xcd\x3b\xe8\x10\x90\xe6\xc0\x62\x08\x48\x1b\x02\xd2\x86\x80\xb4\xfa\xe7\x6b\x06\xa4\x75\x14\x3b\xc7\x2c\xbe\xbe\xdf\xee\x5d\xd6\x5c\xdf\x8d\x7b\xa4\xef\xae\xdf\xaa\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\xf6\x2f\x6f\xc8\xdf\x3d\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\xd5\x67\x70\x97\xaa\x3e\x83\xbb\xd4\xe0\x2e\xf5\x87\x72\x31\x18\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\xf2\x36\xfe\x93\xd1\xb2\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x3c\x9f\xc1\x5d\x6a\x70\x97\xb2\x9f\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\xbc\x83\x0e\xee\x52\x0e\x2c\x06\x77\xa9\xc1\x5d\x6a\x70\x97\xaa\x7f\x86\xfc\xdd\x43\xfe\xee\x21\x7f\x77\xed\x33\xe4\xef\x1e\xf2\x77\x0f\xf9\xbb\x7b\xcd\x30\xe4\xef\x1e\xf2\x77\x0f\xf9\xbb\x87\x74\xac\x43\x3a\xd6\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x1d\x5e\xff\x90\xbf\x7b\x78\x30\x86\x07\x63\xc8\xdf\x3d\xe4\xef\xae\x7d\x86\xfc\xdd\x43\xfe\xee\xc6\x67\xc8\xdf\x1d\x16\x20\x87\xfc\xdd\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\xb9\x9f\x21\x20\x6d\x08\x48\xfb\x43\x05\x71\x0c\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x79\x1b\xff\xc9\x68\xd9\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x9e\xcf\x10\x90\x36\x04\xa4\xd9\xcf\x10\x90\x36\x04\xa4\x0d\x01\x69\xde\x41\x87\x80\x34\x07\x16\x43\x40\xda\x10\x90\x36\x04\xa4\xd5\x3f\xff\xb9\xf3\x77\xf7\x71\x3b\xf0\x1f\x75\x3b\x77\x30\x47\x2f\x91\x4a\x62\xf7\xad\xba\x14\x28\x8b\x20\x7d\xd4\xcf\x36\x26\xc1\xe6\x59\xcd\x56\x18\xd8\x92\xff\x54\x20\xd1\x78\xd7\x3e\x3e\xa9\x46\x2d\x6f\x52\x1d\x91\x39\xb6\xf6\xee\x02\x5d\x09\x31\x17\x34\x28\x7f\xd4\xa0\x60\x2d\x8d\xc7\xa8\x0f\xb2\xda\xec\x65\xb2\x50\xc2\xf5\x74\x0f\xc6\x9b\xee\x01\x0b\xa0\xdb\xfa\x86\xa6\x73\x25\x14\x4a\x60\x3a\x61\x80\x94\xdf\xb2\x02\x57\x83\xae\x99\xce\xe2\x04\xe1\xab\x44\x4a\xf5\x96\x24\x26\xaa\xc7\x37\x68\xc4\x33\x91\x60\x2a\x76\xd4\x5b\x4e\xf7\x92\x6c\x9e\x64\x89\x64\xd3\x3d\x32\x22\xe0\x10\xe8\x6c\xc7\xbc\x54\x7a\x9d\x24\xa5\x42\x8e\x89\xdd\x99\x17\x24\x6a\xad\x49\xcc\x32\x99\x44\x34\xd5\x0b\x6c\x8e\x93\x64\x84\xa6\xf9\x92\x66\xe5\x8a\x15\x4e\x3b\x40\x00\xdf\xa8\xfa\x7d\xd2\x2a\x36\xf4\x7a\xf1\xca\xdc\x88\x1c\x59\xb9\x9a\x6d\x6b\x3f\xf3\x82\x9d\x5d\x9c\x5c\x77\xa1\xc7\x04\x9b\x91\x24\x8b\x93\x08\x35\x3b\x36\x02\x65\x69\xd2\xab\xd7\xa9\x0a\x99\xb1\x39\xf7\xb3\x6e\x34\xdb\x10\x35\x5c\x70\xad\x33\xce\x53\xb6\xed\x98\xd1\xc2\xb7\x37\xb8\xac\x6b\x57\x4f\x86\x58\xed\x68\xcb\xcc\x45\xcb\x93\xe8\x06\xff\x8f\x97\x5e\x02\xa4\xf6\xd6\xd0\x7a\x38\x98\xa0\xe3\x65\x9c\x33\x94\xdc\x30\x1d\x61\xdd\x4d\xb5\x0e\xc5\xbb\xa5\x29\xbf\x45\xa8\xa1\x0a\xcf\x2a\xb5\x90\xb3\xfe\x07\xea\x77\xf0\x62\x7f\x49\x13\xc9\x0a\x0a\xaa\x15\xdf\xc8\xd3\x29\x19\x61\xbc\x98\xc2\xea\x55\x4e\x8b\x44\xf0\xec\x90\x40\xd0\xa8\xd1\xcb\x98\x21\xe7\x9c\x93\x19\x2d\x40\x59\x64\xa7\xfb\xb7\x1d\xa7\xab\xe6\x53\xac\x15\xfb\x67\x49\xd3\xbf\xa3\x8b\xb3\x11\x15\x92\xb9\x96\x11\x12\x01\x6d\x8c\xe9\xc3\x4e\xe9\x27\x22\xff\x13\xd6\x41\x2b\xc7\xbc\x59\xf5\xcf\x08\xff\x39\x1e\x8f\xc9\xff\x72\x56\x20\x8b\x92\x99\x48\x25\xeb\xec\x8b\x73\xfc\x42\xfc\xc1\x05\xda\xe6\xd3\x31\x55\xb5\x56\xb5\x81\x24\xeb\xb1\x38\xdf\x64\x3b\xae\x17\x26\x6b\x5b\xa0\xff\x48\x9c\x35\x2f\xa9\x38\x80\xf1\xbe\xa8\xa7\xe3\x59\x35\xf5\xb5\x9d\x99\xca\xea\x74\x9c\x93\xf9\x37\x40\x52\xef\xa3\xab\x87\xb0\xfa\x61\x3e\x87\xb6\xa0\x1e\x84\xff\x96\x2f\x5e\xbc\x3a\xc2\xff\xc7\x5f\x6c\x9f\xab\x25\x2f\xe4\x28\x4a\x8a\xa8\x4c\x24\xb0\xb5\xba\x93\x6f\xa2\xff\xf8\x8f\xd6\xde\x60\x48\x92\x07\xd8\xe6\x99\x6d\x94\xd3\x82\x69\x91\x68\x51\xf0\x32\x57\x22\xd1\x74\x2a\x69\x9a\x1e\x78\x0d\x82\xba\xa6\x00\xba\x05\x59\x7a\x61\x46\x33\x38\x4c\xd3\xd4\xd1\xf1\xc1\x05\xfd\x80\xf8\x80\x42\x6c\x80\xc8\xa9\xab\x8d\x74\xc6\xb8\xca\xba\xf4\x5d\x1c\x92\xd1\x21\xf9\x02\x70\x78\x3e\x26\x57\x70\xe5\x88\xbe\x72\xc1\x41\x57\xbc\x60\x24\x57\xf2\x97\x10\xc9\x9a\x91\x19\x06\x79\x6c\x8c\x7e\x59\x6b\xfe\x09\x13\x11\xcd\x19\x89\x96\xb4\xa0\x91\x64\x85\x5e\xf6\x3b\xf4\x95\xf7\x5e\x86\x03\x78\xa5\x56\x34\x66\xa3\x32\x47\xb4\x10\xcf\x2c\x39\x82\xc8\x42\x4d\x3a\x6e\xd9\x4c\x49\x6e\x4c\x13\x0f\xf7\xc4\x63\x96\xa7\x7c\xb3\x62\x99\x97\x9c\xea\xfe\x79\xc1\x63\x83\xa4\x30\xae\xba\x53\x40\x93\x0a\x9e\x49\x96\xc5\x0e\xaa\xd3\xe8\x46\x7f\xf1\xbf\x54\xf3\x6a\x7c\xf2\x6f\xff\x08\xdd\x80\x98\xad\xcd\xf0\xff\x46\x1a\xb7\xc0\x47\xca\xda\x98\xa7\xba\x36\xb6\x2f\x57\x78\xe5\xed\xf5\x64\xac\xa1\x5e\xa4\x51\xd6\xec\xca\x20\x82\xd5\xa7\xc7\x9b\x0a\xc6\xa1\x8a\x03\xb8\x5d\x42\xc4\x7a\xed\xcd\x77\xdc\xe2\xb4\x98\xe9\xa5\x53\xea\xde\x71\x5d\x41\xe5\x50\xff\x35\xe3\x72\x39\x26\xe8\xa9\x0a\xaf\xc9\x5d\xae\x38\x2a\x99\x6e\x1c\x61\xf6\x00\xaa\xbf\x78\x5d\x90\x1d\x3a\x9a\x91\xa8\x60\x3a\x40\x46\xe8\xdb\xcd\x0b\x92\x25\xe9\xb3\x43\x13\xe4\x12\xb3\x39\x2d\x53\x29\x08\x6e\x4b\x81\xae\x88\x03\x32\x8d\xe4\xe4\x56\xd1\xca\x73\x2d\x39\xab\x45\xbc\x73\x84\x68\xe0\x5b\x0d\xfd\xb4\x85\x50\xd0\xed\x32\x14\x27\xaf\xe7\x27\x89\xc0\x3b\x36\x22\xbf\x6a\x56\x4e\x2d\xc8\xcc\xf4\xdb\xa1\x7e\x22\x14\x63\x0c\xd6\x9b\xda\xc4\xde\x7b\x9c\x64\x51\x5a\xc6\xc6\xc0\x19\x51\xc5\x2c\xc3\x00\xd5\x30\x04\x1f\xe9\x8c\xdb\x2d\xc1\x70\xcf\x42\xde\x95\xf5\xc5\xbd\xf3\xaf\xad\x06\x11\x45\x98\xaa\xe1\xbd\xc2\x1d\xb4\x0b\x6e\xfd\xb0\x73\x42\xdf\xa0\xa0\x5b\x0c\x1d\x13\xd2\xc0\x9f\xb5\x62\xd1\x11\x4f\x0a\x46\xd5\x6d\x8a\x6e\x08\x5d\xd0\x24\xf3\xa2\x2c\xa2\x09\x1a\xa4\xd2\x5b\xba\x11\x5b\xf1\x09\xe8\x2d\x72\x48\x32\xb6\x66\x45\x0d\xeb\xbc\x4a\x96\x9e\x55\x96\x2a\x28\x10\x06\x4f\x87\xb5\xab\xe6\x5c\x88\x64\x96\x9a\x89\x2b\x77\x38\xd5\xe1\x2a\x67\x91\x5f\xec\xc6\x8d\x84\x1d\x04\xdb\x05\xfc\xa0\xec\xec\x17\xb9\xb7\xbf\x85\x97\x23\x76\xdd\x1e\x84\xe4\x05\x5d\x30\xf3\x95\x90\x54\x96\x08\x18\xb4\xfc\xb1\xf8\xc2\xb1\xc9\xdc\x24\x59\xac\xa8\x91\x01\x69\x9e\x96\x05\x4d\xab\x6f\x22\x9e\xa1\x21\x5e\x1c\x93\x5f\x7f\x53\xdf\xa8\xf1\x59\xac\x03\x6d\xf5\xb7\xd3\x6c\x34\x1a\xd9\xff\x7c\xa3\x63\x20\x8e\x49\x04\xc4\xe1\xb9\x64\xab\x1c\xca\x59\x3d\xbf\x89\xe3\x51\x54\xc4\x62\xbc\xa1\xab\x74\x9a\xd1\x3c\x31\x01\xbe\x84\xe6\x09\xbb\x93\x2c\x83\x61\xc7\x37\xdf\x89\x71\xc2\x9f\xaf\x5f\x4e\x33\x5c\xe2\x69\x29\x24\x5f\x5d\x32\x34\x41\x9e\x31\x10\x29\x81\xbc\xd7\xc2\x68\x41\x71\x46\xd0\x09\x3b\x43\x87\x65\xc1\xa4\x18\x47\x45\x3c\xce\x0b\xae\x00\x87\x8b\x1a\xf3\x62\x31\xcd\x14\x29\x84\x7e\xc0\xdf\x1c\x93\x40\xb3\xba\x1d\x0b\x17\xd4\xf4\xad\xc6\xdf\xd2\x44\xc8\x7f\xf7\xfe\xfe\x21\x11\xb2\x0e\xe3\xad\x55\xea\x03\x4c\xb2\x45\x99\xd2\x62\xbb\x81\xfa\x1d\xe8\x62\xb1\x66\x9f\xb3\x9b\x8c\xdf\x66\xef\x15\xe2\x89\x63\x32\xa7\xa9\x00\x04\x10\x11\x57\x38\x72\x9a\x96\x42\xa2\x7c\xba\x36\x47\xa5\xfe\x18\x69\x08\x29\xc0\xc2\x64\xd1\x92\xad\xaa\x08\x64\x9e\xb3\xec\x64\x72\xfe\xd3\xeb\xab\xfa\xf7\x8d\x5b\xb4\xe5\x57\x5e\x8b\xec\x00\xff\x04\x5a\xcc\x12\x59\xd0\x62\x43\xce\x27\x44\x94\xb3\x91\xd9\xc6\xf3\xd3\xf3\xb3\xcb\x1a\x09\x43\x8d\xc8\x52\x11\x3d\xe4\x93\x40\x1a\x06\x51\x0e\xa9\x9a\xe4\x18\x64\xa8\x9d\x41\x56\x64\x9d\x50\xc7\x2d\x0f\x1d\x2e\xb0\xab\x3b\x2e\x9f\x6f\x2f\xd4\xd8\xec\xad\xfa\xc7\xbd\xb5\x01\xf5\xac\x83\xa5\xf5\x4b\x5a\xcf\x9a\xa2\xe0\xa6\xbd\x53\x30\x9a\x03\xe9\x8a\x06\x3f\x8b\x35\xac\x91\xb0\x00\x99\xd4\x6f\x1c\xf5\xe9\xdd\x14\x08\x33\x7d\xd5\xc7\xc0\x01\xb1\x42\x18\x19\x39\xe2\xd9\x9a\x15\x92\x14\x2c\xe2\x8b\x2c\xf9\x97\x1d\x5c\x18\x7f\x19\xb8\x6e\x5b\x5c\x63\x92\x49\x56\x28\x5e\x09\x68\x1c\x5a\x05\x56\x74\x43\x0a\xa6\xa6\x21\x65\xe6\x0c\x68\xbc\xf5\x3e\x2a\x1e\x39\xc9\xe6\xfc\x18\xf2\x59\x89\xe3\xe7\xcf\x17\x89\x34\x17\x34\xe2\xab\x55\x99\x25\x72\xf3\x1c\x2c\xf8\xc9\xac\x54\x47\xf2\x3c\x66\x6b\x96\x3e\x17\xc9\x62\x44\x8b\x68\x99\x48\x16\xc9\xb2\x60\xcf\x69\x9e\x8c\x60\xed\x19\x90\x94\xf1\x2a\xfe\xa6\xd0\x37\x5a\xec\xfb\x08\xe0\x36\xdd\x84\xcb\xd7\x76\x0c\xea\xf6\xe9\x20\x70\x14\x02\x90\x8b\xb1\xd0\x36\x2f\xf9\xe5\xbb\xab\x6b\x62\x66\xf7\x06\xcc\x23\xf0\xab\x9e\xa2\x3a\x07\x05\xb4\x24\x9b\x1b\x76\x0d\x8c\x26\xae\x76\x03\x79\x85\x34\xf1\x70\xee\xa2\x9c\xad\x12\x29\x9c\x44\x48\x7c\x4c\x4e\xad\x35\xa5\xcc\x63\x2a\x59\x3c\x26\xe7\x19\x39\xa5\x2b\x96\x9e\x52\xc1\x9e\xfc\x14\x80\x67\x1d\x29\xd8\xf6\x3d\x87\x40\xf2\x82\x90\xaa\xd8\x12\xda\xc0\xb1\x35\x2f\xaa\x7a\x70\xeb\x31\x74\x26\xe4\xb2\x4a\x72\x40\x49\x93\xfa\x56\x1f\x73\xb0\x8d\x37\xb9\xc5\x00\x13\x88\xf6\xd8\x2a\x34\x69\x1c\x52\xcf\x27\xc4\x90\x34\xa4\x60\x33\x96\x72\x85\x5b\x5c\x2b\xa0\x98\xcf\x6c\x1f\x66\x53\xfe\x4a\x8c\xc2\xef\xcf\x21\x2c\xb9\xa8\x1c\xb0\x9e\x80\x3b\x70\xa3\xac\x9a\x9c\x81\xfb\xdb\x36\x57\x50\x5b\x59\x93\x23\x70\x7f\xfc\x3d\xb9\x81\xe1\xa5\x1c\x5e\x4a\xf7\x08\x86\x97\xf2\xab\xbd\x94\x2e\xf5\xe8\xf7\x4a\x6e\xd3\xa2\xea\xb3\xfb\x3b\xc9\xee\x72\x70\x37\x39\x9f\xf4\x51\x72\xa9\x93\xd6\x1d\xea\x41\x87\x07\xe7\x93\xf5\x1b\xb8\x56\xe7\x93\xf5\xd1\x33\x23\x6e\x1b\xb4\xf0\xca\xd2\xe7\xa8\xbb\x3f\x57\x77\x73\x4e\x23\x06\x26\xba\xe9\x74\xaf\x61\x0d\xb1\x4a\x29\x50\x2f\xa4\x9c\xdf\x18\xad\x60\x62\x7a\x7a\x95\xc1\xc6\xeb\xc7\x09\x86\x3c\x9f\xd4\xfc\xf0\x30\x7e\x1b\xec\x74\x5a\xdd\x01\x44\x84\xca\x31\xf8\xb6\x7b\xdf\xf5\xe9\x54\x82\x8e\xa4\x14\x5b\x4e\xf2\x8d\xb4\x00\x10\x87\x69\xfd\x49\x78\xa1\x35\x7a\xbe\x41\x9b\x55\x9c\xa7\x53\x35\x9e\x2e\xdf\x6c\xf7\xaf\x89\x9f\xa8\xcf\x9a\x64\xfe\xa4\x03\x56\x74\x73\xcf\x69\x0c\x01\xc0\xea\xd9\xa9\xb9\x2c\xa3\xb3\xc4\xbb\x0a\x15\x50\x03\xe2\x1b\x36\x11\xa8\x6e\xc5\xb4\x54\x54\x92\xbc\x2c\x72\xae\x6e\xea\xc1\xf9\x5c\x7b\x48\x2d\x59\x75\x34\x6a\x1e\xe3\x02\xd9\xee\x67\x65\x54\x8f\x9c\xe1\xf1\xa7\x8c\x16\x99\x3d\x36\x7d\x82\xd5\xb8\x6a\x01\xa5\x00\xf5\x78\xd0\xb7\x63\x3a\x95\xe6\x38\xc6\x5e\xe5\xf6\xa3\xf3\x6f\xa4\x5a\xe1\x85\xdf\xe9\xa7\x71\xa5\xde\x61\x26\x4d\x85\xf7\xff\x05\x35\xfb\xda\xec\x52\xb9\xfb\xd8\xec\x24\x1f\x92\xac\xbc\x6b\xc7\x7a\x6b\x78\xb6\x08\xfd\x77\x40\xbd\x55\x2e\x37\x63\x52\x4d\xe3\xda\xaa\xd1\x70\x9b\x88\x56\xca\xa2\x3e\x0b\xbe\x66\x45\x86\x26\x1f\xeb\x06\xc7\x0f\x2b\xd7\xb7\x65\xc1\xcb\x05\xba\x37\x18\x0d\xae\x66\xaa\xdb\xa3\xf3\xf5\xe1\x02\x5e\xaa\x86\x36\x37\x01\xd6\xf4\x8e\x91\x2c\x00\x4e\xfe\x9d\x30\xb5\x7f\xbc\xd8\xb1\x42\x92\x35\x5e\x44\x7f\xb6\x8a\xca\xa9\x68\x0d\x65\xd6\x37\x15\xf8\x0e\x89\xab\x0b\xe6\x02\x43\x1a\x9e\x4b\x0e\x2e\xf2\x6a\x2d\x46\xc9\xe1\xf7\x30\x48\x79\x44\x53\x1b\xdf\xae\xf5\xa7\xe7\x73\x52\xa3\x67\x86\x96\x39\xe7\xdb\x0b\xd4\x70\x91\x0c\xbc\x6b\x2e\x87\xb0\x7d\xa0\x27\x6a\xef\x9a\xd7\x02\xc8\x39\xe0\xf7\x12\x19\x83\x46\xd5\x1d\xb2\xb0\xae\xad\x19\x50\x70\x44\x6e\x15\x99\xab\x13\x67\x3f\x3d\x40\x65\xee\xa8\x76\xfc\x9e\xc9\x6c\x48\x62\xa5\x17\x56\x37\xdb\x3b\x68\xe6\x12\x23\xc8\xa6\x5b\x80\xbf\xc4\xa1\x67\x55\x76\x09\x87\x84\x02\xd5\xd8\x66\xff\x88\x36\x67\xbb\x6f\x97\x2d\xa2\x5e\xe5\x1a\xc3\xa8\x2a\x25\x94\x14\x98\x85\x4f\xcf\x22\xc8\x81\x28\xfd\x14\x86\x0a\x38\x5a\x26\x97\x2f\xd4\x7f\x9f\xe9\x90\x20\xb0\x33\xb2\x98\xa8\x75\xff\x9d\x24\x92\x24\x22\xdb\x97\x95\x52\xba\xfb\x25\x27\x78\x99\xf3\x82\x2b\xee\xc5\x41\x01\x84\xb1\x43\x15\xea\x78\x58\xad\xda\xfb\xe6\x9a\xb8\xad\x63\xdc\x2b\x84\x49\x02\xf7\x83\xa1\x94\x68\xa6\x52\x1c\xd7\x2a\x4f\xd9\x4a\xe1\x1a\x92\xfa\x8a\x70\xb8\x8b\x16\x7f\xf7\x9f\x5e\x22\x13\x9a\xa6\x1b\xf2\x7f\x2b\x18\xe7\x05\x1b\x81\x7b\x8c\x35\xfa\x4c\xd4\x21\x31\x9d\xf3\xd8\x92\xfd\xa8\x5c\x85\x64\x02\xf5\x31\x25\xee\x91\xc1\xd7\xa5\xf4\x79\xe6\xb5\x1e\xb4\x11\xef\xcc\x9f\xf0\x6e\x4b\x31\xa0\xda\x69\xe7\x7d\xf0\x4d\x9a\x6f\xcc\x83\xaf\x57\x0c\x0d\x12\x25\x68\x67\x5e\x60\xb7\x2d\x22\x14\x38\xdc\x30\x6e\xa8\xc7\xbe\xc6\x0f\x3a\x4e\xbc\x78\x77\x75\x4c\xab\x49\x80\xec\x75\x08\x9e\x31\xd4\xb7\xb2\x2c\x42\x4f\x2a\xcb\x6e\xe8\x03\xd7\xbe\xae\x3b\xbc\x8e\x9d\x9e\xaf\xad\x1e\xaf\xdd\x5e\x92\x6a\x5b\x1d\xdd\x5b\x03\x56\xff\x48\x89\xcd\x9e\x2a\x8f\x55\x87\xff\x67\x16\x20\xd8\x23\x00\x6e\xe0\x97\x96\x4c\x75\xf7\xf6\x1a\xcd\x91\x8d\xed\x44\xf7\x93\x2a\x38\x1c\x2f\x5c\x02\xef\xdc\xdc\xe1\x8e\x71\x24\xbd\x88\x70\xfe\xcf\x2a\x58\x44\x3d\xb5\x56\x06\xc1\xbc\xef\x7a\x39\x8e\xe3\xa5\x11\x09\xd0\xa3\x30\x34\x28\x46\x5b\xe4\x39\xa3\x85\xf5\xe5\x83\x60\x1e\x62\xd7\x55\x99\xbb\xcd\xc8\xc6\x27\xb3\xe2\xd7\x47\x41\x8f\xc5\xc6\xad\x1c\xb4\x8d\x7f\x58\x6d\x63\x92\xd3\xd5\x2c\xe5\xd1\xcd\x53\xa8\x1a\xcf\x27\x27\x1f\xdf\xaa\xc1\x9b\x7a\x46\xfb\xc3\xb6\x92\xb1\x5a\x50\x53\xc3\x68\x7f\x19\xd4\x8b\x7a\x95\x83\x7a\x71\x50\x2f\xfe\x75\xd4\x8b\x96\x68\xf4\xd2\x2d\x66\x4d\xea\x53\x7d\x76\xd7\x2c\x2a\x81\x45\xc1\xae\xf3\xdd\xd7\xed\x8c\x4c\x08\xe4\x4a\x3b\x33\x25\x02\xff\x34\x72\x23\x86\xeb\x31\xe9\x55\x20\x25\xd2\x86\x0d\x38\x85\x49\xc8\x74\x4f\x49\xc7\xc7\x58\x3c\x44\xfd\x13\x38\x23\x70\x62\x9d\xee\xc1\x80\xe0\x1b\xca\xe4\xa1\x33\x61\x40\xd4\x55\x2d\x61\x5f\x58\x0a\x07\xe4\xee\x1d\x59\x7f\x9a\x2a\x81\x2d\x94\x6c\xbd\x0e\x19\xf5\x62\x03\xc5\xaa\xfa\x90\x24\x1b\x95\x3a\xc2\xc3\xb0\x21\xb0\xe2\x31\xc9\x92\x14\xaa\xda\x04\xe2\x2c\x56\x8c\x22\x9f\x53\x8d\x46\xe0\x8e\x31\x86\x6a\xc1\x8c\x67\x23\x67\x0c\x25\x4d\x27\x59\xcc\xee\x48\x72\x18\xd2\x29\xe8\xdf\x6d\xdc\x4b\xa2\x88\xa0\x06\xbe\x33\xcd\xd6\x62\x81\x42\x06\xc6\x44\xba\xa2\xc7\xc4\x09\xcc\x88\x42\xf0\x28\x81\xc4\x21\x54\xe2\x75\x64\x56\xa1\x7b\x62\xbf\xf1\xb2\x84\x0a\x94\xf7\x60\xa9\x5a\x24\x80\x6f\xc8\xf5\xa7\xb3\x4f\xc7\x98\xff\x28\x2b\xd3\x94\xce\x90\xad\x5c\xd1\xac\x04\xf1\x97\xc6\x31\x70\x97\x63\xf2\x33\x33\x4f\x0c\xd2\x21\x62\x13\x24\x14\xa3\x85\x3f\x21\xe8\x37\x0a\xc3\x96\x34\x8b\x53\x46\x7e\xfd\xed\xbf\x28\xe2\x87\x97\x2d\xdd\xe8\x4c\x26\x5e\x01\xdf\x2c\x24\x24\x37\xb4\x30\xea\x15\x4c\x3b\x11\xd3\x81\x3e\x78\xed\x52\x8b\xa9\xd6\x4f\xc8\x10\x32\xe7\xd4\x7c\xeb\x05\xbf\xea\x3a\x7e\x57\x54\x60\x4c\xae\x39\x99\xab\x87\xc7\x39\x6f\xd4\x9d\x60\xec\x5f\xd5\xd1\x4b\x11\xd4\x45\xa9\x45\x10\xd4\xf1\x72\x5f\xe8\x2a\x50\x06\x85\x9c\x65\x04\x03\xe5\xa9\x07\x31\x19\xea\x4a\xac\x5c\xb0\x3b\xb6\x75\x0a\xd4\x88\x09\x5f\x12\xbf\xb8\x47\x7a\x49\xd5\x82\x29\x46\x9b\x16\x3e\x92\xac\x37\xb7\x5b\x85\x87\x3e\xe2\x6f\x57\x18\xe3\xbd\xe5\xca\x28\x89\x3b\x5d\xcd\xaf\x0d\x26\xed\x0b\x72\x7a\x7e\x76\xb9\x23\xad\x8e\x59\xca\xa4\x57\xc2\xae\xcd\x72\x86\xcd\xf4\x5d\xb0\xcc\xa0\x8e\xd3\xb2\xee\xe9\xb7\xbc\xb8\xa1\x05\x2f\x15\x3a\x3b\x65\x0a\x02\x0a\x50\x85\x57\x4e\xc0\xfa\xc9\xe4\x1c\x1d\x95\x67\x1b\x5c\x16\xd2\xd5\x14\xe3\x6e\x0a\x26\xcb\x22\x23\x50\x4d\x64\x9e\x26\x7e\x48\xb3\xa2\xe0\x85\x09\xaa\xa9\x9e\xd5\x19\x63\x99\xc3\x1e\x49\x43\xa9\x4c\x3c\x38\x93\x96\xa2\xed\x1e\x92\xf6\xcf\x92\x65\x11\xbb\x80\xe8\x3a\x2f\x18\xc1\x4a\x70\x4c\x5e\x74\x80\x58\x11\x50\x25\x12\x82\x59\x0b\x07\xd5\x31\x7b\xa8\x57\x4e\x84\xd9\x02\x46\xbb\xcb\xc4\xaf\xfd\xa8\xb6\x9e\x08\x72\x5b\x24\x52\xb2\x4c\x2b\x06\x6a\xef\x15\x38\x32\x0b\xae\x27\x45\x01\x1e\xa7\xf5\x13\x5d\x58\x89\xcb\xc0\x10\x1d\x0d\xa7\x16\x02\x3a\x0d\x29\xac\xdf\xbd\xce\x38\x5d\xb0\x94\x51\x11\xb8\x3a\xc0\x8b\x1d\x92\x9c\x0a\xc7\xd0\x58\xdf\xb8\xf3\x1c\x02\x15\xad\x13\x37\xef\xa0\x69\xca\x6f\x05\x29\x85\xab\x5a\x06\xaf\x6e\x21\x09\x25\x05\xc5\x4c\xe7\x3a\x57\x97\x7a\xa3\x59\x26\x4a\x0d\x80\x73\x6f\x9d\xca\x25\x05\xcd\x36\x20\x11\x6e\x48\xbd\xce\x59\x4c\x0a\x36\xd2\x8b\x51\x52\x14\x64\xe6\x83\x60\x48\x6c\x63\xd8\x74\x0f\x46\x61\x99\x16\x78\x7a\x8f\xde\x84\x10\x2e\xf0\x2e\xd7\x11\xee\x3d\x2f\x2a\x92\xee\xc1\xbe\xde\xd4\xae\x63\x49\x9d\xcc\x42\xa3\x6c\x47\xee\xf0\x74\x2c\xb6\x7c\x93\x93\x04\x02\x51\x08\x42\x5a\x1e\x84\x75\x15\x3a\x8c\x5d\x62\x62\x6c\xac\x41\x1c\x21\x55\x9c\xed\x0d\xdb\x98\x34\x1a\xb9\x38\x24\x02\xe5\xe0\x1b\x06\xb1\x01\x11\x15\x52\x57\x59\x03\x02\x1a\x24\x10\x7e\xfa\x8e\xf9\x60\x4e\x7a\x0a\x0a\x57\xb5\xd6\x26\xc2\xd7\x4a\x2c\x6a\x3d\xb1\x92\x29\x11\xaa\x0a\x07\x33\xaf\x65\x3c\xe5\xd9\x82\x15\x48\x96\xb5\x9d\x11\xcb\xd7\x7c\x16\x38\xdc\x29\xcf\xe6\xc9\xa2\x39\x9f\xba\x24\x8c\xfa\xc2\x02\x5a\x69\x60\x99\xd9\x93\xee\xda\xe0\xe7\xaa\xa9\x89\x86\x2a\x30\xf6\xda\x68\x46\x5d\x46\x09\x75\xfe\x81\x50\x0f\xc5\xd5\xd7\x59\xa9\x47\xe4\x7d\x83\x8f\x72\x40\x25\x3d\x72\xd7\xbd\xf5\x53\x80\x6f\x1f\xc1\x03\xdf\xfc\xae\x8e\x31\xcd\x5f\x1d\x58\x0f\x8a\xce\x47\x52\x74\x46\x70\x19\x9e\x4a\xd3\x89\x57\xcd\xa7\xea\xc4\x5f\xfc\xba\x4e\xbd\x26\x9f\xb2\x33\xb2\x03\x0e\xda\xce\x41\xdb\x39\x68\x3b\xff\x72\xda\x4e\xa4\x1b\x3b\xa8\x3b\x5d\x12\x54\x7d\xee\xa1\xef\x2c\x25\xd7\xec\x26\x03\x86\xc4\xf7\xb6\xb6\xb2\x0a\x2b\x7a\x87\x1d\x27\xac\xf8\x11\x74\x96\x5d\x9c\x64\xbd\x3d\x28\x4d\x33\x9e\x8d\xfe\xc5\x0a\x7e\x68\x54\x68\x2b\x7a\xe7\xb0\x8a\xae\x99\xa8\xb1\x34\xc8\xae\x46\x33\x48\xd9\x61\x75\x9c\x20\x4d\x05\xd4\x9c\x2b\x7a\x97\xac\xca\xd5\x31\x79\xf5\xf2\xcd\xdf\xde\x7c\xf7\xfa\xe8\xcd\xdf\x3c\x8d\x92\x0c\x1b\x79\x44\xbc\x76\x5e\xbe\x8b\x39\x6c\x81\x65\x98\x11\xd9\x3a\xa4\x5d\x38\x8c\x81\x8d\xb8\x37\x1b\x81\xfa\xab\xa7\x62\x23\x7e\x84\xd1\x7d\x6c\x04\xfe\xe2\x67\x23\xf4\x9a\x7c\x6c\xc4\xd2\x0e\x38\xb0\x11\x03\x1b\x31\xb0\x11\x7f\x39\x36\x02\xe9\xc6\x0e\x6c\x84\x4b\x82\xaa\xcf\xee\x6c\x04\x3c\xd0\x0f\x51\x56\xf5\x12\xde\xfd\xfa\x98\xb0\xbe\xbb\x95\x6f\x41\x62\x79\x7e\x16\xec\xe7\xd3\xae\x07\x9f\x68\x8f\xfd\x75\x64\xa7\x18\xde\xe3\x47\x79\x8f\x73\xce\xd3\xa7\x79\x8b\x27\xdc\xb8\x0f\xba\xef\xb0\xfa\xd6\xf7\x06\xc3\x3a\xb6\xdf\xdf\x5c\x0f\x32\xbc\xbd\xc3\xdb\x3b\xbc\xbd\x7f\xb1\xb7\x57\xd1\x8a\xde\xef\xae\x6a\x7c\x1f\x59\x1d\xd3\xcf\x7d\x16\x3d\x7c\x1d\x6c\x53\xe3\xb4\x21\x30\xdf\x15\x1a\x1f\x88\xa2\x55\xd6\xef\xc8\x84\xc6\x41\xbe\x55\xdf\xe3\x0c\xae\x46\x36\x61\x97\x89\xcc\x3a\xac\x12\x6e\x49\x4e\x7e\x9d\xee\x5d\x97\x59\xc6\x52\xc8\xf3\xb6\xf7\xb3\x8e\xec\x98\xee\xfd\x06\xfb\x9e\xd1\xe8\x66\x04\x19\x2c\x65\x32\x4b\xd2\x2d\x21\x95\x3c\x4d\x5c\x1b\x3c\xcb\x57\xc9\xbf\x7a\x05\x4f\xa0\x31\x4a\x24\xff\x02\x1d\x42\x29\x30\xe2\xa5\x8a\x44\x24\x54\x88\x64\x91\xad\xd4\x65\x0a\xd6\xc5\xd0\xa9\xd3\x78\x3a\x26\x67\x0e\x78\x5e\x1d\xe9\xc1\x74\xc0\xe9\xcb\x57\xaf\xcc\x17\x47\x41\xe3\x4c\x80\x1d\xea\xeb\x43\x00\x87\x7c\x1f\x07\x82\x44\xd0\x59\xca\xde\xfe\x30\x79\x77\x17\x88\x69\xa8\x13\xad\x33\xec\x40\x18\x34\x57\x24\xaa\xe0\xa5\x4d\x2f\x0f\x10\x39\x9f\x10\x85\xf5\xfb\xda\xa5\x81\xf0\xb5\xdf\x3f\xe9\xed\x0f\x93\x31\xf9\xf5\xcc\x58\xd8\xe1\xd1\xfc\xcd\x53\xc7\xb6\x95\xb5\xd3\x1b\xe8\x34\x5d\x81\x41\xdb\x34\x06\xcd\x53\x51\x56\x91\xab\x8a\x3f\xae\x9c\x15\xf0\xec\xab\xa0\x54\xdf\xe2\xab\xed\x02\x02\xec\xb8\xea\x24\x4f\xf2\x6e\x50\x5b\x5b\xe1\xb1\x26\xde\x90\x71\x30\xc1\xfa\xec\x55\x94\xeb\xc9\xe4\x7c\xfd\x12\x6e\xdd\x2d\x2d\x62\xef\x6a\x6b\xb7\x51\x3d\x0e\x52\xbf\x2e\xee\xa8\xb0\x75\x24\x26\x87\xf5\x9f\xbc\x00\xc0\xd0\x5e\x7c\xa5\xd5\x05\x52\x8b\x1a\x7b\x8e\xaf\xc3\x73\x88\x65\xa1\xf3\xf3\x9f\xa1\x6e\x5f\x1d\xa1\x82\x25\x91\x40\x8f\xd4\x9e\x5c\x4a\xe7\x1f\x13\xe2\xd6\x62\x96\x26\x6b\x56\x54\x15\x96\xd4\x57\xb6\xfe\xa0\x68\xe4\x59\xf7\x9e\x30\xe9\x3a\x65\x02\x29\x3f\xbd\xd1\x5c\x5b\x7b\xbb\x06\x62\x7d\x3e\x81\x0e\x90\x62\x0a\xac\xd7\x99\x93\xa7\x6e\xba\x87\xa9\xeb\x4c\x3d\x51\xa8\x52\x3c\xc2\xca\xb9\xd3\xbd\x31\x21\x27\xa1\xfd\xaa\x31\x1b\x23\x54\x1e\x24\xa5\xd0\x33\x57\x30\x54\x67\xab\xae\x35\xe0\x48\xb0\x62\xbc\x03\xaf\x7a\xac\xfd\x16\xec\x08\x39\x71\xd6\x50\x5f\x77\x68\x74\x58\xa0\x41\xf4\xe6\x02\x6f\x4d\x16\x40\x77\x0d\x18\xef\xa6\x6e\x47\x68\x4c\x5a\x55\x41\xd3\x15\x87\x0d\x17\x6a\xea\x64\xa8\xc1\x33\x73\x02\x55\x90\x70\x6b\xf5\xc8\x83\x64\x5e\x7f\x36\x9f\xa9\x55\x54\xb0\x6e\x45\x9d\xf6\x87\xce\x2f\x05\x2b\x8c\xff\xd8\x23\x4a\xf0\xd4\xf0\x27\x68\x73\x2c\x8b\x8a\x37\xf1\x1c\x78\x3b\xaa\x9f\x37\xf6\x78\x68\x4a\xbc\x24\x02\xfd\x1a\x00\x50\xe8\x47\x36\xdd\xbb\x60\x6b\xc8\x08\x7f\x00\xe9\xd7\xeb\x93\xf9\x46\x57\x23\x68\xda\xec\xab\x2d\xd8\x1a\x2e\x49\xe5\x88\x97\x72\xc1\x93\x6c\xf1\x57\x21\xa9\xad\x54\x27\xa3\xf2\x53\x4f\x78\x60\xb6\xd6\xaa\x7d\x45\x54\x0d\x59\x84\x9c\xa8\x4e\xe1\x34\xd2\x1a\x71\xae\x19\x62\x25\x77\xb8\xf7\x7f\x8b\xb8\xf2\x52\x8a\x24\x66\x56\xc0\xb4\x2c\xaa\x6f\x50\x28\x2b\x23\xfe\x59\xb2\x82\xc6\xde\x1a\x41\xed\xd0\xe0\x71\xef\x6a\x10\x27\xe8\x7d\xa6\x99\x76\x9d\x14\x50\x61\x8b\x76\xe9\xb5\x11\xcd\x40\x69\x66\x1b\xcc\x01\xe8\x5b\xb3\x2d\xa9\xb4\x1b\x2e\xaf\xef\x52\x9a\x3d\xf0\x66\xff\xf4\xcb\x87\x93\x8b\xaf\x76\xb5\x61\x36\x2f\x6f\x6c\x17\x70\xef\xbb\x1d\x54\xc0\x6d\xfb\xdd\x0c\x7a\xb6\x1d\xf5\x6c\x20\xc5\xd7\x82\x3c\xea\x0e\xff\xe3\x9b\x72\xc6\x66\x65\x92\xc6\xac\x80\x09\xcc\xf4\x07\x20\xaa\x43\x3a\x76\xe3\x2d\x7a\x9d\xac\x98\x90\x74\x95\x1f\x83\x73\xbf\xab\xc6\x43\xf5\x18\xce\xf3\x24\xda\xbc\xcb\x6a\x82\x6d\xa5\x9e\xf3\xa3\x4f\xb7\xe7\x2e\x6e\x5b\xc5\x57\xd4\x47\x1e\x34\x7d\x83\xa6\x6f\xd0\xf4\xfd\xc5\x34\x7d\x0e\x01\xe9\xad\xf0\xdb\xa2\x48\xd5\x67\x77\x35\xa0\x26\x3a\x31\xe4\x30\xee\x62\x0a\x2e\xdd\xc6\xf5\x6a\xf6\xf8\x15\xcd\xe2\xe7\x35\x2d\x97\x5f\xb5\x01\x7e\x36\x5b\x8a\x11\x76\x17\xa5\x65\xac\xcb\x2a\x67\xec\xd6\x75\x99\x1d\x52\x01\x04\x9e\xf8\xa7\x32\x90\xa9\xd7\xb9\x7a\xb0\x45\x8d\x0b\x7c\x8a\x87\xf6\xdf\xcb\x19\x3b\xad\xe6\x3b\x75\xe7\x6b\xbe\xbb\x6d\x6d\xb7\x9f\xe1\xd6\x9d\x34\x5f\xe5\xb6\xc6\xc3\x23\xad\x57\x39\x3c\xd2\xc3\x23\xfd\xd7\x79\xa4\xdb\xa8\xcd\xf6\x9b\x5d\xab\xb5\xd1\x04\xb0\x13\x7f\xe4\x10\x99\xba\x88\xdd\xff\xe9\x76\x86\xe8\x23\xcd\x9b\xd9\x50\xbd\x8d\xd5\x4f\xcc\xcc\xba\x6e\xcf\x3a\x89\x4b\x9a\x76\x14\x57\x75\xa6\xdd\xfe\xb9\x43\x15\xdf\x55\x2f\x35\x50\x25\x35\xb0\xe4\x7a\xc9\xd4\x6a\x5d\xc1\x1a\xa5\xef\xb4\x66\x1f\x02\x48\x41\xe7\x70\x08\xc1\x9d\x92\x43\xe6\x00\xc9\x8d\x1e\x21\x30\x42\x8f\x6a\xb7\x8a\x4c\x65\x51\x92\xb2\x62\xc2\x8a\x84\x87\x63\x95\x9b\xc4\xe1\xb2\xd1\xd1\xf8\x2e\xe7\xf8\x97\xe4\xea\x5f\x90\xcd\xc1\x4c\x91\x04\x83\x1c\xcd\xc7\xc6\x44\x9a\x0c\x73\x54\x52\xe0\x25\x5c\xab\xd8\xb7\x2b\x9f\x49\xcc\x7c\xba\xe3\x9b\xbb\xa2\x9b\x03\xd9\xe6\xb6\x20\x70\xc1\xe3\xf6\x93\x56\xbf\xff\x31\x0e\x79\xe9\x24\x00\xec\x7b\xc0\x6e\xd2\xc0\xca\x8c\x2e\x36\x59\x64\x2c\x02\xf0\x42\x42\x1a\xcb\x2a\x8f\x7b\xdb\xe9\x9e\x19\x5b\xe3\x7d\x77\xda\x73\xb7\x44\x7b\xf6\x9f\x16\x8c\x06\x52\x02\x07\xf6\xbc\x7f\x62\xbb\x55\x27\x5b\x4a\xbe\xa2\x32\x89\xaa\x1a\x5c\xbc\xb3\x28\x7c\x1d\x2a\x20\x0a\xb1\x35\x2b\x36\xda\x92\x52\x21\xb3\x81\x49\x1b\x4a\x93\xde\x55\x8a\xfb\xd4\x28\x4e\x19\xbd\xf9\xa1\xa0\x11\xdb\xf1\xbe\x7f\xa8\xf7\x6b\x5c\xf7\x7a\x64\xa6\xc1\xf9\xb6\x3d\x81\x06\x1c\x2b\xaf\x43\xf1\x46\xea\x9a\xcc\xaa\x28\x77\xb5\x5c\xf5\x86\x5f\x21\x9e\x78\x22\x12\xea\x43\x6a\x63\xfc\xf9\x84\x2c\x68\x31\xa3\x0b\xb5\x9c\x34\x65\x11\x06\xd4\x56\x80\x7f\xf9\x50\x32\xf2\x57\x24\x9d\x04\xee\x3f\xd4\x8a\x6c\xbb\x7e\xf5\xdd\x5e\xd9\x2e\xae\x37\x8e\x2e\xb5\xc7\x49\xc4\xf3\x4d\xcf\xf2\xe8\x40\x51\xab\x02\x45\x4e\x52\x4f\xe1\xee\x52\x13\xd4\xa7\x7d\x25\x30\xe3\x5f\x9f\x77\x42\x27\x08\x6f\x79\x29\x74\x4e\xcf\x3f\xc6\x5b\xf1\xd7\xc3\xea\xae\xa3\xae\x97\xcc\xec\x73\xe4\xf5\x72\x99\x6d\x47\xaf\xc7\x0e\x2d\x5f\x17\xc0\x74\x51\x63\xc0\x81\xdf\x03\x07\x4c\xae\xe6\x0e\x2e\xaa\x6e\x4b\x6e\xf4\x69\xc3\x03\x33\x7e\x68\x0f\xac\xc1\x89\x0d\x98\xf0\xfb\x60\x42\x7b\x28\xc6\xac\x5c\xe8\xc4\xb2\x93\x1e\x9e\x83\x67\x8d\xf6\xdb\xcf\x42\x21\x31\xa1\x48\xb1\x66\x64\xc5\x56\xbc\xf0\xa7\xb7\x52\xe8\x94\x97\x36\x6b\x2f\x51\x9c\xce\xb6\x09\x1b\x7f\x6e\xd8\x9f\xdb\x93\xb9\xbc\x7e\x15\x82\x40\xc0\x39\x93\xc9\x28\xfe\xe9\xf5\x29\x5f\xe5\x14\x38\xae\x20\xd2\xd4\x91\xe5\x9d\xb7\x5b\x03\x65\x66\x4c\xde\x2a\x8e\x50\xcd\xb1\x7e\xed\x97\xf4\xcd\x00\x56\x25\x54\x31\x8e\xee\x75\x70\xf9\xc0\x17\x5e\x7c\x69\xc3\x93\x25\xa3\xa9\x5c\x9e\x2e\x99\x3f\x5e\xb8\xbe\xb5\x1f\x9d\xc6\x96\x00\xf0\xc2\x2c\x45\xd8\x0a\xd7\x4a\x46\xc0\x91\xbd\x5b\xc3\x01\x7a\x31\x39\x6d\x6b\x4f\xf9\xe2\x4a\x49\x22\x89\xdc\x5c\x45\x05\x63\xbe\x1c\x3b\x0d\xbe\xbf\xd9\xc3\x1c\x4b\xca\x17\x44\xe8\x5f\x08\x9d\xf1\x35\xd3\xf9\x4d\x52\xbe\x08\x24\xf4\x63\xe8\x3d\xa3\x15\xab\x42\xc6\xbc\x94\xee\x61\x9c\x67\x73\xbe\xeb\x8e\xf2\x82\xaf\x14\x33\x59\x8a\x8f\x4c\x16\x49\x24\xfa\x5c\xbd\xfd\x89\xaf\x97\xd9\xd9\xf5\xe9\x44\x5f\x3e\xe3\x34\x5e\x35\xf7\x6d\x6c\x85\x43\xe0\x45\x2d\x8c\x66\x79\x96\x64\x31\x68\x24\x3b\x30\xf0\xfb\x17\xdf\xbf\x09\x6f\xda\x7b\xd1\xc2\x7e\x20\x21\x5d\x57\x50\x99\x58\x99\x7e\x02\xa0\x6a\x55\x27\x42\x6f\x47\xad\xab\xcf\x55\x7d\xeb\xd1\xc2\x6b\xe1\xd0\xd1\x1d\x92\x73\xb9\x0f\xd5\x69\xe6\x65\x8a\x06\xc3\x78\x05\x9a\x49\x0e\x21\xed\x4a\x92\x03\x02\x88\x89\xa8\x68\x24\x4b\xba\xe5\x5d\x84\x23\xe2\x59\xdd\x52\x9b\x22\xdc\x64\xd8\xd7\x1e\xa3\x2b\x1e\xa3\x03\xff\x4c\xb1\xe2\xeb\xa4\xe0\xe0\xca\x4e\xd6\xb4\x48\xe0\x22\x6e\xad\x17\xdd\x29\x6f\xca\x19\x1b\xb9\xca\xcf\xbc\xe0\x11\x13\x4d\x4d\x47\x5b\xb9\xa6\x6a\xb6\x9f\xa8\x57\xf5\xb9\x63\x9c\x60\xe8\xf5\xaa\x1d\xdb\xbb\xfa\xac\xcd\x9a\x04\x1e\x00\x04\xbc\x44\xbd\x40\xc0\x04\x6e\xd9\x3c\x2d\xb1\x42\x01\x58\x01\xca\x2c\x4b\xb2\x05\x22\xc8\x8e\x59\xa5\x0a\xb7\x6f\xa7\x55\xd7\x6d\xdc\xd8\xd8\x7c\xae\x44\xfd\x35\xab\x61\x45\x22\xcc\x04\xbe\x0d\x26\xa1\x83\xe6\xf1\xa1\xce\x06\xbf\x62\xc5\xc2\x18\x3b\x4e\x26\xe7\x95\xad\x43\x71\x24\xfe\x27\x39\x80\x65\x1e\xb8\x74\x70\x61\xed\x5a\xf3\x2d\xe0\x3c\xa6\xe6\x9c\x74\x69\xcf\x7b\x2c\x9f\xf4\xd0\xa2\x6f\x6d\x62\x37\x4d\x7a\x1b\xcb\xf8\x98\xec\x72\xcf\xdd\x92\xdd\xd8\xe6\xad\xcd\xf7\x67\x9d\xbb\xb4\x90\x75\xce\xba\x17\xfb\xdc\x35\x64\x3b\x77\x4d\x1e\x55\x53\xd9\xa2\x88\x27\x4f\xa5\x8c\x27\x8f\xa0\x64\x21\xfd\xf1\xa4\xa7\x62\x7e\x6b\xbb\x3b\x28\xe7\xbb\x4e\xb4\xd2\xdd\x3f\x8e\x82\x7e\x87\xdd\x93\x5d\x14\xf5\x5b\x30\xe8\xa7\xac\xef\x1e\x14\x58\x93\x47\x57\xd8\x93\xde\x57\x81\xf4\xbc\x0e\x64\x27\xe5\x3d\xb9\xbf\x02\xbf\x6b\x63\xd5\x35\xda\x51\x89\xdf\x35\xb0\x87\x51\xee\x54\xe4\x77\x8d\xd9\xa1\xe7\x27\x3b\x1c\xd3\x40\xd4\x3b\x41\xd4\xcb\x3c\xb0\x0d\x9c\xc7\x33\x11\x90\x47\x35\x13\xf4\xdf\x7a\x9f\x0b\xdc\x6a\x32\xd8\x02\xca\x63\x9a\x0d\xc8\xd7\x7d\xd5\x86\x8b\xf2\x08\xd8\xd2\xcb\xea\x40\x9e\xcc\xf2\x40\x9e\xc8\xfa\x40\x06\x34\xfa\xaa\x68\xd4\xd3\x70\x41\x9e\xd2\x78\x41\x9e\xca\x80\x41\x06\x64\xfa\x8a\xc8\xd4\xd5\xa2\x87\xfd\x83\x3c\x95\x0d\x84\x3c\xbe\x1d\x84\x74\xdb\x42\x48\x9f\xa2\x33\xbd\x6d\x22\x5b\xc0\x79\x2c\xbb\x08\x79\x5c\xdb\x08\xe9\x81\x53\x1d\x36\x92\xed\xad\x3e\x92\x9d\x84\xec\x68\x2b\xe9\xb3\x97\x3e\x36\x93\xed\x0d\xed\x6c\x37\x09\x6d\x27\xe5\x0b\xf1\x00\xdb\x49\x9f\x1d\xf6\xb5\xa1\x6c\xef\xf2\x51\xed\x28\xe4\xa1\xb6\x94\xd0\xa0\x21\x13\x0b\xe9\xbe\xbf\x2d\x25\x5b\x5b\xcc\x2d\xa4\x95\x5c\x0e\x81\x3b\x4e\xe0\x8e\x0e\x9f\x07\x61\x26\x79\x92\x6c\xb3\x17\x38\x03\x0a\x54\xf8\x43\x15\x9b\x53\xfb\x71\x3b\x18\xa7\xb1\x3a\x7d\x0a\x36\xfc\xc6\xfd\x19\x86\xee\x19\x6f\x63\x15\xdc\xc0\x33\x0d\x21\x37\x43\xc8\xcd\x10\x72\xf3\xe7\x0a\xb9\x69\x33\xf8\x2e\x0a\x26\x3a\x3d\x43\xae\x4d\xf9\x6a\x85\xfe\x0c\x62\x52\xb1\xa3\xae\xed\x4e\xb0\xc4\x95\xfa\xc3\xda\x38\x7d\x2f\x18\x35\xbd\x31\x41\x09\x59\x51\x19\x2d\x49\x54\x24\x92\x15\x09\x85\x4b\x42\x49\xc4\x8b\x82\x89\x5c\xd1\xfb\x6c\x41\x34\x1f\x28\x39\x96\xdd\xde\x29\x56\xb5\xb6\x87\xe9\xde\x09\xb9\x54\x0b\x64\x59\x44\x73\x51\xc2\xbd\xad\x56\xe4\x5b\x4a\x40\x21\x4f\xb5\x5e\x97\xbc\xe5\x72\xd9\xa8\xbc\xed\x54\x13\x47\x8d\x97\x1a\xa8\x59\x61\x3c\xc0\x50\xd8\x2a\xfa\xba\xd2\xf7\x88\x08\x96\xd3\x02\x8b\x38\x95\x92\x50\x37\x26\x18\x9b\x40\xc2\x3e\xb5\x8a\x24\x83\xf3\x08\x2c\x38\x8b\xcd\x79\xb9\x80\x4f\xb2\xc5\x98\x4c\xa7\x99\x2e\x5c\xce\x45\x02\xd6\xe8\x06\x24\x96\x34\x34\x2a\xc9\xd8\x02\x16\xa7\x09\xaf\x12\x57\xd8\x3c\xb9\x33\x05\xc3\xa6\xd3\xe9\xde\x05\x97\xea\x3f\x63\x72\x92\xa6\xba\x5c\x80\x3b\xba\x7f\x64\x9d\x81\x8a\x22\x42\xad\x4a\x81\x95\xe2\xa8\x4c\x04\xb8\x45\x60\x3e\x17\xbd\x15\xc9\x71\xcc\x31\x39\x81\xc7\x6e\x3b\x49\xb2\x86\x2e\x20\x27\xcd\x0c\x82\x6a\x91\x4d\x6f\x1a\xca\x39\xa9\xed\xa8\x3f\xf4\x7e\xe0\x65\xc0\xc1\xc3\x70\x05\xe8\xfb\x97\x08\xf5\xc8\x4a\x74\x0b\xc1\x25\xfa\xf3\x65\x75\x6a\x05\x10\xe1\x82\x1c\x63\xb7\xcc\xec\xa4\xef\x09\x8e\xd2\x10\x75\xab\xc4\x5c\x35\xa7\x85\x06\x72\x00\xb3\x0c\x17\xb3\x45\x58\xaf\xa5\x0f\x22\x8a\x16\x4a\xdf\x3d\xee\x09\x0c\xe2\x1a\xe9\x5b\x72\x03\x05\x76\x36\xdd\xbb\x68\x76\x36\xc5\xb0\x72\xf4\x6b\xd1\x49\x9e\x42\x85\xfa\xab\x8f\x05\x0c\xb5\x44\x80\xb0\x3b\xf5\x84\x09\xa0\x0f\x9f\xb2\x74\x43\x64\x41\xe7\xf3\x24\x42\x48\x99\x3c\x65\x5d\x76\x01\x78\xe5\x0e\x14\x0a\x81\xb9\x0a\x29\x95\x7c\xe6\x18\xfd\x9c\x62\x6e\x38\x77\x38\x5d\x5e\x03\x64\xc2\xe6\xd8\x83\xb3\x54\x0f\x20\x24\x92\x02\x44\xde\x82\x4d\xfb\xa0\x48\x25\x39\xd8\x3e\x2c\x08\x94\xf8\x87\x6c\x59\x6c\x1c\x93\x04\x5d\xe1\x55\xc0\xe4\x44\xed\x83\x42\x2e\x2f\xa3\xa6\x73\xb6\x8c\xb8\x56\xd8\x75\x93\xd9\x06\x17\x6d\x66\xee\x00\xaa\xd9\xb6\x81\x97\x09\x01\x52\xeb\x42\x3a\xf8\x9e\x17\x75\x1e\xfb\x30\xf8\x06\x98\x0f\xe4\x57\xdd\x06\x1b\x49\x56\x79\x9a\x30\x51\x49\x93\x2e\xb2\x41\x71\xce\xae\x03\x03\x45\x12\xd8\x10\xb3\x45\x10\x26\x89\x03\xdf\x5e\x3e\x26\xb6\xc0\x6c\x6d\x9f\xc1\xed\xef\x2f\x52\x3e\xa3\xe9\xc1\xb3\x0e\xb5\xdd\xd7\x01\xc0\x0f\xb0\x18\xbd\x44\x25\x5d\xf3\xa2\xe6\x5d\x00\xdb\x68\x1f\x54\xed\xb1\x36\x4c\x75\xd0\x5d\x67\xd9\xb1\x5a\x77\x8b\xe8\xd6\x27\x4c\x55\xd6\xc6\xa1\x51\x48\xa1\x48\xa8\x3f\x61\x5a\xf5\xa9\xae\x6c\xe0\xe1\xb0\x73\xf7\x52\x9a\x66\x4c\xb6\xab\x9d\xeb\x4e\x2a\x4c\x8a\x30\x61\x54\xec\x3c\x14\xb2\x11\xdd\x46\x78\xf3\x04\xc2\x11\xc2\x5b\x01\xa2\x93\x9f\x2e\x5a\xd2\xd7\x01\xed\x3a\x5d\xac\xe5\xaf\x54\x9c\x43\x66\xcb\xbd\x63\x21\x67\x4c\x17\xd9\x1e\xf2\x19\xe6\x23\x9d\x79\x7b\xda\x96\x5b\x12\x1d\x57\x9f\x8c\xcb\x8b\xdd\xce\x04\x3b\x18\x95\x55\x83\xfd\x32\x3b\x56\x4d\x3a\x9e\x17\x75\x8e\x7f\x38\x58\x4c\x78\xb1\x23\x30\xa0\x47\x07\x34\xa0\x4d\x1f\x70\x90\x2b\x28\x22\x0b\x58\xfa\xff\xb3\xf7\xae\xcb\x71\xe3\x48\xfe\xe8\xf7\xf3\x14\x58\x79\x23\x6c\xef\x51\x95\xec\xbe\x78\xba\x35\x31\x1f\xd4\x92\xec\x56\x8c\x2d\xd5\x5f\x2a\xbb\x67\x62\x34\xab\x46\x91\xa8\x2a\x1e\xb1\x00\x0e\x41\x96\x54\xd3\xd3\xff\xe8\xc7\xd8\x8d\xd8\x7d\xb9\x7e\x92\x13\xc8\x04\x48\x90\x04\x59\x2c\x5d\x7d\x01\x23\x66\x5a\x2e\x82\xb8\x24\x12\x89\xcc\x44\xe6\x0f\x52\x2c\x18\x5c\x60\x2b\x02\x11\x4b\x32\xa7\x4b\xf4\xee\xcb\x6d\x0c\x1c\x59\xe1\xbf\xd6\x08\xda\x94\x59\x58\xdc\x51\x66\xdc\x73\xd2\x78\x17\xa1\x76\xad\x51\x69\x41\xae\x0c\x94\xb5\x52\x51\xdf\x9a\x0c\x78\x7e\xe3\xfd\x91\x01\x94\x7d\x7f\x30\x6a\x45\x2b\xc5\xa7\xcf\xac\x52\xbe\x3a\x99\xae\x29\x33\x58\x7f\x90\xd0\x2c\xdc\x27\xb4\x28\xa1\x59\xc6\x52\xbe\x4b\xfe\x73\xf8\x1f\xdd\x25\xaf\x07\x97\x45\x8c\xc5\x20\xe2\xd9\x40\xa4\x03\x6c\xa1\xed\x66\xfa\xf2\xe9\xcb\x90\x9b\x2b\x97\xc7\xe5\x47\x6b\xd8\xb2\x9f\x7e\xa5\x39\x93\x9c\x31\x6b\x73\x41\x29\xac\x0c\x0c\x99\x4f\xb2\x98\x29\x5d\x19\x0d\x2e\xdd\x56\x77\x9d\x85\xb6\xd4\xc9\x2a\xfd\xe6\x2c\xd9\x6c\xc9\x9e\x6f\x15\x2b\x76\xdd\xb6\xb2\x7e\xb3\xed\xb1\xad\xcc\xc1\x62\xd6\x7e\xa7\x67\x96\x11\xf2\x7c\x0d\x1b\x16\xe7\x00\xa8\x6a\x4a\x83\xe1\x9c\xcd\x99\x64\x24\xa5\x7c\xc6\xe4\x8e\x71\xdb\x01\xd6\x73\x27\xc4\x30\x3e\x15\x48\x2f\xbd\x74\xe0\xd8\x08\xa9\x2c\x0d\x05\xb4\x0f\x4c\x37\xb3\x46\x57\x9e\xe2\x1c\xa0\x02\xd7\x57\x82\xad\x95\x00\x58\x74\x23\x09\xb6\x66\xec\xa5\x78\xab\x49\xb0\x73\x94\x61\xe7\x5a\x8a\x9d\xa3\x1c\x3b\x57\x92\xac\x53\xe7\xf1\xb2\x0c\x9e\x5e\xb2\x4c\xde\xc0\x4a\x5e\x6f\x1c\x77\x7a\xfa\xca\xc7\x69\x1c\x93\x67\x92\x31\xe3\x22\x03\x51\x46\x17\x49\xcc\x88\x5c\xf1\x8c\x5e\xbb\x80\x66\xed\xe7\xfc\xbc\xd3\xb6\xd6\x3a\x64\x9b\xed\xdc\x5d\xb7\xf1\x8c\x59\xa6\xb5\x48\x9b\x26\xb3\x5a\x6e\xc7\x22\x63\xd0\xb6\xe2\x9e\x35\x44\xd0\x59\x33\xe6\xd0\x60\xcd\xae\x80\xe4\xb1\x76\x93\xee\xda\x27\x2c\x16\x57\xcf\xb7\xab\x5d\xb6\x88\x8d\x54\x25\x51\x26\x59\x3c\x35\x87\xd3\x6b\xe8\x80\xce\x30\x70\x73\x8e\xe7\x8c\x64\x57\x02\x78\x0d\xd0\x97\xcc\x3b\x14\x10\x6a\x13\x5a\x95\xd0\xec\x6b\xe6\xee\x84\x9b\xd1\x9b\xd0\xae\xd2\xfd\xca\x2c\x2b\x09\x47\x83\xae\x05\x5d\x7e\xfd\x9e\x70\x35\x17\xb1\x9e\xa4\x5d\x98\xa2\xf3\xf3\x72\x43\xfe\x13\x48\x97\x7f\x9b\x53\xf9\x6c\xb1\xba\x80\x98\xcb\xe7\x20\x77\xb4\x90\x5f\xb7\x9c\xf5\x4d\x03\xc6\x0b\x01\x4c\x86\xfd\xc3\x88\x98\x32\x21\x27\x54\xed\xf6\xe4\x37\xa8\x2f\x14\x10\xf8\x01\x52\x1a\xcf\x94\x26\x2c\x86\xee\x9a\x9e\xa2\x13\x55\x0f\xa9\x37\x63\xe0\x90\x5b\x47\xdc\x1c\x94\xea\x45\xdb\x7d\x29\xe5\xd3\x3d\xde\x62\x48\xeb\x86\xb3\x6e\x91\x73\xe0\x3c\x4c\x93\x42\x75\x4a\xbb\x12\x62\x10\xad\xfa\x12\x04\x38\x4b\x2e\x46\xb2\xbe\xf3\x5c\xf0\x81\x0e\x61\xd2\xe7\x61\xe4\x6a\xce\x52\xa6\xfd\x22\x53\x91\x2e\x98\xed\xa4\x80\x88\x29\xac\xbd\x87\xd3\xae\x49\x1a\x0b\x6f\xe8\x0e\x8c\xf8\x6a\xa4\xe5\x06\xba\x57\x35\xd8\xf2\xe1\x74\xb0\x9a\x58\xee\xae\xd3\xe1\xf2\xa4\x24\x11\xa1\x49\x89\xc3\x23\x90\x42\x44\xf7\x08\x0b\x2d\x02\x43\x3b\xb9\xad\x77\x0e\x88\x7d\x60\xdf\xfe\x34\xf3\xc3\x6e\x4f\x6e\x72\x13\x92\xaf\xaf\xb2\xcd\xd3\xec\x20\x7b\x2f\x6a\x13\x2b\x14\xf7\x6a\x2e\x24\xba\x25\xd5\xf0\xb5\x0a\xa8\x14\xe0\xb5\xc9\x15\x7d\x94\x3b\xb2\x51\xd2\x4a\x4f\x4d\x89\xf4\xd5\x96\x48\x73\x7d\xad\xd5\x97\x3e\xdf\x99\xae\xd8\x4a\xa5\xd7\x0d\xe5\x7e\x71\x9b\x42\xcb\x9d\x65\xd5\xa7\x3c\x86\x80\xd3\x85\x33\xfb\x54\xa1\xb4\x45\xf4\x15\x07\x6c\xa5\x7e\x5f\x5f\xe9\xde\xf1\xc1\xd3\x1e\x39\x3d\x9b\x79\xb4\xd6\x65\x40\x69\x2a\x6e\x64\x1f\x6b\x29\xdd\x25\x2f\xfa\x69\xdd\xf8\x25\x1e\x10\x17\xf2\xd2\x82\xc8\x34\x0d\x41\xd0\x69\x19\x70\xda\xe3\x64\xa6\x53\xe9\xae\xb3\x57\x5f\xad\xdb\x71\x9c\x65\xe8\xf7\x4c\x3e\xaf\xab\xdf\x18\x4e\xa3\x7a\xb3\xce\x57\xb6\x03\xbd\x82\x4b\xe6\x4d\x4f\x9e\x4a\xb0\x6e\xb5\xc5\x6c\xe8\x1d\x14\x61\x21\x05\x31\xd6\xd1\xa2\x7a\xb2\xa5\x56\x8e\x61\xd6\x6d\x5b\x75\xdf\x6e\x9e\x28\xac\x21\xf3\x31\x53\xea\xaf\x71\xf6\x8a\xb4\xbe\x77\x63\xd7\xd1\x95\xa2\x08\x61\x3c\xa1\x6b\x4e\x2b\x15\x3f\xa9\x09\xb4\xc7\x88\x7e\xa3\x82\x0a\x82\x9b\x40\x02\x1d\xd8\xd1\xad\xb2\x6c\xb4\x6d\x6e\xbe\x6b\x16\xdd\x2c\x73\xa8\xf1\x48\xbe\x7f\x7a\x15\x31\x63\xb3\xce\xe0\xef\x48\x08\xf4\x4b\x15\x6f\x19\x1a\x26\x8c\x37\xc7\x87\xbf\xbb\x01\x6e\x9b\x0f\x4a\x59\x3d\x42\x58\xc9\x31\x9b\x66\xe6\xce\xc7\x62\x0f\x81\xd5\xd3\xc3\x49\x43\xec\x85\x08\x57\xce\x28\xf3\xfc\xa9\x2c\x7b\xf6\xa0\x12\x74\x7d\x99\x79\x96\xb9\xee\xe1\xc3\xa7\x9a\x83\x3c\x1e\x8f\xca\xf3\xfa\xd6\x20\x06\xc5\x25\xaa\x68\x7b\xd7\x8b\x78\xf4\x5b\xc5\x2f\x2c\x58\x36\x17\xe1\x06\x3b\xc3\x3b\xfc\xe0\x6e\xb5\x76\x1c\x32\x0a\x75\x1c\xb7\x15\x2a\xa7\xea\xc4\x4b\xac\xd8\x5a\x0c\x51\xa3\xd7\xb1\x10\x6b\x31\xbd\x7d\xc6\x86\xb3\x21\x79\x73\x38\xde\x26\xa3\xf7\xe3\x6d\xc2\xb2\x60\xf8\x9c\xbc\xcb\xe3\x2c\x4a\xd6\x9d\x73\x68\x12\xc1\xbe\x7f\x72\xfa\x54\x99\x61\x33\x48\xb2\xfc\xb8\xce\xad\x12\x9a\xcd\x37\x98\xc7\xa7\x23\x55\xfe\x3e\xa6\x71\xdd\x0c\xae\x97\x28\xf6\x0c\x42\x37\x87\xc5\x54\xe1\x30\xcd\x5c\xf4\x9d\x0c\x42\xd8\x70\xb6\x4b\x06\x84\x5d\xd3\x20\xdb\x25\x3b\x53\x21\xc8\x40\x07\x89\xed\x92\x9d\x09\x4d\xc9\xf1\xc9\xf8\x70\x17\x03\xd0\x18\xcf\xd2\x15\x59\xac\x53\xcf\x4f\x8e\xdf\xfe\x55\x4b\xce\x15\x61\x11\x38\x60\x28\x39\xdf\x82\x46\xd0\x8b\xac\xfe\x89\xad\x18\x5f\xc7\x90\x8c\xd7\x0d\x7f\x49\xe3\x28\xa4\x85\xb3\x0f\x12\x33\xf0\x4e\xb7\xcc\x75\x89\x5b\xf9\xf4\xe1\xb9\x5a\xfe\xc8\x78\x3c\x52\x14\xb6\x36\x00\xca\x91\xf0\x8a\xd0\xfd\xf7\xaa\xa3\x0c\xe2\x63\x27\xcc\x10\x42\xfb\x11\xa7\x22\x5d\xec\x1a\xb2\x9f\xe7\x2f\x5e\x7c\x1d\xa8\x8a\xe1\x2f\xb6\xab\xc1\x86\x7a\xb9\xbd\x90\xd5\xa0\x57\x50\x9d\x12\x18\x69\x31\x85\x65\xd5\x03\x4d\xef\x5b\xb5\x80\x75\xac\x09\x35\xd9\x00\xaf\x01\x09\x70\xb7\x66\xa4\x1e\xfa\x5d\x56\xda\x17\x50\xa1\x87\x40\x5a\x5f\x55\x14\x2c\x7a\xee\x99\x47\xfb\xef\x46\x7d\x23\x40\x40\x18\xb5\xf7\xdd\x96\x52\xd6\x45\x7c\xaa\xb7\x3a\x47\x13\xaf\x13\x84\x26\xb5\x81\xa1\x6f\x51\xed\xb0\xaf\x30\x42\xbf\xa9\xd3\x46\xd3\xea\xf9\x54\x71\x9f\x63\x71\x6a\xae\xda\xe9\x52\x6d\xe1\x3c\x5d\x15\x5a\xbe\xea\xf0\x53\xf6\xe2\xc4\xa0\x1b\x18\xa6\xbe\xcf\x83\x66\x22\xb8\x4d\x25\x20\x4a\x80\xb7\x9a\x6e\x60\xac\x41\x52\x93\x22\x30\x46\xe5\x43\x88\x2a\xdc\x18\x6b\xd3\x4a\x9f\x5e\xc2\xd1\x64\xc6\x82\x39\x8f\x82\x26\x68\x59\xf5\x01\xb7\x28\xba\xff\xa3\x45\x22\x2c\x2c\xed\x4b\xa5\x94\xc7\x4f\x25\x89\x92\x0c\xf3\xe0\xa6\x51\xca\xae\x68\x1c\xaf\xe9\x2a\x4a\x0b\xed\x94\xcd\x25\x06\x4e\x31\x3e\x15\x98\x2f\xa0\x43\xf4\xd6\x2f\x8d\xb5\x67\x78\x50\xec\xf6\x93\xa1\xaa\x19\x62\x2c\x19\xbb\x86\x83\xab\x75\x47\x60\x38\x07\x62\x4a\xbe\xc3\x28\x6f\x18\x21\xd4\x75\x18\xcc\x05\x39\xc5\x4d\x5b\xdf\xca\x98\x44\x7c\x26\xbb\xcf\xc0\x7a\x8d\xb7\x87\x30\x48\xdc\xe9\x36\x2d\x04\x39\x1a\x99\xb4\x9b\x5b\x07\x86\x55\x9c\x5b\xa8\x8f\xdb\x54\x1e\x99\x93\xb1\x56\x2a\xf4\xa0\x40\x4b\xe2\x44\xcb\xe0\xde\xe9\xd2\x56\x58\x6f\x01\x75\x07\xf9\x20\xe9\xa2\xbc\x2b\xcc\x95\xc4\x52\x1d\xdc\xad\x84\x46\xf3\x7e\xc7\x96\x72\x7d\xc1\xf8\xca\xa7\xef\xb6\x54\xbd\x5a\xb5\xec\x8f\x4e\xf8\xc1\x53\xbb\x4b\xb6\xd2\xac\x9d\xd0\x48\x43\xed\x75\x37\xaf\x4c\x56\xc2\xae\xb3\x94\x56\x68\x4a\x27\x22\xcf\x7a\x6c\x24\x77\x65\x39\x72\x91\xa9\xd5\xd7\x8f\x33\x8e\xb1\xf0\x9a\x88\x1e\x28\xd2\x1d\x59\xe7\x37\x0c\xbf\x61\x7c\xda\x1b\x06\x17\x99\x51\xab\x5a\xc9\xd2\x1d\x75\xd3\x33\xde\xa6\x5f\xa4\x4d\x23\x20\xd4\xa8\x7c\x6b\x62\x42\x75\xb1\x76\x82\xad\x59\xc7\x3d\x42\x7b\x6e\x16\xd4\x93\x7c\xac\xc4\x3d\xdf\xb2\x69\x7b\x87\x7b\x7f\xe3\x60\x0b\x3c\xbc\xb6\x26\x60\x68\x32\x04\xae\x8f\xd2\x2e\xcf\xbc\x8e\xce\xd5\xf3\x7c\x08\xa9\x46\xa7\x90\x29\x67\xb2\xbe\xd0\x6d\xfe\x6c\xc2\x02\x9a\x4b\x1d\x13\xb7\xe6\x28\xa1\xe8\x62\xc0\x52\xa8\xa3\x88\xab\x7b\x8e\xae\xf8\x77\x3a\xfd\xab\x12\x25\xb8\x6e\x8b\xc5\xf0\xc1\x5d\x3b\x02\x6e\xdb\x8e\x7f\xc3\x7f\x80\xa5\x52\xf9\xd7\xf2\x55\xf9\xef\xb3\xfd\x31\xbe\x6d\x6f\x46\xd7\xf8\x36\xca\x98\x09\xb2\xa3\xdc\x30\x88\x39\x94\x85\x50\x43\xf2\x72\xf0\xd5\xb7\xdf\x76\xb8\xfc\xef\x8f\xed\x31\x10\xa3\xdf\x6e\x8c\xb7\x6e\xf7\xcc\x4a\x23\x99\xe8\x30\x20\xb1\x26\x9f\x90\xe6\x13\xd2\xd6\x1f\x7b\xfa\x84\x34\x9f\x90\xe6\x13\xd2\x7c\x42\x5a\xdb\x88\x7d\x42\x9a\x4f\x48\xf3\x09\x69\x3e\x21\xcd\x27\xa4\xf9\x84\x34\x9f\x90\xe6\x13\xd2\xda\x46\xe2\x65\x99\x4f\x48\xf3\x09\x69\x3e\x21\xcd\x27\xa4\xf9\x84\x34\x7c\x7c\x42\x9a\x4f\x48\xab\x3f\x3e\x21\xcd\x27\xa4\x15\x8f\x4f\x48\xf3\x09\x69\x3e\x21\xcd\x59\xa9\x4f\x48\xb3\x68\xe1\x13\xd2\x7c\x42\x9a\x4f\x48\xab\x3e\x0f\x99\x90\xd6\x71\xfd\x02\x21\x03\x8d\xe2\xeb\x7a\xd7\xe7\x1a\x7f\xa7\x9e\xa0\xd7\xc6\x0d\xe0\xbb\xab\xab\xca\xe3\x77\x7b\xfc\x6e\x8f\xdf\xed\xf1\xbb\xdd\xdd\xf3\xf8\xdd\x3e\x5c\xca\x87\x4b\xf9\x70\x29\x1f\x2e\xe5\xc3\xa5\x7c\xb8\x54\xf9\xf8\x70\xa9\xf2\xf1\xe1\x52\x3e\x5c\xea\xa3\x0a\x31\xf0\xe1\x52\x3e\x5c\xca\x87\x4b\xf9\x70\x29\x67\xe1\x4f\x4c\x96\xf9\x70\x29\x1f\x2e\xe5\xc3\xa5\x7c\xb8\x94\x0f\x97\xf2\xe1\x52\x3e\x5c\xca\xf1\xf8\x70\x29\x1f\x2e\x55\x3c\x3e\x5c\xca\x87\x4b\xf9\x70\x29\x67\xa5\x3e\x5c\xca\xa2\x85\x0f\x97\xf2\xe1\x52\x3e\x5c\xaa\xfa\x78\xfc\x6e\x8f\xdf\xed\xf1\xbb\x2b\x8f\xc7\xef\xf6\xf8\xdd\x1e\xbf\xbb\x57\x0b\x1e\xbf\xdb\xe3\x77\x7b\xfc\x6e\x0f\xc7\xea\xe1\x58\x3d\x7e\xb7\xc7\xef\xf6\xf8\xdd\xed\xfd\xf7\xf8\xdd\x7e\xc3\xf0\x1b\x86\xc7\xef\xf6\xf8\xdd\x95\xc7\xe3\x77\x7b\xfc\xee\xda\xe3\xf1\xbb\xdb\x0d\x48\x8f\xdf\xed\x13\xd2\x7c\x42\x9a\x4f\x48\xf3\x09\x69\x3e\x21\xcd\x27\xa4\xf9\x84\x34\xfb\xf1\x09\x69\x3e\x21\xed\xa3\x4a\xe2\xf0\x09\x69\x3e\x21\xcd\x27\xa4\xf9\x84\x34\x67\xe1\x4f\x4c\x96\xf9\x84\x34\x9f\x90\xe6\x13\xd2\x7c\x42\x9a\x4f\x48\xf3\x09\x69\x3e\x21\xcd\xf1\xf8\x84\x34\x9f\x90\x56\x3c\x3e\x21\xcd\x27\xa4\xf9\x84\x34\x67\xa5\x3e\x21\xcd\xa2\x85\x4f\x48\xf3\x09\x69\x3e\x21\xad\xfa\x7c\xde\xf8\xdd\x00\xca\xbd\x0e\xbd\xfb\x44\x15\xea\x90\xdf\xd5\x49\x17\x58\xda\xd9\x4f\x0c\xbb\x43\xdc\x64\x70\x94\xa8\x4a\xe1\x64\x31\x1c\xa2\xef\xa4\xf0\xfc\xce\xa3\x99\x32\x44\xcf\xb7\xa0\xbe\xf3\x2d\xd8\x2e\x75\x59\x57\xd5\x74\xaa\x0c\xa8\x0c\x14\x34\xa8\x20\x16\x57\x2c\xc5\xde\x60\x18\xa3\xd5\x39\x49\xc4\x22\xca\x32\x25\x77\x23\x93\x01\xe3\xaa\x34\x10\x5c\x46\x08\x5b\x8e\x3e\xbe\xf3\xad\x88\x4f\x23\x1e\x65\xec\x7c\x8b\x0c\x08\x04\xcf\x59\xc3\x31\x52\x5d\xf7\x93\xc4\x54\x66\x43\x52\x8c\xcc\x49\x12\xd5\xd7\x28\x64\x3c\x8b\x02\x1a\xeb\x0e\xd6\xeb\x89\x38\xa1\x71\x32\xa7\x3c\x5f\xb0\xd4\x2a\x07\x88\xe1\xae\x5a\xb5\x2c\xd7\xee\x28\x8c\x10\x71\xda\xa7\xc8\x1b\x3c\x5f\x4c\x9a\x9e\xc2\x0e\xb5\xb1\xb6\xc9\x8f\x6d\x37\x0d\x32\x8a\xe5\xac\xc9\xa5\xb6\x39\xa3\xe0\x12\xff\x4f\xe4\x4e\xfe\x57\x5d\xae\x19\xdd\x16\x71\x75\xba\x86\x45\x96\x4c\x98\x3d\xaf\xdd\x75\x50\xf6\x43\xa9\x0e\x71\x2c\xae\x50\x14\xa0\x07\xa9\xf0\xa9\xa0\x62\xf7\x27\x74\x2f\xe0\x6a\xbf\x88\xa3\x8c\xa5\x14\x2c\x7b\x57\xcd\xe7\xe7\x64\x80\xe9\x4a\x8a\x51\x16\x09\x4d\x23\x29\xf8\x36\x81\x9c\x45\xe3\x16\x30\x55\x4e\x85\x20\x13\x9a\x82\xaf\xa2\x68\xee\xdf\x36\x6c\xae\x6c\x4f\xed\xec\xec\x1f\x39\x8d\xff\x88\x11\xb6\x46\x53\x8d\xa6\x5a\x45\x8d\x24\x94\x31\x9e\xf7\xa2\x49\xf7\xba\xfc\x05\xfa\x41\xcb\xb8\xb0\x49\xf9\x67\x80\x7f\x0e\x87\x43\xf2\xab\xd5\x83\x2c\xcd\x99\x49\x94\x29\x62\x4d\xb1\x8d\xbf\x10\x77\x6c\xbb\x3e\x72\x58\xd3\x54\xd9\x57\x35\x80\x88\xf7\xe8\x9c\xab\xb1\x0d\xfb\x0b\x8d\x75\x75\xd0\x3d\x25\x56\x9f\xe7\x54\x3e\x83\xfa\x2e\xd4\xe6\xf2\xbc\x6c\x7a\x5c\xb4\x4c\xb3\x72\x76\xac\x99\xf9\x37\x60\x52\xa7\xcc\xd7\x55\x14\xee\x49\x31\x85\xb2\xe0\x9d\x82\xff\xe6\x2f\x5e\x7c\xf5\x0a\xff\x1f\xdf\x14\xdf\x9c\xcd\x45\x9a\x0d\x82\x28\x0d\xf2\x28\x03\xad\x4a\x7f\xe4\x6a\xe8\x5f\xff\xea\xfc\x1a\xce\x31\xb2\x67\x58\xe6\x79\x51\x28\xa1\x29\xd3\x1a\xf9\x2c\x15\x79\xa2\x34\xf2\xf3\xf3\x8c\xc6\xf1\x33\xe7\x79\x94\x86\xb4\xc7\xa8\x94\x42\x5e\x98\xda\x0c\x0f\xd3\x38\xb6\x5c\x4c\xb0\x40\xdf\x22\x3f\xa0\x0d\xe5\x36\x8f\xa8\x5a\xda\x28\x67\x4c\xa4\xa6\x2d\x32\xe5\x36\x19\x6c\x93\x0b\xa0\xc3\xce\x90\x9c\xc1\x92\x23\x7a\xc9\xb5\x56\xba\x10\x29\x23\x89\x52\xff\xa5\x8c\x96\x8c\x4c\x30\xc7\x60\x65\xdc\x9b\xda\xf1\x4c\x98\x0c\x68\xc2\x48\x30\xa7\x29\x0d\x32\x96\xea\x6e\x1f\x62\xa8\xb6\x73\x31\x3c\x03\xc1\xbf\xa0\x21\x1b\xe4\x09\xb2\x85\x7c\x5e\x88\x23\x48\x6c\xd3\xa2\xe3\x8a\x4d\x94\xe1\xc0\xb4\xf0\xb0\x67\x3c\x64\x49\x2c\x56\x0b\xc6\x9d\xe2\x54\x7f\x9f\xa4\x22\x34\x4c\x0a\xf5\xaa\x35\x05\x32\x29\x15\x3c\x63\x3c\xb4\x58\x9d\x06\x97\xfa\x87\x5f\x55\xf1\xb2\x7e\xf2\x6f\x7f\x6a\x5b\x01\x21\x5b\x9a\xea\xff\x8d\xd4\x56\x81\x4b\x94\x75\x69\x54\x55\x67\x60\xc7\x71\x75\x87\x27\xb0\xdb\x6f\x31\xc5\xf8\xd5\x72\x5b\x70\x0d\xcb\xec\x58\xc8\xa3\xda\xa1\x80\xd7\x73\x08\x6e\x3a\x69\x7c\x05\xae\x63\xe7\xae\x31\xc2\xa1\x43\x8f\x3d\x15\xce\x26\x22\x1e\x46\x01\x98\x9e\x57\x73\x48\x98\xb6\x15\x59\x3b\x2a\x4b\x5b\x39\x4e\x39\xa5\xd6\x9d\xd0\x17\x78\x6c\xeb\x7f\x4d\x44\x36\x1f\x12\x0c\x94\x84\xdd\xe4\x3a\x51\x4a\x4a\x16\xaf\x2c\x5b\xea\x19\x5c\x3e\xe2\x8c\x80\xb5\xe4\x28\x27\x41\xca\x74\x7e\x86\xd4\xab\x5b\xa4\x84\x47\xf1\xf3\x6d\x93\x63\x11\xb2\x29\xcd\xe3\x4c\x12\x1c\x96\x22\x5d\x1a\xb6\xa8\xd4\x99\x20\x57\x4a\x56\x1e\x69\xc3\x4d\x75\xe2\x50\xff\xa9\xd6\xa3\x96\x9c\xc5\x0d\x1c\x18\xef\x07\xae\x75\xdd\x8c\xab\xd6\x48\xe2\xea\x1a\x90\xbf\x69\xbd\x48\x75\xc5\xb4\xf1\xf7\x6d\xbd\x39\x28\x2d\x13\x8e\x0d\x4c\x93\x78\x4f\xca\xb3\x88\x07\x71\xde\xda\xe3\x39\x23\x01\x55\x9a\x27\x54\x50\x56\x43\x70\x7b\xe6\xa2\x18\x0c\x54\xf7\xdc\xd1\x93\xc3\xd6\xfb\x57\xea\x7d\xab\x74\x4c\x89\xa4\x7a\xf5\xed\xe3\x74\xb2\x47\xbd\x0f\x8d\x06\xc1\x83\xe5\x98\x0d\x6d\x51\x3b\xe5\x02\x47\xd6\xaa\xea\xfa\x29\xa3\x6a\x1d\x05\x97\x84\xce\x68\xc4\xb7\x35\x37\xe0\xb1\x47\x7c\x45\x57\x52\x47\xc1\x3b\xb9\xd8\x44\x2b\x60\x98\xc2\x36\xe1\x6c\xc9\xd2\x0a\xbf\x39\xad\xfb\x9e\xd7\xfb\x94\x54\x20\x0c\x36\x8d\xe2\x40\x2f\x11\x52\x46\x93\xd8\x34\x5c\xc6\x61\xa9\x0f\xce\x12\x16\xb8\xed\x3d\x1c\x5b\x7b\x64\x5a\xb7\x65\xd9\x6a\xb4\xb9\x6d\xbd\xe6\xaf\xb0\x67\x84\xf6\x79\xbb\xcc\x44\x4a\x67\xcc\xfc\x24\x33\x9a\xe5\x48\x18\x3c\x72\x62\xe1\xb1\x75\x18\x70\x19\xf1\x50\xc9\x21\x43\xd2\x24\xce\x53\x1a\x97\xbf\x04\x82\xe3\x09\xb0\xdc\x25\x7f\xfb\xbb\xfa\x45\xd5\xcf\x42\x9d\xe1\xa9\x7f\x3d\xe7\x83\xc1\xe0\x9c\xd3\x24\x32\x89\xa2\x84\x26\x11\xbb\xce\x18\x87\x52\xc3\xcb\xef\xe4\x30\x12\x3b\xcb\x97\xe7\x1c\x5b\xdc\xcf\x65\x26\x16\xa7\x0c\x8f\xb2\x0e\x18\x98\x5b\x20\xa7\x2b\xe9\x98\xe0\x80\x21\x1c\x43\x5e\x25\xcb\xe4\x30\x48\xc3\x61\x92\x0a\x45\x81\x00\x84\xce\x50\xa4\xb3\x73\xae\xa4\x19\x7c\x01\x2a\xca\x2e\x69\x29\x56\x3d\x09\xc1\xae\x94\x71\xb9\xf8\x6b\x1c\xc9\xec\xcf\xb5\x37\x6f\x23\x99\x55\x09\x64\xf5\x49\xd3\x3d\xe2\xb3\x3c\xa6\xa9\xfd\x4a\xbd\x01\x41\x96\x2e\xd9\x7b\x7e\xc9\xc5\x15\x7f\xad\x38\x45\xee\x92\x29\x8d\x25\xcc\x98\x0c\x84\x9a\xd4\xc2\xbb\x02\x96\xde\xd2\x90\x57\xfd\x63\xa0\xc9\xa0\xa8\x07\x2d\x05\x73\xb6\x28\xd3\x55\x45\xc2\xf8\xde\xe8\xe8\xc3\xd7\x67\xd5\xdf\x9b\x81\xb1\x26\xfc\x58\x87\x78\x95\x4d\x0e\xd8\x3f\xf2\x68\x49\x63\x25\x70\x35\xdf\xd7\x63\x96\x2d\xe6\x6e\x71\x9f\x59\xb3\x5f\xe5\xe5\x2a\xaa\x85\xea\xaa\x8e\x1e\xc0\x68\x7b\xec\x8c\x1e\x31\x0b\xf5\xf0\xb0\x1f\x20\x4d\xf4\x56\x40\x5d\x7e\x11\x31\x85\xdd\x1f\x56\xc4\x10\x54\x04\x96\x4a\x63\x44\x06\x82\x2f\x59\x9a\x91\x94\x05\x62\xc6\xa3\x7f\x16\x95\x4b\x13\xcf\x00\xb7\x7b\x35\x36\x92\x88\x67\x2c\x55\xca\x04\x88\x02\xf4\xda\x2e\xe8\x8a\xa4\x4c\x35\x43\x72\x6e\x55\x68\xa2\xa9\xde\x29\x25\x32\xe2\x53\xb1\x0b\x78\x43\x72\x77\x67\x67\x16\x65\x86\xf1\x03\xb1\x58\xe4\x3c\xca\x56\x3b\x70\xc2\x1a\x4d\xf2\x4c\xa4\x72\x27\x64\x4b\x16\xef\xc8\x68\x36\xa0\x69\x30\x8f\x32\x16\x64\x79\xca\x76\x68\x12\x0d\xa0\xef\x1c\x56\xde\x70\x11\x3e\x49\xf5\x4a\x91\x4f\x5d\x72\xa2\x29\x5e\x80\xb5\xbb\xa6\x41\x71\xb8\x4e\xd2\x45\x2d\x19\xb7\xf9\x82\xda\x26\x94\xe4\xf4\xf0\x6c\x4c\x4c\xeb\xce\x84\x66\x24\x7e\xf9\xa5\x2c\xe7\x41\x11\x2d\xe2\x53\xa3\xcf\x80\x53\xdb\x36\xff\x71\x4b\x8d\x23\x87\x6a\x2b\xf3\xc9\x22\xca\xa4\x05\x54\x23\x86\x64\xbf\xf0\x76\xe7\x49\x48\x33\x16\x0e\xc9\x11\x27\xfb\x74\xc1\xe2\x7d\x2a\xd9\xbd\xcf\x02\x28\x75\x03\x45\xdb\xbe\xf3\xd0\x92\x5c\xde\xe6\xca\x2b\xc4\x58\xcb\xb4\x95\xeb\x51\xed\x48\xd5\xec\x26\x93\x0c\x57\xa6\x9f\xd3\x86\x6c\x2b\x1f\x33\xa5\xb5\x4d\xab\xc3\x35\xde\x12\x87\xdf\xb8\x02\xd0\x84\x0a\x1e\x8d\x0a\x49\x88\x56\xf1\x84\xc5\x42\x71\x95\xd0\xbe\x19\xe6\x3a\x50\x6d\xdf\xc7\xbf\x88\x9d\x14\xf6\x51\xf8\xbf\x27\x3a\x85\x6d\x97\xe0\x06\xb6\x93\xb1\x45\x02\xf2\x6a\x07\x7f\x18\x70\x11\xb2\x41\x3a\xa1\xc1\x70\x45\x17\xb1\xfa\x62\xff\xf8\x88\x04\x71\x2e\x33\x96\x92\x54\xc4\xac\xd8\x6d\xf1\xb7\x53\xf8\xc9\xde\xa5\xe1\x6b\x9a\x67\x73\x91\x46\xff\xc4\xb8\x29\x6b\xab\x76\x6c\xc5\xba\xe9\x80\x47\x83\x24\xce\x67\x11\x3f\xe7\xa0\x1f\xea\x8d\x8a\x26\xd1\x1b\xb5\x01\xab\xd1\xa8\x81\xff\x1d\x69\x51\x48\xaf\x62\x62\x07\xca\xd8\x92\xe5\xbf\xd4\x58\xec\x7f\x16\x29\x24\xf8\xdb\x92\xa5\x13\xfb\xe3\x19\x32\xf4\xc6\x0d\xee\xe0\x24\xba\x2b\x4d\xcc\x51\x43\xbd\x5a\xb7\x32\xd1\xd5\xd6\x24\x16\xc1\x25\x9d\xa2\x56\x63\x0f\x2c\x4a\xe8\x02\x5e\xd6\x7e\x9b\x53\x1e\xc6\x76\x41\x3d\x8d\x16\xfa\x41\xe5\x8b\x44\x88\xb8\xf2\x03\x6a\x19\xcd\x82\x74\x11\x08\x3e\x8d\x66\xdd\x84\xc4\x7f\xc4\x91\xb4\xfe\x05\xe6\x1e\x2b\xff\x8d\x22\xb7\xfc\x77\xc8\x62\xa6\xfe\xdd\x93\x5b\x2f\xf3\x09\x2b\xe3\x8b\x52\x69\x73\xee\x39\xff\xe5\x97\x68\x4a\xd8\x3f\xc8\xf0\xf4\x87\xbd\xfd\x7d\xe8\x31\x39\xdf\x52\x45\xce\xb7\x7e\xfd\x55\xd5\x7f\x04\xa6\x19\x23\xd4\x90\x46\x31\x78\x71\x81\x62\xbd\x76\xf0\xd5\x0a\xce\x78\xb6\xad\x3e\x86\x2b\x18\x61\xc7\xcb\xcc\xd6\xdf\xd2\x2d\x63\xf7\x97\xe1\x37\xf7\xb4\x84\xea\x0d\xdb\x0b\xe9\x09\x39\x56\xeb\x01\xcc\xb2\x2b\x1d\x61\x98\x09\xb2\x10\x3c\x82\x48\x7a\x91\x22\xf5\x61\x5f\xda\x78\x21\x58\x6b\xad\xce\x0e\x57\xf6\x69\x5b\x9d\x21\x34\xaf\x3c\x21\x23\x83\xb8\x67\xf5\xad\x04\x42\x63\xd7\x91\xcc\xe0\x7e\x52\x2a\x49\x42\x53\xbd\x19\xec\xbd\x23\xe5\x68\x37\xef\x74\x29\x2e\x36\x60\xe1\x62\x38\x4f\xb0\x03\x45\xc5\x3a\x1f\x93\x47\x09\x5c\xf0\x0a\x67\x2f\x78\x9b\xac\x84\x23\x57\x45\x22\x64\x1a\xb5\x56\x35\xeb\xcb\x6d\x35\xa2\x2b\xa6\xcc\x58\x49\x12\x96\x46\x22\x8c\x02\x92\xa5\xd1\x6c\xc6\x52\xf7\x44\x6c\x2e\x3a\x5c\x4b\xb9\x3e\x64\x33\xca\xc7\x16\x54\xf7\x20\x4d\x1c\x53\x37\x52\xb2\xae\xb1\x16\x68\xa4\xfd\xbf\x64\x41\x13\x70\x4a\x8b\x29\x0e\x07\x41\x30\x46\x04\x64\xe4\x9d\xcd\x8a\x25\x71\xdb\xa6\xa3\xd1\xf3\x86\x70\x59\x50\x4e\x67\x4c\x92\xb9\x90\x99\x15\x60\x79\x27\x5d\xac\xd4\x79\x8f\xf3\xf3\x84\x1c\x33\x16\x82\x77\x8f\x49\xa0\x35\x96\x75\x6d\x59\x77\x34\xb4\xd6\xcd\xf0\x0e\x07\x68\x4d\xdb\x9f\xf3\x09\xdb\x2f\x67\x0d\xb7\xa3\x3c\x2d\x9c\x9f\xe8\xff\x8b\x32\xd5\x9c\x24\xca\x4a\xc1\x3d\xf6\x6e\x06\xab\x98\xc6\xe2\x99\xc0\x6e\xdd\x39\xec\x27\xe8\x71\x53\xfd\x10\x57\xdc\xea\x4b\x83\x26\x4f\x34\x15\x08\x35\x3e\x54\x12\x4d\x09\x17\x9c\xa1\xd4\x96\x6d\xe4\x7a\x62\xe6\xd8\xd6\x9f\x9a\x54\x7c\x82\x54\x84\x6d\x20\x98\x57\xf2\x80\x0a\x02\x83\xba\xd0\xd8\x53\x7f\x88\x38\xba\x5d\xef\x69\x6b\x15\x31\x3b\x65\x98\x53\x63\xe6\xa7\xa3\x7e\x55\xcc\xb1\xed\xaf\x6d\x46\xe6\x60\x50\xa8\xa9\x19\xe8\x0a\xaa\xa7\x16\x3d\xea\xb0\xe3\x73\x50\x80\xc8\x95\xcc\xd8\x42\x53\xee\x16\xd6\x41\xb7\x06\x65\x7d\x46\x0e\x28\x5b\x08\x7e\xc6\xd6\x29\x4f\x50\xf8\xa1\x14\x26\xd5\x58\x55\x49\x7a\x2f\xf5\x15\xda\x78\x32\x51\x46\x56\x97\x01\x9e\xe2\x92\x71\xa9\xc3\x3a\x72\x0b\x53\x4a\x59\x4a\xc6\x80\xd9\x50\x13\xa9\x8e\x57\xee\x40\x1b\xd5\xe2\xc7\x95\x70\xeb\x81\xcb\x6a\x72\x49\xaf\x72\xcd\x3d\x01\x4b\xba\xec\x24\xe1\x20\x72\x33\xa1\x56\x33\xe8\x42\xdb\xa8\xc6\xa1\x73\xca\xce\xb8\x7f\x0c\x3b\xec\x09\x31\x50\x06\x67\x71\x64\xd4\xab\xdc\xcc\x8e\x5e\x02\xfa\xe6\x7b\xed\x13\x30\xe7\x05\x06\xc8\xed\x89\x01\xe6\x5a\x98\x5c\x9c\xfa\x28\xc2\x48\x06\x62\xc9\xd2\x95\x59\xa4\x5d\xa3\x2a\x36\x42\xe8\xcf\x46\xca\xee\x46\xd4\x6b\xc4\x89\x16\xfc\xd1\x22\xaa\xdf\xeb\x43\x47\x33\x9a\x82\x65\x8f\x46\x78\xc6\x4e\xc3\x25\x4b\xb3\x48\x96\x84\xe8\xec\x6d\x4b\xad\xe3\x55\x32\xa7\x72\xe8\x56\xde\xc9\xfe\xd1\xc1\x29\xa1\x79\x26\x06\x21\xcb\x58\x80\x41\x07\x1c\xa4\x0d\x0d\x17\x9a\xd9\xca\xfd\x1d\x77\x14\xa5\x67\xdd\x80\xbf\xf0\x63\xf5\x6d\x27\x0b\x6d\x6e\xc1\x74\xd8\xf2\xa8\xa2\x18\xe1\x10\x33\x0a\x1e\x4e\x65\x53\x69\x87\xd8\x7b\x4e\x97\x34\x8a\xe9\x44\x09\xc0\x98\xce\x2c\x42\x25\x36\x9d\x9f\x98\x93\x4d\xf0\xd5\x48\x4c\x4f\x0d\xaa\xfa\x80\x85\x4f\xa8\x16\x2a\x5a\x0e\x05\x10\xe2\xd0\xb5\x57\x3e\x21\x3f\xd5\xf7\x49\x45\x67\x2b\xce\xd9\x46\xf9\x88\x5a\x96\xb5\x5e\x49\x11\x9f\xf5\x59\x11\xba\x74\x52\x89\x52\xeb\xb9\x24\x34\x83\x4d\x56\x86\x1c\xaa\xe3\xe6\xc0\xaf\x1c\xff\xad\x85\x4f\x4d\xda\x38\xa4\xed\x86\x0a\x78\x4d\x8a\x26\x26\x7f\xac\x74\x05\xdd\xac\xcf\xfd\xfc\x48\x05\xf7\x68\xc3\x5d\x92\x25\x4d\x23\x91\x4b\xb2\x7f\x7a\x80\xab\x1d\x79\xe9\x8e\xd4\x64\x04\xbd\x99\xb2\x38\xba\xae\x38\x7d\xd4\x3b\xeb\xd7\xaa\x2e\x09\x56\xe0\x2c\x49\x18\x4b\xab\xbf\x4c\xa3\x38\xab\xfc\x86\xd5\x4f\x66\x49\xa3\xf2\xe2\xb7\x66\xd5\x1b\xb9\xaa\xea\x06\x27\xb6\xe8\xe4\xdc\xc6\x6b\xc9\x6c\x21\xdc\xfa\x8d\xb3\x74\xa7\xb3\xcd\x61\x57\x75\x5a\xce\x38\x59\x20\xa2\x80\x49\x6e\x60\x2c\x5f\x35\x39\x28\x97\x59\xa1\xbc\xf3\xb0\x50\xc7\x95\x3c\x02\x66\x12\x5c\xe9\xe6\x69\x96\x27\xf7\x61\xf1\xae\xe5\xa0\xde\x16\x5a\xbb\x19\x56\x1d\x6b\x7d\x80\x8e\x51\x91\xd6\x61\x91\xae\xfd\xa8\xe7\xf4\x38\x3a\xd6\x6f\x13\xd0\x51\xb9\xaa\x85\x3b\xf5\xcd\xf5\xe3\x97\x31\x04\x4f\x98\x68\x36\xc1\x51\x17\x83\x04\x0a\x13\x78\x0e\x82\x27\x4f\x66\x29\x0d\x75\x3a\xf0\xf2\xab\xe1\x2b\xd4\x24\x03\x04\x0e\x7b\xa2\xf4\xe5\x94\x2d\xc4\x92\x85\x3a\xe8\xda\x7c\x20\x52\x35\xc2\x69\xca\xe4\x9c\x44\x5c\x66\x34\x8e\xef\xd4\xd6\xef\x90\x25\x55\x31\xb5\x09\x67\xb9\xa9\x52\x21\x88\x9e\x63\xb5\x5b\x64\x42\x15\x55\x33\x8a\x6e\x43\x1a\xc7\x22\xb8\xdb\x41\x7e\x7c\x6e\xb7\xc6\x66\x89\xec\x00\xc6\x25\x28\x35\x4a\x2b\xd4\x96\x14\xe8\x4d\x4a\x31\xac\x79\x13\xce\x0b\x57\x6b\xc5\x67\x72\x57\x02\x69\x93\xb3\x0c\xdb\x96\xfa\x01\x9c\xb8\x25\xb9\xab\xa0\xc5\xb0\x78\x60\x44\x93\x15\x2c\x6b\xe4\x87\x54\xe4\x6a\x68\xb3\x59\x6a\x10\x05\xee\x71\xea\x5b\xf5\x30\x3d\x2b\xc8\x9b\xc0\x8c\x8b\x68\xa6\x85\x4e\xc5\x26\x0c\xc1\x64\x87\x10\x19\x07\xb7\x07\x94\xeb\xe4\x87\x27\xc5\xb2\x06\xcf\x4f\xa6\xd7\xb5\xd2\x8f\x41\x14\x00\xea\x67\xb9\xaa\x49\x2e\xd5\x2b\xb5\x07\x0e\xd4\x22\x88\xa1\x13\x4e\x52\xd0\x24\x91\x9d\x23\x2f\xbb\xd8\x31\x7f\x8e\x50\xa2\x6e\x87\x41\xbb\x2b\x69\xad\x2b\xe1\x3e\x9c\x42\x58\xf5\xe6\x8e\x20\xfc\xae\xdd\xf9\xf3\xcb\x2f\x8c\x87\xbf\xfe\x7a\x63\xf7\xcf\xfd\x12\xb4\x72\x1e\x7c\x1f\x64\xb5\x1b\xd8\x9c\xb8\x55\xc7\x4b\xa7\x7f\xad\x1f\x65\x0b\x9f\x1a\x80\x28\x2d\x28\x8f\xa6\x4c\x66\x66\xe5\xc8\x86\x8f\x4c\x07\x6a\xb0\xb4\x38\x42\x02\xc7\x9a\xac\xf9\xa2\x30\xee\xd2\x78\x48\xb4\xd9\xad\xe4\xe7\x13\xcc\x05\x5d\x50\x38\xda\x57\x85\x54\x09\x96\xa2\xb9\x09\xa7\x20\x96\xf1\xa8\x95\xb1\xc2\x15\x57\xb8\xf3\xea\x21\x7a\x89\xec\xe5\x73\x6b\x27\x19\xd1\x31\xed\x26\x06\xe2\x3b\x39\xa0\x49\x52\x5f\x0c\x26\xa8\xa5\x96\x6a\x04\xa9\x00\x6f\xed\xef\xdb\x6a\x20\x7a\xdf\x3a\xcb\x52\x9a\xb1\xd9\x6a\x57\x1f\x18\x0f\xdf\x57\x7e\x56\xcb\xe3\x97\x5f\x48\x26\xfe\x4a\x17\x71\xfd\x25\xf9\x17\x89\x78\xc8\x78\x46\xbe\xc1\x72\x2c\x96\x4c\xfd\x45\x8a\x70\x90\x53\x11\xc7\x11\x9f\xbd\xb7\xf6\xc8\xd4\xfe\xa9\xe8\xe5\x82\x5e\x5b\x1e\x84\x5d\xf2\xd2\x5a\x9f\x84\x18\x8e\x31\xc3\xac\x87\x00\xc5\xd5\x21\xb7\x0f\x9a\x80\x07\xe2\x94\xf2\x60\xce\xd2\x81\x89\xef\xc1\x28\x9b\xd2\xc5\x80\x38\x44\xc1\x9c\x85\x79\xcc\xd2\x21\xe4\x43\x0c\x4b\x64\x26\x08\x7c\x4a\x23\x48\x3c\x1b\x24\x22\x2c\x73\x9f\xc3\x32\x20\x6b\xf9\xf5\xf0\xe5\xd7\xc3\x6f\x20\xfa\x9d\x98\xa6\xdd\xd7\x4b\x20\xcf\x6f\x13\x0a\xc1\x3c\x90\xdf\x00\x4c\xac\x9b\xd8\x0b\x43\xc1\x25\xc2\x1c\x89\x98\xe9\xad\x0a\x90\x7e\xb6\xed\x4a\x16\x14\xe3\x82\x18\x44\xdd\x43\xfa\xbe\xe9\x25\xa1\x61\x38\x80\x1c\x2b\x2e\x73\xf0\xdc\xe8\xa3\x16\xfb\xfb\x24\x8d\x44\x1a\x65\x2b\x33\x72\x00\x01\xe0\x3a\x57\x11\x03\xc7\xec\xb3\x5e\x1d\x84\x19\xda\x55\x44\x53\x55\x31\x84\x17\xc3\x41\x0e\x5b\x46\x41\x56\x49\xb7\xef\x4f\xd5\x5d\xf2\x54\x47\x84\x55\x42\xb8\xd4\x4c\x3a\xf2\x1b\xaa\xf5\x08\xb9\x4b\xe2\x88\xe7\xd7\xa6\xc0\x2f\xbf\x68\xa8\xed\x7f\xbf\xdc\x26\xff\xbe\x24\xbb\x7f\x22\xc3\x63\xab\x26\x62\xd8\x56\x17\xfe\xf7\x4b\xf2\xeb\xaf\xbb\xe4\x7c\x4b\xfd\xbd\x54\x6f\xb7\xac\xaa\x18\x0f\xad\x0f\xd4\x4e\xae\x9d\x4b\x55\x94\xae\x72\xb6\xaa\xb3\xfd\x8e\x5e\x32\x22\xf3\xb4\x2a\xd0\x80\x60\x86\x3c\x90\x2f\x41\xe3\x18\xad\x17\x8b\x7e\x03\x8d\x82\xb3\x4b\x8e\xc5\x99\x2e\x5c\xbe\x85\xd0\xd5\x94\x2a\xd2\x90\xc3\xca\xf1\x13\xb6\x9b\x5e\x76\xf2\x07\x6a\x69\xac\x9c\xff\x4a\xc3\x97\x6c\xb5\xeb\x60\xca\x7e\xad\xdb\xfd\x3e\xbc\x66\x41\x9e\xf5\xea\xf6\xba\x20\x16\xcd\x54\x95\xbd\xea\xd8\x25\x6e\xb1\xb2\x42\xa0\x68\x82\x44\x3c\x5a\x44\xff\x64\x24\x14\x57\x3c\x8b\x16\x8c\x84\xb8\x3a\xa8\x91\x52\xb6\x8d\x66\xe2\x43\xfe\x48\x32\x16\xc7\xf6\xee\x90\x09\x12\x0a\xb8\xfc\x0e\xfc\xed\x65\x03\xe6\x93\xf3\xad\x32\x7a\xb2\xca\xa9\xa1\x08\xe4\x4e\x20\x78\xc0\x92\x4c\xee\x18\x88\x60\xb9\x03\x2e\xb1\x44\x84\x3b\x4f\x0c\x8a\x42\x24\xf8\x40\x4c\xd5\xca\x28\xf9\xc1\x7a\xf7\x26\xa5\x01\x1b\x41\x04\xc5\x19\x0b\x04\x0f\xe5\x2e\x79\xd1\x10\x79\x25\xbe\x3f\x3a\x49\x4d\x01\xb3\xf6\xf7\x63\x2a\x25\x12\xf0\x97\x5f\xc8\x10\xb5\x64\xb5\x50\x46\xf5\x02\xe4\x5f\xc5\x81\xe7\xf9\x16\x6e\x5e\xa8\x21\x19\x9e\x3a\xdf\xb2\xd6\x88\x52\xcd\xf7\xcd\x8e\xdd\x94\x7d\xe5\x6e\x6e\xcc\x44\x59\x35\xa7\x6b\xda\x32\x58\x4a\x38\xc1\xca\x86\x19\xda\xf5\x1d\x65\x5a\x37\xd7\x96\x98\xbe\x96\xcc\xdc\x9d\xd2\x34\xb3\x21\xb3\x27\x9a\x92\x95\xc8\x11\xa8\x8a\xc6\x29\xa3\xe1\xca\xae\x54\x77\x06\xac\xb5\x5c\xb2\x96\xc6\x4d\x58\xb9\x2e\x0d\xaf\x6d\x2e\x8f\x16\x10\xfc\xf8\xcb\x2f\xc3\xfd\xe3\xa3\x23\xf5\x0f\x5b\xec\xe8\xf7\xa3\x3c\x8e\x31\x45\x62\x97\x1c\x4d\xe1\x6e\x0d\x08\x02\xb6\x0b\x06\x62\xb1\xa0\x4a\x0f\xf9\xdb\xf9\xd6\x8e\x48\xb2\x9d\x80\x47\x3b\x93\x88\xef\x58\xfd\x82\xdc\xb4\xad\x81\xee\x4b\x61\x46\xe0\xc3\xf8\xf2\x75\x2a\x16\x95\xa8\x50\x73\xb0\xf0\x8e\x26\x46\xd9\xb4\x9f\x27\x64\x0f\xb2\x80\xff\xfc\xfe\x87\xc3\xd3\xe3\xc3\xf1\xe1\xd9\xc5\xd9\xe1\xe9\x87\xa3\xfd\xc3\x8b\x1f\x4f\xce\xc6\xb0\x55\x38\xde\x8d\x4e\x4e\xc7\xda\xc6\x15\x4b\x96\xa6\x51\x18\x32\x14\x34\xec\x87\xd1\x6b\xb2\x30\x3e\x1d\xfb\x41\x2a\x5a\x50\x88\xe6\x00\x68\x60\xbc\x86\xf5\x2f\x4c\xb2\x5a\x13\x26\x91\xf1\x65\x6d\x28\x66\x96\xac\xce\x1e\x9f\x1c\x1c\x5e\x1c\xef\xbd\x3b\xac\xd7\x0b\x21\xdc\x0d\x4a\xe1\x03\x19\x2a\x2e\x4a\x15\x2f\x47\x34\x9b\xef\xc2\x92\x1b\xaa\xa5\x01\xc9\xe4\xce\xae\xec\xef\xbd\x3d\xda\x3f\xb9\x38\x3e\x1c\xff\x74\x72\xfa\xe7\xa3\xe3\x37\x17\x3f\xec\xed\xff\xf9\xf0\xf8\x60\x93\xfe\x14\xb3\xf7\x67\xb6\x6a\xeb\x56\x55\x87\xaf\x84\x35\xd8\x0f\x88\x7a\x2c\x75\x61\x72\x1b\xad\x62\x4b\x11\xe7\x0b\xf6\xce\x85\x3b\x36\x20\x0b\xf5\x33\x8e\x7c\x67\x49\xd3\x9d\x38\x9a\x00\x7b\x1a\x37\xb1\x7b\xb2\xcb\x05\x3e\xe0\x2c\x1b\x84\x51\xda\x55\xaf\x2a\x6d\xf3\xbd\xbb\x4e\x65\xa3\x4c\x22\x5e\xaf\x4c\xb2\x20\x07\x51\x26\x78\xc6\xae\xeb\xd7\x54\x26\x69\xb4\x8c\x62\x36\xab\x06\x2e\x13\x97\xa8\xaa\xd8\x26\xca\xe4\x98\x44\x9c\xa6\x15\xbc\x02\x3c\xea\x57\xef\x6a\x26\xc8\x34\x8a\x21\x03\x10\x8c\x10\x5e\x5d\x04\x86\x2b\x74\xfd\xca\xd6\x7a\x58\x29\xa2\x1b\xf6\x32\xc3\x1a\xc8\xb1\xc6\x9c\x31\x73\x6d\xcf\x63\xe1\xb7\x1b\xb6\x2c\xef\xe3\xa3\x8b\xfd\x93\xe3\xd7\xed\x22\x46\xa9\x9a\x2f\x5f\x0c\xb4\xc3\x4b\xd5\x0d\x4e\xc7\xad\x7a\x2f\x8c\x43\xb1\xc6\x4d\x90\xc7\x0a\x73\xd6\xc6\x53\xf5\xee\x68\x51\x03\xdd\x3a\x7a\xf3\xa8\x62\x86\x47\x17\x7a\x38\x17\xae\xa2\x4f\xc8\x19\xc3\xb4\x16\xb5\xea\x01\xfa\xa7\xc8\x28\x86\x38\xe5\xef\x24\xda\xec\xea\x55\xcb\x88\x3f\x02\x51\x8f\xa9\x04\xef\xc6\xef\x89\x56\x63\x97\x34\x8d\x94\xad\xdb\x3e\x47\xef\xc6\xef\x1f\x73\x62\x96\x2c\x9b\x5f\x2c\xb2\xbc\x3e\x8e\x51\xca\x96\x8c\xeb\xeb\x67\x4b\x69\x08\x7a\x9a\x8c\x19\x83\xc8\xd1\xa9\x50\xa5\xea\xd7\x54\x9b\xd1\x9d\xbd\x3d\x3c\x6c\xdc\xf5\x5e\x2c\x04\x4c\xe4\xdb\xba\xd1\x8e\x73\xab\x9d\xc1\x59\x19\xcb\x02\xb3\x7f\x0d\x1b\x98\x31\x65\x75\x8e\x5d\xeb\x96\x1b\x8d\xd2\x99\x2d\xfa\x2e\x10\xad\x13\x31\x83\x03\x26\x25\x4d\x57\x20\x7e\x50\xf9\x96\xe0\xbc\x2e\xc3\xb1\x94\xa0\x84\x5b\x35\x93\x98\xf2\x4a\xe5\x00\xbe\x33\x49\xa6\x84\x66\x64\x47\xae\xe4\xce\x54\xee\xc0\x3f\x79\x48\x02\x48\xf6\xfc\x0a\x5e\xa5\xb9\xd1\x27\x77\xf0\xe7\xa1\xc1\x34\xd5\x2e\xb2\x28\x8b\x68\x1c\xc9\x32\x83\x1d\xed\xba\xaa\x47\x40\x69\xe2\x32\x53\xd6\x9f\x48\x33\x32\xa5\x72\x0e\x2a\x37\x74\x82\x0b\x32\xa5\x51\xac\x2c\x61\x10\xee\x69\x2a\x52\xb9\x8d\xd1\xe2\x19\x09\x23\x99\xe6\x09\xc4\x66\x59\x89\xf2\xdc\xdc\x59\x58\xdf\x06\x0c\x6f\x9d\x6f\x01\xa5\x06\x93\x64\x3a\x95\x55\x2e\x2a\x77\x4e\x65\xd2\xdc\xd5\xd6\x69\x5b\x9a\xa8\x73\x2b\xd2\xe8\x3f\xd5\xe0\x07\x38\xf8\xda\x76\xda\x9b\xa5\x71\x8a\xdc\x9c\x27\x57\x72\xd0\x7c\xf7\x84\xfc\x10\x85\x51\x8a\x61\x48\x34\xc6\x0c\x72\x7d\x30\x07\xf7\x35\x82\xf3\xa1\xc0\x09\xe2\xec\x0a\x1b\x24\x57\x8c\x2c\xe8\x25\xab\x73\x46\x92\x8a\x84\x6a\xa0\x66\x51\x88\xe2\x66\xab\x52\x18\x67\x11\x11\x79\x16\x47\x4b\x9d\x89\x5a\xe5\xe4\xc6\xd6\x8d\x83\xd5\x6d\x80\x1f\xb5\xd2\xfd\x75\x0a\x66\xc9\xa7\x6e\x1a\x2d\x69\x3a\x48\x73\x3e\x70\x97\xb9\x13\x5a\x35\x96\xca\x47\x45\xb2\x27\x04\xb8\x8c\xec\x24\xa9\x08\x76\x4a\x83\x5a\xc3\x8a\xe5\x32\xa7\x71\xbc\xd2\xb0\x1f\xd0\x70\x92\x8a\x59\x4a\x17\x30\x36\xc5\xd7\xea\xc3\x21\x39\xca\x9e\xda\x52\x06\xfa\xc0\x25\x6a\xbd\xab\xed\x7a\x9b\x46\x1a\xc0\x19\x60\xb9\x44\xb6\x31\xed\x46\xf5\x27\x15\x22\x2b\x24\xce\x54\xb6\x50\x32\x13\x84\x66\x99\x52\x69\xf6\xc7\x6f\x7f\x30\x5d\x53\x7a\x78\xaa\xc6\x1b\xd7\x2f\x90\xab\x32\x88\xe9\xbd\x9b\x35\xda\xde\x2a\xfb\xff\x84\xc7\xab\xa6\x6a\x78\x33\x99\x1e\xb8\x5d\x1f\xa7\x39\x1c\x24\x3a\x0e\x35\x0a\x35\xce\xf2\x32\x81\x46\x57\xbb\x9a\xfd\x89\xed\x39\x31\x94\xa9\xc5\x83\x2a\xb9\x0e\x47\xaf\xd2\xd4\x6a\x7f\xaf\x18\xc1\x21\x45\x1d\xee\x33\x72\xa7\x12\xf4\xcb\xb6\x26\xde\x4b\x66\x4f\xed\xde\xe8\xc8\x1c\x5d\x29\x73\x5b\x29\x50\x6a\xef\x86\xe8\x98\x16\x15\xea\x60\x6f\xbc\x77\x36\x3e\x39\x3d\xbc\x18\xff\x75\xd4\x6e\x54\x94\x43\x68\x1a\x13\x3f\xd1\x28\x2b\x82\xd5\xd7\xb5\xf7\xd3\xde\xd1\xf8\xe2\xf5\xc9\xe9\x45\xd1\x70\x6b\x9b\x40\x80\x46\x6b\x4a\x8b\xdf\x58\x71\x57\xda\xfa\xe3\x28\xeb\x73\x21\x24\x2b\x66\x84\x71\xe3\xfa\x6b\xb3\xa9\x3e\x2d\x0f\x0e\x0c\x51\xa7\x35\x03\xb6\x95\xb2\x20\x01\x4c\x71\x8a\xea\xa3\x85\x60\xa5\xde\xb7\x0c\xfa\xed\xfb\xb3\xf1\xe1\xe9\x1a\x0e\xfc\x4e\x6e\x4f\x66\x49\x93\x21\xf6\xca\x68\x69\xd4\x58\xdf\x8c\xac\xeb\xdb\x5a\xe8\x7c\xd4\x6e\x36\xd0\x3c\x13\x58\x5d\xb3\xad\x43\x0e\x2a\xe3\xd1\xa8\xfe\x7d\x6d\xfe\x8e\x46\x1f\xbe\x19\x9d\x9c\xbc\xbd\x68\x96\xb4\x5a\xda\x03\xc8\x9d\xd6\x56\x44\x4a\x0e\x22\x09\x7f\x7e\xf8\xcb\xdb\xbd\x63\xc3\xf0\xc6\x5f\xae\x13\xe9\xba\x39\xa9\xe8\x09\x54\xd1\xda\x95\x63\x65\x65\xdd\xa2\x27\xcb\x57\xbd\xbb\xf3\xea\xe6\xdd\x51\x6b\x5f\x99\xbe\x20\x6c\x72\xce\x59\x4c\x42\x06\x31\xfa\x90\xd2\x10\x4d\x49\x94\x44\x09\xd8\x10\xd0\xf1\xd0\xdd\x97\xd7\x87\x6f\x8f\xfe\xa2\xa6\xe6\xf8\x68\xf4\x91\x1a\xc7\x95\x91\xce\x0d\xd9\x2b\x63\x6e\x21\x34\x0e\x0e\xca\x7f\x22\x63\xfb\x29\x4a\xd9\x2c\xa7\x69\xb8\xc1\xf8\x7e\x3a\x3a\x3d\x7c\xf3\x7e\xef\xf4\xe0\x23\x1d\xe3\xb8\xba\x3a\xbe\x81\xa5\x61\x05\xe6\x95\x41\xc1\xb5\x3c\xbf\x21\xa4\x81\x1c\x8d\x8a\x4b\x75\xeb\x35\x07\x73\x21\x95\xde\x81\x01\x02\xca\xcc\xa0\x7c\xc6\x86\x64\x7f\x4e\xf9\x0c\xb1\x61\xcc\xed\x61\x3a\x3e\xb4\x12\x35\x06\xb5\xce\xe9\xb2\x51\x2f\x17\xfa\x68\x55\xdf\x3f\xa6\x91\x7a\xa6\x34\x8e\x0d\x86\xf3\x60\xa0\xe3\x57\x06\x41\x14\xd6\x8d\x09\x57\x38\xc4\xa1\x05\x6a\xc7\xb2\x86\x48\xda\x3f\x3a\x38\xdd\xa9\x0b\x06\xf5\xe3\x39\xff\xe5\x97\x01\xc1\x23\xdb\x67\x31\xe3\xe4\xdf\x55\x83\xf2\x39\xf9\x8a\x54\xd5\xc4\x76\x71\x87\xd5\x38\x18\x43\x9f\xc6\x4f\xa3\x54\x66\xba\xde\xca\xb9\x7c\x5b\xb5\xaf\x7a\x55\x1b\xd3\x7a\xad\x6a\x24\x2c\x96\xec\xae\x7a\x3e\xd4\xfb\xad\x2a\x66\xb5\x60\x9f\x48\x9b\x09\x31\x32\x1b\x9c\xcb\xb1\x98\x01\x7b\x48\x81\x79\xac\x59\xac\x7e\x92\x10\xae\xd4\xb6\x4b\xea\xae\x1d\x1c\x9d\xed\xfd\xf0\xf6\xf0\xe2\xf5\xd1\xdb\xc3\x8b\xb7\x27\x6f\xde\x1c\x1d\xbb\x5d\xbd\xdd\x5a\xdb\x6b\x16\x47\xd7\x16\xc2\x90\x40\xeb\xd1\x2c\x13\x84\xd7\x56\x3f\xef\xed\xef\x1f\x8e\xc6\x9d\xeb\xff\xe0\xf0\xf5\xde\xfb\xb7\xe3\xc3\xe3\x83\xd1\xc9\xd1\xf1\x78\x7c\xa2\x34\xf7\xbd\xfd\xf1\xd1\x49\xfb\xa6\x82\xd5\x36\xfb\xd6\xe4\xdb\x33\x8d\x2b\x1a\xe6\x34\x96\x19\x0d\x2e\x6f\xc0\x90\x66\x93\xf9\xf0\xea\xec\xfd\x48\xd9\x0e\x1b\x51\xac\xd4\x53\x5e\xb5\x7c\x67\xa9\x29\xbd\x38\xf7\x78\x6f\x7c\x71\xf2\x7e\xfc\xe6\xa4\xcf\xe4\xb5\x32\x6d\xc9\x54\xb0\xe7\x0b\x6e\x99\x1f\x9d\x13\xd6\x87\x10\x85\xc3\xb6\x95\xa3\x9b\x53\x05\x00\x75\x98\x79\xa1\x44\x0c\x36\xf6\xf6\xe4\x8d\xe2\xd5\xd1\xde\xf8\x47\xf4\x02\x72\xa6\x73\xf0\x70\x3d\x00\x23\x9a\x05\x91\x09\x58\x20\x5d\x9d\xb7\xea\x6b\xed\xbc\x6a\xa4\x0f\x6f\xb5\x75\xf8\xec\xf0\xc3\xe1\xe9\xd1\xf8\xaf\x67\x7f\x3d\xc3\x3e\x6b\x19\x0e\x82\xbe\xc8\x09\xe7\x53\xd1\x39\x12\xb9\x92\xb1\x98\xad\x19\x8b\xd5\x54\xeb\x70\xba\x96\xb0\xd5\xde\xf9\xd6\x15\x4d\x79\xc4\x67\xbd\x96\x95\x73\xbc\xfb\xa7\x87\x87\xc7\xaa\xae\x9f\xb0\xa6\xe6\x88\xfb\x0e\x07\x6a\x6a\x1d\xd1\x4f\xee\x8e\x56\xab\xfb\xf1\x70\xef\xed\xf8\xc7\xc3\x63\x25\xef\xdc\x36\x57\xbb\x8c\xeb\x1a\xf0\xd1\x68\xac\xaa\x3c\xd3\xd6\x1c\x78\xa3\xf2\x0c\xd3\xf5\xca\x95\xac\x21\xa6\xf9\x14\x3c\xd3\xb2\x7b\x3d\x55\x2a\xec\xb4\x66\xaa\x5d\xbd\xe9\x71\x82\x2b\x74\xdc\xfc\x8e\x48\x70\x0d\x6d\x2a\x48\xf2\x5d\xf2\xd5\xb7\x2f\x2a\xd1\x2b\x71\x34\x65\xc1\x2a\x88\xeb\x97\x5c\x24\x29\x3b\xcb\x44\xd2\xa8\x84\x5d\x37\x90\xd7\x88\xe5\x3a\x6f\xbe\x19\x10\x3b\x86\xa5\xee\x7a\x32\x65\x06\x72\x9e\x67\xa1\xb8\xe2\xd5\xbe\x2d\x19\x67\x52\x8e\x52\x31\xa9\xf7\xcf\xd9\x8f\xb6\x5e\xac\xef\xc3\x80\x0c\x60\xf5\x0e\x54\x9b\x8e\x97\x93\x28\x0d\x1d\xef\x92\x6a\x68\xd6\xcb\x17\xd5\xd7\xfa\x34\xe5\x80\xc5\x74\xd5\x5a\x48\x1f\x96\x8c\xe7\x29\x93\x73\x11\x87\xbb\xa4\xb6\xc9\x64\xd1\x82\x89\x3c\x6b\xa9\x20\x65\x34\x8c\x1e\x9a\x4a\xb5\x50\xaa\x2a\x99\x1c\x2f\xd7\xd0\xa9\x7b\x84\x1d\x67\x2a\x4f\xe0\xc2\x7f\x83\x71\xa3\xc4\x95\x95\x98\xb3\x37\x3a\x52\x0a\x3e\x38\x40\x68\xdc\xdc\x10\xef\xf0\x50\x90\x54\xdc\xcb\x05\x66\x69\x5b\x6b\x71\x34\xd9\x59\x88\x30\x77\xa0\xa1\x63\x33\x71\x34\x19\xb4\x14\x68\xf7\x62\xd7\x5b\x49\x73\xbe\x73\x8d\xb2\x6b\x18\x0b\xa5\x36\xb9\x9a\xd2\x25\x06\xae\x12\x1b\x0c\xe9\xf6\x67\x36\x1b\x36\x06\x11\x48\x6b\x1a\x53\x64\xbc\x51\x63\x58\x05\xba\xda\xe5\x8a\x37\x8e\x12\x5c\x23\x57\x0b\x86\xce\x1a\x10\x9d\xc8\xa2\x85\x53\x7a\x9b\x5c\x39\x53\xc4\x16\xfa\xa2\x35\x3c\xe3\x2d\x4f\x80\xeb\xa7\x76\x52\xc0\x19\x15\x94\x46\xcc\xef\x7a\x73\x70\x0f\x41\x46\xf0\xe0\x48\xa4\xcd\x93\x14\x1c\x1c\x9e\xa4\x76\x8c\xab\x6c\xd4\x5d\x81\x5a\x0a\xb1\x98\xb9\x96\x42\x63\xae\xc4\xac\x38\xff\xa9\x86\x3d\x91\x56\x8e\xc6\x55\x5f\x3d\x5a\x31\xd9\xf5\x76\x86\x49\xf9\x7e\xd0\xbd\x78\xd4\x12\x87\x3e\xd5\x44\x53\xc7\x92\x1c\xac\x65\xdc\xee\x4a\xdb\x16\xc5\x60\x2d\x8f\xae\xaf\xd7\xc5\xff\x83\x35\x6b\xba\xbb\xd6\x6e\x79\x81\xa9\x1f\xaf\xa3\x98\x9d\xa4\xfb\x95\x6c\xc9\xb2\xdd\xe6\xc1\x75\x77\x8b\x9a\xc5\x5c\x0d\x1d\x18\xf6\x6d\x6f\xad\xc1\xc1\xbd\x1a\x6b\xf0\x73\xad\x3d\x9b\xdf\x16\xe5\x09\x6b\xe5\xd4\xb4\x06\x94\x63\x85\x26\x54\x63\xa2\x5b\x4f\x45\x1d\x5c\xeb\x3a\xb5\xec\x1e\x50\xb5\x74\x09\x6e\x62\x82\xc6\xf6\x8f\x8f\x5c\x67\x80\xee\x28\x99\xee\xa6\x9c\xb1\x37\x83\xee\x3d\xb1\xbb\xc6\x96\xbd\xb6\x1c\x85\x86\x55\x51\xfb\x79\x2c\x66\x2e\x8a\xb5\x08\xa0\x1e\x4b\xa7\x45\x1c\x99\x23\x75\x7d\x97\x42\x21\x41\xc1\x2e\xa8\x07\xab\xdb\xc9\xce\x3a\xb4\xa7\x72\x84\x0b\xcc\x71\x35\x67\xbc\x9e\x39\x6a\x55\x54\x0d\x78\x2f\x32\xcb\xad\xa4\x72\xbb\x46\x93\x88\x2a\x0d\xe6\xb4\x1d\x91\xde\x1e\x5b\x30\xe8\x15\x8c\xdb\x53\xe0\x38\x43\x7e\xcb\x49\xd3\xfe\xd4\x84\xa5\x90\x42\xf5\x9e\x47\xd7\xe4\x40\x28\xfd\x8c\x9c\x89\xda\x1d\xcb\xdd\xbb\x6c\x4b\x7f\xd6\x0a\x07\xd2\x94\xbe\xd6\xc6\x0c\xa9\x8b\xeb\xd2\x4f\xec\xdc\xbf\x32\xd1\xb3\x9e\x3a\x79\xf3\x64\xc0\x6a\x8a\xea\x7d\xf7\xa6\x5f\x4e\xe7\xa6\x69\xb3\x75\x3c\xb6\x22\xd1\xf3\x8c\x31\x1b\x52\x7c\x9e\x4f\x86\x81\x58\xec\x54\x72\xbf\x77\x9a\x68\x6e\xce\x7c\x4b\x9d\x95\x69\x5d\xeb\xb3\x09\x96\xdd\x8d\xb3\x31\x1d\x78\x75\x26\x57\x0d\x8f\x12\x2a\xf8\xb9\xe6\xda\x4d\x4c\x32\x81\xeb\x0d\x62\x06\xee\xd3\x25\x43\x51\xcc\xf5\xe9\x49\xca\x92\x38\x0a\xa8\x84\x3c\xc8\x1b\x65\x79\xba\x06\x29\xcb\x5c\xcf\x72\x81\x9c\xb2\x32\xaf\x7f\x5d\x9a\xe5\x5a\x32\x12\xd2\x45\x4a\xd2\x27\x53\xb3\xad\xda\x27\x64\x2f\xd4\x81\x47\x26\x97\x09\x30\x4b\xd3\xcb\x5a\x2a\x5b\x22\xca\x7c\x43\x77\xbe\xe5\x83\xe7\x20\x6a\x1f\xf4\x70\x5c\x26\x04\x5a\x0e\xda\x6a\x9a\xa0\x95\x6d\x6b\x17\x2f\x52\x6d\x5f\x61\xaa\x6d\xc3\xcd\xdb\x96\x6c\xe8\x76\x6e\x59\xa5\xcd\x99\x70\x2b\x7a\xb3\x20\x78\xbb\x43\xcc\x20\x4c\x2d\xcd\x79\x5b\x72\xe2\x97\x9a\xda\x08\x9f\x23\x3c\x80\x88\x59\x8d\x9f\x30\xc3\xdc\xae\xaa\x6b\x98\x6b\x2a\xd3\x13\x33\xa8\x05\xf5\xba\xeb\xd4\xde\x78\x8b\x49\x6e\x9d\x4e\xd9\xb6\x3a\x1b\xa9\x95\xb7\xc9\x37\xac\x81\xc5\xf6\x4a\x3d\x2c\x0e\x38\x5d\xd9\x87\xce\xf0\xbb\x41\x3f\x71\x46\xaa\x19\x37\x65\x81\x5b\x06\xbf\x35\xdc\x53\x3a\xe2\x08\x63\x32\xed\x05\x98\x09\xb5\xe6\x5a\x6c\x73\xed\xf1\xbe\xd8\x3f\x39\x1e\x9f\x9e\xbc\x7d\x7b\x78\xda\x76\x34\xd0\xf4\xd2\x6d\x14\x4a\x76\xe9\xbc\x69\xf9\x2e\xfd\xae\xb9\x4c\xd1\xab\x38\x67\xc1\xe5\xa0\x0a\x8b\x5b\x16\x1b\xd4\x82\x5b\x3f\x37\xbf\x6a\x4f\x2a\xa4\x6b\xa9\xf0\x40\x4a\xe3\x26\xda\x54\x5d\x75\xac\x42\x7d\xa0\x1e\xa2\x64\xf7\x48\x84\xe4\x00\xa3\xff\x23\xc1\xc9\x0f\x79\x38\x63\x18\xa9\x58\xae\x3f\x30\xfc\x30\x1c\xf4\x3b\x59\xc4\xb2\xed\xe5\x99\x90\x01\xd5\xef\x01\x7e\xa0\x3a\x44\x34\x21\x2c\x9d\x71\x24\xc2\xb2\x29\x6c\xe9\xf1\x95\x47\x07\x1a\xc6\x1d\x69\x81\x5b\xdb\xff\x0f\x21\x64\x2b\xa0\x9c\xc6\x83\xe5\xcb\xe1\xcb\xaf\xb7\x76\xc9\xd6\xed\x6f\x8b\xf8\x28\xb0\x8e\x27\x2c\xa3\x5d\xe0\x2b\x55\xac\xe3\x4f\x0a\x0f\xf8\xb3\x86\xd0\xf5\x48\xb5\x1e\xa9\xd6\x23\xd5\x7e\x34\x48\xb5\x77\x83\x4a\x7b\x0f\x48\xb3\x9b\x82\xca\x7a\x7c\x58\xd2\x0f\x1f\xf6\x33\x80\x61\x4d\xa3\x2f\x0e\x86\x75\x23\x58\x47\xad\x1b\x7d\x21\xd8\x8e\x83\xcd\xba\x08\x25\xcb\x46\xb0\x96\x5d\xcd\xb2\xda\x58\x79\x1d\x53\x08\x72\xaf\x0c\xe7\x09\x51\xe6\xbe\xc1\x7d\x73\x78\xb3\x03\x91\x32\x21\x77\xa6\xf8\xf1\xce\x24\x16\x13\xed\x11\xda\x39\x10\x41\xbe\x30\xb7\xb0\xa2\xa3\x5b\x17\xd3\x28\x93\x8b\xf8\x9e\xb4\x61\xdd\x4c\xdb\x45\x83\x25\xa7\x95\xe1\x84\x37\xba\x40\xec\x26\x95\x76\xc8\x89\x16\xd1\x70\xe3\x56\xfa\x6c\xe4\x7a\xf2\xd5\x2a\x01\xe1\x37\x6d\x72\x41\x69\xd5\x70\x1a\xd7\x18\xd7\x65\xcf\x6c\x7c\x31\x4f\x97\x59\xa3\xcc\xb8\x72\x3a\xef\x74\x89\x16\xd5\x6e\xb4\x3c\x75\xf6\xf1\x1a\x44\xd0\x82\x9e\x06\x23\xba\x37\x39\xef\x57\xde\x29\x72\x16\xb6\xe2\x3d\x08\xbc\x3b\x26\xe6\x1d\x4a\xb9\xc2\x37\x03\xb7\x9e\x02\xed\xcd\xa5\xd2\xcb\xaf\x87\x2f\x87\x2f\xd5\xef\x46\xc0\x85\x22\x90\xcd\xdd\x6f\x47\x15\xdc\x49\x59\xcc\xa8\x64\xf2\x49\xf9\x59\x1d\xd2\x15\x1c\x09\x98\xee\x3a\x15\x71\x2c\xae\x94\x85\x56\x5c\x2f\x69\x5f\xd5\xfd\x84\x10\x1b\x31\x7b\xb7\xac\xb3\xf8\x3d\xe0\x51\xf5\xe7\x8a\xc4\xdd\x5d\xbe\x18\x7e\xaf\x5e\x55\x9d\x4e\xfb\x26\x9d\x88\x44\x12\xcf\xdf\x8b\x4b\x59\xf2\x14\x0e\xe7\x58\x3c\x1d\x80\x4a\x19\x6a\x6a\xd8\x2a\x41\xb9\xac\x4d\x3d\x4d\x47\x5a\x3b\x7f\x15\x99\x49\x6d\xf3\x5a\x7c\x86\x46\x0c\x5c\x9e\x3d\xa5\x41\x19\x46\x82\x6b\xc3\xc4\x1a\x90\xf3\xfc\xc5\x8b\xaf\x83\x01\xfc\x07\x81\x06\x88\xbe\x98\x39\x28\x6d\xb3\x27\xe4\x68\x4a\x62\x36\xcd\xc8\x24\xa6\xfc\x72\x5b\x91\x9f\x6b\xac\x01\x53\x7f\x24\x4d\x9a\x52\x19\x3a\xa0\xe8\xfe\x54\x62\x0d\xc6\xed\x0e\xe9\xe4\x50\x2b\xf4\xe4\x22\x9a\xc2\x20\x30\xcd\x45\xfd\x72\x64\xaa\xc4\x4c\x17\x6d\xf7\xce\x59\x36\x67\xa9\x52\xb4\xb8\xc8\xf0\xf8\x4e\xfe\x23\x67\xa0\x7d\x65\x29\x9d\x4e\x23\x88\x97\x09\x99\xcc\x34\xaa\xa1\x84\x92\x98\xc6\x84\x95\x98\x43\x1e\x6d\x24\x40\x27\xca\x6a\xec\x20\xef\xaa\x15\x58\x45\x4c\x32\xea\x6d\x1b\x70\x12\x81\xef\xe0\xf0\x02\x97\xe0\x13\x7d\x2d\x39\x46\x7c\x44\xe6\x7e\x3a\x93\xec\x05\xb1\xe0\x4a\x4d\x0e\x00\x4a\x21\x11\xfa\x16\x4c\xa4\x51\x03\xe1\x68\x97\xfc\x6b\x80\x5b\xcd\x2f\x66\xc7\x39\xdf\x52\xdc\x70\xbe\xa5\x53\x66\x07\x89\x08\x07\xfa\xa3\xf3\xad\xed\xb2\x54\xc0\x0d\x9b\x61\xd9\x17\xc3\xaf\x87\x2f\x2a\x25\x34\xf0\xb1\x7a\xfd\xb7\xf3\xc2\x4b\xfc\xcb\xb9\xe5\x30\x3e\xdf\x82\xa4\x5e\xa8\x40\x0b\x26\x55\x83\x39\xa7\x7c\x37\x7e\x4f\xcc\x31\x63\x34\x25\x9c\xe1\x4f\x2f\x6a\x59\x25\xe7\x5b\x8b\x2c\x57\x95\xfc\xf2\x8b\x7a\xff\xeb\xaf\xdb\x95\x0c\x10\x67\x32\xc8\xf9\x56\x2c\x66\x17\x31\x5b\xb2\x18\x9b\xff\x69\xef\xf4\xf8\xe8\xf8\x8d\x35\x02\x2c\x56\xe4\xa3\x5f\x94\x5d\xb5\x93\xd9\x6b\xc5\xd5\xac\x95\x04\xbc\xb8\x70\x21\x3e\x5d\x5c\x34\x3e\x43\xa0\xc4\xdd\x2a\x75\xaa\xf4\x29\x83\x61\x6a\x5f\xab\x62\x32\x9f\x70\x96\x61\xc1\x5c\xb2\x91\x08\xf7\xa3\xb0\x96\x00\xfb\x6b\xad\x4d\xf4\x9d\x38\x5a\xad\xb6\x7b\xf9\x9d\xec\xae\xc7\xa6\x86\xb3\x2e\x7d\xed\xa1\x12\x36\x5b\x7a\x71\xc2\xd1\xda\x74\x56\xcf\x9b\xb3\xa6\xc8\x6e\xa5\x95\x67\x12\x91\x66\x0b\x9a\x34\xc8\x29\x39\x05\x62\xa8\x25\x58\x7b\x15\xd0\x84\x4e\xa2\x18\x11\xfa\xa1\xbf\x50\xcb\x3b\xbc\x69\x54\x9a\xaf\xec\x9e\x98\x3f\xb5\x4d\xf5\xab\x59\xd2\x46\x13\x77\x2e\xe9\x21\x46\x66\xc1\x05\xb4\x5a\x93\x30\x3a\x5b\x35\xe4\x89\xb3\x0c\x44\xf1\xf0\xff\x93\x4a\x64\xff\xab\xb1\x1e\x8f\xcd\xea\x73\xe7\xef\x59\x2b\xee\x07\x9d\x60\x5f\x9d\x86\xf3\xad\x71\x41\xb0\x5f\x7e\x19\xea\x5e\xeb\xb2\x43\xf5\xce\x9e\x86\x5f\x8b\x41\xea\x4b\x09\x7b\x20\xa1\xef\xf4\x40\x42\x2f\xef\xe0\x78\x0c\x40\x74\x76\x9d\x31\x0e\x9b\xf9\x7a\x3d\xb6\x6b\x47\x6c\x3f\x4a\x81\x0f\x6f\x88\x87\xae\x1b\xfd\x52\x90\xd0\x2d\x60\x20\x0f\x44\x7e\xeb\x20\x20\x7d\xe1\xc8\xca\xa2\x9f\x5a\x29\x7b\xcd\x9f\x49\x81\x28\x75\x00\x63\x3e\x2b\x86\x75\x34\xe3\xa2\xf8\x19\x61\xb1\xd5\xb2\xa9\x8a\x72\x3b\xda\x68\xcc\xd2\x45\x33\x5d\x6b\x80\x8c\x7e\x78\x9d\xa4\x4c\xca\xda\xa4\x96\x85\x20\xb2\x44\x2d\xc2\x61\x3d\x52\xa9\x59\xda\x0e\x78\x39\x16\xd9\x51\x03\x48\x8f\x98\xd0\x00\x57\x5b\xd8\xde\x55\xc4\x43\x71\x55\x54\xee\xc0\x49\xc7\x85\x66\x03\xb1\x97\xda\x82\x33\xc8\xea\x7e\x70\xdc\x6b\xd1\x2b\x7d\x70\xdb\x95\xfe\xfd\xb9\x87\x35\xdd\x08\xb1\xdd\x1d\x3c\x64\x89\x9e\x2f\x08\x76\xbd\x3f\xea\x79\x15\x4a\xb8\xdc\xb3\x3f\x0e\x44\xe1\x0a\x50\xb0\x55\xc7\x50\xce\x9b\x18\xc1\x8d\xc0\xa6\x07\x42\xce\xe5\x34\xfe\x7c\x80\x73\xab\x7e\x82\xfa\xf3\x65\xe1\xe6\x7a\xbc\x59\x57\x75\xb5\xc4\x8c\xf5\x08\x83\x3b\x7d\x11\x06\x3f\x76\x88\x41\x8f\xa7\xf7\x09\xe2\xe9\x1d\x08\xfe\x34\xd3\xe8\x5e\xe4\x87\x37\xa3\x3b\x81\xd1\x6b\x87\xef\x78\x40\x6c\x3b\x54\x6e\x1a\x3d\x40\x9d\x60\x5b\x19\xce\x12\x15\x83\x6d\x42\x0d\xe4\x2a\xc2\x7f\xa4\x4c\x59\x66\x71\xa4\xec\x98\x38\x36\xb8\xc6\x92\xc8\xac\x91\xa7\xe4\xc6\x90\x38\x3d\x7c\x7d\x7a\x78\xf6\xe3\xd1\xf1\xf8\xf0\xf4\xc3\xde\xdb\xd6\x6e\xbe\x7a\xd1\xec\xdf\xb1\xb0\xc0\xf6\x34\xaa\xeb\xe6\x98\x7b\xee\x8d\xf6\xcb\x02\xd0\xba\x11\x1e\xd4\xcb\xef\xbf\x1a\xbe\x7c\xf5\xdd\xf0\xc5\xf0\xc5\xce\xcb\x57\x4d\x32\x7a\x08\x28\xd2\x07\x02\xea\x21\x40\x8d\x5a\x26\xe6\xe1\xb0\x88\xdc\x4d\xc2\x1d\x75\xf7\x87\x1a\xa4\x11\x24\x9b\x40\x45\x59\x28\xf2\x16\xe8\xaa\x8f\x0a\xd9\xe7\xf1\xe1\x72\xda\x53\x23\x94\x51\xfa\x86\xd5\xfb\x64\x21\x0c\xe0\xa7\x8d\xd7\x22\xcd\x76\xc9\xf7\x2f\xbe\xff\xbe\xfe\x46\xad\xc6\x5d\x02\xa7\x14\x4d\x9c\xf1\x07\x48\x91\xe8\x4c\x81\x58\x33\xda\xe2\xdb\x87\x18\x6e\x6f\xc5\xde\x03\xaf\x7c\xb4\xc0\x2b\x0d\xef\x49\xaa\xac\x1c\x73\xca\x53\x9e\x5c\xe3\x09\x02\x9c\xd0\x0d\x16\xb3\x94\x34\x70\x90\x9f\x60\x6c\xbb\x4e\xcf\x57\x1b\x2c\x14\x76\x21\x08\xd8\xe1\x59\x2d\xae\x13\xa5\x07\xea\x43\x9e\xa3\xc5\xac\xcd\x83\x42\xf4\x5d\x4b\x93\x88\x9b\x18\x85\x50\xdf\x15\x31\x88\x92\xc1\x82\xca\x7f\x98\x7f\xd6\xfa\x5f\x5e\xc2\x8f\xcf\xcd\x05\x5c\xfb\x9d\x68\xa3\x93\x83\x7b\x33\xf2\xcd\x59\xc5\x90\xb7\xde\x83\x66\x9a\x3f\x1b\xed\xed\xdf\x7f\x1f\xe0\xa0\xa9\x65\xeb\x79\xbb\x77\x7c\x7c\xf8\xf6\xe0\xe2\xe8\xf5\x86\x3d\xb9\x6b\x2f\x4f\x19\x5f\xb1\xae\xa7\xa3\x8b\x77\x7b\x67\xff\xe7\x11\xfb\x5a\x86\x61\xf4\x92\xb8\x9b\x48\xc2\x75\x72\xb0\x43\x30\x0d\xaa\xe1\x6c\x83\x60\x5a\x1b\x81\xdd\x0b\x96\x05\x95\x48\xcc\x02\x70\x66\x3d\xc6\xd0\x8e\xc7\x18\xfa\x48\x30\x86\xca\x99\xd1\xb3\xe8\x98\x95\x16\x6e\x28\x56\x44\xfd\x0c\xae\x63\x15\x7c\xda\x70\x3a\x8e\x30\xf2\x0d\xd3\x40\xd7\x1c\xdd\x5b\x01\x0d\xfb\x3a\x9b\x22\x8e\xf1\x30\x20\x97\x99\x58\x9c\x6a\x6d\x1b\xf0\x55\x23\x1d\xf4\x55\x64\x70\x61\x34\x22\x9c\x87\x58\xbe\xc6\x32\xfb\xc9\x5c\xdf\x51\xc7\x05\x89\xca\xc8\x83\xb6\x98\xd0\x96\xd6\x6b\xa3\x34\xfc\xd2\x4c\xc5\x18\xba\x53\x00\xac\x60\x84\x40\x28\x26\xd5\xbe\x28\xf5\xcb\x0c\x63\x35\x5b\x3e\x24\x26\xf2\x11\xa7\x40\x93\xd4\x84\x3c\x40\xa7\xc1\x0e\xdf\xb7\xbb\x81\x6f\x93\x38\x4f\x69\xec\xec\x26\x16\x50\x4a\x51\x1e\xd3\xd4\x55\xa4\x98\xa1\x7b\x22\xa1\xc6\xe0\xaa\xa7\x3f\x3c\x06\xfd\x7e\x78\x33\xea\xa0\x5e\x4b\x86\x46\x49\xbb\x7a\x81\xf3\x07\xa2\x9d\xce\x0c\x7a\x0c\x8a\x1d\x8d\x46\x42\xc4\x55\x3a\x55\x12\x95\x4a\xea\xe0\xcf\x0f\x45\x93\x4a\xbe\xd7\x63\x50\xe6\x47\x21\xb3\xc3\xca\x6d\x40\x86\x3e\x8e\x54\xb4\x92\x4a\xf6\xcb\x87\xa2\x95\x23\x57\xec\x31\x28\xa6\xeb\x3a\x2a\xbb\x51\xa5\x5b\x6b\x4a\x5b\x49\xbd\x66\x91\x87\xa2\xa1\x33\x9f\xf1\x31\xa8\xf8\x06\x3a\x62\x27\x09\xaf\xaa\x64\xec\xc8\xbc\x2c\x09\xd9\x2c\xb4\x7a\x14\x4a\x4a\xf6\x38\xab\xb7\x42\xc5\x33\x96\x75\x90\xb0\xcc\x4e\x6d\x21\x9f\x64\x0f\xb6\x92\x6f\xc8\x7f\xc7\x46\x39\x0b\xef\x84\x78\x1d\xcc\xb7\x86\xed\x6a\x0c\xd7\x80\xa3\xf8\xd6\xc3\x51\x78\x38\x0a\x0f\x47\x41\x3c\x1c\x85\x87\xa3\xf0\x70\x14\x77\x08\x47\x11\x25\x74\x31\x89\x45\x70\x79\xbf\x10\x15\xce\xd2\x1e\xb7\xc2\xe3\x56\x78\xdc\x0a\x8f\x5b\xe1\x71\x2b\x3c\x6e\x85\xc7\xad\xf0\xb8\x15\x1e\xb7\xc2\xe3\x56\x78\xdc\x0a\x8f\x5b\xe1\x71\x2b\x3c\x6e\x85\xc7\xad\x68\xd4\xe5\x71\x2b\x3c\x6e\x85\xc7\xad\xf0\xb8\x15\x1e\xb7\xc2\xe3\x56\x78\xdc\x0a\x8f\x5b\xf1\x20\xb8\x15\xb7\xb9\x1a\xc7\x12\x50\x8d\x8b\x70\x3c\xd8\x85\x07\xbb\xf0\x60\x17\x1e\xec\xc2\x83\x5d\x78\xb0\x8b\xcf\x09\xec\x62\xbf\x70\x3a\x02\x2d\x08\x9d\xcd\x52\x36\xd3\xaa\xb5\x59\x7a\x6a\xfb\x57\x76\x67\x4b\x37\xde\x9f\x1d\x5e\x8c\x4e\x0e\xba\x33\xe5\xdd\x49\xe9\x1e\x6b\xc3\x63\x6d\x14\x3d\xf0\x58\x1b\x1e\x6b\xc3\x63\x6d\x54\xfb\xe4\xb1\x36\x3c\xd6\x86\xc7\xda\xf0\x58\x1b\xd5\xd1\x7a\xac\x0d\x8f\xb5\xe1\xb1\x36\x3c\xd6\x86\xc7\xda\xa8\x3e\x1e\x6b\xa3\xde\x0b\x8f\xb5\xe1\xb1\x36\xf4\xe3\xb1\x36\x3c\xd6\x46\x15\x6b\x43\x87\x24\x9e\x41\x65\xc6\xb9\xb9\x63\xce\xf8\xe5\xce\x65\x18\x0e\x82\x34\x94\xc3\x15\x5d\xc4\x1e\x9a\xc3\x43\x73\x78\x68\x0e\x0f\xcd\xe1\xa1\x39\x3c\x34\x87\x87\xe6\xf0\xd0\x1c\x1e\x9a\xe3\x93\x80\xe6\x78\x50\xa2\x6d\xc2\x6a\xf7\x43\xb0\x06\x9f\x75\x70\x98\xcd\x5b\x4d\x04\x93\x41\xe9\x0e\x42\x30\x13\x9d\x97\x34\xd6\xea\xf1\x87\x97\x2f\xbf\x1d\x15\x45\xd6\x63\x9d\xdc\xb3\xcd\xb0\x4e\x97\xc7\x9c\x4e\x7a\xcb\xa4\x4e\x0f\x83\xe2\x61\x50\x3c\x0c\x8a\x87\x41\xf1\x30\x28\xc5\x3b\x0f\x83\xb2\x06\x06\x05\xc6\xa6\xfa\xaa\x53\x16\x5a\xd7\x88\xc7\x47\xf1\xf8\x28\x9f\x1b\x3e\xca\x27\x08\xdc\x71\x13\xcc\x8e\x0d\xf6\xa3\xbb\xd0\xc1\x6e\x87\xd2\x71\x6b\x2d\xe8\xa3\x82\xe7\xf8\x9c\x90\x39\xfa\x8f\xd9\x03\x6b\x9c\x6f\x08\xac\xb1\xce\x40\xd4\xa1\xed\x5a\x6f\x42\x4b\xf1\x93\x83\xab\x50\x36\x90\xea\x64\x88\xf1\x7f\x18\x9e\x9b\xa9\x5f\x2f\xb4\xbe\x7b\x81\x95\xdb\x81\x83\x1e\xe6\xe2\xd6\x30\x17\x65\x1a\x81\xfa\xf2\xdd\xf8\xbd\x6a\x21\x97\xac\x37\xa8\xc3\x92\x65\xf3\x8b\x45\x96\xeb\xe1\x01\x9e\xc3\xf9\x56\x13\xd0\x21\x96\xcc\xf1\xc5\xcb\x6f\xbe\x7d\x51\x2b\x7d\xfe\xc5\xc0\x6f\xbc\xbc\x23\xf8\x0d\xbb\xc0\x47\x85\x92\xa1\x61\x3e\x2e\x2e\xf6\x8f\x8f\x2e\xde\x8d\xdf\x5f\x5c\xf4\x83\xd1\xe8\x0d\xa4\xe1\xa1\x34\xee\x19\x4a\xa3\x4f\x4f\x26\x94\x87\x57\x51\x98\xcd\x1b\x7d\x71\x34\x68\x15\xf6\xc0\x1d\xc4\x02\xee\x58\xbf\xc1\x83\x84\xab\x6c\xef\x6d\x18\x1f\x6a\xf7\xeb\x46\xf7\x78\x24\x58\x0f\x9a\x24\xb2\x53\xf3\xed\x52\x17\x3c\x96\x87\xc7\xf2\xf8\xc8\xb0\x3c\x9c\x58\x13\x84\xd4\x61\x32\x76\x49\x1c\xf1\xfc\xda\x14\xf0\x80\x16\x1e\xd0\xc2\x94\xf2\x80\x16\xad\x80\x16\x46\x04\xec\xc7\x54\xca\x63\xcb\x42\x86\x9d\x70\x60\x18\xc0\x14\xbf\x29\xfe\x85\x07\xbe\xf0\xc0\x17\x1e\xf8\x02\xa6\x4d\xd9\xf5\x5a\x52\x2d\x69\x1a\x29\xdd\xa3\x7d\x8a\xde\x8d\xdf\x3f\xe2\xbc\x18\x27\x42\x7d\x18\x1e\xbf\xc3\x55\x9d\x23\x70\xfe\xa6\x19\x55\x4f\xc8\x5e\x18\xaa\x0d\xf8\x75\xcc\xae\xc9\x07\x18\x3a\x39\x48\x23\xa5\x66\x81\x72\x86\x92\x46\x95\x48\x58\xaa\x24\x3f\x79\xcf\xa3\x6b\x72\x20\x16\x34\xe2\xe4\x4c\x04\x97\x0c\x9c\x5b\x34\x8e\xc5\x15\x39\x88\x2e\x95\x85\x51\x11\xbd\xe0\xa3\x34\xfe\x39\x86\x3a\x28\x26\x65\x0b\x6c\x85\x11\x0c\xaf\x22\x67\x2b\x1e\x90\xbd\x91\x2b\x03\x61\x1a\xb3\xeb\xa5\x88\x07\x21\x74\xcd\x2d\x87\xd5\x10\x3e\x88\x66\x06\x5b\x47\x1a\x8f\xab\xf2\x41\x33\x2f\xb3\x31\x51\xcd\x6e\xdc\x6c\x02\xba\xa1\x57\x2a\x86\x9f\x07\x5d\xa9\xf6\xc6\x83\xae\x6c\xd6\x9a\x07\x5d\xf1\xa0\x2b\x1e\x74\xe5\x23\x00\x5d\x79\xb2\x01\xec\xca\x13\x0f\xbc\xe2\x81\x57\x3e\x19\xe0\x95\x72\xd6\xad\x31\x9e\x6f\x45\x7c\x2a\xba\x81\x52\x3c\xee\x0a\x3c\x5d\xb8\x2b\xec\xda\x72\x54\x16\xb5\x68\x1f\x43\xfd\xf7\x01\x01\x90\x86\x16\x85\x0d\x4b\x0c\x80\x35\x06\xaa\xcd\xda\x38\x3d\xe6\x4a\xf1\x78\xcc\x95\x4f\x1f\x73\x85\x58\xf2\x01\xcd\x1f\xb9\xe2\x41\xfd\x73\xd7\xc8\xd5\xc2\xa1\x33\xc6\x33\xdb\x38\xf2\x00\x2e\x1e\xc0\xe5\xf6\x7d\xf0\x00\x2e\x1e\xc0\xe5\x6e\x00\x5c\x38\x75\x81\x84\x78\xe8\x16\x0f\xdd\xf2\x11\x43\xb7\x34\x47\xa1\xcd\xfd\x76\x27\xb3\x83\x25\xdd\xbb\x79\x4b\x47\x70\xee\x0e\xa2\x14\x0e\xd4\x57\xcd\x09\x24\x4d\x9e\x75\x2a\x00\x75\xba\x37\x3d\xe7\xae\x89\xef\xf4\x30\x6f\xda\x65\x13\xcc\xa9\x3d\xde\x23\x88\xfd\x39\x88\xd2\xda\xcd\x5c\x66\x3c\xa5\x6f\xbc\x28\xe9\x08\xe4\x6c\x50\x21\x97\xb0\xc2\x94\xe5\x61\x9d\x18\xc3\x9f\x31\xcb\x06\x3a\xe2\x68\x07\xc5\xd3\x0e\x14\x2b\x08\xf6\x7f\xf3\x50\x16\x71\xa0\xa4\x4f\xdc\xf3\xc3\x80\xdc\x7c\x31\x18\x37\xf7\x8c\xd2\x62\xd2\xde\x1e\x07\xa8\x65\xef\xdd\x0f\xa5\x70\x2e\xb1\x5a\xaa\xb9\x78\x36\x5c\x8b\x7e\xf3\x10\xb4\xa9\xa5\xd8\x3d\x0a\xf6\x8f\xea\x82\xb9\x81\xa8\x4a\x24\x67\x02\xa0\x05\xfb\x63\xbd\x5e\x3d\x14\x27\xcd\x29\x0f\xe3\xc7\xa1\x94\x62\xa5\x1f\xa1\xf9\x26\x2f\xe9\x6e\xb9\x98\x69\xae\x3f\x79\x18\xfa\xe8\x0c\xd5\xc7\xa2\xcf\xbe\xa5\x79\xd8\xf4\xa9\x24\xce\x56\xe9\x63\x94\x95\x07\x58\x6d\x3a\x25\xf0\x91\x20\xb6\x46\xcc\xec\xf6\x16\xb2\x96\x95\xa3\x58\x01\xd4\x4a\xa0\xf0\x83\xd0\xe4\xf1\xf7\xb6\x3b\xc7\x1f\x7b\x88\xb5\xf6\x29\x61\x8f\xdd\x3f\x3d\x3e\x0f\xdc\xb1\xfb\xa7\xd3\xe7\x8d\x39\x76\xff\xf4\xfb\x12\xf0\xc6\x1e\x98\x8a\x9f\x0d\xd6\xd8\xfd\xd3\xed\x33\xc3\x19\x7b\x30\x82\x7d\xa6\x18\x63\xda\x0f\xf9\xf5\xcb\xaf\xbf\xe9\x01\x37\xb6\x5f\x14\xf6\xc0\x63\x1e\x78\xec\xe3\x04\x1e\x7b\x02\x81\x52\xfb\x47\x07\xa7\x90\x1f\x3d\x08\x59\xc6\x02\x83\x54\xa3\x58\x88\x86\x0b\x3d\x3f\x34\x08\x98\x94\x25\xaa\x00\x59\xd0\xe4\x06\x53\x82\x1f\xab\x6f\xef\x8e\xea\x1e\x11\xcd\x23\xa2\x79\x44\x34\x8f\x88\x56\x7d\xe1\x11\xd1\x3c\x22\x5a\x0f\x81\xe0\x11\xd1\x3c\x22\xda\xfa\xfd\xc8\x23\xa2\x79\x44\x34\x8f\x88\xe6\x11\xd1\x3c\x22\x9a\x47\x44\xf3\x88\x68\x7a\x47\xf1\x88\x68\x1e\x11\xcd\x23\xa2\x79\x44\x34\xe2\x11\xd1\x3c\x22\x9a\x47\x44\x2b\x2a\xf1\x88\x68\x1e\x11\xcd\x23\xa2\x79\x44\x34\x8f\x88\x56\x3c\x1e\x11\xcd\x23\xa2\x39\x07\xec\x11\xd1\xf4\xe3\x11\xd1\x3c\x22\x9a\x47\x44\xeb\x9c\x00\x8f\x88\xe6\x11\xd1\x3c\x22\x9a\x47\x44\xf3\x88\x68\x1e\x11\xcd\x23\xa2\xb9\xfa\xe4\x11\xd1\x3c\x22\x9a\x47\x44\xf3\x88\x68\x1e\x11\xcd\x23\xa2\x79\x44\x34\x8f\x88\x56\x7d\x3c\x22\x9a\xfd\x78\x44\x34\x8f\x88\xe6\x11\xd1\x3c\x22\x1a\xf1\x88\x68\x1e\x11\xcd\x1a\x8f\x47\x44\xf3\x98\x31\x1e\x7f\xc8\x23\xa0\x7d\x04\x08\x68\x1e\x3d\xc6\x63\x39\x3e\x26\x96\xa3\x47\xdf\xf1\xe8\x3b\x8f\x87\xbe\xe3\x31\xc6\x3c\xe2\xaa\xc7\xc8\xf4\x18\xab\x4d\xfa\x3c\x24\xc6\xaa\xc7\x7d\xf4\x88\x68\x5f\x32\x22\x1a\x90\xa8\x09\x8b\x36\x7c\xf9\x15\x62\xa0\xad\x0b\xf5\x7f\x42\x8e\x78\x10\xe7\x21\x23\xd4\x58\x01\xa9\x88\x59\x11\xca\x65\x1d\xbb\x96\x99\x53\xdb\x90\xaf\xc5\x43\x32\x89\x78\x48\xa2\xac\xc4\x23\x28\x0b\x57\xa1\x80\x5c\xa8\x04\xfd\x53\xf3\xf5\xfc\x7a\xfc\xb2\x4f\x0c\xbf\xcc\xc3\x84\x79\x98\x30\x0f\x13\xe6\x61\xc2\x1e\x0d\x26\xcc\xa3\x81\x79\x34\xb0\xcf\x1d\x0d\x6c\x43\x25\x6a\x43\x90\x23\x2b\xe8\xee\x3e\x30\x8e\x74\xd5\x1b\x01\x1d\x55\xe2\x00\x1f\x02\xee\xe8\x53\x05\x5d\x6b\x57\x9b\xd7\x20\xaf\x95\x9c\x56\x46\xc6\xde\x1a\x80\xad\x6f\xa5\xb7\xc3\x61\xdb\xa8\x95\x4f\x05\x8e\xad\xcb\xfe\xf9\x24\x31\xd9\x2c\x7a\xea\x0d\xa8\x3f\x39\xef\x57\xde\x79\x50\x37\x5e\x00\xa7\x13\x4d\x67\xb2\xfc\x7a\xf8\x72\xf8\x52\xfd\x6e\x04\x5c\x28\x02\xd9\xdc\xfd\x76\x54\xc1\x9d\x94\xc5\x8c\x4a\x26\x9f\x94\x9f\xd5\x21\x61\xc0\xe3\x80\x29\x72\x53\x11\xc7\xe2\x4a\x99\x72\x81\x58\x24\x82\x33\x9e\x19\xa7\x89\x22\xd1\x13\x42\x4c\x78\x85\xea\xe7\x6e\x59\x67\xf1\x7b\xc0\xa3\xea\xcf\x15\x89\xbb\xbb\x7c\x31\xfc\x5e\xbd\x2a\x58\xef\x13\x83\x9f\xf3\x30\x72\xb7\x83\x91\xfb\x12\xe0\xda\x5e\xdc\x11\x5c\x5b\x4f\x60\xbd\xb2\x16\x0d\xa3\x66\xd0\xf5\xb6\x9b\xe0\x7a\x36\x42\x08\xf9\xf8\x70\xe0\x5a\x60\xde\x7a\x82\xbc\x79\x88\xb7\x7b\x85\x78\x33\x7f\x7e\x89\xa0\x6b\x6b\x91\xd4\x8a\x3d\x71\x0d\x9e\x9a\xd6\xaf\x1e\x09\x56\xad\x3c\xae\x59\xaf\xc7\x76\xed\x88\x1e\x61\xcd\x23\xac\x7d\x64\x08\x6b\x26\xd4\xd0\xa2\x9f\x5a\x29\x7b\xcd\x9f\x31\x77\x32\x4a\x59\x78\x00\x63\x3e\x2b\x86\x75\x34\xe3\xa2\xf8\x19\x11\xbc\xd4\xb2\xa9\x8a\x72\x1b\x65\x6d\xcc\xd2\x45\x33\x03\x73\x80\x8c\x7e\x78\x9d\xa4\x4c\xca\xda\xa4\x96\x85\x20\xbb\x44\x2d\xc2\x61\x1d\x06\xae\x59\xda\x46\x0f\x3b\x16\xd9\x51\x03\x11\x86\x98\xa4\x18\x57\x5b\xd8\xde\x55\xc4\x43\x71\x55\x54\xee\xc1\xe5\x3c\xb8\x9c\x29\xe5\xc1\xe5\x5a\xc1\xe5\x6e\x8a\x16\x57\x6e\xf4\x1e\x34\xce\x83\xc6\x35\x4b\x7d\x59\xa0\x71\x1e\x6d\xcd\x55\x5d\x2d\xd7\xad\x1b\xb2\xcb\x61\x61\x78\xe0\xae\x6a\x6f\x3c\x70\xd7\x66\xad\x79\xe0\x2e\x0f\xdc\xe5\x81\xbb\x3e\x02\xe0\xae\xfe\xb0\x5d\x1e\xb4\xcb\x83\x76\x7d\x2a\xa0\x5d\x87\xdc\x3d\x4c\x99\x85\x22\xcf\xfa\x36\xe9\x51\xbb\x6e\x82\x65\x65\x3e\x6d\xbc\xbe\x07\x28\x2b\x8f\xdc\x65\x1e\x8f\xdc\xf5\x89\x20\x77\x79\xb0\x2d\x78\x3c\xd8\xd6\x2d\xfb\xe0\xc1\xb6\x3c\xd8\xd6\xdd\x80\x6d\x15\xee\x1d\x0f\xb9\xe5\x21\xb7\x3e\x2d\xc8\x2d\x47\xe8\x7b\x79\x81\x6f\x3d\x9a\xf2\x26\xe1\x06\x56\x10\xc6\xbe\xce\x00\x89\x63\x3c\x8b\x68\x49\x2f\x35\xee\x08\xb5\x3b\x63\x04\x25\x1c\xc7\x58\xae\xce\x32\xb5\x8b\x2c\x70\xd5\x7d\x2c\x40\x52\x5f\x0e\x1e\x8b\xc7\xe2\xba\x01\x16\xd7\xc3\xd0\xee\xd3\xca\xe5\x7f\x18\x9a\x7c\x1e\x18\x2b\x0f\x43\xab\xcf\x1b\x8d\xeb\x61\x68\xf8\x25\x20\x4a\x3d\x02\x25\x3f\x1b\x54\xa9\x87\xa1\xdd\x67\x86\x62\xf2\xa0\x44\xfb\x74\x91\x4c\x1a\x20\x26\xaf\x10\xc1\xa4\xe7\x15\xd4\x3a\xe9\xbe\x72\x09\xf5\xa7\x93\xe4\xb3\x4a\xe6\x54\x75\x32\xc4\x53\x13\x3c\xd4\xcc\xd4\xaf\x17\x3a\x52\xee\x02\x2b\xb7\x8f\x5b\x3e\x97\xe4\x20\x9f\x1a\x74\x8f\xa9\x41\x2f\x7d\x6a\xd0\xdd\xa6\x06\xf5\x4e\x0e\x7a\x88\xf4\x20\x47\x93\x97\xdf\xc9\x0b\x9a\x67\xf3\x8b\x4c\x5c\x32\x6e\xc6\x7c\x76\x78\xfa\xe1\x68\xff\x70\x6f\x7f\xff\xe4\xfd\xf1\xf8\x62\x7c\xf2\xe7\xc3\x63\x35\xe6\xae\x8e\x74\xe6\x17\xf9\xec\xa2\x4f\x34\xbb\xc8\x3b\x9d\xbc\xd3\xc9\x3b\x9d\xbc\xd3\xc9\x3b\x9d\xbc\xd3\xc9\x3b\x9d\xbc\xd3\xc9\x3b\x9d\xbc\xd3\xe9\x8b\x75\x3a\xad\x4b\x56\x5c\xa7\x2a\x23\x4e\x17\xa8\xc9\x9f\x08\x96\x6e\x0f\x9c\x37\x8f\xa5\xdb\x6c\xc4\x63\xe9\x16\x33\xe5\xb1\x74\x1b\x73\xe9\xb1\x74\x6b\x7d\xf6\x58\xba\x1e\x4b\xd7\x63\xe9\x7a\x2c\xdd\x4f\x0c\x4b\xf7\x13\x04\x79\xbd\x09\xbe\xeb\x06\xdb\xce\x5d\xa8\x5a\xb7\x43\x74\xbd\xb5\xb2\xf3\x51\x41\xb9\xae\x99\xae\x4f\x00\xbf\xf5\xae\x81\x95\xfb\x53\xee\xd3\x87\xae\x7e\x0c\x38\xd7\x9e\xf1\x13\xb0\x11\x55\xa2\x27\xda\x80\xe7\xd4\xca\xe8\x86\x9c\x7b\x24\xac\x39\x9a\x24\xb2\xdd\xc2\xf5\x00\x73\xa6\x7f\x1e\x60\xce\x03\xcc\x59\x9f\x7a\x80\xb9\x8f\x06\x60\x6e\x8c\xbf\x33\x0c\x23\x42\x80\x07\x22\x85\xe1\xf4\x02\x65\xc2\xf0\x16\xf8\x67\x68\x86\xc9\x29\xd1\x82\xb5\xa0\xb7\x7d\x01\xa8\x73\x45\xbb\x18\xee\x33\x50\x3b\x7e\x7d\xc5\x09\x9e\xa5\x22\x4e\x62\x5a\xc7\x2b\x28\x2b\x3d\xdf\xd2\xd5\x56\xde\x9b\x1e\x9d\x6f\x59\xb4\xdc\xda\xa0\x69\x96\x05\xe1\xcd\x9b\x34\x64\xb0\x18\xcb\x43\xec\xdd\x0a\x62\xcf\xc8\xff\xfd\x98\x4a\x79\x6c\x69\x4f\xa0\x06\x0d\x0c\xb7\x9b\xe2\x37\x45\xe4\xf3\x50\x7c\x1e\x8a\xcf\x43\xf1\x79\x28\x3e\x67\x75\x8d\x1c\xd8\x27\x64\x2f\x0c\xd5\x66\xfb\x3a\x66\xd7\xe4\x03\x0c\x80\x1c\xa4\x91\x52\x31\x41\x31\xc5\x85\xa6\x4a\x24\x2c\x55\x82\x8f\xbc\xe7\xd1\x35\x39\x10\x0b\x1a\x71\x72\x26\x82\x4b\x06\xc7\x87\x34\x8e\xc5\x15\x39\x88\x2e\x95\x75\x55\x91\x3c\x10\xfe\x6e\x42\xbf\x19\xea\xdf\x88\x92\x24\xb0\x15\x46\xf0\xe8\x99\x9c\xad\x78\x40\xf6\x46\xae\x94\xe0\x69\xcc\xae\x97\x22\x1e\x84\xd0\x35\xb7\x18\x52\x43\xf8\x20\x9a\x90\x12\x1d\x79\xf5\xae\xca\x07\x4d\xa0\x94\x06\xb9\xab\xdd\xe8\x46\x34\xac\x98\xae\x1e\xcb\xb0\xda\x1b\x8f\x65\xb8\x59\x6b\x1e\xcb\xd0\x63\x19\x7e\x74\x58\x86\xf7\x80\xeb\xe7\xc1\xf9\x3c\x38\x9f\x07\xe7\xf3\xe0\x7c\xf6\x67\x1e\x9c\xaf\x78\x3c\x38\xdf\xa7\x0f\xce\x47\x2c\x19\x81\x0a\xbd\x5c\xf1\xa0\xfe\xb9\x6b\xe4\x4a\xdd\xa2\x33\xc6\xb3\x0e\xa7\x90\x47\xfa\xf3\x48\x7f\x1e\xe9\xcf\x23\xfd\x3d\x1a\xd2\x1f\xa7\x2e\x34\x39\x8f\xf1\xe7\x31\xfe\x3e\x62\x8c\xbf\xe6\x28\x74\xfc\x68\xbb\xf3\xd3\xc1\x92\xee\xdd\xbc\xa5\x23\x38\x77\x07\x51\x0a\x27\xbd\xab\xe6\x04\x92\x26\xcf\x3a\x15\x80\x3a\xdd\x9b\x1e\x5d\xd7\xc4\x77\x7a\x3e\x37\xed\xb2\xc1\x6b\xd0\x9e\xd8\x11\xc4\xe3\x1c\x44\x69\x0d\xa7\xc1\x8c\xa7\xf4\xd9\x16\x25\x0b\x9c\x86\x58\xb2\x96\xaf\x76\x72\x09\x2b\x8c\x5d\xb3\xc0\x3a\xc8\x83\x3f\x63\x96\x0d\x74\x14\xd0\x0e\x8a\xa7\x1d\x28\x56\x10\xec\xff\xe6\xa1\x2c\x90\x20\xc8\xaf\xbf\x3a\x53\x96\xee\x16\xd6\xb1\x81\x31\xf3\x07\x8f\x31\xe3\x31\x66\x3c\xc6\x8c\xc7\x98\xf1\x18\x33\xae\x96\x3d\xc6\x8c\xfd\xca\x63\xcc\x78\x8c\x19\x8f\x31\xe3\x31\x66\x3c\xc6\x8c\xc7\x98\xf1\x18\x33\x1e\x63\xc6\x63\xcc\x78\x8c\x19\x8f\x31\xe3\x31\x66\x3c\xc6\x8c\xc7\x98\xf1\x18\x33\x1e\x63\xc6\x63\xcc\x38\x06\xe1\x31\x66\xca\x77\x1e\x63\x66\x0d\xc6\x0c\x8c\x4d\xf5\x55\xa7\xbe\xb6\xae\x11\x0f\x3e\xe3\xc1\x67\x3c\xf8\x8c\x07\x9f\xf1\xe0\x33\x1e\x7c\xc6\x83\xcf\x7c\x74\xb4\xf5\xe0\x33\x1e\x7c\xc6\x83\xcf\x78\xf0\x19\x0f\x3e\xe3\xc1\x67\x3c\xf8\x8c\x07\x9f\xf1\xe0\x33\x1e\x7c\xc6\x83\xcf\x78\xf0\x19\x0f\x3e\xe3\xc1\x67\x3c\xf8\x8c\x07\x9f\x69\x92\xde\x83\xcf\x6c\xd6\x9a\x07\x9f\xf1\xe0\x33\x1e\x7c\xc6\x83\xcf\x78\xf0\x19\x57\xc3\x1e\x7c\xa6\xe2\x9d\xf3\xe0\x33\x1e\x7c\xc6\x83\xcf\x78\xf0\x19\x0f\x3e\x83\x8f\x07\x9f\x59\xdb\x07\x0f\x3e\xe3\xc1\x67\x3c\xf8\x8c\x07\x9f\x81\xc7\x83\xcf\x78\xf0\x19\x0f\x3e\x73\xf7\xe0\x33\x83\x52\x11\x41\x1c\x9a\x27\x88\x10\x33\xd6\x51\x30\x1f\x5e\xbe\xfc\xc3\xa8\x28\xd2\x33\x93\xe8\xfe\x06\xb0\x41\xa2\xd2\xfd\x24\x0f\xf9\xbc\x21\x9f\x37\xe4\xf3\x86\x7c\xde\x90\xcf\x1b\xf2\x79\x43\x3e\x6f\xc8\xe7\x0d\xf9\xbc\x21\x9f\x37\xe4\xda\x8f\x7c\xde\xd0\x03\xe4\x0d\xa1\x1d\xf3\x49\x65\x0f\xdd\x6b\xc6\x0f\x38\x41\x8c\x99\x72\x0f\x29\x3f\x9f\x4f\xb6\x8f\x87\x51\xfd\x64\x61\x54\xcf\x1f\x0f\x48\xb5\x0c\xef\x52\x5f\xbe\x1b\xbf\x57\x2d\xe4\x92\xf5\x86\x0d\x5d\xb2\x6c\x7e\xb1\xc8\x72\x3d\x3c\x40\x0c\x55\xd5\xd7\x21\x43\x4b\x8f\x93\xfd\xc5\xcb\x6f\xbe\x7d\x51\x2b\x7d\xee\x01\x5e\x37\x04\x78\xb5\x0b\x7c\x54\x38\xac\x1a\x48\xf6\xe2\x62\xff\xf8\xe8\xe2\xdd\xf8\xfd\xc5\xc5\x27\x08\xd4\xda\x55\x4f\x27\xce\xea\xe7\x80\xb4\xda\xa7\x27\x13\xca\xc3\xab\x28\xcc\xe6\x8d\xbe\x38\x1a\xb4\x0a\x7b\x5c\x57\xfd\x1f\x9f\xce\xeb\xd3\x79\x7d\x3a\xef\xa7\x98\xce\xeb\x4c\x37\x25\xa4\x9e\x29\xbb\x4b\xe2\x88\xe7\xd7\xa6\xc0\x27\x9f\xd3\xfa\x8e\x5e\x32\x22\x95\xd2\x88\xb2\x06\xc8\x6b\x88\x09\xb1\xf3\x4a\x33\x03\x3b\xa6\x72\x36\xfd\x45\xa5\xaf\xfa\x8c\x4e\x9f\xd1\xe9\x33\x3a\x7d\x46\xe7\x27\x92\xd1\xa9\xa6\x4d\xd9\xf5\x5a\x52\x2d\x69\x1a\x29\xdd\xa3\x7d\x8a\xde\x8d\xdf\x3f\xe2\xbc\x18\x27\x42\x7d\x18\x3e\x31\xd5\x55\x9d\x23\x70\xeb\xa6\xb1\xbc\x3e\xa5\xf5\x0e\x52\x5a\x6f\x3e\x01\x3e\x19\xd6\x27\xc3\xfa\x64\x58\x9f\x0c\xfb\xa5\x26\xc3\xa2\x8e\x69\x0e\x5a\x8e\x46\xcb\x6f\x48\x22\x44\x6c\xc5\x12\x97\xe1\x23\x70\x5c\x21\x38\x23\x0c\x0c\xb3\x21\x19\x89\x10\x62\xf7\xb4\xf7\xbf\x5e\xb3\x3e\xdb\x01\x5d\x01\x0e\x0b\xc0\xc2\x1e\x92\xfd\x39\xe5\x98\xd9\xa8\x7e\x84\xae\xe9\x10\x07\xfb\xb0\x0c\x6b\x9d\xd3\x65\xa3\x5e\x2e\xb4\x05\x39\x44\x4b\x44\xce\x45\x1e\x87\x64\xaa\xe6\x04\xcf\x6e\xc8\x60\xa0\x3d\x68\x83\x20\x0a\xeb\x8a\xc9\x93\x0d\x52\x80\x9f\xf4\x4f\x02\xb6\x72\x46\x95\x91\x60\xd2\x37\xa5\x00\xff\x45\x90\xc5\xea\x27\x09\x6e\xbf\xb6\x44\x59\x9f\x3f\xdc\xb9\x88\x7c\xfe\x30\xe9\x5e\xcb\xe5\xac\x5b\x63\x3c\xdf\x8a\xf8\x54\x74\xe7\xfb\xfa\xf4\x61\x78\xba\xd2\x87\xd9\xb5\xe5\xa8\x2c\x6a\xd1\x3e\x86\xfa\xef\x03\x02\xe9\x81\x2d\x0a\x1b\x96\x18\x00\x6b\x0c\x54\x9b\xb5\x71\xfa\xd4\xe1\xe2\xf1\xa9\xc3\x3e\x75\xd8\xa7\x0e\xfb\xd4\x61\x9f\x3a\xdc\xdd\x53\x9f\x3a\xec\x53\x87\x7d\xea\xb0\x4f\x1d\xf6\xa9\xc3\x3e\x75\xb8\x2b\x75\xf8\xd1\x2f\xbb\xd6\xd3\xf1\xf9\xdf\x75\x7d\xcf\xb7\x35\x9b\xb4\xb7\xc7\xb9\xb0\x79\xef\xdd\x0f\xa5\x70\x2e\xef\x6c\xae\xe6\xe2\xd9\xd7\x36\xeb\x37\x0f\x41\x9b\x5a\x8a\xdd\xa3\xdc\x01\xae\xba\x60\x2e\x21\xa8\x12\xc9\x99\x00\x68\x5d\xff\x6d\xbd\x5e\x3d\x14\x27\xcd\x29\x0f\xe3\xc7\xa1\x94\x62\xa5\x1f\xa1\xf9\x26\x2f\xe9\x6e\xb9\x98\x69\xae\x3f\x79\x18\xfa\xe8\x0c\xd5\xc7\xa2\xcf\xbe\xa5\x79\xd8\xf4\xa9\x24\xce\x56\xe9\x63\x94\x95\x07\x58\x6d\x3a\x25\xf0\x91\xae\xda\x1f\x31\xb3\xdb\x5b\x37\xec\x5b\x39\x8a\x95\x8b\xf5\x13\x28\xfc\x20\x34\x79\xfc\xbd\xed\x87\x37\xa3\x8e\x9d\xad\x25\xc9\xb3\x42\xae\x47\xd8\xd5\x20\xb1\xf8\x71\xd6\xd9\x48\x88\xb8\xbe\xc6\xac\x3c\x67\x7b\x7d\x25\x50\xf4\xfe\xe9\x51\xc9\x21\x7f\x0c\xaa\xfc\x28\x64\x76\xa8\x3b\x50\xa5\x8d\x23\xbd\xbd\xa4\x90\xfd\xf2\x21\xe8\xe4\x48\x31\x7f\x0c\x6a\xe9\xba\x8e\xca\x6e\x54\x69\xd6\x9a\x09\x5f\x52\xae\x59\xe4\x21\xe8\xe7\x04\x4c\x78\xf4\x1b\xf3\x5d\x57\xbf\x77\x40\x3b\xb4\x5c\x9c\x6f\xae\x81\x7f\x60\x2a\x6e\x72\x11\xfc\xbd\x51\xb0\x71\x17\x7c\x0b\xf4\x45\x0b\xe9\xe0\x5e\xf8\xfb\xa7\xdb\x0d\xf9\xee\x7e\xae\xcf\x77\x31\xdd\x1a\x76\x7b\x70\x46\xbb\x01\x8b\xdd\x0f\xb1\x1a\xfc\xd5\xc1\x59\x36\x4f\x75\x62\x8c\x69\x3f\xe4\xd7\x2f\xbf\xfe\xa6\x07\xdc\xd8\x7e\x51\xd8\x03\x8f\x79\xe0\xb1\x8f\x13\x78\xec\x09\x04\x4a\xed\x1f\x1d\x9c\x42\x7e\xf4\x20\x64\x19\x0b\x0c\x52\x8d\x62\x21\x1a\x2e\xf4\xfc\xd0\x20\x60\x52\x96\xa8\x02\x64\x41\x93\x1b\x4c\x09\x7e\xac\xbe\xbd\x3b\xaa\x7b\x44\x34\x8f\x88\xe6\x11\xd1\x3c\x22\x5a\xf5\x85\x47\x44\xf3\x88\x68\x3d\x04\x82\x47\x44\xf3\x88\x68\xeb\xf7\x23\x8f\x88\xe6\x11\xd1\x3c\x22\x9a\x47\x44\xf3\x88\x68\x1e\x11\xcd\x23\xa2\xe9\x1d\xc5\x23\xa2\x79\x44\x34\x8f\x88\xe6\x11\xd1\x88\x47\x44\xf3\x88\x68\x1e\x11\xad\xa8\xc4\x23\xa2\x79\x44\x34\x8f\x88\xe6\x11\xd1\x6e\x81\x88\xf6\x84\x9c\x52\x1e\x28\x8b\x08\x14\x7a\x65\xfd\xe0\xc9\x90\x29\xe0\x80\x4c\xfb\xe5\x17\x82\x16\xd6\xa8\xfe\x8e\xfc\xab\x30\xcf\xce\xb7\x9c\xc8\x6a\x5b\xd6\x9a\xf1\xf0\x6a\x1e\x5e\xcd\xc3\xab\x35\x1e\x0f\xaf\xe6\xe1\xd5\x3c\xbc\x9a\x5b\x0e\x7b\x78\x35\xfd\xb9\x87\x57\xf3\xf0\x6a\x1e\x5e\xcd\x4d\x1c\x0f\xaf\xe6\xe1\xd5\x3c\xbc\x5a\xe7\x6a\xf2\xf0\x6a\xae\x2e\x78\x78\xb5\x5a\xc3\x1e\x5e\xad\x7c\xe7\xe1\xd5\xaa\x85\x3c\xbc\x5a\xf9\x78\x78\x35\x0f\xaf\xe6\xe1\xd5\xcc\xe3\xe1\xd5\x3c\xbc\xda\x3d\xf4\xd5\xc3\xab\x55\x5b\xf4\xf0\x6a\x1e\x5e\xcd\xc3\xab\x35\xe7\xce\xc3\xab\x79\x78\x35\x0f\x40\xe3\xc1\x8c\x3c\x9c\xda\xe3\xc0\xa9\x79\x28\x1a\x0f\x0c\xf9\x98\xc0\x90\x1e\xca\xc7\x43\xf9\x3c\x1e\x94\x8f\x07\x2c\xf3\xf0\xad\x1e\x70\xd3\x03\xb6\x36\xe9\xf3\x90\x80\xad\x1e\x44\xd2\xc3\xab\x79\x78\xb5\x12\x5e\xed\x3b\xc4\x51\x5b\x97\x2e\x50\x60\x8a\x9c\x0a\x58\xc4\xb7\xc0\x89\xd0\xc4\xef\x85\x54\xb6\x19\xfc\x42\x3f\x38\x31\x72\x67\x78\x0f\x6b\x81\x87\x4a\x4c\x96\xbb\x05\xbd\xe8\x1c\x02\xa9\x62\x1e\x6d\xd4\x72\x17\x54\xda\x9d\xe0\xb1\xdd\x33\x8a\x47\x07\x7d\x72\x2b\xed\xad\x73\xca\xef\x01\xc5\xeb\x26\x9c\xf7\x19\xa0\x4d\xad\x41\x96\x6a\x7d\x71\x13\xa4\xa8\x16\x93\x67\x1d\xe8\xce\xe6\x0c\xa3\x77\x19\x1b\xa2\x27\x45\x99\xf8\x31\x83\xf3\xb4\x0b\xdd\x35\x08\x3d\xe5\xf8\xcb\xa0\xa7\x5b\x03\xf5\xf4\xad\xf4\x76\x78\x3d\x1b\xb5\xd2\x1b\xb6\xe7\xd1\x81\x7b\xba\xf6\xcf\x4f\x0d\xbd\xc7\x45\x53\x94\x76\x1b\x90\x74\x43\xc2\x79\x08\xa0\xf3\x0d\x21\x80\x0a\x98\x5d\xa2\xe9\x4c\x96\x5f\x0f\x5f\x0e\x5f\xaa\xdf\x8d\x98\x0b\x45\x20\x9b\xfb\xd5\x8e\x2a\xb8\x93\xb2\x98\x51\xc9\xe4\x93\xf2\xb3\x3a\x80\x40\x10\xe7\x21\xc3\x1c\x88\xa9\x88\x63\x71\x15\xf1\x19\x09\xc4\x22\x11\x9c\xf1\xcc\x68\xc5\x8a\x44\x4f\x08\x31\xe7\x67\xaa\x9f\xbb\x65\x9d\xc5\xef\x01\x8f\xaa\x3f\x57\xe4\xee\xee\xf2\xc5\xf0\x7b\xf5\xaa\x38\x96\xab\x81\x15\x05\x94\x93\x09\xfb\xb8\x01\x8b\x3c\xf0\xd0\xed\x80\x87\x6e\x06\xf0\x73\xfe\x10\xb8\x3c\x2f\x3e\x77\x5c\x9e\x16\xd8\x9d\x9e\xa0\x3b\x77\x0c\xb9\xd3\x00\xdc\x69\x34\x77\xf9\x9d\xbc\x50\x52\xf4\x22\x13\x97\x8c\x9b\xb1\x9e\x1d\x9e\x7e\x38\xda\x3f\xdc\xdb\xdf\x3f\x79\x7f\x3c\xbe\x18\x9f\xfc\xf9\xf0\x58\x8d\xb5\xab\x13\x9d\x78\x3d\xba\xa1\x24\xba\x48\x85\xd0\xa3\x33\xc2\xb5\x42\x5a\xdd\xf2\xc5\x8f\x27\x67\xe3\x8b\x8b\x5d\xe7\xbb\xd1\xc9\xe9\xb8\x41\xf9\xcf\x01\x11\xc8\xfc\xf9\x59\x63\xf4\x6c\xdb\x1f\x7c\x38\x3e\x82\x4a\x1a\xa5\x3f\x1c\x1f\xfd\xfa\x6b\xa5\xe8\x48\xa4\x99\xbb\xac\x7a\x53\x06\xba\xfc\x6a\x11\xaf\xd0\xbf\x3a\x21\x7d\x8a\xed\x76\x0d\xb0\x8f\x56\xdd\x1e\x09\xdf\xa7\x74\xf5\xad\x57\x93\xbb\x36\x5a\x0f\xf5\xf3\x10\x50\x3f\xb7\x86\xbf\x31\xa1\x1b\x56\x9d\x8a\x7b\xf6\x9a\x3f\x63\x2e\x4a\x94\xb2\xf0\x00\xc0\x4a\xce\x0a\x9c\x96\xa3\x19\x17\xc5\xcf\x08\xaf\xa2\x58\xa9\x2a\x36\x6d\x08\x9c\x31\x4b\x17\xcd\x8c\x96\x01\x4e\xfe\xe1\x75\x92\x32\x29\x6b\x03\x2d\x0b\x41\xb4\xae\x62\xcc\x61\x1d\xa3\xa7\x59\xda\x86\x76\x39\x16\xd9\x51\x23\xc3\x9e\x98\x20\x63\x57\x5b\xd8\xde\x55\xc4\x43\x71\x55\x54\xfe\xc9\x20\xff\xac\x85\xa5\x69\x83\x06\x1a\xe3\xef\x0c\xd3\x1b\x31\x53\x91\x48\x61\xd4\xc3\x22\x5d\xd2\x30\x1f\xa4\x89\xd1\x0c\x52\x4a\xb3\x68\xc1\x5a\x70\x77\xbe\x00\xbc\xa0\xa2\x5d\x54\xeb\x06\xca\xd4\xad\x2f\x49\xc1\xb3\x54\xc4\x49\x4c\xeb\x49\x77\x65\xa5\xe7\x5b\xba\xda\xca\x7b\xd3\xa3\xf3\x2d\x8b\x96\x5b\x1b\x34\xcd\xb2\x20\xbc\x79\x93\x86\x0c\x45\x81\x2f\x08\xc6\xa8\x1b\x64\xc1\xb1\xaf\x7b\xa8\x85\x6a\x6f\xee\x00\x6a\xe1\x4b\x49\x81\x3d\xe4\xee\x61\xca\x2c\x14\x79\xd6\xb7\xc9\x1b\xe5\xc0\x7e\x81\xa0\x09\x1f\x51\xc6\xfb\xc7\x8e\xdf\x50\x66\xbd\x7f\x78\x45\x64\x9e\x28\x2b\x53\x75\x16\x22\x39\xef\x2b\xf1\xfd\x61\x11\x4e\xee\x07\xa2\xe2\xd1\xa1\x50\x3e\x5e\x2c\x85\xcf\x3f\xeb\x7e\x4d\x2e\xba\xf9\xb4\xf1\xba\x25\x15\xfd\x73\x4b\xad\xff\x94\x72\xe7\x3f\x97\x74\xf6\x35\xf8\x97\xa5\xfb\xe9\xd3\x87\xc1\xbc\x01\xa0\x25\x9c\xba\x79\x44\xcb\x66\xa7\x1f\x1d\x95\xf2\x13\x84\x55\xf4\x60\x0f\xf0\x78\xb0\x87\x5b\xf6\xc1\x83\x3d\x3c\x32\xd8\x03\xd6\x9d\xe6\x35\x59\x52\xc3\x80\x70\x7d\x73\x3b\xe4\x06\xd2\x03\x8f\xa0\xd1\x8d\x0e\xfc\x81\x16\xa5\xa0\x1b\x20\xa2\x70\x70\x79\x98\x08\xd1\xa0\xd0\xe7\x81\x9f\xd0\x09\x3a\x51\xe3\xec\xb5\xf8\x17\xcd\x1a\xee\x10\xb6\xe2\xa1\xd1\x39\x20\x6e\x4b\x5f\x75\x1a\xc7\xa8\x22\xb7\x24\x3b\x18\x97\x81\xda\xab\xad\x68\x7f\x74\xe3\x0e\xe0\x3a\xce\x05\xae\x22\x7d\x60\x7c\x4f\x59\x16\x5f\x44\xa6\xef\x7d\x13\xf1\x73\xc6\x79\x78\x18\xda\x7d\x5a\x79\x62\x0f\x43\x93\xcf\x1b\xbd\xe0\x61\x68\xf8\x25\x64\xe0\x3f\x0c\x25\x3f\xb3\xcc\xc5\x47\x60\xbf\xcf\x06\xba\xe0\x61\x68\xf7\x79\xc0\x17\x38\x69\x55\x5e\x8c\x5c\xcf\x3b\xb8\x49\xf4\x5c\x35\xc3\xf4\xeb\xe1\xcb\x57\xc3\x17\x98\x64\x6a\xb2\x08\xc6\x3a\xac\xac\x84\xe4\xc7\xdf\x75\x61\xe2\x2f\x1d\xfe\xfc\x2f\x1d\x7e\x84\xc8\xff\x8f\xf3\xc2\xe1\x5b\x5c\x37\xec\x6f\x1b\xee\x95\xd5\xa0\x8a\x4d\xa3\x98\x5d\x28\x43\x1a\x8b\xa2\x67\x44\xcc\x76\xca\x8c\x21\xf5\xbf\x61\x2c\x66\xfe\xb2\xe2\x6a\xbb\x8f\x76\x59\x31\x92\x0e\xcf\x98\x2e\x4c\x18\x54\x23\xc5\xa2\xfc\xc7\x47\x94\xa5\xf0\xd8\xf7\x16\x7f\x76\x19\x11\xa6\x7c\xff\x5b\x8b\x6b\x88\x9a\x7d\x91\x41\x36\x54\x0d\x9b\x91\xed\x3a\x48\x36\x66\xe9\x60\xc6\x38\x84\xb1\x4e\xf2\x28\x0e\x59\x0a\x0d\x98\xe6\x9f\x85\x4a\x6e\x3d\x07\xd1\x9b\x32\xa8\x61\x1c\x2d\x98\xcc\xe8\x22\xd9\x25\x3c\x8f\xe3\xdb\x38\x72\xd6\xe9\x9a\x7d\xfd\x34\x71\x24\xb3\x3f\x3b\xdf\xbf\x2d\xd2\xaf\x6f\xe1\xcb\x71\xa9\xc9\x56\xa6\xa7\xe5\xff\x7e\xa9\x2b\x0b\xe6\x6c\x51\xa6\x1f\x88\x84\xf1\xbd\xd1\xd1\x87\xaf\xcf\xaa\xbf\x13\xa5\x31\x04\x69\x94\x40\x2c\x7f\xa3\xef\x86\xc5\x8b\x8b\xf5\xac\x57\x70\x54\xc9\x57\xea\x1b\x50\x69\xaa\xa1\xd9\x49\x2a\x12\x96\xaa\x75\x59\x71\xd1\x5a\x7c\x55\x15\x6b\x95\x6e\x3c\x55\x5d\xd5\xf9\xb3\xa1\x62\x28\x9d\xef\xaa\x47\xcc\x42\x3d\x3c\xbc\xf9\x32\x92\x24\x65\x49\xca\xa4\x01\x05\xa8\x0b\x4c\x31\x25\x94\x13\x01\xa9\xc3\x43\x50\xdc\x59\x5a\xdc\xc7\x13\x08\xbe\x64\x69\x46\x52\x16\x88\x19\x8f\xfe\x59\x54\x2e\x4d\x2e\x35\xac\x92\xac\x5e\x29\xe8\x7d\xa0\x8a\x2b\x4d\x62\x1b\x42\x26\x16\x74\x45\x52\xa6\x9a\x21\x39\xb7\x2a\x44\x65\x43\x49\x92\x54\x29\x8c\x53\xb1\x6b\x63\x1e\x98\x25\xa5\xb5\xce\x6c\x85\xe1\xe3\xd1\x24\xcf\x44\x2a\x77\x80\xfd\x77\x64\x34\x1b\xd0\x34\x98\x47\x19\x0b\xb2\x3c\x65\x3b\x34\x89\x06\xd0\x77\x8e\x8c\xbe\x08\x9f\x14\x71\x4e\x4f\xcf\x1d\x0e\x6f\x99\xa5\x90\xba\x5d\xfe\x0e\xfc\xdc\x35\x0d\x8a\xa1\x95\x5a\x4b\xf5\xc7\xfa\x16\xa4\x82\xda\x46\xcb\x3d\x3d\x3c\x1b\x17\x51\x56\x30\x23\x8d\x29\x00\xe2\x97\x5f\xca\x72\x1e\x14\xd1\x22\x3e\x85\x2b\xfe\x22\x69\xee\x61\x62\x56\x14\x9b\x62\xbd\x38\xaa\xc0\x2b\xe3\x23\xf3\xc9\x02\xaf\x98\xc6\x40\x2e\x92\x89\xa1\x32\x54\x94\xe2\x3b\x61\x3a\x7f\x28\x1c\x92\x23\x65\x36\x2d\x58\xbc\x4f\x25\xbb\xf7\x59\x50\xd4\x96\x03\x45\xdb\xbe\xf3\xd0\x48\x16\xb2\x8b\x23\xe5\xec\x37\x95\xcc\x1e\xc7\xb4\xd5\x17\xf1\x59\xc2\x82\xea\x42\xd6\xca\xaf\xbe\x37\x56\x2d\xe0\xea\x96\x57\xad\xbc\x65\x29\xab\x87\xca\xe3\x7c\x31\x61\xa9\xe3\xa4\xb6\xb6\xa0\xcf\xb0\xa0\xe2\xa6\xcc\xba\xca\x6b\xef\x8c\x70\x7c\x61\xac\x33\xaa\x35\xf6\xbf\x1d\x60\x11\xe7\x21\xf0\xab\x6f\xbe\x7d\xf9\xd5\xdf\x9f\x36\x5f\xa1\x9b\x72\x57\xad\xce\xaf\xbf\x6a\xbe\x46\x92\xaa\xa5\x3b\x63\x69\xfd\xb5\x99\x79\xd7\x40\x6b\xe3\xd9\x2f\x8b\xe2\xfa\x50\xe2\x5f\xd1\x13\x69\xa9\x39\xc8\xd0\x19\xaf\x43\x67\xf5\x08\x14\x4d\xc2\x74\x12\x65\x29\x4d\x57\xb8\xd5\x60\x18\x2c\xc5\x10\x65\xcc\x07\x18\x36\x3f\x8b\x32\xe6\x48\xad\x6a\xed\xe6\xaa\x9c\x7e\x99\x51\x1e\xd2\x34\x54\x96\x64\x4c\xd3\x19\xab\x77\xd7\x55\x29\x81\x21\xa8\x95\xc6\x9b\x77\x00\xe2\xd3\xc1\x24\xf8\xc0\xf6\xe4\x7e\x55\xeb\x35\xdc\x69\x3c\x8b\x96\x8c\x5b\x77\x82\x9a\xee\x39\x1b\x27\x1d\x8b\xab\x7c\x30\x02\xac\x57\x17\x3e\x80\x9c\x5b\xe4\x12\xe4\x88\x98\x6a\xbe\x22\x3f\x53\xba\xcb\xf9\xcf\x8a\x78\xf8\xe7\xee\x62\xf1\x73\x6b\x97\x08\x79\x2d\xd2\x92\xe2\xe5\x48\x72\xc9\x8a\xaa\xb0\xe6\x6d\x72\x35\x67\x29\xfc\xfa\xb3\x22\x76\x7b\x95\x3f\xab\x8f\x68\xca\xc8\xcb\x57\x64\x12\x65\x7a\xf9\x0c\xa1\xa9\xfa\x84\x96\xed\xa8\x7e\xb6\xd7\xd9\xec\xc3\xb6\x6e\x87\x87\xe4\xe7\xc5\x02\x1b\xfc\xfa\xab\x4a\x83\x3f\xa9\xc2\x0d\xcb\xc9\xea\xa8\x1a\x8a\x5a\x1c\x5c\xad\x72\x5c\xfe\xae\x6a\x13\x96\x0e\xf6\xce\x4c\x56\x40\xd4\xb8\xa0\xb7\x7c\x12\x9a\xa9\x3d\x77\x97\xfc\xe7\xb3\xf3\xf3\xf0\xff\x7d\xbe\x8b\xff\xf9\xf7\x7f\x55\xff\x6d\x7e\xbe\x29\xa7\xb4\xc9\x5d\xfb\x2d\x4d\x53\xba\xaa\xbf\x54\x42\x80\xf1\x91\x48\x5d\x42\xab\xc2\x5f\x6f\x8b\x92\x46\x20\x42\x9c\x3d\xd2\x5f\xc9\x90\x24\x15\x99\x08\x44\x6c\xb4\x14\xac\xda\x49\x19\x2d\x27\x41\x5d\x79\xf9\x87\xc6\xa5\x56\x90\xb8\x1a\x2d\xf2\xc5\x2e\x79\xf5\xed\xb7\x5f\x7f\xeb\x78\x1f\x71\x7c\xff\x72\x43\x81\x19\x8b\xd9\x19\x5b\xb2\x34\xca\x56\x67\x41\xca\x58\x5d\xa7\x6b\x0c\xfb\xe9\xdb\xfa\x17\x66\xf8\xb1\x98\x11\xa9\xdf\x10\x3a\x11\x4b\xa6\x53\x22\x62\x31\x73\x66\x7c\x2a\xce\x91\x0c\x63\xdc\x55\x05\x98\x38\x63\x6d\x1b\xe4\xe8\xf8\xf5\x89\x6b\x8b\xe8\x9a\x7e\xb5\xf5\x8c\xc5\xb1\x08\xd9\x3b\x26\xe7\x98\xa4\xd3\xbc\x36\xad\x3e\xaa\x63\xd7\x57\x44\xb2\x4c\xaa\x19\x05\xbf\xdd\x34\x8f\x63\x4c\xd8\xce\x04\x71\x5d\xb4\xa6\x1e\x35\xf1\x0b\x26\xe7\x8a\x28\x98\x9d\x13\xda\x03\x52\xc6\x6c\xfb\x80\x26\x42\xc4\x8c\x36\x74\xdf\x24\x65\xd3\xe8\x7a\x2f\x54\x3a\x6e\x24\xd9\x82\x35\xc3\x2a\x1b\x03\x1a\x39\xbe\x29\x77\x10\xb8\x7a\x03\x4a\x10\x6a\x17\x71\x8d\xa8\x4b\xad\x20\xfd\xf7\x31\x47\x87\x4a\x3f\xb5\xac\x76\xc3\xda\x89\xdc\x02\xc0\xe4\x99\x80\x3b\x70\x1a\x31\xe7\xb5\xbd\x86\x78\x6b\x36\xb5\x20\x0a\x5d\xba\x8f\x63\x08\xaa\x0d\x68\x1a\xd9\xba\xac\xd9\xac\xf0\x09\x2b\xc7\x51\x4f\x47\x29\x9f\xf5\xbb\x5c\xb7\x16\xe3\xea\x99\xa5\xcb\x68\x3c\x1f\xa3\xcd\xb0\x08\x98\xb7\xdc\x50\x40\x45\x69\x17\xf9\x34\x4e\x19\x0d\x57\xda\x66\x0b\x49\xc4\xc9\xcf\x4a\xfb\x94\x43\xab\x11\xd8\x3d\x7b\x29\x1d\x04\x6d\xb7\xce\xbd\xb7\x63\x8b\xed\xdc\x9a\x3a\xf6\xde\xae\x2d\xb6\xbd\xce\xee\xbd\xb7\x73\x8b\xed\xe8\x68\xe7\xde\xdb\xbd\xc3\xf6\xa8\xb5\xff\xd6\xdb\xbe\x50\xf1\x59\xcf\x97\x9d\x3b\x27\xb9\xcd\xb6\xab\x4f\x80\x4c\xb4\xc3\x68\xad\x7c\x3b\xab\x7f\x00\xc4\x80\x98\x2f\xb5\x4a\x11\xbc\x1b\x0d\x51\x5c\xad\xba\x05\xa7\x84\xd3\xc9\x8d\xa6\x16\x1d\xbc\x0d\x56\xe7\xb4\x94\x31\xdb\x26\x4c\x0c\x4e\x18\x8a\x85\xae\x1a\x75\x33\x2a\x76\xa2\x40\x0e\x81\xd4\x78\xbe\xaa\x34\xa7\x2f\x11\xce\xe6\x6c\x71\x73\xd1\x5a\xa7\x05\x00\x9a\x5b\x76\xba\xb2\xfd\x23\x3e\x8b\x71\x64\x57\x4a\x5a\x9a\xa2\xee\x79\x2e\x49\x78\x0f\x22\xf5\xde\x54\x37\x3d\xc3\x87\xd7\xe8\xd4\xe9\xcf\x44\xd6\x17\x6e\x2e\x12\xa9\x95\x55\xed\xea\xb3\xae\x88\x98\x9a\xd4\xdc\x0e\xed\x4c\xec\x7a\x81\xe2\x2e\x6b\x88\x35\xac\x5f\x68\x8d\x4f\xb9\x95\x90\x08\xac\xfc\x15\xf4\x4e\xb3\x8c\xe0\x4c\x1b\xff\x92\xe9\x8e\xde\x9a\x83\xca\xde\xad\x65\x21\xf7\xec\x5a\xe3\xff\x24\x99\xc8\xfd\x59\xf3\x57\xc5\x6a\xd5\x24\x08\x99\x89\x14\xb2\x36\xf0\x27\x84\xd7\x44\xa7\x79\x10\xb0\x24\x63\xe1\x71\xc3\x0b\x5d\x26\xa0\x1a\xaf\xb2\xf9\x25\x10\x3c\xc4\x40\xd5\x5d\xf2\x37\x38\xe8\x80\x23\xb9\xf0\x83\x71\x17\xc3\xaf\xe0\xe5\xff\xc4\x5d\xfd\xfd\xee\x98\xba\x91\x87\xbf\xbc\x42\xaa\xe2\xd8\x57\x3f\x3b\xfd\xf9\xdd\xb7\x4b\xdd\x9f\xf7\xde\xbb\xd9\xbd\x9b\xdd\x9e\x02\xef\x66\x7f\x48\x37\xbb\x12\x07\x4d\xef\xba\x56\xfa\x02\xeb\x98\xcc\x14\x2e\x66\xef\xee\x5d\xec\xe3\x39\x2b\xad\x00\xe3\xda\x57\xe2\xc7\xb1\x83\xde\xc6\x4b\x7e\xc9\x58\x72\x92\x46\xb3\x88\xd3\xf8\x98\x5d\x67\x3f\x8a\x7a\x5e\x47\xa3\x6b\x27\x89\x09\xce\x51\x1f\x43\xc7\x84\xae\x81\x70\x76\x9d\xcd\x45\x82\x39\x71\xca\x3a\xe2\xda\xeb\xbd\xce\xe9\x03\x34\x25\x8a\xa8\x8a\xc7\x33\x58\x24\x26\x80\xc9\x76\x0e\xc0\x8c\x00\xe2\x16\x0b\xd5\x27\xae\x7a\x55\x2d\xb2\x70\xcf\xe4\xa8\x97\x93\xf3\x2d\xd5\x39\xa2\x7a\xa7\xfa\xfd\xc7\xf3\x2d\x08\x2e\x62\x34\x54\xe4\xb5\xde\x4a\x16\x4f\xff\x78\xbe\xf5\x4c\x1f\x6a\x3c\x77\x35\x81\x8a\x7a\xc1\x1b\x64\x92\x52\x1e\xcc\xcd\x3c\x1d\xab\xa6\x05\x27\xe7\x5b\x93\x28\x0d\x87\xc1\x74\x76\xbe\xe5\x98\xb7\x4e\x4f\x0f\x40\xfc\xf6\x60\x12\x18\xa6\xda\x6e\x0a\x20\x16\x23\x5f\xb4\x89\xa2\x71\x05\x95\x51\x0d\x62\x86\x3a\x5d\x3b\x91\x04\xee\x52\xdf\x2a\xad\x12\xa5\x0a\xf0\x9b\x32\x7c\xe0\x5f\x11\x86\xa0\x49\x96\x6d\xd7\xf6\x0f\x49\xa8\xab\x4e\x0c\x58\x85\x5a\xb6\x49\x34\x64\x43\x42\xe1\x1f\xd0\x09\xf8\x0b\xad\x1e\xc2\x96\x2c\x5d\x15\x00\x88\x55\x1c\x99\x56\xba\xb5\xbb\xfc\x1a\xd0\x6d\x2d\xe4\x2b\x90\xdb\x8c\x0f\x09\xe0\x9f\xb1\x77\x7a\x9f\x9b\xd3\x25\x2b\x69\x11\xf1\xd9\x90\x28\x6b\xdd\x09\x49\x67\x88\xa4\x09\xa4\xd9\x00\x57\x82\x39\x7b\x60\x8b\x24\x5b\x6d\x38\x24\xd5\xf2\xd1\xa8\x0f\x2f\x58\x38\x28\x96\xc4\xd0\xb8\xd2\xfa\x3c\x8e\x13\x01\x5f\xa8\x89\x11\xa9\x93\x17\xf4\x11\x5e\x26\xf0\x73\x35\x45\xc0\x05\xe0\xd4\xe6\xc5\xc1\x1f\x9c\xe9\x6c\x1b\x7f\x4e\xe9\xf7\xfa\xf9\x6f\x18\x83\x79\x34\x5a\xbe\xc2\x30\xcc\xbf\xef\xaa\x4f\x9d\x27\x16\x22\x25\x3f\x17\xc5\xbf\xc1\xe2\xbb\xf8\x03\x74\x0f\x7e\x00\x7f\x0b\x51\x05\xa0\x1f\x95\x01\x58\x1d\x32\xdc\xe9\x94\x35\x70\x68\xa7\xe7\x11\x08\xc5\x43\x52\x1c\x63\x4e\x58\x2c\xf8\x4c\xa2\x20\xb2\xc1\xc1\x80\x3d\x4b\xf7\xbe\xab\x66\xc9\x00\x51\xa7\x7e\x4c\xab\x63\x4a\xaf\x98\x16\x40\x8a\xe3\x55\x77\x35\x55\x6f\xc0\x03\x37\x66\xeb\x94\x2d\x44\x56\x70\x77\x65\x56\x81\x99\x9d\xba\x07\x41\xa1\x50\x30\xf3\x08\xb8\xb0\x4a\x36\xe0\x6d\x59\x63\x6e\x3c\x26\xab\x22\x9e\x55\x07\xa2\x84\xcc\x84\x65\x57\x4c\xc7\xdc\x42\xd8\x1e\x2e\x7f\x55\x7d\x21\xde\xed\x7e\x6f\x2b\x4a\x16\xfb\x80\x7b\x86\x81\x43\x8a\x16\xa2\x29\x99\x08\x25\x5c\x78\x28\x71\x1d\xab\xf5\xf8\xc3\x9b\x91\xda\xe2\x87\xaa\xe8\x9e\x5e\x2b\xa5\x5b\xa7\x8d\x73\xb0\xee\x57\xfd\xeb\x7e\xd5\xa8\x1b\x50\xe4\x9c\x1d\xd7\xc3\x2c\xcf\xce\x03\x01\x27\xc7\x46\xa5\xb3\xc8\xf0\xfb\x6f\xff\x2d\x2b\x4d\x99\xa9\x70\xf6\x5c\x4f\xbf\x16\xc3\xe6\x8c\x1e\x1c\x08\x34\xb3\x16\xcc\x46\xbc\x68\xf0\x44\x1b\x19\xfe\x46\xb3\xa9\xff\x8e\xe2\xcb\x1b\xd7\x8f\x69\x5c\x6f\x78\x59\xf1\x0d\x6c\xec\xe6\x5d\xc4\x96\xa5\x6d\xbf\x74\xd8\xdb\x1b\x5d\x56\xec\x8d\x6f\x6f\x7c\x7b\xe3\xfb\x73\x33\xbe\x6d\x09\xd1\xd3\x04\x6f\x4a\x9c\xf2\xd9\xdc\x2e\x6f\x71\x31\x77\xe9\x64\x00\x74\xbb\x3e\x9e\xe0\x00\x8b\x91\x88\x87\x6a\x04\xc6\xc0\x00\xce\x01\xd9\x56\xc0\x79\x2b\xbe\x9d\x30\x80\x66\xc5\x6f\x9c\xde\x72\xc8\xf5\x42\xab\xc2\xe6\xf3\x29\x1e\xc3\x26\x34\x8b\x20\x84\x7e\x85\xba\xab\x50\x1b\x07\x31\xf7\xd0\xb4\x9a\x7f\x8b\x48\x66\xf4\x92\xf1\x78\x45\x32\xb5\x9b\x68\xc6\x86\x56\x68\xd9\xca\x0d\x8c\xb1\x0d\x89\x0a\xa8\x98\x1b\x7d\xd3\xaa\x90\xa8\x29\xad\xff\xa6\x09\x5b\xff\xb9\x19\xc2\x31\x70\xe1\x73\x7a\xb5\xe5\x41\xd5\x96\x9b\xe4\xdd\x6f\xae\xba\xb4\xa5\xd5\x97\xfa\x4b\xb3\x44\x53\x89\xb9\x61\xf2\xfd\x03\x25\x02\x34\x47\x50\x4b\x05\xd0\xe7\xd0\x85\x3f\xcb\xea\xa4\xcf\x02\xf0\x1a\x92\xd7\x90\x1e\x5b\x43\x6a\xae\xe0\xae\x3c\x00\xfc\x74\xe2\xd8\x5f\xad\xd5\xbe\x81\x72\x04\x22\xd4\xbd\xc6\x9b\x3d\xb5\x0b\x9b\x80\x50\xbd\xc8\x55\xdf\xb4\x5b\x5a\x2b\x41\x45\x6f\x5a\xfc\x4f\x69\xce\xb9\xf3\x60\xbf\x4b\x89\xd0\x55\xbe\x79\x7f\x74\xb0\xb6\xb7\x65\x51\xd3\x57\xf8\x5b\xfb\x4f\x5b\x3b\xd7\xa3\xf9\xb1\x2a\xd2\xaf\x79\x55\xd4\x4c\x9a\x16\x8b\x00\xaf\x7e\x9b\x5e\x14\xd9\xbb\xa7\x8c\x86\xab\xb5\x5a\x6a\xa5\x74\x81\x20\xa0\xef\x86\x90\xd1\x8c\x83\x02\xce\xb3\xb2\x5e\xb2\x88\x66\xb5\xab\x70\x2b\x7d\x13\xf0\x19\x8d\x75\xd8\x3f\x5e\x68\x28\x89\xcc\x83\xb9\xd2\x29\x11\xdc\x1a\x5d\x51\x85\xfb\xf8\x8a\x46\x6a\x95\x4f\x45\x8b\x8f\x2f\x08\x98\x2c\xb2\xf1\xdb\xa0\xc5\xc9\xba\xb3\x95\x25\x4d\x23\xca\xd7\x86\x75\x7f\xc0\x62\x24\x64\x41\x4c\x53\x26\x75\xf8\x98\xfe\xda\xe2\x65\x2b\xe6\x33\xc8\xa2\x65\x7b\x7f\x5c\x33\xe5\x95\xca\x07\x55\x2a\x6f\x02\xb0\xb6\xb9\x52\xd9\x86\x9f\x56\x2a\x95\xcd\x12\x4d\xa5\xf2\x86\x28\x6b\x0f\xa4\x54\xe2\x02\xde\x28\xc1\xb4\x7e\xed\x80\x57\x28\xbd\x42\x69\x4f\x81\x57\x28\x1f\x4c\xa1\x6c\xca\x9f\x75\x89\xa5\xb8\xde\x6f\x9a\x5a\x7a\x25\xcf\xd2\xe0\x40\x66\xfb\x73\x16\x5c\xae\xcd\xc1\x39\x63\x19\x41\x46\x19\x58\x18\x38\x83\x40\x7d\x4c\x04\x27\x7b\x3f\x9d\x91\xc3\xfd\xaf\x8a\xb8\x06\x39\x24\x7b\x7a\xcf\x73\xe9\x0d\xcb\x6a\x02\x20\xc6\xcb\x9e\x6f\x1d\x88\x63\x91\xcd\xe1\x52\x9d\x6d\x72\xbe\xa5\x53\x7d\xce\xb7\x88\x48\xd5\x5b\x8d\x4e\x74\xbe\xb5\x26\x7d\xb5\xa8\xc6\x95\xce\xc3\x78\xee\xc2\x46\x1e\x94\x5f\xb9\x5e\x62\x57\x9c\x9f\x61\xaf\x36\xd3\x05\x27\xc9\x74\x5f\x70\xce\x82\x4c\xed\x8b\x6f\x05\x0d\x7f\xa0\x31\xe5\x41\xc4\x67\x7d\xb3\xa2\x7e\x18\xbd\x5e\x53\x05\x86\xfb\x44\x9c\xfc\x30\x7a\x0d\x98\xa9\xce\x43\x49\xbd\xa5\x97\xb9\x54\xc8\x56\xd5\x6b\x37\xb1\x21\x35\xe3\x70\x43\x59\x2c\x68\x48\x26\xd0\x1c\x4b\xdb\x0f\x52\xf5\x67\x8e\x6f\xc0\x92\xd0\x7e\xc2\xe2\x58\x1c\xb0\xa1\x32\x01\x6a\xdb\x04\xee\x5a\x77\x55\x9a\xd6\xaf\x04\xd3\xb1\xe5\x52\x27\xd1\x92\x68\x91\xa4\x62\xa9\xf7\x9e\x84\xa5\x60\xa0\xf1\x00\x58\x2c\x11\xe1\x20\x13\x83\xae\x84\x83\x62\xa8\x12\x07\x86\x61\xe0\x29\xa3\x12\x63\xac\x34\x46\x16\xb4\x84\xf1\xe7\x21\x9b\xe4\x98\x50\x9c\xe4\x69\x22\xa4\x62\xfe\x6e\x06\xbd\x51\xaa\xd9\x24\x99\x2a\xa3\xe0\x68\x4a\x03\x36\xd2\xa9\x9a\x3d\x98\xa4\xfe\x0d\xee\x0c\x29\x03\x7d\x85\xb0\xe2\x9e\x48\xd4\xfc\x0d\x37\xb8\x7a\x8d\xda\x76\x01\xc8\x65\x2c\x06\xbd\x23\xd3\x2c\x53\x13\xa3\x78\xad\xb8\x83\x0d\xf0\xa2\x88\x48\x43\x88\x5e\x71\x92\x9b\x66\xc1\xdc\x42\xd8\xda\x29\x36\x12\x83\xa2\xa5\x1d\xec\x9c\xb1\x50\x22\x30\x17\x7c\x61\x43\x83\xb9\xcd\x1d\x35\x1c\x93\x15\xa2\xaf\xb4\x2b\x1a\x9a\xc6\xe2\x4a\x12\xb1\x64\x69\x3d\x03\xa4\x47\xa5\x73\xca\x43\xc5\x00\x3c\x10\x0b\xd8\x4b\x4b\x7c\x30\x2e\x42\x96\x88\x34\x93\x3a\x70\x42\x73\x26\x0c\x4a\xe4\x99\x8c\xdc\x99\x89\xb6\x13\x80\x90\xa3\xc2\xfa\x52\x3b\x62\x39\xde\x62\x14\xd6\x14\x3c\xcb\x65\x4e\xe3\xd8\x99\xf1\xa3\x74\xca\x10\x7c\x05\xc3\xe1\xf0\xb9\x9d\xea\xf8\x9f\xcf\x18\x1f\xfe\xc7\xbf\x58\x36\x1f\xfe\xc7\xbf\xb2\x9c\xc7\x2f\xfe\xfd\xf9\xa6\xb9\x9c\x8a\x1d\x71\x29\xbc\xe7\xd6\xe5\x03\x7d\x38\xb2\xf9\xd9\x36\x89\xa6\x26\x27\x73\xdb\xf0\x15\xcb\x70\x0d\x5f\xaa\x95\x1e\x0f\x73\xab\xfc\xc5\x24\x99\x5e\x18\xb4\x3a\xd7\xd8\xe5\x4a\x06\x59\x6c\xaf\x57\xfb\x73\x08\x01\x12\x53\xc5\xac\x86\xbf\x18\x97\x3a\x9e\x91\x66\x95\xb2\xae\xda\x73\xa9\x54\xa0\x00\x55\x16\xb4\x81\x35\xab\x3d\x7d\x2a\x51\xdc\xd2\x04\x79\x40\x17\x8a\xb8\x54\xea\x2a\xc0\x14\x10\x71\xe5\x8c\x57\x6b\x2e\x1d\x35\xcd\x4c\xe7\x95\x94\x0d\xdc\x3a\x69\x75\x92\x4c\x37\xd8\x65\x0e\xcd\xb4\x94\x53\xa4\x67\x08\xb2\x64\x4c\x38\xa7\xea\xbd\x52\x87\xe0\x52\x4e\xe7\x41\x59\xd9\x6b\x80\xcd\xbf\x51\xb7\x75\x12\x8b\x4e\x8a\x79\xd7\x23\x26\x13\x86\xd0\xfc\xac\xb2\x2f\x96\x9b\xe0\x5c\x5c\xd9\x5b\x80\x6b\x18\xf6\x62\xae\x38\xeb\x33\x51\xae\xf8\x67\x10\x3d\x55\x8a\x02\x2b\xb1\xcc\x19\xbf\x4a\x53\xa6\xf6\x92\x2b\x9a\x86\x88\x13\xa9\x83\x8c\x8a\xcb\x38\x95\x5c\x98\x42\x6c\x5b\x26\xc8\xf9\xd6\x38\x87\x9b\x49\xb6\x30\xa8\x6d\x22\x32\x67\x70\x97\xd6\xb0\xf1\xf2\x4b\x26\x13\xc1\x65\x09\x67\x18\x49\x92\x41\x2d\xd8\x60\x2d\xb2\x09\xda\x73\xae\x2c\xd3\x85\x83\xb3\x53\xa5\xa6\xe1\x77\xd8\x8e\xab\xea\x49\x9e\xe9\x32\xd5\xf6\x5b\xfc\x8b\x10\x7f\x1c\x46\x29\x0b\xb2\x78\xe5\x8c\xb9\x52\x3d\xe3\xa6\x7d\x3d\x7f\x65\x11\xa7\x20\x84\x48\xb6\x24\x61\x34\x95\x76\x04\xf2\xd1\xc8\xa8\xd2\x11\x9f\xe1\x6d\x75\x22\x64\x7f\x34\xc6\x29\xa8\x27\x2d\xa1\xb4\x09\x4b\x17\x91\x94\xd1\x92\x91\xb7\x5f\x59\x7b\x55\xc9\xe3\x38\x43\x37\x90\xaa\x4a\xb5\x19\xa5\xe2\x7a\x65\x20\x56\xcf\x62\xc5\x52\x3d\x57\xec\x0f\xa3\xd7\xdd\x15\xb8\x19\xdf\xbd\xdf\x5b\x0a\xe1\x53\x49\xd8\x62\xc2\x42\xc5\x9e\x80\x23\x9a\xa8\x16\xb4\x63\x4b\x92\x6a\x53\x1a\x47\x73\x53\x37\xa0\x3d\xf8\x23\x7d\x2d\xe3\xbe\x2a\x98\x27\x1b\xc8\xab\x35\x55\x54\xe4\x18\xd2\xc2\x35\x78\x24\x8f\x25\xe7\x92\x54\xa0\x33\x31\x5e\x91\x40\xd5\x48\x72\x8c\xb5\xcf\x13\x99\xa5\x8c\x2e\x6c\x9d\xb4\xa4\xd0\xd3\xa7\xee\x48\x4e\x73\xeb\x64\x30\x57\xd6\xdd\x90\x90\x33\xdc\xf2\x75\xd2\x61\xd9\xc3\xa9\x4d\x6e\x1d\x23\xa8\x9d\xf0\xf7\xa5\x66\x16\x14\x7c\x17\xf1\xb3\x15\x0f\xf0\x52\xcd\x8d\x68\x5f\xf9\x72\xbb\x45\xd8\x66\x6e\xb3\x41\x03\x66\xc0\x35\xd8\x45\x5c\x2a\x7a\x05\x0a\xef\x4e\xb1\xd3\x94\x6e\xac\xa7\x16\x8b\xba\xaa\x2d\xc9\x38\x24\xe4\xad\xb8\x62\xa9\xb1\xa7\x67\x6a\x19\xa7\x2c\xcc\x03\xc4\x95\x18\xe4\x09\xb8\x8f\x78\xa0\x8a\xfe\x18\xcd\xe6\x45\x59\xb7\x94\x55\x5f\x1a\xf7\xdb\xe8\x3d\xc9\x25\x9d\x31\x32\x59\x91\x89\xd2\xdd\xf0\x06\x67\xb2\x10\x29\x8a\xf3\x8a\x94\x78\x29\x6f\x20\x21\xde\x8a\xd9\x5b\xb6\x64\x71\x9f\x19\x31\x65\x2b\x54\x07\x3c\x10\xc0\x2b\x2d\x40\xaa\x2c\xdd\xa3\x45\x16\x14\xa6\x64\x49\xfb\x05\x8a\xe3\x13\x63\xbf\x9f\x4c\xa7\x68\xb9\x1f\xf1\xa9\x50\x7f\xa1\xdd\xae\xec\x23\x65\xb4\xb7\xd9\x89\x70\x3f\xac\xda\x01\xd9\x22\xca\xb2\x72\x3b\x52\x8d\x65\x29\x0d\x18\x49\xa2\x84\x6d\x9b\xd3\x06\xa5\xcd\xe9\x9c\x08\x66\x6e\xda\x72\x55\xfb\x73\x16\x10\x76\xcd\x02\x45\x32\x34\xd2\x7e\xb6\x55\xa7\x93\xe9\xf4\xef\xc3\x0d\x89\x0f\xab\xf5\x08\x74\xb9\x5e\xba\xc7\x7e\xb5\x7c\x9b\xb1\x3d\x17\xe2\xd2\xd6\x75\x7f\xff\xed\xbf\x5b\x8e\x70\x92\x01\x4e\x5b\x4d\x7e\x28\x66\x43\x15\x53\xdf\x1c\x9e\xe3\x6d\xf2\x70\x70\x25\x12\x3d\xcb\x4e\x03\x4c\x7d\xaf\xe6\x69\xb2\x82\x2d\x92\x87\xcd\x1a\x26\x22\xcb\xc4\x62\x68\x94\x58\x7d\x2c\x27\xe9\xb4\x00\x1a\x73\x2a\x0a\x91\x32\xba\xa3\x8c\x24\x29\x5b\xc2\x49\x13\x6a\xb0\x10\x33\xad\xaa\xd7\x76\x11\x46\x58\x4d\x56\x09\x95\x52\xe7\xf5\xaf\x44\x4e\xe4\x55\x94\xb9\x43\xd6\x33\xa1\x7b\xaa\xe5\xc9\x84\x11\x89\x38\xca\xba\xbf\x02\x48\x8b\x4d\xe8\xfc\x15\x4d\x26\x3c\x00\x6b\x3b\xc9\x4a\x30\x25\x67\xb2\x52\x0a\x6a\x8c\x6e\xd2\x54\xe4\xb3\xb9\x61\x48\x6d\x4e\x42\xcd\xdb\xd8\xcc\x95\x86\x19\x70\xd5\x59\xb9\xba\xa6\x00\x3f\x2e\x47\x5a\xf2\x22\x52\x76\x53\x51\x50\x2c\xc4\x83\x34\x5a\x3a\x53\xd8\xba\xc3\xe5\x26\xf9\x4c\xdb\x62\x6f\xc5\xec\x20\x15\x00\x23\xdb\x5a\x4b\xcb\x7e\x01\xd5\xbc\x63\x0b\x91\xae\x46\xa9\x98\x46\x31\x73\x5c\x1c\xd4\xab\x2f\x67\xd1\x02\x70\xa0\xf7\x69\x1c\xbc\x49\x69\x32\xff\x91\xf2\xd9\xde\x34\xbb\xd9\xc8\x4c\x6d\x07\x86\x48\x37\xaf\x0d\x26\xc9\x68\x38\x63\xf1\xa3\x90\xd9\x1e\xd8\x07\x6b\xd7\xff\x41\xfb\xb7\xb6\x2c\x00\xa7\x82\x62\x69\xd9\xe2\x26\x29\x5c\x0c\xaa\xe8\x4c\x98\xa5\x43\x4b\x9f\x80\x7d\x29\x71\xe1\x4c\x8b\x32\xc9\xe2\x29\x79\x46\xa7\x2d\x07\xfa\x20\x1f\x74\xdd\xf3\x48\xdb\xdb\x45\x55\x0c\x95\x62\xe4\xdf\xe7\x43\xf2\xc3\xaa\x48\x5a\xd8\x77\xde\x96\x4a\x0a\x64\x8d\xd2\xd3\x02\x30\x1f\xf5\x5e\x4a\x57\x37\x41\xa6\x37\x19\x8c\xd8\xea\xd2\xef\xbf\xfd\xcf\xc1\xe9\xc9\xe8\xf7\xdf\xfe\x57\xdf\xb6\x5c\xc8\x8b\x2b\xaa\x13\x17\xe3\x58\x5c\x11\x29\x16\x8c\xe0\x65\x8f\x5d\x06\x07\xf4\xae\x7e\x9f\xf3\x36\xda\x38\x90\x9c\x44\x53\xba\x60\xda\xb8\x3b\x3d\x1c\xbf\x3f\x3d\x56\xb5\xea\xeb\x9d\xc9\x7b\x37\xb8\x88\x2e\x18\x61\xc7\x20\x1d\x65\x25\x72\xb0\xfb\xab\x52\xc9\x1e\xd6\xd1\xf1\xe8\xfd\x58\x8d\x0b\x44\xd5\x1f\x3b\xe4\x09\x08\x12\x23\x8b\x33\x23\x4b\xeb\xd2\x9e\x66\x58\x93\xce\x7b\xfa\xfd\xb7\xff\xc1\x6e\xfd\xfe\xdb\xff\x3a\x0d\x1a\x1a\x5c\xb2\x72\x5e\x1a\x1d\x22\x42\x4b\xf3\x39\x95\x10\x3d\x80\x41\xb4\x49\x2a\x4c\x04\x80\x99\x64\x57\xed\x6e\x96\x02\x02\x6a\x62\x82\x5d\xc6\x8b\x33\x6f\x00\x86\x47\x99\x6c\xba\xd6\x3a\x7f\x85\x8d\x4c\x80\xcf\x5d\x7d\x6a\xeb\x40\xb7\x9b\x42\x89\xc4\x8d\x65\x32\x5b\x46\x01\x3b\x15\x79\xa6\x14\x61\x00\x99\x5b\x9f\x29\x18\xc9\xca\x81\x29\x64\xe8\x96\x18\x75\x34\xd4\x3e\x01\xad\xa0\x2d\x58\xa8\x9b\x71\x6a\xa3\x90\xde\xbb\xad\x76\x31\xb3\x58\x81\x95\xcd\xf6\x73\x3a\x1e\x9d\x9e\x8c\x2f\x7e\x38\x39\x19\xa3\x56\x57\x5e\xbb\xd0\x6a\xaf\xb5\xe4\x2a\x5b\x63\x45\xf4\x6b\x9d\x64\xd5\x6b\xc0\x46\x8b\xc0\xd3\x47\x93\x26\xa9\xad\x73\xc1\x37\x19\x6c\x45\x32\x39\x2a\x8d\x64\xe5\x6e\x89\x98\xd1\xa5\x3e\x03\x75\xda\x09\xa0\x82\x41\x90\xcc\x5c\x08\xed\x2a\xa8\xd5\x98\xbb\x41\xc4\x3a\x19\x03\x77\xda\x7d\xc1\xb9\xd2\x69\x2f\x8f\xf8\x92\xc6\x51\xd8\x76\xfc\xd6\xb9\xe7\x1a\x6e\x3e\x05\x67\x73\xc4\x67\x70\x57\xf9\x86\xfb\x5a\xa3\x92\x76\x1b\xbb\xbb\x33\xda\xb9\x76\x2c\x42\x26\xdf\x46\x72\x6d\x18\xcf\xa1\xfd\xc1\xfe\xd1\xc1\xa9\xfa\xa8\x8a\xf3\xaa\x7e\x7d\x0a\x07\x9d\xa6\xf6\x01\x17\xe6\x36\xcb\x01\x24\x20\xb6\x9f\x50\x2c\xe8\xca\xcc\x17\x7a\xa1\x8a\xcd\x88\xf2\x22\x83\x98\x59\xce\x2f\xfd\xb6\x05\xea\x47\x1f\x63\x2a\x01\x1b\x94\x19\xdc\x9b\x21\xfa\x74\x63\xe2\x74\x00\x27\x4d\x69\x14\x2b\x45\xfb\x88\x4f\x44\xce\x43\xa5\x3e\x8c\x44\xba\x1e\x63\xf0\xe9\xeb\x96\x0f\x91\xce\x60\x35\x0d\x42\x16\x47\x8b\x48\x8d\x4d\xd3\xdd\xd5\xf5\xf7\x07\xa3\x9d\xf1\xfe\x48\xfb\x32\x61\x5f\xb1\xbc\x22\xb8\xdb\xba\x8e\x42\x60\x67\xaf\xdd\x05\x54\x7d\x04\x27\x51\x9a\x32\x99\x30\xf0\xab\x18\x53\xd4\xdc\x73\x5c\x6c\x12\x46\x5c\xe4\x92\x4d\x73\x58\x98\x74\x29\x22\xe7\x3e\x43\x83\x00\xb2\xee\x61\xfb\x08\x72\x84\x2d\x10\xd3\x29\xa1\xd8\x1f\x50\x31\x54\x6f\xd3\x94\x05\x59\xfd\x26\x82\xc3\xb6\x1c\x59\x91\xda\xf9\xd4\x25\xb2\x21\x95\x24\x0b\x12\x2b\x3d\x7a\x80\x19\xa3\xfa\xb2\x1b\x91\x92\x3c\x6c\x7d\xed\xdc\x7c\x5e\x0b\xbc\xb7\x7a\x50\x49\x1d\xd9\xd6\x28\x53\xe5\x9e\x60\x92\x45\x4b\x00\xb4\x28\x33\x22\xb0\x2d\xfa\xef\xf7\xdf\xfe\x27\x0b\x92\xdf\x7f\xfb\xdf\x21\x19\x97\xe7\x22\x14\x94\x09\x60\x12\xa4\x11\x4c\xf4\x76\xe1\x24\xc5\xa3\x7a\x2e\x5a\x9c\xfa\x63\x0b\x6d\x1a\x8b\x02\x4b\x48\x22\xe5\xdc\x1c\x8d\xa8\x65\x77\xf0\xe3\xfe\xa8\x72\x70\x11\x24\xbb\x5f\x7d\xe5\x3c\x91\x56\x34\x7b\xf5\xdd\x36\x14\x79\xf9\x87\xef\xf1\x8f\xaf\xbe\x2e\xff\xfa\xee\x05\xfe\xf5\xea\x9b\x6f\xbe\xd6\x7f\xbd\x7a\xf5\xaa\xf8\xeb\x0f\xae\x3d\xbb\x37\x14\xa6\xc8\x84\x01\x8e\x0d\xc4\x62\xa2\x23\x1d\xe0\xf0\xb8\xd8\x90\x79\x08\x54\xda\x6e\x75\xbc\x93\x22\xb6\xa1\xcc\x37\x76\x72\xd6\x3a\xa4\xad\xc4\x8d\x76\xab\xe7\xb4\x6b\x73\x2e\x1a\x68\xd3\x41\xec\x3a\xda\xd1\xba\x5a\xb2\x79\xf0\x19\xb4\x42\x16\x0c\x8a\x96\xdb\xc5\xe1\x0d\x70\xe4\x8c\x38\x3c\xc9\xb3\x1b\xca\xc3\xc6\x97\xed\x02\xd1\x29\xb3\xa6\xbd\x04\xa2\xc8\xb3\x99\xb0\x05\x22\x28\xaa\x6a\x79\x75\x69\xc7\x78\xea\xb7\xb9\x48\x6c\x73\x92\x28\x29\x79\x3b\x91\xe8\xaa\x59\x49\xc9\xcf\x5f\x24\x0a\xcd\x27\x77\x23\x13\x05\xd8\xf6\x2c\x0b\x42\xf0\x7e\x15\x80\xaa\x9a\x87\x84\x3e\x7e\xb6\xb8\xc9\x29\xa9\x94\xe1\xaf\xc6\x38\x63\x99\x9a\x4a\x98\x46\x34\x61\xb3\x20\xac\x44\x32\x28\x2e\x54\x13\xad\xc4\x2e\xca\xdf\xe3\xb3\x35\xd6\xce\x8d\xc5\x6d\xab\x10\xff\xf6\xeb\x6d\x14\xe6\x5e\x22\x57\x1a\xf8\xac\x24\x32\xa3\x59\x9e\xb2\x03\x96\xb1\x20\x3b\x59\xb2\x34\x8d\xd6\xfb\xc5\x5f\xbb\x3e\xb2\x6f\x49\x14\xe6\x37\xb8\x0f\x0a\x4b\xbb\x39\x25\x63\xda\x0d\xf4\x41\x5f\x06\x91\xda\xd2\x28\xe2\x46\xb6\x13\xc9\x12\x9a\xd2\x42\xd9\x05\xb1\xc7\x9d\x1e\x2c\xb8\x2d\x51\x6e\x13\x76\x4d\x17\x49\xcc\xfe\x48\xce\xb7\xce\x8e\xf7\xc6\xaf\xf3\x38\x5e\x9d\x52\x1e\x8a\xc5\x9f\xe0\x72\xae\x77\x7b\x67\xff\xc7\xfe\x11\xa2\x1a\xb6\x4f\x19\x84\xe9\x9f\xe5\x09\x2c\xee\xb7\x22\xb8\xfc\x93\x13\x6d\x8a\x94\x78\x5a\x70\x4c\x02\x9f\x9f\x6f\xe1\x36\x32\x15\x18\x93\x5b\x8c\x7e\x1b\xd1\x5c\x54\x51\xa1\x4f\x49\xda\x4f\xa4\x00\x29\x37\xcf\xc4\x00\xe9\xb3\xb1\xad\x3a\x63\x9c\xa5\x51\xf0\x97\x83\x51\xdf\x73\xd7\x37\xf5\x2f\xf4\x01\xa6\x24\xfa\x0d\xf9\xcb\xc1\x88\x48\x51\x5e\x02\x46\xd3\xb0\x3d\xc4\x2a\x14\xfc\xe9\xd3\x8c\x48\x24\x22\x7c\x2b\xa6\x53\xf0\xe4\x88\x94\x84\xe0\xee\x06\xef\x3f\x62\x6a\x2b\xb9\xfc\x97\x83\x11\xee\x8b\x4e\xff\xa1\x3e\x37\x65\x8a\x17\x18\x0f\x59\x58\x1e\x4f\x28\xa9\x0a\xad\x25\xa9\x58\x2a\x9e\x9b\xb0\x0c\xdc\x48\x65\xe8\x60\x4b\x3f\x79\xe1\xc0\x1b\xde\x3a\xb8\x65\xce\x68\x9c\x75\x40\xe2\xf7\xf8\x58\xa9\x34\x1b\xfa\x00\xf0\xc3\x96\x2b\x15\x3a\x85\x59\x11\x83\x76\x78\x1d\xc4\x79\x8f\xa3\xb0\xa3\xda\x07\xb6\xde\x55\x5b\x9b\x62\xda\x27\x0c\xaf\x12\x7d\xc8\x74\xa5\xe0\xd1\x5a\x08\x1e\x65\xa2\xc8\xc2\xaf\x5a\xa2\xc3\xb6\x53\xc8\xea\x8e\x5d\x89\x07\xd3\x21\xb1\x33\x2e\xd4\x4f\xe5\x39\xff\xd3\xa7\xe4\x68\xf4\xe1\x8c\x84\xf9\x62\xe1\x0c\xc1\x2b\x86\xb1\x6d\xa2\x27\xb5\x8c\x33\x79\x08\xf1\x8a\x4c\x56\x95\xa3\xe9\xaa\x3b\xdb\xa9\x2e\xea\xb1\x2e\xf2\x38\x8b\x92\xd8\xbe\x23\x15\xef\xb8\xc1\xfb\x51\x0b\x58\x60\x9d\xea\x00\xe7\xbe\x2d\x6a\xad\x5e\x68\xd2\x11\x17\x2a\x11\x03\xde\xf1\x02\xfa\x09\xbb\xea\x55\x4a\x93\xb6\xe3\x05\x24\x27\x88\xdb\xa7\x4f\x77\x9e\x3e\xc5\xea\xb4\x6c\x25\x73\x74\xc5\xe9\x83\xf8\xa7\x4f\x77\xfe\x53\xd1\x62\x67\x7b\xc9\xb2\xf9\xcb\xa7\x8e\x45\x44\x50\x3e\x1a\x1a\xa0\xf5\x5a\x84\x43\xc2\x6c\x4d\xd8\x2c\xe2\xa6\x45\x55\xdd\xd3\xa7\x08\x1a\x15\x4b\xd1\xe6\xf4\x2b\x49\xf8\xf4\xa9\x6e\xdb\x5e\xd3\x30\x41\x51\xb2\x94\x2f\x36\xf5\x07\x17\x15\xe3\x25\x0b\xfd\x97\x09\x96\x37\x6e\xd2\xea\x14\xeb\x6b\x27\x74\xb2\x9e\x81\x97\x77\xbb\xc4\x9a\x47\x2f\x10\x9a\x0a\xda\xae\xb2\x05\xf2\x48\xce\xd1\xef\xbc\x28\xad\x14\xc2\x2a\xd7\x3b\xb7\x0c\x49\x0e\xc9\xb1\xc8\x40\x46\x10\xc6\x97\x51\x2a\x38\x5e\x66\x81\x07\xb0\x20\x21\x27\x6a\x2f\x5a\xb0\x8c\xc6\xdb\x1a\x99\x32\x98\x33\x99\xa5\x34\x13\xa9\xb3\xc3\x81\x75\x2f\xae\x12\x11\x89\xd2\xc8\xd2\x88\x66\x2c\x5e\x55\x79\x47\xe4\x36\xf6\x37\x6a\xb9\x22\xb8\x6c\x49\x5d\x55\x62\x4c\xe7\x6c\xe9\xf3\x1d\x46\x7e\xff\xed\xbf\x02\x1a\x47\xbf\xff\xf6\xdf\x76\x3e\x90\xaa\xf7\x24\x61\xfc\x2c\xa3\xc1\xa5\xfd\xa1\x73\xe5\x98\x28\xd5\xdf\x7f\xfb\xaf\x8c\x26\x45\x55\x36\xf7\xa8\x36\x6e\xcc\x37\xa7\x6c\x9a\x32\x39\x07\xbe\x58\xd2\xb5\x87\x09\x47\x2d\xdf\x15\x17\xe1\x40\x44\x0e\xa1\x99\x16\x48\xad\xc6\x46\xca\x64\x40\xb9\xd4\x60\x70\xf6\x1a\x13\x64\xc9\xd2\x68\xba\xd2\xd1\xac\x80\xcb\x81\x57\x00\xe3\x37\xfa\x9a\x0b\xa7\x8c\xd5\x21\xbb\x4a\xe8\x49\x8d\x2a\x5a\xb0\xf7\x12\x53\x53\x5f\x6c\xa8\xac\x44\x49\xd4\x11\x1e\xd6\xb9\x6f\xaa\x4f\xdf\x8d\xdf\xaf\x5f\x94\xa3\xa3\xd1\xbb\xf1\x7b\x43\x43\x7d\x59\xb3\xe2\x22\xc1\x2d\x5f\xb2\x3e\xa8\x18\x92\x33\xe6\x8e\x07\xd0\xac\xad\x46\xad\xea\xb0\xc2\x80\xbe\xf9\xa6\x43\xb2\xb4\x6d\xc1\x89\x62\xbe\x0d\xf9\xe3\xe9\x91\xeb\xab\x4e\xee\x20\x29\xc3\x44\x1f\xb7\xae\x19\x5b\xd1\x28\xc0\x0b\x75\x7b\x96\x0b\x2d\x10\xf4\xc1\x1c\x1c\x21\xda\x6e\x09\x57\xb5\x93\x54\x5c\x32\xde\x08\x19\x01\x30\x5a\xe0\x92\x4a\x2e\x86\x69\x3f\xc5\x61\xad\xc9\x0f\xfa\xfe\xc5\xc6\x51\x57\xa6\x05\x7d\x1d\xec\xda\x55\x58\x2d\x5e\x58\x24\x26\x65\x79\xa2\x7f\x57\x9a\x8e\xe9\xbb\xda\xd7\x9c\x94\xc0\xab\xd5\x87\x15\xb7\x02\x1c\x69\xcd\xa8\xf3\x08\xb3\xcf\x38\x5e\x47\x71\xc6\xd2\xbd\x38\x16\x57\xad\xa1\x0c\x7d\xea\x51\xe6\xcd\xeb\xf6\x98\x8f\x3a\xeb\x35\x3f\x2a\x6f\xa8\x0a\x0a\xb3\xde\x3e\x1a\x77\x51\x04\x40\x9a\xa6\x51\xcc\x86\xe4\xaf\x4a\x05\xa1\x2b\x48\x0f\xc1\x23\x3b\xca\x67\x7a\xeb\xd0\x0e\xa2\xa2\xb4\xb1\x02\x22\x77\x88\x41\x66\xf9\x65\x8a\xde\x3c\x9b\x5a\x1b\x8e\x7d\xa0\xbf\xa0\x49\xc2\x30\xdf\x88\x67\x02\x17\x4a\x5b\xd8\x56\x71\x91\xb1\x5a\x58\x94\x84\xd1\x74\xca\x52\xb8\x4b\x89\x66\xf3\x4a\x62\xc6\x4e\x9a\xf3\x9d\x6b\x6d\x53\xa8\x8e\xdf\x94\x4f\x15\x89\x47\xa9\x98\xb0\x0d\xe4\x42\xcb\x97\x66\x86\x20\x1c\xb3\xe6\xee\x74\x6a\x1c\x08\x19\x80\x61\x9b\x34\xcb\x94\xdd\x8a\x48\xae\x01\x38\x2e\xaa\x91\x0f\x30\x3b\xd1\x54\xa7\x53\x71\xe1\xd4\x38\xe8\x92\x46\xb1\x2a\x3f\xac\x06\x6e\x2e\xe8\xa5\x89\xbb\x84\xf0\x4a\x1d\x63\x1e\x2d\xb5\x21\x60\xa6\xbf\xc5\x24\x54\xf3\x02\xc6\xe0\x36\x44\xa9\x2b\x2b\x12\xaa\xd9\x1f\xbd\xb7\x27\xe5\xdb\x17\x8b\x1b\xcb\x0b\x45\xcd\x71\xb4\x60\x22\x5f\x7b\x2c\x5a\x99\x01\xfd\x4d\x17\xed\x81\xd0\xae\x91\x99\x7c\xba\x0a\x8d\x21\x16\xf3\xc5\xb6\x25\x35\xc1\xe5\x89\x1e\xcd\x48\x96\x6e\x86\x56\x85\x00\x34\x7d\x39\xa7\xce\x19\x84\xf5\x85\x01\x3c\x71\x5c\x15\xf7\x1d\x28\x67\xa8\x91\xab\x49\x34\x33\x35\x44\x00\x5c\x1d\xe0\x5c\xe6\x22\x2a\xbb\x9c\x96\x0b\x69\xbb\x15\x22\xb7\x08\xdb\x57\x35\xaa\xe5\xa4\x93\x09\x44\xba\x32\xa2\xc5\xca\x33\x5c\xd4\xef\x1e\xb7\xb0\x86\x9d\xee\xff\xd4\x94\x98\x9a\xe4\x5b\x7d\x45\xb9\xc5\x2f\x2f\x64\xa1\xe7\xdc\x94\x6d\xde\x51\x65\xb9\xdd\x5e\x3c\xbf\xa3\xe9\xe5\x3b\x2a\xd7\xe7\xf7\x1e\xd5\x3e\x30\x8c\xb7\x50\x7f\xdb\xe6\x36\x60\x01\x4b\x25\x2d\x5d\xf4\x39\x1a\x8d\x91\x29\x54\x3d\x64\xa2\x64\xaa\xb2\x29\x86\x26\xba\x7d\xa2\x66\x51\x5f\xb6\x35\x67\xd7\x34\x64\x41\xb4\xa0\xb1\x01\xda\x55\x0c\xe4\xe4\x93\x8c\xc4\x8c\xca\x8c\x7c\x87\x75\x02\x08\x32\xd7\x69\xc3\xb8\xa3\x06\x31\x95\x73\x13\x42\xb6\xd2\x1c\xb8\x30\xbd\x70\x5b\x04\x26\xd4\x04\x8e\x58\x56\x32\x63\x8b\xca\x34\x5e\x4f\xa7\x2f\xe0\xb9\xeb\x9b\x70\xcd\xec\x1c\xef\x8d\x4f\xf4\x41\x51\xa1\xb6\xe3\xc6\x7c\xc3\xe9\x1e\x09\x99\xfd\x94\x46\x19\x83\xa8\x92\x8d\x45\xbf\xfb\xf3\xba\x6e\x08\x31\x56\xad\x52\x42\xe9\x76\xa1\x9a\x19\x4a\xae\x54\x55\xcd\x80\xfd\x02\x61\x26\x98\xb3\x10\x43\xd7\x38\x61\xd7\x59\x4a\x49\xca\xdc\xe1\x63\x13\x34\xc4\x8a\x4c\x52\x82\x79\xe7\x90\x14\x09\x8d\x5c\x51\xdc\xda\x83\x58\x4c\x26\x2c\x35\xd0\xea\x15\x39\xd4\x0e\xde\x28\xad\xd4\x0b\x11\x04\x79\xaa\x36\x24\xf3\x35\x4d\x92\xd8\x20\x5d\x56\x78\x05\x1d\x87\xbf\xff\xf6\xdf\x4e\xd1\xa6\x0f\xf1\x9a\xa2\x72\x78\xab\xe8\x7f\x53\xd5\xe6\x5a\xbf\xf3\xbb\x1b\x58\x85\xda\x14\x30\x09\x54\x60\xff\x9a\x4b\x02\xca\x39\xee\xb6\x00\xda\x18\xa7\x72\x56\xb9\x91\x05\xa0\x7b\xe2\xee\xb2\xb6\x09\xd0\x57\x91\x59\x5a\x34\xee\x94\x91\xd4\x4e\x2a\xa5\x54\x83\x7a\x01\x9e\x8b\x22\x92\xbc\xa3\xd2\xc2\x70\x95\x88\xca\x79\x25\xd2\x4b\x9a\xc2\xb9\x21\xa2\xa2\xbe\x8d\x78\x7e\x6d\x42\xca\x26\xf9\x0c\xe9\x71\x45\xdd\xd1\x8c\xd1\x35\x9e\x59\xe8\xf2\x06\xa4\xeb\x9b\xe1\xcb\x97\x85\x63\x50\xed\xbf\xe8\xe0\x5b\xaa\xdf\xd5\x96\x34\x4b\x19\x6d\x09\xf0\x5d\x69\xfd\xd8\x44\xc7\x16\x91\xad\x99\xd8\x26\x94\xcc\xad\xdc\x16\xcc\x3a\xac\xa6\xb2\x38\x4f\xf6\x24\x9d\x55\xdc\x1b\x2f\x6f\x62\x4e\x2d\x5f\xe9\x13\x92\x4d\x6d\xf6\xcb\x7c\xc2\x8e\x45\xc8\x46\x22\xcd\x4e\x95\xb2\xbf\xfe\xec\xff\xcf\x8d\x4f\xc8\x5c\xc4\xa1\x2c\xbc\xcd\x70\xc8\x90\xe2\x1b\x70\xcf\x4e\xdd\x57\x51\xea\xf4\x4e\x52\x26\x77\x0e\xc9\x89\x92\x1a\xb9\xbe\x09\x0e\xb5\x02\x3c\x75\xb1\xb3\xc0\xda\x61\xd3\x60\x1f\x8a\x92\xa5\xd4\xc9\x34\x48\xfa\x1c\xb5\x26\x26\x99\xe9\x16\xcc\x1d\x7a\xc9\x51\x81\xa1\x3c\xec\x0c\xb9\xd5\x91\x07\xf6\x44\x7d\xad\x36\xb3\xdd\xaf\xbf\xfa\xc3\xab\x3f\x38\x33\x5f\xda\x4f\x64\x29\x5f\x9d\x4c\x5b\x0e\x1c\xd7\x9e\x79\x0e\xd6\x1e\x69\x96\x37\x4f\x0f\xff\xc3\xf5\xfe\x7a\x70\x59\xf8\xf9\x06\x11\xcf\x06\x22\x1d\x60\x6d\x36\xfc\x56\x65\xf4\x1d\xd7\x48\x8b\x59\x6f\x8b\xf5\x6d\x59\xd6\x88\x4a\xb8\x6a\x58\x19\x6e\x66\x67\xc3\x19\x8b\xc5\xcc\x48\x26\xd7\x08\x40\x59\xb1\xe4\x15\xe8\xcb\xb1\x00\xd8\x88\x8a\x01\xb8\xa4\xe9\x4e\x2c\x66\x3b\xb6\x9a\x39\x8c\x85\x13\xca\xa4\x8b\xac\xb1\x98\xf5\xf4\x38\xbf\x35\x25\xed\xcb\xa2\x6d\x07\xb3\xc5\x92\x78\x81\x90\xb2\x99\xda\xa6\xf2\xed\xc9\x1b\x23\xa7\xab\x0e\xd0\x40\x0c\x30\x90\xfb\x06\x23\x31\x97\x5a\xab\xb9\xe8\x33\x1e\xbb\xfc\x9d\x5d\x81\xad\x2a\x40\xa7\x83\x75\x09\x36\x9f\x8a\x5b\x8c\xe7\x63\xbc\xd6\xfb\x96\x23\x5a\xad\x17\xc7\x6f\x2b\xc5\xef\x6e\x2c\x2b\x69\x2d\x42\x72\x2c\x74\x72\x28\x17\x66\xa1\x81\x10\xd5\xa5\x3a\x1d\x84\x37\x21\xc2\x82\x5e\x83\x6b\xf5\x2c\xfa\x67\x3b\x5e\x76\x8b\x94\x34\x50\x52\x7b\xa1\x13\xf4\xbc\x4a\xbe\x77\x56\x61\x43\x3c\xfb\xa2\xa1\x94\x84\x62\x41\x23\x8e\x27\x45\xed\x99\x7f\x80\x5f\xa8\xef\x7e\x0a\x28\x27\x94\x4b\xa5\xfb\x7c\x78\x47\xfe\x91\xb3\x34\x62\x08\x6e\x13\xc4\x22\x0f\x07\x11\x8f\xb2\xa2\x97\x80\xcc\x55\x1c\x90\x38\xa3\x7f\x40\xc5\x80\x90\x32\x99\x08\x1e\x16\x69\x25\x0b\x1a\xcc\x23\xce\x0a\xfb\x9e\x8b\x25\x1d\xd0\x24\x22\xcf\x44\xaa\x36\xc2\xf7\x93\x9c\x67\xb9\xb3\x4a\x53\x74\x60\xba\xf1\x7c\x48\xf6\x4c\x78\xd5\x14\x05\xec\xb3\x80\x4a\xb8\x5b\x8b\x71\x19\x65\xd1\x92\x3d\x27\x0b\x46\x79\xbb\x03\xa2\x72\x86\xac\x6f\x5f\x21\x79\x02\x26\xe4\xf1\xde\x18\xb3\x20\x8d\x3f\xc5\x34\x0c\xd2\x7f\x0d\x07\xbd\xfc\xea\x0f\xc3\x17\xc3\x17\xc3\x97\x1b\xb3\x91\x6e\xa4\xe5\x4c\xde\xcd\x0a\x26\x3c\x0a\x54\x79\xf5\xb7\xf6\x74\x14\x3d\xc6\xb9\xc6\xf8\x88\x16\x14\xa8\xc5\x04\xee\x14\x07\x0b\x1a\x6f\xa8\x19\x56\x38\xed\x59\x34\x05\x0a\xfd\xfe\xdb\x7f\xa9\xa5\xf5\xfb\x6f\xff\xfd\x7c\xdb\x0e\xd9\x91\xcc\x49\x61\x45\xcc\x82\x94\xdb\x78\xc2\xf8\xf2\xd5\xf7\xc3\xaf\xbe\xfd\x66\xa8\xff\xbb\xfb\x1d\xa8\xf2\x76\x6b\xbb\xf6\xc8\x9c\x86\xdb\x11\x27\x0b\xa5\x06\x05\x1a\x46\xbf\x34\xe3\x54\x27\x8d\x3b\x78\xc2\xb4\x47\x38\xb4\x44\xdc\x77\x7f\xf8\xc3\xb7\x1d\x99\xbf\x2d\x6b\x94\xd3\xcc\x18\xeb\x3d\xd3\x5c\x2c\xf3\xbe\x7e\xfb\x10\xd8\xbc\xb5\x9c\x17\xd8\x5b\x75\xd0\x49\xcb\xe6\xaa\xb3\x1a\x14\x39\x81\x29\x0d\xdc\x06\x27\xd4\xee\x1f\x49\x84\x88\x8b\x4b\x85\xd6\xa4\xbb\x14\xd8\x15\xb5\x1c\x1a\x3b\xd5\x45\xdf\x82\x5e\x88\x18\x5e\x3d\x93\x76\x4b\x80\x0a\xd2\x88\xe9\x84\xe0\xe4\x59\x04\x61\x37\x46\xc5\x2d\xad\xe3\x77\x7b\x67\xff\xe7\xfd\xe1\xe9\xde\xc1\x21\xc9\x68\x3a\x63\xae\x9b\xfe\x3a\x6f\x37\xa0\x59\xa1\xe1\x3b\xe6\xa6\x4d\x87\x5d\xab\xc1\xae\xd3\x5f\xeb\x93\x5e\x74\xc2\x9a\x6e\x48\xeb\x82\xdf\xb4\xb9\x21\x8b\xf9\x51\x04\x6e\x73\xe3\xc2\x62\x5e\x50\x48\xcc\x45\x06\x09\x61\x82\x8b\xf8\xe2\xe3\xbd\xb1\x76\x99\xe6\xdc\x9c\x6a\x77\xe4\x64\x4f\xd8\x9c\x2e\x23\x51\x5c\x60\x69\xa2\xb1\x24\x1e\x75\xb7\x26\x36\x75\x2b\xe8\x9b\xaa\xe7\x9c\x65\x71\xc4\x3b\xfc\xe2\x5d\xf4\x86\x50\x5a\xd5\xdd\x53\x36\xeb\x93\x82\x7b\x52\x2d\x6f\xc4\xa4\xb5\x39\x92\x14\xdf\xc0\x84\x28\xe9\x9e\x66\x51\x90\xc7\xd4\x69\xcc\xe0\x8e\x51\xde\x4f\x07\x9b\x21\xc5\x58\x9c\x81\xae\x08\x5d\x16\x3b\x65\x0c\x41\x79\x7b\x62\xfb\x6e\x69\xc2\x53\x8b\xf8\x87\x10\x92\x58\xe7\xe2\x0a\x38\x01\x50\xef\xb0\xf1\x67\x73\x96\x32\xdb\xe7\xa2\x2c\xc7\xb8\xed\xc6\xb1\x88\xa3\x55\x3a\x0c\xa6\x33\x73\x03\x99\x15\xac\xa1\x56\x24\xd4\x1d\x88\x45\x92\x6b\x88\x9d\xe7\x1a\x18\x35\x77\x47\x0b\x95\x90\x64\x7f\x43\xcd\xfe\xef\xe5\xac\x5c\x68\x1a\xe0\xc6\x6c\x0d\x46\x29\x24\x2c\xcf\x52\xc1\x87\xea\x57\x67\x6f\x75\x57\x10\xe5\xa7\x14\xd8\x87\x8b\x24\x5b\x6d\xba\x91\x62\xa8\x3c\x80\x90\xd0\x6c\xde\xd3\x16\x1a\x39\x3e\xb2\x37\xb9\xc9\xca\xc0\x64\x03\x84\xf6\x22\xe7\x70\x85\x8c\xd3\xa6\xc5\xac\x7f\xdc\x7e\x30\xc6\xdb\xdc\xc0\x6e\x50\xa2\xb6\x49\x1c\x5d\x32\xb2\x67\x79\x18\x63\xba\x62\x69\xbf\xec\xd4\x9b\x51\x25\x15\x0b\x96\xcd\x59\x2e\xdf\x88\x77\x2c\x4b\xa3\xa0\x2f\xb0\xd0\xd3\x51\xeb\xa7\xc6\xaa\x95\xe4\x8d\x50\xaa\x1d\x9c\x56\x2d\xb0\x88\x5b\xd9\x88\x63\x0c\xdb\x35\x61\x71\x8a\x97\xca\xfa\x35\x6e\x2c\xc6\xbb\x97\x79\xac\xdb\x28\x01\x5b\x14\x8d\x4c\x60\xe4\xa5\x4e\x8e\x40\x4f\x96\x5e\xeb\xc5\xa5\xbd\xba\x53\x24\x85\x9c\x47\x16\x6e\x63\xb9\x96\xed\xd6\xea\x51\x2c\x68\x78\x6b\xdc\xb5\x92\xf8\x37\x26\x7d\x8d\xf0\x26\xc8\xb6\x46\xbf\x0e\xda\x6b\xad\x3f\xe2\xe6\x6c\xad\x00\x15\x53\x43\xba\x7d\x1c\x6b\x63\x8c\x2d\x51\xa9\x6b\x06\xf8\xa3\x90\x85\x46\x8b\xe7\x75\x06\xdc\xa3\x2c\xea\x14\x4d\x7a\x82\xf5\x30\x4d\x86\x4a\xc4\x43\x90\xd5\xe5\xe8\xd8\xed\x56\x8f\xee\x66\x2f\x2d\xbd\x31\x38\x5b\x5d\x37\x99\x44\x77\x3e\xc0\xef\x5f\x7c\xdf\x61\x7c\xb4\x28\x3b\xe5\x00\x47\xe8\xa9\xbf\x31\xa3\x3a\xbf\x2f\x05\x85\x09\x05\xf2\x52\xa2\xb1\x82\x52\xb6\x10\x4b\x66\x92\xa4\x21\xbb\x7e\xad\xa9\xf1\x93\x86\x13\x42\xdc\x35\x83\x1f\xb8\x64\x3a\x22\x4d\xe7\xc9\x1b\xf8\xd2\x25\x6b\x0b\xb4\x98\x30\x56\xc9\xbc\x37\xfb\xdd\x50\xc3\x1c\xa3\x1d\x61\xd0\x04\x30\xd7\xad\xd8\xd6\xac\x93\xb2\xb6\x7c\x2b\x38\xf0\xa7\x61\x58\xed\x57\x99\xcf\x66\x50\xcf\x2c\xf0\x02\x9d\xd3\xad\xcc\x78\x57\xa5\x57\x0c\xfb\xa2\xc7\x6b\x3a\x13\xaf\x34\x6c\x82\x6e\x61\xe3\x39\xd0\x39\xf1\xbd\x0f\xd8\x4e\xeb\x5f\x54\x22\x77\xd5\xbf\x1b\x41\x75\x60\x06\x38\x4f\x04\x30\x14\x29\xcb\x65\x19\x98\x50\xde\xf2\x21\xd2\xca\xd1\xd7\x90\xbc\xd3\x9a\x23\x17\x7c\xf0\x4f\x96\x3a\xfd\xcf\x91\xe5\xb1\xb1\xd4\x51\x59\x3d\x1e\xd8\xf8\x1c\xa7\xa0\xd3\x78\xfc\xb6\x3f\x89\xc6\xe3\xb7\x76\x60\xcb\x20\x13\x83\x38\x5a\xb2\x22\x22\x14\x2c\x1f\x14\x10\x83\xab\x16\xc8\x5c\x4d\x1f\x4d\xc5\xaa\xe0\xdb\x7c\x18\x8a\x49\x36\x3d\x52\x85\x95\x99\xde\x59\x1c\x65\x01\xfc\xb1\xf9\x71\x2a\x99\xbb\xcf\x13\x6f\x7e\x9c\x8a\x08\x24\xe6\xe4\xb4\x5b\x0f\xbd\x29\xbd\x11\x32\xa4\x1f\x99\xb1\x6c\x69\x4e\xc0\x49\x44\x6a\xce\x5e\x66\x0c\x23\x52\xa0\xde\xd6\x53\xb6\xf2\x02\x35\x32\x20\x3f\xe9\x93\xb3\xa3\x91\xdc\x45\xef\x8b\x13\xa2\x28\x10\x5c\x66\x69\xee\xca\x89\x2b\xc1\x47\x06\x9a\xa8\x47\xa3\xbd\x77\xd5\xf3\xe5\x01\x54\xad\x7e\x87\xc9\xac\xd4\x68\x3e\xbf\x09\xe9\x20\xc8\xa6\xcd\xcf\xe1\xb8\xfc\xa9\x84\x15\xa6\xa1\xc1\xd7\xd1\x47\xd3\x38\xd3\xda\x03\xa3\x16\xde\x92\xa6\x91\x70\xeb\x1e\x16\xbc\xf9\x69\xb5\x1b\x35\x4f\x07\x5c\xad\x59\x5e\x54\x60\xb7\xe1\x66\xfd\x12\xaa\x5b\x2b\x34\xb9\x74\xa5\xd6\xae\x49\xce\x5c\x50\x97\x85\x47\xfa\xe4\x65\x2e\x22\x97\x27\xa1\xc7\xa7\x1d\xd9\x98\x03\xd5\x21\xe7\xcf\xae\x08\xd4\xae\x0c\x4c\x19\x85\x2c\xa0\xe9\x5e\x10\xb0\x98\x61\x2e\x42\x5f\x8d\xec\xac\xf5\xd3\xc2\x78\x60\xd7\x4a\x5c\x2d\x40\x50\x98\xa6\x5a\xc4\x49\x51\xc7\xad\xed\x04\x88\x22\xe8\x01\x3d\x53\x1d\xcd\x7b\xd7\x57\x66\x13\x20\x94\x0b\xbe\x5a\x88\xdc\x20\x0d\x9a\x00\x0a\xa7\xdb\x13\xb5\x3d\x1b\x9b\x59\x46\xff\x64\x1a\x66\xa9\x7a\xa5\xd0\x90\xbc\x15\x33\x49\xae\x68\xca\x23\x3e\x53\x9b\x4e\x96\xa7\xdc\xed\xb5\x9b\xac\x10\x14\x16\x20\x40\x8d\xdb\xdd\xca\x5a\x81\xbc\x75\x5a\xb9\xc0\xab\xc8\xee\x5f\xe6\x31\x67\x29\xc5\x04\x77\x57\xe5\x73\x2a\x51\x45\x0b\x23\x19\x88\x25\xd3\x7e\x95\xcc\x79\xa1\x1b\xe2\x2a\xe6\x55\xa4\x41\xe7\xf2\xbb\x89\x96\x5a\x9d\xbf\x23\x1e\x65\x11\x8d\xdb\x60\x88\xba\x26\xd1\xfe\xb4\x0a\x52\x6a\x70\x60\x43\xf5\xca\xad\xad\x4e\x45\xb1\x09\x2c\xe8\x25\xc3\x9b\x0d\x54\xc5\xb5\xb0\x87\x8d\x77\xa8\xfa\xf0\x7a\xea\x04\xf5\xa1\x69\xad\xa0\x32\xac\x86\x42\xd8\xee\x66\xc4\x31\x39\x74\x9c\xef\x5e\x7d\x73\xa3\x41\x61\x50\x37\xa7\xf1\x41\x4f\xe8\xc8\xb6\x0b\xdb\xae\x63\xda\x21\x82\xd6\x7f\xdb\x27\xeb\xe6\xc3\x5f\xde\xee\x1d\x7f\x7c\x69\x37\xd0\xff\x9b\xa4\xcc\xc2\x87\x1f\x8e\x8f\x36\xfd\xee\x2a\x4a\xd9\x2c\xa7\x69\xd8\x57\x4a\xfe\x54\xfb\xa0\x09\x3b\x5b\x94\xb0\x8c\xae\x7b\xc1\xec\x2f\xfa\x5e\x04\xb8\x1e\xd3\xc5\x7a\xa5\xef\x27\xe7\x67\x35\x2d\x03\x5c\xf8\xfa\xf0\xac\x25\x60\x4b\x15\xb3\xc6\x6a\x2a\xb3\x97\xd2\xd5\x6c\xa8\x9d\xd8\x1b\xae\xa6\x62\x68\x6f\x23\x99\x31\xb5\x33\xf4\xf2\x06\xfd\xe4\xfc\xac\x06\xcf\x6c\x5e\xa1\x6b\xa8\xed\x84\x68\xb2\x2a\x07\x57\x49\x58\x78\xf9\xdd\x57\x9b\xf3\x75\x31\x9e\x3e\x6b\xf3\x27\xab\x70\xb5\xef\xea\x07\xbd\x3c\x5d\x94\x77\x8d\xe3\x8c\xb1\xce\x45\x7a\x9b\xc1\x9c\xa2\x49\x70\x9a\xc7\x6c\x94\x46\x42\xed\xb3\xfd\x07\xe7\xf8\xb8\x3a\xd8\xc4\xfc\x0a\xc7\x1d\x2d\x4e\x0f\xcd\x9f\x35\x92\x68\x5b\x05\xac\xb0\x8a\xf9\xfa\xfd\xc6\x83\xbd\x0e\x7b\xe3\xe3\x3b\x00\x1a\xfe\x72\x30\xaa\xaa\x76\xaa\xaf\x32\x8f\x32\x7d\x6d\x0a\xa0\x15\xba\x19\xb0\xc0\x7d\x0b\x19\x5f\x35\xc3\xbe\x6e\xa4\x58\x5c\x87\xc9\xa6\x96\xf8\x5f\x0e\x46\x77\x9b\xcf\x08\x58\x15\x37\x4a\x65\xd4\x66\xb6\x73\x1b\x6a\x5e\x10\x23\x52\x7d\x6d\x12\x22\xa9\x82\x89\xe6\x36\xc8\xff\x72\x30\x72\x9a\xa0\x8d\x7c\xc7\xcd\xcd\x71\x7f\xdf\xe9\x83\xde\x77\x8a\xb1\x35\xfa\xe0\x1d\x0e\xfa\x22\x76\x1f\x37\x9e\xbe\x81\x76\x8e\xb1\x1d\x3c\xd7\xc4\xd7\xe5\x95\xa7\x8e\x22\xcd\x3b\x4f\x9d\xfd\xd5\xf3\x5f\xdc\x7a\xda\x2c\x04\x8d\xdd\xd7\xb5\xa7\xfe\x9a\x52\x7f\x4d\xa9\x3d\x05\xfe\x9a\xd2\xfb\xbc\xa6\xb4\xeb\x16\xd1\x24\x89\x57\x27\xfc\x35\xde\x5c\xb5\x6e\xa3\xde\xab\x94\x46\x2f\xa1\xb9\xd4\x05\x6a\x42\x6f\x61\x89\x90\x1e\x19\xa0\x6e\xd7\xde\x87\x9a\x0a\xd4\x64\x72\x1d\x36\x54\x35\x42\x71\x2c\xb2\xb1\x52\x6f\xd6\xf5\xfc\xa0\x28\x69\xf5\xda\x18\x53\x06\x3a\x1d\xc2\x62\xf0\xf0\xaa\x18\x87\x5b\x6b\xb2\x87\x66\x44\xc5\x4c\x94\xb7\x4d\x68\xe7\x3f\x01\x0b\xfd\xa9\xb4\x6e\x24\x83\xfb\x50\x2e\x23\x3e\x73\x86\xfb\x98\xab\xdc\xd1\xb5\x1b\x18\xa8\x69\xbc\x3b\x6c\x9c\x1a\x14\x20\x17\x85\x09\x6d\xb9\xe1\x3d\x49\xe2\x48\x0d\x0a\x7d\x2d\x94\xaf\xac\xae\x39\x3b\x86\x60\x7c\x9a\x26\x70\x44\xd8\xe1\x29\xab\xb4\x0f\xf9\x9a\x88\x21\xa9\x4f\x31\x27\x8c\x68\xf5\x73\xd3\xb9\x45\x9c\xf7\xf5\x48\xe4\x0c\x93\x0a\xf1\xe2\x1f\x00\x9c\x46\x80\x78\xad\xcc\x22\xda\x25\x84\x01\x9b\x9b\x78\x9d\x54\x32\x5f\xe3\xb8\x75\x84\x54\x90\x46\x19\x4b\x23\x8a\xe8\x43\x56\x3c\x34\xc0\x33\x69\xb2\x69\xd6\xdf\x08\x4e\xba\x32\x86\xf3\xad\x3d\xa2\x2c\x14\xc2\x78\x40\x13\x09\x97\x5e\xc8\xb2\x47\xae\xae\x38\xf5\x53\x52\xdc\xa8\x40\x7e\x10\xd9\x5c\xa7\xfa\x8a\x74\x30\xa1\x12\xc8\xa3\xbd\x94\x23\x3d\x5f\xdc\xfe\x0d\x6f\xfe\x70\xd2\x06\xb4\x54\x96\x32\x1e\x18\xce\x1b\x58\x60\x7c\x22\xcf\x30\x75\xce\xe4\x62\xe9\x9b\x61\x44\x0a\x50\x8e\xe6\x66\xb6\x96\x0e\xf3\xb0\x00\xf4\xb7\x08\x0f\x39\x35\xe7\xe7\xdc\x40\x95\x62\x2c\x78\x9d\x12\x2d\x87\x66\x6a\x32\x39\x9b\x41\xe7\xb4\x4a\xb0\xad\xd3\x61\x4c\x78\xf4\xef\xbf\xfd\xef\xb1\xc8\x00\x35\x74\x2f\x8e\x75\x60\xbb\x5d\xb7\xbb\x5e\xf5\x2d\x84\xea\x02\x3b\x15\x70\x94\x34\x8b\x24\x80\x15\x62\xc6\xa0\x1e\x88\xb9\xe9\x74\x48\xf6\x34\x8e\x57\x0b\x6d\x81\x35\x69\x71\xd3\xbb\x8e\x01\xd7\x43\x56\x04\x82\xc1\xa8\x7f\x58\x2e\x62\x8a\x95\xb7\x53\x15\x68\xef\xee\xa2\x91\x20\x65\x17\x8d\x46\x5f\x7d\xd6\x22\x69\xd2\xb6\xcc\x76\x7c\xd6\x25\x8d\xc1\x32\x30\x37\x51\xb7\xd6\x52\x15\xe3\xe5\x07\xd5\x8b\xb5\x6b\xac\x81\x91\xa0\x6a\x59\xb6\x55\x0b\x86\xbd\xd5\x3e\x51\x7b\x74\xe6\x0e\xd9\xeb\x45\x0c\xa2\x2f\x6c\x05\xf0\xc9\x33\xbd\xf4\x3a\xca\x36\x84\xc0\x71\xfd\x63\x1d\xb4\x2d\x12\x7d\xde\x37\x8d\x58\x1c\xb6\x66\x42\x94\x4f\x41\x18\x5a\x88\x00\x0b\xf5\x4d\x27\x3c\x56\x2e\xa4\x11\x69\x34\x53\x74\x68\x5b\xff\xe6\x01\xed\xeb\x99\x62\x21\x96\x2e\xf0\x03\x42\xb3\xe7\xd6\x91\xab\x5e\x22\x88\x79\x1c\x03\x74\x65\x77\x95\x05\xc9\xca\x0b\x2e\xf4\x36\xac\xc3\xa2\x81\x91\x1b\xb4\xe9\xae\x54\x2d\x80\x82\x8a\x6a\x5f\x42\x33\x21\x2c\xf2\xbf\xe9\x82\xe9\x7c\x06\xb8\x5b\x05\x12\xc7\xbb\x72\x31\xcb\xc7\x3a\x5d\x06\x1e\x4b\x99\xad\x36\x4c\x6c\xb9\x5b\x8e\xa8\x1f\x29\x2c\xb5\x03\xa5\xdf\x6b\x91\x92\x8a\x71\xb7\x0d\x99\xf6\x00\x23\xba\x21\x45\xa2\x85\xd2\x02\x64\x19\xa4\x66\x33\x99\xc1\xcc\x06\xdf\x3c\x84\x6c\x41\xa0\x7f\xd7\xe2\x21\x6e\x64\xba\xc8\xa2\x6f\x31\xb3\x00\x29\x3d\x67\xd5\xa1\xb4\x2e\x34\x7c\x5a\x86\xff\x33\xda\xa9\xcf\x9e\xff\xdc\x24\x80\x19\x63\x77\xc5\x9b\x11\xa0\x6a\x61\x9f\xb9\x43\xd2\xca\x47\xa4\xe4\x47\x21\x8b\xdb\xa2\xca\x59\x74\x18\xea\xe5\x5c\x76\xd7\xd9\x3a\xce\xea\x28\x50\xcd\x03\x4d\x7c\x53\x46\xa6\x41\x2a\x24\x68\x7a\xd6\x6a\x6c\xd9\x13\x0a\x32\xae\x95\xed\x04\xf3\x04\xba\xc4\x65\x3d\xf3\x82\x69\x30\x77\xa7\xcc\x53\x16\x64\x96\x46\x41\xd6\x7a\xed\x64\xf9\x98\xdd\x0d\xa6\x50\x1b\x26\xa2\x4d\xe4\x15\x52\x6d\x0d\xe3\x54\x45\x5e\x99\xb0\x87\x9a\x38\x60\x96\x60\xb4\xc4\x2c\x5a\x32\xae\xac\x4f\x35\xfc\x4e\x3e\x6f\x57\x10\xad\x76\x7b\x51\xba\x33\x61\xba\x7c\xb8\xc8\x8e\x37\x9b\x13\xfc\xa0\x48\xba\xa8\xea\x55\x66\xc4\xc7\x2d\xc8\x0d\xe5\x03\xf3\xf8\xd1\xd1\xa2\xed\xe6\x81\xf2\xa9\x13\xa3\xb8\x71\xa0\x83\x1a\xa3\xb6\xb0\xc0\xf2\x41\x72\x90\x33\x80\x30\x06\x2e\x85\xfb\xce\x0c\xc0\xb7\xc4\x18\x4f\x0d\x5a\x0f\x58\x26\x2b\xd2\x1a\x6d\x58\x3e\x35\xec\xec\xac\x0a\xa6\x64\xae\xb3\xd2\xca\x92\x96\xd5\xca\xf2\x58\x43\x75\x81\x7b\x98\xb9\xb9\x7a\x7f\x64\x10\xaf\xdf\x1f\x8c\x5a\x90\xb1\xcd\xd3\x67\x56\xdb\xb1\x09\xca\xa7\x07\x4a\x41\xb3\xf0\x7a\x46\x59\x8f\x5c\x50\x3e\x9b\x63\x18\x94\x4f\x5f\x86\xdc\x5c\x6f\x3c\x2e\x3f\x5a\xc3\x96\xfd\x14\x05\xcd\x99\x70\xa4\x57\x54\x8c\x52\x18\x8f\x95\x26\x59\xcc\x32\x00\x42\x04\x00\x76\x6c\xab\xbb\xce\x42\x21\xea\x64\x95\x7e\x73\x96\x6c\xb6\x64\xcf\xb7\xca\x3b\x42\xd6\x6c\x2b\xeb\xf4\x06\xd6\x67\x5b\x81\xe3\x24\x93\xe6\xf9\xcc\xb2\x2f\x9c\x97\xc6\x57\x87\x85\x35\xa0\x36\x29\x89\x06\xc7\xb2\x31\x44\x76\x8c\xa7\x78\x5c\x40\xde\xac\xd1\xfa\x6c\xbb\x5c\x2f\x1d\x38\xb4\x42\x2a\x4b\x43\x01\xed\x76\xd5\xcd\xac\xd1\x71\xa6\x06\x38\x45\x29\x37\x7d\x25\xd8\x5a\x09\x60\xae\xda\xdf\x40\x82\xad\x19\x7b\x29\xde\x6a\x12\xec\x1c\x65\xd8\xb9\x96\x62\xe7\x28\xc7\xce\x95\x24\xeb\xd4\x79\xbc\x2c\x83\xa7\x97\x2c\x93\x37\x30\x80\xd7\xdb\xbd\x9d\x2e\xbc\xf2\x71\xda\xbd\xe4\x99\x64\xcc\xf8\xbe\x40\x94\x21\x26\xa8\x5c\xf1\x8c\x5e\x3f\x5f\x6b\x8f\x74\x9a\xcd\x5a\x87\x6c\x33\x8b\xbb\xeb\x36\x2e\x2f\xcb\x6a\x16\x69\xd3\x1a\x56\xcb\xed\x58\x64\x78\x90\xbd\xdb\x02\x82\x6a\x11\x41\x07\x0a\x9b\x73\xaa\x35\xbb\x02\x92\xc7\xda\x4d\xd6\xd8\xaa\x2c\x16\x57\xcf\xb7\xab\x5d\xb6\x88\x8d\x54\x35\x17\xc3\x1a\x74\xfa\x35\xae\x00\xf0\x73\x81\xff\x72\x3c\x67\x24\xbb\x12\xc0\x6b\x10\x85\x6c\xde\xa1\x80\x50\x9b\xd0\xaa\x84\x61\x5d\x33\x77\x27\xdc\x8c\x5e\xdf\x58\x69\xf9\x55\x99\x65\xbd\x6e\x97\x88\x61\xa6\xfc\xfa\x3d\xe1\x6a\x2e\x62\x3d\x49\xbb\x30\x45\xe7\xe7\xe5\x86\xfc\x27\x90\x2e\xff\x36\xa7\xf2\xd9\x62\x75\x11\xd3\x09\x8b\x9f\x83\xdc\xd1\x42\x7e\xdd\x72\xd6\x37\xba\x1a\x47\x03\x30\x19\xf6\x0f\x63\x11\x06\xc5\xf1\x76\xa8\xda\xed\xc9\x6f\xfa\x82\x0e\x70\xd1\x17\x97\x29\x42\xe7\xc8\xef\xbf\xfd\x8f\xe9\x28\x78\x47\xf5\x80\x7a\xb3\x05\x0e\xb8\x75\xbc\xcd\x21\xa9\x3e\xa8\x61\x75\x57\xdb\x3d\xda\x62\x40\xdd\x83\x59\xef\x70\x50\x5c\xc7\xa6\x53\x16\xe8\xe4\x3e\xed\x29\x88\x41\xac\xea\x8c\xa9\xca\x8d\xb6\x3d\xba\xce\x05\x1f\x98\xc8\x78\x3c\x7e\xc5\xcc\x07\xed\x13\x99\x8a\x74\xc1\xea\x3e\x88\x8e\xfb\x72\xcb\x07\x98\xa1\x49\x98\xf2\x9a\x8c\xbb\x30\xe0\x75\xa2\xf3\x5e\x10\x88\x9c\x6f\xa2\x77\x9d\x55\x3f\x7c\x30\xfd\xab\x26\x92\xbb\xeb\x74\x78\x32\x29\x49\x44\x58\xa0\xdb\x80\x32\x57\x88\x67\x4d\x8c\x35\x62\x17\x47\xdc\xc9\x6d\xbd\x7c\xc9\x84\x54\x83\x42\xfe\x7f\xf6\xfe\x75\x39\x72\xdb\x5a\x18\x86\xff\x7f\x57\x81\x68\x76\xd5\xcc\xec\x4f\xdd\x9a\xf1\x61\xe2\xc8\x95\x7a\x4b\x96\x34\x76\x57\x34\x52\x3f\x52\x8f\x9d\x54\xe4\xad\x41\x93\xe8\x6e\x3c\x62\x03\x0c\x0f\x2d\x75\x1c\xbf\xe5\xcb\xd8\xbb\x2a\xb9\x39\x5f\xc9\x5b\x58\x0b\x20\x41\x12\x20\xd9\x1a\xc9\x89\xb3\xc9\x1f\xf6\xa8\x09\xe2\xb0\x00\xac\xf3\xc1\xff\x54\xe5\x01\x28\x20\xf2\xd1\xe0\x26\x0f\x01\x79\x77\x97\x3e\x05\xb2\x03\xec\xbd\xa0\x4d\x4a\x88\x2b\x4c\x9c\x6a\x9f\x52\x5e\x68\x22\x15\xf3\xdb\x71\xf3\xfb\x31\x76\x64\x07\xf5\x03\xe9\xcb\x25\x91\xbe\x9c\x12\x69\xde\xaf\x4e\x5e\xe9\xdf\x77\xa7\x2b\x72\x52\xa9\x71\x43\xac\x6f\xe0\x39\x26\x93\x0e\xa9\x43\x3d\xa5\x75\xa1\x69\x34\x28\xe5\x90\x4c\xe7\x22\xf7\x1a\xd9\xab\xcf\xd1\xf9\xc9\x73\x8f\x3b\xb6\xfd\xec\xa6\xcd\xf2\x95\x76\xeb\xdb\x66\x95\x65\x71\x3f\x23\xdb\x37\xb3\xd9\xb4\x34\x22\x79\x2d\x6b\xea\x78\xa8\xa6\xfe\xa9\x1b\xc7\x9b\x8f\x33\xaa\xad\x59\xb6\x92\xe1\x0e\xb4\xe7\x1d\x7e\xf0\xb8\x34\x07\x97\x0c\x97\x43\xaf\xdb\xf2\x2b\x52\x7d\x62\x2a\x6a\xe6\x29\xc2\x5c\xed\x14\xdc\xc3\x43\xec\xc5\xcc\xf6\x05\x1b\x2f\xc7\xe4\xeb\xd3\xd9\x3e\x99\xbe\x9f\xed\x13\x96\x05\xe3\x97\xe4\x9d\x2e\x11\xd5\x21\x41\xe8\x3e\xd4\xa9\xbd\xb8\x7c\xae\x98\x88\x25\xb8\xb6\xfc\x6b\x69\x5c\x63\x9a\xad\x76\xd8\xc7\xe7\x53\xd5\xfe\x29\xb6\xb1\x6b\x07\xbb\x2d\x0c\xf6\x0e\xc2\x34\xc7\xc5\x56\xe1\x32\xcd\x5e\xf4\xdd\x0c\x42\xd8\x78\x79\x48\x46\x84\xdd\xd3\x20\x3b\x24\x07\x0b\x29\xa1\xe4\x23\xa4\xbd\x21\x07\x73\x9a\x90\xf3\x8b\xd9\xe9\x21\xfa\x44\x30\x91\x25\x5b\xb2\xee\x22\x2e\x17\xe7\x67\x7f\xd2\x78\x6c\x4b\x18\xc7\x7c\xd8\xe4\x03\x8c\xf1\x01\xbc\x97\xc9\x07\x1c\xe2\x83\xf1\x56\xf0\x14\x57\x2b\x1f\xa8\x7a\x4f\x0b\x11\x15\x33\x79\x2b\x81\x9a\x67\xae\x58\xd8\xf2\xe9\x73\xde\xaa\x07\x40\x81\x17\x52\xb7\x56\xd2\xae\x01\xd0\x4d\x02\x57\xed\xc0\xd0\x81\x6a\x27\x19\x38\x12\xce\x99\x01\x82\x96\x7e\x15\xfb\x7d\x68\x40\xae\x6b\xda\xd2\x6c\x85\xc5\x6c\x0f\x8b\x72\xf4\x3d\x84\x35\x3c\x66\x30\x2b\xe8\x2e\x82\x4a\x8f\x66\xfb\xca\xae\x47\xf8\xd3\xc7\x8d\x80\x7d\xb4\x02\x7b\x07\x2e\x93\x68\x00\x3c\x2e\x03\x14\xfb\x12\x36\x3d\xbc\xd3\x3e\x84\x90\xf4\x43\x46\xdd\x5d\xf1\x60\xdd\x93\x5e\x4e\x8e\xdf\x4d\xfb\xda\x2d\x01\x11\xf9\xe7\x6e\x63\x28\x6a\x4e\x7d\x00\xb3\xc5\x48\x57\x19\x02\x7e\x82\x21\x8b\x04\xd1\xde\xaa\x99\xf8\xd8\xd9\xf1\x2b\xa5\x9e\x75\x7d\x9d\x42\xab\x8a\x93\xe6\x69\x69\xeb\x51\xe3\xb4\xc9\x91\x60\x05\x52\x8d\x36\x6f\x5a\x0c\x41\xbd\x4e\xa2\x5a\xda\x0e\x34\x1e\xb8\x12\x29\x6c\x28\x01\x50\x02\x48\x3d\x46\x26\x0b\xab\x8e\x74\x37\x79\x98\x29\x00\xa3\xfb\x32\xf8\x4c\x41\x9a\x93\x4a\xa9\xe1\x22\xc3\x09\x25\x19\x0b\x56\x82\x07\xd4\x59\x3c\xa7\x7c\x40\xa0\x47\xa5\x15\x5f\xc7\x32\x2d\x1d\x4b\x31\x3b\x3c\xa4\x70\x28\x72\x27\x2e\x78\xc2\xee\x68\xe4\xce\x02\x57\x3e\x88\x2f\xb4\x42\x01\x33\x30\x4a\xc2\x44\x59\x6d\x16\xbc\x47\xba\x2f\x47\xa7\xee\x19\x9a\x7d\xfc\x76\xa8\x6e\xc6\xc4\x8e\x9f\xee\x52\xdd\x16\x09\x61\xbf\x40\xb7\x43\x58\x21\xf4\x75\x1a\xac\x24\xb9\x44\x92\x4d\x5e\xf0\x31\x1b\x93\x98\x8b\x65\xda\xae\xbb\xed\xb5\xde\x1e\xe8\x20\x76\x47\x26\x78\x00\x32\x99\x9a\x08\x85\x8f\x76\x68\xa8\x08\x66\xc8\x8d\xdb\x50\x9e\x1a\x8d\xae\x17\x0a\x3d\x20\xe0\xf1\x31\xf7\x2c\xce\xe4\x76\xb5\x3c\xcd\xca\xac\x14\x56\x9e\x8e\xa2\x3c\x43\xfb\xe2\x3e\x0a\x6d\x34\x43\x7e\x3c\xed\x8a\x19\x4e\xfb\xd2\xc5\xbe\x84\xa9\xea\x22\x5f\xce\x47\xc7\x46\xa0\xb6\xf9\x96\xe9\x18\x43\x12\x53\x9e\xf8\x13\x1a\x97\x8f\x12\x6a\x75\x59\x15\x1b\xa6\x74\x2e\xf3\xac\x07\x29\x79\x2c\xb9\x51\xc8\x4c\xdd\xbe\x7e\x27\xe3\x1c\x1b\x77\x58\xa2\xa1\x49\xbb\x47\xc8\x40\x32\x06\x92\xf1\x6b\x27\x19\x42\x66\x86\xb5\xf2\x82\xa5\xdd\x5e\xdc\xd3\x52\xdc\xcf\x46\xdc\x70\x65\x32\x6c\x5f\x87\x37\x93\x6e\xe6\x07\x58\xc7\x4d\xee\x61\x94\x7e\x98\x39\x3a\xfe\x57\x05\xee\xf5\x9e\x0d\xdb\x47\xa4\xfe\x0d\xb5\x2c\x44\x02\xd8\xbc\x80\x81\xc9\x18\x4e\x3d\x4f\xda\x5c\x73\xb4\x5f\x99\xde\xe7\x53\xf0\x7f\xbf\x84\xe0\x0d\x13\x8a\x80\xbe\x33\x2f\xe6\x2c\xa0\x79\xaa\xbd\x39\x3a\x1c\x83\x8b\x29\x06\x2c\x81\x3e\x0a\x8f\x90\x97\x68\x4e\x34\xc9\xee\x2a\xfe\x2d\x5d\x44\x16\x1d\x5f\x0e\x6d\xdf\x8d\x7d\xdb\x73\x03\xff\x00\x69\xa5\xf2\xd7\xe6\x4d\xf9\xf7\xd5\xf1\x0c\xdf\xfa\x87\xd1\x3d\x9e\xf1\x8c\x19\xf7\x10\x2a\xcc\x01\x31\x26\x05\xcc\x02\xfe\x7a\xf4\xc9\xe7\x9f\xb7\xd8\xd8\x9e\xee\xd8\xa7\xbe\xb4\x6b\xf8\x54\xcd\x04\x45\xda\xb5\x1e\xa1\x12\x9e\xca\x37\xf6\xa8\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xe1\x5e\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x84\x6f\x25\x03\x2e\x1b\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\xf9\x0c\x51\x12\x43\x94\x44\xf1\x0c\x51\x12\x43\x94\xc4\xd3\x47\x49\xb4\xd4\x82\x51\x32\x06\xe6\x3b\x73\xbd\x6b\xef\xb8\xe5\x94\xeb\xec\x78\x0f\x48\x73\xa8\xbf\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\x43\x3f\x6a\x1c\xf2\x1c\x0e\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\xe5\x33\x58\xf0\xad\x67\xb0\xe0\x0f\x16\x7c\xfd\x0c\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x80\xcb\x06\x0b\xfe\x60\xc1\x1f\x2c\xf8\x83\x05\xbf\xf9\x0c\x16\xfc\xfa\x33\x58\xf0\x07\x0b\x7e\xfd\x19\x2c\xf8\x83\x05\xbf\x78\x06\x0b\xfe\x60\xc1\x1f\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\xb0\xcf\x08\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\x48\x5a\x35\x24\xad\x1a\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x6d\xf3\x1f\xf2\x1c\x0e\x24\x63\x20\x19\x43\x9e\xc3\x21\xcf\x61\xed\x19\xf2\x1c\x0e\x79\x0e\x6b\xcf\x90\xe7\xd0\x2f\x44\x0e\x79\x0e\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x96\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\xcf\x10\x25\x31\x44\x49\x14\xcf\x10\x25\x31\x44\x49\xfc\x3b\xe6\x39\xec\x63\x0b\x6b\x62\xae\x6e\xfb\xd7\x02\x4d\x97\x25\xaf\xe9\x9a\x75\x9e\xda\xda\x7c\x7d\xe8\x30\x59\xa0\x14\x15\x2d\xb7\x67\x49\xee\x5d\x81\x84\x8c\x5d\xeb\xb8\x50\x8d\x5a\xee\x65\xe9\xf1\x9d\x99\x1c\x8f\x1e\x66\x1e\xfd\x5b\x30\x6b\x1e\x88\x2d\xaa\x53\xd0\xf3\x87\x63\x94\x64\x0a\x3d\xcc\x8a\x2f\x15\x5b\x78\xbd\x07\xfd\x5d\xef\xc1\x01\xd6\x6d\x5d\x5d\xd3\x85\x62\x69\x32\x40\x99\xd0\x41\x24\xef\x58\x82\xb3\x41\x8f\x21\x6b\x72\x29\x91\x6b\x9e\x65\x2c\xdc\x57\x12\x39\xba\x9b\xbb\x3a\x0d\xa4\x48\x39\xa6\xac\x44\x89\xfb\x7a\x8f\x8b\x05\x17\x3c\x63\xd7\x7b\x64\x44\xc0\x4b\xc5\x5a\x8e\x11\x71\xf4\x3c\x49\x44\xd3\x6c\x4c\x8a\x95\x39\x41\xa2\xe6\xca\x43\x26\x32\x1e\xd0\x48\x4f\xb0\xde\x0f\x17\x84\x46\xf1\x8a\x8a\x7c\xcd\x12\xab\x1d\x1c\x00\x57\xaf\xda\x2c\xa8\x85\x43\x34\xc5\x3a\x15\x9b\x78\x38\x44\xbe\x9e\x37\xe5\xf6\x38\x61\x27\xe7\x47\xb3\xae\xe3\x31\xc5\x66\x84\x8b\x90\x07\x28\x93\x14\xae\xd1\x2b\x93\x86\x12\xa8\x17\x4f\x0d\xa0\xe6\x6c\x21\xdd\x88\x87\x8a\x2d\x51\xdd\x79\xe7\x3a\x97\x32\x62\xcd\xac\x9a\x2d\x54\xa7\x26\x95\xcf\x6c\x09\x0f\x4f\xb5\x25\xe7\x99\x8b\x16\xf3\xe0\x16\xff\x23\x73\x27\x02\x52\x6b\xab\x71\xec\xd6\x49\xd0\x8e\xdc\xd6\x1e\x66\x52\x2b\x98\x5a\xe4\x8e\x72\x1e\x29\x59\xc8\x28\x92\x77\x08\x35\x14\x3e\x0b\x71\x0c\xe9\xc2\xef\x51\x36\xc1\x8b\x7d\x13\xf1\x8c\x25\x34\x52\xbf\xb8\x7a\xbe\xbe\x26\x23\x0c\x64\x50\xa7\x7a\x1d\xd3\x84\xa7\x52\xec\x13\x88\x64\x32\x42\x85\xe9\x72\x21\x25\x99\xd3\x04\x04\x9d\x62\xb8\xdf\xec\x38\x5c\x39\x9e\x12\x89\xd8\x5f\x72\x1a\x7d\x89\x9e\x77\x86\xd0\xf1\x85\xa6\x70\x3c\x85\x36\x46\x69\x57\x0c\xe9\x46\x22\x3f\xc0\x3c\x68\xe9\x2d\x32\x2f\xff\x19\xe0\x3f\xc7\xe3\x31\xf9\xd1\x9a\x41\x96\xe4\xcc\xb8\xd0\x17\x1e\x68\x38\xc6\x1f\x89\xdb\xe7\x55\x6b\x2b\x3b\x86\x2a\xe7\xaa\x16\xc0\x45\x8f\xc9\xb9\x06\xdb\x71\xbe\x30\x58\xdb\x04\xdd\x5b\x62\xcd\x59\x09\xb4\xd0\xdf\x8d\x22\x1d\x2f\xcb\xa1\x67\xc5\xc8\x34\x2b\x77\xc7\xda\x99\xdf\xc0\x21\x75\x12\x5d\xdd\x45\xa1\xd9\x90\x0b\x68\x0b\xa2\x2d\xfc\x3f\x7f\xf5\xea\x93\x37\xf8\x5f\x7c\x53\x7c\x73\xb5\x92\x49\x36\x0a\x78\x12\xe4\x3c\x03\xc6\x45\x7f\xe4\x1a\xe8\x6f\x7f\x6b\xfd\x1a\x54\xa0\xd9\x0b\x6c\xf3\xb2\x68\x14\xd3\x84\x09\x4c\x76\xbb\x4c\x64\x1e\x2b\x6e\xed\xfa\x3a\xa3\x51\xf4\xc2\xa9\xca\xd6\xd9\x57\xd1\x39\xa1\xc0\x17\xa6\x37\x73\x86\x69\x14\x59\x12\x2a\x5c\xd0\x33\x3c\x0f\xc8\x82\x79\x90\x9c\xba\xda\x88\x67\x8c\xff\x96\x8d\xdf\xd3\x7d\x32\xda\x27\x37\x00\x87\x83\x31\xb9\x82\x2b\x47\xf4\x95\xf3\x76\xba\x96\x09\x23\xb1\x62\x4e\xd3\x94\x6f\x18\x99\xa3\xef\xf1\xd6\x68\x46\xb4\xce\x8a\xb0\x34\xa0\x31\x23\xc1\x8a\x26\x34\xc8\x58\xa2\xa7\x7d\x8a\x0e\x9c\xce\xcb\xf0\x02\xa8\xd4\x9a\x86\x6c\x94\xc7\x78\x2c\xd2\x97\x05\x3a\x82\x90\x17\x8d\x3a\xee\xd8\x5c\x71\xbf\x4c\x23\x0f\x7b\xc7\x43\x16\x47\x72\xbb\x66\xc2\x89\x4e\xf5\xf7\x71\x22\x43\x73\x48\xa1\x5f\x75\xa7\x00\x27\x25\x52\x64\x4c\x84\xd6\x51\xa7\xc1\xad\xfe\xe1\x47\xd5\xbc\xec\x9f\xfc\xe6\xf7\xbe\x1b\x10\xb2\x8d\xe9\xfe\x37\xa4\x76\x0b\x5c\xa8\xac\x8d\x79\xaa\xea\x12\xfa\x72\x85\x57\xce\xaf\x9e\x8c\x35\xd4\x93\x34\xa2\xc6\xae\x0c\x22\xe8\x2b\x7b\xd0\x54\x50\x6b\x96\x1c\xc0\xdd\x0a\xc2\x28\x2b\x34\xdf\x72\xe8\xd0\x89\xa6\x9d\x78\x4a\xdd\x3b\xa9\x33\x4d\xef\xeb\xbf\x94\x50\x33\x26\xe8\x3e\x05\xd4\xe4\x3e\x56\x1c\x55\x16\x6d\x2d\x99\xe6\x05\x64\xc9\x76\xfa\xc5\x59\x78\x54\x90\x20\x61\xda\x6f\x3b\xd5\xb7\x5b\x26\x44\xf0\xe8\xe5\xbe\xf1\xbc\x0e\xd9\x82\xe6\x51\x96\x12\x5c\x96\x02\x5d\x12\x7a\x64\x9a\x4c\x92\x3b\x85\x2b\x27\x3a\x97\xb9\x9a\xc4\xa9\x95\xd6\x1c\xf8\x56\x83\x3f\x8b\x94\xd1\xe0\x30\x44\x7c\x01\x9c\x7a\x7c\xc2\x53\xbc\x63\x23\xf2\x67\xcd\xca\xa9\x09\x99\x91\xbe\xdf\xd7\x24\x42\x31\xc6\xa0\x79\xac\x0c\xec\xbc\xc7\x5c\x04\x51\x1e\x1a\xd5\x7c\x40\x15\xb3\x0c\x1d\x94\xdd\x10\x24\xd2\x42\x16\x4b\x82\xee\x5e\xaa\x99\xb8\x65\x2d\x7b\x72\xa7\xee\xb9\x55\x20\xa2\x10\x53\xd9\xbd\x53\xb8\x83\x76\xde\xa5\xef\x77\x0e\xe8\xea\x14\x24\x63\xdf\x36\x21\x0e\xfc\x4e\x8b\xc5\x96\x78\x92\x30\xaa\x6e\x53\x70\x4b\xe8\x92\x72\xe1\x3c\xb2\x78\x4c\x50\x9d\x1a\xdd\xd1\x6d\xda\x70\x9a\x45\x3b\xe7\x3e\x11\x6c\xc3\x92\xca\xa9\x73\x6a\x35\x7b\x66\xa3\x2f\xa1\x40\x18\x90\x8e\xc2\x22\x10\xcb\x34\xe5\xf3\xc8\x0c\x5c\x3a\x72\xa8\x0f\xae\x62\x16\xb8\xc5\x6e\x5c\x88\xdf\xb5\xa5\x5d\xc0\xf7\xca\xce\x6e\x91\xbb\xf9\x2b\x50\x8e\xd0\x36\xd8\xa5\x99\x4c\xe8\x92\x99\x9f\xd2\x8c\x66\x39\x02\x06\xf5\xd6\x2c\x3c\xb7\x34\x8a\xb7\x5c\x84\x0a\x1b\x19\x90\xc6\x51\x9e\xd0\xa8\xfc\x25\x90\x02\x4d\x48\xe9\x21\xf9\xf3\xf7\xea\x17\xd5\x3f\x0b\x75\xfc\x97\xfe\x75\x34\x1a\xe9\xff\xd0\x98\x9b\x48\x32\x42\x63\xce\xee\x33\x26\xa0\xe1\xf8\xf6\x8b\x74\xcc\xe5\xc1\xe6\xf5\xb5\xc0\x41\x8f\xf3\x34\x93\xeb\x4b\x86\x2a\xf1\x13\x06\x42\x22\x20\xec\x4a\xbc\x56\x33\x04\xaa\xd0\x74\x27\xa3\x25\x13\xe3\xdb\x7c\xce\xe6\x39\x8f\x94\xd4\xaa\x06\x30\xc3\xbf\x08\xd9\x86\x45\xc0\xa8\x18\xfc\x35\xe3\x6b\x96\x66\x74\x1d\x2b\xf9\x2d\x02\xa7\x7f\x45\xc6\x0e\x09\xba\x14\x0a\xf4\xcd\x4b\x59\x96\x8e\x83\x24\x1c\xc7\x89\x54\x90\x0e\x00\xc5\x8d\x65\xb2\xbc\x16\x0a\x77\xc2\x34\x80\x21\x3a\x24\x9e\x66\x55\xb5\x2d\xae\xd7\xed\x46\x18\xf1\x34\xfb\x83\xf3\xfd\x19\x4f\xb3\xea\xa6\x34\x66\xa9\x77\x9c\x8b\x65\x1e\xd1\xa4\xd9\x00\xf6\x2b\x90\xea\xd0\x1c\x47\x79\x9a\xa1\xc0\xba\x31\x7b\xa7\xfe\x18\x69\x08\xa8\x7d\x81\xce\x82\x15\x5b\x97\x91\x72\x32\x66\xe2\x68\x3a\xf9\xf6\xd3\xab\xea\xef\xb5\x6b\x55\x9f\x7b\xd5\xff\x18\x4c\x6d\x34\x99\xf3\x2c\xa1\xc9\x96\x4c\xa6\x24\xcd\xe7\x23\x33\xcd\x83\xe3\xc9\xc9\x65\x05\xa7\xa1\x8a\x64\xa5\xb0\x20\x32\x4e\x20\x1e\x83\x6c\x87\x68\x2e\x93\x18\x0a\xa3\xed\x9a\x6b\xb2\xe1\xd4\xf2\x30\x41\xdb\x21\x7e\x6a\xf7\x2b\x17\xcd\x89\x1a\x03\x54\xa1\x0f\xb2\xaf\xb1\x47\x49\x6f\x1d\xf2\xea\xad\xad\xc6\xf7\x2b\xb8\x69\x43\x2b\xfa\x1e\x23\xa2\xd1\xe0\x67\xa1\x86\x35\x62\x1a\xc0\x9b\x9a\xe8\x51\x97\x22\x4e\x81\x50\xe8\xbb\x3f\x06\x96\x88\x25\xa9\x11\x9a\x03\x29\x36\x2c\xc9\x48\xc2\x02\xb9\x14\xfc\xaf\x45\xe7\xa9\x31\xfd\x42\xd9\x8d\x06\x1b\xc9\x45\xc6\x12\xc5\x3c\x01\xd2\xdb\x07\x1c\xbf\xa6\x5b\x92\x30\x35\x0c\xc9\x85\xd5\xa1\x71\x3c\x79\xa7\x98\x66\x2e\x16\xf2\x10\xb2\xae\xa4\x87\x07\x07\x4b\x9e\x99\xfb\x1d\xc8\xf5\x3a\x17\x3c\xdb\x1e\xc0\x35\xe5\xf3\x5c\x6d\xc9\x01\xdc\xc5\x83\x94\x2f\x47\x34\x09\x56\x3c\x63\x41\x96\x27\xec\x80\xc6\x7c\x04\x73\x17\x70\xc1\xc7\xeb\xf0\x59\xa2\x11\x42\xfa\xdc\x85\x11\x9b\x88\x14\x2e\x57\xdb\x36\xa8\xdb\xa5\x83\x15\x51\x2a\x40\xb6\xa6\x80\xb6\x21\xed\x97\xa7\x57\x33\x62\x46\x77\x06\x76\x22\xf0\xcb\x2f\xd3\x72\x1f\x14\xd0\xb8\x58\x18\xfe\x0d\x34\xdf\xb6\xba\x03\x99\x87\x88\x3b\x58\xf9\x34\x9f\xaf\x79\x96\x5a\xe9\x3a\xe4\x98\x1c\x03\xda\x53\x44\x31\x8f\x43\x9a\xb1\x70\x4c\x26\x82\x1c\xd3\x35\x8b\x8e\x69\xca\x9e\x7c\x17\x80\x89\x1d\x29\xd8\xf6\xdd\x07\x4f\x90\xad\x4f\x77\x5c\x20\x52\xcf\xb6\xd5\x2f\xaa\xa2\xc0\xd5\x48\x0f\x13\x18\x54\x06\xe3\x52\xe2\x77\xd2\x36\x1b\x5b\x23\xd2\x2d\x66\x38\x8f\xe3\x72\xa3\x42\x8f\xf1\xad\x9a\x4c\x89\x41\x69\x88\xc1\xe6\x2c\x92\xea\x6c\x49\xad\x91\x62\x2e\x2b\x94\x9f\x6f\x19\x38\x87\x5f\x03\xe7\xb0\x92\x69\xe9\x85\xf0\x04\x5c\x83\x1d\x4b\x50\xe7\x18\xec\x77\x4d\x6e\xa1\x32\xb3\x3a\xa7\x60\xbf\x7c\x4a\x2e\x61\xa0\xa0\x03\x05\xb5\xb7\x60\xa0\xa0\xbf\x18\x05\xb5\xb1\x43\x3f\xea\xd9\xc4\x35\xe5\xb3\x3b\xfd\x64\xf7\x31\x04\xbc\x4d\xa6\x7d\xb4\x61\x6a\xa7\xf5\x07\xd5\xb8\x9a\x17\x93\xe9\xe6\x33\xb8\x56\x93\xe9\xe6\xcd\x4b\x23\x97\x9b\x63\xe1\x14\xba\x27\xa8\xe4\x9f\xa8\xbb\xb9\xa0\x01\x03\x5b\xde\xf5\xf5\x5e\xcd\x6c\x52\x68\xaf\x40\x0f\x11\x49\x79\x6b\xd4\x87\xdc\x7c\xe9\xd4\x1a\x1b\x67\x20\x2b\xde\x67\x32\xad\xb8\x9b\x60\x1d\x3b\x30\xe8\x69\xbd\x08\x20\x11\x9a\x8d\xc1\x7d\xd3\x49\xef\xaf\xaf\x33\x50\xa6\xe4\x69\xc3\x0f\xb4\x16\xd4\x0a\xa1\x46\x45\x29\x40\x99\x68\xd5\x9f\xab\xd3\x7a\x59\xbc\xeb\x6b\xd5\x9f\xae\x87\x57\xac\x5f\x23\xbf\xb4\x3a\x2a\x17\xee\x90\xd9\x42\xa4\xb3\xf7\x69\x0c\x31\x6e\x8a\xac\x54\xfc\xf2\xd0\x9f\xf2\xb4\x3c\x0a\xa8\x2a\x71\x75\xcb\x53\xd4\xcb\x62\x5a\x15\x9a\x91\x38\x4f\x62\xa9\x6e\xea\x8b\xc9\x42\xe7\x26\x5c\xb1\x72\x6b\xd4\x38\xc6\xd3\xa7\x3d\xb5\x85\xd1\x51\x4a\x86\xdb\x1f\x31\x9a\x88\x62\xdb\xf4\x0e\x96\xfd\xaa\x09\xe4\x29\xe8\xd1\xbd\x3e\xe6\xd7\xd7\x99\xd9\x8e\xb1\x53\x0b\xfe\xe8\x7c\x1d\x29\x67\xa8\x8e\x73\xf7\x95\x3a\xc5\x5c\x70\xea\xdc\xff\x27\x9a\x00\xb4\x7d\x06\x80\x56\x8d\xad\x3f\xe3\x22\xbf\x6f\x3f\xf5\x85\x85\xba\x38\xd0\x5f\xc2\xd1\x5b\xc7\xd9\x76\x4c\xca\x61\x6c\xa3\x36\x5a\x78\x79\xda\x8a\x59\xd4\xb3\x94\x1b\x96\x08\xb4\x0d\x15\xee\x46\x72\x5f\x7b\xbb\xaa\x69\x27\x32\x5f\xa2\x1f\x84\x51\xf5\x6a\x66\xbb\x94\xdc\x9d\xaa\x71\xdc\x5c\x38\x97\xaa\x61\x91\x72\x44\x4d\xf5\x5c\x86\x88\x16\xe0\x4c\x7e\x49\x98\x5a\x3f\x5e\xec\x50\x1d\x92\x0d\x5e\x44\x77\xac\x75\x19\xda\xba\x81\xba\x95\xdb\x12\x7c\xfb\xc4\x56\x1a\xcb\x14\xbd\x76\x0f\x32\x09\x9e\xa0\x6a\x2e\x46\xf9\xe1\x76\x45\x88\x64\x40\xa3\x22\x84\x53\x2b\x5a\x27\x0b\x52\xc1\x67\x06\x97\x59\xfb\xdb\x0b\xd4\x70\x91\x0c\xbc\x2b\xae\x5d\xb0\x7c\xc0\x27\x6a\xed\x9a\xd7\x02\xc8\x59\xe0\x77\x22\x19\x73\x8c\xca\x3b\x54\xc0\xba\x32\x67\x38\x82\x23\x72\xa7\xd0\x5c\x15\x39\xbb\xf1\x01\x6a\x7d\x47\x95\xed\x77\x0c\x56\x44\xdd\x94\x0a\x64\x75\xb3\x9d\x9d\x0a\x1b\x19\x41\x3e\xc8\x04\x1c\x2b\xf6\x1d\xb3\x2a\xa6\xb0\x4f\x28\x60\x8d\x26\xfb\x47\xb4\xdd\xdb\xa6\x5d\x45\x5d\xca\x32\x57\x0e\x06\x0e\x28\x99\x26\xc1\x2c\x52\x7a\x94\x94\xbc\x48\x73\x37\x86\xa1\x29\xf9\xf9\xa7\xbf\xb3\x6c\xf5\xea\xe7\x9f\xfe\xf1\x52\xfb\xbc\x83\x39\x92\x85\x44\xcd\xfa\x4b\xc2\x33\xc2\x53\xf1\x3c\x2b\x75\xd7\xdd\x74\x9c\xe0\x55\x8e\x13\xa9\x78\x17\xeb\x00\x20\x84\x2d\x9c\x50\x3d\x85\xe5\x9c\x9d\x14\xd7\x04\x26\x1c\xe2\x4a\x21\x0e\x08\x78\x1f\x8c\x15\x42\x6b\x96\xe2\xb7\xd6\x71\xc4\xd6\xea\xa4\x21\xa2\x2f\xd1\x86\x3d\xe9\xf4\x4b\xf7\xde\xf1\x8c\xd3\x28\xda\x92\xff\xab\x20\x1c\x27\x6c\x04\x5e\x34\x85\x6d\x68\xaa\xb6\x88\xe9\x9c\x9d\x05\xd2\x0f\xf2\xb5\x4f\x22\x50\x8f\xa9\x19\x8a\xec\xbd\xae\x4d\x2a\x85\xd3\xc8\xd0\x86\xba\x85\x3b\x5d\x53\x43\x5d\xa0\xda\x69\x0f\x55\x70\x61\x5a\x6c\x0d\xb9\xd7\x33\x86\x06\x5c\x89\xdf\xc2\x09\xec\xb6\x49\xf8\x22\xe3\x6a\x36\x10\x45\xea\x2b\xdc\xa0\xa1\xd7\xcf\x53\x7d\x73\x75\xd0\x96\x49\xe0\xe9\xf4\x5f\x9d\xb3\xb2\x74\x2e\x38\x5c\x15\xcc\x86\xde\x70\x34\x13\xed\x42\x1b\x3b\xbd\xa2\x85\x9b\xf4\x75\x43\xa6\x84\x4f\xc7\xe7\xad\x11\x59\xff\x4a\x49\x79\x9e\x2a\x07\x4b\x87\x9b\xa8\xf0\xa0\xeb\x11\x00\xd7\xf3\xa6\x25\xcb\xd2\x83\x9d\x4b\x63\x5d\xd4\xb9\xeb\xb8\x1f\x95\xd1\x8f\x78\xe1\x38\x50\xb9\x45\xa3\x3c\xb4\x9e\x84\x3f\x7b\x5d\xe9\x11\xad\x08\x6d\x21\x81\xe8\x3a\xce\xba\x93\xd2\x3f\xd3\x08\x04\xe8\x78\xe8\xeb\x14\x5d\x8a\xe3\x98\xd1\xa4\x70\xf9\x03\x8f\x75\x52\xcc\xab\xb4\x8a\x9b\x9e\x8d\xeb\x26\xab\x95\xc1\x6e\x15\x01\x62\x5f\xd2\x8d\x41\x07\xf9\xeb\xd6\x41\xf2\x98\xae\xe7\x91\x0c\x6e\x9f\x42\x01\x39\x99\x1e\xbd\xfb\x4a\x75\x5e\xd7\x3e\x16\x2f\x9a\xaa\xc7\x72\x42\x75\xbd\x63\xf1\x66\x50\x3a\x0e\x4a\xc7\x41\xe9\xf8\x6f\xa7\x74\x2c\x90\x42\x2f\x8d\xa3\xa8\x63\x97\xf2\xd9\x5d\xdf\xa8\x04\x19\x05\x3b\x07\x21\x6b\x23\x63\x34\x52\x82\x8e\x2f\xc5\x6e\x17\x69\x6c\xe1\xe4\x9e\x91\xd9\xc5\xc9\xc5\x21\x26\x6a\x50\x08\x9b\xce\x91\x3d\x58\x53\x91\x83\x18\x43\xc3\x10\xb8\x84\x31\xf9\x8e\x19\x94\x80\xe7\xa6\x46\x25\xdc\xdd\x67\x92\xac\xa8\x08\x23\x46\xfe\xfc\xfd\x7f\xaa\xc3\x8a\xc0\x89\xb6\x3a\xe4\xda\x29\xa8\x99\x89\xf8\xf8\xbf\x16\x86\x8b\x66\x78\x24\x9d\x2c\xd7\x47\xf0\xf4\xb8\x88\x1b\xee\xe6\x38\x49\x2f\xc6\x3e\x65\x8a\xd6\xd3\xc4\xb5\xfb\x7a\xf6\xbb\xa5\x48\xee\xc3\x81\x77\x05\x5c\x3d\x98\xb5\x0d\x78\xe8\x72\x8a\x6d\x9b\x53\xc8\x22\x96\x39\x99\xf6\xf6\x18\x10\x08\x0f\x3c\xea\xba\x3a\x9e\xaf\x73\xa1\x6f\x8f\x73\xe0\x07\xdf\x1d\x2f\x64\x3c\xa2\xc9\xc8\xbe\xc4\x8d\x57\xc5\xa9\xad\xbf\x51\x50\xae\xff\xa6\xc1\x58\xff\xb9\x0a\xa6\xfa\x5b\x0b\x0c\x03\x1f\xfc\x4f\xe6\x83\x03\x29\x16\x7c\xf9\x54\x8c\xf0\x31\xf4\xee\xe2\x84\xf1\x8d\x9b\x15\xd6\x73\x72\xf1\xc2\x41\xd1\xe1\xc0\x0c\x0f\xcc\xb0\x77\x1b\x06\x66\xf8\xd7\xca\x0c\x23\x5e\xd8\x81\x1b\xb6\x51\x4c\xf9\x3c\x80\x1d\xce\x33\x79\xa4\xc9\x12\x70\xd8\x2e\x52\xfc\x64\xbc\x81\x9f\x52\x37\xa6\xb5\x0b\xad\x1d\x08\xea\x2f\x4e\x50\x91\x3b\x7f\x2a\x82\xfa\x0d\xf4\xee\x22\xa8\xf8\xc6\x4d\x50\xf5\x9c\x5c\x04\x75\x55\x74\x38\x10\xd4\x81\xa0\x7a\xb7\x61\x20\xa8\xbf\x56\x82\x8a\x78\x61\x07\x82\x6a\xa3\x98\xf2\xd9\x9d\xa0\x82\xda\xda\x41\x05\x7b\x2b\x16\x7a\x49\xbd\x6e\x6d\x01\x62\xb5\xc9\xc9\x4e\x4a\x01\x2f\x0d\x9e\x37\x15\x6e\xa3\x62\x88\x81\xe0\xfe\x53\x09\x6e\x2c\x65\xf4\x34\xc4\x76\x2a\x8d\x01\xd6\x26\xb4\xea\x57\x17\x91\x85\x79\x34\x09\x6c\xac\x3b\x19\x88\xeb\x40\x5c\xbd\xdb\x30\x10\xd7\x5f\x27\x71\x55\xb8\xa0\x37\x61\x55\x8d\x1f\x4a\x45\xaf\xf8\x5f\x7b\xf9\x4a\x41\x63\x92\xf2\xbf\x42\x56\xba\x3c\x45\x07\xb7\xd2\xed\x98\xd0\x34\xe5\x4b\xb1\x56\x27\xc3\x9b\xeb\x51\x27\x54\x90\xd1\x98\x9c\x98\x2c\x05\x99\x24\x9f\xbc\xd1\x9d\x69\xef\xf2\xd7\xaf\x3f\x31\x3f\xbc\xf1\x7a\x5d\x79\x88\xb7\x47\x5f\xdf\x58\x8f\x9a\x05\x39\x9e\x9c\x5c\xee\xe8\xd6\x15\xf2\x94\xce\x23\xa7\x92\xbd\x32\x06\xf8\x8f\x9b\xc6\x90\xbf\x34\xc9\x4b\x2f\x6f\xc5\x0c\xa1\xab\xbb\x3a\xe8\x08\xba\xd2\x81\xdb\x05\x3a\x7d\xa9\x0c\xfc\x76\xd4\x1f\xf0\x98\xbb\x6a\x0c\x57\x71\xc5\x89\xba\xda\x68\x41\xd0\x17\xd9\x94\xe9\x05\x47\xd5\xc2\x23\xfc\x68\x3a\xd9\xbc\x86\xac\x02\x77\x34\x09\x9d\xb3\x85\x24\x4d\x19\x9f\xf3\x88\x67\x5b\x85\x28\x32\x8d\x69\xec\x5e\x61\xe9\x98\x4b\x66\xbf\xfa\xca\x09\x00\x74\x83\x47\x8c\x8d\x15\xd4\xa3\xad\xab\x0e\x78\x87\x91\x8b\x09\xdf\xfe\xb9\xf7\x50\xb7\x2f\xb7\x50\xc1\x92\x64\xb9\x10\x2c\x52\x6b\x32\xd9\xce\x72\x8f\xcf\x0f\x41\x2f\xcf\x90\x45\x7c\xc3\x92\x32\xe5\xae\xfa\xa9\x48\x47\x6f\x55\x6a\xf2\xef\x30\xe9\xda\x65\x02\x79\x74\xbc\xa5\x2a\x1b\x77\x60\x32\x9d\x4c\xe1\x03\x5d\xd9\x99\x04\x54\x58\xc9\x1f\xae\xf7\x30\x1f\x84\x29\x2f\x01\x75\x69\x46\x58\x48\xe5\x7a\x6f\x4c\xc8\x91\x6f\xbd\x6b\x5d\x3d\xda\xea\x41\xe7\x97\x48\x11\x77\xc0\xc8\x25\x0c\xd5\xde\x26\x32\xc7\x33\xe2\xad\x0d\x66\xc1\xab\x1a\x97\xd2\x80\x1d\x21\x47\xd6\x1c\xaa\xf3\xf6\xf5\x0e\x13\x34\x07\xbd\x3e\xc1\x3b\x93\x5a\xc3\x9e\x03\x7a\x87\xaa\xdb\xe1\xeb\x93\x96\x49\xb1\x75\x01\x1a\xc3\x91\x98\xdc\x9d\xaa\x73\x61\x76\xa0\x74\xa8\x6f\x2d\x26\xf0\x82\x2f\x30\x25\x92\x71\x6a\x7e\xa9\x66\x51\xc2\xba\xf5\xe8\xb4\x3b\x90\xb9\x45\x1e\x75\xe2\xdf\xf5\xf0\xa9\x3d\x36\xb4\x0a\x4d\x29\x79\x52\xd2\x29\xc7\x86\xb7\x1f\xf5\x49\x6d\x8d\xfb\x26\xeb\x27\x56\x3a\xd5\x80\xc2\xdc\x41\xd7\x7b\xe7\x6c\x03\x69\x16\xb1\xf2\x66\x75\x30\x57\xef\xaa\x07\x8d\x9b\x5d\xa9\xe6\x5b\x9d\x8b\x69\x36\x92\x79\xb6\x94\x5c\x2c\xff\xb7\xa0\xd4\x56\xac\x23\x68\x76\xd1\x13\x1e\x98\x02\xc9\x02\x60\x89\x55\x0d\x5e\x84\x4c\x43\x56\x32\x6d\xd2\x1a\x9e\xa1\xb9\x23\xc5\x84\xda\x08\xa0\x81\x5d\x65\x9e\xa5\x3c\x64\x85\xb4\x01\x8d\xd4\x8d\x77\x75\x0a\x59\xfe\xd3\xbf\xe4\x2c\xa1\xa1\x33\x6f\x6c\x3b\x38\x64\xd8\x3b\xc7\xea\x91\xda\xaa\xd4\x70\x70\x3a\xb3\x86\x3a\x2e\x3a\x7a\xa0\x08\x00\x00\x54\x33\xdf\x62\x22\x0d\xd7\x9c\x8b\x34\xbb\xbb\x1d\xe6\xcd\x7d\x44\xc5\x47\x5e\xed\x6f\xff\x78\x76\x74\xfe\x8b\xdd\x6d\x18\xcd\xc9\x5b\x16\x13\x78\xf0\xe5\xf6\x6a\x69\x9a\xee\x09\x83\x32\xe6\x17\x55\xc6\xa8\x3e\xca\x6e\xd3\xca\x21\x7c\x0a\x15\xcd\x1f\xf2\x39\x3b\x2e\xc7\x3b\xb6\xc7\xab\x2b\x6e\xda\xda\x36\xd5\x39\xad\x2b\xa9\x2b\x79\xda\x1a\x0f\xaa\x9f\x41\xf5\x33\xa8\x7e\xfe\xed\x54\x3f\x6d\xd8\xa4\xa9\x10\xaa\x24\xc8\xab\x03\xf8\x0f\x45\xbc\x91\x85\x92\x6b\x14\xbc\xbf\xb6\xc8\xea\xa2\x0f\xb3\x60\x46\x43\xf1\x19\x53\x16\x9a\x91\x75\xb2\xcd\x0d\x0f\x73\x1a\x59\xd3\xf4\x71\x78\xba\xaf\x9d\x45\xfd\x22\x2e\xb8\x8f\x40\x5c\xe4\xbb\xf7\x4d\xd9\xc4\x6b\x63\xa3\x72\x5e\xde\xc2\x02\xa7\x5a\x73\x30\xdf\x1a\x96\x66\xdf\x14\x3d\x13\x1c\x79\x54\x64\x53\x3c\x3d\xf4\xa8\x4b\xa2\xd0\x94\x08\x78\xc4\x92\x29\x4b\xb8\xf4\xbb\xed\xd6\x91\xc3\x65\xed\x43\x53\xac\x30\xc6\xbf\x32\xa9\xfe\xb5\x90\xc9\xba\x18\x82\x7b\xc3\x36\xcd\x03\x69\x76\xad\xe8\x49\x75\x2b\x80\x1b\x19\x93\x3f\x6b\x75\xdf\x21\xf9\x7c\xfd\xbd\x43\xc0\x30\x4f\xb7\xab\x6f\x97\xa3\xaf\x27\xf6\xb3\x01\x81\x73\xc5\x51\xb7\xed\xb4\x7a\xff\xaf\xb1\xc9\x2b\x2b\x1c\xb7\xef\x06\xdb\x21\xbc\x66\x19\x90\x89\x3d\x30\x1a\x07\xa0\x90\x10\x52\x6e\xd5\x28\x6a\xd9\xdd\x13\xa3\xcb\x7c\xe8\x4a\x7b\xae\x96\x68\x87\xa9\x63\xc5\x13\xfa\x03\x4c\x1d\x6b\x7e\x7e\x54\x7c\x56\xee\x6c\x9e\xc9\x35\xcd\x78\x50\x26\xce\x95\x9d\x75\x48\xaa\x50\x01\x81\x46\xc9\x20\x5b\xad\xa9\x29\x0f\xb3\x81\x49\xdb\x91\x26\xbd\x4b\x8b\xf4\x29\x2c\xf2\xbf\xef\xc2\x13\x38\xb5\x90\x96\xbc\xed\xd0\x54\x57\x7b\x55\x7c\x52\x1e\xfe\x22\xab\xb3\x24\x81\x8c\xb7\x1d\x74\xc7\x3c\x80\x07\xca\xd4\x97\x56\x60\x78\x6a\xaf\x52\xa3\x81\xa7\xc5\x6d\x18\x35\xda\x07\xbb\xe9\x14\x33\x2d\xf8\x4d\xc7\x85\xff\x6b\x60\xb8\xff\x7d\xa7\xba\x6b\xab\xab\xd9\xd9\xfb\x6c\x79\x35\x33\x7b\xdb\xd6\x77\x14\x78\x32\x65\x9d\xac\xa3\x31\x9c\x81\x7f\xc6\x19\x30\xf9\x3e\x3a\x68\x7f\x55\xc3\x5a\xfb\xa6\xed\x1c\x98\xfe\x7d\x6b\x60\x35\xfe\x61\x38\x09\xff\x9c\x93\xd0\xf6\x96\x65\x41\xf8\xed\xa7\xc7\x72\x1d\x63\xcd\x30\x2f\xc4\xaa\x90\x3a\x75\x7e\x56\x83\xd7\x9c\x65\x77\x8c\x09\x18\x63\xf3\xa9\xd7\x26\x01\x1d\x14\x52\x3c\x58\x26\x14\xa8\x5f\xd9\x67\xc1\x82\xd5\xeb\x57\x4e\x60\xb5\x01\x69\xc5\x68\x94\xad\x8e\x57\xcc\xed\x39\x5f\x5d\xda\x37\x56\xe3\xe2\xf4\xcb\xc4\x4c\x25\x2d\x2a\x89\x28\xb6\x0e\x7b\x76\x2e\x0d\x3b\xe8\x45\xe1\xdb\xe6\x1e\xc9\xe5\x95\x62\x1e\x79\xb6\xbd\x0a\x12\xc6\xea\xaa\xb3\xe6\x02\xce\xea\x5f\x98\x6d\x89\xe4\x92\xa4\xfa\x0d\xa1\x73\xb9\x61\x3a\x29\x4c\x24\x97\x4e\x1e\x06\x12\x15\x31\x51\x18\x1d\xd3\x2c\x94\x79\x66\x6f\xc6\x44\x2c\xe4\x6e\x2b\xf2\xeb\xc8\x7d\x82\xba\x57\x13\x52\x6a\xbe\x3d\xa0\x68\xd5\x85\xc0\xd7\x96\x4e\x4a\xaf\x50\xfd\xea\x50\x21\x82\x1a\xaa\xa2\xf8\x20\x93\xec\x39\xa4\xb9\x5b\xe4\x11\x9a\x5b\xc2\x35\xa8\x55\xa0\x54\x1a\x04\x08\x43\x59\x12\x2c\x61\x4b\x83\x2c\xa7\x0d\xcb\x0b\xf6\x88\x49\xaf\xee\x68\x91\x6d\xc4\x24\xeb\xd1\xe6\xf4\xb5\x0c\xb1\xc6\xc7\x5c\x71\x64\x1b\x9e\x48\x70\x93\x21\x1b\x9a\x70\x38\x92\x8d\xf9\xa2\xad\xf9\x36\x9f\xb3\x91\xad\xb9\x89\x13\x19\xb0\xb4\x2e\xa6\xb5\xe5\x7d\x2c\x47\xfb\x96\x3a\xf5\x36\x3b\x7a\xcc\xfa\x90\x58\x65\xdb\x4e\xab\xa3\xd6\xd3\x1b\x39\x00\xe0\x31\xa1\x3b\x81\x00\xc0\xe6\x62\x11\xe5\x98\xec\x08\xab\xca\x43\xfd\x4a\x3c\x20\x5e\x93\x8f\x1b\x83\x26\xf6\xb7\x5d\x97\xb3\x32\x50\x6d\x61\x50\xa9\x98\x6f\x58\xe5\x54\xf0\xd4\x0c\xe0\x5a\x20\xf7\x6d\xb4\x0c\xf7\x75\x62\x99\x35\x4b\x96\x46\x53\x7b\x34\x9d\x94\x8a\x5a\x45\x98\x9c\x97\x5e\x78\x4e\x99\x03\x2e\x1d\xc4\xb8\x5d\xe5\xd7\x00\xce\x63\xaa\xfd\x48\x97\xea\xaf\xc7\xf4\x49\x0f\x15\x60\x63\x11\xbb\xa9\x01\xdb\x38\x87\xc7\xe4\x9a\x7a\xae\x96\xec\xc6\x3d\x35\x16\xdf\x9f\x83\xea\x52\xa1\x54\x19\xac\x5e\x5c\x54\x57\x97\xed\x4c\x16\x79\x54\x35\x4b\x8b\x16\x91\x3c\x95\x26\x91\x3c\x82\xac\x4d\xfa\x9f\x93\x9e\x5a\xc5\xc6\x72\x77\xd0\x2c\x76\xed\xa8\x55\x7a\xee\x51\xb4\x8b\x3b\xac\x9e\xec\xa2\x65\x6c\xc0\xa0\x9f\xa6\xb1\xbb\x53\x60\x4d\x1e\x5d\xdb\x48\x76\xaa\x8d\xdd\xe7\x3a\x90\x01\xaf\xf4\x01\x66\x2f\x45\x65\x13\x38\x8f\xa7\xac\x24\x8f\xaa\xb0\xec\xbf\xf4\x3e\x67\xa8\x55\x79\xd9\x00\xca\x63\x2a\x30\xc9\x2f\x8b\x58\x87\x8b\xf2\x08\xa7\xa5\x97\xfe\x93\x3c\x99\x0e\x94\x3c\x91\x1e\x94\x0c\xc7\xe8\x17\x3d\x46\x3d\x55\xa8\xe4\x29\xd5\xa8\xe4\xa9\x54\xa9\x64\x38\x4c\xbf\xe0\x61\xea\x6a\xd1\x5b\x13\x4b\x9e\x4a\x1b\x4b\x1e\x57\x23\xdb\x07\x78\x1d\x9a\xd9\xe6\x52\x1f\x49\x3b\x4b\x76\xd4\xd0\xf6\x59\x4b\x1f\x4d\x6d\x73\x41\x3b\x6b\x6b\x7d\xcb\x89\xe4\x32\xfd\x08\x8d\x6d\xf7\x0a\x5b\x92\x49\xb7\x68\x6f\x49\xeb\xd1\x1f\xdc\xa0\x7f\x51\x37\x68\x1d\x0b\x01\xac\x2f\x7f\x92\x44\x30\xba\x6a\x1f\xb2\xdf\xf8\xa2\xf4\x74\xae\xbc\x6c\xba\x36\xd7\x66\xa7\xf7\xb9\x70\x66\xb6\x5f\x43\xd7\xda\x7b\xb9\xd0\xb8\x01\x05\x1d\x1c\x98\x07\x07\xe6\xc1\x81\xf9\xd7\xe5\xc0\xdc\x66\x81\x82\x72\x58\x7d\x02\xb2\x21\x35\xbf\x3a\xfe\x58\xd0\x8a\x55\xca\x9b\x63\x5e\x7f\xf5\x47\x61\x74\x71\xda\x3e\xcc\xd7\x18\x4d\x56\x2f\xd6\x05\x95\xc0\x48\x20\x93\x84\xa5\xb1\xa2\x18\x62\x49\x34\xb3\x64\x4a\x2a\xed\x94\x92\xbf\x56\xe5\xe9\x88\x5c\xaa\x09\x32\x11\xd0\x38\xcd\xe1\xde\x96\x33\x72\x4d\xc5\xa3\x21\xc4\x29\x8d\x09\xf9\x4a\x66\xab\x5a\x55\x81\x46\x15\x31\xd5\x51\xbd\x7a\x82\x47\x47\x54\x54\x08\xd1\x55\x0c\x46\x24\x65\x31\x4d\xd4\x21\x25\x32\xcf\x08\x55\xd3\x35\x05\x1a\xb0\x89\xe2\xc2\xa0\xf2\x3c\xf7\x97\xbb\x27\x30\x07\xbd\x5f\x36\xe0\xb9\x58\x62\xbd\x24\x2c\xca\x00\xd5\x5c\x36\xac\x0e\x89\x15\xf5\xf5\x4a\x04\x5b\xc2\xe4\x34\xe2\xdd\x27\x71\xc2\x16\xfc\x9e\x85\x28\x3a\xfc\xfc\xd3\x3f\xce\x65\xf6\xf3\x4f\xff\x18\x93\xa3\x28\x82\x8b\x5a\xed\xdb\xdd\xaf\x8e\x16\xa6\x78\x9c\x8a\x0a\x41\x34\xe3\x29\x58\x69\x31\xf4\x4e\x2f\x24\x93\xd8\xe7\x98\x1c\x01\x29\x6b\x66\x2f\xd2\xb0\x85\xa3\x49\x85\x39\x9e\xa6\x8e\x3d\x2e\x59\x01\x08\x16\xa3\xfe\xd0\xab\xc1\xb2\x5f\xde\xaa\x66\x08\x55\x80\xbd\x7b\x8a\x6a\x00\x18\xb5\x98\xa2\x3b\xb6\xb9\x53\x42\xc4\xe3\xe6\x95\xb4\xba\xe5\x27\x2b\xd2\xd2\xdb\x4b\xe5\xaa\x9c\x58\x41\xd4\x15\x1b\x6a\xed\x68\x80\x05\x15\xae\x65\x8b\xe0\x56\x89\xf4\x24\x0a\x13\x66\xae\x5b\xdc\x13\x18\xc4\xb6\x19\xb6\x84\x71\x7a\x56\x76\xbd\x77\x5e\xff\x18\x28\x98\x20\x32\x46\x33\xbb\x0e\xc8\xf5\x95\x20\x29\x9f\x4a\xd9\x76\xdd\x15\xbb\x57\x04\x2c\x05\xec\x00\xc5\x9d\x2a\x45\xc3\x4c\x4c\x79\x97\x8e\x18\x68\xdc\x0b\x75\x84\x58\xb2\xc6\x0f\x08\xcd\x5e\x5a\x36\x88\x22\xa0\xde\x14\x35\xf1\xa7\x36\xa8\x81\x2c\x2d\xf2\x21\xc0\x5e\x2a\xf2\x07\x41\xbf\x70\x90\x1b\xb0\x69\xef\x54\x5d\x80\x02\x8a\x4a\x32\x42\x66\x2c\x34\xfe\x11\x29\x5d\xe3\x15\xd0\xf1\xa3\x10\x52\xdd\x47\x1b\x63\x59\x9e\xf4\x19\x4b\x8a\xf9\x92\xf9\x16\x27\x5b\xd4\xb0\x2f\x56\xd4\x0f\x14\xba\xa8\x9d\x9a\x17\x62\xbf\xb7\x32\xa9\x72\xce\x8a\x5b\xd3\xf5\xd4\x76\x84\x08\x5f\xc7\x11\x2f\xab\xf9\x31\x62\x1f\xb2\x88\xaf\xb9\x0e\x9a\xc5\x99\x2a\xf2\xa6\x60\xd2\xde\x67\x51\x55\xac\x84\x09\xb7\xe0\x5b\x46\xbc\x50\xbc\xa3\x95\xa5\x74\x18\xe3\x3c\xcb\xff\xb0\x84\x8a\xe2\x2f\x5e\x7e\x68\x02\xc0\xac\xb1\x43\xa9\xb3\x13\x00\x1a\x15\xcc\xdb\x3b\x97\x49\xc5\xc8\x59\xee\x62\xa5\x9b\xfa\x5e\xb6\xf7\xe9\x5d\x67\x75\x15\xe8\x40\x04\xbc\xff\xae\x07\x99\x42\x9a\x0b\x28\xdb\x58\xde\x46\x0f\x4d\x28\xc0\xd8\x4b\x37\xe6\xa9\xbe\x5e\x3e\x55\x73\x38\xcb\x52\x3f\xce\x53\x7c\x3a\x24\x95\x4d\x7d\x15\x0c\xcb\xc7\x50\x37\xd8\xc2\xb2\xe0\x93\x1b\xe5\x15\x58\xad\xe3\xe0\x54\x51\x5e\x25\x8d\x08\xd4\x72\x2d\xca\xc8\x2e\xf9\x86\x09\x9d\xb5\xa3\x3d\x32\xc6\xcf\x20\x5a\xe3\xf6\x34\x21\xb6\x54\x22\x28\x1f\x21\xb3\xf3\xdd\xf6\x04\x3f\x30\xaa\xa9\x1a\x5f\x65\x56\xac\x9a\x74\x50\x0e\xb5\x8f\xff\x72\xb0\x98\x7a\x2a\xed\x95\x4f\x1d\x18\x58\x76\xaf\x1d\x1a\xd0\xa6\x0f\x38\xc8\x15\x57\x3c\xb5\x2c\x8a\x2d\x9a\x12\x6b\x29\x59\xd1\x0d\x33\xf5\xfb\xf8\x02\x4e\x57\xdc\xdd\x2d\x28\x01\x4d\x6e\x04\xc2\x33\xa3\xb9\xc3\xe9\x4e\x75\xef\x9a\x59\xd2\xb8\x5a\x49\x1e\x1d\x50\x97\x48\xc3\x32\xcc\xaa\x30\x3b\x9e\x9a\xbc\x3e\xef\x4f\xa6\xde\xa4\x31\xf8\xf4\xd9\xd5\xf6\x72\x7b\xf8\xf4\x2c\xba\x57\x6d\xdc\xc7\x89\xa1\x4f\x01\x3e\x7c\x1e\x52\x86\xcf\x3c\x7d\x0f\xe4\xee\x7c\xe3\x79\xf9\x51\xc7\xb1\xec\xc7\x28\xe8\x93\x49\xae\x98\x45\x5c\x10\x0b\x2b\xd9\x21\xcd\xe7\x59\xc4\x14\x1b\x8c\x92\x94\x1e\xab\xbd\xcf\x82\x21\x6a\x3d\x2a\xfd\xf6\xcc\x57\x1c\xd3\x03\x9e\xeb\xbd\xe2\xc6\x76\x91\x95\x2e\xbe\x81\xf5\x21\x2b\x2b\x10\x85\xb5\x42\xe9\x85\x25\x5f\xbc\xec\x38\x86\x32\xc9\xb0\x07\xe4\x26\xed\x32\xb8\x29\x23\x09\x15\x4b\x96\x1e\x18\x7d\x1c\xa4\xdc\x6a\xcd\xf4\x84\x0f\xb7\xe5\x72\x7d\x75\xc0\x68\x82\x50\x4e\x0d\x04\xb4\x72\x4b\x0f\xd3\xc1\xe3\x2c\x70\x0f\x90\xb9\xe9\x8b\xc1\x3a\x31\x00\x36\xdd\x09\x83\x75\xac\xbd\x44\x6f\x35\x0c\x76\x8d\x38\xec\x5a\x63\xb1\x6b\xc4\x63\xd7\x0a\x93\xb5\xf2\x3c\x03\x2e\x83\xa7\x17\x2e\x4b\x1f\x20\x00\x77\xcb\xbd\xad\x2a\xbc\xf2\x71\xca\xbd\xe4\x45\xca\x98\xd1\x7d\x01\x2a\xa3\xeb\x38\x62\x24\xdd\x8a\x8c\xde\xbb\xd2\xfd\xd8\xcf\xf5\x75\xab\xd8\xac\x79\x48\x9f\x58\xdc\xde\xb7\x51\x79\x55\x4a\x81\x36\xa5\x61\x53\x9d\x19\xc6\x56\xa7\xa7\x03\x08\xda\x3f\xdf\x58\x03\x3a\xa8\x02\x82\xc7\xa2\x26\x1d\xb2\x2a\x8b\xe4\xdd\xcb\xfd\xea\x94\x2d\x60\x23\x54\x75\x0d\x33\x63\x9a\xed\x80\x03\xea\xb9\x40\x7f\x39\x5b\x31\x92\xdd\x49\x38\x6b\x90\xa4\xc2\xbc\xd3\x25\xb4\xe7\x59\xb4\x2d\x33\xe4\x75\xec\xdd\x85\x30\xab\x37\x1e\x3c\xa5\x5e\x95\x59\xd2\x2b\xae\x46\x82\xf7\x9c\x6e\xdf\x4d\x13\xee\x56\x32\xd2\x9b\x74\x08\x5b\x74\x7d\x5d\x12\xe4\xdf\x03\x76\xf9\xcd\x8a\xa6\x2f\xd6\xdb\x1b\x70\xad\x7b\x09\x78\x47\x23\xf9\xae\xeb\xac\x13\x3e\x1a\x45\x03\x16\xd2\x87\xf9\xa1\xe3\x43\xe9\xfa\x1f\xaa\x71\x7b\x9e\x37\xe8\x2f\x94\x90\x49\x0b\xb0\x34\x1a\x8b\xe6\x2c\x22\x3f\xff\xf4\x77\x33\x51\xd0\x8e\xea\x05\xf5\x3e\x16\xb8\x60\xef\x7a\x9b\x4b\x52\x73\xf0\xe5\x7c\x2d\x9f\xf6\xd5\x16\x0b\x6a\x5f\x4c\xb7\xc2\x61\x56\x04\x63\x20\x2b\xa5\x35\x05\x11\xa0\x55\x9d\x87\x12\x4c\xcc\xc5\x3a\xba\xa7\x2e\xa4\x18\x69\x2f\x15\x6d\xe4\x22\x77\x2b\x96\x30\xad\x13\x59\xc8\x64\xcd\xea\x3a\x08\xdd\x7b\x0f\x5d\x5c\x13\x30\x56\x4a\x86\x47\x10\xe0\xab\xce\x74\x3b\xf0\x5d\x55\x7f\xba\x5f\x8e\xff\xaa\xa1\xe4\xf6\x3e\x1d\x9a\x4c\x4a\x62\x19\x9a\xc0\x1b\xb4\x6b\x14\xe8\xb9\x87\xe7\x5f\xe1\xfb\xd7\x7a\xda\x7a\x7b\x9a\xdb\x56\x76\xff\xd3\x8c\x42\xf9\x78\x70\x93\x87\x80\xbc\xbb\x4b\x9f\x02\xd9\x01\xf6\x5e\xd0\x26\x96\xb7\xe5\xdd\x4a\xa6\xa6\x28\x7f\xa1\x89\x84\x22\xdc\x5d\x7d\xf4\x61\xec\xc8\x4e\xae\xf1\x3d\xb9\x24\xd2\x97\x53\x22\xcd\xfb\xd5\xc9\x2b\xfd\xfb\xee\x74\x45\x4e\x2a\x35\x6e\x88\xf5\x8b\x7c\x96\x64\xd2\x99\xae\x85\x58\xd6\x85\xa6\xd1\xa0\x94\x43\x74\x92\x49\xb6\x55\xbf\x77\x77\x7a\x74\x7e\xf2\xdc\x99\xfe\xb3\xfa\xec\xa6\xcd\x6a\x77\x57\xed\x6e\xb3\xca\x32\x57\x22\x6f\x7c\xaa\x71\x3a\xb3\xd9\xb4\x34\x22\x79\x2d\x6b\xea\x78\xa8\xa6\xfe\xa9\x17\x7e\x84\x1f\x65\x54\x5b\xb3\x6c\x25\xc3\x1d\x68\xcf\x3b\xfc\xe0\x71\x69\x0e\x2e\x19\x2e\x87\x5e\xb7\xe5\xbd\xa1\xfa\xc4\x2c\xb8\xac\x33\x49\x90\xc1\x4a\x2c\xc4\x5e\xcc\x6c\x5f\xb0\xf1\x72\x4c\xbe\x3e\x9d\xed\x93\xe9\xfb\xd9\x3e\x61\x59\x30\x7e\x49\xde\xe5\x51\xc6\xe3\x2e\x0d\x9d\x06\x11\x9c\xda\x8b\xcb\xe7\x8a\x89\x58\x42\x14\xc8\xbf\x96\xc6\x35\xa6\xd9\x6a\x87\x7d\x7c\x3e\x55\xed\x9f\x62\x1b\xbb\x76\xb0\xdb\xc2\x60\xef\x20\x4c\x73\x5c\x6c\x15\x2e\xd3\xec\x45\xdf\xcd\x20\x84\x8d\x97\x87\x64\x44\xd8\x3d\x0d\xb2\x43\x72\xb0\x90\x92\x8c\xb4\xdf\xc2\x21\x39\x98\xd3\x84\x9c\x5f\xcc\x4e\x0f\xd1\x27\x82\x89\x2c\xd9\x92\x75\x17\x71\xb9\x38\x3f\xfb\x93\xc6\x63\x5b\xc2\x38\x88\x0e\x94\x7c\x80\x31\x3e\x10\x70\x57\xf8\x80\x43\x7c\x30\xde\x0a\xb3\xae\xa5\x6f\x68\xc4\x43\x5a\x88\xa8\xe0\x4c\x8b\x09\xa1\x33\x57\x06\xe8\xf2\xe9\x73\xde\x6a\x3e\xbf\xb3\xd9\x54\x41\xb7\x40\xc5\x70\x14\x00\xe8\x0a\xc8\x96\x03\x43\x07\xaa\x9d\x64\xe0\xae\x35\x67\x06\x08\x5a\xfa\x55\xec\xf7\xa1\x01\xf9\x75\xfe\xea\xd5\xa7\x81\xea\x18\xfe\xc5\x0e\x75\x30\x7e\x2f\x61\x0d\x8f\x19\xcc\x0a\xba\x53\xc8\x22\x29\xb6\xaf\xec\x7a\x84\x3f\x7d\xdc\x08\xd8\x47\x87\xfb\xfa\x0e\xf1\x8c\x08\x80\xc7\x65\x80\xf4\xd2\x1f\xb3\xd3\xbe\x01\x87\x3d\x90\x51\x77\x57\x3c\x58\xf7\xa4\x97\x93\xe3\x77\xd3\xbe\x76\x4b\x40\x44\xfe\xb9\xdb\x18\xca\x4a\xe2\xad\x66\xab\x03\x48\x30\x15\x39\x0c\xa9\x79\x33\x5d\x82\xa1\x45\x88\x43\x87\x51\xa0\x5d\xf3\x8a\x7a\x75\x51\xd5\xaa\x16\xc9\xe0\x0b\x5b\x8f\x1a\xa7\x4d\x8e\x04\x2b\x90\x6a\xb4\x79\xd3\x62\x08\xea\x75\x12\x83\xf6\xc0\xe9\x3a\x8d\x07\xae\x44\x0a\x1b\x4a\x00\x94\x00\x4b\x22\x4c\x16\x56\x92\xf0\x6e\xf2\x30\x53\x00\x46\x27\x51\xf0\x99\x82\x72\x13\x36\xac\xb4\xce\x1d\x14\xea\x19\x0b\x56\x82\x07\xcd\xa4\x1e\xd5\x07\x04\x7a\x54\x5a\xf1\x75\x2c\x53\xf4\x10\x81\xac\x0d\x2c\x11\x2c\xfa\xf9\xa7\xff\x49\x09\x8f\x33\x8c\x5e\x58\xf0\x84\xdd\xd1\x28\xea\x98\x2c\xe2\x0b\xad\x50\xc8\x53\x34\xf8\x33\xb1\x90\xe8\xc0\xaa\xbd\x47\xba\x2f\x47\xa7\xee\x19\x9a\x7d\xfc\x76\xa8\x6e\xc6\x04\x7c\x20\xd8\x3d\x28\x5c\xbb\x54\xb7\xb8\x0b\x72\x41\xbe\x40\xb7\x43\x58\x21\xf4\x75\x1a\xac\x24\xb9\x44\x92\xad\x73\xba\xc7\x5c\x2c\xd3\x76\xdd\x6d\xaf\xf5\xf6\x40\x07\xb1\xdb\xff\xdb\x03\x90\xc9\xd4\xf8\x81\x7f\xb4\x43\x43\x45\x30\x43\x6e\xdc\x86\xf2\xd4\x68\x74\xbd\x50\xe8\x01\x01\x8f\x27\xaf\x67\x71\xef\x74\x6b\xcb\xd3\xac\x48\x06\x03\x0e\xca\xc9\xba\x4c\xf2\xef\xf2\xaa\xae\x2e\xee\xa3\xd0\x46\x33\x7a\xc2\xd3\xae\x6f\xba\x9a\xf2\xe9\x4b\x98\xaa\x85\x19\xca\xf9\x68\x0f\x74\xd4\x36\xdf\xb2\xad\x3e\xda\x31\xe5\x3a\x19\x4d\xfb\xf0\x4a\xa8\x25\xec\x3e\x4b\x68\x05\xa6\x74\x2e\xf3\xac\x07\x29\x79\x2c\xb9\x51\xc8\x4c\xdd\xbe\x7e\x27\xe3\x1c\x1b\x77\x58\xa2\xa1\x49\xbb\x47\xc8\x40\x32\x06\x92\xf1\x6b\x27\x19\x42\x66\x86\xb5\xf2\x82\xa5\xdd\x5e\xdc\xd3\x52\xdc\xcf\x46\xdc\x70\x65\x32\x6c\x5f\x87\x37\x93\x6e\xe6\x07\x58\xc7\x4d\xee\x61\x94\x7e\x98\x39\x3a\xfe\x57\x05\xee\xf5\x9e\x0d\xdb\x47\xa4\xfe\x0d\xb5\x2c\x44\x02\xd8\xbc\x80\x81\xc9\x18\x4e\x3d\x4f\xda\x5c\x73\xb4\x5f\x99\xde\xe7\x53\xf0\x7f\xbf\x84\xe0\x0d\x13\x8a\x80\xbe\x33\x2f\xe6\x2c\xa0\x79\xaa\xbd\x39\x3a\x1c\x83\x8b\x29\x06\x2c\x81\x3e\x0a\x8f\x90\x97\x68\x4e\x7c\xa7\x63\x12\x2a\xfe\x2d\x5d\x44\x16\x1d\x5f\x0e\x6d\xdf\x8d\x7d\xdb\x73\x03\xff\x00\x69\xa5\xf2\xd7\xe6\x4d\xf9\xf7\xd5\xf1\x0c\xdf\xfa\x87\xd1\x3d\x9e\xf1\x8c\x19\xf7\x10\x2a\xcc\x01\x31\x26\x05\x70\x92\x21\xaf\x47\x9f\x7c\xfe\x79\x8b\x8d\xed\xe9\x8e\x3d\x9a\x11\xfb\xd1\xe3\x2b\x74\x44\xea\x17\x2a\xd1\x52\x40\xcf\x8c\x3a\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xee\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xf8\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\xcf\x10\x25\x31\x44\x49\x14\xcf\x10\x25\x31\x44\x49\x3c\x7d\x94\x44\x4b\xa2\x5b\x25\x63\x60\xbe\x33\xd7\xbb\x3e\x65\xf8\x9c\xa7\x5c\x67\xc7\x7b\x40\x9a\x43\xfd\xe5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\xfa\x51\xe3\x90\xe7\x70\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x2f\x9f\xc1\x82\x6f\x3d\x83\x05\x7f\xb0\xe0\xeb\x67\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x5c\x36\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\xcd\x67\xb0\xe0\xd7\x9f\xc1\x82\x3f\x58\xf0\xeb\xcf\x60\xc1\x1f\x2c\xf8\xc5\x33\x58\xf0\x07\x0b\xfe\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x7d\x46\x18\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\xd2\xaa\x21\x69\xd5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x6c\x9b\xff\x90\xe7\x70\x20\x19\x03\xc9\x18\xf2\x1c\x0e\x79\x0e\x6b\xcf\x90\xe7\x70\xc8\x73\x58\x7b\x86\x3c\x87\x7e\x21\x72\xc8\x73\x38\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xb4\xac\x78\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xc2\xb7\x92\x01\x97\x0d\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\x7c\x86\x28\x89\x21\x4a\xa2\x78\x86\x28\x89\x21\x4a\xe2\xdf\x31\xcf\x21\x24\x2f\xec\xca\x72\x78\xa1\x1a\xb5\x9c\xe1\xd2\x3b\x3a\x33\xf9\x10\x3d\x8c\x2f\xfa\x82\x60\x86\x39\x60\xf1\x55\xa7\xa0\x13\x0f\xc7\xc8\xf5\x17\x3a\x8b\x15\x5f\x2a\x16\xea\x7a\x0f\xfa\xbb\xde\x83\xcd\xd6\x6d\x5d\x5d\xd3\x85\x22\xff\x19\xa0\x17\xe8\x20\x92\x77\x2c\xc1\xd9\xa0\x77\x8d\x35\xb9\x94\xc8\x35\xcf\x32\x16\xee\x2b\xe9\x15\x5d\xb3\x5d\x9d\x06\x52\xa4\x1c\xd3\x3b\xa2\x74\x7a\xbd\xc7\xc5\x82\x0b\x9e\xb1\xeb\x3d\x32\x22\xe0\xd1\x61\x2d\xc7\x88\x03\x7a\x9e\x24\xa2\x69\x36\x26\xc5\xca\x9c\x20\x51\x73\xe5\x21\x13\x19\x0f\x68\xa4\x27\x58\xef\x87\x0b\x42\xa3\x78\x45\x45\xbe\x66\x89\xd5\x0e\x32\x2b\xba\x7a\xd5\x26\x34\x2d\x48\xa1\xd9\xd2\xa9\x04\xc4\xb3\x21\xf2\xf5\xbc\x29\xe3\xb6\x20\xbd\x9a\x50\x38\xb3\x05\x0c\x3c\x28\x96\x98\x91\xa7\x9a\x63\xe2\xc1\x2d\xfe\x47\xe6\xce\xf3\xaf\xa6\x5c\x63\x18\x2d\xe0\x6a\x3f\x62\x0b\x2c\x99\xd4\xfa\x8d\x16\xb6\xb7\x9c\x47\x4a\x16\x32\x8a\xe4\x1d\xb8\x04\x6a\xd9\xa7\x90\x06\x10\x2d\xfd\x1e\x59\x63\xbc\xed\x37\x11\xcf\x58\x42\x23\xf5\x8b\xab\xe7\xeb\x6b\x32\x42\x3f\x7a\x75\x50\xd6\x31\x4d\x78\x2a\xc5\x3e\x81\x40\x1a\xc3\xd3\x9a\x2e\x17\x52\x92\x39\x4d\x80\xcf\x2e\x86\xfb\xcd\x8e\xc3\x95\xe3\x29\x8e\x9c\xfd\x25\xa7\xd1\x97\xe8\xf8\x65\xf0\x2c\x5f\x68\x04\xcb\x53\x68\x63\x74\x46\xc5\x90\xee\x7b\xf9\x03\xcc\x83\x96\xce\x0a\xf3\xf2\x9f\x01\xfe\x73\x3c\x1e\x93\x1f\xad\x19\x64\x49\xce\x8c\x07\x77\xe1\x00\x85\x63\xfc\x91\xb8\x5d\x2e\xb5\xb2\xac\x63\xa8\x72\xae\x6a\x01\x5c\xf4\x98\x9c\x6b\xb0\x1d\xe7\x0b\x83\xb5\x4d\xd0\xbd\x25\xd6\x9c\x95\x3c\x05\xfd\xdd\x28\xee\xe6\x65\x39\xf4\xac\x18\x99\x66\xe5\xee\x58\x3b\xf3\x1b\x38\xa4\x4e\x9c\xaf\xbb\x28\x04\x6b\xb9\x80\xb6\x20\x59\xc1\xff\xf3\x57\xaf\x3e\x79\x83\xff\xc5\x37\xc5\x37\x57\x2b\x99\x64\xa3\x80\x27\x41\xce\x33\xa0\x9b\xfa\x23\xd7\x40\x7f\xfb\x5b\xeb\xd7\xa0\x81\xcb\x5e\x60\x9b\x97\x45\xa3\x98\x26\x4c\x60\xae\xd5\x65\x22\xf3\x58\x31\x0b\xd7\xd7\x19\x8d\xa2\x17\x4e\x4d\xaa\x4e\xfe\x89\xb6\xf1\x02\x5f\x98\xde\xcc\x19\xa6\x51\x64\x09\x48\x70\x41\xcf\xf0\x3c\x20\x07\xe0\x26\xee\x54\x5d\x6d\xc4\x33\xc6\x7d\xc8\x46\x99\xe9\x3e\x19\xed\x93\x1b\x80\xc3\xc1\x98\x5c\xc1\x95\x23\xfa\xca\x79\x3b\x5d\xcb\x84\x91\x58\xf1\x46\x69\xca\x37\x8c\xcc\xd1\xf5\x75\x6b\x04\x73\xad\x32\x21\x2c\x0d\x68\xcc\x48\xb0\xa2\x09\x0d\x32\x96\xe8\x69\x9f\xa2\xff\xa0\xf3\x32\xbc\x00\xc4\xbf\xa6\x21\x1b\xe5\x31\x1e\x8b\xf4\x65\x81\x8e\x20\xe2\x42\xa3\x8e\x3b\x36\x57\xcc\x17\xd3\xc8\xc3\xde\xf1\x90\xc5\x91\xdc\xae\x99\x70\xa2\x53\xfd\x7d\x9c\xc8\xd0\x1c\x52\xe8\x57\xdd\x29\xc0\x49\x89\x14\x4a\x40\xb7\x8e\xba\x92\x69\xf1\x87\x1f\x55\xf3\xb2\x7f\xf2\x9b\xdf\xfb\x6e\x40\xc8\x36\xa6\xfb\xdf\x90\xda\x2d\x70\xa1\xb2\x36\x8e\xaa\x2a\xca\xb6\x18\x5a\x5a\xe4\xd8\x76\xae\x7b\x81\x4e\x55\x25\x59\x70\x2d\xcb\x50\x2c\x3c\xa3\x9a\x1d\xc6\x34\xc6\x52\x98\x49\x1a\x4e\xd7\x65\x30\x69\x5b\x23\xa8\xcb\x7a\xd0\x54\xd0\xaa\x71\x11\xf2\x00\xf8\xf2\xbb\x15\x44\xf1\x21\xf5\xd2\x24\xd1\xf2\x27\xd0\x79\x8e\x9d\x78\x4a\xdd\x3b\xa9\x13\x1d\xef\xeb\xbf\x14\x4f\x3d\x26\xe8\xbd\x03\xd4\xe4\x3e\x56\x4c\x4a\x16\x6d\x2d\x96\xfa\x05\x24\x69\x76\xba\x65\x59\x78\x54\x90\x20\x61\xda\x6d\x38\xd5\xb7\x5b\x26\x44\xf0\xe8\xe5\xbe\x71\xfc\x0d\xd9\x82\xe6\x51\x96\x12\x5c\x96\x02\x5d\x12\x7a\x58\xea\x4c\x92\x3b\x85\x2b\x27\x3a\x95\xb6\x9a\xc4\xa9\xfe\xa7\xba\x8f\x1a\x73\x16\xb9\x8a\xc1\x53\x05\xd5\x91\x7a\x18\x57\xaf\x3c\xc5\xdb\x35\x22\x7f\xd6\x7c\x91\x9a\x8a\x19\xe3\xfb\x7d\x4d\x1c\x14\x97\x09\x2a\x2f\x33\x24\xe6\x93\x7e\xc1\x45\x10\xe5\xde\x19\xaf\x18\x09\xa8\xe2\x3c\xa1\x83\xb2\x1b\x82\xe4\x59\xc8\x62\x31\xd0\xdd\x4b\xc7\x4c\x4e\xbd\x79\xaa\xeb\x73\xab\x4c\x4c\xa1\xa4\x7a\xf7\xfe\x75\x3a\x8f\x47\x7d\x0e\x8d\x01\x41\xfe\x72\xec\x06\xe6\x38\x77\xe3\x05\x81\x47\xab\xca\xeb\x27\x8c\xaa\x7b\x14\xdc\x12\xba\xa4\x5c\xec\xeb\xd3\x80\x4a\xbb\xe8\x8e\x6e\x53\xed\x9a\xe9\x3c\xc5\xc6\xce\x86\x06\xb6\x7d\x22\xd8\x86\x25\x95\xf3\xe6\x54\xa7\xf5\x4c\x83\x5e\x42\x81\x30\x20\x1a\x85\x2a\x3a\x96\x69\xca\xe7\x91\x19\xb8\xf4\x20\x50\x1f\x5c\xc5\x2c\x70\xcb\x7b\xb8\x36\xbf\x4f\x45\xbb\x64\xe9\x15\xda\xdc\xb2\x5e\xf3\x57\xa0\x19\xa1\x6d\x29\x4a\x33\x99\xd0\x25\x33\x3f\xa5\x19\xcd\x72\x04\x0c\x2a\x4c\x59\x78\x6e\xa9\xb2\x6e\xb9\x08\x15\x1e\x32\x20\x8d\xa3\x3c\xa1\x51\xf9\x4b\x20\x05\xda\x2e\xd2\x43\xf2\xe7\xef\xd5\x2f\xaa\x7f\x16\xea\xc0\x23\xfd\xeb\x68\x34\xd2\xff\xa1\x31\x37\x21\x4c\x84\xc6\x9c\xdd\x67\x4c\x40\xc3\xf1\xed\x17\xe9\x98\xcb\x83\xcd\xeb\x6b\x81\x83\x1e\xe7\x69\x26\xd7\x97\x0c\x75\xb1\x27\x0c\x24\x2e\x40\xd5\x95\x40\xa1\x66\xec\x4d\xa1\x62\x4d\x46\x4b\x26\xc6\xb7\xf9\x9c\xcd\x73\x1e\x29\x11\x50\x0d\x60\x86\x7f\x11\xb2\x0d\x8b\x80\x45\x31\x98\x6b\xc6\xd7\x2c\xcd\xe8\x3a\x56\xc2\x50\x04\xde\xe6\x8a\x80\x1d\x12\x81\xee\x60\x29\xcb\xd2\x71\x90\x84\xe3\x38\x91\x0a\xc6\x01\xa0\xb5\xb1\x4c\x96\xd7\x42\xe1\x4b\x98\x00\x30\x41\x87\xc4\xd3\xac\xaa\x29\xc4\x95\xd6\x7d\xd6\x22\x9e\x66\x7f\xa8\xbd\x39\xe3\x69\x56\xdd\x02\x6b\x4e\x7a\x67\xb9\x58\xe6\x11\x4d\xec\x57\xb0\x23\x81\x54\xc7\xa2\xf0\x4e\x03\x59\x71\x63\x36\x48\xfd\x31\xd2\xcb\x54\xc0\x87\x9e\x82\x15\x5b\x97\x71\x58\x32\x66\xe2\x68\x3a\xf9\xf6\xd3\xab\xea\xef\x4d\xa7\x30\x3d\x59\xe3\xde\x50\x0e\x39\x62\x7f\xc9\xf9\x86\x46\x0a\x65\xeb\x9b\x53\xf7\xd7\xb3\xae\x87\x47\xeb\x6a\x1d\x9e\xea\x6d\xa8\x06\x6c\xab\xa9\x6a\xcb\x19\x3a\x93\xe2\x64\xf4\x8a\x59\xa8\x97\x87\xf3\x00\x7c\xa4\x89\x09\x75\x69\x56\xe4\x02\xf8\x07\xb8\x53\x63\x60\x32\x58\x92\x1a\x31\x34\x90\x62\xc3\x92\x8c\x24\x2c\x90\x4b\xc1\xff\x5a\x74\x9e\x1a\x5b\x1e\xd4\x51\x68\x90\x22\x2e\x32\x96\x28\x76\x04\x90\xc9\x3e\xa0\xd3\x35\xdd\x92\x84\xa9\x61\x48\x2e\xac\x0e\x8d\x27\xc1\x3b\xc5\x86\x72\xb1\x90\x87\x90\x46\x23\x3d\x3c\x38\x58\xf2\xcc\xdc\x9b\x40\xae\xd7\xb9\xe0\xd9\xf6\x00\x8e\x3f\x9f\xe7\x99\x4c\xd2\x03\x38\xe3\x07\x29\x5f\x8e\x68\x12\xac\x78\xc6\x82\x2c\x4f\xd8\x01\x8d\xf9\x08\xe6\x2e\xe0\xe2\x8c\xd7\xe1\xb3\x44\x5f\xb4\xf4\xb9\x0b\xd3\x34\x11\x14\x1c\xdd\xb6\x6d\x50\x27\x58\x47\x9f\x21\x9f\x8d\x8c\x42\x01\x6d\x63\x46\xbd\x3c\xbd\x9a\x11\x33\xba\x33\x52\x0f\x81\x5f\x7e\x99\x96\xfb\xa0\x80\xc6\xc5\xc2\x70\x44\xa0\xca\xb4\x15\x08\x48\x94\x23\xee\x60\x8e\xd3\x7c\xbe\xe6\x59\x6a\xe5\x5f\x90\x63\x72\x0c\xe8\x44\xd1\x9f\x3c\x0e\x69\xc6\xc2\x31\x99\x08\x72\x4c\xd7\x2c\x3a\xa6\x29\x7b\xf2\x5d\x00\xb6\x70\xa4\x60\xdb\x77\x1f\x3c\x51\x93\x3e\x65\x60\x81\xa6\x3c\xdb\x56\xde\x47\x45\xd3\xaa\x4e\xfb\x26\xc6\xa3\x8c\xab\xa4\x0d\xdc\x55\x3e\x66\x4b\x6b\x64\xaf\xc5\xa2\xe2\xf1\x41\x6d\x14\x5b\x31\x6e\x32\x93\x69\x81\xe9\x50\xae\x9e\xb3\x48\xaa\x53\x25\xb5\x76\x87\xb9\x0c\x0a\x7e\x4e\xe0\x7f\x19\x2d\x7e\xa6\x23\x33\x0e\x09\x12\xa8\x83\x8c\xad\x63\xc0\x57\x07\xf8\x03\x78\x9e\x94\x16\xcb\x24\x1d\x25\x73\x1a\x8c\xb7\x74\x1d\x5d\x8b\x1f\x7e\xe0\x0b\xc2\xfe\x42\xc6\x97\x5f\x1d\x1d\x1f\x4b\xb1\xe0\x4b\x72\xbd\xa7\x1a\x5c\xef\xfd\xf8\xa3\xea\x7d\x02\xcc\x32\x23\x94\x04\x51\x9e\x66\x2c\x49\x64\xc4\x8a\xe2\x1f\xf5\xbe\x41\x7b\x26\x05\x13\xd9\xbe\xfa\x18\xca\x87\x00\x06\xc9\x0c\x2a\xf5\x4c\xca\x48\x62\xa5\x39\x4f\xf3\x0f\x38\xe8\xa5\x8c\x58\x95\xef\x80\x45\xd0\x3c\x5b\xc9\x84\xff\x15\xdd\x18\x2c\xe6\xa3\x72\x9f\x90\x2c\x7a\x06\xbe\x16\xc0\xfa\x42\xc3\x67\xe4\x5c\x86\xa8\x97\x20\x77\xda\x5b\x21\x93\x64\x2d\x05\x07\xaf\x3c\x99\x90\x90\x45\x0c\xef\x39\x92\x5c\x1a\xf3\xaf\x15\xab\xa0\xf6\x45\x6d\xe1\xf7\xb8\xab\x05\x1e\x2e\x8e\xe8\x88\x08\xd5\x37\xfe\xb9\x61\xc9\xdc\x7e\x75\x67\xbb\x57\x8d\xe0\x6a\x94\x7f\x2d\xf1\x56\x3e\x23\x53\x93\x98\xe7\x2f\x39\x4b\xb8\x56\x90\x14\x39\x53\xd8\x3d\x4f\x33\x26\xf4\x55\xdd\x69\x66\xb1\x0c\x3d\x13\x2b\xc6\x9e\x4c\x8f\xde\x95\xdf\xea\x30\x0c\xc1\x63\x28\x31\x14\x2a\x61\x49\xe0\x02\x75\xf8\x47\xc4\x32\x6d\x91\xa9\xcf\xc4\xcd\x52\xb5\x4d\x8f\xc7\xb1\x94\x91\x67\x86\x06\x56\x1f\x3f\xcc\x3c\x92\xc1\x2d\x5d\x20\x87\x5a\x6a\x7a\xd4\xf8\x74\x0d\x2f\x6b\xbf\xad\xa8\x08\x23\xdf\x96\x2e\x59\xe6\xdb\x50\x60\x54\x59\xf9\x37\x12\xa9\xf2\x6f\x84\x1e\xc2\xbd\x71\x4f\xd6\x54\xd0\x25\x4b\xc9\x4a\xa6\x99\xe5\x7b\xf0\x28\x10\xa8\xf4\xf9\xa4\xcb\x3a\x67\x2c\x04\xd5\x81\x92\x3d\x33\xa9\xdb\x1a\x14\x63\x05\xa9\x3f\xd6\xd2\x1c\x3d\xf7\x58\xa0\x7f\x49\xcf\xc8\x1f\xf2\x39\x3b\x2e\x37\x06\x91\x67\x9e\x14\xca\x13\xd4\x1f\xf0\x4c\xf5\x98\x12\xc5\xa3\x04\xd0\xe4\x71\xd6\xa3\xce\x85\x75\x2c\x02\x7b\x74\xe7\xca\x9e\xa1\xc4\xae\xe6\x21\xef\x84\x35\x97\xc6\xb2\x9f\xe9\x65\x13\x6a\x74\x30\x84\x2f\x88\x90\x82\x21\x8e\x49\x7d\xf0\x79\x66\xb6\x11\x49\xa0\xef\x24\x3c\x43\x74\x07\x48\x2b\x58\x55\x3c\x60\x0b\x4c\x08\xa4\xad\x41\x01\xbe\xe2\x02\xd5\x36\x4f\x44\x08\x64\xc4\x2e\x19\x7a\x93\x9a\xfd\x69\xe9\x5f\x35\x73\x10\xa9\xce\x61\xd2\x1c\xd8\x09\xb5\x35\x23\xdd\x41\x55\xeb\xd9\xa3\x0f\x2b\x8e\xef\x10\x71\x44\xba\x4d\x33\xb6\xae\x72\x06\x97\x54\x04\x2b\x96\x8c\x0c\xcb\x77\x48\x8e\x01\xde\x36\x21\x56\x48\xdb\x5e\x00\x3a\x74\x28\xca\x82\xda\x3e\xa8\xbe\x46\x83\xdb\x3b\x9a\x84\x48\xde\x69\xc6\xe7\x3c\xe2\xd9\xb6\x0f\xf3\xa1\xba\xb7\x19\x8e\x2e\x86\xc2\x9e\xd5\x09\x65\x6b\x29\xae\x58\x17\x2f\x01\x8d\x7f\x21\xfe\xa1\xca\x2e\x28\x3e\xf6\xf8\x7c\xa2\x98\xb8\x25\x17\x44\x00\x56\xcb\xa4\xba\x4d\x40\x54\xf7\x91\x26\xa2\x68\x68\xc7\x7a\x3d\x9c\x42\xd7\x38\x09\x23\xf6\x63\xc7\xad\x28\x6d\xa7\x01\x1b\xae\x8d\x23\x03\x61\x0f\x76\x79\xaf\xf5\xec\x21\x4f\x03\xb9\x61\x49\xa1\x5a\x9f\x4c\xd1\xac\x44\x43\x25\x64\xf3\x94\xad\x6d\x0f\xd2\x56\xde\xc7\xd1\xeb\x6c\x1b\xaf\x68\x3a\x76\x73\x47\xe4\x78\x72\x72\x49\x68\x9e\xc9\x51\xc8\x94\x7c\x06\x76\x36\x01\x17\x84\x86\x6b\xbd\x3f\x25\xd5\x41\x24\x48\xd6\x34\x7e\xc0\x96\xe0\xc7\xea\xdb\xc7\x83\x3a\x6c\xec\x81\x8d\x3e\xeb\x60\x56\x84\x53\x17\xdf\x0b\x22\x46\x41\x24\x57\x4c\xab\x96\xe0\xde\x0b\xba\xa1\x3c\xa2\x73\x75\xa5\x22\xba\xb4\x00\x15\xdb\x70\x7e\x66\x94\xf9\x20\x5c\xa4\x18\x4b\x10\x54\x49\x98\x95\x29\x86\x23\x73\x67\xab\xe9\xc6\x6e\xaa\xf8\x5d\x1d\xb5\x2b\x38\xff\xa1\xf0\x7d\xaf\xc4\x97\x72\xcf\x4d\xd0\xe2\x20\x17\x4b\x83\x69\x5b\x61\x86\xad\xe3\x8a\x63\x46\x4f\x06\x5b\x1f\xb0\xf9\xd6\x80\x43\x4d\xdc\xe8\xb8\xcb\xf5\x7f\xf4\x7d\xad\x5d\x50\xeb\x36\x19\xc3\x53\x3b\x73\x5b\x5b\x44\x03\xf1\xc4\xc6\xdd\x57\x86\xe6\xf8\x3c\x6c\xce\x2d\x67\xcf\x3a\x41\xc5\xe9\xd1\x92\x51\x4a\x36\x34\xe1\x32\x4f\xc9\xf1\xe5\x09\xde\x76\x3c\x4b\x8f\xc4\xbc\x61\x10\xf2\x82\x45\xfc\x1e\xfb\xb5\xe0\x68\xfd\x5a\x65\x7f\x80\xa5\x5f\xc6\x31\xd3\x04\xd3\xee\x6a\xbe\x8c\x1b\x1d\x15\xbf\x35\xbb\xa9\x08\x20\x3e\x89\x00\x7b\x76\x9e\xc6\xc6\xeb\x94\xd9\x88\xd5\xfb\x8d\xb3\xb5\x97\x93\xf5\x70\xf0\x5e\xd1\x66\x07\xd6\xfe\xae\xb9\xf3\x79\x9a\x15\x7c\xa2\x08\x0b\xce\x4f\xe1\x11\x38\x04\x52\x28\x36\x30\xc9\xf2\xf8\x29\xa4\xc0\xce\x9d\xef\xcd\xef\xb7\xb1\xf8\x3b\xe1\x48\xed\xa7\xa5\xf0\xe4\xa3\xea\x06\xfa\x6d\xcb\x0c\xcc\x69\xc6\xbf\x41\x0a\x94\xc3\xc1\xb7\xd4\xb8\x22\xc2\xbd\xcc\xe3\x65\x42\x43\x1d\xda\xb0\xf9\x64\xfc\x06\x79\x93\x00\xeb\x00\x3f\x23\x73\x46\x12\xb6\x96\x1b\x16\x6a\x37\x3c\xf3\x81\x4c\xd4\x0a\x17\x09\x4b\x57\x84\x8b\x34\xa3\x51\xf4\xa8\x02\x5a\xcb\xf5\xab\xde\xe2\xbe\x1b\xa8\x79\xe0\xb7\x11\x15\x82\x45\x55\x46\xf0\x19\x99\xe6\xe0\xbd\x0f\x60\xb0\x54\xc0\xab\x7c\x3e\x0e\xe4\xfa\x20\x90\x09\x93\xe9\xc1\x02\x3f\x3e\x98\x47\x72\x7e\xb0\xa6\xaa\x83\x83\x13\x19\xe4\x6b\x63\x67\x38\x00\xde\x5b\x37\xd3\x7c\xae\x62\x73\x1f\x9b\xf9\xd4\x23\xd8\xdc\xe7\xe3\x6a\x78\x1e\xeb\xb4\x7a\x0e\xe8\xa3\x72\x41\x05\x25\xd2\x5b\xac\xc4\x42\x0c\xee\x68\xee\x75\x29\x2a\x08\x1a\xd5\xe4\x2c\x97\x90\xf0\x58\x22\xa6\xa0\xd1\xa8\xdc\xb4\x47\x15\x2c\x8b\x6e\x77\x12\x24\x05\x8d\x3a\xc5\xc6\x0e\x89\xd1\x06\x2b\x5c\x1c\x5b\xfe\xea\x92\x18\x51\x60\xec\x0f\x55\xff\xce\x78\xe1\x5d\x48\x68\x4f\x20\xc7\x3f\x2e\xb4\x7f\xf8\x81\x89\xf0\xc7\x1f\x7b\xab\xf0\x81\xa8\x18\x01\x1a\x82\x91\xd7\x54\xf0\x05\x4b\x33\x83\x8b\x53\xeb\x94\x6b\x73\x0f\x4b\xf6\x09\x4d\xc9\x1d\x8b\xe0\x33\x1d\x00\x55\x72\x8d\xa9\x2e\x09\x0e\x3c\x86\x91\x85\xa4\x50\x6d\x19\x85\x54\xd2\x0a\x18\xd0\x48\xb5\x60\x09\xca\x00\x50\xb6\xdc\xe2\xe8\x35\xa5\x2d\x2e\x53\x21\xb5\xd7\xfd\x04\xe2\xb4\xf5\xba\xb4\xc1\x8b\x68\xaf\x3a\x63\x43\xf9\x22\x1d\xd1\x38\x2e\x3e\x2c\xcc\x61\x35\x37\x67\x70\x43\x3c\xb3\xbf\x6c\x7e\x4b\x34\xc1\xb8\xca\x12\x9a\xb1\xe5\xf6\x50\x1b\x45\xc6\xef\x2b\x3f\xab\xcd\xfa\xe1\x07\x92\xc9\x3f\xd1\x75\x54\x7f\x49\xfe\x46\xb8\x08\x99\xc8\xc8\x67\xd8\x8e\x45\x29\x53\xff\x22\x85\x09\xe9\x52\x46\x11\x17\xcb\xf7\x96\x26\x2c\xb1\x7f\x2a\xe6\xb7\xa6\xf7\x96\x10\x77\x48\x5e\x5b\xa7\x85\x10\x73\x32\xcc\x02\xeb\x66\xc3\xa8\xba\x58\xd7\x72\x6b\xd6\x43\xb5\xa7\x0e\xe7\xbc\x32\x5c\x59\x5d\x48\x99\x1e\x92\x88\x8b\xfc\xde\x34\x50\x7c\xa6\x16\xe5\x8c\xdd\x0b\xa1\x76\x6e\x75\x67\x20\xe0\x19\xe4\x87\x1f\x74\x02\xb4\xff\xb8\xdd\x27\xff\xb1\x21\x87\xbf\xaf\x7e\x4e\xca\xef\xa1\xf1\x7f\xdc\x92\x1f\x7f\x3c\x24\xd7\x7b\xea\xdf\x1b\xf5\x76\xcf\xea\x8a\x89\x90\x68\xe0\x1b\x60\x01\xf4\x65\xc4\x92\x46\x52\xd7\x67\xe4\x1d\xbd\x65\x24\xcd\x13\x73\x67\x40\x49\x9b\x06\x2b\x16\xe6\x11\xba\x06\x42\x7a\x1e\x45\x89\x2c\xeb\xe3\x48\x87\x2b\x1e\x92\x73\x79\xa5\x1b\x97\x6f\xc1\xc7\x22\xa1\x6a\x8d\xe4\xb4\xa2\x29\xc5\x11\x93\x5b\xed\x83\x14\x62\x1c\x4e\x90\x70\x8c\x14\xa0\x61\x38\xd2\xb6\xd8\x84\xe9\x49\x28\xe9\xd7\x1e\xf8\x96\x6d\x0f\xc9\xb1\xfe\xe2\x28\x0c\xa5\x48\x2f\x6a\x19\xa3\xfc\xa3\xdb\xf3\x3e\xbd\x67\x41\x9e\xf5\x9a\x76\x97\x75\x10\x5b\x55\x1d\x3d\xcf\xab\x37\x1a\xbb\xa9\x6c\xc9\x33\xf2\x8e\x0b\xbe\xe6\x7f\x65\x24\x94\x77\x22\xe3\x6b\x46\xc2\x1c\x34\x19\xd4\x5c\x0a\x9b\xed\x34\x26\xb7\x2f\x49\xc6\xa2\xc8\x46\x3d\x99\x24\xa1\x24\x94\x5c\xef\x41\x0a\xd2\x72\x00\xf3\xc9\xf5\x5e\x69\xe0\xaf\x9e\xe8\x50\x06\xe9\x41\x20\x45\xc0\xe2\x2c\x3d\x30\x19\x9c\xd2\x03\x10\x82\x63\x19\x1e\x3c\x33\x71\x54\x5c\x8a\x91\x5c\x8c\xd4\x8b\x62\x43\xac\x77\x5f\x27\x34\x60\x53\x96\x70\x19\x5e\xb1\x40\x8a\x30\x3d\x24\xaf\xca\x99\x68\x82\x5a\x66\x56\x44\xb5\x88\x69\x10\x27\x5c\x26\x3c\xdb\x1e\x47\x34\x4d\x11\x74\x3f\xfc\x40\xc6\xc7\x14\xb2\x0b\xd7\xde\x91\xbf\x15\x0a\xf9\xeb\x3d\x44\x8d\xa8\x5f\x35\x07\xe9\x7a\xcf\xba\x33\x4a\xd6\x3b\x36\x94\xa0\x7a\xf8\x81\x82\x14\x54\xa2\x4a\x42\x14\x7d\x98\x73\x41\x93\x4a\x90\x0b\xaa\x5f\xd5\xbb\x1a\xbd\x58\xf0\x08\xdc\x46\x81\x62\x14\xb2\x8f\x39\x75\x88\xde\x75\xff\xa3\x40\x70\xfb\xd4\xf1\x35\x58\xcd\x7f\xf8\x61\x7c\x7c\x3e\x99\xa8\x3f\xec\x0b\x0f\x81\x18\x6b\xaa\x28\xca\x9f\xaf\xf7\x0e\x64\x9c\x1d\x04\x82\x1f\xcc\xb9\x38\xd0\xfd\x15\x3c\x24\x3e\x4c\x6c\xde\x26\x72\x5d\xf1\x09\x30\x5a\xba\x77\x34\x36\x0c\x81\xfd\x3c\x23\x47\x10\x45\xf2\x87\xf7\x5f\x9d\x5e\x9e\x9f\xce\x4e\xaf\x6e\xae\x4e\x2f\xbf\x9d\x1c\x9f\xde\x7c\x73\x71\x35\x83\x35\x3b\xde\x4d\x2f\x2e\x67\x3a\x88\x48\x6e\x58\x92\xf0\x30\x64\x78\x7b\xd9\x57\xd3\xb7\x64\x5d\x85\x02\x3e\x08\x09\x2b\x09\x84\xd1\xa6\x8e\x8c\xb8\x5e\xff\xc2\x38\x3b\x37\x13\x44\x30\xb1\xa9\x2d\xe5\x19\x38\x69\x19\x9f\x2c\xb5\x4d\xf6\xf6\x28\xd6\x0c\x84\xa4\xda\xac\xcc\xfe\x1c\x9f\x4f\x6e\x8e\x2f\xce\xdf\xde\x9c\x1f\xbd\x3b\xad\x4f\x03\xfc\x7d\x14\xd6\x7d\xfd\x6a\x04\xb7\x7a\xac\xba\x06\x36\x7f\xaf\x3e\x09\xa3\x95\xaa\x9d\x11\x70\x69\x86\x2d\xf3\x9d\x94\xfa\x6c\xce\x4f\x67\xdf\x5d\x5c\xfe\x01\x66\x35\xf9\xda\x39\xa5\xc6\x5e\x9b\x43\xa3\xf7\xfb\x0f\x6c\xeb\xda\xf2\x72\x2f\x34\xcf\x58\xb1\x83\xd9\x0f\x20\xdc\x40\xf0\x1b\xbd\x9a\x1b\x57\xd3\x67\xe4\x8a\xa1\x7b\x92\xa2\x88\x60\x3a\x29\x7c\xcb\xc1\x3f\xe2\x8b\x14\xb9\x26\xf5\xca\xb3\x60\xeb\x84\x9d\x5f\x9c\x9c\xfa\x77\xc1\xb3\x64\x70\x4b\xf5\xad\x15\x5e\x4e\x69\xb6\x3a\x04\x14\x34\x56\x93\x81\x08\xb2\xda\x32\xd4\xb6\xbd\x9b\xbd\x27\x1a\xcb\x6f\x68\xc2\x15\xff\xe1\xdf\xa2\x77\xb3\xf7\xff\xc4\x7d\xd9\xb0\x6c\x75\xb3\xce\xf2\xfa\x32\xa6\x09\xdb\x30\xa1\x0b\x64\x94\x18\x0e\xa4\x95\x34\x62\x0c\xe2\x5a\x16\x52\xb5\xaa\x17\xd1\x31\x8b\xbb\x3a\x3b\x3d\x6d\x54\xa2\x2a\x6e\xc1\x82\x46\x29\xab\x9e\xfc\x8d\x8c\xf2\x35\x7b\xe7\x0a\xd8\x1f\x91\xb5\xfa\x19\xe1\x7f\xa0\x8e\x88\x8d\xc8\xdc\x38\x22\x10\x7c\x34\xe7\x62\x14\xf2\xa4\xb3\x33\x96\x05\xd0\x99\x60\xd9\xb8\x11\x3c\x58\x76\x27\x58\x56\xef\x2e\x65\x41\x0e\xc4\x45\x8a\x8c\xdd\xd7\x2b\xb6\xc4\x09\xdf\xf0\x88\x2d\xab\x8e\x4e\x08\xe2\xa3\x30\x54\xcc\xcb\xdb\x88\xdd\x93\x6f\x61\xe9\xe4\x24\xe1\x1b\x70\xde\xa3\x46\x27\xa8\x5a\xc4\x2c\x51\x54\x93\xbc\x17\xfc\x9e\x9c\xc8\x35\xe5\x82\x5c\xc9\xe0\x16\xb3\x02\x41\x90\x0f\x39\xe1\xb7\x4a\xca\xa8\x50\x1a\x30\xcc\x80\x07\x5e\x40\x33\x1d\x01\xfa\x96\x45\xfc\x1e\xb0\xad\x1d\x0c\x79\xb5\x15\x01\x39\x9a\x4e\x1c\x34\x67\x11\xb1\xfb\x8d\x8c\x46\x21\x4c\xcd\x4d\x76\xd4\x12\xbe\x95\xd1\x64\xbd\xac\x12\x1e\xef\x86\xba\x3b\x1f\xa9\xad\xa8\xc2\xaf\xb1\x51\xcd\x69\x3c\x6c\x03\x02\x37\x41\xbf\xcc\x45\x5a\x17\xfe\x0a\x5c\x6b\x31\x4c\x80\x76\x6b\x35\x5e\x9e\x59\x9f\xc4\x89\x5c\x26\x74\x9d\x16\x18\xdc\x04\xa7\x88\x90\x24\x32\xcf\x20\x4d\x16\xf4\x6a\x7f\xaf\x56\xe8\xd8\x02\x4b\x76\x75\xc3\x5f\x31\xfb\x0e\xba\xff\xbf\x9b\x90\xbf\x4f\x99\xbd\x63\x47\xd3\x89\x91\xdc\xe7\x34\xb8\x55\xe8\x4b\x09\x7c\xa0\x92\xf6\x20\xb0\x93\xa3\xd9\xd1\xd5\xec\xe2\xf2\xf4\x66\xf6\xa7\xa9\x9f\x9e\x97\x4b\x68\x12\x72\xe3\xcc\xc2\x70\xd7\x09\x5d\x2e\x13\x13\xb7\x58\xd0\xb7\x58\x1b\x5c\x3d\xd3\x78\x7f\xa5\x00\x7c\x72\xa3\x9a\x78\x27\x01\x10\x69\x0c\xff\x1d\xe5\x59\xe1\x11\xd0\xb5\xdc\xef\x8e\x26\xb3\x9b\xb7\x17\x97\x37\xc5\xba\x77\x1c\x4d\x51\xf0\x9d\x89\xb6\xa2\xd4\xff\x14\x42\x7d\x22\xc5\xf3\x8c\x30\x01\x26\xde\xaf\xbe\x9e\xfa\xb8\xa8\xa3\xb3\xc9\xf1\x85\x61\xa4\x26\xe7\x5f\xdf\x7c\x75\x74\xfc\x87\xd3\xf3\x13\x2f\x70\x84\x14\x0e\xe0\x68\x95\x18\xd6\x8d\x52\x8c\x1c\x84\xb7\x2f\x30\x73\xb2\x15\x53\xa8\xde\x7b\x66\x72\xf6\xfe\x6a\x76\x7a\xd9\x71\x18\xbf\x48\xf7\x51\x66\x6c\xcc\x00\x65\xab\x7d\xc2\x85\xc2\x99\x4a\xc0\xda\x27\x34\xd3\xf9\x07\xc0\x06\x44\x12\x36\x32\xe1\x73\x8a\xc9\x2c\xca\x5a\xa4\x19\xcd\x3c\xb3\x7a\x7b\x7a\x36\xf9\xe3\xcd\x64\x3a\x3b\xfa\xea\xec\xf4\xea\xf2\xf4\xed\xe5\xe9\xd5\x37\x93\xf3\xd9\xe9\xe5\xb7\x47\x67\xde\x69\xbe\x79\xd5\x9c\xdf\xb9\xb4\x72\xd3\x82\x8b\x41\x23\x15\x85\x19\x74\xe2\xe7\x2b\xdc\xcc\xb4\x11\xf7\x26\xd3\xcd\x67\x24\x96\x32\x2a\x79\x79\xcb\xc0\x56\x73\xcf\x1a\x83\x2b\xc4\x64\x5a\xa4\xc3\xae\xf7\x1c\xac\x64\xaa\xf0\x1c\xba\xd9\xf3\x14\xd5\x30\x63\x54\xf5\xa2\x43\xbf\x49\x77\xa8\x8d\x40\xb6\xc1\x07\x7b\x5d\xd1\x4d\xa3\x5f\x21\xb5\x9a\x41\x27\x4c\xd4\xe1\x15\x0b\xb5\x27\x3a\x4f\xf9\x87\xd1\x48\xeb\x0b\x47\x01\x0f\x93\x0f\xe3\x7a\x1f\xb5\xf3\x3b\x99\x7e\xfb\xd9\xf4\xe2\xe2\xcc\x81\x45\x9e\x55\x84\x93\xdf\x7d\x32\x7e\xfd\xe6\x8b\xf1\xab\xf1\xab\x83\xd7\x6f\x9a\xc0\x3c\xe1\x29\xfa\x44\x28\x79\x28\x92\x4b\x58\x66\x2a\xc9\x07\xf0\xa3\xcb\x22\xf5\x5b\xfa\x01\xf4\x9c\xf5\x28\xb8\xda\x8c\x4e\x26\x57\xea\xc8\xdc\xbc\x9d\x9c\x9d\xde\x9c\x5d\x7c\xfd\xf5\xe4\xdc\x2d\xa0\xb4\x23\x1c\x64\x68\xca\x00\x07\x09\x54\xb4\xd8\x70\xcc\x0f\xa2\x7e\x3e\x3a\x3e\x3e\x9d\xce\x3c\x73\xc2\x53\x7c\x72\xfa\xf6\xe8\xfd\xd9\xec\xf4\xfc\x64\x7a\x31\x39\x9f\xcd\x2e\x14\xcd\x3b\x3a\x9e\x4d\x2e\xce\xbd\x33\xc3\x6e\xfd\x80\x9a\x4c\x37\x6f\xd4\x11\x2b\x49\x51\xeb\x14\x26\xd3\x6f\xdf\x5c\xbd\x9f\x2a\x82\xba\x0b\xeb\x6c\x69\x48\x2c\x93\x03\x44\x89\xa1\x59\x39\x55\xa0\x82\x11\xce\x2e\xbe\x56\x20\x9f\x1e\xcd\xbe\x51\x60\x81\xf3\x8e\x8e\x41\xb8\xb1\x00\x4f\xb3\xb3\x99\x84\x9d\x6e\x9b\xb1\xd5\xdf\x8e\x28\xb1\xff\x84\xaf\x4e\xbf\x3d\xbd\x9c\xcc\xfe\x74\xf5\xa7\x2b\x9c\xb3\xbe\x54\x70\xf3\x0a\xdf\x4a\xb1\x90\xad\x2b\x49\xb7\x69\x24\x97\x1d\x6b\xb1\x86\xda\x01\xc7\x94\x27\xd1\x1a\xef\x7a\xef\x8e\x26\x82\x8b\x65\x9f\xa5\x5f\x39\xd7\x7b\x7c\x79\x7a\x7a\xae\xfa\xfa\x0e\x7b\x6a\xae\xb8\xef\x72\xa0\x27\xef\x8a\xbe\x73\x4f\xb4\xda\xdd\x37\xa7\x47\x67\xb3\x6f\x4e\xcf\xd5\xb5\xf5\x93\x3f\xf7\x55\x6d\x5b\xb0\x21\x1e\x9a\xb0\x82\x50\x93\x67\x68\xff\x52\xff\xb0\x5c\xd0\x16\x44\x2c\x90\x26\xf5\xa1\x46\x5d\x94\x5a\x75\x5e\x9d\xea\x43\xa5\x39\x97\xfd\xd5\xfc\x8e\xf1\x54\x0d\x5e\x25\x88\xf3\x43\xf2\xc9\xe7\xaf\x2a\xa9\xde\x22\xbe\x61\x82\xa5\xe9\x34\x91\xf3\x7a\x3d\x11\x76\xdf\x88\x55\x2a\x75\x7b\xf5\xdf\x47\x04\x34\x7c\x1e\xd1\x01\x5b\x8c\xe0\x86\x8c\xd4\x98\xb5\x75\x56\xb5\xb0\xaf\x5f\x55\x5f\x83\xf3\x0b\x8d\x4e\x58\x44\xb7\xde\x46\x0b\xca\xa3\x3c\x61\xb3\x55\xc2\xd2\x95\x8c\xc2\x43\xf2\xa6\x0a\x2e\x1a\x72\xdf\x4a\x57\x59\x16\x7f\xcd\x9a\xd5\x4f\x63\x14\x04\x8b\x6f\x1b\xef\x65\x92\x1d\x92\xdf\xbd\xfa\xdd\xef\xea\x6f\x14\x4d\x38\x24\x91\x0c\x68\xd4\x14\x32\x5b\x97\xdb\x5b\x29\x11\xf1\xf9\xc1\x5a\x86\xb9\x23\xb7\x05\x9e\xcd\x88\xcf\x47\x9e\x06\x6a\x45\x17\x22\xda\xba\x72\xd8\x56\x47\x49\x72\x71\x70\x8f\x37\x60\x1c\xc9\xe0\xd6\x3d\x94\x6e\x31\x72\xb5\x28\xc7\x42\x3a\xd2\x32\xd8\x86\x26\x30\xa0\xb1\xdc\xba\x86\xda\xd0\x64\x94\xe4\x62\xe4\x6e\xb3\xe3\x60\x0a\x86\x5d\x83\x29\x30\x3e\x68\x30\xec\x02\x05\xf1\x74\x2b\x1a\x11\xea\xae\x95\xab\x8b\x43\x97\x8d\x70\xc9\x67\x58\x0a\xcd\xc8\xb6\xfb\xe4\x8e\x01\xc3\xaa\x65\x60\x20\x3f\x10\xef\x94\xeb\x98\x4b\xd5\x52\x11\x52\x34\x36\x28\xb6\xfb\x20\xdd\xa6\x07\x8b\xf4\x60\x1e\x2f\x14\xff\x74\xc7\x74\x6b\xcc\xe0\x50\x1f\x0e\xb2\xca\x64\x24\xe4\x09\x58\xf4\xea\x45\x48\xcc\xe2\xd2\x6d\xba\x68\x1c\x2e\x7b\x5d\x7a\xd0\xa6\xd8\xff\x15\xc7\xbe\x31\x2d\xc8\x9a\x51\x81\x41\x84\x90\xf5\xa0\x98\x5c\xf7\x52\x78\x86\x6c\x6d\x9c\xc8\x98\x2e\x15\x7b\xad\xfd\x46\x6a\xba\x0d\x33\xae\xce\x41\x06\x3c\x1b\x4f\xc9\xad\x90\x77\xc2\x06\x1d\xcd\x2a\x83\x45\x6a\x8f\xb7\x98\xd6\xae\x3a\xe5\x80\x0a\x50\x3f\x60\x0e\xb3\xc6\x48\x08\x04\x3d\x29\xb0\xa3\x57\x3e\xb7\xb5\x30\x35\xa3\x4e\x92\x8b\xb4\x70\x88\xc9\x53\x13\xa7\x8b\x66\x75\x28\x95\x31\x5a\x2f\xd1\x51\x83\x89\xd0\xee\x08\xe8\x57\xa4\x90\x0e\x44\xf7\x36\xeb\x6a\x8c\x2c\x25\x48\xe9\xe4\x52\x4e\xda\x32\xec\x28\x91\x4e\x7b\x60\x35\xd4\x6c\xa5\x7d\x87\x68\x03\x8f\x42\xfd\xba\xbf\x10\xf2\xd8\xec\x8d\x46\x3c\x1e\xad\x69\xfa\x17\xf3\x67\x6d\xfe\xd7\x7b\xe4\xfb\xc7\x21\x84\x4d\x5d\x8c\x59\xe6\xf4\xe2\xe4\xc9\x74\xf2\xc6\x80\x3f\x16\x0d\x51\xbf\x3e\xfc\xd5\xf4\xe8\xf8\xe9\xe7\x00\xde\x17\x1e\x26\xe5\xec\xe8\xfc\xfc\xf4\xec\xe4\x66\xf2\x76\xc7\x99\x3c\xb6\x51\x46\x35\xba\xe1\x8b\x1e\x33\x9d\xde\xbc\x3b\xba\xfa\x3f\xff\xc4\xb9\xaa\xb3\x9b\xb3\x84\x56\x19\x99\x16\x0d\x73\x7f\xaa\xd9\x45\x33\x5b\xe8\xca\xa8\xea\x4a\x36\x0a\x16\xb5\x15\xd8\xb3\x60\x59\x50\x71\x73\x2c\xd0\x30\xae\xa2\xaa\x89\x36\xfe\xf4\x68\x2a\x6c\xe2\x0c\x0f\x37\xa1\x10\x29\x0c\x57\xbb\xb0\x2d\x3c\xca\xa8\x93\x92\xb7\x77\xea\xe3\x12\x46\x9d\x44\xbb\xbb\x5f\x17\x43\x30\xea\xd8\xb0\xf6\x5e\xdb\x8f\x02\xfa\x18\xbd\xe5\x11\xbb\x48\x8e\x2b\xfe\xb0\x2d\x44\xb6\x7d\x40\x27\xc9\xc5\x71\x4e\x0c\x39\x6f\x0e\x56\x1e\x00\x7d\x58\x9c\xa6\x19\xe7\xa1\x2b\x2e\xde\xa1\xeb\x98\xbb\x2f\x5b\x19\x20\x64\x0c\xcc\xc7\xe7\x2e\x6b\x90\xc7\xa6\xd6\x0e\x01\xa7\xa5\x6e\xd4\x6e\x56\x6b\xef\xd1\x63\xae\x2b\x57\xa1\x55\x7b\x7e\xcb\x99\xe3\xfc\xbb\x39\x43\xcf\x44\x3a\x37\x90\x34\x2f\x88\x83\x99\x6c\xc2\xbd\x69\x0e\x74\x6d\x7c\xab\xd9\x6c\xd7\x29\xff\xf0\xc3\x48\x71\x79\xc6\x8c\x37\x05\xa7\xc6\x13\x5e\xf5\x1b\x2b\xd7\x53\x1a\xfc\x8a\x96\xe8\x2f\x36\x22\x2c\x4a\x99\xe7\xab\x83\x3c\x85\xeb\xac\xa4\x58\xcb\x85\x08\xfe\x19\xb1\x6c\xa4\x5d\x29\x0f\x10\x17\x1e\x40\xb3\x02\x60\xff\x6f\x1e\xa6\x7a\x04\xed\x9d\x06\xfe\x9e\x5d\x6e\x55\xb6\xdb\x64\xe9\x0a\x5b\x77\x36\x7d\x88\x1f\xe5\xae\x7e\xa7\xf5\xc0\xd3\xc2\x07\xf5\x8a\x31\x97\xdb\x7c\xc5\xe5\xff\xa0\x19\xb6\xea\x74\x08\xd5\x6e\xa3\x56\xfe\xc3\x5d\x82\x76\x1f\xe2\x34\xea\x0b\xcc\x35\x7e\x91\xa8\x7c\xaf\xa4\xb5\xa0\xba\x68\x25\x94\x3c\xa0\x90\xa5\x29\x62\xa0\xa6\xdd\x30\xbc\x04\x26\xf3\x42\xc2\xe2\x88\x07\x34\x05\xd7\xcd\x5d\x5d\x52\xbd\x8b\x4c\x4b\xf7\xd4\xf2\x52\x5c\xb2\x32\xf8\xa1\xcb\x33\xb4\x13\x8c\x84\xb4\x81\x92\x74\x38\x97\xb6\x74\xfb\x51\xee\xa6\xe6\x92\xcf\x4a\x3f\x4e\xe2\xf3\xee\xb4\xfc\x73\xed\xe6\x85\x73\xee\x1b\xcf\x7d\xf7\xf9\x88\xba\x95\x7f\x56\x6b\x63\x30\xf4\xe6\x34\x91\x04\x73\x48\x45\x2c\x83\xda\x4a\xb9\xf0\x79\x96\x56\x3d\x52\x4b\xb7\xfa\xc1\x2f\xb5\xf2\xa1\x8d\x4b\xb1\xcd\xc7\xf8\xa8\xb6\xde\x85\x86\xd7\xea\x43\x5d\x39\xd5\x28\xb5\x64\x11\xbd\x5c\x3b\x0b\x43\x99\xcb\xbb\xd3\xe9\x08\x32\xea\x77\xcb\x49\x55\x46\x2f\x1b\xb8\x9d\x31\x1a\x2e\x0a\xc7\x2b\x09\xa9\xd9\xc1\x02\x6b\x9f\xf7\x4c\xaa\x23\xee\x51\xf2\x68\x05\xfc\xcd\xf1\xc5\xf9\xec\xf2\xe2\xec\xec\xf4\xd2\x67\xa9\x68\xaa\x7d\x77\x72\x6d\xb0\x1c\x1b\xac\x06\xad\x9a\xdb\x5d\x75\xd4\x8a\x29\x00\x3d\xf5\x8a\x05\xb7\xa3\x6a\xba\x8b\xb2\xd9\x28\x79\x7a\x82\xbf\x33\x55\xdc\x95\x05\x60\x59\x10\x8e\x52\x45\x68\x32\x43\xfe\x7b\x7e\x99\x6d\xe3\x15\xed\xfb\x89\x71\x38\xd1\x3e\xa6\xf8\xd5\xde\xfe\xff\x8f\x10\xb2\x87\xbc\xff\xe6\xd3\xf1\xeb\x37\xe3\xcf\xf7\x0e\xc9\x9e\xea\x0a\x54\x4b\x64\xa6\x7b\x28\x1d\x38\xf0\x77\xdd\xb8\xf7\x5c\x75\xb8\x72\x25\xc4\xe6\xd8\x08\x24\x84\xa7\x45\x1a\xe1\x62\xa2\x58\xf4\x6c\x01\x5c\x2c\x0b\xf5\xb0\xb6\x9d\xbc\x8c\x2e\x33\xfd\x34\x37\xda\x1f\xca\x54\x08\x3a\xbe\x7d\x2c\x3e\x7b\x86\x39\x11\xd4\x24\xb5\x09\x11\xd5\x88\x00\xfe\x1b\x8d\xf8\x6e\xb0\x73\xdb\xa4\x89\x4c\x0e\xe4\x30\x5c\xd0\x80\xe1\x0a\x8d\xe4\x0e\x38\x1f\xb4\x9b\x90\xd1\x3b\x30\x89\xbd\xe1\xa7\xd2\x3b\xcf\xc4\xc6\x83\x42\x34\x62\x8b\x8c\xcc\x23\x2a\x6e\xf7\x8b\x02\x1e\x56\xff\x3c\x35\x8e\x07\xa5\x36\x52\xdd\xf4\xe7\x29\xf6\x60\xf0\x1f\x78\x1c\x41\xaf\x96\x9e\x07\xc3\x3e\x50\x9f\x38\x31\x5d\x9a\x08\x90\x67\xe4\x3b\x9d\x50\x59\x26\x90\x00\x39\x93\x96\xde\xa5\x2c\xa9\x22\x89\x55\x1f\x12\xd3\xc4\xa3\x5b\x02\x76\x62\x68\xa0\xf6\x7d\x83\x29\x94\xdd\x54\x6d\x84\xb6\x8b\x94\xfa\xee\xdd\xec\x3d\xa4\x31\x4a\x2d\xb9\x44\xfd\x66\x38\x0e\xbe\x20\x82\xe1\x4f\xaf\x34\x16\x37\x2e\xac\x7a\x69\xef\x66\xef\x71\x3d\x9a\xc4\x39\x78\x15\xfb\x8b\xd7\x9f\x7d\xfe\xaa\xd6\xda\xef\x81\x6d\xc2\x95\x7d\x8e\xd8\xf0\x19\x90\x35\x14\x1f\x9e\x99\xf4\xb8\xa0\xd5\xe7\x26\x73\x51\x59\xcb\x22\xcf\xe4\x9a\x02\x51\x8a\xb6\x24\x96\x3a\x0b\x18\x6e\x5a\xc3\x63\xfa\x90\xfc\x6d\x84\xc8\xf1\x07\x83\x23\xaf\xf7\x40\xdf\xb9\xa7\x5d\x7f\x94\xb0\x3b\xd2\x1f\x59\xf9\xf9\xaf\xf7\x02\x61\xee\x0b\xb6\x7d\x35\xfe\x74\xfc\xba\xd2\x42\xcb\x5f\xea\xf5\x9f\x4b\x0c\xfc\x83\x8d\x8c\xaf\xf7\xc0\x39\x09\x3a\xd0\x4a\x99\x6a\x0d\x80\xeb\xbd\x48\x2e\x6f\x22\xb6\x61\x11\xb6\xfa\xee\xe8\xf2\x7c\x72\xfe\xb5\xb3\xd9\x82\x47\xec\x46\xc9\x86\xd8\x14\xd5\x3d\x72\xa9\x11\x09\x88\xf7\x81\xe0\xe3\x48\x2e\x1b\x9f\x17\x9e\x6c\x37\xe5\x84\x6c\x2f\xbc\x5a\x73\xb5\x35\x25\x98\x6e\x6e\x5c\x7e\xe2\x37\x37\x8d\xcf\xd6\x59\xae\xbe\xb8\xb9\xd1\x5e\xda\x37\x37\xb5\x06\x3c\xa6\x6b\xd5\xe2\x87\x3a\xc5\xb2\x01\xa5\x2e\xfa\x08\x0c\x8f\x8e\x82\x09\xd7\x7b\xa8\x81\xc7\xa6\x79\xca\xa6\x32\x3c\xe6\x61\x52\x35\x4a\xff\x58\x1b\x17\x15\x15\x9d\x23\xdf\x7e\x91\xb6\xf7\x63\x83\xcc\xd9\x97\xce\x8d\xa5\x10\xa8\x05\x3a\x8c\x25\xb8\x31\x4e\x1f\x0a\x72\x95\x51\xca\x3f\xec\x01\xbd\x27\x29\x96\x49\xb6\xa6\x71\x03\xfc\xa9\xa0\x00\x17\x85\x2b\x6a\xaf\x02\x1a\x53\xc8\x9c\xc4\xcd\xd4\xa1\x97\x77\x34\x8e\xb9\x58\xa6\xe6\xab\x5d\x67\x32\xa7\x22\xbc\xe3\xa1\x3a\x91\xdd\x03\x5a\x8d\x9b\xa3\x99\x7f\x6a\x93\x8a\xc6\x29\x26\x82\xde\x89\x53\xc6\x04\xb4\xd8\x50\xd8\x46\x9b\xcc\x8c\xd1\xa9\x60\x51\x01\x2f\x08\x96\x01\x55\x1b\xff\xdf\x54\x51\xbf\xbf\x35\x30\xc2\xb9\xb9\xff\x06\xd7\x23\xfb\x7b\x3c\x39\xb9\x54\x88\xd1\xba\xf3\x5f\x69\x9b\x55\x75\xf7\x31\xcd\x7e\xf1\xb9\x9e\xb5\x6e\x3b\x56\xef\xec\x88\xc1\x1f\x8b\x25\x76\x71\x08\xb7\x61\x38\x0a\x92\xb0\xc2\xfc\xfc\x4a\x13\x60\x37\x72\x2c\x3c\x41\x1a\xec\xaf\xbe\x9e\x56\x52\xe1\xe1\xbb\x32\x19\x76\xfd\x7d\x33\x25\xb6\x27\x13\x44\x99\x18\xbb\xde\xe0\xba\x4c\x8f\xad\x0f\xcd\xf5\xd3\xe4\xc6\xae\xcf\xbd\x9a\x58\xb7\x4a\x6b\xb1\x38\xc5\x56\x7d\x03\x2c\x4d\x55\x6e\x1e\x72\x63\x0f\xb9\xb1\xed\x2d\x18\x72\x63\xff\x62\xb9\xb1\xeb\x97\xb8\x99\x21\xbb\x5a\x1b\x42\x5d\xe0\x2a\xc9\xab\x76\xde\x92\x0a\x9b\xa6\xe7\x50\x8d\xcd\x61\x44\xae\x5d\xe8\x2b\x6c\x68\x52\xee\x1b\x59\xe8\xe8\x4a\xd7\x73\x2b\xa4\x33\xaa\x39\xf6\x3f\x9f\x60\x13\xa7\x7d\xfa\xcd\x67\x9f\xbf\xfe\xe4\xfb\xe7\xcd\x57\x98\xad\x08\x2a\xa1\x7f\xfa\x49\xf3\x75\x6b\x99\x74\xb3\xf3\xee\x2a\xaa\x95\xf5\x1c\x97\x4d\xab\x25\xf1\x11\x96\xfa\x04\x19\x38\x53\xcc\xde\x52\x0f\x77\xd3\x20\x4c\xe6\x3c\x4b\x68\xb2\xd5\x25\xa3\x20\x2a\x84\xa2\xaf\x2a\x46\x24\xed\x94\x1c\xdc\x39\xcd\x6d\xb9\xfd\x69\x46\x45\x48\x93\x50\x49\x92\x11\x4d\x96\xac\x3e\x5d\x57\xa7\x04\x96\xa0\x6e\x9a\x23\x60\x04\x9f\xce\x0a\xb4\x40\x9e\xdc\xaf\x1c\x05\x67\x75\x01\xce\x32\x52\xce\x4c\xcf\x5b\x03\xb3\xbb\xf6\x25\x6a\xcf\x7a\x4d\xe1\x5b\xc0\x73\x90\x02\x6c\x0e\x51\xc7\x78\xae\xc8\x07\x4a\x0f\x85\xf8\xa0\x80\x87\xff\x3c\x5c\xaf\xeb\x2e\xfe\xf6\xf3\x56\x26\x25\xc4\xcb\x95\xe4\x29\x2b\xba\xc2\x9e\xf7\x75\x36\xdd\x0f\x94\x7e\x50\xc0\xf6\x77\xf9\x41\x7d\x44\x13\x46\x5e\xbf\x21\x73\x9e\xe9\xeb\x33\x86\xa1\xea\x1b\x5a\x8e\xa3\xe6\xe9\xef\xb3\x39\x87\x7d\x3d\x8e\x08\xc9\x87\xf5\x1a\x07\xfc\xf4\x93\xca\x80\xdf\xa9\xc6\xce\x1a\x3d\x7a\xa2\x6a\x29\x58\xd6\xea\xe8\x8a\xe0\xf5\x77\x75\x1b\xb3\x64\x74\x74\x65\xe2\x6e\x78\x23\x6c\xb5\x7c\x62\x28\x9b\x2d\x0e\xc9\x7f\xbd\xb8\xbe\x0e\xff\xff\x2f\x0f\xf1\x7f\xff\xf1\xb7\xea\xdf\xe6\xe7\x87\x9e\x94\x07\x17\x28\x8d\x20\x3f\xf9\x54\x26\x2e\xa4\x55\x39\x5f\x67\x45\x4b\x83\x10\xa1\x34\x1b\xc2\x5f\xe1\x90\x38\x91\x99\x0c\x64\x64\xb8\x14\xec\xda\x09\x99\x13\x53\xad\x2a\x93\xe4\xf5\x6f\x1b\x1e\xb6\x90\x70\x85\xaf\xf3\xf5\x21\x79\xf3\xf9\xe7\x9f\x7e\xee\x78\xcf\x05\xbe\x7f\xbd\x23\xc2\x8c\xe4\xf2\x8a\x6d\x58\xc2\xb3\xed\x55\x90\x30\x56\xe7\xe9\x1a\xcb\x7e\x7e\x56\xff\xc2\x2c\x3f\x92\x4b\x92\xea\x37\x84\xce\xe5\xc6\x68\xdf\x23\xb9\x74\xd6\x99\x82\x72\xba\x4c\x14\x99\x72\xd3\x2c\x94\x79\x66\x91\x0d\x32\x39\x7f\x7b\xe1\x22\x11\x6d\xdb\xaf\x48\xcf\x4c\x9e\xcb\x90\xbd\x63\xe9\xea\x14\x62\xd0\x5c\x15\x6e\xab\xab\x3a\x77\x7d\x45\x52\x96\x95\x85\xd0\x16\xb9\x36\x6a\x61\x98\x44\xd3\xeb\x5b\x3d\x6a\xe3\xd7\x90\x7e\x2e\xd5\xf1\x6f\xa1\xbd\x20\x25\xcc\xfa\x17\x34\x97\x32\x62\xb4\xc1\xfb\xc6\x09\x5b\xf0\xfb\x23\x3b\x35\x6d\x27\x75\x9b\x3a\xbe\x29\x29\x08\xf8\x6e\x40\x8b\x6a\xc6\x5b\xd7\x8a\xda\xd8\x0a\xb2\x43\xb9\xab\xe6\x84\x4a\x3d\x75\x5a\x9d\x86\x45\x89\xdc\x08\xc0\x84\x5d\x96\x95\xe3\x1c\x31\x9e\x06\x78\x1d\x44\x2d\xe0\xa1\xbf\xcc\x76\x95\x14\x4f\x4e\x2e\x61\x68\x3c\xd6\x65\xcf\x76\xa9\x58\xb3\x0e\x7f\xa5\xe7\x6e\x2a\xd7\xce\xc5\xb8\x66\x66\xf1\x32\xda\x59\xd7\x70\x33\x8c\xc3\xe1\x2d\x09\x0a\xb0\x28\x7e\x94\x6f\xdc\x80\x51\x66\x83\x52\xc0\x1f\x14\xf7\x99\x8e\xad\x41\x80\x7a\xf6\x62\x3a\x08\xca\x6e\xad\xb4\xb7\x85\xc4\xb6\x92\xa6\x16\xda\xdb\x46\x62\xfd\x7d\xb6\xd3\xde\x56\x12\xdb\x32\xd1\x56\xda\xdb\x4e\x61\x7b\xf4\xda\x9f\xf4\x76\x15\xb4\xef\x53\x79\xbc\xa3\x80\xfd\x83\xc9\xae\xb6\x00\x69\xcd\xc8\x64\xda\x89\xdf\xae\xea\x1f\x00\x30\x20\xb1\x8c\xba\xa5\x98\xf7\x16\x05\x51\xbc\xad\x2d\xf5\xe4\xb5\x0d\x9b\x98\x5e\xb4\x5f\x39\x48\x9d\x8b\x12\xc7\x14\xb5\x25\xb1\x7c\xa0\xb9\xe8\x58\x24\xd0\xd5\x2f\x4e\xa2\xc8\x6f\x07\x7e\x0b\x62\x5b\x19\x4e\x47\x9c\x66\x2b\xb6\x7e\x38\x6a\xad\xc3\xe2\x2b\x35\xae\x25\xa7\x5b\xae\x40\xba\x68\x6d\xd1\xd4\xbd\xcf\x25\x08\x9f\x00\xa5\x3e\x19\xeb\xa6\x77\xf8\xf4\x1e\x95\x3a\xfd\x0f\x91\xf5\x85\xfb\x14\xc9\xc4\x0a\x31\x75\xcd\x59\x77\x44\x4c\x4f\x6a\x6f\xc7\x76\x86\x84\x7a\x83\x22\xf0\x19\xfc\xb5\xdc\xc5\xe0\x4b\x52\xa2\xab\x63\x6e\xb1\xe6\x0f\x1e\x19\x5d\x3b\x1a\x2b\x54\xe2\x44\x3f\xfa\x04\x95\xb3\xeb\x3c\x42\xee\xdd\xb5\xd6\xff\xab\x3c\x44\xbf\xd6\xfa\x5a\xbf\x5e\x55\x3f\xe4\x4c\x7e\x1a\x0d\xff\x94\x19\x71\xa7\xa2\xd8\x57\x3f\x3b\xf5\xf9\x56\xfa\xe6\x8a\x1a\x3f\xd6\xfd\x3c\x95\xf6\x7e\x50\xb3\x0f\x6a\x76\x7b\x0b\x06\x35\xfb\x2f\xa9\x66\x57\xe8\xa0\x5f\xfd\x49\xdd\xf8\x01\xd5\x26\xfb\xaa\xd8\x67\x2b\x56\x4a\x01\x46\xb5\xaf\xd0\x8f\x83\x82\x7e\x8c\x96\xfc\x96\xb1\xf8\x22\xe1\x4b\x2e\x68\x74\xce\xee\xb3\x6f\x64\x3d\x9e\xa5\x31\xb5\x8b\xd8\x38\xe7\xa8\x8f\x61\x62\x52\xf7\x40\x04\xbb\xcf\x56\x32\xd6\x05\xef\xa1\xca\x1e\x6a\xbd\xbb\x94\x3e\x00\x53\xa2\x80\xaa\xce\x78\x06\x97\xc4\x38\x30\xd9\xca\x01\xd8\x11\xf0\xc7\x66\xa1\xfa\xc4\xd5\xaf\xea\x25\x2d\xd4\x33\x39\xf2\xe5\xe4\x7a\x4f\x4d\x8e\xa8\xd9\xa9\x79\x7f\x79\xbd\x07\xce\x45\x8c\x86\x0a\xbc\xd6\xdb\x94\x45\x8b\x2f\xaf\xf7\x5e\x68\xa3\xc6\x4b\xd7\x10\xba\x00\x7c\xe1\x5a\x3b\x4f\xa8\x08\x56\x66\x9f\xce\xd5\xd0\x52\x90\xeb\xbd\x39\x4f\xc2\x71\xb0\x58\x5e\xef\x79\x2b\xf5\x7b\x34\x3d\x6a\xfa\x7d\x0e\x49\x91\xf8\xa9\x48\x75\x64\xf0\x8b\x16\x51\x74\x12\x6c\xf4\xf8\x87\x50\x5f\xe7\x82\x52\x38\x5d\xea\x5b\x48\x60\x87\xa5\xfe\x61\x3b\x26\x9a\x5c\x70\x74\x41\x4b\x59\xb6\x5f\xa3\x1f\x29\xa1\xae\x3e\xb1\x84\x08\xf4\xb2\x4f\xf8\x98\x8d\x21\xc9\x9e\x49\xbc\x07\x34\x16\x07\x63\x1b\x96\x6c\x8b\x6c\xdd\xd5\x4c\x4d\x5e\xb8\xf9\x55\x7e\x0e\x7f\x7d\x27\xf8\x8a\xc4\xcd\x46\x87\x84\x05\x21\x61\x76\x9a\xce\x41\xf8\x44\x01\x0b\x2e\x96\x63\x02\xc5\xe5\x9d\x8c\xa6\x06\x92\x06\x90\x3e\x06\x78\x13\x8c\xed\x01\x2a\xc6\xef\xb8\xa4\x98\xa6\xe9\x9d\x4c\xba\x14\x97\xae\x29\x5d\xe8\x54\x6e\xa8\x84\xd6\xfd\x14\xcb\xd5\x4b\x4a\xc9\x92\x09\xa8\x39\x0f\x16\x3b\x17\x21\x22\xa8\xce\x6c\xc3\x79\xa4\x9b\x91\x47\xaf\xdc\x96\x38\x55\xe7\xfe\x28\x42\x7a\xcb\xb6\xc0\x8f\xe8\x2e\xcc\x29\x81\x13\x13\xcb\xf0\x79\x5a\xba\x9d\x7a\x74\x1e\x9d\x32\x06\xc6\xbf\xfa\x55\x22\x5d\xa0\x36\x8f\xba\x93\x7a\xba\x88\xab\x60\xc2\x99\xd4\x58\x0b\x28\xf5\x98\x90\x77\x78\x20\xda\x7a\xa2\x8a\x71\xe0\xa1\xe9\xe2\x96\xb9\x0e\x8e\x79\xfa\x68\x6c\x5a\x6d\x76\xfd\x57\x78\xbd\x67\x27\xef\x4d\xd8\x82\x25\xea\x9e\xba\x38\x84\xb6\x1c\xd6\x72\xa3\x24\x4d\x76\x77\xa0\x6b\x67\x8d\x14\x2a\x18\x21\xe1\x4e\x0f\x60\x3f\x0f\x9e\x75\x68\x28\x09\x99\x5d\x9c\x5c\x1c\x92\xa3\x30\x24\x12\x94\x9b\x79\xca\x16\x79\x84\xb7\x2e\x1d\x5b\x9c\xf3\x3e\x30\x6e\xfb\x24\xe7\xe1\xff\x53\xcf\x9b\xb3\x2b\x20\x8b\x0c\x89\x1f\x0f\xcc\x2b\xa0\x20\xdb\xc2\xb2\xa0\x40\x7a\x85\x1b\x2e\x13\xb0\xd1\xaa\xc3\xb4\xee\x3e\x2d\x5a\x49\xdb\xb5\x30\x0f\xb5\xc1\xc7\x54\xde\xf1\xce\x18\xc2\x67\xdc\x2f\xfb\x88\xd9\xee\xb7\x0a\x0d\x4d\xa6\x7d\x68\x9d\x95\xb7\xce\xe2\x88\xc8\x42\x6a\x5d\xd6\x7c\x0b\x22\x8b\x41\x7a\xb1\x4c\x9c\xb4\x4e\xbb\x28\x64\x12\x3f\x57\xe7\x0e\xa8\x1c\x18\xed\x44\xe1\xd8\x00\x36\xeb\x7d\xa3\xaf\x2e\xf5\xfa\x1f\xfe\x8c\x3e\xe6\x93\xe9\xe6\x0d\xba\x99\x7f\x7f\xa8\x3e\x75\x5a\x64\x65\x42\x3e\x14\xcd\x3f\xc3\xe6\x87\xf8\x03\x4c\x0f\x7e\x00\x7d\x32\x24\xcd\x83\x79\x54\x16\x60\x4d\xc8\x50\x5f\x27\x2f\x05\x4e\x09\x9a\x4e\x01\xa0\x44\x48\x0a\x37\x0d\x2c\x51\x9e\x22\xa3\xa5\x3d\x06\x01\x79\x02\xf9\x2d\xcd\x97\x6e\xac\x0d\xf8\xb6\xee\x86\xa2\x7d\xe6\xef\x98\x66\xb0\x14\x45\x57\xd3\xd5\x50\xdd\x95\xc6\x29\xd6\xfb\xa1\x64\x3b\x61\x6b\x99\x15\xd4\xbb\xb2\xab\x40\xac\xbd\x24\xcd\x26\xd6\x53\x38\x85\x55\xb0\x21\x16\xa9\x11\x6f\x74\x03\xa8\xe6\x94\xad\x2e\x44\x31\x51\x73\x96\xdd\x31\x1d\x53\x00\x6e\xc9\xa6\x20\x61\x58\xb2\xaf\xf6\xbc\x21\xb7\x4d\xc1\xe7\xba\x77\x58\xa7\x55\xd4\x23\xf0\x05\x99\x4b\xc5\x3c\x89\x30\x45\x3e\x45\xf1\x1b\x5f\x7d\x3d\x55\x28\x65\xac\x9a\x1e\xe9\xbb\x52\xaa\xad\x7d\x27\x07\xfb\x7e\xd3\xbf\xef\x37\x8d\xbe\xc7\x40\xfa\x5c\x03\xe8\x65\x96\xbe\x41\x81\x04\xcf\x18\x23\xb2\x5a\x60\xf8\xf9\xa7\xff\x49\x2b\x43\x99\xad\x70\xce\x5c\x6f\xbf\x66\x33\xad\xda\xbf\x70\x1a\xcb\x0b\xb3\xd3\x59\xf4\xe0\xc0\x51\x21\xb9\xd5\x7f\x47\xf4\x35\x28\x0f\xff\x99\xca\xc3\x6a\xb9\xc0\xa7\xd0\x21\xaa\x11\x8e\x70\x84\x6d\x43\x93\x68\xbf\x74\xe8\x13\x5d\xc5\x0c\x2d\xb5\xa2\xf5\x7a\x3b\x28\x17\x07\xe5\xe2\xa0\x5c\xfc\xf7\x53\x2e\xda\x18\xa2\xa7\x8a\xb1\x89\x71\xca\x67\x77\xbd\xa3\xc7\x84\xd6\xc6\x93\x41\x51\xa2\x6e\x7f\xa9\x13\x6c\x46\xb8\x08\xa1\x00\x82\x56\xa0\xc0\xc9\x01\xdc\x46\x0c\x72\x53\xe7\x76\xce\x20\x25\x3c\x7e\xe3\x94\x67\x21\x96\x15\xb5\x26\xf6\x39\xc7\x22\xbd\x56\x35\x77\xe4\x5d\xa5\x22\x1c\x24\x61\x11\xa3\xa9\x1e\xda\xd5\xe9\x9a\xa7\x19\xbd\x65\x22\xda\x92\x4c\x51\x13\x7d\xb0\x61\x14\x5a\x8e\xf2\x00\x65\xd3\x8e\x40\x85\x14\xdf\x3b\x7d\xe3\x65\x48\xd4\x96\xd6\x7f\xd3\x80\xad\xff\xec\x8a\x50\x77\x24\x1b\x1f\xd8\x96\x5f\x94\x6d\x71\xd4\xfc\x7d\x02\xd6\xc5\x38\x78\x94\xa3\xd4\xf9\x97\x66\x8b\x26\x13\xe3\xad\x4f\x5c\x32\x32\xcd\x26\x4f\xc9\xcd\x54\x9d\xde\x1a\x2b\xa8\x85\x3a\x69\x3f\x9b\x42\x5f\x5f\x2f\x96\x8e\xcf\xc0\x21\x0d\x1c\x92\xbd\x05\x03\x87\xf4\x8b\x71\x48\xcd\x1b\xdc\x16\xe7\x84\x9f\xce\x1d\xf4\xd5\xba\xed\x3b\x30\x47\x80\x42\xdd\x77\xbc\x39\x53\xbb\xb1\x71\x78\xd7\x97\x5c\xcd\x4d\x9b\xdd\x34\x13\x54\xcc\xc6\xa3\x7f\x4a\x72\x21\x9c\x9a\xe6\x36\x26\x42\x77\xf9\xf5\xfb\xc9\x49\xe7\x6c\xcb\xa6\x66\xae\xf0\x6f\xad\x3f\xf5\x4e\xae\xc7\xf0\x33\xd5\xa4\xdf\xf0\xaa\xa9\xd9\x34\x8d\x16\xa1\x40\xcb\xc7\xcc\xa2\xc8\x4e\x70\xc9\x68\xe8\xb2\xdc\x54\xb9\xd4\x4a\xeb\x22\x43\x8a\xae\xe3\x99\xf2\xa5\x00\x06\x5c\x64\x65\xbf\x64\xcd\x97\xb5\xda\xee\x95\xb9\x49\xf8\x8c\x46\x3a\xac\x29\x96\x02\x4c\xa1\x69\x1e\xac\x14\x4f\x89\x75\x0a\x50\x15\x55\xa8\x8f\xef\x28\x57\xb7\x7c\x21\x3d\x3a\xbe\x20\x60\x69\x91\x6d\xc4\x57\x49\x88\x74\x69\xf3\xa1\x1a\x9e\xe8\x0c\x5b\xf9\x16\x9b\x91\x90\x05\x11\x4d\x58\xaa\xdd\x63\xf5\xd7\xd6\x59\xb6\x7c\xda\x21\x81\xdc\x4e\x6c\xf2\xc0\x54\xfe\xa2\x4c\x25\x14\x1b\x78\xf2\xa8\x79\x38\xdc\xad\x71\xf3\xcd\x16\x4d\xa6\xd2\x31\xd7\x3a\x53\xd9\x6c\xf2\x8b\x31\x95\x78\x81\x77\x0a\xa0\x87\x4f\x06\x86\x72\x60\x28\x07\x86\xf2\x9f\xcd\x50\x36\xf1\x4f\x57\xe0\x3c\xde\xf7\x87\x86\xce\x47\x91\xbc\x9b\x4c\x27\xd3\x29\x85\xbc\xc7\x6f\x13\xb9\xfe\xce\x54\xe9\x7e\x80\xe7\xce\xf5\xde\x51\x5b\x8f\x86\x72\x94\x21\x89\x30\x7b\x57\x4f\x3a\x44\x25\x24\x94\x24\x39\x16\xcc\x08\x13\x19\x13\xd5\x35\x61\x22\xa0\x71\x8a\xe9\xb0\x8a\xc4\x63\x18\x2a\x63\x86\x72\xf5\x59\x46\x31\x42\xaa\xf6\xef\x5d\x0e\x15\xad\x1c\x0a\x80\xeb\xdb\x3f\x9e\x1d\x9d\x3f\x2e\xbc\xbc\x5d\x3e\x02\xc0\xa0\xef\x7f\x1e\xc4\xee\xd2\xab\x24\x38\x49\xb3\xe3\x15\x0b\x6e\x3b\x83\x58\xaf\x58\x46\x10\x13\x8d\xac\x24\x72\x23\x48\x00\x49\xa4\x20\x47\xdf\x5d\x91\xd3\xe3\x4f\x0a\xc7\xc0\x74\x4c\x8e\x34\x53\xe5\x9a\xfe\xa6\x1a\x41\x8f\x01\x27\xd7\x7b\x27\xf2\x5c\x66\x2b\xa8\x68\xb5\x4f\xae\xf7\x74\xac\xec\xf5\x1e\x91\x89\x7a\xab\xd3\xfb\x5d\xef\x75\xe4\x7f\x28\xba\x71\xc5\xc3\x32\x91\xbb\xea\x1e\x8c\xca\xaf\x5c\x2f\x71\x2a\xce\xcf\x70\x56\xbb\x09\x1b\xf3\x78\x71\x2c\x85\x60\x41\xa6\x18\xaf\x33\x49\xc3\xaf\x68\x44\x45\xc0\xc5\xb2\x6f\x58\xf1\x57\xd3\xb7\x1d\x5d\xa0\xbf\x2c\x17\xa4\x28\x78\xe3\x02\x96\xfb\x20\x57\x8b\xe2\x07\x38\x90\xda\xf1\x8c\xaf\x19\x51\xc7\x92\xcc\x61\x38\x96\xf8\x2d\xf5\xfa\x33\xc7\x37\x20\xaa\x6a\x45\x74\xe1\x77\x01\xc9\x15\x2b\xa5\x78\x5c\x9d\x26\xf5\xa2\xbe\xa6\x00\xad\xce\x42\x41\xf8\x3a\x4e\xe4\x46\x33\x37\x31\x4b\x40\x03\x20\x02\x38\x62\xb1\x0c\x47\x99\x1c\xb5\x45\xec\x15\x4b\x4d\x71\x61\x18\x47\x95\x30\x9a\xa2\x93\xb2\xa9\x53\xc7\xc1\x25\x40\xcd\x3d\x64\xf3\x1c\x33\x72\xc4\x79\x12\xcb\x54\x1d\xfe\xf6\x03\xfa\xa0\x58\xed\x79\xbc\x50\x52\xe7\x64\x41\x03\x36\xd5\xb9\x0e\x7a\x1c\x92\xfa\x37\xc8\x7a\x24\x0c\x18\x62\xc2\xee\x15\xef\x00\x3c\x21\x96\xaf\xd6\xa7\xc1\x89\xc8\x40\x9c\x2b\x32\x5a\x1a\x91\x54\xb3\x7c\x34\xcb\xd4\xc6\xa8\xb3\x56\x94\x51\x86\x84\x8b\x44\x26\x21\xb8\x47\x39\xc1\x4d\xb3\x60\x65\xa5\xa8\x3c\x28\x38\x15\x93\x86\x52\x5b\x70\x04\x63\x61\x8a\x99\x2d\xe1\x0b\x3b\xb7\xa6\x5b\x9e\x56\xcb\x31\x61\x95\x1a\x95\x96\x08\x36\x92\x77\x29\xd6\xd3\xae\x85\x50\xf6\xe8\x74\x45\x45\xa8\x0e\x80\x08\xe4\x1a\x98\xb5\x32\xc1\xa6\x90\x21\x8b\x65\x92\xa5\xda\x33\x47\x9f\x4c\x58\x94\xcc\xb3\x94\xbb\x43\xfb\x6d\x2d\x13\x21\x93\x42\xbc\x57\x2c\x57\xb9\xde\x62\x15\xd6\x16\xbc\xc8\xd3\x9c\x46\x91\xd3\x89\x4e\x09\x2d\x21\x28\xa3\xc6\xe3\xf1\x4b\x3b\x57\xc0\x7f\xbd\x60\x62\xfc\x9f\x7f\x63\xd9\x6a\xfc\x9f\x7f\xcb\x72\x11\xbd\xfa\x8f\x97\xbb\x26\x43\x50\xc7\x11\xaf\xc2\x7b\x61\x15\x16\xea\x73\x22\x9b\x9f\x41\xbd\x2a\x9d\xd4\x60\xdf\x9c\x2b\xa6\xeb\xd8\xdf\xaa\x9b\x1e\x8d\x73\xab\xfd\xcd\x3c\x5e\xdc\x98\x74\xaf\xae\xb5\xa7\xdb\x34\xc8\x22\xfb\xbe\xda\x9f\x83\x8f\x99\x5c\xa8\xc3\x6a\xce\x17\x13\xa9\x0e\x08\xa0\x59\xa5\xad\xab\xf7\x3c\xd5\x49\xf1\xd5\x06\xa1\x92\x45\x1f\xb5\xe7\xcf\x53\x44\xb7\x34\xc6\x33\xa0\x1b\x71\x91\x2a\x79\x08\xf2\xfc\x10\x79\xe7\x74\x98\x6c\x5e\x1d\xb5\xcd\x4c\x07\x66\x96\x03\x7c\x74\xd6\x87\x79\xbc\xd8\x81\xca\x9c\x9a\x6d\x29\xb7\x48\xef\x10\x70\x36\x26\x1e\x42\xcd\x5e\xf1\xdb\x71\x44\x85\xdb\x6b\xba\xce\xb3\x3c\x64\xda\x3a\x0a\x54\x47\x95\xbe\xeb\x11\xd4\x00\x4b\x68\x7e\x56\xa1\x8b\x25\x11\x5c\xc9\x3b\x9b\x04\xb8\x96\x61\x5f\xe6\x8a\x35\x08\x9c\xb2\xf5\x8d\x7f\xa1\x7d\xc9\x0d\x2a\xb0\x22\xb3\x9d\x01\x20\x34\x61\x8a\x96\xdc\xd1\x24\xc4\x44\xcb\xda\x8b\xad\x60\x02\x15\x5e\x58\x80\xf3\x24\x94\x28\x9d\xe5\x50\x75\x6c\x0f\xbd\x26\xe7\x32\x73\x7a\x0f\x6a\x11\x0e\xeb\xd7\xb3\x34\x96\x22\x2d\xf3\x01\xf3\x94\x64\xd0\x0b\x0e\x58\x73\x9d\x83\xf1\x9c\x37\xcb\x4c\xe1\xe4\xea\x52\xb1\x69\xf8\x1d\x8e\xe3\xea\x7a\x9e\x67\xba\x4d\x75\x7c\x8f\x02\x3b\x2d\x0b\xe6\x45\x5b\xa7\x53\x9f\x9a\x99\x30\xe3\xeb\xfd\x2b\x9b\x38\x11\x21\xb8\x4a\xc6\x31\xa3\x98\xa4\xdd\x1c\xd9\xc9\xd4\xc8\x6a\x5c\x2c\xb1\x7c\xb5\x0c\xd9\x97\x46\xfb\x01\xec\x89\x27\x16\x25\x66\xc9\x9a\xa7\x29\xdf\x30\x72\xf6\x89\x45\xab\xca\x33\x8e\x3b\xf4\x00\xac\xaa\x58\x9b\x69\x22\xef\xb7\xa7\x5a\x56\xbf\x8a\xd4\x91\xea\x79\x63\xbf\x9a\xbe\x6d\xef\xc0\x7d\xf0\xdd\xf4\xde\x62\x08\x9f\xa7\x84\xad\xe7\x2c\x54\xc7\x13\x12\x71\xc7\x6a\x04\xad\x39\x4d\x49\x75\x28\x9d\x88\x7a\x57\x3d\xb3\xbd\xf8\x89\x2e\x62\x7e\xac\x1a\xe6\xf1\x0e\xf8\xaa\xa3\x8b\x0a\x1e\x43\x58\xb8\x16\x8f\xe0\xb1\xf0\x5c\x9c\x48\xd4\x56\x47\x5b\x12\xa8\x1e\x49\x8e\xc1\x6a\x79\x9c\x66\x09\xa3\x6b\x9b\x27\x2d\x21\xf4\xfc\xb9\xdb\x55\xd8\xd4\x68\x0f\x56\x94\x03\xab\x79\x85\x24\x5f\x47\xed\x97\x33\x5c\xd8\xe0\xd6\x4e\xa8\xda\xca\xf3\x54\x6c\x66\x01\xc1\x77\x5c\x5c\x6d\x45\x80\x25\xe8\x77\x82\x7d\xe5\xcb\x7d\x0f\xb2\x6d\x54\xcc\xd4\xa0\xc7\x8c\x53\x04\xc4\x06\xe3\xf8\x8c\x6a\xa7\x42\x7d\x58\x50\x9a\x52\x4f\xfa\xdc\x3a\xa2\xae\x6e\x4b\x30\x8e\x09\x39\x93\x77\x2c\x31\x0a\x9b\xa5\xba\xc6\x09\x0b\xf3\x00\x13\x33\x8d\xf2\x18\xf4\x93\x22\x50\x4d\xbf\xe1\xcb\x55\xd1\xd6\x8d\x65\xd5\x97\x46\xbf\x3b\x7d\x4f\xf2\x94\x2e\x19\x99\x6f\xc9\x5c\xf1\x6e\x8a\x45\xcc\x63\xb2\x96\x09\xa2\xf3\x0a\x96\x78\x9d\x3e\x00\x43\x9c\xc9\xe5\x19\xdb\x30\x57\xbc\x48\x63\x47\x4c\xdb\x0a\xd4\x21\xa1\x16\x24\xfc\x2e\xb2\x3c\x5a\xbc\x87\x07\x17\x14\xa2\x64\x09\xfb\x35\xa2\xe3\x0b\x23\xbf\x5f\x2c\x16\x28\xb9\x4f\xc4\x42\xaa\x7f\xa1\xdc\xae\xe4\x23\x25\xb4\xfb\xe4\xc4\x48\x2e\x31\x3d\x06\xc3\x32\xa0\x66\x93\xd5\x60\x59\x42\x03\x46\x62\x1e\xb3\x7d\x63\xce\x52\xdc\x9c\x0e\x2a\x64\xa6\x4a\x85\xab\xdb\x0f\x59\x00\x95\x2d\x14\xc8\x50\x48\xfb\x60\xb3\x4e\x17\x8b\xc5\xf7\xe3\x1d\x81\x0f\xb7\x75\x02\xbc\x5c\x2f\xde\xe3\xb8\xda\xde\x27\x6c\xaf\xa4\xbc\xb5\x79\xdd\x9f\x7f\xfa\x1f\x8f\x8d\x30\x1e\xe1\xb6\xd5\xf0\x87\x3a\x6c\xc8\x62\xaa\xd3\xa6\x15\x4d\xda\x60\x9c\xc9\x58\xef\xb2\x53\x00\x53\xdf\xab\x7d\x9a\x6f\x81\x44\x8a\xb0\xd9\xc3\x5c\x66\x99\x5c\x8f\x0d\x13\xab\xed\xbe\x29\x5d\x14\x99\x3a\x9d\x8c\x02\x57\x42\x37\xcf\x48\x9c\xb0\x0d\x98\x32\x91\x83\x05\xa7\x7c\xd5\xbd\x96\x8b\xd0\x85\x6f\xbe\x8d\x69\x9a\xea\xc4\x38\x5b\x99\x93\xf4\x8e\x67\xee\x98\x88\x4c\xea\x99\x6a\x7c\x32\xd7\x75\x83\x0a\x13\x39\x86\x6e\xe1\x10\x3a\xb4\x4f\x83\x09\x2d\xac\x4e\x06\x0c\x08\x19\xe8\x09\xe6\x5b\xc5\xa0\x46\xa8\x87\x4f\x64\xbe\x5c\x99\x03\xa9\xc5\x49\xe8\x79\x1f\x87\xb9\xd3\x79\x7a\x5c\x7d\xea\xe6\x98\xf8\xbd\xa8\x1e\x50\xae\xb4\x3c\x8b\x08\xd9\x5d\x51\x41\x71\x11\xb1\xe2\xdc\xce\xfe\x98\xf3\x7c\xa9\x65\xb1\x33\xb9\x3c\x49\x24\xe4\x61\xf7\xf6\xe2\xa1\x17\xd0\xcd\x3b\xb6\x96\xc9\x76\x9a\xc8\x05\x8f\x98\xa3\x88\x5d\xaf\xb9\x5c\xf1\x35\xe8\x41\x8f\x69\x14\x7c\x9d\xd0\x78\xf5\x0d\x15\xcb\xa3\x45\xf6\xb0\x95\x99\xde\x4e\x0c\x90\x1e\xde\x1b\x6c\x92\xe1\x70\x66\xf2\x1b\x99\x66\x47\x81\x47\x75\x5c\xbd\xff\x27\xfe\x6f\x6d\x5c\x00\x4a\x05\x75\xa4\x53\x8f\x9a\xa4\x50\x31\xa8\xa6\x4b\x69\xae\x0e\x2d\x75\x02\xa5\x61\x47\x5a\xa5\x99\xb3\x94\x45\x0b\xf2\x82\x2e\x3c\x1e\x23\x80\x1f\x74\xdf\x2b\xae\xe5\xed\xa2\x2b\x86\x4c\x31\x9e\xdf\x97\x63\xf2\xd5\xb6\x88\x8a\x39\x76\x96\xf2\x26\x45\x6a\x2a\xb7\x2a\xbb\xe8\x3a\x75\x4d\x13\x70\xba\x3b\x96\xb0\x40\x77\x3f\xff\xf4\xf7\x93\xcb\x8b\xe9\xcf\x3f\xfd\x03\x7c\x07\xa4\x28\xf0\xc5\x1d\xd5\x91\xff\x51\x24\xef\x48\x2a\xd7\x8c\x60\x21\xe7\x36\x81\x03\x66\x67\x83\x4e\xcd\x67\x1f\x65\x1c\x88\x7e\xa3\x09\x5d\x33\x2d\xdc\x5d\x9e\xce\xde\x5f\x9e\xab\x5e\x8f\x8e\x8f\x4f\xa7\xb3\x31\x79\xef\xce\xce\xa5\x1b\x72\x9c\x18\xc4\x3b\x6d\x65\x0e\x72\x7f\x15\x2b\xd9\xcb\x9a\x9c\x4f\xdf\xcf\xd4\xba\x00\x55\x7d\xd9\x82\x4f\x00\x91\x18\x5c\x9c\x19\x5c\x5a\xc7\xf6\x34\xc3\x9e\x74\x60\xdd\xcf\x3f\xfd\x1d\xa7\xf5\xf3\x4f\xff\x70\x0a\x34\x68\xe4\x30\xfb\xd2\x98\x10\x91\x1a\x9b\xaf\x68\x0a\xee\x29\xe8\xa5\x1d\x27\xd2\xb8\x98\x98\x4d\x76\xf5\xee\x3e\x52\x00\x40\x0d\x4c\x90\xcb\x44\xe1\x54\x01\x95\x55\x10\x27\x9b\xa9\x79\xf7\xaf\x90\x91\x09\x9c\x73\xd7\x9c\x7c\x13\x68\x57\x53\x28\x94\xb8\x33\x4e\x66\x1b\x1e\xb0\x4b\x99\x67\x8a\x11\x86\x2c\xad\xdd\xa1\xa8\x3c\xad\x58\xe4\x21\xc5\x45\x99\xe4\x95\x86\x5a\x27\xa0\x19\xb4\x35\x0b\xf5\x30\x4e\x6e\x14\xf2\x63\xec\x2b\x2a\x66\x2e\x2b\x1c\x65\x43\x7e\x2e\x67\xd3\xcb\x8b\xd9\xcd\x57\x17\x17\x33\xe4\xea\xca\xba\x45\x5e\x79\xcd\x93\xec\xc3\x5a\x2b\x96\x8f\xd0\x51\x7c\xbd\x16\x6c\xb8\x08\x34\x6f\x9b\x38\x5c\x2d\x9d\x4b\xb1\xcb\x62\x2b\x98\xc9\xd1\x29\x4f\x2b\xc5\x99\x22\x46\x37\xda\xc8\xee\x94\x13\x80\x05\x03\x2f\x2c\x2c\xf4\xe6\xe8\x31\x77\x67\xe1\x6c\x3d\x18\x48\x69\x8f\xa5\x10\x8a\xa7\xbd\x9d\x08\x08\xc7\xf7\x99\xdf\x5a\x69\xae\x39\xcd\x97\xa0\x6c\xe6\x62\x79\xc2\x22\xea\xf2\x59\x6b\x9b\x50\xa3\x13\xbf\x8c\xdd\x3e\x19\xad\x5c\x3b\x97\x21\x4b\xcf\x78\xda\xe9\x27\x76\x6a\x7f\x70\x3c\x39\xb9\x54\x1f\x55\x13\xa5\xab\x5f\x9f\x83\x25\xdd\xf4\x3e\x12\xd2\xd4\xb8\x86\xca\x90\x2d\x16\x8a\x35\xdd\x9a\xfd\x42\x2d\x54\x41\x8c\xa8\x28\x52\x70\x30\x4b\xf9\xa5\xdf\x7a\x72\xe5\x69\x33\xa6\x42\xb0\x41\x99\x02\x65\xb7\x94\x78\xed\x59\x00\x5a\x32\x0f\x2e\x28\x8f\x14\xa3\x3d\x11\x73\x99\x8b\x50\xb1\x0f\x53\x99\x74\x27\xe9\x7d\xfe\xd6\xf3\x21\xc2\x19\xa4\xa6\x51\xc8\x22\xbe\xe6\x6a\x6d\x1a\xee\xae\xa9\xbf\x3f\x99\x1e\xcc\x8e\xa7\x5a\x97\x09\x74\xc5\xd2\x8a\x20\xb5\x75\x99\x42\x80\xb2\x17\xf4\xde\xd5\xb3\x14\x84\x27\x09\x4b\x63\x86\x65\x64\xcb\x14\x17\x39\x24\x7a\x36\x44\xc2\xa0\x0b\x9d\x8b\x41\xd1\xf8\x8d\xe4\x4e\x3a\x43\x83\x00\xd2\xd6\x00\xf9\x08\x72\xcc\xfb\x23\x17\x0b\x42\x71\x3e\xc0\x62\xa8\xd9\x26\x09\x0b\xb2\x7a\x29\x9f\x53\x5f\x10\xb6\x4c\xec\x80\xfd\x32\x35\x30\x4d\x49\x16\xc4\x56\xfc\xfd\x08\x43\x92\x75\xb5\x38\x99\x90\x3c\xf4\xbe\x76\x12\x9f\xb7\x4a\x12\xa3\xc1\xed\xa8\x12\x9b\xb4\xaf\xd3\x34\x96\x34\xc1\x44\x23\x97\x19\x44\x79\x66\x50\xa0\xcf\xbd\xf4\xe7\x9f\xfe\x9e\x05\xf1\xcf\x3f\xfd\x63\x4c\x66\xa5\x5d\x84\x02\x33\x01\x87\x04\x61\x04\x1b\xbd\x5f\x28\x49\xd1\x54\x2f\xa4\x47\xa9\x3f\xb3\xca\x35\x60\x53\x38\x12\x29\x49\xd3\x95\x31\x8d\xa8\x6b\x77\xf2\xcd\xf1\xb4\x62\xb8\x08\xe2\xc3\x4f\x3e\x71\x5a\xa4\x15\xcc\xde\x7c\xb1\x0f\x4d\x5e\xff\xf6\x77\xf8\x8f\x4f\x3e\x2d\xff\xf5\xc5\x2b\xfc\xd7\x9b\xcf\x3e\xfb\x54\xff\xeb\xcd\x9b\x37\xc5\xbf\x7e\xeb\xa2\xd9\xbd\x73\x49\xcb\x4c\x9a\xcc\xeb\x81\x5c\xcf\xb5\xa7\x03\x18\x8f\x0b\x82\x2c\x42\x80\xd2\xbe\x57\xf1\x4e\x0a\xdf\x86\x32\xa0\xdd\x79\xb2\xba\xd2\xc8\xc4\xee\x74\xf1\x7a\x4f\xdb\x88\x73\x31\x80\x8f\x07\xb1\xfb\xf0\xe7\x27\x69\xcd\xe1\x31\xf2\xe6\xc4\x18\x15\x23\xfb\xd1\xe1\x03\x12\xb1\x1a\x74\x78\x91\x67\x0f\xc4\x87\x8d\x2f\xfd\x08\xd1\x89\xb3\x16\xbd\x10\xa2\xcc\xb3\xa5\xb4\x11\x22\x30\xaa\xf5\x8a\xef\xe6\xa9\x48\x45\x0f\x40\x89\x3e\x25\x89\xc2\x92\x1f\x87\x12\x5d\x3d\x2b\x2c\xf9\xef\x8f\x12\xa5\x3e\x27\x8f\x83\x13\x25\xc8\xf6\x2c\x0b\x42\xd0\x7e\x15\x19\xc9\xf5\x19\x92\xda\xfc\x6c\x9d\x26\x27\xa6\x52\x82\xbf\x5a\xe3\x92\x65\x6a\x2b\x61\x1b\x51\x84\xcd\x82\xb0\xe2\xc9\xa0\x4e\xa1\xda\x68\x85\x76\x11\xff\x9e\x5f\x75\x48\x3b\x0f\x46\xb7\x5e\x24\xfe\xf9\xa7\xfb\x88\xcc\x07\x8c\x5c\x19\xe0\xdf\x0a\x23\x33\x9a\xe5\x09\x3b\x61\x19\x0b\xb2\x8b\x0d\x4b\x12\xde\xad\x17\x7f\xeb\xfa\xc8\x2e\x33\x2c\xcd\x6f\x50\x50\x11\x5b\xbb\x4f\x4a\xc6\xb4\x1a\xe8\x5b\x5d\x4d\x29\xb1\xb1\x11\x17\x06\xb7\x93\x94\xc5\x14\x93\xd2\x01\xb3\x0b\x68\x4f\x38\x35\x58\x90\xf7\x2d\xdd\x27\xec\x9e\xae\xe3\x88\x7d\x49\xae\xf7\xae\xce\x8f\x66\x6f\xf3\x28\xda\x5e\x52\x11\xca\xf5\xef\xa1\xba\xe5\xbb\xa3\xab\xff\x63\xff\x08\x5e\x0d\xfb\x97\x0c\xe2\x40\xae\xf2\x18\x2e\xf7\x99\x0c\x6e\x7f\xef\x4c\xd7\x48\xca\x84\x94\x60\x26\x81\xcf\xaf\xf7\x90\x8c\x2c\x24\x3a\x7d\x17\xab\xdf\xc7\x74\x41\xaa\xa9\xd4\x56\x12\xbf\x45\x0a\x52\xcd\xe7\x99\x1c\x21\x7c\x76\x96\x55\x21\x81\x1f\x0f\xfe\x78\x32\xed\x6b\x77\xfd\xba\xfe\x85\x36\x60\xa6\x44\xbf\x21\x7f\x3c\x99\x92\x54\x96\x55\x34\x69\xe2\xf6\x6c\x05\x14\x18\x4a\xf1\xfc\x79\x46\x52\x04\x22\x7c\x2b\x17\x0b\xd0\xe4\xc8\x84\x84\xa0\xee\x06\xed\x3f\x16\xa5\x50\x78\xf9\x8f\x27\x53\xa4\x8b\x4e\xfd\xa1\xb6\x9b\x32\x75\x16\x98\x08\x59\x58\x9a\x27\x14\x56\x85\xd1\xe2\x44\x6e\xd4\x99\x9b\xb3\x0c\xd4\x48\xa5\xeb\xa0\x67\x9e\xa2\x50\xe0\x8d\x3f\xda\xb9\x65\xc5\x68\x94\xb5\xd4\x94\xe9\xf1\xb1\x62\x69\x76\xd4\x01\xe0\x87\x9e\x9a\x44\xad\xc8\xac\xf0\x41\x3b\xbd\x0f\xa2\xbc\x87\x29\x6c\x52\xfb\xc0\xe6\xbb\x6a\x77\x53\x2e\xfa\xb8\xe1\x55\xbc\x0f\x99\xee\x14\x34\x5a\x6b\x29\x78\x26\x8b\x34\x0f\x55\x49\x74\xec\xb3\x42\x56\x29\x76\xc5\x1f\x4c\xbb\xc4\x2e\x85\x54\x3f\x95\x76\xfe\xe7\xcf\xc9\x64\xfa\xed\x15\x09\xf3\xf5\xda\xe9\x82\x57\x2c\x63\xdf\x78\x4f\x6a\x1c\x67\x02\x5d\xa2\x2d\x99\x6f\x2b\xa6\xe9\xaa\x3a\xdb\xc9\x2e\xea\xb5\xae\xf3\x28\xe3\x71\x64\x17\x19\xc7\x22\x71\x58\x60\xbc\xc8\xab\xaf\x63\x69\xc0\xee\xeb\x61\x6b\xf5\x45\x4b\x1d\x7e\xa1\x29\x16\x51\x71\xbc\x80\x79\x02\x55\xbd\x4b\x68\xec\x33\x2f\x20\x38\x01\xdd\x3e\x7f\x7e\xf0\xfc\x39\x76\xa7\x71\x2b\x59\xa1\x2a\x4e\x1b\xe2\x9f\x3f\x3f\xf8\x2f\x05\x8b\x83\xfd\x0d\xcb\x56\xaf\x9f\x3b\x2e\x91\xf6\xa7\x37\x30\x40\xe9\xb5\x70\x87\x84\xdd\x9a\xb3\x25\x17\x66\x44\xd5\xdd\xf3\xe7\x98\x95\x2c\x4a\xa5\x4f\xe9\x57\x82\xf0\xf9\x73\x3d\xb6\x7d\xa7\x61\x83\x78\xbc\x49\x5f\xed\xaa\x0f\x2e\x3a\xc6\x2a\x45\xfd\xaf\x09\xb6\x37\x6a\xd2\xea\x16\xeb\xba\x4d\x3a\x1a\xd4\xd4\x67\x71\xab\xc4\x9a\xa6\x17\x70\x4d\x05\x6e\x57\xc9\x02\x39\x4f\x57\xa8\x77\x5e\x97\x52\x4a\xd1\xba\x15\x56\xe9\x98\x9c\xcb\x0c\x70\x04\x61\x62\xc3\x13\x29\xb0\x1a\x94\xd4\xb9\x27\xa9\x20\x73\x45\x8b\xd6\x2c\xa3\xd1\xbe\x4e\xed\x1c\xac\x58\x9a\x25\x34\x93\x89\x73\xc2\x81\x55\x58\x5e\xa1\x88\x58\x71\x64\x09\xa7\x19\x8b\xb6\xd5\xb3\x23\x73\xbb\x78\x06\x72\xb9\x32\xb8\xf5\xc4\x46\x2b\x34\xa6\x83\x02\xb5\x7d\x87\x91\x9f\x7f\xfa\xef\x80\x46\xfc\xe7\x9f\xfe\xc7\x0e\x38\x53\xfd\x5e\xc4\x4c\x5c\x65\x34\xb8\xb5\x3f\x74\xde\x1c\xe3\xa5\xfa\xf3\x4f\xff\x9d\xd1\xb8\xe8\xca\x3e\x3d\x6a\x8c\x07\x9f\x9b\x4b\xb6\x48\x58\xba\x82\x73\xb1\x71\xe6\x08\xad\x1c\xa0\x89\xe7\xbb\xa2\x92\x1c\x78\xe4\x10\x9a\x69\x84\xe4\x15\x36\x12\x96\x06\x54\xa4\x3a\xdb\xa0\x7d\xc7\x24\xd9\xb0\x84\x2f\xb6\xda\x9b\x15\x12\xbf\x60\x0d\x7d\xfc\x46\xd7\x89\x72\xe2\x58\xed\xb2\xab\x90\x5e\xaa\xd3\x72\x17\xc7\x7b\x83\xb1\xcf\xaf\x76\x64\x56\x78\xcc\x5b\xdc\xc3\x5a\xe9\xa6\xfa\xf4\xdd\xec\x7d\xf7\xa5\x9c\x4e\xa6\xef\x66\xef\x0d\x0c\xd5\x3f\xc1\xd9\x33\x23\x52\x58\xba\x64\x6d\xa8\x18\x93\x2b\xe6\xf6\x07\xd0\x47\x5b\xad\x5a\xf5\x61\xb9\x01\x7d\xf6\x59\x0b\x66\xf1\x91\xe0\x58\x1d\xbe\x1d\xcf\xc7\xf3\x89\xeb\xab\xd6\xd3\x41\x12\x86\x81\x3e\x6e\x5e\x33\xb2\xbc\x51\xe0\x2c\xd4\xe5\x59\x21\x35\x42\xd0\x86\x39\x30\x21\xda\x6a\x09\x57\xb7\xf3\x44\xde\x32\xd1\x70\x19\x81\x6c\xee\x70\x4a\x2a\xb1\x18\x66\xfc\x04\x97\xd5\x11\x1f\xf4\xbb\x57\x3b\x7b\x5d\x99\x11\x74\x3d\xf5\xce\x5b\x58\x6d\x5e\x48\x24\x26\x26\x7e\xae\x7f\x57\x9c\x8e\x99\xbb\xa2\x6b\x4e\x48\x30\x34\x37\x55\xd4\x0a\x60\xd2\x5a\x52\xa7\x09\xb3\xcf\x3a\xde\xf2\x28\x63\x09\xc4\xb8\x79\x5d\x19\xfa\xf4\xa3\xc4\x9b\xb7\x7e\x9f\x8f\xfa\xd1\x6b\x7e\x54\x96\x78\x0c\x0a\xb1\xde\x36\x8d\xbb\x20\x02\x59\xc0\x16\x3c\x62\x63\xf2\x27\xc5\x82\xd0\x2d\x84\x87\xa0\xc9\x8e\x8a\xa5\x26\x1d\x5a\x41\x54\xb4\x36\x52\x00\x77\xbb\x18\x64\x96\x5e\xa6\x98\xcd\x8b\x85\x45\x70\x6c\x83\xfe\x9a\xc6\x31\xc3\x78\x23\x91\x49\xbc\x28\x3e\xb7\x2d\x1d\x24\xca\x12\x75\xb1\x28\x09\xf9\x02\x73\x5c\x93\x98\x66\xab\x4a\x60\xc6\x41\x92\x8b\x83\x7b\x2d\x53\xa8\x89\x3f\xf4\x9c\x2a\x10\x4f\x13\x39\x67\x3b\xe0\x05\xcf\x97\x66\x87\xc0\x1d\xb3\xa6\xee\x74\x72\x1c\x98\x93\x02\xdd\x36\x69\x96\x29\xb9\x15\x53\x05\x07\xa0\xb8\xa8\x7a\x3e\xc0\xee\xf0\x85\x0e\xa7\x12\xd2\xc9\x71\xd0\x0d\xe5\x91\x6a\x3f\xae\x3a\x6e\xae\xe9\xad\xf1\xbb\x04\xf7\x4a\xed\x63\xce\x37\x5a\x10\x30\xdb\xef\x11\x09\xd5\xbe\x80\x30\xb8\x0f\x5e\xea\x4a\x8a\x84\x6e\x8e\xa7\xef\xed\x4d\xf9\xfc\xd5\xfa\xc1\xf8\x42\x41\x73\xc6\xd7\x4c\xe6\x9d\x66\xd1\xca\x0e\xe8\x6f\xda\x60\x0f\x80\x76\xad\xcc\xc4\xd3\x55\x60\x0c\xbe\x98\xaf\xf6\x2d\xac\x09\x2a\x4f\xd4\x68\xf2\xb4\x54\x33\x78\x19\x02\xe0\xf4\xd3\x15\x75\xee\x20\xdc\x2f\x74\xe0\x89\xa2\x2a\xba\x6f\x49\xa3\x87\x1c\xb9\xda\x44\xb3\x53\x63\xcc\xb0\xac\x1d\x9c\xcb\x58\x44\x25\x97\xd3\xf2\x22\xed\x7b\x73\x30\x17\x6e\xfb\xaa\x47\x75\x9d\x74\x30\x81\x4c\x8a\x1c\xfa\x56\x9c\xe1\x5a\xe6\x02\x93\x0d\x6a\xbf\x17\x2b\x99\xb5\x53\xfd\x9f\x98\x16\x0b\x13\xdd\x8d\x13\xb2\xcf\xcb\xab\xb4\xe0\x73\x1e\x7a\x6c\xde\x51\x25\xb9\x7d\x3c\x7a\x7e\x47\x93\xdb\x77\x34\xed\x8e\xef\x9d\xd4\x3e\x30\x07\x6f\xad\xfe\x6d\x8b\xdb\xba\x86\x02\x77\xab\xd4\x27\xd3\x19\x1e\x0a\xd5\x0f\x99\x2b\x9c\x8a\x05\x0a\xae\xca\x94\x2f\xa6\x5a\xe5\x8a\xdd\xd3\x90\x05\x7c\x4d\x23\x93\xc9\x59\x1d\x20\xe7\x39\xc9\x48\xc4\x68\x9a\x91\x2f\xb0\x4f\xc8\xb2\x2d\x74\xd8\x30\x52\xd4\x20\xa2\xe9\xca\xb8\x90\x6d\xf5\x09\x5c\x9b\x59\xb8\x25\x02\xe3\x6a\x02\x26\x96\x6d\x9a\xb1\x75\x65\x1b\xef\x17\x8b\x57\xf0\x3c\x76\x29\x79\xb3\x3b\xe7\x47\xb3\x0b\x6d\x28\x2a\xd8\x76\x24\xcc\x0f\xdc\xee\xa9\x4c\xb3\xef\x12\x9e\x31\xf0\x2a\xd9\x19\xf5\xbb\x3f\xaf\xf3\x86\xe0\x63\xe5\xc5\x12\x8a\xb7\x0b\xd5\xce\x50\x72\xa7\xba\x6a\x3a\xec\x17\x29\x8c\x82\x15\x0b\xd1\x75\x4d\x10\x76\x9f\x25\x94\x24\xcc\xed\x3e\x36\x47\x41\xac\x88\x24\x25\x18\x77\x0e\x41\x91\x30\xc8\x1d\x45\xd2\x1e\x44\x72\x3e\x67\x89\xc9\xdd\x5f\xc1\x43\xfe\xec\xa0\xa9\x15\x7a\x21\x83\x20\x4f\x14\x41\x32\x5f\xd3\x38\x8e\x4c\x2a\xd5\xca\x59\x41\xc5\xe1\xcf\x3f\xfd\x8f\x13\xb5\x69\x23\x5e\x13\x55\x8e\x3f\xca\xfb\xdf\x74\xb5\x3b\xd7\xef\xfc\xee\x01\x52\xa1\x16\x05\x4c\x00\x15\xc8\xbf\xa6\xca\x4e\xb9\xc7\xed\x12\x80\xef\xe0\x54\x6c\x95\x3b\x49\x00\x7a\x26\xee\x29\x6b\x99\x00\x75\x15\x99\xc5\x45\x23\xa5\xe4\xa9\x56\x52\x29\xa6\x1a\xd8\x0b\xd0\x5c\x14\x9e\xe4\x2d\x9d\x16\x82\x6b\x8a\x69\x5f\xef\x64\x72\x4b\x13\xb0\x1b\x62\xda\xdd\x33\x2e\xf2\x7b\xe3\x52\x36\xcf\x97\x08\x8f\x3b\xea\xf6\x66\xe4\xf7\x68\xb3\xd0\xed\x4d\x16\xb8\xcf\xc6\xaf\x5f\x17\x8a\x41\x45\x7f\x51\xc1\xb7\x51\xbf\x2b\x92\xb4\x4c\x18\xf5\x38\xf8\x6e\x35\x7f\x6c\xbc\x63\x0b\xcf\xd6\x4c\xee\x13\x4a\x56\x56\x6c\x0b\x46\x1d\x56\x43\x59\x9c\x96\xbd\x94\x2e\x2b\xea\x8d\xd7\x0f\x11\xa7\x36\x6f\xb4\x85\x64\x57\x99\xfd\x36\x9f\xb3\x73\x19\xb2\xa9\x4c\xb2\x4b\xc5\xec\x77\xdb\xfe\xff\xd0\xf8\x84\xac\x64\x14\xa6\x85\xb6\x19\x8c\x0c\x09\xbe\x01\xf5\xec\xc2\x5d\xcb\x59\x87\x77\x92\x32\xb8\x73\x4c\x2e\x14\xd6\xc8\x75\x29\x55\xe4\x0a\xd0\xea\x62\x47\x81\xf9\xf3\xf2\x01\x1d\xe2\xf1\x26\xd5\xc1\x34\x08\xfa\x1c\xb9\x26\x96\x32\x33\x2d\xd8\x3b\xd4\x92\x23\x03\x43\x45\xd8\xea\x72\xab\x3d\x0f\xec\x8d\xfa\x54\x11\xb3\xc3\x4f\x3f\xf9\xed\x9b\xdf\x3a\x23\x5f\xfc\x16\x59\x2a\xb6\x17\xee\x1a\x4b\xa3\x6e\x9b\xe7\xa8\xd3\xa4\x19\xeb\x74\x06\xe4\xbf\xc6\xff\xe9\x7a\x7f\x3f\x2a\x2b\xff\x8c\xb8\xc8\x46\x32\x19\x61\x6f\x76\x7e\xb7\xca\xea\xfd\x16\xcb\x48\x2e\x7b\x4b\xac\x67\x65\x5b\x83\x2a\xa1\x56\xbf\x12\xdc\x0c\x65\xc3\x1d\x8b\xe4\xd2\x60\x26\xd7\x0a\x80\x59\xb1\xf0\x15\xf0\xcb\x91\x84\xb4\x11\x15\x01\x70\x43\x93\x83\x48\x2e\x0f\x6c\x36\x73\x1c\x49\x67\x2a\x93\x36\xb0\x46\x72\xd9\x53\xe3\x7c\x66\x5a\x96\xa2\xf8\xb2\xa2\x60\xb6\x8e\x24\x56\xe0\x53\x32\x93\x6f\x2b\xcf\x2e\xbe\x36\x78\xba\xaa\x00\x0d\xe4\x08\x1d\xb9\x1f\xb0\x92\x2b\xb6\x61\x09\xcf\xb6\x6a\x2f\xfa\xac\xc7\x6e\x6f\xaf\x2a\xd5\xbf\x13\x3a\x97\x20\x23\x2a\x5a\x17\xc9\x65\x67\x39\x41\xd3\x01\x2a\x1d\xca\x85\x4d\xc4\x42\x7e\xc4\x7a\xae\x82\x84\xb1\xee\x28\x92\xb3\xfa\x17\x8f\xb6\xa6\x34\x0b\x65\x9e\x3d\xe6\x8a\xb6\xdd\xe8\xf8\xac\xd2\xfc\xf1\xd6\xb2\x4d\xad\x4b\x48\xce\xa5\x0e\x0e\x15\xd2\x5c\x34\x40\xa2\xba\x55\xab\x82\xf0\x21\x40\x58\xd3\x7b\x50\xad\x5e\xf1\xbf\xfa\x13\xb2\x7b\xb0\xa4\xc9\x55\x76\x14\x3a\xb3\xea\x57\xc1\xf7\xce\x6a\x6c\x80\x67\x57\xb2\x4a\x48\x28\xd7\x94\x0b\xb4\x14\xf9\x23\xff\x20\x41\xa6\x2e\x9e\x18\x50\x41\xa8\x48\x15\xef\xf3\xed\x3b\xf2\x97\x9c\x25\x9c\x61\x72\x9b\x20\x92\x79\x38\xe2\x82\x67\xc5\x2c\x21\xf5\x5b\x61\x20\x71\x7a\xff\x00\x8b\x01\x2e\x65\x69\x2c\x45\x58\x84\x95\xac\x69\xb0\xe2\x82\x15\xf2\xbd\x90\x1b\x3a\xa2\x31\x27\x2f\x64\xa2\x08\xe1\xfb\x79\x2e\xb2\xdc\xd9\xa5\x69\x3a\x32\xd3\x78\x39\x26\x47\xc6\xbd\x6a\x81\x08\xf6\x45\x40\x53\x28\x4e\xc9\x44\xca\x33\xbe\x61\x2f\xc9\x9a\x51\xe1\x57\x40\x54\x6c\xc8\xba\xbc\x0f\xc9\x63\x10\x21\xcf\x8f\x66\x18\x05\x69\xf4\x29\x66\x60\xc0\xfe\x1d\x27\xe8\xf5\x27\xbf\x1d\xbf\x1a\xbf\x1a\xbf\xde\xf9\x18\xe9\x41\x3c\x36\x79\xf7\x51\x30\xee\x51\xc0\xca\xab\x7f\x6b\x4d\x47\x31\x63\xdc\x6b\xf4\x8f\xf0\x64\x81\x5a\xcf\xb9\x60\x21\x4a\xd0\x58\x02\x69\x5c\x39\x69\x2f\xf8\x02\x20\xf4\xf3\x4f\xff\xad\xae\xd6\xcf\x3f\xfd\xcf\xcb\x7d\xdb\x65\x27\x65\x4e\x08\x2b\x60\x16\xa0\xdc\x47\x0b\xe3\xeb\x37\xbf\x1b\x7f\xf2\xf9\x67\x63\xfd\xff\xc3\x2f\x80\x95\xb7\x47\x3b\xb4\x57\xe6\x14\xdc\x26\x82\xac\x15\x1b\x14\xe8\x3a\x0d\xa5\x18\xa7\x26\x69\xd4\xc1\x73\xa6\x35\xc2\xa1\x85\xe2\xbe\xf8\xed\x6f\x3f\x6f\x89\xfc\xf5\xdc\x51\x41\x33\x23\xac\xf7\x0c\x73\xb1\xc4\xfb\x7a\x79\x2b\x90\x79\x6b\x31\x2f\x40\x5b\xb5\xd3\x89\x87\xb8\xea\xa8\x06\x05\x4e\x38\x94\x26\xdd\x86\x20\xd4\x9e\x1f\x89\xa5\x8c\x8a\xaa\x55\x1d\xe1\x2e\x45\xee\x8a\x5a\x0c\x8d\x1d\xea\x02\xbe\x1a\xe5\x84\xb5\x18\x5c\xd8\x04\xdd\x18\xa0\x92\x69\xc4\x4c\x42\x0a\xf2\x82\x83\xdb\x8d\x61\x71\x4b\xe9\xf8\xdd\xd1\xd5\xff\x79\x7f\x7a\x79\x74\x72\x4a\x32\x9a\x2c\x99\xab\x54\x6e\x6b\xf9\x0c\x9a\x15\x1c\xbe\x63\x6f\x7c\x3c\x6c\x27\x07\xdb\xc5\xbf\xd6\x37\xbd\x98\x84\xb5\xdd\x10\xd6\x05\xbf\x69\x71\x23\x2d\xf6\x47\x01\xd8\xa7\xc6\x85\xcb\xbc\xa6\x10\x98\x8b\x07\x24\x84\x0d\x2e\xfc\x8b\xcf\x8f\x66\x5a\x65\x9a\x0b\x63\xd5\x6e\x89\xc9\x9e\xb3\x15\xdd\x70\x59\x54\x80\x36\xde\x58\x29\x9a\xba\xbd\x81\x4d\xed\x0c\xfa\xae\xec\xb9\x60\x59\xc4\x45\x8b\x5e\xbc\x0d\xde\xe0\x4a\xab\xa6\x7b\xc9\x96\x7d\x42\x70\x2f\xaa\xed\x0d\x9a\x14\x95\x9a\xa3\xcb\x22\x01\x9a\xc2\xee\x49\xc6\x83\x3c\xa2\x4e\x61\x06\x29\x46\x59\x00\x11\x88\x21\x45\x5f\x9c\x91\xee\x08\x55\x16\x07\xa5\x0f\x41\x59\x7e\xd8\x4f\x2d\x8d\x7b\x6a\xe1\xff\x10\x42\x10\xeb\x4a\xde\xc1\x49\x80\xac\x77\x38\xf8\x8b\x15\x4b\x98\xad\x73\x51\x92\x63\xe4\x2b\x69\xc7\x05\x4a\xa5\xe3\x60\xb1\x34\x25\xee\x2c\x67\x0d\x75\x23\xa1\xef\x40\xae\xe3\x5c\xa7\xd8\x79\xa9\x33\xef\xe6\x6e\x6f\xa1\x32\x25\xd9\x9f\x91\xb3\xff\xbe\xdc\x95\x1b\x0d\x03\x24\xcc\xd6\x62\x14\x43\xc2\xf2\x2c\x91\x62\xac\x7e\x75\xce\x56\x4f\x05\xb3\xfc\x94\x08\xfb\x74\x1d\x67\xdb\x5d\x09\x29\xba\xca\x43\x12\x12\x9a\xad\x7a\xca\x42\x53\xc7\x47\x36\x91\x9b\x6f\x4d\x1e\x76\xc8\xd1\xbe\xce\x05\xd4\x28\x72\xca\xb4\x18\xf5\x8f\xe4\x07\x7d\xbc\x75\x28\x5b\x91\x25\x6a\x9f\x44\xfc\x96\x91\x23\x4b\xc3\x18\xd1\x2d\x4b\xfa\x45\xa7\x3e\x0c\x2a\x89\x5c\xb3\x6c\xc5\xf2\xf4\x6b\xf9\x8e\x65\x09\x0f\xfa\x26\x16\x7a\x3e\xf5\x7e\x6a\xa4\xda\x94\x7c\x2d\x15\x6b\x07\xd6\xaa\x35\x36\x71\x33\x1b\x51\x84\x6e\xbb\xc6\x2d\x4e\x9d\xa5\xb2\x7f\x9d\x98\x18\xfd\xdd\xcb\x38\xd6\x7d\xc4\x80\x1e\x46\x23\x93\xe8\x79\xa9\x83\x23\x50\x93\xa5\xef\x7a\x51\xf5\x5e\x4f\x8a\x24\x10\xf3\xc8\xc2\x7d\x6c\xe7\x21\xb7\xd6\x8c\x22\x49\xc3\x8f\xce\xbb\x56\x02\xff\xc1\xa0\xaf\x01\xde\x38\xd9\xd6\xe0\xd7\x02\x7b\xcd\xf5\x73\x61\x6c\x6b\x45\x52\x31\xb5\xa4\x8f\xf7\x63\x6d\xac\xd1\xe3\x95\xda\xb1\xc0\x6f\x64\x5a\x70\xb4\x68\xaf\x33\xc9\x3d\xca\xa6\x4e\xd4\xa4\x37\x58\x2f\xd3\x44\xa8\x70\x11\x02\xae\x2e\x57\xc7\x3e\xee\xf6\xe8\x69\xf6\xe2\xd2\x1b\x8b\xb3\xd9\x75\x13\x49\xf4\xe8\x0b\xfc\xdd\xab\xdf\xb5\x08\x1f\x1e\x66\xa7\x5c\xe0\x14\x35\xf5\x0f\x3e\xa8\xce\xef\x4b\x44\x61\x5c\x81\x06\x2c\xd1\xb8\x41\x09\x5b\xcb\x0d\x33\x41\xd2\x10\x5d\xdf\x29\x6a\x7c\xa7\xd3\x09\x61\xde\x35\x93\x3f\x70\xc3\xb4\x47\x9a\x8e\x93\x37\xe9\x4b\x37\xcc\xe7\x68\x31\x67\xac\x12\x79\x6f\xe8\xdd\x58\xa7\x39\x46\x39\xc2\x64\x13\xc0\x58\xb7\x82\xac\x59\x96\x32\x5f\xbc\x15\x18\xfc\x69\x18\x56\xe7\x55\xc6\xb3\x99\xac\x67\x56\xf2\x02\x1d\xd3\xad\xc4\x78\x57\xa7\x77\x0c\xe7\xa2\xd7\x6b\x26\x13\x6d\x75\xda\x04\x3d\xc2\xce\x7b\xa0\x63\xe2\x7b\x1b\xd8\x2e\xeb\x5f\x54\x3c\x77\xd5\xdf\x0d\xa7\x3a\x10\x03\x9c\x16\x01\x74\x45\xca\xf2\xb4\x74\x4c\x28\xcb\xc8\xc8\xa4\x62\xfa\x1a\x9b\xda\xff\x44\x48\x31\xfa\x2b\x4b\x9c\xfa\x67\x6e\x69\x6c\x2c\x76\x34\xad\x9a\x07\x76\xb6\xe3\x14\x70\x9a\xcd\xce\xfa\x83\x68\x36\x3b\xb3\x1d\x5b\x46\x99\x1c\x45\x7c\xc3\x0a\x8f\x50\x90\x7c\x10\x41\x8c\xee\x3c\x29\x73\x35\x7c\x34\x14\xab\x88\x6f\xf7\x65\xa8\x43\xb2\xab\x49\x15\x6e\x66\xf2\x68\x7e\x94\x45\xe2\x8f\xdd\xcd\xa9\x64\xe5\xb6\x27\x3e\xdc\x9c\x8a\x19\x48\x8c\xe5\xb4\x9d\x0f\x7d\x28\xbc\x31\x65\x48\x3f\x30\x63\xdb\x52\x9c\x00\x4b\x44\x62\x6c\x2f\x4b\x86\x1e\x29\xd0\xaf\xd7\xca\x56\x56\xe8\x23\x23\x62\x12\xf9\x4f\xa6\xe9\x21\x6a\x5f\x9c\x29\x8a\x02\x29\xd2\x2c\xc9\x5d\x31\x71\x65\xf2\x91\x91\x06\xea\x64\x7a\xf4\xae\x6a\x5f\x1e\x41\xd7\xea\x77\xd8\xcc\x4a\x8f\xe6\xf3\x87\x80\x0e\x9c\x6c\x7c\x7a\x0e\x47\x75\xb1\x32\xad\x30\x0d\x4d\x7e\x1d\x6d\x9a\xc6\x9d\xd6\x1a\x18\x75\xf1\x36\x34\xe1\xd2\xcd\x7b\x58\xe9\xcd\x2f\xab\xd3\xa8\x69\x3a\xa0\x76\x6b\x59\x09\xc3\x1e\xc3\x7d\xf4\xcb\x54\xdd\x9a\xa1\xc9\x53\x57\x68\x6d\x47\x70\xe6\x9a\xba\x24\x3c\xd2\x27\x2e\x73\xcd\xdd\x75\x20\x3a\x3f\x6d\x89\xc6\x1c\xa9\x09\x39\x7f\x76\x79\xa0\xb6\x45\x60\xa6\x3c\x64\x01\x4d\x8e\x82\x80\x45\x0c\x63\x11\xfa\x72\x64\x57\xde\x4f\x0b\xe1\x81\xdd\x2b\x74\xb5\x06\x44\x61\x86\xf2\xa0\x93\xa2\x8f\x8f\x96\x13\xc0\x8b\xa0\x47\xea\x99\xea\x6a\xde\xbb\xbe\x32\x44\x80\x50\x21\xc5\x76\x2d\x73\x93\x69\xd0\x38\x50\x38\xd5\x9e\xc8\xed\xd9\xb9\x99\x53\xfe\x57\xa6\xd3\x2c\x55\x6b\x56\x8d\xc9\x99\x5c\xa6\xe4\x8e\x26\x82\x8b\xa5\x22\x3a\x59\x9e\x08\xb7\xd6\x6e\xbe\xc5\xa4\xb0\x90\x02\xd4\xa8\xdd\xad\xa8\x15\x88\x5b\xa7\x95\x0a\x71\x45\x74\xff\x26\x8f\x04\x4b\x28\x06\xb8\xbb\x3a\x5f\xd1\x14\x59\xb4\x90\xa7\x81\xdc\x30\xad\x57\xc9\x9c\x15\x03\x31\xaf\x62\x5e\xcd\x34\xe8\xbc\x7e\x0f\xe1\x52\xab\xfb\x37\x11\x3c\xe3\x34\xf2\xa5\x21\x6a\xdb\x44\xfb\xd3\x6a\x92\x52\x93\x07\x36\x54\xaf\xdc\xdc\xea\x42\x16\x44\x60\x4d\x6f\x19\x56\x36\x50\x1d\xd7\xdc\x1e\x76\xa6\x50\xf5\xe5\xf5\xe4\x09\xea\x4b\xd3\x5c\x41\x65\x59\x0d\x86\xd0\xaf\x66\xc4\x35\x39\x78\x9c\x2f\xde\x7c\xf6\xa0\x45\xa1\x53\xb7\xa0\xd1\x49\xcf\xd4\x91\xbe\x8a\x80\xf7\x11\x6d\x41\x41\xdd\xdf\xf6\x89\xba\x81\x02\x39\xff\x7a\x61\x37\x30\xff\x87\x84\xcc\xc2\x87\xdf\x9e\x4f\x76\xfd\xee\x8e\x27\x6c\x99\xd3\x24\xec\x8b\x25\xbf\xab\x7d\xd0\x4c\x3b\x5b\xb4\xb0\x84\xae\x27\xc9\xd9\x5f\xcc\xbd\x70\x70\x3d\xa7\xeb\x6e\xa6\xef\x3b\xe7\x67\x35\x2e\x03\x54\xf8\xda\x78\xe6\x71\xd8\x52\xcd\xac\xb5\x9a\xce\xec\xab\x74\xb7\x1c\x6b\x25\xf6\x8e\xb7\xa9\x58\xda\x19\x4f\x33\xa6\x28\x43\x2f\x6d\xd0\x77\xce\xcf\x6a\xe9\x99\xcd\x2b\x54\x0d\xf9\x2c\x44\xf3\x6d\xb9\xb8\x4a\xc0\xc2\xeb\x2f\x3e\xd9\xfd\x5c\x17\xeb\xe9\x73\x37\xbf\xb3\x1a\x57\xe7\xae\x7e\xd0\xd7\xd3\x05\x79\xd7\x3a\xae\x18\x6b\xbd\xa4\x1f\xb3\x98\x4b\x14\x09\x2e\xf3\x88\x4d\x13\x2e\x15\x9d\xed\xbf\x38\xc7\xc7\xd5\xc5\xc6\xe6\x57\x30\x77\x78\x94\x1e\xfa\x7c\xd6\x40\xa2\x65\x15\x90\xc2\x2a\xe2\xeb\xef\x76\x5e\xec\x7d\xd8\x3b\x3f\xbe\x23\x41\xc3\x1f\x4f\xa6\x55\xd6\x4e\xcd\x35\xcd\x79\xa6\xcb\xa6\x40\xb6\x42\xf7\x01\x2c\xf2\xbe\x85\x4c\x6c\x9b\x6e\x5f\x0f\x62\x2c\xee\xc3\x78\x57\x49\xfc\x8f\x27\xd3\xc7\x8d\x67\x84\x5c\x15\x0f\x0a\x65\xd4\x62\xb6\x93\x0c\x35\x0b\xc4\xc8\x44\x97\x4d\xc2\x4c\xaa\x20\xa2\xb9\x05\xf2\x3f\x9e\x4c\x9d\x22\x68\x23\xde\x71\x77\x71\x7c\x28\xa8\xfb\x8b\x16\xd4\x45\xdf\x1a\x6d\x78\x07\x43\x1f\x67\x4f\x51\x52\xf7\x6b\x18\xe7\x1c\xc7\x41\xbb\x26\xbe\x2e\x6b\xea\x3a\x9a\x34\x8b\xea\x3a\xe7\xab\xf7\xbf\x28\xab\xdb\x6c\x04\x83\x3d\x55\x5d\xdd\xa1\x0e\xee\x50\x07\xd7\xde\x82\xa1\x0e\xee\x53\xd6\xc1\x6d\x2b\x53\x1b\xc7\xd1\xf6\x42\xbc\xc5\xca\x55\x5d\x84\xfa\xa8\xd2\x1a\xb5\x84\xa6\xa8\x0b\xf4\x84\xda\xc2\x32\x43\x3a\x37\x89\xba\x5d\xb4\x0f\x39\x15\xe8\xc9\xc4\x3a\xec\xc8\x6a\x84\xf2\x5c\x66\x33\xc5\xde\x74\xcd\xfc\xa4\x68\x69\xcd\xda\x08\x53\x26\x75\x3a\xb8\xc5\xa0\xf1\xaa\x58\x87\x9b\x6b\xb2\x97\x66\x50\xc5\x52\x96\xd5\x26\xb4\xf2\x9f\x80\x84\xfe\x3c\xb5\x2a\x92\x41\x3d\x94\x5b\x2e\x96\x4e\x77\x9f\x34\x0f\x56\x84\xa6\x5a\xb5\x1b\x98\x54\xd3\x58\x3b\x6c\x96\x98\x2c\x40\x2e\x08\x13\xea\xce\xb0\x06\x46\x3d\xb5\x28\xd4\xb5\x50\xb1\xb5\xa6\xe6\x9c\x18\x26\xe3\xd3\x30\x01\x13\x61\x8b\xa6\xac\x32\x3e\xc4\x6b\x62\x0e\x49\x6d\xc5\x9c\x33\xa2\xd9\xcf\x5d\xf7\x16\xf3\xbc\x77\x67\x22\x67\x18\x54\x88\x85\x7f\x20\xe1\x34\x26\x88\xd7\xcc\x2c\x66\xbb\x04\x37\x60\x53\xea\xd9\x09\x25\xf3\x35\xae\x5b\x7b\x48\x05\x09\xcf\x58\xc2\x29\x66\x1f\xb2\xfc\xa1\x21\x3d\x93\x06\x9b\x3e\xfa\x3b\xa5\x93\xae\xac\xe1\x7a\xef\x88\x28\x09\xc5\x2e\x25\x9c\x96\x33\x72\x4d\xc5\xc9\x9f\x92\xa2\xa2\x02\xf9\x4a\x66\x2b\x1d\xea\x2b\x93\xd1\x9c\xa6\x00\x1e\xad\xa5\x9c\xea\xfd\x12\xf6\x6f\x58\xf9\xc3\x09\x1b\xe0\x52\x59\xc2\x44\x60\x4e\xde\xc8\x4a\xc6\x27\xf3\x0c\x43\xe7\x4c\x2c\x96\xae\x0c\x23\x13\x48\xe5\x68\x2a\xb3\x79\x26\x2c\xc2\x22\xa1\xbf\x05\x78\x88\xa9\xb9\xbe\x16\x26\x55\x29\xfa\x82\xd7\x21\xe1\x31\x9a\xa9\xcd\x14\x6c\x09\x93\xd3\x2c\xc1\xbe\x0e\x87\x31\xee\xd1\x3f\xff\xf4\x8f\x73\x99\x41\xd6\xd0\xa3\x28\xd2\x8e\xed\x76\xdf\xee\x7e\xd5\xb7\xe0\xaa\x0b\xc7\xa9\x48\x47\x49\x33\x9e\x42\xb2\x42\x8c\x18\xd4\x0b\x31\x95\x4e\xc7\xe4\x48\xe7\xf1\xf2\xc0\x16\x8e\x26\x15\xe6\x78\x6a\x1f\x70\xbd\x64\x05\x20\x58\x8c\xfa\xc3\x52\x11\x53\xec\xdc\x0f\x55\x80\xbd\x7b\x8a\x06\x83\x94\x53\x74\x15\x9f\xee\x91\x49\x93\xfa\x22\xdb\xf1\xe9\x0a\x1a\x83\x6b\x60\x2a\x51\x7b\x7b\xa9\xa2\xf1\xf2\x83\x6a\xe5\xf6\xda\xd1\x40\x4f\x50\x75\x2d\x7d\xdd\x82\x60\x6f\x8d\x4f\x14\x8d\xce\xdc\x2e\x7b\xbd\x80\x41\x74\xc1\x56\x48\x3e\x79\xa5\xaf\x5e\x4b\xdb\x06\x12\x38\xaf\x7f\xac\x9d\xb6\x65\xac\xed\x7d\x0b\xce\xa2\xd0\x1b\x09\x51\x3e\x05\x60\x68\x81\x02\xac\xac\x6f\x3a\xe0\xb1\x52\x90\x46\x26\x7c\xa9\xe0\xe0\xbb\xff\xe6\x01\xee\xeb\x85\x3a\x42\x2c\x59\xe3\x07\x84\x66\x2f\x2d\x93\xab\xbe\x22\x98\xf3\x38\x82\xd4\x95\xed\x5d\x16\x20\x2b\x0b\x5c\x68\x32\xac\xdd\xa2\xe1\x20\x37\x60\xd3\xde\xa9\xba\x00\x05\x14\x15\x5d\x42\x31\x21\x2c\xe2\xbf\xe9\x9a\xe9\x78\x06\xa8\xad\x02\x81\xe3\x6d\xb1\x98\xe5\x63\x59\x97\xe1\x8c\x25\xcc\x66\x1b\xe6\x36\xde\x2d\x57\xd4\x0f\x14\x16\xdb\x81\xd8\xef\xad\x4c\x48\x45\xb8\xdb\x87\x48\x7b\x48\x23\xba\x23\x44\xf8\x5a\x71\x01\x69\xe9\xa4\x66\x1f\x32\x93\x33\x1b\x74\xf3\xe0\xb2\x05\x8e\xfe\x6d\x97\x87\xb8\x33\xd3\x71\x0b\xbe\xc5\xce\x42\x4a\xe9\x15\xab\x2e\xc5\x7b\xd1\xf0\xf1\x2c\xff\x03\xca\xa9\x2f\x5e\x7e\x68\x02\xc0\xac\xb1\xbd\xe3\xdd\x00\x50\x95\xb0\xaf\xdc\x2e\x69\xe5\x23\x13\xf2\x8d\x4c\x8b\x6a\x51\xe5\x2e\x3a\x04\xf5\x72\x2f\xdb\xfb\xf4\xae\xb3\xba\x0a\x64\xf3\x80\x13\xdf\xf5\x20\xd3\x20\x91\x29\x70\x7a\xd6\x6d\xf4\xd0\x84\x02\x8c\x9d\xb8\x9d\x60\x9c\x40\x1b\xba\xac\x47\x5e\x30\x9d\xcc\xdd\x89\xf3\x94\x04\x99\x25\x3c\xc8\xbc\x65\x27\xcb\xc7\x50\x37\xd8\x42\x2d\x98\x48\x1f\xca\x2b\xb0\x5a\xc7\xc1\xa9\xa2\xbc\x32\x60\x0f\x39\x71\xc8\x59\x82\xde\x12\x4b\xbe\x61\x42\x49\x9f\x6a\xf9\xad\xe7\xdc\xcf\x20\x5a\xe3\xf6\x82\x74\x6b\xc0\x74\xf9\x08\x99\x9d\xef\xb6\x27\xf8\x41\x11\x74\x51\xe5\xab\xcc\x8a\xcf\x3d\x99\x1b\xca\x07\xf6\xf1\x5f\x0e\x16\xbe\xca\x03\xe5\x53\x07\x46\x51\x71\xa0\x05\x1a\x53\x9f\x5b\x60\xf9\x20\x38\xc8\x15\xa4\x30\x86\x53\x0a\xf5\xce\x4c\x82\xef\x14\x7d\x3c\x75\xd2\x7a\xc8\x65\xb2\x25\x5e\x6f\xc3\xf2\xa9\xe5\xce\xce\xaa\xc9\x94\x4c\x39\x2b\xcd\x2c\x69\x5c\xad\x24\x8f\x0e\xa8\x4b\xa4\x61\xa6\x72\xf5\xf1\xd4\x64\xbc\x7e\x7f\x32\xf5\x64\xc6\x36\x4f\x9f\x5d\xf5\xe7\x26\x28\x9f\x1e\x59\x0a\x9a\x8d\xbb\x0f\x4a\x77\xe6\x82\xf2\xd9\x3d\x87\x41\xf9\xf4\x3d\x90\xbb\xf3\x8d\xe7\xe5\x47\x1d\xc7\xb2\x1f\xa3\xa0\x4f\x26\x98\xf4\x8a\x8e\x11\x0b\xa3\x59\x69\x9e\x45\x2c\x83\x44\x88\x90\x80\x1d\xc7\x6a\xef\xb3\x60\x88\x5a\x8f\x4a\xbf\x3d\x8b\x77\xbb\xb2\xd7\x7b\x65\x8d\x90\x0e\xb2\xd2\xc5\x37\xb0\x3e\x64\x05\xcc\x49\x26\xcc\xf3\x85\x25\x5f\x38\x8b\xc6\x57\x97\x85\x3d\x20\x37\x99\x12\x9d\x1c\xcb\xce\x21\x72\x60\x34\xc5\xb3\x22\xe5\x4d\x07\xd7\x67\xcb\xe5\xfa\xea\x80\xd1\x0a\xa1\x9c\x1a\x08\x68\xb5\xab\x1e\xa6\x83\xc7\x59\x98\xc4\x29\x8a\xb9\xe9\x8b\xc1\x3a\x31\x80\x29\xb5\xbf\x03\x06\xeb\x58\x7b\x89\xde\x6a\x18\xec\x1a\x71\xd8\xb5\xc6\x62\xd7\x88\xc7\xae\x15\x26\x6b\xe5\x79\x06\x5c\x06\x4f\x2f\x5c\x96\x3e\x40\x00\xee\x96\x7b\x5b\x55\x78\xe5\xe3\x94\x7b\xc9\x8b\x94\x31\xa3\xfb\x02\x54\x86\x39\x41\xd3\xad\xc8\xe8\xfd\xcb\x4e\x79\xa4\x55\x6c\xd6\x3c\xa4\x4f\x2c\x6e\xef\xdb\xa8\xbc\x2c\xa9\x59\x26\x4d\x69\x58\x5d\xb7\x73\x99\xa1\x21\xfb\xd0\x93\x04\xd5\x02\x82\x76\x14\x36\x76\xaa\x0e\xaa\x80\xe0\xb1\xa8\x49\x87\xac\xca\x22\x79\xf7\x72\xbf\x3a\x65\x0b\xd8\x08\x55\x53\x18\xd6\x64\xa7\xef\x50\x05\x80\x9e\x0b\xf4\x97\xb3\x15\x23\xd9\x9d\x84\xb3\x06\x5e\xc8\xe6\x1d\x22\x08\x45\x84\xb6\x65\x1a\xd6\x8e\xbd\xbb\x10\x66\xf5\xba\x62\xa5\xa5\x57\x65\x96\xf4\xba\x5f\x66\x0c\x33\xed\xbb\x69\xc2\xdd\x4a\x46\x7a\x93\x0e\x61\x8b\xae\xaf\x4b\x82\xfc\x7b\xc0\x2e\xbf\x59\xd1\xf4\xc5\x7a\x7b\x13\xd1\x39\x8b\x5e\x02\xde\xd1\x48\xbe\xeb\x3a\xeb\x8a\xae\x46\xd1\x00\x87\x0c\xe7\x87\xbe\x08\xa3\xc2\xbc\x1d\xaa\x71\x7b\x9e\x37\x5d\xa0\x03\x54\xf4\x45\x31\x45\x98\x1c\xf9\xf9\xa7\xbf\x9b\x89\x82\x76\x54\x2f\xa8\xf7\xb1\xc0\x05\x7b\xd7\xdb\x5c\x92\x9a\x83\x5a\x56\x7b\xb7\xed\xab\x2d\x16\xd4\xbe\x98\x6e\x85\x83\x3a\x75\x6c\xb1\x60\x81\x0e\xee\xd3\x9a\x82\x08\xd0\xaa\x8e\x98\xaa\x54\xb4\xed\x31\x75\x21\xc5\xc8\x78\xc6\xa3\xf9\x15\x23\x1f\xb4\x4e\x64\x21\x93\x35\xab\xeb\x20\x5a\xea\xe5\x96\x0f\x1c\x86\x26\x60\xca\x32\x19\x8f\x21\xc0\xeb\x40\xe7\xa3\x20\x90\xb9\xd8\x85\xef\xba\xaa\x7e\xf8\x8b\xf1\x5f\x35\x94\xdc\xde\xa7\x43\x93\x49\x49\x2c\xc3\x22\xbb\x0d\x30\x73\x05\x7a\xd6\xc0\xe8\x40\xbb\xb8\xe2\xd6\xd3\xd6\x4b\x97\x4c\x48\xd5\x29\xc4\xff\x54\xe5\x01\x28\x20\xf2\xd1\xe0\x26\x0f\x01\x79\x77\x97\x3e\x05\xb2\x03\xec\xbd\xa0\x4d\x4a\x88\x2b\x4c\x9c\x6a\x9f\x52\x5e\x68\x22\x15\xf3\xdb\x71\xf3\xfb\x31\x76\x64\x07\xf5\x03\xe9\xcb\x25\x91\xbe\x9c\x12\x69\xde\xaf\x4e\x5e\xe9\xdf\x77\xa7\x2b\x72\x52\xa9\x71\x43\xac\x6f\xe0\x39\x26\x93\x0e\xa9\x43\x3d\xa5\x75\xa1\x69\x34\x28\xe5\x90\x4c\xe7\x22\xf7\x1a\xd9\xab\xcf\xd1\xf9\xc9\x73\x8f\x3b\xb6\xfd\xec\xa6\xcd\xf2\x95\x76\xeb\xdb\x66\x95\x65\x71\x3f\x23\xdb\x37\xb3\xd9\xb4\x34\x22\x79\x2d\x6b\xea\x78\xa8\xa6\xfe\xa9\x1b\xc7\x9b\x8f\x33\xaa\xad\x59\xb6\x92\xe1\x0e\xb4\xe7\x1d\x7e\xf0\xb8\x34\x07\x97\x0c\x97\x43\xaf\xdb\xf2\x2b\x52\x7d\x62\x2a\x6a\xe6\x29\xc2\x5c\xed\x14\xdc\xc3\x43\xec\xc5\xcc\xf6\x05\x1b\x2f\xc7\xe4\xeb\xd3\xd9\x3e\x99\xfe\x7f\xec\xbd\xeb\x72\xe4\xb6\xd5\x28\xfa\xff\x3c\x05\xa2\xf9\xaa\x34\xb3\x8f\xba\x35\xe3\xcb\xc4\x91\x2b\x75\x4a\x96\x34\x76\x57\x34\x52\x7f\x52\x8f\x9d\x54\xe4\x2d\xa3\x49\x74\x37\xb6\xd8\x00\x43\x82\x2d\x75\x1c\x9f\xf2\x6b\x9c\xaa\xe4\xe5\xfc\x24\xa7\xb0\x16\x40\x82\x24\x78\x69\x8d\xe4\x5c\x3e\xf2\x87\x3d\x6a\x82\xb8\x2c\x00\xeb\x7e\xf9\x30\x3b\x20\x4c\x05\xe3\x57\xe4\xbd\x29\x11\xd5\x21\x41\x98\x3e\xf4\xa9\xbd\xbc\xda\xd7\x4c\xc4\x12\x5c\x5b\xfe\xb5\x34\xae\x31\x55\xab\x1d\xf6\x71\x7f\xaa\xdb\x3f\xc7\x36\x76\xed\x60\xb7\x85\xc1\xdd\x41\x98\xe6\x38\xdf\x2a\x5c\xa6\xdd\x8b\xbe\x9b\x41\x08\x1b\x2f\x8f\xc8\x88\xb0\x07\x1a\xa8\x23\x72\xb8\x90\x12\x4a\x3e\x42\xda\x1b\x72\x38\xa7\x09\xb9\xb8\x9c\x9d\x1d\xa1\x4f\x04\x13\x2a\xd9\x92\x75\x17\x71\xb9\xbc\x38\xff\x93\xc1\x63\x5b\xc2\x38\xe6\xc3\x26\x3f\xc0\x18\x3f\x80\xf7\x32\xf9\x01\x87\xf8\xc1\x7a\x2b\x34\x14\x57\x2b\x1e\xa8\x7a\x4f\x73\x11\x15\x33\x79\x6b\x81\x9a\x2b\x5f\x2c\x6c\xf1\xf4\x39\x6f\xe5\x03\xa0\xc1\x0b\xa9\x5b\x4b\x69\xd7\x00\xe8\x36\x81\xab\x71\x60\xe8\x40\xb5\x13\x05\x8e\x84\x73\x66\x81\x60\xa4\x5f\xcd\x7e\x1f\x59\x90\x9b\x9a\xb6\x54\xad\xb0\x98\xed\x51\x5e\x8e\xbe\x87\xb0\x86\xc7\x0c\x66\x05\xdd\x45\x50\xe9\xd1\x6e\x5f\xd1\xf5\x08\x7f\xfa\xb8\x11\xb0\x8f\x56\x60\xef\xc0\x65\x12\x03\x80\xa7\x65\x80\xe2\xa6\x84\x4d\x8f\xef\xb4\x0f\x21\x24\xfd\x90\x51\x77\x57\x3c\x58\xf7\xa4\x97\x93\x93\xf7\xd3\xbe\x76\x4b\x40\x44\xcd\x73\x77\x31\x14\xb5\xa7\x3e\x80\xd9\x62\xa4\xab\x0c\x01\x3f\xc1\x90\x79\x82\xe8\xc6\xaa\x99\xf8\xb8\xd9\xf1\x4b\xa5\x9e\x4d\x7d\x9d\x5c\xab\x8a\x93\xe6\x69\x61\xeb\xd1\xe3\xb4\xc9\x91\x60\x05\xd2\x8d\x36\x6f\x5b\x0c\x41\xbd\x4e\xa2\x5e\xda\x0e\x34\x1e\xb8\x12\x29\x5c\x28\x01\x50\x02\x48\x3d\x46\x26\x0b\xa7\x8e\x74\x37\x79\x98\x69\x00\xa3\xfb\x32\xf8\x4c\x41\x9a\x93\x52\xa9\xe1\x3c\xc3\x09\x25\x8a\x05\x2b\xc1\x03\xea\x2d\x9e\x53\x3c\x20\xd0\xa3\xd2\x8a\xaf\x63\x99\x16\x8e\xa5\x98\x1d\x1e\x52\x38\xe4\xb9\x13\x17\x3c\x61\xf7\x34\xf2\x67\x81\x2b\x1e\xc4\x17\x46\xa1\x80\x19\x18\x25\x61\xa2\xa8\x36\x0b\xde\x23\xdd\x97\xa3\x53\xf7\x0c\xcd\x3e\x7e\x3b\x74\x37\x63\xe2\xc6\x4f\x77\xa9\x6e\xf3\x84\xb0\x5f\xa0\xdb\x21\xac\x10\xfa\x3a\x0b\x56\x92\x5c\x21\xc9\x26\x2f\xf9\x98\x8d\x49\xcc\xc5\x32\x6d\xd7\xdd\xf6\x5a\x6f\x0f\x74\x10\xfb\x23\x13\x1a\x00\x32\x99\xda\x08\x85\x8f\x76\x68\x28\x09\x66\xc8\x8d\xbb\x50\x9e\x5a\x8d\x6e\x23\x14\x7a\x40\xa0\xc1\xc7\xbc\x61\x71\x36\xb7\xab\xe3\x69\x56\x64\xa5\x70\xf2\x74\xe4\xe5\x19\xda\x17\xf7\x51\x68\xa3\x1e\xf2\xd3\xd0\x2e\x9f\xe1\xb4\x2f\x5d\xec\x4b\x98\xca\x2e\xf2\xc5\x7c\x4c\x6c\x04\x6a\x9b\xef\x98\x89\x31\x24\x31\xe5\x49\x73\x42\xe3\xe2\xd1\x42\xad\x29\xab\xe2\xc2\x94\xce\x65\xa6\x7a\x90\x92\xa7\x92\x1b\x85\x54\xfa\xf6\xf5\x3b\x19\x17\xd8\xb8\xc3\x12\x0d\x4d\xda\x3d\x42\x06\x92\x31\x90\x8c\x7f\x77\x92\x21\xa4\xb2\xac\x55\x23\x58\xda\xed\xc5\x3d\x2d\xc5\xfd\x6c\xc4\x35\x57\x26\xcb\xf6\x75\x78\x33\x99\x66\xcd\x00\xeb\xb8\xc9\x3d\x8c\xd2\x8f\x33\x47\xc7\xff\xaa\xc0\xbd\xd9\x73\x61\xfb\x84\xd4\xbf\xa6\x96\x85\x48\x00\x97\x17\xb0\x30\x19\xc3\xa9\xe7\x49\x9b\x6b\x8e\xf1\x2b\x33\xfb\x7c\x06\xfe\xef\x57\x10\xbc\x61\x43\x11\xd0\x77\xe6\xe5\x9c\x05\x34\x4b\x8d\x37\x47\x87\x63\x70\x3e\xc5\x80\x25\xd0\x47\xee\x11\xf2\x0a\xcd\x89\x36\xd9\x5d\xc9\xbf\xa5\x8b\xc8\xa2\xe3\xcb\x91\xeb\xbb\x71\xe0\x7a\x6e\xe0\x1f\x20\xad\x94\xfe\xda\xbc\x2d\xfe\xbe\x3e\x99\xe1\xdb\xe6\x61\x4c\x8f\xe7\x5c\x31\xeb\x1e\x42\x85\x3d\x20\xd6\xa4\x80\x59\xc0\xdf\x8c\x3e\xf9\xfc\xf3\x16\x1b\xdb\xf3\x1d\xfb\xb4\x29\xed\x1a\x3e\x65\x33\x41\x9e\x76\xad\x47\xa8\x44\x43\xe5\x1b\x77\xd4\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\xf0\xaf\x78\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\x69\x25\x03\x2e\x1b\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\xa2\xfe\x0c\x51\x12\x43\x94\x44\xfe\x0c\x51\x12\x43\x94\xc4\xf3\x47\x49\xb4\xd4\x82\xd1\x32\x06\xe6\x3b\xf3\xbd\x6b\xef\xb8\xe5\x94\x9b\xec\x78\x8f\x48\x73\x68\xbe\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x66\xd4\x38\xe4\x39\x1c\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x8b\x67\xb0\xe0\x3b\xcf\x60\xc1\x1f\x2c\xf8\xe6\x19\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\x01\x97\x0d\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\x7e\xfd\x19\x2c\xf8\xd5\x67\xb0\xe0\x0f\x16\xfc\xea\x33\x58\xf0\x07\x0b\x7e\xfe\x0c\x16\xfc\xc1\x82\x3f\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\x9e\xc3\x21\xcf\x61\x9f\x11\x86\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xb4\x6a\x48\x5a\x35\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\xdb\xe6\x3f\xe4\x39\x1c\x48\xc6\x40\x32\x86\x3c\x87\x43\x9e\xc3\xca\x33\xe4\x39\x1c\xf2\x1c\x56\x9e\x21\xcf\x61\xb3\x10\x39\xe4\x39\x1c\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x5a\x56\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\xb4\x92\x01\x97\x0d\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x51\x7f\x86\x28\x89\x21\x4a\x22\x7f\x86\x28\x89\x21\x4a\xe2\x3f\x31\xcf\x61\x1f\x5b\x58\x1d\x73\x75\xdb\xbf\x16\x68\xba\x2c\x78\x4d\xdf\xac\xb3\xd4\xd5\xe6\x9b\x43\x87\xc9\x02\xa5\x28\x69\xb9\x1b\x96\xe4\xdf\x15\x48\xc8\xd8\xb5\x8e\x4b\xdd\xa8\xe5\x5e\x16\x1e\xdf\xca\xe6\x78\x6c\x60\xe6\xd1\xbf\x05\xb3\xe6\x81\xd8\xa2\x3b\x05\x3d\x7f\x38\x46\x49\x26\xd7\xc3\xac\xf8\x52\xb3\x85\x37\x7b\xd0\xdf\xcd\x1e\x1c\x60\xd3\xd6\xd7\x35\x5d\x68\x96\x46\x01\xca\x84\x0e\x22\x79\xcf\x12\x9c\x0d\x7a\x0c\x39\x93\x4b\x89\x5c\x73\xa5\x58\x78\xa0\x25\x72\x74\x37\xf7\x75\x1a\x48\x91\x72\x4c\x59\x89\x12\xf7\xcd\x1e\x17\x0b\x2e\xb8\x62\x37\x7b\x64\x44\xc0\x4b\xc5\x59\x8e\x15\x71\xcc\x3c\x49\x44\x53\x35\x26\xf9\xca\xbc\x20\xd1\x73\xe5\x21\x13\x8a\x07\x34\x32\x13\xac\xf6\xc3\x05\xa1\x51\xbc\xa2\x22\x5b\xb3\xc4\x69\x07\x07\xc0\xd7\xab\x31\x0b\x1a\xe1\x10\x4d\xb1\x5e\xc5\x26\x1e\x0e\x91\xad\xe7\x75\xb9\x3d\x4e\xd8\xe9\xc5\xf1\xac\xeb\x78\x4c\xb1\x19\xe1\x22\xe4\x01\xca\x24\xb9\x6b\xf4\xca\xa6\xa1\x04\xea\xc5\x53\x0b\xa8\x39\x5b\x48\x3f\xe2\xa1\x62\x4b\x74\x77\x8d\x73\x9d\x4b\x19\xb1\x7a\x56\xcd\x16\xaa\x53\x91\xca\x67\xae\x84\x87\xa7\xda\x91\xf3\xec\x45\x8b\x79\x70\x87\xff\x91\x99\x17\x01\xe9\xb5\x55\x38\x76\xe7\x24\x18\x47\x6e\x67\x0f\x95\x34\x0a\xa6\x16\xb9\xa3\x98\x47\x4a\x16\x32\x8a\xe4\x3d\x42\x0d\x85\xcf\x5c\x1c\x43\xba\xf0\x7b\x94\x4d\xf0\x62\xdf\x46\x5c\xb1\x84\x46\xfa\x17\x5f\xcf\x37\x37\x64\x84\x81\x0c\xfa\x54\xaf\x63\x9a\xf0\x54\x8a\x03\x02\x91\x4c\x56\xa8\xb0\x5d\x2e\xa4\x24\x73\x9a\x80\xa0\x93\x0f\xf7\x9b\x1d\x87\x2b\xc6\xd3\x22\x11\xfb\x4b\x46\xa3\x2f\xd1\xf3\xce\x12\x3a\xbe\x30\x14\x8e\xa7\xd0\xc6\x2a\xed\xf2\x21\xfd\x48\xe4\x47\x98\x07\x2d\xbc\x45\xe6\xc5\x3f\x03\xfc\xe7\x78\x3c\x26\x3f\x39\x33\x50\x49\xc6\xac\x0b\x7d\xee\x81\x86\x63\xfc\x91\xf8\x7d\x5e\x8d\xb6\xb2\x63\xa8\x62\xae\x7a\x01\x5c\xf4\x98\x9c\x6f\xb0\x1d\xe7\x0b\x83\xb5\x4d\xd0\xbf\x25\xce\x9c\xb5\x40\x0b\xfd\xdd\x6a\xd2\xf1\xaa\x18\x7a\x96\x8f\x4c\x55\xb1\x3b\xce\xce\xfc\x06\x0e\xa9\x97\xe8\x9a\x2e\x72\xcd\x86\x5c\x40\x5b\x10\x6d\xe1\xff\xd9\xeb\xd7\x9f\xbc\xc5\xff\xe2\x9b\xfc\x9b\xeb\x95\x4c\xd4\x28\xe0\x49\x90\x71\x05\x8c\x8b\xf9\xc8\x37\xd0\xdf\xfe\xd6\xfa\x35\xa8\x40\xd5\x4b\x6c\xf3\x2a\x6f\x14\xd3\x84\x09\x4c\x76\xbb\x4c\x64\x16\x6b\x6e\xed\xe6\x46\xd1\x28\x7a\xe9\x55\x65\x9b\xec\xab\xe8\x9c\x90\xe3\x0b\xdb\x9b\x3d\xc3\x34\x8a\x1c\x09\x15\x2e\xe8\x39\x9e\x07\x64\xc1\x1a\x90\x9c\xbe\xda\x88\x67\xac\xff\x96\x8b\xdf\xd3\x03\x32\x3a\x20\xb7\x00\x87\xc3\x31\xb9\x86\x2b\x47\xcc\x95\x6b\xec\x74\x2d\x13\x46\x62\xcd\x9c\xa6\x29\xdf\x30\x32\x47\xdf\xe3\xad\xd5\x8c\x18\x9d\x15\x61\x69\x40\x63\x46\x82\x15\x4d\x68\xa0\x58\x62\xa6\x7d\x86\x0e\x9c\xde\xcb\xf0\x12\xa8\xd4\x9a\x86\x6c\x94\xc5\x78\x2c\xd2\x57\x39\x3a\x82\x90\x17\x83\x3a\xee\xd9\x5c\x73\xbf\xcc\x20\x0f\x77\xc7\x43\x16\x47\x72\xbb\x66\xc2\x8b\x4e\xcd\xf7\x71\x22\x43\x7b\x48\xa1\x5f\x7d\xa7\x00\x27\x25\x52\x28\x26\x42\xe7\xa8\xd3\xe0\xce\xfc\xf0\x93\x6e\x5e\xf4\x4f\x7e\xf3\xfb\xa6\x1b\x10\xb2\x8d\xed\xfe\x37\xa4\x72\x0b\x7c\xa8\xac\x8d\x79\x2a\xeb\x12\xfa\x72\x85\xd7\xde\xaf\x9e\x8d\x35\x34\x93\xb4\xa2\xc6\xae\x0c\x22\xe8\x2b\x7b\xd0\x54\x50\x6b\x16\x1c\xc0\xfd\x0a\xc2\x28\x4b\x34\xdf\x71\xe8\x30\x89\xa6\xbd\x78\x4a\xdf\x3b\x69\x32\x4d\x1f\x98\xbf\xb4\x50\x33\x26\xe8\x3e\x05\xd4\xe4\x21\xd6\x1c\x95\x8a\xb6\x8e\x4c\xf3\x12\xb2\x64\x7b\xfd\xe2\x1c\x3c\x2a\x48\x90\x30\xe3\xb7\x9d\x9a\xdb\x2d\x13\x22\x78\xf4\xea\xc0\x7a\x5e\x87\x6c\x41\xb3\x48\xa5\x04\x97\xa5\x41\x97\x84\x0d\x32\x8d\x92\xe4\x5e\xe3\xca\x89\xc9\x65\xae\x27\x71\xe6\xa4\x35\x07\xbe\xd5\xe2\xcf\x3c\x65\x34\x38\x0c\x91\xa6\x00\x4e\x33\x3e\xe1\x29\xde\xb1\x11\xf9\xb3\x61\xe5\xf4\x84\xec\x48\xdf\x1f\x18\x12\xa1\x19\x63\xd0\x3c\x96\x06\xf6\xde\x63\x2e\x82\x28\x0b\xad\x6a\x3e\xa0\x9a\x59\x86\x0e\x8a\x6e\x08\x12\x69\x21\xf3\x25\x41\x77\xaf\xf4\x4c\xfc\xb2\x96\x3b\xb9\x33\xff\xdc\x4a\x10\xd1\x88\xa9\xe8\xde\x2b\xdc\x41\xbb\xc6\xa5\x1f\x74\x0e\xe8\xeb\x14\x24\xe3\xa6\x6d\x42\x1c\xf8\x9d\x11\x8b\x1d\xf1\x24\x61\x54\xdf\xa6\xe0\x8e\xd0\x25\xe5\xc2\x7b\x64\xf1\x98\xa0\x3a\x35\xba\xa7\xdb\xb4\xe6\x34\x8b\x76\xce\x03\x22\xd8\x86\x25\xa5\x53\xe7\xd5\x6a\xf6\xcc\x46\x5f\x40\x81\x30\x20\x1d\xb9\x45\x20\x96\x69\xca\xe7\x91\x1d\xb8\x70\xe4\xd0\x1f\x5c\xc7\x2c\xf0\x8b\xdd\xb8\x90\x66\xd7\x96\x76\x01\xbf\x51\x76\xf6\x8b\xdc\xf5\x5f\x81\x72\x84\xae\xc1\x2e\x55\x32\xa1\x4b\x66\x7f\x4a\x15\x55\x19\x02\x06\xf5\xd6\x2c\xbc\x70\x34\x8a\x77\x5c\x84\x1a\x1b\x59\x90\xc6\x51\x96\xd0\xa8\xf8\x25\x90\x02\x4d\x48\xe9\x11\xf9\xf3\xf7\xfa\x17\xdd\x3f\x0b\x4d\xfc\x97\xf9\x75\x34\x1a\x99\xff\xd0\x98\xdb\x48\x32\x42\x63\xce\x1e\x14\x13\xd0\x70\x7c\xf7\x45\x3a\xe6\xf2\x70\xf3\xe6\x46\xe0\xa0\x27\x59\xaa\xe4\xfa\x8a\xa1\x4a\xfc\x94\x81\x90\x08\x08\xbb\x14\xaf\x55\x0f\x81\xca\x35\xdd\xc9\x68\xc9\xc4\xf8\x2e\x9b\xb3\x79\xc6\x23\x2d\xb5\xea\x01\xec\xf0\x2f\x43\xb6\x61\x11\x30\x2a\x16\x7f\xcd\xf8\x9a\xa5\x8a\xae\x63\x2d\xbf\x45\xe0\xf4\xaf\xc9\xd8\x11\x41\x97\x42\x81\xbe\x79\x29\x53\xe9\x38\x48\xc2\x71\x9c\x48\x0d\xe9\x00\x50\xdc\x58\x26\xcb\x1b\xa1\x71\x27\x4c\x03\x18\xa2\x23\xd2\xd0\xac\xac\xb6\xc5\xf5\xfa\xdd\x08\x23\x9e\xaa\x3f\x78\xdf\x9f\xf3\x54\x95\x37\xa5\x36\x4b\xb3\xe3\x5c\x2c\xb3\x88\x26\xf5\x06\xb0\x5f\x81\xd4\x87\xe6\x24\xca\x52\x85\x02\xeb\xc6\xee\x9d\xfe\x63\x64\x20\xa0\xf7\x05\x3a\x0b\x56\x6c\x5d\x44\xca\xc9\x98\x89\xe3\xe9\xe4\xdb\x4f\xaf\xcb\xbf\x57\xae\x55\x75\xee\x65\xff\x63\x30\xb5\xd1\x64\xce\x55\x42\x93\x2d\x99\x4c\x49\x9a\xcd\x47\x76\x9a\x87\x27\x93\xd3\xab\x12\x4e\x43\x15\xc9\x4a\x63\x41\x64\x9c\x40\x3c\x06\xd9\x0e\xd1\x9c\x92\x18\x0a\x63\xec\x9a\x6b\xb2\xe1\xd4\xf1\x30\x41\xdb\x21\x7e\xea\xf6\x2b\x17\xf5\x89\x5a\x03\x54\xae\x0f\x72\xaf\x71\x83\x92\xde\x39\xe4\xe5\x5b\x5b\x8e\xef\xd7\x70\x33\x86\x56\xf4\x3d\x46\x44\x63\xc0\xcf\x42\x03\x6b\xc4\x34\x80\x37\x0d\xd1\xa3\x3e\x45\x9c\x06\xa1\x30\x77\x7f\x0c\x2c\x11\x4b\x52\x2b\x34\x07\x52\x6c\x58\xa2\x48\xc2\x02\xb9\x14\xfc\xaf\x79\xe7\xa9\x35\xfd\x42\xd9\x8d\x1a\x1b\xc9\x85\x62\x89\x66\x9e\x00\xe9\x1d\x00\x8e\x5f\xd3\x2d\x49\x98\x1e\x86\x64\xc2\xe9\xd0\x3a\x9e\xbc\xd7\x4c\x33\x17\x0b\x79\x04\x59\x57\xd2\xa3\xc3\xc3\x25\x57\xf6\x7e\x07\x72\xbd\xce\x04\x57\xdb\x43\xb8\xa6\x7c\x9e\xe9\x2d\x39\x84\xbb\x78\x98\xf2\xe5\x88\x26\xc1\x8a\x2b\x16\xa8\x2c\x61\x87\x34\xe6\x23\x98\xbb\x80\x0b\x3e\x5e\x87\x2f\x12\x83\x10\xd2\x7d\x1f\x46\xac\x23\x52\xb8\x5c\x6d\xdb\xa0\x6f\x97\x09\x56\x44\xa9\x00\xd9\x9a\x1c\xda\x96\xb4\x5f\x9d\x5d\xcf\x88\x1d\xdd\x1b\xd8\x89\xc0\x2f\xbe\x4c\x8b\x7d\xd0\x40\xe3\x62\x61\xf9\x37\xd0\x7c\xbb\xea\x0e\x64\x1e\x22\xee\x61\xe5\xd3\x6c\xbe\xe6\x2a\x75\xd2\x75\xc8\x31\x39\x01\xb4\xa7\x89\x62\x16\x87\x54\xb1\x70\x4c\x26\x82\x9c\xd0\x35\x8b\x4e\x68\xca\x9e\x7d\x17\x80\x89\x1d\x69\xd8\xf6\xdd\x87\x86\x20\xdb\x26\xdd\x71\x8e\x48\x1b\xb6\xad\x7a\x51\x35\x05\x2e\x47\x7a\xd8\xc0\xa0\x22\x18\x97\x92\x66\x27\x6d\xbb\xb1\x15\x22\xdd\x62\x86\x6b\x70\x5c\xae\x55\xe8\xb1\xbe\x55\x93\x29\xb1\x28\x0d\x31\xd8\x9c\x45\x52\x9f\x2d\x69\x34\x52\xcc\x67\x85\x6a\xe6\x5b\x06\xce\xe1\xdf\x81\x73\x58\xc9\xb4\xf0\x42\x78\x06\xae\xc1\x8d\x25\xa8\x72\x0c\xee\xbb\x3a\xb7\x50\x9a\x59\x95\x53\x70\x5f\x3e\x27\x97\x30\x50\xd0\x81\x82\xba\x5b\x30\x50\xd0\x5f\x8d\x82\xba\xd8\xa1\x1f\xf5\xac\xe3\x9a\xe2\xd9\x9d\x7e\xb2\x87\x18\x02\xde\x26\xd3\x3e\xda\x30\xbd\xd3\xe6\x83\x72\x5c\xcd\xcb\xc9\x74\xf3\x19\x5c\xab\xc9\x74\xf3\xf6\x95\x95\xcb\xed\xb1\xf0\x0a\xdd\x13\x54\xf2\x4f\xf4\xdd\x5c\xd0\x80\x81\x2d\xef\xe6\x66\xaf\x62\x36\xc9\xb5\x57\xa0\x87\x88\xa4\xbc\xb3\xea\x43\x6e\xbf\xf4\x6a\x8d\xad\x33\x90\x13\xef\x33\x99\x96\xdc\x4d\xb0\x8e\x1d\x18\xf4\x8c\x5e\x04\x90\x08\x55\x63\x70\xdf\xf4\xd2\xfb\x9b\x1b\x05\xca\x94\x2c\xad\xf9\x81\x56\x82\x5a\x21\xd4\x28\x2f\x05\x28\x13\xa3\xfa\xf3\x75\x5a\x2d\x8b\x77\x73\xa3\xfb\x33\xf5\xf0\xf2\xf5\x1b\xe4\x97\x96\x47\xe5\xc2\x1f\x32\x9b\x8b\x74\xee\x3e\x8d\x21\xc6\x4d\x93\x95\x92\x5f\x1e\xfa\x53\x9e\x15\x47\x01\x55\x25\xbe\x6e\x79\x8a\x7a\x59\x4c\xab\x42\x15\x89\xb3\x24\x96\xfa\xa6\xbe\x9c\x2c\x4c\x6e\xc2\x15\x2b\xb6\x46\x8f\x63\x3d\x7d\xda\x53\x5b\x58\x1d\xa5\x64\xb8\xfd\x11\xa3\x89\xc8\xb7\xcd\xec\x60\xd1\xaf\x9e\x40\x96\x82\x1e\xbd\xd1\xc7\xfc\xe6\x46\xd9\xed\x18\x7b\xb5\xe0\x4f\xce\xd7\x91\x62\x86\xfa\x38\x77\x5f\xa9\x33\xcc\x05\xa7\xcf\xfd\xff\x42\x13\x80\xb1\xcf\x00\xd0\xca\xb1\xf5\xe7\x5c\x64\x0f\xed\xa7\x3e\xb7\x50\xe7\x07\xfa\x4b\x38\x7a\xeb\x58\x6d\xc7\xa4\x18\xc6\x35\x6a\xa3\x85\x97\xa7\xad\x98\x45\x3f\x4b\xb9\x61\x89\x40\xdb\x50\xee\x6e\x24\x0f\x8c\xb7\xab\x9e\x76\x22\xb3\x25\xfa\x41\x58\x55\xaf\x61\xb6\x0b\xc9\xdd\xab\x1a\xc7\xcd\x85\x73\xa9\x1b\xe6\x29\x47\xf4\x54\x2f\x64\x88\x68\x01\xce\xe4\x97\x84\xe9\xf5\xe3\xc5\x0e\xf5\x21\xd9\xe0\x45\xf4\xc7\x5a\x17\xa1\xad\x1b\xa8\x5b\xb9\x2d\xc0\x77\x40\x5c\xa5\xb1\x4c\xd1\x6b\xf7\x50\x49\xf0\x04\xd5\x73\xb1\xca\x0f\xbf\x2b\x42\x24\x03\x1a\xe5\x21\x9c\x46\xd1\x3a\x59\x90\x12\x3e\xb3\xb8\xcc\xd9\xdf\x5e\xa0\x86\x8b\x64\xe1\x5d\x72\xed\x82\xe5\x03\x3e\xd1\x6b\x37\xbc\x16\x40\xce\x01\xbf\x17\xc9\xd8\x63\x54\xdc\xa1\x1c\xd6\xa5\x39\xc3\x11\x1c\x91\x7b\x8d\xe6\xca\xc8\xd9\x8f\x0f\x50\xeb\x3b\x2a\x6d\xbf\x67\xb0\x3c\xea\xa6\x50\x20\xeb\x9b\xed\xed\x54\xb8\xc8\x08\xf2\x41\x26\xe0\x58\x71\xe0\x99\x55\x3e\x85\x03\x42\x01\x6b\xd4\xd9\x3f\x62\xec\xde\x2e\xed\xca\xeb\x52\x16\xb9\x72\x30\x70\x40\xcb\x34\x09\x66\x91\x32\xa3\xa4\xe4\x65\x9a\xf9\x31\x0c\x4d\xc9\x2f\x3f\xff\x9d\xa9\xd5\xeb\x5f\x7e\xfe\xc7\x2b\xe3\xf3\x0e\xe6\x48\x16\x12\x3d\xeb\x2f\x09\x57\x84\xa7\x62\x5f\x15\xba\xeb\x6e\x3a\x4e\xf0\x2a\xc7\x89\xd4\xbc\x8b\x73\x00\x10\xc2\x0e\x4e\x28\x9f\xc2\x62\xce\x5e\x8a\x6b\x03\x13\x8e\x70\xa5\x10\x07\x04\xbc\x0f\xc6\x0a\xa1\x35\x4b\xf3\x5b\xeb\x38\x62\x6b\x7d\xd2\x10\xd1\x17\x68\xc3\x9d\x74\xfa\xa5\x7f\xef\xb8\xe2\x34\x8a\xb6\xe4\xff\x68\x08\xc7\x09\x1b\x81\x17\x4d\x6e\x1b\x9a\xea\x2d\x62\x26\x67\x67\x8e\xf4\x83\x6c\xdd\x24\x11\xe8\xc7\xd6\x0c\x45\xf6\xde\xd4\x26\x95\xc2\x6b\x64\x68\x43\xdd\xc2\x9f\xae\xa9\xa6\x2e\xd0\xed\x8c\x87\x2a\xb8\x30\x2d\xb6\x96\xdc\x9b\x19\x43\x03\xae\xc5\x6f\xe1\x05\x76\xdb\x24\x9a\x22\xe3\x2a\x36\x10\x4d\xea\x4b\xdc\xa0\xa5\xd7\xfb\xa9\xb9\xb9\x26\x68\xcb\x26\xf0\xf4\xfa\xaf\xce\x59\x51\x3a\x17\x1c\xae\x72\x66\xc3\x6c\x38\x9a\x89\x76\xa1\x8d\x9d\x5e\xd1\xc2\x4f\xfa\xba\x21\x53\xc0\xa7\xe3\xf3\xd6\x88\xac\x7f\xa5\xa4\x3c\xcf\x95\x83\xa5\xc3\x4d\x54\x34\xa0\xeb\x11\x00\xb7\xe1\x4d\x4b\x96\xa5\x47\x3b\x97\xc6\xa6\xa8\x73\xd7\x71\x3f\x2e\xa2\x1f\xf1\xc2\x71\xa0\x72\x8b\x5a\x79\x68\x33\x89\xe6\xec\x75\x85\x47\xb4\x26\xb4\xb9\x04\x62\xea\x38\x9b\x4e\x0a\xff\x4c\x2b\x10\xa0\xe3\x61\x53\xa7\xe8\x52\x1c\xc7\x8c\x26\xb9\xcb\x1f\x78\xac\x93\x7c\x5e\x85\x55\xdc\xf6\x6c\x5d\x37\x59\xa5\x0c\x76\xab\x08\x10\x37\x25\xdd\x18\x74\x90\xff\xde\x3a\x48\x1e\xd3\xf5\x3c\x92\xc1\xdd\x73\x28\x20\x27\xd3\xe3\xf7\x5f\xe9\xce\xab\xda\xc7\xfc\x45\x5d\xf5\x58\x4c\xa8\xaa\x77\xcc\xdf\x0c\x4a\xc7\x41\xe9\x38\x28\x1d\xff\xe3\x94\x8e\x39\x52\xe8\xa5\x71\x14\x55\xec\x52\x3c\xbb\xeb\x1b\xb5\x20\xa3\x61\xe7\x21\x64\x6d\x64\x8c\x46\x5a\xd0\x69\x4a\xb1\xdb\x45\x1a\x5b\x38\xb9\x17\x64\x76\x79\x7a\x79\x84\x89\x1a\x34\xc2\xa6\x73\x64\x0f\xd6\x54\x64\x20\xc6\xd0\x30\x04\x2e\x61\x4c\xbe\x63\x16\x25\xe0\xb9\xa9\x50\x09\x7f\xf7\x4a\x92\x15\x15\x61\xc4\xc8\x9f\xbf\xff\x5f\xfa\xb0\x22\x70\xa2\xad\x09\xb9\xf6\x0a\x6a\x76\x22\x4d\xfc\x5f\x0b\xc3\x45\x15\x1e\x49\x2f\xcb\xf5\x11\x3c\x3d\x2e\xe2\x96\xfb\x39\x4e\xd2\x8b\xb1\x4f\x99\xa6\xf5\x34\xf1\xed\xbe\x99\xfd\x6e\x29\x92\xfb\x70\xe0\x5d\x01\x57\x8f\x66\x6d\x03\x1e\xfa\x9c\x62\xdb\xe6\x14\xb2\x88\x29\x2f\xd3\xde\x1e\x03\x02\xe1\x81\xc7\x5d\x57\xa7\xe1\xeb\x4c\x98\xdb\xe3\x1d\xf8\xd1\x77\xa7\x11\x32\x0d\xa2\xc9\xc8\xbd\xc4\xb5\x57\xf9\xa9\xad\xbe\xd1\x50\xae\xfe\x66\xc0\x58\xfd\xb9\x0c\xa6\xea\x5b\x07\x0c\x03\x1f\xfc\x4f\xe6\x83\x03\x29\x16\x7c\xf9\x5c\x8c\xf0\x09\xf4\xee\xe3\x84\xf1\x8d\x9f\x15\x36\x73\xf2\xf1\xc2\x41\xde\xe1\xc0\x0c\x0f\xcc\x70\xe3\x36\x0c\xcc\xf0\xbf\x2b\x33\x8c\x78\x61\x07\x6e\xd8\x45\x31\xc5\xf3\x08\x76\x38\x53\xf2\xd8\x90\x25\xe0\xb0\x7d\xa4\xf8\xd9\x78\x83\x66\x4a\x5d\x9b\xd6\x2e\xb4\x76\x20\xa8\xbf\x3a\x41\x45\xee\xfc\xb9\x08\xea\x37\xd0\xbb\x8f\xa0\xe2\x1b\x3f\x41\x35\x73\xf2\x11\xd4\x55\xde\xe1\x40\x50\x07\x82\xda\xb8\x0d\x03\x41\xfd\x77\x25\xa8\x88\x17\x76\x20\xa8\x2e\x8a\x29\x9e\xdd\x09\x2a\xa8\xad\x3d\x54\xb0\xb7\x62\xa1\x97\xd4\xeb\xd7\x16\x20\x56\x9b\x9c\xee\xa4\x14\x68\xa4\xc1\xf3\xba\xc2\x6d\x94\x0f\x31\x10\xdc\x7f\x2a\xc1\x8d\xa5\x8c\x9e\x87\xd8\x4e\xa5\x35\xc0\xba\x84\x56\xff\xea\x23\xb2\x30\x8f\x3a\x81\x8d\x4d\x27\x03\x71\x1d\x88\x6b\xe3\x36\x0c\xc4\xf5\xdf\x93\xb8\x6a\x5c\xd0\x9b\xb0\xea\xc6\x8f\xa5\xa2\xd7\xfc\xaf\xbd\x7c\xa5\xa0\x31\x49\xf9\x5f\x21\x2b\x5d\x96\xa2\x83\x5b\xe1\x76\x4c\x68\x9a\xf2\xa5\x58\xeb\x93\xd1\x98\xeb\xd1\x24\x54\x90\xd1\x98\x9c\xda\x2c\x05\x4a\x92\x4f\xde\x9a\xce\x8c\x77\xf9\x9b\x37\x9f\xd8\x1f\xde\x36\x7a\x5d\x35\x10\xef\x06\x7d\x7d\x6d\x3d\x7a\x16\xe4\x64\x72\x7a\xb5\xa3\x5b\x57\xc8\x53\x3a\x8f\xbc\x4a\xf6\xd2\x18\xe0\x3f\x6e\x1b\x43\xfe\xd2\x24\x2b\xbc\xbc\x35\x33\x84\xae\xee\xfa\xa0\x23\xe8\x0a\x07\x6e\x1f\xe8\xcc\xa5\xb2\xf0\xdb\x51\x7f\xc0\x63\xee\xab\x31\x5c\xc6\x15\xa7\xfa\x6a\xa3\x05\xc1\x5c\x64\x5b\xa6\x17\x1c\x55\x73\x8f\xf0\xe3\xe9\x64\xf3\x06\xb2\x0a\xdc\xd3\x24\xf4\xce\x16\x92\x34\x29\x3e\xe7\x11\x57\x5b\x8d\x28\x94\xc1\x34\x6e\xaf\xb0\x74\xcc\x25\x73\x50\x7e\xe5\x05\x00\xba\xc1\x23\xc6\xc6\x0a\xea\xd1\xd6\x57\x07\xbc\xc3\xc8\xc5\x44\xd3\xfe\xf9\xf7\xd0\xb4\x2f\xb6\x50\xc3\x92\xa8\x4c\x08\x16\xe9\x35\xd9\x6c\x67\x59\x83\xcf\x0f\x41\x2f\xcf\x90\x45\x7c\xc3\x92\x22\xe5\xae\xfe\x29\x4f\x47\xef\x54\x6a\x6a\xde\x61\xd2\xb5\xcb\x04\xf2\xe8\x34\x96\xaa\xac\xdd\x81\xc9\x74\x32\x85\x0f\x4c\x65\x67\x12\x50\xe1\x24\x7f\xb8\xd9\xc3\x7c\x10\xb6\xbc\x04\xd4\xa5\x19\x61\x21\x95\x9b\xbd\x31\x21\xc7\x4d\xeb\x5d\x9b\xea\xd1\x4e\x0f\x26\xbf\x44\x8a\xb8\x03\x46\x2e\x60\xa8\xf7\x36\x91\x19\x9e\x91\xc6\xda\x60\x0e\xbc\xca\x71\x29\x35\xd8\x11\x72\xec\xcc\xa1\x3c\xef\xa6\xde\x61\x82\xf6\xa0\x57\x27\x78\x6f\x53\x6b\xb8\x73\x40\xef\x50\x7d\x3b\x9a\xfa\xa4\x45\x52\x6c\x53\x80\xc6\x72\x24\x36\x77\xa7\xee\x5c\xd8\x1d\x28\x1c\xea\x5b\x8b\x09\xbc\xe4\x0b\x4c\x89\x64\x9d\x9a\x5f\xe9\x59\x14\xb0\x6e\x3d\x3a\xed\x0e\x64\x7e\x91\x47\x9f\xf8\xf7\x3d\x7c\x6a\x4f\x2c\xad\x42\x53\x4a\x96\x14\x74\xca\xb3\xe1\xed\x47\x7d\x52\x59\xe3\x81\xcd\xfa\x89\x95\x4e\x0d\xa0\x30\x77\xd0\xcd\xde\x05\xdb\x40\x9a\x45\xac\xbc\x59\x1e\xcc\xd7\xbb\xee\xc1\xe0\x66\x5f\xaa\xf9\x56\xe7\x62\xaa\x46\x32\x53\x4b\xc9\xc5\xf2\x7f\x0a\x4a\x6d\xc5\x3a\x82\xaa\xcb\x9e\xf0\xc0\x14\x48\x0e\x00\x0b\xac\x6a\xf1\x22\x64\x1a\x72\x92\x69\x93\xd6\xf0\x0c\xc3\x1d\x69\x26\xd4\x45\x00\x35\xec\x2a\x33\x95\xf2\x90\xe5\xd2\x06\x34\xd2\x37\xde\xd7\x29\x64\xf9\x4f\xff\x92\xb1\x84\x86\xde\xbc\xb1\xed\xe0\x90\x61\xef\x1c\xab\xc7\x7a\xab\x52\xcb\xc1\x99\xcc\x1a\xfa\xb8\x98\xe8\x81\x3c\x00\x00\x50\xcd\x7c\x8b\x89\x34\x7c\x73\xce\xd3\xec\xee\x76\x98\x37\x0f\x11\x15\x1f\x79\xb5\xbf\xfd\xe3\xf9\xf1\xc5\xaf\x76\xb7\x61\x34\x2f\x6f\x99\x4f\xe0\xd1\x97\xbb\x51\x4b\x53\x77\x4f\x18\x94\x31\xbf\xaa\x32\x46\xf7\x51\x74\x9b\x96\x0e\xe1\x73\xa8\x68\xfe\x90\xcd\xd9\x49\x31\xde\x89\x3b\x5e\x55\x71\xd3\xd6\xb6\xae\xce\x69\x5d\x49\x55\xc9\xd3\xd6\x78\x50\xfd\x0c\xaa\x9f\x41\xf5\xf3\x1f\xa7\xfa\x69\xc3\x26\x75\x85\x50\x29\x41\x5e\x15\xc0\x7f\xc8\xe3\x8d\x1c\x94\x5c\xa1\xe0\xfd\xb5\x45\x4e\x17\x7d\x98\x05\x3b\x1a\x8a\xcf\x98\xb2\xd0\x8e\x6c\x92\x6d\x6e\x78\x98\xd1\xc8\x99\x66\x13\x87\x67\xfa\xda\x59\xd4\xcf\xe3\x82\xfb\x08\xc4\x79\xbe\xfb\xa6\x29\xdb\x78\x6d\x6c\x54\xcc\xab\xb1\xb0\xc0\x99\xd1\x1c\xcc\xb7\x96\xa5\x39\xb0\x45\xcf\x04\x47\x1e\x15\xd9\x94\x86\x1e\x7a\xd4\x25\xd1\x68\x4a\x04\x3c\x62\xc9\x94\x25\x5c\x36\xbb\xed\x56\x91\xc3\x55\xe5\x43\x5b\xac\x30\xc6\xbf\x94\xd4\xff\x5a\xc8\x64\x9d\x0f\xc1\x1b\xc3\x36\xed\x03\x69\x76\x9d\xe8\x49\x7d\x2b\x80\x1b\x19\x93\x3f\x1b\x75\xdf\x11\xf9\x7c\xfd\xbd\x47\xc0\xb0\x4f\xb7\xab\x6f\x97\xa3\x6f\x43\xec\x67\x0d\x02\x17\x9a\xa3\x6e\xdb\x69\xfd\xfe\x5f\x63\x93\x57\x4e\x38\x6e\xdf\x0d\x76\x43\x78\xed\x32\x20\x13\x7b\x60\x35\x0e\x40\x21\x21\xa4\xdc\xa9\x51\xd4\xb2\xbb\xa7\x56\x97\xf9\xd8\x95\xf6\x5c\x2d\x31\x0e\x53\x27\x9a\x27\x6c\x0e\x30\xf5\xac\x79\xff\x38\xff\xac\xd8\xd9\x4c\xc9\x35\x55\x3c\x28\x12\xe7\xca\xce\x3a\x24\x65\xa8\x80\x40\xa3\x65\x90\xad\xd1\xd4\x14\x87\xd9\xc2\xa4\xed\x48\x93\xde\xa5\x45\xfa\x14\x16\xf9\x9f\x77\xe1\x09\x9c\x5a\x48\x4b\xde\x76\x68\xca\xab\xbd\xce\x3f\x29\x0e\x7f\x9e\xd5\x59\x92\x40\xc6\xdb\x0e\xba\x63\x1f\xc0\x03\x45\xea\x4b\x27\x30\x3c\x75\x57\x69\xd0\xc0\xf3\xe2\x36\x8c\x1a\xed\x83\xdd\x4c\x8a\x99\x16\xfc\x66\xe2\xc2\xff\x35\x30\xdc\xff\xbc\x53\xdd\xb5\xd5\xe5\xec\xec\x7d\xb6\xbc\x9c\x99\xbd\x6d\xeb\x3b\x0a\x3c\xd9\xb2\x4e\xce\xd1\x18\xce\xc0\x3f\xe3\x0c\xd8\x7c\x1f\x1d\xb4\xbf\xac\x61\xad\x7c\xd3\x76\x0e\x6c\xff\x4d\x6b\x60\x15\xfe\x61\x38\x09\xff\x9c\x93\xd0\xf6\x96\xa9\x20\xfc\xf6\xd3\x13\xb9\x8e\xb1\x66\x58\x23\xc4\xca\x90\x3a\xf3\x7e\x56\x81\xd7\x9c\xa9\x7b\xc6\x04\x8c\xb1\xf9\xb4\xd1\x26\x01\x1d\xe4\x52\x3c\x58\x26\x34\xa8\x5f\xbb\x67\xc1\x81\xd5\x9b\xd7\x5e\x60\xb5\x01\x69\xc5\x68\xa4\x56\x27\x2b\xe6\xf7\x9c\x2f\x2f\xed\x1b\xa7\x71\x7e\xfa\x65\x62\xa7\x92\xe6\x95\x44\x34\x5b\x87\x3d\x7b\x97\x86\x1d\xf4\xa2\xf0\x6d\x73\x8f\xe4\xf2\x5a\x33\x8f\x5c\x6d\xaf\x83\x84\xb1\xaa\xea\xac\xbe\x80\xf3\xea\x17\x76\x5b\x22\xb9\x24\xa9\x79\x43\xe8\x5c\x6e\x98\x49\x0a\x13\xc9\xa5\x97\x87\x81\x44\x45\x4c\xe4\x46\xc7\x54\x85\x32\x53\xee\x66\x4c\xc4\x42\xee\xb6\xa2\x66\x1d\x79\x93\xa0\xde\xa8\x09\x29\x34\xdf\x0d\xa0\x68\xd5\x85\xc0\xd7\x8e\x4e\xca\xac\x50\xff\xea\x51\x21\x82\x1a\xaa\xa4\xf8\x20\x13\xb5\x0f\x69\xee\x16\x59\x84\xe6\x96\x70\x0d\x6a\x15\x28\x95\x06\x01\xc2\x50\x96\x04\x4b\xd8\xd2\x40\x65\xb4\x66\x79\xc1\x1e\x31\xe9\xd5\x3d\xcd\xb3\x8d\xd8\x64\x3d\xc6\x9c\xbe\x96\x21\xd6\xf8\x98\x6b\x8e\x6c\xc3\x13\x09\x6e\x32\x64\x43\x13\x0e\x47\xb2\x36\x5f\xb4\x35\xdf\x65\x73\x36\x72\x35\x37\x71\x22\x03\x96\x56\xc5\xb4\xb6\xbc\x8f\xc5\x68\xdf\x52\xaf\xde\x66\x47\x8f\xd9\x26\x24\x56\xda\xb6\xb3\xf2\xa8\xd5\xf4\x46\x1e\x00\x34\x98\xd0\xbd\x40\x00\x60\x73\xb1\x88\x32\x4c\x76\x84\x55\xe5\xa1\x7e\x25\x1e\x90\x46\x93\x8f\x1f\x83\x26\xee\xb7\x5d\x97\xb3\x34\x50\x65\x61\x50\xa9\x98\x6f\x58\xe9\x54\xf0\xd4\x0e\xe0\x5b\x20\x6f\xda\x68\x19\x1e\x98\xc4\x32\x6b\x96\x2c\xad\xa6\xf6\x78\x3a\x29\x14\xb5\x9a\x30\x79\x2f\xbd\x68\x38\x65\x1e\xb8\x74\x10\xe3\x76\x95\x5f\x0d\x38\x4f\xa9\xf6\x23\x5d\xaa\xbf\x1e\xd3\x27\x3d\x54\x80\xb5\x45\xec\xa6\x06\x6c\xe3\x1c\x9e\x92\x6b\xea\xb9\x5a\xb2\x1b\xf7\x54\x5b\x7c\x7f\x0e\xaa\x4b\x85\x52\x66\xb0\x7a\x71\x51\x5d\x5d\xb6\x33\x59\xe4\x49\xd5\x2c\x2d\x5a\x44\xf2\x5c\x9a\x44\xf2\x04\xb2\x36\xe9\x7f\x4e\x7a\x6a\x15\x6b\xcb\xdd\x41\xb3\xd8\xb5\xa3\x4e\xe9\xb9\x27\xd1\x2e\xee\xb0\x7a\xb2\x8b\x96\xb1\x06\x83\x7e\x9a\xc6\xee\x4e\x81\x35\x79\x72\x6d\x23\xd9\xa9\x36\x76\x9f\xeb\x40\x06\xbc\xd2\x07\x98\xbd\x14\x95\x75\xe0\x3c\x9d\xb2\x92\x3c\xa9\xc2\xb2\xff\xd2\xfb\x9c\xa1\x56\xe5\x65\x0d\x28\x4f\xa9\xc0\x24\xbf\x2e\x62\x1d\x2e\xca\x13\x9c\x96\x5e\xfa\x4f\xf2\x6c\x3a\x50\xf2\x4c\x7a\x50\x32\x1c\xa3\x5f\xf5\x18\xf5\x54\xa1\x92\xe7\x54\xa3\x92\xe7\x52\xa5\x92\xe1\x30\xfd\x8a\x87\xa9\xab\x45\x6f\x4d\x2c\x79\x2e\x6d\x2c\x79\x5a\x8d\x6c\x1f\xe0\x75\x68\x66\xeb\x4b\x7d\x22\xed\x2c\xd9\x51\x43\xdb\x67\x2d\x7d\x34\xb5\xf5\x05\xed\xac\xad\x6d\x5a\x4e\x24\x97\xe9\x47\x68\x6c\xbb\x57\xd8\x92\x4c\xba\x45\x7b\x4b\x5a\x8f\xfe\xe0\x06\xfd\xab\xba\x41\x9b\x58\x08\x60\x7d\xf9\xb3\x24\x82\x31\x55\xfb\x90\xfd\xc6\x17\x85\xa7\x73\xe9\x65\xdd\xb5\xb9\x32\x3b\xb3\xcf\xb9\x33\xb3\xfb\x1a\xba\x36\xde\xcb\xb9\xc6\x0d\x28\xe8\xe0\xc0\x3c\x38\x30\x0f\x0e\xcc\xff\x5e\x0e\xcc\x6d\x16\x28\x28\x87\xd5\x27\x20\x1b\x52\xf3\xeb\xe3\x8f\x05\xad\x58\xa9\xbc\x39\xe6\xf5\xd7\x7f\xe4\x46\x17\xaf\xed\xc3\x7e\x8d\xd1\x64\xd5\x62\x5d\x50\x09\x8c\x04\x32\x49\x58\x1a\x6b\x8a\x21\x96\xc4\x30\x4b\xb6\xa4\xd2\x4e\x29\xf9\x2b\x55\x9e\x8e\xc9\x95\x9e\x20\x13\x01\x8d\xd3\x0c\xee\x6d\x31\x23\xdf\x54\x1a\x34\x84\x38\xa5\x31\x21\x5f\x49\xb5\xaa\x54\x15\xa8\x55\x11\xd3\x1d\x55\xab\x27\x34\xe8\x88\xf2\x0a\x21\xa6\x8a\xc1\x88\xa4\x2c\xa6\x89\x3e\xa4\x44\x66\x8a\x50\x3d\x5d\x5b\xa0\x01\x9b\x68\x2e\x0c\x2a\xcf\xf3\xe6\x72\xf7\x04\xe6\x60\xf6\xcb\x05\x3c\x17\x4b\xac\x97\x84\x45\x19\xa0\x9a\xcb\x86\x55\x21\xb1\xa2\x4d\xbd\x12\xc1\x96\x30\x39\x83\x78\x0f\x48\x9c\xb0\x05\x7f\x60\x21\x8a\x0e\xbf\xfc\xfc\x8f\x0b\xa9\x7e\xf9\xf9\x1f\x63\x72\x1c\x45\x70\x51\xcb\x7d\xfb\xfb\x35\xd1\xc2\x14\x8f\x53\x5e\x21\x88\x2a\x9e\x82\x95\x16\x43\xef\xcc\x42\x94\xc4\x3e\xc7\xe4\x18\x48\x59\x3d\x7b\x91\x81\x2d\x1c\x4d\x2a\xec\xf1\xb4\x75\xec\x71\xc9\x1a\x40\xb0\x18\xfd\x87\x59\x0d\x96\xfd\x6a\xac\x6a\x86\x50\x05\xd8\xfb\xa7\xa8\x07\x80\x51\xf3\x29\xfa\x63\x9b\x3b\x25\x44\x3c\x6e\x8d\x92\x56\xb7\xfc\xe4\x44\x5a\x36\xf6\x52\xba\x2a\xa7\x4e\x10\x75\xc9\x86\x5a\x39\x1a\x60\x41\x85\x6b\xd9\x22\xb8\x95\x22\x3d\x89\xc6\x84\xca\x77\x8b\x7b\x02\x83\xb8\x36\xc3\x96\x30\xce\x86\x95\xdd\xec\x5d\x54\x3f\x06\x0a\x26\x88\x8c\xd1\xcc\x6e\x02\x72\x9b\x4a\x90\x14\x4f\xa9\x6c\xbb\xe9\x8a\x3d\x68\x02\x96\x02\x76\x80\xe2\x4e\xa5\xa2\x61\x36\xa6\xbc\x4b\x47\x0c\x34\xee\xa5\x3e\x42\x2c\x59\xe3\x07\x84\xaa\x57\x8e\x0d\x22\x0f\xa8\xb7\x45\x4d\x9a\x53\x1b\x54\x40\x96\xe6\xf9\x10\x60\x2f\x35\xf9\x83\xa0\x5f\x38\xc8\x35\xd8\xb4\x77\xaa\x2f\x40\x0e\x45\x2d\x19\x21\x33\x16\x5a\xff\x88\x94\xae\xf1\x0a\x98\xf8\x51\x08\xa9\xee\xa3\x8d\x71\x2c\x4f\xe6\x8c\x25\xf9\x7c\xc9\x7c\x8b\x93\xcd\x6b\xd8\xe7\x2b\xea\x07\x0a\x53\xd4\x4e\xcf\x0b\xb1\xdf\x3b\x99\x94\x39\x67\xcd\xad\x99\x7a\x6a\x3b\x42\x84\xaf\xe3\x88\x17\xd5\xfc\x18\x71\x0f\x59\xc4\xd7\xdc\x04\xcd\xe2\x4c\x35\x79\xd3\x30\x69\xef\x33\xaf\x2a\x56\xc0\x84\x3b\xf0\x2d\x22\x5e\x28\xde\xd1\xd2\x52\x3a\x8c\x71\x0d\xcb\xff\x61\x09\x15\xc5\x5f\xbe\xfa\xa1\x0e\x00\xbb\xc6\x0e\xa5\xce\x4e\x00\xa8\x55\x30\x6f\xef\x5c\x26\x25\x23\x67\xb1\x8b\xa5\x6e\xaa\x7b\xd9\xde\x67\xe3\x3a\xcb\xab\x40\x07\x22\xe0\xfd\x77\x3d\xc8\x14\xd2\x5c\x40\xd9\xc6\xe2\x36\x36\xd0\x84\x1c\x8c\xbd\x74\x63\x0d\xd5\xd7\x8b\xa7\x6c\x0e\x67\x2a\x6d\xc6\x79\x9a\x4f\x87\xa4\xb2\x69\x53\x05\xc3\xe2\xb1\xd4\x0d\xb6\xb0\x28\xf8\xe4\x47\x79\x39\x56\xeb\x38\x38\x65\x94\x57\x4a\x23\x02\xb5\x5c\xf3\x32\xb2\x4b\xbe\x61\xc2\x64\xed\x68\x8f\x8c\x69\x66\x10\x9d\x71\x7b\x9a\x10\x5b\x2a\x11\x14\x8f\x90\xea\x62\xb7\x3d\xc1\x0f\xac\x6a\xaa\xc2\x57\xd9\x15\xeb\x26\x1d\x94\x43\xef\xe3\xbf\x1c\x2c\xa6\x0d\x95\xf6\x8a\xa7\x0a\x0c\x2c\xbb\xd7\x0e\x0d\x68\xd3\x07\x1c\xe4\x9a\x6b\x9e\x5a\xe6\xc5\x16\x6d\x89\xb5\x94\xac\xe8\x86\xd9\xfa\x7d\x7c\x01\xa7\x2b\xee\xee\x16\x94\x80\x36\x37\x02\xe1\xca\x6a\xee\x70\xba\x53\xd3\xbb\x61\x96\x0c\xae\xd6\x92\x47\x07\xd4\x25\xd2\x30\x85\x59\x15\x66\x27\x53\x9b\xd7\xe7\xc3\xe9\xb4\x31\x69\x0c\x3e\x7d\x76\xb5\xbd\xdc\x1e\x3e\x3d\x8b\xee\x95\x1b\xf7\x71\x62\xe8\x53\x80\x0f\x9f\xc7\x94\xe1\xb3\x4f\xdf\x03\xb9\x3b\xdf\x78\x51\x7c\xd4\x71\x2c\xfb\x31\x0a\xe6\x64\x92\x6b\xe6\x10\x17\xc4\xc2\x5a\x76\x48\xb3\xb9\x8a\x98\x66\x83\x51\x92\x32\x63\xb5\xf7\x99\x33\x44\xad\x47\xa5\xdf\x9e\x35\x15\xc7\x6c\x00\xcf\xcd\x5e\x7e\x63\xbb\xc8\x4a\x17\xdf\xc0\xfa\x90\x95\x15\x88\xc2\x46\xa1\xf4\xd2\x91\x2f\x5e\x75\x1c\x43\x99\x28\xec\x01\xb9\x49\xb7\x0c\x6e\xca\x48\x42\xc5\x92\xa5\x87\x56\x1f\x07\x29\xb7\x5a\x33\x3d\xe1\xc3\x5d\xb9\xdc\x5c\x1d\x30\x9a\x20\x94\x53\x0b\x01\xa3\xdc\x32\xc3\x74\xf0\x38\x0b\xdc\x03\x64\x6e\xfa\x62\xb0\x4e\x0c\x80\x4d\x77\xc2\x60\x1d\x6b\x2f\xd0\x5b\x05\x83\xdd\x20\x0e\xbb\x31\x58\xec\x06\xf1\xd8\x8d\xc6\x64\xad\x3c\xcf\x80\xcb\xe0\xe9\x85\xcb\xd2\x47\x08\xc0\xdd\x72\x6f\xab\x0a\xaf\x78\xbc\x72\x2f\x79\x99\x32\x66\x75\x5f\x80\xca\xe8\x3a\x8e\x18\x49\xb7\x42\xd1\x07\x5f\xba\x1f\xf7\xb9\xb9\x69\x15\x9b\x0d\x0f\xd9\x24\x16\xb7\xf7\x6d\x55\x5e\xa5\x52\xa0\x75\x69\xd8\x56\x67\x86\xb1\xf5\xe9\xe9\x00\x82\xf1\xcf\xb7\xd6\x80\x0e\xaa\x80\xe0\x71\xa8\x49\x87\xac\xca\x22\x79\xff\xea\xa0\x3c\x65\x07\xd8\x08\x55\x53\xc3\xcc\x9a\x66\x3b\xe0\x80\x7a\x2e\xd0\x5f\xce\x56\x8c\xa8\x7b\x09\x67\x0d\x92\x54\xd8\x77\xa6\x84\xf6\x5c\x45\xdb\x22\x43\x5e\xc7\xde\x5d\x0a\xbb\x7a\xeb\xc1\x53\xe8\x55\x99\x23\xbd\xe2\x6a\x24\x78\xcf\x99\xf6\xdd\x34\xe1\x7e\x25\x23\xb3\x49\x47\xb0\x45\x37\x37\x05\x41\xfe\x3d\x60\x97\xdf\xac\x68\xfa\x72\xbd\xbd\x05\xd7\xba\x57\x80\x77\x0c\x92\xef\xba\xce\x26\xe1\xa3\x55\x34\x60\x21\x7d\x98\x1f\x3a\x3e\x14\xae\xff\xa1\x1e\xb7\xe7\x79\x83\xfe\x42\x09\x99\xb4\x00\x4b\xa3\xb1\x68\xce\x22\xf2\xcb\xcf\x7f\xb7\x13\x05\xed\xa8\x59\x50\xef\x63\x81\x0b\x6e\x5c\x6f\x7d\x49\x7a\x0e\x4d\x39\x5f\x8b\xa7\x7d\xb5\xf9\x82\xda\x17\xd3\xad\x70\x98\xe5\xc1\x18\xc8\x4a\x19\x4d\x41\x04\x68\xd5\xe4\xa1\x04\x13\x73\xbe\x8e\xee\xa9\x0b\x29\x46\xc6\x4b\xc5\x18\xb9\xc8\xfd\x8a\x25\xcc\xe8\x44\x16\x32\x59\xb3\xaa\x0e\xc2\xf4\xde\x43\x17\x57\x07\x8c\x93\x92\xe1\x09\x04\xf8\xb2\x33\xdd\x0e\x7c\x57\xd9\x9f\xee\xd7\xe3\xbf\x2a\x28\xb9\xbd\x4f\x8f\x26\x93\x92\x58\x86\x36\xf0\x06\xed\x1a\x39\x7a\xee\xe1\xf9\x97\xfb\xfe\xb5\x9e\xb6\xde\x9e\xe6\xae\x95\xbd\xf9\xa9\x47\xa1\x7c\x3c\xb8\xc9\x63\x40\xde\xdd\x65\x93\x02\xd9\x03\xf6\x5e\xd0\x26\x8e\xb7\xe5\xfd\x4a\xa6\xb6\x28\x7f\xae\x89\x84\x22\xdc\x5d\x7d\xf4\x61\xec\xc8\x4e\xae\xf1\x3d\xb9\x24\xd2\x97\x53\x22\xf5\xfb\xd5\xc9\x2b\xfd\xe7\xee\x74\x49\x4e\x2a\x34\x6e\x88\xf5\xf3\x7c\x96\x64\xd2\x99\xae\x85\x38\xd6\x85\xba\xd1\xa0\x90\x43\x4c\x92\x49\xb6\xd5\xbf\x77\x77\x7a\x7c\x71\xba\xef\x4d\xff\x59\x7e\x76\xd3\x66\xb5\xbb\xab\x76\xb7\x59\x29\xe5\x4b\xe4\x8d\x4f\x39\x4e\x67\x36\x9b\x16\x46\xa4\x46\xcb\x9a\x3e\x1e\xba\x69\xf3\xd4\x73\x3f\xc2\x8f\x32\xaa\xad\x99\x5a\xc9\x70\x07\xda\xf3\x1e\x3f\x78\x5a\x9a\x83\x4b\x86\xcb\x61\xd6\xed\x78\x6f\xe8\x3e\x31\x0b\x2e\xeb\x4c\x12\x64\xb1\x12\x0b\xb1\x17\x3b\xdb\x97\x6c\xbc\x1c\x93\xaf\xcf\x66\x07\x64\xfa\x61\x76\x40\x98\x0a\xc6\xaf\xc8\xfb\x2c\x52\x3c\xee\xd2\xd0\x19\x10\xc1\xa9\xbd\xbc\xda\xd7\x4c\xc4\x12\xa2\x40\xfe\xb5\x34\xae\x31\x55\xab\x1d\xf6\x71\x7f\xaa\xdb\x3f\xc7\x36\x76\xed\x60\xb7\x85\xc1\xdd\x41\x98\xe6\x38\xdf\x2a\x5c\xa6\xdd\x8b\xbe\x9b\x41\x08\x1b\x2f\x8f\xc8\x88\xb0\x07\x1a\xa8\x23\x72\xb8\x90\x92\x8c\x8c\xdf\xc2\x11\x39\x9c\xd3\x84\x5c\x5c\xce\xce\x8e\xd0\x27\x82\x09\x95\x6c\xc9\xba\x8b\xb8\x5c\x5e\x9c\xff\xc9\xe0\xb1\x2d\x61\x1c\x44\x07\x4a\x7e\x80\x31\x7e\x20\xe0\xae\xf0\x03\x0e\xf1\x83\xf5\x56\x98\x75\x2d\x7d\x43\x23\x1e\xd2\x5c\x44\x05\x67\x5a\x4c\x08\xad\x7c\x19\xa0\x8b\xa7\xcf\x79\xab\xf8\xfc\xce\x66\x53\x0d\xdd\x1c\x15\xc3\x51\x00\xa0\x6b\x20\x3b\x0e\x0c\x1d\xa8\x76\xa2\xc0\x5d\x6b\xce\x2c\x10\x8c\xf4\xab\xd9\xef\x23\x0b\xf2\x9b\xec\xf5\xeb\x4f\x03\xdd\x31\xfc\x8b\x1d\x99\x60\xfc\x5e\xc2\x1a\x1e\x33\x98\x15\x74\xa7\x91\x45\x92\x6f\x5f\xd1\xf5\x08\x7f\xfa\xb8\x11\xb0\x8f\x0e\xf7\xf5\x1d\xe2\x19\x11\x00\x4f\xcb\x00\x99\xa5\x3f\x65\xa7\x7d\x03\x0e\x7b\x20\xa3\xee\xae\x78\xb0\xee\x49\x2f\x27\x27\xef\xa7\x7d\xed\x96\x80\x88\x9a\xe7\xee\x62\x28\x27\x89\xb7\x9e\xad\x09\x20\xc1\x54\xe4\x30\xa4\xe1\xcd\x4c\x09\x86\x16\x21\x0e\x1d\x46\x81\x76\xcd\x4b\xea\xd5\x45\x59\xab\x9a\x27\x83\xcf\x6d\x3d\x7a\x9c\x36\x39\x12\xac\x40\xba\xd1\xe6\x6d\x8b\x21\xa8\xd7\x49\x0c\xda\x03\xa7\xab\x34\x1e\xb8\x12\x29\x5c\x28\x01\x50\x02\x2c\x89\x30\x59\x38\x49\xc2\xbb\xc9\xc3\x4c\x03\x18\x9d\x44\xc1\x67\x0a\xca\x4d\xb8\xb0\x32\x3a\x77\x50\xa8\x2b\x16\xac\x04\x0f\xea\x49\x3d\xca\x0f\x08\xf4\xa8\xb4\xe2\xeb\x58\xa6\xe8\x21\x02\x59\x1b\x58\x22\x58\xf4\xcb\xcf\xff\x5f\x4a\x78\xac\x30\x7a\x61\xc1\x13\x76\x4f\xa3\xa8\x63\xb2\x88\x2f\x8c\x42\x21\x4b\xd1\xe0\xcf\xc4\x42\xa2\x03\xab\xf1\x1e\xe9\xbe\x1c\x9d\xba\x67\x68\xf6\xf1\xdb\xa1\xbb\x19\x13\xf0\x81\x60\x0f\xa0\x70\xed\x52\xdd\xe2\x2e\xc8\x05\xf9\x02\xdd\x0e\x61\x85\xd0\xd7\x59\xb0\x92\xe4\x0a\x49\xb6\xc9\xe9\x1e\x73\xb1\x4c\xdb\x75\xb7\xbd\xd6\xdb\x03\x1d\xc4\x7e\xff\xef\x06\x80\x4c\xa6\xd6\x0f\xfc\xa3\x1d\x1a\x4a\x82\x19\x72\xe3\x2e\x94\xa7\x56\xa3\xdb\x08\x85\x1e\x10\x68\xf0\xe4\x6d\x58\xdc\x7b\xd3\xda\xf1\x34\xcb\x93\xc1\x80\x83\x72\xb2\x2e\x92\xfc\xfb\xbc\xaa\xcb\x8b\xfb\x28\xb4\x51\x8f\x9e\x68\x68\xd7\x37\x5d\x4d\xf1\xf4\x25\x4c\xe5\xc2\x0c\xc5\x7c\x8c\x07\x3a\x6a\x9b\xef\xd8\xd6\x1c\xed\x98\x72\x93\x8c\xa6\x7d\x78\x2d\xd4\x12\xf6\xa0\x12\x5a\x82\x29\x9d\xcb\x4c\xf5\x20\x25\x4f\x25\x37\x0a\xa9\xf4\xed\xeb\x77\x32\x2e\xb0\x71\x87\x25\x1a\x9a\xb4\x7b\x84\x0c\x24\x63\x20\x19\xff\xee\x24\x43\x48\x65\x59\xab\x46\xb0\xb4\xdb\x8b\x7b\x5a\x8a\xfb\xd9\x88\x6b\xae\x4c\x96\xed\xeb\xf0\x66\x32\xcd\x9a\x01\xd6\x71\x93\x7b\x18\xa5\x1f\x67\x8e\x8e\xff\x55\x81\x7b\xb3\xe7\xc2\xf6\x09\xa9\x7f\x4d\x2d\x0b\x91\x00\x2e\x2f\x60\x61\x32\x86\x53\xcf\x93\x36\xd7\x1c\xe3\x57\x66\xf6\xf9\x0c\xfc\xdf\xaf\x20\x78\xc3\x86\x22\xa0\xef\xcc\xcb\x39\x0b\x68\x96\x1a\x6f\x8e\x0e\xc7\xe0\x7c\x8a\x01\x4b\xa0\x8f\xdc\x23\xe4\x15\x9a\x13\xdf\x9b\x98\x84\x92\x7f\x4b\x17\x91\x45\xc7\x97\x23\xd7\x77\xe3\xc0\xf5\xdc\xc0\x3f\x40\x5a\x29\xfd\xb5\x79\x5b\xfc\x7d\x7d\x32\xc3\xb7\xcd\xc3\x98\x1e\xcf\xb9\x62\xd6\x3d\x84\x0a\x7b\x40\xac\x49\x01\x9c\x64\xc8\x9b\xd1\x27\x9f\x7f\xde\x62\x63\x7b\xbe\x63\x8f\x66\xc4\x7e\xf4\xf8\x1a\x1d\x91\xfa\x85\x4a\xb4\x14\xd0\xb3\xa3\x0e\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x84\x7f\xc5\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x4d\x2b\x19\x70\xd9\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xf5\x67\x88\x92\x18\xa2\x24\xf2\x67\x88\x92\x18\xa2\x24\x9e\x3f\x4a\xa2\x25\xd1\xad\x96\x31\x30\xdf\x99\xef\x5d\x9f\x32\x7c\xde\x53\x6e\xb2\xe3\x3d\x22\xcd\xa1\xf9\x72\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x9b\x51\xe3\x90\xe7\x70\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\x2f\x9e\xc1\x82\xef\x3c\x83\x05\x7f\xb0\xe0\x9b\x67\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x5c\x36\x58\xf0\x07\x0b\xfe\x60\xc1\x1f\x2c\xf8\xf5\x67\xb0\xe0\x57\x9f\xc1\x82\x3f\x58\xf0\xab\xcf\x60\xc1\x1f\x2c\xf8\xf9\x33\x58\xf0\x07\x0b\xfe\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x7d\x46\x18\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\xd2\xaa\x21\x69\xd5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x6c\x9b\xff\x90\xe7\x70\x20\x19\x03\xc9\x18\xf2\x1c\x0e\x79\x0e\x2b\xcf\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\xcd\x42\xe4\x90\xe7\x70\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x59\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xd3\x4a\x06\x5c\x36\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xfd\x19\xa2\x24\x86\x28\x89\xfc\x19\xa2\x24\x86\x28\x89\xff\xc4\x3c\x87\x90\xbc\xb0\x2b\xcb\xe1\xa5\x6e\xd4\x72\x86\x0b\xef\x68\x65\xf3\x21\x36\x30\xbe\xe8\x0b\x82\x19\xe6\x80\xc5\xd7\x9d\x82\x4e\x3c\x1c\x23\xd7\x9f\xeb\x2c\x56\x7c\xa9\x59\xa8\x9b\x3d\xe8\xef\x66\x0f\x36\xdb\xb4\xf5\x75\x4d\x17\x9a\xfc\x2b\x40\x2f\xd0\x41\x24\xef\x59\x82\xb3\x41\xef\x1a\x67\x72\x29\x91\x6b\xae\x14\x0b\x0f\xb4\xf4\x8a\xae\xd9\xbe\x4e\x03\x29\x52\x8e\xe9\x1d\x51\x3a\xbd\xd9\xe3\x62\xc1\x05\x57\xec\x66\x8f\x8c\x08\x78\x74\x38\xcb\xb1\xe2\x80\x99\x27\x89\x68\xaa\xc6\x24\x5f\x99\x17\x24\x7a\xae\x3c\x64\x42\xf1\x80\x46\x66\x82\xd5\x7e\xb8\x20\x34\x8a\x57\x54\x64\x6b\x96\x38\xed\x20\xb3\xa2\xaf\x57\x63\x42\x33\x82\x14\x9a\x2d\xbd\x4a\x40\x3c\x1b\x22\x5b\xcf\xeb\x32\x6e\x0b\xd2\xab\x08\x85\x33\x57\xc0\xc0\x83\xe2\x88\x19\x59\x6a\x38\x26\x1e\xdc\xe1\x7f\x64\xe6\x3d\xff\x7a\xca\x15\x86\xd1\x01\xae\xf1\x23\x76\xc0\xa2\xa4\xd1\x6f\xb4\xb0\xbd\xc5\x3c\x52\xb2\x90\x51\x24\xef\xc1\x25\xd0\xc8\x3e\xb9\x34\x80\x68\xe9\xf7\xc8\x1a\xe3\x6d\xbf\x8d\xb8\x62\x09\x8d\xf4\x2f\xbe\x9e\x6f\x6e\xc8\x08\xfd\xe8\xf5\x41\x59\xc7\x34\xe1\xa9\x14\x07\x04\x02\x69\x2c\x4f\x6b\xbb\x5c\x48\x49\xe6\x34\x01\x3e\x3b\x1f\xee\x37\x3b\x0e\x57\x8c\xa7\x39\x72\xf6\x97\x8c\x46\x5f\xa2\xe3\x97\xc5\xb3\x7c\x61\x10\x2c\x4f\xa1\x8d\xd5\x19\xe5\x43\xfa\xef\xe5\x8f\x30\x0f\x5a\x38\x2b\xcc\x8b\x7f\x06\xf8\xcf\xf1\x78\x4c\x7e\x72\x66\xa0\x92\x8c\x59\x0f\xee\xdc\x01\x0a\xc7\xf8\x23\xf1\xbb\x5c\x1a\x65\x59\xc7\x50\xc5\x5c\xf5\x02\xb8\xe8\x31\x39\xdf\x60\x3b\xce\x17\x06\x6b\x9b\xa0\x7f\x4b\x9c\x39\x6b\x79\x0a\xfa\xbb\xd5\xdc\xcd\xab\x62\xe8\x59\x3e\x32\x55\xc5\xee\x38\x3b\xf3\x1b\x38\xa4\x5e\x9c\x6f\xba\xc8\x05\x6b\xb9\x80\xb6\x20\x59\xc1\xff\xb3\xd7\xaf\x3f\x79\x8b\xff\xc5\x37\xf9\x37\xd7\x2b\x99\xa8\x51\xc0\x93\x20\xe3\x0a\xe8\xa6\xf9\xc8\x37\xd0\xdf\xfe\xd6\xfa\x35\x68\xe0\xd4\x4b\x6c\xf3\x2a\x6f\x14\xd3\x84\x09\xcc\xb5\xba\x4c\x64\x16\x6b\x66\xe1\xe6\x46\xd1\x28\x7a\xe9\xd5\xa4\x9a\xe4\x9f\x68\x1b\xcf\xf1\x85\xed\xcd\x9e\x61\x1a\x45\x8e\x80\x04\x17\xf4\x1c\xcf\x03\x72\x00\x7e\xe2\x4e\xf5\xd5\x46\x3c\x63\xdd\x87\x5c\x94\x99\x1e\x90\xd1\x01\xb9\x05\x38\x1c\x8e\xc9\x35\x5c\x39\x62\xae\x5c\x63\xa7\x6b\x99\x30\x12\x6b\xde\x28\x4d\xf9\x86\x91\x39\xba\xbe\x6e\xad\x60\x6e\x54\x26\x84\xa5\x01\x8d\x19\x09\x56\x34\xa1\x81\x62\x89\x99\xf6\x19\xfa\x0f\x7a\x2f\xc3\x4b\x40\xfc\x6b\x1a\xb2\x51\x16\xe3\xb1\x48\x5f\xe5\xe8\x08\x22\x2e\x0c\xea\xb8\x67\x73\xcd\x7c\x31\x83\x3c\xdc\x1d\x0f\x59\x1c\xc9\xed\x9a\x09\x2f\x3a\x35\xdf\xc7\x89\x0c\xed\x21\x85\x7e\xf5\x9d\x02\x9c\x94\x48\xa1\x05\x74\xe7\xa8\x6b\x99\x16\x7f\xf8\x49\x37\x2f\xfa\x27\xbf\xf9\x7d\xd3\x0d\x08\xd9\xc6\x76\xff\x1b\x52\xb9\x05\x3e\x54\xd6\xc6\x51\x95\x45\xd9\x16\x43\x4b\x8b\x1c\xdb\xce\x75\x2f\xd0\xa9\xaa\x20\x0b\xbe\x65\x59\x8a\x85\x67\xd4\xb0\xc3\x98\xc6\x58\x0a\x3b\x49\xcb\xe9\xfa\x0c\x26\x6d\x6b\x04\x75\x59\x0f\x9a\x0a\x5a\x35\x2e\x42\x1e\x00\x5f\x7e\xbf\x82\x28\x3e\xa4\x5e\x86\x24\x3a\xfe\x04\x26\xcf\xb1\x17\x4f\xe9\x7b\x27\x4d\xa2\xe3\x03\xf3\x97\xe6\xa9\xc7\x04\xbd\x77\x80\x9a\x3c\xc4\x9a\x49\x51\xd1\xd6\x61\xa9\x5f\x42\x92\x66\xaf\x5b\x96\x83\x47\x05\x09\x12\x66\xdc\x86\x53\x73\xbb\x65\x42\x04\x8f\x5e\x1d\x58\xc7\xdf\x90\x2d\x68\x16\xa9\x94\xe0\xb2\x34\xe8\x92\xb0\x81\xa5\x56\x92\xdc\x6b\x5c\x39\x31\xa9\xb4\xf5\x24\xce\xcc\x3f\xf5\x7d\x34\x98\x33\xcf\x55\x0c\x9e\x2a\xa8\x8e\x34\xc3\xf8\x7a\xe5\x29\xde\xae\x11\xf9\xb3\xe1\x8b\xf4\x54\xec\x18\xdf\x1f\x18\xe2\xa0\xb9\x4c\x50\x79\xd9\x21\x31\x9f\xf4\x4b\x2e\x82\x28\x6b\x9c\xf1\x8a\x91\x80\x6a\xce\x13\x3a\x28\xba\x21\x48\x9e\x85\xcc\x17\x03\xdd\xbd\xf2\xcc\xe4\xac\x31\x4f\x75\x75\x6e\xa5\x89\x69\x94\x54\xed\xbe\x79\x9d\xde\xe3\x51\x9d\x43\x6d\x40\x90\xbf\x3c\xbb\x81\x39\xce\xfd\x78\x41\xe0\xd1\x2a\xf3\xfa\x09\xa3\xfa\x1e\x05\x77\x84\x2e\x29\x17\x07\xe6\x34\xa0\xd2\x2e\xba\xa7\xdb\xd4\xb8\x66\x7a\x4f\xb1\xb5\xb3\xa1\x81\xed\x80\x08\xb6\x61\x49\xe9\xbc\x79\xd5\x69\x3d\xd3\xa0\x17\x50\x20\x0c\x88\x46\xae\x8a\x8e\x65\x9a\xf2\x79\x64\x07\x2e\x3c\x08\xf4\x07\xd7\x31\x0b\xfc\xf2\x1e\xae\xad\xd9\xa7\xa2\x5d\xb2\x6c\x14\xda\xfc\xb2\x5e\xfd\x57\xa0\x19\xa1\x6b\x29\x4a\x95\x4c\xe8\x92\xd9\x9f\x52\x45\x55\x86\x80\x41\x85\x29\x0b\x2f\x1c\x55\xd6\x1d\x17\xa1\xc6\x43\x16\xa4\x71\x94\x25\x34\x2a\x7e\x09\xa4\x40\xdb\x45\x7a\x44\xfe\xfc\xbd\xfe\x45\xf7\xcf\x42\x13\x78\x64\x7e\x1d\x8d\x46\xe6\x3f\x34\xe6\x36\x84\x89\xd0\x98\xb3\x07\xc5\x04\x34\x1c\xdf\x7d\x91\x8e\xb9\x3c\xdc\xbc\xb9\x11\x38\xe8\x49\x96\x2a\xb9\xbe\x62\xa8\x8b\x3d\x65\x20\x71\x01\xaa\x2e\x05\x0a\xd5\x63\x6f\x72\x15\x6b\x32\x5a\x32\x31\xbe\xcb\xe6\x6c\x9e\xf1\x48\x8b\x80\x7a\x00\x3b\xfc\xcb\x90\x6d\x58\x04\x2c\x8a\xc5\x5c\x33\xbe\x66\xa9\xa2\xeb\x58\x0b\x43\x11\x78\x9b\x6b\x02\x76\x44\x04\xba\x83\xa5\x4c\xa5\xe3\x20\x09\xc7\x71\x22\x35\x8c\x03\x40\x6b\x63\x99\x2c\x6f\x84\xc6\x97\x30\x01\x60\x82\x8e\x48\x43\xb3\xb2\xa6\x10\x57\x5a\xf5\x59\x8b\x78\xaa\xfe\x50\x79\x73\xce\x53\x55\xde\x02\x67\x4e\x66\x67\xb9\x58\x66\x11\x4d\xdc\x57\xb0\x23\x81\xd4\xc7\x22\xf7\x4e\x03\x59\x71\x63\x37\x48\xff\x31\x32\xcb\xd4\xc0\x87\x9e\x82\x15\x5b\x17\x71\x58\x32\x66\xe2\x78\x3a\xf9\xf6\xd3\xeb\xf2\xef\x75\xa7\x30\x33\x59\xeb\xde\x50\x0c\x39\x62\x7f\xc9\xf8\x86\x46\x1a\x65\x9b\x9b\x53\xf5\xd7\x73\xae\x47\x83\xd6\xd5\x39\x3c\xe5\xdb\x50\x0e\xd8\xd6\x53\x35\x96\x33\x74\x26\xc5\xc9\x98\x15\xb3\xd0\x2c\x0f\xe7\x01\xf8\xc8\x10\x13\xea\xd3\xac\xc8\x05\xf0\x0f\x70\xa7\xc6\xc0\x64\xb0\x24\xb5\x62\x68\x20\xc5\x86\x25\x8a\x24\x2c\x90\x4b\xc1\xff\x9a\x77\x9e\x5a\x5b\x1e\xd4\x51\xa8\x91\x22\x2e\x14\x4b\x34\x3b\x02\xc8\xe4\x00\xd0\xe9\x9a\x6e\x49\xc2\xf4\x30\x24\x13\x4e\x87\xd6\x93\xe0\xbd\x66\x43\xb9\x58\xc8\x23\x48\xa3\x91\x1e\x1d\x1e\x2e\xb9\xb2\xf7\x26\x90\xeb\x75\x26\xb8\xda\x1e\xc2\xf1\xe7\xf3\x4c\xc9\x24\x3d\x84\x33\x7e\x98\xf2\xe5\x88\x26\xc1\x8a\x2b\x16\xa8\x2c\x61\x87\x34\xe6\x23\x98\xbb\x80\x8b\x33\x5e\x87\x2f\x12\x73\xd1\xd2\x7d\x1f\xa6\xa9\x23\x28\x38\xba\x6d\xdb\xa0\x4f\xb0\x89\x3e\x43\x3e\x1b\x19\x85\x1c\xda\xd6\x8c\x7a\x75\x76\x3d\x23\x76\x74\x6f\xa4\x1e\x02\xbf\xf8\x32\x2d\xf6\x41\x03\x8d\x8b\x85\xe5\x88\x40\x95\xe9\x2a\x10\x90\x28\x47\xdc\xc3\x1c\xa7\xd9\x7c\xcd\x55\xea\xe4\x5f\x90\x63\x72\x02\xe8\x44\xd3\x9f\x2c\x0e\xa9\x62\xe1\x98\x4c\x04\x39\xa1\x6b\x16\x9d\xd0\x94\x3d\xfb\x2e\x00\x5b\x38\xd2\xb0\xed\xbb\x0f\x0d\x51\x93\x4d\xca\xc0\x1c\x4d\x35\x6c\x5b\x71\x1f\x35\x4d\x2b\x3b\xed\xdb\x18\x8f\x22\xae\x92\xd6\x70\x57\xf1\xd8\x2d\xad\x90\xbd\x16\x8b\x4a\x83\x0f\x6a\xad\xd8\x8a\x75\x93\x99\x4c\x73\x4c\x87\x72\xf5\x9c\x45\x52\x9f\x2a\x69\xb4\x3b\xcc\x67\x50\x68\xe6\x04\xfe\x87\xd1\xe2\x17\x26\x32\xe3\x88\x20\x81\x3a\x54\x6c\x1d\x03\xbe\x3a\xc4\x1f\xc0\xf3\xa4\xb0\x58\x26\xe9\x28\x99\xd3\x60\xbc\xa5\xeb\xe8\x46\xfc\xf8\x23\x5f\x10\xf6\x17\x32\xbe\xfa\xea\xf8\xe4\x44\x8a\x05\x5f\x92\x9b\x3d\xdd\xe0\x66\xef\xa7\x9f\x74\xef\x13\x60\x96\x19\xa1\x24\x88\xb2\x54\xb1\x24\x91\x11\xcb\x8b\x7f\x54\xfb\x06\xed\x99\x14\x4c\xa8\x03\xfd\x31\x94\x0f\x01\x0c\xa2\x2c\x2a\x6d\x98\x94\x95\xc4\x0a\x73\x9e\xe1\x1f\x70\xd0\x2b\x19\xb1\x32\xdf\x01\x8b\xa0\x99\x5a\xc9\x84\xff\x15\xdd\x18\x1c\xe6\xa3\x74\x9f\x90\x2c\x36\x0c\x7c\x23\x80\xf5\x85\x86\x2f\xc8\x85\x0c\x51\x2f\x41\xee\x8d\xb7\x82\x92\x64\x2d\x05\x07\xaf\x3c\x99\x90\x90\x45\x0c\xef\x39\x92\x5c\x1a\xf3\xaf\x35\xab\xa0\xf7\x45\x6f\xe1\xf7\xb8\xab\x39\x1e\xce\x8f\xe8\x88\x08\xdd\x37\xfe\xb9\x61\xc9\xdc\x7d\x75\xef\xba\x57\x8d\xe0\x6a\x14\x7f\x2d\xf1\x56\xbe\x20\x53\x9b\x98\xe7\x2f\x19\x4b\xb8\x51\x90\xe4\x39\x53\xd8\x03\x4f\x15\x13\xe6\xaa\xee\x34\xb3\x58\x86\x0d\x13\xcb\xc7\x9e\x4c\x8f\xdf\x17\xdf\x9a\x30\x0c\xc1\x63\x28\x31\x14\x6a\x61\x49\xe0\x02\x4d\xf8\x47\xc4\x94\xb1\xc8\x54\x67\xe2\x67\xa9\xda\xa6\xc7\xe3\x58\xca\xa8\x61\x86\x16\x56\x1f\x3f\xcc\x3c\x92\xc1\x1d\x5d\x20\x87\x5a\x68\x7a\xf4\xf8\x74\x0d\x2f\x2b\xbf\xad\xa8\x08\xa3\xa6\x2d\x5d\x32\xd5\xb4\xa1\xc0\xa8\xb2\xe2\x6f\x24\x52\xc5\xdf\x08\x3d\x84\x7b\xed\x9e\xac\xa9\xa0\x4b\x96\x92\x95\x4c\x95\xe3\x7b\xf0\x24\x10\x28\xf5\xf9\xac\xcb\xba\x60\x2c\x04\xd5\x81\x96\x3d\x95\x34\x6d\x2d\x8a\x71\x82\xd4\x9f\x6a\x69\x9e\x9e\x7b\x2c\xb0\x79\x49\x2f\xc8\x1f\xb2\x39\x3b\x29\x36\x06\x91\x67\x96\xe4\xca\x13\xd4\x1f\x70\xa5\x7b\x4c\x89\xe6\x51\x02\x68\xf2\x34\xeb\xd1\xe7\xc2\x39\x16\x81\x3b\xba\x77\x65\x2f\x50\x62\xd7\xf3\x90\xf7\xc2\x99\x4b\x6d\xd9\x2f\xcc\xb2\x09\xb5\x3a\x18\xc2\x17\x44\x48\xc1\x10\xc7\xa4\x4d\xf0\x79\x61\xb7\x11\x49\x60\xd3\x49\x78\x81\xe8\x0e\x90\x56\xb0\x2a\x79\xc0\xe6\x98\x10\x48\x5b\x8d\x02\x7c\xc5\x05\xaa\x6d\x9e\x89\x10\xc8\x88\x5d\x31\xf4\x26\xb5\xfb\xd3\xd2\xbf\x6e\xe6\x21\x52\x9d\xc3\xa4\x19\xb0\x13\x7a\x6b\x46\xa6\x83\xb2\xd6\xb3\x47\x1f\x4e\x1c\xdf\x11\xe2\x88\x74\x9b\x2a\xb6\x2e\x73\x06\x57\x54\x04\x2b\x96\x8c\x2c\xcb\x77\x44\x4e\x00\xde\x2e\x21\xd6\x48\xdb\x5d\x00\x3a\x74\x68\xca\x82\xda\x3e\xa8\xbe\x46\x83\xbb\x7b\x9a\x84\x48\xde\xa9\xe2\x73\x1e\x71\xb5\xed\xc3\x7c\xe8\xee\x5d\x86\xa3\x8b\xa1\x70\x67\x75\x4a\xd9\x5a\x8a\x6b\xd6\xc5\x4b\x40\xe3\x5f\x89\x7f\x28\xb3\x0b\x9a\x8f\x3d\xb9\x98\x68\x26\x6e\xc9\x05\x11\x80\xd5\x94\xd4\xb7\x09\x88\xea\x01\xd2\x44\x14\x0d\xdd\x58\xaf\xc7\x53\xe8\x0a\x27\x61\xc5\x7e\xec\xb8\x15\xa5\xed\x34\x60\xcd\xb5\x71\x64\x21\xdc\x80\x5d\x3e\x18\x3d\x7b\xc8\xd3\x40\x6e\x58\x92\xab\xd6\x27\x53\x34\x2b\xd1\x50\x0b\xd9\x3c\x65\x6b\xd7\x83\xb4\x95\xf7\xf1\xf4\x3a\xdb\xc6\x2b\x9a\x8e\xfd\xdc\x11\x39\x99\x9c\x5e\x11\x9a\x29\x39\x0a\x99\x96\xcf\xc0\xce\x26\xe0\x82\xd0\x70\x6d\xf6\xa7\xa0\x3a\x88\x04\xc9\x9a\xc6\x8f\xd8\x12\xfc\x58\x7f\xfb\x74\x50\x87\x8d\x3d\x74\xd1\x67\x15\xcc\x9a\x70\x9a\xe2\x7b\x41\xc4\x28\x88\xe4\x9a\x69\x35\x12\xdc\x07\x41\x37\x94\x47\x74\xae\xaf\x54\x44\x97\x0e\xa0\x62\x17\xce\x2f\xac\x32\x1f\x84\x8b\x14\x63\x09\x82\x32\x09\x73\x32\xc5\x70\x64\xee\x5c\x35\xdd\xd8\x4f\x15\xbf\xab\xa2\x76\x0d\xe7\x3f\xe4\xbe\xef\xa5\xf8\x52\xde\x70\x13\x8c\x38\xc8\xc5\xd2\x62\xda\x56\x98\x61\xeb\xb8\xe4\x98\xd1\x93\xc1\x36\x07\x6c\xbe\xb5\xe0\xd0\x13\xb7\x3a\xee\x62\xfd\x1f\x7d\x5f\x2b\x17\xd4\xb9\x4d\xd6\xf0\xd4\xce\xdc\x56\x16\x51\x43\x3c\xb1\x75\xf7\x95\xa1\x3d\x3e\x8f\x9b\x73\xcb\xd9\x73\x4e\x50\x7e\x7a\x8c\x64\x94\x92\x0d\x4d\xb8\xcc\x52\x72\x72\x75\x8a\xb7\x1d\xcf\xd2\x13\x31\x6f\x18\x84\xbc\x60\x11\x7f\xc0\x7e\x1d\x38\x3a\xbf\x96\xd9\x1f\x60\xe9\x97\x71\xcc\x0c\xc1\x74\xbb\x9a\x2f\xe3\x5a\x47\xf9\x6f\xf5\x6e\x4a\x02\x48\x93\x44\x80\x3d\x7b\x4f\x63\xed\x75\xca\x5c\xc4\xda\xf8\x8d\xb7\x75\x23\x27\xdb\xc0\xc1\x37\x8a\x36\x3b\xb0\xf6\xf7\xf5\x9d\xcf\x52\x95\xf3\x89\x22\xcc\x39\x3f\x8d\x47\xe0\x10\x48\xa1\xd9\xc0\x44\x65\xf1\x73\x48\x81\x9d\x3b\xdf\x9b\xdf\x6f\x63\xf1\x77\xc2\x91\xc6\x4f\x4b\xe3\xc9\x27\xd5\x0d\xf4\xdb\x96\x19\x98\xd3\xac\x7f\x83\x14\x28\x87\x83\x6f\xa9\x75\x45\x84\x7b\x99\xc5\xcb\x84\x86\x26\xb4\x61\xf3\xc9\xf8\x2d\xf2\x26\x01\xd6\x01\x7e\x41\xe6\x8c\x24\x6c\x2d\x37\x2c\x34\x6e\x78\xf6\x03\x99\xe8\x15\x2e\x12\x96\xae\x08\x17\xa9\xa2\x51\xf4\xa4\x02\x5a\xcb\xf5\x2b\xdf\xe2\xbe\x1b\x68\x78\xe0\x77\x11\x15\x82\x45\x65\x46\xf0\x05\x99\x66\xe0\xbd\x0f\x60\x70\x54\xc0\xab\x6c\x3e\x0e\xe4\xfa\x30\x90\x09\x93\xe9\xe1\x02\x3f\x3e\x9c\x47\x72\x7e\xb8\xa6\xba\x83\xc3\x53\x19\x64\x6b\x6b\x67\x38\x04\xde\xdb\x34\x33\x7c\xae\x66\x73\x9f\x9a\xf9\x34\x23\xb8\xdc\xe7\xd3\x6a\x78\x9e\xea\xb4\x36\x1c\xd0\x27\xe5\x82\x72\x4a\x64\xb6\x58\x8b\x85\x18\xdc\x51\xdf\xeb\x42\x54\x10\x34\xaa\xc8\x59\x3e\x21\xe1\xa9\x44\x4c\x41\xa3\x51\xb1\x69\x4f\x2a\x58\xe6\xdd\xee\x24\x48\x0a\x1a\x75\x8a\x8d\x1d\x12\xa3\x0b\x56\xb8\x38\xae\xfc\xd5\x25\x31\xa2\xc0\xd8\x1f\xaa\xcd\x3b\xd3\x08\xef\x5c\x42\x7b\x06\x39\xfe\x69\xa1\xfd\xe3\x8f\x4c\x84\x3f\xfd\xd4\x5b\x85\x0f\x44\xc5\x0a\xd0\x10\x8c\xbc\xa6\x82\x2f\x58\xaa\x2c\x2e\x4e\x9d\x53\x6e\xcc\x3d\x2c\x39\x20\x34\x25\xf7\x2c\x82\xcf\x4c\x00\x54\xc1\x35\xa6\xa6\x24\x38\xf0\x18\x56\x16\x92\x42\xb7\x65\x14\x52\x49\x6b\x60\x40\x23\xdd\x82\x25\x28\x03\x40\xd9\x72\x87\xa3\x37\x94\x36\xbf\x4c\xb9\xd4\x5e\xf5\x13\x88\xd3\xd6\xeb\xd2\x06\x2f\x62\xbc\xea\xac\x0d\xe5\x8b\x74\x44\xe3\x38\xff\x30\x37\x87\x55\xdc\x9c\xc1\x0d\xf1\xdc\xfd\xb2\xfe\x2d\x31\x04\xe3\x5a\x25\x54\xb1\xe5\xf6\xc8\x18\x45\xc6\x1f\x4a\x3f\xeb\xcd\xfa\xf1\x47\xa2\xe4\x9f\xe8\x3a\xaa\xbe\x24\x7f\x23\x5c\x84\x4c\x28\xf2\x19\xb6\x63\x51\xca\xf4\xbf\x48\x6e\x42\xba\x92\x51\xc4\xc5\xf2\x83\xa3\x09\x4b\xdc\x9f\xf2\xf9\xad\xe9\x83\x23\xc4\x1d\x91\x37\xce\x69\x21\xc4\x9e\x0c\xbb\xc0\xaa\xd9\x30\x2a\x2f\xd6\xb7\xdc\x8a\xf5\x50\xef\xa9\xc7\x39\xaf\x08\x57\xd6\x17\x52\xa6\x47\x24\xe2\x22\x7b\xb0\x0d\x34\x9f\x69\x44\x39\x6b\xf7\x42\xa8\x5d\x38\xdd\x59\x08\x34\x0c\xf2\xe3\x8f\x26\x01\xda\x7f\xdd\x1d\x90\xff\xda\x90\xa3\xdf\x97\x3f\x27\xc5\xf7\xd0\xf8\xbf\xee\xc8\x4f\x3f\x1d\x91\x9b\x3d\xfd\xef\x8d\x7e\xbb\xe7\x74\xc5\x44\x48\x0c\xf0\x2d\xb0\x00\xfa\x32\x62\x49\x2d\xa9\xeb\x0b\xf2\x9e\xde\x31\x92\x66\x89\xbd\x33\xa0\xa4\x4d\x83\x15\x0b\xb3\x08\x5d\x03\x21\x3d\x8f\xa6\x44\x8e\xf5\x71\x64\xc2\x15\x8f\xc8\x85\xbc\x36\x8d\x8b\xb7\xe0\x63\x91\x50\xbd\x46\x72\x56\xd2\x94\xe2\x88\xc9\x9d\xf1\x41\x0a\x31\x0e\x27\x48\x38\x46\x0a\xd0\x30\x1c\x19\x5b\x6c\xc2\xcc\x24\xb4\xf4\xeb\x0e\x7c\xc7\xb6\x47\xe4\xc4\x7c\x71\x1c\x86\x52\xa4\x97\x95\x8c\x51\xcd\xa3\xbb\xf3\x3e\x7b\x60\x41\xa6\x7a\x4d\xbb\xcb\x3a\x88\xad\xca\x8e\x9e\x17\xe5\x1b\x8d\xdd\x94\xb6\xe4\x05\x79\xcf\x05\x5f\xf3\xbf\x32\x12\xca\x7b\xa1\xf8\x9a\x91\x30\x03\x4d\x06\xb5\x97\xc2\x65\x3b\xad\xc9\xed\x4b\xa2\x58\x14\xb9\xa8\x47\x49\x12\x4a\x42\xc9\xcd\x1e\xa4\x20\x2d\x06\xb0\x9f\xdc\xec\x15\x06\xfe\xf2\x89\x0e\x65\x90\x1e\x06\x52\x04\x2c\x56\xe9\xa1\xcd\xe0\x94\x1e\x82\x10\x1c\xcb\xf0\xf0\x85\x8d\xa3\xe2\x52\x8c\xe4\x62\xa4\x5f\xe4\x1b\xe2\xbc\xfb\x3a\xa1\x01\x9b\xb2\x84\xcb\xf0\x9a\x05\x52\x84\xe9\x11\x79\x5d\xcc\xc4\x10\xd4\x22\xb3\x22\xaa\x45\x6c\x83\x38\xe1\x32\xe1\x6a\x7b\x12\xd1\x34\x45\xd0\xfd\xf8\x23\x19\x9f\x50\xc8\x2e\x5c\x79\x47\xfe\x96\x2b\xe4\x6f\xf6\x10\x35\xa2\x7e\xd5\x1e\xa4\x9b\x3d\xe7\xce\x68\x59\xef\xc4\x52\x82\xf2\xe1\x07\x0a\x92\x53\x89\x32\x09\xd1\xf4\x61\xce\x05\x4d\x4a\x41\x2e\xa8\x7e\xd5\xef\x2a\xf4\x62\xc1\x23\x70\x1b\x05\x8a\x91\xcb\x3e\xf6\xd4\x21\x7a\x37\xfd\x8f\x02\xc1\xdd\x53\xc7\xd7\x60\x35\xff\xf1\xc7\xf1\xc9\xc5\x64\xa2\xff\x70\x2f\x3c\x04\x62\xac\xa9\xa6\x28\x7f\xbe\xd9\x3b\x94\xb1\x3a\x0c\x04\x3f\x9c\x73\x71\x68\xfa\xcb\x79\x48\x7c\x98\xd8\xbc\x4b\xe4\xba\xe4\x13\x60\xb5\x74\xef\x69\x6c\x19\x02\xf7\x79\x41\x8e\x21\x8a\xe4\x0f\x1f\xbe\x3a\xbb\xba\x38\x9b\x9d\x5d\xdf\x5e\x9f\x5d\x7d\x3b\x39\x39\xbb\xfd\xe6\xf2\x7a\x06\x6b\xf6\xbc\x9b\x5e\x5e\xcd\x4c\x10\x91\xdc\xb0\x24\xe1\x61\xc8\xf0\xf6\xb2\xaf\xa6\xef\xc8\xba\x0c\x05\x7c\x10\x12\x4e\x12\x08\xab\x4d\x1d\x59\x71\xbd\xfa\x85\x75\x76\xae\x27\x88\x60\x62\x53\x59\xca\x0b\x70\xd2\xb2\x3e\x59\x7a\x9b\xdc\xed\xd1\xac\x19\x08\x49\x95\x59\xd9\xfd\x39\xb9\x98\xdc\x9e\x5c\x5e\xbc\xbb\xbd\x38\x7e\x7f\x56\x9d\x06\xf8\xfb\x68\xac\xfb\xe6\xf5\x08\x6e\xf5\x58\x77\x0d\x6c\xfe\x5e\x75\x12\x56\x2b\x55\x39\x23\xe0\xd2\x0c\x5b\xd6\x74\x52\xaa\xb3\xb9\x38\x9b\x7d\x77\x79\xf5\x07\x98\xd5\xe4\x6b\xef\x94\x6a\x7b\x6d\x0f\x8d\xd9\xef\x3f\xb0\xad\x6f\xcb\x8b\xbd\x30\x3c\x63\xc9\x0e\xe6\x3e\x80\x70\x03\xc1\x6f\xcd\x6a\x6e\x7d\x4d\x5f\x90\x6b\x86\xee\x49\x9a\x22\x82\xe9\x24\xf7\x2d\x07\xff\x88\x2f\x52\xe4\x9a\xf4\xab\x86\x05\x3b\x27\xec\xe2\xf2\xf4\xac\x79\x17\x1a\x96\x0c\x6e\xa9\x4d\x6b\x85\x97\x53\xaa\x56\x47\x80\x82\xc6\x7a\x32\x10\x41\x56\x59\x86\xde\xb6\xf7\xb3\x0f\xc4\x60\xf9\x0d\x4d\xb8\xe6\x3f\x9a\xb7\xe8\xfd\xec\xc3\x3f\x71\x5f\x36\x4c\xad\x6e\xd7\x2a\xab\x2e\x63\x9a\xb0\x0d\x13\xa6\x40\x46\x81\xe1\x40\x5a\x49\x23\xc6\x20\xae\x65\x21\x75\xab\x6a\x11\x1d\xbb\xb8\xeb\xf3\xb3\xb3\x5a\x25\xaa\xfc\x16\x2c\x68\x94\xb2\xf2\xc9\xdf\xc8\x28\x5b\xb3\xf7\xbe\x80\xfd\x11\x59\xeb\x9f\x11\xfe\x87\xfa\x88\xb8\x88\xcc\x8f\x23\x02\xc1\x47\x73\x2e\x46\x21\x4f\x3a\x3b\x63\x2a\x80\xce\x04\x53\xe3\x5a\xf0\x60\xd1\x9d\x60\xaa\xda\x5d\xca\x82\x0c\x88\x8b\x14\x8a\x3d\x54\x2b\xb6\xc4\x09\xdf\xf0\x88\x2d\xcb\x8e\x4e\x08\xe2\xe3\x30\xd4\xcc\xcb\xbb\x88\x3d\x90\x6f\x61\xe9\xe4\x34\xe1\x1b\x70\xde\xa3\x56\x27\xa8\x5b\xc4\x2c\xd1\x54\x93\x7c\x10\xfc\x81\x9c\xca\x35\xe5\x82\x5c\xcb\xe0\x0e\xb3\x02\x41\x90\x0f\x39\xe5\x77\x5a\xca\x28\x51\x1a\x30\xcc\x80\x07\x5e\x40\x95\x89\x00\x7d\xc7\x22\xfe\x00\xd8\xd6\x0d\x86\xbc\xde\x8a\x80\x1c\x4f\x27\x1e\x9a\xb3\x88\xd8\xc3\x46\x46\xa3\x10\xa6\xe6\x27\x3b\x7a\x09\xdf\xca\x68\xb2\x5e\x96\x09\x4f\xe3\x86\xfa\x3b\x1f\xe9\xad\x28\xc3\xaf\xb6\x51\xf5\x69\x3c\x6e\x03\x02\x3f\x41\xbf\xca\x44\x5a\x15\xfe\x72\x5c\xeb\x30\x4c\x80\x76\x2b\x35\x5e\x5e\x38\x9f\xc4\x89\x5c\x26\x74\x9d\xe6\x18\xdc\x06\xa7\x88\x90\x24\x32\x53\x90\x26\x0b\x7a\x75\xbf\xd7\x2b\xf4\x6c\x81\x23\xbb\xfa\xe1\xaf\x99\x7d\x0f\xdd\xff\x9f\x4d\xc8\x3f\xa4\xcc\xdd\xb1\xe3\xe9\xc4\x4a\xee\x73\x1a\xdc\x69\xf4\xa5\x05\x3e\x50\x49\x37\x20\xb0\xd3\xe3\xd9\xf1\xf5\xec\xf2\xea\xec\x76\xf6\xa7\x69\x33\x3d\x2f\x96\x50\x27\xe4\xd6\x99\x85\xe1\xae\x13\xba\x5c\x26\x36\x6e\x31\xa7\x6f\xb1\x31\xb8\x36\x4c\xe3\xc3\xb5\x06\xf0\xe9\xad\x6e\xd2\x38\x09\x80\x48\x6d\xf8\xef\x28\x57\xb9\x47\x40\xd7\x72\xbf\x3b\x9e\xcc\x6e\xdf\x5d\x5e\xdd\xe6\xeb\xde\x71\x34\x4d\xc1\x77\x26\xda\x9a\x52\xff\x53\x08\xf5\xa9\x14\xfb\x8a\x30\x01\x26\xde\xaf\xbe\x9e\x36\x71\x51\xc7\xe7\x93\x93\x4b\xcb\x48\x4d\x2e\xbe\xbe\xfd\xea\xf8\xe4\x0f\x67\x17\xa7\x8d\xc0\x11\x52\x78\x80\x63\x54\x62\x58\x37\x4a\x33\x72\x10\xde\xbe\xc0\xcc\xc9\x4e\x4c\xa1\x7e\xdf\x30\x93\xf3\x0f\xd7\xb3\xb3\xab\x8e\xc3\xf8\x45\x7a\x80\x32\x63\x6d\x06\x28\x5b\x1d\x10\x2e\x34\xce\xd4\x02\xd6\x01\xa1\xca\xe4\x1f\x00\x1b\x10\x49\xd8\xc8\x86\xcf\x69\x26\x33\x2f\x6b\x91\x2a\xaa\x1a\x66\xf5\xee\xec\x7c\xf2\xc7\xdb\xc9\x74\x76\xfc\xd5\xf9\xd9\xf5\xd5\xd9\xbb\xab\xb3\xeb\x6f\x26\x17\xb3\xb3\xab\x6f\x8f\xcf\x1b\xa7\xf9\xf6\x75\x7d\x7e\x17\xd2\xc9\x4d\x0b\x2e\x06\xb5\x54\x14\x76\xd0\x49\x33\x5f\xe1\x67\xa6\xad\xb8\x37\x99\x6e\x3e\x23\xb1\x94\x51\xc1\xcb\x3b\x06\xb6\x8a\x7b\xd6\x18\x5c\x21\x26\xd3\x3c\x1d\x76\xb5\xe7\x60\x25\x53\x8d\xe7\xd0\xcd\x9e\xa7\xa8\x86\x19\xa3\xaa\x17\x1d\xfa\x6d\xba\x43\x63\x04\x72\x0d\x3e\xd8\xeb\x8a\x6e\x6a\xfd\x0a\x69\xd4\x0c\x26\x61\xa2\x09\xaf\x58\xe8\x3d\x31\x79\xca\x7f\x18\x8d\x8c\xbe\x70\x14\xf0\x30\xf9\x61\x5c\xed\xa3\x72\x7e\x27\xd3\x6f\x3f\x9b\x5e\x5e\x9e\x7b\xb0\xc8\x8b\x92\x70\xf2\xbb\x4f\xc6\x6f\xde\x7e\x31\x7e\x3d\x7e\x7d\xf8\xe6\x6d\x1d\x98\xa7\x3c\x45\x9f\x08\x2d\x0f\x45\x72\x09\xcb\x4c\x25\xf9\x01\xfc\xe8\x54\xa4\x7f\x4b\x7f\x00\x3d\x67\x35\x0a\xae\x32\xa3\xd3\xc9\xb5\x3e\x32\xb7\xef\x26\xe7\x67\xb7\xe7\x97\x5f\x7f\x3d\xb9\xf0\x0b\x28\xed\x08\x07\x19\x9a\x22\xc0\x41\x02\x15\xcd\x37\x1c\xf3\x83\xe8\x9f\x8f\x4f\x4e\xce\xa6\xb3\x86\x39\xe1\x29\x3e\x3d\x7b\x77\xfc\xe1\x7c\x76\x76\x71\x3a\xbd\x9c\x5c\xcc\x66\x97\x9a\xe6\x1d\x9f\xcc\x26\x97\x17\x8d\x33\xc3\x6e\x9b\x01\x35\x99\x6e\xde\xea\x23\x56\x90\xa2\xd6\x29\x4c\xa6\xdf\xbe\xbd\xfe\x30\xd5\x04\x75\x17\xd6\xd9\xd1\x90\x38\x26\x07\x88\x12\x43\xb3\x72\xaa\x41\x05\x23\x9c\x5f\x7e\xad\x41\x3e\x3d\x9e\x7d\xa3\xc1\x02\xe7\x1d\x1d\x83\x70\x63\x01\x9e\x76\x67\x95\x84\x9d\x6e\x9b\xb1\xd3\xdf\x8e\x28\xb1\xff\x84\xaf\xcf\xbe\x3d\xbb\x9a\xcc\xfe\x74\xfd\xa7\x6b\x9c\xb3\xb9\x54\x70\xf3\x72\xdf\x4a\xb1\x90\xad\x2b\x49\xb7\x69\x24\x97\x1d\x6b\x71\x86\xda\x01\xc7\x14\x27\xd1\x19\xef\x66\xef\x9e\x26\x82\x8b\x65\x9f\xa5\x5f\x7b\xd7\x7b\x72\x75\x76\x76\xa1\xfb\xfa\x0e\x7b\xaa\xaf\xb8\xef\x72\xa0\xa7\xc6\x15\x7d\xe7\x9f\x68\xb9\xbb\x6f\xce\x8e\xcf\x67\xdf\x9c\x5d\xe8\x6b\xdb\x4c\xfe\xfc\x57\xb5\x6d\xc1\x96\x78\x18\xc2\x0a\x42\x4d\xa6\xd0\xfe\xa5\xff\xe1\xb8\xa0\x2d\x88\x58\x20\x4d\xea\x43\x8d\xba\x28\xb5\xee\xbc\x3c\xd5\xc7\x4a\x73\x3e\xfb\xab\xfd\x1d\xe3\xa9\x6a\xbc\x4a\x10\x67\x47\xe4\x93\xcf\x5f\x97\x52\xbd\x45\x7c\xc3\x04\x4b\xd3\x69\x22\xe7\xd5\x7a\x22\xec\xa1\x16\xab\x54\xe8\xf6\xaa\xbf\x8f\x08\x68\xf8\x1a\x44\x07\x6c\x31\x82\x1b\x32\xd2\x63\x56\xd6\x59\xd6\xc2\xbe\x79\x5d\x7e\x0d\xce\x2f\x34\x3a\x65\x11\xdd\x36\x36\x5a\x50\x1e\x65\x09\x9b\xad\x12\x96\xae\x64\x14\x1e\x91\xb7\x65\x70\xd1\x90\x37\xad\x74\xa5\x54\xfc\x35\xab\x57\x3f\x8d\x51\x10\xcc\xbf\xad\xbd\x97\x89\x3a\x22\xbf\x7b\xfd\xbb\xdf\x55\xdf\x68\x9a\x70\x44\x22\x19\xd0\xa8\x2e\x64\xb6\x2e\xb7\xb7\x52\x22\xe2\xf3\xc3\xb5\x0c\x33\x4f\x6e\x0b\x3c\x9b\x11\x9f\x8f\x1a\x1a\xe8\x15\x5d\x8a\x68\xeb\xcb\x61\x5b\x1e\x25\xc9\xc4\xe1\x03\xde\x80\x71\x24\x83\x3b\xff\x50\xa6\xc5\xc8\xd7\xa2\x18\x0b\xe9\x48\xcb\x60\x1b\x9a\xc0\x80\xd6\x72\xeb\x1b\x6a\x43\x93\x51\x92\x89\x91\xbf\xcd\x8e\x83\x69\x18\x76\x0d\xa6\xc1\xf8\xa8\xc1\xb0\x0b\x14\xc4\xd3\xad\xa8\x45\xa8\xfb\x56\xae\x2f\x0e\x5d\xd6\xc2\x25\x5f\x60\x29\x34\x2b\xdb\x1e\x90\x7b\x06\x0c\xab\x91\x81\x81\xfc\x40\xbc\x53\x66\x62\x2e\x75\x4b\x4d\x48\xd1\xd8\xa0\xd9\xee\xc3\x74\x9b\x1e\x2e\xd2\xc3\x79\xbc\xd0\xfc\xd3\x3d\x33\xad\x31\x83\x43\x75\x38\xc8\x2a\xa3\x48\xc8\x13\xb0\xe8\x55\x8b\x90\xd8\xc5\xa5\xdb\x74\x51\x3b\x5c\xee\xba\xcc\xa0\x75\xb1\xff\x2b\x8e\x7d\x63\x5a\x90\x35\xa3\x02\x83\x08\x21\xeb\x41\x3e\xb9\xee\xa5\x70\x85\x6c\x6d\x9c\xc8\x98\x2e\x35\x7b\x6d\xfc\x46\x2a\xba\x0d\x3b\xae\xc9\x41\x06\x3c\x1b\x4f\xc9\x9d\x90\xf7\xc2\x05\x1d\x55\xa5\xc1\x22\xbd\xc7\x5b\x4c\x6b\x57\x9e\x72\x40\x05\xa8\x1f\x30\x87\x59\x6d\x24\x04\x82\x99\x14\xd8\xd1\x4b\x9f\xbb\x5a\x98\x8a\x51\x27\xc9\x44\x9a\x3b\xc4\x64\xa9\x8d\xd3\x45\xb3\x3a\x94\xca\x18\xad\x97\xe8\xa8\xc1\x44\xe8\x76\x04\xf4\x2b\xd2\x48\x07\xa2\x7b\xeb\x75\x35\x46\x8e\x12\xa4\x70\x72\x29\x26\xed\x18\x76\xb4\x48\x67\x3c\xb0\x6a\x6a\xb6\xc2\xbe\x43\x8c\x81\x47\xa3\x7e\xd3\x5f\x08\x79\x6c\xf6\x46\x23\x1e\x8f\xd6\x34\xfd\x8b\xfd\xb3\x32\xff\x9b\x3d\xf2\xfd\xd3\x10\xc2\xba\x2e\xc6\x2e\x73\x7a\x79\xfa\x6c\x3a\x79\x6b\xc0\x1f\x8b\x9a\xa8\x5f\x1d\xfe\x7a\x7a\x7c\xf2\xfc\x73\x00\xef\x8b\x06\x26\xe5\xfc\xf8\xe2\xe2\xec\xfc\xf4\x76\xf2\x6e\xc7\x99\x3c\xb5\x51\x46\x37\xba\xe5\x8b\x1e\x33\x9d\xde\xbe\x3f\xbe\xfe\xef\x7f\xe2\x5c\xf5\xd9\xcd\x58\x42\xcb\x8c\x4c\x8b\x86\xb9\x3f\xd5\xec\xa2\x99\x2d\x74\x65\x54\x76\x25\x1b\x05\x8b\xca\x0a\xdc\x59\x30\x15\x94\xdc\x1c\x73\x34\x8c\xab\x28\x6b\xa2\xad\x3f\x3d\x9a\x0a\xeb\x38\xa3\x81\x9b\xd0\x88\x14\x86\xab\x5c\xd8\x16\x1e\x65\xd4\x49\xc9\xdb\x3b\x6d\xe2\x12\x46\x9d\x44\xbb\xbb\x5f\x1f\x43\x30\xea\xd8\xb0\xf6\x5e\xdb\x8f\x02\xfa\x18\xbd\xe3\x11\xbb\x4c\x4e\x4a\xfe\xb0\x2d\x44\xb6\x7d\x40\x2f\xc9\xc5\x71\x4e\x2d\x39\xaf\x0f\x56\x1c\x00\x73\x58\xbc\xa6\x19\xef\xa1\xcb\x2f\xde\x91\xef\x98\xfb\x2f\x5b\x11\x20\x64\x0d\xcc\x27\x17\x3e\x6b\x50\x83\x4d\xad\x1d\x02\x5e\x4b\xdd\xa8\xdd\xac\xd6\xde\x63\x83\xb9\xae\x58\x85\x51\xed\x35\x5b\xce\x3c\xe7\xdf\xcf\x19\x36\x4c\xa4\x73\x03\x49\xfd\x82\x78\x98\xc9\x3a\xdc\xeb\xe6\x40\xdf\xc6\xb7\x9a\xcd\x76\x9d\xf2\x8f\x3f\x8e\x34\x97\x67\xcd\x78\x53\x70\x6a\x3c\xe5\x65\xbf\xb1\x62\x3d\x85\xc1\x2f\x6f\x89\xfe\x62\x23\xc2\xa2\x94\x35\x7c\x75\x98\xa5\x70\x9d\xb5\x14\xeb\xb8\x10\xc1\x3f\x23\xa6\x46\xc6\x95\xf2\x10\x71\xe1\x21\x34\xcb\x01\xf6\xff\x66\x61\x6a\x46\x30\xde\x69\xe0\xef\xd9\xe5\x56\xe5\xba\x4d\x16\xae\xb0\x55\x67\xd3\xc7\xf8\x51\xee\xea\x77\x5a\x0d\x3c\xcd\x7d\x50\xaf\x19\xf3\xb9\xcd\x97\x5c\xfe\x0f\xeb\x61\xab\x5e\x87\x50\xe3\x36\xea\xe4\x3f\xdc\x25\x68\xf7\x31\x4e\xa3\x4d\x81\xb9\xd6\x2f\x12\x95\xef\xa5\xb4\x16\xd4\x14\xad\x84\x92\x07\x14\xb2\x34\x45\x0c\xd4\xb4\x1b\x86\x97\xc0\x66\x5e\x48\x58\x1c\xf1\x80\xa6\xe0\xba\xb9\xab\x4b\x6a\xe3\x22\xd3\xc2\x3d\xb5\xb8\x14\x57\xac\x08\x7e\xe8\xf2\x0c\xed\x04\x23\x21\x6d\xa0\x24\x1d\xce\xa5\x2d\xdd\x7e\x94\xbb\xa9\xbd\xe4\xb3\xc2\x8f\x93\x34\x79\x77\x3a\xfe\xb9\x6e\xf3\xdc\x39\xf7\x6d\xc3\x7d\x6f\xf2\x11\xf5\x2b\xff\x9c\xd6\xd6\x60\xd8\x98\xd3\x44\x12\xcc\x21\x15\x31\x05\xb5\x95\x32\xd1\xe4\x59\x5a\xf6\x48\x2d\xdc\xea\x07\xbf\xd4\xd2\x87\x2e\x2e\xc5\x36\x1f\xe3\xa3\xda\x7a\x17\x6a\x5e\xab\x8f\x75\xe5\xd4\xa3\x54\x92\x45\xf4\x72\xed\xcc\x0d\x65\x3e\xef\x4e\xaf\x23\xc8\xa8\xdf\x2d\x27\x65\x19\xbd\x68\xe0\x77\xc6\xa8\xb9\x28\x9c\xac\x24\xa4\x66\x07\x0b\xac\x7b\xde\x95\xd4\x47\xbc\x41\xc9\x63\x14\xf0\xb7\x27\x97\x17\xb3\xab\xcb\xf3\xf3\xb3\xab\x26\x4b\x45\x5d\xed\xbb\x93\x6b\x83\xe3\xd8\xe0\x34\x68\xd5\xdc\xee\xaa\xa3\xd6\x4c\x01\xe8\xa9\x57\x2c\xb8\x1b\x95\xd3\x5d\x14\xcd\x46\xc9\xf3\x13\xfc\x9d\xa9\xe2\xae\x2c\x00\x53\x41\x38\x4a\x35\xa1\x51\x96\xfc\xf7\xfc\x52\x6d\xe3\x15\xed\xfb\x89\x75\x38\x31\x3e\xa6\xf8\xd5\xde\xc1\xff\x45\x08\xd9\x43\xde\x7f\xf3\xe9\xf8\xcd\x6f\xc7\x6f\xf6\x8e\xc8\x9e\xee\x0a\x54\x4b\x64\x66\x7a\x28\x1c\x38\xf0\x77\xd3\xb8\xf7\x5c\x4d\xb8\x72\x29\xc4\xe6\xc4\x0a\x24\x84\xa7\x79\x1a\xe1\x7c\xa2\x58\xf4\x6c\x01\x5c\x2c\x0b\xcd\xb0\xae\x9d\xbc\x88\x2e\xb3\xfd\xd4\x37\xba\x39\x94\x29\x17\x74\x9a\xf6\x31\xff\xec\x05\xe6\x44\xd0\x93\x34\x26\x44\x54\x23\x02\xf8\x6f\x0d\xe2\xbb\xc5\xce\x5d\x93\x26\x32\x39\x90\xc3\x70\x41\x03\x86\x2b\xb4\x92\x3b\xe0\x7c\xd0\x6e\x42\x46\xef\xc0\x26\xf6\x86\x9f\x0a\xef\x3c\x1b\x1b\x0f\x0a\xd1\x88\x2d\x14\x99\x47\x54\xdc\x1d\xe4\x05\x3c\x9c\xfe\x79\x6a\x1d\x0f\x0a\x6d\xa4\xbe\xe9\xfb\x29\xf6\x60\xf1\x1f\x78\x1c\x41\xaf\x8e\x9e\x07\xc3\x3e\x50\x9f\x38\xb1\x5d\xda\x08\x90\x17\xe4\x3b\x93\x50\x59\x26\x90\x00\x59\x49\x47\xef\x52\x94\x54\x91\xc4\xa9\x0f\x89\x69\xe2\xd1\x2d\x01\x3b\xb1\x34\xd0\xf8\xbe\xc1\x14\x8a\x6e\xca\x36\x42\xd7\x45\x4a\x7f\xf7\x7e\xf6\x01\xd2\x18\xa5\x8e\x5c\xa2\x7f\xb3\x1c\x07\x5f\x10\xc1\xf0\xa7\xd7\x06\x8b\x5b\x17\x56\xb3\xb4\xf7\xb3\x0f\xb8\x1e\x43\xe2\x3c\xbc\x8a\xfb\xc5\x9b\xcf\x3e\x7f\x5d\x69\xdd\xec\x81\x6d\xc3\x95\x9b\x1c\xb1\xe1\x33\x20\x6b\x28\x3e\xbc\xb0\xe9\x71\x41\xab\xcf\x6d\xe6\xa2\xa2\x96\x45\xa6\xe4\x9a\x02\x51\x8a\xb6\x24\x96\x26\x0b\x18\x6e\x5a\xcd\x63\xfa\x88\xfc\x6d\x84\xc8\xf1\x47\x8b\x23\x6f\xf6\x40\xdf\xb9\x67\x5c\x7f\xb4\xb0\x3b\x32\x1f\x39\xf9\xf9\x6f\xf6\x02\x61\xef\x0b\xb6\x7d\x3d\xfe\x74\xfc\xa6\xd4\xc2\xc8\x5f\xfa\xf5\x9f\x0b\x0c\xfc\xa3\x8b\x8c\x6f\xf6\xc0\x39\x09\x3a\x30\x4a\x99\x72\x0d\x80\x9b\xbd\x48\x2e\x6f\x23\xb6\x61\x11\xb6\xfa\xee\xf8\xea\x62\x72\xf1\xb5\xb7\xd9\x82\x47\xec\x56\xcb\x86\xd8\x14\xd5\x3d\x72\x69\x10\x09\x88\xf7\x81\xe0\xe3\x48\x2e\x6b\x9f\xe7\x9e\x6c\xb7\xc5\x84\x5c\x2f\xbc\x4a\x73\xbd\x35\x05\x98\x6e\x6f\x7d\x7e\xe2\xb7\xb7\xb5\xcf\xd6\x2a\xd3\x5f\xdc\xde\x1a\x2f\xed\xdb\xdb\x4a\x03\x1e\xd3\xb5\x6e\xf1\x63\x95\x62\xb9\x80\xd2\x17\x7d\x04\x86\x47\x4f\xc1\x84\x9b\x3d\xd4\xc0\x63\xd3\x2c\x65\x53\x19\x9e\xf0\x30\x29\x1b\xa5\x7f\xaa\x8c\x8b\x8a\x8a\xce\x91\xef\xbe\x48\xdb\xfb\x71\x41\xe6\xed\xcb\xe4\xc6\xd2\x08\xd4\x01\x1d\xc6\x12\xdc\x5a\xa7\x0f\x0d\xb9\xd2\x28\xc5\x1f\xee\x80\x8d\x27\x29\x96\x89\x5a\xd3\xb8\x06\xfe\x54\x50\x80\x8b\xc6\x15\x95\x57\x01\x8d\x29\x64\x4e\xe2\x76\xea\xd0\xcb\x7b\x1a\xc7\x5c\x2c\x53\xfb\xd5\xae\x33\x99\x53\x11\xde\xf3\x50\x9f\xc8\xee\x01\x9d\xc6\xf5\xd1\xec\x3f\x8d\x49\xc5\xe0\x14\x1b\x41\xef\xc5\x29\x63\x02\x5a\x6c\x28\x6c\x63\x4c\x66\xd6\xe8\x94\xb3\xa8\x80\x17\x04\x53\x40\xd5\xc6\xff\x27\xd5\xd4\xef\x6f\x35\x8c\x70\x61\xef\xbf\xc5\xf5\xc8\xfe\x9e\x4c\x4e\xaf\x34\x62\x74\xee\xfc\x57\xc6\x66\x55\xde\x7d\x4c\xb3\x9f\x7f\x6e\x66\x6d\xda\x8e\xf5\x3b\x37\x62\xf0\xa7\x7c\x89\x5d\x1c\xc2\x5d\x18\x8e\x82\x24\x2c\x31\x3f\x4f\x9f\x00\x1b\xe9\x73\x2d\x09\xc2\x33\xe4\xa9\xfe\xea\xeb\x69\x29\x57\x1d\xbe\x2b\xb2\x55\x57\xdf\xd7\x73\x56\x37\xa4\x6a\x28\x32\x57\x57\x1b\xdc\x14\xf9\xab\xcd\xae\xde\x3c\x4f\xf2\xea\xea\xdc\xcb\x99\x6f\xcb\xc4\x10\xab\x47\x6c\xf5\x37\xc0\x73\x94\x05\xdb\x21\x79\xf5\x90\xbc\xda\xdd\x82\x21\x79\xf5\xaf\x96\xbc\xba\x7a\x89\xeb\x29\xac\xcb\xc5\x1b\xf4\x05\x2e\xd3\xa4\x72\xe7\x2d\xb9\xaa\x69\x7a\x01\xe5\xd2\x3c\x56\xde\xca\x85\xbe\xc6\x86\x36\x27\xbe\x15\x56\x8e\xaf\x4d\xc1\xb5\x5c\x7c\xa2\x86\xa5\xfe\xf3\x29\x36\xf1\x1a\x90\xdf\x7e\xf6\xf9\x9b\x4f\xbe\xdf\xaf\xbf\xc2\x74\x42\x50\xaa\xfc\xd3\x4f\xea\xaf\x5b\xeb\x98\xdb\x9d\xf7\x97\x39\x2d\xad\xe7\xa4\x68\x5a\xae\x59\x8f\xb0\x34\x27\xc8\xc2\x99\x62\x7a\x95\x6a\x3c\x9a\x01\x61\x32\xe7\x2a\xa1\xc9\xd6\xd4\x74\x82\xb0\x0d\x8a\xce\xa4\x18\x32\xb4\x53\xf6\x6e\xef\x34\xb7\xc5\xf6\xa7\x8a\x8a\x90\x26\xa1\x16\xf5\x22\x9a\x2c\x59\x75\xba\xbe\x4e\x09\x2c\x41\xdf\x34\x4f\x44\x07\x3e\x9d\x25\x62\x81\x3c\xf9\x5f\x79\x2a\xc2\x9a\x0a\x99\x45\x28\x9b\x9d\x5e\x63\x91\xca\xee\xe2\x94\xa8\xde\xea\x35\x85\x6f\x01\xcf\x41\x8e\xae\x39\x84\x05\xe3\xb9\x22\x37\x7b\x94\x1e\x09\x61\x0a\xf1\xe3\x1f\x47\xeb\xb5\xb7\x9c\xa0\x7d\xde\xc9\xa4\x80\x7a\xb1\x9a\x2c\x65\x4e\x77\xd8\xff\x81\x49\x7a\xab\x7f\xbf\xd9\xd3\x40\x6f\xee\xf6\x66\x0f\x3e\xa4\x09\x23\x6f\xde\x92\x39\x57\xe6\x22\x8d\x61\xc0\xea\xd6\x3a\xa3\xc1\x7c\x9b\xfb\xf5\xcd\xe4\x20\x1f\x4d\x84\x5a\x42\x5a\x9b\x81\x3f\xfd\xa4\x34\xf0\x77\xfa\x13\x6f\x59\x1d\x3b\x65\x58\x16\xd6\xa2\x3a\xbe\x26\x88\x12\x9a\x3a\x8f\x59\x32\x3a\xbe\xb6\x01\x33\xbc\x16\x6f\x5a\x3c\x31\xd4\xbb\x16\x47\xe4\x7f\xbf\xbc\xb9\x09\xff\xef\x57\x47\xf8\xbf\xff\xfa\x5b\xf9\x6f\xfb\xf3\x63\x4f\xd0\xa3\x2b\x8b\x46\x90\x58\x7c\x2a\x13\x1f\x32\x2b\x9d\xbb\xf3\xbc\xa5\x45\x94\x50\x53\x0d\xf7\x42\xe3\x96\x38\x91\x4a\x06\x32\xb2\xdc\x0b\x76\xed\x85\xcc\xa9\x2d\x33\xa5\x24\x79\xf3\xdb\x9a\x6b\x2c\x64\x4a\xe1\xeb\x6c\x7d\x44\xde\x7e\xfe\xf9\xa7\x9f\x7b\xde\x73\x81\xef\xdf\xec\x88\x48\x23\xb9\xbc\x66\x1b\x96\x70\xb5\xbd\x0e\x12\xc6\xaa\xbc\x5e\x6d\xd9\xfb\xe7\xd5\x2f\xec\xf2\x23\xb9\x24\xa9\x79\x43\xe8\x5c\x6e\xac\xda\x3c\x92\x4b\x6f\x81\x28\xa8\x83\xcb\x44\x9e\xe2\x36\x55\xa1\xcc\x94\x43\x4e\xc8\xe4\xe2\xdd\xa5\x8f\x74\xb4\x6d\xbf\x26\x49\x33\x79\x21\x43\xf6\x9e\xa5\xab\x33\x08\x1e\xf3\x95\xa6\x2d\xaf\xea\xc2\xf7\x15\x49\x99\x2a\x2a\x98\x2d\x32\x63\x8d\xc2\xf8\x86\xba\xbb\xb6\x7e\xf4\xc6\xaf\x21\x6f\x5c\x6a\x02\xd7\x42\x77\x41\x5a\x0a\x6d\x5e\xd0\x5c\xca\x88\xd1\x1a\x4f\x1c\x27\x6c\xc1\x1f\x8e\xdd\x9c\xb2\x9d\x54\x6f\xea\xf9\xa6\xa0\x2c\xe0\x74\x01\x2d\xca\xa9\x6a\x7d\x2b\x6a\x63\x37\xc8\x0e\x75\xaa\xea\x13\x2a\x14\xcc\x69\x79\x1a\x0e\x85\xf2\x23\x00\x1b\x2f\x59\x94\x7c\xf3\x04\x67\x5a\xe0\x75\x10\xbb\x80\x87\xcd\xf5\xb1\xcb\x24\x7a\x72\x7a\x05\x43\xe3\xb1\x2e\x7a\x76\x6b\xbc\xda\x75\x34\x97\x68\xee\xa6\x7e\xed\xdc\x8d\x6f\x66\x0e\x8f\x63\xbc\x6c\x2d\x97\xc3\x38\x1c\xde\x82\xbc\x00\xeb\xd2\x8c\xf8\xad\xff\x2e\xca\x72\x50\xc3\xf7\x66\x4f\xb3\xa5\xe9\xd8\x19\x05\xa9\x6a\x2f\x76\x84\xa0\x54\xd7\x49\x95\x5b\x88\x6f\x3b\x99\x6a\xa7\xca\xed\xc4\xb7\xb9\xe7\x2e\xaa\xdc\x49\x7c\xdb\x26\xdd\x41\x95\x3b\x69\x6f\xaf\xbe\xfb\x13\xe5\xae\x1a\xf5\x7d\x8a\x89\x77\xd4\xa4\x7f\x34\x41\x36\x46\x1d\xa3\x4b\x99\x4c\x3b\x31\xdf\x75\xf5\x03\x00\x06\xe4\x8a\xd1\xf7\x17\x53\xd9\xa2\xe8\x8a\xf7\xb8\xa5\x44\xbc\x31\x4b\x13\xdb\x8b\x71\x15\x07\x39\x75\x51\x60\x9f\xbc\x5c\x24\x56\x04\xb4\x28\x00\xeb\xfe\xf9\xfa\xc5\x49\xe4\x29\xeb\xc0\x15\x41\x6c\x4b\xc3\x99\x20\x52\xb5\x62\xeb\xc7\x23\xdd\x2a\x2c\xbe\xd2\xe3\x3a\x92\xbd\xe3\xdd\x63\xea\xd0\xe6\x4d\xfd\xfb\x5c\x80\xf0\x19\x90\xed\xb3\x31\x75\x66\x87\xcf\x1e\x50\x0d\xd4\xff\x10\x39\x5f\xf8\x4f\x91\x4c\x9c\xa8\x51\xdf\x9c\x4d\x47\xc4\xf6\xa4\xf7\x76\xec\x26\x3d\xa8\x36\xc8\x63\x99\xc1\x05\xcb\x5f\xdf\xbd\x20\x32\xa6\xe0\xe5\x16\xcb\xf8\xe0\x91\x31\xe5\xa0\xb1\xe8\x24\x4e\xf4\xa3\x4f\x50\x31\xbb\xce\x23\xe4\xdf\x5d\x67\xfd\xff\x96\x87\xe8\xdf\xab\x64\x96\x51\xdd\x3f\xbf\x06\x1f\x72\x15\x3f\x8f\xe2\x7e\xca\xac\xb4\x52\xd2\xd7\xeb\x9f\xbd\x6a\x7a\x27\x6d\x72\x49\x3b\x1f\x9b\x7e\x9e\x4b\x29\x3f\x68\xcf\x07\xed\xb9\xbb\x05\x83\xf6\xfc\xd7\xd4\x9e\x6b\x74\xd0\xaf\xee\xa3\x69\xfc\x88\x2a\x8f\x7d\x35\xe7\xb3\x15\x2b\xd8\x75\xab\xb1\xd7\xe8\xc7\x43\xe6\x3e\x46\xf9\x7d\xc7\x58\x7c\x99\xf0\x25\x17\x34\xba\x60\x0f\xea\x1b\x59\x8d\x23\xa9\x4d\xed\x32\xb6\x4e\x31\xfa\x63\x98\x98\x34\x3d\x10\xc1\x1e\xd4\x4a\xc6\xa6\xd0\x3c\x54\xb7\x43\x65\x76\x97\xce\x06\x60\x4a\x34\x50\xf5\x19\x57\x70\x49\xac\xe3\x90\x2b\xdb\xc3\x8e\x80\x1f\x34\x0b\xf5\x27\xbe\x7e\x75\x2f\x69\xae\x5d\xc9\x90\x79\xd6\x12\x0f\x7b\x50\x44\xcf\x4e\xcf\xfb\x4b\x2d\x15\x89\x54\x31\x1a\x6a\xf0\x3a\x6f\x53\x16\x2d\xbe\xbc\xd9\x7b\x69\x6c\x15\xaf\x7c\x43\x98\xc2\xeb\xb9\x4b\xeb\x3c\xa1\x22\x58\xd9\x7d\xba\xd0\x43\x4b\x2d\xec\xce\x79\x12\x8e\x83\xc5\xd2\xab\x29\x6e\x55\xd4\xe8\xe9\xf7\x39\x24\x79\xc2\xa5\x3c\xc5\x90\xc5\x2f\x46\x8e\x30\xc9\xa7\xd1\xd3\x1e\x42\x6c\xbd\x0b\x4a\x89\xd2\x52\xaa\x42\x6b\x0c\x56\xd8\x87\xdd\x98\x18\x6a\xc1\xd1\xf3\x2b\x65\xca\x94\x65\x92\x25\xa7\xf4\x86\x4e\x1d\xb9\xc6\xf8\xb6\xf1\x14\x35\x9a\x0c\x6a\x1d\xe9\x8f\xd3\xc2\x37\xdb\x02\xb6\x48\x8e\xed\x07\x5a\xb3\xba\xce\xe3\x24\xef\x85\x5d\x9e\x2d\xd9\xea\x7f\x70\x7c\x08\x41\x36\x44\x0e\x62\x16\x72\x48\x70\xb1\x1c\x13\xa8\xe8\xee\x65\x05\x0d\x88\x00\x3c\xf9\x19\xc0\x6b\x60\xed\x09\x50\xa6\x7d\xc7\x25\xc5\x34\x4d\xef\x65\xd2\xa9\x74\xbc\x34\xc9\xd2\x10\xb6\xe6\xa3\x7c\x6d\x66\xfe\x29\x59\x32\x01\x55\xdd\xf3\x4d\x6e\xd0\x3b\xb6\x61\x37\xd2\xcd\x57\xa3\xdf\x6b\x4b\x24\xa8\x77\x33\x34\xc9\xbc\x63\x5b\xe0\x3c\x4c\x17\xf6\x3c\xc0\x21\x8e\x65\xb8\x9f\x16\x8e\x9d\x0d\x2a\x88\x4e\x96\x1f\x23\x4c\x9b\x35\x14\xb5\x2b\x66\xe6\x84\xa8\x07\x66\xa5\xa4\x39\xba\x40\x78\xc7\x84\xbc\xc7\x2d\x6e\xee\x94\x10\xaa\xf9\x00\x1e\xda\x2e\xee\x98\xef\x28\xd8\xa7\x8f\x96\xa4\xd5\xb2\x56\xd3\x49\x3b\x79\x6e\x13\xb6\x60\x09\x13\xca\x4b\xd4\xdb\xd2\x3d\xcb\x8d\x96\xe0\xd8\xfd\xa1\x29\x33\x35\xd2\x52\xe2\x08\x69\x6d\x7a\x08\x1b\x73\xf8\xa2\x43\x27\x48\xc8\xec\xf2\xf4\xf2\x88\x1c\x87\x21\x91\xa0\x4e\xcc\x52\xb6\xc8\x22\xbc\x2b\xe9\xd8\x61\x76\x0f\x80\xd7\x3a\x20\x19\x0f\xff\x1f\x8f\x9e\x7b\x17\x58\xe5\xb9\x04\x7b\xc2\xeb\x1a\xd0\xd6\x36\xd7\xd7\x6b\xb0\x5d\xe3\xc6\xc9\x04\x2c\xa2\xfa\x50\xac\xbb\x77\xdd\xa8\x3e\xbb\x66\xdf\x40\x04\xf0\xb1\x85\x68\x1a\x26\x0f\xb1\x24\xfe\x57\x7d\x04\x54\xff\x5b\x8d\x31\x26\xd3\x3e\x04\xc8\x49\xe2\xe6\xb0\x29\x64\x21\x8d\x16\x68\xbe\x05\x39\xc2\xe2\xa7\x58\x26\x5e\x02\x64\xdc\x01\x94\xc4\xcf\xf5\xc9\x02\xda\x03\x86\x30\x91\x3b\x11\x80\x7d\xf8\xc0\x6a\x80\x0b\x5d\xf9\xcd\xde\x9f\xd1\xe3\x7a\x32\xdd\xbc\x45\xa7\xeb\xef\x8f\x60\x2c\xaf\xcd\x13\x14\xc6\xf9\x07\x9f\xe1\x07\x47\xf8\x03\x7c\x05\x3f\xa0\x66\x16\xb2\xc8\xc1\x5c\x4a\x8b\x70\x26\x65\xe9\xa2\x97\xc9\x01\x27\x00\x43\x43\x00\x58\x22\x24\xb9\x5b\x04\xd6\xec\x4e\x91\x03\x32\x2e\x74\x80\xeb\x20\x7b\x6b\x61\x16\xf4\x23\x59\x40\x8f\x55\xb7\x0f\x43\x68\xef\x99\xe1\x7c\xa8\xc2\xe9\x1a\xc8\xee\x4a\x7f\x34\x4f\xfc\x58\x92\x9a\xb0\xb5\x54\x39\x65\x2d\xed\x2c\x10\xd2\x46\x0a\xe4\x12\xd2\x29\x9c\xc4\x32\xd8\x10\x57\x54\x08\x2b\x9a\xdc\xcb\x49\x56\xcb\x0b\xd1\x9c\xd1\x9c\xa9\x7b\x66\x9c\xec\xc1\x4f\xd7\x56\xe8\x0b\x0b\xbe\xd2\x9d\x37\x24\x7b\xc9\x19\x50\xff\x0e\x9b\x3c\x83\x66\x04\xbe\x20\x73\xa9\x56\x5a\x14\x4b\x91\x87\xd0\xbc\xc0\x57\x5f\x4f\x35\x52\x19\xeb\xa6\xc7\xe6\xbe\x14\xcc\x51\xd3\xc9\xc1\xbe\xdf\xf6\xef\xfb\x6d\xad\xef\x31\xd1\xd7\xd4\x37\x80\x59\x66\xe1\x8b\x13\x48\xf0\x44\xb1\xb2\xa4\x03\x86\xfd\xb4\x34\x90\xdd\x08\xef\xbc\xcd\xe6\x63\xe1\x36\xb7\x14\x2e\x9c\xc5\xe2\xba\xec\x74\x12\x07\x9d\x99\x47\x67\x56\xae\x4e\xf7\x1c\xaa\x33\x3d\xc2\x31\x8e\xb0\xad\x29\xd0\xdc\x97\x1e\x35\x9a\xaf\x76\x9e\xa3\x4d\x73\x5e\x6f\x07\x9d\xda\xa0\x53\x1b\x74\x6a\xff\x79\x3a\x35\x17\x43\xf4\xd4\xac\xd5\x31\x4e\xf1\xec\xae\x6e\x6b\x30\xef\xb4\x71\x3c\x58\x6e\xbf\x53\xe0\x3e\xc5\x66\x84\x8b\x10\xf2\xed\x1b\xd5\x01\x9c\x1c\xc0\x6d\xc4\x22\x37\x7d\x6e\xe7\x0c\x32\x90\xe3\x37\x5e\xb9\x0f\x42\x27\x51\x5f\xe0\x9e\x73\xac\x09\xeb\x14\x0f\x47\xce\x50\x46\x21\x08\xe8\x11\xa3\xa9\x19\xda\xd7\xe9\x9a\xa7\x8a\xde\x31\x11\x6d\x89\x4a\x98\x9d\x1e\x8e\x42\x8b\x51\x1e\xa1\x66\xd9\x11\xa8\x90\x51\x7a\xa7\x6f\x1a\x84\x9e\x11\x6c\x69\xf5\x37\x03\xd8\xea\xcf\xbe\x80\x68\x4f\x6e\xeb\x81\xb7\xf0\x84\xd3\xd6\xeb\xc0\x3e\x03\x7f\x61\x3d\x04\x8a\x51\xaa\x4c\x46\xbd\x45\x9d\xd3\x68\xac\x59\x5b\x70\x1b\xf5\x26\xcf\xc9\x72\x94\xfd\xa9\x6a\x2b\xa8\x44\xd7\x18\x47\x8d\x5c\x97\x5c\x2d\xa0\x8d\xcf\xc0\xc6\x0c\x6c\x8c\xbb\x05\x03\x1b\xf3\xab\xb1\x31\xf5\x1b\xdc\x16\x5a\x83\x9f\xce\x3d\x44\xb0\xd9\xb0\xd1\xc6\xc1\x00\x0a\xf5\xdf\xf1\xfa\x4c\xdd\xc6\xd6\x97\xda\x5c\x72\x3d\x37\x63\x12\x32\x9c\x4a\x3e\x9b\x06\x15\x4c\x92\x09\xe1\xd5\xa9\xb6\x51\x7a\xd3\xe5\xd7\x1f\x26\xa7\x9d\xb3\x2d\x9a\xda\xb9\xc2\xbf\x8d\x1a\xb1\x71\x72\x3d\x86\x9f\xe9\x26\xfd\x86\xd7\x4d\xed\xa6\x19\xb4\x08\x45\x3b\x3e\x66\x16\x79\xc4\xfa\x15\xa3\xa1\xcf\xd6\x50\x66\x25\x4b\xad\xf3\xac\x19\xa6\xb6\x63\xca\x97\x02\xb8\x64\xa1\x8a\x7e\xc9\x9a\x2f\x2b\xf5\xbe\x4b\x73\x93\xf0\x19\x8d\x4c\x24\x4d\x2c\x05\xf8\x57\xa5\x59\xb0\xd2\x8c\x1f\xe6\xae\x47\x7d\x4c\xae\x45\xbd\xa7\x5c\xdf\xf2\x85\x6c\x50\x73\x05\x01\x4b\xf3\x0c\x14\x4d\xd5\x65\x48\x97\x4a\x1b\x2a\xa4\x89\xce\x88\x88\x6f\xb1\x19\x09\x59\x10\xd1\x84\xa5\xc6\xbf\xd2\x7c\xed\x9c\x65\xc7\x5d\x1a\x92\x8a\x0d\x5a\xa5\x8f\xe4\xfc\x20\x4b\xfc\xb3\x47\x53\xc3\x09\x6c\x8d\xa7\xae\xb7\xa8\x73\x7e\x9e\xb9\x56\x39\xbf\x7a\x93\x5f\x8d\xf3\xc3\x5b\xb6\x53\x60\x35\x7c\x32\x70\x7d\x03\xd7\x37\x70\x7d\xff\x6c\xae\xaf\x8e\x7f\xba\x02\xaa\xf1\xbe\x3f\x36\xa4\x3a\x8a\xe4\xfd\x64\x3a\x99\x4e\x29\x24\xac\x7d\x97\xc8\xf5\x77\xb6\xbc\x72\x77\x9c\x75\xdb\xd7\x36\xd7\x5c\x11\x7e\x06\x33\xf5\x11\x79\x13\x74\x10\x12\x4a\x92\x0c\xab\x1a\x84\x89\x8c\x89\xee\x9a\x30\x11\xd0\x38\xc5\x9c\x45\x79\x76\x28\x0c\x7e\xb0\x43\xf9\xfa\x2c\x22\xd6\x20\x9f\xf6\xce\x21\x6b\x00\x99\x6f\xff\x78\x7e\x7c\xf1\x78\xd0\x34\x7e\xfe\x04\xb0\x81\xbe\xff\x69\xc0\xb9\x4f\xaf\x93\xe0\x34\x55\x27\x2b\x16\xdc\x75\x02\xe3\x9a\x29\x82\xf8\x65\xe4\xe4\xf4\x1a\x41\x3e\x3e\x22\x05\x39\xfe\xee\x9a\x9c\x9d\x7c\x92\xfb\x8b\xa5\x63\x72\x6c\xf8\x19\xdf\xec\x37\xe5\x78\x69\x0c\x16\xb8\xd9\x3b\x95\x17\x52\xad\xa0\xc0\xd0\x01\xb9\xd9\x33\x11\x90\x36\x4e\xcb\x94\xca\x0a\x6f\xf6\x3a\xa2\xfd\xf3\x6e\x7c\x50\x61\x22\xf3\xa5\xa1\x1f\x15\x5f\xf9\x5e\xe2\x54\xbc\x9f\xe1\xac\x76\xe3\xf3\xe7\xf1\xe2\x44\x0a\xc1\x02\x35\xe3\x6b\x76\x2e\x69\xf8\x15\x8d\xa8\x08\xb8\x58\xf6\x0d\x16\xfd\x6a\xfa\xae\xa3\x0b\x74\xa3\xe4\x82\xe4\xf5\x47\x7c\xc0\xf2\x9f\xe3\x72\x8d\xf2\x00\x07\xd2\x3b\x0e\xd5\xe3\xf5\xa9\x24\x73\x18\x8e\x25\xcd\x76\x62\xf3\x99\xe7\x1b\x90\x12\x8d\xa2\x36\xb7\xfa\x43\xae\xbb\x52\x65\x14\x5f\xa7\x49\xb5\xc6\xaa\xad\x07\x6a\x72\x0e\x10\xbe\x8e\x13\xb9\x31\x2c\x4b\xcc\x12\x10\xbe\x45\x00\x47\x2c\x96\xe1\x48\xc9\x51\x5b\xb4\x55\xbe\xd4\x14\x17\x86\x31\x30\x09\xa3\x29\xfa\xae\xda\xb2\x61\x1c\x4c\xd2\x0b\xa8\x97\x3f\xcf\x30\xff\x42\x9c\x25\xb1\x4c\xf5\xe1\x6f\x3f\xa0\x8f\x8a\xc0\x9d\xc7\x0b\x2d\xf0\x4d\x16\x34\x60\x53\x13\xc1\xde\x71\x48\xbe\x9a\xbe\xab\x7e\x82\xfc\x44\xc2\x80\xcb\x25\xec\x41\x33\x04\xc0\xe8\x61\x31\x61\x73\x18\xbc\x68\x0c\x04\xa9\x3c\xbf\xa0\x15\x06\x0d\x1f\x47\x95\xd2\xfb\xa2\x8f\x5a\x5e\xd4\x16\xd2\xdf\x11\x99\x84\xe0\x9f\xe3\x85\x36\x55\xc1\xca\x49\x18\x78\x98\xb3\x1f\x36\x29\xa0\x31\x70\x08\xc6\xc2\x14\xf3\x0c\xc2\x17\x6e\xa6\x43\xbf\x24\xab\x97\x63\x23\xe2\x0c\x22\x2d\xd0\x6b\x24\xef\x53\xac\x6e\x5c\x89\x7e\xeb\xd1\xe9\x8a\x8a\x50\xef\xbf\x08\xe4\x1a\x38\xb0\x22\xdd\xa1\x90\x21\x8b\x65\xa2\x52\xe3\x16\x62\x0e\x26\x2c\x4a\x66\x2a\xe5\xfe\x78\x6d\x57\xbf\x43\xc8\x24\x17\xac\x35\x1f\x55\xac\x37\x5f\x85\xb3\x05\x2f\xb3\x34\xa3\x51\xe4\xf5\xe2\xd2\x92\x48\x08\x6a\xa0\xf1\x78\xfc\x6a\x47\x53\x8d\x3e\x6c\x78\xd0\x3f\x08\xa7\x8a\x4b\x0f\xa4\xe4\xf9\x0c\x8a\x03\x99\x40\xf4\x03\x7b\x6c\x98\x29\x1a\x7e\xa7\xef\x71\x34\xce\x9c\xf6\xb7\xf3\x78\x71\x6b\x73\x6b\xfa\x96\x96\x6e\xd3\x40\x45\xee\x6d\x74\x3f\x07\xff\x25\xb9\xd0\x67\xd1\x1e\x1f\x26\x52\xe3\x05\x4e\x55\xa9\xad\xaf\xf7\x2c\x35\x19\xc8\x35\xfc\x51\x7b\x61\x4e\xd2\xfe\x7e\x8a\xc8\x94\xc6\xb8\xc5\xa6\x11\x17\xa9\x96\x61\x20\x67\x0b\x91\xf7\x5e\x77\xbc\xfa\xcd\xd0\xbb\xc8\x4c\xc8\x5c\x31\xc0\x47\x47\xea\xcf\xe3\xc5\x0e\x34\xe4\xcc\x6e\x4b\xb1\x45\x66\x87\x80\x6d\xb1\x4e\xf0\x7a\xf6\x9a\x47\x8e\x23\x2a\xfc\x0e\xb4\x1f\xcb\x90\xe8\x69\x9b\xf8\x3c\x13\xef\xf7\xbe\x87\x27\x3b\x2c\xa1\xfe\x59\x89\xea\x15\x24\x6e\x25\xef\x5d\x04\xef\x5b\x86\x7b\x57\x4b\x66\x16\x70\xdd\x35\x17\xfa\xa5\x71\x2b\xb6\x37\xdd\x89\x99\xf5\x7a\xfd\xd3\x84\x69\x4a\x71\x4f\x93\x10\xb3\xda\x1a\x0f\xa9\x9c\xc3\xd3\xd7\x7e\x01\x8e\x79\x50\x0f\x72\x96\x41\x89\xa7\x3d\xf4\xc8\x9b\x4b\xe5\xf5\x4c\x33\x62\x17\x16\x0b\x67\x69\x2c\x45\x5a\x24\x5f\xe5\x29\x51\xd0\x0b\x0e\x58\x71\xcb\x82\xf1\xbc\x37\xcb\x4e\xe1\xf4\xfa\x4a\x33\x61\xf8\x1d\x8e\xe3\xeb\x7a\x9e\x29\xd3\xa6\x3c\x7e\x83\x66\x38\x2d\xaa\x93\x45\x5b\xaf\xc3\x98\x9e\x99\xb0\xe3\x9b\xfd\x2b\x9a\x78\xf1\x1c\xb8\xe1\xc5\x31\xa3\x98\x11\xdb\x1e\xd9\xc9\xd4\xca\x57\x5c\x2c\xb1\x56\xb0\x0c\xd9\x97\x56\x63\x01\xcc\x47\x4a\xa8\xaf\xcb\x98\x25\x6b\x9e\xa6\x7c\xc3\xc8\xf9\x27\x0e\x29\x2a\xce\x38\xee\xd0\xae\x69\x41\xe6\xf1\x42\x33\x2e\xd3\x44\x3e\x6c\xcf\x8c\x7c\x7d\x1d\xe9\x23\xd5\xf3\xc6\x7e\x35\x7d\xd7\xde\x81\xff\xe0\xfb\xc9\xb9\xc3\xee\xed\xa7\x84\xad\xe7\x2c\xd4\xc7\x13\xb2\x1e\xc7\x7a\x04\xa3\x92\x4c\x49\x79\x28\x93\xf5\x77\x57\x05\xae\xbb\xf8\x89\xa9\x18\x7d\xa2\x1b\x66\xf1\x0e\xf8\xaa\xa3\x8b\x12\x1e\x43\x58\xf8\x16\x8f\xe0\x71\xf0\x5c\x9c\x48\x54\x03\x47\x5b\x12\xe8\x1e\x49\x86\x11\x4a\x59\x9c\xaa\x84\xd1\xb5\xcb\x71\x16\x10\xda\xdf\xf7\xbb\xa1\xda\x82\xd8\xc1\x4a\x8b\xfc\x63\x42\xae\x91\xa2\x9b\x78\xea\x62\x86\x0b\x17\xdc\xc6\xc5\xd1\x98\x4f\x9e\x8b\x89\xcc\x21\xf8\x9e\x8b\xeb\xad\x08\xb0\xde\xf7\x4e\xb0\x2f\x7d\x79\xd0\x80\x6c\x6b\xe5\x09\x0d\xe8\x31\x4b\x10\x01\xa1\xc0\x3a\xd5\xa2\xaa\x28\x57\xf9\xe5\x94\xa6\xd0\x6d\xee\x3b\x47\xd4\xd7\x6d\x01\xc6\x31\x21\xe7\xf2\x9e\x25\x56\xc9\xb2\xd4\xd7\x38\x61\x61\x16\x60\x32\x9d\x51\x16\x83\x4e\x51\x04\xba\xe9\x37\x7c\xb9\xca\xdb\xfa\xb1\xac\xfe\xd2\xea\x64\xa7\x1f\x48\x96\xd2\x25\x23\xf3\x2d\x99\x6b\xd6\x4c\x73\x80\x59\x4c\xd6\x32\x41\x74\x5e\xc2\x12\x6f\xd2\x47\x60\x88\x73\xb9\x3c\x67\x1b\xe6\x0b\x39\xa8\xed\x88\x6d\x5b\x82\x3a\x24\x41\x82\xec\xca\x79\xc6\x3e\x87\xf7\x68\xc0\x05\xb9\xa0\x58\xc0\x7e\x8d\xe8\xf8\xd2\x4a\xe7\x97\x8b\x05\xca\xe5\x13\xb1\x90\xfa\x5f\x28\x95\x6b\xe9\x47\x8b\xe4\x4d\x52\x60\x24\x97\x98\xb8\x80\x61\xcd\x45\xbb\xc9\x7a\x30\x95\xd0\x80\x91\x98\xc7\xec\xc0\xda\x89\x34\x37\x07\x1c\x11\x0a\x9e\x50\x12\xc0\xd7\xed\xcd\x9e\x0a\xa0\x8e\x80\x86\x19\xca\x60\x25\xc5\x00\xb9\x5c\x2c\xbe\x1f\xef\x08\x7e\xb8\xaf\x13\xe0\xe6\x7a\x71\x1f\x27\xe5\xf6\x4d\xc2\xf4\x4a\xca\x3b\x97\xdb\x6d\x40\x1b\x4a\xc6\x23\xdc\xb7\x0a\x02\xd1\xa7\x0d\x79\x4c\x7d\xdc\x8c\x1a\xc9\x98\x62\x95\x8c\xcd\x36\x7b\x05\x2c\xfd\xbd\xde\xa8\xf9\x16\x68\xa4\x08\xeb\x3d\xcc\xa5\x52\x72\x3d\xb6\x5c\xac\xb1\xa8\xa6\x74\x91\xa7\x5d\xf4\x72\x0a\x5c\xcb\xd4\x5c\x91\x38\x61\x1b\x30\x12\x16\x3c\xb2\xee\xdd\x88\x3d\xe8\xc0\x36\xdf\xc6\x34\x4d\x4d\xca\x92\xad\xcc\x48\x7a\xcf\x95\xdf\xdf\x5e\x49\x33\x51\x83\x4f\xe6\xa6\x48\x4b\x6e\x7b\xc6\xe0\x1f\x1c\xc2\x46\xfd\x21\x94\xd0\x74\xd9\x64\x83\x8c\x31\x90\x71\xbe\x85\x02\xf9\xa8\x3b\x4f\x64\xb6\x5c\xd9\x03\x69\xa4\x45\xe8\xf9\x00\x87\xb9\x37\x19\x54\x7c\x7d\x9a\xe6\x98\x65\x3b\x4f\xd5\x5e\xac\xb4\x38\x89\x08\xd8\x5d\x51\x41\x7e\x11\xb1\xbc\xd7\xce\xde\x88\xf3\x6c\x69\x64\xb1\x73\xb9\x3c\x4d\x24\x24\xbd\x6e\xec\xa5\x81\x5e\x40\x37\xef\xd9\x5a\x26\xdb\x69\x22\x17\x3c\x62\x9e\x8a\x61\xbd\xe6\x72\xcd\xd7\xa0\xe4\x3c\xa1\x51\xf0\x75\x42\xe3\xd5\x37\x54\x2c\x8f\x17\xea\x71\x2b\xb3\xbd\x9d\x5a\x20\x3d\xbe\x37\xd8\x24\xcb\xe1\xcc\xe4\x37\x32\x55\xc7\x20\x1f\x74\xde\xfe\xd3\xe6\x6f\x5d\x4c\x00\x3a\x03\x7d\xa4\xd3\x06\x2d\x48\xae\x41\xd0\x4d\x97\xd2\x5e\x1d\x5a\x88\xfc\x85\x31\x46\x3a\x75\x70\x55\xca\xa2\x05\x79\x49\x17\x0d\xae\x18\x80\x1e\x4c\xdf\x2b\x6e\xe4\xed\xbc\x2b\x86\x4c\x31\x9e\xdf\x57\x63\xf2\xd5\x36\x8f\xb9\x38\xf1\xd6\x4d\x26\x79\xd2\x20\xbf\x9e\x3a\xef\x3a\xf5\x4d\x13\x70\xba\x3f\x52\x2d\xc7\x76\xbf\xfc\xfc\xf7\xd3\xab\xcb\xe9\x2f\x3f\xff\x03\x8c\xf2\x52\xe4\xf8\xe2\x9e\x9a\x70\xef\x28\x92\xf7\x24\x95\x6b\x46\xb0\x6a\x6e\x9b\xc0\x01\xb3\x73\x41\xa7\xe7\x73\x80\x32\x0e\x44\x56\xd1\x84\xae\x99\x11\xee\xae\xce\x66\x1f\xae\x2e\x74\xaf\xc7\x27\x27\x67\xd3\xd9\x98\x7c\xf0\xe7\x4d\x32\x0d\x39\x4e\x0c\x62\x69\xb6\x32\x03\xb9\xbf\x8c\x95\xdc\x65\x4d\x2e\xa6\x1f\x66\x7a\x5d\x80\xaa\xbe\x6c\xc1\x27\x80\x48\x2c\x2a\x56\x16\x97\x56\x91\x3d\x55\xd8\x93\x09\xda\xfa\xe5\xe7\xbf\xe3\xb4\x7e\xf9\xf9\x1f\x5e\x81\x06\x2d\x18\x76\x5f\x6a\x13\x22\xd2\x20\xf3\x15\x4d\xc1\xef\x03\x7d\x94\xe3\x44\x5a\xdf\x0d\xbb\xc9\xbe\xde\xfd\x47\x0a\x00\x68\x80\x09\x72\x99\xc8\xbd\x15\xa0\x8c\x05\xe2\x64\x3b\xb5\xc6\xfd\xcb\x65\x64\x02\xe7\xdc\x37\xa7\xa6\x09\xb4\xab\x29\x34\x4a\xdc\x19\x27\xb3\x0d\x0f\xd8\x95\xcc\x94\x66\x84\x21\xb3\x66\x77\xa8\x23\x4f\x4b\x56\x74\xc8\x6b\x50\x24\xe6\xa4\xa1\xd1\x09\x18\x06\x6d\xcd\x42\x33\x8c\x97\x1b\x85\xa4\x08\x07\x9a\x8a\xd9\xcb\x0a\x47\xd9\x92\x9f\xab\xd9\xf4\xea\x72\x76\xfb\xd5\xe5\xe5\x0c\xb9\xba\xa2\x48\x4c\xa3\xbc\xd6\x90\xe1\xc1\x59\x2b\xe6\xea\x37\x11\x62\xbd\x16\x6c\x99\x08\x34\x49\xdb\x38\x4f\x23\x9d\x4b\xb1\xcb\x62\x4b\x98\xc9\xd3\x29\x4f\x4b\x95\x70\x22\x46\x37\xc6\x30\xee\x95\x13\x80\x01\x03\xf7\x26\xac\xaa\xe5\xe9\x31\xf3\x67\x4e\x6c\x3d\x18\x48\x69\x4f\xa4\x10\x9a\xa7\xbd\x9b\x08\x08\xda\x6e\x32\xae\xb5\xd2\x5c\x7b\x9a\xaf\x40\x97\xcc\xc5\xf2\x94\x45\xd4\xe7\x0c\xd6\x36\xa1\x5a\x27\xcd\x32\x76\xfb\x64\x8c\x72\xed\x42\x86\x2c\x3d\xe7\x69\xa7\x03\xd6\x99\xfb\xc1\xc9\xe4\xf4\x4a\x7f\x54\x4e\x7a\xad\x7f\xdd\x07\xeb\xb7\xed\x7d\x24\xa4\x2d\x28\x0c\x65\xf8\x5a\x0c\x10\x6b\xba\xb5\xfb\x85\x5a\xa8\x9c\x18\x51\x91\xa7\x5e\x60\x8e\xf2\xcb\xbc\x6d\xc8\x62\x66\x8c\x94\x1a\xc1\x06\x45\xde\x8b\xdd\x92\x95\xb5\x07\x92\xb7\xe4\x84\x5b\x50\x1e\x69\x3e\x7b\x22\xe6\x32\x13\xa1\x66\x1f\xa6\x32\xe9\x4e\xac\xba\xff\xae\xe1\x43\x84\x33\x48\x4d\xa3\x90\x45\x7c\xcd\xf5\xda\x0c\xdc\x7d\x53\xff\x70\x3a\x3d\x9c\x9d\x4c\x8d\x2e\x13\xe8\x8a\xa3\x15\x41\x6a\xeb\xb3\x74\x00\x65\xcf\xe9\xbd\xaf\x67\x29\x08\x4f\x12\x96\xc6\x0c\x6b\x76\x16\x89\x10\xa0\x60\x7c\x4e\x24\x2c\xba\x30\xd1\xfc\x9a\xc6\x6f\x24\xf7\xd2\x19\x1a\x04\x90\xab\x04\xc8\x47\x90\x61\xb2\x17\xb9\x58\x10\x8a\xf3\x01\x16\x43\xcf\x36\x49\x58\xa0\xaa\x75\x53\xce\x9a\x02\x7c\x65\xe2\x06\x84\x17\xe9\x5c\x69\x4a\x54\x10\x3b\xc1\xdd\x23\x0c\x77\x35\xa5\xb9\x64\x42\xb2\xb0\xf1\xb5\x97\xf8\xbc\xd3\x82\x18\x0d\xee\x46\xa5\xc8\x9c\x03\x93\x40\xaf\xa0\x09\x36\xd6\xb5\xc8\x81\xc2\x95\x45\x81\x4d\x7e\x9b\xbf\xfc\xfc\x77\x15\xc4\xbf\xfc\xfc\x8f\x31\x99\x15\x76\x11\x0a\xcc\x04\x1c\x12\x84\x11\x6c\xf4\x41\xae\x24\x45\x43\xbc\x90\x0d\x4a\xfd\x99\x93\x7a\x1f\x9b\xc2\x91\x48\x49\x9a\xae\xac\x69\x44\x5f\xbb\xd3\x6f\x4e\xa6\x25\xc3\x45\x10\x1f\x7d\xf2\x89\xd7\xde\xac\x61\xf6\xf6\x8b\x03\x68\xf2\xe6\xb7\xbf\xc3\x7f\x7c\xf2\x69\xf1\xaf\x2f\x5e\xe3\xbf\xde\x7e\xf6\xd9\xa7\xe6\x5f\x6f\xdf\xbe\xcd\xff\xf5\x5b\x1f\xcd\xee\x9d\xff\x57\x2a\x69\xb3\x65\x07\x72\x3d\x37\x7e\x0c\x60\x1a\xce\x09\xb2\x08\x01\x4a\x07\x8d\x8a\x77\x92\x7b\x2e\x14\xc1\xd2\xde\x93\xd5\x95\x51\x24\xf6\xa7\xf8\x36\x7b\xda\x46\x9c\xf3\x01\x9a\x78\x10\xb7\x8f\xe6\x14\x17\xad\x19\x22\x46\x8d\x39\x17\x46\xf9\xc8\xcd\xe8\xf0\x11\x29\x32\x2d\x3a\xbc\xcc\xd4\x23\xf1\x61\xed\xcb\x66\x84\xe8\xc5\x59\x8b\x5e\x08\x51\x66\x6a\x29\x5d\x84\x08\x8c\x6a\xb5\xbc\xb6\x7d\x4a\x52\xd1\x23\x50\x62\x93\x92\x44\x63\xc9\x8f\x43\x89\xbe\x9e\x35\x96\xfc\xcf\x47\x89\xd2\x9c\x93\xa7\xc1\x89\x12\x64\x7b\xa6\x82\x70\x7f\xdf\xa9\x98\x61\x8e\x90\x34\xd6\x67\xe7\x30\x79\x11\x95\x96\xfb\xf5\x12\x97\x4c\xe9\x9d\x84\x5d\x44\x09\x56\x05\x61\xc9\x4f\x41\x1f\x42\xbd\xcf\x1a\xeb\x22\xfa\xbd\xb8\xee\x10\x76\x1e\x8d\x6d\x1b\x71\xf8\xe7\x9f\x1e\x20\x2e\x1f\x10\x72\x69\x80\xff\x28\x84\xcc\xa8\xca\x12\x76\xca\x14\x0b\xd4\xe5\x86\x25\x09\xef\x56\x8a\xbf\xf3\x7d\xe4\x96\x74\x95\xf6\x37\x28\x5e\x87\xad\xfd\x27\x45\x31\xa3\x05\xfa\xd6\x14\xc6\x49\x5c\x64\xc4\x85\x45\xed\x24\x65\x31\xc5\xf4\x64\xc0\xeb\x02\xd6\x13\x5e\x05\x16\x64\x00\x4b\x0f\x08\x7b\xa0\xeb\x38\x62\x5f\x92\x9b\xbd\xeb\x8b\xe3\xd9\xbb\x2c\x8a\xb6\x57\x54\x84\x72\xfd\x7b\xa8\x24\xf8\xfe\xf8\xfa\xbf\xdd\x1f\xc1\xa9\xe1\xe0\x8a\x41\x7c\xc5\x75\x16\xc3\xe5\x3e\x97\xc1\xdd\xef\x1b\x8a\xb9\xe4\x49\x08\xc1\x4a\x02\x9f\xdf\xec\x21\x15\x59\x48\xf4\xd3\xce\x57\x7f\x80\x99\x68\x74\x53\x69\x8c\x24\xcd\x06\x29\xc8\x01\x9e\x29\x39\x42\xf8\xec\x2c\xaa\x42\x2a\x37\x1e\xfc\xf1\x74\xda\xd7\xec\xfa\x75\xf5\x0b\x63\xbf\x4c\x89\x79\x43\xfe\x78\x3a\x25\xa9\x2c\x2a\x16\xd2\xc4\xef\xb5\x0a\x28\x30\x94\x62\x7f\x5f\x91\x14\x81\x08\xdf\xca\xc5\x02\x14\x39\x32\x21\x21\x68\xbb\x41\xf9\x8f\x75\x04\x34\x5a\xfe\xe3\xe9\x14\xc9\xa2\x57\x7d\x68\xcc\xa6\x4c\x9f\x05\x26\x42\x16\x16\xc6\x09\x8d\x55\x61\xb4\x38\x91\x1b\x7d\xe6\xe6\x4c\x81\x16\xa9\xf0\x0b\x6c\x98\xa7\xc8\xf5\x77\xe3\x8f\xf6\x6d\x59\x31\x1a\xa9\x96\x32\x20\x3d\x3e\xd6\x1c\xcd\x8e\x2a\x00\xfc\xb0\xa1\x8c\x4c\x2b\x32\xcb\x3d\xcc\xce\x1e\x82\x28\xeb\x61\x07\x9b\x54\x3e\x70\xd9\xae\xca\xdd\x94\x8b\x3e\x4e\x76\x25\xdf\x42\x66\x3a\x05\x85\xd6\x5a\x0a\xae\x64\x9e\xe3\xa0\x2c\x88\x8e\x9b\x8c\x90\x65\x82\x5d\x72\x07\x33\xfe\xae\x4b\x21\xf5\x4f\x85\x99\x7f\x7f\x9f\x4c\xa6\xdf\x5e\x93\x30\x5b\xaf\xbd\x0e\x76\xf9\x32\x0e\xac\x6f\xa4\xc1\x71\x36\x36\x25\xda\x92\xf9\xb6\x64\x99\x2e\x6b\xb3\xbd\xdc\xa2\x59\xeb\x3a\x8b\x14\x8f\x23\xb7\xa0\x33\xd6\xfb\xc2\x62\xce\x79\xc2\x73\x13\xfe\x02\x66\xdf\x06\xae\xd6\x5c\xb4\xd4\xe3\xf5\x99\x62\xc5\x0b\xcf\x0b\x98\x27\x50\xd5\xfb\x84\xc6\x4d\xd6\x05\x04\x27\xa0\xdb\xfd\xfd\xc3\xfd\x7d\xec\xce\xe0\x56\xb2\x42\x4d\x9c\xb1\xc3\xef\xef\x1f\xfe\x6f\x0d\x8b\xc3\x83\x0d\x53\xab\x37\xfb\xde\xcc\x7c\x80\x1f\x2d\x0c\x50\x78\xcd\x9d\x1d\x61\xb7\xe6\x6c\xc9\x85\x1d\x51\x77\xb7\xbf\x8f\x09\xaf\xa2\x54\x36\xe9\xfc\x0a\x10\xee\xef\x9b\xb1\xdd\x3b\x0d\x1b\xc4\xe3\x4d\xfa\x7a\x57\x75\x70\xde\x31\x16\x96\xe9\x7f\x4d\xb0\xbd\xd5\x92\x96\xb7\xd8\x94\xda\x31\x51\x96\xb6\x70\x86\x5f\x23\x56\xb7\xbc\x80\xe3\x29\x30\xbb\x5a\x14\xc8\x78\xba\x42\xb5\xf3\xba\x10\x52\xf2\xd6\xad\xb0\x4a\xc7\xe4\x42\x2a\xc0\x11\x84\x89\x0d\x4f\xa4\xc0\x02\x3e\xd2\x24\x36\xa4\x82\xcc\x35\x2d\x5a\x33\x45\xa3\x03\x93\xce\x37\x58\xb1\x54\x25\x54\xc9\xc4\x3b\xe1\xc0\x29\xe2\xad\x51\x44\xac\x39\xb2\x84\x53\xc5\xa2\x6d\xf9\xec\xc8\xcc\xad\x6a\x80\x5c\xae\x0c\xee\x1a\x62\x8e\x35\x1a\x33\x71\x7c\xc6\xbc\xa3\xf7\x3a\xa0\x11\xdf\xdf\x77\x23\xc4\x74\xaf\x97\x31\x13\xd7\x8a\x06\x77\xee\x67\xde\x7b\x63\x5d\x54\xf7\xf7\x15\x8d\x6d\x47\xee\xc9\xd1\x03\x3c\xfa\xcc\x5c\xb1\x45\xc2\xd2\x15\x9c\x89\x8d\x37\xc3\x64\xe9\xf0\x4c\x1a\xbe\xcb\x0b\x7f\x81\x33\x0e\xa1\xca\x20\xa3\x46\x41\x23\x61\x69\x40\x45\x6a\x92\xd8\xb9\xf7\x4b\x92\x0d\x4b\xf8\x62\x6b\x1c\x59\x21\xe3\x09\xd6\x2a\xc7\x6f\x4c\x59\x1f\x2f\x7e\x35\xde\xba\x1a\xe1\xa5\x26\x0d\x73\x7e\xb4\x37\x18\x4f\xfc\x7a\x47\x46\x85\xc7\xbc\xc5\x33\xac\x95\x66\xea\x4f\xdf\xcf\x3e\x74\x5f\xc8\xe9\x64\xfa\x7e\xf6\xc1\xc2\xd0\x54\x95\xd7\x27\x48\x0a\x47\x8d\x6c\x6c\x14\x63\x72\xcd\xfc\xae\x00\xe6\x58\xeb\x55\xeb\x3e\x1c\x0f\xa0\xcf\x3e\x6b\xc1\x2a\x4d\xe4\x37\xd6\x47\x6f\xc7\xf3\xb1\x3f\xf1\x7d\xd5\x7a\x3a\x48\xc2\x30\x82\xc7\xcf\x67\x46\x8e\x1f\x0a\x9c\x85\xaa\x2c\x2b\xa4\x41\x06\xc6\x26\x07\xd6\x43\x57\x23\xe1\xeb\x76\x9e\xc8\x3b\x26\xaa\xce\x22\x90\xbc\x1b\x0e\x49\x29\xc6\xc2\x0e\x9f\xe0\xaa\x3a\xe2\x7e\x7e\xf7\x7a\x67\x7f\x2b\x3b\x82\x29\x5b\xdd\x79\x09\xcb\xcd\x73\x61\xc4\x86\x99\xcf\xcd\xef\x9a\xc9\xb1\x73\xd7\x24\xcd\x0b\x08\x86\x86\xa6\x92\x42\x01\x8c\x59\x4b\xea\x35\x5e\xf6\x59\xc7\x3b\x1e\x29\x96\x40\xe8\x5a\xa3\x13\x43\x9f\x7e\xb4\x64\xf3\xae\xd9\xdb\xa3\x7a\xf2\xea\x1f\x15\x05\xf9\x82\x5c\xa2\x77\x8d\xe2\x3e\x88\x40\xf6\xab\x05\x8f\xd8\x98\xfc\x49\x73\x1f\x74\x0b\x71\x1f\x68\xac\xa3\x62\x69\xa8\x86\x51\x0d\xe5\xad\xad\x00\xc0\xfd\xce\x05\xca\x51\xc9\xe4\xb3\x79\xb9\x70\x68\x8d\x6b\xca\x5f\xd3\x38\x66\x18\x47\x24\x94\xcc\x7d\x0f\x1b\x88\x19\xd6\x5b\xd7\xd7\x8a\x92\x90\x2f\x30\x3d\x32\x89\xa9\x5a\xbd\x72\xe9\xc4\x61\x92\x89\xc3\x07\x23\x4d\xe8\x79\x3f\xf6\x98\x6a\x08\x4f\x13\x39\x67\x3b\x60\x85\x86\x2f\xed\x06\x81\x1f\x66\x45\xcf\xe9\xe5\x35\x30\xcb\x03\xfa\x6b\x52\xa5\xb4\xc4\x8a\xf9\x67\x03\x50\x59\x94\x5d\x1e\x60\x73\xf8\xc2\x44\x49\x09\xe9\xe5\x35\xe8\x86\xf2\x48\xb7\x1f\x97\x3d\x36\xd7\xf4\xce\x3a\x5c\x82\x5f\xa5\x71\x2e\xe7\x1b\x23\x02\xd8\xdd\x6f\x10\x06\xf5\xbe\x80\x18\x78\x00\xee\xe9\x5a\x7e\x84\x6e\x4e\xa6\x1f\xdc\x4d\xf9\xfc\xf5\xfa\xd1\xe8\x42\x43\x73\xc6\xd7\x4c\x66\x9d\xf6\xd0\xd2\x0e\x98\x6f\xda\x60\x0f\x80\xf6\xad\xcc\x86\xc9\x95\x60\x0c\x4e\x98\xaf\x0f\x1c\xa4\x09\xba\x4e\x54\x65\xf2\xb4\x50\x30\x34\xb2\x03\xc0\xe3\xa7\x2b\xea\xdd\x41\xb8\x5e\xe8\xb9\x13\x45\x65\x64\xdf\x92\x3d\x0e\x79\x71\xbd\x89\x76\xa7\xc6\x98\xb6\xd7\x78\x36\x17\x21\x86\x5a\x22\xa7\xc5\x45\x3a\x68\x4c\xec\x9b\xfb\xeb\xeb\x1e\xf5\x75\x32\x51\x04\x32\xc9\x53\xac\x3b\xe1\x83\x6b\x99\x09\xcc\xb1\x67\x1c\x5e\x9c\x0c\xc9\x5e\xbd\x7f\x62\x5b\x2c\x6c\x28\x36\x4e\xc8\x3d\x2f\xaf\xd3\x9c\xcb\x79\xec\xb1\x79\x4f\xb5\xcc\xf6\xf1\xd8\xf9\x3d\x4d\xee\xde\xd3\xb4\x3b\x6c\x77\x52\xf9\xc0\x1e\xbc\xb5\xfe\xb7\x2b\x68\x9b\x3c\xfa\xdc\xaf\x4b\x9f\x4c\x67\x78\x28\x74\x3f\x64\xae\x51\x2a\xe6\xaf\xbf\x2e\x92\xa8\xd8\x32\x82\x2b\xf6\x40\x43\x16\xf0\x35\x8d\x6c\x7a\x60\x7d\x80\xbc\xe7\x44\x91\x88\xd1\x54\x91\x2f\xb0\x4f\x48\xdd\x2c\x4c\x34\x30\x12\xd4\x20\xa2\xe9\xca\xfa\x8e\x6d\xcd\x09\x5c\xdb\x59\xf8\x65\x01\xeb\x63\x02\xb6\x95\x6d\xaa\xd8\xba\xb4\x8d\x0f\x8b\xc5\x6b\x78\x9e\xba\x1e\xb8\xdd\x9d\x8b\xe3\xd9\xa5\xb1\x10\xe5\x4c\x3b\xd2\xe5\x47\x6e\xf7\x54\xa6\xea\xbb\x84\x2b\x06\xee\x24\x3b\xa3\x7e\xff\xe7\x55\xce\x10\x9c\xab\x1a\xb1\x84\xe6\xec\x42\xbd\x33\x94\xdc\xeb\xae\xea\x9e\xfa\x79\x52\xa0\x60\xc5\x42\xf4\x59\x13\x84\x3d\xa8\x84\x92\x84\xf9\xfd\xc6\xe6\x28\x84\xe5\x11\xa2\x04\xc3\xc9\x21\xd8\x11\x06\xb9\xa7\x48\xd9\x83\x48\xce\xe7\x2c\xb1\x49\xe1\x4b\x78\xa8\x39\x29\x66\xea\xc4\x5c\xc8\x20\xc8\x12\x4d\x90\xec\xd7\x34\x8e\x23\x9b\x41\xb4\x74\x56\x72\x95\x61\x83\xec\x14\xb3\x40\xd5\x31\xe5\xf8\xa3\xbc\xfe\x6d\x57\xbb\xb3\xfc\xde\xef\x1e\x21\x12\x1a\x39\xc0\x06\x4e\x81\xe8\x6b\xdc\x18\x9d\x2d\x6e\x67\xff\x9b\xce\x4d\xc9\x46\xb9\x0b\xfb\xef\x2f\x00\x09\x73\xcb\x05\x02\xd4\x51\x28\x87\x85\x46\x3a\xc9\x53\xa3\x9c\xd2\x1c\x35\x30\x17\xa0\xb1\x68\xd0\x10\x19\x9f\x72\xec\x34\x17\x5a\x53\xcc\x75\x7a\x2f\x93\x3b\x9a\x80\xb9\x10\x73\xcd\x9e\x73\x91\x3d\x58\x4f\xb2\x79\xb6\x6c\x24\x84\xfa\xfc\x2e\xf8\x03\xda\x2a\x4c\x7b\x9b\x55\xed\xb3\xf1\x9b\x37\xb9\x42\x50\x53\x5f\x54\xec\x6d\xf4\xef\x9a\x20\x2d\x13\x46\x1b\xfc\x7a\xb7\x86\x39\xb6\x4e\xb1\xb9\x43\xab\x92\x07\x84\x92\x95\x13\xd2\x82\xc1\x86\xe5\x08\x16\xaf\x45\x2f\xa5\xcb\x92\x6a\xe3\xcd\x63\x64\xa9\xcd\x5b\x63\x19\xd9\x55\x5e\xbf\xcb\xe6\xec\x42\x86\x6c\x2a\x13\x75\xa5\x39\xfd\x6e\x93\xff\x1f\x6a\x9f\x90\x95\x8c\xc2\x34\xd7\x32\x83\x71\x21\xc1\x37\xa0\x96\x5d\xf8\x8b\x0d\x99\xa8\x4e\x52\xc4\x74\x8e\xc9\xa5\xc6\x19\x99\xa9\x6d\x89\x3c\x01\x5a\x5b\xdc\xe0\xaf\xe6\x3c\x77\x40\x85\x78\xbc\x49\x4d\x0c\x0d\x82\x3e\x43\x9e\x89\xa5\xcc\x4e\x0b\xf6\x0e\xb5\xe3\xc8\xbe\x50\x11\xb6\x7a\xda\x1a\x87\x03\x77\xa3\x3e\xd5\xa4\xec\xe8\xd3\x4f\x7e\xfb\xf6\xb7\xde\x70\x97\x66\x4b\x2c\x15\xdb\x4b\x7f\x95\x9d\x51\xb7\xad\x73\xd4\x69\xca\x2c\xaa\xec\x8f\xff\x97\xef\xfd\xc3\xa8\x28\x19\x33\xe2\x42\x8d\x64\x32\xc2\xde\xdc\x7c\x69\xa5\xd5\xb7\x94\xcc\x97\xcb\xde\xe2\xea\x79\xd1\xd6\x62\x4a\x28\xab\xae\xc5\x36\x4b\xd7\x70\xc7\x22\xb9\xb4\x98\xc9\xb7\x02\x60\x55\x1c\x7c\x05\xdc\x72\x24\x21\x17\x44\x49\xfc\xdb\xd0\xe4\x30\x92\xcb\x43\x97\xc9\x1c\x47\xd2\x9b\x9f\xa4\x0d\xac\x91\x5c\xf6\xd4\x34\x9f\xdb\x96\x6e\x61\x7c\x57\xb1\xec\x1c\x49\xac\xb6\xa6\x25\xa6\xa6\xad\x3c\xbf\xfc\xda\xe2\xe9\xb2\xf2\x33\x90\x23\xf4\xdf\x7e\xc4\x4a\x6c\x01\x7f\xbd\x17\x7d\xd6\xe3\xb6\x7f\xb2\x72\xff\xba\x03\xd4\x38\x38\x05\xff\xc5\x42\x7e\xc4\x7a\xae\x83\x84\xb1\xee\xe0\x91\xf3\xea\x17\x4f\xb6\xa6\x54\x85\x32\x53\x4f\xb9\xa2\x6d\x37\x3a\x3e\x2f\x35\x7f\xba\xb5\x6c\x53\xe7\x12\x92\x0b\x69\x62\x42\x85\xb4\x17\x0d\x90\xa8\x69\xd5\xaa\x1d\x7c\x0c\x10\xd6\xf4\x01\xd4\xaa\xd7\xfc\xaf\xcd\x59\xc8\x1b\xb0\xa4\x4d\x2b\x76\x1c\x7a\x53\xc9\x97\xc1\xf7\xde\x69\x6c\x81\xe7\x16\x48\x4a\x48\x28\xd7\x94\x0b\xb4\x10\x35\xc7\xfb\x41\xc2\xc9\xc4\x04\x88\x50\x41\xa8\x48\x35\xef\xf3\xed\x7b\xf2\x97\x8c\x25\x9c\x61\xc6\x9a\x20\x92\x59\x38\xe2\x82\xab\x7c\x96\x90\xa5\x2d\x37\x8d\x78\xbd\x7e\x80\xc5\x00\x4f\xb2\x34\x96\x22\xcc\xa3\x49\xd6\x34\x58\x71\xc1\x72\xe9\x5e\xc8\x0d\x1d\xd1\x98\x93\x97\x32\xd1\x84\xf0\xc3\x3c\x13\x2a\xf3\x76\x69\x9b\x8e\xec\x34\x5e\x8d\xc9\xb1\xf5\xaa\x5a\x20\x82\x7d\x19\xd0\x14\x0a\x11\x32\x91\x72\xc5\x37\xec\x15\x59\x33\x2a\x9a\xd5\x0f\x25\xdb\xb1\xa9\x19\x43\xb2\x18\x04\xc8\x8b\xe3\x19\xc6\x3e\x5a\x6d\x8a\x1d\x18\xb0\x7f\xc7\x09\x7a\xf3\xc9\x6f\xc7\xaf\xc7\xaf\xc7\x6f\x76\x3e\x46\x66\x90\x06\x5b\xbc\xff\x28\x58\xb7\x28\xe0\xe4\xf5\xbf\x8d\x9e\x23\x9f\x31\xee\x35\xfa\x45\x34\xa4\x76\x5a\xcf\xb9\x60\x21\xca\xcf\x58\x57\x67\x5c\x3a\x69\x2f\xf9\x02\x20\xb4\xbf\xaf\x6f\xd6\xfe\xfe\xab\x03\xc7\x51\xa7\x81\xf9\x06\x50\xe6\x80\x3c\x40\xbb\xe2\x9b\xb7\xbf\x1b\x7f\xf2\xf9\x67\x63\xf3\xff\xa3\x2f\x80\x91\x77\xc7\x3a\x72\xd7\xe5\x15\xda\x26\x82\xac\x35\x13\x14\x98\xd2\x04\x85\x08\xa7\xa7\x68\x35\xc1\x73\x66\x94\xc1\xa1\x83\xe0\xbe\xf8\xed\x6f\x3f\x6f\x09\xf6\x6d\xba\xa1\x2a\xdb\x25\x9b\xd2\xfb\xd9\x87\x5f\x23\x93\x12\x58\xda\x4a\x52\x31\x8d\x02\x08\x76\xcc\xd5\x5c\x7e\x7d\xf4\xfb\xd9\x87\x71\x49\xf2\x2d\xf2\x07\xb5\xe5\x0e\xfa\xb8\x44\x41\x82\x2a\xab\xec\xe8\x19\x1f\xe4\xa8\x47\xaa\x35\xa7\x40\x67\x50\x09\x16\x02\xee\xc4\xb8\xeb\x34\xb0\x27\x26\x1c\x44\x1f\x49\xb8\xd6\x36\x4f\x89\x20\xd4\x9d\x1f\x89\xa5\x8c\xf2\x62\x52\x1d\x71\x42\x79\xd2\x8f\x4a\xf0\x91\x1b\x23\x04\x27\xa0\x98\xb0\x51\x23\xe4\x20\xf6\xe3\xd0\x52\x8a\x16\x3b\x09\x29\xc8\x4b\x0e\x0e\x4b\x56\x48\x28\xd4\x0b\xef\x8f\xaf\xff\xfb\xc3\xd9\xd5\xf1\xe9\x99\xa9\xb4\xea\x49\x31\xd3\xb1\x43\xb9\x8c\xe4\xd9\x9b\x26\x29\xa0\x53\x06\xe8\x92\x00\xaa\x9b\x9e\x4f\xc2\xd9\x6e\x88\x87\x83\xdf\x8c\xc0\x96\xe6\xfb\xa3\x01\xdc\xa4\x06\x07\x74\xb8\xa6\x10\xd1\x8c\x07\x24\x84\x0d\xce\x1d\xb3\x2f\x8e\x67\x46\xe5\x9c\x09\xeb\x0f\xd0\x12\xcb\x3e\x67\x2b\xba\xe1\x32\xaf\x97\x6c\xfd\xd8\x52\x74\x13\x68\x8c\x08\x6b\x17\x71\x76\x15\x70\x04\x53\x11\x17\x2d\x76\x85\x36\x78\x83\x0f\xb2\x9e\xee\x15\x5b\xf6\x89\x5d\xbe\x2c\xb7\xb7\x84\x46\x94\xca\x7d\x2e\x73\x74\xa6\xe9\x63\xa2\xb8\xc6\x43\x5e\x71\x10\x31\x58\x51\x95\x10\xd8\x09\x8a\x5e\x4c\x23\xd3\x11\xea\x7c\x0e\x0b\xff\x8b\x90\xc5\x91\xdc\xae\x99\xf0\x57\x40\x04\x0a\x60\x1d\x7b\x73\xcf\x91\x10\xa2\x7f\x57\xf2\x1e\x4e\x02\x24\x03\xc4\xc1\x5f\xae\x18\x24\x96\xcd\x95\x56\x5a\xf6\x8e\x9a\x2a\xcd\x71\x81\x72\xfd\x38\x58\x2c\x6d\xe5\x39\xc7\xcd\x45\xdf\x48\xe8\x3b\x90\xeb\x38\x33\xb9\x89\x5e\x99\x34\xc3\x99\xdf\xcf\xaa\x48\xd5\xf6\x67\x94\x8d\xbe\x2f\x76\xe5\xd6\xc0\x00\x59\x1b\x67\x31\x9a\xa5\x63\x99\x4a\xa4\x18\xeb\x5f\xbd\xb3\x35\x53\xc1\xf4\x48\x05\xd1\x3b\x5b\xc7\x6a\xbb\x2b\x2b\x82\x31\x06\x90\xbd\x85\xaa\x55\x4f\x69\x72\xea\xf9\xc8\xf5\xe8\x9d\x6f\x6d\x66\x78\xc8\x1a\xbf\xce\x04\x94\x36\xf2\x6a\x05\x30\x5d\x02\x92\x70\xf4\x8e\x37\x31\x80\x79\x7a\xad\x03\x12\xf1\x3b\x46\x8e\x1d\x0d\x6d\x44\xb7\x2c\xe9\x17\xd6\xfb\x38\xa8\x24\x72\xcd\xd4\x8a\x65\xe9\xd7\xf2\x3d\x53\x09\x0f\xfa\x66\x64\xda\x9f\x36\x7e\x6a\xf5\x02\x29\xf9\x5a\x6a\xe6\x18\xac\x7d\x6b\x6c\xe2\x67\xd7\xa2\x08\x1d\x9e\xad\x43\xa1\x3e\x4b\x45\xff\x26\x0b\x33\x46\x0a\x14\x01\xc0\x07\x88\x01\x53\xe6\x3d\x94\x4a\xa2\xcf\xaa\xe1\x0c\x50\x17\x68\xee\x7a\x5e\x23\xde\x4c\x8a\x24\x10\x2c\xca\xc2\x03\x6c\xd7\x40\x6e\x9d\x19\x69\x9e\xe2\xa3\x13\xd6\x15\xc0\x7f\x34\xe8\x2b\x80\xb7\xee\xc9\x15\xf8\xb5\xc0\xde\xc8\x4d\x5c\x58\xdb\x64\x9e\x8d\x4d\x2f\xe9\xe3\x3d\x80\x6b\x6b\x6c\xf0\xe7\xed\x58\xe0\x37\x32\xcd\x65\x02\xb4\x77\xda\xac\x28\x45\x53\x2f\x6a\x32\x1b\x6c\x96\x69\x43\x7b\xb8\x08\x01\x57\x17\xab\x63\x1f\x77\x7b\xcc\x34\x7b\xc9\x39\xb5\xc5\xb9\x02\x8f\x0d\xc1\x7a\xf2\x05\xfe\xee\xf5\xef\x5a\xc4\xb7\x06\x66\xa7\x58\xe0\x14\x4d\x1d\x8f\x3e\xa8\xde\xef\x0b\x44\x61\x1d\xa9\x06\x2c\x51\xbb\x41\x09\x5b\xcb\x0d\xb3\xd1\xe5\x90\x96\xa0\x53\xd4\xf8\xce\x64\x61\xc2\x84\x75\x36\xf1\xe2\x86\x19\x7f\x3e\x93\x60\xc0\xa6\x75\xdd\xb0\x26\x47\x95\x39\x63\xa5\x94\x05\x96\xde\x8d\x4d\xf6\x67\x94\x23\x6c\x1a\x06\x0c\x12\xcc\xc9\x9a\x63\x69\x6c\x0a\x54\x03\x87\x09\x1a\x86\xe5\x79\x15\x81\x80\x36\x5d\x9c\x93\xf5\xc1\x04\xc3\x33\xea\xef\xf4\x9e\xe1\x5c\xcc\x7a\xed\x64\xa2\xad\xc9\x37\x61\x46\xd8\x79\x0f\x4c\x32\x81\xde\x16\xca\xab\xea\x17\x25\x9f\x67\xfd\x77\xcd\x25\x11\xc4\x00\xaf\x4d\x05\x3d\xb9\x54\x96\x16\x8e\x1d\x45\x61\x1b\x99\x94\x8c\x87\x63\x5b\x5a\x9f\x08\x29\x46\x7f\x65\x89\x57\x9d\xc1\x1d\x9d\x97\xc3\x8e\xa6\x65\x03\xcb\xce\x96\xb0\x1c\x4e\xb3\xd9\x79\x7f\x10\xcd\x66\xe7\xae\x63\xd0\x48\xc9\x51\xc4\x37\x2c\xf7\xa7\x05\xc9\x07\x11\xc4\xe8\xbe\x21\x95\xb0\x81\x8f\x81\x62\x19\xf1\xed\xbe\x0c\x7d\x48\x76\xb5\x49\x5f\x79\x3e\xfa\x08\x2f\xd4\x3c\x63\xca\xee\xf6\x68\xb2\xa2\x7e\x1d\xf3\x63\xed\xd1\x98\xb9\xc5\x9a\x9e\xdb\xd9\xd0\xc7\x82\x1b\x53\xad\xf4\x83\x32\xb6\x2d\xa4\x09\x30\xe5\x24\xd6\x78\xb5\x64\xe8\xd0\x03\xfd\x36\x9a\x29\x8b\x92\x81\x64\x44\x6c\x75\x83\xc9\x34\x3d\x42\xe5\x8b\x37\xb5\x53\x20\x45\xaa\x92\xcc\x17\x4c\x58\x24\x6d\x19\x19\x98\x4e\xa6\xc7\xef\xcb\x06\xfa\x11\x74\xad\x7f\x87\xbd\x2c\xf5\x68\x3f\x7f\x0c\xe8\xc0\x47\xa9\x49\xcd\xe1\x29\x77\x56\xa4\x63\xa6\xa1\xcd\x4b\x64\x6c\xfb\xb8\xd3\x46\x01\xa3\xef\xdd\x86\x26\x5c\xfa\x59\x0f\x27\xe9\xfb\x55\x79\x1a\x15\x45\x07\x54\x7c\x2d\xaa\x7e\xb8\x63\xf8\x4f\x7e\x91\xc1\xdc\xf0\x33\x59\xea\x0b\x49\xee\x88\x6a\x5d\x53\x9f\x80\x47\xfa\x04\xb4\xae\xb9\x4f\x91\xd0\xe3\xd3\x96\x30\xd6\x91\x9e\x90\xf7\x67\x9f\xff\x6e\x5b\xe8\xaa\x91\x17\xcf\xa5\x8c\xa7\x98\x83\xb0\x8f\xe2\xe3\x3b\x64\x83\xd0\xe6\x0f\x26\x96\x8d\x06\x5e\xca\x40\xec\x2f\x88\xed\x81\x4d\x6c\xd8\x76\x7f\x22\x29\xe3\xd4\x49\x0d\x4d\x26\x53\xc3\x4e\xd0\x84\x19\xa7\x64\xbd\x6b\x98\xb0\xc9\xe4\xe0\x23\x10\x71\xa5\x57\xd4\x68\x39\x37\xd9\xba\x30\x5a\x32\x8f\x0a\x3f\xbd\x38\x9e\xed\xef\x87\xd5\xa0\xb2\x0f\x22\x02\x25\x6a\x9e\xba\x39\xaf\x93\xe1\x55\x7e\x70\x61\x7d\xeb\x68\xca\xb0\xb2\x9b\x59\xa1\x59\x4e\x20\x85\xe2\x02\x7d\x47\xe6\x26\xe3\x47\x29\xa1\xa1\xaf\xd7\xc7\x64\xd3\x4a\x79\xc8\x02\x9a\x1c\x07\x01\x8b\x18\xc6\xe1\xf4\xe5\xa8\xaf\x1b\x3f\xcd\x85\x3f\xf6\xa0\xc9\xcd\x1a\x10\xbd\x1d\xaa\x81\x1c\xe4\x7d\x7c\xb4\x9c\x07\x7e\x34\x3d\x72\x2e\x95\x57\xf3\xc1\xf7\x95\x25\xe2\x84\x0a\x29\xb6\x6b\x99\xd9\x0c\x9b\xd6\x85\xc8\xab\xb6\x46\x6e\xdd\x4d\x4a\x9e\xf2\xbf\x32\x93\x5f\xac\x5c\x60\x6d\x4c\xce\xe5\x32\x25\xf7\x34\x11\x5c\x2c\x35\xd3\xa0\xb2\x44\xf8\xb5\xae\xf3\x2d\x66\x43\x86\xdc\xb7\xd6\xf0\xe4\xc4\x6b\x41\xc2\x06\x5a\xaa\x39\x98\xa7\xb5\xd8\x64\x91\x60\x09\xc5\xcc\x0e\xbe\xce\x57\x34\x45\x16\x3b\xe4\x69\x20\x37\xcc\xe8\xc5\x94\xb7\x06\x25\x26\x14\xcd\xd2\xce\x13\xf9\x28\x29\xa3\xbc\x7f\x13\xc1\x15\xa7\x51\x53\xfe\xad\xb6\x4d\x74\x3f\x2d\x67\xe7\xb5\x09\x90\x43\xfd\xca\x2f\x6d\x2c\x64\x4e\xc5\xd7\xf4\x8e\xa1\x9d\x49\x77\x5c\x71\xfc\xd9\x99\xc5\xa8\x2e\xaf\x27\x4f\x57\x5d\x9a\xe1\xea\x4a\xcb\xaa\x31\xf4\xcd\x6a\x62\x5c\x93\x87\x47\xfd\xe2\xed\x67\x8f\x5a\x14\x06\x35\x08\x1a\x9d\xf6\xcc\x99\xda\x54\x63\xf2\x21\xa2\x2d\x28\xa8\xfb\xdb\x3e\x31\x67\x50\xf6\xe9\x5f\x2f\xe8\x0c\xe6\xff\x98\x60\x71\xf8\xf0\xdb\x8b\xc9\xae\xdf\xdd\xf3\x84\x2d\x33\x9a\x84\x7d\xb1\xe4\x77\x95\x0f\xea\xd9\x96\xf3\x16\x0e\x1d\x7f\x96\x62\x15\xf9\xdc\x73\x07\xef\x0b\xba\xee\xe6\xda\xbf\xf3\x7e\x56\x61\x13\xc1\x04\x63\x8c\x9f\x0d\x2e\x8b\xba\x99\xb3\x56\xdb\x99\x7b\x95\xee\x97\x63\x63\x84\xd8\xf1\x36\xe5\x4b\x3b\xe7\xa9\x62\x9a\x32\xf4\xd2\xe6\x7d\xe7\xfd\xac\x92\x97\xdc\xbe\x42\xd5\x5e\x93\x85\x6f\xbe\x2d\x16\x57\x0a\xd8\x79\xf3\xc5\x27\xbb\x9f\xeb\x7c\x3d\x7d\xee\xe6\x77\x4e\xe3\xf2\xdc\xf5\x0f\xe6\x7a\xfa\x20\xef\x5b\xc7\x35\x63\xad\x97\xf4\x63\x16\x73\x85\x1c\xdb\x55\x16\xb1\x69\xc2\xa5\xa6\xb3\xfd\x17\xe7\xf9\xb8\xbc\xd8\xd8\xfe\x0a\xe6\xaa\x06\xa5\x95\x39\x9f\x15\x90\x58\x56\x52\x8b\xd1\x25\xf5\xc3\xef\x76\x5e\xec\x43\xd8\xbb\x30\x84\x27\x35\xc9\x1f\x4f\xa7\x65\xd6\x4e\xcf\x35\xcd\xb8\x32\xf5\x82\x20\x4d\xa7\xff\x00\xe6\x09\x0f\x43\x26\xb6\x75\xc7\xc7\x47\x31\x16\x0f\x61\xbc\xab\x26\xe5\x8f\xa7\xd3\xa7\x8d\xe6\x85\x2c\x2d\x8f\x0a\xe4\x35\x6a\x12\x2f\x19\xaa\x57\x46\x92\x89\x29\x07\x86\x29\x84\x41\xc6\xf6\x6b\x54\xfe\x78\xea\x75\xf1\xaf\x87\xfb\xee\xae\x4f\x19\x4a\x34\xd7\x4b\x34\xa3\x0b\x98\xf1\x6e\x00\x6b\x2a\x67\xcf\x51\xa4\xf9\x6b\x18\xe7\x02\xc7\x41\xe3\x31\xbe\x2e\xaa\x34\x7b\x9a\xd4\xcb\x34\x7b\xe7\x6b\x36\x29\x2f\xd4\x5c\x6f\x04\x83\x3d\x57\xa5\xe6\xa1\xb2\xf2\x50\x59\xd9\xdd\x82\xa1\xb2\xf2\x73\x56\x56\x6e\x2b\x7c\x1c\xc7\xd1\xf6\x52\xbc\xc3\xba\x6a\x5d\xd4\xf4\xb8\xd4\x1a\x75\xb1\xb6\xe4\x10\xf4\x84\x3a\xd9\x22\x7f\x3f\xb7\x69\xe4\x7d\x04\x0a\xd9\x09\xe8\xc9\x86\xe4\xec\xc8\x0f\x84\xf2\x42\xaa\x99\xe6\x41\xba\x66\x7e\x9a\xb7\x74\x66\x6d\x25\x1e\xab\x2a\x04\xdf\x23\xb4\x10\xe6\xeb\x68\x50\xfe\x39\x4b\xb3\xa8\x62\x29\x8b\x5a\x28\xc6\xc2\x42\x40\x8c\xde\x4f\x9d\x7a\x79\x50\xad\xe7\x8e\x8b\xa5\x57\xad\x08\x8a\x44\x9a\x1a\x05\x7a\x60\x13\xa1\x63\x65\xbb\x59\x62\x93\x54\xf9\x20\x4c\xa8\x3f\x01\x20\x58\x4e\xf5\xa2\x50\x21\x42\xc5\xd6\x99\x9a\x77\x62\x98\x2b\xd2\xc0\xc4\x28\x2e\x1b\xd5\x59\xa5\xf1\x21\xa8\x18\x33\x9c\x1a\x53\xf1\x9c\x11\xc3\x23\xee\xba\xb7\x58\x85\xa0\x3b\x4f\x3e\x43\x1f\x5f\x2c\x4b\x05\xe9\xd0\xb1\x7c\x81\xe1\x38\x31\x17\x2b\x78\xab\xdb\xe2\xe1\x5e\x28\xd9\xaf\x71\xdd\xc6\x0d\x2d\x48\xb8\x62\x09\xa7\x98\x1c\xcb\x71\xdb\x87\xec\x61\x06\x6c\xe6\xe8\xef\x94\xec\xbc\xb4\x86\x9b\xbd\x63\xa2\xc5\x08\xb7\x8a\x75\x5a\xcc\xc8\x37\x15\x2f\x13\x49\xf2\x7a\x1f\xe4\x2b\xa9\x56\x26\x1e\x5d\x26\xa3\x39\x4d\x01\x3c\x46\x95\x38\x35\xfb\x25\xdc\xdf\xb0\x2e\x8d\x17\x36\xc0\x4a\xb2\x84\x89\xc0\x9e\xbc\x91\x93\x2b\x52\x66\x0a\x23\x3c\x6d\xc8\xa0\xa9\x5b\x24\x13\xc8\x34\x6a\xeb\x06\x36\x4c\x58\x84\x79\xb9\x09\x07\xf0\x10\xfa\x75\x73\x23\x6c\x22\x5d\x0c\x59\xa8\x42\xa2\xc1\x32\xa9\x37\x53\xb0\x25\x4c\xce\xb0\x04\x07\x26\x6a\xcb\x7a\xf1\xff\xf2\xf3\x3f\x2e\xa4\x82\x9c\xb6\xc7\x51\x64\xe2\x2f\xdc\xbe\xfd\xfd\xea\x6f\xc1\x1f\x1a\x8e\x53\x9e\x2d\x95\x2a\x9e\x42\x2e\x4d\x0c\x6c\x35\x0b\xb1\x65\x76\xc7\xe4\xd8\xa4\x99\x6b\x80\x2d\x1c\x4d\x2a\xec\xf1\x34\xa1\x0a\x66\xc9\x1a\x40\xb0\x18\xfd\x87\xa3\xc7\xa5\xd8\x79\x33\x54\x01\xf6\xfe\x29\x5a\x0c\x52\x4c\xd1\xb2\xdd\xe5\xa7\x33\xd1\x2b\x6d\x4a\xbf\x80\x4f\x57\x6c\x23\x5c\x03\x5b\x05\xbd\xb1\x97\x32\x1a\x2f\x3e\xc8\xaf\xb3\x67\xfb\x8c\xf5\x48\x5f\xcb\xa6\x6e\x41\xfa\x76\xc6\x27\x9a\x46\x2b\xbf\x5f\x64\x2f\x60\x10\x53\x2d\x18\x72\xa3\x5e\x9b\xab\xd7\xd2\xb6\x86\x04\x2e\xaa\x1f\x1b\xcf\x78\x19\x1b\xab\xea\x82\xb3\x28\x6c\x0c\xd8\x29\x9e\x1c\x30\x34\x47\x01\x4e\x64\x85\x89\xcb\x2d\x95\x4b\x92\x09\x5f\x6a\x38\x34\xdd\x7f\xfb\x00\xf7\xf5\x52\x1f\x21\x96\xac\xf1\x03\x42\xd5\x2b\xc7\xb0\x6d\xae\x08\x66\xe4\x8e\x20\xb3\x6a\x7b\x97\x39\xc8\x8a\xf2\x2b\x86\x0c\x1b\xdf\x73\x38\xc8\x35\xd8\xb4\x77\xaa\x2f\x40\x0e\x45\x4d\x97\x50\x4c\x08\xf3\x24\x05\x74\xcd\x4c\xe0\x0d\x54\xfe\x81\xec\x06\x6d\x21\xc3\xc5\xe3\xd8\xf0\xad\x85\xd2\x61\x1b\xe6\x2e\xde\x2d\x56\xd4\x0f\x14\x0e\xdb\x81\xd8\xef\x9d\x4c\x48\x49\xb8\x3b\x80\x74\x10\x90\xe5\x76\x47\x88\xf0\xb5\xe6\x02\xd2\xc2\x13\xd0\x3d\x64\x36\xa3\x3b\x28\xd0\x23\x34\xa9\x02\x4c\xda\xfb\xf4\xf8\x35\x70\x07\xbe\xf9\xce\x42\xc2\xf3\x15\x2b\x2f\xa5\xf1\xa2\xe1\xd3\xb0\xfc\x7d\x94\x53\x5f\xbe\xda\xaf\x03\xc0\xae\xb1\xbd\xe3\xdd\x00\x50\x96\xb0\xaf\xfd\x7e\x7f\xc5\x23\x13\xf2\x8d\x4c\xf3\x5a\x66\xc5\x2e\x7a\x04\xf5\x62\x2f\xdb\xfb\x6c\x5c\x67\x79\x15\xc8\xe6\x01\x27\xbe\xeb\x41\xa6\x41\x22\x53\xe0\xf4\x9c\xdb\xd8\x40\x13\x72\x30\x76\xe2\x76\x82\xc1\x18\x6d\xe8\xb2\x1a\xde\xc2\x4c\xa9\x01\x2f\xce\xd3\x12\xa4\x4a\x78\xa0\x1a\x8b\xa2\x16\x8f\xa5\x6e\xb0\x85\x46\x30\x91\x4d\x28\x2f\xc7\x6a\x1d\x07\xa7\x8c\xf2\x8a\xb8\x52\xe4\xc4\x21\xb1\x0e\xfa\xa4\x2c\xf9\x86\x09\x2d\x7d\xea\xe5\xb7\x9e\xf3\x66\x06\xd1\x19\xb7\x17\xa4\x5b\xe3\xfa\x8b\x47\x48\x75\xb1\xdb\x9e\xe0\x07\x79\x64\x4b\x99\xaf\xb2\x2b\xbe\x68\xa8\x3d\x56\x3c\xb0\x8f\xff\x72\xb0\x68\xaa\x8b\x51\x3c\x55\x60\xe4\xf5\x30\x5a\xa0\x31\x6d\xf2\xbd\x2c\x1e\x04\x07\xb9\x86\x0c\xdb\x70\x4a\xa1\x1a\x9f\xcd\x3f\x9f\xa2\x23\xad\x29\xa9\x00\x09\x77\xb6\xa4\xd1\xa5\xb3\x78\x2a\xa9\xdd\x55\x39\xe3\x97\x2d\xb6\x66\x98\x25\x83\xab\xb5\xe4\xd1\x01\x75\x89\x34\xcc\xd6\x55\x3f\x99\xda\x84\xec\x1f\x4e\xa7\x0d\x89\xdb\xed\xd3\x67\x57\x9b\x53\x68\x14\x4f\x8f\x64\x1a\xf5\xc6\xdd\x07\xa5\x3b\xc1\x46\xf1\xec\x9e\x6a\xa3\x78\xfa\x1e\xc8\xdd\xf9\xc6\x8b\xe2\xa3\x8e\x63\xd9\x8f\x51\x30\x27\x13\xec\x6e\x79\xc7\x88\x85\xd1\xf6\x33\x57\x11\x53\x90\xac\x13\xea\x03\xe0\x58\xed\x7d\xe6\x0c\x51\xeb\x51\xe9\xb7\x67\xf1\x6e\x57\xf6\x66\xaf\xa8\x60\xd3\x41\x56\xba\xf8\x06\xd6\x87\xac\x80\xcd\xc7\xc6\xd2\xbe\x74\xe4\x0b\x4f\xbc\x69\x75\x59\xd8\x03\x72\x93\x29\x31\x19\xdc\xdc\x54\x37\x87\x56\x53\x3c\xcb\x33\x33\x75\x70\x7d\xae\x5c\x6e\xae\x0e\x58\x96\x10\xca\xa9\x85\x80\x51\xbb\x9a\x61\x3a\x78\x9c\x85\xcd\xef\xa3\x99\x9b\xbe\x18\xac\x13\x03\x98\xc0\xd5\x5d\x30\x58\xc7\xda\x0b\xf4\x56\xc1\x60\x37\x88\xc3\x6e\x0c\x16\xbb\x41\x3c\x76\xa3\x31\x59\x2b\xcf\x33\xe0\x32\x78\x7a\xe1\xb2\xf4\x11\x02\x70\xb7\xdc\xdb\xaa\xc2\x2b\x1e\xaf\xdc\x4b\x5e\xa6\x8c\x59\xdd\x17\xa0\x32\xcc\x5b\x9b\x6e\x85\xa2\x0f\xbe\x88\x7d\xf7\xb9\xb9\x69\x15\x9b\x0d\x0f\xd9\x24\x16\xb7\xf7\x6d\x55\x5e\x8e\xd4\x2c\x93\xba\x34\xac\xaf\xdb\x85\x54\x68\x6d\x3e\x6a\x48\xd4\xeb\x00\xc1\xb8\x63\x5b\x3b\x55\x07\x55\x40\xf0\x38\xd4\xa4\x43\x56\x65\x91\xbc\x7f\x75\x50\x9e\xb2\x03\x6c\x84\xaa\x2d\x5b\x6c\x8b\x27\x74\xa8\x02\x40\xcf\x05\xfa\xcb\xd9\x8a\x11\x75\x2f\xe1\xac\x81\xaf\xb7\x7d\x87\x08\x42\x13\xa1\x6d\x91\x2b\xb8\x63\xef\x2e\x85\x5d\xbd\xa9\xa7\xea\xe8\x55\x99\x23\xbd\x9a\xf4\xfb\x60\x12\x30\xed\xbb\x69\xc2\xfd\x4a\x46\x66\x93\x8e\x60\x8b\x6e\x6e\x0a\x82\xfc\x7b\xc0\x2e\xbf\x59\xd1\xf4\xe5\x7a\x7b\x1b\xd1\x39\x8b\x5e\x01\xde\x31\x48\xbe\xeb\x3a\x3b\x1e\xcc\x7a\xdd\x70\xc8\x70\x7e\xe8\x30\x30\x32\x0e\x27\x11\x0b\xf5\xb8\x3d\xcf\x9b\xeb\x11\x9d\x97\xfa\x84\xc9\x91\x5f\x7e\xfe\xbb\x9d\x28\x68\x47\xcd\x82\x7a\x1f\x0b\x5c\x70\xe3\x7a\xeb\x4b\xd2\x73\xd0\xcb\x6a\xef\xb6\x7d\xb5\xf9\x82\xda\x17\xd3\xad\x70\xd0\xa7\x8e\x2d\x16\x2c\x30\x11\x94\x46\x53\x10\x01\x5a\x35\x61\x69\xa5\x7a\xcb\x3d\xa6\x2e\xa4\x18\xd9\xf8\x03\x34\xbf\x62\x7c\x89\xd1\x89\x2c\x64\xb2\x66\x55\x1d\x44\x4b\x35\xe7\xe2\x81\xc3\x50\x07\x4c\x51\xc5\xe5\x29\x04\x78\xe3\x91\x7f\x1c\x04\x32\x13\xbb\xf0\x5d\xd7\xe5\x0f\x7f\x35\xfe\xab\x82\x92\xdb\xfb\xf4\x68\x32\x29\x89\x65\x98\x27\x61\x02\x66\x2e\x47\xcf\x06\x18\x1d\x68\x17\x57\xdc\x7a\xda\x7a\xe9\x92\x09\x29\x3b\x85\x34\x3f\x65\x79\x00\xea\xdb\x7c\x34\xb8\xc9\x63\x40\xde\xdd\x65\x93\x02\xd9\x03\xf6\x5e\xd0\x26\x05\xc4\x35\x26\x4e\x8d\xe3\x27\xcf\x35\x91\x9a\xf9\xed\xb8\xf9\xfd\x18\x3b\xb2\x83\xfa\x81\xf4\xe5\x92\x48\x5f\x4e\x89\xd4\xef\x57\x27\xaf\xf4\x9f\xbb\xd3\x25\x39\xa9\xd0\xb8\x21\xd6\xb7\xf0\x1c\x93\x49\x87\xd4\xa1\x9f\xc2\xba\x50\x37\x1a\x14\x72\x88\x32\x09\xf3\x1b\x8d\xec\xe5\xe7\xf8\xe2\x74\xbf\xc1\x67\xda\x7d\x76\xd3\x66\x35\x55\x1e\xec\xdb\x66\xa5\x54\xdc\xcf\xc8\xf6\xcd\x6c\x36\x2d\x8c\x48\x8d\x96\x35\x7d\x3c\x74\xd3\xe6\xa9\x5b\xc7\x9b\x8f\x33\xaa\xad\x99\x5a\xc9\x70\x07\xda\xf3\x1e\x3f\x78\x5a\x9a\x83\x4b\x86\xcb\x61\xd6\xed\xf8\x15\xe9\x3e\x31\x5f\x3a\x6b\x28\x11\x5e\xee\x14\x7c\xb8\x43\xec\xc5\xce\xf6\x25\x1b\x2f\xc7\xe4\xeb\xb3\xd9\x01\x99\x7e\x98\x1d\x10\xa6\x82\xf1\x2b\xf2\xde\x54\x30\xeb\x90\x20\x4c\x1f\xfa\xd4\x5e\x5e\xed\x6b\x26\x62\x09\xae\x2d\xff\x5a\x1a\xd7\x98\xaa\xd5\x0e\xfb\xb8\x3f\xd5\xed\x9f\x63\x1b\xbb\x76\xb0\xdb\xc2\xe0\xee\x20\x4c\x73\x9c\x6f\x15\x2e\xd3\xee\x45\xdf\xcd\x20\x84\x8d\x97\x47\x64\x44\xd8\x03\x0d\xd4\x11\x39\x5c\x48\x09\x15\x49\x21\xb7\x10\x39\x9c\xd3\x84\x5c\x5c\xce\xce\x8e\xd0\x27\x82\x09\x95\x6c\xc9\xba\x8b\xb8\x5c\x5e\x9c\xff\xc9\xe0\xb1\x2d\x61\xff\x3f\x7b\xff\xbe\xdc\xb8\x8d\x2d\x0a\xe3\xff\xff\x9e\x02\xe3\xde\x55\xee\x3e\x3f\x4b\xee\xce\xa5\x27\xe3\xd4\xd4\x57\x6e\xdb\x9d\xa8\xe2\xb6\x75\x6c\x77\x32\xbb\x46\x39\xde\x10\x09\x49\x38\xa6\x00\x0e\x41\xca\xd6\x64\xf2\x55\x1e\x64\xcf\xcb\xe5\x49\xbe\xc2\x5a\x00\x09\x92\xe0\x45\x6e\x3b\x73\xd9\x64\xd5\x4c\xda\x22\x88\xcb\x02\xb0\xee\x17\x8e\x49\xdb\xc9\x6c\x0f\x06\x41\xfd\x87\xfe\x13\x47\xb1\x7c\x7a\x63\xfd\xbf\xe2\xd9\xd0\x88\x87\x34\x17\x53\x31\xe5\xbc\x16\xaa\x79\xea\x8b\x3a\x2e\x9e\x3e\x67\xae\x7c\x08\x34\x88\x21\xcb\x70\x29\xbf\x1d\x00\xde\xe6\x1a\x36\x4e\x0c\x1d\xe8\x76\x92\x82\x33\xe1\x9c\x59\x40\x18\x09\x58\xb3\xe0\x47\x16\xec\xa6\xea\x32\x4d\x57\x58\x6e\xf9\xc8\xe6\x88\xe8\x23\xb0\xe1\x51\x83\x59\x41\x77\x11\x14\x23\xb5\x5b\x58\x74\x3d\x32\xf0\xfe\xa4\x11\xb0\x8f\x56\x60\xef\xc0\x69\x12\x03\x80\xa7\x65\x82\xe2\xa6\xcc\x58\x8f\xef\xb4\x0f\x31\x24\xfd\x10\x52\x77\x57\x3c\x58\xf7\xa4\x99\x93\x93\x0f\xd3\xbe\xb6\x4b\x40\x46\xcd\x73\x77\xb1\x14\xb5\xa7\x3e\x80\xd9\x62\x48\xaa\x0c\x01\x47\xc1\x90\x79\x2e\xf3\xc6\xc2\xae\xf8\xb8\x65\x1c\x4a\xc5\xc8\x4d\x1d\xa8\x5c\xb3\x8a\x93\xe6\x4e\x24\xb4\x1e\xa7\x4d\x96\x04\x4b\x90\x6e\xb4\x79\xdb\x62\x0c\xea\x75\x12\xf5\xd2\x76\xa0\xf3\xc0\x99\x48\xe1\x42\x09\x80\x12\x40\x8e\x37\x32\x59\x38\x95\xce\xbb\x49\xc4\x8d\x06\x30\xba\x30\x83\xdf\x14\xe4\x93\x29\x55\xc3\xce\x53\xc9\x50\x92\xb2\x60\x25\x78\x40\xbd\x55\x9e\x8a\x07\x84\x7a\x54\x5c\xf1\x75\x2c\x55\xe1\x5c\x8a\x85\x0c\xf6\x55\x91\xa2\x72\xc1\x13\x76\x4f\x23\x7f\xb2\xbd\xe2\x41\x6c\x61\x54\x0a\x98\xe8\x52\x12\x26\x8a\x72\xc8\xe0\x3f\xd2\x7d\x35\x3a\xb5\xcf\xd0\xec\xd3\x37\x43\x77\x33\x26\x6e\x98\x73\x97\xf2\x36\xcf\x5c\xfc\x15\x3a\x1e\xc2\x0a\xa1\xaf\xb3\x60\x25\xc9\x15\x12\x6d\xf2\x92\x8f\xd9\x98\xc4\x5c\x2c\x55\xbb\xf6\xb6\xd7\x7a\x7b\x20\x83\xd8\x1f\x9b\xd0\x00\x90\xc9\xd4\xc6\x28\x7c\xb2\x4b\x43\x49\x34\x43\x7e\xdc\x85\xf2\xd4\xea\x74\x1b\xa1\xd0\x03\x02\x0d\x5e\xe6\x0d\x8b\xb3\x69\x88\x1d\x5f\xb3\x22\xfb\x87\x93\x0f\x25\xaf\x23\xd2\xbe\xb8\x4f\x42\x1a\xe0\xd0\x8f\x99\xa1\x5a\x8f\x6b\x31\xc3\x69\x5f\xaa\xd8\x97\x2c\x95\x9d\xe4\x8b\xf9\x98\xe8\x08\xd4\x37\xdf\x31\x13\x0a\x48\x62\xca\x93\xe6\xcc\xdb\xc5\xa3\xc5\x5a\x53\xfd\xc7\x85\x29\x9d\xcb\x2c\xed\x41\x48\x9e\x4a\x72\x14\x32\xd5\xb7\xaf\xdf\xc9\xb8\xc0\xc6\x1d\xb6\x68\x68\xd2\xee\x13\x32\x10\x8c\x81\x60\xfc\x6b\x13\x0c\x21\x53\xcb\x56\x35\x82\xa5\xdd\x5e\xdc\xd3\x52\xdc\xcf\x46\x5c\x73\x65\xb2\x2c\x5f\x87\x37\x93\x69\xd6\x0c\xb0\x8e\x7b\xdc\xc3\x28\xfd\x38\x73\x74\xfc\xcf\x0a\xdc\xd9\x9e\x0b\xdb\x27\xa4\xfd\x35\xb5\x2c\x44\x02\xb8\x9c\x80\x85\xc9\x18\x4e\x3d\x4f\xda\x5c\x73\x8c\x5f\x99\xd9\xe7\x33\xf0\x7f\xbf\x82\xe0\x0d\x1b\x8a\x80\xbe\x33\x2f\xe7\x2c\xa0\x99\x32\xde\x1c\x1d\x8e\xc1\xf9\x14\x03\x96\x40\x1f\xb9\x47\xc8\x2b\x34\x27\xda\x8c\x82\x25\xff\x96\x2e\x12\x8b\x8e\x2f\x47\xae\xef\xc6\x81\xeb\xb9\x81\x7f\x80\xa4\x52\xfa\x6b\xf3\xb6\xf8\xfb\xfa\xe4\x06\xdf\x36\x0f\x63\x7a\x3c\xe7\x29\xb3\xee\x21\x50\x46\x00\x0e\x88\x35\x29\x60\xaa\xf5\x37\xa3\xcf\xbe\xfc\xb2\xc5\xc6\xf6\x7c\xc7\x5e\x35\x25\xb7\xc3\xa7\x6c\x26\xc8\x93\xdb\xf5\x08\x95\x68\xa8\x56\xe1\x8e\x3a\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\xfe\x15\x0f\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x34\xad\x64\xc0\x65\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\xd4\x9f\x21\x4a\x62\x88\x92\xc8\x9f\x21\x4a\x62\x88\x92\x78\xfe\x28\x89\x96\x8a\x3b\x5a\xc6\xc0\x7c\x67\xbe\x77\xed\x1d\xb7\x9c\x72\x93\x1d\xef\x11\x69\x0e\xcd\x97\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\xc8\x73\xd8\x8c\x1a\x87\x3c\x87\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\x07\x0b\x7e\xf1\x0c\x16\x7c\xe7\x19\x2c\xf8\x83\x05\xdf\x3c\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\xe0\xb2\xc1\x82\x3f\x58\xf0\x07\x0b\xfe\x60\xc1\xaf\x3f\x83\x05\xbf\xfa\x0c\x16\xfc\xc1\x82\x5f\x7d\x06\x0b\xfe\x60\xc1\xcf\x9f\xc1\x82\x3f\x58\xf0\x87\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x48\x86\x3c\x87\x3d\x47\x18\xf2\x1c\x0e\x79\x0e\x87\x3c\x87\x43\xda\xaa\x21\x6d\xd5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x6c\x9e\xff\x90\xe7\x70\x20\x18\x03\xc1\x18\xf2\x1c\x0e\x79\x0e\x4b\xcf\x90\xe7\x70\xc8\x73\x58\x79\x86\x3c\x87\xcd\x02\xe4\x90\xe7\x70\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x68\x59\xf1\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xd3\x4a\x06\x5c\x36\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\x44\xfd\x19\xa2\x24\x86\x28\x89\xfc\x19\xa2\x24\x86\x28\x89\x7f\xc7\x3c\x87\x7d\x6c\x61\x75\xcc\xd5\x6d\xff\x5a\xa0\xe9\xb2\xe0\x35\x7d\xb3\xce\x94\xab\xcd\x37\x87\x0e\x93\x05\x4a\x51\xd2\x72\x37\x2c\xc9\xbf\x2b\x90\x90\xb1\x6b\x1d\x97\xba\x51\xcb\xbd\x2c\xbc\xbd\x53\x9b\xe3\xb1\x81\x99\x47\xff\x16\xcc\x9a\x07\x62\x8b\xee\x14\xf4\xfc\xe1\x18\x25\x99\x5c\x0f\xb3\xe2\x4b\xcd\x16\xce\xf6\xa0\xbf\xd9\x1e\x1c\x60\xd3\xd6\xd7\x35\x5d\x68\x96\x26\x05\x94\x09\x1d\x44\xf2\x9e\x25\x38\x1b\xf4\x17\x72\x26\xa7\x88\x5c\xf3\x34\x65\xe1\x81\x96\xc8\xd1\xd5\xdc\xd7\x69\x20\x85\xe2\x98\xb2\x12\x25\xee\xd9\x1e\x17\x0b\x2e\x78\xca\x66\x7b\x64\x44\xc0\x4b\xc5\x59\x8e\x15\x71\xcc\x3c\x49\x44\x55\x3a\x26\xf9\xca\xbc\x20\xd1\x73\xe5\x21\x13\x29\x0f\x68\x64\x26\x58\xed\x87\x0b\x42\xa3\x78\x45\x45\xb6\x66\x89\xd3\x0e\x0e\x80\xaf\x57\x63\x16\x34\xc2\x21\x9a\x62\xbd\x8a\x4d\x3c\x1c\x22\x5b\xcf\xeb\x72\x7b\x9c\xb0\xd3\x8b\xe3\x9b\xae\xe3\x31\xc5\x66\x84\x8b\x90\x07\x28\x93\xe4\x6e\xd1\x2b\x9b\x86\x12\xa8\x17\x57\x16\x50\x73\xb6\x90\x7e\xc4\x43\xc5\x96\xe8\xee\x1a\xe7\x3a\x97\x32\x62\xf5\xac\x9a\x2d\x54\xa7\x22\x95\xdf\xb8\x12\x1e\x9e\x6a\x47\xce\xb3\x17\x2d\xe6\xc1\x1d\xfe\x9f\xcc\xbc\x08\x48\xaf\xad\xc2\xb1\x3b\x27\xc1\x38\x71\x3b\x7b\x98\x4a\xa3\x60\x6a\x91\x3b\x8a\x79\x28\xb2\x90\x51\x24\xef\x11\x6a\x28\x7c\xe6\xe2\x18\xd2\x85\x3f\xa2\x6c\x82\x17\xfb\x36\xe2\x29\x4b\x68\xa4\x7f\xf1\xf5\x3c\x9b\x91\x11\x06\x31\xe8\x53\xbd\x8e\x69\xc2\x95\x14\x07\x04\x22\x99\xac\x50\x61\xbb\x5c\x48\x49\xe6\x34\x01\x41\x27\x1f\xee\x77\x3b\x0e\x57\x8c\xa7\x45\x22\xf6\x97\x8c\x46\x5f\xa3\xdf\x9d\x25\x74\x7c\x61\x28\x1c\x57\xd0\xc6\x2a\xed\xf2\x21\xfd\x48\xe4\x27\x98\x07\x2d\xbc\x45\xe6\xc5\x3f\x03\xfc\xe7\x78\x3c\x26\x3f\x3b\x33\x48\x93\x8c\x59\xf7\xf9\xdc\x03\x0d\xc7\xf8\x13\xf1\x7b\xbc\x1a\x6d\x65\xc7\x50\xc5\x5c\xf5\x02\xb8\xe8\x31\x39\xdf\x60\x3b\xce\x17\x06\x6b\x9b\xa0\x7f\x4b\x9c\x39\x6b\x81\x16\xfa\xbb\xd5\xa4\xe3\x55\x31\xf4\x4d\x3e\x32\x4d\x8b\xdd\x71\x76\xe6\x77\x70\x48\xbd\x44\xd7\x74\x91\x6b\x36\xe4\x02\xda\x82\x68\x0b\xff\xcd\x5e\xbf\xfe\xec\x2d\xfe\x3f\xbe\xc9\xbf\xb9\x5e\xc9\x24\x1d\x05\x3c\x09\x32\x9e\x02\xe3\x62\x3e\xf2\x0d\xf4\xb7\xbf\xb5\x7e\x0d\x2a\xd0\xf4\x25\xb6\x79\x95\x37\x8a\x69\xc2\x04\x26\xbb\x5d\x26\x32\x8b\x35\xb7\x36\x9b\xa5\x34\x8a\x5e\x7a\x55\xd9\x26\xfb\x2a\x3a\x27\xe4\xf8\xc2\xf6\x66\xcf\x30\x8d\x22\x47\x42\x85\x0b\x7a\x8e\xe7\x01\x59\xb0\x06\x24\xa7\xaf\x36\xe2\x19\xeb\xbf\xe5\xe2\x77\x75\x40\x46\x07\xe4\x16\xe0\x70\x38\x26\xd7\x70\xe5\x88\xb9\x72\x8d\x9d\xae\x65\xc2\x48\xac\x99\x53\xa5\xf8\x86\x91\x39\x7a\x1e\x6f\xad\x66\xc4\xe8\xac\x08\x53\x01\x8d\x19\x09\x56\x34\xa1\x41\xca\x12\x33\xed\x33\x74\xe0\xf4\x5e\x86\x97\x40\xa5\xd6\x34\x64\xa3\x2c\xc6\x63\xa1\x5e\xe5\xe8\x08\xc2\x5d\x0c\xea\xb8\x67\x73\xcd\xfd\x32\x83\x3c\xdc\x1d\x0f\x59\x1c\xc9\xed\x9a\x09\x2f\x3a\x35\xdf\xc7\x89\x0c\xed\x21\x85\x7e\xf5\x9d\x02\x9c\x94\x48\x91\x32\x11\x3a\x47\x9d\x06\x77\xe6\x87\x9f\x75\xf3\xa2\x7f\xf2\xbb\x3f\x36\xdd\x80\x90\x6d\x6c\xf7\xbf\x23\x95\x5b\xe0\x43\x65\x6d\xcc\x53\x59\x97\xd0\x97\x2b\xbc\xf6\x7e\xf5\x6c\xac\xa1\x99\xa4\x15\x35\x76\x65\x10\x41\x5f\xd9\x83\xa6\x82\x5a\xb3\xe0\x00\xee\x57\x10\x46\x59\xa2\xf9\x8e\x43\x87\x49\x34\xed\xc5\x53\xfa\xde\x49\x93\x69\xfa\xc0\xfc\xa5\x85\x9a\x31\x41\xf7\x29\xa0\x26\x0f\xb1\xe6\xa8\xd2\x68\xeb\xc8\x34\x2f\x21\x4b\xb6\xd7\x2f\xce\xc1\xa3\x82\x04\x09\x33\x5e\xdb\xca\xdc\x6e\x99\x10\xc1\xa3\x57\x07\xd6\xf3\x3a\x64\x0b\x9a\x45\xa9\x22\xb8\x2c\x0d\xba\x24\x6c\x90\x69\x52\x49\xee\x35\xae\x9c\x98\x5c\xe6\x7a\x12\x67\x4e\x5a\x73\xe0\x5b\x2d\xfe\xcc\x53\x46\x83\xc3\x10\x69\x0a\xde\x34\xe3\x13\xae\xf0\x8e\x8d\xc8\x9f\x0d\x2b\xa7\x27\x64\x47\xfa\xf1\xc0\x90\x08\xcd\x18\x83\xe6\xb1\x34\xb0\xf7\x1e\x73\x11\x44\x59\x68\x55\xf3\x01\xd5\xcc\x32\x74\x50\x74\x43\x90\x48\x0b\x99\x2f\x09\xba\x7b\xa5\x67\xe2\x97\xb5\xdc\xc9\x9d\xf9\xe7\x56\x82\x88\x46\x4c\x45\xf7\x5e\xe1\x0e\xda\x35\x2e\xfd\xa0\x73\x40\x5f\xa7\x20\x19\x37\x6d\x13\xe2\xc0\x1f\x8c\x58\xec\x88\x27\x09\xa3\xfa\x36\x05\x77\x84\x2e\x29\x17\xde\x23\x8b\xc7\x04\xd5\xa9\xd1\x3d\xdd\xaa\x9a\xd3\x2c\xda\x39\x0f\x88\x60\x1b\x96\x94\x4e\x9d\x57\xab\xd9\x33\x1b\x7d\x01\x05\xc2\x80\x74\xe4\x16\x81\x58\x2a\xc5\xe7\x91\x1d\xb8\x70\xe4\xd0\x1f\x5c\xc7\x2c\xf0\x8b\xdd\xb8\x90\x66\xd7\x96\x76\x01\xbf\x51\x76\xf6\x8b\xdc\xf5\x5f\x81\x72\x84\xae\xc1\x4e\xa5\x32\xa1\x4b\x66\x7f\x52\x29\x4d\x33\x04\x0c\xea\xad\x59\x78\xe1\x68\x14\xef\xb8\x08\x35\x36\xb2\x20\x8d\xa3\x2c\xa1\x51\xf1\x4b\x20\x05\x9a\x90\xd4\x11\xf9\xf3\x8f\xfa\x17\xdd\x3f\x0b\x4d\xf4\x97\xf9\x75\x26\x46\xa3\x51\xfe\x1f\x1a\x73\x1b\x4b\x46\x68\xcc\xd9\x43\xca\x04\x34\x1e\xdf\x7d\xa5\xc6\x5c\x1e\x6e\xde\xcc\x04\x0e\x7c\x92\xa9\x54\xae\xaf\x18\xaa\xc5\x4f\x19\x08\x8a\x80\xb4\x4b\x11\x5b\x9a\xd6\x1c\x11\xf4\xfb\x13\xe8\x40\xa7\x58\xaa\xc6\x41\x12\x8e\xe3\x44\x6a\x70\x04\x80\x87\xc6\x32\x59\xce\x84\x46\x70\xf0\x1d\x70\x2d\x47\xa4\xa1\x59\x59\xb7\x8a\x13\xf2\xfb\xfa\x45\x5c\xa5\xdf\x79\xdf\x9f\x73\x95\x96\x21\x57\x9b\xa5\xd9\x16\x2e\x96\x59\x44\x93\x7a\x03\x00\x6a\x20\xf5\xce\x9e\x44\x99\x4a\x51\xaa\xdc\x58\x00\xeb\x3f\x46\x06\x02\x1a\x70\xd0\x59\xb0\x62\xeb\x22\x98\x4d\xc6\x4c\x1c\x4f\x27\xdf\x7f\x7e\x5d\xfe\xbd\x72\xf6\xab\x73\x2f\x3b\x09\x83\x3d\x8c\x26\x73\x9e\x26\x34\xd9\x92\xc9\x94\xa8\x6c\x3e\xb2\xd3\x3c\x3c\x99\x9c\x5e\x95\x10\x0f\xea\x31\x56\x1a\x55\x21\x77\x03\x32\x2c\x08\x60\x88\x8b\x52\x89\xf1\x2a\xc6\xf8\xb8\x26\x1b\x4e\x1d\x37\x10\x34\xf0\xe1\xa7\x6e\xbf\x72\x51\x9f\xa8\xb5\x12\xe5\x4a\x1b\xf7\xae\x35\x68\xd2\x9d\x53\x58\xbe\x5a\xe5\x00\x7c\x0d\x37\x63\x0d\x45\x07\x61\xc4\x06\x06\xfc\x2c\x34\xb0\x46\x74\x00\xc8\xcd\x50\x26\xea\xd3\x96\x69\x10\x0a\x73\x41\xc7\xc0\xb7\xb0\x44\x59\xc9\x36\x90\x62\xc3\x92\x94\x24\x2c\x90\x4b\xc1\xff\x9a\x77\xae\xac\x7d\x16\x6a\x63\xd4\x78\x3d\x2e\x52\x96\x68\x0e\x07\x30\xd3\x01\x20\xe2\x35\xdd\x92\x84\xe9\x61\x48\x26\x9c\x0e\xad\x77\xc8\x07\xcd\xd9\x72\xb1\x90\x47\x90\x1a\x45\x1d\x1d\x1e\x2e\x79\x6a\x2f\x60\x20\xd7\xeb\x4c\xf0\x74\x7b\x08\x56\x23\x3e\xcf\xf4\x96\x1c\x86\x6c\xc3\xa2\x43\xc5\x97\x23\x9a\x04\x2b\x9e\xb2\x20\xcd\x12\x76\x48\x63\x3e\x82\xb9\x0b\x40\x04\xe3\x75\xf8\x22\x31\x37\x56\xed\xfb\xd0\x56\x1d\xdb\xc1\xe5\x6a\xdb\x06\x7d\xbb\x4c\x3c\x21\xb2\xee\xc8\x7b\xe4\xd0\xb6\xf4\xf7\xea\xec\xfa\x86\xd8\xd1\xbd\xb1\x97\x08\xfc\xe2\x4b\x55\xec\x83\x06\x1a\x17\x0b\xcb\x64\x81\x7a\xda\xd5\x49\x20\x85\x8f\xb8\x87\xdf\x56\xd9\x7c\xcd\x53\xe5\xe4\xd4\x90\x63\x72\x02\xc1\x99\x9a\x72\x65\x71\x48\x53\x16\x8e\xc9\x44\x90\x13\xba\x66\xd1\x09\x55\xec\xd9\x77\x01\x38\xcd\x91\x86\x6d\xdf\x7d\x68\x88\x83\x6d\x52\xf0\xe6\x88\xb4\x61\xdb\xaa\x17\x55\x93\xc9\x72\x38\x86\x8d\xde\x29\xe2\x65\x29\x69\xf6\xa4\xb6\x1b\x5b\xa1\xa4\x2d\xb6\xb2\x06\xef\xe2\x5a\x19\x1d\xeb\x00\x35\x99\x12\x8b\xd2\x10\x83\xcd\x59\x24\xf5\xd9\x92\x46\x6d\xc4\x7c\xa6\xa2\x66\xe6\x62\x20\xef\x4f\x46\xde\x57\x52\x15\xf6\xfc\x67\x20\xed\xae\x57\x7e\x95\xac\xbb\xef\xea\x24\xbd\x34\xb3\x2a\x39\x77\x5f\x3e\x27\x29\x1f\xc8\xdc\x40\xe6\xdc\x2d\x18\xc8\xdc\x6f\x46\xe6\x5c\xec\xd0\x8f\xc4\xd5\x71\x4d\xf1\xec\x4e\xe4\xd8\x43\x0c\xa1\x63\x93\x69\x1f\xbd\x92\xde\x69\xf3\x41\x39\x42\xe5\xe5\x64\xba\xf9\x02\xae\xd5\x64\xba\x79\xfb\xca\x4a\xb8\xf6\x58\x78\xc5\xd7\x09\xaa\xcb\x27\xfa\x6e\x2e\x68\xc0\xc0\x2a\x36\x9b\xed\x55\x0c\x10\xb9\x1e\x08\x24\xfa\x48\xca\x3b\xab\x88\xe3\xf6\x4b\xaf\xfe\xd5\xba\xd5\x38\x91\x33\x93\x69\xc9\x71\x03\x2b\xc2\x81\x69\xcc\x68\x18\x00\x89\xd0\x74\x0c\x8e\x90\x5e\xa2\x3c\x9b\xa5\xa0\x96\xc8\x54\xcd\xa3\xb2\x12\x1e\x0a\x41\x3b\x79\x51\x3d\x99\x18\x25\x9a\xaf\xd3\x6a\x81\xb9\xd9\x4c\xf7\x67\x2a\xcb\xe5\xeb\x37\xc8\x4f\x95\x47\xe5\xc2\x1f\x7c\x9a\xcb\x5d\xee\x3e\x8d\x21\x5a\x4c\x93\x95\x92\x87\x1b\x7a\x26\x9e\x15\x47\x01\x95\x0e\xbe\x6e\xb9\x42\x0d\x27\xa6\x27\xa1\x29\x89\xb3\x24\x96\xfa\xa6\xbe\x9c\x2c\x4c\x96\xbf\x15\x2b\xb6\x46\x8f\x63\x7d\x66\xda\x53\x44\x58\x6d\x9f\x64\xb8\xfd\x11\xa3\x89\xc8\xb7\xcd\xec\x60\xd1\xaf\x9e\x40\xa6\x40\x23\xdd\xe8\xad\x3d\x9b\xa5\x76\x3b\xc6\x5e\x7d\xf2\x93\x33\x5f\xa4\x98\xa1\x3e\xce\xdd\x57\xea\x0c\x33\xaa\xe9\x73\xff\xbf\x50\x99\x6e\x2c\x1d\x00\xb4\x72\x94\xfa\x39\x17\xd9\x43\xfb\xa9\xcf\x6d\xbd\xf9\x81\xfe\x1a\x8e\xde\x3a\x4e\xb7\x63\x52\x0c\xe3\x9a\x87\xd1\x56\xca\x55\x2b\x66\xd1\xcf\x52\x6e\x58\x22\xd0\xca\x92\x3b\xee\xc8\x03\xe3\x37\xaa\xa7\x9d\xc8\x6c\x89\x1e\x05\x56\x69\x6a\x38\xe2\x42\xbc\xf6\x2a\x99\x71\x73\xe1\x5c\xea\x86\x79\xea\x0e\x3d\xd5\x0b\x19\x22\x5a\x80\x33\xf9\x35\x61\x7a\xfd\x78\xb1\x43\x7d\x48\x36\x78\x11\xfd\x51\xcb\x45\x90\xe8\x06\x2a\x40\x6e\x0b\xf0\x1d\x10\x57\xfd\x2a\x15\xfa\xbf\x1e\xa6\x12\x7c\x2a\xf5\x5c\xac\x86\xc2\x6f\xd4\x8f\x64\x40\xa3\x3c\x18\xd2\xa8\x2c\x27\x0b\x52\xc2\x67\x16\x97\x39\xfb\xdb\x0b\xd4\x70\x91\x2c\xbc\x4b\x4e\x52\xb0\x7c\xc0\x27\x7a\xed\x86\xd7\x02\xc8\x39\xe0\xf7\x22\x19\x7b\x8c\x8a\x3b\x94\xc3\xba\x34\x67\x38\x82\x23\x72\xaf\xd1\x5c\x19\x39\xfb\xf1\x01\xea\x4f\x47\xa5\xed\xf7\x0c\x96\xc7\xaf\x14\xaa\x58\x7d\xb3\xbd\x9d\x0a\x17\x19\x41\x56\xc5\x04\x5c\x14\x0e\x3c\xb3\xca\xa7\x70\x40\x28\x60\x8d\x3a\xfb\x47\x8c\x05\xd9\xa5\x5d\x79\x85\xc7\x22\xe7\x0c\xba\xe0\x6b\xa1\x23\xc1\x6c\x4c\x66\x14\x45\x5e\xaa\xcc\x8f\x61\xa8\x22\xbf\xfe\xf2\xdf\x2c\x5d\xbd\xfe\xf5\x97\xbf\xbf\x32\xde\xe3\x60\xd8\x63\x21\xd1\xb3\xfe\x9a\xf0\x94\x70\x25\xf6\xd3\x42\x0b\xdc\x4d\xc7\x09\x5e\xe5\x38\x91\x9a\x77\x71\x0e\x00\x42\xd8\xc1\x09\xe5\x53\x58\xcc\xd9\x4b\x71\xad\x8b\xff\x11\xae\x14\x22\x6a\x80\xf7\xc1\xa8\x1b\xb4\x0b\x69\x7e\x6b\x1d\x47\x6c\xad\x4f\x1a\x22\xfa\x02\x6d\xb8\x93\x56\x5f\xfb\xf7\x8e\xa7\x9c\x46\xd1\x96\xfc\x5f\x0d\xe1\x38\x61\x23\xf0\x47\xc9\xad\x2c\x53\xbd\x45\xcc\x64\xbe\xcc\x91\x7e\x90\xad\x9b\x24\x02\xfd\xd8\xea\x9b\xc8\xde\x9b\x2a\x9f\x52\x78\xd5\xf5\x6d\xa8\x5b\xf8\xd3\x1e\xd5\x64\x7a\xdd\xce\xf8\x7a\x82\x33\xd0\x62\x6b\xc9\xbd\x99\x31\x34\xe0\x5a\x46\x16\x5e\x60\xb7\x4d\xa2\x29\xc6\xac\x62\x4d\xd0\xa4\xbe\xc4\x0d\x5a\x7a\xbd\xaf\xcc\xcd\x35\xe1\x4f\x36\x0d\xa6\xd7\x13\x74\xce\x8a\x22\xb4\xe0\xba\x94\x33\x1b\x66\xc3\xd1\xe0\xb2\x0b\x6d\xec\xf4\x2f\x16\x7e\xd2\xd7\x0d\x99\x02\x3e\x1d\x9f\xb7\xc6\x36\xfd\x33\xa5\xb7\x79\xae\x6c\x26\x1d\x0e\x97\xa2\x01\x5d\x8f\x00\xb8\x0d\x6f\x5a\xf2\x15\x3d\xda\x4d\x33\x36\xe5\x91\xbb\x8e\xfb\x71\x11\x47\x88\x17\x8e\x03\x95\x5b\xd4\x0a\x2d\x9b\x49\x34\x67\x81\x2b\x7c\x8b\x35\xa1\xcd\x25\x10\x53\x11\xd9\x74\x52\x78\x3a\x5a\x81\x00\x5d\xf8\x9a\x3a\x45\xe7\xdc\x38\x66\x34\xc9\x9d\xe7\xc0\xf7\x9b\xe4\xf3\x2a\xec\xcb\xb6\x67\xeb\x04\xc9\x2a\x05\xa5\x5b\x45\x80\xb8\x29\x7d\xc5\xa0\x28\xfc\x0d\x14\x85\x3c\xa6\xeb\x79\x24\x83\xbb\xe7\xd0\x12\x4e\xa6\xc7\x1f\xde\xe9\xce\xab\x2a\xc2\xfc\x45\x5d\x3f\x58\x4c\xa8\xaa\x1c\xcc\xdf\x0c\x9a\xc1\x41\x33\x38\x68\x06\xff\xed\x34\x83\x39\x52\xe8\xa5\x16\x14\x55\xec\x52\x3c\xbb\x2b\x05\xb5\xb4\xa1\x61\xe7\xa1\x36\x6d\xb4\x86\x46\x5a\x1a\x69\xca\x27\xdb\x45\xbf\x5a\xd8\xad\x17\xe4\xe6\xf2\xf4\xf2\x08\xf3\x12\x88\x2c\x8a\xe8\x1c\x69\xf8\x9a\x8a\x0c\x64\x0d\x1a\x86\x40\xca\xc7\xe4\x07\x66\x51\x02\x9e\x1b\x92\x07\x2f\x26\xa3\x25\xf3\x0a\x17\x2f\x34\x8a\x58\x51\x11\x46\x8c\xfc\xf9\xc7\xff\xa5\x0f\x2b\x02\x27\xda\x9a\x08\x63\xaf\x34\x65\x27\xd2\xc4\xa4\xb5\x70\x45\x34\xc5\x23\xe9\xe5\x8b\x3e\x81\xf1\xc6\x45\xdc\x72\x3f\x5b\x48\x7a\x71\xdf\x8a\x69\x82\x4c\x13\xdf\xee\x9b\xd9\xef\x96\x0f\xb8\x0f\x9b\xdc\x15\x5f\xf4\x68\xfe\x33\xe0\xa1\xcf\x07\xb4\x6d\x4e\x21\x8b\x58\xea\xe5\xac\xdb\x43\x1e\x20\x1a\xee\xb8\xeb\xea\x34\x7c\x9d\x09\x73\x7b\xbc\x03\x3f\xfa\xee\x34\x42\xa6\x41\x7e\x18\xb9\x97\xb8\xf6\x2a\x3f\xb5\xd5\x37\x1a\xca\xd5\xdf\xca\xf0\xa8\xbe\x75\xd6\x3b\x70\xa5\x7d\xb8\xd2\x40\x8a\x05\x5f\x3e\x17\x5b\x7a\x02\xbd\xfb\xf8\x52\x7c\xe3\x67\x4c\xcd\x9c\x7c\x9c\x69\x90\x77\x38\xb0\xa6\x03\x6b\xda\xb8\x0d\x03\x6b\xfa\xaf\xca\x9a\x22\x5e\xd8\x81\x37\x75\x51\x4c\xf1\x3c\x82\x39\xcd\x52\x79\x6c\x68\x07\xf0\xbb\x3e\xc2\xd8\x4a\x6b\xd7\xf4\x01\x3f\x9c\xb2\xe4\x5b\xa9\x7c\xba\xc6\x4a\xc2\xf5\x72\x7b\x70\x6e\x17\x52\x8c\xfe\xca\x12\x79\x60\xd3\xa2\xad\xe9\x83\x89\xdc\xd4\xe8\xc0\x95\xd9\x2b\x53\x83\x44\x43\x54\x40\x34\xa2\xa6\x8e\x10\x16\xcf\x68\xb0\x02\x33\x4e\xa3\x2e\xb9\x81\xc6\x7f\x0a\xdb\xd1\xcc\x04\xd4\x60\xbc\x0b\x75\x1f\x48\xb8\x9f\x84\x23\x77\xfe\x5c\x24\xfc\x5b\xe8\xdd\x47\xc2\xf1\x8d\x9f\x84\x9b\x39\xf9\x48\xf8\x2a\xef\x70\x20\xe1\x03\x09\x6f\xdc\x86\x81\x84\xff\xab\x92\x70\xc4\x0b\x3b\x90\x70\x17\xc5\x14\xcf\xee\x24\x1c\x88\xa3\x87\x54\xf5\x56\x2c\xf4\x92\x7a\xfd\xda\x82\x47\x4a\xf7\x88\x0c\x27\xa7\x3b\xe9\x12\x1a\xe9\xeb\xbc\xae\xa7\x1b\xe5\x43\x0c\xc4\xb4\x9b\x98\xc6\x52\x46\xcf\x43\x48\xa7\xd2\x5a\x40\x5d\x22\xaa\x7f\xf5\x11\x50\x98\x47\x9d\x78\xc6\xa6\x93\x81\x70\x0e\x84\xb3\x71\x1b\x06\xc2\xf9\xaf\x49\x38\x35\x2e\xe8\x4d\x34\x75\xe3\xc7\x52\xc8\x6b\xfe\xd7\x5e\xce\x4a\xd0\x98\x28\xfe\x57\x90\x24\x33\x85\x1e\x66\x85\xdf\x2f\xa1\x4a\xf1\xa5\x58\xeb\x93\xd1\x98\xb6\xd0\xe4\x06\x90\xd1\x98\x9c\xda\x80\xfb\x54\x92\xcf\xde\x9a\xce\x8c\x7b\xf7\x9b\x37\x9f\xd9\x1f\xde\xee\x2a\xaa\x36\xe8\xe2\x6b\xeb\xd1\xb3\x20\x27\x93\xd3\xab\x1d\xfd\xaa\x42\xae\xe8\x3c\xf2\xd2\xf6\xd2\x18\xe0\xc0\x6d\x1b\x83\xf8\x9e\x64\x85\x9b\xb5\x66\x74\xd0\xd7\x5c\x1f\x74\x04\x5d\xe1\x41\xed\x03\x9d\xb9\x54\x16\x7e\x3b\x72\x16\x3c\xe6\xbe\x52\xb9\x65\x5c\x71\xaa\xaf\x36\x5a\x07\xcc\x45\xb6\xd5\x66\xc1\x53\x34\x77\xc9\x3e\x9e\x4e\x36\x6f\x20\x40\xfe\x9e\x26\xa1\x77\xb6\x90\x6f\x28\xe5\x73\x1e\xf1\x74\xab\x11\x45\x6a\x30\x8d\xdb\x2b\x2c\x1d\xd3\xa2\x1c\x94\x5f\x79\x01\x80\x7e\xe8\x88\xb1\xb1\x18\x78\xb4\xf5\x95\xb3\xee\x30\x60\x31\xd1\xb4\x7f\xfe\x3d\x34\xed\x8b\x2d\xd4\xb0\x24\x69\x26\x04\x8b\xf4\x9a\x6c\xe2\xae\xac\xc1\xe9\x86\xa0\x9b\x65\xc8\x22\xbe\x61\x49\x91\x3d\x56\xff\x94\x67\x56\x77\x8a\x0e\x35\xef\x30\xe9\xda\x65\x02\x29\x61\x1a\x6b\x2e\xd6\xee\xc0\x64\x3a\x99\xc2\x07\xa6\x40\xb1\xd5\x18\xd9\x3c\x43\x7b\x98\xda\xc0\x56\x4a\x80\x12\x2b\x23\xac\x09\x32\xdb\x1b\x13\x72\xdc\xb4\xde\xb5\x29\x82\xec\xf4\x60\x52\x25\x28\xc4\x1d\x30\x72\x01\x43\xbd\xb7\x89\xcc\xf0\x8c\x34\x96\xb9\x72\xe0\x55\x0e\x0c\xa9\xc1\x8e\x90\x63\x67\x0e\xe5\x79\x37\xf5\x0e\x13\xb4\x07\xbd\x3a\xc1\x7b\x9b\x25\xc2\x9d\x03\xba\x67\xea\xdb\xd1\xd4\x27\x2d\xf2\x3b\x9b\x5a\x2a\x96\x23\xb1\x69\x28\x75\xe7\xc2\xee\x40\xe1\xd1\xde\x9a\x17\xff\x25\x68\x06\x8b\x24\x7c\xe1\x2b\x3d\x8b\x02\xd6\xad\x47\xa7\xdd\x83\xcb\x2f\xce\xe8\x13\xff\xa1\x87\x53\xeb\x89\xa5\x55\x68\x98\xc9\x92\x82\x4e\x79\x36\xbc\xfd\xa8\x4f\x2a\x6b\x3c\xb0\x09\x2c\xb1\x64\xa7\x01\x14\xa6\xc1\x99\xed\x5d\xb0\x0d\x64\x0c\xc4\x22\x92\xe5\xc1\x7c\xbd\xeb\x1e\x0c\x6e\xf6\x65\x4d\x6f\xf5\xee\xa5\xe9\x48\x66\xe9\x52\x72\xb1\xfc\x9f\x82\x52\x5b\xb1\x8e\xa0\xe9\x65\x4f\x78\x60\x36\x1f\x07\x80\x05\x56\xb5\x78\x11\x92\xe6\x38\x79\xa1\x49\x6b\x7c\x84\xe1\x8e\x34\x13\xea\x22\x80\x1a\x76\x95\x59\xaa\x78\xc8\x72\x69\x03\x1a\xe9\x1b\xef\xeb\x14\x12\xd6\xab\xbf\x64\x2c\xa1\xa1\x37\x05\x6a\x3b\x38\x64\xd8\x3b\x5d\xe8\xb1\xde\x2a\x65\x39\x38\x93\x7f\x42\x1f\x17\xe3\xbe\x9f\x7b\xe0\x03\xaa\x99\x6f\x31\xdd\x84\x6f\xce\x79\xc6\xd8\xdd\x0e\xf3\xe6\x21\xa2\xe2\x13\xaf\xf6\xf7\x7f\x3a\x3f\xbe\xf8\xcd\xee\x36\x8c\xe6\xe5\x2d\xf3\x09\x3c\xfa\x72\x37\xaa\x52\xea\xae\x07\x83\xc6\xa4\xae\x31\xb9\xcb\xe6\xac\x70\x84\x52\xa5\x93\xf2\x1c\x7a\x94\xef\xb2\x39\x3b\x29\xc6\x3b\x71\xc7\xab\x6a\x57\xda\xda\xd6\x75\x2e\xad\x2b\xa9\x6a\x62\xda\x1a\x0f\xfa\x99\x41\x3f\x33\xe8\x67\xfe\xed\xf4\x33\x6d\xd8\xa4\xae\xb5\x29\x25\x64\xab\x02\xf8\xbb\x3c\x2a\xc7\x71\x22\xad\x90\xd9\xfe\x2a\x1d\xa7\x8b\x3e\x14\xdd\x8e\x86\x32\x2e\xa6\xc8\xb3\x23\x9b\xe4\x8e\x1b\x1e\x66\x34\x72\xa6\xd9\xc4\x86\x99\xbe\x76\x96\xc7\xf3\xe8\xd9\x3e\x52\x6b\x9e\x5f\xbd\x69\xca\x36\xaa\x19\x1b\x15\xf3\x6a\x4c\x64\x7f\x66\xc4\xfb\xf9\xd6\xf2\x1d\x07\xb6\xc8\x96\xe0\xc8\x48\x22\x2f\xd1\xd0\x43\x8f\x3a\x18\x1a\x4d\x89\x80\x47\x2c\x99\xb2\x84\xcb\x66\xbf\xd9\x2a\x72\xb8\xaa\x7c\x68\xbd\x40\x62\xfc\x2b\x95\xfa\x5f\x0b\x99\xac\xf3\x21\x78\x63\x70\xa3\x7d\x20\xad\xab\x13\x63\xa8\x6f\x05\xb0\x0c\x63\xf2\x67\xa3\x93\x3b\x22\x5f\xae\x7f\xf4\x48\x01\xf6\xe9\xf6\xb5\xed\xf2\xb4\x6d\x88\x90\xac\x41\xe0\x42\xb3\xbd\x6d\x3b\xad\xdf\xff\x73\x6c\xf2\xca\x09\x5a\xed\xbb\xc1\x6e\xa0\xab\x5d\x06\x64\xfe\x0e\xac\x5a\x00\x28\x24\x04\x5e\x3b\x35\x71\x5a\x76\xf7\xd4\x2a\x1c\x1f\xbb\xd2\x9e\xab\x25\xc6\x47\xea\x24\x61\xb4\x21\x89\x45\xc3\x9a\xf7\x8f\xf3\xcf\x8a\x9d\xcd\x52\xb9\xa6\x29\x0f\x8a\x44\xad\xb2\xb3\xee\x45\x19\x2a\x20\x75\x68\x41\x61\x6b\xd4\x29\xc5\x61\xb6\x30\x69\x3b\xd2\xa4\x77\x29\x8b\x3e\x85\x2c\xfe\xe7\x5d\x78\x02\xa7\x16\xd2\x60\xb7\x1d\x9a\xf2\x6a\xaf\xf3\x4f\x8a\xc3\x9f\x67\x11\x96\x24\x90\xf1\xb6\x83\xee\xd8\x07\xf0\x40\x91\xc5\xd1\x09\x9f\x56\xee\x2a\x0d\x1a\x78\x5e\xdc\x86\xb1\x95\x7d\xb0\x9b\x49\xc4\xd2\x82\xdf\x4c\xf4\xf4\x3f\x07\x86\xfb\x9f\x77\xaa\xbb\xb6\xba\x9c\x0d\xbc\xcf\x96\x97\x33\x81\xb7\x6d\x7d\x47\x41\x21\x5b\x46\xc8\x39\x1a\xc3\x19\xf8\x47\x9c\x01\x9b\x15\xa3\x83\xf6\x97\xd5\xa0\x95\x6f\xda\xce\x41\x57\x21\x7c\x56\xe1\x1f\x86\x93\xf0\x8f\x39\x09\x6d\x6f\x59\x1a\x84\xdf\x7f\x7e\x22\xd7\x31\xd6\xa8\x6a\x84\x58\x19\x52\x67\xde\xcf\x2a\xf0\x9a\xb3\xf4\x9e\x31\x01\x63\x6c\x3e\x6f\x34\x1c\x40\x07\xb9\x14\x0f\xe6\x03\x0d\xea\xd7\xee\x59\x70\x60\xf5\xe6\xb5\x17\x58\x6d\x40\x5a\x31\x1a\xa5\xab\x93\x15\xf3\x3b\xcb\x97\x97\xf6\xad\xd3\x38\x3f\xfd\x32\xb1\x53\x51\x79\xe5\x0a\xcd\xd6\x61\xcf\xde\xa5\x61\x07\xbd\x28\x7c\xdb\xdc\x23\xb9\xbc\xd6\xcc\x23\x4f\xb7\xd7\x41\xc2\x58\x55\x75\x56\x5f\xc0\x79\xf5\x0b\xbb\x2d\x91\x5c\x12\x65\xde\x10\x3a\x97\x1b\x66\x52\xa7\x44\x72\xe9\xe5\x61\x20\x9d\x0f\x13\xb9\x65\x50\xa5\xa1\xcc\x52\x77\x33\x26\x62\x21\x77\x5b\x51\xb3\x22\xbb\x49\x50\x6f\xd4\x84\x14\xea\xe9\x06\x50\xb4\xea\x42\xe0\x6b\x47\x27\x65\x56\xa8\x7f\xf5\xa8\x10\x41\x0d\x55\x52\x7c\x90\x49\xba\x0f\xc9\xe0\x16\x59\x84\x36\x91\x70\x0d\x6a\x15\x28\xcd\x05\x11\xba\x50\x06\x03\x4b\xa6\xd2\x20\xcd\x68\xcd\x3c\x82\x3d\x62\x48\xc4\x3d\xcd\x73\x72\xd8\x94\x36\xc6\xe6\xbd\x96\x21\xd6\x94\x98\x6b\x8e\x6c\xc3\x13\x09\xbe\x2c\x64\x43\x13\x0e\x47\xb2\x36\x5f\x34\x08\xdf\x65\x73\x36\x72\x35\x37\x71\x22\x03\xa6\xaa\x62\x5a\x5b\x76\xc4\x62\xb4\xef\xa9\x57\x6f\xb3\xa3\xcb\x6a\x13\x12\x2b\x6d\xdb\x59\x79\xd4\x6a\x12\x20\x0f\x00\x1a\xec\xdc\x5e\x20\x00\xb0\xb9\x58\x44\x19\xa6\x04\xc2\x2a\xe6\x50\x2f\x11\x0f\x48\xa3\x5d\xc6\x8f\x41\x13\xf7\xdb\xae\xcb\x59\x1a\xa8\xb2\x30\xa8\x8c\xcb\x37\xac\x74\x2a\xb8\xb2\x03\xf8\x16\xc8\x9b\x36\x5a\x86\x07\x26\xfd\xca\x9a\x25\x4b\xab\xa9\x3d\x9e\x4e\x0a\x45\xad\x26\x4c\xde\x4b\x2f\x1a\x4e\x99\x07\x2e\x1d\xc4\xb8\x5d\xe5\x57\x03\xce\x53\xaa\xfd\x48\x97\xea\xaf\xc7\xf4\x49\x0f\x15\x60\x6d\x11\xbb\xa9\x01\xdb\x38\x87\xa7\xe4\x9a\x7a\xae\x96\xec\xc6\x3d\xd5\x16\xdf\x9f\x83\xea\x52\xa1\x94\x19\xac\x5e\x5c\x54\x57\x97\xed\x4c\x16\x79\x52\x35\x4b\x8b\x16\x91\x3c\x97\x26\x91\x3c\x81\xac\x4d\xfa\x9f\x93\x9e\x5a\xc5\xda\x72\x77\xd0\x2c\x76\xed\xa8\x53\xea\xec\x49\xb4\x8b\x3b\xac\x9e\xec\xa2\x65\xac\xc1\xa0\x9f\xa6\xb1\xbb\x53\x60\x4d\x9e\x5c\xdb\x48\x76\xaa\xc5\xdc\xe7\x3a\x90\x01\xaf\xf4\x01\x66\x2f\x45\x65\x1d\x38\x4f\xa7\xac\x24\x4f\xaa\xb0\xec\xbf\xf4\x3e\x67\xa8\x55\x79\x59\x03\xca\x53\x2a\x30\xc9\x6f\x8b\x58\x87\x8b\xf2\x04\xa7\xa5\x97\xfe\x93\x3c\x9b\x0e\x94\x3c\x93\x1e\x94\x0c\xc7\xe8\x37\x3d\x46\x3d\x55\xa8\xe4\x39\xd5\xa8\xe4\xb9\x54\xa9\x64\x38\x4c\xbf\xe1\x61\xea\x6a\xd1\x5b\x13\x4b\x9e\x4b\x1b\x4b\x9e\x56\x23\xdb\x07\x78\x1d\x9a\xd9\xfa\x52\x9f\x48\x3b\x4b\x76\xd4\xd0\xf6\x59\x4b\x1f\x4d\x6d\x7d\x41\x3b\x6b\x6b\x9b\x96\x13\xc9\xa5\xfa\x04\x8d\x6d\xf7\x0a\x5b\x52\x2e\xb7\x68\x6f\x49\xeb\xd1\x1f\x7c\x95\xeb\xbe\xca\x26\xaa\x00\xf8\x53\xfe\x2c\xe9\x52\x4c\x95\x38\xe4\x91\xf1\x45\xe1\x8e\x5c\x7a\x59\xf7\x3f\xae\xcc\xce\x6c\x46\xee\x71\xec\xbe\x86\xae\x8d\x8b\x71\xae\x16\x03\x32\x37\x78\x19\x0f\x5e\xc6\x83\x97\xf1\xbf\x96\x97\x71\x9b\x99\x08\x2a\x3b\xf5\x09\x6d\x86\x2c\xf3\xfa\xf8\x63\x6d\x26\x56\xaa\x79\x8d\x29\xea\xf5\x1f\xb9\x65\xc4\x6b\xa0\xb0\x5f\x63\x5c\x56\xb5\xee\x14\x14\xb5\x22\x81\x4c\x12\xa6\x62\x8d\xd6\xc5\x92\x18\x8e\xc6\x56\x07\xda\x29\xbb\x7c\xa5\x60\xd1\x31\xb9\xd2\x13\x64\x22\xa0\xb1\xca\xe0\xde\x16\x33\xf2\x4d\xa5\x41\x8d\x87\x53\x1a\x13\xf2\x4e\xa6\xab\x4a\x82\xfc\x5a\x41\x2c\xa8\x25\x5f\x29\x04\xd0\xa0\xc8\xc9\x8b\x5d\x98\x84\xfc\x23\xa2\x58\x4c\x13\x7d\x48\x89\xcc\x52\x42\xf5\x74\x6d\xad\x01\x6c\xa2\x59\x25\x28\x47\xce\x9b\x6b\xa0\x13\x98\x83\xd9\x2f\x17\xf0\x5c\x2c\xb1\xf4\x0f\xd6\x17\x80\xc2\x24\x1b\x56\x85\xc4\x8a\x36\xf5\x4a\x04\x5b\xc2\xe4\x0c\xe2\x3d\x20\x71\xc2\x16\xfc\x81\x85\xc8\xdf\xff\xfa\xcb\xdf\x2f\x64\xfa\xeb\x2f\x7f\x1f\x93\xe3\x28\x32\x99\xe6\xdc\xbe\xfd\xfd\x9a\xb8\x5b\x8a\xc7\x29\x2f\x76\x43\x53\xae\xc0\x94\x8a\x41\x6c\x66\x21\xa9\xc4\x3e\xc7\xe4\x18\x48\x59\x3d\xc7\x8f\x81\x2d\x1c\x4d\x2a\xec\xf1\xb4\xc5\xcd\x71\xc9\x1a\x40\xb0\x18\xfd\x87\x59\x0d\x56\xb0\x6a\x2c\xd0\x85\x50\x05\xd8\xfb\xa7\xa8\x07\x80\x51\xf3\x29\xfa\xa3\x84\x3b\xc5\x38\x3c\x6e\x8d\xe2\x50\xb7\x90\xe3\xc4\x2c\x36\xf6\x52\xba\x2a\xa7\x4e\x38\x72\xc9\xd0\x59\x39\x1a\x60\xe6\x84\x6b\xd9\x22\x5d\x95\x62\x26\x89\xc6\x84\xa9\xef\x16\xf7\x04\x06\x71\x0d\x7b\x2d\x01\x91\x0d\x2b\x9b\xed\x5d\x54\x3f\x06\x0a\x26\x88\x8c\xd1\x16\x6e\x42\x5b\x9b\xaa\x69\x14\x4f\xa9\x4c\xb8\xe9\x8a\x3d\x68\x02\xa6\x00\x3b\x40\x9d\xa2\x52\xfd\x2b\x1b\x9d\xdd\xa5\xc8\x05\x1a\xf7\x52\x1f\x21\x96\xac\xf1\x03\x42\xd3\x57\x8e\xa1\x20\x0f\x4d\xb7\xf5\x39\x9a\x93\x04\x54\x40\xa6\xf2\xcc\x02\xb0\x97\x9a\xfc\x41\xf8\x2c\x1c\xe4\x1a\x6c\xda\x3b\xd5\x17\x20\x87\xa2\x16\x5f\x90\x19\x0b\xad\x13\x83\xa2\x6b\xbc\x02\x26\x12\x13\x82\x93\xfb\xa8\x4c\x1c\xf3\x90\x39\x63\x49\x3e\x5f\x32\xdf\xe2\x64\xf3\x9a\xe9\xf9\x8a\xfa\x81\xc2\xd4\x67\xd3\xf3\x42\xec\xf7\x5e\x26\x65\xce\x59\x73\x6b\xa6\x34\xd8\x8e\x10\xe1\xeb\x38\xe2\x45\x61\x3a\x46\xdc\x43\x16\xf1\x35\x37\xe1\xa7\x38\x53\x4d\xde\x34\x4c\xda\xfb\xcc\x0b\x64\x15\x30\xe1\x0e\x7c\x8b\xb0\x14\x8a\x77\xb4\xb4\x94\x0e\x8b\x59\xc3\xf2\xf7\xb1\x18\xff\xcb\x57\xfb\x75\x00\xd8\x35\x76\x68\x5e\x76\x02\x40\xad\x62\x76\x7b\xe7\x32\x29\x59\x22\x8b\x5d\x2c\x75\x53\xdd\xcb\xf6\x3e\x1b\xd7\x59\x5e\x05\x7a\xf9\x00\xef\xbf\xeb\x41\xa6\x90\x30\x02\x2a\x10\x16\xb7\xb1\x81\x26\xe4\x60\xec\xa5\xc0\x6a\xa8\xf6\x5d\x3c\x65\x9b\x35\x4b\x55\x33\xce\xd3\x7c\x3a\xe4\x47\x55\x4d\xc5\xf8\x8a\xc7\x52\x37\xd8\xc2\xa2\x76\x91\x1f\xe5\xe5\x58\xad\xe3\xe0\x94\x51\x5e\x29\x21\x07\x94\x25\xcd\x2b\xa2\x2e\xf9\x86\x09\x93\xff\xa2\x3d\x7c\xa5\x99\x41\x74\xc6\xed\x69\xe7\x6b\xc9\xd7\x5f\x3c\x42\xa6\x17\xbb\xed\x09\x7e\x60\xf5\x47\x15\xbe\xca\xae\x58\x37\xe9\xa0\x1c\x7a\x1f\xff\xe9\x60\x31\x6d\x28\x1a\x57\x3c\x55\x60\x60\x05\xb9\x76\x68\x40\x9b\x3e\xe0\x20\xd7\x5c\xf3\xd4\x32\xaf\x1b\x68\xab\x85\x29\xb2\xa2\x1b\x66\x4b\xd1\xf1\x05\x9c\xae\xb8\xbb\x5b\xd0\xd4\xd9\x2c\x03\x84\xa7\x56\xbd\x86\xd3\x9d\x9a\xde\x0d\xb3\x64\x70\xb5\x96\x3c\x3a\xa0\x2e\x91\x86\xa5\x98\x9f\xe0\xe6\x64\x6a\x33\xe4\x7c\x3c\x9d\x36\xa6\x5f\xc1\xa7\xcf\xae\xb6\x57\x8e\xc3\xa7\x67\xfd\xb8\x72\xe3\x3e\x9e\x06\x7d\x6a\xc9\xe1\xf3\x98\x8a\x72\xf6\xe9\x7b\x20\x77\xe7\x1b\x2f\x8a\x8f\x3a\x8e\x65\x3f\x46\xc1\x9c\x4c\x72\xcd\x1c\xe2\x82\x58\x58\xcb\x0e\x2a\x9b\xa7\x11\xd3\x6c\x30\x4a\x52\x66\xac\xf6\x3e\x73\x86\xa8\xf5\xa8\xf4\xdb\xb3\xa6\x3a\x8f\x0d\xe0\x99\xed\xe5\x37\xb6\x8b\xac\x74\xf1\x0d\xac\x0f\x59\x59\x81\x28\x6c\x14\x4a\x2f\x1d\xf9\xe2\x55\xc7\x31\x94\x49\x8a\x3d\x20\x37\xe9\x56\x74\x55\x8c\x24\x54\x2c\x99\x3a\xb4\xfa\x38\x48\x5e\xd5\x9a\x33\x09\x1f\xee\xca\xe5\xe6\xea\x80\x65\x03\xa1\xac\x2c\x04\x8c\x72\xcb\x0c\xd3\xc1\xe3\x2c\x70\x0f\x90\xb9\xe9\x8b\xc1\x3a\x31\x00\x36\xdd\x09\x83\x75\xac\xbd\x40\x6f\x15\x0c\x36\x43\x1c\x36\x33\x58\x6c\x86\x78\x6c\xa6\x31\x59\x2b\xcf\x33\xe0\x32\x78\x7a\xe1\x32\xf5\x08\x01\xb8\x5b\xee\x6d\x55\xe1\x15\x8f\x57\xee\x25\x2f\x15\x63\x56\xf7\x05\xa8\x8c\xae\xe3\x88\x11\xb5\x15\x29\x7d\xf0\x25\xce\x71\x9f\xd9\xac\x55\x6c\x36\x3c\x64\x93\x58\xdc\xde\x77\x5e\x55\xbf\x54\x83\xbe\x26\x0d\xdb\x42\xc3\x30\xb6\x3e\x3d\x1d\x40\x30\x4e\xf4\xd6\x1a\xd0\x41\x15\x10\x3c\x0e\x35\xe9\x90\x55\x59\x24\xef\x5f\x1d\x94\xa7\xec\x00\x1b\xa1\x6a\x2a\x7d\x59\xfb\x69\x07\x1c\x50\xcf\x05\xfa\xcb\x9b\x15\x23\xe9\xbd\x84\xb3\x06\x99\x24\xec\x3b\x53\x0d\x7a\x9e\x46\xdb\x22\xd7\x5c\xc7\xde\x5d\x0a\xbb\x7a\xeb\x66\x53\xe8\x55\x99\x23\xbd\xe2\x6a\x24\xb8\xb8\x99\xf6\xdd\x34\xe1\x7e\x25\x23\xb3\x49\x47\xb0\x45\xb3\x59\x41\x90\xff\x08\xd8\xe5\x77\x2b\xaa\x5e\xae\xb7\xb7\xe0\xff\xf6\x0a\xf0\x8e\x41\xf2\x5d\xd7\xd9\xa4\x4e\xb4\x8a\x06\xac\x09\x0f\xf3\x43\xef\x84\xc2\x3f\x3f\xd4\xe3\xf6\x3c\x6f\xd0\x5f\x28\x21\x27\x15\x60\x69\x34\x16\xcd\x59\x44\x7e\xfd\xe5\xbf\xed\x44\x41\x3b\x6a\x16\xd4\xfb\x58\xe0\x82\x1b\xd7\x5b\x5f\x92\x9e\x43\x53\xf6\xd4\xe2\x69\x5f\x6d\xbe\xa0\xf6\xc5\x74\x2b\x1c\x6e\xf2\x88\x09\x64\xa5\x8c\xa6\x20\x02\xb4\x6a\x32\x3a\x82\x1d\x38\x5f\x47\xf7\xd4\x85\x14\x23\xe3\x4a\x62\x8c\x5c\xe4\x7e\xc5\x12\x66\x74\x22\x0b\x99\xac\x59\x55\x07\x61\x7a\xef\xa1\x8b\xab\x03\xc6\xc9\x9b\xf0\x04\x02\x7c\xd9\xe3\x6d\x07\xbe\xab\xec\xf4\xf6\xdb\xf1\x5f\x15\x94\xdc\xde\xa7\x47\x93\x49\x49\x2c\x43\x1b\x1d\x83\x76\x8d\x1c\x3d\xf7\x70\xcf\xcb\x1d\xf4\x5a\x4f\x5b\x6f\x77\x70\xd7\xca\xde\xfc\xd4\x43\x45\x3e\x1d\xdc\xe4\x31\x20\xef\xee\xb2\x49\x81\xec\x01\x7b\x2f\x68\x13\xc7\x25\xf2\x7e\x25\x95\xad\x2f\x9f\x6b\x22\xa1\x9e\x74\x57\x1f\x7d\x18\x3b\xb2\x93\xff\x7a\x4f\x2e\x89\xf4\xe5\x94\x48\xfd\x7e\x75\xf2\x4a\xff\xbe\x3b\x5d\x92\x93\x0a\x8d\x1b\x62\xfd\x3c\x33\x24\x99\x74\xe6\x54\x21\x8e\x75\xa1\x6e\x34\x28\xe4\x10\x93\xae\x91\x6d\xf5\xef\xdd\x9d\x1e\x5f\x9c\xee\x7b\x13\x69\x96\x9f\xdd\xb4\x59\xed\x3e\xa5\xdd\x6d\x56\x69\xea\x4b\x89\x8d\x4f\x39\x98\xe6\xe6\x66\x5a\x18\x91\x1a\x2d\x6b\xfa\x78\xe8\xa6\xcd\x53\xcf\x9d\xfd\x3e\xc9\xa8\xb6\x66\xe9\x4a\x86\x3b\xd0\x9e\x0f\xf8\xc1\xd3\xd2\x1c\x5c\x32\x5c\x0e\xb3\x6e\xc7\x7b\x43\xf7\x89\xf9\x64\x59\x67\x26\x1f\x8b\x95\x58\x88\xbd\xd8\xd9\xbe\x64\xe3\xe5\x98\x7c\x73\x76\x73\x40\xa6\x1f\x6f\x0e\x08\x4b\x83\xf1\x2b\xf2\x21\x8b\x52\x1e\x77\x69\xe8\x0c\x88\xe0\xd4\x5e\x5e\xed\x6b\x26\x62\x09\xa1\x1a\xff\x5c\x1a\xd7\x98\xa6\xab\x1d\xf6\x71\x7f\xaa\xdb\x3f\xc7\x36\x76\xed\x60\xb7\x85\xc1\xdd\x41\x98\xe6\x38\xdf\x2a\x5c\xa6\xdd\x8b\xbe\x9b\x41\x08\x1b\x2f\x8f\xc8\x88\xb0\x07\x1a\xa4\x47\xe4\x70\x21\x25\x19\x19\xbf\x85\x23\x72\x38\xa7\x09\xb9\xb8\xbc\x39\x3b\x42\x9f\x08\x26\xd2\x64\x4b\xd6\x5d\xc4\xe5\xf2\xe2\xfc\x3f\x0d\x1e\xdb\x12\xc6\x41\x74\xa0\x64\xb6\x07\x83\xa0\xfe\x43\xff\x89\xa3\x58\x3e\x7d\xac\x19\xe1\xf6\x7e\x37\x34\xe2\x21\xcd\xc5\x54\xf0\x7a\xc5\xf4\xca\xa9\x2f\x9f\x72\xf1\xf4\x39\x73\x15\xe7\xdc\x9b\x9b\xa9\x86\x70\x8e\x8e\xe1\x38\x00\xe0\x35\xa0\x1d\x27\x86\x0e\x74\x3b\x49\xc1\x65\x6b\xce\x2c\x20\x8c\x04\xac\x59\xf0\x23\x0b\xf6\x59\xf6\xfa\xf5\xe7\x81\xee\x18\xfe\xc5\x8e\x4c\xd4\x7c\x2f\x81\x0d\x8f\x1a\xcc\x0a\xba\xd3\x08\x23\xc9\xb7\xb0\xe8\x7a\x64\xe0\xfd\x49\x23\x60\x1f\x1d\x7e\xe6\x3b\x04\x1e\x22\x00\x9e\x96\x09\x32\x4b\x7f\xca\x4e\xfb\x46\x06\xf6\x40\x48\xdd\x5d\xf1\x60\xdd\x93\x66\x4e\x4e\x3e\x4c\xfb\xda\x2e\x01\x19\x35\xcf\xdd\xc5\x52\x4e\x4a\x6c\x3d\x5b\x13\xe9\x81\x89\xbd\x61\x48\xc3\x9f\x99\x82\x06\x2d\x82\x1c\x3a\x8d\x02\xfd\x9a\x97\x54\xac\x8b\xb2\x66\x35\x4f\xad\x9e\xdb\x7b\xf4\x38\x6d\xb2\x24\x58\x82\x74\xa3\xcd\xdb\x16\x63\x50\xaf\x93\x18\xb4\x47\x38\xd7\x4a\x88\x6a\xce\x44\x0a\x17\x4a\x00\x94\x00\x0b\x0c\x4c\x16\x4e\xca\xed\x6e\x12\x71\xa3\x01\x8c\x8e\xa2\xe0\x37\x05\xc5\x1b\x5c\x58\x19\xbd\x3b\x28\xd5\x53\x16\xac\x04\x0f\xea\xd9\x37\xca\x0f\x08\xf5\xa8\xb8\xe2\xeb\x58\x2a\xf4\x12\x81\xf4\x0a\x2c\x11\x2c\xda\x57\x84\xc7\x29\x06\x19\x2c\x78\xc2\xee\x69\x14\x75\x4c\x15\xb1\x85\x51\x29\x64\x0a\x4d\xfe\x4c\x2c\x24\xba\xb0\x1a\xff\x91\xee\xab\xd1\xa9\x7d\x86\x66\x9f\xbe\x19\xba\x9b\x31\x01\x2f\x08\xf6\x00\x2a\xd7\x2e\xe5\x2d\xee\x81\x5c\x90\xaf\xd0\xf1\x10\x56\x08\x7d\x9d\x05\x2b\x49\xae\x90\x68\x9b\xfc\xe8\x31\x17\x4b\xd5\xae\xbd\xed\xb5\xde\x1e\xc8\x20\xf6\x7b\x80\x37\x00\x64\x32\xb5\x9e\xe0\x9f\xec\xd2\x50\x12\xcd\x90\x1f\x77\xa1\x3c\xb5\x3a\xdd\x46\x28\xf4\x80\x40\x83\x2f\x6f\xc3\xe2\x3e\x98\xd6\x8e\xaf\x59\x9e\xb3\x05\x5c\x94\x93\x75\x91\x30\xdf\xe7\x57\x5d\x5e\xdc\x27\x21\x0d\x70\x9b\xc6\x54\xe5\xed\xf9\x3b\xfb\x66\x95\x29\x9e\xbe\x64\xa9\x5c\xe4\xa0\x98\x8f\xf1\x41\x47\x7d\xf3\x1d\xdb\x9a\xa3\x1d\x53\x6e\x72\xc6\xb4\x0f\xaf\xc5\x5a\xc2\x1e\xd2\x84\x96\x60\x4a\xe7\x32\x4b\x7b\x10\x92\xa7\x92\x1c\x85\x4c\xf5\xed\xeb\x77\x32\x2e\xb0\x71\x87\x2d\x1a\x9a\xb4\xfb\x84\x0c\x04\x63\x20\x18\xff\xda\x04\x43\xc8\xd4\xb2\x55\x8d\x60\x69\xb7\x17\xf7\xb4\x14\xf7\xb3\x11\xd7\x5c\x99\x2c\xcb\xd7\xe1\xcd\x64\x9a\x35\x03\xac\xe3\x1e\xf7\x30\x4a\x3f\xce\x1c\x1d\xff\xb3\x02\x77\xb6\xe7\xc2\xf6\x09\x69\x7f\x4d\x2d\x0b\x91\x00\x2e\x27\x60\x61\x32\x86\x53\xcf\x93\x36\xd7\x1c\xe3\x57\x66\xf6\xf9\x0c\xfc\xdf\xaf\x20\x78\xc3\x86\x22\xa0\xef\xcc\xcb\x39\x0b\x68\xa6\x8c\x37\x47\x87\x63\x70\x3e\xc5\x80\x25\xd0\x47\xee\x11\xf2\x0a\xcd\x89\x1f\x4c\x4c\x42\xc9\xbf\xa5\x8b\xc4\xa2\xe3\xcb\x91\xeb\xbb\x71\xe0\x7a\x6e\xe0\x1f\x20\xa9\x94\xfe\xda\xbc\x2d\xfe\xbe\x3e\xb9\xc1\xb7\xcd\xc3\x98\x1e\xcf\x79\xca\xac\x7b\x08\x15\xf6\x80\x58\x93\x02\x38\xc9\x90\x37\xa3\xcf\xbe\xfc\xb2\xc5\xc6\xf6\x7c\xc7\x1e\xcd\x88\xfd\xa8\xf1\x35\x3a\x22\xf5\x0b\x95\x68\x29\x45\x67\x47\x1d\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x09\xff\x8a\x87\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x9a\x56\x32\xe0\xb2\x21\x4a\x62\x88\x92\x18\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\xea\xcf\x10\x25\x31\x44\x49\xe4\xcf\x10\x25\x31\x44\x49\x3c\x7f\x94\x44\x4b\x36\x5a\x2d\x63\x60\xbe\x33\xdf\xbb\x3e\xb5\xf2\xbc\xa7\xdc\x64\xc7\x7b\x44\x9a\x43\xf3\xe5\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x36\xa3\xc6\x21\xcf\xe1\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\x16\xfc\xc1\x82\x5f\x3c\x83\x05\xdf\x79\x06\x0b\xfe\x60\xc1\x37\xcf\x60\xc1\x1f\x2c\xf8\x83\x05\x7f\xb0\xe0\x0f\xb8\x6c\xb0\xe0\x0f\x16\xfc\xc1\x82\x3f\x58\xf0\xeb\xcf\x60\xc1\xaf\x3e\x83\x05\x7f\xb0\xe0\x57\x9f\xc1\x82\x3f\x58\xf0\xf3\x67\xb0\xe0\x0f\x16\xfc\x21\xcf\xe1\x90\xe7\x70\xc8\x73\x38\xe4\x39\x1c\xf2\x1c\x92\x21\xcf\x61\xcf\x11\x86\x3c\x87\x43\x9e\xc3\x21\xcf\xe1\x90\xb6\x6a\x48\x5b\x35\xe4\x39\x1c\xf2\x1c\x0e\x79\x0e\x9b\xe7\x3f\xe4\x39\x1c\x08\xc6\x40\x30\x86\x3c\x87\x43\x9e\xc3\xd2\x33\xe4\x39\x1c\xf2\x1c\x56\x9e\x21\xcf\x61\xb3\x00\x39\xe4\x39\x1c\xa2\x24\x86\x28\x89\x21\x4a\x62\x88\x92\x18\xa2\x24\x5a\x56\x3c\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\xd1\xb4\x92\x01\x97\x0d\x51\x12\x43\x94\xc4\x10\x25\x31\x44\x49\x0c\x51\x12\x43\x94\xc4\x10\x25\x51\x7f\x86\x28\x89\x21\x4a\x22\x7f\x86\x28\x89\x21\x4a\xe2\xdf\x31\xcf\x21\x24\x2f\xec\xca\x72\x78\xa9\x1b\xb5\x9c\xe1\xc2\x33\x3a\xb5\xf9\x10\x1b\x18\x5f\xf4\x05\xc1\x0c\x73\xc0\xe2\xeb\x4e\x41\x27\x1e\x8e\x91\xeb\xcf\x75\x16\x2b\xbe\xd4\x2c\xd4\x6c\x0f\xfa\x9b\xed\xc1\x66\x9b\xb6\xbe\xae\xe9\x42\x93\xff\x14\xd0\x0b\x74\x10\xc9\x7b\x96\xe0\x6c\xd0\xb7\xc6\x99\x9c\x22\x72\xcd\xd3\x94\x85\x07\x5a\x7a\x45\xb7\x6c\x5f\xa7\x81\x14\x8a\x63\x7a\x47\x94\x4e\x67\x7b\x5c\x2c\xb8\xe0\x29\x9b\xed\x91\x11\x01\x8f\x0e\x67\x39\x56\x1c\x30\xf3\x24\x11\x55\xe9\x98\xe4\x2b\xf3\x82\x44\xcf\x95\x87\x4c\xa4\x3c\xa0\x91\x99\x60\xb5\x1f\x2e\x08\x8d\xe2\x15\x15\xd9\x9a\x25\x4e\x3b\xc8\xac\xe8\xeb\xd5\x98\xd0\x8c\x20\x85\x66\x4b\xaf\x12\x10\xcf\x86\xc8\xd6\xf3\xba\x8c\xdb\x82\xf4\x2a\x42\xe1\x8d\x2b\x60\xe0\x41\x71\xc4\x8c\x4c\x19\x8e\x89\x07\x77\xf8\x7f\x32\xf3\x9e\x7f\x3d\xe5\x0a\xc3\xe8\x00\xd7\xf8\x10\x3b\x60\x49\xa5\xd1\x6f\xb4\xb0\xbd\xc5\x3c\x14\x59\xc8\x28\x92\xf7\xe0\x10\x68\x64\x9f\x5c\x1a\x40\xb4\xf4\x47\x64\x8d\xf1\xb6\xdf\x46\x3c\x65\x09\x8d\xf4\x2f\xbe\x9e\x67\x33\x32\x42\x1f\x7a\x7d\x50\xd6\x31\x4d\xb8\x92\xe2\x80\x40\x20\x8d\xe5\x69\x6d\x97\x0b\x29\xc9\x9c\x26\xc0\x67\xe7\xc3\xfd\x6e\xc7\xe1\x8a\xf1\x34\x47\xce\xfe\x92\xd1\xe8\x6b\x74\xfb\xb2\x78\x96\x2f\x0c\x82\xe5\x0a\xda\x58\x9d\x51\x3e\xa4\xff\x5e\xfe\x04\xf3\xa0\x85\xb3\xc2\xbc\xf8\x67\x80\xff\x1c\x8f\xc7\xe4\x67\x67\x06\x69\x92\x31\xeb\xbd\x9d\x3b\x40\xe1\x18\x7f\x22\x7e\x87\x4b\xa3\x2c\xeb\x18\xaa\x98\xab\x5e\x00\x17\x3d\x26\xe7\x1b\x6c\xc7\xf9\xc2\x60\x6d\x13\xf4\x6f\x89\x33\x67\x2d\x4f\x41\x7f\xb7\x9a\xbb\x79\x55\x0c\x7d\x93\x8f\x4c\xd3\x62\x77\x9c\x9d\xf9\x1d\x1c\x52\x2f\xce\x37\x5d\xe4\x82\xb5\x5c\x40\x5b\x90\xac\xe0\xbf\xd9\xeb\xd7\x9f\xbd\xc5\xff\xc7\x37\xf9\x37\xd7\x2b\x99\xa4\xa3\x80\x27\x41\xc6\x53\xa0\x9b\xe6\x23\xdf\x40\x7f\xfb\x5b\xeb\xd7\xa0\x81\x4b\x5f\x62\x9b\x57\x79\xa3\x98\x26\x4c\x60\xae\xd5\x65\x22\xb3\x58\x33\x0b\xb3\x59\x4a\xa3\xe8\xa5\x57\x93\x6a\x92\x7f\xa2\x6d\x3c\xc7\x17\xb6\x37\x7b\x86\x69\x14\x39\x02\x12\x5c\xd0\x73\x3c\x0f\xc8\x01\xf8\x89\x3b\xd5\x57\x1b\xf1\x8c\x75\x1f\x72\x51\xa6\x3a\x20\xa3\x03\x72\x0b\x70\x38\x1c\x93\x6b\xb8\x72\xc4\x5c\xb9\xc6\x4e\xd7\x32\x61\x24\xd6\xbc\x91\x52\x7c\xc3\xc8\x1c\x1d\x5f\xb7\x56\x30\x37\x2a\x13\xc2\x54\x40\x63\x46\x82\x15\x4d\x68\x90\xb2\xc4\x4c\xfb\x0c\xfd\x07\xbd\x97\xe1\x25\x20\xfe\x35\x0d\xd9\x28\x8b\xf1\x58\xa8\x57\x39\x3a\x82\x68\x0b\x83\x3a\xee\xd9\x5c\x33\x5f\xcc\x20\x0f\x77\xc7\x43\x16\x47\x72\xbb\x66\xc2\x8b\x4e\xcd\xf7\x71\x22\x43\x7b\x48\xa1\x5f\x7d\xa7\x00\x27\x25\x52\x68\x01\xdd\x39\xea\x5a\xa6\xc5\x1f\x7e\xd6\xcd\x8b\xfe\xc9\xef\xfe\xd8\x74\x03\x42\xb6\xb1\xdd\xff\x8e\x54\x6e\x81\x0f\x95\xb5\x71\x54\x65\x51\xb6\xc5\xd0\xd2\x22\xc7\xb6\x73\xdd\x0b\x74\xaa\x2a\xc8\x82\x6f\x59\x96\x62\xe1\x19\x35\xec\x30\xa6\x31\x96\xc2\x4e\xd2\x72\xba\x3e\x83\x49\xdb\x1a\x41\x5d\xd6\x83\xa6\x82\x56\x8d\x8b\x90\x07\xc0\x97\xdf\xaf\x20\x8a\x0f\xa9\x97\x21\x89\x8e\x3f\x81\xc9\x73\xec\xc5\x53\xfa\xde\x49\x93\xe8\xf8\xc0\xfc\xa5\x79\xea\x31\x41\xef\x1d\xa0\x26\x0f\xb1\x66\x52\xd2\x68\xeb\xb0\xd4\x2f\x21\x49\xb3\xd7\x2d\xcb\xc1\xa3\x82\x04\x09\x33\x4e\xc3\xca\xdc\x6e\x99\x10\xc1\xa3\x57\x07\xd6\xf1\x37\x64\x0b\x9a\x45\xa9\x22\xb8\x2c\x0d\xba\x24\x6c\x60\xa9\x53\x49\xee\x35\xae\x9c\x98\x54\xda\x7a\x12\x67\xe6\x9f\xfa\x3e\x1a\xcc\x99\xe7\x2a\x06\x4f\x15\x54\x47\x9a\x61\x7c\xbd\x72\x85\xb7\x6b\x44\xfe\x6c\xf8\x22\x3d\x15\x3b\xc6\x8f\x07\x86\x38\x68\x2e\x13\x54\x5e\x76\x48\xcc\x27\xfd\x92\x8b\x20\xca\x1a\x67\xbc\x62\x24\xa0\x9a\xf3\x84\x0e\x8a\x6e\x08\x92\x67\x21\xf3\xc5\x40\x77\xaf\x3c\x33\x39\x6b\xcc\x53\x5d\x9d\x5b\x69\x62\x1a\x25\x55\xbb\x6f\x5e\xa7\xf7\x78\x54\xe7\x50\x1b\x10\xe4\x2f\xcf\x6e\x60\x8e\x73\x3f\x5e\x10\x78\xb4\xca\xbc\x7e\xc2\xa8\xbe\x47\xc1\x1d\xa1\x4b\xca\xc5\x81\x39\x0d\xa8\xb4\x8b\xee\xe9\x56\x19\xd7\x4c\xef\x29\xb6\x76\x36\x34\xb0\x1d\x10\xc1\x36\x2c\x29\x9d\x37\xaf\x3a\xad\x67\x1a\xf4\x02\x0a\x84\x01\xd1\xc8\x55\xd1\xb1\x54\x8a\xcf\x23\x3b\x70\xe1\x41\xa0\x3f\xb8\x8e\x59\xe0\x97\xf7\x70\x6d\xcd\x3e\x15\xed\x92\x65\xa3\xd0\xe6\x97\xf5\xea\xbf\x02\xcd\x08\x5d\x4b\x91\x4a\x65\x42\x97\xcc\xfe\xa4\x52\x9a\x66\x08\x18\x54\x98\xb2\xf0\xc2\x51\x65\xdd\x71\x11\x6a\x3c\x64\x41\x1a\x47\x59\x42\xa3\xe2\x97\x40\x0a\xb4\x5d\xa8\x23\xf2\xe7\x1f\xf5\x2f\xba\x7f\x16\x9a\xb0\x23\xf3\xeb\x4c\x8c\x46\xa3\xfc\x3f\x34\xe6\x36\x88\x89\xd0\x98\xb3\x87\x94\x09\x68\x3c\xbe\xfb\x4a\x8d\xb9\x3c\xdc\xbc\x99\x09\x1c\xf8\x24\x53\xa9\x5c\x5f\x31\xd4\xc7\x9e\x32\x90\xba\x00\x5d\x97\x42\x85\x34\x95\x39\x22\x02\x7d\xb6\x14\x4b\xd5\x38\x48\xc2\x71\x9c\x48\x0d\x88\x00\x70\xcf\x58\x26\xcb\x99\xd0\x48\x0d\xbe\x00\x4e\xe5\x88\x34\x34\x2b\xab\xf3\x70\x2a\x55\xc7\xb2\x88\xab\xf4\xbb\xca\x9b\x73\xae\xd2\x32\x9c\x9c\x39\x19\xf0\x73\xb1\xcc\x22\x9a\xb8\xaf\x00\x6c\x81\xd4\x7b\x97\xbb\x90\x81\x40\xb7\xb1\x50\xd4\x7f\x8c\xcc\x32\x35\x74\xa0\xa7\x60\xc5\xd6\x45\xa8\x94\x8c\x99\x38\x9e\x4e\xbe\xff\xfc\xba\xfc\x7b\xdd\x73\xcb\x4c\xd6\xfa\x20\x14\x43\x8e\xd8\x5f\x32\xbe\xa1\x91\xc6\xab\xe6\x78\x57\x9d\xea\x9c\x33\xdc\xa0\x1a\x75\x76\xb7\x7c\x64\xcb\x11\xd5\x7a\xaa\xc6\xbc\x85\x1e\x9f\x38\x19\xb3\x62\x16\x9a\xe5\xe1\x3c\x00\x69\x18\x8c\x4f\x7d\xea\x0f\xb9\x00\x22\x0f\x07\x7f\x0c\x9c\x00\x4b\x94\x95\x15\x03\x29\x36\x2c\x49\x49\xc2\x02\xb9\x14\xfc\xaf\x79\xe7\xca\x1a\xdc\xa0\xd8\x41\x8d\x5e\x70\x91\xb2\x44\xf3\x0c\x70\xe3\x0f\x00\xe7\xad\xe9\x96\x24\x4c\x0f\x43\x32\xe1\x74\x68\xcd\xfd\x1f\x34\xaf\xc8\xc5\x42\x1e\x41\xae\x0b\x75\x74\x78\xb8\xe4\xa9\x3d\xd8\x81\x5c\xaf\x33\xc1\xd3\xed\x21\x98\x01\xf8\x3c\x4b\x65\xa2\x0e\x43\xb6\x61\xd1\xa1\xe2\xcb\x11\x4d\x82\x15\x4f\x59\x90\x66\x09\x3b\xa4\x31\x1f\xc1\xdc\x05\x5c\xb0\xf1\x3a\x7c\x91\x98\x9b\xa0\xf6\x7d\xe8\xa0\x8e\x45\xe0\xe8\xb6\x6d\x83\x3e\xc1\x26\x40\x0c\x99\x61\xa4\xe6\x39\xb4\xad\xad\xf3\xea\xec\xfa\x86\xd8\xd1\xbd\xc1\x74\x08\xfc\xe2\x4b\x55\xec\x83\x06\x1a\x17\x0b\xcb\xb6\x80\xbe\xd1\x95\xf2\x91\x72\x46\xdc\xc3\xc1\xaa\x6c\xbe\xe6\xa9\x72\x92\x24\xc8\x31\x39\x81\x68\x3b\x4d\x24\xb2\x38\xa4\x29\x0b\xc7\x64\x22\xc8\x09\x5d\xb3\xe8\x84\x2a\xf6\xec\xbb\x00\xbc\xdb\x48\xc3\xb6\xef\x3e\x34\x04\x36\x36\x69\xec\x72\x34\xd5\xb0\x6d\xc5\x7d\xd4\x84\xa7\xec\x59\x6f\x03\x31\x8a\xd0\x47\x5a\xc3\x5d\xc5\x63\xb7\xb4\x42\x9b\x5a\xcc\x1e\x0d\x8e\xa2\xb5\x8a\x28\xd6\x97\x65\x32\xcd\x31\x1d\x0a\xbf\x73\x16\x49\x7d\xaa\xa4\x51\xc1\x30\x9f\xd6\xbf\x99\x5c\xff\x8f\x20\x98\x40\x27\xe1\xff\x5e\x98\xf0\x89\x23\x82\x04\xea\x30\x65\xeb\x18\xf0\xd5\x21\xfe\x00\xee\x21\x85\x59\x31\x51\xa3\x64\x4e\x83\xf1\x96\xae\xa3\x99\xf8\xe9\x27\xbe\x20\xec\x2f\x64\x7c\xf5\xee\xf8\xe4\x44\x8a\x05\x5f\x92\xd9\x9e\x6e\x30\xdb\xfb\xf9\x67\xdd\xfb\x04\x38\x5a\x46\x28\x09\xa2\x4c\xa5\x2c\x49\x64\xc4\xf2\x0a\x1d\xd5\xbe\x41\xc5\x25\x05\x13\xe9\x81\xfe\x18\x6a\x7c\x00\x06\x49\x2d\x2a\x6d\x98\x94\x15\x97\x0a\x9b\x9b\x21\xf0\x38\xe8\x95\x8c\x58\x99\x31\x80\x45\xd0\x2c\x5d\xc9\x84\xff\x15\x7d\x0d\x1c\xee\xc0\x43\xfd\x1b\x06\x9e\x09\xe0\x4f\xa1\xe1\x0b\x72\x21\x43\x54\x1e\x90\x7b\xe3\x52\x90\x4a\xb2\x96\x82\x83\xeb\x9c\x4c\x48\xc8\x22\x86\xf7\x1c\x49\x2e\x8d\xf9\x37\x9a\x55\xd0\xfb\xa2\xb7\xf0\x47\xdc\xd5\x1c\x0f\xe7\x47\x74\x44\x84\xee\x1b\xff\xdc\xb0\x64\xee\xbe\xba\x77\x7d\xa0\x46\x70\x35\x8a\xbf\x96\x78\x2b\x5f\x90\xa9\xcd\x9e\xf3\x97\x8c\x25\xdc\x68\x31\xf2\xa4\x26\xec\x81\xab\x94\x09\x73\x55\x77\x9a\x59\x2c\xc3\x86\x89\xe5\x63\x4f\xa6\xc7\x1f\x8a\x6f\x4d\xac\x84\xe0\x31\xd4\x01\x0a\xb5\x44\x23\x70\x81\x26\x46\x23\x62\xa9\x31\x9b\x54\x67\xe2\x67\xa9\xda\xa6\xc7\xe3\x58\xca\xa8\x61\x86\x16\x56\x9f\x3e\xcc\x3c\x92\xc1\x1d\x5d\x20\x0b\x59\xa8\x63\xf4\xf8\x74\x0d\x2f\x2b\xbf\xad\xa8\x08\xa3\xa6\x2d\x5d\xb2\xb4\x69\x43\x41\x0e\x66\xc5\xdf\x48\xa4\x8a\xbf\x11\x7a\x08\xf7\xda\x3d\x59\x53\x41\x97\x4c\x91\x95\x54\xa9\xe3\x20\xf0\x24\x10\x28\xf5\xf9\xac\xcb\xba\x60\x2c\x04\xf9\x5e\x0b\x88\xa9\x34\x6d\x2d\x8a\x71\xe2\xc8\x9f\x6a\x69\x9e\x9e\x7b\x2c\xb0\x79\x49\x2f\xc8\x77\xd9\x9c\x9d\x14\x1b\x83\xc8\x33\x4b\x72\x0d\x07\x0a\xf9\x3c\xd5\x3d\x2a\xa2\x79\x94\x00\x9a\x3c\xcd\x7a\xf4\xb9\x70\x8e\x45\xe0\x8e\xee\x5d\xd9\x0b\x14\xab\xf5\x3c\xe4\xbd\x70\xe6\x52\x5b\xf6\x0b\xb3\x6c\x42\xad\xa2\x44\xcb\xf9\x42\x0a\x86\x38\x46\x35\xc1\xe7\x85\xdd\x46\x24\x81\x4d\x27\xe1\x05\xa2\x3b\x40\x5a\xc1\xaa\xe4\xa6\x9a\x63\x42\x20\x6d\x35\x0a\xf0\x8e\x0b\xd4\xad\x3c\x13\x21\x90\x11\xbb\x62\xe8\xf2\x69\xf7\xa7\xa5\x7f\xdd\xcc\x43\xa4\x3a\x87\x51\x19\xb0\x13\x7a\x6b\x46\xa6\x83\xb2\x6a\xb2\x47\x1f\x4e\xb0\xdd\x11\xe2\x08\xb5\x55\x29\x5b\x97\x05\xe9\x17\xe4\x8a\x8a\x60\xc5\x92\x91\x65\xfa\x8e\xc8\x09\x40\xdc\x25\xc5\x1a\x6d\xbb\x4b\x40\xbf\x0b\x4d\x5b\x50\x29\x07\x45\xd2\x68\x70\x77\x4f\x93\x10\x09\x3c\x4d\xf9\x9c\x47\x3c\xdd\xf6\x61\x3f\x74\xf7\x2e\xcb\xd1\xc5\x52\xb8\xb3\x3a\xa5\x6c\x2d\xc5\x35\xeb\xe2\x26\xa0\xf1\x6f\xc4\x41\x94\x19\x06\xcd\xc9\x9e\x5c\x4c\x34\x1b\xb7\xe4\x82\x08\xc0\x6b\xa9\xd4\xf7\x09\xc8\xea\x01\x52\x45\x14\x0e\xdd\x90\xac\xc7\xd3\xe8\x0a\x2f\x61\x05\x7f\xec\xb8\x15\xa9\xed\x34\x60\xcd\x03\x71\x64\x21\xdc\x80\x5f\x3e\x1a\x75\x78\xc8\x55\x20\x37\x2c\xc9\x35\xe0\x93\x29\x5a\x7f\x68\xa8\xc5\x6c\xae\xd8\xda\x75\xf4\x6c\xe5\x7e\x3c\xbd\xde\x6c\xe3\x15\x55\x63\x3f\x7f\x44\x4e\x26\xa7\x57\x84\x66\xa9\x1c\x85\x4c\x4b\x68\x60\x0e\x13\x70\x45\x68\xb8\x36\xfb\x53\xd0\x1d\x44\x83\x64\x4d\xe3\x47\x6c\x09\x7e\xac\xbf\x7d\x3a\xa8\xc3\xc6\x1e\xba\x08\xb4\x0a\x66\x4d\x3a\x4d\x8d\xbc\x20\x62\x14\x84\x72\xcd\xb6\x1a\x19\xee\xa3\xa0\x1b\xca\x23\x3a\xd7\x57\x2a\xa2\x4b\x07\x50\xb1\x0b\xe7\x17\x56\xe7\x0e\xe2\x85\x42\x97\xff\xa0\x4c\xc4\x9c\x74\x2e\x1c\xd9\x3b\x37\x8f\xcd\xd8\x4f\x17\x7f\xa8\x22\x77\x0d\xe7\xef\x72\x17\xf5\x52\x18\x28\x6f\xb8\x09\x46\x20\xe4\x62\x69\x71\x6d\x2b\xcc\xb0\x75\x5c\xf2\x9f\xe8\xc9\x62\x9b\x03\x36\xdf\x5a\x70\xe8\x89\x5b\x55\x74\xb1\xfe\x4f\xbe\xaf\x95\x0b\xea\xdc\x26\x6b\x1f\x6a\x67\x6f\x2b\x8b\xa8\x21\x9e\xd8\x7a\xe5\xca\xd0\x1e\x9f\xc7\xcd\xb9\xe5\xec\x39\x27\x28\x3f\x3d\x46\x36\x52\x64\x43\x13\x2e\x33\x45\x4e\xae\x4e\xf1\xb6\xe3\x59\x7a\x22\xf6\x0d\x63\x85\x17\x2c\xe2\x0f\xd8\xaf\x03\x47\xe7\xd7\x32\x03\x04\x4c\xfd\x32\x8e\x99\x21\x99\x6e\x57\xf3\x65\x5c\xeb\x28\xff\xad\xde\x4d\x49\x04\x69\x92\x09\xb0\x67\xef\x69\xac\xbd\x56\xcc\x45\xac\x8d\xdf\x78\x5b\x37\xf2\xb2\x0d\x3c\x7c\xa3\x70\xb3\x03\x73\x7f\x5f\xdf\xf9\x4c\xa5\x39\xa7\x28\xc2\x9c\xf7\xd3\x78\x04\x0e\x81\x14\x9a\x11\x4c\xd2\x2c\x7e\x0e\x39\xb0\x73\xe7\x7b\x73\xfc\x6d\x4c\xfe\x4e\x38\xd2\xb8\x53\x69\x3c\xf9\xa4\xda\x81\x7e\xdb\x72\x03\x56\x2f\xeb\x86\x20\x05\x4a\xe2\xe0\x02\x6a\x3d\x06\xe1\x5e\x66\xf1\x32\xa1\xa1\x89\x40\xd8\x7c\x36\x7e\x8b\xbc\x49\x80\xe5\x7a\x5f\x90\x39\x23\x09\x5b\xcb\x0d\x0b\x8d\xb7\x9c\xfd\x40\x26\x7a\x85\x8b\x84\xa9\x15\xe1\x42\xa5\x34\x8a\x9e\x54\x44\x6b\xb9\x7e\xe5\x5b\xdc\x77\x03\x73\x2e\xf8\x7d\x44\x85\x60\x51\x99\x15\x7c\x41\xa6\x19\xb8\xd9\x03\x20\x1c\x35\xf0\x2a\x9b\x8f\x03\xb9\x3e\x0c\x64\xc2\xa4\x3a\x5c\xe0\xc7\x87\xf3\x48\xce\x0f\xd7\x54\x77\x70\x78\x2a\x83\x6c\x6d\x6d\x0d\x87\xc0\x7f\x9b\x66\x86\xd3\xd5\x8c\xee\x53\xb3\x9f\x66\x04\x97\xff\x7c\x5a\x2d\xcf\x53\x9d\xd7\x86\x23\xfa\xa4\x7c\x50\x4e\x8b\xcc\x16\x6b\xd1\x10\xa3\x30\xea\x7b\x5d\x08\x0b\x82\x46\x15\x59\xcb\x27\x26\x3c\x95\x98\x29\x68\x34\x2a\x36\xed\x49\x85\xcb\xbc\xdb\x9d\x84\x49\x81\x89\xdd\x5a\x45\xc7\xdf\x40\x66\xec\x0f\xd6\xe6\xad\x69\x04\x78\x2e\xa4\x3d\x83\x30\xff\xb4\xe0\xfe\xe9\x27\x26\xc2\x9f\x7f\xee\xad\xc7\x07\xba\x62\x65\x68\x08\x1b\x5e\x53\xc1\x17\x4c\xa5\x16\x1d\x2b\xe7\x98\x1b\x9b\x0f\x4b\x0e\x08\x55\xe4\x9e\x45\xf0\x99\x09\x55\x2a\x18\x47\x65\x8a\x77\x03\x9b\x61\xc5\x21\x29\x74\x5b\x46\x21\xe1\xb3\x06\x06\x34\xd2\x2d\x58\x82\x62\x00\x14\x18\x77\x98\x7a\x43\x6c\xf3\xdb\x94\x0b\xee\x55\x6b\x7e\xac\x5a\xef\x4b\x1b\xbc\x88\xf1\x7f\xb3\x86\x94\xaf\xd4\x88\xc6\x71\xfe\x61\x6e\x13\xab\x38\x24\x83\xc3\xe0\xb9\xfb\x65\xfd\x5b\x62\x68\xc6\x75\x9a\xd0\x94\x2d\xb7\x47\xc6\x32\x32\xfe\x58\xfa\x59\x6f\xd6\x4f\x3f\x91\x54\xfe\x27\x5d\x47\xd5\x97\xe4\x6f\x84\x8b\x90\x89\x94\x7c\x81\xed\x58\xa4\x98\xfe\x17\xc9\xed\x48\x57\x32\x8a\xb8\x58\x7e\x74\xd4\x61\x89\xfb\x53\x3e\xbf\x35\x7d\x70\xe4\xb8\x23\xf2\xc6\x39\x2d\x84\xd8\x93\x61\x17\x58\xb5\x1d\x46\xe5\xc5\xfa\x96\x5b\x31\x21\xea\x3d\xf5\xb8\xd1\x15\x81\xc5\xfa\x42\x4a\x75\x44\x22\x2e\xb2\x07\xdb\x40\xb3\x9a\x46\x9a\xb3\xc6\x2f\x84\xda\x85\xd3\x9d\x85\x40\xc3\x20\x3f\xfd\x64\x52\x95\xfd\xc7\xdd\x01\xf9\x8f\x0d\x39\xfa\x63\xf9\x73\x52\x7c\x0f\x8d\xff\xe3\x8e\xfc\xfc\xf3\x11\x99\xed\xe9\x7f\x6f\xf4\xdb\x3d\xa7\x2b\x26\x42\x62\x80\x6f\x81\x05\xd0\x97\x11\x4b\x6a\xc9\x57\x5f\x90\x0f\xf4\x8e\x11\x95\x25\xf6\xce\x80\xa6\x56\x05\x2b\x16\x66\x11\x3a\xf1\x41\x22\x1d\x4d\x8a\x1c\x13\xe4\xc8\x04\x16\x1e\x91\x0b\x79\x6d\x1a\x17\x6f\xc1\xd1\x22\xa1\x7a\x8d\xe4\xac\xa4\x2e\xc5\x11\x93\x3b\xe3\x2d\x14\x62\xc4\x4c\x90\x70\xf4\xe9\xa7\x61\x38\x32\x06\xd9\x84\x99\x49\x68\x01\xd8\x1d\xf8\x8e\x6d\x8f\xc8\x89\xf9\xe2\x38\x0c\xa5\x50\x97\x95\xdc\x4e\xcd\xa3\xbb\xf3\x3e\x7b\x60\x41\x96\xf6\x9a\x76\x97\x89\x10\x5b\x95\x5d\x32\x2f\xca\x37\x1a\xbb\x29\x6d\xc9\x0b\xf2\x81\x0b\xbe\xe6\x7f\x65\x24\x94\xf7\x22\xe5\x6b\x46\xc2\x0c\x94\x19\xd4\x5e\x0a\x97\xf3\xb4\x76\xb7\xaf\x49\xca\xa2\xc8\x45\x3d\xa9\x24\xa1\x84\x02\x01\x90\x2c\xb4\x18\xc0\x7e\x32\xdb\x2b\xac\xfc\xe5\x13\x1d\xca\x40\x1d\x06\x52\x04\x2c\x4e\xd5\xa1\xcd\xb5\xa4\x0e\x41\x0e\x8e\x65\x78\xf8\xc2\x46\x3c\x71\x29\x46\x72\x31\xd2\x2f\xf2\x0d\x71\xde\x7d\x93\xd0\x80\x4d\x59\xc2\x65\x78\xcd\x02\x29\x42\x75\x44\x5e\x17\x33\x31\x14\xb5\xc8\x81\x88\x9a\x11\xdb\x20\x4e\xb8\x4c\x78\xba\x3d\x89\xa8\x52\x08\xba\x9f\x7e\x22\xe3\x13\x0a\x59\x80\x2b\xef\xc8\xdf\x72\xad\xfc\x6c\x0f\x51\x23\xaa\x58\xed\x41\x9a\xed\x39\x77\x46\x8b\x7b\x27\x96\x12\x94\x0f\x3f\x50\x90\x9c\x4a\x94\x49\x88\xa6\x0f\x73\x2e\x68\x52\x0a\x47\x41\x0d\xac\x7e\x57\xa1\x17\x0b\x1e\x81\x83\x27\x50\x8c\x5c\xfc\xb1\xa7\x0e\xd1\xbb\xe9\x7f\x14\x08\xee\x9e\x3a\xbe\x06\xd3\xf9\x4f\x3f\x8d\x4f\x2e\x26\x13\xfd\x87\x7b\xe1\x21\x64\x62\x4d\x35\x45\xf9\xf3\x6c\xef\x50\xc6\xe9\x61\x20\xf8\xe1\x9c\x8b\x43\xd3\x5f\xce\x44\xe2\xc3\xc4\xe6\x7d\x22\xd7\x25\xc7\x00\xab\xa8\xfb\x40\x63\xcb\x10\xb8\xcf\x0b\x72\x0c\xf1\x1e\xdf\x7d\x7c\x77\x76\x75\x71\x76\x73\x76\x7d\x7b\x7d\x76\xf5\xfd\xe4\xe4\xec\xf6\xdb\xcb\xeb\x1b\x58\xb3\xe7\xdd\xf4\xf2\xea\xc6\x84\xfb\xc8\x0d\x4b\x12\x1e\x86\x0c\x6f\x2f\x7b\x37\x7d\x4f\xd6\x65\x28\xe0\x83\x90\x70\xd2\x35\x58\x85\xea\xc8\x4a\xec\xd5\x2f\xac\x5b\x72\x3d\x95\x03\x13\x9b\xca\x52\x5e\x80\xa7\x96\x75\xcc\xd2\xdb\xe4\x6e\x8f\xe6\xcd\x40\x4e\xaa\xcc\xca\xee\xcf\xc9\xc5\xe4\xf6\xe4\xf2\xe2\xfd\xed\xc5\xf1\x87\xb3\xea\x34\xc0\xe9\x47\x63\xdd\x37\xaf\x47\x70\xab\xc7\xba\x6b\xe0\xf3\xf7\xaa\x93\xb0\x8a\xa9\xca\x19\x01\xe7\x63\xd8\xb2\xa6\x93\x52\x9d\xcd\xc5\xd9\xcd\x0f\x97\x57\xdf\xc1\xac\x26\xdf\x78\xa7\x54\xdb\x6b\x7b\x68\xcc\x7e\x7f\xc7\xb6\xbe\x2d\x2f\xf6\xc2\xf0\x8c\x25\x63\x98\xfb\x00\xc2\x0d\x04\xbf\x35\xab\xb9\xf5\x35\x7d\x41\xae\x19\xfa\x28\x69\x8a\x08\x9c\x70\xee\x05\x0e\x4e\x12\x5f\x29\xe4\x9a\xf4\xab\x86\x05\x3b\x27\xec\xe2\xf2\xf4\xac\x79\x17\x1a\x96\x0c\x0e\xa4\x4d\x6b\x85\x97\x53\x9a\xae\x8e\x00\x05\x8d\xf5\x64\x20\xd6\xab\xb2\x0c\xbd\x6d\x1f\x6e\x3e\x12\x83\xe5\x37\x34\xe1\x9a\xff\x68\xde\xa2\x0f\x37\x1f\xff\x81\xfb\xb2\x61\xe9\xea\x76\x9d\x66\xd5\x65\x4c\x13\xb6\x61\xc2\x94\xb1\x28\x30\x1c\xc8\xf9\x2a\x62\x0c\x22\x50\x16\x52\xb7\xaa\x96\xbb\xb1\x8b\xbb\x3e\x3f\x3b\xab\xd5\x8c\xca\x6f\xc1\x82\x46\x8a\x95\x4f\xfe\x46\x46\xd9\x9a\x7d\xf0\x85\xd6\x8f\xc8\x5a\xff\x8c\xf0\x3f\xd4\x47\xc4\x45\x64\x7e\x1c\x11\x08\x3e\x9a\x73\x31\x0a\x79\xd2\xd9\x19\x4b\x03\xe8\x4c\xb0\x74\x5c\x0b\xf3\x2b\xba\x13\x2c\xad\x76\xa7\x58\x90\x01\x71\x91\x22\x65\x0f\xd5\xba\x2a\x71\xc2\x37\x3c\x62\xcb\xb2\xb7\x13\x82\xf8\x38\x0c\x35\xf3\xf2\x3e\x62\x0f\xe4\x7b\x58\x3a\x39\x4d\xf8\x06\x3c\xf8\xa8\x55\x0b\xea\x16\x31\x4b\x34\xd5\x24\x1f\x05\x7f\x20\xa7\x72\x4d\xb9\x20\xd7\x32\xb8\xc3\xfc\x3d\x10\x8e\x43\x4e\xf9\x9d\x96\x32\x4a\x94\x06\x6c\x33\xe0\x86\x17\xd0\xd4\xc4\x6a\xbe\x67\x11\x7f\x00\x6c\xeb\x86\x2d\x5e\x6f\x45\x40\x8e\xa7\x13\x0f\xcd\x59\x44\xec\x61\x23\xa3\x51\x08\x53\xf3\x93\x1d\xbd\x84\xef\x65\x34\x59\x2f\xcb\x84\xa7\x71\x43\xfd\x9d\x8f\xf4\x56\x94\xe1\x57\xdb\xa8\xfa\x34\x1e\xb7\x01\x81\x9f\xa0\x5f\x65\x42\x55\x85\xbf\x1c\xd7\x3a\x0c\x13\xa0\xdd\x4a\x25\x96\x17\xce\x27\x71\x22\x97\x09\x5d\xab\x1c\x83\xdb\x30\x12\x11\x92\x44\x66\x29\x24\xb4\x82\x5e\xdd\xef\xf5\x0a\x3d\x5b\xe0\xc8\xae\x7e\xf8\x6b\x66\xdf\x43\xf7\xff\x67\x13\xf2\x8f\x8a\xb9\x3b\x76\x3c\x9d\x58\xc9\x7d\x4e\x83\x3b\x8d\xbe\xb4\xc0\x07\x5a\xe9\x06\x04\x76\x7a\x7c\x73\x7c\x7d\x73\x79\x75\x76\x7b\xf3\x9f\xd3\x66\x7a\x5e\x2c\xa1\x4e\xc8\xad\x47\x0b\xc3\x5d\x27\x74\xb9\x4c\x6c\x84\x61\x4e\xdf\x62\x63\x73\x6d\x98\xc6\xc7\x6b\x0d\xe0\xd3\x5b\xdd\xa4\x71\x12\x00\x91\xda\xf0\x3f\x50\x9e\xe6\x4e\x01\x5d\xcb\xfd\xe1\x78\x72\x73\xfb\xfe\xf2\xea\x36\x5f\xf7\x8e\xa3\x69\x0a\xbe\x33\xd1\xd6\x94\xfa\x1f\x42\xa8\x4f\xa5\xd8\x4f\x09\x13\x60\xe5\x7d\xf7\xcd\xb4\x89\x8b\x3a\x3e\x9f\x9c\x5c\x5a\x46\x6a\x72\xf1\xcd\xed\xbb\xe3\x93\xef\xce\x2e\x4e\x1b\x81\x23\xa4\xf0\x00\xc7\xa8\xc4\xb0\xba\x93\x66\xe4\x20\x10\x7d\x81\x39\x8e\x9d\xe8\x3f\xfd\xbe\x61\x26\xe7\x1f\xaf\x6f\xce\xae\x3a\x0e\xe3\x57\xea\x00\x65\xc6\xda\x0c\x50\xb6\x3a\x20\x5c\x68\x9c\xa9\x05\xac\x03\x42\x53\x93\x29\x00\xcc\x40\x24\x61\x23\x1b\xe8\xa6\x99\xcc\xbc\x00\x85\x4a\x69\xda\x30\xab\xf7\x67\xe7\x93\x3f\xdd\x4e\xa6\x37\xc7\xef\xce\xcf\xae\xaf\xce\xde\x5f\x9d\x5d\x7f\x3b\xb9\xb8\x39\xbb\xfa\xfe\xf8\xbc\x71\x9a\x6f\x5f\xd7\xe7\x77\x21\x9d\x2c\xb2\xe0\x65\x50\x4b\x1a\x61\x07\x9d\x34\xf3\x15\x7e\x66\xda\x8a\x7b\x93\xe9\xe6\x0b\x12\x4b\x19\x15\xbc\xbc\x63\x63\xab\xf8\x68\x8d\xc1\x1b\x62\x32\xcd\x13\x57\x57\x7b\x0e\x56\x52\x69\x3c\x87\xbe\xf6\x5c\xa1\x1a\x66\x8c\xba\x5e\xf4\xea\xb7\x89\x09\x8d\x1d\xc8\xb5\xf9\x60\xaf\x2b\xba\xa9\xf5\x2b\xa4\x51\x33\x98\xd4\x86\x26\xc6\x62\xa1\xf7\xc4\x64\x14\xff\xaf\xd1\xc8\xe8\x0b\x47\x01\x0f\x93\xff\x1a\x57\xfb\xa8\x9c\xdf\xc9\xf4\xfb\x2f\xa6\x97\x97\xe7\x1e\x2c\xf2\xa2\x24\x9c\xfc\xe1\xb3\xf1\x9b\xb7\x5f\x8d\x5f\x8f\x5f\x1f\xbe\x79\x5b\x07\xe6\x29\x57\xe8\x16\xa1\xe5\xa1\x48\x2e\x61\x99\x4a\x92\xff\x02\x67\xba\x34\xd2\xbf\xa9\xff\x02\x3d\x67\x35\x5e\xad\x32\xa3\xd3\xc9\xb5\x3e\x32\xb7\xef\x27\xe7\x67\xb7\xe7\x97\xdf\x7c\x33\xb9\xf0\x0b\x28\xed\x08\x07\x19\x9a\x22\xca\x41\x02\x15\xcd\x37\x1c\x33\x79\xe8\x9f\x8f\x4f\x4e\xce\xa6\x37\x0d\x73\xc2\x53\x7c\x7a\xf6\xfe\xf8\xe3\xf9\xcd\xd9\xc5\xe9\xf4\x72\x72\x71\x73\x73\xa9\x69\xde\xf1\xc9\xcd\xe4\xf2\xa2\x71\x66\xd8\x6d\x33\xa0\x26\xd3\xcd\x5b\x7d\xc4\x0a\x52\xd4\x3a\x85\xc9\xf4\xfb\xb7\xd7\x1f\xa7\x9a\xa0\xee\xc2\x3a\x3b\x1a\x12\xc7\xe6\x00\xb1\x5c\x68\x59\x56\x1a\x54\x30\xc2\xf9\xe5\x37\x1a\xe4\xd3\xe3\x9b\x6f\x35\x58\xe0\xbc\xa3\x6f\x10\x6e\x2c\xc0\xd3\xee\x6c\x2a\x61\xa7\xdb\x66\xec\xf4\xb7\x23\x4a\xec\x3f\xe1\xeb\xb3\xef\xcf\xae\x26\x37\xff\x79\xfd\x9f\xd7\x38\x67\x73\xa9\xe0\xe6\xe5\x0e\x96\x62\x21\x5b\x57\xa2\xb6\x2a\x92\xcb\x8e\xb5\x38\x43\xed\x80\x63\x8a\x93\xe8\x8c\x37\xdb\xbb\xa7\x89\xe0\x62\xd9\x67\xe9\xd7\xde\xf5\x9e\x5c\x9d\x9d\x5d\xe8\xbe\x7e\xc0\x9e\xea\x2b\xee\xbb\x1c\xe8\xa9\x71\x45\x3f\xf8\x27\x5a\xee\xee\xdb\xb3\xe3\xf3\x9b\x6f\xcf\x2e\xf4\xb5\x6d\x26\x7f\xfe\xab\xda\xb6\x60\x4b\x3c\x0c\x61\x05\xa1\x26\x4b\xd1\x00\xa6\xff\xe1\x78\xa1\x2d\x88\x58\x20\x4d\xea\x43\x8d\xba\x28\xb5\xee\xbc\x3c\xd5\xc7\x4a\x73\x3e\x03\xac\xfd\x1d\x83\xaa\x6a\xbc\x4a\x10\x67\x47\xe4\xb3\x2f\x5f\x97\x92\xb2\x45\x7c\xc3\x04\x53\x6a\x9a\xc8\x79\xb5\xf2\x07\x7b\xa8\x05\x2c\x15\xba\xbd\xea\xef\x23\x02\x1a\xbe\x06\xd1\x01\x5b\x8c\xe0\x86\x8c\xf4\x98\x95\x75\x96\xb5\xb0\x6f\x5e\x97\x5f\x83\xff\x0b\x8d\x4e\x59\x44\xb7\x8d\x8d\x16\x94\x47\x59\xc2\x6e\x56\x09\x53\x2b\x19\x85\x47\xe4\x6d\x19\x5c\x34\xe4\x4d\x2b\x5d\xa5\x69\xfc\x0d\xab\xd7\x28\x8d\x51\x10\xcc\xbf\xad\xbd\x97\x49\x7a\x44\xfe\xf0\xfa\x0f\x7f\xa8\xbe\xd1\x34\xe1\x88\x44\x32\xa0\x51\x5d\xc8\x6c\x5d\x6e\x6f\xa5\x44\xc4\xe7\x87\x6b\x19\x66\x9e\x2c\x14\x78\x36\x23\x3e\x1f\x35\x34\xd0\x2b\xba\x14\xd1\xd6\x97\x6d\xb6\x3c\x4a\x92\x89\xc3\x07\xbc\x01\xe3\x48\x06\x77\xfe\xa1\x4c\x8b\x91\xaf\x45\x31\x16\xd2\x91\x96\xc1\x36\x34\x81\x01\xad\xe5\xd6\x37\xd4\x86\x26\xa3\x24\x13\x23\x7f\x9b\x1d\x07\xd3\x30\xec\x1a\x4c\x83\xf1\x51\x83\x61\x17\x28\x88\xab\xad\xa8\xc5\x92\xfb\x56\xae\x2f\x0e\x5d\xd6\x62\x26\x5f\x60\xd1\x32\x2b\xdb\x1e\x90\x7b\x06\x0c\xab\x91\x81\x81\xfc\x40\xd0\x53\x66\x02\x2f\x75\x4b\x4d\x48\xd1\xd8\xa0\xd9\xee\x43\xb5\x55\x87\x0b\x75\x38\x8f\x17\x9a\x7f\xba\x67\xa6\x35\xe6\x5a\xa8\x0e\x07\xf9\x5f\x52\x12\xf2\x04\x2c\x7a\xd5\x72\x21\x76\x71\x6a\xab\x16\xb5\xc3\xe5\xae\xcb\x0c\x5a\x17\xfb\xdf\x71\xec\x1b\x13\x78\xac\x19\x15\x18\x49\x08\xf9\x09\xf2\xc9\x75\x2f\x85\xa7\xc8\xd6\xc6\x89\x8c\xe9\x52\xb3\xd7\xc6\x71\xa4\xa2\xdb\xb0\xe3\x9a\x6c\x61\xc0\xb3\x71\x45\xee\x84\xbc\x17\x2e\xe8\x68\x5a\x1a\x2c\xd2\x7b\xbc\xc5\x04\x74\xe5\x29\x07\x54\x80\xfa\x01\xb3\x8d\xd5\x46\x42\x20\x98\x49\x81\x1d\xbd\xf4\xb9\x1f\x9c\x81\xe0\xa3\x48\x2e\xeb\x1a\xc4\xfa\x61\x89\xe4\xd2\x9c\xdc\xc3\x8a\x75\x86\xb4\xdc\xef\x9a\x05\x29\xc9\x84\xca\xdd\x6f\x32\x65\x23\x83\xd1\x86\x0f\x15\x34\x46\xeb\x25\xba\x85\x30\x11\xba\x1d\x01\xb1\x8c\x34\x86\x83\x78\xe2\x7a\xb9\x8d\x91\xa3\x71\x29\x5c\x6a\x8a\x39\x3a\x56\x24\x2d\x3f\x1a\x7f\xaf\x9a\x4e\xaf\x30\x26\x11\x63\x4d\xd2\x74\xc6\xf4\x17\x42\x7a\x9b\xbd\xd1\x88\xc7\xa3\x35\x55\x7f\xb1\x7f\x56\xe6\x3f\xdb\x23\x3f\x3e\x0d\xd5\xad\x2b\x7e\xec\x32\xa7\x97\xa7\xcf\x66\x00\xb0\xde\x02\x63\x51\xd3\x2b\x54\x87\xbf\x9e\x1e\x9f\x3c\xff\x1c\xc0\xd5\xa3\x81\x23\x3a\x3f\xbe\xb8\x38\x3b\x3f\xbd\x9d\xbc\xdf\x71\x26\x4f\x6d\x01\xd2\x8d\x6e\xf9\xa2\xc7\x4c\xa7\xb7\x1f\x8e\xaf\xff\xf7\x3f\x70\xae\xfa\xec\x66\x2c\xa1\x65\xae\xa9\x45\x9d\xdd\x9f\x44\x77\x11\xe8\x16\x22\x36\x2a\x3b\xae\x8d\x82\x45\x65\x05\xee\x2c\x58\x1a\x94\x9c\x2a\x73\x9c\x8f\xab\x28\xab\xbd\xad\xff\x3e\xda\x25\xeb\x38\xa3\x81\x75\xd1\x58\x1b\x86\xab\x5c\xd8\x16\x86\x68\xd4\xc9\x36\xb4\x77\xda\xc4\x92\x8c\x3a\x39\x84\xee\x7e\x7d\xdc\xc7\xa8\x63\xc3\xda\x7b\x6d\x3f\x0a\xe8\xd0\xf4\x9e\x47\xec\x32\x39\x29\xf9\xdf\xb6\x50\xf4\xf6\x01\xbd\xf4\x1d\xc7\x39\xb5\xbc\x43\x7d\xb0\xe2\x00\x98\xc3\xe2\xb5\x03\x79\x0f\x5d\x7e\xf1\x8e\x7c\xc7\xdc\x7f\xd9\x8a\x80\x24\x6b\xcd\x3e\xb9\xf0\x99\x9e\x1a\x0c\x78\xed\x10\xf0\x9a\x05\x47\xed\x36\xbc\xf6\x1e\x1b\x6c\x83\xc5\x2a\x4c\x28\xd4\xc9\xc5\x04\xb4\x5f\x0d\x2b\xf1\x30\x12\x3d\x8e\x64\x03\x5b\x51\x0c\x6e\x94\x98\xcd\x36\x42\xcf\xe5\xf3\xf3\xc0\x0d\xb3\xe9\x3c\x3d\xa4\x7e\x3b\x3d\x6c\x73\x7d\xd3\xeb\x86\x4f\xdf\xa9\x6b\x35\x10\xee\x3a\xe5\x9f\x7e\x1a\x69\x7e\xd6\x1a\x2c\xa7\xe0\xbe\x79\xca\xcb\x1e\x72\xc5\x7a\x0a\xd3\x66\xde\x12\x3d\xe3\x46\x84\x45\x8a\x35\x7c\x75\x98\x29\xc0\x25\x5a\x5e\x77\x9c\xa5\xe0\x9f\x11\x4b\x47\xc6\x69\xf4\x10\x11\xf1\x21\x34\xcb\x01\xf6\xff\x66\xa1\x32\x23\x18\x3f\x3c\xf0\x6c\xed\x72\x20\x73\x1d\x44\x0b\xa7\xdf\xaa\x5b\xed\x63\x3c\x46\x77\xf5\xb0\xad\xc6\xd9\xe6\xde\xb6\xd7\x8c\xf9\x22\x04\x4a\xf1\x0d\x87\xf5\x28\x5d\xaf\xeb\xab\x71\x90\x75\x72\x32\xee\x12\xa3\xfc\x18\xf7\xd8\xa6\x38\x64\xeb\x01\x8a\x66\x86\x52\x16\x0f\x6a\x0a\x69\x42\x19\x06\x0a\x49\xa9\x22\x06\x0a\xe9\x0d\xc3\x4b\x60\x13\x4d\x24\x2c\x8e\x78\x40\x15\x38\xa9\xee\xea\x7c\xdb\xb8\x48\x55\x38\xe2\x16\x97\xe2\x8a\x15\x91\x1e\x5d\x3e\xb0\x9d\x60\x24\xa4\x0d\x94\xa4\xc3\x8d\xb6\xa5\xdb\x4f\x72\xac\xb5\x97\xfc\xa6\xf0\x58\x25\x4d\x7e\xac\x8e\x27\xb2\xdb\x3c\x77\x43\x7e\xdb\x70\xdf\x9b\xbc\x61\xfd\x6a\x4e\xa7\xb5\x35\x8d\x36\xa6\x70\x91\x04\x53\x66\x45\x2c\x85\x7a\x4f\x99\x68\xf2\xa1\x2d\xfb\xde\x16\x21\x05\x83\x07\x6e\xe9\x43\x17\x97\x62\x9b\x4f\xf1\xc6\x6d\xbd\x0b\x35\xff\xdc\xc7\x3a\xad\xea\x51\x2a\xb9\x31\x7a\x39\xb1\xe6\x26\x41\x9f\x1f\xab\xd7\xe5\x65\xd4\xef\x96\x93\xb2\x82\xa0\x68\xe0\x77\x3b\xa9\x39\x63\x9c\xac\x24\xa4\x8b\x07\x5b\xb3\x7b\xde\x53\xa9\x8f\x78\x83\x3a\xcb\x98\x1a\x6e\x4f\x2e\x2f\x6e\xae\x2e\xcf\xcf\xcf\xae\x9a\x6c\x32\x75\x05\xf7\x4e\x4e\x1c\x8e\x0b\x87\xd3\xa0\x55\x47\xbd\xab\x36\x5e\x33\x05\xa0\x91\x5f\xb1\xe0\x6e\x54\xce\xee\x51\x34\x1b\x25\xcf\x4f\xf0\x77\xa6\x8a\x55\x16\xa0\x1c\x37\x53\xf8\xa9\x4d\x65\x48\x4e\xb9\x4a\x32\xf0\xd3\x21\xef\xb2\x70\xc9\xd0\xfd\xa4\x38\x30\x85\xc7\xda\x77\x5f\xa9\xdc\x29\xe2\x38\x4b\xa5\x0a\xa8\x79\xcf\x36\x3c\x48\x67\xa2\xbc\x48\xe4\x59\x0f\x37\x6f\xe6\x2c\xa5\xf9\x82\xa7\x32\x2c\x46\xc4\x01\xff\xf1\xbc\x80\x27\xf2\xe4\x89\x88\x7a\x4f\x1e\x8c\xa5\x41\x38\x52\x9a\xd2\xa7\x96\xff\xea\xf9\x65\xba\x8d\x57\xb4\xef\x27\xd6\xb7\xc9\xb8\x33\xe3\x57\x7b\x07\xff\x3f\x42\xc8\x1e\x4a\x7e\x9b\xcf\xc7\x6f\xfe\x30\x7e\xbd\x77\x44\xf6\x74\x57\xa0\x58\x24\x37\xa6\x87\xc2\x57\x08\x7f\x37\x8d\x7b\xcf\xd5\x04\xc7\x97\xa2\xb9\x4e\xac\x38\x4a\xb8\xca\x73\x4b\xe7\x13\xc5\x4a\x78\x0b\x10\x23\x58\x68\x86\x75\x5d\x32\x8a\x48\x46\xdb\x4f\xfd\xa6\x35\x47\xcd\xe5\x62\x6e\xd3\x91\xca\x3f\x7b\x81\x19\x38\xf4\x24\x8d\xb5\x1a\x35\xd6\x00\xfe\x5b\x43\x79\x6e\xb1\x73\xd7\x7a\x8e\x5c\x26\xe4\xcc\x5c\xd0\x80\xe1\x0a\xad\xde\x06\x6e\x1a\x28\xd2\x21\xcd\x7b\x60\xb3\xbd\xc3\x4f\x85\x23\xa8\xcd\xc4\x00\xba\xf7\x88\x2d\x52\x32\x8f\xa8\xb8\x3b\xc8\xab\xba\x38\xfd\x73\x65\x7d\x5c\x0a\x5d\xb4\x46\xb5\xfb\x0a\x7b\xb0\x04\x08\x9c\xdb\xa0\x57\x47\xcb\x87\x11\x46\xa8\x4d\x9e\xd8\x2e\x6d\xb0\xd1\x0b\xf2\x83\xc9\xb2\x2d\x13\xc8\x8a\x9d\x4a\x47\xeb\x56\xd4\xd9\x91\xc4\x29\x1a\x8a\xb5\x03\xd0\x03\x06\x3b\xb1\x4c\x88\x71\xb3\x1c\xe3\xf5\xb3\xdd\x94\xcd\xd1\xae\x37\x9e\xfe\xee\xc3\xcd\x47\x48\x9b\xa5\x1c\xc1\x50\xff\x66\x59\x3e\xbe\x20\x82\xe1\x4f\xaf\x0d\x19\xb5\xde\xd2\x66\x69\x1f\x6e\x3e\xe2\x7a\x0c\x8f\xe1\x61\x16\xdd\x2f\xde\x7c\xf1\xe5\xeb\x4a\xeb\x66\x67\x7f\x1b\x1c\xdf\xe4\xf3\x0f\x9f\x01\x5f\x81\xf2\xdb\x0b\x9b\x33\x19\x0c\x48\xdc\x66\xca\x2a\x0a\x9c\x64\xa9\x5c\x53\xe0\x0a\xa2\x2d\x89\xa5\xc9\x3a\x87\x9b\x56\x73\xce\x3f\x22\x7f\x1b\x21\x5a\xfa\xc9\x62\xa7\xd9\x1e\x68\xbb\xf7\x8c\x97\xd9\x28\x96\xe1\xc8\x7c\xe4\x14\x6d\x98\xed\x05\xc2\xde\x17\x6c\xfb\x7a\xfc\xf9\xf8\x4d\xa9\x85\x11\x80\xf5\xeb\x3f\x17\x24\xf0\x27\x97\x1a\xce\xf6\xc0\x0f\x0e\x3a\x30\x2a\xb9\x72\x61\x88\xd9\x5e\x24\x97\xb7\x11\xdb\xb0\x08\x5b\xfd\x70\x7c\x75\x31\xb9\xf8\xc6\xdb\x6c\xc1\x23\x76\xab\x85\x73\x6c\xea\xd1\xac\xe8\xff\x8d\x23\xb9\xac\x7d\x9e\x3b\x4d\xde\x16\x13\x72\x1d\x3e\x2b\xcd\xf5\xd6\x14\x60\xba\xbd\xf5\x85\x24\xdc\xde\xd6\x3e\x5b\xa7\x99\xfe\xe2\xf6\xd6\x04\x04\xdc\xde\x56\x1a\xf0\x98\xae\x75\x8b\x9f\xaa\x2c\x83\x0b\x28\x7d\xd1\x47\x60\xe3\xf6\x54\xd1\x98\xed\xa1\xfd\x05\x9b\x66\x8a\x4d\x65\x78\xc2\xc3\xa4\xec\xff\xf0\x73\x65\x5c\xa4\xba\x9d\x23\xdf\x7d\xa5\xda\xfb\x71\x41\xe6\xed\xcb\xe4\x62\xd3\x08\xd4\x01\x1d\x86\xad\xdc\x5a\xff\x22\x0d\xb9\xd2\x28\xc5\x1f\xee\x80\x8d\x27\x29\x96\x49\xba\xa6\x71\x0d\xfc\x4a\x50\x80\x8b\xc6\x15\x95\x57\x01\x8d\x29\xc4\x5c\x73\x3b\x75\xe8\xe5\x03\x8d\x63\x2e\x96\xca\x7e\xb5\xeb\x4c\xe6\x54\x84\xf7\x3c\xd4\x27\xb2\x7b\x40\xa7\x71\x7d\x34\xfb\x4f\x63\x50\x33\x38\xc5\x66\x6b\xf0\xe2\x94\x31\x01\x1b\x06\x54\x3b\x32\xd6\x59\x6b\x72\xcc\x65\x04\xc0\x0b\x82\xa5\x40\xd5\xc6\xff\x57\x69\xea\xf7\xb7\x1a\x46\xb8\xb0\xf7\xdf\xe2\x7a\xe4\xe7\x4e\x26\xa7\x57\x1a\x31\x3a\x77\xfe\x9d\xb1\x58\x96\x77\x1f\x6b\x2f\xe4\x9f\x9b\x59\x9b\xb6\x63\xfd\xce\x0d\x4e\xfd\x39\x5f\x62\x17\x87\x70\x17\x86\xa3\x20\x09\x4b\xcc\xcf\x73\x65\x44\xaf\xa5\xdc\x78\x86\xbc\xe8\xef\xbe\x99\x96\x72\x23\xe2\xbb\x22\x3b\x7a\xf5\x7d\x3d\x47\x7a\x43\x62\x90\x22\x53\x7a\xb5\xc1\xac\xc8\x97\x6e\x76\x75\xf6\x3c\xc9\xd2\xab\x73\x2f\x67\x5a\x2e\x13\x43\x2c\x29\xb2\xd5\xdf\x00\xcf\x51\xd6\x2c\x0c\xc9\xd2\x87\x64\xe9\xee\x16\x0c\xc9\xd2\x7f\xb3\x64\xe9\xd5\x4b\x5c\x4f\x99\x5e\xae\xe8\xa1\x2f\x70\x99\x26\x95\x3b\x6f\xc9\x8d\x4e\xd5\x05\xd4\xd0\xf3\xd8\xf8\x2b\x17\xfa\x1a\x1b\xda\x1a\x0c\x56\x58\x39\xbe\x36\x55\xf8\x72\xf1\x89\x1a\x96\xfa\xcf\xa7\xd8\xc4\xeb\x3e\xf0\xf6\x8b\x2f\xdf\x7c\xf6\xe3\x7e\xfd\x15\x26\xaf\x82\xfa\xf5\x9f\x7f\x56\x7f\xdd\x5a\xdc\xde\xee\xbc\xbf\xf6\x6d\x69\x3d\x27\x45\x53\xbc\x1f\x36\xf9\x3b\xc2\xd2\x9c\x20\x0b\x67\x8a\xa9\x7c\xea\x8e\x4b\x00\xc2\x64\xce\xd3\x84\x26\x5b\x53\xe8\x0b\x22\x84\x28\xfa\x2d\x63\x74\xda\x4e\xd9\xe2\xbd\xd3\xdc\x16\xdb\xaf\x52\x2a\x42\x9a\x84\x5a\xd4\x8b\x68\xb2\x64\xd5\xe9\xfa\x3a\x25\xb0\x04\x7d\xd3\x3c\xc1\x43\xf8\x74\xd6\x0d\x06\xf2\xe4\x7f\xe5\x29\x13\x6c\xca\xa6\x16\x51\x93\x76\x7a\x8d\x95\x4b\xbb\x2b\x96\xa2\x7e\xb1\xd7\x14\xbe\x07\x3c\x07\x19\xe1\xe6\x10\x81\x8e\xe7\x8a\xcc\xf6\x28\x3d\x12\x62\xb6\x07\xb5\xe1\xf0\x8f\xa3\xf5\xda\x5b\x63\xd2\x3e\xef\x65\x52\x40\xbd\x58\x4d\xa6\x98\xd3\x1d\xf6\x7f\x60\x92\x2c\xeb\xdf\x67\x7b\x1a\xe8\xcd\xdd\xce\xf6\xe0\x43\x9a\x30\xf2\xe6\x2d\x99\xf3\xd4\x5c\xa4\x31\x0c\x58\xdd\x5a\x67\x34\x98\x6f\x73\xbf\xbe\x99\x1c\xe4\xa3\x89\x50\x4b\x48\x6b\x33\xf0\xe7\x9f\x95\x06\xfe\x41\x7f\xe2\xad\xb5\x64\xa7\x0c\xcb\xc2\x02\x65\xc7\xd7\x04\x51\x42\x53\xe7\x31\x4b\x46\xc7\xd7\x36\x36\x8b\xd7\x42\x9b\x8b\x27\x86\x22\xe8\xe2\x88\xfc\x9f\x97\xb3\x59\xf8\xff\x7f\x75\x84\xff\xf9\x8f\xbf\x95\xff\xb6\x3f\x3f\xf6\x04\x3d\xba\xdc\x6c\x04\x89\xec\xa7\x32\xf1\x21\xb3\xd2\xb9\x3b\xcf\x5b\x5a\x44\x09\x85\xf6\x70\x2f\x34\x6e\x89\x13\x99\xca\x40\x46\x96\x7b\xc1\xae\xbd\x90\x39\xb5\xb5\xc7\x52\x49\xde\xfc\xbe\xe6\x85\x0d\xaa\x51\xbe\xce\xd6\x47\xe4\xed\x97\x5f\x7e\xfe\xa5\xe7\x3d\x17\xf8\xfe\xcd\x8e\x88\x34\x92\xcb\x6b\xb6\x61\x09\x4f\xb7\xd7\x41\xc2\x58\x95\xd7\xab\x2d\x7b\xff\xbc\xfa\x85\x5d\x7e\x24\x97\x44\x99\x37\x84\xce\xe5\xc6\xda\x2d\x22\xb9\xf4\x56\x0d\x83\xe2\xc8\x4c\xe4\x09\x95\x55\x1a\xca\x2c\x75\xc8\x09\x99\x5c\xbc\xbf\xf4\x91\x8e\xb6\xed\xd7\x24\xe9\x46\x5e\xc8\x90\x7d\x60\x6a\x75\x06\x71\x8a\xbe\x7a\xc5\xe5\x55\x5d\xf8\xbe\x22\x8a\xa5\x45\x59\xbb\x45\x66\xcc\x81\x18\x4a\x53\x8f\x0c\xd0\x8f\xde\xf8\x35\x64\x29\x54\x26\x46\x32\x74\x17\xa4\xa5\xd0\xe6\x05\xcd\xa5\x8c\x18\xad\xf1\xc4\x71\xc2\x16\xfc\xe1\xd8\xcd\x60\xdc\x49\xf5\xa6\x9e\x6f\x0a\xca\x02\x5e\x2f\xd0\xa2\x9c\x18\xd9\xb7\xa2\x36\x76\x83\xec\x50\xbc\xac\x3e\xa1\x42\xc1\xac\xca\xd3\x70\x28\x94\x1f\x01\xd8\xd0\xdc\xa2\x0e\xa0\x27\x0e\xd8\x02\xaf\x83\xd8\x05\x3c\x6c\x2e\x9a\x5e\x26\xd1\x93\xd3\x2b\x18\x1a\x8f\x75\xd1\xb3\x5b\xf8\xd7\xae\xa3\xb9\x6e\x77\x37\xf5\x6b\xe7\x6e\x7c\x33\x73\x78\x1c\xe3\xd0\x6d\xb9\x1c\xc6\xe1\xf0\x16\xe4\x05\x58\x97\x66\xc4\x6f\x5d\xc5\x51\x96\x83\xc2\xce\xb3\x3d\xcd\x96\xaa\xb1\x33\x0a\x52\xd5\x5e\xec\x08\x41\xa9\xae\x93\x2a\xb7\x10\xdf\x76\x32\xd5\x4e\x95\xdb\x89\x6f\x73\xcf\x5d\x54\xb9\x93\xf8\xb6\x4d\xba\x83\x2a\x77\xd2\xde\x5e\x7d\xf7\x27\xca\xcd\x57\x18\x9f\x3e\x15\xe6\x5b\x68\x2a\xf9\x14\x82\x6c\x8c\x3a\x46\x97\x32\x99\x76\x62\xbe\xeb\xea\x07\x00\x0c\x48\x4b\xa4\xef\x2f\x26\x4e\x46\xd1\x15\xef\xb1\x19\xc1\x8b\xfb\x8c\x9d\xd5\xf6\x62\x02\x05\x40\x4e\x5d\x14\xd8\x27\xaf\x21\x8a\x65\x22\x2d\x0a\xc0\x62\x90\xbe\x7e\x71\x12\x79\x76\x44\xf0\x05\x11\xdb\xd2\x70\x26\x5e\x39\x5d\xb1\xf5\xe3\x91\x6e\x15\x16\xef\xf4\xb8\x8e\x64\xef\xb8\x57\x99\xe2\xc4\x79\x53\xff\x3e\x17\x20\x7c\x06\x64\xfb\x6c\x4c\x9d\xd9\xe1\xb3\x07\x54\x03\xf5\x3f\x44\xce\x17\xfe\x53\x24\x13\x27\x40\xd9\x37\x67\xd3\x11\xb1\x3d\xe9\xbd\x1d\xbb\xf9\x35\xaa\x0d\xf2\xb0\x79\xf0\x81\xf3\x17\xfd\x2f\x88\x8c\xa9\x82\xba\xc5\xb2\x51\x78\x64\x4c\x8d\x70\xac\x44\x8a\x13\xfd\xe4\x13\x54\xcc\xae\xf3\x08\xf9\x77\xd7\x59\xff\xbf\xf6\x21\x3a\x97\x34\x7c\x47\x23\x2a\x82\x5d\xb0\x51\xe5\xab\x4f\x3c\x4c\x6e\x6f\x8d\x07\xca\x24\xe2\x77\xdb\x8e\x4d\x85\x5c\x5f\xdf\xd5\x73\xf7\x0f\x38\x64\x65\x20\x3d\xf2\xa0\x55\x60\xf3\x2f\x79\xd8\xfe\xb5\xea\x01\xfe\x36\x05\x74\x6d\x1a\xf6\xe7\xb1\x12\x4d\x99\x15\x8d\x4b\xc6\x21\xfd\xb3\xd7\x26\xe4\x64\x84\x2f\x99\x82\x62\xd3\xcf\x73\x59\x80\x06\x53\xcd\x60\xaa\x71\xb7\x60\x30\xd5\xfc\x96\xa6\x1a\x8d\x0e\xfa\x15\xb5\x35\x8d\x1f\x51\xc2\xb6\xaf\x99\xe6\x66\xc5\x0a\xd9\xd0\x9a\x87\x34\xfa\xf1\x90\xb9\x4f\xb1\xb4\xdc\x31\x16\x5f\x26\x7c\xc9\x05\x8d\x2e\xd8\x43\xfa\xad\xac\x86\xac\xd5\xa6\x76\x19\x5b\x0f\x2c\xfd\x31\x4c\x4c\x9a\x1e\x88\x60\x0f\xe9\x4a\xc6\x18\x91\x8b\xa5\x3b\xd1\x72\xd2\xa5\x20\x04\x98\x12\x0d\x54\x7d\xc6\x53\xb8\x24\xd6\x4b\xcd\x55\x24\xc1\x8e\x80\xcf\x28\x0b\xf5\x27\xbe\x7e\x75\x2f\x2a\x57\xe5\x65\x28\xa9\x69\xf1\x9a\x3d\xa4\x44\xcf\x4e\xcf\xfb\x6b\x2d\x82\x0b\x95\x32\x1a\x6a\xf0\x3a\x6f\x15\x8b\x16\x5f\xcf\xf6\x5e\x1a\xc3\xd8\x2b\xdf\x10\x28\xba\x15\x0e\xec\xf3\x84\x8a\x60\x65\xf7\xe9\x42\x0f\x2d\x05\x99\xed\xcd\x79\x12\x8e\x83\xc5\xd2\x6b\x96\x68\xd5\x0a\xea\xe9\xf7\x39\x24\x79\x22\xb9\x3c\x75\x9a\xc5\x2f\x46\x68\x35\x49\xf5\x31\xae\x06\x52\x07\x78\x17\xa4\x48\x4a\x93\x25\x4b\xd1\xf4\x07\x48\x05\x8e\x1b\xa6\x22\xe0\x60\x5c\xd3\x18\x42\xb1\xd4\x54\x9c\x93\xa5\x10\x94\x86\x4e\x1d\x21\xda\x38\x52\x72\x85\xea\x73\x06\x65\xdc\xf4\xc7\xaa\x88\xc4\xb0\x80\x2d\x92\xfe\xfb\x81\xd6\xac\x1b\xf6\x84\xc4\x78\x61\x97\x67\x81\xb7\xca\x46\x1c\x1f\x52\x2b\x18\x22\x07\x11\x4a\x39\x24\xb8\x58\x8e\x09\xf9\x61\xc5\x6a\x5b\x05\xd3\x32\x20\x02\xf0\xe4\x67\x00\xaf\x81\x35\x5e\xb1\x75\x9c\x56\x53\x54\x74\x2d\x29\xa6\x4a\xdd\xcb\xa4\x53\xc3\x7d\x69\x92\x40\x22\x6c\xcd\x47\xf9\xda\xcc\xfc\x15\x59\x32\xc1\x12\xea\x6c\x72\x83\x92\xbb\x0d\xbb\x91\x6e\xbe\x1a\x9d\xac\x5b\x82\xce\xbd\x9b\xa1\x49\xe6\x1d\xdb\x02\xe7\x61\xba\xb0\xe7\x01\x0e\x71\x2c\xc3\x7d\x55\x78\x11\x37\xe8\xbb\x3a\x59\x7e\x0c\x66\x6f\x56\x87\xd5\xae\x98\x99\x13\xa2\x1e\x98\x55\x2a\xcd\xd1\x05\xc2\x3b\x26\xe4\x03\x6e\x71\x73\xa7\x84\x50\xcd\x07\xf0\xd0\x76\x71\xc7\x7c\x47\xc1\x3e\x7d\x54\x72\xad\x66\xdc\x9a\x01\xc4\xc9\xdf\x9d\xb0\x05\x4b\x98\x48\xbd\x44\xbd\x2d\x8d\xbd\xdc\x68\x49\x8e\xdd\x1f\x9a\x0a\x7a\x23\x2d\x2d\x8e\x90\xd6\xaa\x43\xd8\x98\xc3\x17\x1d\x0a\x68\x42\x6e\x2e\x4f\x2f\x8f\xc8\x71\x18\x12\x09\xba\xeb\x4c\xb1\x45\x16\xe1\x5d\x51\x63\x87\xd9\x3d\x00\x5e\xeb\x80\x64\x3c\xfc\x7f\x3c\x46\x95\x5d\x60\x95\xe7\x48\xed\x09\xaf\x6b\x40\x5b\xdb\xdc\x38\xa4\xc1\x76\x8d\x1b\x27\x13\x30\xbf\xeb\x43\xb1\xee\xde\x75\xa3\x67\xef\x9a\x7d\x03\x11\xc0\xc7\xd6\xd8\x6a\x98\x3c\x44\x8e\xf9\x5f\xf5\x11\x50\xfd\x6f\x35\xc6\x98\x4c\xfb\x10\x20\x27\x39\xa5\xc3\xa6\x90\x85\x34\x2a\xc7\xf9\x16\xe4\x08\x8b\x9f\x62\x99\x78\x09\x90\xf1\x3d\x49\x25\x7e\xae\x4f\x16\xd0\x1e\xb0\xba\x8a\xdc\x63\x05\x9c\x11\x0e\xac\xb9\xa1\x30\xcc\xcc\xf6\xfe\x8c\xee\xfd\x93\xe9\xe6\x2d\x7a\xf8\xff\x78\x04\x63\x79\x0d\xec\x60\x9d\xc8\x3f\xf8\x02\x3f\x38\xc2\x1f\xe0\x2b\xf8\x01\xcd\x00\x90\x1d\x13\xe6\x52\x5a\x84\x33\x29\x4b\x17\xbd\x4c\x0e\x78\x9c\x18\x1a\x02\xc0\x12\x21\xc9\x7d\x70\xe6\x2c\x92\x1a\x2f\x03\x07\x64\xfc\x35\x01\xd7\x41\x56\xea\xc2\x06\xed\x47\xb2\x80\x1e\xab\x3e\x46\x86\xd0\xde\x33\xc3\xf9\xd0\x14\xa7\x6b\x20\xbb\x2b\xfd\xd1\x3c\xf1\x63\x49\x6a\xc2\xd6\x32\xcd\x29\x6b\x69\x67\x81\x90\x36\x52\x20\x97\x90\x4e\xe1\x24\x96\xc1\x86\xb8\xa2\x42\x58\xd1\xbf\xa3\x9c\x3c\xba\xbc\x10\xcd\x19\xcd\x59\x7a\xcf\x4c\x44\x07\x38\x85\xdb\xe2\xa3\x61\xc1\x57\xba\xf3\x86\x24\x56\x39\x03\xea\xdf\x61\x93\x3f\xd5\x8c\xc0\x17\x64\x2e\xd3\x95\x16\xc5\x14\xf2\x10\x9a\x17\x78\xf7\xcd\x54\x23\x95\xb1\x6e\x7a\x6c\xee\x4b\xc1\x1c\x35\x9d\x1c\xec\xfb\x6d\xff\xbe\xdf\xd6\xfa\x1e\x13\x7d\x4d\x7d\x03\x98\x65\x16\x8e\x5f\x81\x04\xb7\x27\x2b\x4b\x3a\x60\xd8\x57\xa5\x81\xec\x46\x78\xe7\x6d\x36\x1f\x6b\x52\xba\x75\xbe\xe1\x2c\x16\xd7\x65\xc7\x93\x88\xbc\x88\x59\x5e\xe7\x51\x34\xab\x2f\xcc\xfb\x1a\x9a\x2b\x79\x5f\x0b\x7c\x42\xe9\xdb\x60\x30\xdf\x72\xba\x79\xa8\x3a\xc3\x94\xbb\x7c\x34\x5b\x4e\x67\x7b\x1f\x15\x83\x0c\xe5\xd3\xd9\x9e\xcd\x2c\xe6\xce\x2d\x67\x7b\xf4\xe1\x37\x82\x4f\x69\xb2\x63\x70\x35\xf7\xa4\x10\xc5\x07\xbb\x34\x31\x44\xcd\x4b\xde\x69\x17\x06\xcd\xa5\x47\x73\x59\x2e\x7f\xfa\x1c\x0a\x4c\x3d\xc2\x31\x8e\xb0\xad\xa9\x31\xdd\x97\x1e\x65\xa6\xaf\x38\xab\xa3\xd3\x74\x5e\x6f\x07\xcd\xe6\xa0\xd9\x1c\x34\x9b\xff\x7e\x9a\x4d\x17\x43\xf4\xd4\x6f\xd6\x31\x4e\xf1\xec\xae\xf4\x6c\x30\xb2\xb5\x51\x7b\xa8\xb0\xd6\xed\xd8\x77\x8a\xcd\x08\x17\x21\x54\x73\x31\x0a\x1c\x38\x39\x80\xdb\x88\x45\x6e\xfa\xdc\xce\x19\xd4\xb7\xc0\x6f\xbc\xd2\x37\x44\x4b\xa3\xd6\xc6\x3d\xe7\x58\x74\xdc\xa9\x34\x8a\xfc\xb9\x8c\x42\xa0\xfa\x11\xa3\xca\x0c\xed\xa5\xc4\x5c\xa5\xf4\x8e\x89\x68\x4b\xd2\x84\xd9\xe9\xe1\x28\xb4\x18\xe5\x11\xca\xae\x1d\x81\x0a\xf5\x0a\x76\xfa\xa6\x41\xf4\x1c\xc1\x96\x56\x7f\x33\x80\xad\xfe\xec\x4b\x42\xe1\xa9\x9c\x30\xf0\x16\x9e\x08\xfa\x7a\xa1\xf1\x67\xe0\x2f\xac\x53\x50\x31\x4a\x95\xc9\xa8\xb7\xa8\x73\x1a\x8d\x45\xd1\x0b\x6e\xa3\xde\xe4\x39\x59\x8e\xb2\x0b\x65\x6d\x05\x95\x80\x3a\xe3\x9b\x95\x6b\xf4\x9d\x49\x0e\xb1\x74\x03\x1b\x33\xb0\x31\xff\x68\x36\xa6\x7e\x83\xdb\xa2\xe9\xf0\xd3\xb9\x87\x08\x36\x9b\x97\xda\x38\x18\x40\xa1\xfe\x3b\x5e\x9f\xa9\xdb\xd8\x86\x4f\x98\x4b\xae\xe7\x66\x0c\x73\x86\x53\xc9\x67\xd3\xa0\x08\x4b\x32\x21\xbc\x9a\xed\x36\x4a\x6f\xba\xfc\xe6\xe3\xe4\xb4\x73\xb6\x45\x53\x3b\x57\xf8\xb7\x51\xe6\x36\x4e\xae\xc7\xf0\x37\xba\x49\xbf\xe1\x75\x53\xbb\x69\x06\x2d\x42\x49\xa8\x4f\x99\x45\x9e\xa4\xe2\x8a\xd1\xd0\x67\xf1\x29\xb3\x92\xa5\xd6\x79\xa2\x1c\x53\x39\x58\xf1\xa5\x00\x2e\x59\xa4\x45\xbf\x64\xcd\x97\xa5\xb8\xf1\xca\xdc\x24\x7c\x46\x23\x13\x3c\x17\x4b\x01\x9e\x6e\x2a\x0b\x56\x9a\xf1\xc3\xca\x28\xa8\x15\xcb\x75\xd9\xf7\x94\xeb\x5b\xbe\x90\x0d\xca\x46\x48\xaa\x6a\x31\x54\x53\xed\x32\xd2\x65\x58\x80\xfa\x9b\xa2\x33\x08\xea\x7b\x6c\x46\x42\x16\x44\x34\x01\x6d\x1a\x0f\x56\xf6\x6b\xe7\x2c\x3b\x11\x12\x90\xc8\x71\xd0\x2a\x7d\x22\xe7\x07\x35\x48\x9e\x3d\x81\x02\x9c\xc0\xd6\x14\x0a\xf5\x16\x75\xce\xcf\x33\xd7\x2a\xe7\x57\x6f\xf2\x9b\x71\x7e\x78\xcb\x76\xca\xa5\x00\x9f\x0c\x5c\xdf\xc0\xf5\x0d\x5c\xdf\x3f\x9a\xeb\xab\xe3\x9f\xae\x1c\x0a\x78\xdf\x1f\x9b\x45\x21\x8a\xe4\xfd\x64\x3a\x99\x4e\x29\x24\x09\x7f\x9f\xc8\xf5\x0f\xb6\x78\x7f\x77\x6a\x85\xb6\xaf\x6d\x7e\xcf\xc2\x24\x05\x33\xf5\x11\x79\x13\x67\x14\x12\x4a\x92\x0c\x6b\xe6\x84\x89\x8c\x89\xee\x9a\x30\x11\xd0\x58\x61\x9a\xb2\x3c\x21\x1c\xc6\x3b\xd9\xa1\x7c\x7d\x16\x41\xaa\x50\x40\x61\xe7\x28\x55\x80\xcc\xf7\x7f\x3a\x3f\xbe\x78\x3c\x68\x1a\x3f\x7f\x02\xd8\x40\xdf\xff\x30\xe0\xdc\xab\xeb\x24\x38\x55\xe9\xc9\x8a\x05\x77\x9d\xc0\xb8\x66\xa9\xb1\xc2\x8d\x9c\x34\x7e\x23\xc8\x81\x4a\xa4\x20\xc7\x3f\x5c\x93\xb3\x93\xcf\x72\xaf\x3d\x35\x26\xc7\x86\x9f\xf1\xcd\x7e\x53\x4e\x91\x80\xa1\x1b\xb3\xbd\x53\x79\x21\xd3\x15\x94\xaf\x3b\x20\xb3\x3d\x13\xf4\x6c\x43\x33\x4d\x21\xc6\x70\xb6\xd7\x91\xe0\x23\xef\xc6\x07\x15\x26\x32\x5f\xdd\x91\x51\xf1\x95\xef\x25\x4e\xc5\xfb\x19\xce\x6a\x37\x3e\x7f\x1e\x2f\x4e\xa4\x10\x2c\x48\x6f\xf8\xda\x09\x33\xe1\x62\xd9\x37\x3e\xfc\xdd\xf4\x7d\x47\x17\xe8\xcc\xca\x05\xc9\xab\x5b\xf9\x80\xe5\x3f\xc7\x36\x55\x61\xce\x6f\x08\x2c\xb0\x34\x4a\xf9\x9a\x11\x7d\x2a\xc9\xdc\xc6\xf0\x34\x5a\xeb\xcd\x67\x9e\x6f\x40\x4a\x34\x8a\xda\xdc\x5c\x0d\xe9\x2d\x4b\x75\xb7\x7c\x9d\x26\xd5\x0a\xde\xb6\xda\xb4\x49\x33\x42\xf8\x3a\x4e\xe4\xc6\xb0\x2c\x31\x4b\x40\xf8\x16\x01\x1c\xb1\x58\x86\xa3\x54\x8e\xda\x02\x2c\xf3\xa5\x2a\x5c\x18\x86\x1f\x25\x8c\x2a\xf4\x20\xb6\x45\x29\x39\x38\x06\xe8\xb9\x87\x6c\x9e\x61\xca\x95\x38\x4b\x62\xa9\xf4\xe1\x6f\x3f\xa0\x8f\x0a\xba\x9f\xc7\x0b\x2d\xf0\x4d\x16\x34\x60\x53\x93\xb4\xa2\xe3\x90\xbc\x9b\xbe\xaf\x7e\x82\xfc\x44\xc2\x80\xcb\x25\xec\x41\x33\x04\xc0\xe8\x61\xa9\x7a\x73\x18\xbc\x68\x0c\x04\xa9\x3c\xa5\xa8\x15\x06\x0d\x1f\x47\xd3\x54\xef\x8b\x3e\x6a\x79\xc9\x74\xc8\x78\x49\x64\x12\x82\x97\x94\x17\xda\x34\x0d\x56\x4e\x8e\xd0\xc3\x9c\xfd\xb0\x79\x40\x8d\x81\x43\x30\x16\x2a\x4c\x2d\x0a\x5f\xb8\xc9\x4d\xfd\x92\xac\x5e\x8e\x0d\x82\x35\x88\xb4\x40\xaf\x91\xbc\x57\x58\x3b\xbf\x12\xf0\xda\xa3\xd3\x15\x15\xa1\xde\x7f\x11\xc8\x35\x70\x60\x45\x86\x53\x21\x43\x16\xcb\x24\x55\xc6\x39\xc7\x1c\x4c\x58\x94\xcc\x52\xc5\xfd\x29\x1a\x5c\xfd\x0e\x21\x93\x5c\xb0\xd6\x7c\x54\xb1\xde\x7c\x15\xce\x16\xbc\xcc\x54\x46\xa3\xc8\xeb\x4b\xa7\x25\x91\x10\xd4\x40\xe3\xf1\xf8\xd5\x8e\xa6\x1a\x7d\xd8\xf0\xa0\x7f\x14\x4e\xd9\xae\x1e\x48\xc9\xf3\x19\x94\x9e\x33\xb9\x27\x0e\xec\xb1\x61\x29\xde\xd0\x3b\x7d\x8f\xa3\x71\xe6\xb4\xbf\x9d\xc7\x8b\x5b\x9b\x4e\xd7\xb7\x34\xb5\x55\x41\x1a\xb9\xb7\xd1\xfd\x1c\xbc\xc8\xe4\x42\x9f\x45\x7b\x7c\x98\x50\xc6\x17\x9f\xa6\xa5\xb6\xbe\xde\x33\x65\xaa\x3e\x68\xf8\xdb\x92\x30\x70\x92\xf6\xf7\x15\x22\x53\x1a\xe3\x16\x9b\x46\x5c\x28\x2d\xc3\x40\x9a\x26\x22\xef\xbd\x4e\x91\xf5\x9b\xa1\x77\x91\x99\x00\xc6\x62\x80\x4f\x4e\xce\x31\x8f\x17\x3b\xd0\x90\x33\xbb\x2d\xc5\x16\x99\x1d\x02\xb6\xc5\x86\x22\xe8\xd9\x6b\x1e\x39\x8e\xa8\xf0\xbb\x31\x7f\x2a\x43\xa2\xa7\xfd\x90\xde\x48\x1b\x21\x2e\x85\x58\xd3\xa4\x9b\x33\xd1\x6b\xf0\x7c\x57\xa2\x7b\x16\xaf\x11\x4a\x3e\xff\x6c\xce\xfd\x26\x4f\x2c\x85\x80\xfe\x5e\x8a\xa5\x04\x85\x6e\x4b\x0c\xf0\x12\x53\x41\x98\x8d\x1b\x46\x99\x08\xfd\x20\x31\x57\xab\xef\xa4\xe2\xac\xc6\x36\xd5\x7a\x72\x87\x6c\xa9\x22\x99\x75\x9e\x82\x89\xad\xe4\x3d\x89\x91\xcd\x44\xa9\x00\x91\xb1\x19\xdd\xab\x56\x4b\x18\x06\xaa\x84\x4e\x64\x3e\xd2\x50\xeb\x38\xa6\x89\x2c\xe6\x56\x84\xd3\x16\x27\x36\x56\xe2\x6a\xfa\xde\x8b\x8d\x35\x37\xe7\x9e\xbf\xd7\xcd\xbb\xd8\x10\x9c\x83\xbb\x08\x00\x32\x1b\xf2\xa1\x47\x54\x88\xd9\xc4\xea\x67\xde\x3d\x54\xb0\x34\x67\x67\x7c\x2b\x71\x31\x6e\xc9\x58\x06\x6e\xf0\x06\x2d\xbf\x34\x2e\xfa\x16\x5f\x3b\xc9\x0e\xbc\x11\x34\x1a\xe2\x0b\x99\xdc\xd3\x24\xc4\x74\xe4\xc6\xdb\x30\xe7\xd3\x35\xf2\x5e\xc0\xd9\x81\x9a\xd1\x37\x19\x54\x66\xdc\x43\xef\xd6\xb9\x4c\xbd\x5e\x9e\x46\x78\x86\x19\x24\x4c\xc5\x52\xa8\x22\x6b\x36\x57\x24\x85\x5e\x70\xc0\x8a\x8b\x23\x8c\xe7\x3f\x75\x66\x0a\xa7\xd7\x57\x9a\x95\xc6\xef\x70\x1c\x5f\xd7\xf3\x2c\x35\x6d\xca\xe3\x37\xe8\xf7\x55\x51\xc1\x34\xda\x7a\x9d\x2f\xf5\xcc\x84\x1d\xdf\xec\x5f\xd1\xc4\x4b\xad\xc0\xa5\x35\x8e\x19\xc5\x5a\x12\x16\xf1\x4c\xa6\x56\x4a\xe6\x18\x2a\x0e\x2d\xbf\xb6\x7a\x27\x60\x21\x15\xa1\xbe\x2e\x63\x96\xac\xb9\x52\x7c\xc3\xc8\xf9\x67\x0e\x43\x51\x9c\x6f\xdc\xa1\x5d\xf3\x39\xcd\xe3\x85\x66\x3f\xa7\x89\x7c\xd8\x9e\x19\x2d\xc9\x75\xa4\x8f\x54\x4f\xbc\xfb\x6e\xfa\xbe\xbd\x03\xff\xc1\xf7\x33\x65\x0e\xd3\xbe\xaf\x08\x5b\xcf\x59\xa8\x8f\x27\xa4\xab\x8f\xf5\x08\x46\xb1\xac\x48\x79\x28\x93\xae\x7d\x57\x35\xbc\xbb\xf8\x49\x8c\x15\xf1\x4e\x74\xc3\x2c\xde\x81\xea\x74\x74\x51\xa2\x46\x08\x0b\x2f\xca\x06\xf0\x38\xd4\x2a\x4e\x24\x2a\xf3\xa3\x2d\x09\x74\x8f\x24\xc3\x68\xbf\x2c\x56\x69\xc2\xe8\xda\x95\x1b\x0a\x08\xed\xef\xfb\x5d\xba\xcd\xdc\x48\xb0\xa2\x1c\xc4\x81\x6b\xe4\xcb\x6c\x42\x82\x7c\x86\x0b\x17\xdc\xc6\x5d\xd8\x18\xc1\x9e\x4b\x14\xc8\x21\xf8\x81\x8b\xeb\xad\x08\xa6\x50\xfa\x7a\x27\xd8\x97\xbe\x3c\x68\x40\xb6\xb5\x12\xc6\x06\xf4\x98\xde\x8d\x80\x68\x67\x1d\xd4\x51\xe1\x97\x2b\x6e\x73\x7e\xa1\xd0\x50\xef\x3b\x47\xd4\xd7\x6d\x01\xc6\x31\x21\xe7\xf2\x9e\x25\x56\x55\xb6\xd4\xd7\x38\x61\x61\x16\x60\x16\xb4\x51\x16\x83\x66\x58\x04\xba\xe9\xb7\x7c\xb9\xca\xdb\xfa\xb1\xac\xfe\xd2\x6a\xd6\xa7\x1f\x49\xa6\xe8\x92\x69\x5a\x38\xd7\x0c\xb6\x26\x91\x59\x4c\xd6\x32\x41\x74\x5e\xc2\x12\x6f\xd4\x23\x30\xc4\xb9\x5c\x9e\xb3\x0d\xf3\x85\xef\xd4\x76\xc4\xb6\x2d\x41\x1d\xb2\xd7\x41\x5a\xfc\x3c\xd5\xaa\xc3\x41\x36\xe0\x82\x5c\xdc\x2f\x60\xbf\x46\x74\x7c\x69\x75\x2c\x97\x8b\x05\x6a\x57\x26\x62\x21\xf5\xbf\x50\xb7\xa2\x65\xd8\xd9\x5e\xb3\x2c\x1f\xc9\x25\x26\x09\x61\x58\x97\xd9\x6e\xb2\x1e\x2c\x4d\x68\xc0\x48\xcc\x63\x76\x60\xad\x7d\x9a\x27\x07\xbe\x16\xd5\x07\x50\x4c\xc7\xd7\xed\x6c\x2f\x0d\xa0\x02\x8f\x86\x19\x4a\xd2\x25\xf5\x0e\xb9\x5c\x2c\x7e\x1c\xef\x08\x7e\xb8\xaf\x13\xe0\xc9\x7b\x71\x1f\x27\xe5\xf6\x4d\x2a\x91\x95\x94\x77\xae\xcc\xd2\x80\x36\x52\x19\x8f\x70\xdf\x2a\x08\x44\x9f\x36\x94\x14\xf4\x71\x33\xca\x40\x63\x50\x4f\x65\x6c\xb6\xd9\xcf\x98\x51\x10\xa4\x21\x32\x29\x8e\x99\x08\xeb\x3d\xcc\x65\x9a\xca\xf5\xd8\xca\x22\xc6\x2e\xae\xe8\x22\xcf\x97\xeb\xe5\x14\xb8\x08\x40\x97\x11\x27\x6c\x03\xa6\xde\x42\xd2\xd1\xbd\x1b\xbe\x17\xdd\x10\xe7\xdb\x98\x2a\x65\x72\x4d\x6d\x65\x46\xd4\x3d\x4f\xfd\xb1\x2b\x9a\x2b\x86\x89\x1a\x7c\x32\x37\xe5\xcd\x72\x0f\x02\x0c\xa4\xc3\x21\x6c\x04\x2d\x42\x09\x0d\xd0\x5e\x06\x0c\x08\x19\xe8\x72\xe6\x5b\x2d\x66\x44\x68\x01\x49\x64\xb6\x5c\xd9\x03\x69\x64\x7e\xe8\xf9\x00\x87\xb9\x37\xa9\xaf\x7c\x7d\x9a\xe6\x58\x1e\x21\xaf\xb1\x51\xac\xb4\x38\x89\x08\xd8\x5d\x51\x41\x7e\x11\xb1\x30\xe6\xce\x3e\xa5\xf3\x6c\x69\x24\xea\x73\xb9\x3c\x4d\x24\x54\x2b\x68\xec\xa5\x81\x5e\x40\x37\x1f\xd8\x5a\x26\xdb\x69\x22\x17\x3c\x62\x9e\x5a\x9b\xbd\xe6\x72\xcd\xd7\xa0\xaa\x3e\xa1\x51\xf0\x4d\x42\xe3\xd5\xb7\x54\x2c\x8f\x17\xe9\xe3\x56\x66\x7b\x3b\xb5\x40\x7a\x7c\x6f\xb0\x49\x96\xc3\xb9\x91\xdf\x4a\x95\x1e\x83\x7c\xd0\x79\xfb\x4f\x9b\xbf\x75\x31\x01\x68\x7e\xf4\x91\x56\x0d\xba\xac\x5c\x0f\xa4\x9b\x2e\xa5\xbd\x3a\xb4\x50\xdc\x14\x26\xb5\xa2\x92\x3e\xe1\xa9\x62\xd1\x82\xbc\xa4\x8b\x06\x87\x1a\x40\x0f\xa6\xef\x15\x37\x5a\x93\xbc\x2b\x86\x4c\x31\x9e\xdf\x57\x63\xf2\x6e\x9b\xc7\x2f\x9d\xd4\x2a\x27\xdb\xc7\xe4\x77\xf2\x5a\x1b\xf2\xae\x95\x6f\x9a\x80\xd3\xfd\x51\x9f\x39\xb6\xfb\xf5\x97\xff\x3e\xbd\xba\x9c\xfe\xfa\xcb\xdf\xc1\xb5\x42\x8a\x1c\x5f\xdc\x53\x23\x30\x43\xdd\x30\x25\xd7\x8c\x60\xb1\xfb\x36\x81\x03\x66\xe7\x82\x4e\xcf\xe7\x00\x65\x1c\x88\x52\xa4\x09\x5d\x33\x23\xdc\x5d\x9d\xdd\x7c\xbc\xba\xd0\xbd\x1e\x9f\x9c\x9c\x4d\x6f\xc6\xe4\xa3\x3f\xe1\x9d\x69\xc8\x71\x62\x10\x97\xb6\x95\x19\x68\x6f\xca\x58\xc9\x5d\xd6\xe4\x62\xfa\xf1\x46\xaf\x0b\x50\xd5\xd7\x2d\xf8\x04\x10\x89\x45\xc5\xa9\xc5\xa5\x55\x64\xaf\x85\x7c\xdd\x93\x09\x80\xfc\xf5\x97\xff\xc6\x69\xfd\xfa\xcb\xdf\xbd\x02\x8d\x51\x10\x98\x7d\xa9\x4d\x88\x48\x83\xcc\x57\x54\x81\xf7\x0e\x7a\x9a\xc7\x89\xb4\x1e\x38\x76\x93\x7d\xbd\xfb\x8f\x14\x00\xd0\x00\x13\xe4\x32\x91\xfb\x9c\x40\xfd\x21\xc4\xc9\x76\x6a\x8d\xfb\x97\xcb\xc8\x04\xce\xb9\x6f\x4e\x4d\x13\x68\x57\x36\x69\x94\xb8\x33\x4e\x66\x1b\x1e\xb0\x2b\x99\xa5\x9a\x11\x86\x94\xc8\xdd\x61\xc3\x5c\x95\x7c\x21\x40\xf5\x52\x64\x54\xa6\xa1\xd1\x09\x18\x06\x6d\xcd\x42\x33\x8c\x97\x1b\x85\x04\x23\x07\x9a\x8a\xd9\xcb\x0a\x47\xd9\x92\x9f\xab\x9b\xe9\xd5\xe5\xcd\xed\xbb\xcb\xcb\x1b\xe4\xea\x8a\xea\x5e\x8d\xf2\x5a\x83\x42\xc6\x59\xeb\xf5\x2e\xe1\x88\x37\x26\x3b\x44\x3d\x88\xcf\x4a\xe7\x52\xec\xb2\xd8\x12\x66\xf2\x74\xca\x55\xa9\x84\x59\xc4\xe8\xc6\xb8\x37\x78\xe5\x04\x60\xc0\x40\x81\x86\xf5\x28\x3d\x3d\x66\xfe\x94\xb7\xad\x07\x03\x29\xed\x89\x14\x42\xf3\xb4\x77\x13\x01\x09\x10\x9a\x4c\xa4\xad\x34\xd7\x9e\xe6\x2b\xb0\x08\x70\xb1\x3c\x65\x11\xf5\xb9\xf4\xb5\x4d\xa8\xd6\x49\xb3\x8c\xdd\x3e\x19\xa3\x5c\xbb\x90\x21\x53\xe7\x5c\x75\xba\xd1\x9d\xb9\x1f\x9c\x4c\x4e\xaf\xf4\x47\xe5\x6a\x05\xfa\xd7\x7d\xd0\x56\xda\xde\x47\x42\x8a\x91\x53\xc0\xb6\xc5\x8c\xb4\xa6\x5b\xbb\x5f\xa8\x85\xca\x89\x11\x28\x2f\x31\x8d\x09\x73\x94\x5f\xe6\x6d\x43\xfa\x49\x63\x6a\xd6\x08\x36\x28\x72\xc8\xec\x96\x00\xb0\x3d\x29\x43\x4b\x1e\xc6\x05\xe5\x91\xe6\xb3\x27\x62\x2e\x33\x11\x6a\xf6\x61\x2a\x93\xee\x8c\xd8\xfb\xef\x1b\x3e\x2c\xc3\xf9\xe3\xe9\xf4\xf0\xe6\x64\x8a\x8a\x4a\xef\xea\x05\x66\x9b\x36\xe6\x0d\x47\x1f\x82\x74\xd6\x67\xa9\x02\x9a\x9e\x53\x7a\x5f\xaf\x52\x10\x9e\x24\x4c\xc5\x0c\xeb\x5c\x17\xe9\x44\x32\xc8\xa7\x6e\xc9\x83\x45\x14\x26\x27\x86\xa6\xee\x1b\xc9\xbd\x14\x86\x06\x01\x64\xfc\x01\xc2\x11\x64\x98\x32\x49\x2e\x16\x84\xe2\x7c\x80\xb9\xd0\xb3\x4d\x12\x16\xa4\xd5\x52\x57\x0d\xc9\x91\xe7\x34\xb8\x1b\x95\x22\x9d\x0e\x4c\x7a\xc8\x02\x3b\xdb\x08\xee\x22\xb3\x0f\x4f\x2d\x32\x6a\xf2\x83\xd5\x92\x69\xac\x65\xd1\x89\x9e\x1f\x24\x6d\xf4\x76\xe3\x00\xda\xe5\xa7\xbc\xeb\x47\x3f\x10\x8d\x9d\x34\x42\xbc\x29\xcc\x57\x14\xb8\x05\x38\x05\x08\x0a\xd8\xec\x83\x5c\x0b\xda\x18\x93\x2d\xa4\x30\x15\x04\x43\x37\x7c\xdb\x1a\x19\x94\x5a\x59\x0b\x96\x3e\x25\xa7\xdf\x9e\x4c\x4b\xf6\xa5\x20\x3e\xfa\xec\x33\xaf\x5b\x40\x16\xc6\x47\x6f\xbf\x3a\x80\x26\x6f\x7e\xff\x07\xfc\xc7\x67\x9f\x17\xff\xfa\xea\x35\xfe\xeb\xed\x17\x5f\x7c\x6e\xfe\xf5\xf6\xed\xdb\xfc\x5f\xbf\xf7\x11\xe5\xde\x99\xd9\x65\x2a\x6d\x1d\x83\x40\xae\xe7\xc6\xdd\x04\x2c\xf8\x66\x4f\x0f\x00\x44\x07\xf9\xe1\x6f\xc8\x4c\x73\xac\x79\xcb\x55\xc2\x0a\x67\x93\x22\xcb\x80\x97\xc5\xea\xac\x44\xc2\xfc\x7a\x3c\xd2\x2b\xad\x4b\xec\x2f\xe3\xe0\x7e\xde\x40\xc7\xf3\xe9\x35\xb1\x2b\xfd\xa6\xd0\x9a\x98\x65\xa4\x57\xe7\x7f\xd1\x94\x03\x65\x94\x4f\xa9\x19\xa5\x3e\x22\xb5\xad\x45\xa9\x97\x59\xfa\x48\x9c\x5a\xfb\xf2\x89\x91\xaa\xcc\xd2\xa5\x74\x91\x2a\xb0\xb9\xdd\x68\x35\x95\x03\x5a\xfd\x4d\xd1\xaa\x34\x07\xe1\x69\xf0\xaa\x04\x05\x00\x4b\x83\x70\x7f\xdf\xa9\x87\x84\x46\xc4\x54\x1a\x47\x83\xc6\xb8\x5a\x3c\x46\xa1\x64\xb8\xe4\x25\x4b\xf5\x86\xc1\x66\xa1\x98\x9b\x06\x61\xc9\x25\x45\x03\x40\x6f\xa7\xc6\xdc\x4d\x79\xf6\x4f\x2f\xae\xab\x48\x7d\x17\x8c\xed\xdd\x28\x83\xc4\x0f\x80\x0e\x7c\xf9\x39\xfe\x77\x40\xea\x03\x52\xff\x14\xa4\xce\x68\x9a\x25\xec\x94\xa5\x2c\x48\x2f\x37\x2c\x49\x78\xb7\x72\xfe\xbd\xef\x23\xb7\x26\xb8\xb4\xbf\x41\xf5\x53\x6c\xed\x3f\x8c\x29\x33\xda\xa8\xef\x4d\x65\xb5\xc4\xad\xd7\xc2\x05\xa1\x68\xa9\x20\x8a\xc5\x14\xd3\xe5\x00\xb9\x00\xfc\x29\xbc\x8a\x34\xc8\xea\xa7\x0e\x08\x7b\xa0\xeb\x38\x62\x5f\x93\xd9\xde\xf5\xc5\xf1\xcd\xfb\x2c\x8a\xb6\x57\x54\x84\x72\xfd\x47\x28\x45\xfb\xe1\xf8\xfa\x7f\xbb\x3f\x82\x8b\xcc\xc1\x15\x83\x68\x9d\xeb\x2c\x06\xfc\x71\x2e\x83\xbb\x3f\x36\x54\x03\xcb\x13\x8b\x82\xb5\x06\x3e\x9f\xed\x21\x92\x5c\x48\xf4\xfa\xcf\x57\x7f\x80\xd9\xa5\x74\x53\x69\x8c\x35\xcd\x86\x31\x28\x22\x91\xa5\x72\x84\xf0\xd9\x59\x64\x86\xd4\x42\x3c\xf8\xd3\xe9\xb4\xaf\xf9\xf7\x9b\xea\x17\xc6\x8e\xaa\x88\x79\x43\xfe\x74\x3a\x25\x4a\x16\x25\x6f\x69\xe2\xf7\x81\x06\xca\x1c\x4a\xb1\xbf\x9f\x12\x85\x40\x84\x6f\xe5\x62\x01\x0a\x25\x99\x90\x10\xb4\xee\x60\x84\xc0\x42\x34\x1a\xf3\xff\xe9\x74\x8a\x04\xd6\xab\xc6\x34\xe6\x5b\xa6\xcf\x02\x13\x21\x0b\x0b\x23\x89\x46\xdc\x30\x5a\x9c\xc8\x8d\x3e\x73\x73\x96\x82\x36\xab\xf0\x32\x6d\x98\xa7\xc8\xf5\x88\xe3\x4f\xf6\x94\x5a\x31\x1a\xa5\x2d\x75\xa4\x7a\x7c\xac\xb9\xa2\x1d\x55\x11\xf8\x61\x43\x1d\xb2\x56\x2c\x97\xfb\x2b\x9e\x3d\x04\x51\xd6\xc3\x1e\x37\xa9\x7c\x80\xac\x1b\xdc\xcd\x51\xe5\x6e\xca\x45\x1f\x97\xcd\x92\xa7\x2a\x33\x9d\x82\x62\x6d\x2d\x05\x4f\x65\x9e\x31\xa3\xcc\xbf\x8d\x9b\x8c\xa1\x65\x9e\xa0\xe4\x5c\x68\xbc\xa7\x97\x42\xea\x9f\x0a\x77\x83\xfd\x7d\x32\x99\x7e\x7f\x4d\xc2\x6c\xbd\xf6\xba\x6b\xe6\xcb\x38\xb0\x9e\xb6\x06\xc7\xd9\x48\xa7\x68\x4b\xe6\xdb\x92\x85\xbc\xac\x55\xf7\xea\x74\xcd\x5a\xd7\x59\x94\xf2\x38\x72\x9c\x66\x4d\xc1\xc8\x4c\xa1\x25\xd1\x14\x32\x30\xc1\x54\x60\x7e\xe6\xf5\xa0\x2b\x02\x41\x3f\x88\xad\x3c\x3e\xc4\x0a\x4b\x26\x79\x5e\xc0\x3c\x81\x58\xdf\x27\x34\x6e\xb2\x72\x20\x38\x01\xdd\xee\xef\x1f\xee\xef\x63\x77\x06\xb7\x92\x15\x6a\x04\x8d\x3f\xc0\xfe\xfe\xe1\xff\xd1\xb0\x38\x3c\xd8\xb0\x74\xf5\x66\xdf\x9b\x6d\x13\xf0\xa3\x85\x01\xca\xd8\xb9\xeb\x2c\xec\xd6\x9c\x2d\xb9\xb0\x23\xea\xee\xf6\xf7\x31\x89\x5d\xa4\x64\x93\xee\xb1\x00\xe1\xfe\xbe\x19\xdb\xbd\xd3\xb0\x41\x3c\xde\xa8\x16\xe7\x39\xff\x0d\xcb\x3b\xc6\xca\x64\xfd\xaf\x09\xb6\xb7\xda\xda\xf2\x16\x9b\x5a\x6d\xc6\xb3\xd1\x56\x5e\xf2\x6b\xe6\xea\x16\x20\x70\x63\x06\x7e\x5a\x0b\x15\x19\x57\x2b\x54\x7f\xaf\x3d\xe2\x4e\x2b\xac\xd4\x98\x5c\xc8\x14\x70\x04\x61\x62\xc3\x13\x29\xb0\x02\x9c\x34\xc9\x4a\xa9\x20\x73\x4d\x8b\xd6\x2c\xa5\xd1\x81\x49\xd1\x1d\xac\x98\x4a\x13\x9a\xca\xc4\x3b\x61\x37\xf3\x9c\x46\x11\xb1\x66\xf4\x12\x4e\x53\x16\x6d\xcb\x67\x47\x66\x6e\x25\x13\xd4\x85\xc8\xe0\xae\x21\x82\x5d\xa3\x31\x13\x15\x6a\xcc\x4c\x7a\xaf\x03\x1a\xf1\xfd\x7d\x37\xde\x50\xf7\x7a\x19\x33\x71\x9d\xd2\xe0\xce\xfd\xcc\x7b\x6f\xac\xc3\xf3\xfe\x7e\x4a\x63\xdb\x91\x7b\x72\xf4\x00\x8f\x3e\x33\x57\x6c\x91\x30\xb5\x82\x33\xb1\xf1\x66\x8d\x2d\x1d\x9e\x49\xc3\x77\x79\xe5\x48\x70\x0a\x22\x34\x35\xc8\xa8\x31\xb8\x29\x61\x2a\xa0\x42\x99\xc4\x94\xee\xfd\x92\x64\xc3\x12\xbe\xd8\x1a\xb7\x68\xc8\x9f\x83\x22\x15\x7e\x63\xea\xc2\x79\xf1\xab\xf1\xfd\xd6\x08\x4f\x99\xd4\xea\xf9\xd1\xde\x60\x74\xfa\xeb\x1d\x19\x15\x1e\xf3\x16\x0f\xb5\x56\x9a\xa9\x3f\xfd\x70\xf3\xb1\xfb\x42\x4e\x27\xd3\x0f\x37\x1f\x2d\x0c\xf5\x3f\xc1\xdf\x14\x7c\x89\x0b\x75\xb6\xb1\x95\x8c\xc9\x35\xf3\xbb\x24\x98\x63\xad\x57\xad\xfb\x70\x3c\x91\xbe\xf8\x62\x77\x97\x5c\x1e\xeb\xa3\xb7\xe3\xf9\xd8\x9f\xf8\xbe\x6a\x3d\x1d\x24\x61\x18\x0f\xe6\xe7\x33\x23\xc7\x1f\x06\xce\x42\x45\x5c\x26\x42\x1a\x64\x60\x6c\x83\x60\xc5\x74\x75\x1b\x5e\x35\x45\x22\xef\x98\xa8\x3a\xad\x40\x42\x7e\x38\x24\xa5\x88\x1d\x3b\x7c\x82\xab\xea\x88\x22\xfb\xc3\xeb\x9d\xfd\xbe\xec\x08\xef\x68\x70\xc7\x6a\xc1\xbd\x35\x20\x4f\xca\xcd\x73\x61\xc4\x26\x2d\x98\x9b\xdf\x35\x93\x63\xe7\xae\x49\x9a\x17\x10\x0c\x0d\x5e\x25\x9d\x05\x18\xd5\x96\xd4\x6b\x44\xed\xb3\x8e\xf7\x3c\x4a\x59\x02\x81\x90\x8d\xce\x14\x7d\xfa\xd1\x92\xcd\xfb\x66\xaf\x93\xea\xc9\xab\x7f\x54\x54\x74\x0d\x72\xa5\x81\x6b\x9c\xf7\x41\x04\x72\xa9\x2d\x78\xc4\xc6\xe4\x3f\x35\xf7\x41\xb7\x10\x45\x84\x46\x43\x2a\x96\x86\x6a\x18\xa5\x56\xde\xda\x0a\x00\xdc\xef\xe4\x90\x3a\x5a\x9f\x7c\x36\x2f\x17\x0e\xad\x71\x5d\x0a\xd6\x34\x8e\x19\x46\xa5\x89\x54\xe6\x3e\x90\x0d\xc4\x2c\xa5\x5c\xb0\x44\x5f\x2b\x4a\x42\xbe\xc0\x94\xe7\x24\xa6\xe9\xea\x95\x4b\x27\x0e\x93\x4c\x1c\x3e\x18\x69\x42\xcf\xfb\xb1\xc7\x54\x43\x78\x9a\xc8\x39\xdb\x01\x2b\x34\x7c\x69\x37\x08\xfc\x41\x2b\x1a\x53\x2f\xaf\x81\x39\x43\xd0\x6f\x94\xa6\xa9\x96\x58\x31\xa7\x74\x00\xba\x8c\xb2\xeb\x05\x6c\x0e\x5f\x98\x98\x3b\x21\xbd\xbc\x06\xdd\x50\x1e\xe9\xf6\xe3\xb2\xe7\xe8\x9a\xde\x59\xc7\x4f\xf0\xef\x34\x4e\xee\x7c\x63\x44\x00\xbb\xfb\x0d\xc2\xa0\xde\x17\x10\x03\x0f\xc0\x4d\x5e\xcb\x8f\xd0\xcd\xc9\xf4\xa3\xbb\x29\x5f\xbe\x5e\x3f\x1a\x5d\x68\x68\xde\xf0\x35\x93\x59\xa7\x5d\xb6\xb4\x03\xe6\x9b\x36\xd8\x03\xa0\x7d\x2b\xb3\x41\x97\x25\x18\x83\x33\xe8\xeb\x03\x07\x69\x82\x3a\x15\xb5\xa5\x5c\x15\x0a\x86\x46\x76\x00\x78\x7c\xb5\xa2\xde\x1d\x84\xeb\x85\x1e\x44\x51\x54\x46\xf6\x2d\xb9\x08\x91\x17\xd7\x9b\x68\x77\x6a\x8c\xa9\xb8\x8d\x87\x75\x11\xb0\xaa\x25\x72\x5a\x5c\xa4\x83\xc6\x64\xdd\x79\xdc\x80\xee\x51\x5f\x27\x13\xcd\x20\x93\xbc\x6c\x82\x13\x8c\xba\x96\x99\xc0\x8c\x8d\xc6\xf1\xc6\xc9\x7a\xee\xeb\x5d\x26\xb6\xc5\xc2\x06\xf6\xe3\x84\x4a\xa1\x35\x2a\xe7\x72\x1e\x7b\x6c\x3e\x50\x2d\xb3\x7d\x3a\x76\xfe\x40\x93\xbb\x0f\x54\x75\x87\x5a\x4d\x2a\x1f\xd8\x83\xb7\xd6\xff\x76\x05\x6d\x53\x1b\x83\xfb\xad\x00\x93\xe9\x0d\x1e\x0a\xdd\x0f\x99\x6b\x94\x8a\x35\x29\xae\x8b\x94\x3c\xb6\x0e\xed\x8a\x3d\xd0\x90\x05\x7c\x4d\x23\x9b\xf2\x5b\x1f\x20\xef\x39\x49\x49\xc4\xa8\x4a\xc9\x57\xd8\x27\xa4\x63\x17\x26\xb6\x1c\x09\x6a\x10\x51\xb5\xb2\x3e\x6c\x5b\x73\x02\xd7\x76\x16\x7e\x59\xc0\xfa\xba\x80\x95\x66\xab\x52\xb6\x2e\x6d\xe3\xc3\x62\xf1\x1a\x1e\xdf\x2e\x7e\x4a\x99\x23\xbb\x3b\x17\xc7\x37\x97\xc6\xd6\x94\x33\xed\x48\x97\x1f\xb9\xdd\x53\xa9\xd2\x1f\x12\x9e\x32\x70\x6b\xd9\x19\xf5\xfb\x3f\xaf\x72\x86\xe0\xe4\xd5\x88\x25\x34\x67\x17\xea\x9d\xa1\xe4\x5e\x77\x55\x8f\x18\xc8\x53\x4c\x05\x2b\x16\xa2\xef\x1c\x84\xde\x25\x94\x24\xcc\xef\xbf\x36\x47\x21\x2c\x8f\x37\xc6\x70\x36\x0c\x9d\x85\x41\xee\x29\x52\xf6\x20\x92\xf3\x39\x4b\x6c\xa1\x87\x12\x1e\x6a\x4e\xb1\xaa\x9c\xd8\x0f\x19\x04\x59\xa2\x09\x92\xfd\x9a\xc6\x71\x64\xf3\xd1\x96\xce\x4a\xae\x32\x6c\x90\x9d\x62\x16\xa4\x75\x4c\x39\xfe\xa4\xe8\x03\xdb\xd5\xee\x2c\xbf\xf7\xbb\x47\x88\x84\x46\x0e\xb0\x01\x5c\x20\xfa\x1a\x77\x4a\x67\x8b\xdb\xd9\xff\xa6\x73\x53\xb2\x76\xee\xc2\xfe\xfb\x2b\x08\xc3\xdc\x72\x81\x00\x75\x14\xa9\xc3\x42\x23\x9d\xe4\xca\x28\xa7\x34\x47\x0d\xcc\x05\x68\x2c\x1a\x34\x44\xc6\xb7\x1d\x3b\xcd\x85\x56\x85\x99\x73\xef\x65\x72\x47\x13\xb0\x48\x62\xe6\xe2\x73\x2e\xb2\x07\xeb\xd1\x36\xcf\x96\x8d\x84\x50\x9f\xdf\x05\x7f\x40\x5b\x85\x69\x6f\x73\xf4\x7d\x31\x7e\xf3\x26\x57\x08\x6a\xea\x8b\x8a\xbd\x8d\xfe\x5d\x13\xa4\x65\xc2\x68\x83\x7f\xf1\xd6\x30\xc7\xd6\x39\x37\x77\xac\x4d\xe5\x01\xa1\x64\xe5\x84\xd6\x60\xd0\x63\x39\x92\xc6\xd7\x25\x04\xd7\x94\x0e\xf1\x63\x64\xa9\xcd\x5b\x63\x19\xd9\x55\x5e\xbf\xcb\xe6\x50\xa7\x60\x2a\x93\xf4\x4a\x73\xfa\xdd\x6e\x03\xdf\xd5\x3e\x21\x2b\x19\x85\x2a\xd7\x32\x83\x71\x21\xc1\x37\xa0\x96\x5d\xf8\xed\xe6\x26\xba\x94\x14\xb1\xa5\x63\x72\xa9\x71\x46\x66\xea\xd6\x22\x4f\x80\xd6\x16\x37\x08\xad\x39\x6b\x22\x50\x21\x1e\x6f\x94\x89\xe5\x41\xd0\x67\xc8\x33\x31\xc5\xec\xb4\x60\xef\x50\x3b\x5e\xc4\x01\xb7\x79\xfc\x1a\xc3\xba\xbb\x51\x9f\x6b\x52\x76\xf4\xf9\x67\xbf\x7f\xfb\x7b\x6f\xd8\x4d\xb3\xb1\x97\x8a\xed\xa5\xbf\x72\xd6\xa8\xdb\x08\x3a\xea\xb4\x71\xc6\x26\xe3\x05\xf9\x3f\xe3\xff\xe5\x7b\xff\x30\x2a\xca\x40\x8d\xb8\x48\x47\x32\x19\x61\x6f\x6e\xf6\xbd\xd2\xea\x9b\x2d\x95\x91\x5c\xf6\x16\x57\xcf\x8b\xb6\x16\x53\x2e\xb2\x28\x02\xb1\xcd\xd2\x35\xdc\xb1\x48\x2e\x2d\x66\xf2\xad\x00\x58\x15\x07\x5f\x01\xb7\x1c\x49\xc8\x2c\x52\x12\xff\x36\x34\x39\x8c\xe4\xf2\xd0\x65\x32\xc7\x91\xf4\x66\xbb\x69\x03\x6b\x24\x97\x3d\x35\xcd\xe7\xb6\x65\x21\x87\x2f\x4b\x8a\x65\xe7\x48\x62\x05\x45\x2d\x31\x35\x6d\xe5\xf9\xe5\x37\x16\x4f\x97\x95\x9f\x81\x1c\xa1\x1f\xf9\x23\x56\x72\xcd\x36\x2c\xe1\xe9\x56\xef\x45\x9f\xf5\xb8\xed\xdd\x55\x29\xf3\x3b\xa1\x73\x09\x12\xa2\x26\x75\x91\x5c\x76\x96\x83\xb4\x1d\xa0\xc6\xa1\x58\xd8\x44\x2c\xe4\x27\xac\xe7\x3a\x48\x18\xeb\x0e\x62\x39\xaf\x7e\xf1\x64\x6b\x52\x69\x28\xb3\xf4\x29\x57\xb4\xed\x46\xc7\xe7\xa5\xe6\x4f\xb7\x96\xad\x72\x2e\x21\xb9\x90\x26\x36\x55\x48\x7b\xd1\x00\x89\x9a\x56\xad\xda\xc1\xc7\x00\x61\x4d\x1f\x40\xad\x7a\xcd\xff\xda\x9c\xd3\xbe\x01\x4b\xda\x24\x75\xc7\xa1\xb7\x30\x41\x19\x7c\x1f\x9c\xc6\x16\x78\x6e\xd1\xb3\x84\x84\x72\x4d\xb9\x40\x0b\x51\x73\xdc\x21\xa4\x2f\x4d\x4c\xa0\x0a\x15\x84\x0a\xa5\x79\x9f\xef\x3f\x90\xbf\x64\x2c\xe1\x0c\xf3\x1f\x05\x91\xcc\xc2\x11\x17\x3c\xcd\x67\x09\x39\xff\x72\xd3\x88\xdf\xc5\x68\x05\xca\x95\x04\xd5\x31\x61\x1e\xd5\xb2\xa6\xc1\x8a\x0b\x96\x4b\xf7\x42\x6e\xe8\x88\xc6\x9c\xbc\x94\x89\x26\x84\x1f\xe7\x99\x48\x33\x6f\x97\xb6\xe9\xc8\x4e\xe3\xd5\x98\x1c\x5b\xc7\xad\x05\x22\xd8\x97\x01\x55\x50\x5c\x94\x09\xc5\x53\xbe\x61\xaf\x6c\x25\xa3\x56\x97\x2d\x27\x23\x8f\xe6\x8f\xb2\x18\x04\xc8\x8b\xe3\x1b\x8c\xc1\xb4\xda\x14\x3b\x30\x60\xff\x8e\x13\xf4\xe6\xb3\xdf\x8f\x5f\x8f\x5f\x8f\xdf\xec\x7c\x8c\xcc\x20\x0d\xb6\x78\xff\x51\xb0\x9e\x57\xc0\xc9\xeb\x7f\x1b\x3d\x47\x3e\x63\xdc\x6b\xf4\x8b\x68\x48\x14\xb6\x9e\x73\x61\xd2\x8d\x98\x5a\x59\xe3\xd2\x49\x7b\xc9\x17\x00\xa1\xfd\x7d\x7d\xb3\xf6\xf7\x5f\x1d\x38\x8e\x3a\x0d\xcc\x37\x80\x32\x07\xe4\x01\xda\x15\xdf\xbc\xfd\xc3\xf8\xb3\x2f\xbf\x18\x9b\xff\x1e\x7d\x05\x8c\xbc\x3b\xd6\x91\xbb\x2e\xaf\xd0\x36\x11\x64\xad\x99\xa0\xc0\x14\xba\x28\x44\x38\x3d\x45\xab\x09\x9e\x33\xa3\x0c\x0e\x1d\x04\xf7\xd5\xef\x7f\xff\x65\x4b\xd0\x71\xd3\x0d\x4d\xb3\x5d\x72\x73\x7d\xb8\xf9\xf8\x5b\xe4\xe5\x02\x4b\x5b\x49\x2a\xa6\x51\x00\x41\x97\xb9\x9a\xcb\xaf\x8f\xfe\x70\xf3\x71\x5c\x92\x7c\x8b\x6c\x54\x6d\x99\xa8\x3e\x2d\xed\x94\xa0\xa9\x55\x76\xf4\x8c\x53\x72\xd4\x23\xd5\x3a\x72\xa0\x33\xa8\x04\x2d\x01\x77\x62\xdc\x75\x1a\xd8\x13\x13\x96\xa2\x8f\x24\x5c\x6b\x9b\x2f\x45\x10\xea\xce\x8f\xc4\x52\x46\x79\xc2\xa0\x8e\x78\xa5\x3c\xf9\x48\x25\x08\xca\x8d\x55\x82\x13\x50\x4c\xd8\xa8\x11\x72\x10\xfb\x71\x68\x29\x55\x8c\x9d\x84\x14\xe4\x25\x07\x87\x25\x2b\x24\x14\xea\x85\x0f\xc7\xd7\xff\xfb\xe3\xd9\xd5\xf1\xe9\x99\xa9\x9e\xec\x49\x75\xd3\xb1\x43\xb9\x8c\xe4\xd9\x9b\x26\x29\xa0\x53\x06\xe8\x92\x00\xaa\x9b\x9e\x4f\xc2\xd9\x6e\x88\xcb\x83\xdf\x8c\xc0\xa6\xf2\xfd\xd1\x00\x6e\x52\x83\x03\x3a\x5c\x53\x88\xac\xc6\x03\x12\xc2\x06\xe7\x2e\xde\x17\xc7\x37\x46\xe5\x9c\x09\xeb\x0f\xd0\x12\x53\x3f\x67\x2b\xba\xe1\x32\xaf\x81\x6e\xfd\xd8\x14\xba\x09\x34\x46\xa6\xb5\x8b\x38\xbb\x0a\x38\x82\xa5\x11\x17\x2d\x76\x85\x36\x78\x83\x9b\xb3\x9e\xee\x15\x5b\xf6\x89\xa1\xbe\x2c\xb7\xb7\x84\x46\x94\x4a\xf8\x2e\x73\x74\xa6\xe9\x63\x92\x72\x8d\x87\xbc\xe2\x20\x62\xb0\xa2\xd2\x28\xb0\x13\x14\xbd\x98\x46\xa6\x23\xd4\xf9\x1c\x16\xfe\x17\x21\x8b\x23\xb9\x5d\x33\xe1\xaf\x6a\x0a\x14\xc0\xfa\x0b\xe7\x9e\x23\x21\x44\x21\xaf\xe4\x3d\x9c\x04\x48\x2d\x89\x83\xbf\x5c\x31\x48\x53\x9c\x2b\xad\xb4\xec\x1d\x35\x55\x8f\xe4\x02\xe5\xfa\x71\xb0\x58\xda\x6a\x92\x8e\x9b\x8b\xbe\x91\xd0\x77\x20\xd7\x71\x66\x72\x24\xbd\x32\x49\xab\x33\xbf\x9f\x55\x91\xf8\xef\xcf\x28\x1b\xfd\x58\xec\xca\xad\x81\x01\xb2\x36\xce\x62\x34\x4b\xc7\xb2\x34\x91\x62\xac\x7f\xf5\xce\xd6\x4c\x05\xd3\x34\x15\x44\xef\x6c\x1d\xa7\xdb\x5d\x59\x11\x8c\x56\x80\x2c\x32\x34\x5d\xf5\x94\x26\xa7\x9e\x8f\x5c\x8f\xde\xf9\xd6\xd6\x19\x80\x1a\x04\xeb\x4c\x40\xa1\x2c\xaf\x56\x00\xd3\x36\x20\x09\x47\x07\x7c\x9b\x9e\xcd\xa6\xf9\x3a\x20\x11\xbf\x63\xe4\xd8\xd1\xd0\x46\x74\xcb\x92\x7e\xe1\xc5\x8f\x83\x4a\x22\xd7\x2c\x5d\xb1\x4c\x7d\x23\x3f\xb0\x34\xe1\x41\xdf\xcc\x50\xfb\xd3\xc6\x4f\xad\x5e\x40\x91\x6f\xa4\x66\x8e\xc1\xda\xb7\xc6\x26\x7e\x76\x2d\x8a\xd0\xe1\xd9\x3a\x14\xea\xb3\x54\xf4\x6f\xf3\xd7\x41\x30\x42\x11\x88\x7c\x80\x18\x50\xf9\x7d\xc6\x53\x89\x3e\xab\x86\x33\x40\x5d\xa0\xb9\xeb\x68\x9d\x91\x0b\x3b\x29\x92\x40\xd0\x2a\x0b\x0f\xb0\x5d\x03\xb9\x75\x66\xa4\x79\x8a\x4f\x4e\x7f\x58\x00\xff\xd1\xa0\xaf\x00\xde\xba\x27\x57\xe0\xd7\x02\x7b\x23\x37\x71\x61\x6d\x93\x79\x56\x38\xbd\xa4\x4f\xf7\x00\xae\xad\xb1\xc1\x9f\xb7\x63\x81\xdf\x4a\x95\xcb\x04\x68\xef\xb4\xd9\x59\x8a\xa6\x5e\xd4\x64\x36\xd8\x2c\xd3\x56\xd2\xe0\x22\x04\x5c\x5d\xac\x8e\x7d\xda\xed\x31\xd3\xec\x25\xe7\xd4\x16\xe7\x0a\x3c\x36\xd2\xeb\xc9\x17\xf8\x87\xd7\x7f\x68\x11\xdf\x1a\x98\x9d\x62\x81\x53\x34\x75\x3c\xfa\xa0\x7a\xbf\x2f\x10\x85\x75\xa4\x1a\xb0\x44\xed\x06\x25\x6c\x2d\x37\xcc\x46\xb9\x43\x7a\x84\x4e\x51\xe3\x07\x93\x0d\x0a\x13\xe7\xd9\x04\x90\x1b\x66\xfc\xf9\x4c\xa2\x03\x9b\x24\x78\xc3\x9a\x1c\x55\xe6\x8c\x95\x52\x27\x58\x7a\x37\x36\xb9\xc4\x51\x8e\xb0\xe9\x20\x30\x06\x2e\x27\x6b\x8e\xa5\xb1\x29\xc4\x0e\x1c\x26\x68\x18\x96\xe7\x55\x84\x14\xda\xb4\x75\x4e\xf6\x09\x13\x94\xcf\xa8\xbf\xd3\x7b\x86\x73\x31\xeb\xb5\x93\x89\xb6\x26\xef\x85\x19\x61\xe7\x3d\x30\x49\x0d\x7a\x5b\x28\xaf\xaa\x5f\x94\x7c\x9e\xf5\xdf\x35\x97\xc4\xc6\x00\x4f\xe3\xc9\x95\x66\xaa\x70\xec\x28\xca\x24\xc9\xa4\x64\x3c\x1c\x93\x0f\x86\x73\x14\x52\x8c\xfe\xca\x12\xaf\x3a\x83\x3b\x3a\x2f\x87\x1d\x55\x65\x03\xcb\xce\x96\xb0\x1c\x4e\x37\x37\xe7\xfd\x41\x74\x73\x73\xee\x3a\x06\x8d\x52\x39\x8a\xf8\x86\xe5\xfe\xb4\x20\xf9\x20\x82\x18\xdd\x37\x24\xa6\x36\xf0\x31\x50\x2c\x23\xbe\xdd\x97\xa1\x0f\xc9\xae\x36\xe9\x2b\xcf\x47\x9f\xe0\x85\x9a\x67\x6e\xd9\xdd\x1e\x4d\x56\xd4\xaf\x63\x7e\xac\x3d\x1a\x33\xc8\x58\xd3\x73\x3b\x1b\xfa\x58\x70\x63\xca\x97\x7e\x50\xc6\xb6\x85\x34\x01\xa6\x9c\xc4\x1a\xaf\x96\x0c\x1d\x7a\x6c\x46\x61\xff\xf9\x2f\x0a\x50\x92\x11\xb1\xb5\x32\x26\x53\x75\x84\xca\x17\x6f\x8a\xa9\x40\x0a\x95\x26\x99\x2f\x98\xb0\x48\x1e\x33\x32\x30\x9d\x4c\x8f\x3f\x94\x0d\xf4\x23\xe8\x5a\xff\x0e\x7b\x59\xea\xd1\x7e\xfe\x18\xd0\x81\x8f\x52\x93\x9a\xc3\x53\x3c\xaf\x48\xee\x4d\x43\x9b\x1f\xc9\xd8\xf6\x71\xa7\x8d\x02\x46\xdf\xbb\x0d\x4d\xb8\xf4\xb3\x1e\x4e\x09\x81\xab\xf2\x34\x2a\x8a\x0e\xa8\x1f\x5c\xd4\x90\x71\xc7\xf0\x9f\xfc\x22\x1f\xbe\xe1\x67\x32\xe5\xcb\xe4\xdd\x11\x2c\xbb\xa6\x3e\x01\x8f\xf4\x89\x74\x5d\x73\x9f\x22\xa1\xc7\xa7\x2d\xf1\xad\x23\x3d\x21\xef\xcf\x3e\xff\xdd\xb6\xd0\x55\x23\x2f\x9e\x4b\x19\x4f\x31\x17\x62\x1f\xc5\xc7\x0f\xc8\x06\xa1\xcd\x1f\x4c\x2c\x1b\x0d\x3c\xc5\x40\xec\x2f\x88\xed\x81\x4d\xb0\xd8\x76\x7f\x22\x29\x63\xe5\xa4\xa8\x26\x93\xa9\x61\x27\x68\xc2\x8c\x53\xb2\xde\x35\x4c\x1c\x65\x72\x01\x12\x88\xb8\xd2\x2b\x6a\xb4\x9c\x9b\xac\x61\x18\x2d\x99\x07\x9e\x9f\x5e\x1c\xdf\xec\xef\x87\xd5\xa0\xb2\x8f\x22\x02\x25\x6a\x9e\x42\x3a\xaf\xba\xe2\x55\x7e\x70\x61\x7d\xeb\xa8\x62\x58\x27\xd0\xe6\x1c\xc7\xe5\x04\x52\xa4\x5c\xa0\xef\xc8\xdc\x24\x26\x29\x25\x56\xf4\xf5\xfa\x98\xac\x5e\x8a\x87\x2c\xa0\xc9\x71\x10\xb0\x88\x61\x1c\x4e\x5f\x8e\xfa\xba\xf1\xd3\x5c\xf8\x63\x0f\x9a\xdc\xac\x01\xd1\xdb\xa1\x1a\xc8\x41\xde\xc7\x27\xcb\x79\xe0\x47\xd3\x23\xf7\x53\x79\x35\x1f\x7d\x5f\x59\x22\x4e\xa8\x90\x62\xbb\x96\x99\xcd\xf4\x69\x5d\x88\xbc\x6a\x6b\xe4\xd6\xdd\xe4\xe8\x8a\xff\x95\x99\x3c\x67\xe5\x72\x7d\x63\x72\x2e\x97\x8a\xdc\xd3\x44\x70\xb1\xd4\x4c\x43\x9a\x25\xc2\xaf\x75\x9d\x6f\x31\x2b\x33\xe4\xe0\xb5\x86\x27\x27\x5e\x0b\x52\x4d\xd0\x52\x05\xcb\x3c\x41\xc6\x26\x8b\x04\x4b\x28\xe6\xa4\xf0\x75\xbe\xa2\x0a\x59\xec\x90\xab\x40\x6e\x98\xd1\x8b\xa5\xde\x8a\xa6\x98\xd8\x34\x53\x9d\x27\xf2\x51\x52\x46\x79\xff\x26\x82\xa7\x9c\x46\x4d\x79\xc0\xda\x36\xd1\xfd\xb4\x9c\x25\xd8\x26\x62\x0e\xf5\x2b\xbf\xb4\xb1\x90\x39\x15\x5f\xd3\x3b\x86\x76\x26\xdd\x71\xc5\xf1\x67\x67\x16\xa3\xba\xbc\x9e\x3c\x5d\x75\x69\x86\xab\x2b\x2d\xab\xc6\xd0\x37\xab\x89\x71\x4d\x1e\x1e\xf5\xab\xb7\x5f\x3c\x6a\x51\x18\xd4\x20\x68\x74\xda\x33\x77\x6b\x53\xc5\xd2\x87\x88\xb6\xa0\xa0\xee\x6f\xfb\xc4\x9c\x41\x11\xb1\x7f\xbe\xa0\x33\x98\xff\x63\x82\xc5\xe1\xc3\xef\x2f\x26\xbb\x7e\x77\xcf\x13\xb6\xcc\x68\x12\xf6\xc5\x92\x3f\x54\x3e\xa8\x67\x7d\xce\x5b\x38\x74\xfc\x59\x4a\x9f\xe4\x73\xcf\x1d\xbc\x2f\xe8\xba\x9b\x6b\xff\xc1\xfb\x59\x85\x4d\x04\x13\x8c\x31\x7e\x36\xb8\x2c\xea\x66\xce\x5a\x6d\x67\xee\x55\xba\x5f\x8e\x8d\x11\x62\xc7\xdb\x94\x2f\xed\x9c\xab\x94\x69\xca\xd0\x4b\x9b\xf7\x83\xf7\xb3\x4a\x7e\x74\xfb\x0a\x55\x7b\x4d\x16\xbe\xf9\xb6\x58\x5c\x29\x60\xe7\xcd\x57\x9f\xed\x7e\xae\xf3\xf5\xf4\xb9\x9b\x3f\x38\x8d\xcb\x73\xd7\x3f\x98\xeb\xe9\x83\xbc\x6f\x1d\xd7\x8c\xb5\x5e\xd2\x4f\x59\xcc\x15\x72\x6c\x57\x59\xc4\xa6\x09\x97\x9a\xce\xf6\x5f\x9c\xe7\xe3\xf2\x62\x63\xfb\x6b\x63\xb6\xa5\xe2\x7c\x56\x40\x62\x59\x49\x2d\x46\x97\xd4\x0f\x7f\xd8\x79\xb1\x0f\x61\xef\x02\x15\x9e\xd4\x24\x7f\x3a\x9d\x96\x59\x3b\x3d\x57\x95\xf1\xd4\x54\x9f\x82\x74\xa1\xfe\x03\x98\xa7\x5f\x0c\x99\xd8\xd6\x1d\x1f\x1f\xc5\x58\x3c\x84\xf1\xae\x9a\x94\x3f\x9d\x4e\x9f\x36\x9a\x17\xb2\xb4\x3c\x2a\x90\xd7\xa8\x49\xbc\x64\xa8\x5e\x67\x4b\x26\xa6\xb8\x1c\xa6\x32\x06\x19\xdb\xaf\x51\xf9\xd3\xa9\xd7\xc5\xbf\x1e\xee\xbb\xbb\x3e\x65\x28\xf8\x5d\x2f\xf8\x8d\x2e\x60\xc6\xbb\x01\xac\xa9\x9c\x3d\x47\xc9\xef\x6f\x60\x9c\x0b\x1c\x07\x8d\xc7\xf8\xba\xa8\xf9\xed\x69\x52\x2f\xfa\xed\x9d\xaf\xd9\xa4\xbc\xec\x77\xbd\x11\x0c\xf6\x5c\x75\xbf\x87\x3a\xdd\x43\x9d\x6e\x77\x0b\x86\x3a\xdd\xcf\x59\xa7\xbb\xad\x8c\x76\x1c\x47\xdb\x4b\xf1\x1e\xeb\xbb\x75\x51\xd3\xe3\x52\x6b\xd4\xc5\xda\xd2\x47\xd0\x13\xea\x64\x8b\x3a\x02\xdc\xa6\xb3\xf7\x11\x28\x64\x27\xa0\x27\x1b\x92\xb3\x23\x3f\x10\xca\x0b\x99\xde\x68\x1e\xa4\x6b\xe6\xa7\x79\x4b\x67\xd6\x56\xe2\xb1\xaa\x42\xf0\x3d\x42\x0b\x61\xbe\x8e\x06\xe5\x9f\xb3\x34\x8b\x2a\x96\xb2\xa8\xc9\x62\x2c\x2c\x04\xc4\xe8\x7d\xe5\xd4\xed\x83\xaa\x41\x77\x5c\x2c\xbd\x6a\x45\x50\x24\x52\x65\x14\xe8\x81\x4d\xc8\x8e\x15\xf6\x6e\x12\x9b\xa4\xca\x07\x61\x42\xfd\x09\x00\xc1\x72\xaa\x17\x85\x0a\x11\x2a\xb6\xce\xd4\xbc\x13\x03\x64\x65\x61\x62\x14\x97\x8d\xea\xac\xd2\xf8\x10\x54\xcc\x20\x95\xa7\x31\x15\xcf\x19\x31\x3c\xe2\xae\x7b\x8b\xd5\x10\xba\xf3\xf5\x33\xf4\xf1\xc5\xf2\x58\x90\x96\x1d\xcb\x28\x18\x8e\x93\x9c\xd1\x60\x85\xde\xea\xb6\x14\xbd\x17\x4a\xf6\x6b\x5c\xb7\x71\x43\x0b\x12\x9e\xb2\x84\x53\x4c\x8e\xe5\xb8\xed\x43\xf6\x30\x03\x36\x73\xf4\x77\x4a\xba\x5e\x5a\xc3\x6c\xef\x98\x68\x31\xc2\xad\x89\xae\x8a\x19\xf9\xa6\xe2\x65\x22\x49\x5e\x77\x84\xbc\x93\xe9\xca\xc4\xa3\xcb\x64\x34\xa7\x0a\xc0\x63\x54\x89\x53\xb3\x5f\xc2\xfd\x0d\xeb\xe3\x78\x61\x03\xac\x24\x4b\x98\x08\xec\xc9\x1b\x39\xb9\x22\x65\x96\x62\x84\xa7\x0d\x19\x34\xf5\x93\x64\x02\xb5\x1f\x6d\xfd\xc2\x86\x09\x8b\x30\x2f\x7b\xe1\x00\x1e\x42\xbf\x66\x33\x81\x9b\x17\x4b\x0c\x59\xa8\x42\xa2\xc1\x32\xa9\x37\x53\xb0\x25\x4c\xce\xb0\x04\x07\x26\x6a\xcb\x7a\xf1\xff\xfa\xcb\xdf\x2f\x64\xfa\xeb\x2f\x7f\x1f\x9b\xa4\xaa\xd5\xbe\xfd\xfd\x9a\x82\xa3\xa6\x00\x55\x9e\x84\x95\xa6\x5c\x41\x2e\x4d\x0c\x6c\x35\x0b\xb1\x45\x9b\xc7\xe4\xd8\xa4\x99\x6b\x80\x2d\x1c\x4d\x2a\xec\xf1\x34\xa1\x0a\x66\xc9\x1a\x40\xb0\x18\xfd\x87\xa3\xc7\xa5\xd8\x79\x33\x54\x01\xf6\xfe\x29\x5a\x0c\x52\x4c\xd1\xb2\xdd\xe5\xa7\x33\x7f\x2c\x6d\x4a\xbf\x80\x4f\x77\x0a\x59\xa7\xa6\x7e\x63\x2f\x65\x34\x5e\x7c\x90\x5f\x67\xcf\xf6\x19\xeb\x91\xbe\x96\x4d\xdd\x82\xf4\xed\x8c\x4f\x34\x8d\x4e\xfd\x7e\x91\xbd\x80\x41\x4c\xed\x69\xc8\x8d\x7a\x6d\xae\x5e\x4b\xdb\x1a\x12\xb8\xa8\x7e\x6c\x3c\xe3\x65\x6c\xac\xaa\x0b\xce\xa2\xb0\x31\x60\xa7\x78\x72\xc0\xd0\x1c\x05\x38\x91\x15\x26\x2e\xb7\x54\xb6\x49\x26\x7c\xa9\xe1\xd0\x74\xff\xed\x03\xdc\xd7\x4b\x7d\x84\x58\xb2\xc6\x0f\x08\x4d\x5f\x39\x86\x6d\xa7\x26\x2f\x8e\xed\x27\x1d\x1e\x90\x15\x65\x60\x0c\x19\x36\xbe\xe7\x70\x90\x6b\xb0\x69\xef\x54\x5f\x80\x1c\x8a\x9a\x2e\xa1\x98\x10\xe6\x49\x0a\xe8\x9a\x99\xc0\x1b\xa8\x40\x04\xd9\x0d\xda\x42\x86\x8b\xc7\xb1\xe1\x5b\x0b\xa5\xc3\x36\xcc\x5d\xbc\x5b\xac\xa8\x1f\x28\x1c\xb6\x03\xb1\xdf\x7b\x99\x90\x92\x70\x77\x00\xe9\x20\x20\xcb\xed\x8e\x10\xe1\x6b\xcd\x05\xa8\xc2\x13\xd0\x3d\x64\x11\x5f\x73\x53\xdb\x10\x67\x8a\xd1\x14\x6d\x97\x87\xf8\x13\x27\x72\x07\xbe\xf9\xce\x6a\xf2\xa0\x7f\x2d\x2d\xa5\xf1\xa2\xe1\xd3\xb0\xfc\x7d\x94\x53\x5f\xbe\xda\xaf\x03\xc0\xae\xb1\xbd\xe3\xdd\x00\x50\x96\xb0\xaf\xfd\x7e\x7f\xc5\x23\x13\xf2\xad\x54\x79\x4d\xb5\x62\x17\x3d\x82\x7a\xb1\x97\xed\x7d\x36\xae\xb3\xbc\x0a\x64\xf3\x80\x13\xdf\xf5\x20\xd3\x20\x91\x0a\x38\x3d\xe7\x36\x36\xd0\x84\x1c\x8c\x9d\xb8\x9d\x60\x30\x46\x1b\xba\xac\x86\xb7\x30\x53\xae\xc0\x8b\xf3\xb4\x04\x99\x26\x3c\x48\x1b\x8b\xb3\x16\x8f\xa5\x6e\xb0\x85\x46\x30\x91\x4d\x28\x2f\xc7\x6a\x1d\x07\xa7\x8c\xf2\x8a\xb8\x52\xe4\xc4\x21\xb1\x0e\xfa\xa4\x2c\xf9\x86\x09\x2d\x7d\xea\xe5\xb7\x9e\xf3\x66\x06\xd1\x19\xb7\x17\xa4\x5b\xe3\xfa\x8b\x47\xc8\xf4\x62\xb7\x3d\xc1\x0f\xf2\xc8\x96\x32\x5f\x65\x57\x7c\xd1\x50\x03\xad\x78\x60\x1f\xff\xe9\x60\xd1\x54\x5b\xa3\x78\xaa\xc0\xc8\x6b\x6a\xb4\x40\x63\xda\xe4\x7b\x59\x3c\x08\x0e\x72\x0d\x19\xb6\xe1\x94\x42\x55\x40\x9b\x7f\x5e\xa1\x23\xad\xa9\xda\x00\x09\x77\xb6\xcd\x35\x3b\x8a\xa7\x92\xda\x3d\x2d\x67\xfc\xb2\x45\xdf\x0c\xb3\x64\x70\xb5\x96\x3c\x3a\xa0\x2e\x91\x86\xd9\xfa\xee\x27\x53\x9b\x90\xfd\xe3\xe9\xb4\x21\x71\xbb\x7d\xfa\xec\x6a\x73\x0a\x8d\xe2\xe9\x91\x4c\xa3\xde\xb8\xfb\xa0\x74\x27\xd8\x28\x9e\xdd\x53\x6d\x14\x4f\xdf\x03\xb9\x3b\xdf\x78\x51\x7c\xd4\x71\x2c\xfb\x31\x0a\xe6\x64\x82\xdd\x2d\xef\x18\xb1\x30\xda\x7e\xe6\x69\xc4\x52\x48\xd6\x09\xf5\x01\x70\xac\xf6\x3e\x73\x86\xa8\xf5\xa8\xf4\xdb\xb3\x78\xb7\x2b\x3b\xdb\x2b\xaa\xe0\x74\x90\x95\x2e\xbe\x81\xf5\x21\x2b\x60\xf3\xb1\xb1\xb4\x2f\x1d\xf9\xc2\x13\x6f\x5a\x5d\x16\xf6\x80\xdc\xa4\x22\x26\x83\x9b\x9b\xea\xe6\xd0\x6a\x8a\x6f\xf2\xcc\x4c\x1d\x5c\x9f\x2b\x97\x9b\xab\x03\x96\x25\x84\xb2\xb2\x10\x30\x6a\x57\x33\x4c\x07\x8f\xb3\xb0\xf9\x7d\x34\x73\xd3\x17\x83\x75\x62\x00\x13\xb8\xba\x0b\x06\xeb\x58\x7b\x81\xde\x2a\x18\x6c\x86\x38\x6c\x66\xb0\xd8\x0c\xf1\xd8\x4c\x63\xb2\x56\x9e\x67\xc0\x65\xf0\xf4\xc2\x65\xea\x11\x02\x70\xb7\xdc\xdb\xaa\xc2\x2b\x1e\xaf\xdc\x4b\x5e\x2a\xc6\xac\xee\x0b\x50\x19\xe6\xad\x55\x5b\x91\xd2\x07\x5f\xc4\xbe\xfb\xcc\x66\xad\x62\xb3\xe1\x21\x9b\xc4\xe2\xf6\xbe\xad\xca\xcb\x91\x9a\x65\x52\x97\x86\xf5\x75\xbb\x90\x29\x5a\x9b\x8f\x1a\x12\xf5\x3a\x40\x30\xee\xd8\xd6\x4e\xd5\x41\x15\x10\x3c\x0e\x35\xe9\x90\x55\x59\x24\xef\x5f\x1d\x94\xa7\xec\x00\x1b\xa1\x6a\xcb\x27\xdb\xe2\x09\x1d\xaa\x00\xd0\x73\x81\xfe\xf2\x66\xc5\x48\x7a\x2f\xe1\xac\x81\xaf\xb7\x7d\x87\x08\x42\x13\xa1\x6d\x91\x2b\xb8\x63\xef\x2e\x85\x5d\xbd\xa9\xeb\xea\xe8\x55\x99\x23\xbd\x9a\xf4\xfb\x60\x12\x30\xed\xbb\x69\xc2\xfd\x4a\x46\x66\x93\x8e\x60\x8b\x66\xb3\x82\x20\xff\x11\xb0\xcb\xef\x56\x54\xbd\x5c\x6f\x6f\x23\x3a\x67\xd1\x2b\xc0\x3b\x06\xc9\x77\x5d\x67\xc7\x83\x59\xaf\x1b\x0e\x19\xce\x0f\x1d\x06\x46\xc6\xe1\x24\x62\xa1\x1e\xb7\xe7\x79\x73\x3d\xa2\xf3\x92\xa3\x30\x39\xf2\xeb\x2f\xff\x6d\x27\x0a\xda\x51\xb3\xa0\xde\xc7\x02\x17\xdc\xb8\xde\xfa\x92\xf4\x1c\x9a\x0a\x9c\x15\x4f\xfb\x6a\xf3\x05\xb5\x2f\xa6\x5b\xe1\xa0\x4f\x1d\x5b\x2c\x58\x60\x22\x28\x8d\xa6\x20\x02\xb4\x6a\xc2\xd2\x4a\x75\x9f\x7b\x4c\x5d\x48\x31\xb2\xf1\x07\x68\x7e\xc5\xf8\x12\xa3\x13\x59\xc8\x64\xcd\xaa\x3a\x88\x96\xaa\xd2\xc5\x03\x87\xa1\x0e\x98\xa2\x8a\xcb\x53\x08\xf0\xc6\x23\xff\x38\x08\x64\x26\x76\xe1\xbb\xae\xcb\x1f\xfe\x66\xfc\x57\x05\x25\xb7\xf7\xe9\xd1\x64\x52\x12\xcb\x30\x4f\xc2\x04\xcc\x5c\x8e\x9e\x0d\x30\x3a\xd0\x2e\xae\xb8\xf5\xb4\xf5\xd2\x25\x13\x52\x76\x0a\x69\x7e\xca\xf2\x00\xd4\xb7\xf9\x64\x70\x93\xc7\x80\xbc\xbb\xcb\x26\x05\xb2\x07\xec\xbd\xa0\x4d\x0a\x88\x6b\x4c\xac\x8c\xe3\x27\xcf\x35\x91\x9a\xf9\xed\xb8\xf9\xfd\x18\x3b\xb2\x83\xfa\x81\xf4\xe5\x92\x48\x5f\x4e\x89\xd4\xef\x57\x27\xaf\xf4\xef\xbb\xd3\x25\x39\xa9\xd0\xb8\x21\xd6\xb7\xf0\x1c\x93\x49\x87\xd4\xa1\x9f\xc2\xba\x50\x37\x1a\x14\x72\x48\x6a\x12\xe6\x37\x1a\xd9\xcb\xcf\xf1\xc5\xe9\x7e\x83\xcf\xb4\xfb\xec\xa6\xcd\x6a\xaa\x3c\xd8\xb7\xcd\x2a\x4d\xe3\x7e\x46\xb6\x6f\x6f\x6e\xa6\x85\x11\xa9\xd1\xb2\xa6\x8f\x87\x6e\xda\x3c\x75\xeb\x78\xf3\xff\xb1\xf7\xef\xcb\x8d\xdb\xd8\xa2\x30\xfe\xff\xef\x29\x30\xee\x5d\xe5\xee\xf3\xb3\xe4\xee\x4e\xd2\x93\x71\x6a\xea\x2b\xb7\xed\x4e\x54\xf1\x45\xc7\x76\x27\x33\x35\xca\xe9\x0d\x91\x90\x84\x63\x0a\xe0\x90\xa0\x6c\x4d\x26\x5f\xed\x07\x39\xe7\xe5\xf6\x93\x7c\x85\xb5\x00\x12\x24\xc1\x8b\xdc\x76\x32\x17\xaa\x6a\x26\x6d\x89\x04\x16\x16\x80\x75\xbf\x7c\x9e\x53\x6d\xcd\xd4\x4a\x86\x3b\xf0\x9e\x0b\x7c\xe1\x69\x79\x0e\x2e\x19\x2e\x87\x59\xb7\x13\x57\xa4\xc7\xc4\x7a\xe9\x5a\x67\xef\x1e\x14\x62\xb8\x43\x1c\xc5\x42\xfb\x92\x8d\x97\x63\xf2\xed\xd9\xed\x01\x99\x7e\xbc\x3d\x20\x4c\x05\xe3\x57\xe4\xc2\x74\x30\xeb\xd0\x20\xcc\x18\xfa\xd4\x5e\x5d\xef\x6b\x21\x62\x09\xa1\x2d\xff\x58\x16\xd7\x98\xaa\xd5\x0e\xfb\xb8\x3f\xd5\xcf\x3f\xc7\x36\x76\xed\x60\xb7\x87\xc1\xdd\x41\x00\x73\x9c\x6f\x15\x2e\xd3\xee\x45\xdf\xcd\x20\x84\x8d\x97\x47\x64\x44\xd8\x03\x0d\xd4\x11\x39\x5c\x48\x09\x1d\x49\xa1\xb6\x10\x39\x9c\xd3\x84\x5c\x5e\xdd\x9e\x1d\x61\x4c\x04\x13\x2a\xd9\x92\x75\x17\x73\xb9\xba\x3c\xff\xb3\xa1\x63\x5b\xc2\x38\x16\x6d\x27\xb3\x3d\x98\x04\xed\x1f\xfa\x4f\x9c\xc5\xca\xe9\x8d\xfd\xff\x8a\xcf\x86\x46\x3c\xa4\xb9\x9a\x8a\x25\xe7\xb5\x52\xcd\x95\x2f\xeb\xb8\xf8\xf4\x39\x73\xe5\x43\xa0\x51\x0c\x55\x86\x4b\xf5\xed\x00\xf1\xb6\xd6\xb0\x09\x62\xe8\x20\xb7\x13\x05\xc1\x84\x73\x66\x11\x61\x34\x60\x2d\x82\x1f\x59\xb4\xcf\xb2\xd7\xaf\xbf\x08\xf4\xc0\xf0\x2f\x76\x64\x6b\x44\xf4\x51\xd8\xf0\xa8\x01\x54\x30\x5c\x04\xcd\x48\xed\x16\x16\x43\x8f\x0c\xbe\x3f\x6b\x06\x1c\xa3\x15\xd9\x3b\x48\x9a\xc4\x20\xe0\x69\x85\xa0\xb8\xa9\x32\xd6\xe3\x07\xed\xc3\x0c\x49\x3f\x82\xd4\x3d\x14\x0f\xd6\x3d\x79\xe6\xe4\xe4\x62\xda\xd7\x77\x09\xc4\xa8\x19\x76\x97\x4a\x51\x7b\xea\x03\x80\x16\x53\x52\x65\x08\x34\x0a\xa6\xcc\x6b\x99\x37\x36\x76\xc5\x8f\xdb\xc6\x61\x5e\x32\xb1\x2e\xca\x96\x55\x04\x9a\x3b\x99\xd0\x7a\x9e\x36\x5d\x12\x3c\x41\xfa\xa1\xcd\xbb\x16\x67\x50\xaf\x93\xa8\x97\xb6\x03\x9f\x07\xc9\x44\x0a\x17\x4b\x80\x94\x00\x6a\xbc\x91\xc9\xc2\x69\xae\xde\xcd\x22\x6e\x35\x82\x31\x84\x19\xe2\xa6\xa0\x9e\x4c\xa9\xc9\x76\x5e\x4a\x86\x12\xc5\x82\x95\xe0\x01\xf5\x76\x79\x2a\x3e\xa0\xd4\xa3\xe1\x8a\xaf\x63\x99\x16\xc1\xa5\xd8\xc8\x60\x3f\x2d\x4a\x54\x2e\x78\xc2\xee\x69\xe4\x2f\xb6\x57\x7c\x90\x5a\x18\x93\x02\x16\xba\x94\x84\x89\xa2\x1d\x32\xc4\x8f\x74\x5f\x8d\x4e\xeb\x33\x3c\xf6\xf9\x9b\xa1\x87\x19\x13\x37\xcd\xb9\xcb\x78\x9b\x57\x2e\xfe\x1a\x03\x0f\x61\x85\x30\xd6\x59\xb0\x92\xe4\x1a\x99\x36\x79\xc9\xc7\x6c\x4c\x62\x2e\x96\x69\xbb\xf5\xb6\xd7\x7a\x7b\x10\x83\xd8\x9f\x9b\xd0\x80\x90\xc9\xd4\xe6\x28\x7c\x76\x48\x43\x49\x35\x43\x79\xdc\xc5\xf2\xd4\xda\x74\x1b\xb1\xd0\x03\x03\x0d\x51\xe6\x0d\x8b\xb3\x65\x88\x9d\x58\xb3\xa2\xfa\x87\x53\x0f\x25\xef\x23\xd2\xbe\xb8\xcf\x22\x1a\x10\xd0\x8f\x95\xa1\x5a\x8f\x6b\x01\xe1\xb4\x2f\x57\xec\xcb\x96\xca\x41\xf2\x05\x3c\x26\x3b\x02\xed\xcd\x77\xcc\xa4\x02\x92\x98\xf2\xa4\xb9\xf2\x76\xf1\xd1\x6a\xad\xe9\xfe\xe3\xe2\x94\xce\x65\xa6\x7a\x30\x92\xa7\xd2\x1c\x85\x54\xfa\xf6\xf5\x3b\x19\x97\xf8\x70\x87\x2f\x1a\x1e\x69\x8f\x09\x19\x18\xc6\xc0\x30\xfe\xb9\x19\x86\x90\xca\x8a\x55\x8d\x68\x69\xf7\x17\xf7\xf4\x14\xf7\xf3\x11\xd7\x42\x99\xac\xc8\xd7\x11\xcd\x64\x1e\x6b\x46\x58\xc7\x3d\xee\xe1\x94\x7e\x9c\x3b\x3a\xfe\x47\x45\xee\x6c\xcf\xc5\xed\x13\xf2\xfe\x9a\x59\x16\x32\x01\x5c\x49\xc0\xe2\x64\x0c\xa7\x9e\x27\x6d\xa1\x39\x26\xae\xcc\xec\xf3\x19\xc4\xbf\x5f\x43\xf2\x86\x4d\x45\xc0\xd8\x99\x97\x73\x16\xd0\x2c\x35\xd1\x1c\x1d\x81\xc1\x39\x88\x01\x4b\x60\x8c\x3c\x22\xe4\x15\xba\x13\x6d\x45\xc1\x52\x7c\x4b\x17\x8b\xc5\xc0\x97\x23\x37\x76\xe3\xc0\x8d\xdc\xc0\x3f\x40\x53\x29\xfd\xb5\x79\x57\xfc\x7d\x73\x72\x8b\xbf\x36\x4f\x63\x46\x3c\xe7\x8a\xd9\xf0\x10\x68\x23\x00\x07\xc4\xba\x14\xb0\xd4\xfa\x9b\xd1\xdb\xaf\xbe\x6a\xf1\xb1\x3d\xdf\xb1\x4f\x9b\x8a\xdb\xe1\xa7\xec\x26\xc8\x8b\xdb\xf5\x48\x95\x68\xe8\x56\xe1\xce\x3a\x64\x49\x0c\x59\x12\x43\x96\xc4\x90\x25\x31\x64\x49\x0c\x59\x12\xfe\x15\x0f\x59\x12\x43\x96\xc4\x90\x25\x31\x64\x49\x0c\x59\x12\x43\x96\xc4\x90\x25\x31\x64\x49\x34\xad\x64\xa0\x65\x43\x96\xc4\x90\x25\x31\x64\x49\x0c\x59\x12\x43\x96\xc4\x90\x25\x31\x64\x49\xd4\x3f\x43\x96\xc4\x90\x25\x91\x7f\x86\x2c\x89\x21\x4b\xe2\xf9\xb3\x24\x5a\x3a\xee\x68\x1d\x03\xeb\x9d\xf9\x7e\x6b\x1f\xb8\xe5\x94\x9b\xea\x78\x8f\x28\x73\x68\xde\x1c\xea\x1c\x0e\x75\x0e\x87\x3a\x87\x43\x9d\xc3\x66\xd2\x38\xd4\x39\x1c\x3c\xf8\x83\x07\x7f\xf0\xe0\x0f\x1e\xfc\xc1\x83\x3f\x78\xf0\x8b\xcf\xe0\xc1\x77\x3e\x83\x07\x7f\xf0\xe0\x9b\xcf\xe0\xc1\x1f\x3c\xf8\x83\x07\x7f\xf0\xe0\x0f\xb4\x6c\xf0\xe0\x0f\x1e\xfc\xc1\x83\x3f\x78\xf0\xeb\x9f\xc1\x83\x5f\xfd\x0c\x1e\xfc\xc1\x83\x5f\xfd\x0c\x1e\xfc\xc1\x83\x9f\x7f\x06\x0f\xfe\xe0\xc1\x1f\xea\x1c\x0e\x75\x0e\x87\x3a\x87\x43\x9d\xc3\xa1\xce\x21\x19\xea\x1c\xf6\x9c\x61\xa8\x73\x38\xd4\x39\x1c\xea\x1c\x0e\x65\xab\x86\xb2\x55\x43\x9d\xc3\xa1\xce\xe1\x50\xe7\xb0\x19\xfe\xa1\xce\xe1\xc0\x30\x06\x86\x31\xd4\x39\x1c\xea\x1c\x96\x3e\x43\x9d\xc3\xa1\xce\x61\xe5\x33\xd4\x39\x6c\x56\x20\x87\x3a\x87\x43\x96\xc4\x90\x25\x31\x64\x49\x0c\x59\x12\x43\x96\x44\xcb\x8a\x87\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\x9a\x56\x32\xd0\xb2\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\xea\x9f\x21\x4b\x62\xc8\x92\xc8\x3f\x43\x96\xc4\x90\x25\xf1\xaf\x58\xe7\xb0\x8f\x2f\xac\x4e\xb9\xba\xfd\x5f\x0b\x74\x5d\x16\xb2\xa6\x0f\xea\x2c\x75\xad\xf9\xe6\xd0\x61\xb1\x40\x29\x4a\x56\xee\x86\x25\xf9\x77\x05\x0a\x32\x76\xad\xe3\x4a\x3f\xd4\x72\x2f\x8b\x68\x6f\x65\x6b\x3c\x36\x08\xf3\x18\xdf\x82\x55\xf3\x40\x6d\xd1\x83\x82\x9d\x3f\x1c\xa3\x26\x93\xdb\x61\x56\x7c\xa9\xc5\xc2\xd9\x1e\x8c\x37\xdb\x83\x03\x6c\x9e\xf5\x0d\x4d\x17\x5a\xa4\x51\x40\x32\x61\x80\x48\xde\xb3\x04\xa1\xc1\x78\x21\x07\xb8\x94\xc8\x35\x57\x8a\x85\x07\x5a\x23\xc7\x50\x73\xdf\xa0\x81\x14\x29\xc7\x92\x95\xa8\x71\xcf\xf6\xb8\x58\x70\xc1\x15\x9b\xed\x91\x11\x81\x28\x15\x67\x39\x56\xc5\x31\x70\x92\x88\xa6\x6a\x4c\xf2\x95\x79\x51\xa2\x61\xe5\x21\x13\x8a\x07\x34\x32\x00\x56\xc7\xe1\x82\xd0\x28\x5e\x51\x91\xad\x59\xe2\x3c\x07\x07\xc0\x37\xaa\x71\x0b\x1a\xe5\x10\x5d\xb1\x5e\xc3\x26\x1e\x0e\x91\xad\xe7\x75\xbd\x3d\x4e\xd8\xe9\xe5\xf1\x6d\xd7\xf1\x98\xe2\x63\x84\x8b\x90\x07\xa8\x93\xe4\x61\xd1\x2b\x5b\x86\x12\xb8\x17\x4f\x2d\xa2\xe6\x6c\x21\xfd\x84\x87\x8a\x2d\xd1\xc3\x35\xc2\x3a\x97\x32\x62\xf5\xaa\x9a\x2d\x5c\xa7\xa2\x95\xdf\xba\x1a\x1e\x9e\x6a\x47\xcf\xb3\x17\x2d\xe6\xc1\x1d\xfe\x9f\xcc\xbc\x04\x48\xaf\xad\x22\xb1\x3b\x27\xc1\x04\x71\x3b\x7b\xa8\xa4\x31\x30\xb5\xe8\x1d\x05\x1c\x29\x59\xc8\x28\x92\xf7\x88\x35\x54\x3e\x73\x75\x0c\xf9\xc2\x1f\x51\x37\xc1\x8b\xfd\x29\xe2\x8a\x25\x34\xd2\xdf\xf8\x46\x9e\xcd\xc8\x08\x93\x18\xf4\xa9\x5e\xc7\x34\xe1\xa9\x14\x07\x04\x32\x99\xac\x52\x61\x87\x5c\x48\x49\xe6\x34\x01\x45\x27\x9f\xee\x77\x3b\x4e\x57\xcc\xa7\x55\x22\xf6\xd7\x8c\x46\xdf\x60\xdc\x9d\x65\x74\x7c\x61\x38\x1c\x4f\xe1\x19\x6b\xb4\xcb\xa7\xf4\x13\x91\x9f\x01\x0e\x5a\x44\x8b\xcc\x8b\x7f\x06\xf8\xcf\xf1\x78\x4c\x7e\x71\x20\x50\x49\xc6\x6c\xf8\x7c\x1e\x81\x86\x73\xfc\x89\xf8\x23\x5e\x8d\xb5\xb2\x63\xaa\x02\x56\xbd\x00\x2e\x7a\x00\xe7\x9b\x6c\x47\x78\x61\xb2\x36\x00\xfd\x5b\xe2\xc0\xac\x15\x5a\x18\xef\x93\x66\x1d\xaf\x8a\xa9\x6f\xf3\x99\xa9\x2a\x76\xc7\xd9\x99\xdf\xc1\x21\xf5\x32\x5d\x33\x44\x6e\xd9\x90\x0b\x78\x16\x54\x5b\xf8\x6f\xf6\xfa\xf5\xdb\x77\xf8\xff\xf8\x4b\xfe\xce\xcd\x4a\x26\x6a\x14\xf0\x24\xc8\xb8\x02\xc1\xc5\xbc\xe4\x9b\xe8\xef\x7f\x6f\x7d\x1b\x4c\xa0\xea\x25\x3e\xf3\x2a\x7f\x28\xa6\x09\x13\x58\xec\x76\x99\xc8\x2c\xd6\xd2\xda\x6c\xa6\x68\x14\xbd\xf4\x9a\xb2\x4d\xf5\x55\x0c\x4e\xc8\xe9\x85\x1d\xcd\x9e\x61\x1a\x45\x8e\x86\x0a\x17\xf4\x1c\xcf\x03\x8a\x60\x0d\x44\x4e\x5f\x6d\xa4\x33\x36\x7e\xcb\xa5\xef\xe9\x01\x19\x1d\x90\x4f\x80\x87\xc3\x31\xb9\x81\x2b\x47\xcc\x95\x6b\x1c\x74\x2d\x13\x46\x62\x2d\x9c\xa6\x29\xdf\x30\x32\xc7\xc8\xe3\xad\xb5\x8c\x18\x9b\x15\x61\x69\x40\x63\x46\x82\x15\x4d\x68\xa0\x58\x62\xc0\x3e\xc3\x00\x4e\xef\x65\x78\x09\x5c\x6a\x4d\x43\x36\xca\x62\x3c\x16\xe9\xab\x9c\x1c\x41\xba\x8b\x21\x1d\xf7\x6c\xae\xa5\x5f\x66\x88\x87\xbb\xe3\x21\x8b\x23\xb9\x5d\x33\xe1\x25\xa7\xe6\xfd\x38\x91\xa1\x3d\xa4\x30\xae\xbe\x53\x40\x93\x12\x29\x14\x13\xa1\x73\xd4\x69\x70\x67\xbe\xf8\x45\x3f\x5e\x8c\x4f\x7e\xf7\xc7\xa6\x1b\x10\xb2\x8d\x1d\xfe\x77\xa4\x72\x0b\x7c\xa4\xac\x4d\x78\x2a\xdb\x12\xfa\x4a\x85\x37\xde\xb7\x9e\x4d\x34\x34\x40\x5a\x55\x63\x57\x01\x11\xec\x95\x3d\x78\x2a\x98\x35\x0b\x09\xe0\x7e\x05\x69\x94\x25\x9e\xef\x04\x74\x98\x42\xd3\x5e\x3a\xa5\xef\x9d\x34\x95\xa6\x0f\xcc\x5f\x5a\xa9\x19\x13\x0c\x9f\x02\x6e\xf2\x10\x6b\x89\x4a\x45\x5b\x47\xa7\x79\x09\x55\xb2\xbd\x71\x71\x0e\x1d\x15\x24\x48\x98\x89\xda\x4e\xcd\xed\x96\x09\x11\x3c\x7a\x75\x60\x23\xaf\x43\xb6\xa0\x59\xa4\x52\x82\xcb\xd2\xa8\x4b\xc2\x06\x9d\x46\x49\x72\xaf\x69\xe5\xc4\xd4\x32\xd7\x40\x9c\x39\x65\xcd\x41\x6e\xb5\xf4\x33\x2f\x19\x0d\x01\x43\xa4\x29\x79\xd3\xcc\x4f\x78\x8a\x77\x6c\x44\xfe\x62\x44\x39\x0d\x90\x9d\xe9\xa7\x03\xc3\x22\xb4\x60\x0c\x96\xc7\xd2\xc4\xde\x7b\xcc\x45\x10\x65\xa1\x35\xcd\x07\x54\x0b\xcb\x30\x40\x31\x0c\x41\x26\x2d\x64\xbe\x24\x18\xee\x95\x86\xc4\xaf\x6b\xb9\xc0\x9d\xf9\x61\x2b\x61\x44\x13\xa6\x62\x78\xaf\x72\x07\xcf\x35\x2e\xfd\xa0\x73\x42\xdf\xa0\xa0\x19\x37\x6d\x13\xd2\xc0\x1f\x8d\x5a\xec\xa8\x27\x09\xa3\xfa\x36\x05\x77\x84\x2e\x29\x17\xde\x23\x8b\xc7\x04\xcd\xa9\xd1\x3d\xdd\xa6\xb5\xa0\x59\xf4\x73\x1e\x10\xc1\x36\x2c\x29\x9d\x3a\xaf\x55\xb3\x67\x35\xfa\x02\x0b\x84\x01\xeb\xc8\x3d\x02\xb1\x4c\x53\x3e\x8f\xec\xc4\x45\x20\x87\x7e\xe1\x26\x66\x81\x5f\xed\xc6\x85\x34\x87\xb6\xb4\x2b\xf8\x8d\xba\xb3\x5f\xe5\xae\x7f\x0b\x9c\x23\x74\x1d\x76\xa9\x92\x09\x5d\x32\xfb\x55\xaa\xa8\xca\x10\x31\x68\xb7\x66\xe1\xa5\x63\x51\xbc\xe3\x22\xd4\xd4\xc8\xa2\x34\x8e\xb2\x84\x46\xc5\x37\x81\x14\xe8\x42\x4a\x8f\xc8\x5f\x7e\xd2\xdf\xe8\xf1\x59\x68\xb2\xbf\xcc\xb7\x33\x31\x1a\x8d\xf2\xff\xd0\x98\xdb\x5c\x32\x42\x63\xce\x1e\x14\x13\xf0\xf0\xf8\xee\xeb\x74\xcc\xe5\xe1\xe6\xcd\x4c\xe0\xc4\x27\x59\xaa\xe4\xfa\x9a\xa1\x59\xfc\x94\x81\xa2\x08\x44\xbb\x94\xb1\xa5\x79\xcd\x11\xc1\xb8\x3f\x81\x01\x74\x29\x53\xe9\x38\x48\xc2\x71\x9c\x48\x8d\x8e\x00\xe8\xd0\x58\x26\xcb\x99\xd0\x04\x0e\xde\x03\xa9\xe5\x88\x34\x3c\x56\xb6\xad\x22\x40\xfe\x58\xbf\x88\xa7\xea\x7b\xef\xef\xe7\x3c\x55\x65\xcc\xd5\xa0\x34\xdb\xc2\xc5\x32\x8b\x68\x52\x7f\x00\x90\x1a\x48\xbd\xb3\x27\x51\x96\x2a\xd4\x2a\x37\x16\xc1\xfa\x8f\x91\xc1\x80\x46\x1c\x0c\x16\xac\xd8\xba\x48\x66\x93\x31\x13\xc7\xd3\xc9\x0f\x5f\xdc\x94\xbf\xaf\x9c\xfd\x2a\xec\xe5\x20\x61\xf0\x87\xd1\x64\xce\x55\x42\x93\x2d\x99\x4c\x49\x9a\xcd\x47\x16\xcc\xc3\x93\xc9\xe9\x75\x89\xf0\xa0\x1d\x63\xa5\x49\x15\x4a\x37\xa0\xc3\x82\x02\x86\xb4\x48\x49\xcc\x57\x31\xce\xc7\x35\xd9\x70\xea\x84\x81\xa0\x83\x0f\x5f\x75\xc7\x95\x8b\x3a\xa0\xd6\x4b\x94\x1b\x6d\xdc\xbb\xd6\x60\x49\x77\x4e\x61\xf9\x6a\x95\x13\xf0\x35\xde\x8c\x37\x14\x03\x84\x91\x1a\x18\xf4\xb3\xd0\xe0\x1a\xc9\x01\x10\x37\xc3\x99\xa8\xcf\x5a\xa6\x51\x28\xcc\x05\x1d\x83\xdc\xc2\x92\xd4\x6a\xb6\x81\x14\x1b\x96\x28\x92\xb0\x40\x2e\x05\xff\x5b\x3e\x78\x6a\xfd\xb3\xd0\x1b\xa3\x26\xeb\x71\xa1\x58\xa2\x25\x1c\xa0\x4c\x07\x40\x88\xd7\x74\x4b\x12\xa6\xa7\x21\x99\x70\x06\xb4\xd1\x21\x17\x5a\xb2\xe5\x62\x21\x8f\xa0\x34\x4a\x7a\x74\x78\xb8\xe4\xca\x5e\xc0\x40\xae\xd7\x99\xe0\x6a\x7b\x08\x5e\x23\x3e\xcf\xf4\x96\x1c\x86\x6c\xc3\xa2\xc3\x94\x2f\x47\x34\x09\x56\x5c\xb1\x40\x65\x09\x3b\xa4\x31\x1f\x01\xec\x02\x08\xc1\x78\x1d\xbe\x48\xcc\x8d\x4d\xf7\x7d\x64\xab\x4e\xed\xe0\x72\xb5\x6d\x83\xbe\x5d\x26\x9f\x10\x45\x77\x94\x3d\x72\x6c\x5b\xfe\x7b\x7d\x76\x73\x4b\xec\xec\xde\xdc\x4b\x44\x7e\xf1\x66\x5a\xec\x83\x46\x1a\x17\x0b\x2b\x64\x81\x79\xda\xb5\x49\x20\x87\x8f\xb8\x47\xde\x4e\xb3\xf9\x9a\xab\xd4\xa9\xa9\x21\xc7\xe4\x04\x92\x33\x35\xe7\xca\xe2\x90\x2a\x16\x8e\xc9\x44\x90\x13\xba\x66\xd1\x09\x4d\xd9\xb3\xef\x02\x48\x9a\x23\x8d\xdb\xbe\xfb\xd0\x90\x07\xdb\x64\xe0\xcd\x09\x69\xc3\xb6\x55\x2f\xaa\x66\x93\xe5\x74\x0c\x9b\xbd\x53\xe4\xcb\x52\xd2\x1c\x49\x6d\x37\xb6\xc2\x49\x5b\x7c\x65\x0d\xd1\xc5\xb5\x36\x3a\x36\x00\x6a\x32\x25\x96\xa4\x21\x05\x9b\xb3\x48\xea\xb3\x25\x8d\xd9\x88\xf9\x5c\x45\xcd\xc2\xc5\xc0\xde\x9f\x8c\xbd\xaf\x64\x5a\xf8\xf3\x9f\x81\xb5\xbb\x51\xf9\x55\xb6\xee\xfe\x56\x67\xe9\x25\xc8\xaa\xec\xdc\xfd\xf1\x39\x59\xf9\xc0\xe6\x06\x36\xe7\x6e\xc1\xc0\xe6\x7e\x35\x36\xe7\x52\x87\x7e\x2c\xae\x4e\x6b\x8a\xcf\xee\x4c\x8e\x3d\xc4\x90\x3a\x36\x99\xf6\xb1\x2b\xe9\x9d\x36\x2f\x94\x33\x54\x5e\x4e\xa6\x9b\x2f\xe1\x5a\x4d\xa6\x9b\x77\xaf\xac\x86\x6b\x8f\x85\x57\x7d\x9d\xa0\xb9\x7c\xa2\xef\xe6\x82\x06\x0c\xbc\x62\xb3\xd9\x5e\xc5\x01\x91\xdb\x81\x40\xa3\x8f\xa4\xbc\xb3\x86\x38\x6e\xdf\xf4\xda\x5f\x6d\x58\x8d\x93\x39\x33\x99\x96\x02\x37\xb0\x23\x1c\xb8\xc6\x8c\x85\x01\x88\x08\x55\x63\x08\x84\xf4\x32\xe5\xd9\x4c\x81\x59\x22\x4b\x6b\x11\x95\x95\xf4\x50\x48\xda\xc9\x9b\xea\xc9\xc4\x18\xd1\x7c\x83\x56\x1b\xcc\xcd\x66\x7a\x3c\xd3\x59\x2e\x5f\xbf\x21\x7e\x69\x79\x56\x2e\xfc\xc9\xa7\xb9\xde\xe5\xee\xd3\x18\xb2\xc5\x34\x5b\x29\x45\xb8\x61\x64\xe2\x59\x71\x14\xd0\xe8\xe0\x1b\x96\xa7\x68\xe1\xc4\xf2\x24\x54\x91\x38\x4b\x62\xa9\x6f\xea\xcb\xc9\xc2\x54\xf9\x5b\xb1\x62\x6b\xf4\x3c\x36\x66\xa6\xbd\x44\x84\xb5\xf6\x49\x86\xdb\x1f\x31\x9a\x88\x7c\xdb\xcc\x0e\x16\xe3\x6a\x00\xb2\x14\x2c\xd2\x8d\xd1\xda\xb3\x99\xb2\xdb\x31\xf6\xda\x93\x9f\x5c\xf8\x22\x05\x84\xfa\x38\x77\x5f\xa9\x33\xac\xa8\xa6\xcf\xfd\xff\x40\x63\xba\xf1\x74\x00\xd2\xca\x59\xea\xe7\x5c\x64\x0f\xed\xa7\x3e\xf7\xf5\xe6\x07\xfa\x1b\x38\x7a\xeb\x58\x6d\xc7\xa4\x98\xc6\x75\x0f\xa3\xaf\x94\xa7\xad\x94\x45\x7f\x96\x72\xc3\x12\x81\x5e\x96\x3c\x70\x47\x1e\x98\xb8\x51\x0d\x76\x22\xb3\x25\x46\x14\x58\xa3\xa9\x91\x88\x0b\xf5\xda\x6b\x64\xc6\xcd\x85\x73\xa9\x1f\xcc\x4b\x77\x68\x50\x2f\x65\x88\x64\x01\xce\xe4\x37\x84\xe9\xf5\xe3\xc5\x0e\xf5\x21\xd9\xe0\x45\xf4\x67\x2d\x17\x49\xa2\x1b\xe8\x00\xb9\x2d\xd0\x77\x40\x5c\xf3\xab\x4c\x31\xfe\xf5\x50\x49\x88\xa9\xd4\xb0\x58\x0b\x85\xdf\xa9\x1f\xc9\x80\x46\x79\x32\xa4\x31\x59\x4e\x16\xa4\x44\xcf\x2c\x2d\x73\xf6\xb7\x17\xaa\xe1\x22\x59\x7c\x97\x82\xa4\x60\xf9\x40\x4f\xf4\xda\x8d\xac\x05\x98\x73\xd0\xef\x25\x32\xf6\x18\x15\x77\x28\xc7\x75\x09\x66\x38\x82\x23\x72\xaf\xc9\x5c\x99\x38\xfb\xe9\x01\xda\x4f\x47\xa5\xed\xf7\x4c\x96\xe7\xaf\x14\xa6\x58\x7d\xb3\xbd\x83\x0a\x97\x18\x41\x55\xc5\x04\x42\x14\x0e\x3c\x50\xe5\x20\x1c\x10\x0a\x54\xa3\x2e\xfe\x11\xe3\x41\x76\x79\x57\xde\xe1\xb1\xa8\x39\x83\x21\xf8\x5a\xe9\x48\xb0\x1a\x93\x99\x25\x25\x2f\xd3\xcc\x4f\x61\x68\x4a\xfe\xfb\xbf\xfe\x0f\x53\xab\xd7\xff\xfd\x5f\xff\xf7\x95\x89\x1e\x07\xc7\x1e\x0b\x89\x86\xfa\x1b\xc2\x15\xe1\xa9\xd8\x57\x85\x15\xb8\x9b\x8f\x13\xbc\xca\x71\x22\xb5\xec\xe2\x1c\x00\xc4\xb0\x43\x13\xca\xa7\xb0\x80\xd9\xcb\x71\x6d\x88\xff\x11\xae\x14\x32\x6a\x40\xf6\xc1\xac\x1b\xf4\x0b\x69\x79\x6b\x1d\x47\x6c\xad\x4f\x1a\x12\xfa\x82\x6c\xb8\x40\xa7\xdf\xf8\xf7\x8e\x2b\x4e\xa3\x68\x4b\xfe\xb7\xc6\x70\x9c\xb0\x11\xc4\xa3\xe4\x5e\x96\xa9\xde\x22\x66\x2a\x5f\xe6\x44\x3f\xc8\xd6\x4d\x1a\x81\xfe\xd8\xee\x9b\x28\xde\x9b\x2e\x9f\x52\x78\xcd\xf5\x6d\xa4\x5b\xf8\xcb\x1e\xd5\x74\x7a\xfd\x9c\x89\xf5\x84\x60\xa0\xc5\xd6\xb2\x7b\x03\x31\x3c\xc0\xb5\x8e\x2c\xbc\xc8\x6e\x03\xa2\x29\xc7\xac\xe2\x4d\xd0\xac\xbe\x24\x0d\x5a\x7e\xbd\x9f\x9a\x9b\x6b\xd2\x9f\x6c\x19\x4c\x6f\x24\xe8\x9c\x15\x4d\x68\x21\x74\x29\x17\x36\xcc\x86\xa3\xc3\x65\x17\xde\xd8\x19\x5f\x2c\xfc\xac\xaf\x1b\x33\x05\x7e\x3a\x5e\x6f\xcd\x6d\xfa\x47\x2a\x6f\xf3\x5c\xd5\x4c\x3a\x02\x2e\x45\x03\xb9\x1e\x01\x72\x1b\x7e\x69\xa9\x57\xf4\xe8\x30\xcd\xd8\xb4\x47\xee\x3a\xee\xc7\x45\x1e\x21\x5e\x38\x0e\x5c\x6e\x51\x6b\xb4\x6c\x80\x68\xae\x02\x57\xc4\x16\x6b\x46\x9b\x6b\x20\xa6\x23\xb2\x19\xa4\x88\x74\xb4\x0a\x01\x86\xf0\x35\x0d\x8a\xc1\xb9\x71\xcc\x68\x92\x07\xcf\x41\xec\x37\xc9\xe1\x2a\xfc\xcb\x76\x64\x1b\x04\xc9\x2a\x0d\xa5\x5b\x55\x80\xb8\xa9\x7c\xc5\x60\x28\xfc\x15\x0c\x85\x3c\xa6\xeb\x79\x24\x83\xbb\xe7\xb0\x12\x4e\xa6\xc7\x17\xef\xf5\xe0\x55\x13\x61\xfe\x43\xdd\x3e\x58\x00\x54\x35\x0e\xe6\xbf\x0c\x96\xc1\xc1\x32\x38\x58\x06\xff\xe5\x2c\x83\x39\x51\xe8\x65\x16\x14\x55\xea\x52\x7c\x76\x37\x0a\x6a\x6d\x43\xe3\xce\xc3\x6d\xda\x78\x0d\x8d\xb4\x36\xd2\x54\x4f\xb6\x8b\x7f\xb5\x88\x5b\x2f\xc8\xed\xd5\xe9\xd5\x11\xd6\x25\x10\x59\x14\xd1\x39\xf2\xf0\x35\x15\x19\xe8\x1a\x34\x0c\x81\x95\x8f\xc9\x8f\xcc\x92\x04\x3c\x37\x24\x4f\x5e\x4c\x46\x4b\xe6\x55\x2e\x5e\x68\x12\xb1\xa2\x22\x8c\x18\xf9\xcb\x4f\xff\x43\x1f\x56\x44\x4e\xb4\x35\x19\xc6\x5e\x6d\xca\x02\xd2\x24\xa4\xb5\x48\x45\x54\xe1\x91\xf4\xca\x45\x9f\x21\x78\xe3\x22\x3e\x71\xbf\x58\x48\x7a\x49\xdf\x29\xd3\x0c\x99\x26\xbe\xdd\x37\xd0\xef\x56\x0f\xb8\x8f\x98\xdc\x95\x5f\xf4\x68\xf9\x33\xe0\xa1\x2f\x06\xb4\x0d\xa6\x90\x45\x4c\x79\x25\xeb\xf6\x94\x07\xc8\x86\x3b\xee\xba\x3a\x0d\x6f\x67\xc2\xdc\x1e\xef\xc4\x8f\xbe\x3b\x8d\x98\x69\xd0\x1f\x46\xee\x25\xae\xfd\x94\x9f\xda\xea\x2f\x1a\xcb\xd5\xef\xca\xf8\xa8\xfe\xea\xac\x77\x90\x4a\xfb\x48\xa5\x81\x14\x0b\xbe\x7c\x2e\xb1\xf4\x04\x46\xf7\xc9\xa5\xf8\x8b\x5f\x30\x35\x30\xf9\x24\xd3\x20\x1f\x70\x10\x4d\x07\xd1\xb4\x71\x1b\x06\xd1\xf4\x9f\x55\x34\x45\xba\xb0\x83\x6c\xea\x92\x98\xe2\xf3\x08\xe1\x34\x53\xf2\xd8\xf0\x0e\x90\x77\x7d\x8c\xb1\x95\xd7\xae\xe9\x03\xbe\x38\x65\xc9\x77\x32\xf5\xd9\x1a\x2b\x05\xd7\xcb\xcf\x43\x70\xbb\x90\x62\xf4\x37\x96\xc8\x03\x5b\x16\x6d\x4d\x1f\x4c\xe6\xa6\x26\x07\xae\xce\x5e\x01\x0d\x0a\x0d\x51\x01\xd9\x88\x9a\x3b\x42\x5a\x3c\xa3\xc1\x0a\xdc\x38\x8d\xb6\xe4\x06\x1e\xff\x39\x62\x47\xb3\x10\x50\xc3\xf1\x2e\xdc\x7d\x60\xe1\x7e\x16\x8e\xd2\xf9\x73\xb1\xf0\xef\x60\x74\x1f\x0b\xc7\x5f\xfc\x2c\xdc\xc0\xe4\x63\xe1\xab\x7c\xc0\x81\x85\x0f\x2c\xbc\x71\x1b\x06\x16\xfe\xcf\xca\xc2\x91\x2e\xec\xc0\xc2\x5d\x12\x53\x7c\x76\x67\xe1\xc0\x1c\x3d\xac\xaa\xb7\x61\xa1\x97\xd6\xeb\xb7\x16\x3c\x52\xbb\x47\x62\x38\x39\xdd\xc9\x96\xd0\xc8\x5f\xe7\x75\x3b\xdd\x28\x9f\x62\x60\xa6\xdd\xcc\x34\x96\x32\x7a\x1e\x46\x3a\x95\xd6\x03\xea\x32\x51\xfd\xad\x8f\x81\x02\x1c\x75\xe6\x19\x9b\x41\x06\xc6\x39\x30\xce\xc6\x6d\x18\x18\xe7\x3f\x27\xe3\xd4\xb4\xa0\x37\xd3\xd4\x0f\x3f\x96\x43\xde\xf0\xbf\xf5\x0a\x56\x82\x87\x49\xca\xff\x06\x9a\x64\x96\x62\x84\x59\x11\xf7\x4b\x68\x9a\xf2\xa5\x58\xeb\x93\xd1\x58\xb6\xd0\xd4\x06\x90\xd1\x98\x9c\xda\x84\x7b\x25\xc9\xdb\x77\x66\x30\x13\xde\xfd\xe6\xcd\x5b\xfb\xc5\xbb\x5d\x55\xd5\x06\x5b\x7c\x6d\x3d\x1a\x0a\x72\x32\x39\xbd\xde\x31\xae\x2a\xe4\x29\x9d\x47\x5e\xde\x5e\x9a\x03\x02\xb8\xed\xc3\xa0\xbe\x27\x59\x11\x66\xad\x05\x1d\x8c\x35\xd7\x07\x1d\x51\x57\x44\x50\xfb\x50\x67\x2e\x95\xc5\xdf\x8e\x92\x05\x8f\xb9\xaf\x55\x6e\x99\x56\x9c\xea\xab\x8d\xde\x01\x73\x91\x6d\xb7\x59\x88\x14\xcd\x43\xb2\x8f\xa7\x93\xcd\x1b\x48\x90\xbf\xa7\x49\xe8\x85\x16\xea\x0d\x29\x3e\xe7\x11\x57\x5b\x4d\x28\x94\xa1\x34\xee\xa8\xb0\x74\x2c\x8b\x72\x50\xfe\xc9\x8b\x00\x8c\x43\x47\x8a\x8d\xcd\xc0\xa3\xad\xaf\x9d\x75\x87\x03\x8b\x89\xa6\xfd\xf3\xef\xa1\x79\xbe\xd8\x42\x8d\x4b\xa2\x32\x21\x58\xa4\xd7\x64\x0b\x77\x65\x0d\x41\x37\x04\xc3\x2c\x43\x16\xf1\x0d\x4b\x8a\xea\xb1\xfa\xab\xbc\xb2\xba\xd3\x74\xa8\x79\x87\x49\xd7\x2e\x13\x28\x09\xd3\xd8\x73\xb1\x76\x07\x26\xd3\xc9\x14\x5e\x30\x0d\x8a\xad\xc5\xc8\xd6\x19\xda\xc3\xd2\x06\xb6\x53\x02\xb4\x58\x19\x61\x4f\x90\xd9\xde\x98\x90\xe3\xa6\xf5\xae\x4d\x13\x64\x67\x04\x53\x2a\x21\x45\xda\x01\x33\x17\x38\xd4\x7b\x9b\xc8\x0c\xcf\x48\x63\x9b\x2b\x07\x5f\xe5\xc4\x90\x1a\xee\x08\x39\x76\x60\x28\xc3\xdd\x34\x3a\x00\x68\x0f\x7a\x15\xc0\x7b\x5b\x25\xc2\x85\x01\xc3\x33\xf5\xed\x68\x1a\x93\x16\xf5\x9d\x4d\x2f\x15\x2b\x91\xd8\x32\x94\x7a\x70\x61\x77\xa0\x88\x68\x6f\xad\x8b\xff\x12\x2c\x83\x45\x11\xbe\xf0\x95\x86\xa2\xc0\x75\xeb\xd1\x69\x8f\xe0\xf2\xab\x33\xfa\xc4\x5f\xf4\x08\x6a\x3d\xb1\xbc\x0a\x1d\x33\x59\x52\xf0\x29\xcf\x86\xb7\x1f\xf5\x49\x65\x8d\x07\xb6\x80\x25\xb6\xec\x34\x88\xc2\x32\x38\xb3\xbd\x4b\xb6\x81\x8a\x81\xd8\x44\xb2\x3c\x99\x6f\x74\x3d\x82\xa1\xcd\xbe\xaa\xe9\xad\xd1\xbd\x54\x8d\x64\xa6\x96\x92\x8b\xe5\xbf\x0b\x49\x6d\xa5\x3a\x82\xaa\xab\x9e\xf8\xc0\x6a\x3e\x0e\x02\x0b\xaa\x6a\xe9\x22\x14\xcd\x71\xea\x42\x93\xd6\xfc\x08\x23\x1d\x69\x21\xd4\x25\x00\x35\xea\x2a\x33\x95\xf2\x90\xe5\xda\x06\x3c\xa4\x6f\xbc\x6f\x50\x28\x58\x9f\xfe\x35\x63\x09\x0d\xbd\x25\x50\xdb\xd1\x21\xc3\xde\xe5\x42\x8f\xf5\x56\xa5\x56\x82\x33\xf5\x27\xf4\x71\x31\xe1\xfb\x79\x04\x3e\x90\x9a\xf9\x16\xcb\x4d\xf8\x60\xce\x2b\xc6\xee\x76\x98\x37\x0f\x11\x15\x9f\x79\xb5\x7f\xf8\xd3\xf9\xf1\xe5\xaf\x76\xb7\x61\x36\xaf\x6c\x99\x03\xf0\xe8\xcb\xdd\x68\x4a\xa9\x87\x1e\x0c\x16\x93\xba\xc5\xe4\x2e\x9b\xb3\x22\x10\x2a\x2d\x9d\x94\xe7\xb0\xa3\x7c\x9f\xcd\xd9\x49\x31\xdf\x89\x3b\x5f\xd5\xba\xd2\xf6\x6c\xdd\xe6\xd2\xba\x92\xaa\x25\xa6\xed\xe1\xc1\x3e\x33\xd8\x67\x06\xfb\xcc\xbf\x9c\x7d\xa6\x8d\x9a\xd4\xad\x36\xa5\x82\x6c\x55\x04\x7f\x9f\x67\xe5\x38\x41\xa4\x15\x36\xdb\xdf\xa4\xe3\x0c\xd1\x87\xa3\xdb\xd9\x50\xc7\xc5\x12\x79\x76\x66\x53\xdc\x71\xc3\xc3\x8c\x46\x0e\x98\x4d\x62\x98\x19\x6b\x67\x7d\x3c\xcf\x9e\xed\xa3\xb5\xe6\xf5\xd5\x9b\x40\xb6\x59\xcd\xf8\x50\x01\x57\x63\x21\xfb\x33\xa3\xde\xcf\xb7\x56\xee\x38\xb0\x4d\xb6\x04\x47\x41\x12\x65\x89\x86\x11\x7a\xf4\xc1\xd0\x64\x4a\x04\x3c\x62\xc9\x94\x25\x5c\x36\xc7\xcd\x56\x89\xc3\x75\xe5\x45\x1b\x05\x12\xe3\x5f\x4a\xea\x7f\x2d\x64\xb2\xce\xa7\xe0\x8d\xc9\x8d\xf6\x03\x65\x5d\x9d\x1c\x43\x7d\x2b\x40\x64\x18\x93\xbf\x18\x9b\xdc\x11\xf9\x6a\xfd\x93\x47\x0b\xb0\x9f\xee\x58\xdb\xae\x48\xdb\x86\x0c\xc9\x1a\x06\x2e\xb5\xd8\xdb\xb6\xd3\xfa\xf7\x7f\x8c\x4d\x5e\x39\x49\xab\x7d\x37\xd8\x4d\x74\xb5\xcb\x80\xca\xdf\x81\x35\x0b\x00\x87\x84\xc4\x6b\xa7\x27\x4e\xcb\xee\x9e\x5a\x83\xe3\x63\x57\xda\x73\xb5\xc4\xc4\x48\x9d\x24\x8c\x36\x14\xb1\x68\x58\xf3\xfe\x71\xfe\x5a\xb1\xb3\x99\x92\x6b\xaa\x78\x50\x14\x6a\x95\x9d\x7d\x2f\xca\x58\x01\xad\x43\x2b\x0a\x5b\x63\x4e\x29\x0e\xb3\xc5\x49\xdb\x91\x26\xbd\x5b\x59\xf4\x69\x64\xf1\xef\x77\xe1\x09\x9c\x5a\x28\x83\xdd\x76\x68\xca\xab\xbd\xc9\x5f\x29\x0e\x7f\x5e\x45\x58\x92\x40\xc6\xdb\x0e\xbe\x63\x3f\x40\x07\x8a\x2a\x8e\x4e\xfa\x74\xea\xae\xd2\x90\x81\xe7\xa5\x6d\x98\x5b\xd9\x87\xba\x99\x42\x2c\x2d\xf4\xcd\x64\x4f\xff\x63\x50\xb8\x7f\xbf\x53\xdd\xb5\xd5\xe5\x6a\xe0\x7d\xb6\xbc\x5c\x09\xbc\x6d\xeb\x3b\x1a\x0a\xd9\x36\x42\xce\xd1\x18\xce\xc0\x6f\x71\x06\x6c\x55\x8c\x0e\xde\x5f\x36\x83\x56\xde\x69\x3b\x07\x5d\x8d\xf0\x59\x45\x7e\x18\x4e\xc2\x6f\x73\x12\xda\x7e\x65\x2a\x08\x7f\xf8\xe2\x44\xae\x63\xec\x51\xd5\x88\xb1\x32\xa6\xce\xbc\xaf\x55\xf0\x35\x67\xea\x9e\x31\x01\x73\x6c\xbe\x68\x74\x1c\xc0\x00\xb9\x16\x0f\xee\x03\x8d\xea\xd7\xee\x59\x70\x70\xf5\xe6\xb5\x17\x59\x6d\x48\x5a\x31\x1a\xa9\xd5\xc9\x8a\xf9\x83\xe5\xcb\x4b\xfb\xce\x79\x38\x3f\xfd\x32\xb1\xa0\xa4\x79\xe7\x0a\x2d\xd6\xe1\xc8\xde\xa5\xe1\x00\xbd\x38\x7c\x1b\xec\x91\x5c\xde\x68\xe1\x91\xab\xed\x4d\x90\x30\x56\x35\x9d\xd5\x17\x70\x5e\x7d\xc3\x6e\x4b\x24\x97\x24\x35\xbf\x10\x3a\x97\x1b\x66\x4a\xa7\x44\x72\xe9\x95\x61\xa0\x9c\x0f\x13\xb9\x67\x30\x55\xa1\xcc\x94\xbb\x19\x13\xb1\x90\xbb\xae\x28\x4e\xe4\x5a\x4b\x52\x59\x7a\xc1\x54\xc2\x83\x74\xea\xaf\x77\x52\x5e\xd5\xd4\xf7\x96\x5d\xd9\xed\xc9\xd4\x69\xf1\x6d\x5a\x59\x9b\xc7\x7d\x0b\x5b\xe3\x10\x68\x02\x4f\xf2\xf6\x48\x5c\x60\x63\xa4\x8e\x13\xf8\x87\xd7\x7f\xf8\xb2\x79\xd1\xde\xe0\x8f\x66\xf3\x7d\x93\x79\xa2\xd1\xfe\x53\x18\xe5\x1b\x50\xd5\x6a\x01\x82\xb7\x1d\x4b\x9c\xd9\x57\xfd\xad\xc7\x70\x0a\xc6\xb7\x92\xb9\x87\x4c\xd4\x3e\x94\xc0\x5b\x64\x11\x7a\x82\xc2\x35\x18\x93\xa0\x21\x19\xe4\x25\x43\xf3\x0f\x6c\x14\x4b\x03\x95\xd1\x9a\x53\x08\x47\xc4\xbd\xba\xa7\x79\x25\x12\x5b\xc8\xc7\x78\xfa\xd7\x32\xc4\x4e\x1a\x73\x2d\x87\x6e\x78\x22\x21\x82\x87\x6c\x68\xc2\xe1\x22\xd6\xe0\x45\x37\xf8\x5d\x36\x67\x23\xd7\x5e\x15\x27\x32\x60\x69\x55\x39\x6d\xab\x09\x59\xcc\xf6\x03\xf5\x5a\xab\x76\x0c\xd4\x6d\x22\xdd\xa5\x6d\x3b\x2b\xcf\x5a\x2d\x7d\xe4\x41\x40\x83\x77\xdf\x8b\x04\x40\x36\x17\x8b\x28\xc3\x42\x48\xd8\xbb\x1d\xba\x44\xe2\x01\x69\xf4\x46\xf9\xf9\x46\xe2\xbe\xdb\x75\x79\x4b\x13\x55\x16\x06\xfd\x80\xf9\x86\x95\x4e\x05\x4f\xed\x04\xbe\x05\xf2\xa6\x8d\x96\xe1\x81\x29\x3a\xb3\x66\xc9\xd2\xda\xa7\x8f\xa7\x93\xc2\x3c\xad\xd9\xb1\x97\xd4\x89\x86\x53\xe6\xc1\x4b\x87\x08\xd2\x6e\xe8\xac\x21\xe7\x29\x8d\x9d\xa4\xcb\xe0\xd9\x03\x7c\xd2\xc3\xf0\x59\x5b\xc4\x6e\xc6\xcf\x36\x79\xe9\x29\x65\xc5\x9e\xab\x25\xbb\xc9\x8c\xb5\xc5\xf7\x97\x1b\xbb\x0c\x47\x65\xb1\xb2\x97\xec\xd8\x35\x64\xbb\x68\x49\x9e\xd4\xb8\xd4\x62\x3b\x25\xcf\x65\x3f\x25\x4f\x60\x61\x20\xfd\xcf\x49\x4f\x5b\x6a\x6d\xb9\x3b\xd8\x53\xbb\x76\xd4\x69\xf0\xf6\x24\x36\xd5\x1d\x56\x4f\x76\xb1\xad\xd6\x70\xd0\xcf\xbe\xda\x3d\x28\x88\x26\x4f\x6e\x63\x25\x3b\xb4\x0c\xee\x77\x1d\xc8\x40\x57\xfa\x20\xb3\x97\x79\xb6\x8e\x9c\xa7\x33\xd1\x92\x27\x35\xd3\xf6\x5f\x7a\x9f\x33\xd4\x6a\xb2\xad\x21\xe5\x29\xcd\xb6\xe4\xd7\x25\xac\xc3\x45\x79\x82\xd3\xd2\xcb\xea\x4b\x9e\xcd\xf2\x4b\x9e\xc9\xfa\x4b\x86\x63\xf4\xab\x1e\xa3\x9e\x86\x63\xf2\x9c\xc6\x63\xf2\x5c\x06\x64\x32\x1c\xa6\x5f\xf1\x30\x75\x3d\xd1\xdb\xfe\x4c\x9e\xcb\x06\x4d\x9e\xd6\x0e\xdd\x07\x79\x1d\xf6\xe8\xfa\x52\x9f\xc8\x26\x4d\x76\xb4\x4b\xf7\x59\x4b\x1f\xfb\x74\x7d\x41\x3b\xdb\xa8\x9b\x96\x13\xc9\x65\xfa\x19\x76\xea\x3e\x2b\xec\x6b\xaf\xae\xaf\xf2\x49\x6d\xd6\xe4\x73\xed\xd6\x4d\x83\x36\x99\xb3\x49\x77\xa1\x81\x96\x2a\xdc\x2d\xa6\x6d\xd2\x4a\x17\x86\xf0\xf5\x7a\xf8\xba\x49\x34\x01\xe1\x9d\x3f\x4b\x05\x1d\xd3\x38\x10\x15\x08\xfc\xa1\x88\x50\x2f\xfd\x58\x0f\x49\xaf\x40\x67\x36\x23\x0f\x42\x77\x7f\x86\xa1\x4d\xd4\x79\x6e\x33\x04\x19\x60\x08\x3c\x1f\x02\xcf\x87\xc0\xf3\x7f\xae\xc0\xf3\x36\x1f\x1a\x34\xfb\xea\x93\xed\x0e\x8d\x07\xf4\xf1\xc7\x76\x5d\xac\xd4\x06\x1d\xbb\x16\xe8\x3f\x72\xb7\x91\xd7\x7b\x63\xdf\xc6\x54\xbd\x6a\x2b\x32\xe8\x73\x46\x02\x99\x24\x2c\x8d\x35\x59\x17\x4b\x62\xc4\x3d\xdb\x30\x6a\xa7\x86\x03\x95\x1e\x56\xc7\xe4\x5a\x03\xc8\x44\x40\xe3\x34\x83\x7b\x5b\x40\xe4\x03\xa5\xc1\xc6\x89\x20\x8d\x09\x79\x2f\xd5\xaa\xd2\x33\xa1\xd6\x23\x4d\x0f\x54\xed\x0d\xd1\x20\x37\xe4\xfd\x4f\x4c\x8f\x86\x11\x49\x59\x4c\x13\x7d\x48\x89\xcc\x14\xa1\x1a\x5c\xdb\x7e\x02\x1f\xd1\x72\x24\x74\xa8\xe7\xcd\x6d\xf1\x09\xc0\x60\xf6\xcb\x45\x3c\x17\x4b\xec\x06\x85\x2d\x27\xa0\x57\xcd\x86\x55\x31\xb1\xa2\x4d\xa3\x12\xc1\x96\x00\x9c\x21\xbc\x07\x24\x4e\xd8\x82\x3f\xb0\x10\x95\x9f\xff\xfe\xaf\xff\x7b\x29\xd5\x7f\xff\xd7\xff\x1d\x93\xe3\x28\x32\xc5\x07\xdd\xb1\xfd\xe3\x9a\x54\x6c\x8a\xc7\x29\xef\x7f\x44\x15\x4f\xc1\xcf\x8c\x79\x8d\x66\x21\x4a\xe2\x98\x63\x72\x0c\xac\xac\x5e\xf6\xc9\xe0\x16\x8e\x26\x15\xf6\x78\x1a\x23\x9b\x59\xb2\x46\x10\x2c\x46\xff\x61\x56\x83\x4d\xcd\x1a\x7b\xb6\x21\x56\x01\xf7\x7e\x10\xf5\x04\x30\x6b\x0e\xa2\x3f\x71\xbc\x53\xc7\xc5\xe3\xd6\x28\x16\x76\x6b\x80\x4e\x1a\x6b\xe3\x28\xa5\xab\x72\xea\x64\xa8\x97\xbc\xc0\x95\xa3\x01\x12\x31\x5c\xcb\x16\xd5\xb3\x94\x46\x4b\x34\x25\x54\xbe\x5b\xdc\x13\x19\xc4\xf5\x7a\xb6\xe4\xc8\x36\xac\x6c\xb6\x77\x59\x7d\x19\x38\x98\x20\x32\xc6\x40\x01\x93\xed\xdc\xd4\x60\xa5\xf8\x94\x3a\xc7\x9b\xa1\xd8\x83\x66\x60\x29\x50\x07\x68\x5d\x55\x6a\x89\x66\x13\xf6\xbb\xac\xdc\xc0\xe3\x5e\xea\x23\xc4\x92\x35\xbe\x40\xa8\x7a\xe5\x78\x51\xf2\x6a\x05\xb6\x65\x4b\x73\xdd\x88\x0a\xca\xd2\xbc\xd8\x04\xec\xa5\x66\x7f\x90\x51\x0d\x07\xb9\x86\x9b\xf6\x41\xf5\x05\xc8\xb1\xa8\x75\x3b\x14\xc6\x42\x1b\xe1\x91\xd2\x35\x5e\x01\x93\x9c\x0b\xf9\xea\x7d\xec\x49\x8e\xef\xcc\x9c\xb1\x24\x87\x97\xcc\xb7\x08\x6c\xde\x46\x3f\x5f\x51\x3f\x54\x98\x96\x7d\x1a\x2e\xa4\x7e\x1f\x64\x52\x96\x9c\xb5\xb4\x66\xba\xc5\xed\x88\x11\xbe\x8e\x23\x5e\xf4\x2a\x64\xc4\x3d\x64\x11\x5f\x73\x93\x91\x8c\x90\x6a\xf6\xa6\x71\xd2\x3e\x66\xde\x33\xad\xc0\x09\x77\xf0\x5b\x64\x2a\x51\xbc\xa3\xa5\xa5\x74\xb8\x13\x1b\x96\xbf\xbf\x84\xa6\xe6\x2f\x5f\xed\xd7\x11\x60\xd7\xd8\x61\x96\xda\x09\x01\xb5\x26\xea\xed\x83\xcb\xa4\xe4\xa6\x2d\x76\xb1\x34\x4c\x75\x2f\xdb\xc7\x6c\x5c\x67\x79\x15\x18\x02\x05\xb2\xff\xae\x07\x99\x42\x0d\x11\x68\x4a\x59\xdc\xc6\x06\x9e\x90\xa3\xb1\x97\x75\xaf\xa1\x01\x7c\xf1\x29\x3b\xf4\x99\x4a\x9b\x69\x9e\x96\xd3\xa1\x64\x6e\xda\xd4\x9f\xb1\xf8\x58\xee\x06\x5b\x58\xb4\xb3\xf2\x93\xbc\x9c\xaa\x75\x1c\x9c\x32\xc9\x2b\xd5\x68\x81\x4e\xb5\x79\x93\xdc\x25\xdf\x30\x61\x4a\xa2\xb4\x67\x34\x35\x0b\x88\xce\xbc\x3d\x9d\xa0\x2d\x2d\x1c\x8a\x8f\x90\xea\x72\xb7\x3d\xc1\x17\xac\xc9\xa9\x22\x57\xd9\x15\xeb\x47\x3a\x38\x87\xde\xc7\x7f\x38\x5c\x4c\x1b\xfa\x08\x16\x9f\x2a\x32\xb0\xa9\x60\x3b\x36\xe0\x99\x3e\xe8\x20\x37\x5c\xcb\xd4\x32\x6f\x25\x69\x1b\xc8\xa5\x64\x45\x37\xcc\x76\x27\xe4\x0b\x38\x5d\x71\xf7\xb0\x60\xc6\xb4\x85\x27\x08\x57\xd6\xbc\x96\x5a\xeb\x20\x8c\x6e\x84\x25\x43\xab\xb5\xe6\xd1\x81\x75\x89\x3c\x4c\x61\xc9\x8a\xdb\x93\xa9\x2d\x9a\xf4\xf1\x74\xda\x58\x91\x07\x3f\x7d\x76\xb5\xbd\x99\x20\x7e\x7a\xb6\x14\x2c\x3f\xdc\x27\x0c\xa3\x4f\x7b\x41\xfc\x3c\xa6\xc9\xa0\xfd\xf4\x3d\x90\xbb\xcb\x8d\x97\xc5\x4b\x1d\xc7\xb2\x9f\xa0\x60\x4e\x26\xb9\x61\x0e\x73\x41\x2a\xac\x75\x87\x34\x9b\xab\x88\x69\x31\x18\x35\x29\x33\x57\xfb\x98\xb9\x40\xd4\x7a\x54\xfa\xed\x59\x53\xeb\xcf\x06\xf4\xcc\xf6\xf2\x1b\xdb\xc5\x56\xba\xe4\x06\xd6\x87\xad\xac\x40\x15\x36\x06\xa5\x97\x8e\x7e\xf1\xaa\xe3\x18\xe6\x76\x7c\x94\x26\xdd\x26\xbf\x29\x23\x09\x15\x4b\x96\x1e\x5a\x7b\x1c\xd4\x33\x6b\x2d\xa3\x85\x1f\xee\xea\xe5\xe6\xea\x80\xdb\x07\xb1\x9c\x5a\x0c\x18\xe3\x96\x99\xa6\x43\xc6\x59\xe0\x1e\xa0\x70\xd3\x97\x82\x75\x52\x00\x7c\x74\x27\x0a\xd6\xb1\xf6\x82\xbc\x55\x28\xd8\x0c\x69\xd8\xcc\x50\xb1\x19\xd2\xb1\x99\xa6\x64\xad\x32\xcf\x40\xcb\xe0\xd3\x8b\x96\xa5\x8f\x50\x80\xbb\xf5\xde\x56\x13\x5e\xf1\xf1\xea\xbd\xe4\x65\xca\x98\xb5\x7d\x01\x29\xa3\xeb\x38\x62\x24\xdd\x0a\x45\x1f\x7c\xb5\x94\xdc\xcf\x6c\xd6\xaa\x36\x1b\x19\xb2\x49\x2d\x6e\x1f\xdb\x9a\xbc\x4a\x8d\x4e\xeb\xda\xb0\xed\x3d\x0d\x73\xeb\xd3\xd3\x81\x04\x93\x61\x60\xbd\x01\x1d\x5c\x01\xd1\xe3\x70\x93\x0e\x5d\x95\x45\xf2\xfe\xd5\x41\x19\x64\x07\xd9\x88\x55\xd3\xfc\xcd\x3a\x97\x3b\xf0\x80\x76\x2e\xb0\x5f\xde\xae\x18\x51\xf7\x12\xce\x1a\x14\x17\xb1\xbf\x99\x06\xe1\x73\x15\x6d\x8b\xf2\x83\x1d\x7b\x77\x25\xec\xea\x6d\x0c\x52\x61\x57\x65\x8e\xf6\x8a\xab\x91\x10\xff\x67\x9e\xef\xe6\x09\xf7\x2b\x19\x99\x4d\x3a\x82\x2d\x9a\xcd\x0a\x86\xfc\x47\xa0\x2e\xbf\x5b\xd1\xf4\xe5\x7a\xfb\x09\x82\x03\x5f\x01\xdd\x31\x44\xbe\xeb\x3a\x9b\x6a\x9a\xd6\xd0\x00\x87\x0c\xe1\xc3\xd0\x8d\x22\x79\x21\xd4\xf3\xf6\x3c\x6f\x30\x5e\x28\xa1\x4c\x19\x50\x69\x74\x16\xcd\x59\x44\xfe\xfb\xbf\xfe\x8f\x05\x14\xac\xa3\x66\x41\xbd\x8f\x05\x2e\xb8\x71\xbd\xf5\x25\x69\x18\x9a\x0a\xea\x16\x9f\xf6\xd5\xe6\x0b\x6a\x5f\x4c\xb7\xc1\xe1\x36\x4f\x27\x41\x51\xca\x58\x0a\x22\x20\xab\xa6\xc8\x27\xf8\x81\xf3\x75\x74\x83\x2e\xa4\x18\x99\x38\x1b\xe3\xe4\x22\xf7\x2b\x96\x30\x63\x13\x59\xc8\x64\xcd\xaa\x36\x08\x33\x7a\x0f\x5b\x5c\x1d\x31\x4e\x29\x8d\x27\x50\xe0\xcb\xe1\x80\x3b\xc8\x5d\xe5\x88\xc0\x5f\x4f\xfe\xaa\x90\xe4\xf6\x31\x3d\x96\x4c\x4a\x62\x19\xda\xd4\x21\xf4\x6b\xe4\xe4\xb9\x47\xec\x62\x1e\xbd\xd8\x7a\xda\x7a\xc7\xca\xbb\x5e\xf6\xe6\x4f\x3d\x8f\xe6\xf3\xd1\x4d\x1e\x83\xf2\xee\x21\x9b\x0c\xc8\x1e\xb4\xf7\xc2\x36\x71\xe2\x45\xef\x57\x32\x45\xab\xa3\x5e\xbe\x11\xff\xa0\xc5\x78\xd7\x18\x7d\x04\x3b\xb2\x53\x70\x7f\x4f\x29\x89\xf4\x95\x94\x48\xfd\x7e\x75\xca\x4a\xff\xba\x3b\x5d\xd2\x93\x0a\x8b\x1b\x52\xfd\xbc\x58\x28\x99\x74\x96\xd9\x21\x8e\x77\xa1\xee\x34\x28\xf4\x10\x53\xc1\x93\x6d\xf5\xf7\xdd\x83\x1e\x5f\x9e\xee\x7b\x6b\xab\x96\x3f\xbb\x59\xb3\xda\x03\x6e\xbb\x9f\x59\x29\xe5\xab\x92\x8e\x9f\x72\xa6\xd1\xed\xed\xb4\x70\x22\x35\x7a\xd6\xf4\xf1\xd0\x8f\x36\x83\x9e\x47\x42\x7e\x96\x53\x6d\xcd\xd4\x4a\x86\x3b\xf0\x9e\x0b\x7c\xe1\x69\x79\x0e\x2e\x19\x2e\x87\x59\xb7\x13\xbd\xa1\xc7\xc4\x12\xc3\xac\xb3\xb8\x93\xa5\x4a\x2c\xc4\x51\x2c\xb4\x2f\xd9\x78\x39\x26\xdf\x9e\xdd\x1e\x90\xe9\xc7\xdb\x03\xc2\x54\x30\x7e\x45\x2e\xb2\x48\xf1\xb8\xcb\x42\x67\x50\x04\xa7\xf6\xea\x7a\x5f\x0b\x11\x4b\xc8\x63\xf9\xc7\xb2\xb8\xc6\x54\xad\x76\xd8\xc7\xfd\xa9\x7e\xfe\x39\xb6\xb1\x6b\x07\xbb\x3d\x0c\xee\x0e\x02\x98\xe3\x7c\xab\x70\x99\x76\x2f\xfa\x6e\x06\x21\x6c\xbc\x3c\x22\x23\xc2\x1e\x68\xa0\x8e\xc8\xe1\x42\x4a\x32\x32\x71\x0b\x47\xe4\x70\x4e\x13\x72\x79\x75\x7b\x76\x84\x31\x11\x4c\xa8\x64\x4b\xd6\x5d\xcc\xe5\xea\xf2\xfc\xcf\x86\x8e\x6d\x09\xe3\xa0\x3a\x50\x32\xdb\x83\x49\xd0\xfe\xa1\xff\xc4\x59\xac\x9c\x3e\xd6\x82\x70\xfb\xb8\x1b\x1a\xf1\x90\xe6\x6a\x2a\x84\x04\x63\xc5\x6d\xe5\x2b\xb1\x5d\x7c\xfa\x9c\xb9\x4a\xe4\xf2\xed\xed\x54\x63\x38\x27\xc7\x70\x1c\x00\xf1\x1a\xd1\x4e\x10\x43\x07\xb9\x9d\x28\x08\xd9\x9a\x33\x8b\x08\xa3\x01\x6b\x11\xfc\xc8\xa2\x7d\x96\xbd\x7e\xfd\x45\xa0\x07\x86\x7f\xb1\x23\x53\x52\xa0\x97\xc2\x86\x47\x0d\xa0\x82\xe1\x34\xc1\x48\xf2\x2d\x2c\x86\x1e\x19\x7c\x7f\xd6\x0c\x38\x46\x47\x10\xfe\x0e\x59\x99\x88\x80\xa7\x15\x82\xcc\xd2\x9f\x72\xd0\xbe\x69\x93\x3d\x08\x52\xf7\x50\x3c\x58\xf7\xe4\x99\x93\x93\x8b\x69\x5f\xdf\x25\x10\xa3\x66\xd8\x5d\x2a\xe5\x54\x49\xd7\xd0\x9a\x34\x18\xac\xf5\x0e\x53\x1a\xf9\xcc\xf4\xb8\x68\x51\xe4\x30\x68\x14\xf8\xd7\xbc\x64\x62\x5d\x94\x2d\xab\x79\xb5\xfd\xdc\xdf\xa3\xe7\x69\xd3\x25\xc1\x13\xa4\x1f\xda\xbc\x6b\x71\x06\xf5\x3a\x89\x41\x7b\xfa\x77\xad\xab\xac\x96\x4c\xa4\x70\xb1\x04\x48\x09\xb0\xe7\xc4\x64\xe1\x54\x61\xef\x66\x11\xb7\x1a\xc1\x18\x28\x0a\x71\x53\xd0\xcf\xc3\xc5\x95\xb1\xbb\x83\x51\x5d\xb1\x60\x25\x78\x50\x2f\x4d\x52\xfe\x80\x52\x8f\x86\x2b\xbe\x8e\x65\x8a\x51\x22\x50\x7b\x82\x25\x82\x45\xfb\x29\xe1\xb1\xc2\x0c\x8c\x05\x4f\xd8\x3d\x8d\xa2\x0e\x50\x91\x5a\x18\x93\x42\x96\xa2\xcb\x9f\x89\x85\xc4\x10\x56\x13\x3f\xd2\x7d\x35\x3a\xad\xcf\xf0\xd8\xe7\x6f\x86\x1e\x66\x4c\x20\x0a\x82\x3d\x80\xc9\xb5\xcb\x78\x8b\x7b\x20\x17\xe4\x6b\x0c\x3c\x84\x15\xc2\x58\x67\xc1\x4a\x92\x6b\x64\xda\xa6\x64\x7e\xcc\xc5\x32\x6d\xb7\xde\xf6\x5a\x6f\x0f\x62\x10\xfb\x23\xc0\x1b\x10\x32\x99\xda\x48\xf0\xcf\x0e\x69\x28\xa9\x66\x28\x8f\xbb\x58\x9e\x5a\x9b\x6e\x23\x16\x7a\x60\xa0\x21\x96\xb7\x61\x71\x17\xe6\x69\x27\xd6\x2c\x2f\x68\x03\x21\xca\xc9\xba\xe8\xa1\xe0\x8b\xab\x2e\x2f\xee\xb3\x88\x06\x84\x4d\x63\xf5\xfa\xf6\x92\xae\x7d\x4b\xee\x14\x9f\xbe\x6c\xa9\xdc\xf7\xa2\x80\xc7\xc4\xa0\xa3\xbd\xf9\x8e\x6d\xcd\xd1\x8e\x29\x37\x05\x75\xda\xa7\xd7\x6a\x2d\x61\x0f\x2a\xa1\x25\x9c\xd2\xb9\xcc\x54\x0f\x46\xf2\x54\x9a\xa3\x90\x4a\xdf\xbe\x7e\x27\xe3\x12\x1f\xee\xf0\x45\xc3\x23\xed\x31\x21\x03\xc3\x18\x18\xc6\x3f\x37\xc3\x10\x52\x59\xb1\xaa\x11\x2d\xed\xfe\xe2\x9e\x9e\xe2\x7e\x3e\xe2\x5a\x28\x93\x15\xf9\x3a\xa2\x99\xcc\x63\xcd\x08\xeb\xb8\xc7\x3d\x9c\xd2\x8f\x73\x47\xc7\xff\xa8\xc8\x9d\xed\xb9\xb8\x7d\x42\xde\x5f\x33\xcb\x42\x26\x80\x2b\x09\x58\x9c\x8c\xe1\xd4\xf3\xa4\x2d\x34\xc7\xc4\x95\x99\x7d\x3e\x83\xf8\xf7\x6b\x48\xde\xb0\xa9\x08\x18\x3b\xf3\x72\xce\x02\x9a\xa5\x26\x9a\xa3\x23\x30\x38\x07\x31\x60\x09\x8c\x91\x47\x84\xbc\x42\x77\xe2\x85\xc9\x49\x28\xc5\xb7\x74\xb1\x58\x0c\x7c\x39\x72\x63\x37\x0e\xdc\xc8\x0d\xfc\x03\x34\x95\xd2\x5f\x9b\x77\xc5\xdf\x37\x27\xb7\xf8\x6b\xf3\x34\x66\xc4\x73\xae\x98\x0d\x0f\xa1\xc2\x1e\x10\xeb\x52\x80\x20\x19\xf2\x66\xf4\xf6\xab\xaf\x5a\x7c\x6c\xcf\x77\xec\xd1\x8d\xd8\x8f\x1b\xdf\x60\x20\x52\xbf\x54\x89\x96\xee\x84\x76\xd6\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\xf0\xaf\x78\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\xa2\x69\x25\x03\x2d\x1b\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\xa2\xfe\x19\xb2\x24\x86\x2c\x89\xfc\x33\x64\x49\x0c\x59\x12\xcf\x9f\x25\xd1\x52\x8d\x56\xeb\x18\x58\xef\xcc\xf7\x5b\x9f\xf6\x89\xde\x53\x6e\xaa\xe3\x3d\xa2\xcc\xa1\x79\x73\xa8\x73\x38\xd4\x39\x1c\xea\x1c\x0e\x75\x0e\x9b\x49\xe3\x50\xe7\x70\xf0\xe0\x0f\x1e\xfc\xc1\x83\x3f\x78\xf0\x07\x0f\xfe\xe0\xc1\x2f\x3e\x83\x07\xdf\xf9\x0c\x1e\xfc\xc1\x83\x6f\x3e\x83\x07\x7f\xf0\xe0\x0f\x1e\xfc\xc1\x83\x3f\xd0\xb2\xc1\x83\x3f\x78\xf0\x07\x0f\xfe\xe0\xc1\xaf\x7f\x06\x0f\x7e\xf5\x33\x78\xf0\x07\x0f\x7e\xf5\x33\x78\xf0\x07\x0f\x7e\xfe\x19\x3c\xf8\x83\x07\x7f\xa8\x73\x38\xd4\x39\x1c\xea\x1c\x0e\x75\x0e\x87\x3a\x87\x64\xa8\x73\xd8\x73\x86\xa1\xce\xe1\x50\xe7\x70\xa8\x73\x38\x94\xad\x1a\xca\x56\x0d\x75\x0e\x87\x3a\x87\x43\x9d\xc3\x66\xf8\x87\x3a\x87\x03\xc3\x18\x18\xc6\x50\xe7\x70\xa8\x73\x58\xfa\x0c\x75\x0e\x87\x3a\x87\x95\xcf\x50\xe7\xb0\x59\x81\x1c\xea\x1c\x0e\x59\x12\x43\x96\xc4\x90\x25\x31\x64\x49\x0c\x59\x12\x2d\x2b\x1e\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\x68\x5a\xc9\x40\xcb\x86\x2c\x89\x21\x4b\x62\xc8\x92\x18\xb2\x24\x86\x2c\x89\x21\x4b\x62\xc8\x92\xa8\x7f\x86\x2c\x89\x21\x4b\x22\xff\x0c\x59\x12\x43\x96\xc4\xbf\x62\x9d\x43\x28\x5e\xd8\x55\xe5\xf0\x4a\x3f\xd4\x72\x86\x8b\xc8\x68\x65\xeb\x21\x36\x08\xbe\x18\x0b\x82\x15\xe6\x40\xc4\xd7\x83\x82\x4d\x3c\x1c\xa3\xd4\x9f\xdb\x2c\x56\x7c\xa9\x45\xa8\xd9\x1e\x8c\x37\xdb\x83\xcd\x36\xcf\xfa\x86\xa6\x0b\xcd\xfe\x15\x90\x17\x18\x20\x92\xf7\x2c\x41\x68\x30\xb6\xc6\x01\x2e\x25\x72\xcd\x95\x62\xe1\x81\xd6\x5e\x31\x2c\xdb\x37\x68\x20\x45\xca\xb1\xbc\x23\x6a\xa7\xb3\x3d\x2e\x16\x5c\x70\xc5\x66\x7b\x64\x44\x20\xa2\xc3\x59\x8e\x55\x07\x0c\x9c\x24\xa2\xa9\x1a\x93\x7c\x65\x5e\x94\x68\x58\x79\xc8\x84\xe2\x01\x8d\x0c\x80\xd5\x71\xb8\x20\x34\x8a\x57\x54\x64\x6b\x96\x38\xcf\x41\x65\x45\xdf\xa8\xc6\x85\x66\x14\x29\x74\x5b\x7a\x8d\x80\x78\x36\x44\xb6\x9e\xd7\x75\xdc\x16\xa2\x57\x51\x0a\x6f\x5d\x05\x03\x0f\x8a\xa3\x66\x64\xa9\x91\x98\x78\x70\x87\xff\x27\x33\xef\xf9\xd7\x20\x57\x04\x46\x07\xb9\x26\x86\xd8\x41\x8b\x92\xc6\xbe\xd1\x22\xf6\x16\x70\xa4\x64\x21\xa3\x48\xde\x43\x40\xa0\xd1\x7d\x72\x6d\x00\xc9\xd2\x1f\x51\x34\xc6\xdb\xfe\x29\xe2\x8a\x25\x34\xd2\xdf\xf8\x46\x9e\xcd\xc8\x08\x63\xe8\xf5\x41\x59\xc7\x34\xe1\xa9\x14\x07\x04\x12\x69\xac\x4c\x6b\x87\x5c\x48\x49\xe6\x34\x01\x39\x3b\x9f\xee\x77\x3b\x4e\x57\xcc\xa7\x25\x72\xf6\xd7\x8c\x46\xdf\x60\xd8\x97\xa5\xb3\x7c\x61\x08\x2c\x4f\xe1\x19\x6b\x33\xca\xa7\xf4\xdf\xcb\x9f\x01\x0e\x5a\x04\x2b\xcc\x8b\x7f\x06\xf8\xcf\xf1\x78\x4c\x7e\x71\x20\x50\x49\xc6\x6c\xf4\x76\x1e\x00\x85\x73\xfc\x89\xf8\x03\x2e\x8d\xb1\xac\x63\xaa\x02\x56\xbd\x00\x2e\x7a\x00\xe7\x9b\x6c\x47\x78\x61\xb2\x36\x00\xfd\x5b\xe2\xc0\xac\xf5\x29\x18\xef\x93\x96\x6e\x5e\x15\x53\xdf\xe6\x33\x53\x55\xec\x8e\xb3\x33\xbf\x83\x43\xea\xa5\xf9\x66\x88\x5c\xb1\x96\x0b\x78\x16\x34\x2b\xf8\x6f\xf6\xfa\xf5\xdb\x77\xf8\xff\xf8\x4b\xfe\xce\xcd\x4a\x26\x6a\x14\xf0\x24\xc8\xb8\x02\xbe\x69\x5e\xf2\x4d\xf4\xf7\xbf\xb7\xbe\x0d\x16\x38\xf5\x12\x9f\x79\x95\x3f\x14\xd3\x84\x09\xac\xb5\xba\x4c\x64\x16\x6b\x61\x61\x36\x53\x34\x8a\x5e\x7a\x2d\xa9\xa6\xf8\x27\xfa\xc6\x73\x7a\x61\x47\xb3\x67\x98\x46\x91\xa3\x20\xc1\x05\x3d\xc7\xf3\x80\x12\x80\x9f\xb9\x53\x7d\xb5\x91\xce\xd8\xf0\x21\x97\x64\xa6\x07\x64\x74\x40\x3e\x01\x1e\x0e\xc7\xe4\x06\xae\x1c\x31\x57\xae\x71\xd0\xb5\x4c\x18\x89\xb5\x6c\x94\xa6\x7c\xc3\xc8\x1c\x03\x5f\xb7\x56\x31\x37\x26\x13\xc2\xd2\x80\xc6\x8c\x04\x2b\x9a\xd0\x40\xb1\xc4\x80\x7d\x86\xf1\x83\xde\xcb\xf0\x12\x08\xff\x9a\x86\x6c\x94\xc5\x78\x2c\xd2\x57\x39\x39\x82\x6c\x0b\x43\x3a\xee\xd9\x5c\x0b\x5f\xcc\x10\x0f\x77\xc7\x43\x16\x47\x72\xbb\x66\xc2\x4b\x4e\xcd\xfb\x71\x22\x43\x7b\x48\x61\x5c\x7d\xa7\x80\x26\x25\x52\x68\x05\xdd\x39\xea\x5a\xa7\xc5\x2f\x7e\xd1\x8f\x17\xe3\x93\xdf\xfd\xb1\xe9\x06\x84\x6c\x63\x87\xff\x1d\xa9\xdc\x02\x1f\x29\x6b\x93\xa8\xca\xaa\x6c\x8b\xa3\xa5\x45\x8f\x6d\x97\xba\x17\x18\x54\x55\xb0\x05\xdf\xb2\x2c\xc7\xc2\x33\x6a\xc4\x61\x2c\x63\x2c\x85\x05\xd2\x4a\xba\x3e\x87\x49\xdb\x1a\xc1\x5c\xd6\x83\xa7\x82\x55\x8d\x8b\x90\x07\x20\x97\xdf\xaf\x20\x8b\x0f\xb9\x97\x61\x89\x4e\x3c\x81\xa9\x73\xec\xa5\x53\xfa\xde\x49\x53\xe8\xf8\xc0\xfc\xa5\x65\xea\x31\xc1\xe8\x1d\xe0\x26\x0f\xb1\x16\x52\x54\xb4\x75\x44\xea\x97\x50\xa4\xd9\x1b\x96\xe5\xd0\x51\x41\x82\x84\x99\xa0\xe1\xd4\xdc\x6e\x99\x10\xc1\xa3\x57\x07\x36\xf0\x37\x64\x0b\x9a\x45\x2a\x25\xb8\x2c\x8d\xba\x24\x6c\x10\xa9\x95\x24\xf7\x9a\x56\x4e\x4c\x29\x6d\x0d\xc4\x99\xf9\xa7\xbe\x8f\x86\x72\xe6\xb5\x8a\x21\x52\x05\xcd\x91\x66\x1a\xdf\xa8\x3c\xc5\xdb\x35\x22\x7f\x31\x72\x91\x06\xc5\xce\xf1\xd3\x81\x61\x0e\x5a\xca\x04\x93\x97\x9d\x12\xeb\x49\xbf\xe4\x22\x88\xb2\x46\x88\x57\x8c\x04\x54\x4b\x9e\x30\x40\x31\x0c\x41\xf6\x2c\x64\xbe\x18\x18\xee\x95\x07\x92\xb3\xc6\x3a\xd5\x55\xd8\x4a\x80\x69\x92\x54\x1d\xbe\x79\x9d\xde\xe3\x51\x85\xa1\x36\x21\xe8\x5f\x9e\xdd\xc0\x1a\xe7\x7e\xba\x20\xf0\x68\x95\x65\xfd\x84\x51\x7d\x8f\x82\x3b\x42\x97\x94\x8b\x03\x73\x1a\xd0\x68\x17\xdd\xd3\x6d\x6a\x42\x33\xbd\xa7\xd8\xfa\xd9\xd0\xc1\x76\x40\x04\xdb\xb0\xa4\x74\xde\xbc\xe6\xb4\x9e\x65\xd0\x0b\x2c\x10\x06\x4c\x23\x37\x45\xc7\x32\x4d\xf9\x3c\xb2\x13\x17\x11\x04\xfa\x85\x9b\x98\x05\x7e\x7d\x0f\xd7\xd6\x1c\x53\xd1\xae\x59\x36\x2a\x6d\x7e\x5d\xaf\xfe\x2d\xf0\x8c\xd0\xf5\x14\xa5\x4a\x26\x74\xc9\xec\x57\xa9\xa2\x2a\x43\xc4\xa0\xc1\x94\x85\x97\x8e\x29\xeb\x8e\x8b\x50\xd3\x21\x8b\xd2\x38\xca\x12\x1a\x15\xdf\x04\x52\xa0\xef\x22\x3d\x22\x7f\xf9\x49\x7f\xa3\xc7\x67\xa1\x49\x3b\x32\xdf\xce\xc4\x68\x34\xca\xff\x43\x63\x6e\x93\x98\x08\x8d\x39\x7b\x50\x4c\xc0\xc3\xe3\xbb\xaf\xd3\x31\x97\x87\x9b\x37\x33\x81\x13\x9f\x64\xa9\x92\xeb\x6b\x86\xf6\xd8\x53\x06\x5a\x17\x90\xeb\x52\xaa\x90\xe6\x32\x47\x44\x60\xcc\x56\xca\x54\x3a\x0e\x92\x70\x1c\x27\x52\x23\x22\x00\xda\x33\x96\xc9\x72\x26\x34\x51\x83\x37\x40\x52\x39\x22\x0d\x8f\x95\xcd\x79\x08\x4a\x35\xb0\x2c\xe2\xa9\xfa\xbe\xf2\xcb\x39\x4f\x55\x19\x4f\x0e\x4c\x06\xfd\x5c\x2c\xb3\x88\x26\xee\x4f\x80\xb6\x40\xea\xbd\xcb\x43\xc8\x40\xa1\xdb\x58\x2c\xea\x3f\x46\x66\x99\x1a\x3b\x30\x52\xb0\x62\xeb\x22\x55\x4a\xc6\x4c\x1c\x4f\x27\x3f\x7c\x71\x53\xfe\xbe\x1e\xb9\x65\x80\xb5\x31\x08\xc5\x94\x23\xf6\xd7\x8c\x6f\x68\xa4\xe9\xaa\x39\xde\xd5\xa0\x3a\xe7\x0c\x37\x98\x46\x9d\xdd\x2d\x1f\xd9\x72\x46\xb5\x06\xd5\xb8\xb7\x30\xe2\x13\x81\x31\x2b\x66\xa1\x59\x1e\xc2\x01\x44\xc3\x50\x7c\xea\x33\x7f\xc8\x05\x30\x79\x38\xf8\x63\x90\x04\x58\x92\x5a\x5d\x31\x90\x62\xc3\x12\x45\x12\x16\xc8\xa5\xe0\x7f\xcb\x07\x4f\xad\xc3\x0d\x9a\x1d\xd4\xf8\x05\x17\x8a\x25\x5a\x66\x80\x1b\x7f\x00\x34\x6f\x4d\xb7\x24\x61\x7a\x1a\x92\x09\x67\x40\xeb\xee\xbf\xd0\xb2\x22\x17\x0b\x79\x04\xb5\x2e\xd2\xa3\xc3\xc3\x25\x57\xf6\x60\x07\x72\xbd\xce\x04\x57\xdb\x43\x70\x03\xf0\x79\xa6\x64\x92\x1e\x86\x6c\xc3\xa2\xc3\x94\x2f\x47\x34\x09\x56\x5c\xb1\x40\x65\x09\x3b\xa4\x31\x1f\x01\xec\x02\x2e\xd8\x78\x1d\xbe\x48\xcc\x4d\x48\xf7\x7d\xe4\xa0\x4e\x45\xe0\xe8\xb6\x6d\x83\x3e\xc1\x26\x41\x0c\x85\x61\xe4\xe6\x39\xb6\xad\xaf\xf3\xfa\xec\xe6\x96\xd8\xd9\xbd\xc9\x74\x88\xfc\xe2\xcd\xb4\xd8\x07\x8d\x34\x2e\x16\x56\x6c\x01\x7b\xa3\xab\xe5\x23\xe7\x8c\xb8\x47\x82\x4d\xb3\xf9\x9a\xab\xd4\x29\x92\x20\xc7\xe4\x04\xb2\xed\x34\x93\xc8\xe2\x90\x2a\x16\x8e\xc9\x44\x90\x13\xba\x66\xd1\x09\x4d\xd9\xb3\xef\x02\xc8\x6e\x23\x8d\xdb\xbe\xfb\xd0\x90\xd8\xd8\x64\xb1\xcb\xc9\x54\xc3\xb6\x15\xf7\x51\x33\x9e\x72\x64\xbd\x4d\xc4\x28\x52\x1f\x69\x8d\x76\x15\x1f\xbb\xa5\x15\xde\xd4\xe2\xf6\x68\x08\x14\xad\x75\x44\xb1\xb1\x2c\x93\x69\x4e\xe9\x50\xf9\x9d\xb3\x48\xea\x53\x25\x8d\x09\x86\xf9\xac\xfe\xcd\xec\xfa\xdf\x82\x61\x02\x9f\x84\xff\x7b\x61\xd2\x27\x8e\x08\x32\xa8\x43\xc5\xd6\x31\xd0\xab\x43\xfc\x02\xc2\x43\x0a\xb7\x62\x92\x8e\x92\x39\x0d\xc6\x5b\xba\x8e\x66\xe2\xe7\x9f\xf9\x82\xb0\xbf\x92\xf1\xf5\xfb\xe3\x93\x13\x29\x16\x7c\x49\x66\x7b\xfa\x81\xd9\xde\x2f\xbf\xe8\xd1\x27\x20\xd1\x32\x42\x49\x10\x65\xa9\x62\x49\x22\x23\x96\x77\xe8\xa8\x8e\x0d\x26\x2e\x29\x98\x50\x07\xfa\x65\xe8\xf1\x01\x14\x44\x59\x52\xda\x00\x94\x55\x97\x0a\x9f\x9b\x61\xf0\x38\xe9\xb5\x8c\x58\x59\x30\x80\x45\xd0\x4c\xad\x64\xc2\xff\x86\xb1\x06\x8e\x74\xe0\xe1\xfe\x0d\x13\xcf\x04\xc8\xa7\xf0\xe0\x0b\x72\x29\x43\x34\x1e\x90\x7b\x13\x52\xa0\x24\x59\x4b\xc1\x21\x74\x4e\x26\x24\x64\x11\xc3\x7b\x8e\x2c\x97\xc6\xfc\x5b\x2d\x2a\xe8\x7d\xd1\x5b\xf8\x13\xee\x6a\x4e\x87\xf3\x23\x3a\x22\x42\x8f\x8d\x7f\x6e\x58\x32\x77\x7f\xba\x77\x63\xa0\x46\x70\x35\x8a\xbf\x96\x78\x2b\x5f\x90\xa9\xad\x9e\xf3\xd7\x8c\x25\xdc\x58\x31\xf2\xa2\x26\xec\x81\xa7\x8a\x09\x73\x55\x77\x82\x2c\x96\x61\x03\x60\xf9\xdc\x93\xe9\xf1\x45\xf1\xae\xc9\x95\x10\x3c\x86\x3e\x40\xa1\xd6\x68\x04\x2e\xd0\xe4\x68\x44\x4c\x19\xb7\x49\x15\x12\xbf\x48\xd5\x06\x1e\x8f\x63\x29\xa3\x06\x08\x2d\xae\x3e\x7f\x9a\x79\x24\x83\x3b\xba\x40\x11\xb2\x30\xc7\xe8\xf9\xe9\x1a\x7e\xac\x7c\xb7\xa2\x22\x8c\x9a\xb6\x74\xc9\x54\xd3\x86\x82\x1e\xcc\x8a\xbf\x91\x49\x15\x7f\x23\xf6\x3c\xa7\xe3\x45\xfd\xbe\xad\xa9\xa0\x4b\x96\x92\x95\x4c\x95\x13\x2f\xf0\x24\x08\x29\x8d\xf9\x8c\xab\x7c\x41\x2e\x19\x0b\x41\xdd\xd7\xfa\xa2\x92\xe6\x59\x4b\x71\x9c\xb4\xf2\xa7\x5a\x9a\x67\xe4\x1e\x0b\x6c\x5e\xd2\x0b\xf2\x7d\x36\x67\x27\xc5\xc6\x20\x2d\xcd\x92\xdc\xe0\x81\x3a\x3f\x57\x7a\xc4\x94\x68\x91\x25\x80\x47\x9e\x66\x3d\xfa\x5c\x38\xc7\x22\x70\x67\xf7\xae\xec\x05\x6a\xd9\x1a\x0e\x79\x2f\x1c\x58\x6a\xcb\x7e\x61\x96\x4d\xa8\xb5\x9b\x68\xb5\x5f\x48\xc1\x90\xe4\xa4\x4d\xf8\x79\x61\xb7\x11\x39\x62\xd3\x49\x78\x81\xe7\x1b\x68\x58\xb0\x2a\x45\xad\xe6\x47\x1f\x38\x5d\x8d\x21\xbc\xe7\x02\x4d\x2d\xcf\xc4\x17\x64\xc4\xae\x19\x46\x80\xda\xfd\x69\x19\x5f\x3f\xe6\xe1\x59\x9d\xd3\xa4\x19\x48\x17\x7a\x6b\x46\x66\x80\xb2\xa5\xb2\xc7\x18\x4e\xee\xdd\x11\xd2\x88\x74\x9b\x2a\xb6\x2e\xeb\xd5\x2f\xc8\x35\x15\xc1\x8a\x25\x23\x2b\x03\x1e\x91\x13\xc0\xb8\xcb\x99\x35\x15\x77\x97\x80\x61\x18\x9a\xd5\xa0\x8d\x0e\x7a\xa6\xd1\xe0\xee\x9e\x26\x21\xf2\x7b\xaa\xf8\x9c\x47\x5c\x6d\xfb\x48\x23\x7a\x78\x57\x02\xe9\x92\x30\x5c\xa8\x4e\x29\x5b\x4b\x71\xc3\xba\x84\x0b\x78\xf8\x57\x12\x28\xca\xf2\x83\x16\x6c\x4f\x2e\x27\x5a\xaa\x5b\x72\x41\x04\xd0\x35\x25\xf5\x7d\x02\x2e\x7b\x80\x4c\x12\x75\x45\x37\x43\xeb\xf1\x2c\xbb\x22\x5a\x58\x3b\x00\x0e\xdc\x4a\xd4\x76\x9a\xb0\x16\x90\x38\xb2\x18\x6e\xa0\x2f\x1f\x8d\x75\x3c\xe4\x69\x20\x37\x2c\xc9\x0d\xe2\x93\x29\x3a\x83\x68\xa8\xb5\x6e\x9e\xb2\xb5\x1b\xf7\xd9\x2a\x0c\x79\x46\xbd\xdd\xc6\x2b\x9a\x8e\xfd\xe2\x12\x39\x99\x9c\x5e\x13\x9a\x29\x39\x0a\x99\x56\xd8\xc0\x3b\x26\xe0\x8a\xd0\x70\x6d\xf6\xa7\xe0\x3b\x48\x06\xc9\x9a\xc6\x8f\xd8\x12\x7c\x59\xbf\xfb\x74\x58\x87\x8d\x3d\x74\x09\x68\x15\xcd\x9a\x75\x9a\x96\x79\x41\xc4\x28\xe8\xe8\x5a\x8a\x35\x2a\xdd\x47\x41\x37\x94\x47\x74\xae\xaf\x54\x44\x97\x0e\xa2\x62\x17\xcf\x2f\xac\x09\x1e\xb4\x8d\x14\x33\x00\x82\x32\x13\x73\xaa\xbb\x70\x94\xf6\xdc\xb2\x36\x63\x3f\x5f\xfc\xb1\x4a\xdc\x35\x9e\xbf\xcf\x23\xd6\x4b\x59\xa1\xbc\xe1\x26\x18\xfd\x90\x8b\xa5\xa5\xb5\xad\x38\xc3\xa7\xe3\x52\x38\x45\x4f\x89\xdb\x1c\xb0\xf9\xd6\xa2\x43\x03\x6e\x2d\xd3\xc5\xfa\x3f\xfb\xbe\x56\x2e\xa8\x73\x9b\xac\xbb\xa8\x5d\xda\x25\x55\xc1\xb0\x42\x78\x62\x1b\xa4\x2b\x43\x7b\x7c\x1e\x07\x73\xcb\xd9\x73\x4e\x50\x7e\x7a\x8c\xaa\x94\x92\x0d\x4d\xb8\xcc\x52\x72\x72\x7d\x8a\xb7\x1d\xcf\xd2\x13\x89\x6f\x98\x3a\xbc\x60\x11\x7f\xc0\x71\x1d\x3c\x3a\xdf\x96\x05\x20\x90\xf1\x97\x71\xcc\x0c\xcb\x74\x87\x9a\x2f\xe3\xda\x40\xf9\x77\xf5\x61\x4a\x1a\x49\x93\x8a\x80\x23\x7b\x4f\x63\xed\xe7\x94\xb9\x84\xb5\xf1\x1d\xef\xd3\x8d\xb2\x6c\x83\x0c\xdf\xa8\xeb\xec\x20\xdc\xdf\xd7\x77\x3e\x4b\x55\x2e\x29\x8a\x30\x97\xfd\x34\x1d\x81\x43\x20\x85\x16\x04\x13\x95\xc5\xcf\xa1\x16\x76\xee\x7c\x6f\x89\xbf\x4d\xc8\xdf\x89\x46\x9a\xe8\x2a\x4d\x27\x9f\xd4\x58\xd0\x6f\x5b\x6e\xc1\x09\x66\xa3\x12\xa4\x40\xc5\x1c\x22\x42\x6d\x00\x21\xdc\xcb\x2c\x5e\x26\x34\x34\x09\x09\x9b\xb7\xe3\x77\x28\x9b\x04\xd8\xbd\xf7\x05\x99\x33\x92\xb0\xb5\xdc\xb0\xd0\x04\xcf\xd9\x17\x64\xa2\x57\xb8\x48\x58\xba\x22\x5c\xa4\x8a\x46\xd1\x93\xaa\x68\x2d\xd7\xaf\x7c\x8b\xfb\x6e\x60\x2e\x05\x7f\x88\xa8\x10\x2c\x2a\x8b\x82\x2f\xc8\x34\x83\xa8\x7b\x40\x84\x63\x15\x5e\x65\xf3\x71\x20\xd7\x87\x81\x4c\x98\x4c\x0f\x17\xf8\xf2\xe1\x3c\x92\xf3\xc3\x35\xd5\x03\x1c\x9e\xca\x20\x5b\x5b\xd7\xc3\x21\xc8\xdf\xe6\x31\x23\xe9\x6a\x41\xf7\xa9\xc5\x4f\x33\x83\x2b\x7f\x3e\xad\xd1\xe7\xa9\xce\x6b\xc3\x11\x7d\x52\x39\x28\xe7\x45\x66\x8b\xb5\x6a\x88\x49\x19\xf5\xbd\x2e\x94\x05\x41\xa3\x8a\xae\xe5\x53\x13\x9e\x4a\xcd\x14\x34\x1a\x15\x9b\xf6\xa4\xca\x65\x3e\xec\x4e\xca\xa4\xc0\x3a\x6f\xad\xaa\xe3\xaf\xa0\x33\xf6\x47\x6b\xf3\xd6\x34\x22\x3c\x57\xd2\x9e\x41\x99\x7f\x5a\x74\xff\xfc\x33\x13\xe1\x2f\xbf\xf4\x36\xeb\x03\x5f\xb1\x3a\x34\x64\x11\xaf\xa9\xe0\x0b\x96\x2a\x4b\x8e\x53\xe7\x98\x1b\x17\x10\x4b\x0e\x08\x4d\xc9\x3d\x8b\xe0\x35\x93\xb9\x54\x08\x8e\xa9\xe9\xe5\x0d\x62\x86\x55\x87\xa4\xd0\xcf\x32\x0a\xf5\x9f\x35\x32\xe0\x21\xfd\x04\x4b\x50\x0d\x80\x7e\xe3\x8e\x50\x6f\x98\x6d\x7e\x9b\x72\xc5\xbd\xea\xdc\x8f\xd3\xd6\xfb\xd2\x86\x2f\x62\xc2\xe1\xac\x5f\xe5\xeb\x74\x44\xe3\x38\x7f\x31\x77\x91\x55\xe2\x93\x21\x7e\xf0\xdc\x7d\xb3\xfe\x2e\x31\x3c\xe3\x46\x25\x54\xb1\xe5\xf6\xc8\x38\x4a\xc6\x1f\x4b\x5f\xeb\xcd\xfa\xf9\x67\xa2\xe4\x9f\xe9\x3a\xaa\xfe\x48\xfe\x4e\xb8\x08\x99\x50\xe4\x4b\x7c\x8e\x45\x29\xd3\xff\x22\xb9\x5b\xe9\x5a\x46\x11\x17\xcb\x8f\x8e\x39\x2c\x71\xbf\xca\xe1\x5b\xd3\x07\x47\x8f\x3b\x22\x6f\x9c\xd3\x42\x88\x3d\x19\x76\x81\x55\x57\x62\x54\x5e\xac\x6f\xb9\x15\x8f\xa2\xde\x53\x4f\x54\x5d\x91\x67\xac\x2f\xa4\x4c\x8f\x48\xc4\x45\xf6\x60\x1f\xd0\xa2\xa6\xd1\xe6\xac\x2f\x0c\xb1\x76\xe9\x0c\x67\x31\xd0\x30\xc9\xcf\x3f\x9b\xca\x65\xff\x71\x77\x40\xfe\x63\x43\x8e\xfe\x58\x7e\x9d\x14\xef\xc3\xc3\xff\x71\x47\x7e\xf9\xe5\x88\xcc\xf6\xf4\xbf\x37\xfa\xd7\x3d\x67\x28\x26\x42\x62\x90\x6f\x91\x05\xd8\x97\x11\x4b\x6a\xb5\x58\x5f\x90\x0b\x7a\xc7\x48\x9a\x25\xf6\xce\x80\xa5\x36\x0d\x56\x2c\xcc\x22\x8c\xe9\x83\xba\x3a\x9a\x15\x39\x1e\xc9\x91\xc9\x33\x3c\x22\x97\xf2\xc6\x3c\x5c\xfc\x0a\x71\x17\x09\xd5\x6b\x24\x67\x25\x73\x29\xce\x98\xdc\x99\xe0\xa1\x10\x13\x68\x82\x84\x63\x88\x3f\x0d\xc3\x91\xf1\xcf\x26\xcc\x00\xa1\x15\x60\x77\xe2\x3b\xb6\x3d\x22\x27\xe6\x8d\xe3\x30\x94\x22\xbd\xaa\x94\x7a\x6a\x9e\xdd\x85\xfb\xec\x81\x05\x99\xea\x05\x76\x97\xc7\x10\x9f\x2a\x47\x68\x5e\x96\x6f\x34\x0e\x53\xda\x92\x17\xe4\x82\x0b\xbe\xe6\x7f\x63\x24\x94\xf7\x42\xf1\x35\x23\x61\x06\xc6\x0c\x6a\x2f\x85\x2b\x79\x5a\x37\xdc\x37\x44\xb1\x28\x72\x49\x8f\x92\x24\x94\xd0\x2f\x00\x6a\x87\x16\x13\xd8\x57\x66\x7b\x85\xd3\xbf\x7c\xa2\x43\x19\xa4\x87\x81\x14\x01\x8b\x55\x7a\x68\x4b\x2f\xa5\x87\xa0\x07\xc7\x32\x3c\x7c\x61\x13\xa0\xb8\x14\x23\xb9\x18\xe9\x1f\xf2\x0d\x71\x7e\xfb\x36\xa1\x01\x9b\xb2\x84\xcb\xf0\x86\x05\x52\x84\xe9\x11\x79\x5d\x40\x62\x38\x6a\x51\x12\x11\x2d\x23\xf6\x81\x38\xe1\x32\xe1\x6a\x7b\x12\xd1\x34\x45\xd4\xfd\xfc\x33\x19\x9f\x50\x28\x0a\x5c\xf9\x8d\xfc\x3d\xb7\xca\xcf\xf6\x90\x34\xa2\x89\xd5\x1e\xa4\xd9\x9e\x73\x67\xb4\xba\x77\x62\x39\x41\xf9\xf0\x03\x07\xc9\xb9\x44\x99\x85\x68\xfe\x30\xe7\x82\x26\xa5\xec\x14\xb4\xc0\xea\xdf\x2a\xfc\x62\xc1\x23\x88\xf7\x04\x8e\x91\xab\x3f\xf6\xd4\x21\x79\x37\xe3\x8f\x02\xc1\xdd\x53\xc7\xd7\xe0\x49\xff\xf9\xe7\xf1\xc9\xe5\x64\xa2\xff\x70\x2f\x3c\x64\x50\xac\xa9\xe6\x28\x7f\x99\xed\x1d\xca\x58\x1d\x06\x82\x1f\xce\xb9\x38\x34\xe3\xe5\x42\x24\x7e\x98\xd8\x7c\x48\xe4\xba\x14\x27\x60\x0d\x75\x17\x34\xb6\x02\x81\xfb\x79\x41\x8e\x21\xfd\xe3\xfb\x8f\xef\xcf\xae\x2f\xcf\x6e\xcf\x6e\x3e\xdd\x9c\x5d\xff\x30\x39\x39\xfb\xf4\xdd\xd5\xcd\x2d\xac\xd9\xf3\xdb\xf4\xea\xfa\xd6\x64\xff\xc8\x0d\x4b\x12\x1e\x86\x0c\x6f\x2f\x7b\x3f\xfd\x40\xd6\x65\x2c\xe0\x07\x31\xe1\x54\x6f\xb0\x06\xd5\x91\xd5\xd8\xab\x6f\xd8\x28\xe5\x7a\x65\x07\x26\x36\x95\xa5\xbc\x80\xc0\x2d\x1b\xa7\xa5\xb7\xc9\xdd\x1e\x2d\x9b\x81\x9e\x54\x81\xca\xee\xcf\xc9\xe5\xe4\xd3\xc9\xd5\xe5\x87\x4f\x97\xc7\x17\x67\x55\x30\x20\x06\x48\x53\xdd\x37\xaf\x47\x70\xab\xc7\x7a\x68\x90\xf3\xf7\xaa\x40\x58\xc3\x54\xe5\x8c\x40\x2c\x32\x6c\x59\xd3\x49\xa9\x42\x73\x79\x76\xfb\xe3\xd5\xf5\xf7\x00\xd5\xe4\x5b\x2f\x48\xb5\xbd\xb6\x87\xc6\xec\xf7\xf7\x6c\xeb\xdb\xf2\x62\x2f\x8c\xcc\x58\x72\x86\xb9\x1f\x20\xb8\x81\xe0\x9f\xcc\x6a\x3e\xf9\x1e\x7d\x41\x6e\x18\x86\x2c\x69\x8e\x08\x92\x70\x1e\x14\x0e\x31\x13\x5f\xa7\x28\x35\xe9\x9f\x1a\x16\xec\x9c\xb0\xcb\xab\xd3\xb3\xe6\x5d\x68\x58\x32\xc4\x93\x36\xad\x15\x7e\x9c\x52\xb5\x3a\x02\x12\x34\xd6\xc0\x40\xea\x57\x65\x19\x7a\xdb\x2e\x6e\x3f\x12\x43\xe5\x37\x34\xe1\x5a\xfe\x68\xde\xa2\x8b\xdb\x8f\xbf\xe1\xbe\x6c\x98\x5a\x7d\x5a\xab\xac\xba\x8c\x69\xc2\x36\x4c\x98\xae\x16\x05\x85\x03\x3d\x3f\x8d\x18\x83\x84\x94\x85\xd4\x4f\x55\xbb\xdf\xd8\xc5\xdd\x9c\x9f\x9d\xd5\x5a\x48\xe5\xb7\x60\x41\xa3\x94\x95\x4f\xfe\x46\x46\xd9\x9a\x5d\xf8\x32\xed\x47\x64\xad\xbf\x46\xfc\x1f\xea\x23\xe2\x12\x32\x3f\x8d\x08\x04\x1f\xcd\xb9\x18\x85\x3c\xe9\x1c\x8c\xa9\x00\x06\x13\x4c\x8d\x6b\x59\x7f\xc5\x70\x82\xa9\xea\x70\x29\x0b\x32\x60\x2e\x52\x28\xf6\x50\x6d\xb3\x12\x27\x7c\xc3\x23\xb6\x2c\x07\x3f\x21\x8a\x8f\xc3\x50\x0b\x2f\x1f\x22\xf6\x40\x7e\x80\xa5\x93\xd3\x84\x6f\x20\xa0\x8f\x5a\xb3\xa0\x7e\x22\x66\x89\xe6\x9a\xe4\xa3\xe0\x0f\xe4\x54\xae\x29\x17\xe4\x46\x06\x77\x58\xce\x07\xb2\x73\xc8\x29\xbf\xd3\x5a\x46\x89\xd3\x80\x6f\x06\xa2\xf2\x02\xaa\x4c\xea\xe6\x07\x16\xf1\x07\xa0\xb6\x6e\x16\xe3\xcd\x56\x04\xe4\x78\x3a\xf1\xf0\x9c\x45\xc4\x1e\x36\x32\x1a\x85\x00\x9a\x9f\xed\xe8\x25\xfc\x20\xa3\xc9\x7a\x59\x66\x3c\x8d\x1b\xea\x1f\x7c\xa4\xb7\xa2\x8c\xbf\xda\x46\xd5\xc1\x78\xdc\x06\x04\x7e\x86\x7e\x9d\x89\xb4\xaa\xfc\xe5\xb4\xd6\x11\x98\x80\xec\x56\x1a\xb3\xbc\x70\x5e\x89\x13\xb9\x4c\xe8\x3a\xcd\x29\xb8\xcd\x2a\x11\x21\x49\x64\xa6\xa0\xbe\x15\x8c\xea\xbe\xaf\x57\xe8\xd9\x02\x47\x77\xf5\xe3\x5f\x0b\xfb\x1e\xbe\xff\xef\xcd\xc8\x3f\xa6\xcc\xdd\xb1\xe3\xe9\xc4\x6a\xee\x73\x1a\xdc\x69\xf2\xa5\x15\x3e\xb0\x4a\x37\x10\xb0\xd3\xe3\xdb\xe3\x9b\xdb\xab\xeb\xb3\x4f\xb7\x7f\x9e\x36\xf3\xf3\x62\x09\x75\x46\x6e\x23\x5a\x18\xee\x3a\xa1\xcb\x65\x62\x13\x0e\x73\xfe\x16\x1b\x9f\x6b\x03\x18\x1f\x6f\x34\x82\x4f\x3f\xe9\x47\x1a\x81\x00\x8c\xd4\xa6\xff\x91\x72\x95\x07\x05\x74\x2d\xf7\xc7\xe3\xc9\xed\xa7\x0f\x57\xd7\x9f\xf2\x75\xef\x38\x9b\xe6\xe0\x3b\x33\x6d\xcd\xa9\x7f\x13\x46\x7d\x2a\xc5\xbe\x22\x4c\x80\x97\xf7\xfd\xb7\xd3\x26\x29\xea\xf8\x7c\x72\x72\x65\x05\xa9\xc9\xe5\xb7\x9f\xde\x1f\x9f\x7c\x7f\x76\x79\xda\x88\x1c\x21\x85\x07\x39\xc6\x24\x86\xcd\x9e\xb4\x20\x07\x79\xe9\x0b\x2c\x79\xec\x24\x03\xea\xdf\x1b\x20\x39\xff\x78\x73\x7b\x76\xdd\x71\x18\xbf\x4e\x0f\x50\x67\xac\x41\x80\xba\xd5\x01\xe1\x42\xd3\x4c\xad\x60\x1d\x10\xaa\x4c\xe1\x00\x70\x03\x91\x84\x8d\x6c\xde\x9b\x16\x32\xf3\x7e\x14\xa9\xa2\xaa\x01\xaa\x0f\x67\xe7\x93\x3f\x7d\x9a\x4c\x6f\x8f\xdf\x9f\x9f\xdd\x5c\x9f\x7d\xb8\x3e\xbb\xf9\x6e\x72\x79\x7b\x76\xfd\xc3\xf1\x79\x23\x98\xef\x5e\xd7\xe1\xbb\x94\x4e\x51\x59\x88\x32\xa8\xd5\x90\xb0\x93\x4e\x9a\xe5\x0a\xbf\x30\x6d\xd5\xbd\xc9\x74\xf3\x25\x89\xa5\x8c\x0a\x59\xde\xf1\xb1\x55\x62\xb4\xc6\x10\x0d\x31\x99\xe6\x75\xac\xab\x23\x07\x2b\x99\x6a\x3a\x87\xa1\xf7\x3c\x45\x33\xcc\x18\x6d\xbd\x18\xe4\x6f\xeb\x14\x1a\x3f\x90\xeb\xf3\xc1\x51\x57\x74\x53\x1b\x57\x48\x63\x66\x30\x95\x0e\x4d\xca\xc5\x42\xef\x89\x29\x30\xfe\x9f\xa3\x91\xb1\x17\x8e\x02\x1e\x26\xff\x39\xae\x8e\x51\x39\xbf\x93\xe9\x0f\x5f\x4e\xaf\xae\xce\x3d\x54\xe4\x45\x49\x39\xf9\xc3\xdb\xf1\x9b\x77\x5f\x8f\x5f\x8f\x5f\x1f\xbe\x79\x57\x47\xe6\x29\x4f\x31\x2c\x42\xeb\x43\x91\x5c\xc2\x32\x53\x49\xfe\x13\x82\xe9\x54\xa4\xbf\x4b\xff\x13\xec\x9c\xd5\xf4\xb5\x0a\x44\xa7\x93\x1b\x7d\x64\x3e\x7d\x98\x9c\x9f\x7d\x3a\xbf\xfa\xf6\xdb\xc9\xa5\x5f\x41\x69\x27\x38\x28\xd0\x14\x49\x0f\x12\xb8\x68\xbe\xe1\x58\xd8\x43\x7f\x7d\x7c\x72\x72\x36\xbd\x6d\x80\x09\x4f\xf1\xe9\xd9\x87\xe3\x8f\xe7\xb7\x67\x97\xa7\xd3\xab\xc9\xe5\xed\xed\x95\xe6\x79\xc7\x27\xb7\x93\xab\xcb\x46\xc8\x70\xd8\x66\x44\x4d\xa6\x9b\x77\xfa\x88\x15\xac\xa8\x15\x84\xc9\xf4\x87\x77\x37\x1f\xa7\x9a\xa1\xee\x22\x3a\x3b\x16\x12\xc7\xe7\x00\xa9\x5d\xe8\x59\x4e\x35\xaa\x60\x86\xf3\xab\x6f\x35\xca\xa7\xc7\xb7\xdf\x69\xb4\xc0\x79\xc7\xd8\x20\xdc\x58\xc0\xa7\xdd\x59\x25\x61\xa7\xdb\x20\x76\xc6\xdb\x91\x24\xf6\x07\xf8\xe6\xec\x87\xb3\xeb\xc9\xed\x9f\x6f\xfe\x7c\x83\x30\x9b\x4b\x05\x37\x2f\x0f\xb0\x14\x0b\xd9\xba\x92\x74\x9b\x46\x72\xd9\xb1\x16\x67\xaa\x1d\x68\x4c\x71\x12\x9d\xf9\x66\x7b\xf7\x34\x11\x5c\x2c\xfb\x2c\xfd\xc6\xbb\xde\x93\xeb\xb3\xb3\x4b\x3d\xd6\x8f\x38\x52\x7d\xc5\x7d\x97\x03\x23\x35\xae\xe8\x47\x3f\xa0\xe5\xe1\xbe\x3b\x3b\x3e\xbf\xfd\xee\xec\x52\x5f\xdb\x66\xf6\xe7\xbf\xaa\x6d\x0b\xb6\xcc\xc3\x30\x56\x50\x6a\x32\x85\x0e\x30\xfd\x0f\x27\x0a\x6d\x41\xc4\x02\x79\x52\x1f\x6e\xd4\xc5\xa9\xf5\xe0\x65\x50\x1f\xab\xcd\xf9\x1c\xb0\xf6\x7b\xcc\xb1\xaa\xc9\x2a\x41\x9c\x1d\x91\xb7\x5f\xbd\x2e\xd5\x68\x8b\xf8\x86\x09\x96\xa6\xd3\x44\xce\xab\x8d\x40\xd8\x43\x2d\x7f\xa9\xb0\xed\x55\xbf\x1f\x11\xb0\xf0\x35\xa8\x0e\xf8\xc4\x08\x6e\xc8\x48\xcf\x59\x59\x67\xd9\x0a\xfb\xe6\x75\xf9\x67\x88\x7f\xa1\xd1\x29\x8b\xe8\xb6\xf1\xa1\x05\xe5\x51\x96\xb0\xdb\x55\xc2\xd2\x95\x8c\xc2\x23\xf2\xae\x8c\x2e\x1a\xf2\xa6\x95\xae\x94\x8a\xbf\x65\xf5\x96\xa5\x31\x2a\x82\xf9\xbb\xb5\xdf\x65\xa2\x8e\xc8\x1f\x5e\xff\xe1\x0f\xd5\x5f\x34\x4f\x38\x22\x91\x0c\x68\x54\x57\x32\x5b\x97\xdb\xdb\x28\x11\xf1\xf9\xe1\x5a\x86\x99\xa7\x28\x05\x9e\xcd\x88\xcf\x47\x0d\x0f\xe8\x15\x5d\x89\x68\xeb\x2b\x3e\x5b\x9e\x25\xc9\xc4\xe1\x03\xde\x80\x71\x24\x83\x3b\xff\x54\xe6\x89\x91\xef\x89\x62\x2e\xe4\x23\x2d\x93\x6d\x68\x02\x13\x5a\xcf\xad\x6f\xaa\x0d\x4d\x46\x49\x26\x46\xfe\x67\x76\x9c\x4c\xe3\xb0\x6b\x32\x8d\xc6\x47\x4d\x86\x43\xa0\x22\x9e\x6e\x45\x2d\xb5\xdc\xb7\x72\x7d\x71\xe8\xb2\x96\x42\xf9\x02\x7b\x98\x59\xdd\xf6\x80\xdc\x33\x10\x58\x8d\x0e\x0c\xec\x07\x72\xa0\x32\x93\x87\xa9\x9f\xd4\x8c\x14\x9d\x0d\x5a\xec\x3e\x4c\xb7\xe9\xe1\x22\x3d\x9c\xc7\x0b\x2d\x3f\xdd\x33\xf3\x34\x96\x5e\xa8\x4e\x07\xe5\x60\x14\x09\x79\x02\x1e\xbd\x6a\xf7\x10\xbb\xb8\x74\x9b\x2e\x6a\x87\xcb\x5d\x97\x99\xb4\xae\xf6\xbf\xe7\x38\x36\xd6\xf3\x58\x33\x2a\x30\xb1\x10\xca\x15\xe4\xc0\x75\x2f\x85\x2b\x14\x6b\xe3\x44\xc6\x74\xa9\xc5\x6b\x13\x38\x52\xb1\x6d\xd8\x79\x4d\xf1\x30\x90\xd9\x78\x4a\xee\x84\xbc\x17\x2e\xea\xa8\x2a\x4d\x16\xe9\x3d\xde\x62\x3d\xba\x32\xc8\x01\x15\x60\x7e\xc0\xe2\x63\xb5\x99\x10\x09\x06\x28\xf0\xa3\x97\x5e\xf7\xa3\x33\x10\x7c\x14\xc9\x65\xdd\x82\x58\x3f\x2c\x91\x5c\x9a\x93\x7b\x58\xf1\xce\x90\x96\xfb\x5d\xf3\x20\x25\x99\x48\xf3\xf0\x9b\x2c\xb5\x89\xc2\xe8\xc3\x87\x86\x1a\xa3\xf5\x12\xc3\x42\x98\x08\xdd\x81\x80\x59\x46\x9a\xc2\x41\x7a\x71\xbd\xfb\xc6\xc8\xb1\xb8\x14\x21\x35\x05\x8c\x8e\x17\x49\xeb\x8f\x26\xde\xab\x66\xd3\x2b\x9c\x49\xc4\x78\x93\x34\x9f\x31\xe3\x85\x50\xed\x66\x6f\x34\xe2\xf1\x68\x4d\xd3\xbf\xda\x3f\x2b\xf0\xcf\xf6\xc8\x4f\x4f\xc3\x75\xeb\x86\x1f\xbb\xcc\xe9\xd5\xe9\xb3\x39\x00\x6c\xb4\xc0\x58\xd4\xec\x0a\xd5\xe9\x6f\xa6\xc7\x27\xcf\x0f\x03\x84\x7a\x34\x48\x44\xe7\xc7\x97\x97\x67\xe7\xa7\x9f\x26\x1f\x76\x84\xe4\xa9\x3d\x40\xfa\xa1\x4f\x7c\xd1\x03\xd2\xe9\xa7\x8b\xe3\x9b\xff\xf9\x1b\xc2\xaa\xcf\x6e\xc6\x12\x5a\x96\x9a\x5a\xcc\xd9\xfd\x59\x74\x17\x83\x6e\x61\x62\xa3\x72\xe0\xda\x28\x58\x54\x56\xe0\x42\xc1\x54\x50\x0a\xaa\xcc\x69\x3e\xae\xa2\x6c\xf6\xb6\xf1\xfb\xe8\x97\xac\xd3\x8c\x06\xd1\x45\x53\x6d\x98\xae\x72\x61\x5b\x04\xa2\x51\xa7\xd8\xd0\x3e\x68\x93\x48\x32\xea\x94\x10\xba\xc7\xf5\x49\x1f\xa3\x8e\x0d\x6b\x1f\xb5\xfd\x28\x60\x40\xd3\x07\x1e\xb1\xab\xe4\xa4\x14\x7f\xdb\xc2\xd1\xdb\x27\xf4\xf2\x77\x9c\xe7\xd4\xca\x0e\xf5\xc9\x8a\x03\x60\x0e\x8b\xd7\x0f\xe4\x3d\x74\xf9\xc5\x3b\xf2\x1d\x73\xff\x65\x2b\x12\x92\xac\x37\xfb\xe4\xd2\xe7\x7a\x6a\x70\xe0\xb5\x63\xc0\xeb\x16\x1c\xb5\xfb\xf0\xda\x47\x6c\xf0\x0d\x16\xab\x30\xa9\x50\x27\x97\x13\xb0\x7e\x35\xac\xc4\x23\x48\xf4\x38\x92\x0d\x62\x45\x31\xb9\x31\x62\x36\xfb\x08\x3d\x97\xcf\x2f\x03\x37\x40\xd3\x79\x7a\x48\xfd\x76\x7a\xc4\xe6\xfa\xa6\xd7\x1d\x9f\xbe\x53\xd7\xea\x20\xdc\x15\xe4\x9f\x7f\x1e\x69\x79\xd6\x3a\x2c\xa7\x10\xbe\x79\xca\xcb\x11\x72\xc5\x7a\x0a\xd7\x66\xfe\x24\x46\xc6\x8d\x08\x8b\x52\xd6\xf0\xd6\x61\x96\x02\x2d\xd1\xfa\xba\x13\x2c\x05\xff\x8c\x98\x1a\x99\xa0\xd1\x43\x24\xc4\x87\xf0\x58\x8e\xb0\xff\x37\x0b\x53\x33\x83\x89\xc3\x83\xc8\xd6\xae\x00\x32\x37\x40\xb4\x08\xfa\xad\x86\xd5\x3e\x26\x62\x74\xd7\x08\xdb\x6a\x9e\x6d\x1e\x6d\x7b\xc3\x98\x2f\x43\xa0\x94\xdf\x70\x58\xcf\xd2\xf5\x86\xbe\x9a\x00\x59\xa7\x44\xe3\x2e\x39\xca\x8f\x09\x8f\x6d\xca\x43\xb6\x11\xa0\xe8\x66\x28\x15\xf5\xa0\xa6\xaf\x26\x74\x65\xa0\x50\xa3\x2a\x62\x60\x90\xde\x30\xbc\x04\xb6\xee\x44\xc2\xe2\x88\x07\x34\x85\x20\xd5\x5d\x83\x6f\x1b\x17\x99\x16\x81\xb8\xc5\xa5\xb8\x66\x45\xa6\x47\x57\x0c\x6c\x27\x1a\x09\x69\x43\x25\xe9\x08\xa3\x6d\x19\xf6\xb3\x02\x6b\xed\x25\xbf\x2d\x22\x56\x49\x53\x1c\xab\x13\x89\xec\x3e\x9e\x87\x21\xbf\x6b\xb8\xef\x4d\xd1\xb0\x7e\x33\xa7\xf3\xb4\x75\x8d\x36\x56\x74\x91\x04\x2b\x68\x45\x4c\x41\xfb\xa7\x4c\x34\xc5\xd0\x96\x63\x6f\x8b\x94\x82\x21\x02\xb7\xf4\xa2\x4b\x4b\xf1\x99\xcf\x89\xc6\x6d\xbd\x0b\xb5\xf8\xdc\xc7\x06\xad\xea\x59\x2a\xb5\x31\x7a\x05\xb1\xe6\x2e\x41\x5f\x1c\xab\x37\xe4\x65\xd4\xef\x96\x93\xb2\x81\xa0\x78\xc0\x1f\x76\x52\x0b\xc6\x38\x59\x49\xa8\x1e\x0f\xbe\x66\xf7\xbc\x2b\xa9\x8f\x78\x83\x39\xcb\xb8\x1a\x3e\x9d\x5c\x5d\xde\x5e\x5f\x9d\x9f\x9f\x5d\x37\xf9\x64\xea\x06\xee\x9d\x82\x38\x9c\x10\x0e\xe7\x81\xa7\x34\xc6\x6b\x99\x00\x0c\xf2\x2b\x16\xdc\x8d\xca\xc5\x3d\x8a\xc7\x46\x15\x43\xd4\x6f\x6d\x88\x7f\xa6\x55\x26\x9d\xab\x7c\x7e\xb1\x67\x67\xd9\xa0\x2a\x08\x95\xb3\x87\x8a\x68\xbd\xa9\x0c\xc9\x29\x4f\x93\x0c\xa2\x95\xc8\xfb\x2c\x5c\x32\x0c\xc2\x29\xae\x4d\x11\xb7\xf7\xfd\xd7\x69\x1e\x1a\x72\x9c\x29\x99\x06\xd4\xfc\xce\x36\x3c\x50\x1a\x13\xee\x22\x51\x72\x3f\xdc\xbc\x99\x33\x45\xf3\x05\x4f\x65\x58\xcc\x88\x13\xfe\xf6\x12\x91\x27\xff\xe6\x89\x44\x9b\x9e\x92\x28\x53\x41\x38\x4a\xb5\xbc\xa3\xac\x14\xda\xf3\x4d\xb5\x8d\x57\xb4\xef\x2b\x36\xc2\xcb\x04\x75\xe3\x5b\x7b\x07\xff\x3f\x42\xc8\x1e\xea\xbf\x9b\x2f\xc6\x6f\xdf\x8c\xdf\xec\x1d\x91\x3d\x3d\x14\x98\x57\xc9\xad\x19\xa1\x88\x98\xc2\xef\xcd\xc3\xbd\x61\x35\x25\x02\x4a\x39\x6d\x27\x56\x29\x27\x3c\xcd\x0b\x6e\xe7\x80\x62\x7b\xc0\x05\x28\x53\x2c\x34\xd3\xba\x81\x29\x45\x3e\xa7\x1d\xa7\x7e\xd3\x9a\x73\x07\x73\x65\xbf\xe9\x48\xe5\xaf\xbd\xc0\x3a\x24\x1a\x48\xe3\xb3\x47\xbb\x3d\xa0\xff\x93\xe1\xbf\x9f\x70\x70\x37\x86\x00\x65\x6d\x28\x24\xba\xa0\x01\xc3\x15\x5a\xeb\x15\xdc\x34\x70\x27\x40\xed\xfb\xc0\x96\xc0\x87\xaf\x8a\x70\x58\x5b\x8f\x02\x3c\x10\x11\x5b\x28\x32\x8f\xa8\xb8\x3b\xc8\x5b\xdd\x38\xe3\xf3\xd4\x46\xfa\x14\x16\x79\xcd\x70\xf6\x53\x1c\xc1\xb2\x61\x08\xf1\x83\x51\x1d\x5b\x27\xe6\x59\xa1\x4d\x7d\x62\x87\xb4\x29\x57\x2f\xc8\x8f\xa6\xf4\xb8\x4c\xa0\x54\xb8\x92\x8e\xed\xb1\x68\x3e\x24\x89\xd3\x49\x15\x1b\x2a\x60\x1c\x10\x0e\x62\x45\x31\x13\x6c\x3a\xc6\xeb\x67\x87\x29\x3b\xe5\xdd\x98\x44\xfd\xde\xc5\xed\x47\x28\x1e\x96\x3a\xea\xb1\xfe\xce\x0a\xbe\x7c\x41\x04\xc3\xaf\x5e\x1b\x61\xc2\xc6\x8c\x9b\xa5\x5d\xdc\x7e\xc4\xf5\x18\x49\xcb\x23\x32\xbb\x6f\xbc\xf9\xf2\xab\xd7\x95\xa7\x9b\x53\x1e\x6c\x89\x80\xa6\xcc\x07\x78\x0d\xa4\x2b\xd4\x62\x5f\xd8\x42\xd2\xe0\x46\xe3\xb6\x5e\x58\xd1\xf5\x25\x53\x72\x4d\x41\x36\x8a\xb6\x24\x96\xa6\x14\x1f\x6e\x5a\x2d\x45\xe1\x88\xfc\x7d\x84\x64\xe9\x67\x4b\x9d\x66\x7b\x60\xf3\xdf\x33\xb1\x76\xa3\x58\x86\x23\xf3\x92\xd3\xc9\x62\xb6\x17\x08\x7b\x5f\xf0\xd9\xd7\xe3\x2f\xc6\x6f\x4a\x4f\x18\x33\x80\xfe\xf9\x2f\x05\x3f\xfc\xd9\x65\x8d\xb3\x3d\x88\x06\x84\x01\x8c\x61\xb2\xdc\x2d\x63\xb6\x17\xc9\xe5\xa7\x88\x6d\x58\x84\x4f\xfd\x78\x7c\x7d\x39\xb9\xfc\xd6\xfb\xd8\x82\x47\xec\x53\x4c\xd5\x0a\x1f\xf5\xd8\x97\xf4\xff\xc6\x91\x5c\xd6\x5e\xcf\x43\x47\x3f\x15\x00\xb9\x61\xaf\x95\xc7\xf5\xd6\x14\x68\xfa\xf4\xc9\x97\x98\xf1\xe9\x53\xed\xb5\xb5\xca\xf4\x1b\x9f\x3e\x99\xb4\x88\x4f\x9f\x2a\x0f\xf0\x98\xae\xf5\x13\x3f\x57\x65\x0a\x17\x51\xfa\xa2\x8f\xc0\xd3\xef\x69\x2d\x32\xdb\x43\x2f\x14\x3e\x9a\xa5\x6c\x2a\xc3\x13\x1e\x26\xe5\x28\x90\x5f\x2a\xf3\x22\xd7\xed\x9c\xf9\xee\xeb\xb4\x7d\x1c\x17\x65\xde\xb1\x4c\x45\x3a\x4d\x40\x1d\xd4\x61\xf2\xce\x27\x1b\x65\xa5\x31\x57\x9a\xa5\xf8\xc3\x9d\xb0\xf1\x24\xc5\x32\x51\x6b\x1a\xd7\xd0\x9f\x0a\x0a\x78\xd1\xb4\xa2\xf2\x53\x40\x63\x0a\x99\xe7\xdc\x82\x0e\xa3\x5c\xd0\x38\xe6\x62\x99\xda\xb7\x76\x85\x64\x4e\x45\x78\xcf\x43\x7d\x22\xbb\x27\x74\x1e\xae\xcf\x66\xff\x69\xdc\x8a\x86\xa6\xd8\x9a\x15\x5e\x9a\x32\x26\xe0\xc9\x81\x16\x50\xc6\x47\x6d\x1d\xaf\xb9\xa6\x04\x74\x41\x30\x05\x5c\x6d\xfc\xbf\x53\xcd\xfd\xfe\x5e\xa3\x08\x97\xf6\xfe\x5b\x5a\x8f\xf2\xdc\xc9\xe4\xf4\x5a\x13\x46\xe7\xce\xbf\x37\x7e\xdb\xf2\xee\x63\x43\x8a\xfc\x75\x03\xb5\x79\x76\xac\x7f\x73\x53\x74\x7f\xc9\x97\xd8\x25\x21\xdc\x85\xe1\x28\x48\x42\x2b\xfc\x3c\x5f\x8d\xf8\x5a\xd5\x91\x67\xa8\x14\xff\xfe\xdb\x69\xa9\x3c\x24\xfe\x56\xd4\x8b\xaf\xfe\x5e\xaf\x1a\xdf\x50\x1b\xa5\xa8\x1d\x5f\x7d\x60\x56\x54\x90\x37\x5b\x3a\x7b\x9e\xf2\xf1\x55\xd8\xcb\xb5\xa7\xcb\x9c\x10\x9b\xac\x6c\xf5\x3b\x20\x70\x94\x8d\x2b\x43\xf9\xf8\xa1\x7c\xbc\xbb\x05\x43\xf9\xf8\x5f\xad\x7c\x7c\xf5\x12\xd7\x8b\xc8\x97\x7b\x9c\xe8\x0b\x5c\x66\x48\x15\xab\x48\x73\xb5\x78\x9a\x5e\x42\x57\x41\x4f\x98\x43\xe5\x42\xdf\xe0\x83\xb6\x2b\x85\xd5\x54\x8e\x6f\x4c\x5f\xc2\x5c\x77\xa2\x46\x9e\xfe\xcb\x29\x3e\xe2\x8d\xa0\x78\xf7\xe5\x57\x6f\xde\xfe\xb4\x5f\xff\x09\xeb\x77\x41\x47\xff\x2f\xde\xd6\x7f\x6e\x6d\xf7\x6f\x77\xde\xdf\x0d\xb8\xb4\x9e\x93\xe2\x51\xbc\x1f\xb6\x1c\x3e\xe2\xd2\x9c\x20\x8b\x67\x8a\xd5\x8c\xea\xb1\x5b\x80\xc2\x64\xce\x55\x42\x93\xad\x69\x7d\x06\x49\x52\x14\x43\xb7\x31\x41\x6f\xa7\xfa\xf9\x5e\x30\xb7\xc5\xf6\xa7\x8a\x8a\x90\x26\xa1\xd6\xf3\x22\x9a\x2c\x59\x15\x5c\xdf\xa0\x04\x96\xa0\x6f\x9a\x27\x7f\x0a\x3f\x9d\x9d\x94\x81\x3d\xf9\x7f\xf2\x34\x4e\x36\x8d\x64\x8b\xc4\x51\x0b\x5e\x63\x2f\xd7\xee\x1e\xae\x68\x62\xed\x05\xc2\x0f\x40\xe7\xa0\x28\xde\x1c\x92\xf0\xf1\x5c\x91\xd9\x1e\xa5\x47\x42\xcc\xf6\xa0\x5b\x1e\xfe\x71\xb4\x5e\x7b\xbb\x6e\xda\xcf\x07\x99\x14\x58\x2f\x56\x93\xa5\xcc\x19\x0e\xc7\x3f\x30\x75\xa6\xf5\xf7\xb3\x3d\x8d\xf4\xe6\x61\x67\x7b\xf0\x22\x4d\x18\x79\xf3\x8e\xcc\xb9\x32\x17\x69\x0c\x13\x56\xb7\xd6\x99\x0d\xe0\x6d\x1e\xd7\x07\xc9\x41\x3e\x9b\x08\xb5\x7a\xb4\x36\x13\x7f\xf1\xb6\x34\xf1\x8f\xfa\x15\x6f\xf7\x29\x0b\x32\x2c\x0b\x5b\xb6\x1d\xdf\x10\x24\x09\x4d\x83\xc7\x2c\x19\x1d\xdf\xd8\xf4\x34\x5e\xcb\xee\x2e\x3e\x31\xb4\x85\x17\x47\xe4\x7f\xbd\x9c\xcd\xc2\xff\xff\xab\x23\xfc\xcf\x7f\xfc\xbd\xfc\xb7\xfd\xfa\xb1\x27\xe8\xd1\x0d\x78\x23\x28\xed\x3f\x95\x89\x8f\x98\x95\xce\xdd\x79\xfe\xa4\x25\x94\xd0\x7a\x10\xf7\x42\xd3\x96\x38\x91\x4a\x06\x32\xb2\xd2\x0b\x0e\xed\xc5\xcc\xa9\xed\xc6\xa6\x24\x79\xf3\xfb\x5a\x20\x3a\xd8\x45\xf9\x3a\x5b\x1f\x91\x77\x5f\x7d\xf5\xc5\x57\x9e\xdf\xb9\xc0\xdf\xdf\xec\x48\x48\x23\xb9\xbc\x61\x1b\x96\x70\xb5\xbd\x09\x12\xc6\xaa\xb2\x5e\x6d\xd9\xfb\xe7\xd5\x37\xec\xf2\x23\xb9\x24\xa9\xf9\x85\xd0\xb9\xdc\x58\xd7\x4d\x24\x97\xde\x3e\x6a\xd0\x2e\x9a\x89\xbc\xa6\x74\xaa\x42\x99\x29\x87\x9d\x90\xc9\xe5\x87\x2b\x1f\xeb\x68\xdb\x7e\xcd\x92\x6e\xe5\xa5\x0c\xd9\x05\x4b\x57\x67\x90\xaa\xe9\xeb\xe0\x5c\x5e\xd5\xa5\xef\x2d\x92\x32\x55\x34\xfa\x5b\x64\xc6\x23\x8a\xd9\x44\xf5\xe4\x08\xfd\xd1\x1b\xbf\x86\x42\x8d\xa9\x49\x13\x0d\xdd\x05\x69\x15\xb4\x79\x41\x73\x29\x23\x46\x6b\x32\x71\x9c\xb0\x05\x7f\x38\x76\x8b\x38\x77\x72\xbd\xa9\xe7\x9d\x82\xb3\x40\xe0\x0f\x3c\x51\xae\x0d\xed\x5b\x51\x9b\xb8\x41\x76\x68\xe7\x56\x07\xa8\xb0\x2e\xa7\x65\x30\x1c\x0e\xe5\x27\x00\x36\x3b\xb9\xe8\x8c\xe8\x49\x85\xb6\xc8\xeb\x60\x76\x01\x0f\x9b\xdb\xc8\x97\x59\xf4\xe4\xf4\x1a\xa6\xc6\x63\x5d\x8c\xec\xb6\x42\xb6\xeb\x68\xee\x64\xde\xcd\xfd\xda\xa5\x1b\x1f\x64\x8e\x8c\x63\x62\xda\xad\x94\xc3\x38\x1c\xde\x82\xbd\x80\xe8\xd2\x4c\xf8\x6d\xb4\x3c\xea\x72\xd0\xea\x7a\xb6\xa7\xc5\xd2\x74\xec\xcc\x82\x5c\xb5\x97\x38\x42\x50\xab\xeb\xe4\xca\x2d\xcc\xb7\x9d\x4d\xb5\x73\xe5\x76\xe6\xdb\x3c\x72\x17\x57\xee\x64\xbe\x6d\x40\x77\x70\xe5\x4e\xde\xdb\x6b\xec\xfe\x4c\xb9\xf9\x0a\xe3\xa7\x4f\xcf\xfd\x16\x9e\x4a\x3e\x87\x21\x1b\x8f\x8e\xb1\xa5\x4c\xa6\x9d\x94\xef\xa6\xfa\x02\x20\x03\x2a\x33\xe9\xfb\x8b\xb5\xa3\x51\x75\xc5\x7b\x6c\x66\xf0\xd2\x3e\xe3\x64\xb5\xa3\x98\x5c\x09\xd0\x53\x17\x05\xf5\xc9\xbb\xaa\x62\xe3\x4c\x4b\x02\xb0\x3d\xa6\x6f\x5c\x04\x22\x2f\x10\x09\xe1\x30\x62\x5b\x9a\xce\xa4\x6c\xab\x15\x5b\x3f\x9e\xe8\x56\x71\xf1\x5e\xcf\xeb\x68\xf6\x4e\x84\x99\x69\xd7\x9c\x3f\xea\xdf\xe7\x02\x85\xcf\x40\x6c\x9f\x4d\xa8\x33\x3b\x7c\xf6\x80\x66\xa0\xfe\x87\xc8\x79\xc3\x7f\x8a\x64\xe2\xe4\x68\xfb\x60\x36\x03\x11\x3b\x92\xde\xdb\xb1\x5b\x62\xa4\xfa\x40\x5e\x39\x00\xc2\x00\xab\xe5\x03\xf0\x53\x30\x19\xd3\x17\x76\x8b\x8d\xb4\xf0\xc8\x98\xae\xe9\xd8\x9b\x15\x01\xfd\xec\x13\x54\x40\xd7\x79\x84\xfc\xbb\xeb\xac\xff\x9f\xfb\x10\x9d\x4b\x1a\xbe\xa7\x11\x15\xc1\x2e\xd4\xa8\xf2\xd6\x67\x1e\x26\x77\xb4\xc6\x03\x65\x7a\x11\xb8\xcf\x8e\x4d\xcf\x60\xdf\xd8\xd5\x73\xf7\x1b\x1c\xb2\x32\x92\x1e\x79\xd0\x2a\xb8\xf9\xa7\x3c\x6c\xff\x5c\x1d\x12\x9f\xb9\x97\xb0\x2d\x41\xff\x3c\xee\xa1\x29\xb3\x3a\x71\xc9\x2b\xa4\xbf\xf6\x3a\x83\x9c\x6a\xf8\x25\x1f\x50\x6c\xc6\x79\x2e\xd7\xcf\xe0\xa3\x19\x7c\x34\xee\x16\x0c\x3e\x9a\x5f\xd3\x47\xa3\xc9\x41\xbf\xfe\xbe\xe6\xe1\x47\x74\xf3\xed\xeb\x9f\xb9\x5d\xb1\x42\x29\xb4\x7e\x21\x4d\x7e\x3c\xfc\xed\x73\x5c\x2c\x77\x8c\xc5\x57\x09\x5f\x72\x41\xa3\x4b\xf6\xa0\xbe\x93\xd5\x74\xbd\x1a\x68\x57\xb1\x8d\xbb\xd2\x2f\x03\x60\xd2\x8c\x40\x04\x7b\x50\x2b\x19\x63\x36\x32\x76\x31\x45\x97\x49\x97\x65\x10\x70\x4a\x34\x52\xf5\x19\x57\x70\x49\x6c\x6c\x9a\x6b\x41\x82\x1d\x81\x48\x51\x16\xea\x57\x7c\xe3\xea\x51\xd2\xdc\x86\x97\xa1\x8a\xa6\xf5\x6a\xf6\xa0\x88\x86\x4e\xc3\xfd\x8d\xd6\xbd\x45\xaa\x18\x0d\x35\x7a\x9d\x5f\x53\x16\x2d\xbe\x99\xed\xbd\x34\x1e\xb1\x57\xbe\x29\x50\x67\x2b\x82\xf7\xe7\x09\x15\xc1\xca\xee\xd3\xa5\x9e\x5a\x0a\x32\xdb\x9b\xf3\x24\x1c\x07\x8b\xa5\xd7\x1f\xd1\x6a\x0e\x5c\xd3\x87\x6b\x06\xc5\xc7\x6e\xb9\xd7\x4f\x53\x3e\x2e\x1c\xfb\x43\x60\xe4\xb0\x3e\xa4\xa9\x5c\xa8\x7b\x8d\xe1\x04\x47\x19\x13\xf2\xa3\xde\x8e\x42\x9d\xf5\x8a\x32\x9a\x98\xe4\xb1\x71\x59\xc2\x42\x5b\x19\x71\x99\xd0\x80\x2d\xb2\xc8\x8e\x47\x14\x5f\x33\x30\xe4\xe2\xb8\x9a\x7a\x74\x8d\xcd\xc8\xfb\xc9\xf5\x69\xee\x6a\x94\x0b\xf2\xe6\xed\xeb\xd4\x46\xa2\x36\x62\xa8\xd9\x02\xdc\xe7\x16\xe5\x55\x06\xf3\xba\x7a\x96\x00\x1b\x75\xde\x74\x5c\xc0\xa4\x2b\xa8\x2b\xe1\xdd\xf1\x94\x28\x9a\x2c\x99\x42\xa7\x28\x20\x0a\xee\x23\xd6\xa9\x40\xb4\x01\x12\x98\x32\xed\x08\x65\x29\x3f\xa9\x61\x50\xc7\xbc\x60\xe2\x4b\x79\x8a\x8e\x05\x06\x3d\xfe\xf4\xcb\x69\x91\xa6\x63\x4f\x5e\xd1\x11\x62\x57\x9c\x79\xf2\xa5\xbc\xb8\xcb\x5b\x04\x58\x33\x2c\xce\x0f\x75\x37\x8c\x14\x00\xe9\x6b\x39\x26\xb8\x58\x9a\xc3\xd0\x76\xb2\x00\x3d\xf9\x25\x41\x3a\x61\xdd\x7a\x6c\x1d\xab\x6a\xfd\x92\xae\x25\xc5\x34\x4d\xef\x65\xd2\x69\xfb\xbf\x32\x15\x42\x11\xb7\xe6\xa5\x7c\x6d\x06\xfe\x94\x2c\x99\x60\x09\x75\x36\xb9\xc1\xfc\xdf\x46\xfe\x49\xb7\xc6\x81\xb1\xe7\x2d\x15\x09\xbc\x9b\xa1\x65\x8a\x3b\xb6\x05\xd1\xcc\x0c\x61\xcf\x03\x1c\xe2\x58\x86\xfb\x69\x11\x5c\xdd\x60\x09\xec\x54\x86\xb0\xd2\x41\xb3\xa1\xb0\x76\xc5\x0c\x4c\x48\x9b\x01\x2a\x25\xcd\xd1\x05\xc9\x64\x4c\xc8\x05\x6e\x71\xf3\xa0\x84\x50\x2d\x28\xf1\xd0\x0e\x71\xc7\x7c\x47\xc1\x7e\xfa\x18\x2b\x5b\x1d\xdc\x35\xd7\x90\x53\xdc\x3d\x61\x0b\x96\x30\xa1\xbc\x52\x4f\x5b\x8f\x03\xb9\xd1\x3a\x2e\xbb\x3f\x34\xed\x15\x47\x5a\x8f\x1e\xa1\x30\x92\x1e\xc2\xc6\x1c\xbe\xe8\x30\xcd\x13\x72\x7b\x75\x7a\x75\x44\x8e\xc3\x90\x48\xb0\xea\x67\x29\x10\x5e\xb8\x2b\xe9\xd8\xd1\x06\x0e\x40\x18\x3d\x20\x19\x0f\xff\x1f\x8f\xbb\x69\x17\x5c\xe5\x05\x74\x7b\xe2\xeb\x06\xc8\xd6\x36\x77\x9b\x69\xb4\xdd\xe0\xc6\xc9\x04\x02\x13\xf4\xa1\x58\x77\xef\xba\xf1\x40\x74\x41\xdf\xc0\x25\xf1\x63\x1b\xb0\x35\x00\x0f\x69\x85\xfe\x9f\xfa\xa8\xee\xfe\x5f\x35\xc5\x98\x4c\xfb\x30\x20\xa7\x72\xa9\x23\xc7\x91\x85\x34\xc6\xd8\xf9\x16\x14\x2d\x4b\x9f\x62\x99\x78\x19\x90\x89\xca\x51\x12\x5f\xd7\x27\x0b\x78\x0f\xf8\xa3\x45\x1e\xcb\x03\x61\x1a\x07\xd6\x11\x53\xb8\xac\x66\x7b\x7f\xc1\xac\x87\xc9\x74\xf3\x0e\x13\x1f\x7e\x3a\x82\xb9\xbc\xa1\x07\xe0\xb7\xc9\x5f\xf8\x12\x5f\x38\xc2\x2f\xe0\x2d\xf8\x02\x1d\x24\x50\x3a\x15\x60\x29\x2d\xc2\x01\xca\xf2\x45\xaf\x14\x08\xb1\x38\x86\x87\x00\xb2\x44\x48\xf2\xe8\xa4\x39\x8b\xa4\xa6\xcb\x20\x22\x9a\x30\x56\xa0\x75\x50\xb2\xbc\xf0\xce\xfb\x89\x2c\x90\xc7\x6a\xf4\x95\x61\xb4\xf7\xcc\x88\x86\x54\x21\xb8\x06\xb3\xbb\xf2\x1f\xad\x34\x3c\x96\xa5\x26\x6c\x2d\x55\xce\x59\x4b\x3b\x8b\x52\x55\x13\x07\x72\x19\xe9\x14\x4e\x62\x19\x6d\x48\x2b\x2a\x8c\x15\x23\x5f\xca\x95\xc5\xcb\x0b\xd1\x92\xd1\x9c\xa9\x7b\x66\x12\x5d\x20\x56\xde\x76\xa6\x0d\x0b\xc1\xdb\x85\x1b\x2a\x9c\xe5\xf2\xa2\x7f\x87\x4d\x71\x5d\x33\x03\x5f\x90\xb9\x54\x2b\xad\xab\xa6\x28\x43\x68\x59\xe0\xfd\xb7\x53\x4d\x54\xc6\xfa\xd1\x63\x73\x5f\xda\x05\x4a\x0d\x12\x8e\xfd\xae\xff\xd8\xef\x6a\x63\x8f\x89\xbe\xa6\xbe\x09\xcc\x32\x8b\x90\xb8\x40\x42\x40\x98\x55\xb6\x1d\x34\xec\xa7\xa5\x89\xec\x46\x78\xe1\x36\x9b\x8f\x0d\x4b\xdd\x26\xf0\x70\x16\x8b\xeb\xb2\xe3\x49\x44\x59\xc4\x2c\xaf\xf3\x28\x9a\xd5\x17\x81\x0f\x1a\x9b\x2b\x79\x5f\xcb\x07\x43\xf3\x84\xa1\x60\xbe\xe5\x74\xcb\x50\x75\x81\x29\x0f\x86\x69\xf6\x29\xcf\xf6\x3e\xa6\x0c\xca\xd7\x4f\x67\x7b\xb6\xec\x9c\x0b\x5b\x2e\xf6\xe8\xc3\x6f\x34\xc3\x12\xb0\x63\x88\xc0\xf7\xd4\x97\xc5\x0f\x0e\x69\x52\xab\x9a\x97\xbc\xd3\x2e\x0c\x36\x5d\xd7\xa6\x5b\x6e\x8a\xfb\x1c\xa6\x5d\x3d\xc3\x31\xce\xb0\xad\x19\x78\xdd\x1f\x3d\x66\x5e\x5f\xcb\x5e\xc7\xda\xeb\xfc\xbc\x1d\x6c\xbe\x83\xcd\x77\xb0\xf9\xfe\xeb\xd9\x7c\x5d\x0a\xd1\xd3\xf2\x5b\xa7\x38\xc5\x67\x77\x73\x70\x83\xdf\xb1\x8d\xcd\x43\xdf\xbd\xee\x58\xc7\x53\x7c\x8c\x70\x11\x42\x8f\x1f\x63\xb9\x81\x93\x03\xb4\x8d\x58\xe2\xa6\xcf\xed\x9c\x41\xd7\x13\x7c\xc7\xab\x76\x43\xf6\x38\x9a\x6b\xdc\x73\x8e\xad\xe8\x9d\xfe\xb3\x28\x98\xcb\x28\x04\x76\x1f\x31\x9a\x9a\xa9\xbd\x2c\x98\xa7\x8a\xde\x31\x11\x6d\x89\x4a\x98\x05\x0f\x67\xa1\xc5\x2c\x4f\x63\x19\x6c\x95\x9d\x94\xdb\x1f\xb4\xcf\x3b\x0d\x3a\xe7\x08\xb6\xb4\xfa\x9d\x41\x6c\xf5\x6b\x5f\x69\x12\x4f\x3f\x8d\x41\xa8\x70\x4b\x09\xd4\xfb\xce\x3f\x83\x60\x61\x03\xa4\x8a\x59\xaa\xd2\x45\xfd\x89\xba\x88\xd1\xd8\x23\xbf\x10\x33\xea\x8f\x3c\xa7\xac\x51\x0e\x27\xad\xad\xa0\x92\x5c\x68\xe2\xd4\x72\x27\x87\x03\xe4\x90\x57\x38\xc8\x2f\x83\xfc\xf2\x5b\xcb\x2f\xf5\x1b\xdc\x96\x59\x88\xaf\xce\x3d\xdc\xaf\xd9\xa1\xd4\x26\xba\x00\x09\xf5\xdf\xf1\x3a\xa4\xee\xc3\x36\x95\xc4\x5c\x72\x0d\x9b\x71\xc5\x19\x11\x25\x87\xa6\xc1\xf4\x95\x64\x42\x78\x6d\xd9\x6d\x2c\xde\x0c\xf9\xed\xc7\xc9\x69\x27\xb4\xc5\xa3\x16\x56\xf8\xb7\x31\xdf\x36\x02\xd7\x63\xfa\x5b\xfd\x48\xbf\xe9\xf5\xa3\x76\xd3\x0c\x59\x84\x0e\x61\x9f\x03\x45\x5e\xad\xe3\x9a\xd1\xd0\xe7\xe3\x29\xcb\x90\xa5\xa7\xf3\x8a\x41\xa6\x91\x74\xca\x97\x02\xc4\x63\xa1\x8a\x71\xc9\x9a\x2f\x4b\x39\xf4\x15\xd8\x24\xbc\x46\x23\x93\x48\x18\x4b\x01\x51\x7f\x69\x16\xac\xb4\xc4\x87\x8d\x72\xd0\x0e\x96\x5b\xaf\xef\x29\xd7\xb7\x7c\x21\x1b\xcc\x8b\x50\x63\xd7\x52\xa8\xa6\x56\x76\xa4\xcb\x95\x00\xed\x58\x45\x67\x42\xd8\x0f\xf8\x18\x09\x59\x10\xd1\x04\xec\x67\x3c\x58\xd9\xb7\x9d\xb3\xec\x64\x8b\x40\x5d\xcf\x7f\x7d\x3b\xd2\xb3\x49\x7e\x40\xe7\x4b\x25\x35\x8b\xa2\x5f\xa3\x25\x13\xe3\xbb\x6c\xce\xe6\x19\xd7\x4a\x07\x4c\x60\xa7\x7f\x09\xc4\x1c\x22\x38\xa0\x0a\x1b\x97\xe2\x96\xaf\x59\xaa\xe8\x3a\x3e\x22\x22\x8b\xa2\x59\xa5\x02\x1a\x98\xb4\x01\x67\xcf\x62\xb0\xc2\xb3\x01\x1d\xf8\x9d\x0a\x78\x8e\x54\x59\xf9\xdd\x23\x53\xd6\xc0\xac\x89\x94\x95\x27\x06\xe3\xd5\x20\xfc\x0d\xc2\xdf\xbf\x9e\xf0\x57\x21\x15\xfd\xec\x57\x7e\x02\x54\x7c\x1e\x61\xc2\x8a\x68\x9a\xf6\x28\xd0\x80\x8f\x15\x7c\xd3\xca\x33\x20\x9b\x3a\xaa\x25\xb6\xf8\x11\xbc\x21\x64\x0a\xbd\x4d\x3c\x75\x9d\xc1\x78\x2d\x21\xf6\x0d\x13\x2c\xd0\x51\xc9\x37\x36\x3f\x42\x9f\x48\x99\xa8\x86\xf8\x07\x3a\x97\x99\x22\x01\x4b\x34\xea\xf4\x69\x83\x84\xe0\x32\x54\x3b\xa5\x3d\xb4\x07\x5c\xb4\x64\x9f\x3c\x3a\xa6\x8d\x1b\x84\x7a\x43\xda\x16\x7e\x4c\xc2\x43\x26\x7f\x64\x37\x29\x12\x6f\xdc\xb4\x54\x9b\xb5\x03\xea\x8f\xf5\x57\xf2\x84\x7a\xf8\xb2\xe8\x37\xdb\x75\x44\xf5\xa7\x10\xae\xf2\xdb\x8f\xd5\xb4\xc9\x6b\xb7\xcf\x63\x75\x28\x92\xb0\x45\xc2\xd2\x95\xd7\xc2\x79\x81\xd9\xf7\x66\x44\x0b\x16\x4f\x21\x0b\x26\xa4\xbe\x68\xa4\xc7\x47\xde\x36\xde\xfa\x42\x5e\x6b\xc0\x64\xed\xde\xe3\xca\x5c\x06\x2a\xe7\x28\x17\xa2\x31\xb1\x90\x49\x8b\x97\x6a\x6b\xb9\x94\x18\x7d\x85\x57\x10\x3b\xec\xe2\x55\xc2\xe1\x53\xae\x4f\x12\x07\xf7\xb4\x41\x39\x99\x6f\xcd\xb8\x3b\x84\x3f\x2f\x59\xb7\x88\x7d\xac\x1f\x22\x2b\x19\x85\x29\xbe\x60\x81\x90\x45\xac\xdb\xee\x21\x77\x73\x9e\x84\x3f\x7c\xd9\x27\xd8\xee\xfd\xe4\xfa\xf4\x87\x2f\xdd\xa4\xa4\x42\x3e\x28\xe3\x36\x03\x32\xa1\x47\xfe\xf2\xf1\xc1\x76\x11\x4d\xd5\x7b\x29\x9b\xe2\x7c\xbd\x20\x9e\x3b\xef\x18\x4c\xe5\xca\xbe\x06\xc9\x1d\xb3\x79\x48\x82\x6c\x18\x83\x94\x55\x44\x64\xa6\xe2\xcc\x17\x76\x60\x3f\x7d\x22\xc9\xf4\xd4\xd7\xac\x54\x4f\x60\xd7\x95\x79\x5e\x6f\x5a\xa4\x7d\xf4\x37\x58\x28\x04\xb6\x27\x5e\x6b\x82\x77\x65\xd7\xf0\x3c\x99\x9c\xe6\x95\x95\x00\x9e\xcf\x03\xa2\xc9\x71\xe1\x85\x00\x2a\xa2\x5a\x92\x60\x0b\x4d\x9d\x52\xb6\xf6\xf2\xb7\x5d\xc0\xd8\x34\x9a\x81\xbc\x80\xfc\x50\x58\x7e\x2c\x18\x21\x80\xf1\x39\x50\xb4\xc7\xf2\x19\x02\xf0\xae\x37\x01\x78\xb7\x1b\x01\x78\x37\x10\x00\x67\x39\x03\x01\xf0\xac\x6c\x20\x00\xbf\x25\x01\x68\xfb\x75\xbe\xec\xcc\x7a\xd2\x20\xe2\x11\x04\xb9\x59\xff\xd9\x28\x3b\x77\xdc\x79\x0c\x26\x3c\x4b\x15\x9d\x47\x3c\x5d\xb1\x9e\x62\x89\xde\x3c\x25\x15\x8d\x6c\x34\xa2\x5c\x60\x5c\x25\x2b\x46\xd2\x2b\x21\x29\x4b\xd1\xde\xd6\x86\xa6\x86\x7c\x30\x3f\x7c\xbd\xa8\x66\x03\x7c\xef\x9e\x09\xbe\x4b\xa9\x9e\x0e\x85\x42\x8a\xd1\xaf\x02\xe6\xe7\x61\xf2\x39\xc0\x84\x5c\xe7\x7e\xe8\x9b\xe2\xa3\x2e\x63\x04\xec\xd9\x74\xa5\xb4\x9f\xa0\x4e\x3a\x8b\xd1\x34\x28\x3c\x10\x43\x5a\x36\x71\xe4\x3c\x38\x87\xa1\x99\x82\x74\x43\xd5\x8b\x5d\xb7\xc4\xfe\x37\xac\xa0\x21\x03\xe0\x7e\x25\x53\x56\x98\xd8\xc9\x3d\x23\xd4\xef\xe2\x28\x3e\xb9\x21\xa3\x85\x5e\xf7\xa3\xd8\x04\x75\xba\xfe\xab\xb8\xe1\x98\x1f\x97\xb3\x90\x84\x24\x8c\xa6\x52\x00\x1f\x36\xfd\x8b\xda\xd8\x59\x6f\xb8\x3a\x58\x5a\x15\x2e\x80\xc6\x18\x13\x80\x2e\xe3\x8d\xc0\x71\x9e\x00\x1e\xe5\xf7\xd9\x35\x80\x03\x6e\xbb\x22\xea\xaa\x48\x90\xb1\x29\x0e\xa5\xf4\xca\xf6\xdd\xde\x70\x9a\x1f\xd9\x91\x32\x4d\xbc\xd6\x2c\x5d\x1d\x68\xec\xeb\x5f\x99\x20\xec\x21\x8e\x78\xc0\x95\x0d\x28\x6f\xab\x77\x45\xb0\xa7\xce\xc8\xf2\x30\xb8\x51\xc6\x64\xfe\xb9\x88\xea\x92\xbf\x3b\xab\x47\x21\x25\xea\x45\x21\x91\x12\xbd\xab\x50\xa2\x77\x03\x25\xea\x58\xc1\x40\x89\x76\x83\x6b\xa0\x44\xe6\xf3\xef\x44\x89\x5a\xd2\x09\x47\x3e\xe1\xbd\xdf\x63\xef\x9a\x1f\xab\x8a\xb2\xbd\x9f\xf4\x8c\xd9\xb6\x76\x7d\x3b\xd0\x10\xdf\x19\x3e\x7c\x5e\x3c\x8a\xae\x41\x65\xfd\xe6\x75\xbf\x20\xd8\x43\x12\x78\xc2\x87\x6d\xa8\x02\x51\xb3\xc4\x1b\x57\x21\x5c\xd8\xc2\x83\x07\xf6\xe5\x7c\x02\x08\x5f\xf6\x0d\x79\xfd\xe1\xe4\x8b\x2f\xbe\xf8\x03\xd8\xdf\xb1\x12\x36\x24\xc6\x7f\xbc\x3d\x69\x31\xd2\xeb\x39\x46\x7e\x20\x45\x16\x99\x56\x64\x45\x20\x45\x1d\xa9\xfe\x43\x87\xf5\x2d\xba\xf0\x09\xba\xbf\xf5\x43\xa5\xe6\x25\x72\x27\xe4\xbd\xb0\x0e\x68\xe3\xbb\x69\xd7\x85\x3f\xcb\x04\x8e\xb3\xf6\x93\xf5\xaf\xcd\xb3\x35\x61\xdf\x80\xfe\x4c\x8c\x15\xa6\x6d\xe3\xac\xcd\xe5\x44\xfa\x20\xa8\x17\x9a\x72\x00\x6d\x5b\xad\xfe\x24\xf7\xb4\x78\x29\x4f\x26\xcf\x5b\x7f\x35\x7d\xfa\xd1\xfe\x25\x55\xec\x9e\xb6\xe5\xe5\x57\x60\xf9\x16\x5f\xc8\xf3\xf3\x9c\x05\x3d\x01\x38\x79\x0f\xb4\x1d\x84\x8f\xbc\x6d\x9a\x07\xa4\xcf\x87\x28\x62\x34\x11\x2c\xfc\x90\xc8\x75\x7f\x98\xce\x8b\x97\x8a\x53\xe7\x7a\xa3\x13\xb6\xa4\x49\xd8\x3a\x31\x41\x22\x97\x98\x5a\x18\xb0\xe1\xb6\x24\x4e\x53\x3a\x85\xfd\xf4\x3a\x8a\xa4\x9f\xa4\x57\x5b\xdc\x64\x61\x72\x19\x51\x12\xc0\x14\xd5\x0b\x96\xae\x34\xcf\x36\x3c\xf7\x80\x34\x55\x01\x75\x3f\x15\xa1\x11\x2d\x9f\xa6\x16\x08\x13\x8a\x64\xa9\xb3\xf6\xd6\x05\x93\xde\xfb\x49\xf2\x9c\xd6\x86\xa0\xc9\x96\x95\xdf\x3a\x81\x92\x26\x5e\x05\x77\x88\x9a\xed\xe1\xa9\x3d\x2f\xdd\x8b\x87\x12\x16\x4f\xb5\xa6\x6e\xd9\x84\x7c\xae\xa0\xc7\x9d\x4d\x2a\x92\x7b\xc0\xe6\xdc\x10\x0a\xe0\xac\x55\x26\xf7\x78\xde\x4d\xdf\xc1\xdf\x5a\x18\xcb\xb9\x56\x2f\xbd\xd0\x70\xad\xba\x62\x38\x70\xad\x96\x85\x0c\x5c\xab\x05\xa0\x81\x6b\xd5\x3f\x03\xd7\x1a\xb8\x56\xd3\x53\x03\xd7\x6a\x7d\xfd\x9f\x32\xb2\xff\xb9\x92\x39\x17\x2c\xe2\x0f\xcf\xde\x1f\x12\x92\x4a\x5a\x3b\x44\xd6\x9f\xa8\x07\xde\x7b\x60\x35\xfb\x92\x47\xde\xd7\x1f\x99\xfd\x5a\xc9\x9c\x98\x38\xb3\x53\xab\x48\x78\x65\x48\xe4\x1c\x62\xf9\x87\x58\xfe\xdf\x3a\x96\xbf\x4e\x7f\xba\x5a\x44\xe2\x7d\x7f\x6c\x93\xc8\x28\x92\xf7\x93\xe9\x64\x3a\xa5\xc1\x1d\x53\xa9\x96\x23\x7f\x94\xc9\x5d\x24\x69\x77\x24\xf7\xfe\x71\xdb\xdb\x36\x33\xab\x70\x37\x00\xa4\x5e\xbb\x30\xb6\x51\x09\xb5\x74\x93\x45\x50\xbe\x36\x4c\x64\x4c\xf4\xd0\x84\x89\x80\xc6\x29\xb6\x60\xcf\x9b\xdd\x63\x3b\x17\x3b\x95\x6f\xcc\xa2\x07\xd7\x82\x46\xe9\xee\x4d\xb8\x00\x33\x3f\xfc\xe9\xfc\xf8\xf2\xf1\xa8\x69\x7c\xfd\x09\x70\x03\x63\xff\x66\xc8\xb9\x4f\x6f\x92\xe0\x34\x55\x27\x2b\x16\xdc\x75\x22\xe3\x86\x29\x23\xc5\x8e\x1c\x8d\x69\x14\xe8\x97\xb5\xc2\x7b\xfc\xe3\x0d\x39\x3b\x79\x9b\xe7\x29\xa4\x63\x72\x6c\x04\x19\x1f\xf4\x9b\x72\x07\x48\xec\x4c\x31\xdb\x3b\x95\x97\x52\xad\xf4\xf5\x84\xbe\x4c\xd8\xd3\xcd\x36\x9e\x3a\xc5\x3c\x80\xd9\x5e\x47\xf7\xd2\x7c\x10\x1f\x4e\x98\xc8\x7c\xaa\xd9\xa8\x78\xcb\xf7\xa3\x01\xc4\xf7\x9a\x01\x6a\x27\x2f\xc3\x3c\x5e\x9c\x48\x21\x58\x00\x11\x9d\x45\xfb\x0b\x2e\x96\x7d\x9b\xdf\xbd\x9f\x7e\xe8\x18\x02\x5d\x35\x5c\x90\xf7\xd3\x0f\x64\x2d\x43\x7f\xeb\x48\xff\x29\xc6\x6d\x8c\xa2\x5c\xda\xd0\x13\xe9\xfd\x56\x7c\xcd\x88\x3e\x93\x64\x6e\x1b\x94\x34\x16\xdc\x33\xaf\x79\xde\x41\xbf\x10\xfa\xe5\x72\x45\x7c\x25\x53\xc8\xf9\x98\x33\x02\xe9\x1e\x4a\x7a\xed\x47\x8c\x06\x2b\xb7\x77\x8a\xe9\xf1\x92\x9a\x1e\xaa\x84\xaf\xe3\x44\x6e\x58\x9e\x8d\x02\x6a\xb4\x08\xe0\x80\xc5\x32\x1c\x29\x39\x6a\xeb\x1e\x95\x2f\x35\xc5\x85\x61\x6f\x15\xe3\x90\x76\x92\x51\x30\x79\x42\xc3\x1e\xb2\x79\x86\xfd\x64\xe3\x2c\x89\x65\xaa\x8f\x7e\xfb\x01\x7d\x54\x47\xc1\x79\xbc\x38\xa5\x8a\x4e\x16\x34\x60\x53\xd3\x91\xb3\xe3\x90\xbc\x9f\x7e\xa8\xbe\x82\xd2\x44\xc2\x40\xc6\x25\xec\x41\x8b\x03\x20\xe6\x81\x1e\x6d\x0f\x83\x97\x88\x41\x3a\x4f\x6e\x72\xb1\xd9\xdd\x46\x8a\xa3\x4a\xe9\x7d\xd1\x47\x2d\x4e\xe4\x32\xa1\x6b\x10\xdf\xb8\x20\x32\x09\xa1\xd0\xa9\x17\xdb\x54\x05\xab\x9c\xe6\x29\x79\x98\x0b\x1f\xa6\x93\xff\xd8\x94\x2a\x12\x8c\x85\x30\xe0\x1a\xdf\x58\x31\x07\x12\x2f\x8a\xf5\x72\x6c\x87\x2f\x43\x46\x0b\xe2\x0a\xa9\x65\x72\xc3\x92\x6a\x37\xaf\x1e\x83\xae\xa8\x08\xf5\xfe\x8b\x40\xae\x41\xfe\xca\xa1\x07\x83\x1f\x7a\x04\xb1\xbe\xa6\x39\x98\xb0\x28\x99\xa9\x94\xfb\xfb\x4f\xba\x05\x1b\x08\x99\xe4\x99\xf2\x5a\x8a\x2a\xd6\x9b\xaf\xc2\xd9\x82\x97\x59\x9a\xd1\x28\xf2\x1a\x5a\xb5\x1e\x12\x42\x5e\xdd\x78\x3c\x7e\xb5\x63\x4e\x98\x3e\x6c\x78\xd0\x3f\x8a\x38\xe1\x1b\x1e\xb1\x65\x3f\xa2\xe4\x79\xed\x80\xf0\x85\x6d\xac\x79\x60\x8f\x0d\x33\x71\xf8\x77\xfa\x1e\x47\xe3\xcc\x79\xfe\xd3\x3c\x5e\x7c\x32\xf7\xcc\xcb\x3c\xd2\x6d\x1a\xa8\xc8\xbd\x8d\xee\xeb\x50\x08\x56\x2e\xf4\x59\xb4\xc7\x87\x89\xd4\xf4\x1b\xa0\xaa\xf4\xac\x6f\xf4\x2c\xd5\x52\x71\x80\x52\x2c\x96\x23\x30\x27\x69\x7f\x3f\x45\x62\x4a\x63\xdc\x62\xf3\x10\x17\xa9\xd6\x60\xa0\x07\x35\x91\xf7\x5e\x3b\x62\xfd\x66\xe8\x5d\x64\xa6\x3b\x53\x31\xc1\x67\x77\x1e\x9d\xc7\x8b\x1d\x78\xc8\x99\xdd\x96\x62\x8b\xcc\x0e\x81\xd0\x62\xdb\x2d\x68\xe8\xb5\x84\x1c\x47\x54\xf8\x6d\x6b\x9f\x2b\x8e\x68\xb0\x1f\xd4\xad\xb4\xed\xef\xa4\x10\x6b\x9a\x74\xcb\x25\x7a\x0d\x9e\xf7\x4a\x7c\xaf\x60\x72\xd4\x07\xfa\x17\x6f\xe7\x5c\xdf\xb4\xe4\x2e\xaf\xd9\x9a\x32\x45\x50\xe7\xb6\xdc\x00\x6f\x31\x15\x84\xd9\xae\x68\xa8\x12\x35\x50\x36\x6a\xaa\xed\x1a\x22\x30\xc6\x73\x08\x73\x98\xcc\xd6\xcc\x16\x40\xd5\x90\x41\xad\xd6\x18\xa5\x4c\x22\x17\x8d\xc4\xa7\x00\x08\xfa\x6d\x80\x79\x2d\x74\xfa\x0e\x22\x13\xb5\xc5\x5f\x8d\x31\xb4\xc1\x30\xa6\x4f\x60\x9c\xd8\x16\x08\xd7\xd3\x0f\x04\x84\x39\xf7\x00\xbe\x6e\xde\xc6\x86\x18\x64\xdc\x46\x40\x90\xd9\x91\x8b\x1e\x59\xb0\x66\x17\xab\xaf\x35\x6c\xa2\x5e\x9a\xb3\x33\xbe\xb5\xb9\x24\xb7\x54\xfe\x0a\x4a\xd9\x1b\xba\xfc\xd2\x94\xd9\xb7\x04\xdb\x69\xe5\xe8\x6d\x13\xa2\x31\x6e\x6c\x93\x5a\x52\x97\xb6\x62\x70\x2e\xa6\x6b\xea\xbd\x80\xb3\xa3\x24\x99\xed\xdd\x66\x42\xb0\x68\xb6\x87\x15\xaa\xe7\x52\x79\x2b\x35\x1b\xdd\x19\x20\x48\x58\x1a\x4b\xa1\xef\x9c\x61\x2a\x3c\x25\x0a\x46\xc1\x09\x2b\x65\x8a\x61\x3e\x2f\x81\xb4\x20\x9c\xde\x5c\x6b\x49\x1a\xdf\xc3\x79\x7c\x43\xcf\x33\x65\x9e\x29\xcf\xef\x3d\x36\x29\x9a\xdb\x43\x9e\xb0\x40\x45\x5b\x6f\x01\x65\x0d\x99\xb0\xf3\x9b\xfd\x2b\x1e\xf1\xb2\x2b\x28\x4b\x1d\xc7\x8c\x26\xa9\xdb\xe8\x65\x32\xb5\x4a\x32\xc7\x46\x78\xf0\xe4\x37\xd6\xec\x04\x32\x64\xc3\xbd\x8e\x59\xb2\xe6\x69\xca\x37\x8c\x9c\xbf\x75\x24\x8a\xe2\x7c\xe3\x0e\xed\xda\xad\x7a\x1e\x2f\xb4\xfc\x39\x4d\xe4\xc3\xf6\xcc\x18\x49\x6e\x22\x7d\xa4\x7a\x12\xde\xf7\xd3\x0f\xed\x03\xf8\x0f\xbe\x5f\x2a\x73\xa4\xf6\xfd\x94\xb0\xf5\x9c\x85\xfa\x78\xde\x65\x73\x36\x8a\xf5\x0c\xc6\xa0\x9c\x92\xf2\x54\xcd\xb6\xf5\x2e\x3a\x9d\xc3\x3e\x89\x95\x06\x37\x3d\xd1\x0f\x66\xf1\x0e\x6c\xa7\x63\x88\x12\x3b\x42\x5c\xf8\x16\x8f\xe8\x71\xd8\x55\x9c\x48\x2c\xcf\x13\x6d\x49\xa0\x47\x24\x19\xb6\x34\xca\xe2\x54\x25\x8c\xae\x5d\xc5\xa1\xc0\xd0\xfe\xbe\xbf\x2c\xbb\x81\x8d\x04\x2b\xca\x41\x1f\xb8\x41\xc1\xcc\xb6\x5b\xcc\x21\x5c\xb8\xe8\x36\x25\xbf\x4d\x59\xab\xe7\xd2\x05\x72\x0c\x5e\x70\x71\xb3\x15\x01\x26\xe3\xef\x84\xfb\xd2\x9b\x07\x0d\xc4\x56\xf9\x75\x3b\xd3\xbc\x1e\xc2\x04\xf3\x22\xf3\x68\xef\xcb\xed\xb6\xb9\xc0\x50\x18\xa8\xf7\x9d\x23\xea\x1b\xb6\x40\xe3\x98\x90\x73\x79\xcf\x12\x6b\x29\x5b\xea\x6b\x9c\xb0\x30\x0b\xb0\xc7\xfb\x28\x8b\xc1\x30\x2c\x02\xfd\xe8\x77\x7c\xb9\xca\x9f\xf5\x53\x59\xfd\xa6\x35\xac\x4f\x3f\x92\x2c\xa5\x4b\x06\x59\x7b\x5a\xc2\x06\xe7\x54\x4c\xd6\x32\x41\x72\x5e\xa2\x12\x6f\xd2\x47\x50\x88\x73\xb9\x3c\x67\x1b\xe6\x6b\xc1\x51\xdb\x11\xfb\x6c\x09\xeb\xd0\x9b\x3f\x82\xaf\x6d\x5e\x9d\x23\x42\x36\xd0\x82\x5c\xdf\x2f\x70\xbf\x46\x72\x7c\x65\x4d\x2c\x57\x8b\x05\x1a\x57\x26\x62\x21\xf5\xbf\xd0\xb6\xa2\x95\xd8\xd9\x5e\xb3\x32\x1f\xc9\x25\xb6\x40\x65\x6b\xae\x54\xc1\x8e\xf4\x64\x2a\xa1\x01\x23\x31\x8f\xd9\x81\xad\xdf\xa5\x85\x72\x10\x6c\xd1\x7e\xb0\x5e\x37\x74\xc0\x9e\xed\xa9\x80\xb0\x07\x16\x68\x9c\xa1\x2a\x5d\xb2\xef\x90\xab\xc5\xe2\xa7\xf1\x8e\xe8\x87\xfb\x3a\x01\xa1\xbc\x97\xf4\x71\x52\x7e\xbe\xc9\x26\xb2\x92\xf2\xce\x55\x5a\x1a\xc8\x86\x92\xf1\x08\xf7\xad\x42\x40\xf4\x69\x43\x55\x41\x1f\x37\x63\x0b\x34\x25\xf2\x94\x8c\xcd\x36\x7b\xf5\x64\xfd\xbe\xde\xa8\xf9\x16\x78\xa4\x08\xeb\x23\xcc\xa5\x52\x72\x3d\xb6\xca\x88\x89\x5b\x4f\xe9\x82\xd9\xa6\x04\x5e\x49\xc1\x56\x82\x88\x13\xb6\x81\x00\x9b\x42\xd5\xd1\xa3\x1b\xb9\x17\xdd\xb7\xf3\x6d\x4c\xd3\xd4\x74\xd2\xde\xca\x8c\xa4\xf7\x5c\xf9\xfb\x4f\x28\x69\x00\x35\xf4\x64\xce\x48\x8a\x65\xfe\x0d\xb8\xd8\x0c\x07\xa7\xb0\x5d\xb0\x10\x4b\x58\x52\xce\x2b\x80\x01\x23\x03\x63\xce\x7c\xab\xf5\x8c\x08\x1d\x20\x89\xcc\x96\xab\x4a\xe0\x2d\x8c\x7c\x80\xd3\xdc\x9b\xc6\xde\xbe\x31\xcd\xe3\xb1\x8c\x78\xb0\x45\x2e\x32\x67\xce\x4a\x8b\x93\x88\x88\xdd\x95\x14\xe4\x17\xf1\x34\xe1\x1b\x6f\xa7\xc0\xf6\xf2\xd0\xf3\x6c\x69\x54\xea\x73\xb9\x3c\x4d\x64\x1c\x73\xb1\x6c\x1c\xa5\x81\x5f\xc0\x30\x17\x6c\x2d\x93\xed\x34\x91\x0b\x1e\xb1\x29\x55\xab\xc7\xc0\x72\xc3\xd7\x60\xa9\x3e\xa1\x51\xf0\x6d\x42\xe3\xd5\x77\x54\x2c\x8f\x17\xea\x71\x2b\xb3\xa3\x9d\x5a\x24\x3d\x7e\x34\xd8\x24\x2b\xe1\xdc\xca\xef\x64\xaa\x8e\x83\x86\xc0\xa9\xf2\xed\x3f\x6d\x7e\xd7\xa5\x04\x60\xfa\xd1\x47\x3a\x6d\x50\xf9\x72\x43\x90\x7e\x74\x29\xed\xd5\xa1\x85\xe5\xa6\xf0\xa8\xc9\x42\x59\xe3\x2a\x65\xd1\x82\xbc\xa4\x8b\x86\x12\x99\x40\x1e\xcc\xd8\x2b\x6e\xcc\x26\xf9\x50\x0c\x85\x62\x3c\xbf\xaf\xc6\xe4\xfd\x36\xef\x41\x82\x47\xdb\x37\xa4\xe9\x5e\xed\x75\x36\xe4\x43\xa7\x3e\x30\x81\xa6\xfb\x3b\x37\xe5\xd4\x6e\xb6\x77\x7a\x7d\x35\x9d\xed\x41\xa9\x44\x29\x72\x6a\x71\x4f\x4d\x77\x48\x68\x6b\x98\xca\x35\xe4\xfa\xd0\x28\x6a\x53\x37\x00\x36\x17\x71\x1a\x9a\x03\xd4\x70\x20\xf5\x85\x26\x74\xcd\x8c\x6a\x77\x7d\x76\xfb\xf1\xfa\x52\x8f\x7a\x7c\x72\x72\x36\xbd\x1d\x93\x8f\xfe\x66\xfe\xe6\x41\x8e\x80\x41\x67\x99\xad\xcc\xc0\x78\x53\xa6\x49\xce\xa2\x26\x97\xd3\x8f\xb7\xb3\x3d\x24\x53\xdf\xb4\xd0\x12\x20\x22\x96\x0c\x2b\x4b\x47\xab\x84\x9e\x2a\x1c\xc9\x34\x30\x9a\xed\x21\x4c\xfe\xee\x26\xd6\x34\x60\x76\xa4\x02\x0c\x91\x86\x88\xaf\x68\x0a\x75\x38\xb1\x58\x7c\x9c\x48\x5b\x4b\xd3\x6e\xae\x6f\x6c\xff\x51\x02\xd4\x19\x34\x82\x3e\x26\xf2\x18\x13\x1a\x45\x56\xa9\xb0\x80\x35\xee\x5c\xae\x1b\x13\x38\xdf\x3e\x98\x9a\x00\x68\xb7\x32\x69\x52\xb8\x33\x2d\x66\x5a\xf1\x87\xf0\xce\x69\x22\x95\x0c\x64\xa7\x78\x06\x66\x1b\x37\x04\x02\x23\x9a\x62\xf3\x3a\xa1\xa1\xb1\x05\x18\xc1\x6c\xcd\x42\x33\x8d\x57\x0a\x85\xc0\xd1\x03\xcd\xbd\xec\x25\x85\x43\x6c\xd9\xce\xf5\xed\xf4\xfa\xea\xf6\xd3\xfb\xab\xab\x5b\x94\xe6\x22\xb6\x50\x64\x1e\x51\xe1\xeb\x84\xde\x6a\x88\x71\xd6\x7a\xb3\x4b\x2b\xa1\x5b\xd3\xd9\xb1\xde\x80\xc7\x6a\xe5\x52\xec\xb2\xd8\x12\x45\xf2\x0c\x0a\x41\x70\x76\x91\x07\x24\x62\x74\x63\xa2\x1a\xbc\xfa\x01\x08\x5e\x60\x38\x5b\x49\x69\x4c\x04\x95\x11\x1f\xd1\x7d\xd4\x98\x91\x4f\xa4\x10\x5a\x96\xbd\x9b\x08\x28\x9f\xd5\xe4\x19\x6d\xe5\xb5\xf6\x34\x5f\xdb\x8c\xca\x53\x16\x79\x43\x66\xdb\x00\xaa\x0d\xd2\xac\x5b\xb7\x03\x63\x8c\x6a\x97\x32\x64\x50\x7e\xb4\x6b\xfb\xcf\xdc\x17\x4e\x26\xa7\xd7\xfa\x25\x74\x1a\x45\xfa\x5f\x72\x01\xdd\xf9\xf7\x21\x74\xc1\x8e\x3e\x12\x52\x8c\x30\x6e\x0b\x32\x00\x5b\xfc\x47\x6b\xba\xb5\xfb\x85\xd6\xa7\x9c\x09\x81\xd1\x12\x5b\x90\x32\xc7\xe8\x65\x7e\xf5\xb7\x1d\xb4\xa1\x72\x9a\xb8\x06\x45\xb1\x3c\x5f\xf5\x84\x67\xa8\xef\xb7\xa0\x3c\xd2\xf2\xf5\x44\xcc\x65\x26\x42\x2d\x36\x4c\x65\xa2\xba\x03\x0b\x3e\x34\xbc\x58\xc6\xf3\xc7\xd3\xe9\xe1\xed\xc9\x14\x0d\x94\xde\xd5\x8b\x10\x36\xc3\xf8\x35\x1c\x3b\x08\x72\x58\x9f\x8b\x0a\x78\x79\xce\xe1\x7d\xa3\x4a\x41\x78\x92\xb0\x34\x36\x35\x17\x8b\x56\xa0\x59\xc2\xd5\x36\x67\x0f\x96\x50\x98\x7e\x96\x9a\xaf\x6f\x24\xf7\x72\x18\x1a\x04\x50\xd9\x10\x18\x47\x90\x61\x3f\x68\xb9\x58\x10\x8a\xf0\x80\x50\xa1\xa1\x4d\x12\x16\xa8\x4a\x1c\x0c\xf9\xe0\x8f\x17\x9d\xd3\xe0\x6e\x54\x6a\x56\x72\x60\xa3\x4e\x73\xea\x6c\xbb\xaf\x15\x5d\x79\xb9\xb2\xc4\xa8\xa9\xa2\xb5\xd6\x48\x63\xad\x83\x4e\x34\x7c\x1a\xbf\xfe\x61\x1c\x44\xbb\x72\x94\x77\xfd\x18\xfe\xa1\xa9\x93\x26\x88\xb7\x85\xdf\x8a\x82\xa4\x00\xa7\x00\x51\x01\x9b\x7d\x90\x5b\x3f\x1b\xfb\xa9\x09\x29\xc0\xa9\x90\x2b\x77\x26\xa2\xc2\x38\x17\xd2\x74\x65\x5d\x57\xfa\x94\x9c\x7e\x77\x32\x2d\x39\x96\x82\xf8\xe8\xed\x5b\x6f\x3c\x40\x16\xc6\x47\xef\xbe\x3e\x80\x47\xde\xfc\xfe\x0f\xf8\x8f\xb7\x5f\x14\xff\xfa\xfa\x35\xfe\xeb\xdd\x97\x5f\x7e\x61\xfe\xf5\xee\xdd\xbb\xfc\x5f\xbf\xf7\x31\xe5\xe6\xcb\x57\xae\x03\xa0\xf7\x4d\xdf\x04\xcc\x65\x5e\xcf\x9d\x34\x06\xbb\xa7\x07\x80\xa2\x83\xfc\xf0\x37\xc4\x06\x4f\x73\x06\x2d\x42\x6c\x08\x69\x63\x4d\x8a\x4e\x81\x5e\x41\xab\x2b\x16\x5e\x30\xbf\x1d\x8f\xf4\x0a\x45\xd6\x90\x74\xbc\xde\x52\xdc\x85\xe4\x58\x78\x34\x08\xad\xcd\x55\x47\x8d\xed\x4a\x47\xf9\xcc\xcd\x14\xb4\xbd\x54\x53\x2b\x05\xbd\xca\xd4\x23\x49\x68\xed\xcd\x27\xa6\xa1\x32\x53\x4b\xe9\xd2\x50\x90\x6a\xbb\xa9\xa8\x92\x03\x15\xfd\x55\xa9\xa8\x34\x07\xe1\x69\xc8\xa8\x04\x3d\x9f\xa9\x20\xdc\xdf\x87\xea\x23\x22\xa4\x49\x68\x7c\x85\x4a\x9a\x80\x82\xc6\x4e\x58\x78\x8c\x42\xc9\x70\xc9\x4b\xa6\xf4\x86\xc1\x66\xa1\x3e\xab\x82\xb0\x14\x7a\xa2\x11\xa0\xb7\x53\x13\x6a\xd2\x60\x2a\x3d\xbd\xbc\xa9\xd2\xf0\x5d\x08\xb4\x77\xa3\x0c\xcd\x3e\x00\xb2\xff\xd5\x17\xf8\xdf\x81\x86\x0f\x34\xdc\xfb\xab\x9f\x86\x33\xaa\xb2\x84\x9d\x32\xc5\x02\x75\xb5\x61\x49\xc2\xbb\x4d\xee\x1f\x7c\x2f\xe5\x2d\x49\x94\x84\xe0\xac\xc4\x3a\xef\xcd\x14\xfe\xb3\xa7\x98\xb1\x32\xfd\x80\x8e\x22\x9a\x38\xe7\x83\x70\x41\x28\xfa\x1f\x48\xca\x62\x8a\x8d\x6c\x81\x3b\x00\xb9\x14\x5e\xf3\x18\xf4\xdb\x4f\x0f\x08\x7b\xa0\xeb\x38\x62\xdf\x90\xd9\xde\xcd\xe5\xf1\xed\x87\x2c\x8a\xb6\xd7\x54\x84\x72\xfd\x47\x95\x64\xec\xe0\xe2\xf8\xe6\x7f\xba\x5f\x42\xe4\xcb\xc1\x35\x83\xdc\x9b\x9b\x2c\x06\x72\x71\x2e\x83\xbb\x3f\xce\xf6\xbc\x27\x75\xb6\x07\xd9\x3f\x26\xbe\x15\x5e\x9f\xed\x21\x4d\x5c\xc8\x24\x28\xad\xfe\x00\xfb\x3e\xeb\x47\xa5\x71\xc1\x34\xbb\xbb\x34\x12\x68\xa6\xe4\x08\xf1\xb3\xb3\x42\x0c\x4d\x7f\x79\xf0\xa7\xd3\x69\x5f\xa7\xee\xb7\xd5\x37\x8c\x77\x34\x25\xe6\x17\xf2\xa7\xd3\x29\x49\xa5\xf5\xc3\x93\x80\x26\xfe\xc0\x66\x60\xc4\xa1\x14\xfb\xfb\x8a\xa4\x88\x44\x78\x57\x2e\x16\x60\x2e\x92\x09\x09\xc1\x96\x0e\xae\x05\x88\xd4\x02\x42\xff\xa7\xd3\x29\xf2\x53\xaf\x71\xd2\x38\x65\x99\x3e\x0b\x4c\x84\x2c\x2c\x5c\x1f\x9a\x4e\xc3\x6c\x71\x22\x37\xfa\xcc\xcd\x99\x02\x5b\x55\x11\x3c\xda\x00\xa7\xc8\xed\x83\xe3\xcf\x0e\x80\x5a\x31\x1a\xa9\xd5\x23\xf5\x7c\x7c\x59\x0b\x41\x3b\x1a\x1a\xf0\xc5\xa9\x9f\xa4\xb5\x12\xb3\x3c\x0c\xf1\xec\x21\x88\xb2\x1e\x5e\xb6\x49\xe5\x05\x94\xd4\xe0\x6e\x8e\x2a\x77\x13\xaa\xf5\x77\x46\x62\x96\x02\x50\x99\x19\x14\xcc\x66\xa6\xe3\x80\x6d\x69\x59\x16\xd7\xc6\x4d\x2e\xce\xb2\x08\x50\x8a\x19\x34\x41\xd1\x4b\x21\xf5\x57\x45\x10\xc1\xfe\x3e\x99\x4c\x7f\xb8\x21\x61\xb6\x5e\x7b\xa3\x30\xf3\x65\x1c\xd8\x00\x5a\x43\xe3\x6c\xfa\x52\xb4\x25\xf3\x6d\xc9\xef\x5d\xb6\x96\x7b\x2d\xb6\x66\xad\xeb\x2c\x52\x3c\x8e\x9c\x58\x58\xcc\x97\x23\x59\x8a\xfe\x41\xfd\x9f\x88\xd9\x0c\x29\x70\x2a\xf3\x7a\x26\x15\x81\x4c\x9e\xd8\xd4\xb2\xa9\x85\x06\xa7\x20\x3c\xfa\x7e\x00\x38\x81\x27\xdf\x27\x34\x6e\xf2\x5d\x20\x3a\x81\xdc\xee\xef\x1f\xee\xef\xe3\x70\x86\xb6\x92\x15\xda\xfb\x8c\x97\x7f\x7f\xff\xf0\x7f\x69\x5c\x1c\x1e\x6c\x98\x5a\xbd\xd9\xf7\x5c\x22\x93\x4e\x61\x71\x80\x1a\x74\x1e\x11\x0b\xbb\x35\x67\x4b\x2e\xec\x8c\x7a\xb8\xfd\x7d\xd3\x53\x22\x95\x4d\x96\xc5\x02\x85\xfb\xfb\x66\x6e\xf7\x4e\xc3\x06\xf1\x78\x93\xb6\x84\xc4\xf9\x6f\x58\x3e\xf0\x34\x61\x0b\xfe\xd0\xff\x9a\xe0\xf3\xd6\x16\x5b\xde\x62\x12\xe3\x8f\x18\xaf\x98\x77\x8d\xf0\x62\xab\xee\xd7\x81\xe8\x64\x10\x9f\xb5\x0e\x91\xf1\x74\x85\xc6\xed\xb5\x47\xbb\x69\xc5\x55\x3a\x26\x97\x52\x01\x8d\x20\x4c\x6c\x78\x22\xc5\x1a\x9c\xc8\xd2\xd4\x26\xa3\x82\xcc\x35\x2f\x5a\x33\x45\x23\x3c\x81\x32\x09\x56\x2c\x55\x09\x55\xd2\x5f\x54\xcf\xed\x09\xaf\x49\x44\xac\xe5\xb9\x84\x53\xc5\xa2\x6d\xf9\xec\xc8\x2c\x71\x03\x7a\xc0\xd2\x21\x83\xbb\x86\x4e\x73\x9a\x8c\x99\x54\x4f\xe3\x3e\xd2\x7b\x1d\xd0\x88\xef\xef\xbb\x49\x84\x7a\xd4\xab\x98\x89\x1b\x45\x83\x3b\xf7\x35\xef\xbd\xb1\x71\xcc\xfb\xfb\x8a\xc6\x76\x20\xf7\xe4\xe8\x09\x1e\x7d\x66\xae\xb1\xc3\x05\x9c\x89\x0d\xed\xf4\x56\x4c\x1a\xde\x6b\x6a\xce\xd1\x98\xb1\x94\xb0\x34\xa0\x22\x35\x41\xac\xee\xfd\x92\x64\xc3\x12\xbe\xd8\x9a\x68\x67\xac\x85\x07\x1a\x14\xbe\x03\xec\xd8\x6f\xad\xb5\x21\xdd\x9a\xe0\xa5\x4c\xe5\xd9\x8b\xdc\x42\xa9\x24\x79\xbd\xa3\xa0\xc2\x63\xde\x12\x77\xd6\xca\x33\xf5\xab\x17\xb7\x1f\xbb\x2f\xe4\x74\x32\xbd\xb8\xfd\x68\x71\xa8\xff\x09\x51\xa4\xca\xd6\xf9\x30\x86\x6c\xf4\x84\x8c\xc9\x0d\xf3\x07\x1a\x98\x63\xad\x57\xad\xc7\x70\xe2\x8b\xbe\xfc\x72\xf7\x40\x5b\x1e\xeb\xa3\xb7\xe3\xf9\xd8\x9f\xf8\xde\x6a\x3d\x1d\x24\x61\x98\xe4\xe5\x97\x33\x23\x27\xca\x05\xcb\x37\x96\xb5\x63\x22\xa4\x21\x06\xc6\xf3\x07\x3e\x4a\xd7\x94\xe1\xb5\x4a\x24\xf2\x2e\x2f\x33\x97\x87\xa2\xf8\xbb\xc2\xe4\xd3\xdb\x6e\x30\xed\xf1\x76\x7f\x78\xbd\x73\x34\x97\x9d\xe1\x3d\x0d\xee\x58\x2d\x63\xb7\x86\xe4\x49\xf9\xf1\x5c\x19\xb1\xcd\x05\xe7\xe6\x7b\x2d\xe4\x58\xd8\x35\x4b\xf3\x22\x82\xa1\x3b\xab\x64\xa2\x00\x97\xd9\x92\x7a\x5d\xa4\x7d\xd6\xf1\x81\x47\x8a\x25\x90\xdd\xd8\x18\x22\xd1\x67\x1c\xad\xd9\x7c\x68\x8e\x25\xa9\x9e\xbc\xfa\x4b\xf6\xe0\x69\x2a\xe3\x96\xab\xb1\x13\xf8\x30\x02\xcd\xce\x17\x3c\x62\x63\xf2\x67\x2d\x7d\xd0\x2d\x24\x07\xa1\x4b\x90\x8a\xa5\xe1\x1a\xc6\x86\x95\x3f\x6d\x15\x00\x7f\x05\x42\xae\x1c\x23\x4f\x0e\xcd\xcb\x85\xc3\x6b\xdc\x50\x81\x35\x8d\x63\x86\xc9\x66\x42\xc9\x3c\xb2\xb1\x81\x99\x29\xca\x05\x4b\xf4\xb5\xa2\x24\xe4\x8b\x05\x4b\x98\x50\x24\xa6\x6a\xf5\xca\xe5\x13\x87\x49\x26\x0e\x1f\x8c\x36\xa1\xe1\x7e\xec\x31\xd5\x18\x9e\x26\x72\xce\x76\xa0\x0a\x0d\x6f\xda\x0d\x82\x28\xcf\x8a\x81\xd4\x2b\x6b\x60\x6f\x4f\x8c\x06\xa5\x4a\x69\x8d\x15\x78\x06\x0d\xc0\x64\x51\x0e\xa9\x80\xcd\xe1\x0b\x93\x4a\x27\xa4\x57\xd6\xa0\x1b\xca\xa1\x9a\xe3\xb8\x1c\x0f\xba\xa6\x77\x36\x9c\x13\xa2\x36\x4d\xe8\x3a\xdf\x18\x15\xc0\xee\x7e\x83\x32\xa8\xf7\x05\xd4\xc0\x03\x08\x7e\xd7\xfa\x23\x0c\x73\x32\xfd\xe8\x6e\xca\x57\xaf\xd7\x8f\x26\x17\x1a\x9b\xb7\x7c\xcd\x64\xd6\xe9\x75\x2d\xed\x80\x79\xa7\x0d\xf7\x80\x68\xdf\xca\x6c\x2e\x65\x09\xc7\x10\xe2\xf9\xfa\xc0\x21\x9a\x60\x3d\x45\xe3\x28\x4f\x0b\x03\x43\xa3\x38\x00\x32\x7e\xba\xa2\xde\x1d\x84\xeb\x85\x71\x41\x51\x54\x26\xf6\x46\x20\xf7\x73\x0e\x2d\x8b\xeb\x4d\xb4\x3b\x35\x26\x3f\xea\x8d\x33\x71\xd3\x45\x1e\xaa\xd6\xc8\x69\x71\x91\x0e\xbc\xf5\x0d\x48\x61\x17\x43\xb4\xe9\xeb\x64\x72\x14\x64\xb2\xb5\x94\xc5\xc9\x31\x5d\xcb\xcc\xd4\x24\x35\x41\x35\x4e\x0b\x3a\xaf\x5f\x34\xb1\x4f\x2c\x6c\xb6\x3e\x02\x54\x4a\x98\x49\x73\x29\xe7\xb1\xc7\xe6\x82\x6a\x9d\xed\xf3\xa9\xf3\x05\x4d\xee\x2e\x68\xda\x9d\x41\x35\xa9\xbc\x60\x0f\xde\x5a\xff\xdb\x55\xb4\xa1\x0d\x5f\xaa\x89\xa5\x0f\x3f\x93\xe9\x2d\x1e\x0a\x3d\x0e\x99\x6b\x92\x0a\x45\x8b\x6c\xd0\xfc\x5c\xef\xe2\x17\x6f\xf5\x2f\x64\xc5\x1e\x68\xc8\x02\xbe\x2e\x9a\x22\xe8\x03\xe4\x3d\x27\x8a\x44\x8c\xa6\x8a\x7c\x8d\x63\xa6\x4c\x1d\x80\xd9\x5e\x6f\x29\x32\xd4\x20\xa2\xe9\xca\x46\xa6\x6d\xcd\x09\x5c\x5b\x28\xfc\xba\x80\x8d\x64\x01\xa7\xcc\x36\x55\x6c\x5d\xda\xc6\x87\xc5\xe2\x35\x7c\x7c\xbb\xf8\xf8\x3e\x71\xc5\xee\x5c\x1e\xdf\x5e\x19\xd7\x52\x2e\xb4\x23\x5f\x7e\xe4\x76\x4f\x65\xaa\x7e\x4c\xb8\x62\x10\xb4\xb2\x33\xe9\xf7\xbf\x5e\x95\x0c\x21\x84\xab\x91\x4a\x68\xc9\x2e\xd4\x3b\x43\xc9\xbd\x1e\xaa\x9e\x07\x90\xb7\x82\x0e\x56\x2c\xc4\xa8\x38\x48\xa8\x4b\x28\x49\x98\x3f\x3a\x6d\x8e\x4a\x58\x9e\x46\x8c\x49\x6a\x98\x11\x0b\x93\xdc\x53\xe4\xec\x41\x24\xe7\x73\x96\xa0\x7a\x41\x45\x89\x0e\x79\x8d\xaf\xe0\x7a\x4b\x9d\x8c\x0e\x19\x04\x59\xa2\x19\x92\x7d\x9b\xc6\x71\x64\x1b\x6e\x96\xce\x4a\x6e\x32\x6c\xd0\x9d\x62\x16\xa8\x3a\xa5\x1c\x7f\x56\x4e\x81\x1d\x6a\x77\x91\xdf\xfb\xde\x23\x54\x42\xa3\x07\xd8\xb4\x2c\x50\x7d\x4d\x98\xa4\xb3\xc5\xed\xe2\x7f\xd3\xb9\x29\x39\x37\x77\x11\xff\xfd\x95\xe3\x00\xb6\x5c\x21\x40\x1b\x85\x72\x44\xe8\xbc\xef\x28\x1a\xa7\xb4\x44\x0d\xc2\x05\x58\x2c\x1a\x2c\x44\x26\x62\x1d\x07\xcd\x95\xd6\x14\xfc\x77\x60\x65\xa1\x09\x38\x20\xb1\x35\xeb\x39\x17\xd9\x83\x8d\x57\x9b\x67\xcb\x46\x46\xa8\xcf\xef\x82\x3f\xa0\xaf\xc2\x3c\x6f\x7b\xe9\x7f\x39\x7e\xf3\x26\x37\x08\x6a\xee\x8b\x86\xbd\x8d\xfe\x5e\x33\xa4\x65\xc2\x68\x43\xd4\xf0\xd6\x08\xc7\x36\xe8\x36\x0f\x98\x55\xf2\x80\x50\xb2\x72\x12\x66\x30\x95\xb1\x9c\x1f\xe3\x1b\x12\x52\x66\x4a\x87\xf8\x31\xba\xd4\xe6\x9d\xf1\x8c\xec\xaa\xaf\xdf\x65\x73\x06\xdd\x1a\x64\xa2\xae\xb5\xa4\xdf\x1d\x25\xf0\x7d\xed\x15\xd3\xf5\xc9\x5a\x99\xc1\xb9\x90\xe0\x2f\x6d\xc5\xe9\x4c\xce\x28\x29\x32\x46\xc7\xe4\x4a\xd3\x0c\xb4\xe5\x2e\xb0\x58\x98\xf1\x46\xb9\xa9\x65\x56\x9c\x69\xe0\x42\x3c\xde\xa4\x26\x43\x07\x51\x9f\xa1\xcc\xc4\x52\x66\xc1\x82\xbd\x43\xeb\x78\x91\xdd\xdb\x16\xcf\x6b\xfc\xe8\xee\x46\x7d\xa1\x59\xd9\xd1\x17\x6f\x7f\xff\xee\xf7\xde\x64\x9a\x66\xdf\x2e\x15\xdb\xab\x45\x83\xa3\xb1\xd3\xd7\x39\xea\x74\x65\xc6\xa6\x90\x05\xf9\x5f\xe3\xff\xe1\xfb\xfd\x61\x74\x97\xdb\xf7\x46\x5c\xa8\x91\x4c\x46\x38\x5a\x7b\x71\x77\xaf\xa7\x32\x92\xcb\xde\xea\xea\x79\xf1\xac\xa5\x94\x8b\x2c\x8a\x40\x6d\xb3\x7c\x0d\x77\x2c\x92\x4b\x4b\x99\x7c\x2b\x00\x51\xc5\xa1\x57\x20\x2d\x47\x12\x0a\x86\x94\xd4\xbf\x0d\x4d\x0e\x23\xb9\x3c\x74\x85\xcc\x71\x24\xbd\x45\x6c\xda\xd0\x1a\xc9\x65\x4f\x4b\xf3\xb9\x7d\xb2\xd0\xc3\x97\x25\xc3\xb2\x73\x24\x41\xa7\x4a\xb4\xc6\xd4\xb4\x95\xe7\x57\xdf\x5a\x3a\x5d\x36\x7e\x06\x72\x84\x51\xe2\x8f\x58\xc9\x0d\xdb\xb0\x84\xab\xad\xde\x8b\x3e\xeb\x71\x9f\x77\x57\x95\x9a\xef\x09\x9d\x4b\xd0\x10\x35\xab\x8b\xe4\xb2\xd1\x79\x9a\xb2\x22\x4d\x43\x0f\x80\x16\x87\x62\x61\x13\xb1\x90\x9f\xb1\x9e\x9b\x20\x61\xac\x3b\x35\xe5\xbc\xfa\xc6\x93\xad\x29\x55\xa1\xcc\xd4\x53\xae\x68\xdb\x4d\x8e\xcf\x4b\x8f\x3f\xdd\x5a\xb6\xa9\x73\x09\xc9\xa5\x34\x19\xa7\x42\xda\x8b\x06\x44\xd4\x3c\xd5\x6a\x1d\x7c\x0c\x12\xd6\xf4\x01\xcc\xaa\x37\xfc\x6f\xbe\x33\xda\x4a\x25\x6d\xe5\xb9\xe3\x30\xf4\x09\xfe\x65\xf4\x5d\x38\x0f\x5b\xe4\xb9\x2d\x80\x12\x12\xca\x35\xe5\x02\x3d\x44\xcd\xd9\x84\xb6\xc3\x07\xa4\xa0\x50\x41\xa8\x48\xb5\xec\xf3\xc3\x05\xf9\x6b\xc6\x12\xce\xb0\xac\x51\x10\xc9\x2c\x1c\x71\xc1\x55\x0e\x25\x14\xf2\xcb\x5d\x23\xfe\x88\x22\x68\xe6\x2e\x13\x34\xc7\x84\x79\xc6\xca\x9a\x06\x2b\x2e\x58\xae\xdd\x0b\xb9\xa1\x23\x1a\x73\xf2\x52\x26\xd0\xec\x63\x9e\x09\x95\x79\x87\xb4\x8f\x8e\x2c\x18\xaf\xc6\xe4\xb8\x68\x1b\x0a\x04\xf6\x65\x40\x53\xe8\x91\xce\x44\xca\x15\xdf\xb0\x57\x64\xcd\xa8\x68\x36\x3f\x94\x7c\xc7\x10\x96\xc6\x14\xc9\x62\x50\x20\x2f\x8f\x6f\x31\xb3\xd2\x5a\x53\xec\xc4\x40\xfd\x3b\x4e\xd0\x9b\xb7\xbf\x1f\xbf\x1e\xbf\x1e\xbf\xd9\xf9\x18\x99\x49\x1a\x7c\xf1\xfe\xa3\x60\x03\xad\x40\x92\xd7\xff\x36\x76\x8e\x1c\x62\xdc\x6b\x8c\x8b\x68\xa8\xff\xb5\x9e\x73\x61\x8a\x88\x98\x56\x3f\xe3\xd2\x49\x7b\xc9\x17\x80\xa1\xfd\x7d\x7d\xb3\xf6\xf7\x5f\x1d\x38\x81\x3a\x0d\xc2\x37\xa0\x32\x47\xe4\x01\xfa\x15\xdf\xbc\xfb\xc3\xf8\xed\x57\x5f\x8e\xcd\x7f\x8f\xbe\x06\x41\xde\x9d\xeb\xc8\x5d\x97\x57\x69\x9b\x08\xb2\xd6\x42\x90\xde\x6f\x53\xef\xd9\xd9\x44\x6b\x09\x9e\x33\xdb\x36\xca\x21\x70\x5f\xff\xfe\xf7\x5f\xb5\xa4\x12\x37\xdd\x50\x95\xed\x52\x72\xeb\xe2\xf6\xe3\xaf\x51\x6e\x0b\x3c\x6d\x25\xad\x98\x46\x01\xa4\x52\xe6\x66\x2e\xbf\x3d\xfa\xe2\xf6\xe3\xb8\xa4\xf9\x16\x45\xa6\xda\x0a\x4c\x7d\x5e\x35\x29\x41\x95\x35\x76\xf4\xcc\x42\x72\xcc\x23\xe6\x0d\xc7\x8d\xa2\x49\x56\x39\x25\x09\xa4\x13\x13\xae\xd3\x20\x9e\x98\xa4\x13\x7d\x24\xe1\x5a\xdb\x2a\x28\x82\x50\x17\x3e\x12\x4b\x19\xe5\x65\x80\x3a\xb2\x91\xf2\x92\x22\x95\x14\x27\x37\x13\x09\x4e\x40\x01\xb0\x31\x23\xe4\x28\xf6\xd3\xd0\x52\x01\x18\x0b\x84\x14\xe4\x25\x87\x80\x25\xab\x24\x14\xe6\x85\x8b\xe3\x9b\xff\xf9\xf1\xec\xfa\xf8\xf4\x8c\x28\x9a\x2c\x99\xf2\x14\xb0\xe9\xd8\xa1\x5c\x47\xf2\xec\x4d\x93\x16\xd0\xa9\x03\x74\x69\x00\xd5\x4d\xcf\x81\x70\xb6\x1b\xb2\xee\xe0\x3b\xa3\xb0\xa5\xf9\xfe\x68\x04\x37\x99\xc1\x31\x60\x94\x42\xbe\x34\x1e\x90\x10\x36\x38\x8f\xe8\xbe\x3c\xbe\x35\x26\xe7\x4c\xd8\x78\x80\x96\x4c\xf9\x39\x5b\xd1\x0d\x97\x89\x25\xb1\x36\x8e\x2d\xc5\x30\x81\xc6\xbc\xb3\x76\x15\x67\x57\x05\x47\x30\x15\x71\xd1\xe2\x57\x68\xc3\x37\x44\x35\x6b\x70\xaf\xd9\xb2\x4f\x66\xf4\x55\xf9\x79\xcb\x68\x1c\xf1\x42\x93\xb6\x9c\x9c\x69\xfe\x98\x28\xae\xe9\x90\x57\x1d\x44\x0a\x36\x67\x91\x14\x4b\x2c\x15\x3c\xd1\xb7\x0f\xa2\x98\x46\x66\x20\xb4\xf9\x1c\x16\xf1\x17\x21\x8b\x23\xb9\x5d\x33\xa1\x9a\xe5\x0d\x1b\x16\x5c\xb4\xbf\x83\xec\xe2\x95\xbc\x87\x93\x00\x15\x23\x71\xf2\x97\x50\x80\xdf\x31\x5a\x69\xdd\x3b\xf2\x8e\x8c\x72\x09\xaa\x61\xc1\x02\x4a\xd1\x63\xe2\x75\x1e\xe6\xa2\x6f\x24\x8c\x1d\xc8\x75\x9c\x99\xca\x47\xaf\x4c\x25\xea\xcc\x1f\x67\x55\xd4\xf3\xfb\x0b\xea\x46\x3f\x15\xbb\xf2\xc9\xe0\x00\x45\x1b\x67\x31\x5a\xa4\x63\x99\x4a\xa4\x18\xeb\x6f\xbd\xd0\x1a\x50\xb0\xf8\x52\xc1\xf4\xce\xd6\xb1\xda\xee\x2a\x8a\x60\x72\x02\xd4\x86\xa1\x6a\xd5\x53\x9b\x9c\x7a\x5e\x72\x23\x7a\xe7\x5b\xb3\x07\x50\xf5\x0c\x6a\x3c\x07\xd4\x5f\x0b\xca\x14\x63\x40\x16\x8e\xf1\xf6\xb6\xe8\x9a\x2d\xde\x75\x40\x22\x7e\xc7\xc8\xb1\x63\xa1\x8d\xe8\x96\x25\xfd\x92\x87\x1f\x87\x95\x44\xae\x99\x5a\xb1\x2c\xfd\x56\x5e\x30\x95\xf0\xa0\x6f\xbd\xa7\xfd\x69\xe3\xab\xd6\x2e\x90\x92\x6f\xa5\x16\x8e\xc1\xdb\xb7\xc6\x47\xfc\xe2\x5a\x14\x61\xc0\xb3\x0d\x28\xd4\x67\xa9\x18\xdf\x56\xa5\x83\xdc\x83\x22\xcd\xf8\x00\x29\x60\xca\xbc\x87\x52\x49\x8c\x59\x35\x92\x01\xda\x02\xcd\x5d\xcf\x5b\x56\x1b\xa0\x4c\xd3\x3b\x16\x1e\xe0\x73\x0d\xec\xd6\x81\x48\xcb\x14\x9f\x5d\xd5\xb0\x40\xfe\xa3\x51\x5f\x41\xbc\x0d\x4f\xae\xe0\xaf\x05\xf7\x46\x6f\xe2\xc2\xfa\x26\xf3\x5a\x6f\x7a\x49\x9f\x1f\x01\x5c\x5b\x63\x43\x3c\x6f\xc7\x02\xbf\x93\x69\xae\x13\xa0\xbf\xd3\xd6\x5c\x29\x1e\xf5\x92\x26\xb3\xc1\x66\x99\x46\x3e\x9c\x73\x11\x02\xad\x2e\x56\xc7\x3e\xef\xf6\x18\x30\x7b\xe9\x39\xb5\xc5\xb9\x0a\x8f\x4d\xec\x7a\xf2\x05\xfe\xe1\xf5\x1f\x5a\xd4\xb7\x06\x61\xa7\x58\xe0\x14\x5d\x1d\x8f\x3e\xa8\xde\xf7\x0b\x42\x61\x03\xa9\x06\x2a\x51\xbb\x41\x09\x5b\xcb\x0d\xb3\x39\xec\xd7\xbd\x7a\x79\xfe\x68\x6a\x3c\x61\x39\x3c\x5b\xd6\x71\xc3\x4c\x3c\x9f\xed\x35\x66\x6a\xff\x6e\x58\x53\xa0\xca\x9c\xb1\x52\x61\x04\xcb\xef\xc6\xa6\x44\x38\xea\x11\xb6\xd8\x03\xa6\xbc\xe5\x6c\xcd\xf1\x34\x36\x65\xd4\x41\xc0\x04\x0d\xc3\x32\x5c\x45\x06\xa1\x2d\x46\xe7\xd4\x96\x30\x29\xf7\x8c\xfa\x07\xbd\x67\x08\x8b\x59\xaf\x05\x26\xda\x9a\xaa\x16\x66\x86\x9d\xf7\xc0\x94\x2c\xe8\xed\xa1\xbc\xae\xbe\x51\x8a\x79\xd6\x7f\xd7\x42\x12\x1b\xf3\x39\x4d\x24\x97\xca\xd2\x22\xb0\x43\xcb\x79\x90\x92\x03\x71\x30\xa5\x30\x98\x0b\x23\x39\x0a\x29\x46\x7f\x63\x89\xd7\x9c\xc1\x1d\x9b\x97\x23\x8e\xa6\x65\x07\xcb\xce\x9e\xb0\x1c\x4f\xb7\xb7\xe7\xfd\x51\x74\x7b\x7b\xee\x06\x06\x8d\x94\x1c\x45\x7c\xc3\xf2\x78\x5a\xd0\x7c\x90\x40\x8c\xee\x1b\xea\x4d\x1b\xfc\x18\x2c\x96\x09\xdf\xee\xcb\xd0\x87\x64\x57\x9f\xf4\xb5\xe7\xa5\xcf\x88\x42\xcd\xeb\xb2\xec\xee\x8f\x26\x2b\xea\xb7\x31\x3f\xd6\x1f\x8d\xf5\x61\xac\xeb\xb9\x5d\x0c\x7d\x2c\xba\xb1\xa0\x4b\x3f\x2c\xe3\xb3\x85\x36\x91\x9a\x26\x64\x88\xd6\x25\xc3\x80\x9e\xf6\x3a\xc1\x79\x27\xba\x31\x19\x11\xdb\x00\x63\x32\x4d\x8f\xd0\xf8\xe2\x2d\x1c\x15\x48\x91\xaa\x24\xf3\xf7\xdb\xb2\xb4\x6b\x64\x70\x3a\x99\x1e\x5f\x94\x1d\xf4\x23\x18\x5a\x7f\x0f\x7b\x59\x1a\xd1\xbe\xfe\x18\xd4\x41\x8c\x52\x93\x99\xc3\xd3\x0f\xb2\xa8\xd9\x4d\x43\x5b\xfd\xc8\xf8\xf6\x71\xa7\x8d\x01\x46\xdf\xbb\x0d\x4d\xb8\xf4\x8b\x1e\x4e\x67\x80\xeb\x32\x18\x15\x43\x07\x74\x50\x63\xe5\x26\x77\xa4\x39\x1a\xd6\x2d\x73\x6f\xe4\x99\x2c\x7d\x44\x2f\xe9\x35\xf5\x29\x78\xa4\x4f\x42\xeb\x9a\x37\xf5\xa6\xec\x78\xb5\xb5\x31\xfb\x9a\x7a\x82\x50\x46\x7a\xb2\xa6\x4d\xf7\xa7\xae\x1a\x7d\xf1\x5c\xca\x78\x8a\x15\x0e\xfb\x18\x3e\x7e\x44\x31\x08\x7d\xfe\xe0\x62\xd9\x68\xe4\xa5\x0c\xd4\xfe\x82\xd9\x1e\xd8\xb2\x89\x6d\xf7\x27\x92\x32\x4e\x9d\xc2\xd3\x64\x32\x35\xe2\x04\x4d\x98\x09\x4a\xd6\xbb\x86\x65\xa1\x4c\x85\x3f\x02\x19\x57\x7a\x45\x8d\x9e\x73\x53\x11\x0c\xb3\x25\xf3\x3c\xf3\xd3\xcb\xe3\xdb\xfd\xfd\xb0\x9a\x54\xf6\x51\x44\x60\x44\xcd\x0b\x43\xdb\xf2\xfa\x7b\x5e\xe3\x07\x17\x36\xb6\x8e\xa6\x8c\xa4\x59\xb0\xb2\x2b\x34\xcb\x09\xa4\x50\x5c\x60\xec\xc8\xdc\x94\x1d\x29\x95\x4b\xf4\x8d\xfa\x98\x9a\x5d\x29\x0f\x59\x40\x93\xe3\x20\x60\x11\xc3\x3c\x9c\xbe\x12\xf5\x4d\xe3\xab\xb9\xf2\xc7\x1e\x34\xbb\x59\x03\xa1\xb7\x53\x35\xb0\x83\x7c\x8c\xcf\xd6\xf3\x20\x8e\xa6\x47\x65\xa7\xf2\x6a\x3e\xfa\xde\xca\x5b\xd0\x53\x21\xc5\x76\x2d\x33\x5b\xbf\xd3\x86\x10\x79\xcd\xd6\x28\xad\xbb\x25\xcf\x53\xfe\x37\x66\xaa\x98\x95\x7b\xf0\x8d\xc9\xb9\x5c\xa6\xe4\x9e\x26\x82\x8b\xa5\x16\x1a\x54\xd6\xd4\xb1\x72\xbe\xc5\x5a\xcb\x50\x59\xd7\x3a\x9e\x9c\x7c\x2d\xa8\x2c\x41\xa1\xbe\x27\x5f\xf0\x80\x0a\x55\xd4\xc3\xd8\x64\x91\x60\x09\xc5\x12\x14\xbe\xc1\x57\x34\x45\x11\x3b\xe4\x69\x20\x37\xcc\xd8\xc5\x54\xd1\x95\x0e\x6a\x53\xe1\xe2\x8b\x6e\x93\x1d\x27\xf2\x51\x5a\x46\x79\xff\x26\x82\x2b\x4e\xa3\xa6\x2a\x5f\x6d\x9b\xe8\xbe\x5a\xae\xfd\x6b\xcb\x2b\x87\xfa\x27\xbf\xb6\xb1\x90\x39\x17\x5f\xd3\x3b\x86\x7e\x26\x3d\x70\x25\xf0\x67\x67\x11\xa3\xba\xbc\x9e\x32\x5d\x75\x69\x46\xaa\x2b\x2d\xab\x26\xd0\x37\x9b\x89\x71\x4d\x1e\x19\xf5\xeb\x77\x5f\x3e\x6a\x51\x98\xd4\x20\x68\x74\xfa\xff\xb1\xf7\xbf\xcd\x71\xdb\x48\xa3\x28\xfe\xfe\xf7\x29\xb0\xf2\x53\x25\xfb\xfc\x34\x23\xdb\x49\xfc\x24\x4a\x6d\xdd\x92\x25\xd9\x99\x5a\x5b\x9a\x23\xc9\xc9\x6e\xed\xec\xa3\x07\x43\x62\x66\x70\xc4\x21\xb8\x04\x38\xd2\x6c\x36\xb7\xce\x77\xb8\xaf\xee\xd7\x3b\x9f\xe4\x16\xba\x01\x12\x24\xc1\x3f\x23\x4b\x4e\xb2\x4b\x56\xed\xc6\x1a\x82\x40\xa3\x01\x74\x37\xfa\x6f\xcf\x8c\xac\x0d\xab\xbf\xb9\x8f\x68\x0b\x09\xea\xfe\xb6\x4f\xcc\x19\x54\x06\xfb\xed\x05\x9d\x01\xfc\x0f\x09\x16\x87\x0f\x7f\x3c\x9f\xec\xfa\xdd\x1d\x4f\xd9\x32\xa3\x69\xd8\x97\x4a\xfe\x54\xf9\xa0\x9e\xcb\x39\x6f\xe1\xf0\xf1\x27\xa9\x68\x92\xc3\x9e\x3b\x78\x9f\xd3\x75\xb7\xd4\xfe\x93\xf7\xb3\x8a\x98\x08\x26\x18\x63\xfc\x6c\x70\x59\xd4\xcd\x9c\xb9\xda\xce\xdc\xa3\x74\xb7\x1c\x1b\x23\xc4\x8e\xa7\x29\x9f\xda\x07\x2e\x15\xd3\x9c\xa1\x97\x36\xef\x27\xef\x67\x95\xac\xe7\xf6\x15\xaa\xf6\x9a\x2c\x7c\xf3\x6d\x31\xb9\x52\xc0\xce\xab\x6f\x5f\xef\xbe\xaf\xf3\xf9\xf4\x39\x9b\x3f\x39\x8d\xcb\xb0\xeb\x1f\xcc\xf1\xf4\x61\xde\x37\x8f\x2b\xc6\x5a\x0f\xe9\xe7\x4c\xe6\x12\x25\xb6\xcb\x2c\x62\xd3\x94\x0b\xcd\x67\xfb\x4f\xce\xf3\x71\x79\xb2\x89\xfd\xb5\x31\xb9\x52\xb1\x3f\x2b\x28\xb1\xa2\xa4\xbe\x46\x97\xd4\x0f\xdf\xed\x3c\xd9\xfb\xb0\x77\xd9\x09\x4f\x6a\x92\x3f\x9f\x4e\xcb\xa2\x9d\x86\x55\x66\x5c\x99\xa2\x52\x90\x0c\xd4\xbf\x01\xf3\xe4\x8a\x21\x8b\xb7\x75\xc7\xc7\x07\x09\x16\xf7\x61\xb2\xab\x26\xe5\xcf\xa7\xd3\xc7\x8d\xe6\x85\x2c\x2d\x0f\x0a\xe4\x35\x6a\x12\x2f\x1b\xaa\x97\xcf\x12\xa9\xa9\x19\x87\x89\x8a\xe1\x8e\xed\xd7\xa8\xfc\xf9\xd4\xeb\xe2\x5f\x0f\xf7\xdd\x5d\x9f\x32\x94\xef\x06\x00\xb1\x64\x35\xfa\x7e\x19\xb7\x06\x30\xa3\x72\xf6\x14\x05\xbc\xdf\xc3\x38\xe7\x38\x0e\x5a\x8d\xf1\x75\x51\xc1\xdb\xd3\xa4\x5e\xc2\xdb\x0b\xaf\x59\x9d\xbc\x88\x77\xbd\x11\x0c\xf6\x54\x55\xbc\x87\xaa\xdb\x43\xd5\x6d\x77\x09\x86\xaa\xdb\x4f\x59\x75\xbb\xad\x28\x76\x92\x44\xdb\x8b\xf8\x1d\x96\x6b\xeb\x62\xa3\xc7\xa5\xd6\xa8\x84\xb5\x95\x8c\xa0\x27\x54\xc6\x16\x85\x01\xb8\xcd\x52\xef\xe3\x4c\x28\x47\x40\x4f\x36\x16\x67\x47\x41\x20\x14\xe7\x42\x5d\x6b\xe1\xa3\x0b\xf2\xd3\xbc\xa5\x03\xb5\xbd\xea\x58\x1d\x21\x38\x1d\xa1\x69\x30\x9f\x47\x83\xd6\xcf\x99\x9a\x25\x15\x4b\x51\x94\x58\x31\xa6\x15\x02\xf7\xe7\x7d\xe9\xd6\x23\x04\x59\x89\xc7\x4b\xaf\x3e\x11\x34\x88\x54\x1a\xcd\x79\x60\xf3\xac\x63\xc1\xbc\xeb\xd4\x66\xa7\xf2\x61\x98\x50\x7f\xe6\x3f\x30\x99\xea\x49\xa1\x26\x84\xc6\x5b\x07\x34\x2f\x60\x98\x47\xd2\xe0\xc4\x68\x2c\x1b\xf5\x58\xa5\xf1\x21\x9a\x98\x41\xca\x4e\x63\x23\x9e\x33\x62\x84\xc3\x5d\xd7\x16\x8b\x1c\x74\xa7\xe1\x67\xe8\xdc\x8b\xd5\xae\x20\xdb\x3a\x56\x47\x30\xa2\x26\x39\xa3\xc1\x0a\xdd\xd4\x6d\x61\x79\x2f\x96\xec\xd7\x38\x6f\xe3\x7f\x16\xa4\x5c\xb1\x94\x53\xcc\x8a\xe5\xf8\xeb\x43\xda\x30\x83\x36\xb3\xf5\x77\xca\xa5\x5e\x9a\xc3\x6c\xef\x98\xe8\xfb\x83\x5b\xe1\x5c\x16\x10\xf9\x40\xf1\x4a\x8f\x24\x2f\x24\x42\xde\x0a\xb5\x32\x81\xe8\x22\x1d\xcd\xa9\x04\xf4\x18\x1d\xe2\xd4\xac\x57\xec\xfe\x86\xe5\x6e\xbc\xb8\x01\x19\x92\xa5\x2c\x0e\xec\xce\x1b\x39\x49\x22\x45\xa6\x30\xb4\xd3\xc6\x0a\x9a\x72\x48\x22\x85\x52\x8e\xb6\x1c\x61\x03\xc0\x71\x98\x57\xb3\x70\x10\x0f\x31\x5f\xb3\x59\x8c\x8b\x97\x08\x8c\x55\xa8\x62\xa2\xc1\x24\xa9\x17\x33\x66\x4b\x00\xce\x88\x04\x07\x26\x5c\xcb\xba\xef\xcf\x66\xb3\xbd\x73\xa1\xf4\x7f\xc6\xe4\x38\x8a\x4c\xe8\x85\xdb\xbb\xbf\x67\x53\x41\xd4\x54\x94\xca\xd3\xac\x52\xc5\x25\xa4\xd1\xc4\x98\x56\x33\x15\x5b\x86\x79\x4c\x8e\x4d\x86\xb9\x06\xec\xc2\xe6\xa4\xb1\xdd\xa0\x26\x4a\xc1\x4c\x5a\xa3\x08\xa6\xa3\xff\x70\x54\xb8\x14\x3b\x6f\xc6\x2b\x60\xdf\x0f\xa2\xa5\x21\x05\x88\x0d\xe5\x54\xba\x32\xc4\xd2\xa6\xcc\x0b\xf8\x74\x27\x89\x75\x6a\xe4\x37\xf6\x52\x26\xe4\xc5\x07\xf9\x81\xf6\x2c\x9f\x31\x1c\xe9\x83\xd9\xd4\x2d\x5c\xbc\x9d\xf1\x89\xe6\xd2\xca\xef\x12\xd9\x0b\x19\xc4\x54\x93\x86\xb4\xa8\x57\xe6\xf0\xb5\xb4\xad\x91\x81\xf3\xea\xc7\xc6\x29\x5e\x24\xc6\xa0\xba\xe0\x2c\x0a\x1b\x63\x75\x8a\x27\x47\x0c\xcd\x89\x80\x13\x54\x61\x42\x72\x4b\x75\x98\x44\xca\x97\x1a\x0f\x4d\x14\xc0\x3e\x20\x7f\x3d\xd7\x5b\x88\xa5\x6b\xfc\x80\x50\xf5\xc2\xb1\x69\x3b\x45\x76\x71\x6c\x3f\xf3\xf0\xa0\xac\xa8\xef\x62\x18\xb1\x71\x3b\x87\x8d\x5c\xc3\x4d\x7b\xa7\x48\x25\xf1\x22\x9e\xa3\x40\x73\x28\xbc\x30\x84\x79\x9e\x02\xba\x66\x26\xf6\x46\xad\xfc\x97\xf2\xe2\x81\xec\x07\x3e\x33\xbe\x35\x52\x3a\x02\xc4\xdc\xa5\xc0\x1d\x48\xb5\xd3\xb6\xf8\x72\x05\x10\xa4\x83\xef\x44\x4a\x4a\xd7\xbc\x83\x46\x1e\x60\x1f\xcc\x82\xeb\xd9\x52\x6b\x2d\x0f\xc8\xc2\x19\xd0\xdd\x6c\x11\x5f\xf3\xce\x05\x03\x05\x7b\x84\x26\xd7\x46\x9c\x70\x07\xbf\xf9\x0a\x77\xac\x19\x1e\xe4\xd2\x3c\x1b\xa7\xbf\x8f\x37\xd6\xe7\x2f\xbc\xa9\x2f\x8b\xe7\xcb\x20\xa0\x74\x11\xbf\xd2\x7c\x3b\x25\x3f\x08\x99\x17\x4b\x83\x69\xb4\x77\xaa\xe7\xe8\xb9\xcf\x1f\x40\xea\x8f\xf6\xb5\xec\x80\xd6\x9d\x22\x4a\x83\x20\xb0\xfb\x12\x5e\x06\xa9\x90\x20\xf3\xf5\x3d\xb2\x0d\x8c\x23\x1f\xbb\x93\x01\x10\x0c\xd6\x68\xa3\xa9\xd5\xf0\x17\x66\xaa\x17\x78\x09\xa3\xbe\x68\xaa\x94\x07\xaa\xb1\x24\x6b\xf1\x58\x16\x08\x4b\x68\xee\x2f\xa2\x89\x2e\xe6\xa4\xaf\x03\xdb\x65\xba\x58\xc4\x9d\xa2\xc0\x0e\x89\x77\xd0\x67\x65\xc9\x37\x2c\xd6\x97\x54\x3d\xfd\x46\xae\x43\x5a\xe5\x48\x67\xdc\x5e\x98\x6e\x8d\xfb\x2f\x9e\x58\xa8\xf3\xdd\xd6\x04\x3f\xc8\x23\x5f\xca\xe2\x97\x9d\xf1\x79\x43\x05\xb4\xe2\x81\x75\xfc\xcd\xe1\xa2\xa9\xd4\x46\xf1\x54\x91\x91\x97\xd8\x68\xc1\xc6\xb4\xc9\x37\xb3\x78\x10\x1d\xe4\x0a\x32\x70\xc3\x2e\x85\x6a\x80\x36\x3f\xbd\x44\x47\x5b\x53\xc4\x01\x12\xf2\x6c\x9b\x4b\x78\x14\x4f\x25\xf5\xbb\x2a\x67\x04\xcb\xcb\x09\xa0\x44\x65\x08\xb9\xbe\xa0\x74\x52\x45\xe0\x61\xb6\xaa\xfb\xc9\xd4\x26\x6c\xff\x74\x3a\x6d\x48\xec\x6e\x9f\x3e\xab\xda\x9c\x62\xa3\x78\x7a\x24\xdb\xa8\x37\xee\xde\x28\xdd\x09\x38\x8a\x67\xf7\x54\x1c\xc5\xd3\x77\x43\xee\x2e\x5c\x9e\x17\x1f\x75\x6c\xcb\x7e\xf2\x95\xd9\x99\x60\x97\xcb\x3b\x46\x2a\x8c\xb6\xa1\xb9\x8a\x98\x82\x64\x9e\x50\x3f\x00\xc7\x6a\xef\x33\x97\x96\x5a\xb7\x4a\xbf\x35\x4b\x76\x3b\xb2\xb3\xbd\xa2\x28\x4e\x07\x5b\xe9\x66\xb6\x3d\xd8\x0a\xd8\x84\x6c\xac\xed\x73\xe7\x12\xe2\x89\x47\xad\x4e\x0b\x7b\x40\x51\x53\x12\x93\xe1\xcd\x4d\x85\x73\x68\x15\xca\xd7\x79\xe6\xa6\xf6\x5e\x4b\xa5\x80\xcc\xd1\x01\xcb\x13\x62\x59\x5a\x0c\x18\xed\xac\x19\xa6\x43\x56\x5e\xd8\xfc\x3f\x5a\x80\xeb\x4b\xc1\x3a\x29\x80\x09\x6c\xdd\x85\x82\x75\xcc\xbd\x20\x6f\x15\x0a\x36\x43\x1a\x36\x33\x54\x6c\x86\x74\x6c\xa6\x29\x59\xab\xcc\x33\xd0\x32\x78\x7a\xd1\x32\xf9\x80\x5b\x72\xf7\xe5\xb8\x55\xd3\x57\x3c\xde\xcb\x31\x79\x2e\x19\xb3\x2a\x32\x20\x65\x98\xd7\x56\x6e\x63\x45\xef\x7d\x11\xfd\xee\x33\x9b\xb5\xde\xad\x8d\x0c\xd9\x74\x77\x6e\xef\xdb\x6a\xc6\x9c\xab\xb5\x48\xeb\x57\x66\x7d\xdc\xce\x85\x42\x6b\xf4\x51\x43\x22\x5f\x07\x09\xc6\x5d\xdb\x9a\xb3\x3a\xb8\x02\xa2\xc7\xe1\x26\xed\xbd\xcf\x59\x24\xee\x5e\x1c\x94\x41\x76\x90\x8d\x58\xb5\x45\x93\x6d\x71\x85\x8e\xcb\x07\x28\xc3\x40\xcd\x79\xbd\x62\x44\xdd\x09\xd8\x6b\xe0\x0b\x6e\xdf\x21\x81\xd0\x4c\x68\x5b\xe4\x12\xee\x58\xbb\x8b\xd8\xce\xde\x54\x75\x75\xd4\xaf\xcc\xb9\x25\x99\xf4\xfc\xa0\x5a\x30\xed\xbb\x79\xc2\xdd\x4a\x44\x66\x91\x8e\x60\x89\x66\xb3\x82\x21\xff\x11\xa8\xcb\x1f\x56\x54\x3e\x5f\x6f\x6f\x22\x3a\x67\xd1\x0b\xa0\x3b\x86\xc8\x77\x1d\x67\xc7\xc3\x59\xcf\x1b\x36\x19\xc2\x87\x0e\x05\x23\xe3\x90\x12\xb1\x50\x8f\xdb\x73\xbf\xb9\x1e\xd3\x79\xc1\x51\x00\x0e\xc0\xb5\x90\xa2\x12\xd5\x4c\xa9\xf7\xc6\xc0\x29\x37\xce\xb8\x3e\x29\x0d\x45\x53\xc5\xb3\xe2\x69\x9f\x6f\x3e\xa5\xae\xe9\x74\x1d\xf2\x18\x76\x1e\x5b\x2c\x58\x60\xa2\x2c\x8d\x2a\x21\x02\xd2\x6a\x42\xd7\x4a\x95\x9f\x7b\x00\x1f\x8b\x78\x64\x63\x14\xd0\x52\x8b\x31\x28\x46\x2f\xb2\x10\xe9\x9a\xb9\x4a\x0a\x70\x44\x6e\xae\x2b\x5d\x3c\xb0\x21\xea\xa8\x29\x2a\xbd\x3c\xc6\x25\xde\x78\xed\x1f\x07\x81\xc8\xe2\x5d\x64\xaf\xab\xf2\x87\x5f\x4c\x06\xab\x90\xe5\xf6\x3e\x3d\x2a\x4f\x4a\x12\x11\xe6\x89\x9a\x40\xa0\xcb\x49\xb4\x41\x46\x07\xe9\xc5\x19\xb7\xee\xb6\x5e\x4a\x67\x42\xca\xfe\x23\xcd\x4f\xf9\x4e\x00\x35\x70\x3e\x1b\xdd\xe4\x21\x28\xef\xee\xb2\x49\xd3\xec\x41\x7b\x2f\x6c\x93\x02\xe3\x9a\x1a\x4b\xe3\x1c\xca\x73\x55\xa5\x16\x80\x3b\x4e\x7e\x3f\xe1\x8e\xec\xa0\x82\x20\x7d\x25\x25\xd2\x57\x5a\x22\xf5\xf3\xd5\x29\x2f\xfd\xeb\xae\x74\xe9\xae\x54\x68\xdd\x90\xee\x5b\x7c\x8e\xc9\xa4\xe3\xe6\xa1\x9f\xc2\x0c\x01\xd6\x85\x2b\xd7\xaa\x50\xdc\x45\x94\x49\xaa\xdf\x68\x8f\x2f\x3f\xc7\xe7\xa7\xfb\x0d\x7e\xd5\xee\xb3\x9b\x46\xab\xa9\x3a\xa1\x7d\x6c\x72\x90\xdd\xa4\x6e\xfc\xe6\xb3\xa5\x6e\xfc\x12\x0d\xc4\x39\xbd\x74\xaa\x13\xd9\x81\x20\x9f\x6f\x51\x04\xb5\x87\x65\xa6\x55\xe8\xae\x6e\xaf\xbe\x52\xb7\xc7\x9c\x65\xf1\xf7\x5c\xbe\xa8\x8a\xdf\xa6\x32\x52\xdc\x66\x75\x24\xa0\x2b\x3b\xc4\x02\xa7\x34\x58\xe5\x90\xec\x4b\x82\x71\x29\x70\x63\xb6\xf8\x0e\x72\x87\xa5\x1c\x19\x5d\xb8\x28\x5b\xb6\xf4\xc9\xb1\x9b\xf5\xc0\x15\xdd\x0f\xea\x16\x85\x0e\x34\x9f\x33\x2d\xfe\x5a\x65\xaf\x48\xab\xbc\x1b\x41\x9f\x9a\x48\xab\x30\xd7\x84\x76\x58\x2b\xf5\x7e\xd2\x0b\xe8\xce\x11\xf5\x46\x39\x16\x44\x6c\x1d\x09\x8c\x63\x47\xbb\xc8\xb2\x13\xdb\xdc\x9d\x6b\xfa\xa2\x0c\xc0\x24\x5f\xec\xe3\xee\xa3\x6f\xe6\xe6\xd8\xe0\x1f\x89\x08\x38\xf6\x99\x07\x08\x04\xfa\x33\xcf\xfc\xf0\xf7\xe6\x64\x99\xe5\x07\xa9\xac\x99\x21\x9c\xe4\x88\x2d\x14\xda\xb1\x0a\x17\x26\x3c\x3d\x3d\x94\x34\xc4\x3d\x88\xb9\xc7\xd1\xbe\x2c\x20\xfb\xa2\x14\xb4\xbb\xcd\x4a\xa9\xa4\x9f\x3f\xc3\x0f\xd7\xd7\xd3\xc2\x5e\xdf\xe8\xc4\xa0\x77\x89\x6e\xda\x0c\xba\xf5\x72\xfc\x3c\xff\x85\x35\x53\x2b\x11\xee\xc0\x19\x3e\xe2\x07\x8f\x2b\xb5\xe3\x94\x91\xa8\xe3\xbc\x1d\x27\x4e\xdd\x27\x56\xa5\xd0\xfb\xb1\xbb\x53\x88\x94\x09\xb1\x17\x0b\xed\x73\x36\x5e\x8e\xc9\xfb\xb3\xeb\x03\x32\xfd\x74\x7d\x40\x98\x0a\xc6\x2f\xc8\x47\x53\x27\xb2\x43\x0f\x63\xfa\xd0\x7c\xff\xe2\x72\x5f\x5f\xc3\x96\xe0\x47\xf8\xdb\xb2\x5b\x25\x54\xad\x76\x58\xc7\xfd\xa9\x6e\xff\x14\xcb\xd8\xb5\x82\xdd\x14\xc5\x5d\x41\x00\x73\x9c\x2f\x15\x4e\xd3\xae\x45\xdf\xc5\x20\x84\x8d\x97\x47\x64\x44\xd8\x3d\x0d\xd4\x11\x39\x5c\x08\x01\x75\x9f\x21\x83\x1b\x39\x9c\xd3\x94\x9c\x5f\x5c\x9f\x1d\xa1\x03\x1a\x8b\x55\xba\x25\xeb\x2e\xf1\xfc\xe2\xfc\xc3\x5f\x0c\xe5\xdc\x12\xc6\xb1\x34\x06\x99\xed\xc1\x20\xa8\x45\xd6\x7f\xe2\x28\x56\xd7\xd1\x58\x65\xb5\x78\x36\x34\xe2\x21\xcd\x95\x7d\x58\xd8\x43\x8b\x4f\x5c\xf9\x72\x3b\x14\x4f\x9f\x3d\x57\xde\x04\x1a\xc5\x90\xcb\xbd\x94\x45\x14\x10\x6f\x33\xba\xf7\xe3\x55\x13\x05\x9e\xdb\x73\x66\x11\x61\xf4\x88\x0b\x91\xae\x8f\x2c\xda\x67\xd9\xcb\x97\x5f\x05\xba\x63\xf8\x17\x3b\xb2\x99\x78\xfa\xa8\xbd\x70\xab\x01\x54\xd0\x5d\x04\x25\x9f\xed\x12\x16\x5d\x8f\x0c\xbe\x3f\x6b\x04\xec\xa3\xc3\xd5\xa4\xb7\xd0\x41\x0c\x02\x1e\xf7\x1a\x99\x34\xe5\x1f\x7c\x78\xa7\xfd\xae\x13\xbd\x08\x52\x77\x57\x3c\x58\xf7\xe4\x99\x93\x93\x8f\xd3\xbe\x1e\x20\x40\x8c\x9a\x61\x77\xa9\x14\xb5\xbb\x3e\x00\x68\x31\xf0\x5f\x84\x40\xa3\x60\xc8\xbc\x62\x44\x63\xf9\x6c\x7c\xdc\x62\x39\x25\x99\xd6\x54\xdb\xcb\xed\x53\x08\x34\x77\xf2\x4d\xe8\x71\xda\x44\x5b\xb0\xa7\xeb\x46\x9b\x37\x2d\x7a\xca\x5e\x3b\x51\x4f\x6d\x07\x3e\x0f\x92\x89\x88\x5d\x2c\x01\x52\x02\xc8\xa4\xb9\xcb\x65\x0d\x72\xd2\x69\x04\x63\xbc\x08\xb8\xa8\x42\xd6\x2e\x17\x57\x45\xc2\x2e\x4a\x14\x0b\x56\x31\x0f\x68\x87\x57\x12\xa8\x45\x51\xfd\xcf\xd7\x89\x90\x85\x23\x1d\x96\x8b\xd9\x97\x45\x22\xe0\x05\x4f\xd9\x1d\x8d\xfc\x29\x4d\x8b\x07\xa9\x85\x51\xca\x62\x3a\x61\x41\x58\x5c\x14\x9d\x07\x17\xbd\xee\xa3\xd1\x69\xc3\x83\x66\x9f\xbf\x18\xba\x9b\x31\x71\x93\x49\x74\x99\xc0\xf2\xfc\xf0\xdf\xa2\x97\x37\xcc\x10\xfa\x3a\x0b\x56\x82\x5c\x22\xd3\x26\xcf\xf9\x98\x8d\x49\xc2\xe3\xa5\x6c\xb7\x81\xf5\x9a\x6f\x0f\x62\x90\xf8\x03\xc1\x1a\x10\x32\x99\xda\x80\xb0\xcf\x76\x0c\x2b\x29\xb7\x50\x1e\x77\xb1\x3c\xb5\x96\xb1\x46\x2c\xf4\xc0\x40\x43\x48\x4f\xc3\xe4\x6c\xb2\x77\xc7\xad\xb7\xc8\xb1\xe4\x64\x9d\xca\xab\x35\xb5\x4f\xee\xb3\x88\x06\x28\x23\x30\xff\x5e\xeb\x76\x2d\x20\x9c\xf6\xe5\x8a\x7d\xd9\x52\x39\x22\xa9\x80\xc7\x84\xa2\xa1\xd5\xee\x96\x99\x80\x6b\x92\x50\x9e\x36\xd7\x37\x28\x1e\x7d\x65\x35\x35\xd6\x5c\x9c\xd2\xb9\xc8\x54\x0f\x46\xf2\x58\x37\xc7\x58\x28\x7d\xfa\xfa\xed\x8c\x73\x6c\xdc\xe1\xd1\x03\x4d\xda\x3d\xeb\x06\x86\x31\x30\x8c\xdf\x37\xc3\x88\x85\xb2\x62\x55\x23\x5a\xda\xbd\x6e\x7a\xfa\xdb\xf4\xf3\xb4\xa9\x39\x84\x5a\x91\xaf\xc3\x27\xd4\x34\x6b\x46\x58\xc7\x39\xee\xe1\xda\xf3\x30\xa7\x9e\xe4\xb7\x8a\xdc\xd9\x9e\x8b\xdb\x47\xe4\xfd\x35\xc3\x16\x68\x78\x5d\x49\xc0\xe2\x64\x0c\xbb\x9e\xa7\x6d\x9a\x79\xe3\x9d\x6b\xd6\xf9\x0c\x42\x8d\x2e\x21\x52\xce\x46\x7d\xa1\xda\xfc\xf9\x9c\x05\x34\x93\xc6\x27\xae\xc3\x94\x90\x83\x18\xb0\x14\xfa\xc8\xfd\xea\x5e\xa0\x2a\xde\xe6\x6d\x2d\x79\x09\x76\xb1\x58\x74\x1f\x3c\x72\x3d\xe0\x0e\x5c\xff\x37\xfc\x03\x6e\x2a\xa5\xbf\x36\x6f\x8a\xbf\xaf\x4e\xae\xf1\x6d\xf3\x30\xa6\xc7\x0f\x5c\x31\xeb\x64\x07\xc5\x5a\x60\x83\x58\xa3\x2c\x16\xb4\x78\x35\x7a\xfd\xcd\x37\x2d\x2a\xff\xa7\xdb\xf6\xb2\x29\x85\x28\x3e\x65\x43\x6b\x9e\x42\xb4\x47\x54\x5a\x43\x4d\x20\x77\xd4\x21\x20\x6d\x08\x48\xeb\x61\xf6\x1c\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x6b\x9a\xf1\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x5a\xd3\x4c\x06\x5a\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\xe1\x33\x04\xa4\x0d\x01\x69\xd5\x67\x08\x48\x1b\x02\xd2\xf2\x67\x08\x48\x1b\x02\xd2\x86\x80\x34\x6f\xa7\x43\x40\x9a\x83\x8b\x21\x20\x6d\x08\x48\x1b\x02\xd2\xca\xcf\x97\x0c\x48\x6b\x29\x21\x49\xc8\xc8\x64\xf1\xf5\xbd\x6b\xef\xb8\x45\x4e\x30\x67\xe3\x01\xe9\xbb\xcb\xa7\x6a\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x0f\xf9\xbb\xfd\xe0\x0d\xf9\xbb\x07\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\xaa\x78\x06\x77\xa9\xe2\x19\xdc\xa5\x06\x77\xa9\xdf\x94\x8b\xc1\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\x94\xb7\xf1\xef\x8c\x96\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\xe5\x79\x06\x77\xa9\xc1\x5d\x2a\x7f\x06\x77\xa9\xc1\x5d\x6a\x70\x97\xf2\x76\x3a\xb8\x4b\x39\xb8\x18\xdc\xa5\x06\x77\xa9\xc1\x5d\xaa\xfc\x0c\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\xd2\x33\xe4\xef\x1e\xf2\x77\x0f\xf9\xbb\x7b\x8d\x30\xe4\xef\x1e\xf2\x77\x0f\xf9\xbb\x87\x74\xac\x43\x3a\xd6\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\xdd\x0c\xff\x90\xbf\x7b\x60\x18\x03\xc3\x18\xf2\x77\x0f\xf9\xbb\x4b\xcf\x90\xbf\x7b\xc8\xdf\x5d\x79\x86\xfc\xdd\xcd\x17\xc8\x21\x7f\xf7\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\xee\x33\x04\xa4\x0d\x01\x69\xbf\xa9\x20\x8e\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\x34\x6f\xe3\xdf\x19\x2d\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\xcd\xf3\x0c\x01\x69\x43\x40\x5a\xfe\x0c\x01\x69\x43\x40\xda\x10\x90\xe6\xed\x74\x08\x48\x73\x70\x31\x04\xa4\x0d\x01\x69\x43\x40\x5a\xf9\xf9\xd7\xce\xdf\xdd\xc7\xed\xc0\xbf\xd4\xed\xd2\xc1\x02\xbd\x44\x8a\x1b\xbb\x0f\xea\x4c\xe2\x5d\x04\xe9\xa3\x61\xdb\x98\x04\x5b\xc4\x25\x5b\x61\xc3\x94\xfc\xab\x02\x89\xc6\xbb\xe6\x71\xa1\x1b\xb5\xf0\xa4\xf2\x46\x16\xd8\xda\x3b\x0b\x74\x25\xc4\x5c\xd0\xa0\xfc\xd1\x9d\x82\xb5\x34\x1c\xa3\x3e\x28\xd7\x66\xaf\xf8\x52\x5f\xae\x67\x7b\xd0\xdf\x6c\x0f\x44\x00\xd3\xd6\xd7\x35\x5d\xe8\x4b\xa1\x02\xa1\x13\x3a\x88\xc4\x1d\x4b\x11\x1a\x74\xcd\x74\x80\x93\x44\xac\xb9\x52\x9a\x97\x70\x1b\xd5\xe3\xeb\x34\x10\xb1\xe4\x98\x8a\x1d\xf5\x96\xb3\x3d\x1e\x2f\x78\xcc\x15\x9b\xed\x91\x11\x01\x87\x40\x67\x3a\x96\x53\x19\x38\x49\x44\xa5\x1a\x93\x7c\x66\x5e\x94\x68\x58\x79\xc8\x62\xc5\x03\x1a\x19\x00\xab\xfd\xf0\x98\xd0\x28\x59\xd1\x38\x5b\xb3\xd4\x69\x07\x1b\xc0\xd7\xab\xe1\x4f\x46\xc5\x86\x5e\x2f\xde\x3b\x37\x6e\x8e\x38\x5b\xcf\xeb\xda\xcf\x24\x65\xa7\xe7\xc7\xd7\x5d\xdb\x63\x8a\xcd\x08\x8f\x43\x1e\xa0\x66\x27\x8f\x40\x59\xd9\xf4\xea\x65\xaa\x42\xe6\x6c\x21\xfc\xa2\x1b\x8d\xb7\x44\x77\xd7\x08\xeb\x5c\x88\x88\xd5\x1d\x33\x5a\xe4\xf6\x8a\x94\x75\xed\xea\xc9\x70\x57\x3b\xda\x32\x7b\xd0\x12\x1e\xdc\xe2\xff\x89\xcc\x4b\x80\xf4\xdc\x2a\x5a\x0f\x67\x27\x98\x78\x19\x67\x0d\x95\xb0\x42\x47\xb3\xee\xa6\x80\x43\xcb\x6e\x51\x24\xee\x10\x6b\xa8\xc2\xcb\x95\x5a\x28\x59\xff\x11\xf5\x3b\x78\xb0\x6f\x22\xae\x58\x4a\x41\xb5\xe2\xeb\x79\x36\x23\x23\x8c\x17\xd3\xbb\x7a\x9d\xd0\x94\x4b\x11\x1f\x10\x08\x1a\xb5\x7a\x19\xdb\xe5\x42\x08\x32\xa7\x29\x28\x8b\xf2\xe1\xfe\xb0\xe3\x70\xc5\x78\x5a\xb4\x62\x7f\xcf\x68\xf4\x3d\xba\x38\xdb\xab\x02\x5f\x98\x3b\x02\x97\xd0\xc6\x9a\x3e\xf2\x21\xfd\x44\xe4\x67\x80\x83\x16\x8e\x79\xf3\xe2\x9f\x01\xfe\x73\x3c\x1e\x93\x5f\x1c\x08\x54\x9a\x31\x1b\xa9\x94\x3b\xfb\xe2\x18\x7f\x26\xfe\xe0\x02\x63\xf3\xe9\x18\xaa\x80\x55\x4f\x80\xc7\x3d\x80\xf3\x0d\xb6\x23\xbc\x30\x58\x1b\x80\xfe\x25\x71\x60\x5e\x51\xf9\x1c\xfa\xbb\xd1\xac\xe3\x45\x31\xf4\x75\x3e\x32\x55\xc5\xea\x38\x2b\xf3\x07\xd8\xa4\x5e\xa6\x6b\xba\xc8\xf5\xc3\x62\x01\x6d\x41\x3d\x08\xff\xcd\x5e\xbe\x7c\xfd\x06\xff\x1f\xdf\xe4\xdf\x5c\xad\x44\xaa\x46\x01\x4f\x83\x8c\x2b\x10\x6b\xcd\x47\xbe\x81\xfe\xf9\xcf\xd6\xaf\xc1\x90\xa4\x9e\x63\x9b\x17\x79\xa3\x84\xa6\xcc\x5c\x89\x96\xa9\xc8\x12\x7d\x25\x9a\xcd\x14\x8d\xa2\xe7\x5e\x83\xa0\xa9\x29\x80\x6e\x41\x39\xbd\xb0\xbd\xd9\x3d\x4c\xa3\xc8\xd1\xf1\xc1\x01\xfd\x80\xfb\x01\x2f\xb1\x0d\x44\x4e\x1f\x6d\xa4\x33\xd6\x55\xd6\xa5\xef\xf2\x80\x8c\x0e\xc8\x0d\xe0\xe1\x70\x4c\xae\xe0\xc8\x11\x73\xe4\x1a\x3b\x5d\x8b\x94\x91\x44\xdf\xbf\xa4\xe4\x1b\x46\xe6\x18\xe4\xb1\xb5\xfa\x65\xa3\xf9\x27\x4c\x06\x34\x61\x24\x58\xd1\x94\x06\x8a\xa5\x06\xec\x33\xf4\x95\xf7\x1e\x86\xe7\xc0\xa5\xd6\x34\x64\xa3\x2c\xc1\x6d\x21\x5f\xe4\xe4\x08\x22\x0b\x0d\xe9\xb8\x63\x73\x7d\x73\x63\x86\x78\xb8\x2b\x1e\xb2\x24\x12\xdb\x35\x8b\xbd\xe4\xd4\x7c\x9f\xa4\x22\xb4\x9b\x14\xfa\xd5\x67\x0a\x68\x52\x2a\x62\xc5\xe2\xd0\xd9\xea\x34\xb8\x35\x3f\xfc\xa2\x9b\x17\xfd\x93\x3f\xfc\xb1\xe9\x04\x84\x6c\x63\xbb\xff\x03\xa9\x9c\x02\x1f\x29\x6b\x13\x9e\xca\xda\xd8\xbe\x52\xe1\x95\xf7\xab\x27\x13\x0d\x0d\x90\x56\x59\xb3\xab\x80\x08\x56\x9f\x1e\x3c\x15\x8c\x43\x85\x04\x70\xb7\x82\x88\xf5\x12\xcf\x77\xdc\xe2\xcc\x35\xd3\x4b\xa7\xf4\xb9\x13\xa6\x82\xca\x81\xf9\x6b\x2e\xd4\x6a\x4c\xd0\x53\x15\xb8\xc9\x7d\xa2\x25\x2a\x15\x6d\x9d\xcb\xec\x73\xa8\xfe\xe2\x75\x41\x76\xe8\x68\x4c\x82\x94\x99\x00\x19\x69\x4e\xb7\x48\x49\xcc\xa3\x17\x07\x36\xc8\x25\x64\x0b\x9a\x45\x4a\x12\x9c\x96\x46\x5d\x1a\x36\xdc\x69\x94\x20\x77\x9a\x56\x4e\xcc\xcd\x59\x03\x71\xe6\x5c\xa2\x41\x6e\xb5\xf4\x33\x2f\x84\x82\x6e\x97\x4d\x71\xf2\x66\x7c\xc2\x25\x9e\xb1\x11\xf9\xab\x11\xe5\x34\x40\x76\xa4\xbf\x1d\x18\x16\xa1\x05\x63\xb0\xde\x94\x06\xf6\x9e\x63\x1e\x07\x51\x16\x5a\x03\x67\x40\xb5\xb0\x0c\x1d\x14\xdd\x10\x64\xd2\xb1\xc8\xa7\x04\xdd\xbd\x68\xf2\xae\x2c\x03\x77\xe6\x87\xad\x84\x11\x4d\x98\x8a\xee\xbd\x97\x3b\x68\xd7\x38\xf5\x83\xce\x01\x7d\x9d\x82\x6e\xb1\x69\x99\x90\x06\xfe\x64\x14\x8b\xce\xf5\x24\x65\x54\x9f\xa6\xe0\x96\xd0\x25\xe5\xb1\x77\xcb\xe2\x36\x41\x83\x54\x74\x47\xb7\xb2\x16\x9f\x80\xde\x22\x07\x24\x66\x1b\x96\x96\x76\x9d\x57\xc9\xd2\xb3\xca\x52\x81\x05\xc2\x80\x75\xe4\x76\xd5\x44\x48\xc9\xe7\x91\x1d\xb8\x70\x87\xd3\x1f\x5c\x25\x2c\xf0\x5f\xbb\x71\x22\xcd\x0e\x82\xed\x17\xfc\xc6\xbb\xb3\xff\xca\x5d\xff\x15\x38\x47\xe8\xba\x3d\x48\x25\x52\xba\x64\xf6\x27\xa9\xa8\xca\x10\x31\x68\xf9\x63\xe1\xb9\x63\x93\xb9\xe5\x71\xa8\xa9\x91\x45\x69\x12\x65\x29\x8d\x8a\x5f\x02\x11\xa3\x21\x5e\x1e\x91\xbf\xfe\x4d\xff\xa2\xfb\x67\xa1\x09\xb4\x35\xbf\xce\xe2\xd1\x68\x34\x8b\x69\xc2\x6d\xbc\x2e\xa1\x09\x67\xf7\x8a\xc5\xd0\x6a\x7c\xfb\xad\x1c\x73\x71\xb8\x79\x35\x8b\x71\xc4\x93\x4c\x2a\xb1\xbe\x64\x68\x51\x3c\x65\x70\x43\x04\x6a\x5d\x8a\x8a\x05\x3d\x18\x41\x9f\xea\x18\xfd\x8f\x25\x53\x72\x1c\xa4\xe1\x38\x49\x85\xc6\x43\x00\x04\x68\x2c\xd2\xe5\x2c\xd6\x94\x0d\xbe\x03\x71\xe5\x88\x34\x34\x2b\x9b\xa5\x10\xa0\xaa\xab\x34\xbe\x8b\xb8\x54\x7f\xf2\xbe\xff\xc0\xa5\x2a\xa3\xac\x06\xa5\x59\x0f\x1e\x2f\xb3\x88\xa6\xf5\x06\x80\xcd\x40\xe8\x25\x3d\x89\x32\xa9\xf0\x3a\xb9\xb1\x98\xd5\x7f\x8c\x0c\x06\x34\xe2\xa0\xb3\x60\xc5\xd6\x45\xc0\xb0\x48\x58\x7c\x3c\x9d\xfc\xf8\xd5\x55\xf9\xf7\xca\xa6\xaf\xb9\x81\x97\x02\x31\xc0\x9d\x80\xa6\x73\xae\x52\x9a\x6e\xc9\x64\x4a\x64\x36\x1f\x59\x30\x0f\x4f\x26\xa7\x97\x25\x8a\x83\x0a\x8c\x95\xa6\x51\x28\xd6\xc0\xe5\x15\x6e\x5e\x48\x84\x94\xc0\x98\x40\xe3\xbb\xb1\x26\x1b\x4e\x1d\x2f\x3a\xf4\x8f\xc0\x4f\xdd\x7e\xc5\xa2\x0e\xa8\x35\xb1\xe7\xda\x1a\xf7\x90\x35\x68\x53\x9d\x5d\x58\x3e\x53\xe5\x24\x27\x1a\x6f\xc6\x99\x04\x83\x2f\x90\x0c\x18\xf4\xb3\xd0\xe0\x1a\xe9\x00\x50\x35\xc3\x92\xa8\x4f\x4d\xa6\x51\x18\x9b\x93\x39\x06\x81\x85\xa5\xd2\x5e\x69\x03\x11\x6f\x58\xaa\x48\xca\x02\xb1\x8c\xf9\x3f\xf2\xce\xa5\x75\x6f\x81\x62\x6f\x35\x21\x8f\xc7\x8a\xa5\x5a\xb4\x01\x92\x84\x4a\xfc\x35\xdd\x92\x94\xe9\x61\x48\x16\x3b\x1d\x5a\xe7\xba\x8f\x5a\xa4\xe5\xf1\x42\x1c\x41\xfa\x29\x79\x74\x78\xb8\xe4\xca\x1e\xc0\x40\xac\xd7\x59\xcc\xd5\xf6\x10\x0c\xee\x7c\x9e\xe9\x25\x39\x0c\xd9\x86\x45\x87\x92\x2f\x47\x34\x0d\x56\x5c\xb1\x40\x65\x29\x3b\xa4\x09\x1f\x01\xec\x31\x50\x80\xf1\x3a\x7c\x96\x9a\x13\x2b\xf7\x7d\xf4\xaa\x4e\xe6\xe0\x70\xb5\x2d\x83\x3e\x5d\x26\x66\x1b\x65\x76\x14\x3a\x72\x6c\x5b\xc6\x7b\x79\x76\x75\x4d\xec\xe8\xde\xf8\x76\x44\x7e\xf1\xa5\x2c\xd6\x41\x23\x8d\xc7\x0b\x2b\x5d\x81\x8d\xc3\x55\x46\x20\x6b\x8f\xb8\x47\xd0\x96\xd9\x7c\xcd\x95\x74\xf2\x16\x89\x31\x39\xc9\x8d\x1f\x59\x12\x52\xc5\xc2\x31\x99\xc4\xe4\x84\xae\x59\x74\x42\x25\x7b\xf2\x55\x00\x11\x73\xa4\x71\xdb\x77\x1d\x1a\x72\x0d\x34\x69\x76\x73\x42\xda\xb0\x6c\xd5\x83\xaa\xf9\x63\x39\xe4\xcd\x46\x48\x16\x39\x09\x28\xa9\x52\xd7\xe2\xb1\x0b\x5b\x61\xa1\x2d\xf6\x92\x86\xe0\x8c\x5a\x5d\x48\xeb\x3f\x3a\x99\x12\x4b\xd2\x90\x82\xcd\x59\x24\xf4\xde\x12\x46\x5f\xc4\x7c\x56\xf6\x66\xa9\x62\xe0\xeb\x9f\xcf\xd7\x57\x42\x16\x5e\x50\x4f\xc0\xd3\xdd\x50\xa7\x2a\x3f\x77\xdf\xd5\x79\x79\x09\xb2\x2a\x1f\x77\x5f\x3e\x25\x0f\x1f\xf8\xdb\xc0\xdf\xdc\x25\x18\xf8\xdb\x17\xe3\x6f\x2e\x75\xe8\xc7\xdb\xea\xb4\xa6\x78\x76\xe7\x6e\xec\x3e\x01\x9f\x8e\xc9\xb4\x8f\x26\x49\xaf\xb4\xf9\xa0\x1c\xd9\xf7\x7c\x32\xdd\x7c\x0d\xc7\x6a\x32\xdd\xbc\x79\x61\xef\xb4\x76\x5b\x78\x2f\xac\x13\x54\x90\x4f\xf4\xd9\x5c\xd0\x80\x81\x1d\x6c\x36\xdb\xab\x98\x1c\x72\xcd\x0f\xdc\xe1\x23\x21\x6e\xad\xea\x8d\xdb\x2f\xbd\x1a\x57\xeb\x5a\xe3\x44\x1c\x4e\xa6\x25\x67\x37\x0c\x92\x06\x63\x98\xd1\x29\x00\x11\xa1\x6a\x0c\x0e\xe4\x5e\x6e\x3c\x9b\x29\x50\x44\x64\xb2\xe6\x89\x5e\x89\xbd\x87\x60\xc7\xdc\x69\x43\xa4\x46\x6d\xe6\xeb\xb4\x5a\x2a\x79\x36\xd3\xfd\x99\x1a\xc9\xf9\xfc\x0d\xf1\x93\xe5\x51\x79\xec\x8f\xec\xcf\x2f\x5c\xee\x3a\x8d\x21\xca\x56\xb3\x95\x92\x5f\x30\x7a\x24\x9c\x15\x5b\x01\xd5\x0c\xbe\x6e\xb9\x44\x9d\x26\xe6\x7e\xa2\x8a\x24\x59\x9a\x08\x7d\x52\x9f\x4f\x16\xc6\x0d\x69\xc5\x8a\xa5\xd1\xe3\x58\x3f\xc3\x76\x67\x26\xab\xdf\x13\x0c\x97\x3f\x62\x34\x8d\xf3\x65\x33\x2b\x58\xf4\xab\x01\xc8\x24\xe8\xa0\x1b\x1d\x28\x66\x33\x65\x97\x63\xec\xd5\x20\x3f\xba\xd4\x45\x0a\x08\xcf\xfd\x9e\x35\x95\x23\x75\x86\xe9\x2a\xf5\xbe\xff\x1f\xa8\x3e\x37\xb6\x8d\xc2\xa7\x26\x4f\x01\xf2\x81\xc7\xd9\x7d\xfb\xae\xcf\xad\xbb\xf9\x86\xfe\x1e\xb6\xde\x3a\x51\xdb\x31\x29\x86\x71\x0d\xc2\x68\x1d\xe5\xb2\x95\xb2\xe8\x67\x29\x36\x2c\x8d\xd1\xae\x92\xfb\x9a\x89\x83\xc2\xbf\x6c\x95\x8a\x6c\x89\x3e\x04\x56\x4d\x6a\x44\xe1\xf6\x10\x78\xb3\xb8\xb0\x2f\x75\xc3\x3c\x01\x00\x16\xce\x0e\x91\x2c\xc0\x9e\xfc\x9e\x30\x3d\x7f\x3c\xd8\xa1\xde\x24\x1b\x3c\x88\xfe\x94\x10\x85\xe7\xce\x06\x6a\x99\x6f\x0b\xf4\x1d\x10\x57\xe1\x2a\x24\xc6\x0d\x1c\x2a\x01\x7e\xe8\x1a\x16\xab\x9a\xf0\x9b\xf1\x23\x11\xd0\x28\x0f\x22\x37\x4a\xca\xc9\x82\x94\xe8\x99\xa5\x65\xce\xfa\xf6\x42\x35\x1c\x24\x8b\xef\x92\x5f\x1f\x4c\x1f\xe8\x89\x9e\xbb\x91\xb5\x00\x73\x0e\xfa\xbd\x44\xc6\x6e\xa3\xe2\x0c\xe5\xb8\x2e\xc1\x0c\x5b\x70\x44\xee\x34\x99\x2b\x13\x67\x3f\x3d\x40\x8d\xe9\xa8\xb4\xfc\x9e\xc1\xf2\xb8\xbf\x42\xf9\xaa\x4f\xb6\xb7\xd3\xd8\x25\x46\x90\xb2\x36\x05\xa7\x84\x03\x0f\x54\x39\x08\x07\x84\x02\xd5\xa8\x8b\x7f\xc4\xd8\x8c\x5d\xde\x95\x57\x2a\x2f\x12\x7a\x61\xe8\x92\xbe\x74\xa4\x98\xea\xce\x8c\x22\xc9\x73\x99\xf9\x29\x0c\x95\xb0\xb4\x4c\xad\x5e\xea\xff\xbe\x30\x71\x37\x60\xcc\x63\x21\xd1\x70\x7f\x4f\xb8\x22\x5c\xc6\xfb\xaa\xd0\xfc\x76\x73\x72\x82\x87\x39\x49\x85\x96\x5e\x9c\x2d\x80\x38\x76\xa8\x42\x79\x1f\x16\x50\x7b\x79\xae\x0d\x8e\x3a\xc2\xb9\x42\x2c\x22\x48\x3f\x18\xaf\x88\xb6\x20\x2d\x71\xad\x93\x88\xad\xf5\x5e\x43\x52\x5f\x10\x0e\x17\x68\xf9\xbd\x7f\xf5\xb8\xe2\x34\x8a\xb6\xe4\x7f\x69\x1c\x27\x29\x1b\x81\x0f\x4a\x6e\x59\x99\xea\x45\x62\x26\xb1\x70\x4e\xf6\x83\x6c\xdd\x74\x27\xd0\x8f\xad\x23\x8f\x02\xbe\xa9\x57\x2f\x62\xaf\x8a\xbe\x8d\x78\xc7\xfe\xac\x72\xb5\xeb\xbc\x6e\x67\x3c\xe4\xc1\x01\x68\xb1\xb5\x0c\xdf\x40\x0c\x0d\xb8\xbe\x1e\xc7\x5e\x64\xb7\x01\xd1\x14\x9d\x5b\xb1\x20\x68\x66\x5f\x92\x07\x1d\x4f\x59\x3c\xbb\x26\x70\xd4\x66\x19\xf6\x7a\xdd\xce\x19\x6a\x49\x59\x1c\xa0\xbb\x52\x2e\x6e\x98\x05\x37\x0e\xa5\x3b\x70\xc7\x4e\xf7\xd2\x56\xb7\xd2\x6e\x57\x44\x3d\xad\x8e\xcf\x5b\xa3\x42\x7f\x4b\xd9\xc3\x9e\x2a\x59\x54\x87\x93\x65\xdc\x40\xb0\x47\x80\xdc\x86\x37\x2d\xe9\xe0\x1e\xec\x9a\x99\xa0\x18\xdb\xb9\xdd\x8f\x8b\x08\x6c\x3c\x70\x1c\xf8\xdc\xc2\x91\x8e\xb1\x27\x03\x44\x73\x92\xcd\x22\x22\x43\xb3\xda\xfc\x0e\x82\xc9\xd5\x0d\x38\x8e\x77\xa3\xbd\x12\xa0\xdb\x5e\x53\xa7\x18\xd2\x90\x24\x8c\xa6\xb9\xc3\x1c\x44\xcc\x90\x1c\xae\xc2\xa6\x6c\x7b\xb6\x8e\x8f\x85\xbc\x3e\x6a\x74\x0b\xac\x9c\xca\x41\x47\xf8\x85\x75\x84\x3c\xa1\xeb\x79\x24\x82\xdb\xa7\x50\x10\x4e\xa6\xc7\x1f\xdf\xea\xce\xab\xda\xc1\xfc\x45\x5d\x35\x58\x00\x54\xd5\x0b\xe6\x6f\x06\xa5\xe0\xa0\x14\x1c\x94\x82\xff\x72\x4a\xc1\x9c\x28\xf4\xd2\x08\xc6\x55\xea\x52\x3c\xbb\xeb\x03\xf5\x35\x43\xe3\xce\xc3\x66\xda\x98\x0c\x8d\xf4\x35\xa4\x29\x4f\x77\x17\xe3\x6a\x91\xb3\x9e\x91\xeb\x8b\xd3\x8b\x23\x4c\xe5\x12\x67\x51\x44\xe7\xc8\xbc\xd7\x34\xce\xe0\x92\x41\xc3\x10\x78\xf8\x98\xfc\xc4\x2c\x49\xc0\x7d\x43\xf2\x58\xef\x74\xb4\xf4\xe7\x36\x7c\xa6\x49\xc4\x8a\xc6\x61\xc4\xc8\x5f\xff\xf6\x3f\xf4\x66\x45\xe4\x44\x5b\x93\x94\xc1\x7b\x8d\xb2\x80\x34\x49\x67\x2d\xe2\x10\x55\xb8\x25\xbd\x02\xd1\x67\x48\xdc\x38\x89\x1b\xee\x97\x07\x49\x2f\xb1\x5b\x32\xcd\x89\x69\xea\x5b\x7d\x03\xfd\x6e\x79\xd6\xfb\xc8\xc7\x5d\xc1\x44\x0f\x16\x3c\x03\x1e\xfa\x1c\x3e\xdb\x60\x0a\x59\xc4\x94\x57\xa4\x6e\x8f\x6f\x80\xe0\xe1\xe3\xae\xa3\xd3\xf0\x75\x16\x9b\xd3\xe3\x1d\xf8\xc1\x67\xa7\x11\x33\x0d\x17\x87\x91\x7b\x88\x6b\xaf\xf2\x5d\x5b\x7d\xa3\xb1\x5c\xfd\xad\x8c\x8f\xea\x5b\x67\xbe\x83\x38\xda\x2a\x8e\x06\x22\x5e\xf0\xe5\x53\xc9\xa3\x27\xd0\xbb\x4f\x20\xc5\x37\x7e\x89\xd4\xc0\xe4\x13\x49\x83\xbc\xc3\x41\x26\x1d\x64\xd2\xc6\x65\x18\x64\xd2\xdf\xab\x4c\x8a\x74\x61\x07\xa1\xd4\x25\x31\xc5\xf3\x00\xa9\x34\x53\xe2\xd8\x30\x0d\x10\x74\x7d\x1c\xb1\x95\xc9\xae\xe9\x3d\x7e\x38\x65\xe9\x0f\x42\xfa\xb4\x8b\x95\x0a\x16\xe5\xf6\xe0\xc2\x1e\x8b\x78\xf4\x0f\x96\x8a\x03\x9b\x42\x72\x4d\xef\x4d\x7c\xa6\x26\x07\xee\x65\xbd\x02\x1a\xa4\x87\xa0\x31\xc4\x1c\x6a\xb6\x08\x51\xef\x90\xfc\x60\x25\xbc\x59\x57\x5a\x99\xfb\xe7\xc8\x1b\xcd\xdc\xbf\x86\xe3\x5d\xd8\xfa\xc0\xbb\x2b\xbc\x1b\xe5\xf1\xa7\xe2\xdd\x3f\x40\xef\x3e\xde\x8d\x6f\xfc\xbc\xdb\xc0\xe4\xe3\xdd\xab\xbc\xc3\x81\x77\x0f\xbc\xbb\x71\x19\x06\xde\xfd\x7b\xe5\xdd\x48\x17\x76\xe0\xdd\x2e\x89\x29\x9e\xdd\x79\x37\x70\x45\x0f\x8f\xea\xad\x4a\xe8\x75\xcf\xf5\xeb\x07\x1e\x78\x9f\x47\x62\x38\x39\xdd\x49\x7b\xd0\xc8\x58\xe7\x75\xcd\xdc\x28\x1f\x62\xe0\xa2\x2d\x5c\x34\x11\x22\x7a\x1a\x0e\x3a\x15\xd6\xca\xe9\x72\x4f\xfd\xab\x8f\x73\x02\x1c\x75\xae\x99\x98\x4e\x06\x8e\x39\x70\xcc\xc6\x65\x18\x38\xe6\xef\x93\x63\x6a\x5a\xd0\x9b\x5b\xea\xc6\x0f\xb9\xd6\x62\xaa\x89\x4f\xb2\x87\x77\x44\xde\xd4\x5a\x35\x24\xc6\xb6\xa3\x1b\x1d\xd1\xb4\x28\x4f\x4d\x64\x3d\x74\x21\xb7\x92\x8f\xa5\x42\xca\x89\x3c\x38\xdf\x3a\x88\x1e\x14\xc1\xf5\x4a\x90\xbf\xee\x5f\x67\x71\xcc\xa2\xfd\x03\xb2\xff\x93\xf1\x2e\xdb\xff\x1b\xcc\x79\x4e\x83\xdb\x11\x64\xaa\x51\x7c\xce\xa3\xda\x65\x90\x3c\x8d\x6b\x2d\x30\xd2\x2b\xfe\x8f\x5e\xfe\x5b\xd0\x98\x48\xfe\x0f\xb8\x6a\x67\x12\x9d\xee\x0a\x67\x68\x42\xa5\xe4\xcb\x78\xad\x0f\x52\x63\xfe\x5b\x93\x22\x41\x44\x63\x72\xea\xa0\xe6\xf5\x1b\xd3\x99\xf1\x79\x7f\xf5\xea\xb5\xfd\xe1\xcd\xae\x77\xf9\x06\x2b\x45\x6d\x3e\xb0\xc0\x27\x93\xd3\xcb\x1d\x5d\xcd\x42\x2e\xe9\x3c\xf2\xca\x40\xa5\x31\xc0\xab\xdd\x36\x06\xfd\x46\x9a\x15\xbe\xe7\x5a\x20\xc4\xed\xa5\xb7\x0e\xa2\xae\x70\x2b\xf7\xa1\xce\xd0\x20\x8b\xbf\x1d\x25\x30\x03\xc8\xdb\xf7\xd3\xb3\xfb\x06\x67\xb0\x32\x99\x3d\xc5\x0f\x08\x83\xe6\x9a\xa8\xa6\x22\xcb\x93\x5f\x02\x1c\x93\x29\xd1\xe7\xf4\xff\xfc\xef\xff\x57\x02\x22\x89\xd8\xf8\x6d\x8e\x6f\xdf\x4f\xc7\xe4\xaf\x66\xc1\x8f\xc8\x82\x46\x92\xfd\xcd\x53\x66\xab\x75\x06\x3c\xe1\xbe\xf2\xf2\x15\xa8\x35\x2d\x47\xcb\x8f\xa1\xdc\xb6\x42\x3b\x38\x00\xe7\x9e\xf6\xc7\xd3\xc9\xe6\x15\x1c\xbb\x3b\x9a\x86\x5e\x7c\x97\x8e\xa3\xe6\x0c\xca\xb0\x16\xb7\x57\x58\x3c\xa4\x24\x07\xe5\x57\xde\x25\xc4\xf0\x02\x64\xd1\xfa\x04\x69\xa0\xc6\x1e\x44\x74\x18\x27\x59\xdc\xb4\x03\x6b\x18\x81\x5d\x68\xda\x17\x9b\x50\xe3\x92\x28\xa0\x46\x7a\x4e\x2e\x99\xf3\xf7\x09\xbe\xb3\x21\x8b\xf8\x86\xa5\x45\x2a\x75\xfd\x53\x5e\x68\x44\x56\x12\x2a\x7a\xf7\x28\xe9\x5a\x65\x02\xb9\x7d\x1a\xeb\x14\xd7\x4e\xf1\x64\x3a\x99\xc2\x07\xa6\xa8\xbf\x55\x0a\xda\x84\x51\x7b\x98\xa3\xc2\x16\x0e\x82\x72\x64\x23\x2c\x91\x35\xdb\x1b\x13\x72\xdc\x34\x5f\xdd\x67\xa5\x07\x93\xf3\x42\x22\xf5\x83\x91\x0b\x1c\xea\xb5\xd5\x27\x04\xf6\x48\x63\x69\x48\x07\x5f\xe5\x78\x9f\x1a\xee\x08\x39\x76\x60\x28\xc3\xdd\xd4\x3b\x00\x68\x37\x7a\x15\xc0\x3b\x9b\xee\xc3\x85\x01\x7d\x6e\xf5\xe9\x68\xea\x93\x16\xe5\x0e\x4c\x69\x31\x2b\x82\xda\x84\xb8\xba\xf3\xd8\xae\x40\x11\xa8\xd0\x5a\x26\xe6\x39\x28\x7f\x1d\x9e\xf9\x42\x43\x51\xe0\xba\x75\xeb\xb4\x73\x3a\xff\xc5\x55\xef\xf8\x8f\x3d\x3c\x95\x4f\xac\x70\x82\xb6\xb7\x2c\x2d\x04\x13\xcf\x82\xb7\x6f\xf5\x49\x65\x8e\x07\x36\x97\x33\x96\xb9\x36\x88\xc2\x7c\x46\xb3\xbd\x73\xb6\x81\xd4\x8f\x58\x78\xb9\x3c\x98\xaf\x77\xdd\x83\xe1\x2e\xbe\x22\x22\xad\x2e\xdb\x54\x8d\x44\xa6\x96\x82\xc7\xcb\x7f\x17\x92\xda\x4a\x75\x62\xaa\x2e\x7a\xe2\x03\xd3\x32\x39\x08\x2c\xa8\xaa\xa5\x8b\x90\xfd\xc8\x29\x91\x40\x5a\xc3\x5e\x8c\x38\xac\x6f\x1d\x2e\x01\xa8\x51\x57\x91\x29\xc9\x43\x96\x5f\x2f\x73\x01\xd5\xd7\x29\x24\x90\x96\x7f\xcf\x58\x4a\x43\x6f\x36\xf0\x76\x74\x88\xb0\x77\xde\x57\x90\xa3\xa5\x15\xd9\x4d\x3e\x11\xbd\x5d\x4c\x4c\x46\x1e\x56\x01\xa4\x66\xbe\xc5\xf4\x21\x3e\x98\xf3\xe4\xe9\xbb\x6d\xe6\xcd\x7d\x44\xe3\xcf\x3c\xda\x3f\xfe\xf9\xc3\xf1\xf9\x17\x3b\xdb\x30\x9a\x57\x3a\xce\x01\x78\xf0\xe1\x6e\x54\x9a\xd5\xdd\x4a\x06\xdd\x58\x49\x37\x96\x32\x3d\x51\x3c\x6c\x4f\xa2\x22\xbb\x2c\x06\xa8\x6b\xca\x9c\x97\x3e\x85\x99\x0b\x5c\x5d\x6f\x96\x96\x7b\x1e\xd4\x67\x83\xfa\xac\x71\x19\x06\xf5\xd9\xef\x53\x7d\xe6\x10\x88\xde\x5a\xb4\x1a\xc5\x29\x9e\xdd\x75\x6b\x48\x64\x58\x08\x59\xc5\xba\x78\xed\xa5\xdb\xb8\x5c\x0e\x12\x7f\xa2\x71\x78\x58\x52\x1f\xf9\x95\x1e\xe0\xe7\x51\x53\x99\xb0\xfb\x20\xca\x42\x53\x97\x2c\x66\x77\xae\xa3\xe5\x10\xe6\xf3\x85\x39\xe7\x6d\x36\x67\x85\x5f\xb8\x2c\x09\x57\x4f\xc1\x48\xff\x94\xcd\xd9\x49\x31\xde\x89\x3b\x5e\x95\xaf\xb6\xb5\xad\xb3\xd9\xd6\x99\x54\xb9\x6e\x5b\xe3\x81\x09\x0f\x4c\x78\x60\xc2\xff\x72\x4c\xb8\x8d\x9a\xd4\x79\x72\x29\x19\x6d\x15\xc1\x4e\x79\x2a\x87\x88\x94\x6f\xa6\xfd\x59\xb3\xd3\x45\x9f\x4b\xb0\x1d\x0d\xd5\xc2\x98\x1e\xd8\x8e\x6c\x12\x5b\x6f\x78\x98\xd1\xa8\xa3\xfa\x90\x33\xec\xce\x2a\xec\xae\x82\x42\x0d\x65\x84\x1a\x40\x2e\xd7\x14\x2a\xe0\x6a\x2c\xe2\x73\x66\x34\xe2\xf3\xad\xbd\xaa\x1f\xd8\x32\xcd\x31\x47\xdd\x0b\x5e\xbf\x1b\x7a\xe8\x51\x0e\x4a\x93\xa9\x38\xe0\x11\x4b\xa7\x2c\xe5\xa2\x39\x8c\xa8\x4a\x1c\x2e\x2b\x1f\x5a\xdf\xd8\x04\xff\x52\x42\xff\x6b\x21\xd2\x75\x3e\x04\x6f\x4c\xf2\x60\x1f\x48\x69\xef\xe4\x5a\xd0\xa7\x02\x64\x05\xd7\x2e\xf3\xcd\xda\x67\x94\xb1\x4f\x77\xe8\x51\x57\xe0\x51\x43\xa6\x88\x1a\x06\xce\x45\xd8\xbe\xd2\xfa\xfd\x6f\x63\x91\x57\x4e\xf2\x8e\xbe\x0b\xec\x26\xfc\x28\x6c\xcf\x72\x1b\x07\x56\x93\x0e\x1c\x12\x52\xd0\x38\x15\x55\x5b\x56\xf7\xd4\x5a\x19\x1f\x3a\xd3\x9e\xb3\x25\xc6\x73\xfc\x24\x65\xb4\x21\x9d\x57\xc3\x9c\xf7\x8f\xf3\xcf\x8a\x95\xcd\x94\x58\x53\xc5\x83\x22\x49\xbd\xe8\xac\x9a\x58\xc6\x0a\x5c\x75\xd8\x86\xa5\x5b\x63\x81\x28\x36\xb3\xc5\x49\xdb\x96\x26\xbd\xcb\x78\xf5\x29\xe2\x15\x31\x7a\xfb\x3e\xa5\x01\xdb\xf1\xbc\x7f\x28\x7f\x57\x39\xee\xa0\x5f\x37\xd9\x9b\x8a\x3d\xdf\x36\x27\x50\x1c\x63\x69\x42\xa8\x6e\x42\x5d\x53\x13\x24\x0c\x9a\x33\x16\x03\xb8\x9a\x87\x5f\xe1\x3e\x79\xd9\xd5\xa5\xb1\x07\x4f\xa6\x64\x49\xd3\x39\x5d\x6a\x70\xa2\x88\x41\xe9\x31\x17\xf1\xaf\x3e\x97\x8c\xfc\x3b\x92\x4e\x02\xe7\x1f\x8a\xa9\xb4\x1d\xbf\xf2\x6c\xaf\xf2\x4f\x5c\x17\x16\x53\x8b\x42\x90\x40\x24\xdb\x9e\xf5\x03\x81\xa2\x16\x29\xc1\x9d\x84\x3c\xd2\x9d\xa5\x21\xa8\x4f\xcb\x25\x30\x5b\x47\x1f\x3e\x61\x92\xfb\xb5\x70\x0a\x93\x8f\xe7\xb7\xc1\x2b\xfe\xfd\x76\x75\xd7\x52\x97\x6b\xca\xf4\x59\xf2\x72\x3d\x99\xb6\xa5\xef\x28\xec\x6b\xcb\xf9\x3a\x5b\x63\xd8\x03\xbf\xc6\x1e\xb0\x79\xd6\x3a\xa4\xa8\xb2\x0d\xb6\xf2\x4d\xdb\x3e\xb0\xfd\x37\xcd\x81\x55\x24\xb1\x61\x27\xfc\x3a\x3b\xa1\xed\x2d\x53\x41\xf8\xe3\x57\x27\x62\x9d\x60\xa5\xd3\x46\x8c\x95\x31\x75\xe6\xfd\xac\x82\xaf\x39\x53\x77\x5a\x1c\xd2\x63\x6c\xbe\xf2\x5f\x73\x6d\x07\xb9\x3e\xa4\x90\x9a\xdc\xbd\xe0\x0a\x41\x2f\xbd\xc8\x6a\x43\xd2\x8a\xd1\x48\xad\x4e\x56\xcc\x1f\x8c\x59\x9e\xda\x0f\x4e\xe3\x7c\xf7\x8b\xd4\x82\x22\xf3\xfa\x67\x5a\x40\xc6\x9e\xbd\x53\xc3\x0e\x7a\x71\xf8\x36\xd8\x23\xb1\xbc\xd2\x62\x38\x57\xdb\xab\x20\x65\xac\xaa\x84\xac\x4f\xe0\x43\xf5\x0b\xbb\x2c\x91\x58\x12\x69\xde\x10\x3a\x17\x1b\x66\x92\xf1\x45\x62\xe9\x95\x61\x20\x41\x24\x8b\x73\xb7\x24\xa9\x42\x91\x29\x77\x31\x26\xf1\x42\xec\x3a\xa3\x24\x15\x6b\x2d\x49\x65\xf2\x23\x53\x29\x0f\xe4\xb4\x8f\xd3\xe4\xd4\xf7\x95\x9d\xd9\xf5\xc9\x14\x52\xc5\x15\xe5\x33\x8b\xe6\xbe\x89\xad\xb1\x0b\xb4\x22\xa4\x79\x91\x4d\x1e\x63\x79\xcd\x8e\x1d\xf8\xdd\xcb\xef\xbe\x6e\x9e\xb4\xd7\x77\xb6\xd9\x77\xa0\x49\xd1\xd3\xa8\x49\x2b\xec\x1a\x0d\xa8\x6a\xd5\xa5\xc1\xd7\x8e\x4e\xd3\xac\xab\xfe\xd5\xa3\x82\x36\x37\x23\x47\x71\x46\x26\x6a\x1f\xd2\x2a\x2f\xb2\x08\xad\x61\xe1\x1a\xd4\x72\x50\xd6\x16\xae\x31\x50\x42\x0e\x2a\x81\x11\x1a\xa8\x8c\xd6\x3c\x52\xb0\x47\x5c\xab\x3b\x9a\xe7\xb6\xb3\xa9\x21\x8d\x9b\xe1\x5a\x84\xe8\xf2\x3d\xd7\x72\xe8\x86\xa7\x02\x1c\xa0\xc9\x86\xa6\x1c\x0e\x62\x0d\x5e\xf4\xc1\xbb\xcd\xe6\x6c\xe4\x6a\xfe\x92\x54\x04\x4c\x56\xaf\xf9\x6d\x79\xc6\x8b\xd1\x7e\xa4\x5e\xbd\xdf\x8e\xf1\x60\x4d\xa4\xbb\xb4\x6c\x67\xe5\x51\xab\xc9\x34\x3d\x08\x68\x70\x2d\xf4\x22\x01\x90\xcd\xe3\x45\x94\x61\x6a\x4d\x50\x81\x67\x71\xcc\xe3\x25\x6e\x90\x46\x57\x18\x3f\xdf\x48\xdd\x6f\x3b\x4d\x96\x6e\xe3\xca\xc4\x16\x0b\x7d\xcf\xdd\xb0\xd2\xae\xe0\xd2\x0e\xe0\x9b\x20\x6f\x5a\x68\x11\x1e\x98\x34\x86\x6b\x96\x2e\xad\xa6\xff\x78\x3a\x29\x14\xfd\x9a\x1d\x7b\x49\x5d\xdc\xb0\xcb\x3c\x78\xe9\x10\x41\xda\x55\xc6\x35\xe4\x3c\xa6\xda\x98\x74\xa9\x8e\x7b\x80\x4f\x7a\xd6\xa4\xff\x0c\x35\x72\x9b\xbc\xf4\x98\xb2\x62\xcf\xd9\x92\xdd\x64\xc6\xda\xe4\xfb\xcb\x8d\x5d\x2a\xb8\xb2\x58\xd9\x4b\x76\xec\xea\xb2\x5d\xb4\x24\x8f\xaa\xa6\x6b\xd1\x42\x93\xa7\xd2\x44\x93\x47\xd0\x30\x90\xfe\xfb\xa4\xa7\x56\xba\x36\xdd\x1d\x34\xd3\x5d\x2b\xea\x94\x09\x7e\x14\xed\xf4\x0e\xb3\x27\xbb\x68\xa9\x6b\x38\xe8\xa7\xa9\xee\xee\x14\x44\x93\x47\xd7\x56\x93\xde\x47\x81\xf4\x3c\x0e\x64\x27\xcd\x35\x79\xb8\xf6\xba\x6b\x62\xc5\x31\xda\x51\x83\xdd\xd5\xb1\x47\x50\xee\xd4\x62\x77\xf5\xd9\xa1\xe4\x26\x3b\x2c\xd3\x40\xd4\x3b\x51\xd4\x4b\x37\x5e\x47\xce\xe3\xe9\xc7\xc9\xa3\xea\xc8\xfb\x4f\xbd\xcf\x01\x6e\xd5\x97\xd7\x90\xf2\x98\x3a\x73\xf2\x65\xb9\xda\x70\x50\x1e\x61\xb7\xf4\x52\xb9\x93\x27\x53\xbb\x93\x27\x52\xbd\x93\x61\x1b\x7d\xd1\x6d\xd4\x53\x6b\x4f\x9e\x52\x73\x4f\x9e\x4a\x7b\x4f\x86\xcd\xf4\x05\x37\x53\x57\x8b\xde\xca\x7f\xf2\x54\x06\x00\xf2\xb8\x46\x80\x3e\xc8\xeb\x30\x06\xd4\xa7\xfa\x48\x06\x01\xb2\xa3\x51\xa0\xcf\x5c\xfa\x18\x07\xea\x13\xda\xd9\x40\xd0\x34\x9d\x48\x2c\xe5\x67\x18\x09\xfa\xcc\xb0\xaf\xb1\xa0\x3e\xcb\x47\x35\x18\x90\xcf\x35\x1a\x34\x75\xda\x64\x4b\x20\xdd\xc9\xc4\x5a\x8a\xea\xb4\xd8\x15\x48\x2b\x5d\x18\xc2\x2f\x9c\xf0\x0b\x13\x5b\x0c\x52\x3b\x7f\x92\xf4\x98\xa6\xf6\x37\xde\x1c\xf0\x45\x11\x61\x51\x7a\x59\x0f\xa9\xa8\x40\x67\x56\x21\x0f\xa2\x70\x5f\x43\xd7\x26\x6a\x22\xd7\xd4\x02\xf3\x1f\x02\x27\x86\xc0\x89\x21\x70\xe2\xf7\x15\x38\xd1\x66\xb9\x84\xb2\xbd\x7d\x52\x34\x41\x01\x31\xbd\xfd\xb1\xf0\x2e\x7e\x68\xaa\xeb\x11\xac\x3e\xa6\xff\xc8\x8d\x75\x3e\x0e\x95\x97\xed\xc5\xec\x0c\xd5\xa2\xc2\x50\xb1\x98\x04\x22\x4d\x99\x4c\x34\x3d\x8f\x97\xc4\xc8\x79\xb6\xf4\xeb\x4e\x11\x85\x95\x6a\xb4\xc7\xe4\x52\x03\xc8\xe2\x80\x26\x32\x83\x73\x5b\x40\xe4\x03\xa5\x41\xb3\x4c\x8d\x82\x92\xbc\x15\x6a\x55\xa9\x7d\x56\xab\x76\xac\x3b\xaa\xd6\x78\x6b\x10\x18\xf2\x3a\x86\xa6\xd6\xda\x88\x48\x96\xd0\x54\x6f\x52\x22\x32\x45\xa8\x1b\xb9\x89\x4d\x20\x5f\x99\x86\xc2\x54\x62\x6e\x00\x38\x0e\xed\x7a\xb9\x88\xe7\xf1\x12\xeb\xba\x62\xe9\x38\xa8\x39\xb9\x61\x55\x4c\xac\x68\x53\xaf\x24\x66\x4b\x00\xce\x10\xde\x03\x92\xa4\x6c\xc1\xef\x59\x88\xb7\x1e\xac\x6f\xab\xf4\x7f\xc6\xe4\x38\x8a\x4c\x52\x71\xb7\x77\x7f\xcf\x26\xff\x0e\xc5\x0d\x95\xd7\x32\xa5\x8a\x4b\xb0\xef\x63\x32\x0b\x33\x15\x25\xb0\xcf\x31\x39\x06\x66\x56\xcf\xea\x6a\xb0\x0b\x9b\x93\xc6\x76\x83\x1a\xfd\x9a\x99\xb4\x46\x11\x4c\x47\xff\x61\xe6\x83\x05\x8a\x1b\xeb\x2f\x23\x5e\x01\xfb\x7e\x10\xf5\x00\x30\x6a\x0e\xa2\x3f\x5b\x50\xe7\xf5\x16\x37\x5c\xa3\x44\xd8\x7d\xf9\x73\x72\x97\x34\xf6\x52\x3a\x2c\xa7\x4e\x5a\xa2\x92\xf5\xbd\xb2\x39\x40\x18\x86\x83\xd9\x72\xeb\x2c\xe5\x4e\x21\x9a\x16\x2a\xdf\x39\xee\x89\x0c\xe2\x5a\x9b\x5b\x12\xa3\x34\xcc\x6c\xb6\x77\x5e\xfd\x18\x78\x58\x4c\x44\x82\x0e\x1a\x26\xc5\x4d\x53\xa9\xc4\xe2\xc9\x11\x43\x8b\x82\xe5\xec\x5e\xb3\x30\x09\xf4\x01\x8a\xd0\x96\xca\x1b\xdb\x2c\x4d\x5d\x0a\x6e\xe0\x72\xcf\xf5\x16\x02\xbb\x0b\x52\x2a\xf5\xc2\xb1\x5e\xe5\x29\xaa\x6c\xf1\xc5\xe6\x64\x61\x15\x94\xc9\x3c\xc3\x18\xac\xa5\x66\x80\x90\x46\x07\x36\x72\x0d\x37\xed\x9d\x22\x95\x14\xa0\xc4\xcf\x51\xa0\xaf\x77\x28\x96\x85\xd6\xc3\x46\xd2\x35\x1e\x05\xcc\xcc\xd2\xde\x29\x64\x32\xca\x2b\xfe\x16\x53\xc6\xbd\x96\xe6\x70\x93\xf9\x16\x81\xb6\x23\x77\x20\xd5\x4e\xdb\xe2\xcb\x06\x72\x68\xb8\x90\x0e\xbe\x13\x69\x59\x86\x3e\x68\xe4\x01\xf6\xc1\xf2\xd0\x9e\x2d\xb5\x4e\x22\x5e\xd4\x1f\x67\xc4\xdd\x6c\x11\x5f\xf3\xce\x05\x03\xa7\x28\x30\x86\xc5\xcb\x46\x9c\x70\x07\xbf\xbd\x9c\x25\xa0\xa8\xb3\xfe\xa4\x34\xcf\xc6\xe9\xef\x2f\x23\x31\xa7\xd1\xf3\x17\x1d\xfa\xa7\x2f\x83\x80\xf7\x00\x8c\x01\x51\xdf\x9e\x45\x5a\x32\x93\xc3\x34\xda\x3b\xd5\x73\x2c\x75\x53\x2c\x74\xd7\x5a\x76\x40\xeb\x4e\x11\xfd\xd3\xe0\x8a\xe0\x59\x34\x0a\x09\xe4\x08\xf5\x67\x8b\x2a\x9e\xe2\xc8\x36\x30\x8e\x7c\xec\x5e\xda\xbf\x98\x79\xab\x32\x17\x4f\xd9\xdb\x82\x29\xd9\x4c\x18\xb5\x38\x0f\xf5\x32\x64\xb7\x35\xd9\xb2\x40\x58\xc2\xa2\x7a\xad\x9f\x2e\xe6\xa4\xaf\x03\xdb\x65\xba\x58\xca\xde\xa7\x25\x87\x78\x6b\x9d\x11\x97\x7c\xc3\x62\x93\x2c\xaf\x3d\x70\xaf\x59\x8e\x74\xc6\xed\x69\x24\x6d\xc9\xf3\x5a\x3c\xb1\x50\xe7\xbb\xad\x09\x7e\x60\x55\x52\x15\xf1\xcb\xce\x58\x37\xe9\x60\x2f\x7a\x1d\x7f\x73\xb8\x98\x36\x94\x0d\x2f\x9e\x2a\x32\xb0\x86\x78\x3b\x36\xa0\x4d\x1f\x74\x90\x2b\xae\x45\x6f\x91\x57\x8e\xb7\xf5\xa2\x25\x59\xd1\x0d\xb3\xc5\xc8\xc1\x03\x62\x8b\x7f\x75\x10\xda\xd4\xa9\xbf\x4f\xb8\xb2\xea\x37\x69\xb5\x87\xd0\xbb\x91\xa8\x0c\x21\xd7\x17\x94\x4e\xaa\x08\x3c\x4c\x61\x32\xb3\xeb\x93\xa9\x4d\xa7\xf9\xe9\x74\xda\x98\xab\x11\x9f\x3e\xab\xda\x5e\x3b\x1c\x9f\x9e\x15\xc4\xcb\x8d\xfb\xf8\xc8\xf4\xa9\x26\x8e\xcf\x43\x6a\x8a\xdb\xa7\xef\x86\xdc\x5d\xb8\x3c\x2f\x3e\xea\xd8\x96\xfd\xe4\x2b\xb3\x33\xc9\x15\x73\x98\x0b\x52\x61\x7d\xc1\x90\xd9\x5c\x45\x4c\xcb\xca\x78\xe1\x32\x63\xb5\xf7\x99\x4b\x4b\xad\x5b\xa5\xdf\x9a\x35\x55\xfa\x6f\x40\xcf\x6c\x2f\x3f\xb1\x5d\x6c\xa5\x9b\xd9\xf6\x60\x2b\x2b\xb8\x31\x1b\xbd\xd3\x73\xe7\x12\xf2\xa2\x63\x1b\xe6\x7a\x7e\x14\x35\xa5\xcd\x60\xab\x56\x4c\x32\x92\xd2\x78\xc9\xe4\xa1\x55\xdb\x41\xa6\xdb\xd6\x04\xab\xf8\x94\x12\x2f\x99\xa3\x03\x66\x21\xc4\xb2\xb4\x18\x30\x3a\x30\x33\x4c\x87\xac\xbc\xc0\x35\x40\x01\xae\x2f\x05\xeb\xa4\x00\xd8\x74\x27\x0a\xd6\x31\xf7\x82\xbc\x55\x28\xd8\x0c\x69\xd8\xcc\x50\xb1\x19\xd2\xb1\x99\xa6\x64\xad\x32\xcf\x40\xcb\xe0\xe9\x45\xcb\xe4\x03\x6e\xc9\xdd\x97\xe3\x56\x4d\x5f\xf1\x78\x2f\xc7\xe4\xb9\x64\xcc\xaa\xc8\x80\x94\xd1\x75\x12\x31\x22\xb7\xb1\xa2\xf7\xbe\x2c\x9b\xee\x33\x9b\xb5\xde\xad\x8d\x0c\xd9\x74\x77\x6e\xef\xdb\x6a\xc6\x9c\xab\xb5\x48\xeb\x57\x66\x7d\xdc\xce\x85\x62\x30\xb6\xde\x3d\x1d\x48\x30\xe1\x1f\xd6\x68\xd0\xc1\x15\x10\x3d\x0e\x37\x69\xef\x7d\xce\x22\x71\xf7\xe2\xa0\x0c\xb2\x83\x6c\xc4\xaa\x29\xf9\x6c\x8d\xcf\x1d\x78\x40\x65\x18\xa8\x39\xaf\x57\x8c\xa8\x3b\x01\x7b\x0d\x72\xe8\xd8\x77\x48\x20\x34\x13\xda\x16\x89\xa9\x3b\xd6\xee\x22\xb6\xb3\xb7\x3e\x4a\x85\xfa\x95\x39\xb7\x24\x9c\x0d\xaa\x16\x4c\xfb\x6e\x9e\x70\xb7\x12\x91\x59\xa4\x23\x58\xa2\xd9\xac\x60\xc8\x7f\x04\xea\xf2\x87\x15\x95\xcf\xd7\xdb\x1b\x70\x1e\x7c\x01\x74\xc7\x10\xf9\xae\xe3\x6c\xf2\xac\x5b\x2d\x04\x6c\x32\x84\x0f\x5d\x3b\x8a\xc8\x92\x50\x8f\xdb\x73\xbf\x41\x7f\xa1\x80\x04\xb6\x40\xa5\xd1\xa6\x34\x67\x11\x80\x6b\x21\x45\x25\xaa\x99\x52\xef\x8d\x81\x53\x6e\x9c\x71\x7d\x52\x1a\x8a\xa6\x72\x11\xc5\xd3\x3e\xdf\x7c\x4a\x5d\xd3\xe9\x3a\xe4\x31\xec\x3c\x8c\xf7\x41\x71\xca\xa8\x12\x22\x20\xad\x26\x05\x3c\xd8\x8a\xf3\x99\x74\x03\x1f\x8b\x78\x64\x7c\x71\x8c\x3d\x8c\xdc\xad\x58\xca\x8c\x5e\x64\x21\xd2\x35\x73\x95\x14\xe0\xfa\x83\xbd\xf7\x50\xda\xd5\x51\xe3\x64\x8d\x79\x84\x4b\x7c\xd9\x65\x70\x07\xd9\xab\xec\x35\xf8\xe5\x64\xb0\x0a\x59\x6e\xef\xd3\xa3\xf2\xa4\x24\x11\xa1\x8d\xed\x42\x13\x48\x4e\xa2\x7b\xf8\x37\xe6\x1e\x8e\xad\xbb\xad\x77\x30\x83\x6b\x90\x6f\x7e\xea\x81\x4e\x9f\x8f\x6e\xf2\x10\x94\x77\x77\xd9\xa4\x69\xf6\xa0\xbd\x17\xb6\x89\xe3\x53\x7a\xb7\x12\x12\xd5\x92\x7a\xfa\x46\x04\xd4\x02\x70\x67\x94\x40\x1f\xe1\x8e\xec\x14\x7d\xd1\x53\x52\x22\x7d\xa5\x25\x52\x3f\x5f\x9d\xf2\xd2\xbf\xee\x4a\x97\xee\x4a\x85\xd6\x0d\xe9\x7e\x9e\x4a\xbe\xa1\x5c\x53\xf9\x29\xcc\x10\x60\x5d\xb8\x72\xad\x0a\xc5\x5d\xc4\xe4\x77\x67\x5b\xfd\x7b\x77\xa7\xc7\xe7\xa7\xfb\x3d\x82\x53\x76\xd3\x68\x75\x85\xf2\x18\x2c\xee\x74\x3f\x36\x54\xba\x8d\x5e\xf4\x93\xba\xf1\x4b\x34\x10\xe7\xf4\xd2\x49\x74\x68\x07\xd2\x8b\xe2\x24\xce\xef\x61\x99\x69\x15\xba\xab\xdb\xab\xaf\xd4\xed\x31\x67\x59\xfc\x3d\x97\x2f\xaa\xe2\x37\xba\xd3\x68\x68\xba\x74\x65\x87\x00\x15\x94\xa2\xb6\x90\xec\x4b\xb8\xdd\x9a\x1b\xb3\xc5\x77\x90\xbb\x85\xe4\xc8\xe8\xc2\x45\xd9\xb2\xa5\x4f\x8e\xdd\xac\x07\xae\xe8\x7e\x50\xb7\x28\x74\xa0\xf9\x9c\x69\xf1\xd7\x2a\x7b\x45\x5a\xe5\xdd\x08\x3a\xaa\x52\x34\x22\xac\x26\xb4\xc3\x5a\xa9\xf7\x93\x5e\x40\x77\x8e\xa8\x37\xca\xb1\x20\x62\xeb\x48\x60\x1c\x3b\xda\x45\x96\x9d\xd8\xe6\xee\x5c\x33\x07\xb3\x08\x06\x46\x93\x7c\xff\x38\x21\x62\xe7\xe6\xd8\xe0\x1f\x89\x08\xf4\x8b\x79\x6e\x98\x1a\x46\x3e\xd7\xe7\x87\xbf\xfb\xd3\x94\xd6\x1f\xa4\xb2\x66\x86\x70\x92\x23\xb6\x50\xb6\xdc\x5d\xce\x43\xe0\xf4\xf4\x50\xd2\x10\xf7\x20\x42\xbd\x0d\x7d\x3d\xdf\x97\x05\x64\x5f\x94\x82\x76\xb7\x59\x29\xe5\xab\x42\x86\x4f\x39\x98\xf6\xfa\x7a\x5a\xd8\xeb\x1b\x9d\x18\xf4\x2e\xd1\x4d\x9b\x41\xcf\xfd\xcd\x3f\xcb\x7f\x61\xcd\xd4\x4a\x84\x3b\x70\x86\x8f\xf8\xc1\xe3\x4a\xed\x38\x65\x24\xea\x38\x6f\xc7\x55\x4e\xf7\x89\x25\x7c\x58\x67\x26\x48\x2b\xd7\xb1\x10\x7b\xb1\xd0\x3e\x67\xe3\xe5\x98\xbc\x3f\xbb\x3e\x20\xd3\x4f\xd7\x07\x84\xa9\x60\xfc\x82\x7c\xcc\x22\xc5\x93\x2e\x3b\x87\x41\x11\xf0\xfd\x8b\xcb\x7d\x7d\x0d\x5b\x42\xb4\xe0\x6f\xcb\x6e\x95\x50\xb5\xda\x61\x1d\xf7\xa7\xba\xfd\x53\x2c\x63\xd7\x0a\x76\x53\x14\x77\x05\x01\xcc\x71\xbe\x54\x38\x4d\xbb\x16\x7d\x17\x83\x10\x36\x5e\x1e\x91\x11\x61\xf7\x34\x50\x47\xe4\x70\x21\x04\x19\x19\x27\xb1\x23\x72\x38\xa7\x29\x39\xbf\xb8\x3e\x3b\x42\x07\x34\x16\xab\x74\x4b\xd6\x5d\xe2\xf9\xc5\xf9\x87\xbf\x18\xca\xb9\x25\x8c\x83\x02\x86\x92\xd9\x1e\x0c\x82\x5a\x64\xfd\x27\x8e\x62\x75\x1d\x63\x72\xdd\x35\xfd\x0d\x8d\x78\x48\x73\x65\x1f\x04\x5e\x60\x45\x2b\xe5\x2b\x61\x55\x3c\x7d\xf6\x5c\x25\x3e\xe4\xfa\x7a\xaa\x31\xec\x30\x00\x1a\x23\xe2\x35\xa2\xfb\xf3\xaa\x89\x02\xff\xd8\x39\xb3\x88\x30\x7a\xc4\x85\x48\xd7\x47\x16\xed\xb3\xec\xe5\xcb\xaf\x02\xdd\x31\xfc\x8b\x1d\x99\xac\x39\xbd\xd4\x5e\xb8\xd5\x00\x2a\xe8\x4e\x13\x8c\x34\x5f\xc2\xa2\xeb\x91\xc1\xf7\x67\x8d\x80\x7d\x74\xb8\x9a\xec\x90\x78\x00\x11\xf0\xb8\xd7\x48\x33\xf5\xc7\xec\xb4\x6f\x66\x80\x1e\x04\xa9\xbb\x2b\x1e\xac\x7b\xf2\xcc\xc9\xc9\xc7\x69\x5f\x0f\x10\x20\x46\xcd\xb0\xbb\x54\xca\xa9\x42\xa6\xa1\x35\xc1\x86\x58\x4b\x0d\x86\x34\x17\x0c\x53\x43\xb2\xe5\x7e\x85\x1e\xfa\x75\x99\x96\x2f\xca\xf6\xa9\xbc\x9a\x5d\x6e\x35\xd7\xe3\xb4\x89\xb6\x60\x4f\xd7\x8d\x36\x6f\x5a\xf4\x94\xbd\x76\x62\xd0\x9e\xe1\xa4\xca\xe7\x41\x32\x11\xb1\x8b\x25\x40\x4a\x80\x35\x1d\x77\xb8\xac\x41\xd0\x92\x46\x30\x7a\xe5\x83\x8b\x2a\xd4\xcb\x74\x71\x65\xac\x97\x60\x9a\x54\x2c\x58\xc5\x3c\xa8\x67\xdf\x2a\x3f\xa0\x16\x45\xf5\x3f\x5f\x27\xc2\xc9\x88\x7c\xab\x85\xf2\x68\x5f\x12\x9e\x28\x8c\x73\x5b\xf0\x94\xdd\xd1\x28\xea\x00\x15\xa9\x85\x51\xca\x66\x12\x1d\xa7\x58\xbc\x10\x18\x2f\x60\x5c\xf4\xba\x8f\x46\xa7\x0d\x0f\x9a\x7d\xfe\x62\xe8\x6e\xc6\xe8\x4b\xc6\xee\xc1\x70\xd5\x65\x02\xc3\x35\x10\x0b\xf2\x2d\x7a\x79\xc3\x0c\xa1\xaf\xb3\x60\x25\xc8\x25\x32\x6d\x53\x92\x2e\xe1\xf1\x52\xb6\xdb\xc0\x7a\xcd\xb7\x07\x31\x48\xfc\xe1\x36\x0d\x08\x99\x4c\x6d\xd8\xcd\x67\x3b\x86\x95\x94\x5b\x28\x8f\xbb\x58\x9e\x5a\xcb\x58\x23\x16\x7a\x60\xa0\x21\x70\xa2\x61\x72\x1f\x4d\x6b\xc7\xad\x37\xcf\xd9\x06\xf1\x20\xe9\xba\xa8\xe8\xe4\x0b\x62\x29\x4f\xee\xb3\x88\x06\x28\x23\xb0\xd4\x4d\x7b\xfe\xf7\xbe\x59\xe5\x8a\xa7\x2f\x5b\x2a\xd7\x95\x2c\xe0\x31\x01\x3f\x68\xb5\xbb\x65\x5b\xb3\xb5\x13\xca\x4d\xce\xb8\xf6\xe1\xf5\x95\x95\xb0\x7b\x95\xd2\x12\x4e\xe9\x5c\x64\xaa\x07\x23\x79\xac\x9b\x63\x2c\x94\x3e\x7d\xfd\x76\xc6\x39\x36\xee\xf0\xe8\x81\x26\xed\x9e\x75\x03\xc3\x18\x18\xc6\xef\x9b\x61\xc4\x42\x59\xb1\xaa\x11\x2d\xed\x5e\x37\x3d\xfd\x6d\xfa\x79\xda\xd4\x1c\x42\xad\xc8\xd7\xe1\x13\x6a\x9a\x35\x23\xac\xe3\x1c\xf7\x70\xed\x79\x98\x53\x4f\xf2\x5b\x45\xee\x6c\xcf\xc5\xed\x23\xf2\xfe\x9a\x61\x0b\x34\xbc\xae\x24\x60\x71\x32\x86\x5d\xcf\xd3\x36\xcd\xbc\xf1\xce\x35\xeb\x7c\x06\xa1\x46\x97\x10\x29\x67\xa3\xbe\x50\x6d\xfe\x7c\xce\x02\x9a\x49\xe3\x13\xd7\x61\x4a\xc8\x41\x0c\x58\x0a\x7d\xe4\x7e\x75\x2f\x50\x15\xff\xd1\x84\x7f\x95\xbc\x04\xbb\x58\x2c\xba\x0f\x1e\xb9\x1e\x70\x07\xae\xff\x1b\xfe\x01\x37\x95\xd2\x5f\x9b\x37\xc5\xdf\x57\x27\xd7\xf8\xb6\x79\x18\xd3\xe3\x07\xae\x98\x75\xb2\xa3\xb1\xdd\x20\xd6\x28\x0b\xae\x86\xe4\xd5\xe8\xf5\x37\xdf\xb4\xa8\xfc\x9f\x6e\xdb\xa3\x23\x46\x3f\x6e\x7c\x85\xee\x9c\xfd\xa2\xd2\x5a\xaa\xff\xdb\x51\x87\x80\xb4\x21\x20\xad\x87\xd9\x73\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\xad\x69\xc6\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x4d\x33\x19\x68\xd9\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x86\xcf\x10\x90\x36\x04\xa4\x55\x9f\x21\x20\x6d\x08\x48\xcb\x9f\x21\x20\x6d\x08\x48\x1b\x02\xd2\xbc\x9d\x0e\x01\x69\x0e\x2e\x86\x80\xb4\x21\x20\x6d\x08\x48\x2b\x3f\x5f\x32\x20\xad\xa5\xbc\x02\x21\x23\x93\xc5\xd7\xf7\xae\x4f\x31\x76\xaf\x9c\x60\xce\xc6\x03\xd2\x77\x97\x4f\xd5\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\xfb\xc1\x1b\xf2\x77\x0f\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\x54\xf1\x0c\xee\x52\xc5\x33\xb8\x4b\x0d\xee\x52\xbf\x29\x17\x83\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\x29\x6f\xe3\xdf\x19\x2d\x1b\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\xca\xf3\x0c\xee\x52\x83\xbb\x54\xfe\x0c\xee\x52\x83\xbb\xd4\xe0\x2e\xe5\xed\x74\x70\x97\x72\x70\x31\xb8\x4b\x0d\xee\x52\x83\xbb\x54\xf9\x19\xf2\x77\x0f\xf9\xbb\x87\xfc\xdd\xa5\x67\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\xf7\x1a\x61\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x0f\xe9\x58\x87\x74\xac\x43\xfe\xee\x21\x7f\xf7\x90\xbf\xbb\x19\xfe\x21\x7f\xf7\xc0\x30\x06\x86\x31\xe4\xef\x1e\xf2\x77\x97\x9e\x21\x7f\xf7\x90\xbf\xbb\xf2\x0c\xf9\xbb\x9b\x2f\x90\x43\xfe\xee\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\xdc\x67\x08\x48\x1b\x02\xd2\x7e\x53\x41\x1c\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\xde\xc6\xbf\x33\x5a\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x9a\xe7\x19\x02\xd2\x86\x80\xb4\xfc\x19\x02\xd2\x86\x80\xb4\x21\x20\xcd\xdb\xe9\x10\x90\xe6\xe0\x62\x08\x48\x1b\x02\xd2\x86\x80\xb4\xf2\xf3\xaf\x9d\xbf\x1b\x92\x72\x77\x65\xef\xbe\xd0\x8d\x5a\xe8\x77\x79\xd1\x05\xb6\xf6\xc2\x89\x6e\x77\x98\x37\x19\x14\x25\xba\x53\xb0\x2c\x86\x63\xd4\x9d\xe4\x9a\xdf\x15\x5f\xea\x8b\xe8\x6c\x0f\xfa\x9b\xed\x01\xbb\x34\x6d\x7d\x5d\xd3\x85\xbe\x40\x29\x10\xd0\xa0\x83\x48\xdc\xb1\x14\xa1\x41\x37\x46\x07\x38\x49\xc4\x9a\x2b\xa5\xe9\x2e\xb7\x11\x30\xbe\x4e\x03\x11\x4b\x8e\x69\xcb\x51\xc7\x37\xdb\xe3\xf1\x82\xc7\x5c\xb1\xd9\x1e\x19\x11\x70\x9e\x73\xa6\x63\xa9\xba\x81\x93\x44\x54\xaa\x31\xc9\x67\xe6\x45\x89\x86\x95\x87\x2c\x56\x3c\xa0\x91\x01\xb0\xda\x0f\x8f\x09\x8d\x92\x15\x8d\xb3\x35\x4b\x9d\x76\x90\x31\xdc\xd7\xab\xa1\xe5\x46\x1d\x85\x1e\x22\xde\xfb\x29\xee\x8d\x38\x5b\xcf\xeb\x9a\xc2\x16\xb1\xb1\xc2\xe4\xaf\x5d\x35\x0d\x6e\x14\x47\x59\x93\x49\x73\xe7\xe4\xc1\x2d\xfe\x9f\xc8\xbc\xfb\x5f\x83\x5c\xb9\x74\x3b\xc8\x35\xe1\x1a\x0e\x5a\x94\xb0\x3c\xaf\x59\x75\x50\xc0\xa1\x45\x87\x28\x12\x77\x48\x0a\x50\x83\x94\xeb\x54\x50\xb0\xfb\x23\xaa\x17\xf0\xb4\xdf\x44\x5c\xb1\x94\xc2\xcd\xde\xd7\xf3\x6c\x46\x46\x18\xae\xa4\x37\xca\x3a\xa1\x29\x97\x22\x3e\x20\x10\xb3\x68\xd5\x02\xb6\xcb\x85\x10\x64\x4e\x53\xd0\x55\xe4\xc3\xfd\x61\xc7\xe1\x8a\xf1\x34\x67\x67\x7f\xcf\x68\xf4\x3d\x7a\xd8\x5a\x49\x95\x2f\x8c\x88\xca\x25\xb4\xb1\x9a\xf7\x7c\x48\xff\xb9\xfc\x19\xe0\xa0\x85\x5f\xd8\xbc\xf8\x67\x80\xff\x1c\x8f\xc7\xe4\x17\x07\x02\x95\x66\xcc\x06\xca\xe4\xbe\xa6\x38\xc6\x9f\x89\xdf\xb7\xdd\x98\x1c\x3a\x86\x2a\x60\xd5\x13\xe0\x71\x0f\xe0\x7c\x83\xed\x08\x2f\x0c\xd6\x06\xa0\x7f\x49\x1c\x98\x57\x54\x3e\x87\xfe\x6e\x34\x73\x79\x51\x0c\x7d\x9d\x8f\x4c\x55\xb1\x3a\xce\xca\xfc\x01\x36\xa9\x97\xe6\x9b\x2e\x72\xf5\xa4\x58\x40\x5b\xd0\x4e\xc1\x7f\xb3\x97\x2f\x5f\xbf\xc1\xff\xc7\x37\xf9\x37\x57\x2b\x91\xaa\x51\xc0\xd3\x20\xe3\x0a\xa4\x2a\xf3\x91\x6f\xa0\x7f\xfe\xb3\xf5\x6b\xb0\x63\xa8\xe7\xd8\xe6\x45\xde\x28\xa1\x29\x33\x12\xf9\x32\x15\x59\xa2\x25\xf2\xd9\x4c\xd1\x28\x7a\xee\xb5\x47\x99\x94\xf6\xe8\x95\x92\xd3\x0b\xdb\x9b\xdd\xc3\x34\x8a\x1c\x15\x13\x1c\xd0\x0f\xb8\x1f\xf0\x0e\xe5\xbf\x1e\x51\x7d\xb4\x91\xce\x58\x4f\x4d\x97\x64\xca\x03\x32\x3a\x20\x37\x80\x87\xc3\x31\xb9\x82\x23\x47\xcc\x91\x6b\xec\x74\x2d\x52\x46\x12\x2d\xfe\x4b\xc9\x37\x8c\xcc\x31\xc6\x60\x6b\xd5\x9b\x46\xf1\x4c\x98\x0c\x68\xc2\x48\xb0\xa2\x29\x0d\x14\x4b\x0d\xd8\x67\xe8\xaa\xed\x3d\x0c\xcf\x81\xf0\xaf\x69\xc8\x46\x59\x82\xdb\x42\xbe\xc8\xc9\x11\x04\xb6\x19\xd2\x71\xc7\xe6\xfa\xe2\xc0\x0c\xf1\x70\x57\x3c\x64\x49\x24\xb6\x6b\x16\x7b\xc9\xa9\xf9\x3e\x49\x45\x68\x37\x29\xf4\xab\xcf\x14\xd0\xa4\x54\xc4\x8a\xc5\xa1\xb3\xd5\x69\x70\x6b\x7e\xf8\x45\x37\x2f\xfa\x27\x7f\xf8\x63\xd3\x09\x08\xd9\xc6\x76\xff\x07\x52\x39\x05\x3e\x52\xd6\x26\x51\x95\x95\x81\x2d\xe6\xea\x16\x4d\x60\xbb\xde\x62\x81\xfe\xab\x05\x5b\xf0\x4d\xcb\x72\x2c\xdc\xa3\x46\xa1\x80\xe5\x39\x44\x6c\x81\xb4\xba\x02\x9f\xd9\xb9\x6d\x8e\x60\x74\xe8\xc1\x53\xc1\x36\xc1\xe3\x90\x07\x70\xf5\xbc\x5b\x41\xc0\xb4\x2b\xc8\xba\x5e\x59\xe6\x96\xe3\xa5\x53\xfa\xdc\x09\x53\xc0\xe3\xc0\xfc\x35\x17\x6a\x35\x26\xe8\x28\x09\xdc\xe4\x3e\xd1\x42\x8a\x8a\xb6\xce\x5d\xea\x39\x14\x1f\xf1\x7a\xc0\x3a\x74\x34\x26\x41\xca\x4c\x7c\x86\x34\xa7\x5b\xa4\x24\xe6\xd1\x8b\x03\x1b\x63\x11\xb2\x05\xcd\x22\x25\x09\x4e\x4b\xa3\x2e\x0d\x1b\x44\x6a\x25\xc8\x9d\xa6\x95\x13\x73\x71\xd3\x40\x9c\x99\x7f\xea\xf3\x68\x28\x67\x5e\x81\x03\xfd\xfd\x40\xb5\x6e\x86\xf1\xf5\xca\x25\x9e\xae\x11\xf9\xab\x91\x8b\x34\x28\x76\x8c\xbf\x1d\x18\xe6\xa0\xa5\x4c\x30\x1b\xd8\x21\xb1\x4e\xca\x73\x1e\x07\x51\xd6\x08\xf1\x8a\x91\x80\x6a\xc9\x13\x3a\x28\xba\x21\xc8\x9e\x63\x91\x4f\x06\xba\x7b\xe1\x81\xe4\xac\xb1\xfe\x4a\x15\xb6\x12\x60\x9a\x24\x55\xbb\x6f\x9e\xa7\x77\x7b\x54\x61\xa8\x0d\x08\x1a\x2c\xcf\x6a\x98\x1b\xb5\x97\x2e\xc4\xb8\xb5\xca\xb2\x7e\xca\xa8\x3e\x47\xc1\x2d\xa1\x4b\xca\xe3\x03\xb3\x1b\xd0\xec\x11\xdd\xd1\xad\x34\x5e\xf0\xde\x5d\x6c\xbd\x15\xd0\x4d\xe1\x80\xc4\x6c\xc3\xd2\xd2\x7e\xf3\xde\xee\x7b\x96\xf7\x29\xb0\x40\x18\x30\x8d\xdc\xa0\x97\x08\x29\xf9\x3c\xb2\x03\x17\x7e\x58\xfa\x83\xab\x84\x05\xfe\xfb\x1e\xce\xad\xd9\x33\xad\xfd\x66\xd9\x78\x69\xf3\xdf\xf5\xea\xbf\x02\xcf\x08\x5d\x7b\xbb\x54\x22\xa5\x4b\x66\x7f\x92\x8a\xaa\x0c\x11\x83\x26\x27\x16\x9e\x3b\xc6\x80\x5b\x1e\x87\x9a\x0e\x59\x94\x26\x51\x96\xd2\xa8\xf8\x25\x10\x31\x5a\x80\xe5\x11\xf9\xeb\xdf\xf4\x2f\xba\x7f\x16\x9a\x08\x4f\xf3\xeb\x2c\x1e\x8d\x46\xb3\x98\x26\xdc\x06\x8a\x12\x9a\x70\x76\xaf\x58\x0c\xad\xc6\xb7\xdf\xca\x31\x17\x87\x9b\x57\xb3\x18\x47\x3c\xc9\xa4\x12\xeb\x4b\x86\xa6\xac\x53\x06\xd7\x2d\xa0\xd3\xa5\x70\x4c\x50\xc0\x90\x18\x5d\x5e\x25\x53\x72\x1c\xa4\xe1\x38\x49\x85\xc6\x40\x00\x44\x67\x2c\xd2\xe5\x2c\xd6\xd4\x0c\xbe\x00\x11\xe5\x88\x34\x34\x2b\x5b\x42\x10\x94\xc2\x2f\x17\x7f\x8d\xb8\x54\x7f\xaa\xbc\xf9\xc0\xa5\x2a\x23\xc8\x81\xc9\xe0\x9d\xc7\xcb\x2c\xa2\xa9\xfb\x0a\xf0\x15\x08\xbd\x68\xb9\xf6\x04\x6e\x72\x1b\x8b\x3e\xfd\xc7\xc8\x4c\x53\x63\x07\x7a\x0a\x56\x6c\x5d\x84\xa3\x8a\x84\xc5\xc7\xd3\xc9\x8f\x5f\x5d\x95\x7f\xaf\x3b\xbe\x5a\xf7\x62\xe3\xc2\x55\x0c\x39\x62\x7f\xcf\xf8\x86\x46\x9a\xa0\x9a\x7d\x5d\xf5\x49\x76\x36\x6f\x83\x7a\xcc\x59\xdd\xf2\x5e\x2d\x67\xad\xd0\xa0\x1a\xef\x00\xf4\xa6\x47\x60\xcc\x8c\x59\x68\xa6\x87\x70\x00\xb5\x30\xa4\x9e\xfa\xf4\x1e\x62\x01\xdc\x1d\x76\xfc\x18\x44\x00\x96\x4a\x7b\x49\x0c\x44\xbc\x61\xa9\x22\x29\x0b\xc4\x32\xe6\xff\xc8\x3b\x97\xd6\x5f\x01\xaa\x77\xd5\x18\x05\x8f\x15\x4b\xb5\xb0\x00\x47\x1d\xb5\xb2\x6b\xba\x25\x29\xd3\xc3\x90\x2c\x76\x3a\xb4\xde\x52\x1f\xb5\x90\xc8\xe3\x85\x38\x82\x7c\x42\xf2\xe8\xf0\x70\xc9\x95\xdd\xd8\x81\x58\xaf\xb3\x98\xab\xed\x21\x58\x50\xf9\x3c\x53\x22\x95\x87\x21\xdb\xb0\xe8\x50\xf2\xe5\x88\xa6\xc1\x8a\x2b\x16\xa8\x2c\x65\x87\x34\xe1\x23\x80\x3d\x86\x93\x35\x5e\x87\xcf\x52\x73\x12\xe4\xbe\x8f\x0e\xd4\xc9\x07\x6c\xdd\xb6\x65\xd0\x3b\xd8\x04\xe1\xa2\x14\x8c\x6c\x3c\xc7\xb6\x75\x15\xb9\x3c\xbb\xba\x26\x76\x74\x6f\xc0\x32\x22\xbf\xf8\x52\x16\xeb\xa0\x91\xc6\xe3\x85\x95\x57\x40\x69\xed\x5e\xef\x91\x65\x46\xdc\x23\xba\xca\x6c\xbe\xe6\x4a\x3a\x89\x68\xc4\x98\x9c\xe4\xda\xec\x2c\x09\xa9\x62\xe1\x98\x4c\x62\x72\x42\xd7\x2c\x3a\xa1\x92\x3d\xf9\x2a\x80\xd0\x36\xd2\xb8\xed\xbb\x0e\x0d\xc1\xe3\x4d\xaa\xba\x9c\x4c\x35\x2c\x5b\x71\x1e\x35\xc7\x29\x47\x2f\xd9\x60\xb7\x22\xbc\x9c\xd6\x68\x57\xf1\xd8\x25\xad\x30\xa5\x16\xd5\x77\x83\x9f\x7d\xad\xc4\x9f\x75\x05\x9c\x4c\x73\x4a\x87\xb7\xde\x39\x8b\x84\xde\x55\xc2\xe8\x5e\x98\xcf\x60\xda\xcc\xa7\xff\x2d\x38\x25\xf0\x49\xf8\xbf\x67\x26\x44\xed\x88\x20\x83\x3a\x54\x6c\x9d\x00\xbd\x3a\xc4\x1f\xc0\xbb\xae\xf0\xc8\x48\xe5\x28\x9d\xd3\x60\xbc\xa5\xeb\x68\x16\xff\xfc\x33\x5f\x10\xf6\x77\x32\xbe\x7c\x7b\x7c\x72\x22\xe2\x05\x5f\x92\xd9\x9e\x6e\x30\xdb\xfb\xe5\x17\xdd\xfb\x04\x44\x59\x46\x28\x09\xa2\x4c\x2a\x96\xa6\x22\x62\x79\xc1\xb9\x6a\xdf\xa0\xdb\x12\x31\x8b\xd5\x81\xfe\x18\x4a\xd6\x01\x05\x51\x96\x94\x36\x00\x65\xef\x49\x85\xbb\x82\x61\xf0\x38\xe8\xa5\x88\x58\x59\x30\x80\x49\xd0\x4c\xad\x44\xca\xff\x81\xae\x5a\x8e\x74\xe0\xe1\xfe\x0d\x03\xcf\x62\x10\x4c\xa1\xe1\x33\x72\x2e\x42\xd4\x1a\x90\x3b\xe3\x91\xa5\x04\x59\x8b\x98\x83\xe7\xb1\x48\x49\xc8\x22\x86\xe7\x1c\x59\x2e\x4d\xf8\x7b\x2d\x2a\xe8\x75\xd1\x4b\xf8\x37\x5c\xd5\x9c\x0e\xe7\x5b\x74\x44\x62\xdd\x37\xfe\xb9\x61\xe9\xdc\x7d\x75\xe7\x5a\x27\x46\x70\x34\x8a\xbf\x96\x78\x2a\x9f\x91\xa9\xcd\x50\xe6\xc0\x56\x24\x8e\x62\xf7\x5c\x2a\xa8\xe7\x48\x25\x49\x68\x6a\x0e\xd7\xf1\x47\x52\xcc\x76\x77\xa0\x13\x11\x36\xc0\xbc\x64\xaa\x09\xe2\x7c\x3a\xcf\x10\x80\xbc\x63\x13\xbf\x16\xf3\x04\x0a\x62\x86\xfa\x0a\x14\x23\x62\x4c\xdc\x5c\xc4\x94\xb1\x54\x57\xc1\xf4\x8b\x62\x6d\xb0\xf3\x24\x11\x22\x92\xee\x0f\x9a\xf5\xa4\x1b\xcc\x2d\xe1\x9f\x96\x9d\xc9\xe7\x0f\x3f\x8f\x44\x70\x4b\x17\x28\x92\xb2\x12\x18\x74\x0d\x2f\x2b\xbf\xad\x68\x1c\x46\x4d\x5b\xa4\x05\xdd\x70\xa1\x66\xc5\xdf\xc8\xf4\x8a\xbf\x11\xab\xde\xe5\xa9\x1d\xc3\x35\x8d\xe9\x92\x49\xb2\x12\x52\x39\xae\x5b\x8f\x82\x90\x52\x9f\x4f\x38\xcb\x67\xe4\x9c\xb1\x10\xf4\x06\xfa\xe2\xa9\x84\x69\x6b\x29\x98\x93\x0a\xe4\xb1\xa6\xe6\xe9\xb9\xc7\x04\x9b\xa7\xf4\x0c\x8c\xbc\x27\xc5\xc2\x20\x6d\xce\xd2\x5c\x73\x82\xca\x03\xae\x74\x8f\x92\x68\x11\x28\x80\x26\x8f\x33\x1f\xbd\x2f\x9c\x6d\x11\xb8\xa3\x7b\x67\xf6\x0c\xaf\xeb\x1a\x0e\x71\x17\x3b\xb0\xd4\xa6\xfd\xcc\x4c\x9b\x50\xab\x80\x21\x7c\x41\x62\x11\x33\x24\x61\xb2\x09\x3f\xcf\xec\x32\x22\x87\x6d\xda\x09\xcf\x70\x7f\x03\x4d\x0c\x56\xa5\x20\x82\x7c\xeb\x03\xe7\xac\x31\x98\xb7\x3c\x46\x9d\xcd\x13\xf1\x19\x11\xb1\x4b\x86\x0e\xf9\x76\x7d\x5a\xfa\xd7\xcd\x3c\x3c\xb0\x73\x18\x99\x81\xb4\xa2\x97\x66\x64\x3a\x28\xab\x3c\x7b\xf4\xe1\x1a\xf7\x91\x46\xc8\xad\x54\x6c\x6d\x30\x97\x8b\x1e\x97\x34\x0e\x56\x2c\x1d\x59\x99\xf2\x88\x9c\x00\xc6\x5d\x4e\xaf\xa9\xbb\x3b\x05\x74\x64\xd0\xac\x0b\x95\x7d\x50\x54\x98\x06\xb7\x77\x34\x0d\x51\x7e\xa0\x8a\xcf\x79\xc4\xd5\xb6\x8f\x74\xa3\xbb\x77\x25\x9a\x2e\x89\xc5\x85\xea\x94\xb2\xb5\x88\xaf\x58\x97\xb0\x02\x8d\xbf\x90\x80\x52\x96\x47\xb4\xa0\x7c\x72\x3e\xd1\x52\xe2\x92\xc7\x24\x06\xba\xa6\x84\x3e\x4f\xc0\x9a\x0f\x90\x79\xe2\xdd\xd3\x0d\x98\x7d\x38\x9f\xaf\x88\x2a\x56\xaf\x80\x1d\xb7\x12\xb5\x67\xc4\x46\x22\x5f\x45\xdc\x72\x7b\xd0\x8e\x2f\x0a\x2f\x1e\x53\xb8\xda\x88\xfc\x56\xdd\x67\xf3\x30\x3d\xb3\x79\x75\xd6\xd6\x95\xbe\x3a\x8b\x90\xcb\x40\x6c\x58\xba\xb5\xc7\xa4\x6d\x56\x39\xb7\x01\x78\x5a\x64\x2f\xd2\x2d\x00\xf4\x1b\xa8\xf8\xc9\xfa\xbf\xf9\xa9\xe5\x27\x63\x34\xb0\xd3\xc9\xed\x04\x93\x29\xda\xc8\x68\xb8\xd1\x17\x2c\x59\x60\x82\x74\x89\x8a\x9e\x5e\xaf\xb7\xc9\x8a\xca\xb1\x5f\x98\x24\x27\x93\xd3\x4b\x42\x33\x25\x46\x21\xd3\xd7\x59\x30\x1a\xc6\x70\xe0\x69\xb8\x36\xbb\xad\xe0\xa2\x48\xd4\xc9\x9a\x26\x0f\xd8\x60\xf8\xb1\xfe\xb6\x75\x0f\xed\x2e\x51\x1f\xba\xec\xa0\x8a\x66\x2d\x08\x98\xfd\x17\x44\x8c\x82\x06\x43\xcb\xf8\xe6\xc2\xfb\x29\xa6\x1b\xca\x23\x3a\xd7\x04\x22\xa2\x4b\x07\x51\x89\x8b\xe7\x67\xd6\x32\x01\x77\x31\x89\xe1\x65\x41\x99\x25\x3b\xf9\xc5\x38\xca\xb4\x6e\x62\xb5\xb1\x9f\xcb\xff\x54\x65\x55\x1a\xcf\x8e\x9f\xa2\x1b\xa5\xcf\x1b\xce\xb5\x39\x4a\x3c\x5e\xf6\x39\x12\xa6\x75\x52\xf2\x32\xe9\x79\x1f\x31\x1b\x6c\xbe\xb5\xe8\xd0\x80\x5b\x85\x7d\x31\xff\xcf\xa6\x3e\x15\x72\xe3\x9c\x26\x6b\x45\x6b\x97\xdd\x49\x55\xcc\xad\x90\xd1\xc4\xc6\x7f\x88\xd0\x6e\x9f\x87\xc1\xdc\xb2\xf7\x9c\x1d\x94\xef\x1e\x73\x91\x94\x64\x43\x53\x2e\x32\x49\x4e\x2e\x4f\xf1\xb4\xe3\x5e\x7a\x24\x61\x14\x93\x56\x2c\x58\xc4\xef\xb1\x5f\x07\x8f\xce\xaf\x65\x71\x0e\x6e\x2c\xcb\x24\x61\x2c\x95\xd5\xae\xe6\xcb\xa4\xd6\x51\xfe\x5b\xbd\x9b\x5e\xf7\xae\xa6\x8b\x10\x8e\xe8\xdd\xa5\xb5\xd7\x92\xb9\x04\xb7\xf1\x1b\x6f\xeb\x46\x89\xbd\xe1\xa6\xd2\x7a\xa3\xc3\x85\x01\x72\x04\x1b\xe2\x01\x97\xb8\xbb\xfa\x6e\xc9\xa4\xca\x65\xe5\x38\xcc\xa5\x5f\x4d\x7b\x60\xe3\x88\x58\x8b\xc2\xa9\xca\x92\xa7\xba\x30\xb7\xee\x96\xde\x77\x9e\xb6\x6b\x8e\x3b\xd7\xea\x04\x3d\xb3\x22\x8d\xd3\x22\x6d\xbc\xa7\xe7\xf2\x78\x00\xeb\x47\xf0\x8d\x07\x9d\x1e\xe1\x51\xf5\x42\xfd\xf6\xcb\x35\x18\x3a\xad\xe7\x89\x88\x51\xf0\x02\x67\x67\xeb\x24\x0a\x44\x26\x4b\x96\x29\x0d\x4d\xe8\xde\xe6\xf5\xf8\x0d\x8a\x8d\x01\x26\xf9\x79\x46\xe6\x8c\xa4\x6c\x2d\x36\x2c\x34\x0e\x92\xf6\x03\x91\xea\x19\x2e\x52\x26\x57\x84\xc7\x52\xd1\x28\x7a\xd4\xdb\x73\x0b\x2d\x29\x93\xa4\xbe\x3b\x2b\xbf\xa0\xbc\x8b\x68\x1c\xb3\xa8\x2c\xa5\x3f\x23\xd3\x0c\x62\xd3\x00\x11\x8e\x01\x60\x95\xcd\xc7\x81\x58\x1f\x06\x22\x65\x42\x1e\x2e\xf0\xe3\xc3\x79\x24\xe6\x87\x6b\xaa\x3b\x38\x3c\x15\x41\xb6\xb6\x56\xa6\x43\xb8\x1a\x99\x66\xe6\x12\xa2\xef\x20\x8f\x7d\x33\x30\x23\xb8\x57\x83\xc7\x55\xe2\x3d\xd6\x7e\x6d\xd8\xa2\x8f\x2a\xd4\xe5\x8c\xd5\x2c\xb1\xbe\xb5\x63\xe8\x62\x7d\xad\x8b\x7b\x5c\x4c\xa3\xca\x35\xd8\x77\x83\x7b\x2c\x0d\x40\x4c\xa3\x51\xb1\x68\x8f\x7a\xef\xcf\xbb\xdd\xe9\x9e\x1f\x63\xda\xd4\xd6\x5b\xfd\x17\xb8\xce\xf7\x47\x6b\xf3\xd2\x34\x22\x3c\xbf\x3f\x3f\x81\x9e\xe5\x71\xd1\xfd\xf3\xcf\x2c\x0e\x7f\xf9\xa5\xb7\x05\x07\xf8\x8a\x55\x6f\x40\xbe\x8d\x35\x8d\xf9\x82\x49\x65\xc9\xb1\x74\xb6\xb9\xb1\xf6\xb1\xf4\x80\x50\x49\xee\x58\x04\x9f\x99\xf8\xde\x42\x0a\x46\xe7\x1c\x7b\x0f\x37\x77\x3b\x11\xeb\xb6\x10\x30\x84\x04\x0f\x1a\xe9\x16\x2c\xc5\x3b\x0d\x8f\x4b\x11\x28\x56\x0a\xc8\x4f\x53\xae\x53\xa9\xfa\x71\x24\xb2\xf5\xbc\xb4\xe1\x8b\x18\x97\x47\x6b\x42\xfb\x56\x8e\x68\x92\xe4\x1f\xe6\xd6\xd0\x8a\x0f\x3a\xf8\x88\x7e\x70\xbf\xac\x7f\x4b\x0c\xcf\xb8\x52\x29\x55\x6c\xb9\x3d\x32\x36\xb1\xf1\xa7\xd2\xcf\x7a\xb1\x7e\xfe\x99\x28\xf1\x17\xba\x8e\xaa\x2f\xc9\x3f\x09\x8f\x43\x16\x2b\xf2\x35\xb6\x63\x91\x64\xfa\x5f\x24\xb7\x20\x5e\x8a\x28\xe2\xf1\xf2\x93\xa3\xa9\x4c\xdd\x9f\x72\xf8\xd6\xf4\xde\xb9\x94\x1e\x91\x57\xce\x6e\x21\xc4\xee\x0c\x3b\xc1\xaa\xd5\x38\x2a\x4f\xd6\x37\xdd\x8a\xf1\x58\xaf\xa9\xc7\x73\xb2\xc8\xc8\xa1\x0f\xa4\x90\x47\x24\xe2\x71\x76\x6f\x1b\x68\xf9\xd8\x5c\x4d\xad\xd9\x13\xb1\x76\xee\x74\x67\x31\xd0\x30\xc8\xcf\x3f\x9b\x44\xa0\xff\x71\x7b\x40\xfe\x63\x43\x8e\xfe\x58\xfe\x9c\x14\xdf\x43\xe3\xff\xb8\x25\xbf\xfc\x72\x44\x66\x7b\xfa\xdf\x1b\xfd\x76\xcf\xe9\x8a\xc5\x21\x31\xc8\xb7\xc8\x02\xec\x8b\x88\xa5\xb5\xd4\xe6\xcf\xc8\x47\x7a\xcb\x88\xcc\x52\x7b\x66\x40\x89\x2e\x83\x15\x0b\xb3\x08\xfd\x36\x69\x14\x21\x2b\x72\x8c\xcf\x23\x13\x8d\x7f\x44\xce\xc5\x95\x69\x5c\xbc\x05\x17\x9b\x94\xea\x39\x92\xb3\x92\x26\x1b\x47\x4c\x6f\x8d\x83\x58\x88\x61\xa6\x41\xca\x31\x8c\x83\x86\xe1\xc8\x98\xe2\x53\x66\x80\xd0\xb7\x79\x77\xe0\x5b\xb6\x3d\x22\x27\xe6\x8b\xe3\x30\x14\xb1\xbc\xa8\x04\x00\x36\x8f\xee\xc2\x7d\x76\xcf\x82\x4c\xf5\x02\xbb\xcb\x38\x8c\xad\xca\x5e\xb8\xe7\xe5\x13\x8d\xdd\x94\x96\xe4\x19\xf9\xc8\x63\xbe\xe6\xff\x60\x24\x14\x77\xb1\xe2\x6b\x46\xc2\x0c\x34\x33\xd4\x1e\x0a\x57\xf2\xb4\x16\xd7\xef\x89\x62\x51\xe4\x92\x1e\x25\x48\x28\xa0\xfc\x0e\xa8\x0c\x8b\x01\xec\x27\xb3\xbd\xc2\xbf\xa3\xbc\xa3\x43\x11\xc8\xc3\x40\xc4\x01\x4b\x94\x3c\xb4\x49\x0a\xe5\x21\x5c\xea\x13\x11\x1e\x3e\xb3\x71\x9c\x5c\xc4\x23\xb1\x18\xe9\x17\xf9\x82\x38\xef\xde\xa7\x34\x60\x53\x96\x72\x11\x5e\xb1\x40\xc4\xa1\x3c\x22\x2f\x0b\x48\x0c\x47\x2d\x32\x0c\xa3\x9a\xc7\x36\x48\x52\x2e\x52\xae\xb6\x27\x11\x95\x12\x51\xf7\xf3\xcf\x64\x7c\x42\x21\xc7\x7e\xe5\x1d\xf9\x67\x6e\x30\x99\xed\x21\x69\x44\xed\xb7\xdd\x48\xb3\x3d\xe7\xcc\xe8\x3b\xea\x89\xe5\x04\xe5\xcd\x0f\x1c\x24\xe7\x12\x65\x16\xa2\xf9\xc3\x9c\xc7\x34\x2d\x45\x20\xa1\x72\x5c\xbf\xab\xf0\x8b\x05\x8f\xc0\xa7\x17\x38\x46\x7e\xfd\xb1\xbb\x0e\xc9\xbb\xe9\x7f\x14\xc4\xdc\xdd\x75\x7c\x0d\x4e\x13\x3f\xff\x3c\x3e\x39\x9f\x4c\xf4\x1f\xee\x81\x87\x28\x99\x35\xd5\x1c\xe5\xaf\xb3\xbd\x43\x91\xa8\xc3\x20\xe6\x87\x73\x1e\x1f\x9a\xfe\x72\x21\x12\x1f\x16\x6f\xde\xa5\x62\x5d\x72\x09\xb1\x5a\xc7\x8f\x34\xb1\x02\x81\xfb\x3c\x23\xc7\x10\xe2\xf3\xa7\x4f\x6f\xcf\x2e\xcf\xcf\xae\xcf\xae\x6e\xae\xce\x2e\x7f\x9c\x9c\x9c\xdd\xfc\x70\x71\x75\x0d\x73\xf6\xbc\x9b\x5e\x5c\x5e\x9b\x08\x2f\xb1\x61\x69\xca\xc3\x90\xe1\xe9\x65\x6f\xa7\xef\xc8\xba\x8c\x05\x7c\x10\x13\x4e\x9e\x23\xab\x1d\x1e\x59\x35\x43\xf5\x0b\xeb\x89\x5e\xcf\x81\xc4\xe2\x4d\x65\x2a\xcf\x30\x5e\xd4\xb8\xe4\xe9\x65\x72\x97\x47\xcb\x66\x70\x4f\xaa\x40\x65\xd7\xe7\xe4\x7c\x72\x73\x72\x71\xfe\xee\xe6\xfc\xf8\xe3\x59\x15\x0c\x70\xf7\xd2\x54\xf7\xd5\xcb\x11\x9c\xea\xb1\xee\x1a\xe4\xfc\xbd\x2a\x10\x56\xcb\x56\xd9\x23\xe0\x6f\x0e\x4b\xd6\xb4\x53\xaa\xd0\x9c\x9f\x5d\xff\x74\x71\xf9\x27\x80\x6a\xf2\xde\x0b\x52\x6d\xad\xed\xa6\x31\xeb\xfd\x27\xb6\xf5\x2d\x79\xb1\x16\x46\x66\x2c\xd9\x29\xdd\x07\x08\x6e\x10\xf3\x1b\x33\x9b\x1b\x5f\xd3\x67\xe4\x8a\xa1\x77\x9a\xe6\x88\x20\x09\xe7\x8e\xff\xe0\x1e\xf3\xad\x44\xa9\x49\xbf\x6a\x98\xb0\xb3\xc3\xce\x2f\x4e\xcf\x9a\x57\xa1\x61\xca\xe0\x33\xdc\x34\x57\x78\x39\xa5\x6a\x75\x04\x24\x68\xac\x81\x81\xf0\xbe\xca\x34\xf4\xb2\x7d\xbc\xfe\x44\x0c\x95\xdf\xd0\x94\x6b\xf9\xa3\x79\x89\x3e\x5e\x7f\xfa\x15\xd7\x65\xc3\xd4\xea\x66\xad\xb2\xea\x34\xa6\x29\xdb\xb0\xd8\x14\x89\x2a\x28\x1c\xdc\xf3\x65\xc4\x18\x04\x1d\x2d\x84\x6e\x55\x2d\x26\x67\x27\x77\xf5\xe1\xec\xac\x56\x91\x31\x3f\x05\x0b\x1a\x49\x56\xde\xf9\x1b\x11\x65\x6b\xf6\xd1\x97\x8f\x66\x44\xd6\xfa\x67\xc4\xff\xa1\xde\x22\x2e\x21\xf3\xd3\x88\x20\xe6\xa3\x39\x8f\x47\x21\x4f\x3b\x3b\x63\x2a\x80\xce\x62\xa6\xc6\xb5\xc8\xce\xa2\xbb\x98\xa9\x6a\x77\x92\x05\x19\x30\x17\x11\x2b\x76\x5f\xad\x5a\x96\xa4\x7c\xc3\x23\xb6\x2c\xfb\xb9\x21\x8a\x8f\xc3\x50\x0b\x2f\xef\x22\x76\x4f\x7e\x84\xa9\x93\xd3\x94\x6f\xc0\x77\x93\x5a\x7d\xa5\x6e\x91\xb0\x54\x73\x4d\xf2\x29\xe6\xf7\xe4\x54\xac\x29\x8f\xc9\x95\x08\x6e\x31\xf1\x1d\x44\x60\x91\x53\x7e\xab\x6f\x19\x25\x4e\x03\x86\x26\x70\xc0\x0c\xa8\x32\xe1\xb9\xef\x58\xc4\xef\x81\xda\xba\x91\xaa\x57\xdb\x38\x20\xc7\xd3\x89\x87\xe7\x2c\x22\x76\xbf\x11\xd1\x28\x04\xd0\xfc\x6c\x47\x4f\xe1\x47\x11\x4d\xd6\xcb\x32\xe3\x69\x5c\x50\x7f\xe7\x23\xbd\x14\x65\xfc\xd5\x16\xaa\x0e\xc6\xc3\x16\x20\xf0\x33\xf4\xcb\x2c\x96\xd5\xcb\x5f\x4e\x6b\x1d\x81\x09\xc8\x6e\xa5\xce\xd9\x33\xe7\x93\x24\x15\xcb\x94\xae\x65\xd5\x3a\xab\x19\x61\x2a\x32\x85\x29\x12\x74\xaf\xee\xf7\x7a\x86\x9e\x25\x70\xee\xae\x7e\xfc\x6b\x61\xdf\xc3\xf7\xff\xbd\x19\xf9\x27\xc9\xdc\x15\x3b\x9e\x4e\xec\xcd\x7d\x4e\x83\x5b\x4d\xbe\xf4\x85\x0f\xb4\xd2\x0d\x04\xec\xf4\xf8\xfa\xf8\xea\xfa\xe2\xf2\xec\xe6\xfa\x2f\xd3\x66\x7e\x5e\x4c\xa1\xce\xc8\xad\xb3\x11\xc3\x55\x27\x74\xb9\x4c\x6d\x50\x69\xce\xdf\x12\x63\x40\x6e\x00\xe3\xd3\x95\x46\xf0\xe9\x8d\x6e\xd2\x08\x04\x60\xa4\x36\xfc\x4f\x94\xab\xdc\x5f\xa3\x6b\xba\x3f\x1d\x4f\xae\x6f\xde\x5d\x5c\xde\xe4\xf3\xde\x71\x34\xcd\xc1\x77\x66\xda\x9a\x53\xff\x2a\x8c\xfa\x54\xc4\xfb\x8a\xb0\x18\x4c\xd6\x6f\xdf\x4f\x9b\xa4\xa8\xe3\x0f\x93\x93\x0b\x2b\x48\x4d\xce\xdf\xdf\xbc\x3d\x3e\xf9\xd3\xd9\xf9\x69\x23\x72\x62\x11\x7b\x90\x63\x54\x62\x58\x3b\x51\x0b\x72\x90\x7b\x60\x81\x95\x03\x9c\x80\x4f\xfd\xbe\x01\x92\x0f\x9f\xae\xae\xcf\x2e\x3b\x36\xe3\xb7\xf2\x00\xef\x8c\x35\x08\xf0\x6e\x75\x40\x78\xac\x69\xa6\xbe\x60\x1d\x10\xaa\x4c\x72\x08\xb0\x4f\x91\x94\x8d\x6c\x6c\xa3\x16\x32\xf3\xf2\x4e\x52\x51\xd5\x00\xd5\xbb\xb3\x0f\x93\x3f\xdf\x4c\xa6\xd7\xc7\x6f\x3f\x9c\x5d\x5d\x9e\xbd\xbb\x3c\xbb\xfa\x61\x72\x7e\x7d\x76\xf9\xe3\xf1\x87\x46\x30\xdf\xbc\xac\xc3\x77\x2e\x9c\xf4\xeb\xe0\x32\x51\xcb\xb4\x64\x07\x9d\x34\xcb\x15\x7e\x61\xda\x5e\xf7\x26\xd3\xcd\xd7\x24\x11\x22\x2a\x64\x79\xc7\xf8\x57\x71\x9f\x1b\x83\x6b\xc7\x64\x9a\x17\xba\xa8\xf6\x1c\xac\x84\xd4\x74\x0e\xa3\x2c\xb8\x44\x35\xcc\x18\x75\xbd\x18\xcf\x61\x33\xfa\x1a\x3b\x90\x6b\xf3\xc1\x5e\x57\x74\x53\xeb\x37\x16\x46\xcd\x60\x72\x02\x9b\xe8\x9a\x85\x5e\x13\x93\x57\xe5\xbf\x47\x23\xa3\x2f\x1c\x05\x3c\x4c\xff\x7b\x5c\xed\xa3\xb2\x7f\x27\xd3\x1f\xbf\x9e\x5e\x5c\x7c\xf0\x50\x91\x67\xa5\xcb\xc9\x77\xaf\xc7\xaf\xde\x7c\x3b\x7e\x39\x7e\x79\xf8\xea\x4d\x1d\x99\xa7\x5c\xa2\x8f\x87\xbe\x0f\x45\x62\x09\xd3\x94\x82\xfc\x37\xf8\x39\xaa\x48\xff\x26\xff\x1b\xf4\x9c\xd5\x10\xc5\x0a\x44\xa7\x93\x2b\xbd\x65\x6e\xde\x4d\x3e\x9c\xdd\x7c\xb8\x78\xff\x7e\x72\xee\xbf\xa0\xb4\x13\x1c\x14\x68\x8a\xf8\x16\x01\x5c\x34\x5f\x70\x4c\xde\xa2\x7f\x3e\x3e\x39\x39\x9b\x5e\x37\xc0\x84\xbb\xf8\xf4\xec\xdd\xf1\xa7\x0f\xd7\x67\xe7\xa7\xd3\x8b\xc9\xf9\xf5\xf5\x85\xe6\x79\xc7\x27\xd7\x93\x8b\xf3\x46\xc8\xb0\xdb\x66\x44\x4d\xa6\x9b\x37\x7a\x8b\x15\xac\xa8\x15\x84\xc9\xf4\xc7\x37\x57\x9f\xa6\x9a\xa1\xee\x22\x3a\x3b\x1a\x12\xc7\xe6\x00\x51\x7c\x68\xf2\x96\x1a\x55\x30\xc2\x87\x8b\xf7\x1a\xe5\xd3\xe3\xeb\x1f\x34\x5a\x60\xbf\xa3\xa3\x13\x2e\x2c\xe0\xd3\xae\xac\x12\xb0\xd2\x6d\x10\x3b\xfd\xed\x48\x12\xfb\x03\x7c\x75\xf6\xe3\xd9\xe5\xe4\xfa\x2f\x57\x7f\xb9\x42\x98\xcd\xa1\x82\x93\x97\xfb\xbe\xc6\x0b\xd1\x3a\x13\xb9\x95\x91\x58\x76\xcc\xc5\x19\x6a\x07\x1a\x53\xec\x44\x67\xbc\xd9\xde\x1d\x4d\x63\x1e\x2f\xfb\x4c\xfd\xca\x3b\xdf\x93\xcb\xb3\xb3\x73\xdd\xd7\x4f\xd8\x53\x7d\xc6\x7d\xa7\x03\x3d\x35\xce\xe8\x27\x3f\xa0\xe5\xee\x7e\x38\x3b\xfe\x70\xfd\xc3\xd9\xb9\x3e\xb6\xcd\xec\xcf\x7f\x54\xdb\x26\x6c\x99\x87\x61\xac\x70\xa9\xc9\x14\x1a\xc0\xf4\x3f\x1c\x97\xba\x05\x89\x17\xc8\x93\xfa\x70\xa3\x2e\x4e\xad\x3b\x2f\x83\xfa\xd0\xdb\x9c\xcf\x00\x6b\x7f\xc7\x70\xba\x9a\xac\x12\x24\xd9\x11\x79\xfd\xcd\xcb\x52\x26\xd3\x88\x2f\x58\xb0\x0d\xa2\x6a\x26\xb0\x24\x65\x57\x4a\xd4\x0b\x40\xb3\xfb\x5a\xf8\x1a\x71\x34\x7e\xf5\x37\x23\x02\x9a\xbf\x86\x2b\x85\x6d\x33\x92\xab\x4c\x85\xe2\x2e\x2e\xc3\xb6\x61\x31\x93\x72\x9a\x8a\x79\x15\x3e\x2f\x1c\x4d\x50\x74\xc3\x30\x22\x23\x38\xbd\x23\x3d\x66\x05\x13\x65\x0d\xf1\xab\x97\xe5\xd7\xe0\x50\x44\xa3\x53\x16\xd1\x6d\x63\xa3\x05\xe5\x51\x96\xb2\xeb\x55\xca\xe4\x4a\x44\xe1\x11\x79\x53\x6e\xa0\xf8\x9a\x89\x4c\x35\x74\x90\x32\x1a\xf2\x26\x4c\xac\x94\x4a\xde\xb3\x7a\xf5\xf2\x04\x2f\xb1\xf9\xb7\xb5\xf7\x22\x55\x47\xe4\xbb\x97\xdf\x7d\x57\x7d\xa3\xf9\xd9\x11\x89\x44\x40\xa3\xfa\x05\xb9\x03\x1d\xed\x13\x69\x51\xb8\x3c\x83\x02\x47\x6b\xca\xe1\x46\xab\x29\x8f\xe3\xf5\xa7\xef\x52\x41\xca\x40\x82\xa5\x51\x9d\xa1\x3d\xa2\x7a\xc5\xe2\xfb\x22\x8e\xb6\x47\x04\x39\x5f\xcb\x68\x11\x9f\x1f\xae\x45\x98\x79\xb2\xbf\xe0\x30\x11\x9f\x8f\x1a\x1a\x14\xc3\xd4\x73\xe5\x97\x47\x49\xb3\xf8\xf0\x1e\xc9\xd0\x38\x12\xc1\xad\x7f\x28\xd3\x62\xe4\x6b\xb1\xc3\x94\x36\x34\x85\x01\xad\xf9\xdc\x37\xd4\x86\xa6\xa3\x34\x8b\x47\xfe\x36\x3b\x0e\xa6\x71\xd8\x35\x98\x46\xe3\x83\x06\xc3\x2e\x50\x1b\x22\xb7\x71\x2d\x87\x83\x6f\xe6\x9a\x42\xd0\x65\x2d\x64\x19\xb7\x68\xae\x60\x38\x20\x77\x0c\x6e\x0d\x46\x11\x01\x32\x00\xc4\x1c\x66\x26\xee\x59\xb7\xd4\xd2\x0c\x5a\x7c\xf4\xdd\xe7\x50\x6e\xe5\xe1\x42\x1e\xce\x93\x85\x16\x62\xef\x98\x69\x8d\x39\x4e\xaa\xc3\x41\xde\x25\x45\x42\x9e\x82\x59\xb5\x5a\x7a\xd0\x4e\x4e\x6e\xe5\xa2\xb6\xb9\xdc\x79\x99\x41\xeb\xba\x97\xb7\x1c\xfb\xc6\xc4\x39\x6b\x46\x63\x0c\xe4\x85\xbc\x20\x39\x70\xdd\x53\xe1\x0a\xef\x16\x49\x2a\x12\xba\xd4\x77\x1c\xe3\xbd\x53\x51\x30\xd9\x71\x4d\x96\x3e\x10\x9c\xb9\x24\xb7\xb1\xb8\x8b\x5d\xd4\x51\x55\x1a\x2c\xd2\x6b\xbc\xc5\xd4\xb9\x65\x90\x03\x1a\x83\x0e\x08\xb3\xfc\xd5\x46\x42\x24\x18\xa0\xc0\x99\xa1\xf4\xb9\x1f\x9d\x9a\x30\x44\x62\xe9\x23\x0c\xb5\x9d\x2b\x96\x66\xe7\x1e\x56\x4c\x64\xa4\xe5\x7c\xd7\xcc\x78\x69\x16\xcb\xdc\x07\x2a\x93\x36\x30\x1f\x1d\x29\xa0\xfe\xd7\x68\xbd\x44\xdf\x1c\x16\x87\x6e\x47\x20\xb1\x44\x9a\x54\x43\x38\x7f\xbd\x58\xd8\xc8\x51\x7b\x15\x7e\x4d\x05\x8c\x8e\x29\x4f\x5f\xe2\x8d\xd3\x5d\x4d\xb1\x5a\x58\xf4\x88\x31\xe9\x69\x86\x6a\xfa\x0b\x21\xad\xd4\xde\x68\xc4\x93\xd1\x9a\xca\xbf\xdb\x3f\x2b\xf0\x17\x8e\x9e\xf8\x3c\x5c\xf4\xa9\x6b\xdf\xec\x34\xa7\x17\xa7\x4f\x66\x85\xb1\x2e\x1b\xe3\xb8\xa6\xdc\xa9\x0e\x7f\x35\x3d\x3e\x79\x7a\x18\x3c\x25\x13\x73\xb1\xf4\xc3\xf1\xf9\xf9\xd9\x87\xd3\x9b\xc9\xbb\x1d\x21\x79\x6c\x33\x9c\x6e\x74\xc3\x17\x3d\x20\x9d\xde\x7c\x3c\xbe\xfa\x9f\xbf\x22\xac\x7a\xef\x66\x2c\xa5\x65\xf1\xb0\xc5\xa6\xd0\x9f\x45\x77\x31\xe8\x16\x26\x36\x2a\x7b\x0f\x8e\x82\x45\x65\x06\x2e\x14\x5a\xee\x71\x8f\x7a\x4e\xf3\x71\x16\x65\xdb\x83\x8d\x08\x41\xe3\x70\x9d\x66\x34\x88\x2e\x9a\x6a\xc3\x70\x95\x03\xdb\x22\x10\x8d\x3a\xc5\x86\xf6\x4e\x9b\x44\x92\x51\xa7\x84\xd0\xdd\xaf\x4f\xfa\x18\x75\x2c\x58\x7b\xaf\xed\x5b\x01\xbd\xca\xde\xf1\x88\x5d\xa4\x27\x25\x27\xe8\x16\x8e\xde\x3e\xa0\x97\xbf\xe3\x38\xa7\x56\x76\xa8\x0f\x56\x6c\x00\xb3\x59\xbc\xc6\x38\xef\xa6\xcb\x0f\xde\x91\x6f\x9b\xfb\x0f\x5b\x11\xe2\x66\x5d\x0a\x4e\xce\x7d\xf6\xbf\x06\x2b\x6a\x3b\x06\xbc\xb6\xd9\x51\xbb\xa4\xdf\xde\x63\xc3\x0d\xa2\x98\x85\x09\xae\xd3\xb7\x94\x48\x2c\x7d\x3c\xb7\x41\x90\xe8\xb1\x25\x1b\xc4\x8a\x62\x70\xa3\x49\x6e\x36\xd4\x7a\x0e\x9f\x5f\x06\x6e\x80\xa6\x73\xf7\x90\xfa\xe9\xf4\x88\xcd\xf5\x45\xaf\x5b\x9f\x7d\xbb\xae\xd5\x4a\xbb\x2b\xc8\x3f\xff\x3c\xd2\xf2\xac\xb5\x1a\x4f\xe1\x4e\x79\xca\xcb\x6e\x8a\xc5\x7c\x0a\xfb\x72\xde\x12\xdd\x13\x47\x84\x45\x92\x35\x7c\x75\x98\x49\xa0\x25\xec\x9e\x05\x8e\xc7\x1a\xfc\x33\x62\x6a\x64\x3c\x77\x0f\x91\x10\x1f\x42\xb3\x1c\x61\xff\x77\x16\x4a\x33\x82\x71\x86\x04\xf7\xe2\x2e\x2f\x3e\xd7\x4b\xb7\xf0\xbc\xae\xfa\x36\x3f\xc4\x6d\x77\x57\x37\xe7\x6a\x1c\x7a\xee\xf2\x7c\xc5\x98\x2f\x4c\xa3\x14\x64\x72\x58\x8f\x62\xf7\xfa\x1f\x1b\x2f\x65\x27\x17\xea\x2e\x31\xfc\x0f\xf1\x51\x6e\x8a\xd3\xb7\x6e\xb8\x68\xeb\x29\x25\xd1\xb1\xb5\x0a\xa0\x84\x14\x85\x9c\x70\x11\x03\xab\xc0\x86\xe1\x21\x88\x4d\x4a\xa6\x94\x25\x11\x0f\xa8\x04\x4f\xe1\x5d\x3d\xa0\x1b\x27\x29\x0b\x6f\xe8\xe2\x50\x5c\xb2\x22\xdc\xa6\xcb\x11\xb9\x13\x8d\x84\xb4\xa1\x92\x74\xf8\x32\xb7\x74\xfb\x59\xde\xcd\xf6\x90\x5f\x17\x6e\xc3\xa4\xc9\x99\xd8\x71\x07\x77\x9b\xe7\xbe\xe0\x6f\x1a\xce\x7b\x93\x4b\xb2\x5f\xd7\xec\xb4\xb6\xf6\xe9\xc6\x0c\x4a\x82\x60\xc6\xba\x88\x29\xa8\x56\x99\xc5\x4d\x8e\xcc\x65\x07\xe8\x22\xae\x63\x70\x83\x2e\x7d\xe8\xd2\x52\x6c\xf3\x39\x2e\xd1\xad\x67\xa1\xe6\x24\xfd\x50\xcf\x61\x3d\x4a\x25\x77\x4c\x2f\x4f\xe2\xdc\x2e\xeb\x73\x26\xf6\xfa\x1d\x8d\xfa\x9d\x72\x52\x56\x10\x14\x0d\xfc\xbe\x3f\x35\x8d\xee\xc9\x4a\x40\x99\x06\x30\xf8\xbb\xfb\x5d\x09\xbd\xc5\x1b\xd4\x59\xc6\xde\x73\x73\x72\x71\x7e\x7d\x79\xf1\xe1\xc3\xd9\x65\x93\x61\xac\xae\xc9\xdf\xc9\x93\xe6\xd6\x5b\x8c\xe5\x31\xad\x0e\x5a\x26\x00\xcb\xc3\x8a\x05\xb7\xa3\x72\xf2\x9b\xa2\xd9\xa8\xa2\x88\xfa\xad\x5b\x1c\x9e\x08\x0b\x69\x27\x16\x9e\x5e\x2c\xda\x59\x76\xa8\x0a\x4a\xe5\x10\xaf\xc2\xa5\x72\x2a\x42\x72\xca\x65\x9a\x81\x4b\x19\x79\x9b\x85\x4b\x86\x9e\x52\xc5\xb1\x2a\x9c\x2b\xff\xf4\xad\xcc\xfd\x77\x8e\x33\x25\x64\x40\xcd\x7b\xb6\xe1\x81\xd2\x98\x70\x27\x89\x92\xfd\xe1\xe6\xd5\x9c\x29\x9a\x4f\x78\x2a\xc2\x62\x44\x1c\xf0\xd7\x97\x98\x3c\x41\x52\x8f\x24\xfa\xf4\x94\x54\x99\x0a\xc2\x91\xd4\xf2\x90\xb2\x52\x6a\xcf\x2f\xd5\x36\x59\xd1\xbe\x9f\x58\x37\x3c\xe3\x79\x8f\x5f\xed\x1d\xfc\xff\x08\x21\x7b\x78\x3f\xde\x7c\x35\x7e\xfd\x7a\xfc\xcd\xde\x11\xd9\xd3\x5d\x81\xfa\x95\x5c\x9b\x1e\x0a\xb7\x36\xfc\xdd\x34\xee\x0d\xab\x49\x4a\x51\x0a\x3c\x3c\xb1\x97\x76\xc2\x65\x9e\xf9\x3e\x07\x14\xab\x1d\x2f\xe0\xb2\xc5\x42\x33\xac\xeb\x3d\x54\x04\xdd\xda\x7e\xea\x27\xad\x39\xc0\x33\x57\x06\x34\x6d\xa9\xfc\xb3\x67\x98\xf9\x46\x03\x69\x1c\x2b\x50\xaf\x0f\xe8\xbf\x31\xfc\xf9\x06\x3b\x77\x1d\x3d\x50\x16\x87\xc4\xbe\x0b\x1a\x98\xec\x45\x56\xbb\x05\x27\x0d\xcc\x0d\x50\x84\x22\xb0\xb5\x28\xe0\xa7\xc2\x67\xd9\x66\x40\x79\x96\x57\xa4\x9a\x47\x34\xbe\x3d\xc8\xab\xf6\x39\xfd\x73\x69\xdd\xb1\x0a\x8d\xbd\x66\x48\xfb\x12\x7b\xb0\x6c\x1a\xfc\x30\xa1\x57\x47\x17\x8a\xc1\x70\xa8\x73\x9f\xd8\x2e\x6d\x5c\xdc\x33\xf2\x93\xa9\x01\x20\x52\xc8\xd9\x0f\x15\xc0\xac\x6e\xb2\x28\x63\x27\x88\x53\x18\x1e\x2b\x9b\xa0\xb3\x16\x76\x62\x45\x35\xe3\x11\x3c\xc6\xe3\x67\xbb\x29\x7b\x4e\xb8\x8e\xa3\xfa\xbb\x8f\xd7\x9f\x20\xf9\x9e\x74\xae\xcf\xfa\x37\x2b\x18\xf3\x05\x89\x19\xfe\xf4\xd2\x08\x1b\xd6\xb1\xdf\x4c\xed\xe3\xf5\x27\x9c\x8f\x91\xc4\x3c\x22\xb5\xfb\xc5\xab\xaf\xbf\x79\x59\x69\xdd\x1c\x97\x62\xf3\x38\x34\x85\xa7\xc0\x67\x20\x7d\xe1\x2d\xf7\x99\xcd\xe8\x6e\xeb\x83\x99\xf0\x96\xbc\xfc\x52\xa6\xc4\x9a\x82\xec\x14\x6d\x49\x22\x4c\x8a\x4b\x5c\xb4\x5a\x1c\xc9\x11\xf9\xe7\x08\xc9\xd2\xcf\x96\x3a\xcd\xf6\xc0\x26\xb0\x67\x1c\x22\x47\x89\x08\x47\xe6\x23\xa7\xa4\xcc\x6c\x2f\x88\xed\x79\xc1\xb6\x2f\xc7\x5f\x8d\x5f\x95\x5a\x18\x35\x81\x7e\xfd\xd7\x82\x1f\xfe\xec\xb2\xc6\xd9\x1e\xb8\x6c\x42\x07\x46\x71\x59\x2e\x5b\x33\xdb\x8b\xc4\xf2\x26\x62\x1b\x16\x61\xab\x9f\x8e\x2f\xcf\x27\xe7\xef\xbd\xcd\x16\x3c\x62\x37\x09\x55\x2b\x6c\xea\xd1\x3f\xe9\xff\x8d\x23\xb1\xac\x7d\x9e\xfb\xf7\xde\x14\x00\xb9\xbe\xc9\x95\xe6\x7a\x69\x0a\x34\xdd\xdc\xf8\xa2\x67\x6e\x6e\x6a\x9f\xad\x55\xa6\xbf\xb8\xb9\x31\xb1\x2b\x37\x37\x95\x06\x3c\xa1\x6b\xdd\xe2\xe7\xaa\x4c\xe1\x22\x4a\x1f\xf4\x11\xb8\x34\x78\x6a\xfc\xcc\xf6\xd0\x4a\x85\x4d\x33\xc9\xa6\x22\x3c\xe1\x61\x5a\x76\xd5\xf9\xa5\x32\x2e\x72\xdd\xce\x91\x6f\xbf\x95\xed\xfd\xb8\x28\xf3\xf6\x65\x32\x3a\x6a\x02\xea\xa0\x0e\x23\xac\x6e\xac\x2b\x9c\xc6\x5c\x69\x94\xe2\x0f\x77\xc0\xc6\x9d\x94\x88\x54\xad\x69\x52\x43\xbf\x8c\x29\xe0\x45\xd3\x8a\xca\xab\x80\x26\x14\xd2\x03\x70\x0b\x3a\xf4\xf2\x91\x26\x09\x8f\x97\xd2\x7e\xb5\x2b\x24\x73\x1a\x87\x77\x3c\xd4\x3b\xb2\x7b\x40\xa7\x71\x7d\x34\xfb\x4f\x63\x76\x34\x34\xc5\x26\x16\xf1\xd2\x94\x31\x01\x4b\x0f\xd4\x62\x33\x36\x6c\x6b\x98\xcd\x6f\x52\x40\x17\x62\xa6\x80\xab\x8d\xff\x97\xd4\xdc\xef\x9f\x35\x8a\x70\x6e\xcf\xbf\xa5\xf5\x28\xcf\x9d\x4c\x4e\x2f\x35\x61\x74\xce\xfc\x5b\x63\xd7\x2d\xaf\x3e\x56\x86\xc9\x3f\x37\x50\x9b\xb6\x63\xfd\xce\x8d\xa3\xfe\x25\x9f\x62\x97\x84\x70\x1b\x86\xa3\x20\x0d\xad\xf0\xf3\x74\x35\x1b\x6a\xa9\x61\x9e\xa0\x72\xc3\xdb\xf7\xd3\x52\x7a\x55\x7c\x57\xd4\x6f\xa8\xbe\xaf\x57\x71\x68\x48\x60\x53\xd4\x72\xa8\x36\x98\x15\x15\x1d\xcc\x92\xce\x9e\xa6\x9c\x43\x15\xf6\x72\x2e\xf8\x32\x27\xc4\x6a\x47\x5b\xfd\x0d\x08\x1c\x65\xe5\xcb\x50\xce\x61\x28\xe7\xe0\x2e\xc1\x50\xce\xe1\x8b\x95\x73\xa8\x1e\xe2\x7a\x51\x87\x72\xb1\x21\x7d\x80\xcb\x0c\xa9\xa2\x15\x69\xae\xde\x40\xe5\x39\x94\xf7\xf4\xb8\x41\x54\x0e\xf4\x15\x36\xb4\x55\x62\xec\x4d\xe5\xf8\xca\x14\x08\xcd\xef\x4e\xd4\xc8\xd3\x7f\x3d\xc5\x26\x5e\x0f\x8b\x37\x5f\x7f\xf3\xea\xf5\xdf\xf6\xeb\xaf\x30\xc9\xda\x91\x3e\x9d\x5f\xbd\xae\xbf\x46\x94\xea\xa3\xbb\xac\xd7\x24\xb5\x2b\xef\xaf\xd0\x5c\x9a\xcf\x49\xd1\x14\xcf\x87\x2d\x4f\x81\xb8\x34\x3b\xc8\xe2\x99\x62\xca\xa9\xba\x6f\x17\xa0\x30\x9d\x73\x95\xd2\x74\x6b\x6a\x10\x42\x24\x1b\x45\xff\x7a\x8c\xa2\xdc\xa9\x9e\x85\x17\xcc\x6d\xb1\xfc\x52\xd1\x38\xa4\x69\xa8\xef\x79\x11\x4d\x97\xac\x0a\xae\xaf\x53\x02\x53\xd0\x27\xcd\x13\xe4\x86\x4f\x67\x75\xeb\xd6\xaa\xd6\xf5\x6a\xd6\x58\xad\xb9\x88\xee\xb5\xe0\x35\x16\x55\xee\x2e\xa6\x8c\x2a\xd8\x5e\x20\xfc\x08\x74\x0e\xd2\x0c\xce\x21\x53\x02\xee\x2b\x32\xdb\xa3\xf4\x28\x8e\x67\x7b\x50\xb6\x12\xff\x38\x5a\xaf\xbd\xe5\x6f\xed\xf3\x4e\xa4\x05\xd6\x8b\xd9\x64\x92\x39\xdd\x61\xff\x07\x26\x4f\xbb\xfe\x7d\xb6\xa7\x91\xde\xdc\xed\x6c\x0f\x3e\xa4\x29\x23\xaf\xde\x90\x39\x57\xe6\x20\x8d\x61\xc0\xea\xd2\x3a\xa3\x01\xbc\xcd\xfd\xfa\x20\x39\xc8\x47\x8b\x43\x7d\x3d\x5a\x9b\x81\xbf\x7a\x5d\x1a\xf8\x27\xfd\x49\x4b\xb9\x76\x33\x2d\xac\x9d\x78\x7c\x45\x90\x24\x34\x75\x9e\xb0\x74\x74\x7c\x65\x63\x08\x79\x2d\x04\xbf\x78\x12\xaa\x34\x2f\x3e\x22\xff\xf5\x7c\x36\x0b\xff\xff\x2f\x8e\xf0\x3f\xff\xf1\xcf\xf2\xdf\xf6\xe7\x87\xee\xa0\x07\x57\xc2\x8e\xa0\xd4\xc6\x54\xa4\x3e\x62\x56\xda\x77\x1f\xf2\x96\x96\x50\x42\x0d\x50\x5c\x0b\x4d\x5b\x92\x54\x28\x11\x88\xc8\x4a\x2f\xd8\xb5\x17\x33\xa7\xb6\x2c\xa2\x12\xe4\xd5\x7f\xd6\x3c\xee\x41\x2f\xca\xd7\xd9\xfa\x88\xbc\xf9\xe6\x9b\xaf\xbe\xf1\xbc\xe7\x31\xbe\x7f\xb5\x23\x21\x8d\xc4\xf2\x8a\x6d\x58\xca\xd5\xf6\x2a\x48\x19\xab\xca\x7a\xb5\x69\xef\x7f\xa8\x7e\x61\xa7\x1f\x89\x25\x91\xe6\x0d\xa1\x73\xb1\xb1\xa6\x9d\x48\x2c\xbd\x05\x0d\xf5\xce\x81\x12\x8e\x46\x78\x93\x2a\x14\x99\x72\xd8\x09\x99\x9c\xbf\xbb\xf0\xb1\x8e\xb6\xe5\xd7\x2c\xe9\x5a\x9c\x8b\x90\x7d\x64\x72\x75\x06\xf1\xb4\xbe\xc8\x93\xf2\xac\xce\x7d\x5f\x11\xc9\x54\x51\x71\x73\x91\x19\x8b\x29\x86\x7c\xf9\x22\x55\x08\x2c\xfc\x1a\xb2\x69\x4a\x13\xcb\x1b\xba\x13\xd2\x57\xd0\xe6\x09\xcd\x85\x88\x18\xad\xc9\xc4\x49\xca\x16\xfc\xfe\xd8\x4d\x1b\xde\xc9\xf5\xa6\x9e\x6f\x0a\xce\x02\x8e\x41\xd0\xa2\x9c\x8d\xdc\x37\xa3\x36\x71\x83\xec\x50\x57\xb1\x0e\x50\xa1\x5d\x96\x65\x30\x1c\x0e\xe5\x27\x00\x36\x84\xbc\x28\x51\xea\x89\x57\xb7\xc8\xeb\x60\x76\x01\x0f\x7d\x32\x91\x67\x0a\x90\x54\x5d\x0f\x8d\xdb\xba\xe8\xd9\xad\x49\x6e\xe7\xe1\x2f\xf6\x48\x7a\x71\xbf\x76\xe9\xc6\x07\x99\x23\xe3\x18\x9f\x77\x2b\xe5\x30\x0e\x9b\xb7\x60\x2f\x20\xba\x34\x13\x7e\xeb\x4d\x8f\x77\x39\xa8\x39\x3f\xdb\xd3\x62\xa9\x1c\x3b\xa3\x20\x57\xed\x25\x8e\x10\xbc\xd5\x75\x72\xe5\x16\xe6\xdb\xce\xa6\xda\xb9\x72\x3b\xf3\x6d\xee\xb9\x8b\x2b\x77\x32\xdf\x36\xa0\x3b\xb8\x72\x27\xef\xed\xd5\x77\x7f\xa6\xdc\x7c\x84\xf1\xe9\xde\xb1\xad\x3c\x95\x7c\x0e\x43\x36\x16\x1d\xa3\x4b\x99\x4c\x3b\x29\xdf\x55\xf5\x03\x40\x06\xa4\xcf\xd2\xe7\x17\xb3\x92\xe3\xd5\x15\xcf\xb1\x19\xc1\x4b\xfb\x8c\x91\xd5\xf6\x62\x62\x29\xe0\x9e\xba\x28\xa8\x4f\x5e\xde\x18\x2b\xd8\x5a\x12\x80\x75\x6a\x7d\xfd\x22\x10\x79\x16\x4f\x70\x97\x89\xb7\xa5\xe1\x4c\x5c\xbd\x5a\xb1\xf5\xc3\x89\x6e\x15\x17\x6f\xf5\xb8\xce\xcd\xde\xf1\x40\x33\x75\xd3\xf3\xa6\xfe\x75\x2e\x50\xf8\x04\xc4\xf6\xc9\x84\x3a\xb3\xc2\x67\xf7\xa8\x06\xea\xbf\x89\x9c\x2f\xfc\xbb\x48\xa4\x4e\x20\xbd\x0f\x66\xd3\x11\xb1\x3d\xe9\xb5\x1d\xbb\x79\x60\xaa\x0d\xf2\xf4\x0e\xe0\x26\x58\xcd\xf1\x80\x4f\xc1\x64\x4c\x81\xe6\x2d\x16\x8f\xc3\x2d\x23\x62\x56\x14\x49\x46\x40\x3f\x7b\x07\x15\xd0\x75\x6e\x21\xff\xea\x3a\xf3\xff\x7d\x6f\xa2\x0f\x82\x86\x6f\x69\x44\xe3\x60\x17\x6a\x54\xf9\xea\x33\x37\x93\xdb\x5b\xe3\x86\x32\xd5\x2f\xdc\xb6\x63\x53\xbc\xdb\xd7\x77\x75\xdf\xfd\x0a\x9b\xac\x8c\xa4\x07\x6e\xb4\x0a\x6e\x7e\x97\x9b\xed\xf7\x55\xb1\xf4\x89\x6b\x7b\xdb\x3a\x01\x4f\x63\x1e\x9a\x32\x7b\x27\x2e\x59\x85\xf4\xcf\x5e\x63\x90\x53\xb2\xa0\x64\x03\x4a\x4c\x3f\x4f\x65\xfa\x19\x6c\x34\x83\x8d\xc6\x5d\x82\xc1\x46\xf3\x25\x6d\x34\x9a\x1c\xf4\xab\xb7\x6d\x1a\x3f\xa0\xba\x76\x5f\xfb\xcc\xf5\x8a\x15\x97\x42\x6b\x17\xd2\xe4\xc7\xc3\xdf\x3e\xc7\xc4\x72\xcb\x58\x72\x91\xf2\x25\x8f\x69\x74\xce\xee\xd5\x0f\x9e\x74\x2f\x15\xd0\x2e\x12\xeb\x77\xa5\x3f\x06\xc0\x84\xe9\x81\xc4\xec\x5e\xad\x44\x82\xd1\xca\x58\x1d\x18\x4d\x26\x5d\x9a\x41\xc0\x29\xd1\x48\xd5\x7b\x5c\xc1\x21\xb1\xbe\x69\xae\x06\x09\x56\x04\x3c\x45\x59\xa8\x3f\xf1\xf5\xab\x7b\x91\xb9\x0e\x2f\xc3\x2b\x9a\xbe\x57\xb3\x7b\x45\x34\x74\x1a\xee\xef\xf5\xdd\x3b\x96\x8a\xd1\x50\xa3\xd7\x79\x2b\x59\xb4\xf8\x7e\xb6\xf7\xdc\x58\xc4\x5e\xf8\x86\xc0\x3b\x5b\xe1\xdc\x3f\x4f\x69\x1c\xac\xec\x3a\x9d\xeb\xa1\x45\x4c\x66\x7b\x73\x9e\x86\xe3\x60\xb1\xf4\xda\x23\x5a\xd5\x81\x6b\x7a\x7f\xc9\x20\x43\xdc\x35\xf7\xda\x69\xca\xdb\x85\x63\x11\x0f\xf4\x1c\xd6\x9b\x54\x8a\x85\xba\xd3\x18\x4e\xb1\x97\x31\x21\x3f\xe9\xe5\x28\xae\xb3\x5e\x51\x46\x13\x93\xdc\x37\x2e\x4b\x59\x68\xd3\x57\x2e\x53\x1a\xb0\x45\x16\xd9\xfe\xac\xef\xb8\xed\x57\x53\x8f\xae\xbe\x19\x79\x3b\xb9\x3c\xcd\x4d\x8d\x62\x41\x5e\xbd\x7e\x29\xad\x27\x6a\x23\x86\x9a\x35\xc0\x7d\x4e\x51\x9e\x0a\x32\x4f\x7e\x68\x09\xb0\xb9\xce\x9b\xb2\x18\x18\x94\x05\x79\x27\xbc\x2b\x2e\x89\xa2\xe9\x92\x29\x34\x8a\x02\xa2\xe0\x3c\x62\x1e\x0b\x44\x1b\x20\x81\x29\x53\xce\x53\x94\xe2\x97\x1a\x3a\x75\xd4\x0b\xc6\xbf\x94\x4b\x34\x2c\x30\xa8\x2a\xa9\x3f\x96\x45\x18\x8f\xdd\x79\x45\xd9\x8e\x5d\x71\xe6\x89\xa7\xf2\xe2\x2e\xaf\xe3\x60\xd5\xb0\x38\x3e\xe4\xe5\x30\x52\x00\x84\xb7\xe5\x98\xe0\xf1\xd2\x6c\x86\xb6\x9d\x05\xe8\xc9\x0f\x09\xd2\x09\x6b\xd6\x63\xeb\x44\x55\xf3\x9b\x74\x4d\x29\xa1\x52\xde\x89\xb4\x53\xf7\x7f\x61\xd2\xb8\x22\x6e\xcd\x47\xf9\xdc\x0c\xfc\x92\x2c\x59\xcc\x52\xea\x2c\x72\x83\xfa\xbf\x8d\xfc\x93\xee\x1b\x07\xfa\x9e\xb7\x64\x2c\xf0\x2e\x86\x96\x29\x6e\xd9\x16\x44\x33\xd3\x85\xdd\x0f\xb0\x89\x13\x11\xee\xcb\xc2\xb9\xba\x41\x13\xd8\x79\x19\xc2\x4c\x08\xcd\x8a\xc2\xda\x11\x33\x30\x21\x6d\x06\xa8\x94\x30\x5b\x17\x24\x93\x31\x21\x1f\x71\x89\x9b\x3b\x25\x84\x6a\x41\x89\x87\xb6\x8b\x5b\xe6\xdb\x0a\xf6\xe9\xa3\xac\x6c\x35\x70\xd7\x4c\x43\x4e\x06\xfe\x94\x2d\x58\xca\x62\xe5\x95\x7a\xda\x0a\x51\x88\x8d\xbe\xe3\xb2\xbb\x43\x53\xd0\x73\xa4\xef\xd1\x23\x14\x46\xe4\x21\x2c\xcc\xe1\xb3\x0e\xd5\x3c\x21\xd7\x17\xa7\x17\x47\xe4\x38\x0c\x89\x00\xad\x7e\x26\x81\xf0\xc2\x59\x91\x63\xe7\x36\x70\x00\xc2\xe8\x01\xc9\x78\xf8\x7f\x79\xcc\x4d\xbb\xe0\x2a\xcf\x72\xdc\x13\x5f\x57\x40\xb6\xb6\xb9\xd9\x4c\xa3\xed\x0a\x17\x4e\xa4\xe0\x98\xa0\x37\xc5\xba\x7b\xd5\x8d\x05\xa2\x0b\xfa\x06\x2e\x89\x8f\xad\x92\xd7\x00\x3c\x84\x1d\xfa\x5f\xf5\xb9\xba\xfb\xdf\x6a\x8a\x31\x99\xf6\x61\x40\x4e\x7a\x59\x47\x8e\x23\x0b\x61\x94\xb1\xf3\x2d\x5c\xb4\x2c\x7d\x4a\x44\xea\x65\x40\xc6\x2b\x47\x09\xfc\x5c\xef\x2c\xe0\x3d\x60\x8f\x8e\x73\x5f\x1e\x70\xd3\x38\xb0\x86\x98\xc2\x64\x35\xdb\xfb\x2b\x46\x3d\x4c\xa6\x9b\x37\x18\xf8\xf0\xb7\x23\x18\xcb\xeb\x7a\x00\x76\x9b\xfc\x83\xaf\xf1\x83\x23\xfc\x01\xbe\x82\x1f\xd0\x40\x02\xf9\x6d\x01\x96\xd2\x24\x1c\xa0\x2c\x5f\xf4\x4a\x81\xe0\x8b\x63\x78\x08\x20\x2b\x0e\x49\xee\x9d\x34\x67\x91\xd0\x74\x19\x44\x44\xe3\xc6\x0a\xb4\x0e\xf2\xca\x17\xd6\x79\x3f\x91\x05\xf2\x58\xf5\xbe\x32\x8c\xf6\x8e\x19\xd1\x90\x2a\x04\xd7\x60\x76\x57\xfe\xa3\x2f\x0d\x0f\x65\xa9\x29\x5b\x0b\x95\x73\xd6\xd2\xca\xa2\x54\xd5\xc4\x81\x5c\x46\x3a\x85\x9d\x58\x46\x1b\xd2\x8a\x0a\x63\x45\xcf\x97\x72\xfa\xf7\xf2\x44\xb4\x64\x34\x67\xea\x8e\x99\x40\x17\xf0\x95\xb7\xb5\x90\xc3\x42\xf0\x76\xe1\x86\x0c\x68\xb9\xbc\xe8\x5f\x61\x93\x01\xd9\x8c\xc0\x17\x64\x2e\xd4\x4a\xdf\x55\x25\xca\x10\x5a\x16\x78\xfb\x7e\xaa\x89\xca\x58\x37\x3d\x36\xe7\xa5\x5d\xa0\xd4\x20\x61\xdf\x6f\xfa\xf7\xfd\xa6\xd6\xf7\x98\xe8\x63\xea\x1b\xc0\x4c\xb3\x70\x89\x0b\x04\x38\x84\xd9\xcb\xb6\x83\x86\x7d\x59\x1a\xc8\x2e\x84\x17\x6e\xb3\xf8\x58\x0a\xb7\x48\xab\xba\xc0\xbd\x58\x1c\x97\x1d\x77\x22\xca\x22\x66\x7a\x9d\x5b\xd1\xcc\xbe\x70\x7c\xd0\xd8\x5c\x89\xbb\x5a\x3c\x18\xaa\x27\x0c\x05\xf3\x4d\xa7\x5b\x86\xaa\x0b\x4c\xb9\x33\x4c\xb3\x4d\x79\xb6\xf7\x49\x32\xa8\x31\x30\x9d\xed\xd9\xb4\x74\x2e\x6c\xb9\xd8\xa3\x37\xbf\xb9\x19\x96\x80\x1d\x83\x07\xbe\x27\x09\x30\x3e\xd8\xa5\x09\xad\x6a\x9e\xf2\x4e\xab\x30\xe8\x74\x5d\x9d\x6e\xb9\xdc\xf2\x53\xa8\x76\xf5\x08\xc7\x38\xc2\xb6\xa6\xe0\x75\x5f\x7a\xd4\xbc\xbe\x62\xd0\x8e\xb6\xd7\x79\xbd\x1d\x74\xbe\x83\xce\x77\xd0\xf9\xfe\xeb\xe9\x7c\x5d\x0a\xd1\x53\xf3\x5b\xa7\x38\xc5\xb3\xbb\x3a\xb8\xc1\xee\xd8\xc6\xe6\xa1\x38\x62\xb7\xaf\xe3\x29\x36\x23\x3c\x0e\xa1\x10\x93\xd1\xdc\xc0\xce\x01\xda\x46\x2c\x71\xd3\xfb\x76\xce\xa0\x34\x0d\x7e\xe3\xbd\x76\x43\xf4\x38\xaa\x6b\xdc\x7d\xbe\x40\x07\xb1\xa2\x48\x30\x0a\xe6\x22\x0a\x81\xdd\x47\x8c\x4a\x33\xb4\x97\x05\x73\xa9\xe8\x2d\x8b\xa3\x2d\x51\x29\xb3\xe0\xe1\x28\xb4\x18\xe5\x71\x34\x83\xad\xb2\x93\x72\x8b\xb8\xf6\xf9\xa6\xe1\xce\x39\x82\x25\xad\xfe\x66\x10\x5b\xfd\xd9\x97\xba\xc4\x53\xf4\x64\x10\x2a\xdc\x54\x02\xc8\x7f\x9d\xea\xfd\x4f\x21\x58\x58\x07\xa9\x62\x94\xaa\x74\x51\x6f\x51\x17\x31\x3c\xb0\x56\xc5\x8c\x7a\x93\xa7\x94\x35\xca\xee\xa4\xb5\x19\x54\x82\x0b\x8d\x9f\x5a\x6e\xe4\x70\x80\x1c\xe2\x0a\x07\xf9\x65\x90\x5f\x7e\x6d\xf9\xa5\x7e\x82\xdb\x22\x0b\xf1\xd3\xb9\x87\xfb\x35\x1b\x94\xda\x44\x17\x20\xa1\xfe\x33\x5e\x87\xd4\x6d\x6c\x43\x49\xcc\x21\xd7\xb0\x19\x53\x9c\x11\x51\x72\x68\x1a\x54\x5f\x69\x16\xc7\x5e\x5d\x76\x1b\x8b\x37\x5d\xbe\xff\x34\x39\xed\x84\xb6\x68\x6a\x61\x85\x7f\x1b\xf5\x6d\x23\x70\x3d\x86\xbf\xd6\x4d\xfa\x0d\xaf\x9b\xda\x45\x33\x64\x11\xca\xb8\x7d\x0e\x14\x79\xb6\x8e\x4b\x46\x43\x9f\x8d\xa7\x2c\x43\x96\x5a\xe7\x19\x83\x4c\xb5\x6f\xc9\x97\x31\x88\xc7\xb1\x2a\xfa\x25\x6b\xbe\x2c\xc5\xd0\x57\x60\x13\xf0\x19\x8d\x4c\x20\x61\x22\x62\xf0\xfa\x93\x59\xb0\xd2\x12\x1f\x56\x33\x42\x3d\x58\xae\xbd\xbe\xa3\x5c\x9f\xf2\x85\x68\x50\x2f\x42\x0e\x5e\x4b\xa1\x9a\xea\x0d\x92\x2e\x53\x02\xd4\xcc\x8d\x3b\x03\xc2\x7e\xc4\x66\x24\x64\x41\x44\x53\xd0\x9f\xf1\x60\x65\xbf\x76\xf6\xb2\x13\x2d\x02\x79\x3f\xff\xf5\xf5\x48\x4f\x26\xf9\x01\x9d\x2f\xa5\xdc\x2c\x92\x7e\x8d\x96\x2c\x1e\xdf\x66\x73\x36\xcf\xb8\xbe\x74\xc0\x00\x76\xf8\xe7\x40\xcc\xc1\x83\x03\xb2\xb0\x71\x11\x5f\xf3\x35\x93\x8a\xae\x93\x23\x12\x67\x51\x34\xab\x64\x40\x03\x95\x36\xe0\xec\x49\x14\x56\xb8\x37\xce\x45\xc8\xae\x9c\x0c\x78\x8e\x54\x59\x79\xef\x91\x29\x6b\x60\xd6\x44\xca\x4a\x8b\x41\x79\x35\x08\x7f\x83\xf0\xf7\xaf\x27\xfc\x55\x48\x45\x3f\xfd\x95\x9f\x00\x15\xcf\x03\x54\x58\x11\x95\xb2\x47\x82\x06\x6c\x56\xf0\x4d\x2b\xcf\x80\x6c\xea\x5c\x2d\xb1\x04\x50\xcc\x1b\x5c\xa6\xd0\xda\xc4\xa5\x6b\x0c\xc6\x63\x09\xbe\x6f\x18\x60\x81\x86\x4a\xbe\xb1\xf1\x11\x7a\x47\x8a\x54\x35\xf8\x3f\xd0\xb9\xc8\x14\x09\x58\xaa\x51\xa7\x77\x1b\x04\x04\x97\xa1\xda\x29\xec\xa1\xdd\xe1\xa2\x25\xfa\xe4\xc1\x3e\x6d\xdc\x20\xd4\xeb\xd2\xb6\xf0\x63\x12\x1a\x99\xf8\x91\xdd\xa4\x48\x3c\x71\xd3\x52\x6e\xd6\x0e\xa8\x3f\xd5\x3f\xc9\x03\xea\xe1\xc7\xa2\x28\x70\xd7\x16\xd5\x4f\x21\x5c\xe5\xa7\x1f\xb3\x6d\x93\x97\x6e\x31\xce\x6a\x57\x24\x65\x8b\x94\xc9\x95\x57\xc3\xf9\x11\xa3\xef\x4d\x8f\x16\x2c\x2e\x21\x0a\x26\xa4\x3e\x6f\xa4\x87\x7b\xde\x36\x9e\xfa\x42\x5e\x6b\xc0\x64\xed\xdc\xe3\xcc\x5c\x06\x2a\xe6\x28\x17\xa2\x32\xb1\x90\x49\x8b\x8f\x6a\x73\x39\x17\xe8\x7d\x85\x47\x10\xcb\x20\xe3\x51\xc2\xee\x25\xd7\x3b\x89\x83\x79\xda\xa0\x9c\xcc\xb7\xa6\xdf\x1d\xdc\x9f\x97\xac\x5b\xc4\x3e\xd6\x8d\xc8\x4a\x44\xa1\xc4\x0f\x2c\x10\xa2\xf0\x75\xdb\xdd\xe5\x6e\xce\xd3\xf0\xc7\xaf\xfb\x38\xdb\xbd\x9d\x5c\x9e\xfe\xf8\xb5\x1b\x94\x54\xc8\x07\x65\xdc\x66\x40\x26\x74\xcf\x5f\x3f\xdc\xd9\x2e\xa2\x52\xbd\x15\xa2\xc9\xcf\xd7\x0b\xe2\x07\xe7\x1b\x83\xa9\xfc\xb2\xaf\x41\x72\xfb\x6c\xee\x92\x20\x1b\x46\x27\x65\x15\x11\x91\xa9\x24\xf3\xb9\x1d\xd8\xa7\x8f\x27\x99\x1e\xfa\x92\x95\xf2\x09\xec\x3a\x33\xcf\xe7\x4d\x93\xb4\x4d\x7f\x85\x89\x82\x63\x7b\xea\xd5\x26\x78\x67\x76\x09\xed\xc9\xe4\x34\xcf\xac\x04\xf0\x7c\x1e\x10\x4d\x86\x0b\x2f\x04\x90\x11\xd5\x92\x04\x9b\x68\xea\x94\xb2\xb5\x97\xbf\xed\x02\xc6\xa6\x51\x0d\xe4\x05\xe4\xc7\x42\xf3\x63\xc1\x08\x01\x8c\xcf\x81\xa2\xdd\x97\xcf\x10\x80\x37\xbd\x09\xc0\x9b\xdd\x08\xc0\x9b\x81\x00\x38\xd3\x19\x08\x80\x67\x66\x03\x01\xf8\x35\x09\x40\xdb\xdb\xf9\xb2\x33\xea\x49\x83\x88\x5b\x10\xe4\x66\xfd\x67\xa3\xec\xdc\x71\xe6\xd1\x99\xf0\x4c\x2a\x3a\x8f\xb8\x5c\xb1\x9e\x62\x89\x5e\x3c\x25\x14\x8d\xac\x37\xa2\x58\xa0\x5f\x25\x2b\x7a\xd2\x33\x21\x92\x49\xd4\xb7\xb5\xa1\xa9\x21\x1e\xcc\x0f\x5f\x2f\xaa\xd9\x00\xdf\x9b\x27\x82\xef\x5c\xa8\xc7\x43\x61\x2c\xe2\xd1\x17\x01\xf3\xf3\x30\xf9\x14\x60\x42\xac\x73\x3f\xf4\x4d\xb1\xa9\xcb\x18\x01\x7b\x36\x5c\x49\xf6\x13\xd4\x49\x67\x32\x9a\x86\x0b\x0f\xf8\x90\x96\x55\x1c\x39\x0f\xce\x61\x68\xa6\x20\xdd\x50\xf5\x62\xd7\x2d\xbe\xff\x0d\x33\x68\x88\x00\xb8\x5b\x09\xc9\x0a\x15\x3b\xb9\x63\x84\xfa\x4d\x1c\xc5\x93\x2b\x32\x5a\xe8\x75\x3f\x8a\x4d\xf0\x4e\xd7\x7f\x16\x57\x1c\xe3\xe3\x72\x16\x92\x92\x94\x51\x29\x62\xe0\xc3\xa6\xbe\x51\x1b\x3b\xeb\x0d\x57\x07\x4b\xab\xc2\x05\xd0\x18\x65\x02\xd0\x65\x3c\x11\xd8\xcf\x23\xc0\xa3\xfc\x36\xbb\x06\x70\xc0\x6c\x57\x78\x5d\x15\x01\x32\x36\xc4\xa1\x14\x5e\xd9\xbe\xda\x1b\x4e\xf3\x2d\x3b\x52\xa6\xc8\xd7\x9a\xc9\xd5\x81\xc6\xbe\x7e\xcb\x62\xc2\xee\x93\x88\x07\x5c\x59\x87\xf2\xb6\x7c\x57\x04\x6b\xea\x8c\x2c\x0f\x83\x13\x65\x54\xe6\x9f\x8b\xa8\x2e\xf9\xbb\x33\x7b\x14\x52\xa2\x5e\x14\x12\x29\xd1\x9b\x0a\x25\x7a\x33\x50\xa2\x8e\x19\x0c\x94\x68\x37\xb8\x06\x4a\x64\x9e\x7f\x27\x4a\xd4\x12\x4e\x38\xf2\x09\xef\xfd\x9a\xbd\x69\x6e\x56\x15\x65\x7b\xb7\xf4\xf4\xd9\x36\x77\x7d\x3a\x50\x11\xdf\xe9\x3e\xfc\xa1\x68\x8a\xa6\x41\x65\xed\xe6\x75\xbb\x20\xe8\x43\x52\x68\xe1\xc3\x36\x64\x81\xa8\x69\xe2\x8d\xa9\x10\x0e\x6c\x61\xc1\x03\xfd\x72\x3e\x00\xb8\x2f\xfb\xba\xbc\x7c\x77\xf2\xd5\x57\x5f\x7d\x07\xfa\x77\xcc\x84\x0d\x81\xf1\x9f\xae\x4f\x5a\x94\xf4\x7a\x8c\x91\x1f\xc8\x38\x8b\x4c\x29\xb2\xc2\x91\xa2\x8e\x54\xff\xa6\xc3\xfc\x16\x5d\xf8\x84\xbb\xbf\xb5\x43\x49\xf3\x11\xb9\x8d\xc5\x5d\x6c\x0d\xd0\xc6\x76\xd3\x7e\x17\xfe\x2c\x15\x38\x8e\xda\x4f\xd6\xbf\x34\x6d\x6b\xc2\xbe\x01\xfd\x89\x18\x2b\x0c\xdb\xc6\x59\x9b\xd3\x89\xf4\x41\x50\x2f\x34\xe5\x00\xda\xb2\x5a\xfd\x49\xee\x69\xf1\x51\x1e\x4c\x9e\x97\xfe\x6a\x7a\xfa\xd1\xfe\x25\x55\xec\x8e\xb6\xc5\xe5\x57\x60\x79\x8f\x1f\xe4\xf1\x79\xce\x84\x1e\x01\x9c\xbc\x06\xda\x0e\xc2\x47\x5e\x36\xcd\x03\xd2\xe7\x43\x14\x31\x9a\xc6\x2c\x7c\x97\x8a\x75\x7f\x98\x3e\x14\x1f\x15\xbb\xce\xb5\x46\xa7\x6c\x49\xd3\xb0\x75\x60\x82\x44\x2e\x35\xb9\x30\x60\xc1\x6d\x4a\x9c\xa6\x70\x0a\xfb\xf4\xda\x8a\xa4\x9f\xa4\x57\x9b\xdc\x64\x61\x62\x19\x51\x12\xc0\x10\xd5\x8f\x4c\xae\x34\xcf\x36\x3c\xf7\x80\x34\x65\x01\x75\x9f\x8a\xd0\x88\x9a\x4f\x93\x0b\x84\xc5\x8a\x64\xd2\x99\x7b\xeb\x84\x49\xef\xf5\x24\x79\x4c\x6b\x83\xd3\x64\xcb\xcc\xaf\x1d\x47\x49\xe3\xaf\x82\x2b\x44\xcd\xf2\x70\x69\xf7\x4b\xf7\xe4\x21\x85\xc5\x63\xcd\xa9\x5b\x36\x21\x9f\x2b\xe8\x71\x67\x91\x8a\xe0\x1e\xd0\x39\x37\xb8\x02\x38\x73\x15\xe9\x1d\xee\x77\x53\x77\xf0\xd7\x16\xc6\x72\xae\xd5\xeb\x5e\x68\xb8\x56\xfd\x62\x38\x70\xad\x96\x89\x0c\x5c\xab\x05\xa0\x81\x6b\xd5\x9f\x81\x6b\x0d\x5c\xab\xa9\xd5\xc0\xb5\x5a\x3f\xff\x5d\x7a\xf6\x3f\x55\x30\xe7\x82\x45\xfc\xfe\xc9\xeb\x43\x42\x50\x49\x6b\x85\xc8\x7a\x8b\xba\xe3\xbd\x07\x56\xb3\x2e\xb9\xe7\x7d\xbd\xc9\xec\x4b\x05\x73\x62\xe0\xcc\x4e\xa5\x22\xe1\x93\x21\x90\x73\xf0\xe5\x1f\x7c\xf9\x7f\x6d\x5f\xfe\x3a\xfd\xe9\x2a\x11\x89\xe7\xfd\xa1\x45\x22\xa3\x48\xdc\x4d\xa6\x93\xe9\x94\x06\xb7\x4c\x49\x2d\x47\xfe\x24\xd2\xdb\x48\xd0\x6e\x4f\xee\xfd\xe3\xb6\xaf\x6d\x64\x56\x61\x6e\x00\x48\xbd\x7a\x61\x2c\xa3\x12\x6a\xe9\x26\x8b\x20\x7d\x6d\x98\x8a\x84\xe8\xae\x09\x8b\x03\x9a\x48\x2c\xc1\x9e\x17\xbb\xc7\x72\x2e\x76\x28\x5f\x9f\x45\x0d\xae\x05\x8d\xe4\xee\x45\xb8\x00\x33\x3f\xfe\xf9\xc3\xf1\xf9\xc3\x51\xd3\xf8\xf9\x23\xe0\x06\xfa\xfe\xd5\x90\x73\x27\xaf\xd2\xe0\x54\xaa\x93\x15\x0b\x6e\x3b\x91\x71\xc5\x94\x91\x62\x47\xce\x8d\x69\x14\xe8\x8f\xf5\x85\xf7\xf8\xa7\x2b\x72\x76\xf2\x3a\x8f\x53\x90\x63\x72\x6c\x04\x19\x1f\xf4\x9b\x72\x05\x48\xac\x4c\x31\xdb\x3b\x15\xe7\x42\xad\xf4\xf1\x84\xba\x4c\x58\xd3\xcd\x16\x9e\x3a\xc5\x38\x80\xd9\x5e\x47\xf5\xd2\xbc\x13\x1f\x4e\x58\x9c\xf9\xae\x66\xa3\xe2\x2b\xdf\x4b\x03\x88\xef\x33\x03\xd4\x4e\x56\x86\x79\xb2\x38\x11\x71\xcc\x02\xf0\xe8\x2c\xca\x5f\xf0\x78\xd9\xb7\xf8\xdd\xdb\xe9\xbb\x8e\x2e\xd0\x54\xc3\x63\xf2\x76\xfa\x8e\xac\x45\xe8\x2f\x1d\xe9\xdf\xc5\xb8\x8c\x51\x94\x4b\x1b\x7a\x20\xbd\xde\x8a\xaf\x19\xd1\x7b\x92\xcc\x6d\x81\x92\xc6\x84\x7b\xe6\x33\xcf\x37\x68\x17\x42\xbb\x5c\x7e\x11\x5f\x09\x09\x31\x1f\x73\x46\x20\xdc\x43\x09\xaf\xfe\x88\xd1\x60\xe5\xd6\x4e\x31\x35\x5e\xa4\xa9\xa1\x4a\xf8\x3a\x49\xc5\x86\xe5\xd1\x28\x70\x8d\x8e\x03\xd8\x60\x89\x08\x47\x4a\x8c\xda\xaa\x47\xe5\x53\x95\x38\x31\xac\xad\x62\x0c\xd2\x4e\x30\x0a\x06\x4f\x68\xd8\x43\x36\xcf\xb0\x9e\x6c\x92\xa5\x89\x90\x7a\xeb\xb7\x6f\xd0\x07\x55\x14\x9c\x27\x8b\x53\xaa\xe8\x64\x41\x03\x36\x35\x15\x39\x3b\x36\xc9\xdb\xe9\xbb\xea\x27\x28\x4d\xa4\x0c\x64\x5c\xc2\xee\xb5\x38\x00\x62\x1e\xdc\xa3\xed\x66\xf0\x12\x31\x08\xe7\xc9\x55\x2e\x36\xba\xdb\x48\x71\x54\x29\xbd\x2e\x7a\xab\x25\xa9\x58\xa6\x74\x0d\xe2\x1b\x8f\x89\x48\x43\x48\x74\xea\xc5\x36\x55\xc1\x2a\xa7\x79\x4a\x1c\xe6\xc2\x87\xa9\xe4\x3f\x36\xa9\x8a\x62\xc6\x42\xe8\x70\x8d\x5f\xac\x98\x03\x89\x17\xc5\x7a\x3a\xb6\xc2\x97\x21\xa3\x05\x71\x85\xd0\x32\xb1\x61\x69\xb5\x9a\x57\x8f\x4e\x57\x34\x0e\xf5\xfa\xc7\x81\x58\x83\xfc\x95\x43\x0f\x0a\x3f\xb4\x08\x62\x7e\x4d\xb3\x31\x61\x52\x22\x53\x92\xfb\xeb\x4f\xba\x09\x1b\x08\x99\xe4\x91\xf2\x5a\x8a\x2a\xe6\x9b\xcf\xc2\x59\x82\xe7\x99\xcc\x68\x14\x79\x15\xad\xfa\x1e\x12\x42\x5c\xdd\x78\x3c\x7e\xb1\x63\x4c\x98\xde\x6c\xb8\xd1\x3f\xc5\x49\xca\x37\x3c\x62\xcb\x7e\x44\xc9\xf3\xd9\x01\xe1\x0b\x5b\x58\xf3\xc0\x6e\x1b\x66\xfc\xf0\x6f\xf5\x39\x8e\xc6\x99\xd3\xfe\x66\x9e\x2c\x6e\xcc\x39\xf3\x32\x0f\xb9\x95\x81\x8a\xdc\xd3\xe8\x7e\x0e\x89\x60\xc5\x42\xef\x45\xbb\x7d\x58\x2c\x4d\xbd\x01\xaa\x4a\x6d\x7d\xbd\x67\x52\x4b\xc5\x01\x4a\xb1\x98\x8e\xc0\xec\xa4\xfd\x7d\x89\xc4\x94\x26\xb8\xc4\xa6\x11\x8f\xa5\xbe\xc1\x40\x0d\x6a\x22\xee\xbc\x7a\xc4\xfa\xc9\xd0\xab\xc8\x4c\x75\xa6\x62\x80\xcf\xae\x3c\x3a\x4f\x16\x3b\xf0\x90\x33\xbb\x2c\xc5\x12\x99\x15\x02\xa1\xc5\x96\x5b\xd0\xd0\x6b\x09\x39\x89\x68\xec\xd7\xad\x7d\xae\x38\xa2\xc1\xbe\x57\xd7\xc2\x96\xbf\x13\x71\xbc\xa6\x69\xb7\x5c\xa2\xe7\xe0\xf9\xae\xc4\xf7\x0a\x26\x47\x7d\xa0\x7f\xf5\x7a\xce\xf5\x49\x4b\x6f\xf3\x9c\xad\x92\x29\x82\x77\x6e\xcb\x0d\xf0\x14\xd3\x98\x30\x5b\x15\x0d\xaf\x44\x0d\x94\x8d\x9a\x6c\xbb\x86\x08\x8c\x71\x1f\xc2\x18\x26\xb2\x35\xb3\x09\x50\x35\x64\x90\xab\x35\x41\x29\x93\x88\x45\x23\xf1\x29\x00\x82\x7a\x1b\xa0\x5e\x0b\x9d\xba\x83\xc8\x44\x6d\xf2\x57\xa3\x0c\x6d\x50\x8c\xe9\x1d\x98\xa4\xb6\x04\xc2\xe5\xf4\x1d\x01\x61\xce\xdd\x80\x2f\x9b\x97\xb1\xc1\x07\x19\x97\x11\x10\x64\x56\xe4\x63\x8f\x28\x58\xb3\x8a\xd5\xcf\x1a\x16\x51\x4f\xcd\x59\x19\xdf\xdc\x5c\x92\x5b\x4a\x7f\x05\xa9\xec\x0d\x5d\x7e\x6e\xd2\xec\x5b\x82\xed\x94\x72\xf4\x96\x09\xd1\x18\x37\xba\x49\x2d\xa9\x0b\x9b\x31\x38\x17\xd3\x35\xf5\x5e\xc0\xde\x51\x82\xcc\xf6\xae\xb3\x38\x66\xd1\x6c\x0f\x33\x54\xcf\x85\xf2\x66\x6a\x36\x77\x67\x80\x20\x65\x32\x11\xb1\x3e\x73\x86\xa9\x70\x49\x14\xf4\x82\x03\x56\xd2\x14\xc3\x78\x5e\x02\x69\x41\x38\xbd\xba\xd4\x92\x34\x7e\x87\xe3\xf8\xba\x9e\x67\xca\xb4\x29\x8f\xef\xdd\x36\x12\xd5\xed\x21\x4f\x59\xa0\xa2\xad\x37\x81\xb2\x86\x2c\xb6\xe3\x9b\xf5\x2b\x9a\x78\xd9\x15\xa4\xa5\x4e\x12\x46\x53\xe9\x16\x7a\x99\x4c\xed\x25\x99\x63\x21\x3c\x68\xf9\xbd\x55\x3b\x81\x0c\xd9\x70\xae\x13\x96\xae\xb9\x94\x7c\xc3\xc8\x87\xd7\x8e\x44\x51\xec\x6f\x5c\xa1\x5d\xab\x55\xcf\x93\x85\x96\x3f\xa7\xa9\xb8\xdf\x9e\x19\x25\xc9\x55\xa4\xb7\x54\x4f\xc2\xfb\x76\xfa\xae\xbd\x03\xff\xc6\xf7\x4b\x65\x8e\xd4\xbe\x2f\x09\x5b\xcf\x59\xa8\xb7\xe7\x6d\x36\x67\xa3\x44\x8f\x60\x14\xca\x92\x94\x87\x6a\xd6\xad\x77\xd1\xe9\x1c\xf6\x49\xa2\x34\xb8\xf2\x44\x37\xcc\x92\x1d\xd8\x4e\x47\x17\x25\x76\x84\xb8\xf0\x4d\x1e\xd1\xe3\xb0\xab\x24\x15\x98\x9e\x27\xda\x92\x40\xf7\x48\x32\x2c\x69\x94\x25\x52\xa5\x8c\xae\xdd\x8b\x43\x81\xa1\xfd\x7d\x7f\x5a\x76\x03\x1b\x09\x56\x94\xc3\x7d\xe0\x0a\x05\x33\x5b\x6e\x31\x87\x70\xe1\xa2\xdb\xa4\xfc\x36\x69\xad\x9e\xea\x2e\x90\x63\xf0\x23\x8f\xaf\xb6\x71\x80\xc1\xf8\x3b\xe1\xbe\xf4\xe5\x41\x03\xb1\x55\xfe\xbb\x9d\x29\x5e\x0f\x6e\x82\x79\x92\x79\xd4\xf7\xe5\x7a\xdb\x5c\x60\x28\x14\xd4\xfb\xce\x16\xf5\x75\x5b\xa0\x71\x4c\xc8\x07\x71\xc7\x52\xab\x29\x5b\xea\x63\x9c\xb2\x30\x0b\xb0\xc6\xfb\x28\x4b\x40\x31\x1c\x07\xba\xe9\x0f\x7c\xb9\xca\xdb\xfa\xa9\xac\xfe\xd2\x2a\xd6\xa7\x9f\x48\x26\xe9\x92\x41\xd4\x9e\x96\xb0\xc1\x38\x95\x90\xb5\x48\x91\x9c\x97\xa8\xc4\x2b\xf9\x00\x0a\xf1\x41\x2c\x3f\xb0\x0d\xf3\x95\xe0\xa8\xad\x88\x6d\x5b\xc2\x3a\xd4\xe6\x8f\xe0\x67\x1b\x57\xe7\x88\x90\x0d\xb4\x20\xbf\xef\x17\xb8\x5f\x23\x39\xbe\xb0\x2a\x96\x8b\xc5\x02\x95\x2b\x93\x78\x21\xf4\xbf\x50\xb7\xa2\x2f\xb1\xb3\xbd\xe6\xcb\x7c\x24\x96\x58\x02\x95\xad\xb9\x52\x05\x3b\xd2\x83\xa9\x94\x06\x8c\x24\x3c\x61\x07\x36\x7f\x97\x16\xca\x41\xb0\x45\xfd\xc1\x7a\xdd\x50\x01\x7b\xb6\xa7\x02\xc2\xee\x59\xa0\x71\x86\x57\xe9\x92\x7e\x87\x5c\x2c\x16\x7f\x1b\xef\x8e\xfe\xe9\xd5\xf9\xf1\xf5\x54\xb3\x76\xcf\x02\xd0\x78\x7b\xe1\x2b\xd4\x33\xea\x8a\xaf\x1a\x75\x58\x1b\x6b\x2b\x5b\x80\x51\xdc\x78\x52\x1a\x2f\x99\x5b\xcc\xfa\x0e\x7e\x0b\xc5\xda\x7f\x91\x4b\x78\x70\x4b\x28\x56\xb5\x40\xb3\x6a\xca\x8c\x51\x00\xf5\xfd\xf0\x26\x10\x51\xc4\xf5\x4d\xde\x88\x9a\x79\x4e\x0d\xbf\x42\x32\x17\x18\x59\xb2\x62\x6b\x96\xd2\xc8\xc0\x45\x65\x5e\x46\x5e\x4b\x85\xef\x4e\xc8\x9b\x97\xdf\xbc\x21\xcf\x5f\xbd\x7c\xfd\xf5\xff\xf9\xdf\xff\xcf\x9b\x6f\xbe\xf9\xea\x9b\x17\x4d\xf5\xcc\x13\xa8\xb5\x43\xe7\xd1\xb6\x24\x7c\x55\x07\x91\x79\xc8\xac\xde\x19\x22\x26\x22\x61\x29\x6d\x92\x53\xe5\x56\x2a\xb6\x96\x63\xf2\x81\xc7\xd9\xbd\xfe\x54\x92\xaf\x5e\xff\xe7\x9b\x6f\x35\x38\x2f\xbf\xfb\xee\xbb\x03\x8d\xc7\x88\x61\x7d\x1d\x49\xd6\x42\x6a\xb1\x24\x17\x20\x8e\xcf\x8f\x7d\xdd\xda\x59\xe2\xb4\xbf\xfe\xee\xd5\x37\xaf\xed\xfc\xac\xeb\xb2\x26\xe3\x31\xd3\xfb\x99\xa6\x3c\xda\xea\x45\x48\xc5\x3c\x62\x6b\x5c\x07\x7f\x31\x0f\xec\x4f\x6c\x58\x1a\xe9\x6b\x62\x7e\x08\xf2\x39\x16\x13\x7a\x9b\xd7\xb6\xb0\x3e\x0d\xfa\xdb\x26\xd1\x93\xc7\x5a\x40\xe5\x1b\xe6\x1e\x8f\xd7\x2f\x5f\xbe\x7c\x79\xf4\xfa\xbb\xef\xbe\xfb\xce\x47\xa4\x12\xa3\x28\x22\xff\x35\xfe\x1f\xf5\xb7\xf7\xa3\xa2\xfc\xd1\x88\xc7\x6a\x24\xd2\x11\x6e\x6d\xbf\xeb\x34\xf0\xc1\x09\x5c\x76\x7b\x49\xf5\x27\xe5\xf6\x4d\xba\xc6\x95\x10\xb7\xae\x32\xa0\x81\x1d\x2b\x91\x8c\x90\x1e\x56\x18\xb3\xde\x48\x78\x05\xd7\xd8\x35\x3a\x76\x93\x7a\x52\x89\xc4\x20\xd7\xab\x7f\xd2\xdf\x6b\x02\x38\xdf\x82\xec\x19\x87\xf5\x1e\xe6\x42\x29\xb1\x1e\xdb\x4b\xbe\x89\x07\x91\x74\xc1\x6c\xb1\x0f\xef\xa6\xb5\x19\x56\x92\x94\x6d\xc0\x71\xad\x50\x21\xe8\xde\xcd\x7d\x12\xdd\x22\xe6\xdb\x84\x4a\x69\x2a\xd4\x6f\x45\x46\xe4\x1d\x57\xfe\xba\x2e\x4a\x18\x40\x0d\x9f\x9e\x33\x22\xb1\x7c\x86\x01\x17\x8b\x4c\xe1\x10\xb6\xba\x1c\x62\x09\x53\x35\x7a\x77\x17\x08\x88\xa0\x24\x9d\x6f\xf5\xfd\x3d\x42\xc3\x62\x2a\xb2\xe5\xaa\xe2\xd0\x0e\x3d\x1f\xe0\x30\x77\xa6\x60\xbe\xaf\x4f\xd3\x3c\x11\x11\x0f\xb6\x28\x9d\xcd\x99\x33\xd3\x62\x0b\x23\x62\x77\x65\xb1\x39\x83\x3b\x4d\xf9\xc6\x5b\x81\xb3\x3d\xed\xfa\x3c\x5b\x1a\x55\xd5\x07\xb1\x3c\x4d\x45\x92\xe8\x6d\xbf\xa3\x1c\x06\xdd\x7c\x64\x6b\x91\x6e\xa7\xa9\x58\xf0\x88\x4d\xa9\x5a\x3d\x04\x96\x2b\xbe\x06\x0b\xd0\x09\x8d\x82\xf7\x29\x4d\x56\x3f\xd0\x78\x79\xbc\x50\x0f\x9b\x99\xed\xed\xd4\x22\xe9\xe1\xbd\xc1\x22\xd9\x9b\xc3\xb5\xf8\x41\x48\x75\x1c\x34\x38\x24\x96\x4f\xff\x69\xf3\xb7\x2e\x25\x00\x95\xaa\xde\xd2\xb2\x41\x95\x92\x2b\x58\x75\xd3\xa5\xb0\x47\x87\x16\x1a\xd1\xc2\x52\x2d\x0a\x25\x08\x57\x92\x45\x0b\xf2\x9c\x2e\x1a\x52\xcf\x02\x79\x30\x7d\xaf\xb8\x61\xce\x79\x57\x0c\x2f\x9b\xb8\x7f\x5f\x8c\xc9\xdb\x6d\x5e\xdb\x07\xb7\xb6\xaf\x4b\x53\x15\xde\x6b\xc4\xcb\xbb\x96\x3e\x30\x81\x4d\xf8\x2b\xa2\xe5\xd4\x6e\xb6\x77\x7a\x79\x31\x9d\xed\x41\x0a\x52\xcd\xe8\x0d\xb5\xb8\xa3\xa6\xea\x2a\x94\x0b\x95\x62\x0d\x31\x74\x34\x8a\xda\xae\xf1\x00\x9b\x8b\x38\x0d\xcd\x01\x6a\x0e\x20\xa4\x8c\xa6\x74\xcd\x8c\xca\xe4\xf2\xec\xfa\xd3\xe5\xb9\xee\xf5\xf8\xe4\xe4\x6c\x7a\x3d\x26\x9f\xa4\xf7\xd4\x9b\x86\x1c\x01\x83\x8a\x4d\x5b\x91\x81\x52\xb4\x4c\x93\x9c\x49\x4d\xce\xa7\x9f\xae\x67\x7b\x48\xa6\xbe\x6f\xa1\x25\x40\x44\x2c\x19\x56\x96\x8e\x56\x09\x3d\x55\xd8\x93\x29\x0c\x36\xdb\x43\x98\xfc\x55\x83\xac\xca\xcd\xac\x48\x05\x18\x22\x0c\x11\x5f\x51\x09\xf9\x6d\xb1\x08\x43\x92\x0a\x9b\xa3\xd6\x2e\xae\xaf\x6f\xff\x56\x02\xd4\x19\x34\x82\x9e\x23\xce\x7d\xb7\x68\x14\xd9\xcb\xba\x05\xac\x71\xe5\x72\x9d\x13\x81\xfd\xed\x83\xa9\x09\x80\x76\xed\xad\x26\x85\x3b\xd3\x62\xb6\xe1\x01\xba\x4d\x4f\x53\xa1\x44\x20\x3a\xaf\x3d\x20\xa3\xba\xae\x45\xe8\x29\x98\x98\xcf\x09\x0d\x8d\x8e\xcd\x5c\x78\xd6\x2c\x34\xc3\x78\x65\x2e\x70\xc8\x3e\xd0\xdc\xcb\x1e\x52\xd8\xc4\x96\xed\x5c\x5e\x4f\x2f\x2f\xae\x6f\xde\x5e\x5c\x5c\xe3\x2d\x29\x62\x0b\x45\xe6\x11\x8d\x6f\x1b\xf5\x1f\x0d\x97\x00\x67\xae\x57\xbb\x94\xe8\xba\x36\x15\x53\x55\xad\xb0\x95\xd5\x76\x89\x78\x97\xc9\x96\x28\x92\xa7\x53\x70\x2e\xb5\x93\x3c\x20\x11\xa3\x1b\xe3\x2d\xe4\xbd\x77\x83\xe0\x05\x0a\xe9\x95\x10\x46\x72\xae\xf4\xf8\x80\xaa\xbe\xc6\x3c\x73\x22\xe2\x58\xdf\x11\x6f\x27\x31\xa4\xa5\x6b\xf2\x38\x68\xe5\xb5\x76\x37\x5f\xda\x48\xe5\x53\x16\x79\x5d\xd1\xdb\x00\xaa\x75\xd2\xac\xb3\x6a\x07\xc6\x28\xab\xcf\x45\xc8\x20\xad\x6f\xd7\xf2\x9f\xb9\x1f\x9c\x4c\x4e\x2f\xf5\x47\x78\x8b\x8b\xf4\xbf\xc4\x82\xe8\x5f\xf7\xe1\x2a\x60\x7b\x1f\xc5\x22\x1e\xa1\x3f\x24\x44\xd6\xb6\xd8\x65\xd7\x74\x6b\xd7\x0b\xb5\xba\x39\x13\x02\x63\x00\x96\xf6\x65\x8e\x32\xd9\xbc\xf5\xdf\x0f\xad\x0b\xaa\x26\xae\x41\x91\x84\xd2\x97\x95\xe4\x09\xf2\x66\x2e\x28\x8f\xb4\x7c\x3d\x89\xe7\x22\x8b\x43\x2d\x36\x34\xdd\xe4\xcb\x12\xc7\xbb\x86\x0f\xcb\x78\xfe\x74\x3a\x3d\xbc\x3e\x99\xa2\xe2\xdf\x3b\xfb\x38\x84\xc5\x30\xf6\x42\x47\xbf\x88\x1c\xd6\x67\xfa\x05\x5e\x9e\x73\x78\x5f\xaf\x22\x26\x3c\x4d\x99\x4c\x4c\x2e\xd3\xa2\xc4\x6e\x96\x72\xb5\xcd\xd9\x83\x25\x14\xa6\x4e\xac\xe6\xeb\x1b\xc1\xbd\x1c\x86\x06\x01\x64\x0c\x05\xc6\x11\x64\x58\x67\x5d\x2c\x16\x84\x22\x3c\x20\x54\x68\x68\xd3\x94\x05\xaa\xe2\x5f\x46\xde\xf9\xfd\xb0\xe7\x34\xb8\x1d\x95\x8a\x00\x1d\x58\x6f\xee\x9c\x3a\xdb\xaa\x86\x45\xb5\x6b\xae\x2c\x31\x6a\xca\x14\x3f\xdb\x53\x41\x32\xdb\x03\xa9\x85\x02\x7e\xfd\xdd\x38\x88\x76\xe5\x28\xef\xfc\xd1\xad\x4a\x53\x27\x4d\x10\xaf\x0b\x7b\x30\x05\x49\x01\x76\x01\xa2\x02\x16\xfb\x20\x57\x0a\x34\xd6\x29\x8c\x45\x0c\xc6\xba\xfc\x72\x67\x3c\x95\x8c\xd1\x4e\xca\x95\x35\x09\xeb\x5d\x72\xfa\xc3\xc9\xb4\x64\xb0\x0d\x92\xa3\xd7\xaf\xbd\x7e\x36\x59\x98\x1c\xbd\xf9\xf6\x00\x9a\xbc\xfa\xcf\xef\xf0\x1f\xaf\xbf\x2a\xfe\xf5\xed\x4b\xfc\xd7\x9b\xaf\xbf\xfe\xca\xfc\xeb\xcd\x9b\x37\xf9\xbf\xfe\xd3\xc7\x94\x9b\x0f\x5f\x39\xbf\x86\x5e\xb7\xa9\xc0\xdb\x6b\x20\xd6\x73\x27\x3c\xc8\xae\xe9\x01\xa0\xe8\x20\xdf\xfc\x0d\x3e\xf7\xd3\x9c\x41\xc7\x21\x2a\x9e\xac\x0f\x57\x51\x81\xd3\xaf\x19\xea\x88\x31\x89\x99\x5f\x3f\x4e\x7a\xb9\xf8\x6b\x48\x3a\x3e\x6f\x49\x9a\x44\x72\x2c\x3c\x18\x84\xd6\xa2\xc5\xa3\xc6\x32\xc0\xa3\x7c\xe4\x66\x0a\xda\x9e\x02\xad\x95\x82\x5e\x64\xea\x81\x24\xb4\xf6\xe5\x23\xd3\x50\x91\xa9\xa5\x70\x69\x28\x48\xb5\xdd\x54\x54\x89\x81\x8a\x7e\x51\x2a\x2a\xcc\x46\x78\x1c\x32\x2a\xe0\x9e\xcf\x54\x10\xee\xef\x43\x56\x9f\x38\xa4\x69\x68\x6c\xf0\x4a\x18\x47\x9d\xc6\x0a\x73\xb8\x8d\x42\xc1\x70\xca\x4b\xa6\xf4\x82\xc1\x62\xe1\x7d\x56\x05\x61\xc9\xa5\x4b\x23\x40\x2f\xa7\x26\xd4\x4d\x4a\xeb\xd3\xf3\xab\x2a\x0d\xdf\x85\x40\x7b\x17\xca\xd0\xec\x03\x20\xfb\xdf\x7c\x85\xff\x1d\x68\xf8\x40\xc3\xbd\x6f\xfd\x34\x9c\x51\x95\xa5\xec\x94\x29\x16\xa8\x8b\x0d\x4b\x53\xde\xad\x72\x7f\xe7\xfb\x28\x2f\xf5\xa3\x04\xd8\x25\x52\x6b\x97\x31\x43\xf8\xf7\x9e\x62\x46\xcb\xf4\x23\x1a\x60\x69\xea\xec\x0f\xc2\x63\x42\xd1\xae\x47\x24\x4b\x28\x16\x88\x06\xee\x00\xe4\x32\xf6\xaa\xc7\x64\x42\x03\x7d\x4d\x67\xf7\x74\x9d\x44\xec\x7b\x32\xdb\xbb\x3a\x3f\xbe\x7e\x97\x45\xd1\xf6\x12\x2c\x60\x7f\x54\x69\xc6\x0e\x3e\x1e\x5f\xfd\x4f\xf7\x47\xf0\x28\x3b\xb8\x64\x10\xd3\x76\x95\x25\x40\x2e\x3e\x88\xe0\xf6\x8f\xb3\x3d\xef\x4e\x9d\xed\x81\xf9\xc2\xf8\x8d\xc3\xe7\xb3\x3d\xa4\x89\x0b\x91\x06\xa5\xd9\x1f\x60\x3d\x75\xdd\x54\x18\xd3\x66\xb3\x19\x59\x23\x81\x66\x4a\x8c\x10\x3f\x3b\x5f\x88\x17\x91\x00\x1b\xd0\x64\xea\x67\xc5\x56\x09\xd3\xe8\xfc\x58\x5e\xed\xa2\xb7\x22\xf5\x53\x61\x5d\x41\x07\x8f\x8a\x7f\xc4\x32\xa5\x5e\x2e\x60\x21\x73\x92\x8a\x79\xef\x7b\x8d\xfe\xf3\xe6\x26\xed\x7b\xd5\x3c\x9d\x36\x5c\x41\xe1\x71\x1e\xfc\xf9\x74\xda\xd7\xb1\xe4\x7d\xf5\x0b\xe3\xa1\x21\x89\x79\x43\xfe\x7c\x3a\x25\x52\x58\x5f\x20\x12\xd0\xd4\x1f\x5c\x01\x42\x4b\x28\xe2\xfd\x7d\x45\x24\x6e\x38\xf8\x56\x2c\x16\xa0\x5a\x13\x29\x09\xc1\xee\x00\x66\x18\xf0\x16\x05\xa6\xf8\xe7\xd3\x29\xca\x1e\x5e\x45\xae\x71\x0c\x61\xfa\xdc\xb0\x38\x64\x61\x61\x26\xd2\x3c\x0d\x46\x4b\x52\xb1\xd1\xe7\x73\xce\x14\xe8\xf5\x0a\x07\xf6\x06\x38\xe3\x5c\x97\x3a\xfe\x6c\x27\xcc\x15\xa3\x91\x5a\x3d\x50\x27\x82\x1f\x6b\x81\x71\x47\xa5\x0c\x7e\x38\xf5\x93\xff\x56\xc2\x9f\xbb\x42\x9f\xdd\x07\x51\xd6\xc3\x22\x39\xa9\x7c\x80\x52\x2d\xd0\xb1\x51\x85\x8e\x41\xc5\x90\x4e\x6f\xf0\x92\x13\x3c\x33\x9d\x82\x8a\xd1\x54\x3d\xb1\x65\x75\xcb\xa2\xed\xb8\xc9\xcd\xa2\x2c\x2e\x95\xfc\x96\x4d\x60\xc6\x32\x16\xfa\xa7\xc2\x91\x69\x7f\x9f\x4c\xa6\x3f\x5e\x91\x30\x5b\xaf\xbd\x0e\x04\xf9\x34\x0e\xac\x13\xbf\xe1\x07\x36\x84\x32\xda\x92\xf9\xb6\xe4\x7b\x53\xb6\x2c\x78\xb5\xdb\x66\xae\xeb\x2c\x52\x3c\x89\x1c\x7f\x7c\x8c\xd9\x25\x99\x44\x5b\xaa\xfe\x4f\xc4\x6c\x94\x26\x38\xb6\xf0\x7a\x34\x27\x81\x68\xc2\xc4\xe4\xd3\xaa\x85\x27\x48\x10\xb4\x7d\x2f\x00\x4e\x90\x5f\xee\x52\x9a\x34\xd9\x79\x10\x9d\xc0\x9a\xf6\xf7\x0f\xf7\xf7\xb1\x3b\xc3\x87\xc8\x0a\x75\xa3\xc6\xd3\x68\x7f\xff\xf0\xbf\x34\x2e\x0e\x0f\x36\x4c\xad\x5e\xed\x7b\x0e\x91\x09\xe9\xb2\x38\x40\x6d\x43\xee\x95\x0f\xab\x35\x67\x4b\x1e\xdb\x11\x75\x77\xfb\xfb\xa6\xae\x8d\x14\x4d\x5a\xd8\x02\x85\xfb\xfb\x66\x6c\xf7\x4c\xc3\x02\xf1\x64\x23\x5b\xdc\x72\xfd\x27\x2c\xef\x78\x9a\xb2\x05\xbf\xef\x7f\x4c\xb0\xbd\xd5\x5b\x97\x97\x18\xbc\x3d\xf2\xfa\x7e\x79\xe5\x1a\x2f\xb6\xea\x36\x30\x88\x90\x80\xab\x86\xe6\x3a\x19\x97\x2b\x34\x04\xac\x3d\x37\xc1\x56\x5c\xc9\x31\x39\x17\x0a\x68\x04\x61\xf1\x86\xa7\x22\x5e\x83\xc1\x5d\x98\xfc\x88\x34\x26\x73\xcd\xb7\xd7\x4c\xd1\x08\x77\xa0\x48\x83\x15\x93\x2a\xa5\x4a\xf8\x13\x7b\xe6\xdc\x14\xed\x08\x34\xd1\xb2\x6f\xca\xa9\x62\xd1\xb6\xbc\x77\x44\x96\xba\x4e\x85\xa0\x15\x12\xc1\x6d\x43\xb5\x4b\x4d\xc6\x4c\xb8\xb9\x31\xb5\xe9\xb5\x0e\x68\xc4\xf7\xf7\xdd\x40\x66\xdd\xeb\x45\xc2\xe2\x2b\x45\x83\x5b\xf7\x33\xef\xb9\xb1\x9e\x45\xfb\xfb\x8a\x26\xb6\x23\x77\xe7\xe8\x01\x1e\xbc\x67\x2e\xb1\xca\x0e\xec\x89\x0d\xed\xb4\xec\x4c\x1a\xbe\x6b\x2a\x10\xd4\x18\x35\x99\x32\x19\xd0\x58\x1a\x47\x7a\xf7\x7c\x09\xb2\x61\x29\x5f\x6c\x4d\xc4\x05\xe6\xe3\x84\xdb\x26\x7e\x03\xec\xd8\xaf\xd9\xb6\x61\x25\x9a\xe0\x49\xa6\xf2\x08\x6a\x6e\xa1\x54\x82\xbc\xdc\x51\xa8\xe3\x09\x6f\xf1\x7d\x6d\xe5\x99\xfa\xd3\x8f\xd7\x9f\xba\x0f\xe4\x74\x32\xfd\x78\xfd\xc9\xe2\x50\xff\x13\x3c\xd9\x95\xcd\x35\x64\x94\xfe\x68\x35\x1a\x93\x2b\xe6\x77\xca\x30\xdb\x5a\xcf\x5a\xf7\xe1\xf8\x38\x7e\xfd\xf5\xee\xce\xfe\x3c\xd1\x5b\x6f\xc7\xfd\xb1\xff\xff\xb1\xf7\xae\xcb\x71\xe3\x66\xc3\xe0\xff\xbd\x0a\x44\x7e\xab\x6c\x7f\xab\x6e\xd9\x73\xf0\x3b\x51\x2a\xb5\xa5\x91\x34\x93\xae\xd8\x72\x7f\x92\x3c\x93\x54\x3a\x9f\x5f\x34\x89\xee\xc6\x27\x36\xc0\x10\x60\x4b\x9d\x49\xb6\xf6\x36\xf6\xf6\xf6\x4a\xb6\xf0\x3c\x00\x09\x92\xe0\xa1\x65\x79\x32\x93\x97\xac\x4a\xc6\x6a\x82\x38\x3c\x00\x9e\xf3\x61\x16\xfa\xaa\xf3\x74\x90\x8c\x61\xa0\x69\x98\x27\x4f\x3c\x8f\x20\x4c\x21\x5b\xd5\x24\x10\x21\x2d\x32\xb0\x56\x52\xb0\xe7\xfa\x6a\x9f\xa0\x06\x27\x93\x77\x45\xaa\xcb\xc2\x6d\x27\x5c\x99\xaa\x18\xde\x55\xa4\xea\xf6\xf9\xfd\xed\xab\x83\x3d\x4a\xdd\x08\xdf\xd2\xe8\x8e\x35\xb2\x06\x34\x80\x3c\xab\x36\x2f\x04\x37\x57\xe0\x74\x69\x7f\x37\x4c\x8e\x9b\xbb\x21\x69\x41\x40\x30\x34\xfd\x55\xd4\x39\x60\x5e\x5c\xd3\xa0\x39\x79\xc8\x3a\xbe\xe3\x89\x66\x19\x44\x58\xb7\xba\x93\x0c\xe9\xc7\x48\x81\xdf\xb5\xfb\xdd\xd4\x4f\x5e\xf3\x23\x77\xf0\x0c\x96\xf1\x53\x66\xb9\x01\x42\x10\x49\x64\x74\x47\x56\x3c\x61\x53\xf2\x67\xc3\x7d\xd0\x3d\x04\x28\xa2\xf9\x14\xdc\xff\x80\x6a\x58\x7d\x5f\xd1\xda\x09\x00\xe1\x2c\xa8\x5c\x7b\x0a\xb1\x62\x36\x2f\x56\x1e\xad\xf1\xdd\x2a\xb6\x34\x4d\x19\x06\xbc\x0a\x2d\x0b\xef\xea\x16\x62\xa6\x29\x17\x2c\x33\xd7\x8a\x92\x98\xaf\x56\x2c\x63\x42\x93\x94\xea\xcd\x4b\x9f\x4e\x9c\x64\xb9\x38\x79\xb0\xd2\x84\x99\xf7\x63\x8f\xa9\x81\xf0\x3c\x93\x4b\x76\x00\x56\x68\xf9\xd2\x6d\x10\x78\x9a\xd7\x94\xc9\x41\x5e\x03\xeb\x0b\xa3\x47\x3a\xd5\xda\x48\xf7\x40\x33\x68\x04\xea\x9d\xaa\xfb\x09\x6c\x0e\x5f\xd9\x70\x5e\x21\x83\xbc\x06\xdd\x51\x0e\x19\x65\xa7\x55\x9f\xf4\x2d\xbd\x73\x2e\xe5\xe0\x39\x6e\xc3\x67\xf8\xce\x8a\x00\x6e\xf7\x5b\x84\x41\xb3\x2f\x20\x06\x1e\x43\x00\x8e\x91\x1f\xa1\x9b\xf3\xf9\x07\x7f\x53\xbe\x7e\xb5\x7d\x34\xba\x30\xd0\xbc\xe5\x5b\x26\xf3\x5e\x0b\x75\x65\x07\xec\x37\x5d\xb0\x07\x40\x07\x35\x09\x36\x9e\xbb\x02\x63\x70\x33\x7f\x75\xec\x21\x4d\xd0\x34\xa3\x22\x99\xab\x52\x19\xd3\xca\x0e\x00\x8f\xaf\x36\x34\xb8\x83\x70\xbd\xd0\x87\x2a\x49\xaa\xc8\xde\x32\xe4\x61\xca\x61\x78\x71\xb3\x89\x6e\xa7\xa6\xe4\x47\xb3\x71\x36\x76\xa3\x8c\x85\x37\x12\x39\x2d\x2f\xd2\x71\xbb\xf7\xaf\x8b\x48\x32\x3d\x9a\xeb\x64\xe3\xa4\x64\xb6\x77\x98\xc5\x8b\x73\xdf\xca\xdc\xe6\x45\xb6\x0e\x48\x5e\x19\xcc\x50\xef\x32\x73\x2d\x56\x2e\x63\x08\x4e\xa8\x12\xb4\xa7\x0a\x2e\xe7\xb1\xc7\xe6\x1d\x35\x32\xdb\xa7\x63\xe7\x77\x34\xbb\x7b\x47\x55\x7f\x14\xe7\xac\xf6\x81\x3b\x78\x5b\xf3\x6f\x5f\xd0\x86\x52\xa0\xca\x20\xcb\x10\x7c\x66\xf3\x5b\x3c\x14\xa6\x1f\xb2\x34\x28\x15\x12\xa7\xb9\xc0\x9d\xa5\xd9\xc5\x2f\xbf\x30\x6f\xc8\x86\x3d\xd0\x98\x45\x7c\x5b\x16\x66\x31\x07\x28\x78\x4e\x34\x49\x18\x55\x9a\x7c\x83\x7d\x2a\xa6\x8f\xc1\xc4\x61\xb6\x14\x09\x6a\x94\x50\xb5\x71\x5e\x7c\x7b\x7b\x02\xb7\x6e\x16\x61\x59\xc0\x79\xfd\x80\x01\x0b\x7c\xc2\x2b\xdb\xf8\xb0\x5a\xbd\x82\x27\xb4\x8b\x8f\xaf\x55\x59\xee\xce\xd5\xd9\xed\x7b\x6b\x86\x2b\x98\x76\xa4\xcb\x8f\xdc\xee\xb9\x54\xfa\xc7\x8c\x6b\x06\x0e\x3e\x07\xa3\xfe\xf0\xe7\x75\xce\x10\xdc\xdd\x5a\xb1\x84\xe1\xec\x62\xb3\x33\x94\xdc\x9b\xae\x9a\xb1\x48\x45\x39\xfa\x68\xc3\x62\xf4\x20\x84\xa0\xde\x8c\x92\x8c\x85\x3d\xf9\x96\x28\x84\x15\xa9\x0c\x30\x50\x16\xa3\xf2\x61\x90\x7b\x8a\x94\x3d\x4a\xe4\x72\xc9\x32\x14\x2f\xa8\xa8\xe0\xa1\xa0\xa2\xda\x0f\xd5\x80\xa8\x32\x19\x45\x79\x66\x08\x92\xfb\x9a\xa6\x69\xe2\x8a\xfe\x56\xce\x4a\xa1\x32\x6c\x91\x9d\x52\x16\xe9\x26\xa6\x9c\x7e\x52\x5c\x93\xeb\xea\x70\x96\x3f\xf8\xdd\x23\x44\x42\x2b\x07\xb8\xd0\x50\x10\x7d\xad\x4b\xa9\xb7\xc5\xdd\xec\x7f\xdb\xb9\xa9\x18\x82\x0f\x61\xff\xc3\xd9\x2b\x61\x6e\x85\x40\x80\x3a\x0a\xed\xb1\xd0\x45\xed\x63\x54\x4e\x19\x8e\x1a\x98\x0b\xd0\x58\xb4\x68\x88\xac\x77\x3f\x76\x5a\x08\xad\x0a\x6c\x9d\xa0\x65\xa1\x19\x18\x6b\xb1\x3c\x34\x06\xcc\x58\xdf\xbe\x65\xbe\x6e\x25\x84\xe6\xfc\xae\xf8\x03\xda\x75\x6c\x7b\x9b\xeb\x8d\x7c\x35\x7d\xfd\xba\x50\x08\x1a\xea\x8b\x8a\xbd\x9d\xf9\xdd\x10\xa4\x75\xc6\x68\x8b\x87\xf5\xde\x32\xc7\xce\x41\xb9\x70\x2e\xd6\xf2\x98\x50\xb2\xf1\x82\xf6\x30\x9c\xba\x1a\xa3\x17\xea\x12\xc2\xf6\x2a\x87\xf8\x31\xb2\xd4\xee\x8d\xb5\x22\x1d\x2a\xaf\xdf\xe5\x4b\x06\x15\x63\x64\xa6\xaf\x21\x94\xa9\xf7\xec\xff\xb1\xf1\x89\xad\x3c\xe7\xb4\xcc\x60\x5c\xf0\xe3\xa2\x5a\x12\x64\xda\xb8\x75\x52\x46\xad\x4f\xc9\x7b\x81\x91\x4e\x10\x83\x8a\x3c\x01\x5a\xa6\xfc\xf0\x56\xc7\xce\xb4\x50\x21\x9e\xee\x94\x8d\x12\x44\xd0\xe7\xc8\x33\x31\xc5\xdc\xb4\x60\xef\x50\x3b\x5e\x66\x18\xe8\xf2\x7d\xb6\x3e\x07\xfe\x46\x7d\x09\x91\x4a\x5f\x7e\xf1\x9f\x6f\xfe\x33\x18\xd0\xd7\x6e\x07\x6f\x0b\xd7\x1b\x10\xb0\xd7\x1f\xb2\xd7\x17\x23\x75\x78\x94\x54\xa7\x55\x37\x91\x6b\x08\xb5\x34\xe2\xa7\xa0\x5b\x76\xcd\xd6\xac\x57\x1f\xfb\x36\xf4\x91\x1f\x43\x61\x90\xa6\xf5\xfe\x8c\xcc\xe9\x30\xec\x70\x0b\x9a\x43\x47\x50\x9e\x11\xe8\x11\x82\x4c\xb1\x7c\x26\xc6\x97\xc5\x88\x03\x6c\xfc\xa9\x3b\x61\x10\xfc\xd9\xe6\x3f\x02\x83\x59\xb3\x2f\x68\xfe\x01\xe9\x96\x89\x6b\xd6\x7c\xc7\x44\x28\xe5\x50\x11\xd4\x16\xb3\xb8\x3d\xf0\x74\x05\x1c\x09\x52\x47\x20\x86\x78\x1e\xed\xf4\x21\x1e\x0c\x66\x7a\x18\x0e\x48\xe4\x7a\xb0\xda\xe0\x6d\xd9\xd6\x51\xac\x55\x9e\x24\x20\x3e\x3b\xfe\x02\x6f\x4e\x22\xd7\x8e\x42\x84\x96\x02\x2c\xa3\x47\x37\x40\x6a\x49\x24\x24\x8f\xaa\x88\xe1\x3b\x9a\x9d\x24\x72\x7d\xe2\x33\xfb\xd3\x44\x06\x13\x9a\xf5\xac\x72\xa0\xc6\xff\xad\x6b\x59\xea\x43\xd6\x15\x05\xbf\x87\x1a\x40\xb6\xcd\x8c\xe4\xda\x76\xa5\xde\xbe\xff\xde\xd1\xcb\xaa\x12\x3a\x92\x13\x8c\x6c\x78\xc4\x4a\x6e\xd8\x8e\x65\x5c\xef\xcd\x5e\x0c\x59\x8f\xdf\xde\x5f\x95\xb2\xbf\x13\xba\x94\x20\xa9\x9b\xdb\x63\x8e\x50\x10\xf7\x64\x0c\xd3\x5d\xb8\x5c\xa4\x72\x6d\x35\x3f\xe5\xc2\x66\x62\x25\x3f\x61\x3d\x37\x51\xc6\x58\x7f\x38\xd5\xdb\xfa\x17\x4f\xb6\x26\xa5\x63\x99\xeb\xa7\x5c\xd1\xbe\x9f\x2c\xbe\xad\x34\x7f\xba\xb5\xec\x95\x77\x09\xc9\x95\xb4\xd9\x07\x84\x74\x17\x0d\x88\x99\x6d\xd5\xa9\xa5\x7d\x0c\x10\xb6\xf4\x01\xd4\xdb\x37\xfc\xef\xa1\x33\xda\x49\xad\x5c\x16\xd2\xb3\x38\x0e\x09\x60\x55\xf0\xbd\xf3\x1a\x3b\xe0\xf9\xe5\xe0\x32\x12\xcb\x2d\xe5\x02\x2d\x75\xed\x11\xb0\xae\xda\x13\x84\x4d\x51\x41\xa8\x50\x86\x07\xfd\xe1\x1d\xf9\x5b\xce\x32\x83\x6b\x0d\xf4\xa2\x44\xe6\xf1\x84\x0b\xae\x8b\x59\x42\x52\xd7\xc2\x44\x15\xf6\x82\xdb\x80\x92\x2b\x43\xb5\x58\x5c\x44\x59\x6d\x69\xb4\xe1\x82\x15\x5a\x16\x21\x77\x74\x42\x53\x4e\x5e\xc8\x0c\x0a\x3f\x2d\x73\xa1\xf3\x60\x97\xae\xe9\xc4\x4d\xe3\xe5\x94\x9c\x95\x25\xa4\x01\xc1\xbe\x88\xa8\x62\x10\x27\x26\x14\xd7\x7c\xc7\x5e\x92\x2d\xa3\xa2\x5d\x0d\x54\xb1\xe1\x83\x2b\x25\xd3\x24\x4f\x41\x90\xbf\x3a\xbb\xc5\x68\x60\xa7\xd5\x72\x03\x03\xf6\xef\x39\x41\xaf\xbf\xf8\xcf\xe9\xab\xe9\xab\xe9\xeb\x83\x8f\x91\x1d\xa4\xc5\x27\x22\x7c\x14\x9c\x73\x20\x48\x54\xe6\xdf\x56\xdf\x54\xcc\x18\xf7\x1a\xfd\x53\x5a\x72\x41\x6e\x97\x10\x13\x0f\xc4\x1c\xcb\xbe\x4d\x2b\x27\xed\x05\x5f\x01\x84\x9e\x3f\x37\x37\xeb\xf9\xf3\x97\xc7\x9e\x73\x59\x8b\x10\x04\xa0\x2c\x00\x79\x8c\xf6\xdd\xd7\x6f\x7e\x3b\xfd\xe2\xeb\xaf\xa6\xf6\xbf\xa7\xdf\x80\x40\xe5\x8f\x75\xea\xaf\x2b\x28\x3c\xcf\x04\xc4\xfa\x13\xb3\xdf\x36\xf7\xbf\xb7\x89\x4e\x23\xbf\x64\xae\x84\xa0\x87\xe0\xbe\xf9\xcf\xff\xfc\xba\x23\xad\x44\xdb\x0d\xd5\xf9\x21\xe9\x17\xdf\xdd\x7e\xf8\x39\x52\x2f\x82\xc5\xb3\xa2\x9d\xa0\x49\x04\xe1\xbf\x85\xba\x31\x6c\x17\x78\x77\xfb\xa1\x9a\x2c\xa2\x4c\x38\xd8\x95\x6c\xf0\xd3\x32\x0b\x0a\xaa\x9d\xd2\x69\x60\xe4\x9c\xa7\xa6\xb2\x5f\x78\xe6\x2c\x83\xb2\xaa\x61\x74\xc0\x9d\x58\xb7\xa9\xb6\x8c\x12\xc8\x2a\x9b\x23\x09\xd7\xda\x65\xc4\x12\x84\xfa\xf3\x23\xa9\x94\x49\x91\x12\xae\x27\x82\xae\x48\x2f\x55\x0b\xcb\xf3\xa3\xe7\xe0\x04\x94\x13\xb6\xea\x9c\x02\xc4\x61\x1c\x5a\x49\x06\xe6\x26\x21\x05\x79\xc1\xc1\x71\xcc\x09\x6b\xa5\x9a\xe7\xdd\xd9\xcd\xff\xfc\x70\x79\x7d\x76\x71\x49\x34\xcd\xd6\x4c\x07\x92\x99\xf5\xec\x50\x21\xab\xfe\xcb\x92\xa7\xd8\xb4\x29\x30\x09\x6f\xbb\xcb\xfc\x29\x56\x70\x56\xc5\xfe\x18\x00\xb7\x99\x23\xd0\xc9\x99\x42\x8c\x3f\x1e\x90\x18\x36\xb8\x88\x42\xb8\x3a\xbb\xb5\xaa\xff\x5c\x38\xbf\x8c\x8e\xec\x0e\x4b\xb6\xa1\x3b\x2e\x33\x87\x62\x9d\x3f\xa1\x42\x77\x8d\xd6\x58\xc9\xa7\x4d\xc7\x21\x98\x4e\xb8\xe8\xb0\xef\x74\xc1\x1b\x3c\xf1\xcd\x74\xaf\xd9\x7a\x48\x34\xff\xfb\x6a\x7b\x47\x68\x3c\xf6\xc2\xa0\xb6\x02\x9d\x19\xfa\x98\x69\x6e\xf0\x50\x50\x2c\x47\x0c\xb6\x64\x89\x14\x6b\x4c\x1b\x3f\x33\xb7\x0f\xbc\xc9\x26\xb6\x23\xd4\xbd\x9d\x94\x7e\x30\x31\x4b\x13\xb9\xdf\x32\xa1\xdb\xf9\x0d\xe7\xca\x5e\x96\x42\x85\x88\xf8\x8d\xbc\x87\x93\x00\xd9\x83\x71\xf0\x17\x98\x48\xa7\x54\x1e\x6e\x65\xcc\x92\x60\xcf\xc8\x97\xa0\x18\x16\xad\xa0\x2c\x09\x26\x0b\x28\xdc\x8d\xcc\x8d\x84\xbe\x23\xb9\x4d\x73\x9b\x05\xef\xa5\xad\x4a\x90\x87\xfd\xdd\x4a\x11\xf9\x2f\x28\x1b\xfd\xb5\xdc\x95\x8f\x16\x06\xc8\xda\x78\x8b\x31\x2c\x1d\xcb\x75\x26\xc5\xd4\xfc\x1a\x9c\xad\x9d\x0a\x26\xe2\x2b\x89\xde\xe5\x36\xd5\xfb\x43\x59\x11\x0c\xa8\x81\x3c\x61\x54\x6f\x06\x4a\x93\xf3\xc0\x47\xbe\x17\xfa\x72\x6f\xf7\x00\x32\x60\x42\xbe\xff\x88\x86\xf3\x02\xda\x04\x22\x48\xc2\x31\x46\xc4\x25\xe0\x74\x89\x1c\x8f\x49\xc2\xef\x18\x39\xf3\x34\xe5\x09\xdd\xb3\x6c\x58\xc0\xfb\xe3\xa0\x92\xc9\x2d\xd3\x1b\x96\xab\xef\xe5\x3b\xa6\x33\x1e\x0d\xcd\xfd\xf7\x7c\xde\xfa\xa9\xd3\x0b\x28\xf2\xbd\x34\xcc\x31\x58\x5d\xb7\xd8\x24\xcc\xae\x25\x09\x3a\xe9\x3b\xc7\x4e\x73\x96\xca\xfe\x5d\x86\x52\x88\x97\x29\x43\xe3\x8f\x11\x03\x2a\x16\x3c\x94\x5a\xa2\xef\xb0\xe5\x0c\x50\x27\x6b\xef\x3a\x5a\xc9\xe4\xca\x4d\xca\x16\x40\x65\xf1\x31\xb6\x6b\x21\xb7\xde\x8c\x0c\x4f\xf1\xc9\x19\x6e\x4b\xe0\x3f\x1a\xf4\x35\xc0\x3b\x37\xf1\x1a\xfc\x3a\x60\x6f\xe5\x26\x2e\x9c\x8d\xb8\xc8\xfb\x69\x96\xf4\xe9\x9e\xd8\x8d\x35\xb6\xf8\x55\xf7\x2c\xf0\x0f\x52\x15\x32\x01\xda\x9d\x5d\x9e\xa0\xb2\x69\x10\x35\xd9\x0d\xb6\xcb\x74\xc9\xc4\xb8\x88\x01\x57\x97\xab\x63\x9f\x76\x7b\xec\x34\x07\xc9\x39\x8d\xc5\xf9\x02\x8f\x0b\x46\x7c\xf2\x05\xfe\xf6\xd5\x6f\x3b\xc4\xb7\x16\x66\xa7\x5c\xe0\x1c\x4d\x4e\x8f\x3e\xa8\xc1\xef\x4b\x44\xe1\x1c\xda\x46\x2c\xd1\x71\x83\x7e\xe4\x19\xfb\x3e\xa7\x59\xfc\xe8\x5d\x68\xe9\xa1\xdc\x87\x7b\x6e\xe4\x3a\x9a\x05\x39\x50\x07\x87\xc7\xee\x44\x58\x24\xc4\xcd\x79\xe4\x4e\x84\x8d\xab\xb8\x39\x4f\xbe\x13\x19\xdb\xca\x1d\x73\x19\x30\xae\x07\x55\xd8\xfe\xb1\x1a\xc3\x64\x93\x2d\xef\x98\xf5\x70\x75\x15\x40\x6d\x46\xfe\x1d\x6b\x73\xdd\x5a\x32\x56\x49\xab\xe2\x38\x8f\xa9\x0d\x4a\x42\x89\xce\xa5\x8a\xc1\x80\xd9\x82\xc1\xf0\x6c\xef\x6d\xf1\xb8\xe0\x42\x44\xe3\xb8\x3a\xaf\x32\xfe\xd8\xa5\x88\xf5\x32\xd3\xd8\x84\x1d\x8c\x86\x3b\xbd\x67\x38\x17\xbb\x5e\x37\x99\x64\x6f\x73\xe2\xd8\x11\x0e\xde\x03\x9b\xf0\x64\xb0\xcd\xfe\xba\xfe\x45\x25\x0a\xc0\xfc\xdd\x70\xd2\x6d\x8d\x06\xb7\xbe\x8d\x3a\x57\xa5\xab\x93\xe1\xb8\x21\xa0\x0f\x3c\xc3\x2a\x8e\x61\xef\x2c\x0f\x2f\xa4\x98\xfc\x9d\x65\x41\xc5\x12\xf7\xb4\x8f\x9e\x60\xa0\xaa\x26\xc7\x83\x6d\xc3\x05\x9c\x6e\x6f\xdf\x0e\x07\xd1\xed\xed\x5b\xdf\x55\x6e\xa2\xe5\x24\xe1\x3b\x56\x78\x98\x83\x0c\x8a\xa8\x7a\x72\xdf\x52\x05\xc2\xc2\xc7\x42\xb1\x4a\x82\x0e\x5f\x86\x39\x24\x87\x7a\x69\x5c\x07\x3e\xfa\x04\xbf\xec\x22\xab\xd3\xe1\x1e\x1a\x64\x43\xc3\xda\xfe\xc7\x7a\x68\x60\x76\x29\xe7\x8c\xd1\x2d\x10\x3c\x16\xdc\x98\x0e\x6a\x18\x94\x6f\x9c\xb1\xd6\x0f\xda\xcc\x9c\x19\x71\xcd\xd0\xc5\xad\x3b\x7b\x7f\x51\x1f\x76\x4a\x26\xc4\x95\xa5\x9a\xcd\xd5\x29\xaa\xc1\x82\x69\xe7\x22\x29\x94\xce\xf2\x70\x15\x4c\x87\xbb\x26\x16\xa6\xb3\xf9\xd9\xbb\xaa\xcb\xca\x04\xba\x36\xbf\xc3\x5e\x56\x7a\x74\x9f\x3f\x06\x74\xe0\xb5\xd7\xa6\x70\x0a\x54\x69\x2e\x2b\x69\xd0\xd8\xe5\x4e\xb3\xde\x2e\xb8\xd3\x56\x15\x66\xee\xdd\x8e\x66\x5c\x86\x99\x40\xaf\x5e\xcf\x75\x75\x1a\x35\x95\x13\xd4\x35\x65\xd5\xd2\xb3\xa4\xdd\x3f\xdc\x2f\x3e\x63\x39\xcb\x5c\x85\xca\x66\xf4\x44\xd4\x6f\x69\x48\xd4\x26\x43\xc2\xe1\xb7\xbc\xad\x62\x74\xcf\xa7\x1d\x41\xf0\x13\x33\xa1\xe0\xcf\x21\x8f\xf6\xae\xc0\x77\x2b\xb9\xbf\x95\x32\x9d\x63\x7e\xd4\x21\x2a\xa8\x1f\x91\xe7\x41\x2f\x18\x30\x76\xed\x0c\xf0\x14\x03\x05\x4c\x49\x6c\x8f\x5d\xd2\xd5\xae\xfb\x93\x48\x99\x2a\xaf\x1c\x04\x99\xcd\x2d\x3b\x41\x33\x66\xdd\xf4\xcd\xae\x61\x52\x39\x9b\x1f\x94\x40\x0c\xa2\x59\x51\xab\x2f\x89\xcd\x27\x88\xf1\xc3\x45\x96\x8a\x8b\xab\xb3\xdb\xe7\xcf\xe3\x7a\x98\xe5\x07\x91\x80\x3a\xbb\x28\xd7\xe0\x02\xa5\x8f\x82\x1c\x1a\x17\xce\xdb\x94\x2a\x46\x54\x1e\x6d\xdc\x0a\xed\x72\x22\x29\x34\x17\xe8\x4d\xb5\xb4\x49\x8b\x2a\xc9\x56\x43\xbd\x3e\x26\xe3\x9f\xe2\x31\x8b\x68\x76\x16\x45\x2c\x61\x18\x99\x36\x94\xab\xbe\x69\xfd\xb4\x10\xc3\xd9\x83\x21\x37\x5b\x40\xf4\x6e\xa8\x16\x72\x50\xf4\xf1\xc9\x12\x37\x78\x96\x0d\xc8\x0b\x57\x5d\xcd\x87\xd0\x57\x8e\x88\x13\x2a\xa4\xd8\x6f\x65\xee\xb2\xff\x3a\xa7\xba\xa0\x01\x01\xb9\x75\xbf\x10\x89\xe2\x7f\x67\x36\x07\x62\xb5\x32\xee\x94\xbc\x95\x6b\x45\xee\x69\x26\xb8\x58\x1b\xa6\x41\xe7\x6d\x75\xa4\x97\x10\x26\x67\xf3\xdd\x3b\x13\xa0\x17\xc1\x08\x79\x69\x28\x64\x07\xe6\x2b\x1e\x51\xa1\xcb\x6c\x3a\xbb\x3c\x11\x2c\xa3\x98\xc0\x26\xd4\xf9\x86\x2a\x64\xb1\x63\xae\x22\xb9\x63\x59\xe9\x3e\xe4\xfc\x07\xe5\xca\x2d\xbe\xac\x01\xdd\x73\x22\x1f\x25\x65\x54\xf7\x6f\x26\xb8\xe6\x34\x69\xcb\x11\xd8\xb5\x89\xfe\xa7\xd5\x8c\xfc\xae\xe8\x41\x6c\x5e\x85\xa5\x8d\x95\x2c\xa8\xf8\x96\xde\x31\xb4\xf8\x99\x8e\x6b\xae\x70\x07\xb3\x18\xf5\xe5\x0d\xe4\xe9\xea\x4b\xb3\x5c\x5d\x65\x59\x0d\x86\xbe\x5d\x61\x8f\x6b\x0a\xf0\xa8\xdf\xbc\xf9\xea\x51\x8b\xc2\x30\x1f\x41\x93\x8b\x81\xf9\x9c\x5b\x76\x7f\xf7\x90\xd0\x0e\x14\xd4\xff\xed\x90\x28\x4c\xa8\xd7\xf9\xcb\x0b\xc3\x84\xf9\x3f\x26\x7d\x02\x7c\xf8\xc3\xd5\xec\xd0\xef\x0a\x6d\xc7\x50\x2c\xf9\x63\xed\x83\x66\x26\xf8\xa2\x85\x47\xc7\x3f\x4b\x9d\xb1\x62\xee\x7f\x90\x4a\x5f\x8a\x28\xdb\xa7\x87\x50\xaf\x1f\x3b\x3f\xef\x58\x57\x10\x7b\x4a\xa5\x8d\xac\x68\x83\xdd\x5d\x67\x3e\x08\x9e\x6e\xbd\x45\x88\xc7\x15\xdd\xf6\x4b\x29\x3f\x06\x3f\xab\xb1\xc5\x60\xfc\xb3\x66\xf7\x16\xa7\x65\xd3\xcc\xdb\x5b\xd7\x99\xbf\xae\xfb\xf5\xd4\x9a\xbf\x0e\xc4\x1e\xc5\xd2\xde\x72\xa5\x99\xa1\x84\x83\xf4\xc8\x3f\x06\x3f\xab\xd5\x5e\x71\xaf\x50\xa9\xdc\x66\x5b\x5e\xee\xcb\xc5\x55\x42\xf6\x5e\x7f\xf3\xc5\xe1\xf7\xb8\x58\xcf\x10\x5c\xf4\xa3\xd7\xb8\x3a\x77\xf3\x83\x45\x47\x21\xc8\x87\xd6\x71\xc3\x58\x27\x52\xfa\x94\xc5\x5c\x23\x87\x7a\x9d\x27\x6c\x9e\x71\x69\xf8\x8a\xe1\x8b\x0b\x7c\x5c\x5d\x6c\xea\x7e\x6d\x4d\x45\x57\x9e\xcf\x1a\x48\x1c\xeb\x9c\xe5\x55\x77\xce\x70\x25\x8d\xce\xc5\x3e\xc4\x83\x8b\x5f\x05\x92\x13\xfd\xe9\x62\x5e\x65\x65\xcd\x5c\x55\xce\xb5\x2d\x6d\x09\xa9\x93\xc3\x07\xb0\x48\x45\x1b\x33\xb1\x6f\xba\xdc\x3e\x8a\x91\x7a\x88\xd3\x43\x35\x47\x7f\xba\x98\x3f\x6d\x3c\x3f\xe4\x69\x7a\x54\x28\xbf\x55\x0b\x05\xc9\x6e\xb3\x88\xa7\xcc\x6c\xe5\x5a\x4c\xeb\x0e\x3a\x85\xb0\x06\xe9\x4f\x17\xc1\x20\x9f\x66\xc0\xff\xe1\xfa\xa3\xb0\xa4\xdc\xfc\x15\x98\xf7\xd8\xf7\x05\x51\x5a\x66\x74\xcd\xdc\x4f\xa8\x42\x84\xdd\x72\x19\x9c\x0d\xd6\x76\xca\x85\x3b\x2e\xe2\x53\xb2\x38\x72\xa9\xf0\xd3\x24\xcf\x68\x52\xfe\x52\x24\xa2\x57\xa7\xe4\x2f\x7f\x35\xbf\x80\x7e\x36\xfe\x01\x39\x79\xfb\xeb\x42\x4c\x26\x93\x85\xa0\x29\xb7\xbf\x9f\x12\x9a\x72\xf6\xa0\x99\xc0\x4c\x3d\xb6\x8e\xff\xee\xf5\x42\xe0\x88\xe7\xb9\xd2\x72\x7b\xcd\xd0\xed\xea\x82\xad\xb8\xe0\x98\xcb\xa4\x52\x78\xdf\x50\x93\x53\xeb\x75\x68\x1d\x6a\xc0\x80\xcf\x99\x9a\x46\x59\x3c\x6d\x48\x41\x0b\x51\x54\xe2\x5f\x67\x32\x4f\x4f\x49\x4b\x33\xec\xbb\x0a\x86\xef\x61\x9c\x2b\x1c\x07\xfd\x15\xf0\xb5\x41\xfd\x7f\x6c\x6b\xf2\xb6\x48\x5d\xe4\x80\x17\x9c\xaf\xdd\x1d\x2e\xc0\xd7\x2f\xd4\x08\x06\x53\x91\x34\x7b\x7c\x8e\xe2\x9e\xf9\x65\xe7\x40\x6d\xfe\x98\x58\x90\x18\x48\x42\x7f\xd1\x86\x6d\x69\x71\x19\x65\xca\xc4\xd9\x7c\xf6\xc3\x97\x37\xd5\xdf\x5b\xd5\x4a\xde\x96\x55\x0f\x60\xad\xec\xfd\x7c\x66\x9b\x55\x12\xf4\xdb\xa9\xb1\xd8\xce\x03\x95\x61\x60\x72\x4a\x33\xa6\xcc\xf5\x0b\x25\xa8\x91\x2b\x42\x85\x3d\xc6\xe6\x66\x19\xf9\xb3\x70\x38\x8c\xa4\xd8\xb1\x0c\x53\xa2\xad\x05\xff\x7b\xd1\x79\xe1\x2b\x9c\x50\xcd\x9a\xde\x33\x2e\x71\x95\x9f\x32\x67\x4b\xf7\x56\x37\x43\x72\xe1\x75\x88\xb1\xfa\x53\xf2\x4e\x82\xb7\xcf\x4a\x9e\x92\x8d\xd6\xa9\x3a\x3d\x39\x59\x73\xed\x4e\xab\xf5\x42\xd1\xfb\x13\x20\x2f\x7c\x99\x6b\x99\xa9\x93\x98\xed\x58\x72\xa2\xf8\x7a\x42\xb3\x68\xc3\x35\x8b\x74\x9e\xb1\x13\x9a\xf2\x09\xcc\x5d\x60\xa5\xf0\x6d\xfc\x2c\xb3\xc7\x5b\x3d\x0f\x5d\xee\xe6\xb5\x87\x53\xd8\xb5\x0d\xe6\x0c\xda\x32\x5f\xf0\xb1\x75\x05\x2a\xa0\xed\x32\xd7\x5c\x5f\xde\xdc\x12\x37\x7a\x30\x2e\x1d\x81\x5f\x7e\xa9\xca\x7d\x30\x40\xe3\x62\xc5\x6c\x24\x62\x51\xca\xb3\x2c\x0c\x02\xb5\x53\x39\x6b\x26\x61\x52\xf9\x72\x0b\x3a\x6a\xac\x2b\x8a\x4e\x5c\xe7\x58\x10\x79\xc9\x6c\x2d\xc0\x18\xfc\xba\xce\xe9\x96\x25\xe7\x54\xb1\xcf\xbe\x0b\x06\xda\x6a\x62\x60\x3b\x74\x1f\x2a\x28\xa8\xde\xbc\xa9\xbd\x2c\x30\x4e\xf9\x74\x28\x71\x69\x9a\x26\xfb\xf7\xe2\x3b\x2c\x1a\xdb\x47\x46\xcf\x2a\xad\x51\xe9\xec\xea\x29\x42\x4f\xa8\x7c\x2e\xcb\xa8\x70\x57\xd3\x23\x44\x99\x90\x8f\x80\x9e\x5c\x34\xde\x81\x8c\x40\x2c\xaf\xa4\xbe\x35\xcc\x47\xdf\xcc\x2f\x8a\x96\xde\xac\x9d\x08\xe4\x74\xa2\xe0\xee\x86\xa6\xd0\x62\x1d\x2d\x5a\x4e\x6f\x69\x0e\x55\xac\x65\x59\x90\xca\x9a\x92\x08\xe8\x0b\x9e\x2b\xbf\x2a\x32\xf0\x4a\x5c\xac\x83\xfa\x53\xd0\x98\x52\x65\x2d\x05\x91\xab\x4a\x81\x65\x7b\x6f\x33\x97\x9f\x2e\x04\x61\x42\xc3\x79\x52\x31\x22\x2d\x76\x9a\x1f\x2a\xf6\xde\xd4\x82\x13\xc3\xac\xbb\x16\x26\x56\x43\xdb\xaa\xb7\xab\x8c\x0f\xf9\x04\x18\x24\x38\xb6\x36\xf1\x25\x23\x96\x39\x3c\x74\x6f\xb1\x24\x4c\x7f\xd1\x12\x86\x6e\xe5\x58\x73\x13\x6a\x53\x60\x2d\x19\xcb\x6a\x92\x4b\x1a\x6d\x30\x40\xc2\xe6\xa2\x08\xb3\x74\xee\x6b\x5c\xb7\xf5\x7c\x8c\x32\xae\x59\xc6\x29\xe6\xc5\xf3\x22\x45\x20\x71\xa0\x05\x9b\x3d\xfa\x07\x55\x9e\xa8\xac\x61\x71\x74\x46\x8c\xfc\x60\x04\x6c\x9a\x2a\x70\x8c\x57\xe5\x8c\x42\x53\x09\x72\x8f\xa4\x28\xbb\x84\x75\xfb\x30\x15\x85\xcc\x26\x4b\xaa\x00\x3c\x56\x67\x3a\xb7\xfb\x25\xfc\xdf\xb0\x38\x58\x10\x36\xc0\x43\xb2\x8c\x89\xc8\x9d\xbc\x89\x97\x52\x57\xe6\x1a\x83\xbb\x5d\xb4\xb0\x2d\x1e\x27\x33\x28\x28\xed\x8a\x22\xb7\x4c\x58\xc4\x45\xed\x1f\x0f\xf0\x10\x6d\xb8\x58\x08\xdc\xbc\x54\x62\x94\x4c\x1d\x12\x2d\x26\x58\xb3\x99\x82\xad\x61\x72\x96\x25\x38\xb6\x81\x82\x2e\x70\x64\xb1\x58\x1c\x5d\x49\x6d\xfe\x33\x25\x67\x49\x62\x83\x7e\xfc\xde\xc3\x3d\xdb\xb2\x94\xb6\xfe\x5e\x91\x94\x9a\x6a\xae\x20\xe9\x30\x46\xb5\xdb\xa5\x68\x89\x7d\x4e\xc9\x99\xcd\x31\xd9\x02\x5d\x38\x9c\x54\xb8\x03\x6a\xe3\x63\xec\xa2\x0d\x88\x60\x39\xe6\x0f\x4f\x65\x4d\xb1\xf3\x76\xb8\x02\xf4\xc3\x53\x74\x38\xa4\x9c\x62\x4b\xf1\xa9\xbe\x7c\xda\xb4\x2d\xf7\x0a\x3e\xfd\x29\xb5\x63\xa6\xb4\xcd\x13\xde\xda\x4b\x15\x91\x97\x1f\x14\x17\x3a\xb0\x7d\xd6\x50\x66\x2e\x66\x5b\xb7\x20\x78\x7b\xe3\x13\x43\xa5\x75\xd8\x19\x77\x10\x30\x08\xb1\x6c\x7c\x4a\x23\x76\x63\x2f\x5f\x47\xdb\x06\x1a\xb8\xaa\x7f\x6c\xc3\x31\x64\x6a\x0d\xc8\x2b\xce\x92\xb8\x35\x4a\xac\x7c\x0a\xc0\xd0\x02\x09\x78\xe1\x3c\x36\x64\xba\x52\xb5\x4e\x66\x7c\x6d\xe0\xd0\x86\x01\xdc\x03\xfc\xd7\x0b\x73\x84\x58\xb6\xc5\x0f\x08\xd5\x2f\x3d\x1b\xbe\x57\xb9\x15\xc7\x0e\x13\x8f\x00\xc8\xca\x6a\x58\x96\x10\xdb\x80\x07\x38\xc8\x0d\xd8\x74\x77\x8a\x58\x12\x05\xf1\x02\x04\x86\x42\xb9\xa2\xaa\x2e\x53\x09\xdd\x32\x1b\xf5\xa5\x37\x61\xa1\xbc\x7c\x20\xc2\x3b\xe4\xb6\xe0\x8c\xb2\x1e\x03\xb1\xf4\x31\x70\x0f\x50\xdd\xb2\x1d\xbc\x7c\x06\x04\xf1\xe0\x77\x32\x23\x15\x31\xef\xb8\x95\x06\xb8\x07\x73\x86\x07\x8e\xd4\xd6\x46\xa8\x3b\x37\x54\xff\xb0\x25\x7c\xcb\x7b\x37\x0c\x0c\x0a\x09\x9a\x98\x5b\x61\xc2\x3d\xf8\x16\x3b\xdc\xb3\x67\x78\x91\x2b\xeb\x6c\x5d\xfe\x73\x94\x58\x5f\xbc\x0c\x26\xbf\x2d\x9f\x9f\x07\x00\x15\x41\xfc\xc6\xd0\xed\x8c\xa0\xfe\x1d\xe1\x01\xcb\xe8\xee\xd4\xac\x31\x20\xcf\x1f\x43\xf2\x9f\xee\xbd\xec\x99\xad\xbf\x44\x2f\x3f\x41\x28\xe5\x6d\x94\x49\x05\x3c\xdf\xd0\x2b\xdb\x42\x38\x8a\xb1\x7b\x09\x00\xc1\x30\xa1\x2e\x9c\x5a\x0f\xbc\x62\xb6\xd6\x4b\x10\x31\x1a\x41\x53\x67\x3c\xd2\xad\x85\xe1\xcb\xc7\x91\xc0\x22\x73\xc3\x1e\xdd\xe3\x83\x78\xb1\x40\x7d\x3d\xd0\xae\xe2\x45\x3f\x57\x3d\x84\xef\x89\x22\xcb\x1a\x66\x9d\x50\xf9\xd2\x2c\xbf\x95\xea\x90\x4e\x3e\xd2\x1b\x77\x10\xa4\x3b\x33\x7f\x94\x8f\x90\xfa\xea\xb0\x3d\xc1\x0f\x8a\x98\xab\x2a\xfb\xe5\x56\x7c\xd5\x52\x2f\xb2\x7c\x60\x1f\x7f\x71\xb0\x68\x2b\x4c\x54\x3e\x75\x60\x14\x05\x89\x3a\xa0\x31\x6f\xf3\x45\x2d\x1f\x04\x07\xb9\x81\x1c\xfc\x70\x4a\xa1\x76\xaa\xab\xe6\xa1\xd0\xb1\xd8\x96\xbc\x81\x94\x5c\xfb\xf6\x82\x47\xe5\x53\x2b\x94\xa1\xab\x39\x01\x8b\xe2\x2b\xc8\x51\x59\x44\x6e\x04\x94\x5e\xac\x08\x34\xcc\x7a\x0a\xdd\x9e\xcf\x5d\x79\x8b\x0f\x17\xf3\x96\x32\x18\xee\x19\xb2\xab\xed\x49\x76\xca\x67\x40\xba\x9d\x66\xe3\xfe\x83\xd2\x9f\x82\xa7\x7c\x0e\x4f\xc6\x53\x3e\x43\x0f\xe4\xe1\xcc\xe5\x55\xf9\x51\xcf\xb1\x1c\xc6\x5f\xd9\x93\x09\x76\xb9\xa2\x63\xc4\xc2\x68\x1b\x5a\xea\x84\x69\x5e\xa4\xdd\xc1\xb1\xba\xfb\x2c\xb8\xa5\xce\xa3\x32\x6c\xcf\xd2\xc3\xae\xec\xe2\xa8\x2c\x21\xd6\x43\x56\xfa\x89\xed\x00\xb2\x02\x36\x21\x17\xe5\xfd\xc2\x13\x42\x02\x91\xd0\xf5\x65\x79\xd9\x8b\x98\x22\x36\xc7\xa3\x9f\x0c\xeb\xc4\x29\x94\x6f\x8b\xdc\x6d\xdd\xbd\x56\x0a\xa7\xd9\xab\x03\x96\x27\x84\xb2\x72\x10\xb0\xda\x59\x3b\x4c\x0f\xaf\xbc\x72\x19\xc0\x0c\x03\x37\x14\x83\xf5\x62\x00\x1b\x52\x7d\x08\x06\xeb\x59\x7b\x89\xde\x6a\x18\x6c\x81\x38\x6c\x61\xb1\xd8\x02\xf1\xd8\xc2\x60\xb2\x4e\x9e\x67\xc4\x65\xf0\x0c\xc2\x65\xea\x11\x52\x72\xbf\x70\xdc\xa9\xe9\x2b\x9f\xa0\x70\x4c\x5e\x28\xc6\x9c\x8a\x0c\x50\x19\x66\xb6\x56\x7b\xa1\xe9\x43\x28\x97\x84\xff\x2c\x16\x9d\xb2\xb5\xe5\x21\xdb\x64\xe7\xee\xbe\x9d\x66\xcc\x13\xad\x65\xd6\x14\x99\xcd\x75\xbb\x92\x1a\xad\xd1\xa7\x2d\xa9\xbc\x3d\x20\x58\xf7\x74\x67\xce\xea\xa1\x0a\x08\x1e\x8f\x9a\x74\xf7\xbe\x64\x89\xbc\x7f\x79\x5c\x9d\xb2\x07\x6c\x84\xaa\x2b\x31\xef\xca\xab\xf4\x08\x1f\xa0\x0c\x03\x35\xe7\xed\x86\x11\x7d\x2f\xe1\xac\x81\xef\xbb\x7b\x87\x08\xc2\x10\xa1\x7d\x99\x4d\xbc\x67\xef\xde\x0b\xb7\x7a\x5b\x03\xdb\x53\xbf\x32\x4f\x4a\xb2\x05\x3a\x40\xb5\x60\xdb\xf7\xd3\x84\xfb\x8d\x4c\xec\x26\x9d\xc2\x16\x2d\x16\x25\x41\xfe\x3d\x60\x97\xdf\x6c\xa8\x7a\xb1\xdd\x7f\x4c\xe8\x92\x25\x2f\x01\xef\x58\x24\xdf\x77\x9d\x3d\x8f\x6e\xb3\x6e\x38\x64\x38\x3f\x74\x28\x98\x58\x87\x94\x84\xc5\x66\xdc\x81\xe7\xcd\xf7\x10\x2f\xca\x33\xc3\xe4\x60\xba\x6e\xa6\xa8\x44\xb5\x4b\x1a\x7c\x30\x70\xc9\xad\x2b\x6e\x2e\xca\xcc\xa2\x2d\xbf\x5f\xf9\x74\xaf\xb7\x58\x52\xdf\x72\xfa\x2e\xb9\x80\x93\xc7\x56\x2b\x16\xd9\xf8\x5e\xab\x4a\x48\x00\xb5\xda\x50\xbd\x4a\x9d\xfc\x01\x93\x17\x52\x4c\x5c\x4c\x06\x5a\x6a\x31\xe6\xc6\xea\x45\x56\x32\xdb\x32\x5f\x49\x01\x8e\xd7\xed\x55\xf8\xcb\x07\x0e\x44\x13\x34\x65\xad\xa7\xa7\x10\xe2\x6d\x94\xc2\x59\x14\xc9\x5c\x1c\xc2\x7b\xdd\x54\x3f\xfc\xd9\x78\xb0\x1a\x5a\xee\xee\x33\xa0\xf2\xa4\x24\x95\x71\x91\x22\x0c\x18\xba\x02\x45\x5b\x60\xf4\xa0\x5e\x5c\x71\xe7\x69\x1b\xa4\x74\x26\xa4\xea\x3f\xd2\xfe\x54\x65\x02\xc8\x85\xf9\xc9\xe0\x26\x8f\x01\x79\x7f\x97\x6d\x9a\xe6\x00\xd8\x07\x41\x9b\x94\x10\x37\xd8\x58\x59\xe7\x50\x5e\xa8\x2a\x0d\x03\xdc\x73\xf3\x87\x31\x77\xe4\x00\x15\x04\x19\xca\x29\x91\xa1\xdc\x12\x69\xde\xaf\x5e\x7e\xe9\xdf\x77\xa7\x2b\xb2\x52\xa9\x75\x43\xbc\xef\xe0\x39\x25\xb3\x1e\xc9\xc3\x3c\xa5\x19\x02\xac\x0b\x37\xbe\x55\xa1\x94\x45\xb4\x2d\xab\xd1\x6a\x8f\xaf\x3e\x67\x57\x17\xcf\x5b\xfc\xc8\xfd\xe7\x30\x8d\x56\x5b\x2d\x57\xf7\xb8\xb4\x34\x87\x71\xdd\xf8\xcd\x27\x73\xdd\xf8\x25\x1a\x88\x0b\x7c\xe9\xd5\x27\x73\x03\x41\x46\xef\xb2\x64\xf4\x00\xcb\x4c\x27\xd3\x5d\x3f\x5e\x43\xb9\xee\x80\x39\xcb\xc1\xef\x85\x7a\x59\x67\xbf\x6d\x6d\x34\xd1\x65\x75\x24\xa0\x2b\x3b\xc1\x72\xd0\x34\xda\x14\x33\x79\xae\x08\xc6\xe1\x80\xc4\xec\xe0\x1d\x15\x0e\x4b\x05\x30\xfa\x60\x51\xb5\x6c\x99\x9b\xe3\x0e\xeb\xb1\xcf\xba\x1f\x37\x2d\x0a\x3d\x60\xbe\x62\x86\xfd\x75\xca\x5e\x99\xd5\x69\x37\x4e\x7d\x6e\x23\xcb\xe2\x42\x13\xda\x63\xad\x34\xe7\xc9\x6c\xa0\xbf\x46\xd4\x1b\x15\x50\x90\xc2\x39\x12\x58\xc7\x8e\x6e\x96\xe5\x20\xb2\x79\x38\xd5\x0c\x45\x19\x80\x49\xbe\x3c\xc7\xfd\x57\xdf\xae\xcd\xb3\xc1\x3f\x11\x12\xf0\xec\x33\x8f\x60\x08\xcc\x67\x81\xf5\xe1\xef\xed\x69\x5a\xab\x0f\x62\x59\xbb\x42\xb8\xc9\x09\x5b\x69\xb4\x63\x95\x2e\x4c\x78\x7b\x06\x28\x69\x88\x7f\x11\x0b\x8f\xa3\xe7\xaa\x9c\xd9\xcf\x8a\x41\xfb\xdb\x6c\xb4\x4e\x87\xf9\x33\xfc\xe1\xf6\x76\x5e\xda\xeb\x5b\x9d\x18\xcc\x29\x31\x4d\xdb\xa7\xee\xbc\x1c\x3f\xcd\x7f\x61\xcb\xf4\x46\xc6\x07\x50\x86\x77\xf8\xc1\xd3\x72\xed\xb8\x64\x44\xea\xb8\x6e\xcf\x89\xd3\xf4\x89\x75\x69\xcc\x79\xec\xef\x14\x22\x65\x62\xec\xc5\xcd\xf6\x05\x9b\xae\xa7\xe4\xfb\xcb\xdb\x63\x32\xff\x70\x7b\x4c\x98\x8e\xa6\x2f\xc9\x3b\x5b\x29\xb6\x47\x0f\x63\xfb\x30\x74\xff\xfd\xf5\x73\x23\x86\xad\xc1\x8f\xf0\x97\x65\xb7\x4a\xa9\xde\x1c\xb0\x8f\xcf\xe7\xa6\xfd\xe7\xd8\xc6\xbe\x1d\xec\xc7\x28\xfe\x0e\xc2\x34\xa7\xc5\x56\xe1\x32\xdd\x5e\x0c\xdd\x0c\x42\xd8\x74\x7d\x4a\x26\x84\x3d\xd0\x48\x9f\x92\x93\x95\x94\x50\x25\x1f\x72\x07\x92\x93\x25\xcd\xc8\xd5\xfb\xdb\xcb\x53\x74\x40\x63\x42\x67\x7b\xb2\xed\x63\xcf\xdf\x5f\xbd\xfd\xb3\xc5\x9c\x7b\xc2\x38\x16\xc7\x21\x8b\x23\x18\x04\xb5\xc8\xe6\x4f\x1c\xc5\xe9\x3a\x5a\xeb\x2c\x97\xcf\x8e\x26\x3c\xa6\x85\xb2\x0f\x4b\xfb\x18\xf6\x89\xeb\x50\x2e\x8b\xf2\x19\x72\xe6\xaa\x87\xc0\x80\x18\xaa\x08\x54\xf2\xd7\x02\xe0\x5d\x2d\x81\x61\xb4\x6a\xa6\xc1\x73\x7b\xc9\x1c\x20\xac\x1e\x71\x25\xb3\xed\xa9\x03\xfb\x22\x7f\xf5\xea\xcb\xc8\x74\x0c\xff\x62\xa7\x2e\xf3\xd0\x10\xb5\x17\x1e\x35\x98\x15\x74\x97\x40\x81\x7c\xb7\x85\x65\xd7\x13\x0b\xef\x4f\x1a\x01\xfb\xe8\x71\x35\x19\xcc\x74\x10\x0b\x80\xa7\x15\x23\xd3\xb6\xcc\x97\x8f\xef\x74\x98\x38\x31\x08\x21\xf5\x77\xc5\xa3\xed\x40\x9a\x39\x3b\x7f\x37\x1f\xea\x01\x02\xc8\xa8\x7d\xee\x3e\x96\xa2\xee\xd4\x47\x30\x5b\x4c\x74\x20\x63\xc0\x51\x30\x64\x51\x33\xa6\xb5\x80\x3e\x3e\x7e\xb9\xac\x0a\x4f\x6b\xeb\x6d\x16\xf6\x29\x9c\x34\xf7\xf2\x6b\x98\x71\xba\x58\x5b\xb0\xa7\x9b\x46\xbb\x37\x1d\x7a\xca\x41\x27\xd1\x2c\xed\x00\x3a\x0f\x9c\x89\x14\x3e\x94\x00\x28\x11\xe4\x70\x3d\x44\x58\x83\x6c\x88\x06\xc0\x18\x2f\x02\x2e\xaa\x90\xa5\xcc\x87\x55\x99\xa0\x8c\x12\xcd\xa2\x8d\xe0\x11\xed\xf1\x4a\x02\xb5\x28\xaa\xff\xf9\x36\x95\xaa\x74\xa4\xc3\x82\x51\xcf\x55\x99\x82\x7a\xc5\x33\x76\x4f\x93\x70\x32\xdd\xf2\x41\x6c\x61\x95\xb2\x98\xc8\x5a\x12\x26\x56\x12\x23\x59\xac\x8b\x5e\xff\xd5\xe8\xb5\xe1\x41\xb3\x4f\xdf\x0c\xd3\xcd\x94\xf8\xc9\x33\xfa\x4c\x60\x45\x65\x82\x6f\xd0\xcb\x1b\x56\x08\x7d\x5d\x46\x1b\x49\xae\x91\x68\x93\x17\x7c\xca\xa6\x24\xe5\x62\xad\xba\x6d\x60\x83\xd6\x3b\x00\x19\xa4\xe1\x40\xb0\x16\x80\xcc\xe6\x2e\x20\xec\x93\x1d\xc3\x2a\xca\x2d\xe4\xc7\x7d\x28\xcf\x9d\x65\xac\x15\x0a\x03\x20\xd0\x12\xd2\xd3\xb2\x38\x57\x66\xc0\x73\xeb\x2d\x73\x4a\x79\x59\xb6\x8a\x7a\x6d\xdd\x8b\xfb\x24\xa4\x01\xca\x08\xcc\x37\xd8\x79\x5c\xcb\x19\xce\x87\x52\xc5\xa1\x64\xa9\x1a\x91\x54\xce\xc7\x86\xa2\xa1\xd5\xee\x8e\xd9\x80\x6b\x92\x52\x9e\xb5\x57\xd6\x28\x1f\x23\xb2\xda\x2a\x8b\x3e\x4c\xe9\x52\xe6\x7a\x00\x21\x79\x2a\xc9\x51\x48\x6d\x6e\xdf\xb0\x93\x71\x85\x8d\x7b\x3c\x7a\xa0\x49\xb7\x67\xdd\x48\x30\x46\x82\xf1\xeb\x26\x18\x42\x6a\xc7\x56\xb5\x82\xa5\xdb\xeb\x66\xa0\xbf\xcd\x30\x4f\x9b\x86\x43\xa8\x63\xf9\x7a\x7c\x42\x6d\xb3\x76\x80\xf5\xdc\xe3\x01\xae\x3d\x8f\x73\xea\x49\x7f\xa9\xc0\x5d\x1c\xf9\xb0\x7d\x42\xda\xdf\x30\x6c\x81\x86\xd7\xe7\x04\x1c\x4c\xa6\x70\xea\x79\xd6\xa5\x99\xb7\xde\xb9\x76\x9f\x2f\x21\xd4\xe8\x1a\x22\xe5\x5c\xd4\x17\xaa\xcd\x5f\x2c\x59\x44\x73\x65\x7d\xe2\x7a\x4c\x09\xc5\x14\x23\x96\x41\x1f\x85\x5f\xdd\x4b\x54\xc5\xbb\x3c\xb5\x15\x2f\xc1\x3e\x12\x8b\xee\x83\xa7\xbe\x07\xdc\xb1\xef\xff\x86\x7f\x80\xa4\x52\xf9\x6b\xf7\xa6\xfc\xfb\xe6\xfc\x16\xdf\xb6\x0f\x63\x7b\x7c\xcb\x35\x73\x4e\x76\x50\x26\x08\x0e\x88\x33\xca\x62\x29\x95\xd7\x93\x2f\xbe\xfe\xba\x43\xe5\xff\xf9\x8e\xbd\x6a\x4b\x99\x8a\x4f\xd5\xd0\x5a\xa4\x4c\x1d\x10\x95\xd6\x52\x8d\xca\x1f\x75\x0c\x48\x1b\x03\xd2\x06\x98\x3d\xc7\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xda\x56\x3c\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\xd6\xb6\x92\x11\x97\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\xf8\x8c\x01\x69\x63\x40\x5a\xfd\x19\x03\xd2\xc6\x80\xb4\xe2\x19\x03\xd2\xc6\x80\xb4\x31\x20\x2d\xd8\xe9\x18\x90\xe6\xc1\x62\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\xea\xf3\x73\x06\xa4\x75\x94\xcc\x24\x64\x62\xb3\xf8\x86\xde\x75\x77\xdc\xc1\x27\xd8\xbb\xf1\x88\xf4\xdd\xd5\x5b\x35\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\xe1\xe9\x8d\xf9\xbb\x47\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\xaa\x7c\x46\x77\xa9\xf2\x19\xdd\xa5\x46\x77\xa9\x5f\x94\x8b\xc1\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\x54\xb0\xf1\xaf\x0c\x97\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x15\x78\x46\x77\xa9\xd1\x5d\xaa\x78\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x0a\x76\x3a\xba\x4b\x79\xb0\x18\xdd\xa5\x46\x77\xa9\xd1\x5d\xaa\xfa\x8c\xf9\xbb\xc7\xfc\xdd\x63\xfe\xee\xca\x33\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\x07\x8d\x30\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\xc7\x74\xac\x63\x3a\xd6\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\xdd\x3e\xff\x31\x7f\xf7\x48\x30\x46\x82\x31\xe6\xef\x1e\xf3\x77\x57\x9e\x31\x7f\xf7\x98\xbf\xbb\xf6\x8c\xf9\xbb\xdb\x05\xc8\x31\x7f\xf7\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\xfe\x33\x06\xa4\x8d\x01\x69\xbf\xa8\x20\x8e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x60\xe3\x5f\x19\x2e\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x2d\xf0\x8c\x01\x69\x63\x40\x5a\xf1\x8c\x01\x69\x63\x40\xda\x18\x90\x16\xec\x74\x0c\x48\xf3\x60\x31\x06\xa4\x8d\x01\x69\x63\x40\x5a\xf5\xf9\xf7\xce\xdf\x3d\xc4\xed\x20\xbc\xd5\xdd\xdc\xc1\x0a\xbd\x44\x4a\x89\x3d\x34\xeb\x5c\xa1\x2c\x82\xf8\xd1\x92\x6d\x4c\x82\x2d\x45\xc5\x56\xd8\xb2\xa4\xf0\xae\x40\xa2\xf1\xbe\x75\xbc\x37\x8d\x3a\x68\x52\xf5\x20\x4b\x6c\x1d\x5c\x05\xba\x12\x62\x2e\x68\x50\xfe\x98\x4e\xc1\x5a\x1a\x4f\x51\x1f\x54\x68\xb3\x37\x7c\x6d\x84\xeb\xc5\x11\xf4\xb7\x38\x02\x16\xc0\xb6\x0d\x75\x4d\x57\x46\x28\xd4\xc0\x74\x42\x07\x89\xbc\x67\x19\xce\x06\x5d\x33\xbd\xc9\x29\x22\xb7\x5c\x6b\x43\x4b\xb8\x8b\xea\x09\x75\x1a\x49\xa1\x38\xa6\x62\x47\xbd\xe5\xe2\x88\x8b\x15\x17\x5c\xb3\xc5\x11\x99\x10\x70\x08\xf4\x96\xe3\x28\x95\x9d\x27\x49\xa8\xd2\x53\x52\xac\x2c\x08\x12\x33\x57\x1e\x33\xa1\x79\x44\x13\x3b\xc1\x7a\x3f\x5c\x10\x9a\xa4\x1b\x2a\xf2\x2d\xcb\xbc\x76\x70\x00\x42\xbd\x5a\xfa\x64\x55\x6c\xe8\xf5\x12\x94\xb9\xf1\x70\x88\x7c\xbb\x6c\x6a\x3f\xd3\x8c\x5d\x5c\x9d\xdd\xf6\x1d\x8f\x39\x36\x23\x5c\xc4\x3c\x42\xcd\x4e\x11\x81\xb2\x71\xe9\xd5\xab\x58\x85\x2c\xd9\x4a\x86\x59\x37\x2a\xf6\xc4\x74\xd7\x3a\xd7\xa5\x94\x09\x6b\x3a\x66\x74\xf0\xed\x35\x2e\xeb\xd6\xd7\x93\xe1\xa9\xf6\xb4\x65\xee\xa2\xa5\x3c\xba\xc3\xff\x93\x79\x10\x01\x99\xb5\xd5\xb4\x1e\xde\x49\xb0\xf1\x32\xde\x1e\x6a\xe9\x98\x8e\x76\xdd\x4d\x39\x0f\xc3\xbb\x25\x89\xbc\x47\xa8\xa1\x0a\xaf\x50\x6a\x21\x67\xfd\x7b\xd4\xef\xe0\xc5\xfe\x98\x70\xcd\x32\x0a\xaa\x95\x50\xcf\x8b\x05\x99\x60\xbc\x98\x39\xd5\xdb\x94\x66\x5c\x49\x71\x4c\x20\x68\xd4\xe9\x65\x5c\x97\x2b\x29\xc9\x92\x66\xa0\x2c\x2a\x86\xfb\xcd\x81\xc3\x95\xe3\x19\xd6\x8a\xfd\x2d\xa7\xc9\xef\xd0\xc5\xd9\x89\x0a\x7c\x65\x65\x04\xae\xa0\x8d\x33\x7d\x14\x43\x86\x91\xc8\x4f\x30\x0f\x5a\x3a\xe6\x2d\xcb\x7f\x46\xf8\xcf\xe9\x74\x4a\xfe\xe9\xcd\x40\x67\x39\x73\x91\x4a\x85\xb3\x2f\x8e\xf1\x27\x12\x0e\x2e\xb0\x36\x9f\x9e\xa1\xca\xb9\x9a\x05\x70\x31\x60\x72\xa1\xc1\x0e\x9c\x2f\x0c\xd6\x35\xc1\xf0\x96\x78\x73\xde\x50\xf5\x02\xfa\xfb\x68\x48\xc7\xcb\x72\xe8\xdb\x62\x64\xaa\xcb\xdd\xf1\x76\xe6\x37\x70\x48\x83\x44\xd7\x76\x51\xe8\x87\xe5\x0a\xda\x82\x7a\x10\xfe\x9b\xbf\x7a\xf5\xc5\x1b\xfc\x7f\x7c\x53\x7c\x73\xb3\x91\x99\x9e\x44\x3c\x8b\x72\xae\x81\xad\xb5\x1f\x85\x06\xfa\xc7\x3f\x3a\xbf\x06\x43\x92\x7e\x81\x6d\x5e\x16\x8d\x52\x9a\x31\x2b\x12\xad\x33\x99\xa7\x46\x24\x5a\x2c\x34\x4d\x92\x17\x41\x83\xa0\xad\x29\x80\x6e\x41\x05\xbe\x70\xbd\xb9\x33\x4c\x93\xc4\xd3\xf1\xc1\x05\x7d\x8b\xe7\x01\x85\xd8\x16\x24\x67\xae\x36\xe2\x19\xe7\x2a\xeb\xe3\x77\x75\x4c\x26\xc7\xe4\x23\xc0\xe1\x64\x4a\x6e\xe0\xca\x11\x7b\xe5\x5a\x3b\xdd\xca\x8c\x91\xd4\xc8\x5f\x4a\xf1\x1d\x23\x4b\x0c\xf2\xd8\x3b\xfd\xb2\xd5\xfc\x13\xa6\x22\x9a\x32\x12\x6d\x68\x46\x23\xcd\x32\x3b\xed\x4b\xf4\x95\x0f\x5e\x86\x17\x40\xa5\xb6\x34\x66\x93\x3c\xc5\x63\xa1\x5e\x16\xe8\x08\x22\x0b\x2d\xea\xb8\x67\x4b\x23\xb9\x31\x8b\x3c\xfc\x1d\x8f\x59\x9a\xc8\xfd\x96\x89\x20\x3a\xb5\xdf\xa7\x99\x8c\xdd\x21\x85\x7e\xcd\x9d\x02\x9c\x94\x49\xa1\x99\x88\xbd\xa3\x4e\xa3\x3b\xfb\xc3\x3f\x4d\xf3\xb2\x7f\xf2\x9b\xdf\xb7\xdd\x80\x98\xed\x5c\xf7\xbf\x21\xb5\x5b\x10\x42\x65\x5d\xcc\x53\x55\x1b\x3b\x94\x2b\xbc\x09\x7e\xf5\xd9\x58\x43\x3b\x49\xa7\xac\x39\x94\x41\x04\xab\xcf\x00\x9a\x0a\xc6\xa1\x92\x03\xb8\xdf\x40\xc4\x7a\x85\xe6\x7b\x6e\x71\x56\xcc\x0c\xe2\x29\x73\xef\xa4\xad\xa0\x72\x6c\xff\x5a\x4a\xbd\x99\x12\xf4\x54\x05\x6a\xf2\x90\x1a\x8e\x4a\x27\x7b\x4f\x98\x7d\x01\xd5\x5f\x82\x2e\xc8\x1e\x1e\x15\x24\xca\x98\x0d\x90\x51\xf6\x76\xcb\x8c\x08\x9e\xbc\x3c\x76\x41\x2e\x31\x5b\xd1\x3c\xd1\x8a\xe0\xb2\x0c\xe8\xb2\xb8\x45\xa6\xd1\x92\xdc\x1b\x5c\x39\xb3\x92\xb3\x99\xc4\xa5\x27\x44\x03\xdf\xea\xf0\x67\x51\x08\x05\xdd\x2e\xdb\xe2\xe4\xed\xf8\x84\x2b\xbc\x63\x13\xf2\x17\xcb\xca\x99\x09\xb9\x91\xfe\x7a\x6c\x49\x84\x61\x8c\xc1\x7a\x53\x19\x38\x78\x8f\xb9\x88\x92\x3c\x76\x06\xce\x88\x1a\x66\x19\x3a\x28\xbb\x21\x48\xa4\x85\x2c\x96\x04\xdd\xbd\x6c\xf3\xae\xac\x4e\xee\x32\x3c\xb7\x0a\x44\x0c\x62\x2a\xbb\x0f\x0a\x77\xd0\xae\x75\xe9\xc7\xbd\x03\x86\x3a\x05\xdd\x62\xdb\x36\x21\x0e\xfc\xd1\x2a\x16\x3d\xf1\x24\x63\xd4\xdc\xa6\xe8\x8e\xd0\x35\xe5\x22\x78\x64\xf1\x98\xa0\x41\x2a\xb9\xa7\x7b\xd5\x88\x4f\x40\x6f\x91\x63\x22\xd8\x8e\x65\x95\x53\x17\x54\xb2\x0c\xac\xb2\x54\x42\x81\x30\x20\x1d\x85\x5d\x35\x95\x4a\xf1\x65\xe2\x06\x2e\xdd\xe1\xcc\x07\x37\x29\x8b\xc2\x62\x37\x2e\xa4\xdd\x41\xb0\x5b\xc0\x6f\x95\x9d\xc3\x22\x77\xf3\x57\xa0\x1c\xb1\xef\xf6\xa0\xb4\xcc\xe8\x9a\xb9\x9f\x94\xa6\x3a\x47\xc0\xa0\xe5\x8f\xc5\x57\x9e\x4d\xe6\x8e\x8b\xd8\x60\x23\x07\xd2\x34\xc9\x33\x9a\x94\xbf\x44\x52\xa0\x21\x5e\x9d\x92\xbf\xfc\xd5\xfc\x62\xfa\x67\xb1\x0d\xb4\xb5\xbf\x2e\xc4\x64\x32\x59\x08\x9a\x72\x17\xaf\x4b\x68\xca\xd9\x83\x66\x02\x5a\x4d\xef\xbe\x51\x53\x2e\x4f\x76\xaf\x17\x02\x47\x3c\xcf\x95\x96\xdb\x6b\x86\x16\xc5\x0b\x06\x12\x22\x60\xeb\x4a\x54\x2c\xe8\xc1\x08\xfa\x54\x0b\xf4\x3f\x56\x4c\xab\x69\x94\xc5\xd3\x34\x93\x06\x0e\x11\x20\xa0\xa9\xcc\xd6\x0b\x61\x30\x1b\x7c\x07\xec\xca\x29\x69\x69\x56\x35\x4b\xe1\x84\xea\xae\xd2\xf8\x2e\xe1\x4a\xff\x31\xf8\xfe\x2d\x57\xba\x0a\xb2\xc6\x2c\xed\x7e\x70\xb1\xce\x13\x9a\x35\x1b\x00\x34\x23\x69\xb6\xf4\x3c\xc9\x95\x46\x71\x72\xe7\x20\x6b\xfe\x98\x58\x08\x18\xc0\x41\x67\xd1\x86\x6d\xcb\x80\x61\x99\x32\x71\x36\x9f\xfd\xf0\xe5\x4d\xf5\xf7\xda\xa1\x6f\xb8\x81\x57\x02\x31\xc0\x9d\x80\x66\x4b\xae\x33\x9a\xed\xc9\x6c\x4e\x54\xbe\x9c\xb8\x69\x9e\x9c\xcf\x2e\xae\x2b\x18\x07\x15\x18\x1b\x83\xa3\x90\xad\x01\xe1\x15\x24\x2f\x44\x42\x5a\x62\x4c\xa0\xf5\xdd\xd8\x92\x1d\xa7\x9e\x17\x1d\xfa\x47\xe0\xa7\x7e\xbf\x72\xd5\x9c\xa8\x33\xb1\x17\xda\x1a\xff\x92\xb5\x68\x53\xbd\x53\x58\xbd\x53\xd5\x24\x27\x06\x6e\xd6\x99\x04\x83\x2f\x10\x0d\x58\xf0\xb3\xd8\xc2\x1a\xf1\x00\x60\x35\x4b\x92\x68\x48\x4d\x66\x40\x28\xec\xcd\x9c\x02\xc3\xc2\x32\xe5\x44\xda\x48\x8a\x1d\xcb\x34\xc9\x58\x24\xd7\x82\xff\xbd\xe8\x5c\x39\xf7\x16\x28\xf6\xd6\x60\xf2\xb8\xd0\x2c\x33\xac\x0d\xa0\x24\x54\xe2\x6f\xe9\x9e\x64\xcc\x0c\x43\x72\xe1\x75\xe8\x9c\xeb\xde\x19\x96\x96\x8b\x95\x3c\x85\xf4\x53\xea\xf4\xe4\x64\xcd\xb5\xbb\x80\x91\xdc\x6e\x73\xc1\xf5\xfe\x04\x0c\xee\x7c\x99\x9b\x2d\x39\x89\xd9\x8e\x25\x27\x8a\xaf\x27\x34\x8b\x36\x5c\xb3\x48\xe7\x19\x3b\xa1\x29\x9f\xc0\xdc\x05\x60\x80\xe9\x36\x7e\x96\xd9\x1b\xab\x9e\x87\xf0\x55\x13\xcd\xc1\xe5\xea\xda\x06\x73\xbb\x6c\xcc\x36\xf2\xec\xc8\x74\x14\xd0\x76\x84\xf7\xfa\xf2\xe6\x96\xb8\xd1\x83\xf1\xed\x08\xfc\xf2\x4b\x55\xee\x83\x01\x1a\x17\x2b\xc7\x5d\x81\x8d\xc3\x57\x46\x20\x69\x4f\x78\x80\xd1\x56\xf9\x72\xcb\xb5\xf2\xf2\x16\xc9\x29\x39\x2f\x8c\x1f\x79\x1a\x53\xcd\xe2\x29\x99\x09\x72\x4e\xb7\x2c\x39\xa7\x8a\x7d\xf6\x5d\x00\x16\x73\x62\x60\x3b\x74\x1f\x5a\x72\x0d\xb4\x69\x76\x0b\x44\xda\xb2\x6d\xf5\x8b\x6a\xe8\x63\x35\xe4\xcd\x45\x48\x96\x39\x09\x28\xa9\x63\xd7\xf2\x71\x1b\x5b\x23\xa1\x1d\xf6\x92\x96\xe0\x8c\x46\x5d\x48\xe7\x3f\x3a\x9b\x13\x87\xd2\x10\x83\x2d\x59\x22\xcd\xd9\x92\x56\x5f\xc4\x42\x56\xf6\x76\xae\x62\xa4\xeb\x9f\x4e\xd7\x37\x52\x95\x5e\x50\x9f\x81\xa6\xfb\xa1\x4e\x75\x7a\xee\xbf\x6b\xd2\xf2\xca\xcc\xea\x74\xdc\x7f\xf9\x39\x69\xf8\x48\xdf\x46\xfa\xe6\x6f\xc1\x48\xdf\x7e\x36\xfa\xe6\x63\x87\x61\xb4\xad\x89\x6b\xca\xe7\x70\xea\xc6\x1e\x52\xf0\xe9\x98\xcd\x87\x68\x92\xcc\x4e\xdb\x0f\xaa\x91\x7d\x2f\x66\xf3\xdd\x57\x70\xad\x66\xf3\xdd\x9b\x97\x4e\xa6\x75\xc7\x22\x28\xb0\xce\x50\x41\x3e\x33\x77\x73\x45\x23\x06\x76\xb0\xc5\xe2\xa8\x66\x72\x28\x34\x3f\x20\xc3\x27\x52\xde\x39\xd5\x1b\x77\x5f\x06\x35\xae\xce\xb5\xc6\x8b\x38\x9c\xcd\x2b\xce\x6e\x18\x24\x0d\xc6\x30\xab\x53\x00\x24\x42\xf5\x14\x1c\xc8\x83\xd4\x78\xb1\xd0\xa0\x88\xc8\x55\xc3\x13\xbd\x16\x7b\x0f\xc1\x8e\x85\xd3\x86\xcc\xac\xda\x2c\xd4\x69\xbd\x54\xf2\x62\x61\xfa\xb3\x35\x92\x8b\xf5\x5b\xe4\xa7\xaa\xa3\x72\x11\x8e\xec\x2f\x04\x2e\x7f\x9f\xa6\x10\x65\x6b\xc8\x4a\xc5\x2f\x18\x3d\x12\x2e\xcb\xa3\x80\x6a\x86\x50\xb7\x5c\xa1\x4e\x13\x73\x3f\x51\x4d\xd2\x3c\x4b\xa5\xb9\xa9\x2f\x66\x2b\xeb\x86\xb4\x61\xe5\xd6\x98\x71\x9c\x9f\x61\xb7\x33\x93\xd3\xef\x49\x86\xdb\x9f\x30\x9a\x89\x62\xdb\xec\x0e\x96\xfd\x9a\x09\xe4\x0a\x74\xd0\xad\x0e\x14\x8b\x85\x76\xdb\x31\x0d\x6a\x90\x9f\x9c\xeb\x22\xe5\x0c\xaf\xc2\x9e\x35\xb5\x2b\x75\x89\xe9\x2a\xcd\xb9\xff\x1f\xa8\x3e\xb7\xb6\x8d\xd2\xa7\xa6\x48\x01\xf2\x96\x8b\xfc\xa1\xfb\xd4\x17\xd6\xdd\xe2\x40\xff\x0e\x8e\xde\x36\xd5\xfb\x29\x29\x87\xf1\x0d\xc2\x68\x1d\xe5\xaa\x13\xb3\x98\x67\x2d\x77\x2c\x13\x68\x57\x29\x7c\xcd\xe4\x71\xe9\x5f\xb6\xc9\x64\xbe\x46\x1f\x02\xa7\x26\xb5\xac\x70\x77\x08\xbc\xdd\x5c\x38\x97\xa6\x61\x91\x00\x00\x0b\x67\xc7\x88\x16\xe0\x4c\xfe\x8e\x30\xb3\x7e\xbc\xd8\xb1\x39\x24\x3b\xbc\x88\xe1\x94\x10\xa5\xe7\xce\x0e\x6a\x99\xef\x4b\xf0\x1d\x13\x5f\xe1\x2a\x15\xc6\x0d\x9c\x68\x09\x7e\xe8\x66\x2e\x4e\x35\x11\x36\xe3\x27\x32\xa2\x49\x11\x44\x6e\x95\x94\xb3\x15\xa9\xe0\x33\x87\xcb\xbc\xfd\x1d\x04\x6a\xb8\x48\x0e\xde\x15\xbf\x3e\x58\x3e\xe0\x13\xb3\x76\xcb\x6b\x01\xe4\x3c\xf0\x07\x91\x8c\x3b\x46\xe5\x1d\x2a\x60\x5d\x99\x33\x1c\xc1\x09\xb9\x37\x68\xae\x8a\x9c\xc3\xf8\x00\x35\xa6\x93\xca\xf6\x07\x06\x2b\xe2\xfe\x4a\xe5\xab\xb9\xd9\xc1\x4e\x85\x8f\x8c\x20\x65\x6d\x06\x4e\x09\xc7\x81\x59\x15\x53\x38\x26\x14\xb0\x46\x93\xfd\x23\xd6\x66\xec\xd3\xae\xa2\x52\x79\x99\xd0\x0b\x43\x97\x8c\xd0\x91\x61\xaa\x3b\x3b\x8a\x22\x2f\x54\x1e\xc6\x30\x54\xc1\xd6\x32\xbd\x79\x65\xfe\xfb\xd2\xc6\xdd\x80\x31\x8f\xc5\xc4\xcc\xfb\x77\x84\x6b\xc2\x95\x78\xae\x4b\xcd\x6f\x3f\x25\x27\x78\x99\xd3\x4c\x1a\xee\xc5\x3b\x02\x08\x63\x0f\x2b\x54\xcf\x61\x39\xeb\x20\xcd\x75\xc1\x51\xa7\xb8\x56\x88\x45\x04\xee\x07\xe3\x15\xd1\x16\x64\x38\xae\x6d\x9a\xb0\xad\x39\x6b\x88\xea\x4b\xc4\xe1\x4f\x5a\xfd\x2e\xbc\x7b\x5c\x73\x9a\x24\x7b\xf2\xbf\x0d\x8c\xd3\x8c\x4d\xc0\x07\xa5\xb0\xac\xcc\xcd\x26\x31\x9b\x58\xb8\x40\xfb\x51\xbe\x6d\x93\x09\xcc\xe3\xea\xc8\x23\x83\x6f\xeb\xd5\x4b\x11\x54\xd1\x77\x21\x6f\x11\xce\x2a\xd7\x10\xe7\x4d\x3b\xeb\x21\x0f\x0e\x40\xab\xbd\x23\xf8\x76\xc6\xd0\x80\x1b\xf1\x58\x04\x81\xdd\x35\x89\xb6\xe8\xdc\x9a\x05\xc1\x10\xfb\x0a\x3f\xe8\x79\xca\xe2\xdd\xb5\x81\xa3\x2e\xcb\x70\xd0\xeb\x76\xc9\x50\x4b\xca\x44\x84\xee\x4a\x05\xbb\x61\x37\xdc\x3a\x94\x1e\x40\x1d\x7b\xdd\x4b\x3b\xdd\x4a\xfb\x5d\x11\xcd\xb2\x7a\x3e\xef\x8c\x0a\xfd\x25\x65\x0f\xfb\x5c\xc9\xa2\x7a\x9c\x2c\x45\x0b\xc2\x9e\x00\x70\x5b\xde\x74\xa4\x83\x7b\xb4\x6b\x66\x8a\x6c\x6c\xef\x71\x3f\x2b\x23\xb0\xf1\xc2\x71\xa0\x73\x2b\x8f\x3b\xc6\x9e\xec\x24\xda\x93\x6c\x96\x11\x19\x86\xd4\x16\x32\x08\x26\x57\xb7\xd3\xf1\xbc\x1b\x9d\x48\x80\x6e\x7b\x6d\x9d\x62\x48\x43\x9a\x32\x9a\x15\x0e\x73\x10\x31\x43\x8a\x79\x95\x36\x65\xd7\xb3\x73\x7c\x2c\xf9\xf5\x49\xab\x5b\x60\xed\x56\x8e\x3a\xc2\x9f\x59\x47\xc8\x53\xba\x5d\x26\x32\xba\xfb\x1c\x0a\xc2\xd9\xfc\xec\xdd\xb7\xa6\xf3\xba\x76\xb0\x78\xd1\x54\x0d\x96\x13\xaa\xeb\x05\x8b\x37\xa3\x52\x70\x54\x0a\x8e\x4a\xc1\x7f\x3b\xa5\x60\x81\x14\x06\x69\x04\x45\x1d\xbb\x94\xcf\xe1\xfa\x40\x23\x66\x18\xd8\xf5\x52\x6b\xdb\xce\x49\x72\x80\x8e\xac\x9f\x0f\x57\xf8\xa7\x93\xf6\x30\x92\x8d\xe9\xa0\xda\x87\xeb\xc2\xa3\xde\xab\xd9\x41\x16\x47\x46\xa6\x3d\xc5\xba\x1a\xe6\x9f\xc0\xcf\x80\x7f\xe7\xe2\x08\x3a\x04\xb7\x49\xa6\x8f\xbd\x01\x5b\x04\x54\xd3\x12\xd6\x85\x55\x62\x40\x5a\x3e\x90\x61\xa7\x89\x11\xb3\xda\xf2\x90\x57\x21\x63\xe8\x2c\x60\xac\xf2\x1b\xc2\xc5\x24\xb7\xc1\x0f\x8e\x79\x80\x19\x4f\x89\xe0\x09\x14\x7c\x69\x09\x41\xd8\x32\x8a\xdc\x49\xd9\x1b\x81\x3b\xc6\x18\x2a\xf3\x84\x14\x13\xaf\x0f\x23\x03\x73\x11\xb3\x07\xc2\x8f\xdb\x34\x01\xf6\x7d\x11\x12\xc2\x0d\x12\xb4\xc0\xf7\x86\x69\x4c\x16\x30\x64\x4b\x9f\x88\x57\x6c\x9f\x38\x80\xeb\x51\x29\x19\x71\xc8\xa9\x41\x35\x5e\x47\x56\xa8\x61\xcf\x8a\x5f\x82\x8c\x9c\x01\xe5\x23\x18\xa1\x0e\xbe\xfd\x19\xb9\x7d\x7f\xf1\xfe\x14\x53\x03\x89\x3c\x49\xe8\x12\x99\xc1\x2d\x15\x39\x08\xad\x34\x8e\x81\x27\x9c\x92\x1f\x99\x23\x31\x88\x87\x48\x91\x3b\x20\x9b\xac\xc3\xb9\x32\x9f\x99\x13\xb6\xa1\x22\x4e\x18\xf9\xcb\x5f\xff\x87\x41\x7e\x78\xd9\x92\xbd\x4d\xf2\x11\x14\xcb\xdd\x44\xda\xb8\xfd\x0e\xf6\xba\x84\x69\xef\xc1\xf4\xa0\x0f\x0e\xad\xb4\x38\xa9\x85\x4f\x8e\x43\x64\xde\xae\x85\xe6\x0b\x2e\xc7\xd5\xf3\x5d\x62\x81\x29\xb9\x95\x64\x65\x08\x8f\xb7\xdf\xa8\xf1\xc0\xb0\xb8\xf2\xc3\x20\x46\x30\x17\xa5\xe2\x5c\x5f\x3d\x97\xcf\x95\x2d\x90\xe4\x8e\x90\x37\x8d\xd6\x18\x72\x1a\x38\x98\x0c\x35\x1c\x05\x37\x7f\xf8\x69\xeb\x15\x83\xf1\x24\x7c\xe4\x61\x21\x8d\x0c\x92\x85\x15\x33\xec\x31\xcd\x42\x28\xd9\x2e\xee\xb0\xe2\x07\x43\x84\xd6\xbe\x08\xbf\x47\x4b\x83\x11\x8f\x7b\xbd\xb0\x6f\xdd\x49\x7a\xae\xc8\xf9\xec\xe2\xfa\x40\x5c\x1d\xb3\x84\xe9\xa0\x5c\x5c\x19\xe5\x02\x9b\xd9\xbb\x50\x30\x83\x36\x84\xa9\xf0\xdc\xbe\x97\xd9\x1d\xcd\x64\x6e\x8e\xb3\x97\xc1\xbf\x45\x6d\x69\xce\x95\x17\xcb\x7d\x36\x9f\xa1\x0f\xef\x72\x8f\xd3\x42\xbc\x9a\x60\x48\x4a\xc6\x74\x9e\x09\x02\x85\x36\x56\x09\x0f\x43\x9a\x65\x99\xcc\x5c\xbc\x49\x49\x56\x97\x8c\x09\x8f\x3d\xd2\x0e\x53\xb9\x50\x69\xa6\x0b\x8c\x76\x78\xb4\xd6\xdf\x72\x26\x22\x76\x05\x81\x67\x41\x30\x82\x6e\xff\x94\xbc\xea\x01\xb1\x41\xa0\x46\x90\x03\x63\x14\x76\x6a\xc3\xd9\x50\x1b\xcc\x95\x5b\x02\x06\x82\x6b\x1e\xd6\x59\x94\x4b\xe7\x8a\xdc\x67\x5c\x6b\x26\xac\x38\x5f\xa1\x57\xe0\xe3\xab\xa4\x1d\x14\xc5\x6e\x1c\x36\x8c\x74\x61\x26\x3e\x03\x43\x6c\xa0\x98\x99\x08\x68\x22\xb4\x2a\x5c\xd2\x6d\x32\xe6\x8c\x25\x8c\xaa\x96\xab\x03\xbc\xd8\x31\x49\xa9\xf2\xcc\x83\xd5\x85\x7b\xe4\x10\xb0\x68\x15\xb9\x05\x3b\x4d\x12\x79\xaf\x48\xae\x7c\x85\x30\x38\x3c\x2b\x4d\x28\xc9\x28\x26\x01\xb7\x69\xac\x0c\x8d\x66\x42\xe5\x16\x00\xb3\x60\x09\xc7\x0d\x05\x7d\x34\x1c\x22\x5c\x90\xa1\xce\x22\x26\x19\x9b\xd8\xc9\x18\x29\x0a\x92\xd6\x41\x9c\x20\xb6\x71\x6c\x7a\xe0\x44\x61\x05\x13\x20\xbd\x6f\xbe\x6a\x3b\x70\x2d\x74\xb9\x7a\xe0\xbe\x93\x59\x89\xd2\x03\xa7\x6f\x30\xb6\xeb\x99\x52\x2f\xb3\x50\xab\x68\x91\x7a\x3c\x1d\x8b\x0b\xbe\xc9\xcb\x8f\x80\x47\x08\xa2\x3d\x3e\xe9\xd4\x95\xc7\x61\xea\x23\x13\x67\x19\x6d\x3d\x23\xa4\x0c\x41\xbd\x63\x7b\x97\x61\x22\x55\xc7\x44\xa1\x1c\x7c\xc7\xc0\x6d\x3e\xa2\x4a\xdb\x02\x64\x80\x40\x5b\x11\x44\x18\xbf\x63\xaa\x94\xb3\x81\x82\xc2\x4d\xa5\xb5\x0b\x7e\x2d\x24\x16\x33\x9f\xd8\xc8\x94\x08\x55\x73\x06\x45\xd0\x9e\x9d\x48\xb1\x66\x19\xa2\x65\x6b\x1d\xc4\xca\x2e\x1f\x14\x76\x77\x2e\xc5\x8a\xaf\xeb\xe3\x99\x4b\xc2\x68\xc8\x63\xbe\x13\x07\xe6\xa2\xd8\xe9\xbe\x05\x7e\x28\x9b\xba\x40\xa1\x0c\xc3\x92\x9d\x3e\xd3\x67\x94\x50\x53\xdf\x12\x05\x61\xb8\xfa\x2a\x2b\xf5\x84\xbc\x6f\x2b\x51\x6e\x51\x24\x4f\xfc\x79\x37\x5e\xb5\xf0\xed\x13\x20\xf0\xf5\xdf\xaa\x27\xa6\xfe\xd6\x83\xf5\xa8\x9e\xec\x54\x4f\x46\x70\xc4\x3f\x97\x7e\x12\x2f\x50\x48\x41\x89\x6f\xc2\x1a\x4a\x3b\xa7\x90\x8a\x32\x2a\x3a\x1c\x75\x94\xa3\x8e\xb2\x75\x1b\x46\x1d\xe5\xaf\x55\x47\x89\x78\xe1\x00\x25\xa5\x8f\x62\xca\xe7\x11\x5a\xca\x5c\x4b\xcb\x24\x32\x60\x23\x42\x14\xb1\x93\xc0\x6f\xe9\x03\x7e\x38\x67\xd9\x1f\x40\xd3\xd8\xc7\xff\x55\xdb\x83\xaa\x53\x48\x31\xf9\x3b\xcb\xe4\xb1\x53\x7c\x6d\xe9\x83\xc7\xe0\xf9\xc6\x9b\xda\xd4\x20\x5d\x18\x15\x90\x83\xa2\xd0\x4c\x82\x0c\xd4\xa9\x9c\x6c\x63\xa0\xfb\x38\xb2\x0e\x50\xb4\x53\xff\x06\x8c\x0f\x21\xeb\x23\xed\xae\xd1\x6e\x54\x05\x7d\x2e\xda\xfd\x07\xe8\x3d\x44\xbb\xf1\x4d\x98\x76\xdb\x39\x85\x68\xf7\xa6\xe8\x70\xa4\xdd\x23\xed\x6e\xdd\x86\x91\x76\xff\x5a\x69\x37\xe2\x85\x03\x68\xb7\x8f\x62\xca\xe7\x70\xda\x0d\x54\xf1\x53\xf4\x3a\x83\xe4\xdc\xb0\xea\xa2\x5d\x35\xdc\xc9\x2c\x20\x32\x9c\x5d\xb4\x7e\x17\x52\x44\xb7\x12\xd6\x80\xa9\x72\x52\x0c\x31\x52\xd1\x0e\x2a\x9a\x4a\x99\x7c\x1e\x0a\x3a\x97\xce\xeb\xcd\xa7\x9e\xe6\xd7\x10\xe5\x84\x79\x34\xa9\x66\x6a\x3b\x19\x29\xe6\x48\x31\x5b\xb7\x61\xa4\x98\xbf\x4e\x8a\x69\x70\xc1\x60\x6a\x69\x1a\x3f\x46\xac\xc5\xd4\x63\x1f\xd4\x00\x63\x7e\xd1\xd4\x79\x25\x28\xcc\x75\x84\xda\x75\x62\x70\x51\xe1\x58\xe3\x22\xb6\x20\xd7\x66\x88\xa4\x82\x2f\x4d\x91\xac\xc9\x05\x0c\x1d\x97\xc9\x96\xb4\x24\x7f\x79\x7e\x9b\x0b\xc1\x92\xe7\xc7\xe4\xf9\x8f\x36\xda\xe0\xf9\x5f\x61\xcd\x4b\x1a\xdd\x4d\x20\x73\xa1\xe6\x4b\x9e\x34\x84\x41\xf2\x79\x42\xad\x80\x90\xde\xf0\xbf\x0f\xf2\xe7\x47\x4b\x8b\xe2\x7f\x07\x51\x3b\x57\x18\x84\x51\x06\xc7\x11\xaa\x14\x5f\x8b\xad\xb9\x48\xad\xf5\x10\x6c\xca\x2c\x99\x4c\xc9\x85\x07\x9a\x2f\xde\xd8\xce\x6c\x0c\xe4\xeb\xd7\x5f\xb8\x1f\xde\x1c\x2a\xcb\x0f\x35\x90\xc3\x06\x3f\xc6\x3a\xce\x15\x5d\x26\xfd\x66\x0d\x30\x76\xba\xc6\xa0\xdf\xc8\xf2\x32\x16\xd1\x30\x84\xa5\x21\x1b\x41\x57\x86\x19\x86\x40\x67\x71\x90\x83\xdf\x81\x1c\x98\x9d\xc8\xb7\xdf\xcf\x2f\x1f\x5a\x82\x03\xaa\x68\xf6\x02\x3f\x20\x0c\x9a\x1b\xa4\x9a\xc9\xbc\x48\x86\x0e\xf3\x98\xcd\x89\xb9\xa7\xff\xdf\xff\xf3\xff\xa2\x9b\x01\x91\xbb\xb0\xcf\xd0\xb7\xdf\xcf\xa7\xe4\x2f\x17\xce\xea\xbd\xa2\x89\x62\x7f\x0d\x94\x5d\xed\x5c\x01\x4f\x79\xda\x3f\xeb\xc2\x12\x76\x6a\x31\x37\xa4\x9a\xe3\x58\x98\xbb\x8c\xbc\x3c\x9b\xcf\x76\xaf\xe1\xda\xdd\xd3\x2c\x0e\xc2\xbb\x72\x1d\x0d\x65\xd0\x96\xb4\xf8\xbd\xc2\xe6\x21\x26\x39\xae\xbe\x0a\x6e\x21\x86\x9b\x22\x89\x36\x37\xc8\x4c\x6a\x1a\x00\x44\x8f\x5f\x0c\x13\x6d\x27\xb0\x01\x11\x38\x85\xb6\x7d\x79\x08\x0d\x2c\x89\x06\x6c\x64\xd6\xe4\xa3\xb9\x70\x9f\x10\x4b\x15\xb3\x84\xef\x58\x56\x96\xd6\x31\x3f\x15\x85\xe7\x54\x2d\xc1\x76\xf0\x8c\x92\xbe\x5d\x26\x90\xeb\x31\x18\x61\xd4\x58\xdb\x2d\x60\xea\xd9\x1c\x3e\x80\x64\x45\x60\x9b\x15\x5e\x82\xb2\xc5\x11\xe6\x2c\x73\x85\x24\xa1\x3c\xed\x04\x4b\xa6\x2e\x8e\xa6\x84\x9c\xb5\xad\xd7\xf4\x59\xeb\xa1\xf4\x8f\xc8\x95\x1d\xb9\x84\xa1\xd9\x5b\x73\x43\xe0\x8c\xb4\x96\x0a\xf7\xe0\x55\x8d\xff\x6e\xc0\x8e\x90\x33\x6f\x0e\xd5\x79\xb7\xf5\x0e\x13\x74\x07\xbd\x3e\xc1\x7b\x97\xfe\xcd\x9f\x03\xc6\x60\x99\xdb\xd1\xd6\x27\x2d\xcb\x5f\xd9\x52\xb3\x8e\x05\x75\x05\x12\x4c\xe7\xc2\xed\x40\x19\xb8\xda\x59\x36\xf0\x05\x5f\x55\x69\xe6\x4b\x33\x8b\x12\xd6\x9d\x47\xa7\x9b\xd2\x85\x05\x57\x73\xe2\xdf\x0d\x88\x5c\x3b\x77\xcc\x09\xda\xde\xf2\xac\x64\x4c\x02\x1b\xde\x7d\xd4\x67\xb5\x35\x1e\xbb\xda\x1e\x5c\xa1\xd5\x1e\x00\x85\x5e\x52\x8b\xa3\x2b\xb6\x83\x54\xe0\x2f\x20\xef\x76\x75\xb0\x50\xef\xa6\x07\x4b\x5d\x42\x45\xe5\x3a\x43\xf8\xa8\x9e\xc8\x5c\xaf\x25\x17\xeb\xff\x2e\x28\xb5\x13\xeb\x08\xaa\xdf\x0f\x84\x07\xa6\xe9\xf4\x00\x58\x62\x55\x87\x17\x21\x1b\xa6\x57\x32\x8b\x74\x86\x41\x5b\x76\xd8\x48\x1d\x3e\x02\x68\x60\x57\x99\x6b\xc5\x63\x56\x88\x97\x05\x83\x1a\xea\x14\x0a\x8a\xa8\xbf\xe5\x2c\xa3\x71\xb0\x3a\x4c\x37\x38\x64\x3c\xb8\x0e\xc0\x19\x3a\x57\x59\x96\xdd\xe6\x97\x33\xc7\xc5\x7a\xac\x16\x61\xb6\x80\x6a\x96\x7b\x4c\x27\x17\x9a\x73\x51\x4c\xe7\xb0\xc3\xbc\x7b\x48\xa8\xf8\xc4\xab\xfd\xc3\x9f\xde\x9e\x5d\xfd\x6c\x77\x1b\x46\x0b\x72\xc7\xc5\x04\x1e\x7d\xb9\x5b\x95\x66\x4d\xb7\x92\x51\x37\x56\xd1\x8d\x65\xcc\x2c\x14\x2f\xdb\x67\x51\x91\x5d\x97\x03\x34\x35\x65\xde\xcb\x90\xc2\xcc\x9f\x5c\x53\x6f\x96\x55\x7b\x1e\xd5\x67\xa3\xfa\xac\x75\x1b\x46\xf5\xd9\xaf\x53\x7d\xe6\x21\x88\xc1\x5a\xb4\x06\xc6\x29\x9f\xc3\x75\x6b\x88\x64\x58\x0c\x59\x66\xfb\x68\xed\xb5\xdf\xb8\x5a\x1e\x1c\x7f\xa2\x22\x3e\xa9\xa8\x8f\xc2\x4a\x0f\xf0\xf3\x68\xa8\x4c\xd8\x43\x94\xe4\xb1\xad\x53\x2b\xd8\xbd\xef\x68\x39\x86\x7d\xff\xcc\x94\xf3\x2e\x5f\xb2\x32\xae\x4b\x55\x98\xab\xcf\x41\x48\xff\x98\x2f\xd9\x79\x39\xde\xb9\x3f\x5e\x9d\xae\x76\xb5\x6d\x92\xd9\xce\x95\xd4\xa9\x6e\x57\xe3\x91\x08\x8f\x44\x78\x24\xc2\xff\x76\x44\xb8\x0b\x9b\x34\x69\x72\xa5\x38\x41\x1d\xc0\x5e\x54\x8a\x87\x44\xaa\x92\xe9\x70\xd2\xec\x75\x31\x44\x08\x76\xa3\xa1\x5a\x18\xcb\x45\xb8\x91\x6d\xa1\x93\x1d\x8f\x73\x9a\xf4\x54\xa3\xf4\x86\x3d\x58\x85\xdd\x57\x60\xb2\xa5\xac\x64\xcb\x94\xab\x35\x26\xcb\x79\xb5\x16\x75\xbc\xb4\x1a\x71\x08\x2b\x04\x51\xfd\x18\x42\xfe\xb4\x84\x78\x72\x2d\x9d\xf8\xdd\xd2\xc3\x80\xf2\xa0\x06\x4d\x89\x88\x27\x2c\x9b\xb3\x8c\xcb\xf6\x08\xd6\x3a\x72\xb8\xae\x7d\xe8\x7c\x63\x53\xfc\x4b\x4b\xf3\x2f\x88\xf1\x77\x43\xf0\xd6\xd0\x37\xf7\x14\x91\x72\x2e\x5b\x18\xd5\x14\x78\x05\xdf\x2e\xf3\xf5\x36\x64\x94\x71\x4f\x7f\xd4\x6b\x5f\xcc\x6b\x4b\xe6\xb0\x06\x04\xae\x64\xdc\xbd\xd3\xe6\xfd\x2f\x63\x93\x37\x5e\x32\xb7\xa1\x1b\xec\x27\x80\x2b\x6d\xcf\x6a\x2f\x22\xa7\x49\x07\x0a\x09\x29\x09\xbd\x0a\xfb\x1d\xbb\x7b\xe1\xac\x8c\x8f\x5d\xe9\xc0\xd5\x12\xeb\x39\x7e\x9e\x31\xda\x92\xde\xb5\x65\xcd\xcf\xcf\x8a\xcf\xca\x9d\xcd\xb5\xdc\x52\xcd\xa3\xb2\x68\x91\xec\xad\xa2\x5d\x85\x0a\x88\x3a\x6c\xc7\xb2\xbd\xb5\x40\x94\x87\xd9\xc1\xa4\xeb\x48\x93\xc1\x65\x5d\x87\x14\x75\x4d\x18\xbd\xfb\x3e\xa3\x11\x3b\xf0\xbe\xbf\xad\x7e\x57\xbb\xee\xd5\x78\x3d\x77\xe6\xbb\xd6\x04\x8a\x63\x2c\x55\x0d\xd5\xee\xa8\x6f\x6a\x2a\x63\x9f\xcd\x74\x0d\x0d\xbf\xc1\x73\x12\x08\x45\xae\x76\x69\xed\xc1\xb3\x39\x59\xd3\x6c\x49\xd7\x66\x3a\x49\xc2\x22\x0c\xb3\x2c\x01\xff\xfa\x53\xd1\xc8\x7f\x47\xd4\x49\xe0\xfe\x43\x71\xbd\xae\xeb\x57\x5d\xed\x4d\xf1\x89\xef\xc2\x62\x6b\x93\x49\x12\xc9\x74\x3f\xb0\x9e\x34\x60\xd4\xb2\x44\x8c\x97\xa0\x51\xf9\xab\xb4\x08\xf5\xf3\x52\x09\xcc\xde\x36\x84\x4e\xd8\x64\xcf\x1d\x94\xc2\xe6\x67\xfc\x65\xd0\x8a\xff\x7e\xa7\xba\x6f\xab\xab\x35\x06\x87\x6c\x79\xb5\xbe\x60\xd7\xd6\xdb\xbe\xdb\xa6\x6f\x2b\x06\xfa\x47\x63\x3c\x03\xff\x8a\x33\xe0\xf2\xee\xf6\x70\x51\x55\x1b\x6c\xed\x9b\xae\x73\xe0\xfa\x6f\x5b\x03\xab\x71\x62\xe3\x49\xf8\xd7\x9c\x84\xee\xa8\x83\x65\xbe\xb6\x49\x42\xe7\x03\x9c\xd7\x2e\x6a\xed\x9b\x64\x21\xd3\x98\x66\x22\xdb\x31\xb2\x65\x5b\x99\x85\x93\x1e\x99\xe3\x94\xe6\x45\x06\x56\x62\x38\x9d\xa6\xe5\x17\x5f\xd7\xcc\xb6\xdd\x29\x3e\xbe\xfc\xa2\x0d\x02\x2d\x5e\x8d\x4c\x47\xf1\x0f\x5f\x9e\xcb\x6d\x8a\xc5\xff\x5b\x0f\x4d\xf5\xb0\x5c\x06\x3f\xab\x1d\x99\x25\xd3\xf7\x86\x23\x34\x63\xec\xbe\x0c\x4b\xfa\xae\x83\x42\x25\x54\x32\x8e\xfe\x75\xf0\xf9\xc0\x57\xc1\xf3\xd2\x75\x4e\x36\x8c\x26\x7a\x73\xbe\x61\xe1\x78\xd4\xea\xd2\xfe\xe0\x35\x2e\x10\x80\xcc\xdc\x54\x54\x51\x12\xd8\xc8\x08\xd8\x73\x70\x69\xd8\xc1\x20\x26\xa7\x6b\xee\x89\x5c\xdf\x18\x49\x84\xeb\xfd\x4d\x94\x31\x16\xca\xbc\x52\xe3\xfb\xeb\x5f\xb8\x6d\x49\xe4\x9a\x28\xfb\x86\xd0\xa5\xdc\x31\x9b\xf5\x22\x91\xeb\x96\x34\x6f\x0c\x9d\x4e\xac\x62\x55\xe9\x58\xe6\xda\xdf\x8c\x99\x58\xc9\x43\x57\x94\x66\x72\x6b\x98\xc9\x5c\xbd\x63\x3a\xe3\x91\x1a\x72\xf5\x9e\xcf\x43\x5f\xb9\x95\xdd\x9e\xcf\xed\xe5\x73\x9e\xd6\x65\xf3\xd0\xc2\xb6\xd8\x05\x5e\xd4\xac\xa8\x3b\xcf\x05\x56\x9c\xef\x39\x81\xbf\x7d\xf5\xdb\xaf\xda\x17\x1d\xbc\x68\xed\xee\x13\x6d\xba\xae\x56\x65\x62\x69\xda\x69\x01\x55\xa7\x3a\x11\xbe\xf6\xd4\xba\x76\x5f\xcd\xaf\x01\x2d\xbc\x15\x0e\x3d\xdd\x21\x99\xe9\xe7\x50\x69\x64\x95\x27\x68\x10\x8c\xb7\xa0\x99\x94\x10\x32\x6d\x24\x39\x40\x80\x98\x9e\x88\x46\x3a\xa7\x0d\xa7\x1c\xec\x11\xf7\xea\x9e\x16\xe9\x9e\x5d\xb6\x74\xeb\x69\xb9\x95\x31\x7a\xbd\x2f\x0d\x2b\xbe\xe3\x99\x04\x1f\x70\xb2\xa3\x19\x87\x8b\xd8\x98\x2f\xba\x21\xde\xe5\x4b\x36\xf1\x95\x9f\x69\x26\x23\xa6\xea\x9a\x8e\xae\xd2\x3b\xe5\x68\x3f\xd0\xa0\xea\xf3\xc0\x90\xb8\x36\xea\x55\xd9\xb6\xcb\xea\xa8\xf5\xfc\xf2\x01\x00\xb4\x78\x57\x06\x81\x80\x69\xbd\xc4\x2a\xc9\x31\xdb\x3c\x58\x01\x72\x21\xb8\x58\xe3\x01\x39\x30\xd7\x50\xe6\x7f\xdb\x6b\xb5\xf5\x1b\xd7\x16\xb6\x5a\x19\x51\x7f\xc7\x2a\xa7\x82\x2b\x37\x40\x68\x81\xbc\x6d\xa3\x65\x7c\x6c\x33\x7b\x6f\x59\xb6\x76\xc6\x8e\xb3\xf9\xac\xb4\x75\x18\x8e\x24\x4c\x92\x5b\x4e\x59\x00\x2e\x3d\x5c\x58\xb7\xd6\xbc\x01\x9c\xa7\xd4\x9c\x93\x3e\xed\xf9\x80\xe9\x93\x01\x5a\xf4\xc6\x22\x0e\xd3\xa4\x77\xb1\x8c\x4f\xc9\x2e\x0f\x5c\x2d\x39\x8c\x6d\x6e\x2c\x7e\x38\xeb\xdc\xa7\x85\xac\x72\xd6\x83\xd8\xe7\xbe\x2e\xbb\xb9\x6b\xf2\xa4\x9a\xca\x0e\x45\x3c\xf9\x5c\xca\x78\xf2\x04\x4a\x16\x32\xfc\x9c\x0c\x54\xcc\x37\x96\x7b\x80\x72\xbe\x6f\x47\x4b\xdd\xfd\xd3\x28\xe8\x0f\x58\x3d\x39\x44\x51\xdf\x80\xc1\x30\x65\x7d\x7f\xa7\xc0\x9a\x3c\xb9\xc2\x9e\x0c\xbe\x0a\x64\xe0\x75\x20\x07\x29\xef\xc9\xe3\x15\xf8\x7d\x0b\x2b\xaf\xd1\x81\x4a\xfc\xbe\x8e\x03\x8c\x72\xaf\x22\xbf\xaf\xcf\x1e\x3d\x3f\x39\x60\x9b\x46\xa4\xde\x0b\xa2\x41\xe6\x81\x26\x70\x9e\xce\x44\x40\x9e\xd4\x4c\x30\x7c\xe9\x43\x2e\x70\xa7\xc9\xa0\x01\x94\xa7\x34\x1b\x90\x9f\x97\xaa\x8d\x17\xe5\x09\x4e\xcb\x20\xab\x03\xf9\x6c\x96\x07\xf2\x99\xac\x0f\x64\x3c\x46\x3f\xeb\x31\x1a\x68\xb8\x20\x9f\xd3\x78\x41\x3e\x97\x01\x83\x8c\x87\xe9\x67\x3c\x4c\x7d\x2d\x06\xd8\x3f\xc8\xe7\xb2\x81\x90\xa7\xb7\x83\x90\x7e\x5b\x08\x19\x52\x8a\x64\xb0\x4d\xa4\x01\x9c\xa7\xb2\x8b\x90\xa7\xb5\x8d\x90\x01\x67\xaa\xc7\x46\xd2\x5c\xea\x13\xd9\x49\xc8\x81\xb6\x92\x21\x6b\x19\x62\x33\x69\x2e\xe8\x60\xbb\x49\xdb\x72\x12\xb9\x56\x9f\x60\x3b\x19\xb2\xc2\xa1\x36\x94\xe6\x2a\x9f\xd4\x8e\x42\x3e\xd5\x96\xd2\xd6\x69\x9b\x89\x85\xf4\xdf\xdf\x8e\xf2\x9b\x1d\xe6\x16\xd2\x89\x2e\xc7\xc0\x1c\x2f\x30\xc7\x46\x9d\x83\x30\xc3\x3f\x4b\xe2\xd4\x2b\x1c\x01\x05\x2a\x7c\x51\xc6\xde\x54\x5e\x36\x83\x6d\x6a\xb3\xb3\xbb\x50\x84\xd7\xf8\xaf\xa1\x6b\x1b\x4f\x53\x28\xb0\x81\x27\x1a\x43\x6a\xc6\x90\x9a\x31\xa4\xe6\xd7\x15\x52\xd3\x65\xd0\x5d\x67\x4c\xf5\x7a\x7e\xdc\xba\x52\xc3\xe6\xf8\x33\x88\x29\xc5\x0f\x6d\x1d\x6e\x82\x85\x8d\xcc\x1f\x85\x0d\x33\x44\xa1\xa8\xfb\x1a\xf3\x76\x90\x2d\xd5\xd1\x86\x44\x19\xd7\x2c\xe3\x14\x2e\x09\x25\x91\xcc\x32\xa6\x52\x83\xcf\xc5\x9a\x58\x3e\x4f\x4b\x2c\x91\x7c\x50\xac\x69\x65\x0d\x8b\xa3\x33\x72\x6d\x26\xc8\x44\x44\x53\x95\xc3\xbd\x2d\x67\x14\x9a\x4a\x8b\xc2\x9d\x5a\xbd\x2d\xf9\x56\xea\x4d\xad\x4a\xb2\x57\xf9\xd9\x56\xa6\x17\x71\xa3\x1a\x74\x0b\xc3\x50\x54\x3c\xb7\x55\x99\x27\x44\xb1\x94\x66\x58\xba\x27\xd7\x84\xfa\x31\xbd\xd8\x04\x32\xd9\x99\x59\x70\x01\xfb\xd1\x32\x61\x11\xbb\xfd\xf2\x01\xcf\xc5\x7a\x0a\xd5\xf5\xb1\xc8\x34\x54\xa7\x37\x82\x49\x15\x12\x1b\xda\xd6\x2b\x11\x6c\x0d\x93\xb3\x88\xd7\x88\x23\x6c\xc5\x1f\x5c\x99\xa8\xc5\x62\x71\x74\x25\xb5\xf9\xcf\x94\x9c\x25\x89\x4d\x37\xef\xf7\x1e\xee\xd9\x66\x66\xa2\x78\xa0\xb6\xb9\xc2\xfa\x60\x54\x73\x05\x6e\x0f\x98\xe6\xc4\x2e\x45\x4b\xec\x73\x4a\xce\x80\x98\x35\xf3\xfd\x5a\xe8\xc2\xe1\xa4\xc2\x1d\x50\x2b\x92\xd9\x45\x43\x11\x1f\xb3\x1c\xf3\x87\x5d\x0f\x50\x06\xec\xbc\x1d\xae\x00\xfd\xf0\x14\xa1\x0a\x55\x8e\x6e\x1f\x38\xc5\x70\x1e\xa9\x5e\xa9\x1f\x0f\x5c\x2b\x47\xd8\x2f\x13\x7b\x59\x6d\x5a\x7b\xa9\x89\xb2\x65\xc2\xaa\x8a\x53\x42\xed\x70\x00\x33\x0c\x17\xb3\x43\x18\xaf\x64\xd5\x21\x06\x17\xea\xd0\x3d\x1e\x08\x0c\xe2\x1b\xe1\x3b\x52\xe6\xb4\xac\x6c\x71\x74\x55\xff\xd8\x95\x40\x4a\xd1\x6f\xc5\x26\x3f\x6a\x2b\xaa\x5e\x3e\x05\x60\x68\x81\x04\x08\x7b\x30\x24\x4c\x01\x7e\x78\x2f\x92\x3d\xd1\x19\x5d\xad\x78\x84\x90\x72\xf9\xbb\xfa\xf4\xfe\x40\xe5\x5e\x98\x23\x04\xe6\x28\xc4\x54\xfa\xa5\x67\xd4\xf3\x4a\x78\xe1\xd8\xed\x69\xe4\x6a\x20\x53\x45\xee\x39\xd8\x4b\x43\x00\x21\xc1\x12\x1c\xe4\x06\x6c\xba\x3b\x45\x2c\x29\xc1\xb6\x51\x80\xc0\x88\x77\xc8\x96\xc5\xce\xf1\x48\xd1\x2d\x5e\x05\xcc\xd9\xd3\xdd\x29\xe4\xb8\x72\x6a\x38\x6f\xc9\x78\xd6\xb2\x62\xde\x64\xb9\xc7\x49\xbb\x91\x7b\x80\xea\x96\xed\xe0\xe5\x42\x7c\xcc\xbc\x10\x0f\x7e\x27\xb3\x2a\x0f\x7d\xdc\x4a\x03\xdc\x03\x49\x47\x9b\x60\x23\x7c\x9b\x26\x9c\xa9\x52\x5a\xf4\x0f\x1b\x94\x64\xec\xdb\x30\x50\x14\x81\x8d\x50\xac\x5b\x61\xc2\x3d\xf8\x0e\xf2\x21\x29\xca\x8a\x56\xd6\xd9\xba\xfc\xe7\xeb\x44\x2e\x69\xf2\xe2\x65\x8f\x5a\xee\xe7\x01\xc0\xf7\x30\x19\x3b\x45\x23\x3d\xcb\xac\xe2\x3d\x00\xcb\xe8\xee\xd4\xac\xb1\xd2\x4d\xb9\xd1\x7d\x7b\xd9\x33\x5b\x7f\x89\xe8\xb6\xa7\x5c\x2d\xce\xda\xa6\x51\x48\x2d\x48\x68\x38\x8f\x58\xf9\x94\x57\xb6\x85\x70\x14\x63\x0f\x52\x8a\x0a\xa6\xbb\xd5\xca\x55\x27\x14\xa6\x55\x3b\x62\x34\xec\x3c\x54\x52\x51\xfd\x46\x76\x47\x02\x61\x0b\x81\x56\x80\xe8\x14\xc6\x8b\x05\xea\xeb\x81\x76\x15\x2f\x56\xf2\x3a\x1a\xce\x41\x14\x45\xbe\xb1\x7c\x2f\xa6\x51\xec\x0e\xe9\x6c\xe7\x23\xbd\x71\x07\xda\x8e\x3b\x32\x00\x97\x8f\x90\xfa\xea\xb0\x3d\xc1\x0f\x9c\x4a\xaa\xc6\x7e\xb9\x15\x9b\x26\x3d\xe4\xc5\xec\xe3\x2f\x0e\x16\x73\x99\x1d\x08\x0c\xf8\xa2\x07\x1a\xd0\x66\x08\x38\xc8\x0d\x94\x0e\x85\x53\xaa\xe4\x96\x41\xd9\x52\x19\xc9\x44\x91\x0d\xdd\xa1\xf6\x5e\x1d\xa3\x63\xc8\x1e\xff\xea\x41\xb4\x19\xf3\x12\x54\x73\xed\xd4\x6f\xca\x69\x0f\xa1\x77\xcb\x51\x59\x44\x6e\x04\x94\x5e\xac\x68\x6b\xe5\x42\x9a\xbb\xdb\xf3\xb9\x4b\xb4\xfa\xe1\x62\xde\x9a\xc5\x13\x9f\x21\xbb\x4a\xc5\xfe\xfd\xaa\xa7\xcd\xa4\xdf\x50\xd0\x6c\x3c\xc4\x75\x28\xa5\x5a\xb3\x4c\x9c\x92\xff\x35\xfd\x1f\xdd\x2d\x1f\x26\x77\x85\x0f\xc5\x84\x0b\x3d\x91\xd9\x04\x47\x68\xab\x47\x5e\x3e\x43\x0f\xe4\xe1\xcc\xe5\x55\xf9\x51\xcf\xb1\x1c\xc6\x5f\xd9\x93\x49\x6e\x98\x47\x5c\x10\x0b\x1b\x01\x43\xe5\x4b\x9d\x30\xc3\x2b\xa3\xc0\x65\xc7\xea\xee\xb3\xe0\x96\x3a\x8f\xca\xb0\x3d\x4b\x0f\xbb\xb2\x8b\xa3\xe2\xc6\xf6\x91\x95\x7e\x62\x3b\x80\xac\x6c\x40\x62\xb6\x7a\xa7\x17\x9e\x10\xf2\xb2\xe7\x18\x16\x7a\x7e\x64\x35\x95\xcb\x6d\xac\x37\x4c\x31\x92\x51\xb1\x66\xea\xc4\xa9\xed\x20\x07\x72\x67\xea\x5d\x7c\x2a\x29\xb9\xec\xd5\x01\xb3\x10\x42\x59\x39\x08\x58\x1d\x98\x1d\xa6\x87\x57\x5e\xe1\x1e\x20\x03\x37\x14\x83\xf5\x62\x00\x6c\x7a\x10\x06\xeb\x59\x7b\x89\xde\x6a\x18\x6c\x81\x38\x6c\x61\xb1\xd8\x02\xf1\xd8\xc2\x60\xb2\x4e\x9e\x67\xc4\x65\xf0\x0c\xc2\x65\xea\x11\x52\x72\xbf\x70\xdc\xa9\xe9\x2b\x9f\xa0\x70\x4c\x5e\x28\xc6\x9c\x8a\x0c\x50\x19\xdd\xa6\x09\x23\x6a\x2f\x34\x7d\x08\xe5\x5f\xf5\x9f\xc5\xa2\x53\xb6\xb6\x3c\x64\x9b\xec\xdc\xdd\xb7\xd3\x8c\x79\xa2\xb5\xcc\x9a\x22\xb3\xb9\x6e\x57\x52\x33\x18\xdb\x9c\x9e\x1e\x20\xd8\xa8\x18\x67\x34\xe8\xa1\x0a\x08\x1e\x8f\x9a\x74\xf7\xbe\x64\x89\xbc\x7f\x79\x5c\x9d\xb2\x07\x6c\x84\x2a\xe1\x5a\xb1\x64\xe5\x8c\xcf\x3d\x70\x40\x65\x18\xa8\x39\x6f\x37\x8c\xe8\x7b\x09\x67\x0d\xb2\x2b\xb9\x77\x88\x20\x0c\x11\xda\x97\x29\xcb\x7b\xf6\xee\xbd\x70\xab\x77\xae\x5b\xa5\xfa\x95\x79\x52\x12\xae\x06\x55\x0b\xb6\x7d\x3f\x4d\xb8\xdf\xc8\xc4\x6e\xd2\x29\x6c\xd1\x62\x51\x12\xe4\xdf\x03\x76\xf9\xcd\x86\xaa\x17\xdb\xfd\x47\xf0\xa9\x7c\x09\x78\xc7\x22\xf9\xbe\xeb\x6c\x33\xf0\x3b\x2d\x04\x1c\x32\x9c\x1f\x7a\xbc\x94\x01\x37\xb1\x19\x77\xe0\x79\x83\xfe\x62\x09\x8e\x1d\x80\xa5\xd1\xa6\xb4\x64\x09\x4c\xd7\xcd\x14\x95\xa8\x76\x49\x83\x0f\x06\x2e\xb9\x75\xc5\xcd\x45\x99\x59\xb4\x15\x12\x29\x9f\xee\xf5\x16\x4b\xea\x5b\x4e\xdf\x25\x17\x70\xf2\x30\x0c\x0a\xd9\x29\xab\x4a\x48\x00\xb5\xda\xe2\x00\x60\x2b\x2e\x56\xd2\x3f\x79\x21\xc5\xc4\xba\x28\x59\x7b\x18\xb9\xdf\xb0\x8c\x59\xbd\xc8\x4a\x66\x5b\xe6\x2b\x29\xc0\x23\x0a\x7b\x1f\xa0\xb4\x6b\x82\xc6\xcb\x27\xf4\x04\x42\x7c\xd5\x93\xf2\x00\xde\xab\xea\x4c\xf9\xf3\xf1\x60\x35\xb4\xdc\xdd\x67\x40\xe5\x49\x49\x2a\x63\x17\xf2\x86\x26\x90\x02\x45\x0f\x70\xfb\x2c\x1c\x3f\x3b\x4f\xdb\xe0\x18\x0f\xdf\x20\xdf\xfe\x34\xe3\xbf\x3e\x1d\xdc\xe4\x31\x20\xef\xef\xb2\x4d\xd3\x1c\x00\xfb\x20\x68\x13\xcf\xd5\xf6\x7e\x23\x15\xaa\x25\xcd\xf2\x2d\x0b\x68\x18\xe0\xde\xe0\x89\x21\xcc\x1d\x39\x28\x28\x65\x20\xa7\x44\x86\x72\x4b\xa4\x79\xbf\x7a\xf9\xa5\x7f\xdf\x9d\xae\xc8\x4a\xa5\xd6\x0d\xf1\x7e\x51\x64\xa0\xa5\x90\x57\xf5\x29\xcd\x10\x60\x5d\xb8\xf1\xad\x0a\xa5\x2c\x62\x33\xff\xb3\xbd\xf9\xbd\xbf\xd3\xb3\xab\x8b\xe7\x03\x62\x76\x0e\xd3\x68\xf5\x45\x38\x59\x28\x1e\x24\x1f\x5b\x2c\xdd\x85\x2f\x86\x71\xdd\xf8\x25\x1a\x88\x0b\x7c\xe9\xa5\xc0\x74\x03\x81\x53\x69\xe9\x50\x3a\xc0\x32\xd3\xc9\x74\xd7\x8f\xd7\x50\xae\x3b\x60\xce\x72\xf0\x7b\xa1\x5e\xd6\xd9\x6f\x74\xa7\x31\xb3\xe9\xd3\x95\x9d\xc0\xac\xa0\x48\xb9\x9b\xc9\x73\x05\xd2\xad\x95\x98\x1d\xbc\xa3\xc2\x2d\xa4\x00\x46\x1f\x2c\xaa\x96\x2d\x73\x73\xdc\x61\x3d\xf6\x59\xf7\xe3\xa6\x45\xa1\x07\xcc\x57\xcc\xb0\xbf\x4e\xd9\x2b\xb3\x3a\xed\xc6\xa9\xa3\x2a\xc5\x00\xc2\x69\x42\x7b\xac\x95\xe6\x3c\x99\x0d\xf4\xd7\x88\x7a\xa3\x02\x0a\x52\x38\x47\x02\xeb\xd8\xd1\xcd\xb2\x1c\x44\x36\x0f\xa7\x9a\xc5\x34\xcb\x18\x69\x34\xc9\x0f\x0f\x9f\x22\x6e\x6d\x9e\x0d\xfe\x89\x90\xc0\xb0\x50\xf0\x96\xa5\x61\x40\x78\x73\x7d\xf8\x7b\x38\x81\x6d\xf3\x41\x2c\x6b\x57\x08\x37\x39\x61\x2b\xed\x0a\x21\x16\x34\x04\x6e\xcf\x00\x25\x0d\xf1\x2f\x22\x54\x62\x31\xe2\xf9\x73\x55\xce\xec\x67\xc5\xa0\xfd\x6d\x36\x5a\x87\xea\xd3\xe1\x53\x8d\x31\xbe\xbd\x9d\x97\xf6\xfa\x56\x27\x06\x73\x4a\x4c\xd3\xf6\xa9\x17\xfe\xe6\x9f\xe4\xbf\xb0\x65\x7a\x23\xe3\x03\x28\xc3\x3b\xfc\xe0\x69\xb9\x76\x5c\x32\x22\x75\x5c\xb7\xe7\x2a\x67\xfa\xc4\xe2\x4e\xac\x37\x47\xa8\xe3\xeb\x58\x8c\xbd\xb8\xd9\xbe\x60\xd3\xf5\x94\x7c\x7f\x79\x7b\x4c\xe6\x1f\x6e\x8f\x09\xd3\xd1\xf4\x25\x79\x97\x27\x9a\xa7\x7d\x76\x0e\x0b\x22\xa0\xfb\xef\xaf\x9f\x1b\x31\x6c\x0d\x41\x94\xbf\x2c\xbb\x55\x4a\xf5\xe6\x80\x7d\x7c\x3e\x37\xed\x3f\xc7\x36\xf6\xed\x60\x3f\x46\xf1\x77\x10\xa6\x39\x2d\xb6\x0a\x97\xe9\xf6\x62\xe8\x66\x10\xc2\xa6\xeb\x53\x32\x21\xec\x81\x46\xfa\x94\x9c\xac\xa4\x24\x13\xeb\x24\x76\x4a\x4e\x96\x34\x23\x57\xef\x6f\x2f\x4f\xd1\x01\x8d\x09\x9d\xed\xc9\xb6\x8f\x3d\x7f\x7f\xf5\xf6\xcf\x16\x73\xee\x09\xe3\xa0\x80\xa1\x64\x71\x04\x83\xa0\x16\xd9\xfc\x89\xa3\x38\x5d\xc7\x94\xdc\xf6\x2d\x7f\x47\x13\x1e\xd3\x42\xd9\x07\x81\x17\x58\xeb\x4c\x87\x8a\x9b\x95\xcf\x90\x33\x57\x8b\x0f\xb9\xbd\x9d\x1b\x08\x7b\x04\x80\x0a\x04\xbc\x01\xf4\x70\x5a\x35\xd3\xe0\x1f\xbb\x64\x0e\x10\x56\x8f\xb8\x92\xd9\xf6\xd4\x81\x7d\x91\xbf\x7a\xf5\x65\x64\x3a\x86\x7f\xb1\x53\x9b\x4c\x68\x90\xda\x0b\x8f\x1a\xcc\x0a\xba\x33\x08\x23\x2b\xb6\xb0\xec\x7a\x62\xe1\xfd\x49\x23\x60\x1f\x3d\xae\x26\x07\xe4\x63\x40\x00\x3c\xad\x18\x69\x97\xfe\x94\x9d\x0e\x4d\x98\x30\x00\x21\xf5\x77\xc5\xa3\xed\x40\x9a\x39\x3b\x7f\x37\x1f\xea\x01\x02\xc8\xa8\x7d\xee\x3e\x96\xf2\xea\xd3\x99\xd9\xda\x18\x4c\xac\xb2\x07\x43\x5a\x01\xc3\x56\x17\xed\x90\xaf\xd0\x43\xbf\xc9\xd3\xf2\x55\xd5\x3e\x55\xd4\x39\x2c\xac\xe6\x66\x9c\x2e\xd6\x16\xec\xe9\xa6\xd1\xee\x4d\x87\x9e\x72\xd0\x49\x8c\xba\x13\xbf\xd4\xe9\x3c\x70\x26\x52\xf8\x50\x02\xa0\x44\x58\xed\xf3\x00\x61\x0d\x82\x96\x0c\x80\xd1\x2b\x1f\x5c\x54\xa1\x92\xaa\x0f\x2b\x6b\xbd\x04\xd3\xa4\x66\xd1\x46\xf0\xa8\x99\x94\xac\xfa\x80\x5a\x14\xd5\xff\x7c\x9b\x4a\x2f\x57\xf6\x9d\x61\xca\x93\xe7\x8a\xf0\x54\x63\x9c\xdb\x8a\x67\xec\x9e\x26\x49\xcf\x54\x11\x5b\x58\xa5\x6c\xae\xd0\x71\x8a\x89\x95\xc4\x78\x01\xeb\xa2\xd7\x7f\x35\x7a\x6d\x78\xd0\xec\xd3\x37\xc3\x74\x33\x45\x5f\x32\xf6\x00\x86\xab\x3e\x13\x18\xee\x81\x5c\x91\x6f\xd0\xcb\x1b\x56\x08\x7d\x5d\x46\x1b\x49\xae\x91\x68\xdb\x62\x85\x29\x17\x6b\xd5\x6d\x03\x1b\xb4\xde\x01\xc8\x20\x0d\x87\xdb\xb4\x00\x64\x36\x77\x61\x37\x9f\xec\x18\x56\x51\x6e\x21\x3f\xee\x43\x79\xee\x2c\x63\xad\x50\x18\x00\x81\x96\xc0\x89\x96\xc5\xbd\xb3\xad\x3d\xb7\xde\x22\x95\x1d\xc4\x83\x64\xdb\xb2\xd6\x57\x28\x88\xa5\xba\xb8\x4f\x42\x1a\xa0\x8c\xc0\x22\x48\xdd\x95\x01\x86\x26\xdb\x2b\x9f\xa1\x64\xa9\x5a\x71\xb4\x9c\x8f\x0d\xf8\x41\xab\xdd\x1d\xdb\xdb\xa3\x9d\x52\x6e\x53\xe9\x75\x0f\x6f\x44\x56\xc2\x1e\x74\x46\x2b\x30\xa5\x4b\x99\xeb\x01\x84\xe4\xa9\x24\x47\x21\xb5\xb9\x7d\xc3\x4e\xc6\x15\x36\xee\xf1\xe8\x81\x26\xdd\x9e\x75\x23\xc1\x18\x09\xc6\xaf\x9b\x60\x08\xa9\x1d\x5b\xd5\x0a\x96\x6e\xaf\x9b\x81\xfe\x36\xc3\x3c\x6d\x1a\x0e\xa1\x8e\xe5\xeb\xf1\x09\xb5\xcd\xda\x01\xd6\x73\x8f\x07\xb8\xf6\x3c\xce\xa9\x27\xfd\xa5\x02\x77\x71\xe4\xc3\xf6\x09\x69\x7f\xc3\xb0\x05\x1a\x5e\x9f\x13\x70\x30\x99\xc2\xa9\xe7\x59\x97\x66\xde\x7a\xe7\xda\x7d\xbe\x84\x50\xa3\x6b\x88\x94\x73\x51\x5f\xa8\x36\x7f\xb1\x64\x11\xcd\x95\xf5\x89\xeb\x31\x25\x14\x53\x8c\x58\x06\x7d\x14\x7e\x75\x2f\x51\x15\xff\xce\x86\x7f\x55\xbc\x04\xfb\x48\x2c\xba\x0f\x9e\xfa\x1e\x70\xc7\xbe\xff\x1b\xfe\x01\x92\x4a\xe5\xaf\xdd\x9b\xf2\xef\x9b\xf3\x5b\x7c\xdb\x3e\x8c\xed\xf1\x2d\xd7\xcc\x39\xd9\x51\xe1\x0e\x88\x33\xca\x82\xab\x21\x79\x3d\xf9\xe2\xeb\xaf\x3b\x54\xfe\x9f\xef\xd8\xa3\x23\xc6\x30\x6a\x7c\x83\xee\x9c\xc3\xa2\xd2\x88\x96\x1d\x02\x24\xf6\x34\x06\xa4\x8d\x01\x69\xfd\x66\xcf\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\xb6\x15\x8f\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\xb5\xad\x64\xc4\x65\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\x1a\x3e\x63\x40\xda\x18\x90\x56\x7f\xc6\x80\xb4\x31\x20\xad\x78\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x0b\x76\x3a\x06\xa4\x79\xb0\x18\x03\xd2\xc6\x80\xb4\x31\x20\xad\xfa\xfc\x9c\x01\x69\x1d\xe5\x15\x08\x99\xd8\x2c\xbe\xa1\x77\x43\xca\xf4\x07\xf9\x04\x7b\x37\x1e\x91\xbe\xbb\x7a\xab\xc6\xfc\xdd\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x3b\x3c\xbd\x31\x7f\xf7\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x95\xcf\xe8\x2e\x55\x3e\xa3\xbb\xd4\xe8\x2e\xf5\x8b\x72\x31\x18\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x0a\x36\xfe\x95\xe1\xb2\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x02\xcf\xe8\x2e\x35\xba\x4b\x15\xcf\xe8\x2e\x35\xba\x4b\x8d\xee\x52\xc1\x4e\x47\x77\x29\x0f\x16\xa3\xbb\xd4\xe8\x2e\x35\xba\x4b\x55\x9f\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\x5d\x79\xc6\xfc\xdd\x63\xfe\xee\x31\x7f\xf7\xa0\x11\xc6\xfc\xdd\x63\xfe\xee\x31\x7f\xf7\x98\x8e\x75\x4c\xc7\x3a\xe6\xef\x1e\xf3\x77\x8f\xf9\xbb\xdb\xe7\x3f\xe6\xef\x1e\x09\xc6\x48\x30\xc6\xfc\xdd\x63\xfe\xee\xca\x33\xe6\xef\x1e\xf3\x77\xd7\x9e\x31\x7f\x77\xbb\x00\x39\xe6\xef\x1e\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\xcd\x7f\xc6\x80\xb4\x31\x20\xed\x17\x15\xc4\x31\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x16\x6c\xfc\x2b\xc3\x65\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x05\x9e\x31\x20\x6d\x0c\x48\x2b\x9e\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x82\x9d\x8e\x01\x69\x1e\x2c\xc6\x80\xb4\x31\x20\x6d\x0c\x48\xab\x3e\xff\xde\xf9\xbb\x21\x29\x77\x5f\xf6\xee\xf7\xa6\x51\x07\xfe\xae\x6e\xba\xc4\xd6\xc1\x79\xa2\xdb\x1d\xe6\x4d\x06\x45\x89\xe9\x14\x2c\x8b\xf1\x14\x75\x27\x85\xe6\x77\xc3\xd7\x46\x10\x5d\x1c\x41\x7f\x8b\x23\x20\x97\xb6\x6d\xa8\x6b\xba\x32\x02\x94\x06\x06\x0d\x3a\x48\xe4\x3d\xcb\x70\x36\xe8\xc6\xe8\x4d\x4e\x11\xb9\xe5\x5a\x1b\xbc\xcb\x5d\x04\x4c\xa8\xd3\x48\x0a\xc5\x31\x6d\x39\xea\xf8\x16\x47\x5c\xac\xb8\xe0\x9a\x2d\x8e\xc8\x84\x80\xf3\x9c\xb7\x1c\x87\xd5\xed\x3c\x49\x42\x95\x9e\x92\x62\x65\x41\x90\x98\xb9\xf2\x98\x09\xcd\x23\x9a\xd8\x09\xd6\xfb\xe1\x82\xd0\x24\xdd\x50\x91\x6f\x59\xe6\xb5\x83\x8c\xe1\xa1\x5e\x2d\x2e\xb7\xea\x28\xf4\x10\x09\xca\xa7\x78\x36\x44\xbe\x5d\x36\x35\x85\x1d\x6c\x63\x8d\xc8\xdf\xfa\x6a\x1a\x3c\x28\x9e\xb2\x26\x57\x56\xe6\xe4\xd1\x1d\xfe\x9f\xcc\x83\xe7\xdf\x4c\xb9\x26\x74\x7b\xc0\xb5\xe1\x1a\x1e\x58\xb4\x74\x34\xaf\x5d\x75\x50\xce\xc3\xb0\x0e\x49\x22\xef\x11\x15\xa0\x06\xa9\xd0\xa9\x20\x63\xf7\x7b\x54\x2f\xe0\x6d\xff\x98\x70\xcd\x32\x0a\x92\x7d\xa8\xe7\xc5\x82\x4c\x30\x5c\xc9\x1c\x94\x6d\x4a\x33\xae\xa4\x38\x26\x10\xb3\xe8\xd4\x02\xae\xcb\x95\x94\x64\x49\x33\xd0\x55\x14\xc3\xfd\xe6\xc0\xe1\xca\xf1\x0c\x65\x67\x7f\xcb\x69\xf2\x3b\xf4\xb0\x75\x9c\x2a\x5f\x59\x16\x95\x2b\x68\xe3\x34\xef\xc5\x90\xe1\x7b\xf9\x13\xcc\x83\x96\x7e\x61\xcb\xf2\x9f\x11\xfe\x73\x3a\x9d\x92\x7f\x7a\x33\xd0\x59\xce\x5c\xa0\x4c\xe1\x6b\x8a\x63\xfc\x89\x84\x7d\xdb\xad\xc9\xa1\x67\xa8\x72\xae\x66\x01\x5c\x0c\x98\x5c\x68\xb0\x03\xe7\x0b\x83\x75\x4d\x30\xbc\x25\xde\x9c\x37\x54\xbd\x80\xfe\x3e\x1a\xe2\xf2\xb2\x1c\xfa\xb6\x18\x99\xea\x72\x77\xbc\x9d\xf9\x0d\x1c\xd2\x20\xce\xb7\x5d\x14\xea\x49\xb9\x82\xb6\xa0\x9d\x82\xff\xe6\xaf\x5e\x7d\xf1\x06\xff\x1f\xdf\x14\xdf\xdc\x6c\x64\xa6\x27\x11\xcf\xa2\x9c\x6b\xe0\xaa\xec\x47\xa1\x81\xfe\xf1\x8f\xce\xaf\xc1\x8e\xa1\x5f\x60\x9b\x97\x45\xa3\x94\x66\xcc\x72\xe4\xeb\x4c\xe6\xa9\xe1\xc8\x17\x0b\x4d\x93\xe4\x45\xd0\x1e\x65\x53\xda\xa3\x57\x4a\x81\x2f\x5c\x6f\xee\x0c\xd3\x24\xf1\x54\x4c\x70\x41\xdf\xe2\x79\x40\x19\x2a\x2c\x1e\x51\x73\xb5\x11\xcf\x38\x4f\x4d\x1f\x65\xaa\x63\x32\x39\x26\x1f\x01\x0e\x27\x53\x72\x03\x57\x8e\xd8\x2b\xd7\xda\xe9\x56\x66\x8c\xa4\x86\xfd\x57\x8a\xef\x18\x59\x62\x8c\xc1\xde\xa9\x37\xad\xe2\x99\x30\x15\xd1\x94\x91\x68\x43\x33\x1a\x69\x96\xd9\x69\x5f\xa2\xab\x76\xf0\x32\xbc\x00\xc4\xbf\xa5\x31\x9b\xe4\x29\x1e\x0b\xf5\xb2\x40\x47\x10\xd8\x66\x51\xc7\x3d\x5b\x1a\xc1\x81\x59\xe4\xe1\xef\x78\xcc\xd2\x44\xee\xb7\x4c\x04\xd1\xa9\xfd\x3e\xcd\x64\xec\x0e\x29\xf4\x6b\xee\x14\xe0\xa4\x4c\x0a\xcd\x44\xec\x1d\x75\x1a\xdd\xd9\x1f\xfe\x69\x9a\x97\xfd\x93\xdf\xfc\xbe\xed\x06\xc4\x6c\xe7\xba\xff\x0d\xa9\xdd\x82\x10\x2a\xeb\xe2\xa8\xaa\xca\xc0\x0e\x73\x75\x87\x26\xb0\x5b\x6f\xb1\x42\xff\xd5\x92\x2c\x84\x96\xe5\x28\x16\x9e\x51\xab\x50\xc0\xf2\x1c\x52\xb8\x49\x3a\x5d\x41\xc8\xec\xdc\xb5\x46\x30\x3a\x0c\xa0\xa9\x60\x9b\xe0\x22\xe6\x11\x88\x9e\xf7\x1b\x08\x98\xf6\x19\x59\xdf\x2b\xcb\x4a\x39\x41\x3c\x65\xee\x9d\xb4\x05\x3c\x8e\xed\x5f\x4b\xa9\x37\x53\x82\x8e\x92\x40\x4d\x1e\x52\xc3\xa4\xe8\x64\xef\xc9\x52\x2f\xa0\xf8\x48\xd0\x03\xd6\xc3\xa3\x82\x44\x19\xb3\xf1\x19\xca\xde\x6e\x99\x11\xc1\x93\x97\xc7\x2e\xc6\x22\x66\x2b\x9a\x27\x5a\x11\x5c\x96\x01\x5d\x16\xb7\xb0\xd4\x5a\x92\x7b\x83\x2b\x67\x56\x70\x33\x93\xb8\xb4\xff\x34\xf7\xd1\x62\xce\xa2\x02\x07\xfa\xfb\x81\x6a\xdd\x0e\x13\xea\x95\x2b\xbc\x5d\x13\xf2\x17\xcb\x17\x99\xa9\xb8\x31\xfe\x7a\x6c\x89\x83\xe1\x32\xc1\x6c\xe0\x86\xc4\x3a\x29\x2f\xb8\x88\x92\xbc\x75\xc6\x1b\x46\x22\x6a\x38\x4f\xe8\xa0\xec\x86\x20\x79\x16\xb2\x58\x0c\x74\xf7\x32\x30\x93\xcb\xd6\xfa\x2b\xf5\xb9\x55\x26\x66\x50\x52\xbd\xfb\xf6\x75\x06\x8f\x47\x7d\x0e\x8d\x01\x41\x83\x15\xd8\x0d\x2b\x51\x07\xf1\x82\xc0\xa3\x55\xe5\xf5\x33\x46\xcd\x3d\x8a\xee\x08\x5d\x53\x2e\x8e\xed\x69\x40\xb3\x47\x72\x4f\xf7\xca\x7a\xc1\x07\x4f\xb1\xf3\x56\x40\x37\x85\x63\x22\xd8\x8e\x65\x95\xf3\x16\x94\xee\x07\x96\xf7\x29\xa1\x40\x18\x10\x8d\xc2\xa0\x97\x4a\xa5\xf8\x32\x71\x03\x97\x7e\x58\xe6\x83\x9b\x94\x45\x61\x79\x0f\xd7\xd6\xee\x99\xd6\x2d\x59\xb6\x0a\x6d\x61\x59\xaf\xf9\x2b\xd0\x8c\xd8\xb7\xb7\x2b\x2d\x33\xba\x66\xee\x27\xa5\xa9\xce\x11\x30\x68\x72\x62\xf1\x95\x67\x0c\xb8\xe3\x22\x36\x78\xc8\x81\x34\x4d\xf2\x8c\x26\xe5\x2f\x91\x14\x68\x01\x56\xa7\xe4\x2f\x7f\x35\xbf\x98\xfe\x59\x6c\x23\x3c\xed\xaf\x0b\x31\x99\x4c\x16\x82\xa6\xdc\x05\x8a\x12\x9a\x72\xf6\xa0\x99\x80\x56\xd3\xbb\x6f\xd4\x94\xcb\x93\xdd\xeb\x85\xc0\x11\xcf\x73\xa5\xe5\xf6\x9a\xa1\x29\xeb\x82\x81\xb8\x05\x78\xba\x12\x8e\x09\x0a\x18\x22\xd0\xe5\x55\x31\xad\xa6\x51\x16\x4f\xd3\x4c\x1a\x08\x44\x80\x74\xa6\x32\x5b\x2f\x84\xc1\x66\xf0\x05\xb0\x28\xa7\xa4\xa5\x59\xd5\x12\x82\x53\x29\xfd\x72\xf1\xd7\x84\x2b\xfd\xc7\xda\x9b\xb7\x5c\xe9\x2a\x80\xbc\x39\x59\xb8\x73\xb1\xce\x13\x9a\xf9\xaf\x00\x5e\x91\x34\x9b\x56\x68\x4f\x40\x92\xdb\x39\xf0\x99\x3f\x26\x76\x99\x06\x3a\xd0\x53\xb4\x61\xdb\x32\x1c\x55\xa6\x4c\x9c\xcd\x67\x3f\x7c\x79\x53\xfd\xbd\xe9\xf8\xea\xdc\x8b\xad\x0b\x57\x39\xe4\x84\xfd\x2d\xe7\x3b\x9a\x18\x84\x6a\xcf\x75\xdd\x27\xd9\x3b\xbc\x2d\xea\x31\x6f\x77\xab\x67\xb5\x9a\xb5\xc2\x4c\xd5\x7a\x07\xa0\x37\x3d\x4e\xc6\xae\x98\xc5\x76\x79\x38\x0f\xc0\x16\x16\xd5\xd3\x90\xde\x43\xae\x80\xba\xc3\x89\x9f\x02\x0b\xc0\x32\xe5\x84\xc4\x48\x8a\x1d\xcb\x34\xc9\x58\x24\xd7\x82\xff\xbd\xe8\x5c\x39\x7f\x05\xa8\xde\xd5\x20\x14\x5c\x68\x96\x19\x66\x01\xae\x3a\x6a\x65\xb7\x74\x4f\x32\x66\x86\x21\xb9\xf0\x3a\x74\xde\x52\xef\x0c\x93\xc8\xc5\x4a\x9e\x42\x3e\x21\x75\x7a\x72\xb2\xe6\xda\x1d\xec\x48\x6e\xb7\xb9\xe0\x7a\x7f\x02\x16\x54\xbe\xcc\xb5\xcc\xd4\x49\xcc\x76\x2c\x39\x51\x7c\x3d\xa1\x59\xb4\xe1\x9a\x45\x3a\xcf\xd8\x09\x4d\xf9\x04\xe6\x2e\xe0\x66\x4d\xb7\xf1\xb3\xcc\xde\x04\xf5\x3c\x84\x07\x9a\xe8\x03\x8e\x6e\xd7\x36\x98\x13\x6c\x83\x70\x91\x0b\x46\x32\x5e\x40\xdb\xb9\x8a\x5c\x5f\xde\xdc\x12\x37\x7a\x30\x60\x19\x81\x5f\x7e\xa9\xca\x7d\x30\x40\xe3\x62\xe5\xf8\x15\x50\x5a\xfb\xe2\x3d\x92\xcc\x84\x07\x58\x57\x95\x2f\xb7\x5c\x2b\x2f\x11\x8d\x9c\x92\xf3\x42\x9b\x9d\xa7\x31\xd5\x2c\x9e\x92\x99\x20\xe7\x74\xcb\x92\x73\xaa\xd8\x67\xdf\x05\x60\xda\x26\x06\xb6\x43\xf7\xa1\x25\x78\xbc\x4d\x55\x57\xa0\xa9\x96\x6d\x2b\xef\xa3\xa1\x38\xd5\xe8\x25\x17\xec\x56\x86\x97\xd3\x06\xee\x2a\x1f\xb7\xa5\x35\xa2\xd4\xa1\xfa\x6e\xf1\xb3\x6f\x94\xf8\x73\xae\x80\xb3\x79\x81\xe9\x50\xea\x5d\xb2\x44\x9a\x53\x25\xad\xee\x85\x85\x0c\xa6\xed\x74\xfa\xbf\x05\xa5\x04\x3a\x09\xff\xf7\xcc\x86\xa8\x9d\x12\x24\x50\x27\x9a\x6d\x53\xc0\x57\x27\xf8\x03\x78\xd7\x95\x1e\x19\x99\x9a\x64\x4b\x1a\x4d\xf7\x74\x9b\x2c\xc4\x4f\x3f\xf1\x15\x61\x7f\x23\xd3\xeb\x6f\xcf\xce\xcf\xa5\x58\xf1\x35\x59\x1c\x99\x06\x8b\xa3\x7f\xfe\xd3\xf4\x3e\x03\x56\x96\x11\x4a\xa2\x24\x57\x9a\x65\x99\x4c\x58\x51\x70\xae\xde\x37\xe8\xb6\xa4\x60\x42\x1f\x9b\x8f\xa1\x64\x1d\x60\x10\xed\x50\x69\xcb\xa4\x9c\x9c\x54\xba\x2b\x58\x02\x8f\x83\x5e\xcb\x84\x55\x19\x03\x58\x04\xcd\xf5\x46\x66\xfc\xef\xe8\xaa\xe5\x71\x07\x01\xea\xdf\x32\xf0\x42\x00\x63\x0a\x0d\x9f\x91\x2b\x19\xa3\xd6\x80\xdc\x5b\x8f\x2c\x2d\xc9\x56\x0a\x0e\x9e\xc7\x32\x23\x31\x4b\x18\xde\x73\x24\xb9\x34\xe5\xdf\x1b\x56\xc1\xec\x8b\xd9\xc2\xbf\xe2\xae\x16\x78\xb8\x38\xa2\x13\x22\x4c\xdf\xf8\xe7\x8e\x65\x4b\xff\xd5\xbd\x6f\x9d\x98\xc0\xd5\x28\xff\x5a\xe3\xad\x7c\x46\xe6\x2e\x43\x99\x37\xb7\x32\x71\x14\x7b\xe0\x4a\x43\x3d\x47\xaa\x48\x4a\x33\x7b\xb9\xce\xde\x91\x72\xb5\x87\x4f\x3a\x95\x71\xcb\x9c\xd7\x4c\xb7\xcd\xb8\x58\xce\x33\x9c\x40\xd1\xb1\x8d\x5f\x13\x3c\x85\x82\x98\xb1\x11\x81\x04\x02\xc6\xc6\xcd\x25\x4c\x5b\x4b\x75\x7d\x9a\x61\x56\xac\x6b\xee\x3c\x4d\xa5\x4c\x94\xff\x83\x21\x3d\xd9\x0e\x73\x4b\x84\x97\xe5\x56\xf2\xe9\xc3\x2f\x13\x19\xdd\xd1\x15\xb2\xa4\xac\x32\x0d\xba\x85\x97\xb5\xdf\x36\x54\xc4\x49\xdb\x11\xe9\x00\x37\x08\xd4\xac\xfc\x1b\x89\x5e\xf9\x37\x42\x35\xb8\x3d\x8d\x6b\xb8\xa5\x82\xae\x99\x22\x1b\xa9\xb4\xe7\xba\xf5\x24\x00\xa9\xf4\xf9\x19\x57\xf9\x8c\x5c\x31\x16\x83\xde\xc0\x08\x9e\x5a\xda\xb6\x0e\x83\x79\xa9\x40\x9e\x6a\x69\x81\x9e\x07\x2c\xb0\x7d\x49\xcf\xc0\xc8\x7b\x5e\x6e\x0c\xe2\xe6\x3c\x2b\x34\x27\xa8\x3c\xe0\xda\xf4\xa8\x88\x61\x81\x22\x68\xf2\x34\xeb\x31\xe7\xc2\x3b\x16\x91\x3f\x7a\x70\x65\xcf\x50\x5c\x37\xf3\x90\xf7\xc2\x9b\x4b\x63\xd9\xcf\xec\xb2\x09\x75\x0a\x18\xc2\x57\x44\x48\xc1\x10\x85\xa9\x36\xf8\x3c\x73\xdb\x88\x14\xb6\xed\x24\x3c\xc3\xf3\x0d\x38\x31\xda\x54\x82\x08\x8a\xa3\x0f\x94\xb3\x41\x60\xbe\xe5\x02\x75\x36\x9f\x89\xce\xc8\x84\x5d\x33\x74\xc8\x77\xfb\xd3\xd1\xbf\x69\x16\xa0\x81\xbd\xc3\xa8\x1c\xb8\x15\xb3\x35\x13\xdb\x41\x55\xe5\x39\xa0\x0f\xdf\xb8\x8f\x38\x42\xed\x95\x66\x5b\x0b\xb9\x82\xf5\xb8\xa6\x22\xda\xb0\x6c\xe2\x78\xca\x53\x72\x0e\x10\xf7\x29\xbd\xc1\xee\xfe\x12\xd0\x91\xc1\x90\x2e\x54\xf6\x41\x51\x61\x1a\xdd\xdd\xd3\x2c\x46\xfe\x81\x6a\xbe\xe4\x09\xd7\xfb\x21\xdc\x8d\xe9\xde\xe7\x68\xfa\x38\x16\x7f\x56\x17\x94\x6d\xa5\xb8\x61\x7d\xcc\x0a\x34\xfe\x99\x18\x94\x2a\x3f\x62\x18\xe5\xf3\xab\x99\xe1\x12\xd7\x5c\x10\x01\x78\x4d\x4b\x73\x9f\x80\x34\x1f\x23\xf1\x44\xd9\xd3\x0f\x98\x7d\x3c\x9d\xaf\xb1\x2a\x4e\xaf\x80\x1d\x77\x22\xb5\x67\xc4\x45\x22\xdf\x24\xdc\x51\x7b\xd0\x8e\xaf\x4a\x2f\x1e\x5b\xb8\xda\xb2\xfc\x4e\xdd\xe7\xf2\x30\x3d\x73\x79\x75\xb6\xce\x95\xbe\xbe\x8a\x98\xab\x48\xee\x58\xb6\x77\xd7\xa4\x6b\x55\x05\xb5\x81\xf9\x74\xf0\x5e\xa4\x9f\x01\x18\x36\x50\xf9\x93\xf3\x7f\x0b\x63\xcb\x0f\xd6\x68\xe0\x96\x53\xd8\x09\x66\x73\xb4\x91\xd1\x78\x67\x04\x2c\x55\x42\x82\xf4\xb1\x8a\x81\x5e\x6f\xf7\xe9\x86\xaa\x69\x98\x99\x24\xe7\xb3\x8b\x6b\x42\x73\x2d\x27\x31\x33\xe2\x2c\x18\x0d\x05\x5c\x78\x1a\x6f\xed\x69\x2b\xa9\x28\x22\x75\xb2\xa5\xe9\x23\x0e\x18\x7e\x6c\xbe\xed\x3c\x43\x87\x73\xd4\x27\x3e\x39\xa8\x83\xd9\x30\x02\xf6\xfc\x45\x09\xa3\xa0\xc1\x30\x3c\xbe\x15\x78\x3f\x08\xba\xa3\x3c\xa1\x4b\x83\x20\x12\xba\xf6\x00\x95\xfa\x70\x7e\xe6\x2c\x13\x20\x8b\x29\x0c\x2f\x8b\xaa\x24\xd9\xcb\x2f\xc6\x91\xa7\xf5\x13\xab\x4d\xc3\x54\xfe\xc7\x3a\xa9\x32\x70\xf6\xfc\x14\xfd\x28\x7d\xde\x72\xaf\xed\x55\xe2\x62\x3d\xe4\x4a\xd8\xd6\x69\xc5\xcb\x64\xa0\x3c\x62\x0f\xd8\x72\xef\xc0\x61\x26\xee\x14\xf6\xe5\xfa\x3f\x19\xfb\xd4\xd0\x8d\x77\x9b\x9c\x15\xad\x9b\x77\x27\x75\x36\xb7\x86\x46\x53\x17\xff\x21\x63\x77\x7c\x1e\x37\xe7\x8e\xb3\xe7\x9d\xa0\xe2\xf4\x58\x41\x52\x91\x1d\xcd\xb8\xcc\x15\x39\xbf\xbe\xc0\xdb\x8e\x67\xe9\x89\x98\x51\x4c\x5a\xb1\x62\x09\x7f\xc0\x7e\x3d\x38\x7a\xbf\x56\xd9\x39\x90\x58\xd6\x69\xca\x58\xa6\xea\x5d\x2d\xd7\x69\xa3\xa3\xe2\xb7\x66\x37\x83\xe4\xae\x36\x41\x08\x47\x0c\x9e\xd2\xc6\x6b\xc5\x7c\x84\xdb\xfa\x4d\xb0\x75\x2b\xc7\xde\x22\xa9\x74\x4a\x74\xb8\x31\x80\x8e\xe0\x40\x3c\x42\x88\xbb\x6f\x9e\x96\x5c\xe9\x82\x57\x16\x71\xc1\xfd\x1a\xdc\x03\x07\x47\x0a\xc3\x0a\x67\x3a\x4f\x3f\x97\xc0\xdc\x79\x5a\x06\xcb\x3c\x5d\x62\x8e\xbf\xd6\xfa\x02\x03\xab\x22\xad\xcb\x22\x5d\xb4\x67\xe0\xf6\x04\x26\x36\x0c\xe1\x5b\x0f\x3a\x33\xc2\x93\xea\x85\x86\x9d\x97\x5b\x30\x74\x3a\xcf\x13\x29\x90\xf1\x02\x67\x67\xe7\x24\x0a\x48\x26\x4f\xd7\x19\x8d\x6d\xe8\xde\xee\x8b\xe9\x1b\x64\x1b\x23\x4c\xf2\xf3\x8c\x2c\x19\xc9\xd8\x56\xee\x58\x6c\x1d\x24\xdd\x07\x32\x33\x2b\x5c\x65\x4c\x6d\x08\x17\x4a\xd3\x24\x79\x52\xe9\xb9\x03\x97\x54\x51\xd2\xd0\x93\x55\x08\x28\xdf\x25\x54\x08\x96\x54\xb9\xf4\x67\x64\x9e\x43\x6c\x1a\x00\xc2\x33\x00\x6c\xf2\xe5\x34\x92\xdb\x93\x48\x66\x4c\xaa\x93\x15\x7e\x7c\xb2\x4c\xe4\xf2\x64\x4b\x4d\x07\x27\x17\x32\xca\xb7\xce\xca\x74\x02\xa2\x91\x6d\x66\x85\x10\x23\x83\x3c\xb5\x64\x60\x47\xf0\x45\x83\xa7\x55\xe2\x3d\xd5\x79\x6d\x39\xa2\x4f\xca\xd4\x15\x84\xd5\x6e\xb1\x91\xda\x31\x74\xb1\xb9\xd7\xa5\x1c\x27\x68\x52\x13\x83\x43\x12\xdc\x53\x69\x00\x04\x4d\x26\xe5\xa6\x3d\xa9\xdc\x5f\x74\x7b\x90\x9c\x2f\x30\x6d\x6a\xa7\x54\xff\x33\x88\xf3\xc3\xc1\xda\xbe\x35\xad\x00\x2f\xe4\xe7\xcf\xa0\x67\x79\x5a\x70\xff\xf4\x13\x13\xf1\x3f\xff\x39\xd8\x82\x03\x74\xc5\xa9\x37\x20\xdf\xc6\x96\x0a\xbe\x62\x4a\x3b\x74\xac\xbc\x63\x6e\xad\x7d\x2c\x3b\x26\x54\x91\x7b\x96\xc0\x67\x36\xbe\xb7\xe4\x82\xd1\x39\xc7\xc9\xe1\x56\xb6\x93\xc2\xb4\x85\x80\x21\x44\x78\xd0\xc8\xb4\x60\x19\xca\x34\x5c\x54\x22\x50\x1c\x17\x50\xdc\xa6\x42\xa7\x52\xf7\xe3\x48\x55\xe7\x7d\xe9\x82\x17\xb1\x2e\x8f\xce\x84\xf6\x8d\x9a\xd0\x34\x2d\x3e\x2c\xac\xa1\x35\x1f\x74\xf0\x11\x7d\xeb\x7f\xd9\xfc\x96\x58\x9a\x71\xa3\x33\xaa\xd9\x7a\x7f\x6a\x6d\x62\xd3\x0f\x95\x9f\xcd\x66\xfd\xf4\x13\xd1\xf2\xcf\x74\x9b\xd4\x5f\x92\x7f\x10\x2e\x62\x26\x34\xf9\x0a\xdb\xb1\x44\x31\xf3\x2f\x52\x58\x10\xaf\x65\x92\x70\xb1\xfe\xe0\x69\x2a\x33\xff\xa7\x62\x7e\x5b\xfa\xe0\x09\xa5\xa7\xe4\xb5\x77\x5a\x08\x71\x27\xc3\x2d\xb0\x6e\x35\x4e\xaa\x8b\x0d\x2d\xb7\x66\x3c\x36\x7b\x1a\xf0\x9c\x2c\x33\x72\x98\x0b\x29\xd5\x29\x49\xb8\xc8\x1f\x5c\x03\xc3\x1f\x5b\xd1\xd4\x99\x3d\x11\x6a\x57\x5e\x77\x0e\x02\x2d\x83\xfc\xf4\x93\x4d\x04\xfa\x1f\x77\xc7\xe4\x3f\x76\xe4\xf4\xf7\xd5\xcf\x49\xf9\x3d\x34\xfe\x8f\x3b\xf2\xcf\x7f\x9e\x92\xc5\x91\xf9\xf7\xce\xbc\x3d\xf2\xba\x62\x22\x26\x16\xf8\x0e\x58\x00\x7d\x99\xb0\xac\x91\xda\xfc\x19\x79\x47\xef\x18\x51\x79\xe6\xee\x0c\x28\xd1\x55\xb4\x61\x71\x9e\xa0\xdf\x26\x4d\x12\x24\x45\x9e\xf1\x79\x62\xa3\xf1\x4f\xc9\x95\xbc\xb1\x8d\xcb\xb7\xe0\x62\x93\x51\xb3\x46\x72\x59\xd1\x64\xe3\x88\xd9\x9d\x75\x10\x8b\x31\xcc\x34\xca\x38\x86\x71\xd0\x38\x9e\x58\x53\x7c\xc6\xec\x24\x8c\x34\xef\x0f\x7c\xc7\xf6\xa7\xe4\xdc\x7e\x71\x16\xc7\x52\xa8\xf7\xb5\x00\xc0\xf6\xd1\xfd\x79\x5f\x3e\xb0\x28\xd7\x83\xa6\xdd\x67\x1c\xc6\x56\x55\x2f\xdc\xab\xea\x8d\xc6\x6e\x2a\x5b\xf2\x8c\xbc\xe3\x82\x6f\xf9\xdf\x19\x89\xe5\xbd\xd0\x7c\xcb\x48\x9c\x83\x66\x86\xba\x4b\xe1\x73\x9e\xce\xe2\xfa\x3b\xa2\x59\x92\xf8\xa8\x47\x4b\x12\x4b\x28\xbf\x03\x2a\xc3\x72\x00\xf7\xc9\xe2\xa8\xf4\xef\xa8\x9e\xe8\x58\x46\xea\x24\x92\x22\x62\xa9\x56\x27\x2e\x49\xa1\x3a\x01\xa1\x3e\x95\xf1\xc9\x33\x17\xc7\xc9\xa5\x98\xc8\xd5\xc4\xbc\x28\x36\xc4\x7b\xf7\x7d\x46\x23\x36\x67\x19\x97\xf1\x0d\x8b\xa4\x88\xd5\x29\x79\x55\xce\xc4\x52\xd4\x32\xc3\x30\xaa\x79\x5c\x83\x34\xe3\x32\xe3\x7a\x7f\x9e\x50\xa5\x10\x74\x3f\xfd\x44\xa6\xe7\x14\x72\xec\xd7\xde\x91\x7f\x14\x06\x93\xc5\x11\xa2\x46\xd4\x7e\xbb\x83\xb4\x38\xf2\xee\x8c\x91\x51\xcf\x1d\x25\xa8\x1e\x7e\xa0\x20\x05\x95\xa8\x92\x10\x43\x1f\x96\x5c\xd0\xac\x12\x81\x84\xca\x71\xf3\xae\x46\x2f\x56\x3c\x01\x9f\x5e\xa0\x18\x85\xf8\xe3\x4e\x1d\xa2\x77\xdb\xff\x24\x12\xdc\x3f\x75\x7c\x0b\x4e\x13\x3f\xfd\x34\x3d\xbf\x9a\xcd\xcc\x1f\xfe\x85\x87\x28\x99\x2d\x35\x14\xe5\x2f\x8b\xa3\x13\x99\xea\x93\x48\xf0\x93\x25\x17\x27\xb6\xbf\x82\x89\xc4\x87\x89\xdd\x77\x99\xdc\x56\x5c\x42\x9c\xd6\xf1\x1d\x4d\x1d\x43\xe0\x3f\xcf\xc8\x19\x84\xf8\xfc\xf1\xc3\xb7\x97\xd7\x57\x97\xb7\x97\x37\x1f\x6f\x2e\xaf\x7f\x98\x9d\x5f\x7e\xfc\xc3\xfb\x9b\x5b\x58\x73\xe0\xdd\xfc\xfd\xf5\xad\x8d\xf0\x92\x3b\x96\x65\x3c\x8e\x19\xde\x5e\xf6\xed\xfc\x3b\xb2\xad\x42\x01\x1f\x84\x84\x97\xe7\xc8\x69\x87\x27\x4e\xcd\x50\xff\xc2\x79\xa2\x37\x73\x20\x31\xb1\xab\x2d\xe5\x19\xc6\x8b\x5a\x97\x3c\xb3\x4d\xfe\xf6\x18\xde\x0c\xe4\xa4\xda\xac\xdc\xfe\x9c\x5f\xcd\x3e\x9e\xbf\xbf\xfa\xee\xe3\xd5\xd9\xbb\xcb\xfa\x34\xc0\xdd\xcb\x60\xdd\xd7\xaf\x26\x70\xab\xa7\xa6\x6b\xe0\xf3\x8f\xea\x93\x70\x5a\xb6\xda\x19\x01\x7f\x73\xd8\xb2\xb6\x93\x52\x9f\xcd\xd5\xe5\xed\x8f\xef\xaf\xff\x08\xb3\x9a\x7d\x1f\x9c\x52\x63\xaf\xdd\xa1\xb1\xfb\xfd\x47\xb6\x0f\x6d\x79\xb9\x17\x96\x67\xac\xd8\x29\xfd\x07\x10\x6e\x24\xf8\x47\xbb\x9a\x8f\xa1\xa6\xcf\xc8\x0d\x43\xef\x34\x43\x11\x81\x13\x2e\x1c\xff\xc1\x3d\xe6\x1b\x85\x5c\x93\x79\xd5\xb2\x60\xef\x84\x5d\xbd\xbf\xb8\x6c\xdf\x85\x96\x25\x83\xcf\x70\xdb\x5a\xe1\xe5\x9c\xea\xcd\x29\xa0\xa0\xa9\x99\x0c\x84\xf7\xd5\x96\x61\xb6\xed\xdd\xed\x07\x62\xb1\xfc\x8e\x66\xdc\xf0\x1f\xed\x5b\xf4\xee\xf6\xc3\xbf\x70\x5f\x76\x4c\x6f\x3e\x6e\x75\x5e\x5f\xc6\x3c\x63\x3b\x26\x6c\x91\xa8\x12\xc3\x81\x9c\xaf\x12\xc6\x20\xe8\x68\x25\x4d\xab\x7a\x31\x39\xb7\xb8\x9b\xb7\x97\x97\x8d\x8a\x8c\xc5\x2d\x58\xd1\x44\xb1\xea\xc9\xdf\xc9\x24\xdf\xb2\x77\xa1\x7c\x34\x13\xb2\x35\x3f\x23\xfc\x4f\xcc\x11\xf1\x11\x59\x18\x47\x44\x82\x4f\x96\x5c\x4c\x62\x9e\xf5\x76\xc6\x74\x04\x9d\x09\xa6\xa7\x8d\xc8\xce\xb2\x3b\xc1\x74\xbd\x3b\xc5\xa2\x1c\x88\x8b\x14\x9a\x3d\xd4\xab\x96\xa5\x19\xdf\xf1\x84\xad\xab\x7e\x6e\x08\xe2\xb3\x38\x36\xcc\xcb\x77\x09\x7b\x20\x3f\xc0\xd2\xc9\x45\xc6\x77\xe0\xbb\x49\x9d\xbe\xd2\xb4\x48\x59\x66\xa8\x26\xf9\x20\xf8\x03\xb9\x90\x5b\xca\x05\xb9\x91\xd1\x1d\x26\xbe\x83\x08\x2c\x72\xc1\xef\x8c\x94\x51\xa1\x34\x60\x68\x02\x07\xcc\x88\x6a\x1b\x9e\xfb\x1d\x4b\xf8\x03\x60\x5b\x3f\x52\xf5\x66\x2f\x22\x72\x36\x9f\x05\x68\xce\x2a\x61\x0f\x3b\x99\x4c\x62\x98\x5a\x98\xec\x98\x25\xfc\x20\x93\xd9\x76\x5d\x25\x3c\xad\x1b\x1a\xee\x7c\x62\xb6\xa2\x0a\xbf\xc6\x46\x35\xa7\xf1\xf8\x0d\xc0\x8a\x28\x82\x6b\xef\x80\x6f\x31\xa9\x11\xa6\x56\x8b\x98\x52\x34\xdb\x03\xf2\x47\x36\x41\x81\x29\xaf\x4c\xf9\x6d\xc8\x14\x14\x1f\x4a\x13\x2a\x2a\x9d\x43\x8c\xf2\x32\x5d\x11\xaa\xc9\x89\xda\xab\x93\x95\x3a\x81\x3f\x45\x4c\x22\xf0\x89\xff\x02\x5e\x65\xb9\xb0\xc2\xe9\x09\xfe\x3c\x75\xa9\x9f\xac\x90\xc8\x35\xa7\x09\x57\x65\xa0\x0f\xb2\x9d\x71\x65\x30\x41\x96\x46\x86\x65\xab\x95\xcc\x34\x59\x51\xb5\xe1\x52\x1c\xe3\x24\x84\x24\x2b\xca\x13\xc3\xa2\x03\x69\xcd\x32\x99\xa9\x63\x73\x3a\x84\xd4\x24\xe6\x2a\xcb\x53\xb0\x81\x7b\xf1\x44\xc2\x95\x76\xa9\x13\x61\xb7\x73\x8b\x23\x80\xd4\x64\x99\xae\x56\xaa\x7a\x8d\xcb\x73\x61\x84\x90\x1e\x7e\xc4\x93\xcb\x21\x1a\xee\x68\x62\x56\x6c\xff\x69\xd6\x34\xc1\x35\xd5\x78\x94\xc1\xa8\x02\x21\x1f\xbe\xd1\x6a\xaf\x26\xcd\x77\xcf\xc8\xb7\x3c\xe6\x19\x1a\x71\x69\x82\xf1\x33\x56\xf7\x0b\xd5\x6a\x40\xd8\x29\xa2\xa4\x05\xbb\xc7\x01\xc9\x3d\x23\x5b\x23\x0c\xd5\x36\x3c\xcd\x64\x4a\x6d\x9a\x3a\x59\x50\xb8\xe6\xa8\x4a\x62\xa7\x5c\x13\x99\xeb\x84\xef\xac\x9f\x7e\xf5\x80\x36\xf8\x21\x5c\xac\x1d\x03\x14\x04\x95\xe9\x77\xc1\x66\x47\x33\xef\xf8\x85\x61\xb4\xa3\xd9\x24\xcb\xc5\x24\xdc\xe6\x49\x60\xd5\xb8\x01\xbf\x28\x90\x3d\x23\x70\xca\xc8\x49\x9a\xc9\xe8\xc4\x2a\xba\xa5\xd2\x36\xa9\x42\xae\x72\x9a\x24\x7b\x1b\xf4\x08\x03\xa7\x99\x5c\x67\x74\x0b\x6b\x33\xe7\xda\x7c\x38\x25\x33\xfd\xdc\x47\x1e\x30\x07\xa1\x50\x42\xd8\x1f\xd7\xc7\x74\x97\xdc\x34\xf5\xae\xc8\x31\x3a\xd1\x9a\xf9\x64\x52\xea\x02\x91\xac\x54\x0b\x24\x0d\x7d\xd0\xda\x30\x8a\xe7\xb7\x6f\xbf\x75\x53\x33\x32\x4b\x66\xd6\x9b\xd4\xcb\x67\x54\x0f\x88\x9b\x7d\xf8\x68\xb4\xbd\xcd\x18\x8d\x8d\x44\xdd\xe4\xb7\x1f\x87\xaa\xa3\xb0\xec\x75\x9d\x0b\x55\xd7\xd3\x15\x6c\xb1\x27\xdb\x02\x87\x5c\x2b\x49\xf9\xcc\xfb\xa4\x80\x49\xcd\x91\xc6\x20\xea\x4c\xe6\x1a\xb3\xd9\x98\x5e\xfd\xef\xcd\x11\x08\xa0\x45\x1f\x9d\x1d\x82\x12\xff\x7b\xcb\x5c\x1f\x14\xf3\x77\xec\x6c\x3e\x73\x4a\xd6\x25\x8d\xee\x0c\xa7\x69\x68\x2c\x18\x10\x5b\x78\xcd\x8b\xb3\xdb\xb3\x9b\xdb\xf7\xd7\x97\x1f\x6f\xff\x3c\x6f\x17\xbd\xca\x25\x34\x65\x2e\xe7\x17\xca\x70\xd7\x09\x5d\xaf\x33\x17\xff\x5f\x88\x22\xa9\xf5\xf5\x69\x99\xc6\x87\x1b\x03\xe0\x8b\x8f\xa6\x49\xeb\x24\x00\x22\x8d\xe1\x7f\xa4\x5c\x17\xae\x75\x7d\xcb\xfd\xf1\x6c\x76\xfb\xf1\xbb\xf7\xd7\x1f\x8b\x75\x1f\x38\x9a\x11\xb6\x0e\x96\xaf\x8c\x50\xf5\x2f\x91\xa9\x2e\xa4\x78\xae\x09\x13\xc0\x90\x7c\xfb\xfd\xbc\x4d\xe0\x3d\x7b\x3b\x3b\x7f\xef\x64\xde\xd9\xd5\xf7\x1f\xbf\x3d\x3b\xff\xe3\xe5\xd5\x45\x2b\x70\x84\x14\x01\xe0\x58\xeb\x05\x96\xb9\x35\x32\x37\xa4\x89\x59\x21\xc7\xe7\xc5\xe6\x9b\xf7\x2d\x33\x79\xfb\xe1\xe6\xf6\xf2\xba\xe7\x30\x7e\xa3\x8e\x51\xbd\xd7\x98\x01\xaa\xc1\x8e\x0d\x1f\xa6\x50\x17\x76\x6c\x10\x3c\x92\x1c\x70\x25\x20\x19\x9b\xb8\x30\x74\x9a\x24\x65\x25\x3e\xa5\xa9\x6e\x99\xd5\x77\x97\x6f\x67\x7f\xfa\x38\x9b\xdf\x9e\x7d\xfb\xf6\xf2\xe6\xfa\xf2\xbb\xeb\xcb\x9b\x3f\xcc\xae\x6e\x2f\xaf\x7f\x38\x7b\xdb\x3a\xcd\x37\xaf\x9a\xf3\xbb\x92\x5e\xa5\x0c\x4b\xd5\x5a\x36\x65\xd6\x2e\x02\x86\xf5\x1e\x4e\x33\x37\x9b\xef\xbe\x22\xa9\x94\x49\xa9\x76\xf1\xfc\x34\x6a\x9e\xce\x53\xf0\xc2\x9b\xcd\x8b\x9a\x44\xf5\x9e\xa3\x8d\x54\x06\xcf\x61\x40\x9c\xe1\x53\xa8\x58\xb3\x29\x9a\xe5\x30\xf4\xce\x25\x5f\xb7\x26\x7b\xdf\x3c\x8f\xbd\x6e\xe8\xae\xd1\xaf\x90\x56\x23\x6c\xd3\xb7\xdb\x40\xc8\x95\xd9\x13\x9b\x02\xeb\xbf\x26\x13\x6b\xda\x99\x44\x3c\xce\xfe\x6b\x5a\xef\xa3\x76\x7e\x67\xf3\x1f\xbe\x9a\xbf\x7f\xff\x36\x80\x45\x9e\x55\xf4\x48\xbf\xfd\x62\xfa\xfa\xcd\x37\xd3\x57\xd3\x57\x27\xaf\xdf\x34\x81\x79\xc1\x15\xba\xe3\xf1\x84\x91\x44\xae\x61\x99\x4a\x92\xff\x02\x97\x74\x9d\x98\xdf\xd4\x7f\x81\x49\xaa\x1e\x4d\x5e\x9b\xd1\xc5\xec\xc6\x1c\x99\x8f\xdf\xcd\xde\x5e\x7e\x7c\xfb\xfe\xfb\xef\x67\x57\x61\x5d\x52\x37\xc2\x41\xd9\xb3\x0c\x45\x94\xc8\x48\xb9\x0d\xc7\x3c\x5b\xe6\xe7\xb3\xf3\xf3\xcb\xf9\x6d\xcb\x9c\xf0\x14\x5f\x5c\x7e\x77\xf6\xe1\xed\xed\xe5\xd5\xc5\xfc\xfd\xec\xea\xf6\xf6\xbd\xa1\x79\x67\xe7\xb7\xb3\xf7\x57\xad\x33\xc3\x6e\xdb\x01\x35\x9b\xef\xde\x98\x23\x56\x92\xa2\xce\x29\xcc\xe6\x3f\xbc\xb9\xf9\x30\x37\x04\xf5\x10\x2d\x87\xa7\xcc\xf6\xcc\xc3\x10\x70\x8d\xde\x49\xca\x80\x0a\x46\x78\xfb\xfe\x7b\x03\xf2\xf9\xd9\xed\x1f\x50\x5c\x13\xcc\xfa\xa4\xe2\xc6\x02\x3c\xdd\xce\x6a\x09\x3b\xdd\x35\x63\xaf\xbf\x03\x51\xe2\xf0\x09\xdf\x5c\xfe\x70\x79\x3d\xbb\xfd\xf3\xcd\x9f\x6f\x70\xce\xf6\x52\xc1\xcd\x2b\xc2\x14\xc4\x4a\x76\xae\x44\xed\x55\x22\xd7\x3d\x6b\xf1\x86\x3a\x00\xc7\x94\x27\xd1\x1b\x6f\x71\x74\x4f\x33\xc1\xc5\x7a\xc8\xd2\x6f\x82\xeb\x3d\xbf\xbe\xbc\xbc\x32\x7d\xfd\x88\x3d\x35\x57\x3c\x74\x39\xd0\x53\xeb\x8a\x7e\x0c\x4f\xb4\xda\xdd\x1f\x2e\xcf\xde\xde\xfe\xe1\xf2\xca\x5c\xdb\x76\xf2\x17\xbe\xaa\x5d\x0b\x76\xc4\xc3\x12\x56\x90\x2f\x72\x8d\xbe\x0a\xe6\x1f\x9e\xf7\xf3\x8a\x88\x15\xd2\xa4\x21\xd4\xa8\x8f\x52\x9b\xce\xab\x53\x7d\xac\xde\x27\xe4\x2b\xe3\x7e\xc7\xc8\xe7\x06\xaf\x12\xa5\xf9\x29\xf9\xe2\xeb\x57\x95\xa4\xd3\x09\x5f\xb1\x68\x1f\x25\xf5\xa4\x8d\x69\xc6\x6e\xb4\x6c\xd6\xea\x37\x22\x5d\x50\x9f\x8b\xca\x90\xe6\x9b\x09\x01\x23\x4d\x8b\x48\xe1\xda\x4c\xd4\x26\xd7\xb1\xbc\x17\xd5\xb9\xed\x98\x60\x4a\xcd\x33\xb9\xac\xcf\x2f\x38\x8f\xb6\x59\xf4\xcf\x61\x42\x26\x70\x7b\x27\x66\xcc\x1a\x24\xaa\xc6\xbc\xd7\xaf\xaa\xaf\xad\x6a\xeb\x82\x25\x74\xdf\xda\xc8\x6a\xae\x6e\x37\x19\x53\x1b\x99\xc4\xa7\xe4\x4d\xb5\x81\xe6\x5b\x26\x73\xdd\xd2\x81\x91\x45\x79\x1b\x24\x36\x5a\xa7\xdf\xb3\xfa\xc9\x81\x82\x1b\x46\xfa\x2d\xbe\x6d\xbc\x97\x99\x3e\x25\xbf\x7d\xf5\xdb\xdf\xd6\xdf\x18\x7a\x76\x4a\x12\x19\xd1\xa4\xa9\xb1\xe8\x01\x47\xf7\x42\x3a\x14\x5e\xcf\xa0\x16\xdd\x96\x72\x90\x68\x0d\xe6\xf1\x1c\xb4\x8d\x2c\x15\x65\x0c\x38\x58\x9a\x34\x09\xda\x13\x6a\xc2\x49\x45\xf6\x47\xca\xd7\x31\x5a\xc2\x97\x27\x5b\x19\xe7\x81\x44\x5d\x38\x4c\xc2\x97\x93\x96\x06\xed\x2a\x86\xfa\x28\x59\x2e\x4e\x1e\x10\x0d\x4d\x13\x19\xdd\x85\x87\xb2\x2d\x26\xa1\x16\x07\x2c\xe9\xd3\x15\x6a\x07\x0e\x66\x60\xd8\x37\x98\x01\xe3\xa3\x06\xc3\x2e\x50\x1b\xa2\xf6\xa2\xa1\xe7\x09\xad\xdc\x60\x08\xba\x6e\x64\x97\xc0\x23\x5a\x28\x18\x8e\xc9\x3d\x03\xa9\xc1\x2a\x22\x80\x07\x28\x34\x5b\x4e\xaf\x5e\x6a\xdd\xeb\x2a\x55\x25\x41\x81\x08\xad\x31\x1d\x55\x7d\x38\x48\x91\xa7\x09\x6a\xf5\x64\xd6\x54\x73\xe1\xe2\x50\x7b\xdd\xb1\xae\x72\xd0\x70\x07\xe6\x2a\x24\x72\x1d\xba\x0a\x8d\xbd\x92\xeb\x42\x39\x57\xb5\xdf\x93\x8e\x13\xdd\xf0\x31\xc8\x72\xa1\x0a\x07\xcd\x5c\xb9\xac\x21\xe8\xe5\x05\xc5\x09\x27\xdb\x35\x3a\x0e\x32\x51\x31\x12\x00\x8d\x4e\x0c\x72\x82\x5c\x23\xcd\x4a\x86\x13\x4f\xd1\x53\x3a\x5d\x96\x73\xf4\xfc\x0c\x8c\xd8\x6a\x3d\x82\x1b\x56\x9f\x52\xbd\x4f\xac\xbf\x81\x21\x21\xb6\xbf\xd8\xaa\xf6\x27\x3c\x9d\x6c\xa9\xfa\x9b\xfb\xb3\x36\xff\xd2\x0b\x1d\x9f\xc7\x13\xfb\xa6\xbe\xc9\x2d\x73\xfe\xfe\xe2\xb3\x99\x88\x9d\x3f\xd9\x54\x34\xd4\x19\xf5\xe1\x6f\xe6\x67\xe7\x9f\x7f\x0e\x81\x7a\xae\x05\x23\xf6\xf6\xec\xea\xea\xf2\xed\xc5\xc7\xd9\x77\x07\xce\xe4\xa9\x7d\x04\x4c\xa3\x8f\x7c\x35\x60\xa6\xf3\x8f\xef\xce\x6e\xfe\xe7\xbf\x70\xae\xe6\xec\xe6\x2c\xa3\x55\x86\xa8\xc3\xe0\x39\x9c\x28\xf5\x91\xa4\x0e\xb4\x3d\xa9\xba\x36\x4f\xa2\x55\x6d\x05\xfe\x2c\x0c\xa5\xf7\xaf\xfa\x89\x6b\x8a\xab\xa8\x6a\xdb\x5d\xb8\x1a\x7a\xae\x34\x71\x46\x0b\xb1\x36\x2c\x05\x0c\x57\xbb\xb0\x1d\x2c\xc0\xa4\x97\x50\x76\x77\xda\x46\x84\x27\xbd\x34\xb1\xbf\xdf\x10\xbd\x9d\xf4\x6c\x58\x77\xaf\xdd\x47\x01\x5d\x5e\xbf\xe3\x09\x7b\x9f\x9d\x57\x22\x34\xca\x71\x9b\x56\xcc\xee\x11\x2d\x49\x0b\x0d\x74\xe1\xc8\x65\xfb\x68\x0d\x8a\x39\x68\xb0\x06\xfd\xac\x8d\xe7\x9f\xb4\x6d\x69\x6e\xab\x98\xd0\x2c\xaf\x90\x2b\xcf\x80\x86\xe6\xe7\xaa\x87\x5e\xab\x89\x2c\x70\x6a\x43\x26\xac\xee\x05\x55\x5b\x97\xf7\xc2\xde\xa1\xa0\x03\x45\xf0\x2e\x16\xf8\xe8\x34\x74\xfb\xc3\x38\xa8\x0c\x4b\x76\x6e\x60\xe7\x57\x21\x9f\x8d\x16\xcf\x97\xee\x95\x05\xfd\x69\x26\xdd\x2c\x7f\x77\x8f\x2d\xa2\x44\xb9\x0a\x1b\x10\x6d\xc4\x95\x44\xae\x43\x1b\xd4\xc2\x5f\x0d\xb8\xa9\x2d\xdc\x56\x39\xb8\x55\x29\xb7\x3b\xd7\x04\x70\x52\x98\x19\x6e\x99\x4d\xef\x9d\x22\x4d\xa4\x15\xe0\x9f\x9b\x9b\xde\xf4\x18\x0a\x9d\xba\x4e\xcf\x9a\x43\xa7\xfc\xd3\x4f\x13\xc2\x57\xc4\x79\xfa\xcc\x41\xb8\xbc\xe0\x55\xd7\xf2\x72\x3d\xa5\x4f\x50\xd1\x12\x5d\xca\x27\x84\x25\x8a\xb5\x7c\x75\x92\x2b\x40\xb1\xec\x81\x45\x9e\x97\x31\xfc\x33\x61\x7a\x62\xa3\x2d\x4e\x90\x3e\x9d\x40\xb3\x02\x60\xff\x77\x1e\x2b\x3b\x82\x75\x60\x87\x90\x90\x3e\xcf\x6b\x3f\xb2\xa2\x8c\x96\xa9\xc7\xa3\x3c\x26\xd4\xe2\xd0\xd0\x94\x7a\xee\x90\x22\x4c\xe5\x86\xb1\x50\x68\x5d\x25\x30\xf0\xa4\x99\x79\x24\x18\x33\x62\x23\x4b\xbc\xfc\xd5\x87\xe4\x5d\x79\x4c\x5c\x49\x5b\x6e\x15\x17\x3a\x81\x46\x9f\x4a\xe2\x33\x57\x5f\x06\xca\xfe\x51\xc8\xe3\x99\x30\x30\x0f\xec\x18\x5e\x02\x61\xd3\xe8\x65\x2c\x4d\x78\x44\x15\x44\x77\x1c\x1a\xb5\xd2\xba\x48\x55\x46\xb0\x94\x97\xe2\x9a\x95\x21\x92\x7d\xc1\x23\xbd\x60\x24\xa4\x0b\x94\xa4\x27\xfe\xa4\xa3\xdb\x4f\x8a\x48\x71\x97\xfc\xb6\x0c\xf5\x20\x6d\x01\x20\x5e\x08\x8f\xdf\xbc\x88\xdf\x79\xd3\x72\xdf\xdb\xc2\x48\xc2\x4a\x67\xaf\xb5\x33\x54\xb7\x66\xbd\x93\x04\xb3\x8c\x26\x0c\x1c\x82\xb2\x5c\xb4\x05\x9f\x54\x83\x56\x4a\x5f\xbb\x31\x74\xa5\xf2\xa1\x8f\x4b\xb1\xcd\xa7\x84\xb1\x74\xde\x85\x46\x60\xcb\x63\xa3\x3d\xcc\x28\xb5\x7c\x5f\x83\xa2\x3f\x0a\x03\x6d\x28\x00\x24\xe8\x80\x34\x19\x76\xcb\x49\x55\x6f\x52\x36\x08\x3b\x01\x35\x54\xbb\xe7\x1b\x09\xa5\x75\xc0\xf2\xef\x9f\x77\x2d\xcd\x11\x6f\xd1\x6b\x59\xc3\xcf\xc7\xf3\xf7\x57\xb7\xd7\xef\xdf\xbe\xbd\xbc\x6e\xb3\x90\x35\x55\xfa\x07\xb9\xd4\xdc\x05\x0b\x68\x3d\xa5\xf9\xc1\xf0\x04\x60\x82\xd8\xb0\xe8\x6e\x52\x4d\x58\x56\x36\x9b\xd4\xbc\xf6\x7e\xe9\xa6\x87\xcf\x04\x85\xac\x17\x0a\x9f\x9f\x2d\x3a\x98\x77\xa8\x33\x4a\xd5\xb0\xdc\xd2\x0d\x7e\x2e\x63\x72\x81\xde\xca\x5c\x0a\xf2\x6d\x1e\xaf\x19\xba\x4c\x95\xd7\xaa\x74\x88\xff\xe3\x37\xaa\x70\xe4\x39\xcb\xb5\x54\x11\xb5\xef\xd9\x8e\x47\xda\x40\xc2\x5f\x24\x72\xf6\x27\xbb\xd7\x4b\xa6\x69\xb1\xe0\xb9\x8c\xcb\x11\x71\xc0\x7f\x3d\xc7\x14\x08\x6c\x7d\x22\xd6\x67\x20\xa7\xca\x74\x14\x4f\x94\xe1\x87\xb4\xe3\x52\x07\x7e\xa9\xf7\xe9\x86\x0e\xfd\xc4\xf9\xe3\xd9\x68\x29\xfc\xea\xe8\xf8\xff\x20\x84\x1c\xa1\x7c\xbc\xfb\x72\xfa\xc5\x17\xd3\xaf\x27\x19\x52\x8b\x2f\x8e\x4e\xc9\x91\xe9\x13\xd4\xd3\xe4\xd6\x76\x55\x3a\xba\xe1\xef\xf6\xab\xc1\x93\xb6\x19\x85\x2a\x51\xe3\xe7\x4e\x7a\x27\x5c\x15\x65\x4b\x8a\x19\x63\xa9\xfa\x15\x48\x5d\x2c\xb6\xc3\xfa\xfe\x44\x65\xc6\x04\xd7\x4f\xf3\xca\xb5\x47\xe7\x17\x5a\x81\xb6\xb3\x55\x7c\xf6\x0c\xd3\x96\x99\x49\x5a\x57\x0b\x74\xd3\x82\x7d\xf8\x68\x09\xf5\x47\xe7\xd1\x5f\xba\x7e\x20\x53\x0e\x59\xd9\x57\x34\x2a\x95\x2e\xe8\x6e\x6b\xae\x1c\x78\xee\x40\x05\xa1\xc8\x15\x12\x82\x9f\xca\x80\x13\x97\xbe\xea\x59\x51\x4e\x70\x99\x50\x71\x77\x5c\x94\x5c\xf5\xfa\xe7\xca\x39\x68\x95\x16\x0d\x43\x99\x9e\x2b\xec\xc1\xd1\x6b\xf0\xcc\x84\x5e\x3d\x5d\x31\x46\x32\xa3\x4d\x62\xe6\xba\x74\x41\xcd\xcf\xc8\x8f\xb6\x80\x8b\xcc\x20\xde\x01\xca\x37\x3a\xdd\x6d\x59\x83\x54\x92\x98\x29\x6d\x43\x51\xb1\x2c\x15\xba\x6f\x61\x27\x8e\x67\xb3\x3e\xc2\x53\xbc\x87\xae\x9b\xaa\x2f\x85\xef\x4a\x6a\xbe\x7b\x77\xfb\x01\x32\xa7\x2a\x4f\x8e\x36\xbf\x39\x0e\x99\xaf\x88\x60\xf8\xd3\x2b\xcb\x75\xb8\xa8\x2c\xbb\xb4\x77\xb7\x1f\x70\x3d\x96\x25\x0b\xf0\xd6\xfe\x17\xaf\xbf\xfa\xfa\x55\xad\x75\x7b\x50\xa1\x4b\xc2\xd3\x16\x5b\x08\x9f\x01\x1b\x86\xe2\xee\x33\x57\x8e\xc3\x15\x77\xb4\xb1\x89\x45\xed\xbc\x5c\xcb\x2d\x05\x26\x2a\xd9\x93\x54\xda\xfc\xc4\xb8\x69\x8d\x20\xc0\x53\xf2\x8f\x09\xe2\xa7\x9f\x1c\x9a\x5a\x1c\x81\xcd\xe4\xc8\xba\x48\x4e\x52\x19\x4f\xec\x47\x5e\x3d\xb0\xc5\x51\x24\xdc\x7d\xc1\xb6\xaf\xa6\x5f\x4e\x5f\x57\x5a\x58\x7d\x81\x79\xfd\x97\x92\x30\xfe\xe4\xd3\xc8\xc5\x11\x38\x71\x42\x07\x56\xb1\x5b\xad\x39\xb6\x38\x4a\xe4\xfa\x63\xc2\x76\x2c\xc1\x56\x3f\x9e\x5d\x5f\xcd\xae\xbe\x0f\x36\x5b\xf1\x84\x7d\x4c\xa9\xde\x60\xd3\x80\x22\xca\xfc\x6f\x9a\xc8\x75\xe3\xf3\xc2\xe3\xf7\x63\x39\x21\xdf\x5b\xb9\xd6\xdc\x6c\x4d\x09\xa6\x8f\x1f\x43\xa1\x8f\x1f\x3f\x36\x3e\xdb\xea\xdc\x7c\xf1\xf1\xa3\x0d\x3c\xfc\xf8\xb1\xd6\x80\xa7\x74\x6b\x5a\xfc\x54\x67\x2e\x7c\x40\x99\x8b\x3e\x01\x27\x87\x40\x81\xb6\xc5\x11\x5a\xf1\xb0\x69\xae\xd8\x5c\xc6\xe7\x3c\xce\xaa\xce\x3b\xff\xac\x8d\x8b\xe4\xb7\x77\xe4\xbb\x6f\x54\x77\x3f\x3e\xc8\x82\x7d\xd9\x74\xbc\x06\x81\x7a\xa0\xc3\xf0\xd8\x8f\xce\x39\xce\x40\xae\x32\x4a\xf9\x87\x3f\x60\xeb\x49\x4a\x65\xa6\xb7\x34\x6d\x80\x5f\x09\x0a\x70\x31\xb8\xa2\xf6\x2a\xa2\x29\x85\xdc\x2e\xdc\x4d\x1d\x7a\x79\x47\xd3\x94\x8b\xb5\x72\x5f\x1d\x3a\x93\x25\x15\xf1\x3d\x8f\xcd\x89\xec\x1f\xd0\x6b\xdc\x1c\xcd\xfd\xd3\x9a\x65\x2d\x4e\x71\x59\xa1\x82\x38\x65\x8a\xa1\x33\x50\x48\xd3\xc6\xf1\x38\xc3\x75\x35\x38\x47\x30\x0d\x54\x6d\xfa\xbf\x95\xa1\x7e\xff\x68\x60\x84\x2b\x77\xff\x1d\xae\x47\xc6\xee\x7c\x76\x71\x6d\x10\xa3\x77\xe7\xbf\xb5\x76\xef\xea\xee\x63\x59\xaf\xe2\x73\x3b\x6b\xdb\x76\x6a\xde\xf9\x49\x30\xfe\x59\x2c\xb1\x8f\x43\xb8\x8b\xe3\x49\x94\xc5\x8e\x0b\xfa\x7c\x05\x77\x1a\x79\xbd\x3e\x43\xd9\x9d\x6f\xbf\x9f\x57\x72\x63\xe3\xbb\xb2\xf8\x4e\xfd\x7d\xb3\x04\x4f\x4b\xf6\xb1\xb2\x10\x4f\xbd\xc1\xa2\x2c\xc7\x63\xb7\x74\xf1\x79\x6a\xf1\xd4\xe7\x5e\x2d\xe4\x51\xa5\x84\x58\xaa\x6e\x6f\xbe\x01\x86\xa3\xaa\x85\x19\x6b\xf1\x8c\xb5\x78\xfc\x2d\x18\x6b\xf1\xfc\x6c\xb5\x78\xea\x97\xb8\x59\x91\xa7\x5a\x29\xce\x5c\xe0\x2a\x41\xaa\xa9\x47\xda\x4b\xef\x50\x75\x05\xb5\x99\x03\x6e\x22\xb5\x0b\x7d\x83\x0d\x5d\x89\x2f\x27\xa9\x9c\xdd\xd8\xea\xce\x85\xec\x44\x2d\x3f\xfd\x97\x0b\x6c\x12\xf4\x40\x79\xf3\xd5\xd7\xaf\xbf\xf8\xeb\xf3\xe6\x2b\xcc\x90\x79\x6a\x6e\xe7\x97\x5f\x34\x5f\x23\x48\xcd\xd5\x5d\x37\x0b\x4a\xbb\x9d\x0f\x97\xd7\xaf\xac\xe7\xbc\x6c\x8a\xf7\xc3\xd5\x16\x42\x58\xda\x13\xe4\xe0\x4c\x31\x5f\x60\xd3\xf7\x0d\x40\x98\x2d\xb9\xce\x68\xb6\xb7\x05\x64\x21\xb6\x8d\xa2\xc7\x3d\xc6\x55\x1e\x54\x8c\x28\x38\xcd\x7d\xb9\xfd\x4a\x53\x11\xd3\x2c\x36\x72\x5e\x42\xb3\x35\xab\x4f\x37\xd4\x29\x81\x25\x98\x9b\x16\x08\x7b\xc3\xa7\xe3\x90\xe0\x03\xe4\x29\xfc\x2a\x50\xaf\xdf\x96\xda\x2f\x53\x33\xb8\xe9\xb5\x56\xc4\xef\xaf\x84\x8f\xba\xd8\x41\x53\xf8\x01\xf0\x1c\xe4\x88\x5d\x42\x9a\x1b\x3c\x57\x64\x71\x44\xe9\xa9\x10\x8b\x23\xa8\x39\x8c\x7f\x9c\x6e\xb7\xc1\xda\xe5\xee\xf9\x4e\x66\x25\xd4\xcb\xd5\xe4\x8a\x79\xdd\x61\xff\xc7\xb6\xc8\x86\xf9\x7d\x71\x64\x80\xde\xde\xed\xe2\x08\x3e\xa4\x19\x23\xaf\xdf\x90\x25\xd7\xf6\x22\x4d\x61\xc0\xfa\xd6\x7a\xa3\xc1\x7c\xdb\xfb\x0d\xcd\xe4\xb8\x18\x4d\xc4\x46\x3c\xda\xda\x81\xbf\xfc\xa2\x32\xf0\x8f\xe6\x93\x60\x0d\x4f\x37\x65\x58\x16\xc6\x80\x9f\xdd\x10\x44\x09\x6d\x9d\xa7\x2c\x9b\x9c\xdd\xb8\xa8\x42\x1e\x08\x50\x77\x4f\x4a\xb5\xa1\xc5\xa7\xe4\x7f\xbd\x58\x2c\xe2\xff\xf3\xe5\x29\xfe\xe7\x3f\xfe\x51\xfd\xdb\xfd\xfc\xd8\x13\xd4\x86\x8f\xfd\xb7\x81\x3a\x5f\xc8\x1b\x32\x31\x97\x59\x08\x99\x55\xce\xdd\xdb\xa2\xa5\x43\x94\x50\xc0\x19\xf7\xc2\xe0\x96\x34\x93\x5a\x46\x32\x71\xdc\x0b\x76\x1d\x84\xcc\x85\xab\x69\xab\x25\x79\xfd\x9f\x0d\x1f\x7c\x50\x90\xf2\x6d\xbe\x3d\x25\x6f\xbe\xfe\xfa\xcb\xaf\x03\xef\xb9\xc0\xf7\xaf\x0f\x44\xa4\x89\x5c\xdf\xb0\x1d\xcb\xb8\xde\xdf\x44\x19\x63\x75\x5e\xaf\xb1\xec\xe7\x6f\xeb\x5f\xb8\xe5\x27\x72\x4d\x94\x7d\x43\xe8\x52\xee\x9c\x8d\x27\x91\xeb\x60\x35\x5a\x73\x72\xa0\xfe\xae\x65\xde\x94\x8e\x65\xae\x3d\x72\x42\x66\x57\xdf\xbd\x0f\x91\x8e\xae\xed\x37\x24\xe9\x56\x5e\xc9\x98\xbd\x63\x6a\x73\x09\x11\xb6\xa1\x58\x94\xea\xaa\xae\x42\x5f\x11\xc5\x74\x59\x2e\x79\x95\x5b\xd3\x29\x06\x81\x85\x62\x57\x08\x6c\xfc\x16\x52\x21\x2b\x1b\xdd\x1b\xfb\x0b\x32\x22\x68\xfb\x82\x96\x52\x26\x8c\x36\x78\xe2\x34\x63\x2b\xfe\x70\xe6\xd7\x7c\xe8\xa5\x7a\xf3\xc0\x37\x25\x65\x01\x0f\x21\x68\x51\x2d\x25\x11\x5a\x51\x17\xbb\x41\x0e\x28\x8a\xdb\x9c\x50\xa9\x5d\x56\xd5\x69\x78\x14\x2a\x8c\x00\x5c\x50\x79\x59\x5f\x3a\x10\xc1\xee\x80\xd7\x43\xec\x22\x1e\x87\x78\xa2\xc0\x12\xa0\x22\x86\x19\x1a\x8f\x75\xd9\xb3\xbb\xe1\x4b\x56\xae\x23\x5c\xa9\x97\x0c\xa2\x7e\xdd\xdc\x4d\x68\x66\x1e\x8f\x13\x51\x61\x26\xe2\xb8\x1c\xc6\xe1\xf0\x96\xe4\x05\x58\x97\x76\xc4\x4f\x93\x8c\xd1\x78\x6f\x65\xb9\x98\x70\x41\x16\x47\x86\x2d\x55\x53\x6f\x14\xa4\xaa\x83\xd8\x11\x82\x52\x5d\x2f\x55\xee\x20\xbe\xdd\x64\xaa\x9b\x2a\x77\x13\xdf\xf6\x9e\xfb\xa8\x72\x2f\xf1\xed\x9a\x74\x0f\x55\xee\xa5\xbd\x83\xfa\x1e\x4e\x94\xdb\xaf\x30\x3e\xfd\x27\xb6\x93\xa6\x92\x4f\x21\xc8\xd6\xa2\x63\x75\x29\xb3\x79\x2f\xe6\xbb\xa9\x7f\x00\xc0\x80\xdc\x87\xe6\xfe\x62\x49\x09\x14\x5d\xf1\x1e\xdb\x11\x82\xb8\xcf\x5a\x5b\x5d\x2f\x36\xd6\x04\xe4\xd4\x55\x89\x7d\x8a\xda\xf4\x58\x7e\xdc\xa1\x00\x2c\x32\x1e\xea\x17\x27\x51\xa4\x60\x06\xbf\x19\xb1\xaf\x0c\x67\x23\xed\xf5\x86\x6d\x1f\x8f\x74\xeb\xb0\xf8\xd6\x8c\xeb\x49\xf6\x9e\x2b\x5a\x92\xc8\x7b\x83\x47\x5d\xd3\xf0\x3e\x97\x20\xfc\x0c\xc8\xf6\xb3\x31\x75\x76\x87\x2f\x1f\x50\x0d\x34\xfc\x10\x79\x5f\x84\x4f\x91\xcc\xbc\xd0\xfa\xd0\x9c\x6d\x47\xc4\xf5\x64\xf6\x76\xea\x67\x86\xa9\x37\x28\x12\x3e\x80\xbf\x60\x3d\xeb\x03\x3e\x25\x91\xb1\xd5\xf5\xf7\x58\xf9\x13\x8f\x8c\x14\xac\xac\x70\x8f\x13\xfd\xe4\x13\x54\xce\xae\xf7\x08\x85\x77\xd7\x5b\xff\xaf\xfb\x10\xbd\x95\x34\xfe\x96\x26\x54\x44\x87\x60\xa3\xda\x57\x9f\x78\x98\xfc\xde\x5a\x0f\x94\x2d\x5d\xe4\xb7\x9d\xce\xc4\x3a\x0b\x44\xff\x9a\xa7\x7e\xee\xfe\x05\x87\xac\x0a\xa4\x47\x1e\xb4\x1a\x6c\x7e\x95\x87\xed\xd7\x55\x6e\xda\xda\x94\x3e\xa3\x9d\x08\x8a\xbc\x7c\x1e\xf3\xd0\x9c\x39\x99\xb8\x62\x15\x32\x3f\x07\x8d\x41\x5e\xbd\x99\x8a\x0d\x28\xb5\xfd\x7c\x2e\xd3\xcf\x68\xa3\x19\x6d\x34\xfe\x16\x8c\x36\x9a\x9f\xd3\x46\x63\xd0\x41\xd3\x34\xe3\x3c\xb9\x3d\x1b\xab\x6b\x5c\xec\xde\xd3\xdb\x67\x6e\x37\xac\x14\x0a\x9d\x5d\xc8\xa0\x9f\x00\x7d\xfb\x14\x13\xcb\x1d\x63\xe9\xfb\x8c\xaf\xb9\xa0\xc9\x15\x7b\xd0\x7f\x08\x24\x80\xa9\x4d\xed\x7d\xea\xfc\xae\xcc\xc7\x30\x31\x69\x7b\x20\x82\x3d\xe8\x8d\x4c\x31\x9a\x1b\x4b\xbb\xa3\xc9\xa4\x4f\x33\x08\x30\x25\x06\xa8\xe6\x8c\x6b\xb8\x24\xce\x37\xcd\xd7\x20\xc1\x8e\x80\xcb\x28\x8b\xcd\x27\xa1\x7e\x4d\x2f\xaa\xd0\xe1\xe5\x28\xa2\x19\xb9\x9a\x3d\x68\x62\x66\x67\xe6\xfd\x3b\x23\x7b\x0b\xa5\x19\x8d\x0d\x78\xbd\xb7\x8a\x25\xab\xdf\x2d\x8e\x5e\x58\x8b\xd8\xcb\xd0\x10\x28\xb3\x95\x5e\xfe\x4b\xf0\xe4\x74\xfb\x74\x65\x86\x96\x82\x2c\x8e\x96\x3c\x8b\xa7\xd1\x6a\x1d\xb4\x47\x74\xaa\x03\xb7\xf4\xe1\x9a\x41\xce\xb8\x5b\x1e\xb4\xd3\x54\x8f\x0b\xc7\x0a\x4c\xe8\x42\x6c\x0e\xa9\x92\x2b\x7d\x6f\x20\x9c\x61\x2f\x53\x42\x7e\x34\xdb\x51\x8a\xb3\x41\x56\x06\x32\x4b\xab\x12\xe2\xb1\x4b\x68\xb9\xce\x68\xc4\x56\x79\xe2\xfa\x73\x4e\xe4\xae\x5f\x83\x3d\xfa\xfa\x66\xe4\xdb\xd9\xf5\x45\x61\x6a\x94\x2b\xf2\xfa\x8b\x57\xca\x79\xa2\xb6\x42\xa8\x5d\x03\x3c\xe4\x16\x15\xc9\x21\x8b\x74\x88\x0e\x01\x5b\x71\xde\xa6\xab\xc6\xe8\x2c\xc8\xcb\x1b\xdc\x71\x45\x34\xcd\xd6\x4c\xbb\x1c\xda\x5c\xe1\x7d\x24\xb3\x55\x01\x36\x00\x02\xd3\xb6\x16\xb3\xac\x04\x32\xb5\x74\xea\xa9\x17\xac\x7f\x29\x57\x68\x58\x60\x50\x12\xd8\x7c\xac\xca\x78\x1e\x77\xf2\xca\x9a\x4b\x87\xc2\x2c\x10\x58\x15\x84\x5d\x51\x84\xc7\xa9\x61\x71\x7c\xc8\x5b\x6c\xb9\x00\x88\x73\x2b\x20\xc1\xc5\xda\x1e\x86\xae\x93\x05\xe0\x29\x2e\x09\xe2\x09\x67\xd6\x63\xdb\x54\xd7\x33\x9e\xf4\x2d\x29\xa5\x4a\xdd\xcb\xac\x57\xf7\xff\xde\x26\x76\x45\xd8\xda\x8f\x8a\xb5\xd9\xf9\x2b\xb2\x66\x82\x65\xd4\xdb\xe4\x16\xf5\x7f\x17\xfa\x27\xfd\x12\x07\x3a\xa1\x77\x64\x74\x08\x6e\x86\xe1\x29\xee\xd8\x1e\x58\x33\xdb\x85\x3b\x0f\x70\x88\x53\x19\x3f\x57\xa5\x73\x75\x8b\x26\xb0\x57\x18\xc2\x4c\x11\xed\x8a\xc2\xc6\x15\xb3\x73\x42\xdc\x0c\xb3\xd2\xd2\x1e\x5d\xe0\x4c\xa6\x84\xbc\xc3\x2d\x6e\xef\x94\x10\x6a\x18\x25\x1e\xbb\x2e\xee\x58\xe8\x28\xb8\x67\x88\xb2\xb2\xd3\xc0\xdd\x30\x0d\x79\xe5\x53\x32\xb6\x62\x19\x13\x3a\xc8\xf5\x74\x55\x11\x92\x3b\x23\xe3\xb2\xfb\x13\x5b\x8d\x79\x62\xe4\xe8\x09\x32\x23\xea\x04\x36\xe6\xe4\x59\x8f\x6a\x9e\x90\xdb\xf7\x17\xef\x4f\xc9\x59\x1c\x13\x09\x5a\xfd\x5c\x01\xe2\x85\xbb\xa2\xa6\x9e\x34\x70\x0c\xcc\xe8\x31\xc9\x79\xfc\x7f\x05\xcc\x4d\x87\xc0\xaa\xc8\x7b\x3c\x10\x5e\x37\x80\xb6\xf6\x85\xd9\xcc\x80\xed\x06\x37\x4e\x66\xe0\x98\x60\x0e\xc5\xb6\x7f\xd7\xad\x05\xa2\x6f\xf6\x2d\x54\x12\x1f\x97\xba\xbd\x65\xf2\x10\x7f\x18\x7e\x35\x44\x74\x0f\xbf\x35\x18\x63\x36\x1f\x42\x80\xbc\x84\xb3\x1e\x1f\x47\x56\xd2\x2a\x63\x97\x7b\x10\xb4\x1c\x7e\x4a\x65\x16\x24\x40\xd6\x2b\x47\x4b\xfc\xdc\x9c\x2c\xa0\x3d\x60\x8f\x16\x85\x2f\x0f\xb8\x69\x1c\x3b\x43\x4c\x69\xb2\x5a\x1c\xfd\x05\xa3\x1e\x66\xf3\xdd\x1b\x0c\x7c\xf8\xeb\x29\x8c\x15\x74\x3d\x00\xbb\x4d\xf1\xc1\x57\xf8\xc1\x29\xfe\x00\x5f\xc1\x0f\x68\x20\x81\x8c\xb7\x30\x97\xca\x22\xbc\x49\x39\xba\x18\xe4\x02\xc1\x17\xc7\xd2\x10\x00\x96\x88\x49\xe1\x9d\xb4\x64\x89\x34\x78\x19\x58\x44\xeb\xc6\x0a\xb8\x0e\x8a\x82\x94\xd6\xf9\x30\x92\x05\xf4\x58\xf7\xbe\xb2\x84\xf6\x9e\x59\xd6\x90\x6a\x9c\xae\x85\xec\xa1\xf4\xc7\x08\x0d\x8f\x25\xa9\x19\xdb\x4a\x5d\x50\xd6\xca\xce\x22\x57\xd5\x46\x81\x7c\x42\x3a\x87\x93\x58\x05\x1b\xe2\x8a\x1a\x61\x45\xcf\x97\x6a\x42\xf8\xea\x42\x0c\x67\xb4\x64\xfa\x9e\xd9\x40\x17\xf0\x95\x77\x85\xec\xe3\x92\xf1\xf6\xe7\x0d\x39\xd1\x0a\x7e\x31\xbc\xc3\x36\x27\xb2\x1d\x81\xaf\xc8\x52\xea\x8d\x91\x55\x15\xf2\x10\x86\x17\xf8\xf6\xfb\xb9\x41\x2a\x53\xd3\xf4\xcc\xde\x97\x6e\x86\xd2\x4c\x09\xfb\x7e\x33\xbc\xef\x37\x8d\xbe\xa7\xc4\x5c\xd3\xd0\x00\x76\x99\xa5\x4b\x5c\x24\xc1\x21\xcc\x09\xdb\x1e\x18\x9e\xab\xca\x40\x6e\x23\x82\xf3\xb6\x9b\x8f\x75\xcc\xcb\x44\xab\x2b\x5b\x13\xa2\xb8\x2e\x07\x9e\x44\xe4\x45\xec\xf2\x7a\x8f\xa2\x5d\x7d\xe9\xf8\x60\xa0\xb9\x91\xf7\x8d\x78\x30\x54\x4f\x58\x0c\x16\x5a\x4e\x3f\x0f\xd5\x64\x98\x0a\x67\x98\x76\x9b\xf2\xe2\xe8\x83\x62\x50\x75\x60\xbe\x38\x22\x5b\x46\x85\xaa\xce\xad\x60\x7b\xcc\xe1\xb7\x92\x61\x65\xb2\x53\xf0\xc0\x0f\xa4\x05\xc6\x07\xbb\xb4\xa1\x55\xed\x4b\x3e\x68\x17\x46\x9d\xae\xaf\xd3\xad\xd6\xca\xff\x1c\xaa\x5d\x33\xc2\x19\x8e\xb0\x6f\x28\x78\xfd\x97\x01\x35\x6f\xa8\x92\xbf\xa7\xed\xf5\x5e\xef\x47\x9d\xef\xa8\xf3\x1d\x75\xbe\xff\x7e\x3a\x5f\x1f\x43\x0c\xd4\xfc\x36\x31\x4e\xf9\x1c\xae\x0e\x6e\xb1\x3b\x76\x91\x79\xa8\x6c\xdb\xef\xeb\x78\x81\xcd\x08\x17\x31\x54\xd1\x53\xae\x9a\x15\x57\x88\xdb\x88\x43\x6e\xe6\xdc\x2e\x19\x14\xab\xc1\x6f\x82\x62\x37\x44\x8f\xa3\xba\xc6\x3f\xe7\x2b\x74\x10\x2b\x2b\xbc\x23\x63\x2e\x93\x18\xc8\x7d\xc2\xa8\xb2\x43\x07\x49\x30\x57\x9a\xde\x31\x91\xec\x89\xce\x98\x9b\x1e\x8e\x42\xcb\x51\x9e\x46\x33\xd8\xc9\x3b\x69\xbf\x02\xf7\x90\x6f\x5a\x64\xce\x09\x6c\x69\xfd\x37\x0b\xd8\xfa\xcf\xa1\x1c\x26\x81\x32\x28\x23\x53\xe1\xa7\x12\x40\xfa\x6b\xb0\x92\x91\x70\x3f\x53\x48\xa1\x73\x90\x2a\x47\xa9\x73\x17\xcd\x16\x4d\x16\x23\x30\xd7\x3a\x9b\xd1\x6c\xf2\x39\x79\x8d\xaa\x3b\x69\x63\x05\xb5\xe0\x42\xeb\xa7\x56\x18\x39\xbc\x49\x8e\x71\x85\x23\xff\x32\xf2\x2f\xff\x6a\xfe\xa5\x79\x83\xbb\x22\x0b\xf1\xd3\x65\x80\xfa\xb5\x1b\x94\xba\x58\x17\x40\xa1\xe1\x3b\xde\x9c\xa9\xdf\xd8\x85\x92\xd8\x4b\x6e\xe6\x66\x4d\x71\x45\xc1\xcd\xa8\xc4\x7c\xf5\xc7\x20\x81\x5c\x88\xa0\x2e\xbb\x8b\xc4\xdb\x2e\xbf\xff\x30\xbb\xe8\x9d\x6d\xd9\xd4\xcd\x15\xfe\x6d\xd5\xb7\xad\x93\x1b\x30\xfc\xad\x69\x32\x6c\x78\xd3\xd4\x6d\x9a\x45\x8b\x50\xd8\xed\x53\x66\x51\x64\xeb\xb8\x66\x34\x0e\xd9\x78\xaa\x3c\x64\xa5\x75\x91\x31\x28\xce\x01\x45\x28\xbe\x16\xc0\x1e\x0b\x5d\xf6\x4b\xb6\x7c\x5d\x89\xa1\xaf\xcd\x4d\xc2\x67\x34\xb1\x81\x84\xa9\x14\xe0\xf5\xa7\xf2\x68\x63\x38\x3e\xac\x6f\xe4\x6a\xa3\x5a\xc4\x7d\x4f\xb9\xb9\xe5\x2b\xd9\xa2\x5e\x84\x64\xbc\x0e\x43\xb5\x55\x20\x24\x7d\xa6\x04\x28\x78\x2e\x7a\x03\xc2\x7e\xc0\x66\x24\x66\x51\x42\x33\xd0\x9f\xf1\x68\xe3\xbe\xf6\xce\xb2\x17\x2d\x02\x09\x40\xff\xfd\xf5\x48\x9f\x8d\xf3\x03\x3c\x5f\xc9\xbd\x59\x66\xff\x9a\xac\x99\x98\xde\xe5\x4b\xb6\xcc\xb9\x11\x3a\x60\x00\x37\xfc\x0b\x40\xe6\xe0\xc1\xe1\x4a\x44\xdf\xf2\x2d\x53\x9a\x6e\xd3\x53\x22\xf2\x24\x59\xd4\x52\xa1\x81\x4a\x1b\x60\xf6\x59\x14\x56\x78\x36\xae\x64\xcc\x6e\xbc\x54\x78\x1e\x57\x59\x7b\x1f\xe0\x29\x1b\xd3\x6c\xb0\x94\xb5\x16\xa3\xf2\x6a\x64\xfe\x46\xe6\xef\xdf\x8f\xf9\xab\xa1\x8a\x61\xfa\xab\x30\x02\x2a\x9f\x47\xa8\xb0\x12\xaa\xd4\x80\x04\x0d\xd8\xac\xa4\x9b\x8e\x9f\x01\xde\xd4\x13\x2d\xb1\x0c\x82\xe0\x2d\x2e\x53\x68\x6d\xe2\xca\x37\x06\xe3\xb5\x04\xdf\x37\x0c\xb0\x40\x43\x25\xdf\xb9\xf8\x08\x73\x22\x65\xa6\x5b\xfc\x1f\xe8\x52\xe6\x9a\x44\x2c\x33\xa0\x33\xa7\x0d\x02\x82\xab\xb3\x3a\x28\xec\xa1\xdb\xe1\xa2\x23\xfa\xe4\xd1\x3e\x6d\xdc\x02\x34\xe8\xd2\xb6\x0a\x43\x12\x1a\xd9\xf8\x91\xc3\xb8\x48\xbc\x71\xf3\x4a\x92\xd6\x9e\x59\x7f\x68\x7e\x52\x04\xd4\xc3\x8f\x65\x99\xe0\xbe\x23\x6a\x9e\x92\xb9\x2a\x6e\x3f\xa6\xdd\x26\xaf\xfc\xf2\x9c\xf5\xae\x48\xc6\x56\x19\x53\x9b\xa0\x86\xf3\x1d\x46\xdf\xdb\x1e\xdd\xb4\xb8\x82\x28\x98\x98\x86\xbc\x91\x1e\xef\x79\xdb\x7a\xeb\x4b\x7e\xad\x05\x92\x8d\x7b\x8f\x2b\xf3\x09\xa8\x5c\x22\x5f\x88\xca\xc4\x92\x27\x2d\x3f\x6a\xac\xe5\x4a\xa2\xf7\x15\x5e\x41\x5b\xee\x7f\x85\xb1\xba\xa6\x7b\xc5\xcd\x49\xe2\x60\x9e\xb6\x20\x27\xcb\xbd\xed\xf7\x00\xf7\xe7\x35\xeb\x67\xb1\xcf\x4c\x23\xb2\x91\x49\xac\xf0\x03\x37\x09\x59\xfa\xba\x1d\xee\x72\xb7\xe4\x59\xfc\xc3\x57\x43\x9c\xed\xbe\x9d\x5d\x5f\xfc\xf0\x95\x1f\x94\x54\xf2\x07\x55\xd8\xe6\x80\x26\x4c\xcf\x5f\x3d\xde\xd9\x2e\xa1\x4a\x7f\x2b\x65\x9b\x9f\x6f\x70\x8a\x6f\xbd\x6f\x2c\xa4\x0a\x61\xdf\x4c\xc9\xef\xb3\xbd\x4b\x82\x64\x18\x9d\x94\x75\x42\x64\xae\xd3\x3c\xe4\x76\xe0\x9e\x21\x9e\x64\x66\xe8\x6b\x56\xc9\x27\x70\xe8\xca\x02\x9f\xb7\x2d\xd2\x35\xfd\x17\x2c\x14\x1c\xdb\xb3\xa0\x36\x21\xb8\xb2\x6b\x68\x4f\x66\x17\x45\x66\x25\x98\xcf\xa7\x4d\xa2\xcd\x70\x11\x9c\x01\x64\x44\x75\x28\xc1\x25\x9a\xba\xa0\x6c\x1b\xa4\x6f\x87\x4c\x63\xd7\xaa\x06\x0a\x4e\xe4\x87\x52\xf3\xe3\xa6\x11\xc3\x34\x3e\x65\x16\xdd\xbe\x7c\x16\x01\xbc\x19\x8c\x00\xde\x1c\x86\x00\xde\x8c\x08\xc0\x5b\xce\x88\x00\x02\x2b\x1b\x11\xc0\xbf\x12\x01\x74\xbd\x5d\xae\x7b\xa3\x9e\xcc\x14\xf1\x08\x02\xdf\x6c\xfe\x6c\xe5\x9d\x7b\xee\x3c\x3a\x13\x5e\xaa\xff\x9f\xbd\x77\x5d\x6e\xe3\xc6\x16\x46\x5f\x05\x23\x7f\x55\xb2\x77\x89\x94\xed\x24\x9e\x44\x53\xf3\x43\x91\xe4\x8c\x6a\x6c\x99\x9f\x24\x27\xb3\x6b\x38\xdb\x1b\xec\x06\x49\x1c\x35\x81\x1e\x00\x4d\x89\x93\x3d\x55\xdf\x3b\x9c\x5f\xe7\xf5\xbe\x27\x39\x85\xb5\x80\x6e\x34\x89\xbe\x50\x96\x33\xc9\xde\xcd\x1f\x89\x45\x76\xe3\xb2\xb0\xb0\xee\x17\x43\x67\x19\xd7\x4b\xd6\x53\x2c\xb1\x87\x67\xa4\xa1\x99\x8f\x46\x94\x73\x8c\xab\x64\xd5\x48\x76\x27\x44\x33\x8d\xf6\xb6\x36\x30\x35\xe4\x83\xc5\xd7\xd7\x8b\x6a\x36\xac\xef\xcd\x17\x5a\xdf\x95\x34\x4f\x07\x42\x21\xc5\xe8\x17\x59\xe6\xe7\x41\xf2\x4b\x2c\x13\x72\x9d\xfb\x81\x6f\x82\x8f\x86\x8c\x11\xa0\xe7\xd3\x95\x74\x3f\x41\x9d\x74\x16\xa3\x69\x50\x78\x20\x86\xb4\x6e\xe2\x28\x79\x70\xb9\x86\x66\x0a\xd2\xbd\xaa\x5e\xec\xba\x25\xf6\xbf\x61\x07\x0d\x19\x00\xf7\x4b\xa9\x59\x65\x62\x27\xf7\x8c\xd0\xb8\x8b\xa3\xfa\x94\x86\x8c\x16\x7a\xdd\x8f\x62\x13\xd4\xe9\xfa\xef\xe2\x86\x63\x7e\x5c\xc9\x42\x14\x51\x8c\x6a\x29\x80\x0f\xbb\x46\x47\x6d\xec\xac\xf7\xba\x3a\x58\xda\xf6\xba\x60\x35\xce\x98\x00\x74\x19\x6f\x04\x8e\xf3\x04\xeb\x31\x71\x9f\x5d\xc3\x72\xc0\x6d\x57\x45\x5d\x55\x09\x32\x3e\xc5\xa1\x96\x5e\xd9\x7e\xda\x6b\x4e\x4b\x94\x1d\x19\xd7\xed\x6b\xc5\xf4\xf2\xc8\x42\xdf\xfe\xca\x04\x61\x0f\x79\xc6\x13\x6e\x7c\x40\x79\x5b\xbd\x2b\x82\xcd\x75\x46\x9e\x87\xc1\x8d\x72\x26\xf3\xcf\x05\x54\x97\xfc\xdd\x59\x3d\x0a\x29\x51\x2f\x0a\x89\x94\xe8\xcd\x16\x25\x7a\x33\x50\xa2\x8e\x1d\x0c\x94\x68\xbf\x75\x0d\x94\xc8\x7d\xfe\x27\x51\xa2\x96\x74\xc2\x51\x4c\x78\xef\xf7\xd8\x9b\xe6\xc7\xb6\x45\xd9\xde\x4f\x46\xc6\x6c\xdb\xbb\xbd\x1d\x68\x88\xef\x0c\x1f\x7e\x57\x3d\x8a\xae\x41\xe3\xfd\xe6\xbb\x7e\x41\xb0\x87\x28\x78\x22\x06\x6d\xa8\x02\xb1\x63\x89\x77\xae\x42\xb8\xb0\x95\x07\x0f\xec\xcb\xe5\x04\x10\xbe\x1c\x1b\xf2\xfa\xed\xd9\x57\x5f\x7d\xf5\x1d\xd8\xdf\xb1\x12\x36\x24\xc6\x7f\xbc\x3d\x6b\x31\xd2\xdb\x39\x46\xf1\x45\x8a\x22\x73\x3d\xc9\xaa\x40\x8a\x5d\xa0\xc6\x91\x0e\xeb\x5b\x74\xc1\x13\x74\x7f\xef\x87\xd2\xee\x25\x72\x27\xe4\xbd\xf0\x0e\x68\xe7\xbb\x69\xd7\x85\x3f\xcb\x04\x8e\xb3\xf6\x93\xf5\xaf\xdd\xb3\x3b\xc2\xbe\x5b\xfa\x17\x62\xac\x30\x6d\x1b\x67\x6d\x2e\x27\xd2\x07\x40\xbd\xc0\x54\x2e\xd0\xb7\xd5\xea\x4f\x72\xcf\xab\x97\xca\x64\xf2\xb2\xf5\x57\xd3\xa7\x1f\xed\x5f\x50\xc3\xee\x69\x5b\x5e\xfe\xd6\x5a\x7e\xc0\x17\xca\xfc\xbc\x60\x43\x4f\xb0\x9c\xb2\x07\xda\x1e\xc2\x47\xd9\x36\x2d\xb2\xa4\xcf\x5f\x51\xc6\xa8\x12\x2c\x7d\xab\xe4\xaa\xff\x9a\xde\x55\x2f\x55\x58\x17\x7a\xa3\x15\x5b\x50\x95\xb6\x4e\x4c\x90\xc8\x29\x57\x0b\x03\x0e\xdc\x97\xc4\x69\x4a\xa7\xf0\x9f\x5e\xa8\x48\xfa\x49\x7a\x3b\x9b\xbb\x9c\xbb\x5c\x46\x94\x04\x30\x45\xf5\x3d\xd3\x4b\xcb\xb3\x1d\xcf\x3d\x22\x4d\x55\x40\xc3\xcf\x96\xd0\x88\x96\x4f\x57\x0b\x84\x09\x43\x0a\x1d\xec\xbd\x75\xc3\xa4\xf7\x79\x92\x32\xa7\xb5\x21\x68\xb2\x65\xe7\xb7\x41\xa0\xa4\x8b\x57\xc1\x13\xa2\xee\x78\xb8\xf6\xf8\xd2\xbd\x79\x28\x61\xf1\x54\x7b\xea\x96\x4d\xc8\xe7\x0a\x7a\x3c\x38\xa4\x2a\xb9\x07\x6c\xce\x0d\xa1\x00\xc1\x5e\xa5\xba\x47\x7c\x77\x7d\x07\xff\xd5\xc2\x58\xc9\xb5\x7a\xe9\x85\x8e\x6b\xed\x2a\x86\x03\xd7\x6a\xd9\xc8\xc0\xb5\x5a\x16\x34\x70\xad\xdd\xcf\xc0\xb5\x06\xae\xd5\xf4\xd4\xc0\xb5\x5a\x5f\xff\x4d\x46\xf6\x7f\xa9\x64\xce\x39\xcb\xf8\xc3\x17\xef\x0f\x09\x49\x25\xad\x1d\x22\x77\x9f\xd8\x0d\xbc\x8f\xac\xd5\x9d\x4b\x19\x79\xbf\xfb\xc8\x34\x1a\x7b\xff\x8c\x5c\x63\xe3\xef\x2a\xb7\x12\x6d\x96\xf6\x47\x90\x5b\xd4\x9a\x7d\x14\x60\x1d\x78\x0b\x95\x7c\x4e\xc8\x9c\x66\xd8\x65\xe0\x0b\x64\x82\x62\xd6\xcd\x5e\x7d\x26\xe1\x95\x21\x0b\x74\x48\x04\x18\x12\x01\xfe\xd5\x89\x00\xbb\xc4\xab\xab\xbf\x24\xde\xf7\xc7\x76\x98\xcc\x32\x79\x7f\x39\xb9\x9c\x4c\x68\x72\xc7\x8c\xb6\x42\xe8\x4f\x52\xdd\x65\x92\x76\x87\x81\x1f\x9e\xb6\xbd\xed\xd3\xba\x2a\x5f\x05\xac\x34\x6a\x54\xc6\x1e\x2c\xa9\x15\x8d\x8a\x0c\x6a\xdf\xa6\x4a\xe6\xc4\x0e\x4d\x98\x48\x68\xae\xb1\x7f\x7b\xd9\x29\x1f\x7b\xc1\xf8\xa9\x62\x63\x56\x0d\xbc\x80\xd8\xee\xdd\xc1\x0b\x20\xf3\xe3\x5f\xde\x9d\x5e\x3d\x1e\x34\x8d\xaf\x3f\x01\x6c\x60\xec\x7f\x19\x70\xee\xf5\x8d\x4a\xce\xb5\x39\x5b\xb2\xe4\xae\x13\x18\x37\xcc\x38\x11\x78\x14\xa8\x5b\xa3\xc4\xbe\x6c\xb5\xe5\xd3\x9f\x6e\xc8\xc5\xd9\xeb\x32\xc9\x41\x8f\xc9\xa9\x93\x82\x62\xab\x5f\xd7\xdb\x47\x62\x5b\x8b\xe9\xc1\xb9\xbc\x92\x66\x69\xaf\x27\x34\x75\xc2\x86\x70\xbe\x6b\xd5\x39\x26\x11\x4c\x0f\x3a\x5a\x9f\x96\x83\xc4\x60\xc2\x44\x11\xd3\xeb\x46\xd5\x5b\xb1\x1f\xdd\x42\x62\xaf\xb9\x45\xed\xe5\xa2\x98\xe5\xf3\x33\x29\x04\x4b\x20\x1c\xb4\xea\x9d\xc1\xc5\xa2\x6f\xe7\xbc\xef\x27\x6f\x3b\x86\x40\x3f\x0f\x17\xe4\xfb\xc9\x5b\xb2\x92\x69\xbc\xef\x64\x1c\x8b\xf1\x18\xb3\xac\x94\x36\xec\x44\xf6\xbc\x0d\x5f\x31\x62\x71\x92\xcc\x7c\x77\x93\xc6\x6a\x7d\xee\xb5\xc8\x3b\xe8\x54\x42\xa7\x5e\xa9\xc5\x2f\xa5\x86\x84\x91\x19\x23\x90\x2b\x62\x64\xd4\xf8\xc4\x68\xb2\x0c\x1b\xaf\xb8\x06\x31\xda\x35\x60\x25\x7c\x95\x2b\xb9\x66\x65\x2a\x0b\xe8\xe0\x22\x01\x04\xcb\x65\x3a\x32\x72\xd4\xd6\x7a\xaa\xdc\xaa\xc6\x8d\x61\x63\x16\xe7\xcd\x0e\x32\x59\x30\xf3\xc2\xae\x3d\x65\xb3\x02\x9b\xd1\xe6\x85\xca\xa5\xb6\xa8\xdf\x8e\xa0\x8f\x6a\x47\x38\xcb\xe7\xe7\xd4\xd0\xcb\x39\x4d\xd8\xc4\xb5\xf3\xec\x40\x92\xef\x27\x6f\xb7\x5f\x41\x69\x42\x31\x10\x90\x09\x7b\xb0\xe2\x00\x88\x79\xa0\x84\x7b\x64\x88\x12\x31\xc8\x05\x2a\xed\x35\x3e\x35\xdc\x49\x71\xd4\x18\x7b\x2e\x16\xd5\x72\x25\x17\x8a\xae\x40\x7c\xe3\x82\x48\x95\x42\x95\xd4\x28\xb4\xa9\x49\x96\x25\xcd\x33\xf2\xb8\x14\x3e\x04\xf6\xe9\x1f\xbb\x3a\x47\x82\xb1\x14\x06\x5c\xe1\x1b\x4b\x16\xac\x24\x0a\x62\xbb\x1d\xdf\x1e\xcc\x91\xd1\x8a\xb8\x42\x5e\x9a\x5c\x33\xb5\xdd\x0a\xac\xc7\xa0\x4b\x2a\x52\x7b\xfe\x22\x91\x2b\x90\xbf\xca\xd5\x83\xb5\x10\xdd\x89\x58\x9c\xd3\x21\x26\x6c\x4a\x16\x46\xf3\x78\xf3\xca\xb0\xda\x03\x21\x97\x65\x9a\xbd\x95\xa2\xaa\xfd\x96\xbb\x08\x8e\xe0\x79\xa1\x0b\x9a\x65\x51\x2b\xad\xd5\x43\x52\x48\xca\x1b\x8f\xc7\x2f\xf6\x4c\x28\xb3\xc8\x86\x88\xfe\x51\xe4\x8a\xaf\x79\xc6\x16\xfd\x88\x52\xe4\xb5\x23\xc2\xe7\xbe\x2b\xe7\x91\x47\x1b\xe6\x82\xf8\xef\xec\x3d\xce\xc6\x45\xf0\xfc\xa7\x59\x3e\xff\xe4\xee\x59\x94\x79\xe8\x8d\x4e\x4c\x16\xde\xc6\xf0\x75\xa8\x22\x2b\xe7\x16\x17\x3d\xfa\x30\xa1\x5d\xb3\x02\x6a\x6a\xcf\xc6\x46\x2f\xb4\x95\x8a\x13\x94\x62\xb1\x96\x81\xc3\xa4\xc3\x43\x8d\xc4\x94\xe6\x78\xc4\xee\x21\x2e\xb4\xd5\x60\xa0\x81\x35\x91\xf7\x51\x23\xe4\xee\xcd\xb0\xa7\xc8\x5c\x6b\xa7\x6a\x82\xcf\x6e\x5b\x3a\xcb\xe7\x7b\xf0\x90\x0b\x7f\x2c\xd5\x11\xb9\x13\x02\xa1\xc5\xf7\x6a\xb0\xab\xb7\x12\x72\x9e\x51\x11\x37\xcc\x7d\xae\x38\x62\x97\xfd\x60\x6e\xa5\xef\x9d\x27\x85\x58\x51\xd5\x2d\x97\xd8\x3d\x44\xde\xab\xf1\xbd\x8a\xc9\xd1\xd8\xd2\xbf\x7a\x3d\xe3\xf6\xa6\xa9\xbb\xb2\xe0\xab\x66\x86\xa0\xce\xed\xb9\x01\xde\x62\x2a\x08\xf3\x2d\xd5\x50\x25\x6a\xa0\x6c\xd4\x95\xea\x75\x44\x60\x8c\x78\x08\x73\xb8\xb4\xd8\xc2\x57\x4f\xb5\x2b\x83\x42\xaf\x39\x4a\x99\x44\xce\x1b\x89\x4f\xb5\x20\x68\xd6\x01\xb6\xb9\x34\x68\x5a\x88\x4c\xd4\x57\x8e\x75\x96\xd4\x06\xab\x9a\xc5\xc0\x5c\xf9\xfe\x09\xd7\x93\xb7\x04\x84\xb9\x10\x01\x5f\x36\x1f\x63\x43\x00\x33\x1e\x23\x00\xc8\x9d\xc8\xfb\x1e\x29\xb4\xee\x14\xb7\x5f\x6b\x38\x44\xbb\xb5\xe0\x64\x62\x7b\x0b\x49\x6e\xad\x76\x16\xd4\xc1\x77\x74\xf9\xb9\xab\xd1\xef\x09\x76\xd0\x07\x32\xda\x63\xc4\x42\xdc\x19\x36\xad\xa4\x2e\x7d\xb9\xe1\x52\x4c\xb7\xd4\x7b\x0e\xb8\x63\x24\x99\x1e\xdc\x16\x42\xb0\x6c\x7a\x80\xe5\xad\x67\xd2\x44\xcb\x3c\x3b\xdd\x19\x56\xa0\x98\xce\xa5\xb0\x77\xce\x31\x15\xae\x89\x81\x51\x70\xc2\xad\x1a\xc7\x30\x5f\x94\x40\xfa\x25\x9c\xdf\x5c\x5b\x49\x1a\xdf\xc3\x79\x62\x43\xcf\x0a\xe3\x9e\xa9\xcf\x1f\x45\x1b\x8d\xb6\xfa\x94\x2b\x96\x98\x6c\x13\xad\xbe\x6c\x57\x26\xfc\xfc\xee\xfc\xaa\x47\xa2\xec\x0a\x6a\x5a\xe7\x39\xa3\x4a\x87\x5d\x62\x2e\x27\x5e\x49\xe6\xd8\x45\x0f\x9e\xfc\x83\x37\x3b\x81\x0c\xd9\x70\xaf\x73\xa6\x56\x5c\x6b\xbe\x66\xe4\xdd\xeb\x40\xa2\xa8\xf0\x1b\x4f\x68\xdf\x56\xd7\xb3\x7c\x6e\xe5\xcf\x89\x92\x0f\x9b\x0b\x67\x24\xb9\xc9\x2c\x4a\xf5\x24\xbc\xdf\x4f\xde\xb6\x0f\x10\x47\xfc\xb8\x54\x16\x48\xed\x87\x9a\xb0\xd5\x8c\xa5\x16\x3d\xef\x8a\x19\x1b\xe5\x76\x06\x67\x8d\xd6\xa4\x3e\x55\xb3\x61\xbe\x8b\x4e\x97\x6b\xbf\xcc\x8d\x5d\xae\x3e\xb3\x0f\x16\xf9\x1e\x6c\xa7\x63\x88\x1a\x3b\x42\x58\xc4\x36\x8f\xe0\x09\xd8\x55\xae\x24\xd6\xf6\xc9\x36\x24\xb1\x23\x92\x02\xfb\x21\x15\xb9\x36\x8a\xd1\x55\xa8\x38\x54\x10\x3a\x3c\x8c\xd7\x74\x77\x6b\x23\xc9\x92\x72\xd0\x07\x6e\x50\x30\xf3\xbd\x1a\xcb\x15\xce\x43\x70\xbb\x7a\xe1\xae\x26\xd6\x97\xd2\x05\x4a\x08\xbe\xe7\xe2\x66\x23\x12\xcc\xe4\xdf\x0b\xf6\xb5\x37\x8f\x1a\x88\xad\x89\xeb\x76\xae\xf3\x3d\xc4\x18\x96\x15\xea\xd1\xde\x57\xda\x6d\x4b\x81\xa1\x32\x50\x1f\x06\x28\x1a\x1b\xb6\x02\xe3\x98\x90\x77\xf2\x9e\x29\x6f\x29\x5b\xd8\x6b\xac\x58\x5a\x24\xd8\x20\x7e\x54\xe4\x60\x18\x16\x89\x7d\xf4\x4f\x7c\xb1\x2c\x9f\x8d\x53\x59\xfb\xa6\x37\xac\x4f\x3e\x92\x42\xd3\x05\x83\x94\x3f\x2b\x61\x83\x67\x2b\x27\x2b\xa9\x90\x9c\xd7\xa8\xc4\x2b\xfd\x08\x0a\xf1\x4e\x2e\xde\xb1\x35\x8b\xf5\xef\xd8\x39\x11\xff\x6c\x0d\xea\xd0\xd8\x3f\x83\xaf\x7d\x52\x5e\x20\x42\x36\xd0\x82\x52\xdf\xaf\x60\xbf\x42\x72\xfc\xc1\x9b\x58\x3e\xcc\xe7\x68\x5c\xb9\x14\x73\x69\xff\x85\xb6\x15\xab\xc4\x4e\x0f\x9a\x95\xf9\x4c\x2e\xb0\x7f\x2a\x5b\x71\x63\x2a\x76\x64\x27\x33\x8a\x26\x8c\xe4\x3c\x67\x47\xbe\xf8\x97\x15\xca\x41\xb0\x45\xfb\xc1\x6a\xd5\xd0\x3e\x7b\x7a\x60\x12\xc2\x1e\x58\x62\x61\x86\xaa\x74\xcd\xbe\x43\x3e\xcc\xe7\x7f\x1b\xef\x0f\xfe\xc9\xcd\xd5\xe9\xed\xc4\xb2\xf6\xc8\x01\x50\xb1\xf9\x10\xeb\xf2\x33\xea\x4a\xce\x1a\x75\xb8\x2a\x77\x4e\xb6\x5a\x46\xa5\xf1\x28\x2a\x16\x2c\xec\x84\x7d\x0f\xdf\xa5\x72\x15\x57\xe4\x72\x9e\xdc\x11\x8a\x2d\x31\xd0\x27\xab\x98\x73\x0a\xa0\xbd\x1f\x7e\x49\x64\x96\x71\xab\xc9\x3b\x51\xb3\x2c\xc8\x11\x37\x48\x96\x02\x23\xcb\x97\x6c\xc5\x14\xcd\xdc\xba\xa8\x2e\x7b\xd0\x5b\xa9\xf0\xed\x19\x79\xf3\xf2\x9b\x37\xe4\xf9\xab\x97\xaf\xbf\xfe\xbf\xff\xe7\xff\x7d\xf3\xcd\x37\x5f\x7d\xf3\xa2\xa9\x19\x7a\x0e\x8d\x7a\xe8\x2c\xdb\xd4\x84\xaf\xed\x49\x74\x99\x6f\x6b\x31\x43\x0a\x22\x73\xa6\x68\x93\x9c\xaa\x37\xda\xb0\x95\x1e\x93\x77\x5c\x14\x0f\xf6\x55\x4d\xbe\x7a\xfd\xfb\x37\xdf\xda\xe5\xbc\xfc\xee\xbb\xef\x8e\x2c\x1c\x33\x86\xcd\x79\x34\x59\x49\x6d\xc5\x92\x52\x80\x38\xbd\x3a\x8d\x0d\xeb\x77\x89\xdb\xfe\xfa\xbb\x57\xdf\xbc\xf6\xfb\xf3\x71\xcf\x96\x8c\x0b\x66\xf1\x99\x2a\x9e\x6d\xec\x21\x28\x39\xcb\xd8\x0a\xcf\x21\xde\x09\x04\xc7\x93\x6b\xa6\x32\xab\x26\x96\x97\xa0\xdc\x63\xb5\xa1\xef\xcb\xc6\x18\x3e\x20\xc2\xfb\x1c\xb7\x3f\x14\x3c\x26\x56\x40\xe5\x6b\x16\x5e\x8f\xd7\x2f\x5f\xbe\x7c\x79\xf2\xfa\xbb\xef\xbe\xfb\x2e\x46\xa4\x72\x67\x28\x22\xff\x31\xfe\xb7\xdd\x5f\x1f\x46\x55\xef\xa4\x11\x17\x66\x24\xd5\x08\x51\x3b\x1e\x77\x0d\x7c\xf0\x12\x94\xdd\x5e\x52\xfd\x59\xfd\xf9\x26\x5b\xe3\x52\xca\xbb\xd0\x18\xd0\xc0\x8e\x8d\xcc\x47\x48\x0f\xb7\x18\xb3\x45\x24\x54\xc1\x2d\x74\x9d\x8d\xdd\xd5\xad\x34\x32\x77\xc0\x8d\xda\x9f\xec\xfb\x96\x00\xce\x36\x20\x7b\x8a\x74\x77\x84\x99\x34\x46\xae\xc6\x5e\xc9\x77\xc9\x24\x9a\xce\x99\xef\x14\x12\x45\x5a\x5f\x9e\x25\x57\x6c\x0d\x51\x6f\x95\x09\xc1\x8e\xee\xf4\x49\x8c\xa9\x98\x6d\x72\xaa\xb5\x6b\x6f\xbf\x91\x05\xd1\xf7\xdc\xc4\x9b\xc2\x18\xe9\x16\xea\xf8\xf4\x8c\x11\x8d\xbd\x37\xdc\x72\xb1\x43\x15\x4e\xe1\x5b\xd3\x21\x94\xb0\xce\x63\x14\xbb\x40\x40\x04\x23\xe9\x6c\x63\xf5\xf7\x0c\x1d\x8b\x4a\x16\x8b\xe5\x56\x34\x3c\x8c\x7c\x84\xd3\xdc\xbb\x6e\xfb\xb1\x31\xdd\xe3\xb9\xcc\x78\xb2\x41\xe9\x6c\xc6\x82\x9d\x56\x28\x8c\x80\xdd\x97\xc5\x96\x0c\xee\x5c\xf1\x75\xb4\x7d\x67\x7b\xcd\xf6\x59\xb1\x70\xa6\xaa\x77\x72\x71\xae\x64\x9e\x5b\xb4\xdf\x53\x0e\x83\x61\xde\xb3\x95\x54\x9b\x89\x92\x73\x9e\xb1\x09\x35\xcb\xc7\xac\xe5\x86\xaf\xc0\x03\x74\x46\xb3\xe4\x07\x45\xf3\xe5\x9f\xa8\x58\x9c\xce\xcd\xe3\x76\xe6\x47\x3b\xf7\x40\x7a\xfc\x68\x70\x48\x5e\x73\xb8\x95\x7f\x92\xda\x9c\x26\x0d\xd1\x8c\xf5\xdb\x7f\xde\xfc\x6e\x48\x09\xc0\xa4\x6a\x51\x5a\x37\x98\x52\x4a\x03\xab\x7d\x74\x21\xfd\xd5\xa1\x95\x45\xb4\xf2\x54\xcb\xca\x08\xc2\x8d\x66\xd9\x9c\x3c\xa7\xf3\x86\xba\xb5\x40\x1e\xdc\xd8\x4b\xee\x98\x73\x39\x14\x43\x65\x13\xf1\xf7\xc5\x98\x7c\xbf\x29\x1b\x03\x21\x6a\xc7\x86\x74\x2d\xe5\xa3\x4e\xbc\x72\x68\x1d\x5b\x26\xb0\x89\x78\x3b\xb5\x92\xda\x4d\x0f\xce\xaf\x3f\x4c\xa6\x07\x50\xbf\xd4\x32\x7a\x47\x2d\xee\xa9\x6b\xd9\x0a\xbd\x46\xb5\x5c\x41\x02\x1e\xcd\xb2\x36\x35\x1e\xd6\x16\x02\xce\xae\xe6\x08\x2d\x07\x90\x8f\x46\x15\x5d\x31\x67\x32\xb9\xbe\xb8\xfd\x78\x7d\x65\x47\x3d\x3d\x3b\xbb\x98\xdc\x8e\xc9\x47\x1d\xbd\xf5\xee\x41\x8e\x0b\x83\x76\x4f\x1b\x59\x80\x51\xb4\x4e\x93\x82\x4d\x5d\x5e\x4d\x3e\xde\x4e\x0f\x90\x4c\xfd\xa1\x85\x96\x00\x11\xf1\x64\xd8\x78\x3a\xba\x4d\xe8\xa9\xc1\x91\x5c\x57\xb1\xe9\x01\xae\x29\xde\x72\xc8\x9b\xdc\xdc\x89\x6c\x2d\x86\x48\x47\xc4\x97\x54\x43\x71\x5c\xec\xe0\x90\x2b\xe9\x0b\xdc\xfa\xc3\x8d\x8d\x1d\x47\x25\x00\x9d\x03\x23\xd8\x39\x44\x19\xf8\x45\xb3\xcc\x2b\xeb\x7e\x61\x8d\x27\x57\xda\x9c\x08\xe0\x77\x6c\x4d\x4d\x0b\x68\xb7\xde\x5a\x52\xb8\x37\x2d\x66\x6b\x9e\x60\xcc\xf5\x44\x49\x23\x13\xd9\xa9\xf6\x80\x8c\x1a\x86\x16\x61\x98\x61\xee\x5e\x27\x34\x75\x36\x36\xa7\xf0\xac\x58\xea\xa6\x89\xca\x5c\x10\xcd\x7d\x64\xb9\x97\xbf\xa4\x80\xc4\x9e\xed\x5c\xdf\x4e\xae\x3f\xdc\x7e\xfa\xfe\xc3\x87\x5b\xd4\x92\x32\x36\x37\x64\x96\x51\x71\xd7\x68\xff\x68\x50\x02\x82\xbd\xde\xec\xd3\xdf\xeb\xd6\xb5\x5b\x35\x3b\x5d\xb1\xbc\xb5\x4b\x8a\x7d\x36\x5b\xa3\x48\x91\x41\x21\x32\xd5\x6f\xf2\x88\x64\x8c\xae\x5d\xb4\x50\x54\xef\x06\xc1\x0b\x0c\xd2\x4b\x29\x9d\xe4\xbc\x35\xe2\x23\x5a\x02\x3b\xf7\xcc\x99\x14\xc2\xea\x88\x77\x97\x02\x6a\xda\x35\x45\x1c\xb4\xf2\x5a\x8f\xcd\xd7\x3e\xcd\xf9\x9c\x65\xd1\x38\xf6\xb6\x05\xed\x0c\xd2\x6c\xb3\x6a\x5f\x8c\x33\x56\x5f\xc9\x94\x41\x4d\xe0\xae\xe3\xbf\x08\x5f\x38\xbb\x3c\xbf\xb6\x2f\xa1\x16\x97\xd9\x7f\xc9\x39\xb1\xdf\x1e\x82\x2a\xe0\x47\x1f\x09\x29\x46\x18\x4c\x09\x69\xb9\x2d\x7e\xd9\x15\xdd\xf8\xf3\x42\xab\x6e\xc9\x84\xc0\x19\x80\x7d\x81\x59\x60\x4c\x76\xbf\xc6\xf5\x43\x1f\xbf\x6a\x89\x6b\x52\x55\xb0\x8c\x95\x34\xf9\x02\x45\x37\xe7\x94\x67\x56\xbe\xbe\x14\x33\x59\x88\xd4\x8a\x0d\x4d\x9a\x7c\x5d\xe2\x78\xdb\xf0\x62\x1d\xce\x1f\xcf\x27\xc7\xb7\x67\x13\x34\xfc\x47\x77\x2f\x52\x38\x0c\xe7\x2f\x0c\xec\x8b\xc8\x61\x63\xae\x5f\xe0\xe5\x25\x87\x8f\x8d\x2a\x05\xe1\x4a\x31\x9d\xbb\x42\xa8\x55\x7f\xde\x42\x71\xb3\x29\xd9\x83\x27\x14\xae\xc9\xac\xe5\xeb\x6b\xc9\xa3\x1c\x86\x26\x09\x94\x1b\x05\xc6\x91\x14\xd8\xa4\x5d\xce\xe7\x84\xe2\x7a\x40\xa8\xb0\xab\x55\x8a\x25\x66\x2b\xbe\x8c\xbc\x8d\x07\x71\xcf\x68\x72\x37\xaa\x75\x10\x3a\xf2\xa1\xe0\x25\x75\xf6\x2d\x11\xab\x56\xd9\xdc\x78\x62\xd4\x54\x66\x7e\x7a\x60\x92\x7c\x7a\x00\x52\x0b\x05\xf8\xc6\x87\x09\x00\x1d\xca\x51\xd1\xfd\x63\x58\x95\xa5\x4e\x96\x20\xde\x56\xfe\x60\x0a\x92\x02\x60\x01\x82\x02\x0e\xfb\xa8\x34\x0a\x34\x36\x39\x14\x52\x80\xb3\xae\x54\xee\x5c\xa4\x92\x73\xda\x69\xbd\xf4\x2e\x61\x8b\x25\xe7\x7f\x3a\x9b\xd4\x1c\xb6\x49\x7e\xf2\xfa\x75\x34\xce\xa6\x48\xf3\x93\x37\xdf\x1e\xc1\x23\xaf\x7e\xff\x1d\xfe\xe3\xf5\x57\xd5\xbf\xbe\x7d\x89\xff\x7a\xf3\xf5\xd7\x5f\xb9\x7f\xbd\x79\xf3\xa6\xfc\xd7\xef\x63\x4c\xb9\xf9\xf2\xd5\x8b\x73\xd8\x73\x9b\x48\xd4\x5e\x13\xb9\x9a\x05\xb9\x45\xfe\x4c\x8f\x00\x44\x47\x25\xf2\x37\x04\xec\x4f\x4a\x06\x2d\x52\x34\x3c\xf9\x18\xae\xaa\x7d\x67\xdc\x32\xd4\x91\xa0\x22\x58\xdc\x3e\x4e\x7a\xe5\x07\xd8\x95\x74\xbc\xde\x52\x71\x89\x94\x50\x78\xf4\x12\x5a\x3b\x1e\x8f\x1a\x7b\x08\x8f\xca\x99\x9b\x29\x68\x7b\xfd\xb4\x56\x0a\xfa\xa1\x30\x8f\x24\xa1\x3b\x6f\x3e\x31\x0d\x95\x85\x59\xc8\x90\x86\x82\x54\xdb\x4d\x45\x8d\x1c\xa8\xe8\x2f\x4a\x45\xa5\x43\x84\xa7\x21\xa3\x12\xf4\x7c\x66\x92\xf4\xf0\x10\x4a\x02\x89\x94\xaa\xd4\xf9\xe0\x8d\x74\x81\x3a\x8d\xed\xe9\x10\x8d\x52\xc9\x70\xcb\x0b\x66\xec\x81\xc1\x61\xa1\x3e\x6b\x92\xb4\x16\xd2\x65\x01\x60\x8f\xd3\x12\xea\x26\xa3\xf5\xf9\xd5\xcd\x36\x0d\xdf\x87\x40\x47\x0f\xca\xd1\xec\x23\x20\xfb\xdf\x7c\x85\xff\x1f\x68\xf8\x40\xc3\xa3\xbf\xc6\x69\x38\xa3\xa6\x50\xec\x9c\x19\x96\x98\x0f\x6b\xa6\x14\xef\x36\xb9\xbf\x8d\xbd\x54\xf6\x09\x32\x12\xfc\x12\xca\xfb\x65\xdc\x14\x71\xdc\x33\xcc\x59\x99\x7e\x44\x07\x2c\x55\x01\x7e\x10\x2e\x08\x45\xbf\x1e\xd1\x2c\xa7\xd8\x5d\x1a\xb8\x03\x90\x4b\x11\x35\x8f\xe9\x9c\x26\x56\x4d\x67\x0f\x74\x95\x67\xec\x0f\x64\x7a\x70\x73\x75\x7a\xfb\xb6\xc8\xb2\xcd\x35\x78\xc0\xfe\x68\x54\xc1\x8e\xde\x9f\xde\xfc\xef\xf0\x4b\x88\x28\x3b\xba\x66\x90\x10\x77\x53\xe4\x40\x2e\xde\xc9\xe4\xee\x8f\xd3\x83\x28\xa6\x4e\x0f\xc0\x7d\xe1\xe2\xc6\x31\x53\xeb\x00\x69\xe2\x5c\xaa\xa4\xb6\xfb\x23\x6c\xc6\x6e\x1f\x95\xce\xb5\xd9\xec\x46\xb6\x40\xa0\x85\x91\x23\x84\xcf\xde\x0a\xf1\x3c\x93\xe0\x03\xba\x9c\xc4\x59\xb1\x37\xc2\x34\x06\x3f\xd6\x4f\xbb\x1a\xad\xaa\x1b\x55\x79\x57\x30\xc0\x63\x2b\x3e\x62\xa1\x68\x94\x0b\xf8\x95\x05\x15\xc9\xa2\xfa\x5e\x63\xfc\xbc\xd3\xa4\x63\x3f\x35\x6f\xa7\x0d\x56\xd0\xb5\x9c\x27\x7f\x39\x9f\xf4\x0d\x2c\xf9\x61\xfb\x0d\x17\xa1\xa1\x89\xfb\x85\xfc\xe5\x7c\x42\xb4\xf4\xb1\x40\x24\xa1\x2a\x9e\x5c\x01\x42\x4b\x2a\xc5\xe1\xa1\x21\x1a\x11\x0e\xde\x95\xf3\x39\x98\xd6\xa4\x22\x29\xf8\x1d\xc0\x0d\x03\xd1\xa2\xc0\x14\xff\x72\x3e\x41\xd9\x23\x6a\xc8\x75\x81\x21\xcc\xde\x1b\x26\x52\x96\x56\x6e\x22\xcb\xd3\x60\xb6\x5c\xc9\xb5\xbd\x9f\x33\x66\xc0\xae\x57\x05\xb0\x37\xac\x53\x94\xb6\xd4\xf1\x67\x07\x61\x2e\x19\xcd\xcc\xf2\x91\x36\x11\x7c\xd9\x0a\x8c\x7b\x1a\x65\xf0\xc5\x49\x9c\xfc\xb7\x12\xfe\x32\x14\xfa\xe2\x21\xc9\x8a\x1e\x1e\xc9\xcb\xad\x17\x50\xaa\x05\x3a\x36\xda\xa2\x63\xd0\x6e\xa4\x33\x1a\xbc\x16\x04\xcf\xdc\xa0\x60\x62\x74\x2d\x53\x7c\x4f\xde\xba\x68\x3b\x6e\x0a\xb3\xa8\x8b\x4b\xb5\xb8\x65\x97\x98\xb1\x10\xd2\x7e\x55\x05\x32\x1d\x1e\x92\xcb\xc9\x8f\x37\x24\x2d\x56\xab\x68\x00\x41\xb9\x8d\x23\x1f\xc4\xef\xf8\x81\x4f\xa1\xcc\x36\x64\xb6\xa9\xc5\xde\xd4\x3d\x0b\x51\xeb\xb6\xdb\xeb\xaa\xc8\x0c\xcf\xb3\x20\x1e\x1f\x13\x7e\x49\xa1\xd1\x97\x6a\xff\x97\x31\x9f\xa5\x09\x81\x2d\x7c\x37\x9b\x93\x40\x36\x61\xee\x8a\x71\xed\xa4\x27\x68\x10\xb4\x63\x3f\xc0\x3a\x41\x7e\xb9\x57\x34\x6f\xf2\xf3\x20\x38\x81\x35\x1d\x1e\x1e\x1f\x1e\xe2\x70\x8e\x0f\x91\x25\xda\x46\x5d\xa4\xd1\xe1\xe1\xf1\x7f\x58\x58\x1c\x1f\xad\x99\x59\xbe\x3a\x8c\x5c\x22\x97\xd2\xe5\x61\x80\xd6\x86\x32\x2a\x1f\x4e\x6b\xc6\x16\x5c\xf8\x19\xed\x70\x87\x87\xae\x29\x8e\x96\x4d\x56\xd8\x0a\x84\x87\x87\x6e\xee\xf0\x4e\xc3\x01\xf1\x7c\xad\x5b\xc2\x72\xe3\x37\xac\x1c\x78\xa2\xd8\x9c\x3f\xf4\xbf\x26\xf8\xbc\xb7\x5b\xd7\x8f\x18\xa2\x3d\xca\xe6\x80\x65\xdb\x9b\x28\xb4\x76\x7d\x60\x90\x21\x01\xaa\x86\xe5\x3a\x05\xd7\x4b\x74\x04\xac\x22\x9a\x60\x2b\xac\xf4\x98\x5c\x49\x03\x34\x82\x30\xb1\xe6\x4a\x8a\x15\x38\xdc\xa5\x2b\xae\x48\x05\x99\x59\xbe\xbd\x62\x86\x66\x88\x81\x52\x25\x4b\xa6\x8d\xa2\x46\xc6\xab\x82\x96\xdc\x14\xfd\x08\x34\xb7\xb2\xaf\xe2\xd4\xb0\x6c\x53\xc7\x1d\x59\xa8\x30\xa8\x10\xac\x42\x32\xb9\x6b\x68\x95\x69\xc9\x98\xcb\x55\x77\xae\x36\x7b\xd6\x09\xcd\xf8\xe1\x61\x98\xc8\x6c\x47\xfd\x90\x33\x71\x63\x68\x72\x17\xbe\x16\xbd\x37\x3e\xb2\xe8\xf0\xd0\xd0\xdc\x0f\x14\x62\x8e\x9d\xe0\xd1\x38\x73\x8d\x2d\x7a\x00\x27\xd6\xb4\xd3\xb3\x73\xd9\xf0\x5e\x53\x77\xa1\xc6\xac\x49\xc5\x74\x42\x85\x76\x81\xf4\xe1\xfd\x92\x64\xcd\x14\x9f\x6f\x5c\xc6\x05\x16\xf3\x04\x6d\x13\xdf\x01\x76\x1c\xb7\x6c\xfb\xb4\x12\x4b\xf0\x34\x33\x65\x06\x35\xf7\xab\x34\x92\xbc\xdc\x53\xa8\xe3\x39\x6f\x89\x7d\x6d\xe5\x99\xf6\xd5\xf7\xb7\x1f\xbb\x2f\xe4\xe4\x72\xf2\xfe\xf6\xa3\x87\xa1\xfd\x27\x44\xb2\x1b\x5f\xa8\xc8\x19\xfd\xd1\x6b\x34\x26\x37\x2c\x1e\x94\xe1\xd0\xda\xee\xda\x8e\x11\xc4\x38\x7e\xfd\xf5\xfe\xc1\xfe\x3c\xb7\xa8\xb7\x27\x7e\x1c\x5e\xc6\xde\x6a\xc5\x0e\xa2\x18\x26\x9a\xc6\x65\xf2\x2c\x88\x08\xc2\xfa\xb3\x75\x4b\x02\x11\xd2\x11\x03\xe7\x25\x05\x7f\x6e\x68\xf6\x89\x5a\x70\x94\xbc\x2b\xeb\x64\x96\x61\x3b\xf1\xb6\x56\xe5\xf4\xbe\x9d\x55\x7b\xcc\xef\x77\x2f\xf7\x8e\x28\xf5\x33\x7c\x4f\x93\x3b\xb6\x53\x35\x60\x07\xc8\x97\xf5\xc7\x4b\xc5\xcd\x77\x47\x9d\xb9\xef\xad\x90\xe3\xd7\x6e\x59\x5a\x14\x10\x0c\x5d\x7f\x35\x73\x0e\xb8\x17\x17\x34\xea\x4e\xee\xb3\x8f\xb7\x3c\x33\x4c\x41\x86\x75\x63\x38\x49\x9f\x71\xac\x16\xf8\xb6\x39\xee\x66\x1b\xf3\x76\x5f\xf2\x88\x67\xa9\x4c\x58\x6f\xcb\x4f\x10\x83\x48\x26\x93\x3b\x32\xe7\x19\x1b\x93\x7f\xb7\xd2\x07\xdd\x40\x82\x22\xba\x4f\x21\xfc\x0f\xb8\x86\xb3\xf7\x95\x4f\x7b\x05\x20\x5e\x42\x95\x9b\xc0\x20\x56\xae\xe6\xf9\x3c\xe0\x35\x61\x58\xc5\x8a\xe6\x39\xc3\x84\x57\x61\x64\x19\x5d\xdd\xc0\xcc\x0c\xe5\x82\x29\x7b\xad\x28\x49\xf9\x7c\xce\x14\x13\x86\xe4\xd4\x2c\x5f\x84\x7c\xe2\x58\x15\xe2\xf8\xc1\x69\x13\x76\xdd\x8f\x45\x53\x0b\xe1\x89\x92\x33\xb6\x07\x55\x68\x78\xd3\x1f\x10\x44\x9a\x6f\x19\x93\xa3\xb2\x06\x36\x27\xc6\x88\x74\x6a\x8c\xd5\xee\x81\x67\xd0\x04\xcc\x3b\xf5\xf0\x13\x38\x1c\x3e\x77\xe9\xbc\x42\x46\x65\x0d\xba\xa6\x1c\xca\xd1\x8e\xeb\x31\xe9\x2b\x7a\xe7\x43\xca\x21\x72\xdc\xa5\xcf\xf0\xb5\x53\x01\xfc\xe9\x37\x28\x83\xf6\x5c\x40\x0d\x3c\x82\x04\x1c\xab\x3f\xc2\x30\x67\x93\x8f\xe1\xa1\x7c\xf3\x72\xf5\x68\x72\x61\xa1\x79\xcb\x57\x4c\x16\x9d\x1e\xea\xda\x09\xb8\x77\xda\x60\x0f\x80\x8e\x5a\x12\x5c\x3e\x77\x0d\xc6\x10\x66\xfe\xf2\x28\x20\x9a\x60\x69\x46\x43\x32\xd7\x95\x31\xa6\x51\x1c\x00\x19\x5f\x2f\x69\xf4\x04\xe1\x7a\x61\x0c\x55\x96\xd5\x89\xbd\x13\xc8\xe3\x9c\xc3\xca\xe2\xf6\x10\xfd\x49\x8d\xc9\x4f\xf6\xe0\x5c\xee\x46\x95\x0b\x6f\x35\x72\x5a\x5d\xa4\xa3\xe6\xe8\x5f\x9f\x91\x64\x47\xb4\xd7\xc9\xe5\x49\x49\xb5\xf1\x94\x25\xc8\x73\x5f\xc9\xc2\x15\x55\x76\x01\x48\x41\x0f\xcd\xd8\xe8\x52\xf9\x27\xe6\xbe\x62\x08\x2e\xa8\x96\xb4\xa7\x4b\x29\xe7\xb1\x68\xf3\x9e\x5a\x9d\xed\xf3\xa9\xf3\x7b\xaa\xee\xde\x53\xdd\x9d\xc5\x79\xb9\xf5\x82\x47\xbc\x95\xfd\x77\xa8\x68\x43\x1f\x51\x6d\x89\x65\x0c\x3e\x97\x93\x5b\x44\x0a\x3b\x0e\x99\x59\x92\x0a\x55\xd7\x7c\xe2\xce\xcc\x9e\xe2\x57\xaf\xed\x2f\x64\xc9\x1e\x68\xca\x12\xbe\xaa\xba\xba\x58\x04\x8a\xe2\x89\x21\x19\xa3\xda\x90\x6f\x71\x4c\xcd\xcc\x11\xb8\x38\xec\x91\x22\x43\x4d\x32\xaa\x97\x3e\x8a\x6f\xe3\x30\x70\xe5\x57\x11\xd7\x05\x7c\xd4\x0f\x38\xb0\x20\x26\xbc\x76\x8c\x0f\xf3\xf9\x4b\xf8\xc4\x4e\xf1\xf1\x8d\x2e\xab\xd3\xb9\x3a\xbd\xfd\xe0\xdc\x70\xa5\xd0\x8e\x7c\xf9\x91\xc7\x3d\x91\xda\xfc\xa4\xb8\x61\x10\xe0\xb3\x37\xe9\x8f\xbf\xbe\x2d\x19\x42\xb8\x5b\x23\x95\xb0\x92\x5d\x6a\x4f\x86\x92\x7b\x3b\xd4\x6e\x2e\x52\xd9\xcb\x3e\x59\xb2\x14\x23\x08\x21\xa9\x57\x51\xa2\x58\x3c\x92\x6f\x86\x4a\x58\x59\xca\x00\x13\x65\x31\x2b\x1f\x26\xb9\xa7\xc8\xd9\x93\x4c\xce\x66\x4c\xa1\x7a\x41\x45\x8d\x0e\x45\x0d\xd5\x61\xaa\x06\x64\x95\xc9\x24\x29\x94\x65\x48\xfe\x6d\x9a\xe7\x99\xef\x18\x5c\xc3\x95\xd2\x64\xd8\xa0\x3b\xe5\x2c\x31\xbb\x94\x72\xfc\x59\x79\x4d\x7e\xa8\xfd\x45\xfe\xe8\x7b\x8f\x50\x09\x9d\x1e\xe0\x53\x43\x41\xf5\x75\x21\xa5\xc1\x11\xb7\x8b\xff\x4d\x78\x53\x73\x04\xef\x23\xfe\xc7\x4b\x5f\xc2\xda\x4a\x85\x00\x6d\x14\x26\x10\xa1\xcb\xc6\xc9\x68\x9c\xb2\x12\x35\x08\x17\x60\xb1\x68\xb0\x10\xb9\xe8\x7e\x1c\xb4\x54\x5a\x35\xf8\x3a\xc1\xca\x42\x15\x38\x6b\xb1\xb7\x34\x26\xcc\xb8\xd8\xbe\x59\xb1\x68\x64\x84\x16\x7f\xe7\xfc\x01\xfd\x3a\xee\x79\x57\xeb\x8d\x7c\x3d\x7e\xf5\xaa\x34\x08\x5a\xee\x8b\x86\xbd\xb5\xfd\xde\x32\xa4\x85\x62\xb4\x21\xc2\x7a\xe3\x84\x63\x1f\xa0\x5c\x06\x17\x1b\x79\x44\x28\x59\x06\x49\x7b\x98\x4e\x5d\xcf\xd1\x8b\x0d\x09\x69\x7b\x35\x24\x7e\x8c\x2e\xb5\x7e\xe3\xbc\x48\xfb\xea\xeb\x77\xc5\x8c\x41\xbb\x19\xa9\xcc\x35\xa4\x32\x75\xe2\xfe\x9f\x77\x5e\x71\x6d\xeb\xbc\x95\x19\x9c\x0b\x61\x5e\x54\x43\x75\x4d\x97\xb7\x4e\xaa\xac\xf5\x31\xf9\x20\x30\xd3\x09\x72\x50\x51\x26\x40\xcf\x54\x98\xde\xea\xc5\x99\x06\x2e\xc4\xf3\xb5\x76\x59\x82\x08\xfa\x02\x65\x26\xa6\x99\x5f\x16\x9c\x1d\x5a\xc7\xab\x0a\x03\x6d\xb1\xcf\x2e\xe6\x20\x3c\xa8\xaf\x20\x53\xe9\xab\xd7\xbf\x7f\xf3\xfb\x68\x42\x5f\xb3\x1f\xbc\x29\x5d\xaf\x47\xc2\x5e\x77\xca\x5e\x57\x8e\xd4\xfe\x59\x52\xad\x5e\xdd\x4c\x2e\x20\xd5\xd2\xaa\x9f\x82\xae\xd8\x35\x5b\xb0\x4e\x7b\xec\xbb\xd8\x4b\x61\x0e\x85\x25\x9a\x2e\xfa\x33\xb1\xd8\x61\xc5\xe1\x06\x32\x87\x81\xa0\x5c\x11\x18\x11\x92\x4c\xb1\xf7\x26\xe6\x97\xa5\x48\x03\x5c\xfe\xa9\xc7\x30\x48\xfe\x6c\x8a\x1f\x81\xc9\x9c\xdb\x17\x2c\xff\x40\x74\xab\xc2\x35\x0b\xbe\x66\x22\x56\x72\xa8\x4c\x6a\x4b\x59\xda\x9c\x78\x3a\x07\x89\x04\xb9\x23\x30\x43\xc4\x47\xb7\x7c\xc8\x07\x83\x95\xee\x47\x03\x32\xb9\xe8\x6d\x36\x78\x57\x3d\xeb\x39\xd6\xbc\xc8\x32\x50\x9f\xbd\x7c\x81\x37\x27\x93\x0b\xcf\x21\x62\x5b\x01\x91\x31\xe0\x1b\xa0\xb5\x64\x12\x8a\x47\xd5\xd4\xf0\x35\x55\xc7\x99\x5c\x1c\x87\xc2\xfe\x38\x93\xd1\x82\x66\x1d\xbb\xec\x69\xf1\x7f\xe7\x9f\xac\xec\x21\x8b\x9a\x81\x3f\x20\x0d\xa0\xdb\x2a\xab\xb9\x36\x5d\xa9\x77\x1f\x7e\xf0\xfc\xb2\x6e\x84\x4e\xe4\x08\x33\x1b\x1e\xb1\x93\x1b\xb6\x66\x8a\x9b\x8d\x3d\x8b\x3e\xfb\x09\x9f\x0f\x77\xa5\xdd\xf7\x84\xce\x24\x68\xea\xf6\xf6\x58\x14\x8a\xd2\x1e\xc5\xb0\xdc\x85\xaf\x45\x2a\x17\xce\xf2\x53\x6d\xec\x52\xcc\xe5\x67\xec\xe7\x26\x51\x8c\x75\xa7\x53\xbd\xdb\x7e\xe3\xc9\xf6\xa4\x4d\x2a\x0b\xf3\x94\x3b\xda\x74\xb3\xc5\x77\xb5\xc7\x9f\x6e\x2f\x1b\x1d\x5c\x42\x72\x25\x5d\xf5\x01\x21\xfd\x45\x03\x66\xe6\x9e\x6a\xb5\xd2\x3e\x06\x08\x2b\xfa\x00\xe6\xed\x1b\xfe\x8f\x18\x8e\xb6\x72\x2b\x5f\x85\xf4\x34\x4d\x63\x0a\x58\x1d\x7c\xef\x83\x87\x3d\xf0\xc2\x5e\x72\x8a\xa4\x72\x45\xb9\x40\x4f\x5d\x73\x06\xac\x6f\x15\x05\x69\x53\x54\x10\x2a\xb4\x95\x41\x7f\x7c\x4f\xfe\x5e\x30\x65\x69\xad\x85\x5e\x92\xc9\x22\x1d\x71\xc1\x4d\xb9\x4a\x28\xea\x5a\xba\xa8\xe2\x51\x70\x4b\x30\x72\x29\x34\x8b\xa5\x65\x96\xd5\x8a\x26\x4b\x2e\x58\x69\x65\x11\x72\x4d\x47\x34\xe7\xe4\xb9\x54\xd0\x35\x6a\x56\x08\x53\x44\x87\xf4\x8f\x8e\xfc\x32\x5e\x8c\xc9\x69\xd5\x7f\x1a\x08\xec\xf3\x84\x6a\x06\x79\x62\x42\x73\xc3\xd7\xec\x05\x59\x31\x2a\x9a\xcd\x40\x35\x1f\x3e\x84\x52\x32\x43\x8a\x1c\x14\xf9\xab\xd3\x5b\xcc\x06\xf6\x56\x2d\x3f\x31\x50\xff\x0e\x0c\x7a\xf5\xfa\xf7\xe3\x97\xe3\x97\xe3\x57\x7b\xa3\x91\x9b\xa4\x21\x26\x22\x8e\x0a\x3e\x38\x10\x34\x2a\xfb\x6f\x67\x6f\x2a\x57\x8c\x67\x8d\xf1\x29\x0d\xb5\x20\x57\x33\xc8\x89\x07\x66\x8e\x3d\xe3\xc6\x35\x4c\x7b\xce\xe7\x00\xa1\xc3\x43\x7b\xb3\x0e\x0f\x5f\x1c\x05\xc1\x65\x0d\x4a\x10\x80\xb2\x04\xe4\x11\xfa\x77\x5f\xbd\xf9\x6e\xfc\xfa\x9b\xaf\xc7\xee\xff\x27\xdf\x82\x42\x15\xce\x75\x12\xee\x2b\xaa\x3c\x5f\x0a\xc8\xf5\x27\xf6\xbc\x5d\xe3\x80\xe0\x10\xbd\x45\x7e\xc6\x7c\xff\xc1\x80\xc0\x7d\xfb\xfb\xdf\x7f\xd3\x52\x56\xa2\xe9\x86\x9a\x62\x9f\xf2\x8b\xef\x6f\x3f\xfe\x12\xa5\x17\xc1\xe3\x59\xb3\x4e\xd0\x2c\x81\xf4\xdf\xd2\xdc\x18\xf7\x0b\xbc\xbf\xfd\x58\x2f\x16\x51\x15\x1c\x6c\x2b\x36\xf8\x79\x95\x05\x05\x35\xde\xe8\xd4\x33\x73\x2e\x30\x53\xb9\x37\x02\x77\x96\x25\x59\xf5\x34\x3a\x90\x4e\x5c\xd8\x54\x53\x45\x09\x14\x95\x2d\x4a\xc2\xb5\xf6\x15\xb1\x04\xa1\xe1\xfa\x48\x2e\x65\x56\x96\x84\xeb\xc8\xa0\x2b\xcb\x4b\x6d\xa5\xe5\x85\xd9\x73\x80\x01\xd5\x82\x9d\x39\xa7\x04\x71\x9c\x86\xd6\x8a\x81\xf9\x45\x48\x41\x9e\x73\x08\x1c\xf3\xca\x5a\x65\xe6\x79\x7f\x7a\xf3\xbf\x3f\x5e\x5c\x9f\x9e\x5f\x10\x43\xd5\x82\x99\x48\x31\xb3\x8e\x13\x2a\x75\xd5\x7f\x59\xf1\x14\x57\x36\x05\x16\x11\x1c\x77\x55\x3f\xc5\x29\xce\xba\x3c\x1f\x0b\xe0\x26\x77\x04\x06\x39\x53\xc8\xf1\x47\x04\x49\xe1\x80\xcb\x2c\x84\xab\xd3\x5b\x67\xfa\x2f\x84\x8f\xcb\x68\xa9\xee\x30\x63\x4b\xba\xe6\x52\x79\x12\xeb\xe3\x09\x35\x86\x6b\x34\xe6\x4a\x3e\x6d\x39\x0e\xc1\x4c\xc6\x45\x8b\x7f\xa7\x0d\xde\x10\x89\x6f\x97\x7b\xcd\x16\x7d\xb2\xf9\x3f\xd4\x9f\xf7\x8c\x26\x10\x2f\x2c\x69\x2b\xc9\x99\xe5\x8f\xca\x70\x4b\x87\xa2\x6a\x39\x52\xb0\x19\xcb\xa4\x58\x60\xd9\xf8\x4b\x7b\xfb\x20\x9a\x6c\xe4\x06\x42\xdb\xdb\x71\x15\x07\x93\xb2\x3c\x93\x9b\x15\x13\xa6\x59\xde\xf0\xa1\xec\x55\x1f\x55\xc8\x88\x5f\xca\x7b\xc0\x04\xa8\x1e\x8c\x93\x3f\xc7\x42\x3a\x95\xf1\x70\x25\x53\x96\x45\x47\x46\xb9\x04\xd5\xb0\x64\x0e\x3d\x4d\xb0\x58\x40\x19\x6e\x64\x6f\x24\x8c\x9d\xc8\x55\x5e\xb8\x2a\x78\x2f\x5c\x57\x82\x22\x1e\xef\x56\xa9\xc8\x7f\x45\xdd\xe8\x6f\xd5\xa9\x7c\x72\x30\x40\xd1\x26\xd8\x8c\x15\xe9\x58\x61\x94\x14\x63\xfb\x6d\x74\xb5\x6e\x29\x58\x88\xaf\x62\x7a\x17\xab\xdc\x6c\xf6\x15\x45\x30\xa1\x06\xea\x84\x51\xb3\xec\xa9\x4d\x4e\x22\x2f\x85\x51\xe8\xb3\x8d\x3b\x03\xa8\x80\x09\xf5\xfe\x13\x1a\xaf\x0b\xe8\x0a\x88\x20\x0b\xc7\x1c\x11\x5f\x80\xd3\x17\x72\x3c\x22\x19\xbf\x63\xe4\x34\xb0\x94\x67\x74\xc3\x54\xbf\x84\xf7\xc7\x41\x45\xc9\x15\x33\x4b\x56\xe8\x1f\xe4\x7b\x66\x14\x4f\xfa\xd6\xfe\x3b\x9c\x34\xbe\xea\xed\x02\x9a\xfc\x20\xad\x70\x0c\x5e\xd7\x15\x3e\x12\x17\xd7\xb2\x0c\x83\xf4\x7d\x60\xa7\xc5\xa5\x6a\x7c\x5f\xa1\x14\xf2\x65\xaa\xd4\xf8\x23\xa4\x80\x9a\x45\x91\xd2\x48\x8c\x1d\x76\x92\x01\xda\x64\xdd\x5d\x47\x2f\x99\x9c\xfb\x45\xb9\xee\xa9\x2c\x3d\xc2\xe7\x1a\xd8\x6d\xb0\x22\x2b\x53\x7c\x76\x85\xdb\x0a\xf8\x8f\x06\xfd\x16\xe0\x7d\x98\xf8\x16\xfc\x5a\x60\xef\xf4\x26\x2e\xbc\x8f\xb8\xac\xfb\x69\xb7\xf4\xf9\x91\xd8\x3b\x7b\x6c\x88\xab\xee\xd8\xe0\x9f\xa4\x2e\x75\x02\xf4\x3b\xfb\x3a\x41\xd5\xa3\x51\xd2\xe4\x0e\xd8\x6d\xd3\x17\x13\xe3\x22\x05\x5a\x5d\xed\x8e\x7d\xde\xed\x71\xcb\xec\xa5\xe7\xec\x6c\x2e\x54\x78\x7c\x32\xe2\x93\x6f\xf0\xbb\x97\xdf\xb5\xa8\x6f\x0d\xc2\x4e\xb5\xc1\x09\xba\x9c\x1e\x8d\xa8\xd1\xf7\x2b\x42\xe1\x03\xda\x06\x2a\xd1\x72\x83\x7e\xe2\x8a\xfd\x50\x50\x95\x3e\xfa\x14\x1a\x46\xa8\xce\xe1\x9e\x5b\xbd\x8e\xaa\xa8\x04\xea\xe1\xf0\xd8\x93\x88\xab\x84\x78\x38\x8f\x3c\x89\xb8\x73\x15\x0f\xe7\xc9\x4f\x42\xb1\x95\x5c\x33\x5f\x01\xe3\xba\x57\x7b\xee\x9f\xea\x39\x4c\xae\xd8\xf2\x9a\xb9\x08\x57\xdf\x3e\xd4\x55\xe4\x5f\xb3\xa6\xd0\xad\x19\x63\xb5\xb2\x2a\x5e\xf2\x18\xbb\xa4\x24\xd4\xe8\x7c\xa9\x18\x4c\x98\x2d\x05\x8c\xc0\xf7\xde\x94\x8f\x0b\x21\x44\x34\x4d\xeb\xeb\xaa\xf2\x8f\x7d\x89\xd8\xa0\x32\x8d\x2b\xd8\xc1\x68\x7c\xd0\x7b\x86\x6b\x71\xfb\xf5\x8b\xc9\x36\xae\x26\x8e\x9b\x61\xef\x33\x70\x05\x4f\x7a\xfb\xec\xaf\xb7\xdf\xa8\x65\x01\xd8\xbf\x77\x82\x74\x1b\xb3\xc1\x5d\x6c\xa3\x29\x74\x15\xea\x64\x25\x6e\x48\xe8\x83\xc8\xb0\x5a\x60\xd8\x7b\x27\xc3\x0b\x29\x46\xff\x60\x2a\x6a\x58\xe2\x81\xf5\x31\x50\x0c\x74\xdd\xe5\xb8\xb7\x6f\xb8\x84\xd3\xed\xed\xbb\xfe\x20\xba\xbd\x7d\x17\x86\xca\x8d\x8c\x1c\x65\x7c\xcd\xca\x08\x73\xd0\x41\x91\x54\x8f\xee\x1b\xba\x40\x38\xf8\x38\x28\xd6\x59\xd0\xfe\xdb\xb0\x48\xb2\x6f\x94\xc6\x75\xe4\xa5\xcf\x88\xcb\x2e\xab\x3a\xed\x1f\xa1\x41\x96\x34\x6e\xed\x7f\x6c\x84\x06\x56\x97\xf2\xc1\x18\xed\x0a\xc1\x63\xc1\x8d\xe5\xa0\xfa\x41\xf9\xc6\x3b\x6b\xc3\xa4\x4d\xe5\xdd\x88\x0b\x86\x21\x6e\xed\xd5\xfb\xcb\xe6\xb2\x63\x32\x22\xbe\x2d\xd5\xe5\x44\x9f\xa0\x19\x2c\x5a\x76\x2e\x91\x42\x1b\x55\xc4\x5b\x68\x7a\xda\x35\x72\x30\xbd\x9c\x9c\xbe\xaf\x87\xac\x8c\x60\x68\xfb\x3d\x9c\x65\x6d\x44\xff\xfa\x63\x40\x07\x51\x7b\x4d\x06\xa7\x48\x8b\xe7\xaa\x93\x06\x4d\x7d\xed\x34\x17\xed\x82\x27\xed\x4c\x61\xf6\xde\xad\xa9\xe2\x32\x2e\x04\x06\xfd\x7a\xae\xeb\xcb\xd8\x32\x39\x41\x53\x54\x56\xef\x5b\x4b\x9a\xe3\xc3\xc3\xe6\x33\x4e\xb2\x2c\x74\xac\x6d\x46\x47\x46\xfd\x8a\xc6\x54\x6d\xd2\x27\x1d\x7e\xc5\x9b\xda\x4d\x77\xbc\xda\x92\x04\x3f\xb2\x0b\x8a\x7e\x1d\x8b\x68\x6f\x4b\x7c\x77\x9a\xfb\x3b\x29\xf3\x09\xd6\x47\xed\x63\x82\xfa\x09\x65\x1e\x8c\x82\x01\x67\xd7\xda\x02\x4f\x33\x30\xc0\x54\xcc\xf6\xc8\x17\x5d\x6d\xbb\x3f\x99\x94\xb9\x0e\xda\x41\x90\xcb\x89\x13\x27\xa8\x62\x2e\x4c\xdf\x9e\x1a\x16\x95\x73\xf5\x41\x09\xe4\x20\xda\x1d\x35\xc6\x92\xb8\x7a\x82\x98\x3f\x5c\x56\xa9\x38\xbf\x3a\xbd\x3d\x3c\x4c\xb7\xd3\x2c\x3f\x8a\x0c\xcc\xd9\x65\xbb\x06\x9f\x28\x7d\x10\x95\xd0\xb8\xf0\xd1\xa6\x54\x33\xa2\x8b\x64\xe9\x77\xe8\xb6\x93\x48\x61\xb8\xc0\x68\xaa\x99\x2b\x5a\x54\x2b\xb6\x1a\x1b\xf5\x31\x15\xff\x34\x4f\x59\x42\xd5\x69\x92\xb0\x8c\x61\x66\x5a\x5f\xa9\xfa\xa6\xf1\xd5\x52\x0d\x67\x0f\x96\xdd\xac\x80\xd0\xfb\xa9\x1a\xd8\x41\x39\xc6\x67\x6b\xdc\x10\x59\xd6\xa3\x2e\x5c\x7d\x37\x1f\x63\x6f\x79\x26\x4e\xa8\x90\x62\xb3\x92\x85\xaf\xfe\xeb\x83\xea\xa2\x0e\x04\x94\xd6\xc3\x46\x24\x9a\xff\x83\xb9\x1a\x88\xf5\xb6\xba\x63\xf2\x4e\x2e\x34\xb9\xa7\x4a\x70\xb1\xb0\x42\x83\x29\x9a\x9a\x50\xcf\x20\x4d\xce\xd5\xbb\xf7\x2e\xc0\x20\x83\x11\xea\xd2\x50\xa8\x0e\xcc\xe7\x3c\xa1\xc2\x54\xd5\x74\xd6\x45\x26\x98\xa2\x58\xc0\x26\x36\xf8\x92\x6a\x14\xb1\x53\xae\x13\xb9\x66\xaa\x0a\x1f\xf2\xf1\x83\x72\xee\x37\x5f\x35\x90\xee\xc0\xc8\x47\x69\x19\xf5\xf3\xbb\x14\xdc\x70\x9a\x35\xd5\x08\x6c\x3b\xc4\xf0\xd5\x7a\x45\x7e\xdf\xf4\x20\xb5\x3f\xc5\xb5\x8d\xb9\x2c\xb9\xf8\x8a\xde\x31\xf4\xf8\xd9\x81\xb7\x42\xe1\xf6\x16\x31\xb6\xb7\xd7\x53\xa6\xdb\xde\x9a\x93\xea\x6a\xdb\xda\x11\xe8\x9b\x0d\xf6\xb8\xa7\x88\x8c\xfa\xed\x9b\xaf\x1f\xb5\x29\x4c\xf3\x11\x34\x3b\xef\x59\xcf\xb9\xe1\xf4\xd7\x0f\x19\x6d\x21\x41\xdd\xef\xf6\xc9\xc2\x84\x7e\x9d\xbf\xbe\x34\x4c\x58\xff\x63\xca\x27\xc0\x8b\x3f\x5e\x5d\xee\xfb\x5e\x69\xed\xe8\x4b\x25\x7f\xda\x7a\x61\xb7\x12\x7c\xf9\x44\xc0\xc7\xbf\x48\x9f\xb1\x72\xed\x7f\x92\xda\x5c\x88\x44\x6d\xf2\x7d\xb8\xd7\x4f\xad\xaf\xb7\xec\x2b\x4a\x3d\xa5\x36\x56\x57\x74\xc9\xee\x7e\xb0\x10\x04\x4f\xb7\xdf\x32\xc5\xe3\x8a\xae\xba\xb5\x94\x9f\xa2\xaf\x6d\x89\xc5\xe0\xfc\x73\x6e\xf7\x86\xa0\x65\xfb\x58\x70\xb6\x7e\xb0\x70\x5f\xf7\x8b\xb1\x73\x7f\xed\x49\x3d\xca\xad\xbd\xe3\xda\x30\xcb\x09\x7b\xd9\x91\x7f\x8a\xbe\xb6\xd5\x7b\xc5\xff\x84\x46\xe5\x26\xdf\xf2\x6c\x53\x6d\xae\x96\xb2\xf7\xea\xdb\xd7\xfb\xdf\xe3\x72\x3f\x7d\x68\xd1\x4f\xc1\xc3\xf5\xb5\xdb\x2f\x1c\x39\x8a\x41\x3e\xb6\x8f\x1b\xc6\x5a\x89\xd2\xe7\x6c\xe6\x1a\x25\xd4\xeb\x22\x63\x13\xc5\xa5\x95\x2b\xfa\x6f\x2e\xf2\x72\x7d\xb3\xb9\xff\xb6\xb1\x14\x5d\x85\x9f\x5b\x20\xf1\xa2\xb3\x2a\xea\xe1\x9c\xf1\x4e\x1a\xad\x9b\x7d\x48\x7b\x37\xbf\x8a\x14\x27\xfa\xcb\xf9\xa4\x2e\xca\xda\xb5\xea\x82\x1b\xd7\xda\x12\x4a\x27\xc7\x11\xb0\x2c\x45\x9b\x32\xb1\xd9\x0d\xb9\x7d\x94\x20\xf5\x90\xe6\xfb\x5a\x8e\xfe\x72\x3e\x79\xda\x7c\x7e\xa8\xd3\xf4\xa8\x54\x7e\x67\x16\x8a\xb2\xdd\xdd\x26\x9e\x52\xb9\xce\xb5\x58\xd6\x1d\x6c\x0a\x71\x0b\xd2\x5f\xce\xa3\x49\x3e\xbb\x09\xff\xfb\xdb\x8f\xe2\x9a\xf2\xee\xb7\x20\xbc\xa7\x61\x2c\x88\x36\x52\xd1\x05\xf3\x5f\xa1\x09\x11\x4e\xcb\x57\x70\xb6\x54\xdb\x1b\x17\xee\xb8\x48\x4f\xc8\xf4\xc0\x97\xc2\xcf\xb3\x42\xd1\xac\xfa\xa6\x2c\x44\xaf\x4f\xc8\x5f\xff\x66\xbf\x01\xfb\x6c\xfa\x23\x4a\xf2\xee\xdb\xa9\x18\x8d\x46\x53\x41\x73\xee\xbe\x3f\x21\x34\xe7\xec\xc1\x30\x81\x95\x7a\x5c\x1f\xff\xf5\xab\xa9\xc0\x19\xcf\x0a\x6d\xe4\xea\x9a\x61\xd8\xd5\x39\x9b\x73\xc1\xb1\x96\x49\xad\xf1\xbe\xe5\x26\x27\x2e\xea\xd0\x05\xd4\x80\x03\x9f\x33\x3d\x4e\x54\x3a\xde\xd1\x82\xa6\xa2\xec\xc4\xbf\x50\xb2\xc8\x4f\x48\xc3\x63\x38\x76\x1d\x0c\x3f\xc0\x3c\x57\x38\x0f\xc6\x2b\xe0\xcf\x96\xf4\xff\xb9\xe9\x91\x77\x65\xe9\x22\x0f\xbc\xe8\x7a\xdd\xe9\x70\x01\xb1\x7e\xb1\x87\x60\x32\x9d\x48\x7b\xc6\x67\xa8\xee\xd9\x6f\xd6\x1e\xd4\xf6\x8f\x91\x03\x89\x85\x24\x8c\x97\x2c\xd9\x8a\x96\x97\x51\xe6\x4c\x9c\x4e\x2e\x7f\xfc\xea\xa6\xfe\x7d\xa3\x59\x29\x38\xb2\x3a\x02\x6e\xb5\xbd\x9f\x5c\xba\xc7\x6a\x05\xfa\xdd\xd2\x58\xea\xd6\x81\xc6\x30\x70\x39\xe5\x8a\x69\x7b\xfd\x62\x05\x6a\xe4\x9c\x50\xe1\xd0\xd8\xde\x2c\xab\x7f\x96\x01\x87\x89\x14\x6b\xa6\xb0\x24\xda\x42\xf0\x7f\x94\x83\x97\xb1\xc2\x19\x35\x6c\x37\x7a\xc6\x17\xae\x0a\x4b\xe6\xac\xe8\xc6\xd9\x66\x48\x21\x82\x01\x31\x57\x7f\x4c\xde\x4b\x88\xf6\x99\xcb\x13\xb2\x34\x26\xd7\x27\xc7\xc7\x0b\x6e\x3c\xb6\xba\x28\x14\xb3\x39\x06\xf6\xc2\x67\x85\x91\x4a\x1f\xa7\x6c\xcd\xb2\x63\xcd\x17\x23\xaa\x92\x25\x37\x2c\x31\x85\x62\xc7\x34\xe7\x23\x58\xbb\xc0\x4e\xe1\xab\xf4\x99\x72\xe8\xad\x0f\x63\x97\x7b\xf7\xda\x03\x16\xb6\x1d\x83\xc5\x41\xd7\xe6\x0b\x5e\x76\xa1\x40\x25\xb4\x7d\xe5\x9a\xeb\x8b\x9b\x5b\xe2\x67\x8f\xe6\xa5\x23\xf0\xab\x37\x75\x75\x0e\x16\x68\x5c\xcc\x99\xcb\x44\x2c\x5b\x79\x56\x8d\x41\xa0\x77\x2a\x67\xbb\x45\x98\x74\x31\x5b\x81\x8d\x1a\xfb\x8a\x62\x10\xd7\x19\x36\x44\x9e\x31\xd7\x0b\x30\x85\xb8\xae\x33\xba\x62\xd9\x19\xd5\xec\x8b\x9f\x82\x85\xb6\x1e\x59\xd8\xf6\x3d\x87\x1a\x09\xda\x7e\x7c\xd7\x7a\x59\x52\x9c\xea\xd3\x62\xc4\xa5\x79\x9e\x6d\x3e\x88\xb7\xd8\x34\xb6\x8b\x8d\x9e\xd6\x9e\x46\xa3\xb3\xef\xa7\x08\x23\xa1\xf1\xb9\x6a\xa3\xc2\x7d\x4f\x8f\x18\x67\x42\x39\x02\x46\xf2\xd9\x78\x7b\x0a\x02\xa9\xbc\x92\xe6\xd6\x0a\x1f\x5d\x2b\x3f\x2f\x9f\x0c\x56\xed\x55\x20\x6f\x13\x85\x70\x37\x74\x85\x96\xfb\x68\xb0\x72\x06\x5b\xf3\xa4\x62\x21\xab\x86\x54\xce\x95\x44\xc0\x5e\x70\xa8\xc3\xae\xc8\x20\x2b\x71\xb1\x88\xda\x4f\xc1\x62\x4a\xb5\xf3\x14\x24\xbe\x2b\x05\xb6\xed\xbd\x55\xbe\x3e\x5d\x0c\xc2\x84\xc6\xeb\xa4\x62\x46\x5a\xea\x2d\x3f\x54\x6c\x82\xa5\x45\x17\x86\x55\x77\x1d\x4c\x9c\x85\xb6\xd1\x6e\x57\x9b\x1f\xea\x09\x30\x28\x70\xec\x7c\xe2\x33\x46\x9c\x70\xb8\xef\xd9\x62\x4b\x98\xee\xa6\x25\x0c\xc3\xca\xb1\xe7\x26\xf4\xa6\xc0\x5e\x32\x4e\xd4\x24\x17\x34\x59\x62\x82\x84\xab\x45\x11\x17\xe9\xfc\xdb\xb8\x6f\x17\xf9\x98\x28\x6e\x98\xe2\x14\xeb\xe2\x05\x99\x22\x50\x38\xd0\x81\xcd\xa1\xfe\x5e\x9d\x27\x6a\x7b\x98\x1e\x9c\x12\xab\x3f\x58\x05\x9b\xe6\x1a\x02\xe3\x75\xb5\xa2\xd8\x52\xa2\xd2\x23\x29\xdb\x2e\x61\xdf\x3e\x2c\x45\x21\xd5\x68\x46\x35\x80\xc7\xd9\x4c\x27\xee\xbc\x44\xf8\x1d\x36\x07\x8b\xc2\x06\x64\x48\xa6\x98\x48\x3c\xe6\x8d\x82\x92\xba\xb2\x30\x98\xdc\xed\xb3\x85\x5d\xf3\x38\xa9\xa0\xa1\xb4\x6f\x8a\xdc\xb0\x60\x91\x96\xbd\x7f\x02\xc0\x43\xb6\xe1\x74\x2a\xf0\xf0\x72\x89\x59\x32\xdb\x90\x68\x70\xc1\xda\xc3\x14\x6c\x01\x8b\x73\x22\xc1\x91\x4b\x14\xf4\x89\x23\xd3\xe9\xf4\xe0\x4a\x1a\xfb\xbf\x31\x39\xcd\x32\x97\xf4\x13\x8e\x1e\x1f\xd9\xb5\xa5\x74\xfd\xf7\xca\xa2\xd4\xd4\x70\x0d\x45\x87\x31\xab\xdd\x6d\xc5\x48\x1c\x73\x4c\x4e\x5d\x8d\xc9\x06\xe8\x02\x72\x52\xe1\x11\xd4\xe5\xc7\xb8\x4d\x5b\x10\xc1\x76\xec\x1f\x81\xc9\x9a\xe2\xe0\xcd\x70\x05\xe8\xc7\x97\xe8\x69\x48\xb5\xc4\x86\xe6\x53\x5d\xf5\xb4\x69\x53\xed\x15\xfc\x74\x97\xd4\x4e\x99\x36\xae\x4e\x78\xe3\x28\x75\x42\x5e\xbd\x50\x5e\xe8\xc8\xf1\x39\x47\x99\xbd\x98\x4d\xc3\x82\xe2\x1d\xcc\x4f\x2c\x97\x36\xf1\x60\xdc\x5e\xc0\x20\xc4\x89\xf1\x39\x4d\xd8\x8d\xbb\x7c\x2d\xcf\xee\x90\x81\xab\xed\x97\x5d\x3a\x86\xcc\x9d\x03\x79\xce\x59\x96\x36\x66\x89\x55\x9f\x12\x30\xb4\x24\x02\x41\x3a\x8f\x4b\x99\xae\x75\xad\x93\x8a\x2f\x2c\x1c\x9a\x28\x80\xff\x80\xfc\xf5\xdc\xa2\x10\x53\x2b\x7c\x81\x50\xf3\x22\xf0\xe1\x07\x9d\x5b\x71\xee\x38\xf3\x88\x80\xac\xea\x86\xe5\x18\xb1\x4b\x78\x00\x44\xde\x81\x4d\xfb\xa0\x48\x25\x51\x11\x2f\x41\x60\x39\x94\x6f\xaa\xea\x2b\x95\xd0\x15\x73\x59\x5f\x66\x19\x57\xca\xab\x0f\x64\x78\xc7\xc2\x16\xbc\x53\x36\x10\x20\x66\x21\x05\xee\x00\xaa\xdf\xb6\x87\x57\x28\x80\x20\x1d\x7c\x2b\x15\xa9\xa9\x79\x47\x8d\x3c\xc0\x7f\xb0\x66\x78\x04\xa5\x56\x2e\x43\xdd\x87\xa1\x86\xc8\x96\xf1\x15\xef\x3c\x30\x70\x28\x64\xe8\x62\x6e\x84\x09\x0f\xe0\x5b\x9e\x70\xc7\x99\xe1\x45\xae\xed\xb3\x71\xfb\x87\xa8\xb1\x3e\x7f\x11\x2d\x7e\x5b\x7d\x7e\x19\x00\xd4\x14\xf1\x1b\xcb\xb7\x15\x41\xfb\x3b\xc2\x03\xb6\xd1\x3e\xa8\xdd\x63\x44\x9f\x3f\x82\xe2\x3f\xed\x67\xd9\xb1\xda\x70\x8b\x41\x7d\x82\x58\xc9\xdb\x44\x49\x0d\x32\x5f\xdf\x2b\xdb\xc0\x38\xca\xb9\x3b\x19\x00\xc1\x34\xa1\x36\x9a\xba\x9d\x78\xc5\x5c\xaf\x97\x28\x61\xb4\x8a\xa6\x51\x3c\x31\x8d\x8d\xe1\xab\x8f\x67\x81\x65\xe5\x86\x0d\x86\xc7\x47\xe9\x62\x49\xfa\x3a\xa0\x5d\xa7\x8b\x61\xad\x7a\x48\xdf\x13\x65\x95\x35\xac\x3a\xa1\x8b\x99\xdd\x7e\x23\xd7\x21\xad\x72\x64\x30\x6f\x2f\x48\xb7\x56\xfe\xa8\x3e\x42\x9a\xab\xfd\xce\x04\x5f\x28\x73\xae\xea\xe2\x97\xdf\xf1\x55\x43\xbf\xc8\xea\x03\xe7\xf8\xab\x83\x45\x53\x63\xa2\xea\xb3\x0d\x8c\xb2\x21\x51\x0b\x34\x26\x4d\xb1\xa8\xd5\x07\xc1\x41\x6e\xa0\x06\x3f\x60\x29\xf4\x4e\xf5\xdd\x3c\x34\x06\x16\xbb\x96\x37\x50\x92\x6b\xd3\xdc\xf0\xa8\xfa\x6c\x35\xca\x30\xf5\x9a\x80\x65\xf3\x15\x94\xa8\x1c\x21\xb7\x0a\x4a\x27\x55\x04\x1e\xe6\x22\x85\x6e\xcf\x26\xbe\xbd\xc5\xc7\xf3\x49\x43\x1b\x0c\xff\xe9\x73\xaa\xcd\x45\x76\xaa\x4f\x8f\x72\x3b\xbb\x0f\x77\x23\x4a\x77\x09\x9e\xea\xb3\x7f\x31\x9e\xea\xd3\x17\x21\xf7\x17\x2e\xaf\xaa\x97\x3a\xd0\xb2\x9f\x7c\xe5\x30\x13\xfc\x72\xe5\xc0\x48\x85\xd1\x37\x34\x33\x19\x33\xbc\x2c\xbb\x83\x73\xb5\x8f\x59\x4a\x4b\xad\xa8\xd2\xef\xcc\xf2\xfd\xae\xec\xf4\xa0\x6a\x21\xd6\xc1\x56\xba\x99\x6d\x0f\xb6\x02\x3e\x21\x9f\xe5\xfd\x3c\x50\x42\x22\x99\xd0\xdb\xdb\x0a\xaa\x17\x31\x4d\x5c\x8d\xc7\xb0\x18\xd6\xb1\x37\x28\xdf\x96\xb5\xdb\xda\x47\xad\x35\x4e\x73\x57\x07\x3c\x4f\x08\x65\xed\x21\xe0\xac\xb3\x6e\x9a\x0e\x59\x79\xee\x2b\x80\x59\x01\xae\x2f\x05\xeb\xa4\x00\x2e\xa5\x7a\x1f\x0a\xd6\xb1\xf7\x8a\xbc\x6d\x51\xb0\x29\xd2\xb0\xa9\xa3\x62\x53\xa4\x63\x53\x4b\xc9\x5a\x65\x9e\x81\x96\xc1\xa7\x17\x2d\xd3\x8f\xd0\x92\xbb\x95\xe3\x56\x4b\x5f\xf5\x89\x2a\xc7\xe4\xb9\x66\xcc\x9b\xc8\x80\x94\x61\x65\x6b\xbd\x11\x86\x3e\xc4\x6a\x49\x84\x9f\xe9\xb4\x55\xb7\x76\x32\x64\x93\xee\xdc\x3e\xb6\xb7\x8c\x05\xaa\xb5\x54\xbb\x2a\xb3\xbd\x6e\x57\xd2\xa0\x37\xfa\xa4\xa1\x94\x77\x00\x04\x17\x9e\xee\xdd\x59\x1d\x5c\x01\xc1\x13\x70\x93\xf6\xd1\x67\x2c\x93\xf7\x2f\x8e\xea\x4b\x0e\x80\x8d\x50\xf5\x2d\xe6\x7d\x7b\x95\x0e\xe5\x03\x8c\x61\x60\xe6\xbc\x5d\x32\x62\xee\x25\xe0\x1a\xc4\xbe\xfb\xdf\x90\x40\x58\x26\xb4\xa9\xaa\x89\x77\x9c\xdd\x07\xe1\x77\xef\x7a\x60\x07\xe6\x57\x16\x68\x49\xae\x41\x07\x98\x16\xdc\xf3\xdd\x3c\xe1\x7e\x29\x33\x77\x48\x27\x70\x44\xd3\x69\xc5\x90\xff\x08\xd4\xe5\x77\x4b\xaa\x9f\xaf\x36\x9f\x32\x3a\x63\xd9\x0b\xa0\x3b\x8e\xc8\x77\x5d\xe7\x20\xa2\xdb\xee\x1b\x90\x0c\xd7\x87\x01\x05\x23\x17\x90\x92\xb1\xd4\xce\xdb\x13\xdf\xc2\x08\xf1\xb2\x3d\x33\x2c\x0e\x96\xeb\x57\x8a\x46\x54\xb7\xa5\xde\x88\x81\x5b\x6e\xdc\xf1\xee\xa6\xec\x2a\x9a\xea\xfb\x55\x9f\xf6\xfd\x96\x5b\xea\xda\x4e\xd7\x25\x17\x80\x79\x6c\x3e\x67\x89\xcb\xef\x75\xa6\x84\x0c\x48\xab\x4b\xd5\xab\xf5\xc9\xef\xb1\x78\x21\xc5\xc8\xe7\x64\xa0\xa7\x16\x73\x6e\x9c\x5d\x64\x2e\xd5\x8a\x85\x46\x0a\x08\xbc\x6e\xee\xc2\x5f\x7d\x00\x21\x76\x41\x53\xf5\x7a\x7a\x0a\x25\xde\x65\x29\x9c\x26\x89\x2c\xc4\x3e\xb2\xd7\x4d\xfd\xc5\x5f\x4c\x06\xdb\x22\xcb\xed\x63\x46\x4c\x9e\x94\xe4\x32\x2d\x4b\x84\x81\x40\x57\x92\x68\x07\x8c\x0e\xd2\x8b\x3b\x6e\xc5\xb6\x5e\x46\x67\x42\xea\xf1\x23\xcd\x9f\xba\x4e\x00\xb5\x30\x3f\x1b\xdc\xe4\x31\x20\xef\x1e\xb2\xc9\xd2\x1c\x01\x7b\x2f\x68\x93\x0a\xe2\x96\x1a\x6b\x17\x1c\xca\x4b\x53\xa5\x15\x80\x3b\x6e\x7e\x3f\xe1\x8e\xec\x61\x82\x20\x7d\x25\x25\xd2\x57\x5a\x22\xbb\xf7\xab\x53\x5e\xfa\xef\x7b\xd2\x35\x5d\xa9\xb2\xba\x21\xdd\xf7\xf0\x1c\x93\xcb\x0e\xcd\xc3\x7e\x2a\x37\x04\x78\x17\x6e\x42\xaf\x42\xa5\x8b\x18\xd7\x56\xa3\xd1\x1f\x5f\xff\x9c\x5e\x9d\x1f\x36\xc4\x91\x87\x9f\xfd\x2c\x5a\x4d\xbd\x5c\xfd\xc7\x97\xa5\xd9\x4f\xea\xc6\x77\x3e\x5b\xea\xc6\x37\xd1\x41\x5c\xd2\xcb\xa0\x3f\x99\x9f\x08\x2a\x7a\x57\x2d\xa3\x7b\x78\x66\x5a\x85\xee\x6d\xf4\xea\x2b\x75\x47\xdc\x59\x1e\x7e\xcf\xf5\x8b\x6d\xf1\xdb\xf5\x46\x13\x6d\x5e\x47\x02\xb6\xb2\x63\x6c\x07\x4d\x93\x65\xb9\x92\x43\x4d\x30\x0f\x07\x34\x66\x0f\xef\xa4\x0c\x58\x2a\x81\xd1\x05\x8b\xba\x67\xcb\xde\x1c\x8f\xac\x47\xa1\xe8\x7e\xb4\xeb\x51\xe8\x00\xf3\x15\xb3\xe2\xaf\x37\xf6\x4a\xb5\xcd\xbb\x71\xe9\x13\x97\x59\x96\x96\x96\xd0\x0e\x6f\xa5\xc5\x27\x7b\x80\xe1\x1e\xd1\x6e\x54\x42\x41\x0a\x1f\x48\xe0\x02\x3b\xda\x45\x96\xbd\xd8\xe6\xfe\x5c\x33\x96\x65\x00\x2e\xf9\x0a\x8f\xbb\xaf\xbe\xdb\x5b\xe0\x83\x7f\x22\x22\x10\xf8\x67\x1e\x21\x10\xd8\xd7\x22\xfb\xc3\xef\x9b\xcb\xb4\xd6\x3f\x48\x65\xdd\x0e\xe1\x26\x67\x6c\x6e\xd0\x8f\x55\x85\x30\xe1\xed\xe9\x61\xa4\x21\xe1\x45\x2c\x23\x8e\x0e\x75\xb5\xb2\x5f\x94\x82\x76\x3f\xb3\x34\x26\xef\x17\xcf\xf0\xa7\xdb\xdb\x49\xe5\xaf\x6f\x0c\x62\xb0\x58\x62\x1f\x6d\x5e\xba\x8f\x72\xfc\xbc\xf8\x85\x15\x33\x4b\x99\xee\xc1\x19\xde\xe3\x0b\x4f\x2b\xb5\xe3\x96\x91\xa8\xe3\xbe\x83\x20\x4e\x3b\x26\xf6\xa5\xb1\xf8\xd8\x3d\x28\x64\xca\xa4\x38\x8a\x5f\xed\x73\x36\x5e\x8c\xc9\x0f\x17\xb7\x47\x64\xf2\xf1\xf6\x88\x30\x93\x8c\x5f\x90\xf7\xae\x53\x6c\x87\x1d\xc6\x8d\x61\xf9\xfe\x87\xeb\x43\xab\x86\x2d\x20\x8e\xf0\xd7\xe5\xb7\xca\xa9\x59\xee\x71\x8e\x87\x13\xfb\xfc\x97\x38\xc6\xae\x13\xec\xa6\x28\xe1\x09\xc2\x32\xc7\xe5\x51\xe1\x36\xfd\x59\xf4\x3d\x0c\x42\xd8\x78\x71\x42\x46\x84\x3d\xd0\xc4\x9c\x90\xe3\xb9\x94\xd0\x25\x1f\x6a\x07\x92\xe3\x19\x55\xe4\xea\xc3\xed\xc5\x09\x06\xa0\x31\x61\xd4\x86\xac\xba\xc4\xf3\x0f\x57\xef\xfe\xdd\x51\xce\x0d\x61\x1c\x9b\xe3\x90\xe9\x01\x4c\x82\x56\x64\xfb\x27\xce\xe2\x6d\x1d\x8d\x7d\x96\xab\xcf\x9a\x66\x3c\xa5\xa5\xb1\x0f\x5b\xfb\x58\xf1\x89\x9b\x58\x2d\x8b\xea\xd3\x07\xe7\xea\x48\x60\x41\x0c\x5d\x04\x6a\xf5\x6b\x01\xf0\xbe\x97\x40\x3f\x5e\x75\x69\x20\x72\x7b\xc6\x3c\x20\x9c\x1d\x71\x2e\xd5\xea\xc4\x83\x7d\x5a\xbc\x7c\xf9\x55\x62\x07\x86\x7f\xb1\x13\x5f\x79\xa8\x8f\xd9\x0b\x51\x0d\x56\x05\xc3\x65\xd0\x20\xdf\x1f\x61\x35\xf4\xc8\xc1\xfb\xb3\x66\xc0\x31\x3a\x42\x4d\x7a\x0b\x1d\xc4\x01\xe0\x69\xd5\xc8\xbc\xa9\xf2\xe5\xe3\x07\xed\xa7\x4e\xf4\x22\x48\xdd\x43\xf1\x64\xd5\x93\x67\x5e\x9e\xbd\x9f\xf4\x8d\x00\x01\x62\xd4\xbc\xf6\x90\x4a\x51\x8f\xf5\x09\xac\x16\x0b\x1d\xc8\x14\x68\x14\x4c\x59\xf6\x8c\x69\x6c\xa0\x8f\x9f\xb0\x5d\x56\x4d\xa6\x75\xfd\x36\x4b\xff\x14\x2e\x9a\x07\xf5\x35\xec\x3c\x6d\xa2\x2d\xf8\xd3\xed\x43\xeb\x37\x2d\x76\xca\x5e\x98\x68\xb7\xb6\x07\x9f\x07\xc9\x44\x8a\x10\x4a\x00\x94\x04\x6a\xb8\xee\xa3\xac\x41\x35\x44\x0b\x60\xcc\x17\x81\x10\x55\xa8\x52\x16\xc2\xaa\x2a\x50\x46\x89\x61\xc9\x52\xf0\x84\x76\x44\x25\x81\x59\x14\xcd\xff\x7c\x95\x4b\x5d\x05\xd2\x61\xc3\xa8\x43\x5d\x95\xa0\x9e\x73\xc5\xee\x69\x16\x2f\xa6\x5b\x7d\x90\x5a\x38\xa3\x2c\x16\xb2\x96\x84\x89\xb9\xc4\x4c\x16\x17\xa2\xd7\x7d\x35\x3a\x7d\x78\xf0\xd8\xe7\x1f\x86\x1d\x66\x4c\xc2\xe2\x19\x5d\x2e\xb0\xb2\x33\xc1\xb7\x18\xe5\x0d\x3b\x84\xb1\x2e\x92\xa5\x24\xd7\xc8\xb4\xc9\x73\x3e\x66\x63\x92\x73\xb1\xd0\xed\x3e\xb0\x5e\xfb\xed\x41\x0c\xf2\x78\x22\x58\x03\x40\x2e\x27\x3e\x21\xec\xb3\x03\xc3\x6a\xc6\x2d\x94\xc7\x43\x28\x4f\xbc\x67\xac\x11\x0a\x3d\x20\xd0\x90\xd2\xd3\xb0\x39\xdf\x66\x20\x08\xeb\xad\x6a\x4a\x05\x55\xb6\xca\x7e\x6d\xed\x9b\xfb\x2c\xa2\x01\xc6\x08\xac\x37\xd8\x8a\xae\xd5\x0a\x27\x7d\xb9\x62\x5f\xb6\x54\xcf\x48\xaa\xd6\xe3\x52\xd1\xd0\x6b\x77\xc7\x5c\xc2\x35\xc9\x29\x57\xcd\x9d\x35\xaa\x8f\x55\x59\x5d\x97\xc5\x10\xa6\x74\x26\x0b\xd3\x83\x91\x3c\x95\xe6\x28\xa4\xb1\xb7\xaf\x1f\x66\x5c\xe1\xc3\x1d\x11\x3d\xf0\x48\x7b\x64\xdd\xc0\x30\x06\x86\xf1\xdb\x66\x18\x42\x1a\x2f\x56\x35\x82\xa5\x3d\xea\xa6\x67\xbc\x4d\xbf\x48\x9b\x9d\x80\x50\x2f\xf2\x75\xc4\x84\xba\xc7\x9a\x01\xd6\x71\x8f\x7b\x84\xf6\x3c\x2e\xa8\x27\xff\xb5\x02\x77\x7a\x10\xc2\xf6\x09\x79\xff\x8e\x63\x0b\x2c\xbc\xa1\x24\xe0\x61\x32\x06\xac\xe7\xaa\xcd\x32\xef\xa2\x73\xdd\x39\x5f\x40\xaa\xd1\x35\x64\xca\xf9\xac\x2f\x34\x9b\x3f\x9f\xb1\x84\x16\xda\xc5\xc4\x75\xb8\x12\xca\x25\x26\x4c\xc1\x18\x65\x5c\xdd\x0b\x34\xc5\xfb\x3a\xb5\xb5\x28\xc1\x2e\x16\x8b\xe1\x83\x27\x61\x04\xdc\x51\x18\xff\x86\x7f\x80\xa6\x52\xfb\x6b\xfd\xa6\xfa\xfb\xe6\xec\x16\x7f\x6d\x9e\xc6\x8d\xf8\x8e\x1b\xe6\x83\xec\xa0\x4d\x10\x20\x88\x77\xca\x62\x2b\x95\x57\xa3\xd7\xdf\x7c\xd3\x62\xf2\xff\x72\x68\xaf\x9b\x4a\xa6\xe2\xa7\xee\x68\x2d\x4b\xa6\xf6\xc8\x4a\x6b\xe8\x46\x15\xce\x3a\x24\xa4\x0d\x09\x69\x3d\xdc\x9e\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x4d\x3b\x1e\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x6b\xda\xc9\x40\xcb\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\x34\xfc\x0c\x09\x69\x43\x42\xda\xf6\x67\x48\x48\x1b\x12\xd2\xca\xcf\x90\x90\x36\x24\xa4\x0d\x09\x69\xd1\x41\x87\x84\xb4\x00\x16\x43\x42\xda\x90\x90\x36\x24\xa4\xd5\x3f\xbf\x64\x42\x5a\x4b\xcb\x4c\x42\x46\xae\x8a\x6f\xec\xb7\xf6\x81\x5b\xe4\x04\x77\x37\x1e\x51\xbe\xbb\x7e\xab\x86\xfa\xdd\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\x3b\xbe\xbc\xa1\x7e\xf7\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x55\x9f\x21\x5c\xaa\xfa\x0c\xe1\x52\x43\xb8\xd4\xaf\x2a\xc4\x60\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x2a\xfa\xf0\x6f\x8c\x96\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x15\xf9\x0c\xe1\x52\x43\xb8\x54\xf9\x19\xc2\xa5\x86\x70\xa9\x21\x5c\x2a\x3a\xe8\x10\x2e\x15\xc0\x62\x08\x97\x1a\xc2\xa5\x86\x70\xa9\xfa\x67\xa8\xdf\x3d\xd4\xef\x1e\xea\x77\xd7\x3e\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\xbb\xd7\x0c\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\x7b\x28\xc7\x3a\x94\x63\x1d\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\xcd\xeb\x1f\xea\x77\x0f\x0c\x63\x60\x18\x43\xfd\xee\xa1\x7e\x77\xed\x33\xd4\xef\x1e\xea\x77\x6f\x7d\x86\xfa\xdd\xcd\x0a\xe4\x50\xbf\x7b\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xf0\x33\x24\xa4\x0d\x09\x69\xbf\xaa\x24\x8e\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xe8\xc3\xbf\x31\x5a\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\x5a\xe4\x33\x24\xa4\x0d\x09\x69\xe5\x67\x48\x48\x1b\x12\xd2\x86\x84\xb4\xe8\xa0\x43\x42\x5a\x00\x8b\x21\x21\x6d\x48\x48\x1b\x12\xd2\xea\x9f\xff\xde\xf5\xbb\xfb\x84\x1d\xc4\x8f\xba\x5d\x3a\x98\x63\x94\x48\xa5\xb1\xc7\x56\x5d\x68\xd4\x45\x90\x3e\x3a\xb6\x8d\x45\xb0\xa5\xa8\xf9\x0a\x1b\xb6\x14\x3f\x15\x28\x34\xde\xb5\x8f\x0f\xf6\xa1\x16\x9e\x54\x47\x64\x89\x4f\x47\x77\x81\xa1\x84\x58\x0b\x1a\x8c\x3f\x76\x50\xf0\x96\xa6\x63\xb4\x07\x95\xd6\xec\x25\x5f\x58\xe5\x7a\x7a\x00\xe3\x4d\x0f\x40\x04\x70\xcf\xc6\x86\xa6\x73\xab\x14\x1a\x10\x3a\x61\x80\x4c\xde\x33\x85\xab\xc1\xd0\xcc\x60\x71\x9a\xc8\x15\x37\xc6\xf2\x12\xee\xb3\x7a\x62\x83\x26\x52\x68\x8e\xa5\xd8\xd1\x6e\x39\x3d\xe0\x62\xce\x05\x37\x6c\x7a\x40\x46\x04\x02\x02\x83\xed\x78\x4e\xe5\xd6\x49\x32\xaa\xcd\x98\x94\x3b\x8b\x82\xc4\xae\x95\xa7\x4c\x18\x9e\xd0\xcc\x2d\x70\x7b\x1c\x2e\x08\xcd\xf2\x25\x15\xc5\x8a\xa9\xe0\x39\x40\x80\xd8\xa8\x8e\x3f\x39\x13\x1b\x46\xbd\x44\x75\x6e\x44\x0e\x51\xac\x66\xbb\xd6\xcf\x5c\xb1\xf3\xab\xd3\xdb\x2e\xf4\x98\xe0\x63\x84\x8b\x94\x27\x68\xd9\x29\x33\x50\x96\xbe\xbc\x7a\x9d\xaa\x90\x19\x9b\xcb\xb8\xe8\x46\xc5\x86\xd8\xe1\x1a\xd7\x3a\x93\x32\x63\xbb\x81\x19\x2d\x72\xfb\x96\x94\x75\x1b\xda\xc9\x10\xab\x03\x6b\x99\xbf\x68\x39\x4f\xee\xf0\x3f\xb2\x88\x12\x20\xbb\xb7\x2d\xab\x47\x80\x09\x2e\x5f\x26\x38\x43\x23\xbd\xd0\xd1\x6c\xbb\xa9\xd6\x61\x65\xb7\x2c\x93\xf7\x08\x35\x34\xe1\x95\x46\x2d\x94\xac\xff\x88\xf6\x1d\xbc\xd8\x9f\x32\x6e\x98\xa2\x60\x5a\x89\x8d\x3c\x9d\x92\x11\xe6\x8b\x59\xac\x5e\xe5\x54\x71\x2d\xc5\x11\x81\xa4\x51\x6f\x97\xf1\x43\xce\xa5\x24\x33\xaa\xc0\x58\x54\x4e\xf7\xbb\x3d\xa7\xab\xe6\xb3\xa2\x15\xfb\x7b\x41\xb3\x3f\x60\x88\xb3\x57\x15\xf8\xdc\xe9\x08\x5c\xc3\x33\xde\xf5\x51\x4e\x19\x27\x22\x3f\xc3\x3a\x68\x15\x98\x37\xab\xfe\x99\xe0\x3f\xc7\xe3\x31\xf9\x67\xb0\x02\xa3\x0a\xe6\x33\x95\xca\x60\x5f\x9c\xe3\x2f\x24\x9e\x5c\xe0\x7c\x3e\x1d\x53\x55\x6b\xb5\x1b\xe0\xa2\xc7\xe2\x62\x93\xed\xb9\x5e\x98\xac\x6d\x81\xf1\x23\x09\xd6\xbc\xa4\xfa\x39\x8c\xf7\xc9\xb2\x8e\x17\xd5\xd4\xb7\xe5\xcc\xd4\x54\xa7\x13\x9c\xcc\xef\x00\x49\xa3\x4c\xd7\x0d\x51\xda\x87\xe5\x1c\x9e\x05\xf3\x20\xfc\xbf\x78\xf9\xf2\xf5\x1b\xfc\x2f\xfe\x52\xbe\x73\xb3\x94\xca\x8c\x12\xae\x92\x82\x1b\x10\x6b\xdd\x4b\xb1\x89\xfe\xeb\xbf\x5a\xdf\x06\x47\x92\x79\x8e\xcf\xbc\x28\x1f\xca\xa9\x62\x4e\x25\x5a\x28\x59\xe4\x56\x25\x9a\x4e\x0d\xcd\xb2\xe7\x51\x87\xa0\xeb\x29\x80\x61\x41\x25\xbd\xf0\xa3\x79\x1c\xa6\x59\x16\xd8\xf8\xe0\x82\xbe\x43\x7c\x40\x25\xb6\x81\xc8\xd9\xab\x8d\x74\xc6\x87\xca\x86\xf4\x5d\x1f\x91\xd1\x11\xf9\x04\x70\x38\x1e\x93\x1b\xb8\x72\xc4\x5d\xb9\xc6\x41\x57\x52\x31\x92\x5b\xfd\x4b\x6b\xbe\x66\x64\x86\x49\x1e\x1b\x6f\x5f\x76\x96\x7f\xc2\x74\x42\x73\x46\x92\x25\x55\x34\x31\x4c\xb9\x65\x5f\x60\xac\x7c\xf4\x32\x3c\x07\x2e\xb5\xa2\x29\x1b\x15\x39\xa2\x85\x7e\x51\x92\x23\xc8\x2c\x74\xa4\xe3\x9e\xcd\xac\xe6\xc6\x1c\xf1\x08\x4f\x3c\x65\x79\x26\x37\x2b\x26\xa2\xe4\xd4\xbd\x9f\x2b\x99\x7a\x24\x85\x71\xed\x9d\x02\x9a\xa4\xa4\x30\x4c\xa4\x01\xaa\xd3\xe4\xce\x7d\xf1\x4f\xfb\x78\x35\x3e\xf9\xdd\x1f\x9b\x6e\x40\xca\xd6\x7e\xf8\xdf\x91\xad\x5b\x10\x23\x65\x6d\xc2\x53\xdd\x1a\xdb\x57\x2a\xbc\x89\xbe\xf5\xc5\x44\x43\xb7\x48\x6f\xac\xd9\x57\x40\x04\xaf\x4f\x0f\x9e\x0a\xce\xa1\x4a\x02\xb8\x5f\x42\xc6\x7a\x8d\xe7\x07\x61\x71\x4e\xcd\x8c\xd2\x29\x7b\xef\xa4\xeb\xa0\x72\xe4\xfe\x9a\x49\xb3\x1c\x13\x8c\x54\x05\x6e\xf2\x90\x5b\x89\xca\x64\x9b\x40\x99\x7d\x0e\xdd\x5f\xa2\x21\xc8\x01\x1d\x15\x24\x51\xcc\x25\xc8\x68\x77\xbb\xa5\x22\x82\x67\x2f\x8e\x7c\x92\x4b\xca\xe6\xb4\xc8\x8c\x26\xb8\x2d\x0b\x3a\x95\x36\xe8\x34\x46\x92\x7b\x4b\x2b\x2f\x9d\xe6\x6c\x17\x71\x11\x28\xd1\x20\xb7\x7a\xfa\x59\x36\x42\xc1\xb0\xcb\xa6\x3c\x79\x37\x3f\xe1\x1a\xef\xd8\x88\xfc\xd5\x89\x72\x76\x41\x7e\xa6\xbf\x1d\x39\x16\x61\x05\x63\xf0\xde\xd4\x26\x8e\xde\x63\x2e\x92\xac\x48\xbd\x83\x33\xa1\x56\x58\x86\x01\xaa\x61\x08\x32\x69\x21\xcb\x2d\xc1\x70\x2f\x9a\xa2\x2b\xeb\x8b\xbb\x88\xaf\xad\x06\x11\x4b\x98\xaa\xe1\xa3\xca\x1d\x3c\xd7\xb8\xf5\xa3\xce\x09\x63\x83\x82\x6d\xb1\xe9\x98\x90\x06\xfe\xe4\x0c\x8b\x81\x7a\xa2\x18\xb5\xb7\x29\xb9\x23\x74\x41\xb9\x88\xa2\x2c\xa2\x09\x3a\xa4\xb2\x7b\xba\xd1\x3b\xf9\x09\x18\x2d\x72\x44\x04\x5b\x33\x55\xc3\xba\xa8\x91\xa5\x67\x97\xa5\x0a\x0a\x84\x01\xeb\x28\xfd\xaa\xb9\xd4\x9a\xcf\x32\x3f\x71\x15\x0e\x67\x5f\xb8\xc9\x59\x12\x57\xbb\x71\x23\xcd\x01\x82\xed\x0a\x7e\xa3\xee\x1c\x57\xb9\x77\xbf\x05\xce\x91\x86\x61\x0f\xda\x48\x45\x17\xcc\x7f\xa5\x0d\x35\x05\x02\x06\x3d\x7f\x2c\xbd\x0a\x7c\x32\x77\x5c\xa4\x96\x1a\x79\x90\xe6\x59\xa1\x68\x56\x7d\x93\x48\x81\x8e\x78\x7d\x42\xfe\xfa\x37\xfb\x8d\x1d\x9f\xa5\x2e\xd1\xd6\x7d\x3b\x15\xa3\xd1\x68\x2a\x68\xce\x7d\xbe\x2e\xa1\x39\x67\x0f\x86\x09\x78\x6a\x7c\xf7\xad\x1e\x73\x79\xbc\x7e\x35\x15\x38\xe3\x59\xa1\x8d\x5c\x5d\x33\xf4\x28\x9e\x33\xd0\x10\x81\x5a\xd7\xb2\x62\xc1\x0e\x46\x30\xa6\x5a\x60\xfc\xb1\x66\x46\x8f\x13\x95\x8e\x73\x25\x2d\x1c\x12\x20\x40\x63\xa9\x16\x53\x61\x29\x1b\xbc\x07\xe2\xca\x09\x69\x78\xac\xee\x96\xc2\x05\x6d\x87\x4a\xe3\x6f\x19\xd7\xe6\xcf\xd1\xdf\xdf\x71\x6d\xea\x20\xdb\x59\xa5\x3b\x0f\x2e\x16\x45\x46\xd5\xee\x03\x00\xcd\x44\xda\x23\x3d\xcb\x0a\x6d\x50\x9d\x5c\x7b\xc8\xda\x3f\x46\x0e\x02\x16\x70\x30\x58\xb2\x64\xab\x2a\x61\x58\xe6\x4c\x9c\x4e\x2e\x7f\xfc\xea\xa6\xfe\xfd\x16\xd2\xef\x84\x81\xd7\x12\x31\x20\x9c\x80\xaa\x19\x37\x8a\xaa\x0d\xb9\x9c\x10\x5d\xcc\x46\x7e\x99\xc7\x67\x97\xe7\xd7\x35\x8a\x83\x06\x8c\xa5\xa5\x51\x28\xd6\x80\xf2\x0a\x9a\x17\x12\x21\x23\x31\x27\xd0\xc5\x6e\xac\xc8\x9a\xd3\x20\x8a\x0e\xe3\x23\xf0\xd5\x70\x5c\x39\xdf\x5d\xa8\x77\xb1\x97\xd6\x9a\xf0\x92\x35\x58\x53\x03\x2c\xac\xdf\xa9\x7a\x91\x13\x0b\x37\x17\x4c\x82\xc9\x17\x48\x06\x1c\xf8\x59\xea\x60\x8d\x74\x00\xa8\x9a\x63\x49\x34\x66\x26\xb3\x20\x14\xee\x66\x8e\x41\x60\x61\x4a\x7b\x95\x36\x91\x62\xcd\x94\x21\x8a\x25\x72\x21\xf8\x3f\xca\xc1\xb5\x0f\x6f\x81\x66\x6f\x3b\x42\x1e\x17\x86\x29\x2b\xda\x00\x49\x42\x23\xfe\x8a\x6e\x88\x62\x76\x1a\x52\x88\x60\x40\x1f\x5c\xf7\xde\x8a\xb4\x5c\xcc\xe5\x09\x94\x9f\xd2\x27\xc7\xc7\x0b\x6e\xfc\x05\x4c\xe4\x6a\x55\x08\x6e\x36\xc7\xe0\x70\xe7\xb3\xc2\x1e\xc9\x71\xca\xd6\x2c\x3b\xd6\x7c\x31\xa2\x2a\x59\x72\xc3\x12\x53\x28\x76\x4c\x73\x3e\x82\xb5\x0b\xa0\x00\xe3\x55\xfa\x4c\xb9\x1b\xab\x0f\x63\xf4\x6a\x97\xcc\xc1\xe5\x6a\x3b\x06\x7b\xbb\x5c\xce\x36\xca\xec\x28\x74\x94\xd0\xf6\x8c\xf7\xfa\xe2\xe6\x96\xf8\xd9\xa3\xf9\xed\x08\xfc\xea\x4d\x5d\x9d\x83\x05\x1a\x17\x73\x2f\x5d\x81\x8f\x23\x34\x46\x20\x6b\xcf\x78\x44\xd0\xd6\xc5\x6c\xc5\x8d\x0e\xea\x16\xc9\x31\x39\x2b\x9d\x1f\x45\x9e\x52\xc3\xd2\x31\xb9\x14\xe4\x8c\xae\x58\x76\x46\x35\xfb\xe2\xa7\x00\x22\xe6\xc8\xc2\xb6\xef\x39\x34\xd4\x1a\x68\xb2\xec\x96\x84\xb4\xe1\xd8\xb6\x2f\xaa\xe5\x8f\xf5\x94\x37\x9f\x21\x59\xd5\x24\xa0\x64\x9b\xba\x56\x1f\x7f\xb0\x5b\x2c\xb4\xc5\x5f\xd2\x90\x9c\xb1\xd3\x17\xd2\xc7\x8f\x5e\x4e\x88\x27\x69\x48\xc1\x66\x2c\x93\x16\xb7\xa4\xb3\x17\xb1\x98\x97\xbd\x59\xaa\x18\xf8\xfa\xe7\xf3\xf5\xa5\xd4\x55\x14\xd4\x17\xe0\xe9\x61\xaa\xd3\x36\x3f\x0f\x7f\xdb\xe5\xe5\xb5\x95\x6d\xf3\xf1\xf0\xc7\x2f\xc9\xc3\x07\xfe\x36\xf0\xb7\xf0\x08\x06\xfe\xf6\x8b\xf1\xb7\x90\x3a\xf4\xe3\x6d\xbb\xb4\xa6\xfa\xec\xcf\xdd\xd8\x43\x0e\x31\x1d\x97\x93\x3e\x96\x24\x7b\xd2\xee\x85\x7a\x66\xdf\xf3\xcb\xc9\xfa\x6b\xb8\x56\x97\x93\xf5\x9b\x17\x5e\xa7\xf5\x68\x11\x55\x58\x2f\xd1\x40\x7e\x69\xef\xe6\x9c\x26\x0c\xfc\x60\xd3\xe9\xc1\x96\xcb\xa1\xb4\xfc\x80\x0e\x9f\x49\x79\xe7\x4d\x6f\xdc\xbf\x19\xb5\xb8\xfa\xd0\x9a\x20\xe3\xf0\x72\x52\x0b\x76\xc3\x24\x69\x70\x86\x39\x9b\x02\x10\x11\x6a\xc6\x10\x40\x1e\xe5\xc6\xd3\xa9\x01\x43\x44\xa1\x77\x22\xd1\xb7\x72\xef\x21\xd9\xb1\x0c\xda\x90\xca\x99\xcd\x62\x83\x6e\xb7\x4a\x9e\x4e\xed\x78\xae\x47\x72\xb9\x7f\x47\xfc\x74\x7d\x56\x2e\xe2\x99\xfd\xa5\xc2\x15\x9e\xd3\x18\xb2\x6c\x2d\x5b\xa9\xc5\x05\x63\x44\xc2\x45\x85\x0a\x68\x66\x88\x0d\xcb\x35\xda\x34\xb1\xf6\x13\x35\x24\x2f\x54\x2e\xed\x4d\x7d\x7e\x39\x77\x61\x48\x4b\x56\x1d\x8d\x9d\xc7\xc7\x19\xb6\x07\x33\x79\xfb\x9e\x64\x78\xfc\x19\xa3\x4a\x94\xc7\xe6\x4e\xb0\x1a\xd7\x2e\xa0\xd0\x60\x83\x6e\x0c\xa0\x98\x4e\x8d\x3f\x8e\x71\xd4\x82\xfc\xe4\x52\x17\xa9\x56\x78\x15\x8f\xac\xd9\xba\x52\x17\x58\xae\xd2\xe2\xfd\xbf\xa1\xf9\xdc\xf9\x36\xaa\x98\x9a\xb2\x04\xc8\x3b\x2e\x8a\x87\x76\xac\x2f\xbd\xbb\x25\x42\xff\x01\x50\x6f\x95\x9b\xcd\x98\x54\xd3\x84\x0e\x61\xf4\x8e\x72\xdd\x4a\x59\xec\x67\x21\xd7\x4c\x09\xf4\xab\x94\xb1\x66\xf2\xa8\x8a\x2f\x5b\x2a\x59\x2c\x30\x86\xc0\x9b\x49\x9d\x28\xdc\x9e\x02\xef\x0e\x17\xf0\xd2\x3e\x58\x16\x00\xc0\xc6\xd9\x29\x92\x05\xc0\xc9\x3f\x10\x66\xf7\x8f\x17\x3b\xb5\x48\xb2\xc6\x8b\x18\x2f\x09\x51\x45\xee\xac\xa1\x97\xf9\xa6\x02\xdf\x11\x09\x0d\xae\x52\x63\xde\xc0\xb1\x91\x10\x87\x6e\xd7\xe2\x4d\x13\x71\x37\x7e\x26\x13\x9a\x95\x49\xe4\xce\x48\x79\x39\x27\x35\x7a\xe6\x69\x59\x70\xbe\xbd\x40\x0d\x17\xc9\xc3\xbb\x16\xd7\x07\xdb\x07\x7a\x62\xf7\xee\x64\x2d\x80\x5c\x00\xfe\x28\x91\xf1\x68\x54\xdd\xa1\x12\xd6\xb5\x35\x03\x0a\x8e\xc8\xbd\x25\x73\x75\xe2\x1c\xa7\x07\x68\x31\x1d\xd5\x8e\x3f\x32\x59\x99\xf7\x57\x19\x5f\xed\xcd\x8e\x0e\x2a\x42\x62\x04\x25\x6b\x15\x04\x25\x1c\x45\x56\x55\x2e\xe1\x88\x50\xa0\x1a\xbb\xe2\x1f\x71\x3e\xe3\x90\x77\x95\x9d\xca\xab\x82\x5e\x98\xba\x64\x95\x0e\x85\xa5\xee\xdc\x2c\x9a\x3c\xd7\x45\x9c\xc2\x50\x0d\x47\xcb\xcc\xf2\xa5\xfd\xff\x0b\x97\x77\x03\xce\x3c\x96\x12\xbb\xee\x3f\x10\x6e\x08\xd7\xe2\xd0\x54\x96\xdf\x6e\x4e\x4e\xf0\x32\xe7\x4a\x5a\xe9\x25\x40\x01\x84\x71\x40\x15\xea\x78\x58\xad\x3a\xca\x73\x7d\x72\xd4\x09\xee\x15\x72\x11\x41\xfa\xc1\x7c\x45\xf4\x05\x59\x89\x6b\x95\x67\x6c\x65\x71\x0d\x49\x7d\x45\x38\xc2\x45\xeb\x3f\xc4\x4f\x8f\x1b\x4e\xb3\x6c\x43\xfe\x1f\x0b\xe3\x5c\xb1\x11\xc4\xa0\x94\x9e\x95\x89\x3d\x24\xe6\x0a\x0b\x97\x64\x3f\x29\x56\x4d\x3a\x81\xfd\xf8\x3e\xf2\x28\xe0\xbb\x7e\xf5\x52\x44\x4d\xf4\x6d\xc4\x5b\xc4\xab\xca\xed\xa8\xf3\xf6\x39\x17\x21\x0f\x01\x40\xf3\x8d\x67\xf8\x6e\xc5\xf0\x00\xb7\xea\xb1\x88\x02\xbb\x6d\x11\x4d\xd9\xb9\x5b\x1e\x04\xcb\xec\x6b\xf2\x60\x10\x29\x8b\x77\xd7\x25\x8e\xfa\x2a\xc3\xd1\xa8\xdb\x19\x43\x2b\x29\x13\x09\x86\x2b\x95\xe2\x86\x3b\x70\x17\x50\xba\x07\x77\xec\x0c\x2f\x6d\x0d\x2b\xed\x0e\x45\xb4\xdb\xea\x78\xbd\x35\x2b\xf4\xd7\x54\x3d\xec\x4b\x15\x8b\xea\x08\xb2\x14\x0d\x04\x7b\x04\xc0\x6d\xf8\xa5\xa5\x1c\xdc\xa3\x43\x33\x73\x14\x63\x3b\xd1\xfd\xb4\xca\xc0\xc6\x0b\xc7\x81\xcf\xcd\x03\xe9\x18\x47\x72\x8b\x68\x2e\xb2\x59\x65\x64\x58\x56\x5b\xea\x20\x58\x5c\xdd\x2d\x27\x88\x6e\xf4\x2a\x01\x86\xed\x35\x0d\x8a\x29\x0d\x79\xce\xa8\x2a\x03\xe6\x20\x63\x86\x94\xeb\xaa\x7c\xca\x7e\x64\x1f\xf8\x58\xc9\xeb\xa3\xc6\xb0\xc0\xad\x5b\x39\xd8\x08\x7f\x61\x1b\x21\xcf\xe9\x6a\x96\xc9\xe4\xee\x4b\x18\x08\x2f\x27\xa7\xef\xbf\xb7\x83\x6f\x5b\x07\xcb\x1f\x76\x4d\x83\xd5\x82\xb6\xed\x82\xe5\x2f\x71\xa3\xe0\x33\x72\x4d\x45\x02\x95\xbf\xbc\x90\x90\x2c\xa9\x58\xc0\xd9\x81\x56\xad\xd6\xec\xa3\xb8\x13\xf2\x5e\xbc\xb5\x42\xb5\x3e\x21\x73\x9a\x69\x36\x58\x14\x07\x8b\xe2\x60\x51\xfc\x8d\x5b\x14\x4b\x8a\xd2\xcb\x9c\x28\xb6\x49\x53\xf5\xd9\xdf\x98\x68\x75\x14\x0b\xbb\x4e\x56\xef\x9e\xf3\x6a\x20\xd0\x32\x17\x24\xc4\x35\xfe\xe9\x55\x45\x4c\x83\x63\x26\x6a\x33\xe2\xa6\x0c\xc7\x0f\x1a\x7e\x90\xe9\x81\x55\x88\x4f\xb0\x29\x87\xfd\x27\x08\x43\x10\x1c\x3a\x3d\x80\x01\x21\xe6\x92\x99\xa3\x60\xc2\x06\xed\xd6\x3e\x09\xfb\xc2\x16\x33\xa0\x6a\xef\x29\xed\xd3\xcc\xea\x68\x4d\x45\xcc\xeb\x90\xb1\x4c\x1a\x28\x56\xf5\x0e\xe1\x62\x54\xb8\xcc\x09\x2f\x79\xc0\x8a\xc7\x44\xf0\x0c\xba\xc5\x34\xe4\x2f\xac\x18\x45\xd1\xa6\x1a\x8d\xc0\x1d\x63\x0c\x2d\x81\x42\x8a\x51\x30\x86\x55\xa0\xb9\x48\xd9\x03\xe1\x47\x4d\x66\x04\xf7\x7b\x99\x4f\xc2\x2d\x11\x74\xc0\x0f\xa6\xd9\x59\x2c\x50\xc8\x86\x31\x91\xae\xb8\x31\x71\x02\x3f\xa2\xd6\x32\xe1\x50\x90\x83\x1a\xbc\x8e\xac\xb4\xe1\x9e\x96\xdf\x44\xa5\x40\x0b\xca\x47\x48\x51\x2d\x42\xff\x33\x72\xfb\xe1\xfc\xc3\x09\xd6\x15\x12\x45\x96\xd1\x19\x4a\x92\x2b\x2a\x0a\xd0\x78\x69\x9a\x82\x40\x39\x26\x3f\x31\xcf\x62\x90\x0e\x91\xb2\xf0\x80\x1a\x2d\xe2\x85\x36\x9f\x59\x0c\x5b\x52\x91\x66\x8c\xfc\xf5\x6f\xff\x66\x89\x1f\x5e\xb6\x6c\xe3\x2a\x84\x44\x75\x7a\xbf\x90\x26\x55\xa1\x45\x36\xaf\x60\xda\x89\x98\x01\xf4\x21\x1a\x96\x96\x98\x5a\x06\xf4\x78\x42\x16\x9c\x5a\x6c\xbd\x10\xaf\x5c\xc7\xef\x8a\x0a\x8c\xc9\xad\x24\x73\xcb\x78\x82\xf3\x46\x73\x09\xe6\xd4\x55\x2f\x46\x29\x82\xbd\x28\xb5\xc8\xfc\x3a\x5e\x1e\x6a\xd7\x5d\xc9\xa3\x50\xb0\x8c\xc6\x04\x74\x1a\x41\x4c\x86\xe6\x91\x52\x15\xd8\x1f\xdb\x3a\x75\x68\xc4\x84\x4f\x3c\xae\xe1\x91\x5e\x8a\xb4\x66\x56\xb6\xa6\x2a\x46\x92\xdd\xe6\xf6\xeb\x9c\xd0\x47\xe3\xed\x4a\x0f\x7c\xb4\x2a\x99\xf0\xb4\x33\x84\xfb\xd6\x63\xd2\xa1\x26\x67\x97\xe7\xd7\x7b\xd2\xea\x94\x65\xcc\x44\x95\xea\xda\x2c\xe7\xf8\x98\xbb\x0b\xa5\x30\xe8\xf2\x9f\xca\xb0\xef\x7b\xa9\xee\xa8\x92\x85\x45\xe7\xa0\xfc\x7f\x83\xcd\xd3\xe2\x55\x90\x08\x7e\x3a\xb9\xc4\x00\xe0\xd9\x06\x97\x85\x74\x35\xc3\x7c\x16\xc5\x4c\xa1\x04\x81\x2e\x1d\xf3\x8c\xc7\x21\xcd\x94\x92\xca\x27\xab\x54\x6c\x75\xc6\x98\x08\xc4\x23\xe3\x29\x95\xcf\xb3\x66\xa6\xa4\x68\xfb\xa7\x7a\xfd\xbd\x60\x22\x61\x57\x90\xb5\x16\x05\x23\x38\x06\x4e\xc8\xcb\x0e\x10\x5b\x02\x6a\xb5\x40\xf0\x64\xe1\xa0\x2e\x17\x0e\x4d\xc9\x5c\xfb\x2d\x60\x16\xb9\xe1\x71\x83\x47\xb5\x75\xae\xc9\xbd\xe2\xc6\x30\xe1\x6c\x01\x35\x7e\x05\x01\xc2\x5a\xba\x49\x51\x67\xc7\x69\xe3\x44\x17\x56\x12\x0a\x30\xc4\x65\x99\xd9\x85\x80\x19\xc3\xe8\x32\x9e\xdd\x55\x72\x56\x2c\x63\x54\x37\x5c\x1d\x90\xc5\x8e\x48\x4e\x75\xe0\x5b\xac\x6f\x3c\x60\x87\x40\x45\xeb\xc4\x2d\x3a\x68\x96\xc9\x7b\x4d\x0a\x1d\x5a\x93\x21\x5a\x5a\x1b\x42\x89\xa2\x58\x41\xdc\xd5\xc0\xb2\x3c\x9a\x09\x5d\x38\x00\x5c\x46\xfb\x3f\x2e\x29\x18\xb3\x01\x89\x70\x43\x96\x3b\x8b\x94\x28\x36\x72\x8b\xb1\x5a\x14\x54\xbc\x83\x24\x43\x7c\xc6\x8b\xe9\x11\x8c\xc2\xf6\x27\xc0\x7a\xdf\x7c\xdd\x84\x70\x0d\x7c\xb9\x8e\x70\x6f\xa5\xaa\x48\x7a\x04\xfb\x7a\x53\xbb\x8e\x25\x75\x0a\x0b\x5b\xed\x30\xf2\x40\xa6\x63\x69\x29\x37\x05\xc5\x15\x10\x85\x20\x55\xe4\xb3\xb0\xae\x42\x87\x71\x48\x4c\xbc\x5b\xb5\x11\x47\x48\x95\xbf\x7a\xc7\x36\xbe\x3c\x45\xae\x8f\x88\x46\x3d\xf8\x8e\x41\xcc\x7d\x42\xb5\x71\xdd\xcb\x80\x80\x36\x12\x88\x38\x7d\xc7\x3a\x2b\xa7\x3d\x15\x85\x9b\xda\xd3\x3e\x73\xb6\xd4\x58\xec\x7a\x52\xab\x53\x22\x54\x2d\x0e\x8a\xa8\x33\x3c\x93\x62\xc1\x14\x92\x65\xe7\x5a\xc4\xb6\x30\x1f\x35\x0e\x77\x26\xc5\x9c\x2f\xb6\xe7\xb3\x97\x84\xd1\x58\xb8\x7d\x2b\x0d\x2c\x44\x79\xd2\x5d\x1b\xfc\x58\x3d\xea\xb3\x8c\x14\xe6\x34\x7b\x63\x68\x28\x28\xa1\x99\xbf\x21\x85\xc2\x4a\xf5\x75\x51\xea\x09\x65\xdf\x46\xa6\xdc\x60\x85\x1e\x85\xeb\xde\xf9\xa9\x41\x6e\x1f\x01\x83\xdf\xfe\xae\x8e\x31\xdb\xbf\x06\xb0\x1e\x6c\x9b\xad\xb6\xcd\x04\x50\xfc\x4b\x19\x37\xf1\x02\xc5\xac\x9b\xf8\x4b\xdc\xbc\xe9\xd6\x14\xb3\x6f\x26\xe5\x80\x43\xd4\xe3\x60\xa3\x6c\x3c\x86\xc1\x46\xf9\x5b\xb5\x51\x22\x5d\xd8\xc3\x48\x19\x92\x98\xea\xf3\x08\x2b\x65\x61\xa4\x13\x12\x19\x88\x11\x31\x8e\xd8\xca\xe0\x57\xf4\x01\x5f\x9c\x30\xf5\x27\xb0\x34\x76\xc9\x7f\xf5\xe7\xc1\xd4\x29\xa4\x18\xfd\x83\x29\x79\xe4\x0d\x5f\x2b\xfa\x10\x08\x78\xa1\xe7\x67\x6b\x69\x50\x6b\x8c\x0a\x28\x60\x51\x5a\x26\x41\x07\x6a\x35\x4e\x36\x09\xd0\x5d\x12\x59\x0b\x28\x9a\xb9\xff\x0e\x8c\xf7\x61\xeb\x03\xef\xde\xe2\xdd\x68\x0a\xfa\x52\xbc\xfb\x4f\x30\x7a\x8c\x77\xe3\x2f\x71\xde\xed\xd6\x14\xe3\xdd\xcb\x72\xc0\x81\x77\x0f\xbc\xbb\xf1\x18\x06\xde\xfd\x5b\xe5\xdd\x48\x17\xf6\xe0\xdd\x21\x89\xa9\x3e\xfb\xf3\x6e\xe0\x8a\x9f\x63\xd7\xe9\xa5\xe7\xc6\x4d\x17\xcd\xa6\xe1\x56\x61\x01\x89\xe1\xe5\x79\xe3\x7b\x31\x43\x74\x23\x63\x8d\xb8\x2a\x47\xe5\x14\x03\x17\x6d\xe1\xa2\xb9\x94\xd9\x97\xe1\xa0\x13\xe9\x43\xe6\x42\xee\x69\xbf\x8d\x71\x4e\x58\xc7\x2e\xd7\xcc\xdd\x20\x03\xc7\x1c\x38\x66\xe3\x31\x0c\x1c\xf3\xb7\xc9\x31\x2d\x2d\xe8\xcd\x2d\xed\xc3\x8f\x51\x6b\xb1\x6e\xd9\x47\xdd\xc3\x99\x5f\x3e\xea\xa3\x12\x34\x16\x4a\x42\xeb\x3a\xb1\xb4\xa8\x0c\xac\xf1\xe9\x5e\x50\xa8\x33\xc6\x52\x21\x96\xa6\xac\xf4\xe4\xb3\x8d\x8e\xaa\x4a\x4d\x46\x92\xbf\x1e\xde\x16\x42\xb0\xec\xf0\x88\x1c\xfe\xe4\x52\x15\x0e\xff\x06\x7b\x9e\xd1\xe4\x6e\x04\x65\x0f\x0d\x9f\xf1\x6c\x47\x19\x24\x5f\x26\x4f\x0b\x18\xe9\x0d\xff\x47\xaf\x64\x00\xf4\xb4\x68\xfe\x0f\x50\xb5\x0b\x8d\x19\x1c\x55\x66\x1d\xa1\x5a\xf3\x85\x58\xd9\x8b\xd4\xd8\x4c\xc1\xd5\xdb\x92\xd9\x98\x9c\x07\xa0\x79\xfd\xc6\x0d\xe6\x12\x28\x5f\xbd\x7a\xed\xbf\x78\xb3\xaf\x2e\xdf\xd7\x41\x0e\x07\xfc\x18\xef\x38\xd7\x74\x96\x75\xbb\x35\xc0\xd9\xe9\x1f\x06\xfb\x86\x2a\xaa\x44\x46\x2b\x10\x56\x8e\x6c\x04\x5d\x95\xa3\x18\x03\x9d\xa3\x41\x1e\x7e\x7b\x4a\x60\x6e\x21\xdf\xff\x30\xb9\x78\x68\xc8\x2c\xa8\x93\xd9\x73\x7c\x81\x30\x78\xdc\x12\x55\x25\x8b\xb2\x92\x3a\xac\xe3\x72\x42\xec\x3d\xfd\xbf\xff\xe7\xff\xc3\x30\x03\x22\xd7\xf1\x98\xa1\xef\x7f\x98\x8c\xc9\x5f\xcf\xbd\xd7\x1b\xe2\x6c\xff\x16\xe9\xd9\xda\xba\x03\x9e\xf3\xbc\x7b\xd5\xa5\x27\xec\xc4\x51\x6e\xa8\x53\xc7\xb1\xab\x77\x95\xb6\x79\x3a\xb9\x5c\xbf\x82\x6b\x77\x4f\x55\x1a\x85\x77\xed\x3a\x5a\xce\x60\x1c\x6b\x09\x47\x85\xc3\x43\x4a\x72\x54\xff\x29\x7a\x84\x98\xab\x8a\x2c\xda\xde\x20\xbb\xa8\x71\x04\x10\x1d\x71\x31\x4c\x34\x61\xe0\x0e\x44\x00\x0b\xdd\xf3\x15\x12\x5a\x58\x12\x03\xd4\xc8\xee\x29\x24\x73\xf1\x31\x21\x11\x2b\x65\x19\x5f\x33\x55\xf5\xe5\xb1\x5f\x95\x5d\xeb\xf4\x56\x75\xee\x28\x8e\x92\xae\x53\x26\x50\x28\x32\x9a\x9e\xb4\xb3\xb7\x5b\xa0\xd4\x97\x13\x78\x01\x2a\x1d\x81\x6f\x56\x04\xd5\xcd\xa6\x07\x58\xf0\xcc\x77\xa1\x84\xde\xb6\x23\xec\xb7\x3a\x3d\x18\x13\x72\xda\xb4\x5f\x3b\xe6\xd6\x08\x55\x7c\x44\xa1\xdd\xcc\x15\x0c\xed\xd9\xda\x1b\x02\x38\xd2\xd8\x67\x3c\x80\x57\x3d\x79\x7c\x07\x76\x84\x9c\x06\x6b\xa8\xaf\xbb\x69\x74\x58\xa0\x47\xf4\xed\x05\xde\xfb\xda\x71\xe1\x1a\x30\x81\xcb\xde\x8e\xa6\x31\x69\xd5\x3b\xcb\xf5\xa9\xf5\x22\xa8\xef\xae\x60\x07\x17\xfe\x04\xaa\xac\xd7\xd6\x9e\x83\xcf\xf9\xbc\xce\x33\x5f\xd8\x55\x54\xb0\x6e\x45\x9d\x76\x4e\x17\x57\x5c\x2d\xc6\xbf\xef\x91\xf6\x76\xe6\x85\x13\xf4\xbd\x15\xaa\x12\x4c\x22\x07\xde\x8e\xea\x97\x5b\x7b\x3c\xf2\x8d\x41\xb8\x46\xaf\x3d\x00\x0a\xa3\xa4\xa6\x07\x57\x6c\x0d\x75\xc4\x9f\x43\xd1\xee\xfa\x64\xb1\xd1\xed\x08\x8e\xbb\xc4\x3a\xd2\xb5\xe6\xff\x51\x33\x92\x85\x59\x48\x2e\x16\xff\x53\x48\x6a\x2b\xd5\x11\xd4\x7c\xe8\x09\x0f\xac\xf1\x19\x00\xb0\xa2\xaa\x9e\x2e\x42\x29\xcd\xa0\xdf\x16\x69\xcd\xa1\x76\xe2\xb0\xd5\x3a\x42\x02\xb0\x43\x5d\x65\x61\x34\x4f\x59\xa9\x5e\x96\x02\x6a\x6c\x50\xe8\x46\xa2\xff\x5e\x30\x45\xd3\x68\x6b\x99\x76\x70\xc8\xb4\x77\x13\x81\x53\x0c\xae\x72\x22\xbb\x2b\x4e\x67\xd1\xc5\x45\xac\x96\xe9\x37\x40\x6a\x66\x1b\xac\x45\x17\x5b\x73\xd9\x89\x67\x3f\x64\x5e\x3f\x64\x54\x7c\xe6\xd5\xfe\xf1\x2f\xef\x4e\xaf\x7e\xb1\xbb\x0d\xb3\x45\xa5\xe3\x72\x01\x8f\xbe\xdc\x8d\x46\xb3\xdd\xb0\x92\xc1\x36\x56\xb3\x8d\x61\x4e\x18\x5e\xb6\x2f\x62\x22\xbb\xae\x26\xd8\xb5\x94\x05\x3f\xc6\x0c\x66\xe1\xe2\x76\xed\x66\xaa\x3e\xf2\x60\x3e\x1b\xcc\x67\x8d\xc7\x30\x98\xcf\x7e\x9b\xe6\xb3\x80\x40\xf4\xb6\xa2\xed\x50\x9c\xea\xb3\xbf\x6d\xcd\xe5\xcc\xa6\x50\xa2\xb6\x8b\xd7\x5e\x87\x0f\xd7\x7b\x8b\xe3\x57\x54\xa4\xc7\x35\xf3\x51\xdc\xe8\x01\x71\x1e\x3b\x26\x13\xf6\x90\x64\x45\xea\x9a\xdc\x0a\x76\x1f\x06\x5a\x0e\x39\xe3\xbf\x30\xe7\xbc\x2b\x66\xac\xca\xeb\xd2\x35\xe1\xea\x4b\x30\xd2\x3f\x17\x33\x76\x56\xcd\x77\x16\xce\xb7\xcd\x57\xdb\x9e\xdd\x65\xb3\xad\x3b\xd9\xe6\xba\x6d\x0f\x0f\x4c\x78\x60\xc2\x03\x13\xfe\x6f\xc7\x84\xdb\xa8\xc9\x2e\x4f\xae\x75\x36\xd8\x06\x70\x90\x95\x12\x10\x91\xba\x66\xda\x9f\x35\x07\x43\xf4\x51\x82\xfd\x6c\x68\x16\xc6\x5e\x13\x7e\x66\xd7\x25\x65\xcd\xd3\x82\x66\x1d\xad\x2c\x83\x69\xf7\x36\x61\x77\x75\xa7\x6c\xe8\x49\xd9\xb0\xe4\x7a\x83\xca\x6a\x5d\x8d\x1d\x21\x2f\x9c\x45\x1c\xd2\x0a\x41\x55\x3f\x82\x94\x3f\x23\x21\x9f\xdc\x48\xaf\x7e\x37\x8c\xd0\xa3\xb7\xa8\x25\x53\x22\xe1\x19\x53\x13\xa6\xb8\x6c\xce\x60\xdd\x26\x0e\xd7\x5b\x2f\xfa\xd8\xd8\x1c\xff\x32\xd2\xfe\x0b\x72\xfc\xfd\x14\xbc\x31\xf5\xcd\x7f\xca\x4c\x39\x5f\x6a\x8c\x1a\x0a\xb2\x42\xe8\x97\xf9\x66\x15\x73\xca\xf8\x4f\x77\xd6\x6b\x57\xce\x6b\x43\xd9\xb1\x1d\x08\x5c\xc9\xb4\xfd\xa4\xed\xef\xbf\x8e\x43\x5e\x06\x95\xe0\xfa\x1e\x70\x58\x3d\xae\xf2\x3d\xeb\x8d\x48\xbc\x25\x1d\x38\x24\xd4\x33\x0c\xda\xf3\xb7\x9c\xee\xb9\xf7\x32\x3e\x76\xa7\x3d\x77\x4b\x5c\xe4\xf8\x99\x62\xb4\xa1\x36\x6c\xc3\x9e\x0f\x4f\xcb\xd7\xaa\x93\x2d\x8c\x5c\x51\xc3\x93\xaa\xe3\x91\xec\x6c\xc1\x5d\x87\x0a\xa8\x3a\x6c\xcd\xd4\xc6\x79\x20\x2a\x64\xf6\x30\x69\x43\x69\xd2\xbb\x27\x6c\x9f\x8e\xb0\x19\xa3\x77\x3f\x28\x9a\xb0\x3d\xef\xfb\xbb\xfa\x7b\x5b\xd7\xbd\x9e\xaf\xe7\x71\xbe\x6d\x4f\x60\x38\xc6\x3e\xd7\xd0\x2a\x8f\x86\xae\xa6\x2a\xf7\xd9\x2e\xd7\xf2\xf0\x1b\xc4\x93\x48\x2a\x72\x7d\x48\xe7\x0f\xbe\x9c\x90\x05\x55\x33\xba\xb0\xcb\xc9\x32\x96\x60\x9a\x65\x05\xf8\x57\x9f\x4b\x46\xfe\x27\x92\x4e\x02\xf7\x1f\x3a\xf3\xb5\x5d\xbf\xfa\x6e\x6f\xca\x57\xc2\x10\x16\xd7\xd8\x4c\x92\x44\xe6\x9b\x9e\xcd\xa8\x81\xa2\x56\xfd\x65\x82\xea\x8e\x3a\xdc\xa5\x23\xa8\x5f\x96\x4b\x60\xe9\xb7\x3e\x7c\xc2\x55\x8a\x6e\xe1\x14\xae\xb8\xe3\xaf\x83\x57\xfc\xcf\xc3\xea\xae\xa3\xae\x37\x28\xec\x73\xe4\xf5\xe6\x84\x6d\x47\xef\xc6\x6e\x5a\xbe\x6b\x37\x18\xa2\xc6\x80\x03\xff\x0a\x1c\xf0\x45\x7b\x3b\xa4\xa8\xba\x0f\x76\xeb\x9d\x36\x3c\xf0\xe3\x37\xed\x81\x6d\x49\x62\x03\x26\xfc\x6b\x30\xa1\x3d\xeb\x60\x56\x2c\x5c\x85\xd1\x49\x8f\xe0\xb5\xf3\xad\xe7\x77\xd9\x82\x32\x58\x66\x42\xad\x19\x59\xb1\x95\x54\xf1\xa2\x47\x16\x9d\xf2\xa2\x2c\xdf\x4a\xac\xa4\xb3\xeb\xf9\xc5\x9f\xb7\xdc\xb6\xed\x25\x3e\xbe\x7a\xdd\x04\x81\x86\xa8\x46\x66\x92\xf4\xc7\xaf\xce\xe4\x2a\xa7\x20\x71\x35\x22\x4d\x1d\x59\x2e\xa2\xaf\x6d\xa1\xcc\x8c\x99\x7b\x2b\x11\xda\x39\xd6\x5f\xc5\x35\x7d\x3f\x40\x69\x12\xaa\x04\xc7\xf0\x3a\x84\x72\xe0\xcb\x28\xbe\xb4\xe1\xc9\x92\xd1\xcc\x2c\xcf\x96\x2c\x9e\x8f\x5a\xdf\xda\x9f\x82\x87\x4b\x02\x20\x95\x5f\x8a\x2e\xfb\x09\x5b\x1d\x01\x47\x8e\x6e\x0d\x07\xe8\x25\xe4\xb4\xad\x3d\x93\x8b\x1b\xab\x89\x70\xb3\xb9\x49\x14\x63\xb1\xca\x2b\x5b\x72\xff\xf6\x1b\xfe\x58\x32\xb9\x20\xda\xfd\x42\xe8\x4c\xae\x99\xab\x7a\x91\xc9\x45\x43\x99\x37\x86\x41\x27\xce\xb0\xaa\x4d\x2a\x0b\x13\x1e\xc6\xa5\x98\xcb\x7d\x77\x94\x2b\xb9\xb2\xc2\x64\xa1\xdf\x33\xa3\x78\xa2\xfb\x5c\xbd\xc3\x49\xec\x2d\xbf\xb3\xdb\xb3\x89\xbb\x7c\x3e\xd2\xba\x7a\x3c\xb6\xb1\x15\x0e\x81\x17\x55\x95\x4d\xeb\xb9\xc0\x76\xf5\x1d\x18\xf8\xdd\xcb\xef\xbe\x6e\xde\x74\xf4\xa2\x35\x87\x4f\x34\xd9\xba\x1a\x8d\x89\x95\x6b\xa7\x01\x54\xad\xe6\x44\x78\x3b\x30\xeb\xba\x73\xb5\xdf\x46\xac\xf0\x4e\x39\x0c\x6c\x87\xe4\xd2\x1c\x42\x9b\x92\x79\x91\xa1\x43\x30\x5d\x81\x65\x52\x42\xca\xb4\xd5\xe4\x80\x00\x62\x79\x22\x9a\x98\x82\xee\x04\xe5\xe0\x88\x78\x56\xf7\xb4\xac\x15\xed\x4b\xad\xbb\x48\xcb\x95\x4c\x31\xea\x7d\x66\x45\xf1\x35\x57\x12\x62\xc0\xc9\x9a\x2a\x0e\x17\x71\x67\xbd\x18\x86\x78\x57\xcc\xd8\x28\x34\x7e\xe6\x4a\x26\x4c\x6f\x5b\x3a\xda\xfa\xf6\x54\xb3\xfd\x48\xa3\xa6\xcf\x3d\x53\xe2\x9a\xb8\x57\xed\xd8\x2e\xea\xb3\x6e\x17\xa7\x8f\x00\xa0\x21\xba\x32\x0a\x04\x2c\xeb\x25\xe6\x59\x81\xa5\xea\xc1\x0b\x50\x08\xc1\xc5\x02\x11\x64\xcf\x5a\x43\x2a\x7c\xb7\xd3\x6b\x1b\x3e\xbc\xb5\xb1\xf9\xdc\xaa\xfa\x6b\x56\xc3\x0a\xae\xfd\x04\xb1\x0d\xf2\xa6\x83\x96\xe9\x91\x2b\x0b\xbe\x62\x6a\xe1\x9d\x1d\xa7\x93\xcb\xca\xd7\x61\x25\x92\x38\x4b\x6e\xc0\xb2\x08\x5c\x3a\xa4\xb0\x76\xab\xf9\x0e\x70\x9e\xd2\x72\x4e\xba\xac\xe7\x3d\x96\x4f\x7a\x58\xd1\x77\x36\xb1\x9f\x25\xbd\x4d\x64\x7c\x4a\x71\xb9\xe7\x6e\xc9\x7e\x62\xf3\xce\xe6\xfb\x8b\xce\x5d\x56\xc8\xba\x64\xdd\x4b\x7c\xee\x1a\xb2\x5d\xba\x26\x4f\x6a\xa9\x6c\x31\xc4\x93\x2f\x65\x8c\x27\x4f\x60\x64\x21\xfd\xf1\xa4\xa7\x61\x7e\x67\xbb\x7b\x18\xe7\xbb\x4e\xb4\xb2\xdd\x3f\x8d\x81\x7e\x8f\xdd\x93\x7d\x0c\xf5\x3b\x30\xe8\x67\xac\xef\x1e\x14\x44\x93\x27\x37\xd8\x93\xde\x57\x81\xf4\xbc\x0e\x64\x2f\xe3\x3d\x79\xbc\x01\xbf\x6b\x63\xd5\x35\xda\xd3\x88\xdf\x35\x70\x44\x50\xee\x34\xe4\x77\x8d\xd9\x61\xe7\x27\x7b\x1c\xd3\x40\xd4\x3b\x41\xd4\xcb\x3d\xb0\x0b\x9c\xa7\x73\x11\x90\x27\x75\x13\xf4\xdf\x7a\x9f\x0b\xdc\xea\x32\xd8\x01\xca\x53\xba\x0d\xc8\x2f\xcb\xd5\x86\x8b\xf2\x04\xd8\xd2\xcb\xeb\x40\xbe\x98\xe7\x81\x7c\x21\xef\x03\x19\xd0\xe8\x17\x45\xa3\x9e\x8e\x0b\xf2\x25\x9d\x17\xe4\x4b\x39\x30\xc8\x80\x4c\xbf\x20\x32\x75\x3d\xd1\xc3\xff\x41\xbe\x94\x0f\x84\x3c\xbd\x1f\x84\x74\xfb\x42\x48\x9f\x56\x24\xbd\x7d\x22\x3b\xc0\x79\x2a\xbf\x08\x79\x5a\xdf\x08\xe9\x81\x53\x1d\x3e\x92\xdd\xad\x3e\x91\x9f\x84\xec\xe9\x2b\xe9\xb3\x97\x3e\x3e\x93\xdd\x0d\xed\xed\x37\x69\xda\x4e\x26\x17\xfa\x33\x7c\x27\x7d\x76\xd8\xd7\x87\xb2\xbb\xcb\x27\xf5\xa3\x90\xcf\xf5\xa5\x34\x0d\xda\xe4\x62\x21\xdd\xf7\xb7\xa5\x77\x67\x8b\xbb\x85\xb4\x92\xcb\x21\x31\x27\x48\xcc\x71\x59\xe7\xa0\xcc\xf0\x2f\x52\x38\xf5\x0a\x67\x40\x85\x0a\x7f\xa8\x72\x6f\x6a\x3f\xee\x26\xdb\x6c\xad\xce\x9d\x42\x99\x5e\x13\xfe\x0c\x43\xbb\x7c\x9a\xd2\x80\x0d\x32\xd1\x90\x52\x33\xa4\xd4\x0c\x29\x35\xbf\xad\x94\x9a\x36\x87\xee\x42\x31\xdd\x19\xf9\x71\xeb\xfb\x14\x5b\xf4\x67\x90\x53\x8a\x2f\xba\x26\xde\x04\x1b\x1b\xd9\x3f\x4a\x1f\x66\x8c\x43\x51\xff\x36\xd6\xed\x20\x2b\x6a\x92\x25\x49\x14\x37\x4c\x71\x0a\x97\x84\x92\x44\x2a\xc5\x74\x6e\xe9\xb9\x58\x10\x27\xe7\x19\x89\xfd\x95\xf7\xca\x35\xad\xed\x61\x7a\x70\x4a\xae\xed\x02\x99\x48\x68\xae\x0b\xb8\xb7\xd5\x8a\x62\x4b\x69\x30\xb8\x53\x67\xb7\x25\xdf\x4b\xb3\xdc\x6a\xb1\x1c\xb4\x8d\x76\x6d\xed\x45\xba\xd3\x4a\xba\x41\x60\x28\xdb\xa5\xbb\x96\xce\x23\xa2\x59\x4e\x15\xb6\xee\x29\x0c\xa1\x61\x4e\x2f\x3e\x02\x95\xec\xec\x2a\xb8\x80\xf3\x68\x58\xb0\x48\xfd\x79\x85\x80\xe7\x62\x31\x86\xd6\xfc\xd8\xa1\x1a\x5a\xdb\x5b\xc5\xa4\x0e\x89\x25\x6d\x1a\x95\x08\xb6\x80\xc5\x39\xc2\x6b\xd5\x11\x36\xe7\x0f\xbe\x4d\xd4\x74\x3a\x3d\xb8\x92\xc6\xfe\x6f\x4c\x4e\xb3\xcc\x95\x9b\x0f\x47\x8f\x8f\xec\x2a\x33\x51\x44\xa8\x55\xa1\xb1\x3f\x18\x35\x5c\x43\xd8\x03\x96\x39\x71\x5b\x31\x12\xc7\x1c\x93\x53\x60\x66\xbb\xf5\x7e\x1d\x74\x01\x39\xa9\xf0\x08\xea\x54\x32\xb7\x69\x68\xe2\x63\xb7\x63\xff\x70\xfb\x01\xce\x80\x83\x37\xc3\x15\xa0\x1f\x5f\x22\x74\xa1\x2a\x30\xec\x03\x97\x18\xaf\x23\xd5\xa9\xf5\x23\xc2\x35\x4a\x84\xdd\x3a\x71\x50\xd5\xa6\x71\x94\x2d\x55\xb6\x2a\x58\x55\x0b\x4a\xd8\x42\x0e\x10\x86\xe1\x62\xb6\x28\xe3\xb5\xaa\x3a\xc4\xd2\x42\x13\xbb\xc7\x3d\x81\x41\x42\x27\x7c\x4b\xc9\x9c\x86\x9d\x4d\x0f\xae\xb6\x5f\xf6\x2d\x90\x72\x8c\x5b\x71\xc5\x8f\x9a\x3a\xb2\x57\x9f\x12\x30\xb4\x24\x02\x84\x3d\x58\x16\xa6\x81\x3e\x7c\x10\xd9\x86\x18\x45\xe7\x73\x9e\x20\xa4\x7c\xfd\xae\x2e\xbb\x3f\x70\xb9\xe7\x16\x85\xc0\x1d\x85\x94\xca\xbc\x08\x9c\x7a\x41\x0b\x2f\x9c\xbb\xb9\x8c\xdc\x16\xc8\x74\x59\x7b\x0e\xce\xd2\x32\x40\x28\xb0\x04\x88\xbc\x03\x9b\xf6\x41\x91\x4a\x4a\xf0\x6d\x94\x20\xb0\xea\x1d\x8a\x65\xa9\x0f\x3c\xd2\x74\x85\x57\x01\x6b\xf6\xb4\x0f\x0a\x35\xae\xbc\x19\x2e\xd8\x32\xe2\x9a\x2a\xd7\x4d\x66\x1b\x5c\xb4\x9f\xb9\x03\xa8\x7e\xdb\x1e\x5e\x3e\xc5\xc7\xae\x0b\xe9\xe0\x5b\xa9\xea\x32\xf4\x51\x23\x0f\xf0\x1f\x28\x3a\xba\x0b\x36\xc2\x57\x79\xc6\x99\xae\xb4\xc5\x10\xd9\xa0\x25\x63\xd7\x81\x81\xa1\x08\x7c\x84\x62\xd1\x08\x13\x1e\xc0\xb7\x57\x0c\x49\xd9\x56\xb4\xb6\xcf\xc6\xed\x1f\x2e\x32\x39\xa3\xd9\xf3\x17\x1d\x66\xb9\x5f\x06\x00\x3f\xc0\x62\xdc\x12\xad\xf6\x2c\x55\x2d\x7a\x00\xb6\xd1\x3e\xa8\xdd\x63\x6d\x98\xea\xa0\xbb\xce\xb2\x63\xb5\xe1\x16\x31\x6c\x4f\xfb\x5e\x9c\x5b\x87\x46\xa1\xb4\x20\xa1\xf1\x3a\x62\xd5\xa7\xba\xb2\x0d\x8c\xa3\x9c\xbb\x97\x51\x54\x30\xd3\x6e\x56\xae\x07\xa1\x30\xa3\x9b\x09\xa3\x15\xe7\xa1\x93\x8a\xee\x76\xb2\x7b\x16\x08\x47\x08\xbc\x02\x54\xa7\x38\x5d\x2c\x49\x5f\x07\xb4\xeb\x74\xb1\x56\xd7\xd1\x4a\x0e\xa2\x6c\xf2\x8d\xed\x7b\xb1\x8c\x62\x7b\x4a\x67\xb3\x1c\x19\xcc\xdb\xd3\x77\xdc\x52\x01\xb8\xfa\x08\x69\xae\xf6\x3b\x13\x7c\xc1\x9b\xa4\xb6\xc4\x2f\xbf\x63\xfb\x48\x07\x7b\xb1\xe7\xf8\xab\x83\xc5\x44\xaa\x3d\x81\x01\x6f\x74\x40\x03\x9e\xe9\x03\x0e\x72\x03\xad\x43\x01\x4b\xb5\x5c\x31\x68\x5b\x2a\x13\x99\x69\xb2\xa4\x6b\xb4\xde\xeb\x23\x0c\x0c\xd9\xe0\x5f\x1d\x84\x56\xb1\xa0\x40\x35\x37\xde\xfc\xa6\xbd\xf5\x10\x46\x77\x12\x95\x23\xe4\x56\x41\xe9\xa4\x8a\xae\x57\x2e\x94\xb9\xbb\x3d\x9b\xf8\x42\xab\x1f\xcf\x27\x8d\x55\x3c\xf1\xd3\xe7\x54\xa9\xd8\x7c\x98\x77\x3c\x33\xea\x76\x14\xec\x3e\xdc\x27\x74\x28\xa7\xc6\x30\x25\x4e\xc8\x7f\x8c\xff\xad\xfd\xc9\x87\xd1\x5d\x19\x43\x31\xe2\xc2\x8c\xa4\x1a\xe1\x0c\x4d\xfd\xc8\xab\x4f\x5f\x84\xdc\x5f\xb8\xbc\xaa\x5e\xea\x40\xcb\x7e\xf2\x95\xc3\x4c\x72\xc3\x02\xe6\x82\x54\xd8\x2a\x18\xba\x98\x99\x8c\x59\x59\x19\x15\x2e\x37\x57\xfb\x98\xa5\xb4\xd4\x8a\x2a\xfd\xce\x2c\xdf\xef\xca\x4e\x0f\xca\x1b\xdb\xc5\x56\xba\x99\x6d\x0f\xb6\xb2\x04\x8d\xd9\xd9\x9d\x9e\x07\x4a\xc8\x8b\x0e\x34\x2c\xed\xfc\x28\x6a\x6a\x5f\xdb\xd8\x2c\x99\x66\x44\x51\xb1\x60\xfa\xd8\x9b\xed\xa0\x06\x72\x6b\xe9\x5d\xfc\xd4\x4a\x72\xb9\xab\x03\x6e\x21\x84\xb2\xf6\x10\x70\x36\x30\x37\x4d\x87\xac\x3c\xc7\x33\x40\x01\xae\x2f\x05\xeb\xa4\x00\xf8\xe8\x5e\x14\xac\x63\xef\x15\x79\xdb\xa2\x60\x53\xa4\x61\x53\x47\xc5\xa6\x48\xc7\xa6\x96\x92\xb5\xca\x3c\x03\x2d\x83\x4f\x2f\x5a\xa6\x1f\xa1\x25\x77\x2b\xc7\xad\x96\xbe\xea\x13\x55\x8e\xc9\x73\xcd\x98\x37\x91\x01\x29\xa3\xab\x3c\x63\x44\x6f\x84\xa1\x0f\xb1\xfa\xab\xe1\x67\x3a\x6d\xd5\xad\x9d\x0c\xd9\xa4\x3b\xb7\x8f\xed\x2d\x63\x81\x6a\x2d\xd5\xae\xca\x6c\xaf\xdb\x95\x34\x0c\xe6\xb6\xd8\xd3\x01\x04\x97\x15\xe3\x9d\x06\x1d\x5c\x01\xc1\x13\x70\x93\xf6\xd1\x67\x2c\x93\xf7\x2f\x8e\xea\x4b\x0e\x80\x8d\x50\x25\xdc\x68\x96\xcd\xbd\xf3\xb9\x03\x0e\x68\x0c\x03\x33\xe7\xed\x92\x11\x73\x2f\x01\xd7\xa0\xba\x92\xff\x0d\x09\x84\x65\x42\x9b\xaa\x64\x79\xc7\xd9\x7d\x10\x7e\xf7\x3e\x74\xab\x32\xbf\xb2\x40\x4b\xc2\xdd\xa0\x69\xc1\x3d\xdf\xcd\x13\xee\x97\x32\x73\x87\x74\x02\x47\x34\x9d\x56\x0c\xf9\x8f\x40\x5d\x7e\xb7\xa4\xfa\xf9\x6a\xf3\x09\x62\x2a\x5f\x00\xdd\x71\x44\xbe\xeb\x3a\xbb\x0a\xfc\xde\x0a\x01\x48\x86\xeb\xc3\x88\x97\x2a\xe1\x26\xb5\xf3\xf6\xc4\x37\x18\x2f\x95\x10\xd8\x01\x54\x1a\x7d\x4a\x33\x96\xc1\x72\xfd\x4a\xd1\x88\xea\xb6\xd4\x1b\x31\x70\xcb\x8d\x3b\xde\xdd\x94\x5d\x45\x53\x23\x91\xea\xd3\xbe\xdf\x72\x4b\x5d\xdb\xe9\xba\xe4\x02\x30\x0f\xd3\xa0\x50\x9c\x72\xa6\x84\x0c\x48\xab\x6b\x0e\x00\xbe\xe2\x72\x27\xdd\x8b\x17\x52\x8c\x5c\x88\x92\xf3\x87\x91\xfb\x25\x53\xcc\xd9\x45\xe6\x52\xad\x58\x68\xa4\x80\x88\x28\x1c\xbd\x87\xd1\x6e\x17\x34\x41\x3d\xa1\x27\x50\xe2\xeb\x91\x94\x7b\xc8\x5e\xf5\x60\xca\x5f\x4e\x06\xdb\x22\xcb\xed\x63\x46\x4c\x9e\x94\xe4\x32\xf5\x29\x6f\xe8\x02\x29\x49\x74\x8f\xb0\xcf\x32\xf0\xb3\x15\xdb\x7a\xe7\x78\x84\x0e\xf9\xe6\xcf\x6e\xfe\xd7\xe7\x83\x9b\x3c\x06\xe4\xdd\x43\x36\x59\x9a\x23\x60\xef\x05\x6d\x12\x84\xda\xde\x2f\xa5\x46\xb3\xa4\xdd\xbe\x13\x01\xad\x00\xdc\x99\x3c\xd1\x47\xb8\x23\x7b\x25\xa5\xf4\x94\x94\x48\x5f\x69\x89\xec\xde\xaf\x4e\x79\xe9\xbf\xef\x49\xd7\x74\xa5\xca\xea\x86\x74\xbf\x6c\x32\xd0\xd0\xc8\xab\xfe\xa9\xdc\x10\xe0\x5d\xb8\x09\xbd\x0a\x95\x2e\xe2\x2a\xff\xb3\x8d\xfd\xbe\x7b\xd0\xd3\xab\xf3\xc3\x1e\x39\x3b\xfb\x59\xb4\xba\x32\x9c\x1c\x14\xf7\xd2\x8f\x1d\x95\x6e\xa3\x17\xfd\xa4\x6e\x7c\x13\x1d\xc4\x25\xbd\x0c\x4a\x60\xfa\x89\x20\xa8\xb4\x0a\x28\xed\xe1\x99\x69\x15\xba\xb7\xd1\xab\xaf\xd4\x1d\x71\x67\x79\xf8\x3d\xd7\x2f\xb6\xc5\x6f\x0c\xa7\xb1\xab\xe9\xb2\x95\x1d\xc3\xaa\xa0\x49\xb9\x5f\xc9\xa1\x06\xed\xd6\x69\xcc\x1e\xde\x49\x19\x16\x52\x02\xa3\x0b\x16\x75\xcf\x96\xbd\x39\x1e\x59\x8f\x42\xd1\xfd\x68\xd7\xa3\xd0\x01\xe6\x2b\x66\xc5\x5f\x6f\xec\x95\x6a\x9b\x77\xe3\xd2\xd1\x94\x62\x01\xe1\x2d\xa1\x1d\xde\x4a\x8b\x4f\xf6\x00\xc3\x3d\xa2\xdd\xa8\x84\x82\x14\x3e\x90\xc0\x05\x76\xb4\x8b\x2c\x7b\xb1\xcd\xfd\xb9\x66\xb9\xcc\x2a\x47\x1a\x5d\xf2\xfd\xd3\xa7\x88\xdf\x5b\xe0\x83\x7f\x22\x22\xd0\x2f\x15\xbc\x61\x6b\x98\x10\xbe\xbb\x3f\xfc\x3e\x5e\xc0\x76\xf7\x83\x54\xd6\xed\x10\x6e\x72\xc6\xe6\xc6\x37\x42\x2c\x79\x08\xdc\x9e\x1e\x46\x1a\x12\x5e\x44\xe8\xc4\x62\xd5\xf3\x43\x5d\xad\xec\x17\xa5\xa0\xdd\xcf\x2c\x8d\x89\xf5\xa7\xc3\x4f\x3d\xc7\xf8\xf6\x76\x52\xf9\xeb\x1b\x83\x18\x2c\x96\xd8\x47\x9b\x97\x5e\xc6\x9b\x7f\x56\xfc\xc2\x8a\x99\xa5\x4c\xf7\xe0\x0c\xef\xf1\x85\xa7\x95\xda\x71\xcb\x48\xd4\x71\xdf\x41\xa8\x9c\x1d\x13\x9b\x3b\xb1\xce\x1a\xa1\x5e\xae\x63\x29\x8e\xe2\x57\xfb\x9c\x8d\x17\x63\xf2\xc3\xc5\xed\x11\x99\x7c\xbc\x3d\x22\xcc\x24\xe3\x17\xe4\x7d\x91\x19\x9e\x77\xf9\x39\x1c\x88\x80\xef\x7f\xb8\x3e\xb4\x6a\xd8\x02\x92\x28\x7f\x5d\x7e\xab\x9c\x9a\xe5\x1e\xe7\x78\x38\xb1\xcf\x7f\x89\x63\xec\x3a\xc1\x6e\x8a\x12\x9e\x20\x2c\x73\x5c\x1e\x15\x6e\xd3\x9f\x45\xdf\xc3\x20\x84\x8d\x17\x27\x64\x44\xd8\x03\x4d\xcc\x09\x39\x9e\x4b\x49\x46\x2e\x48\xec\x84\x1c\xcf\xa8\x22\x57\x1f\x6e\x2f\x4e\x30\x00\x8d\x09\xa3\x36\x64\xd5\x25\x9e\x7f\xb8\x7a\xf7\xef\x8e\x72\x6e\x08\xe3\x60\x80\xa1\x64\x7a\x00\x93\xa0\x15\xd9\xfe\x89\xb3\x78\x5b\xc7\x98\xdc\x76\x6d\x7f\x4d\x33\x9e\xd2\xd2\xd8\x07\x89\x17\xd8\xeb\xcc\xc4\x9a\x9b\x55\x9f\x3e\x38\xb7\x95\x1f\x72\x7b\x3b\xb1\x10\x0e\x18\x00\x15\x08\x78\x0b\xe8\xfe\xbc\xea\xd2\x40\x7c\xec\x8c\x79\x40\x38\x3b\xe2\x5c\xaa\xd5\x89\x07\xfb\xb4\x78\xf9\xf2\xab\xc4\x0e\x0c\xff\x62\x27\xae\x98\x50\x2f\xb3\x17\xa2\x1a\xac\x0a\x86\xb3\x04\x43\x95\x47\x58\x0d\x3d\x72\xf0\xfe\xac\x19\x70\x8c\x8e\x50\x93\x3d\xea\x31\x20\x00\x9e\x56\x8d\x74\x5b\x7f\xca\x41\xfb\x16\x4c\xe8\x41\x90\xba\x87\xe2\xc9\xaa\x27\xcf\xbc\x3c\x7b\x3f\xe9\x1b\x01\x02\xc4\xa8\x79\xed\x21\x95\x0a\xfa\xd3\xd9\xd5\xba\x1c\x4c\xec\xb2\x07\x53\x3a\x05\xc3\x75\x17\x6d\xd1\xaf\x30\x42\x7f\x57\xa6\xe5\xf3\xba\x7f\xaa\xec\x73\x58\x7a\xcd\xed\x3c\x6d\xa2\x2d\xf8\xd3\xed\x43\xeb\x37\x2d\x76\xca\x5e\x98\x98\xb4\x17\x7e\xd9\xe6\xf3\x20\x99\x48\x11\x42\x09\x80\x92\x60\xb7\xcf\x3d\x94\x35\x48\x5a\xb2\x00\xc6\xa8\x7c\x08\x51\x85\x4e\xaa\x21\xac\x9c\xf7\x12\x5c\x93\x86\x25\x4b\xc1\x93\xdd\xa2\x64\xf5\x0f\x98\x45\xd1\xfc\xcf\x57\xb9\x0c\x6a\x65\xdf\x59\xa1\x3c\x3b\xd4\x84\xe7\x06\xf3\xdc\xe6\x5c\xb1\x7b\x9a\x65\x1d\x4b\x45\x6a\xe1\x8c\xb2\x85\xc6\xc0\x29\x26\xe6\x12\xf3\x05\x5c\x88\x5e\xf7\xd5\xe8\xf4\xe1\xc1\x63\x9f\x7f\x18\x76\x98\x31\xc6\x92\xb1\x07\x70\x5c\x75\xb9\xc0\xf0\x0c\xe4\x9c\x7c\x8b\x51\xde\xb0\x43\x18\xeb\x22\x59\x4a\x72\x8d\x4c\xdb\x35\x2b\xcc\xb9\x58\xe8\x76\x1f\x58\xaf\xfd\xf6\x20\x06\x79\x3c\xdd\xa6\x01\x20\x97\x13\x9f\x76\xf3\xd9\x81\x61\x35\xe3\x16\xca\xe3\x21\x94\x27\xde\x33\xd6\x08\x85\x1e\x10\x68\x48\x9c\x68\xd8\xdc\x7b\xf7\x74\x10\xd6\x5b\x96\xb2\x83\x7c\x10\xb5\xaa\x7a\x7d\xc5\x92\x58\xea\x9b\xfb\x2c\xa2\x01\xc6\x08\x6c\x82\xd4\xde\x19\xa0\x6f\xb1\xbd\xea\xd3\x97\x2d\xd5\x3b\x8e\x56\xeb\x71\x09\x3f\xe8\xb5\xbb\x63\x1b\x87\xda\x39\xe5\xae\x94\x5e\xfb\xf4\x56\x65\x25\xec\xc1\x28\x5a\x83\x29\x9d\xc9\xc2\xf4\x60\x24\x4f\xa5\x39\x0a\x69\xec\xed\xeb\x87\x19\x57\xf8\x70\x47\x44\x0f\x3c\xd2\x1e\x59\x37\x30\x8c\x81\x61\xfc\xb6\x19\x86\x90\xc6\x8b\x55\x8d\x60\x69\x8f\xba\xe9\x19\x6f\xd3\x2f\xd2\x66\x27\x20\xd4\x8b\x7c\x1d\x31\xa1\xee\xb1\x66\x80\x75\xdc\xe3\x1e\xa1\x3d\x8f\x0b\xea\xc9\x7f\xad\xc0\x9d\x1e\x84\xb0\x7d\x42\xde\xbf\xe3\xd8\x02\x0b\x6f\x28\x09\x78\x98\x8c\x01\xeb\xb9\x6a\xb3\xcc\xbb\xe8\x5c\x77\xce\x17\x90\x6a\x74\x0d\x99\x72\x3e\xeb\x0b\xcd\xe6\xcf\x67\x2c\xa1\x85\x76\x31\x71\x1d\xae\x84\x72\x89\x09\x53\x30\x46\x19\x57\xf7\x02\x4d\xf1\xef\x5d\xfa\x57\x2d\x4a\xb0\x8b\xc5\x62\xf8\xe0\x49\x18\x01\x77\x14\xc6\xbf\xe1\x1f\xa0\xa9\xd4\xfe\x5a\xbf\xa9\xfe\xbe\x39\xbb\xc5\x5f\x9b\xa7\x71\x23\xbe\xe3\x86\xf9\x20\x3b\x2a\x3c\x82\x78\xa7\x2c\x84\x1a\x92\x57\xa3\xd7\xdf\x7c\xd3\x62\xf2\xff\x72\x68\x8f\x81\x18\xfd\xb8\xf1\x0d\x86\x73\xf6\xcb\x4a\x23\x46\xb6\x28\x90\x38\xd2\x90\x90\x36\x24\xa4\x75\xbb\x3d\x87\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x9a\x76\x3c\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\xd6\xb4\x93\x81\x96\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\xf8\x19\x12\xd2\x86\x84\xb4\xed\xcf\x90\x90\x36\x24\xa4\x95\x9f\x21\x21\x6d\x48\x48\x1b\x12\xd2\xa2\x83\x0e\x09\x69\x01\x2c\x86\x84\xb4\x21\x21\x6d\x48\x48\xab\x7f\x7e\xc9\x84\xb4\x96\xf6\x0a\x84\x8c\x5c\x15\xdf\xd8\x6f\x7d\xda\xf4\x47\xe5\x04\x77\x37\x1e\x51\xbe\xbb\x7e\xab\x86\xfa\xdd\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\x3b\xbe\xbc\xa1\x7e\xf7\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x55\x9f\x21\x5c\xaa\xfa\x0c\xe1\x52\x43\xb8\xd4\xaf\x2a\xc4\x60\x08\x97\x1a\xc2\xa5\x86\x70\xa9\x21\x5c\x2a\xfa\xf0\x6f\x8c\x96\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x35\x84\x4b\x0d\xe1\x52\x43\xb8\xd4\x10\x2e\x15\xf9\x0c\xe1\x52\x43\xb8\x54\xf9\x19\xc2\xa5\x86\x70\xa9\x21\x5c\x2a\x3a\xe8\x10\x2e\x15\xc0\x62\x08\x97\x1a\xc2\xa5\x86\x70\xa9\xfa\x67\xa8\xdf\x3d\xd4\xef\x1e\xea\x77\xd7\x3e\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\xbb\xd7\x0c\x43\xfd\xee\xa1\x7e\xf7\x50\xbf\x7b\x28\xc7\x3a\x94\x63\x1d\xea\x77\x0f\xf5\xbb\x87\xfa\xdd\xcd\xeb\x1f\xea\x77\x0f\x0c\x63\x60\x18\x43\xfd\xee\xa1\x7e\x77\xed\x33\xd4\xef\x1e\xea\x77\x6f\x7d\x86\xfa\xdd\xcd\x0a\xe4\x50\xbf\x7b\x48\x48\x1b\x12\xd2\x86\x84\xb4\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xf0\x33\x24\xa4\x0d\x09\x69\xbf\xaa\x24\x8e\x21\x21\x6d\x48\x48\x1b\x12\xd2\x86\x84\xb4\xe8\xc3\xbf\x31\x5a\x36\x24\xa4\x0d\x09\x69\x43\x42\xda\x90\x90\x36\x24\xa4\x0d\x09\x69\x43\x42\x5a\xe4\x33\x24\xa4\x0d\x09\x69\xe5\x67\x48\x48\x1b\x12\xd2\x86\x84\xb4\xe8\xa0\x43\x42\x5a\x00\x8b\x21\x21\x6d\x48\x48\x1b\x12\xd2\xea\x9f\xff\xde\xf5\xbb\xa1\x28\x77\x57\xf5\xee\x0f\xf6\xa1\x16\xfa\x5d\x3f\x74\x89\x4f\x47\xd7\x89\x61\x77\x58\x37\x19\x0c\x25\x76\x50\xf0\x2c\xa6\x63\xb4\x9d\x94\x96\xdf\x25\x5f\x58\x45\x74\x7a\x00\xe3\x4d\x0f\x80\x5d\xba\x67\x63\x43\xd3\xb9\x55\xa0\x0c\x08\x68\x30\x40\x26\xef\x99\xc2\xd5\x60\x18\x63\xb0\x38\x4d\xe4\x8a\x1b\x63\xe9\x2e\xf7\x19\x30\xb1\x41\x13\x29\x34\xc7\xb2\xe5\x68\xe3\x9b\x1e\x70\x31\xe7\x82\x1b\x36\x3d\x20\x23\x02\xc1\x73\xc1\x76\x3c\x55\x77\xeb\x24\x19\xd5\x66\x4c\xca\x9d\x45\x41\x62\xd7\xca\x53\x26\x0c\x4f\x68\xe6\x16\xb8\x3d\x0e\x17\x84\x66\xf9\x92\x8a\x62\xc5\x54\xf0\x1c\x54\x0c\x8f\x8d\xea\x68\xb9\x33\x47\x61\x84\x48\x54\x3f\x45\xdc\x10\xc5\x6a\xb6\x6b\x29\x6c\x11\x1b\xb7\x98\xfc\x6d\x68\xa6\x41\x44\x09\x8c\x35\x85\x76\x3a\x27\x4f\xee\xf0\x3f\xb2\x88\xe2\xbf\x5d\xf2\x96\xd2\x1d\x00\xd7\xa5\x6b\x04\x60\x31\xd2\xf3\xbc\x66\xd3\x41\xb5\x0e\x2b\x3a\x64\x99\xbc\x47\x52\x80\x16\xa4\xd2\xa6\x82\x82\xdd\x1f\xd1\xbc\x80\xb7\xfd\x53\xc6\x0d\x53\x14\x34\xfb\xd8\xc8\xd3\x29\x19\x61\xba\x92\x45\x94\x55\x4e\x15\xd7\x52\x1c\x11\xc8\x59\xf4\x66\x01\x3f\xe4\x5c\x4a\x32\xa3\x0a\x6c\x15\xe5\x74\xbf\xdb\x73\xba\x6a\x3e\xcb\xd9\xd9\xdf\x0b\x9a\xfd\x01\x23\x6c\xbd\xa4\xca\xe7\x4e\x44\xe5\x1a\x9e\xf1\x96\xf7\x72\xca\xf8\xbd\xfc\x19\xd6\x41\xab\xb8\xb0\x59\xf5\xcf\x04\xff\x39\x1e\x8f\xc9\x3f\x83\x15\x18\x55\x30\x9f\x28\x53\xc6\x9a\xe2\x1c\x7f\x21\xf1\xd8\x76\xe7\x72\xe8\x98\xaa\x5a\xab\xdd\x00\x17\x3d\x16\x17\x9b\x6c\xcf\xf5\xc2\x64\x6d\x0b\x8c\x1f\x49\xb0\xe6\x25\xd5\xcf\x61\xbc\x4f\x96\xb9\xbc\xa8\xa6\xbe\x2d\x67\xa6\xa6\x3a\x9d\xe0\x64\x7e\x07\x48\x1a\xa5\xf9\x6e\x88\xd2\x3c\x29\xe7\xf0\x2c\x58\xa7\xe0\xff\xc5\xcb\x97\xaf\xdf\xe0\x7f\xf1\x97\xf2\x9d\x9b\xa5\x54\x66\x94\x70\x95\x14\xdc\x80\x54\xe5\x5e\x8a\x4d\xf4\x5f\xff\xd5\xfa\x36\xf8\x31\xcc\x73\x7c\xe6\x45\xf9\x50\x4e\x15\x73\x12\xf9\x42\xc9\x22\xb7\x12\xf9\x74\x6a\x68\x96\x3d\x8f\xfa\xa3\x5c\x49\x7b\x8c\x4a\x29\xe9\x85\x1f\xcd\xe3\x30\xcd\xb2\xc0\xc4\x04\x17\xf4\x1d\xe2\x03\xea\x50\x71\xf5\x88\xda\xab\x8d\x74\xc6\x47\x6a\x86\x24\x53\x1f\x91\xd1\x11\xf9\x04\x70\x38\x1e\x93\x1b\xb8\x72\xc4\x5d\xb9\xc6\x41\x57\x52\x31\x92\x5b\xf1\x5f\x6b\xbe\x66\x64\x86\x39\x06\x1b\x6f\xde\x74\x86\x67\xc2\x74\x42\x73\x46\x92\x25\x55\x34\x31\x4c\xb9\x65\x5f\x60\xa8\x76\xf4\x32\x3c\x07\xc2\xbf\xa2\x29\x1b\x15\x39\xa2\x85\x7e\x51\x92\x23\x48\x6c\x73\xa4\xe3\x9e\xcd\xac\xe2\xc0\x1c\xf1\x08\x4f\x3c\x65\x79\x26\x37\x2b\x26\xa2\xe4\xd4\xbd\x9f\x2b\x99\x7a\x24\x85\x71\xed\x9d\x02\x9a\xa4\xa4\x30\x4c\xa4\x01\xaa\xd3\xe4\xce\x7d\xf1\x4f\xfb\x78\x35\x3e\xf9\xdd\x1f\x9b\x6e\x40\xca\xd6\x7e\xf8\xdf\x91\xad\x5b\x10\x23\x65\x6d\x12\x55\xdd\x18\xd8\xe2\xae\x6e\xb1\x04\xb6\xdb\x2d\xe6\x18\xbf\x5a\xb1\x85\xd8\xb6\x3c\xc7\x42\x1c\x75\x06\x05\x6c\xcf\x21\x85\x5f\xa4\xb7\x15\xc4\xdc\xce\x6d\x7b\x04\xa7\x43\x0f\x9e\x0a\xbe\x09\x2e\x52\x9e\x80\xea\x79\xbf\x84\x84\xe9\x50\x90\x0d\xa3\xb2\x9c\x96\x13\xa5\x53\xf6\xde\x49\xd7\xc0\xe3\xc8\xfd\x35\x93\x66\x39\x26\x18\x28\x09\xdc\xe4\x21\xb7\x42\x8a\xc9\x36\x81\x2e\xf5\x1c\x9a\x8f\x44\x23\x60\x03\x3a\x2a\x48\xa2\x98\xcb\xcf\xd0\xee\x76\x4b\x45\x04\xcf\x5e\x1c\xf9\x1c\x8b\x94\xcd\x69\x91\x19\x4d\x70\x5b\x16\x74\x2a\x6d\x10\xa9\x8d\x24\xf7\x96\x56\x5e\x3a\xc5\xcd\x2e\xe2\xc2\xfd\xd3\xde\x47\x47\x39\xcb\x0e\x1c\x18\xef\x07\xa6\x75\x37\x4d\x6c\x54\xae\xf1\x76\x8d\xc8\x5f\x9d\x5c\x64\x97\xe2\xe7\xf8\xdb\x91\x63\x0e\x56\xca\x04\xb7\x81\x9f\x12\xfb\xa4\x3c\xe7\x22\xc9\x8a\xc6\x15\x2f\x19\x49\xa8\x95\x3c\x61\x80\x6a\x18\x82\xec\x59\xc8\x72\x33\x30\xdc\x8b\xc8\x4a\x2e\x1a\xfb\xaf\x6c\xaf\xad\xb6\x30\x4b\x92\xb6\x87\x6f\xde\x67\x14\x3d\xb6\xd7\xb0\x33\x21\x58\xb0\x22\xa7\xe1\x34\xea\x28\x5d\x10\x88\x5a\x75\x59\x5f\x31\x6a\xef\x51\x72\x47\xe8\x82\x72\x71\xe4\xb0\x01\xdd\x1e\xd9\x3d\xdd\x68\x17\x05\x1f\xc5\x62\x1f\xad\x80\x61\x0a\x47\x44\xb0\x35\x53\x35\x7c\x8b\x6a\xf7\x3d\xdb\xfb\x54\x50\x20\x0c\x98\x46\xe9\xd0\xcb\xa5\xd6\x7c\x96\xf9\x89\xab\x38\x2c\xfb\xc2\x4d\xce\x92\xb8\xbe\x87\x7b\x6b\x8e\x4c\x6b\xd7\x2c\x1b\x95\xb6\xb8\xae\xb7\xfb\x2d\xf0\x8c\x34\xf4\xb7\x6b\x23\x15\x5d\x30\xff\x95\x36\xd4\x14\x08\x18\x74\x39\xb1\xf4\x2a\x70\x06\xdc\x71\x91\x5a\x3a\xe4\x41\x9a\x67\x85\xa2\x59\xf5\x4d\x22\x05\x7a\x80\xf5\x09\xf9\xeb\xdf\xec\x37\x76\x7c\x96\xba\x0c\x4f\xf7\xed\x54\x8c\x46\xa3\xa9\xa0\x39\xf7\x89\xa2\x84\xe6\x9c\x3d\x18\x26\xe0\xa9\xf1\xdd\xb7\x7a\xcc\xe5\xf1\xfa\xd5\x54\xe0\x8c\x67\x85\x36\x72\x75\xcd\xd0\x95\x75\xce\x40\xdd\x02\x3a\x5d\x4b\xc7\x04\x03\x0c\x11\x18\xf2\xaa\x99\xd1\xe3\x44\xa5\xe3\x5c\x49\x0b\x81\x04\x88\xce\x58\xaa\xc5\x54\x58\x6a\x06\x6f\x80\x88\x72\x42\x1a\x1e\xab\x7b\x42\x70\x29\x55\x5c\x2e\x7e\x9b\x71\x6d\xfe\xbc\xf5\xcb\x3b\xae\x4d\x1d\x40\xc1\x9a\x1c\xdc\xb9\x58\x14\x19\x55\xe1\x4f\x00\xaf\x44\xda\x43\x2b\xad\x27\xa0\xc9\xad\x3d\xf8\xec\x1f\x23\xb7\x4d\x0b\x1d\x18\x29\x59\xb2\x55\x95\x8e\x2a\x73\x26\x4e\x27\x97\x3f\x7e\x75\x53\xff\x7e\x37\xf0\xd5\x87\x17\xbb\x10\xae\x6a\xca\x11\xfb\x7b\xc1\xd7\x34\xb3\x04\xd5\xe1\xf5\x76\x4c\x72\x80\xbc\x0d\xe6\xb1\xe0\x74\xeb\xb8\x5a\xaf\x5a\x61\x97\xea\xa2\x03\x30\x9a\x1e\x17\xe3\x76\xcc\x52\xb7\x3d\x5c\x07\x50\x0b\x47\xea\x69\xcc\xee\x21\xe7\xc0\xdd\x01\xe3\xc7\x20\x02\x30\xa5\xbd\x92\x98\x48\xb1\x66\xca\x10\xc5\x12\xb9\x10\xfc\x1f\xe5\xe0\xda\xc7\x2b\x40\xf7\xae\x1d\x46\xc1\x85\x61\xca\x0a\x0b\x70\xd5\xd1\x2a\xbb\xa2\x1b\xa2\x98\x9d\x86\x14\x22\x18\xd0\x47\x4b\xbd\xb7\x42\x22\x17\x73\x79\x02\xf5\x84\xf4\xc9\xf1\xf1\x82\x1b\x8f\xd8\x89\x5c\xad\x0a\xc1\xcd\xe6\x18\x3c\xa8\x7c\x56\x18\xa9\xf4\x71\xca\xd6\x2c\x3b\xd6\x7c\x31\xa2\x2a\x59\x72\xc3\x12\x53\x28\x76\x4c\x73\x3e\x82\xb5\x0b\xb8\x59\xe3\x55\xfa\x4c\xb9\x9b\xa0\x0f\x63\x74\x60\x97\x7c\x00\xea\xb6\x1d\x83\xc5\x60\x97\x84\x8b\x52\x30\xb2\xf1\x12\xda\x3e\x54\xe4\xfa\xe2\xe6\x96\xf8\xd9\xa3\x09\xcb\x08\xfc\xea\x4d\x5d\x9d\x83\x05\x1a\x17\x73\x2f\xaf\x80\xd1\x3a\x54\xef\x91\x65\x66\x3c\x22\xba\xea\x62\xb6\xe2\x46\x07\x85\x68\xe4\x98\x9c\x95\xd6\xec\x22\x4f\xa9\x61\xe9\x98\x5c\x0a\x72\x46\x57\x2c\x3b\xa3\x9a\x7d\xf1\x53\x00\xa1\x6d\x64\x61\xdb\xf7\x1c\x1a\x92\xc7\x9b\x4c\x75\x25\x99\x6a\x38\xb6\xea\x3e\x5a\x8e\x53\xcf\x5e\xf2\xc9\x6e\x55\x7a\x39\xdd\xa1\x5d\xd5\xc7\x1f\xe9\x16\x53\x6a\x31\x7d\x37\xc4\xd9\xef\xb4\xf8\xf3\xa1\x80\x97\x93\x92\xd2\xa1\xd6\x3b\x63\x99\xb4\x58\x25\x9d\xed\x85\xc5\x1c\xa6\xcd\x7c\xfa\x7f\x04\xa7\x04\x3e\x09\xff\x79\xe6\x52\xd4\x4e\x08\x32\xa8\x63\xc3\x56\x39\xd0\xab\x63\xfc\x02\xa2\xeb\xaa\x88\x0c\xa5\x47\x6a\x46\x93\xf1\x86\xae\xb2\xa9\xf8\xf9\x67\x3e\x27\xec\xef\x64\x7c\xfd\xfd\xe9\xd9\x99\x14\x73\xbe\x20\xd3\x03\xfb\xc0\xf4\xe0\x9f\xff\xb4\xa3\x5f\x82\x28\xcb\x08\x25\x49\x56\x68\xc3\x94\x92\x19\x2b\x1b\xce\x6d\x8f\x0d\xb6\x2d\x29\x98\x30\x47\xf6\x65\x68\x59\x07\x14\xc4\x78\x52\xda\xb0\x28\xaf\x27\x55\xe1\x0a\x8e\xc1\xe3\xa4\xd7\x32\x63\x75\xc1\x00\x36\x41\x0b\xb3\x94\x8a\xff\x03\x43\xb5\x02\xe9\x20\xc2\xfd\x1b\x26\x9e\x0a\x10\x4c\xe1\xc1\x67\xe4\x4a\xa6\x68\x35\x20\xf7\x2e\x22\xcb\x48\xb2\x92\x82\x43\xe4\xb1\x54\x24\x65\x19\xc3\x7b\x8e\x2c\x97\xe6\xfc\x07\x2b\x2a\xd8\x73\xb1\x47\xf8\x37\x3c\xd5\x92\x0e\x97\x28\x3a\x22\xc2\x8e\x8d\x7f\xae\x99\x9a\x85\x3f\xdd\x87\xde\x89\x11\x5c\x8d\xea\xaf\x05\xde\xca\x67\x64\xe2\x2b\x94\x05\x6b\xab\x0a\x47\xb1\x07\xae\x0d\xf4\x73\xa4\x9a\xe4\x54\xb9\xcb\x75\xfa\x9e\x54\xbb\xdd\x7f\xd1\xb9\x4c\x1b\xd6\xbc\x60\xa6\x69\xc5\xe5\x76\x9e\xe1\x02\xca\x81\x5d\xfe\x9a\xe0\x39\x34\xc4\x4c\xad\x0a\x24\x10\x30\x2e\x6f\x2e\x63\xc6\x79\xaa\xb7\x97\x19\x17\xc5\xda\xd6\xce\xf3\x5c\xca\x4c\x87\x5f\x58\xd6\xa3\xd6\x58\x5b\x22\xbe\x2d\xbf\x93\xcf\x9f\x7e\x96\xc9\xe4\x8e\xce\x51\x24\x65\xb5\x65\xd0\x15\xfc\xb8\xf5\xdd\x92\x8a\x34\x6b\x42\x91\x16\x70\x83\x42\xcd\xaa\xbf\x91\xe9\x55\x7f\x23\x54\xa3\xc7\xb3\x73\x0d\x57\x54\xd0\x05\xd3\x64\x29\xb5\x09\x42\xb7\x9e\x04\x20\xb5\x31\xbf\xe0\x2e\x9f\x91\x2b\xc6\x52\xb0\x1b\x58\xc5\xd3\x48\xf7\xac\xa7\x60\x41\x29\x90\xa7\xda\x5a\x64\xe4\x1e\x1b\x6c\xde\xd2\x33\x70\xf2\x9e\x55\x07\x83\xb4\xb9\x50\xa5\xe5\x04\x8d\x07\xdc\xd8\x11\x35\xb1\x22\x50\x02\x8f\x3c\xcd\x7e\x2c\x5e\x04\x68\x91\x84\xb3\x47\x77\xf6\x0c\xd5\x75\xbb\x0e\x79\x2f\x82\xb5\xec\x6c\xfb\x99\xdb\x36\xa1\xde\x00\x43\xf8\x9c\x08\x29\x18\x92\x30\xdd\x04\x9f\x67\xfe\x18\x91\xc3\x36\x61\xc2\x33\xc4\x6f\xa0\x89\xc9\xb2\x96\x44\x50\xa2\x3e\x70\xce\x1d\x06\xf3\x3d\x17\x68\xb3\xf9\x42\x7c\x46\x66\xec\x9a\x61\x40\xbe\x3f\x9f\x96\xf1\xed\x63\x11\x1e\xd8\x39\x8d\x2e\x40\x5a\xb1\x47\x33\x72\x03\xd4\x4d\x9e\x3d\xc6\x08\x9d\xfb\x48\x23\xf4\x46\x1b\xb6\x72\x90\x2b\x45\x8f\x6b\x2a\x92\x25\x53\x23\x2f\x53\x9e\x90\x33\x80\x78\xc8\xe9\x2d\x75\x0f\xb7\x80\x81\x0c\x96\x75\xa1\xb1\x0f\x9a\x0a\xd3\xe4\xee\x9e\xaa\x14\xe5\x07\x6a\xf8\x8c\x67\xdc\x6c\xfa\x48\x37\x76\xf8\x50\xa2\xe9\x92\x58\xc2\x55\x9d\x53\xb6\x92\xe2\x86\x75\x09\x2b\xf0\xf0\x2f\x24\xa0\xd4\xe5\x11\x2b\x28\x9f\x5d\x5d\x5a\x29\x71\xc1\x05\x11\x40\xd7\x8c\xb4\xf7\x09\x58\xf3\x11\x32\x4f\xd4\x3d\xc3\x84\xd9\xc7\xf3\xf9\x2d\x51\xc5\xdb\x15\x70\xe0\x56\xa2\xf6\x8c\xf8\x4c\xe4\x9b\x8c\x7b\x6e\x0f\xd6\xf1\x79\x15\xc5\xe3\x1a\x57\x3b\x91\xdf\x9b\xfb\x7c\x1d\xa6\x67\xbe\xae\xce\xca\x87\xd2\x6f\xef\x22\xe5\x3a\x91\x6b\xa6\x36\xfe\x9a\xb4\xed\xaa\xe4\x36\xb0\x9e\x16\xd9\x8b\x74\x0b\x00\xfd\x26\xaa\xbe\xf2\xf1\x6f\x71\x6a\xf9\xd1\x39\x0d\xfc\x76\x4a\x3f\xc1\xe5\x04\x7d\x64\x34\x5d\x5b\x05\x4b\x57\x90\x20\x5d\xa2\x62\x64\xd4\xdb\x4d\xbe\xa4\x7a\x1c\x17\x26\xc9\xd9\xe5\xf9\x35\xa1\x85\x91\xa3\x94\x59\x75\x16\x9c\x86\x02\x2e\x3c\x4d\x57\x0e\xdb\x2a\x2e\x8a\x44\x9d\xac\x68\xfe\x08\x04\xc3\x97\xed\xbb\xad\x38\xb4\xbf\x44\x7d\x1c\xb2\x83\x6d\x30\x5b\x41\xc0\xe1\x5f\x92\x31\x0a\x16\x0c\x2b\xe3\x3b\x85\xf7\xa3\xa0\x6b\xca\x33\x3a\xb3\x04\x22\xa3\x8b\x00\x50\x79\x08\xe7\x67\xde\x33\x01\xba\x98\xc6\xf4\xb2\xa4\xce\x92\x83\xfa\x62\x1c\x65\xda\xb0\xb0\xda\x38\xce\xe5\x7f\xda\x66\x55\x16\xce\x41\x9c\x62\x98\xa5\xcf\x1b\xee\xb5\xbb\x4a\x5c\x2c\xfa\x5c\x09\xf7\x74\x5e\x8b\x32\xe9\xa9\x8f\x38\x04\x9b\x6d\x3c\x38\xec\xc2\xbd\xc1\xbe\xda\xff\x67\x53\x9f\x2d\x72\x13\xdc\x26\xef\x45\x6b\x97\xdd\xc9\xb6\x98\xbb\x45\x46\x73\x9f\xff\x21\x53\x8f\x3e\x8f\x5b\x73\x0b\xee\x05\x18\x54\x62\x8f\x53\x24\x35\x59\x53\xc5\x65\xa1\xc9\xd9\xf5\x39\xde\x76\xc4\xa5\x27\x12\x46\xb1\x68\xc5\x9c\x65\xfc\x01\xc7\x0d\xe0\x18\x7c\x5b\x17\xe7\x40\x63\x59\xe4\x39\x63\x4a\x6f\x0f\x35\x5b\xe4\x3b\x03\x95\xdf\xed\x0e\xd3\x4b\xef\x6a\x52\x84\x70\xc6\x28\x96\xee\xfc\xac\x59\x48\x70\x1b\xdf\x89\x3e\xdd\x28\xb1\x37\x68\x2a\xad\x1a\x1d\x1e\x0c\x90\x23\x40\x88\x47\x28\x71\xf7\xbb\xd8\x52\x68\x53\xca\xca\x22\x2d\xa5\x5f\x4b\x7b\x00\x71\xa4\xb0\xa2\xb0\x32\x45\xfe\xa5\x14\xe6\x56\x6c\xe9\xad\xf3\xb4\xa9\x39\xe1\x5e\xb7\x37\x18\xd9\x15\x69\xdc\x16\x69\xe3\x3d\x3d\x8f\x27\xb2\xb0\x7e\x04\xdf\x45\xd0\xd9\x19\x9e\xd4\x2e\xd4\x0f\x5f\x6e\xc1\xd1\xe9\x23\x4f\xa4\x40\xc1\x0b\x82\x9d\x7d\x90\x28\x10\x99\x22\x5f\x28\x9a\xba\xd4\xbd\xf5\xeb\xf1\x1b\x14\x1b\x13\x2c\xf2\xf3\x8c\xcc\x18\x51\x6c\x25\xd7\x2c\x75\x01\x92\xfe\x05\xa9\xec\x0e\xe7\x8a\xe9\x25\xe1\x42\x1b\x9a\x65\x4f\xaa\x3d\xb7\xd0\x92\x3a\x49\xea\x8b\x59\xa5\x82\xf2\x36\xa3\x42\xb0\xac\x2e\xa5\x3f\x23\x93\x02\x72\xd3\x00\x10\x81\x03\x60\x59\xcc\xc6\x89\x5c\x1d\x27\x52\x31\xa9\x8f\xe7\xf8\xf2\xf1\x2c\x93\xb3\xe3\x15\xb5\x03\x1c\x9f\xcb\xa4\x58\x79\x2f\xd3\x31\xa8\x46\xee\x31\xa7\x84\x58\x1d\xe4\xa9\x35\x03\x37\x43\xa8\x1a\x3c\xad\x11\xef\xa9\xf0\xb5\x01\x45\x9f\x54\xa8\x2b\x19\xab\x3b\x62\xab\xb5\x63\xea\xe2\xee\x59\x57\x7a\x9c\xa0\xd9\x96\x1a\x1c\xd3\xe0\x9e\xca\x02\x20\x68\x36\xaa\x0e\xed\x49\xf5\xfe\x72\xd8\xbd\xf4\x7c\x81\x65\x53\x5b\xb5\xfa\x5f\x40\x9d\xef\x0f\xd6\xe6\xa3\x69\x04\x78\xa9\x3f\x7f\x01\x3b\xcb\xd3\x82\xfb\xe7\x9f\x99\x48\xff\xf9\xcf\xde\x1e\x1c\xe0\x2b\xde\xbc\x01\xf5\x36\x56\x54\xf0\x39\xd3\xc6\x93\x63\x1d\xa0\xb9\xf3\xf6\x31\x75\x44\xa8\x26\xf7\x2c\x83\xd7\x5c\x7e\x6f\x25\x05\x63\x70\x8e\xd7\xc3\x9d\x6e\x27\x85\x7d\x16\x12\x86\x90\xe0\xc1\x43\xf6\x09\xa6\x50\xa7\xe1\xa2\x96\x81\xe2\xa5\x80\xf2\x36\x95\x36\x95\xed\x38\x8e\x5c\xb7\xde\x97\x36\x78\x11\x17\xf2\xe8\x5d\x68\xdf\xea\x11\xcd\xf3\xf2\xc5\xd2\x1b\xba\x15\x83\x0e\x31\xa2\xef\xc2\x37\x77\xdf\x25\x8e\x67\xdc\x18\x45\x0d\x5b\x6c\x4e\x9c\x4f\x6c\xfc\xb1\xf6\xb5\x3d\xac\x9f\x7f\x26\x46\xfe\x3b\x5d\x65\xdb\x3f\x92\xff\x22\x5c\xa4\x4c\x18\xf2\x35\x3e\xc7\x32\xcd\xec\xbf\x48\xe9\x41\xbc\x96\x59\xc6\xc5\xe2\x63\x60\xa9\x54\xe1\x57\xe5\xfa\x56\xf4\x21\x50\x4a\x4f\xc8\xab\x00\x5b\x08\xf1\x98\xe1\x37\xb8\xed\x35\xce\xea\x9b\x8d\x6d\x77\xcb\x79\x6c\xcf\x34\x12\x39\x59\x55\xe4\xb0\x17\x52\xea\x13\x92\x71\x51\x3c\xf8\x07\xac\x7c\xec\x54\x53\xef\xf6\x44\xa8\x5d\x05\xc3\x79\x08\x34\x4c\xf2\xf3\xcf\xae\x10\xe8\xff\xba\x3b\x22\xff\x6b\x4d\x4e\xfe\x58\x7f\x9d\x54\xef\xc3\xc3\xff\xeb\x8e\xfc\xf3\x9f\x27\x64\x7a\x60\xff\xbd\xb6\xbf\x1e\x04\x43\x31\x91\x12\x07\x7c\x0f\x2c\x80\xbe\xcc\x98\xda\x29\x6d\xfe\x8c\xbc\xa7\x77\x8c\xe8\x42\xf9\x3b\x03\x46\x74\x9d\x2c\x59\x5a\x64\x18\xb7\x49\xb3\x0c\x59\x51\xe0\x7c\x1e\xb9\x6c\xfc\x13\x72\x25\x6f\xdc\xc3\xd5\xaf\x10\x62\xa3\xa8\xdd\x23\xb9\xa8\x59\xb2\x71\x46\x75\xe7\x02\xc4\x52\x4c\x33\x4d\x14\xc7\x34\x0e\x9a\xa6\x23\xe7\x8a\x57\xcc\x2d\xc2\x6a\xf3\xe1\xc4\x77\x6c\x73\x42\xce\xdc\x1b\xa7\x69\x2a\x85\xfe\xb0\x95\x00\xd8\x3c\x7b\xb8\xee\x8b\x07\x96\x14\xa6\xd7\xb2\xbb\x9c\xc3\xf8\x54\x3d\x0a\xf7\xaa\x7e\xa3\x71\x98\xda\x91\x3c\x23\xef\xb9\xe0\x2b\xfe\x0f\x46\x52\x79\x2f\x0c\x5f\x31\x92\x16\x60\x99\xa1\xfe\x52\x84\x92\xa7\xf7\xb8\xfe\x81\x18\x96\x65\x21\xe9\x31\x92\xa4\x12\xda\xef\x80\xc9\xb0\x9a\xc0\xbf\x32\x3d\xa8\xe2\x3b\xea\x18\x9d\xca\x44\x1f\x27\x52\x24\x2c\x37\xfa\xd8\x17\x29\xd4\xc7\xa0\xd4\xe7\x32\x3d\x7e\xe6\xf3\x38\xb9\x14\x23\x39\x1f\xd9\x1f\xca\x03\x09\x7e\xfb\x41\xd1\x84\x4d\x98\xe2\x32\xbd\x61\x89\x14\xa9\x3e\x21\x2f\xab\x95\x38\x8e\x5a\x55\x18\x46\x33\x8f\x7f\x20\x57\x5c\x2a\x6e\x36\x67\x19\xd5\x1a\x41\xf7\xf3\xcf\x64\x7c\x46\xa1\xc6\xfe\xd6\x6f\xe4\xbf\x4a\x87\xc9\xf4\x00\x49\x23\x5a\xbf\x3d\x22\x4d\x0f\x82\x3b\x63\x75\xd4\x33\xcf\x09\xea\xc8\x0f\x1c\xa4\xe4\x12\x75\x16\x62\xf9\xc3\x8c\x0b\xaa\x6a\x19\x48\x68\x1c\xb7\xbf\x6d\xf1\x8b\x39\xcf\x20\xa6\x17\x38\x46\xa9\xfe\x78\xac\x43\xf2\xee\xc6\x1f\x25\x82\x87\x58\xc7\x57\x10\x34\xf1\xf3\xcf\xe3\xb3\xab\xcb\x4b\xfb\x47\x78\xe1\x21\x4b\x66\x45\x2d\x47\xf9\xeb\xf4\xe0\x58\xe6\xe6\x38\x11\xfc\x78\xc6\xc5\xb1\x1b\xaf\x14\x22\xf1\xc3\xc4\xfa\xad\x92\xab\x5a\x48\x88\xb7\x3a\xbe\xa7\xb9\x17\x08\xc2\xcf\x33\x72\x0a\x29\x3e\x7f\xfe\xf8\xfd\xc5\xf5\xd5\xc5\xed\xc5\xcd\xa7\x9b\x8b\xeb\x1f\x2f\xcf\x2e\x3e\xfd\xe9\xc3\xcd\x2d\xec\x39\xf2\xdb\xe4\xc3\xf5\xad\xcb\xf0\x92\x6b\xa6\x14\x4f\x53\x86\xb7\x97\x7d\x3f\x79\x4b\x56\x75\x28\xe0\x07\x21\x11\xd4\x39\xf2\xd6\xe1\x91\x37\x33\x6c\xbf\xe1\x23\xd1\x77\x6b\x20\x31\xb1\xde\xda\xca\x33\xcc\x17\x75\x21\x79\xf6\x98\xc2\xe3\xb1\xb2\x19\xe8\x49\x5b\xab\xf2\xe7\x73\x76\x75\xf9\xe9\xec\xc3\xd5\xdb\x4f\x57\xa7\xef\x2f\xb6\x97\x01\xe1\x5e\x96\xea\xbe\x7a\x39\x82\x5b\x3d\xb6\x43\x83\x9c\x7f\xb0\xbd\x08\x6f\x65\xdb\xc2\x11\x88\x37\x87\x23\x6b\xc2\x94\xed\xd5\x5c\x5d\xdc\xfe\xf4\xe1\xfa\xcf\xb0\xaa\xcb\x1f\xa2\x4b\xda\x39\x6b\x8f\x34\xee\xbc\xff\xcc\x36\xb1\x23\xaf\xce\xc2\xc9\x8c\x35\x3f\x65\xf8\x01\x82\x9b\x08\xfe\xc9\xed\xe6\x53\xec\xd1\x67\xe4\x86\x61\x74\x9a\xe5\x88\x20\x09\x97\x81\xff\x10\x1e\xf3\xad\x46\xa9\xc9\xfe\xd4\xb0\xe1\x00\xc3\xae\x3e\x9c\x5f\x34\x9f\x42\xc3\x96\x21\x66\xb8\x69\xaf\xf0\xe3\x84\x9a\xe5\x09\x90\xa0\xb1\x5d\x0c\xa4\xf7\x6d\x6d\xc3\x1e\xdb\xfb\xdb\x8f\xc4\x51\xf9\x35\x55\xdc\xca\x1f\xcd\x47\xf4\xfe\xf6\xe3\xbf\xf0\x5c\xd6\xcc\x2c\x3f\xad\x4c\xb1\xbd\x8d\x89\x62\x6b\x26\x5c\x93\xa8\x8a\xc2\x81\x9e\xaf\x33\xc6\x20\xe9\x68\x2e\xed\x53\xdb\xcd\xe4\xfc\xe6\x6e\xde\x5d\x5c\xec\x74\x64\x2c\x6f\xc1\x9c\x66\x9a\xd5\x31\x7f\x2d\xb3\x62\xc5\xde\xc7\xea\xd1\x8c\xc8\xca\x7e\x8d\xf0\x3f\xb6\x28\x12\x12\xb2\x38\x8d\x48\x04\x1f\xcd\xb8\x18\xa5\x5c\x75\x0e\xc6\x4c\x02\x83\x09\x66\xc6\x3b\x99\x9d\xd5\x70\x82\x99\xed\xe1\x34\x4b\x0a\x60\x2e\x52\x18\xf6\xb0\xdd\xb5\x2c\x57\x7c\xcd\x33\xb6\xa8\xc7\xb9\x21\x88\x4f\xd3\xd4\x0a\x2f\x6f\x33\xf6\x40\x7e\x84\xad\x93\x73\xc5\xd7\x10\xbb\x49\xbd\xbd\xd2\x3e\x91\x33\x65\xb9\x26\xf9\x28\xf8\x03\x39\x97\x2b\xca\x05\xb9\x91\xc9\x1d\x16\xbe\x83\x0c\x2c\x72\xce\xef\xac\x96\x51\xe3\x34\xe0\x68\x82\x00\xcc\x84\x1a\x97\x9e\xfb\x96\x65\xfc\x01\xa8\x6d\x98\xa9\x7a\xb3\x11\x09\x39\x9d\x5c\x46\x78\xce\x3c\x63\x0f\x6b\x99\x8d\x52\x58\x5a\x9c\xed\xd8\x2d\xfc\x28\xb3\xcb\xd5\xa2\xce\x78\x1a\x0f\x34\x3e\xf8\xc8\x1e\x45\x1d\x7e\x3b\x07\xb5\xbb\x8c\xc7\x1f\x00\x76\x44\x11\xdc\x04\x08\xbe\xc2\xa2\x46\x58\x5a\x2d\x61\x5a\x53\xb5\x01\xe2\x8f\x62\x82\x06\x57\x5e\x55\xf2\xdb\xb2\x29\x68\x3e\x94\x67\x54\xd4\x06\x87\x1c\xe5\x59\x3e\x27\xd4\x90\x63\xbd\xd1\xc7\x73\x7d\x0c\x7f\x8a\x94\x24\x10\x13\xff\x1a\x7e\x52\x85\x70\xca\xe9\x31\x7e\x3d\xf6\xa5\x9f\x9c\x92\xc8\x0d\xa7\x19\xd7\x55\xa2\x0f\x8a\x9d\x69\x6d\x32\x41\x66\x56\x87\x65\xf3\xb9\x54\x86\xcc\xa9\x5e\x72\x29\x8e\x70\x11\x42\x92\x39\xe5\x99\x15\xd1\x81\xb5\x2a\x25\x95\x3e\xb2\xd8\x21\xa4\x21\x29\xd7\xaa\xc8\xc1\x07\x1e\xe4\x13\x09\xdf\xda\x65\x9b\x09\xfb\x93\x9b\x1e\x00\xa4\x46\xb3\x7c\x3e\xd7\xf5\x6b\x5c\xe1\x85\x55\x42\x3a\xe4\x91\x40\x2f\x87\x6c\xb8\x83\x91\xdd\xb1\xfb\xa7\xdd\xd3\x08\xf7\xb4\x25\xa3\xf4\x26\x15\x08\xf9\xf8\x8d\xd6\x1b\x3d\xda\xfd\xed\x19\xf9\x9e\xa7\x5c\xa1\x13\x97\x66\x98\x3f\xe3\x6c\xbf\xd0\xad\x06\x94\x9d\x32\x4b\x5a\xb0\x7b\x9c\x90\xdc\x33\xb2\xb2\xca\xd0\xd6\x81\xe7\x4a\xe6\xd4\x95\xa9\x93\x25\x87\xdb\x9d\x55\x4b\x1c\x94\x1b\x22\x0b\x93\xf1\xb5\x8b\xd3\xaf\x23\xe8\x8e\x3c\x84\x9b\x75\x73\x80\x81\xa0\xb6\xfc\x36\xd8\xac\xa9\x0a\xd0\x2f\x0e\xa3\x35\x55\x23\x55\x88\x51\xfc\x99\x27\x81\xd5\xce\x0d\xf8\x55\x81\xec\x19\x01\x2c\x23\xc7\xb9\x92\xc9\xb1\x33\x74\x4b\x6d\x5c\x51\x85\x42\x17\x34\xcb\x36\x2e\xe9\x11\x26\xce\x95\x5c\x28\xba\x82\xbd\x59\xbc\xb6\x2f\x8e\xc9\xa5\x39\x0c\x89\x07\xac\x41\x68\xd4\x10\x36\x47\xdb\x73\xfa\x4b\x6e\x1f\x0d\xae\xc8\x11\x06\xd1\xda\xf5\x28\x29\x4d\x49\x48\xe6\xba\x01\x92\x96\x3f\x18\x63\x05\xc5\xb3\xdb\x77\xdf\xfb\xa5\x59\x9d\x45\xd9\xfd\x66\xdb\xed\x33\xea\x08\xe2\x57\x1f\x47\x8d\xa6\x5f\x15\xa3\xa9\xd5\xa8\x77\xe5\xed\xc7\x91\xea\x24\xae\x7b\x5d\x17\x42\x6f\xdb\xe9\x4a\xb1\x38\xd0\x6d\x41\x42\xde\x6a\x49\xf9\x2c\x78\xa5\x84\xc9\x56\x20\x8d\x25\xd4\x4a\x16\x06\xab\xd9\xd8\x51\xc3\xf7\x2d\x0a\x44\xc8\x62\x48\xce\xf6\x21\x89\xff\xb3\x75\xae\x8f\x9a\x85\x27\x76\x3a\xb9\xf4\x46\xd6\x19\x4d\xee\xac\xa4\x69\x79\x2c\x38\x10\x1b\x64\xcd\xf3\xd3\xdb\xd3\x9b\xdb\x0f\xd7\x17\x9f\x6e\xff\x7d\xd2\xac\x7a\x55\x5b\xd8\xd5\xb9\x7c\x5c\x28\xc3\x53\x27\x74\xb1\x50\x3e\xff\xbf\x54\x45\x72\x17\xeb\xd3\xb0\x8c\x8f\x37\x16\xc0\xe7\x9f\xec\x23\x8d\x8b\x00\x88\xec\x4c\xff\x13\xe5\xa6\x0c\xad\xeb\xda\xee\x4f\xa7\x97\xb7\x9f\xde\x7e\xb8\xfe\x54\xee\x7b\xcf\xd9\xac\xb2\xb5\xb7\x7e\x65\x95\xaa\x7f\x89\x4e\x75\x2e\xc5\xa1\x21\x4c\x80\x40\xf2\xfd\x0f\x93\x26\x85\xf7\xf4\xdd\xe5\xd9\x07\xaf\xf3\x5e\x5e\xfd\xf0\xe9\xfb\xd3\xb3\x3f\x5f\x5c\x9d\x37\x02\x47\x48\x11\x01\x8e\xf3\x5e\x60\x9b\x5b\xab\x73\x43\x99\x98\x39\x4a\x7c\x41\x6e\xbe\xfd\xbd\x61\x25\xef\x3e\xde\xdc\x5e\x5c\x77\x20\xe3\xb7\xfa\x08\xcd\x7b\x3b\x2b\x40\x33\xd8\x91\x95\xc3\x34\xda\xc2\x8e\x2c\x81\x47\x96\x03\xa1\x04\x44\xb1\x91\x4f\x43\xa7\x59\x56\x75\xe2\xd3\x86\x9a\x86\x55\xbd\xbd\x78\x77\xf9\x97\x4f\x97\x93\xdb\xd3\xef\xdf\x5d\xdc\x5c\x5f\xbc\xbd\xbe\xb8\xf9\xd3\xe5\xd5\xed\xc5\xf5\x8f\xa7\xef\x1a\x97\xf9\xe6\xe5\xee\xfa\xae\x64\xd0\x29\xc3\x71\xb5\x86\x43\xb9\x6c\x56\x01\xe3\x76\x0f\x6f\x99\xbb\x9c\xac\xbf\x26\xb9\x94\x59\x65\x76\x09\xe2\x34\xb6\x22\x9d\xc7\x10\x85\x77\x39\x29\x7b\x12\x6d\x8f\x9c\x2c\xa5\xb6\x74\x0e\x13\xe2\xac\x9c\x42\xc5\x82\x8d\xd1\x2d\x87\xa9\x77\xbe\xf8\xba\x73\xd9\x87\xee\x79\x1c\x75\x49\xd7\x3b\xe3\x0a\xe9\x2c\xc2\xae\x7c\xbb\x4b\x84\x9c\xdb\x33\x71\x25\xb0\xfe\x73\x34\x72\xae\x9d\x51\xc2\x53\xf5\x9f\xe3\xed\x31\xb6\xf0\xf7\x72\xf2\xe3\xd7\x93\x0f\x1f\xde\x45\xa8\xc8\xb3\x9a\x1d\xe9\xbb\xd7\xe3\x57\x6f\xbe\x1d\xbf\x1c\xbf\x3c\x7e\xf5\x66\x17\x98\xe7\x5c\x63\x38\x1e\xcf\x18\xc9\xe4\x02\xb6\xa9\x25\xf9\x4f\x08\x49\x37\x99\xfd\x4e\xff\x27\xb8\xa4\xb6\xb3\xc9\xb7\x56\x74\x7e\x79\x63\x51\xe6\xd3\xdb\xcb\x77\x17\x9f\xde\x7d\xf8\xe1\x87\xcb\xab\xb8\x2d\xa9\x9d\xe0\xa0\xee\x59\xa5\x22\x4a\x14\xa4\xfc\x81\x63\x9d\x2d\xfb\xf5\xe9\xd9\xd9\xc5\xe4\xb6\x61\x4d\x88\xc5\xe7\x17\x6f\x4f\x3f\xbe\xbb\xbd\xb8\x3a\x9f\x7c\xb8\xbc\xba\xbd\xfd\x60\x79\xde\xe9\xd9\xed\xe5\x87\xab\xc6\x95\xe1\xb0\xcd\x80\xba\x9c\xac\xdf\x58\x14\xab\x58\x51\xeb\x12\x2e\x27\x3f\xbe\xb9\xf9\x38\xb1\x0c\x75\x1f\x2b\x47\x60\xcc\x0e\xdc\xc3\x90\x70\x8d\xd1\x49\xda\x82\x0a\x66\x78\xf7\xe1\x07\x0b\xf2\xc9\xe9\xed\xff\xcf\xde\xbb\x2e\xb7\x91\x63\x09\x83\xff\xf7\x29\x30\xea\x8d\x90\x3d\x9f\x48\xdf\xaa\xdc\x55\xea\x98\xd8\x90\x25\xbb\x4a\x31\xb6\xcc\x91\xe4\xaa\x9e\x68\xf6\x38\xc0\x4c\x90\xcc\x4f\x49\x20\x3b\x81\x94\xcc\x9e\x99\x8d\x7d\x87\x7d\xc3\x7d\x92\x0d\x9c\x03\x20\x91\x49\x20\x33\x29\xc9\x55\xd5\x53\xc9\x88\xee\x92\x49\x5c\x0f\x80\x73\xbf\xfc\x88\xe2\x1a\x67\xc6\x27\x15\x0f\x16\xe0\x69\x4f\x56\x09\x38\xe9\xae\x15\x7b\xe3\xed\x89\x12\x87\x2f\xf8\xea\xed\x4f\x6f\x2f\xcf\xaf\xff\xfd\xea\xdf\xaf\x70\xcd\xe6\x51\xc1\xcb\x73\x61\x0a\x7c\x29\x3a\x77\x22\xb7\x32\x17\xab\x9e\xbd\x78\x53\xed\x81\x63\xea\x9b\xe8\xcd\x37\x3f\xb8\xa3\x25\xcf\xf8\x6a\xc8\xd6\xaf\x82\xfb\x3d\xbd\x7c\xfb\xf6\x42\x8f\xf5\x33\x8e\xb4\xbb\xe3\xa1\xdb\x81\x91\xa2\x3b\xfa\x39\xbc\xd0\xe6\x70\x3f\xbe\x3d\x79\x7f\xfd\xe3\xdb\x0b\xfd\x6c\xe3\xe4\x2f\xfc\x54\xbb\x36\x6c\x89\x87\x21\xac\x20\x5f\x54\x0a\x7d\x15\xf4\x1f\x9e\xf7\xf3\x92\xf0\x25\xd2\xa4\x21\xd4\xa8\x8f\x52\xeb\xc1\x9b\x4b\xbd\xaf\xde\x27\xe4\x2b\x63\xbf\xc7\xc8\xe7\x1d\x5e\x25\x29\xaa\x63\xf2\xf2\xdb\xe7\x8d\xa4\xd3\x79\xb6\x64\xc9\x36\xc9\xdb\x49\x1b\x8b\x92\x5d\x29\xb1\x5b\xab\x5f\x8b\x74\x41\x7d\x2e\x2a\x43\x76\x7f\x99\x10\x30\xd2\x44\x44\x0a\xdb\x66\x22\xd7\x95\x4a\xc5\x1d\x6f\xae\xed\x96\x71\x26\xe5\xac\x14\x8b\xf6\xfa\x82\xeb\x88\xad\xa2\x7f\x0d\x13\x32\x81\xd7\x3b\xd1\x73\xb6\x20\xd1\x34\xe6\xbd\x78\xde\xfc\xd9\xa8\xb6\xce\x58\x4e\xb7\xd1\x46\x46\x73\x75\xbd\x2e\x99\x5c\x8b\x3c\x3d\x26\xaf\x9b\x0d\x54\xb6\x61\xa2\x52\x91\x01\xb4\x2c\x9a\xc5\x20\xb1\x56\xaa\xf8\x81\xb5\x6f\x0e\x14\xdc\xd0\xd2\xaf\xeb\xbb\xf3\xbb\x28\xd5\x31\xf9\xfe\xf9\xf7\xdf\xb7\x7f\xd1\xf4\xec\x98\xe4\x22\xa1\xf9\xae\xc6\xa2\x07\x1c\xdd\x1b\xe9\x50\x78\xfd\x01\x6a\xd1\x6d\x68\x06\x12\xad\xc6\x3c\x9e\x83\xb6\x96\xa5\x92\x92\x01\x07\x4b\xf3\x5d\x82\xf6\x88\x9a\x70\xd2\x90\xfd\x91\xf2\x75\xcc\x96\x67\x8b\x67\x1b\x91\x56\x81\x44\x5d\x38\x4d\x9e\x2d\x26\x91\x06\x71\x15\x43\x7b\x96\xb2\xe2\xcf\xbe\x20\x1a\x9a\xe6\x22\xb9\x09\x4f\x65\x5a\x4c\x42\x2d\xf6\xd8\xd2\xc3\x15\x6a\x7b\x4e\xa6\x61\xd8\x37\x99\x06\xe3\xbd\x26\xc3\x21\x50\x1b\x22\xb7\x7c\x47\xcf\x13\xda\xb9\xc6\x10\x74\xb5\x93\x5d\x02\xaf\xa8\x53\x30\x1c\x91\x3b\x06\x52\x83\x51\x44\x00\x0f\xe0\x34\x5b\x56\xaf\x5e\x6b\xdd\xdb\x2a\x55\x29\x40\x81\x08\xad\x31\x1d\x55\x7b\x3a\x48\x91\xa7\x08\x6a\xf5\x44\xb9\xab\xe6\xc2\xcd\xa1\xf6\xba\x63\x5f\xf5\xa4\xe1\x01\xf4\x53\xc8\xc5\x2a\xf4\x14\x76\xce\x4a\xac\x9c\x72\xae\x69\xbf\x27\x1d\x37\x7a\xc7\xc7\xa0\xac\xb8\x74\x0e\x9a\x95\xb4\x59\x43\xd0\xcb\x0b\x8a\x13\x4e\x36\x2b\x74\x1c\x64\xbc\x61\x24\x00\x1a\x9d\x6b\xe4\x04\xb9\x46\x76\x2b\x19\x4e\x3c\x45\x4f\xed\x74\x59\xaf\xd1\xf3\x33\xd0\x62\xab\xf1\x08\xde\xb1\xfa\xd4\xea\x7d\x62\xfc\x0d\x34\x09\x31\xe3\xa5\x46\xb5\x3f\xc9\x8a\xc9\x86\xca\xbf\xd9\x7f\xb6\xd6\x5f\x7b\xa1\xe3\xe7\xfe\xc4\x7e\x57\xdf\x64\xb7\x39\xfb\x78\xf6\xd5\x4c\xc4\xd6\x9f\x6c\xca\x77\xd4\x19\xed\xe9\xaf\x66\x27\xa7\x5f\x7f\x0d\x81\x7a\xae\x8e\x11\x7b\x7f\x72\x71\xf1\xf6\xfd\xd9\xe7\xf3\x77\x7b\xae\xe4\xb1\x7d\x04\x74\xa3\xcf\xd9\x72\xc0\x4a\x67\x9f\x3f\x9c\x5c\xfd\xdb\xaf\xb8\x56\x7d\x77\x2b\x56\xd2\x26\x43\xd4\x61\xf0\x1c\x4e\x94\xfa\x48\x52\x07\xda\x9e\x34\x5d\x9b\x27\xc9\xb2\xb5\x03\x7f\x15\x9a\xd2\xfb\x4f\xfd\x99\x6d\x8a\xbb\x68\x6a\xdb\x6d\xb8\x1a\x7a\xae\xec\xe2\x8c\x08\xb1\xd6\x2c\x05\x4c\xd7\x7a\xb0\x1d\x2c\xc0\xa4\x97\x50\x76\x0f\x1a\x23\xc2\x93\x5e\x9a\xd8\x3f\x6e\x88\xde\x4e\x7a\x0e\xac\x7b\xd4\xee\xab\x80\x2e\xaf\xef\xb2\x9c\x7d\x2c\x4f\x1b\x11\x1a\xf5\xbc\xbb\x56\xcc\xee\x19\x0d\x49\x0b\x4d\x74\x66\xc9\x65\x7c\xb6\x1d\x8a\x39\x68\xb2\x1d\xfa\xd9\x9a\xcf\xbf\x69\x9b\xda\xdc\xd6\x30\xa1\x19\x5e\xa1\x92\x9e\x01\x0d\xcd\xcf\x4d\x0f\xbd\xa8\x89\x2c\x70\x6b\x43\x26\xac\xee\x0d\x35\x5b\xd7\xef\xc2\xbc\xa1\xa0\x03\x45\xf0\x2d\x3a\x7c\x74\x1c\x7a\xfd\x61\x1c\x54\x87\x25\x5b\x37\xb0\xd3\x8b\x90\xcf\x46\xc4\xf3\xa5\x7b\x67\x41\x7f\x9a\x49\x37\xcb\xdf\x3d\x62\x44\x94\xa8\x77\x61\x02\xa2\xb5\xb8\x92\x8b\x55\xe8\x80\x22\xfc\xd5\x80\x97\x1a\xe1\xb6\xea\xc9\x8d\x4a\x39\xee\x5c\x13\xc0\x49\x61\x66\x38\xb2\x9a\xde\x37\x45\x76\x91\x56\x80\x7f\xde\x3d\xf4\x5d\x8f\xa1\xd0\xad\xeb\xf4\xac\xd9\x77\xc9\xff\xf9\x9f\x13\x92\x2d\x89\xf5\xf4\x99\x81\x70\x79\x96\x35\x5d\xcb\xeb\xfd\xd4\x3e\x41\xae\x25\xba\x94\x4f\x08\xcb\x25\x8b\xf4\x7a\x56\x49\x40\xb1\xec\x0b\x4b\x3c\x2f\x63\xf8\x33\x67\x6a\x62\xa2\x2d\x9e\x21\x7d\x7a\x06\xcd\x1c\xc0\xfe\xef\x2a\x95\x66\x06\xe3\xc0\x0e\x21\x21\x7d\x9e\xd7\x7e\x64\x45\x1d\x2d\xd3\x8e\x47\xb9\x4f\xa8\xc5\xbe\xa1\x29\xed\xdc\x21\x2e\x4c\xe5\x8a\xb1\x50\x68\x5d\x23\x30\xf0\xd9\x6e\xe6\x91\x60\xcc\x88\x89\x2c\xf1\xf2\x57\xef\x93\x77\xe5\x3e\x71\x25\xb1\xdc\x2a\x36\x74\x02\x8d\x3e\x8d\xc4\x67\xb6\xbe\x0c\x94\xfd\xa3\x90\xc7\x33\x67\x60\x1e\xb8\x65\xf8\x08\xb8\x49\xa3\x57\xb2\x22\xcf\x12\x2a\x21\xba\x63\xdf\xa8\x95\xe8\x26\x65\x1d\xc1\x52\x3f\x8a\x4b\x56\x87\x48\xf6\x05\x8f\xf4\x82\x91\x90\x2e\x50\x92\x9e\xf8\x93\x8e\x61\x1f\x14\x91\x62\x1f\xf9\x75\x1d\xea\x41\x62\x01\x20\x5e\x08\x8f\xdf\xdc\xc5\xef\xbc\x8e\xbc\xf7\x58\x18\x49\x58\xe9\xec\xb5\xb6\x86\xea\x68\xd6\x3b\x41\x30\xcb\x68\xce\xc0\x21\xa8\xac\x78\x2c\xf8\xa4\x19\xb4\x52\xfb\xda\x8d\xa1\x2b\x8d\x8e\x3e\x2e\xc5\x36\x0f\x09\x63\xe9\x7c\x0b\x3b\x81\x2d\xf7\x8d\xf6\xd0\xb3\xb4\xf2\x7d\x0d\x8a\xfe\x70\x06\xda\x50\x00\x48\xd0\x01\x69\x32\xec\x95\x93\xa6\xde\xa4\x6e\x10\x76\x02\xda\x51\xed\x9e\xae\x05\x94\xd6\x01\xcb\xbf\x7f\xdf\x95\xd0\x57\x3c\xa2\xd7\x32\x86\x9f\xcf\xa7\x1f\x2f\xae\x2f\x3f\xbe\x7f\xff\xf6\x32\x66\x21\xdb\x55\xe9\xef\xe5\x52\x73\x13\x2c\xa0\xf5\x98\xe6\x07\xcd\x13\x80\x09\x62\xcd\x92\x9b\x49\x33\x61\x59\xdd\x6c\xd2\xf2\xda\xfb\xad\x9b\x1e\xbe\x12\x14\xca\x5e\x28\x7c\x7d\xb6\x68\x6f\xde\xa1\xcd\x28\x35\xc3\x72\x6b\x37\xf8\x99\x48\xc9\x19\x7a\x2b\x67\x82\x93\x37\x55\xba\x62\xe8\x32\x55\x3f\xab\xda\x21\xfe\x5f\xbf\x93\xce\x91\xe7\xa4\x52\x42\x26\xd4\xfc\xce\x6e\xb3\x44\x69\x48\xf8\x9b\x44\xce\xfe\xd9\xed\x8b\x05\x53\xd4\x6d\x78\x26\xd2\x7a\x46\x9c\xf0\xd7\xe7\x98\x02\x81\xad\x8f\xc4\xfa\x0c\xe4\x54\x99\x4a\xd2\x89\xd4\xfc\x90\xb2\x5c\xea\xc0\x9e\x6a\x5b\xac\xe9\xd0\x2e\xd6\x1f\xcf\x44\x4b\x61\xaf\x83\xa3\xff\x83\x10\x72\x80\xf2\xf1\xed\xab\xe9\xcb\x6f\xa6\x2f\x0e\x8e\xc9\x81\x1e\x0a\xb4\xd2\xe4\xda\x8c\x50\xfb\xb7\xe1\xf7\xa6\xf1\xe0\xb5\x9a\x44\x42\x8d\x60\xf1\x53\x2b\xb4\x93\x4c\xba\x6a\x25\x6e\xa1\x58\xa1\x7e\x09\xc2\x16\x4b\xcd\xb4\xbe\x1b\x51\x9d\x28\xc1\x8e\xb3\xfb\xd2\xe2\x41\xf9\x4e\x19\x10\xbb\x52\xae\xdb\x1f\x30\x5b\x99\x5e\xa4\xf1\xb0\x40\xef\x2c\x00\xff\x67\x43\x9f\x3f\x5b\x47\xfe\xda\xe3\x03\x79\x71\x48\xc6\xbe\xa4\x49\xad\x6b\x41\x2f\x5b\xfd\xd2\xc0\x61\x07\x0a\x07\x25\xb6\x7e\x10\x7c\x55\xc7\x99\xd8\xac\x55\x7f\x70\x55\x04\x17\x39\xe5\x37\x47\xae\xd2\xaa\x37\x7e\x26\xad\x5f\x56\x6d\xc8\xd0\x04\xe9\x50\xe2\x08\x96\x4c\x83\x43\x26\x8c\xea\xa9\x88\x31\x80\x19\x4d\x11\xe7\x76\x48\x1b\xcb\xfc\x07\xf2\xb3\xa9\xdb\x22\x4a\x08\x73\x80\xaa\x8d\x56\x65\x5b\x97\x1e\x15\x24\x65\x52\x99\x08\x54\xac\x46\x85\x5e\x5b\x38\x88\x65\xd5\x8c\x6b\xf0\x14\x9f\x9f\x1d\xc6\x77\xa1\xc0\xf6\xb5\x0f\xa9\xee\xf9\xe1\xfa\x13\xa4\x4c\x95\x18\x78\x61\x63\x63\x6b\x00\x60\xe2\x00\x55\x71\xce\x8c\x69\xf6\x0f\xe4\xcd\xd6\x6e\xfb\x08\x06\xc8\xa4\x9f\x57\xce\x96\x2c\xf5\xcb\xc6\x30\xa5\x9c\x03\x1b\x16\xdb\x31\x4e\x68\x26\x73\xbb\xf5\xc8\x37\x13\xfc\xbb\xa8\x50\xc4\x42\xef\x5f\xd6\x4e\x5b\xb7\xd8\x92\xa2\x14\xb7\x59\x8a\x71\xc4\x5c\xf0\xc9\xdf\x59\x69\xdc\x78\xa6\xb5\x94\xa0\x17\x67\x99\xfc\x6c\x49\x38\xc3\xaf\x9e\x1b\xc6\xc9\x06\x96\x99\x63\xfa\x70\xfd\x09\xcf\xc6\x70\x95\x01\xf1\xc0\xef\xf1\xe2\x9b\x6f\x9f\xb7\x5a\xc7\xe3\x22\x6d\x1e\xa1\x58\x78\x24\x74\x03\x4e\x12\x25\xf6\x3f\xd8\x8a\x22\xb6\x3e\xa5\x09\xaf\x74\xe5\xff\x2a\x25\x36\x14\xf8\xc0\x7c\x4b\x0a\x61\x52\x2c\xe3\x05\xdc\x89\x63\x3c\x26\xff\x35\x41\x14\xfb\x9f\x16\xd3\xce\x0f\xc0\xec\x73\x60\xbc\x3c\x27\x85\x48\x27\xa6\x93\x57\xd2\x6c\x7e\x90\x70\xfb\xf6\xb1\xed\xf3\xe9\xab\xe9\x8b\x46\x0b\xa3\xf2\xd0\x3f\xff\xa5\xa6\xed\xff\xe9\x93\xf9\xf9\x01\xf8\xa1\xc2\x00\x46\x37\xdd\x2c\x9b\x36\x3f\xc8\xc5\xea\x73\xce\x6e\x59\x8e\xad\xc0\x17\x29\xd4\x66\x99\xe5\xec\x73\x41\xd5\x1a\xdb\x05\x14\x69\xfa\x7f\xd3\x5c\xac\x76\xba\x3b\x8f\xe5\xcf\xf5\x6a\x7c\x6f\xeb\x56\x73\x7d\x2e\x35\x8c\x3e\x7f\x0e\x85\x6e\x7e\xfe\xbc\xd3\x6d\xa3\x2a\xdd\xe3\xf3\x67\x13\x38\xf9\xf9\x73\xab\x41\x56\xd0\x8d\x6e\xf1\x9f\x6d\xe6\xc8\x87\x92\xc6\x58\x13\x70\xd2\x08\x14\x98\x9b\x1f\xa0\x15\x12\x9b\x56\x92\xcd\x44\x7a\x9a\xa5\x65\xd3\xf9\xe8\xbf\x5b\xf3\x22\xfb\xd0\x3b\xf3\xcd\x77\xb2\x7b\x1c\x1f\x64\xc1\xb1\x4c\x3a\x61\x4d\x09\x3c\xd0\x61\x78\xef\x67\xeb\xdc\xa7\x21\xd7\x98\xa5\xfe\x87\x3f\x61\xf4\x1a\x15\xa2\x54\x1b\x5a\xec\x80\x5f\x72\x0a\x70\xd1\x48\xaf\xf5\x53\x42\x0b\x0a\xb9\x69\x32\xbb\x74\x18\xe5\x03\x2d\x8a\x8c\xaf\xa4\xed\xb5\xef\x4a\x16\x94\xa7\x77\x59\xaa\x6f\x64\xff\x84\x5e\xe3\xdd\xd9\xec\x9f\xc6\xac\x6c\x10\x8a\xcd\x6a\x15\x44\x28\x53\x0c\xfd\x81\x42\xa0\x26\x0e\xc9\x1a\xde\x9b\xc1\x45\x9c\x29\x20\xcf\xd3\xff\x2d\x35\x19\xff\xaf\x1d\x74\x70\x61\x1f\xbf\x25\x5a\xc8\x98\x9e\x9e\x9f\x5d\x6a\xac\xe8\x3d\xf8\x37\xc6\x6e\xdf\x3c\x7d\x2c\x4b\xe6\xba\x9b\x55\x9b\xb6\x53\xfd\x9b\x9f\xc4\xe3\xbf\xdd\x16\xfb\x58\x9d\x9b\x34\x9d\x24\x65\x6a\xb9\xb8\xaf\x57\x30\x68\x27\x2f\xd9\x57\x28\x1b\xf4\xe6\x87\x59\x23\xb7\x37\xfe\x56\x17\x0f\x6a\xff\xbe\x5b\x42\x28\x92\x3d\xad\x2e\x24\xd4\x6e\xa0\x7f\x37\x19\x19\xd9\x27\x7e\xc3\xc5\x1d\x7f\xa7\x29\xb0\xf4\x6c\xb3\xa6\xdc\x90\x39\xf2\xf9\xd7\xa9\x35\xd4\xde\x5b\xb3\x50\x49\x93\x4c\x62\x29\xbe\xad\xee\x03\x9c\x55\x53\xcb\x34\xd6\x1a\x1a\x6b\x0d\xf9\x47\x30\xd6\x1a\xfa\xc5\x6a\x0d\xb5\x1f\xf1\x6e\xc5\xa1\x66\x25\x3c\xfd\x80\x9b\x04\xab\xa5\xfe\x89\x97\x16\xa2\xf2\x02\x6a\x4f\x07\xdc\x60\x5a\x0f\xfa\x0a\x1b\xda\x12\x66\x56\x24\x3b\xb9\x32\xd5\xab\x9d\x90\x48\x0d\xb3\xfd\x97\x33\x6c\x12\xf4\xb0\x79\xfd\xcd\xb7\x2f\x5e\xfe\xf5\x70\xf7\x27\xcc\x00\x7a\xac\x5f\xe7\xab\x97\xbb\x3f\x23\x48\xf5\xd3\x5d\xed\x16\xcc\x5e\x64\x3c\xfd\x20\xd2\x50\xf5\xfc\x26\x7c\x4d\xbb\x50\x75\x4f\x01\x84\xc2\x44\x42\x1a\xc0\x72\x94\x88\x22\x45\x95\xc1\x38\x60\x42\xa0\x98\x24\x4f\x2e\x04\x67\x4f\x31\xc1\x67\xbe\xf5\xf3\x98\x1e\x82\x49\x4b\x70\x50\xf3\xd7\x61\x53\xa1\x51\x2f\x34\x04\xf5\xb1\x4f\xdf\xfc\x30\x9b\x9e\xcf\x6e\xff\x7c\x62\x62\xac\x9e\x40\xe0\xe8\xec\xe9\x94\x18\xf0\x92\x05\x5b\xd3\xdb\x4c\x54\x78\x34\x76\xfd\xa1\x51\x03\x5b\xda\x59\xff\x9e\xc5\x54\xed\x63\x0b\xdd\xad\x16\xd4\x4f\xeb\xa6\x88\x92\x6c\xb9\x2a\x5c\x92\x79\xb4\xf6\x6a\x53\x4c\x41\xb9\xeb\x4e\xa9\x3f\xb4\x5c\x64\xaa\xa4\xe5\xd6\xd4\x24\x86\x70\x49\x8a\x41\x1c\x18\xaa\xbb\x57\x7d\xab\xe0\x32\xb7\xf5\x8b\x93\x8a\xf2\x94\x96\xa9\x3e\xd4\x9c\x96\x2b\xd6\x5e\x6e\x68\x50\x02\x5b\xd0\xc8\x2d\x10\x49\x89\x9f\x8e\x77\x89\x1f\xe0\x08\xc2\x3f\xb5\xcb\x93\xd1\x0d\x23\xab\xec\x96\x71\x2f\xdb\x87\x5d\x5e\x70\x72\xd2\x5b\xd8\x8b\x38\xf5\xfe\xa0\x25\xfc\x04\xa4\x05\xd2\x0e\x2f\x20\x73\x12\x3e\x65\x32\x3f\xa0\xf4\x98\xf3\xf9\x01\x94\xb1\xc6\x7f\x1c\x6f\x36\xc1\x72\xf8\xf6\xf3\x4e\x94\x35\xd4\xeb\xdd\x54\x92\x79\xc3\xe1\xf8\x47\xa6\x6e\x8b\xfe\x7e\x7e\xa0\x81\x1e\x1f\x76\x7e\x00\x1d\x69\xc9\xc8\x8b\xd7\x64\x91\x29\x83\xbb\xa6\x30\x61\xfb\x68\xbd\xd9\x60\xbd\xf1\x71\x43\x2b\x39\x72\xb3\xf1\x54\x4b\xac\x1b\x33\xf1\xab\x97\x8d\x89\x7f\xd6\x5d\x82\x65\x61\xed\x92\x61\x5b\x98\x56\xe0\xe4\x8a\x20\x16\x8e\x0d\x5e\xb0\x72\x72\x72\x65\x03\x55\xb3\x40\xce\x03\xfb\x29\xa8\xd2\xec\xcf\x31\xf9\x8f\x27\xf3\x79\xfa\xbf\x9e\x1e\xe3\x7f\xfe\xcf\xff\x6a\xfe\xdb\x7e\x7d\xdf\x1b\x14\x23\x81\xfe\xaf\x81\xd2\x71\xc4\x60\xb1\x99\x28\x43\xf4\xa3\x71\xef\xde\xbb\x96\x96\x36\x41\x4d\x70\x3c\x0b\x8d\x5b\x8a\x52\x28\x91\x88\xdc\x32\x8c\x38\x74\x10\x32\x67\xb6\x4c\xb2\x12\xe4\xc5\x1f\x77\xc2\x3a\x40\xe7\x9e\x6d\xaa\xcd\x31\x79\xfd\xed\xb7\xaf\xbe\x0d\xfc\x9e\x71\xfc\xfd\xc5\x9e\xb4\x2b\x17\xab\x2b\x76\xcb\xca\x4c\x6d\xaf\x92\x92\xb1\x36\x7b\xbd\xb3\xed\xc3\xf7\xed\x1e\x76\xfb\xb9\x58\x11\x69\x7e\x21\x74\x21\x6e\xad\xd9\x30\x17\xab\x20\xb5\xd1\x37\x07\x4a\x3a\x1b\x7e\x59\xaa\x54\x54\xca\xa3\xe0\xe4\xfc\xe2\xdd\xc7\x10\xb5\xee\x3a\x7e\x4d\xf2\x3e\x30\xb9\xfe\x40\xbf\x5c\x32\x88\xd6\xbd\xce\x82\xe8\xac\x59\xc7\x30\xc3\xdc\xb7\x68\xbc\xd1\x88\x5d\x8a\xa5\xba\xd3\x4b\x2c\x71\x14\xf8\x12\xb2\xf4\x29\x31\xd9\x30\xb9\x26\x05\x63\x7a\x01\xd2\xd4\xd3\x0e\x6d\xd1\xd5\xd4\x3e\x42\x26\xd5\x29\xfb\xaa\x92\xa5\x36\xc9\xc0\xaa\xa4\x09\x5b\x56\xb9\x9b\xc9\x18\xf6\x3a\xc6\x85\x2a\xf4\xfe\xd8\x8c\xbc\x39\xbf\x3c\x73\xec\x91\x58\x92\x17\x2f\x9f\x4b\x6b\x26\x30\xc1\xc1\xa8\x9d\x35\x59\xc2\xdb\x1f\x60\x1b\x16\x0c\xa2\x29\x0d\xf7\x60\x47\xdb\x91\xee\xac\x13\x0c\x26\xa9\x40\xfd\x6e\xf0\x88\x21\x3d\xca\x85\x39\x11\xc8\x1e\x04\x41\xf4\x01\x5c\x39\xe4\x48\x67\x54\xca\x3b\x51\x86\x82\xd5\x1a\x87\xf9\xd1\xd6\x7e\x87\x67\x68\x3a\xc1\xf9\x2d\x2b\xe3\x51\xb1\x7b\x88\xa1\xe5\x37\xa1\x76\x2f\x10\x05\x2f\xbe\x07\xb5\x3d\x40\xd4\x43\xb7\xd1\x22\xd6\xe1\x5e\xbe\x53\x3e\x3f\x67\x89\xd2\x1c\xd1\x0d\xdb\x82\xac\x6b\x86\xb0\x25\xd6\xc1\x29\xa5\x10\xe9\xa1\xac\x4d\x3e\x11\xc4\xde\xcb\x52\xa0\xdb\x7a\x9c\xde\xec\x14\x15\x35\x6b\x02\xbc\x80\xab\xaa\x0b\xf3\x6b\x51\x6f\x4a\xc8\x07\xa4\xf9\xf1\x41\x09\xa1\x9a\x93\xc8\x52\x3b\xc4\x0d\x6b\x47\xe2\xf8\x9f\x7e\xb6\xa4\x87\x35\x6a\xa3\x4a\x3f\x97\x63\xc9\x96\xac\x64\x5c\x05\xc5\xc8\xae\x94\xa6\xe2\x96\x95\xb7\x19\xbb\x7b\x66\x4a\xc3\x4c\xee\x32\xb5\x9e\x20\x69\x93\xcf\xe0\x60\x9e\xfd\x01\xfe\xd3\x05\x88\xeb\x8f\x67\x1f\x8f\xc9\x49\x9a\x12\x01\x02\x47\x25\x01\xe3\xc0\xdd\x96\x53\x4f\xbd\x72\x04\xd2\xfd\x11\xa9\xb2\xf4\xff\x0a\x60\xde\x7d\x60\xe5\x92\xb0\x0c\x84\xd7\x15\x20\xb4\x6d\x2d\x14\xad\x19\xb9\xc2\x83\x13\x25\xb0\xb4\xfa\x52\x6c\xfa\x4f\x1d\x55\x3f\x1d\x0c\x19\xae\x7e\x21\x44\xce\xc2\xc8\x90\x38\xab\x55\x64\xf1\xe0\x0c\x15\xfe\x69\x08\xef\x11\xfe\x55\x3f\xb8\x6b\x61\x71\xc1\x5b\xc4\x03\xbd\x04\xf9\x22\xd4\x4b\xe3\xa8\x5a\xbc\x74\x68\x0f\x43\xe2\x43\x91\xbc\x04\x90\xe5\xa6\x89\x83\x7c\x5a\xac\xca\x8a\xc5\x69\x71\x04\x96\x45\xc9\x96\xd9\x97\x13\xbf\x02\x56\xaf\xc0\x36\x0b\xf4\xa9\x85\x22\xf0\x97\x86\x16\xcd\xc2\x5a\xa1\x1d\x75\x29\x27\xc8\x70\xd1\x2c\xb0\xa0\x9a\x8a\xcb\xe6\x32\x3c\x4c\x18\xbe\x1d\x36\xc5\x8e\xa3\xde\xa1\x7c\x3e\x16\x78\x3d\x48\x35\xc9\xd2\x90\x06\x25\xb0\x05\xa8\x0f\x06\x46\x60\xe0\xc8\xea\x91\x2d\x73\xba\x60\xf5\x3e\xda\xa9\x54\xea\x4f\xff\xab\xef\x16\xcc\x43\x2b\xf3\xc4\x73\x4d\x63\x17\x75\x3d\x69\x96\xc1\xe5\xad\x25\xa3\x1e\x2c\x47\xf3\x92\xd1\x74\x6b\x9f\xbf\x26\x63\xf3\x03\x8d\x54\xe4\xd4\x9b\x05\x05\xc2\x41\x92\x34\x41\x1d\x70\xaf\x40\xd9\x21\x37\x76\x4b\x58\xdd\x02\x65\xb7\xdc\x18\x1f\xb9\x4f\xa0\xec\x95\x1b\xbb\x16\xdd\x23\x50\xf6\x8a\x8d\x83\xc6\x1e\x2e\x4f\xc6\x9f\x30\x7e\x86\xd0\xa9\x0e\x71\x90\x3c\x44\x96\x34\x8e\x2e\xc6\xf2\x72\x3e\xeb\xc5\x7c\x57\xed\x0e\x00\x0c\xc8\x04\xad\xdf\x2f\x16\xd8\x42\x45\x37\xbe\x63\x33\x43\x10\xf7\x19\xdf\x33\x3b\x8a\x89\xbc\x05\xad\xf6\xd2\x97\x1d\x4c\x79\x24\x70\x3e\x70\x28\x40\x4f\x1a\xbe\xbc\xb8\x08\x57\x90\x02\xbc\x88\xf9\xb6\x31\x9d\xc9\x3b\xa4\xd6\x6c\x73\x7f\xa4\xdb\x86\xc5\x1b\x3d\xaf\x67\x07\xf0\x1c\xf3\xb5\xc8\xa6\xf1\xa8\x6d\x1a\x3e\xe7\x1a\x84\x5f\x01\xd9\x7e\x35\x7d\x84\x39\xe1\xb7\x5f\xd0\x68\x34\xfc\x12\x79\x3d\xc2\xb7\x48\x94\x5e\xa2\xa1\xd0\x9a\xcd\x40\xc4\x8e\xa4\xcf\x76\xea\xe7\xc9\x6b\x37\x70\xe9\xaf\x8c\x9c\x14\x14\x7d\x1c\x91\x21\x19\x30\xc6\x5b\xac\x83\x8e\x57\x46\x70\xcb\x2f\x4b\x66\x16\xfa\xe0\x1b\x54\xaf\xae\xf7\x0a\x85\x4f\xd7\xdb\xff\x3f\xf6\x25\x7a\x2f\x68\xfa\x86\xe6\x5a\x2a\xdd\x03\x1b\xb5\x7a\x3d\xf0\x32\xf9\xa3\x45\x2f\x94\x29\xe4\xe8\xb7\x9d\x9e\xf3\x55\xcc\x6a\xd1\xbe\x77\xbf\xc2\x25\x6b\x02\xe9\x9e\x17\xad\x05\x9b\x7f\xc8\xcb\x16\xee\xb6\xfb\x2d\xb8\x2c\x34\xd2\x25\x48\x25\x4a\x88\x53\xc0\xaf\xf0\x0e\xc0\xf2\x69\xa2\x25\x61\x96\x5e\xec\xb8\x5c\xd4\xf9\xb5\xac\x0b\x85\xfd\x26\x11\x3c\xcd\x30\xcc\x87\xfc\x05\x7c\x6e\xc0\x3b\x2c\xfd\xc9\xfa\x3e\xc0\xb7\xc6\x43\xe5\x2b\x7a\x9d\x40\xc9\xbb\xaf\xe3\x6c\x32\x63\x56\x9d\xdb\xf0\x31\xd1\x5f\x07\x5d\x4b\xbc\xea\x7b\x0d\x8f\x92\xc2\x8c\xf3\x6b\x39\x92\x8c\x1e\x1f\xa3\xc7\x87\x7f\x04\xa3\xc7\xc7\x2f\xe9\xf1\xa1\xd1\xc5\xae\xa3\x87\x8d\x7b\xf3\x3c\xb6\x6c\x63\x77\x7a\x8f\xef\xed\x71\xbd\x66\xb5\xd0\x68\x15\xa7\x1a\x3d\x05\xe8\xdf\x43\x1c\x36\x6e\x18\x2b\x3e\x96\xd9\x2a\xe3\x34\xbf\x60\x5f\xd4\x8f\x81\x74\x79\x41\x93\x82\x7e\xe7\xba\x33\x2c\x4c\x98\x11\x08\x67\x5f\xd4\x5a\x14\xc6\x50\x70\xb7\x66\xdc\x78\x03\x04\x19\x60\xcf\xe8\x05\x30\x25\x1a\xa8\xfa\x8e\xa3\x1b\xbd\x75\xe9\xf7\x35\x4c\xa8\x04\xcf\xc1\xff\x5e\x77\x09\x8d\xab\x47\x91\x4e\xc7\x57\xa1\x08\xa7\xe5\x6e\xf6\x45\x11\xbd\x3a\xbd\xee\x3f\x69\xd9\x9c\x4b\xc5\x68\xaa\xc1\xeb\xfd\x2a\x59\xbe\xfc\xd3\xfc\xe0\x89\xb1\x67\x3c\x0d\x4d\x61\xcc\x02\x2e\x26\x72\x51\x52\x9e\xac\xed\x39\x5d\xe8\xa9\x05\x27\xf3\x83\x45\x56\xa6\xd3\x64\xb9\x0a\x9a\xda\x3b\xd5\x85\x9b\x47\xb6\xd9\x19\x0b\x9a\x27\xee\x06\x59\x9d\xfb\x5a\xe6\x5a\x66\xb8\xf0\xd8\x3d\x96\xb9\x18\x84\xe2\x96\xb0\x21\xaf\xc8\xa5\xd2\x76\xc9\xa3\x2d\x02\x36\xe2\xbe\x29\xee\x61\xcc\x78\x6a\x4d\x83\x0a\xd4\x4c\x12\x45\xcb\x15\x53\xb6\xe2\x48\x26\xf1\x3d\x92\xf3\xa5\x03\x1b\x00\x81\x29\xa4\x6b\x5c\x34\xc2\xbe\x23\x83\x36\x4d\x97\x26\x0a\x02\x8c\x75\x1a\xc1\x48\x6b\x98\xb2\xd1\xcf\xf6\xe6\xd5\x15\x2a\xf7\x85\x59\x20\x0c\x3d\x08\x3b\x57\xb2\xd0\xaa\x69\x71\x7e\xb0\xd1\x19\x2e\x00\xb2\x02\x38\x48\x64\x7c\xd5\x61\xa6\xb5\x20\x02\xf0\xb8\x47\x82\x78\xc2\x7a\xac\xb0\x4d\xa1\x42\x56\xa9\xce\x2d\x55\x9b\x13\x94\x24\xde\x8b\x84\xe6\xd6\x49\xae\x57\xa4\xfb\x80\x6e\x04\xd6\x75\x4e\x2c\x31\x57\x64\xed\x4d\x67\xb6\x6a\x15\x46\x77\xa0\x45\x8d\xdd\xeb\x93\x2b\x48\x9c\x61\x62\xc6\x13\x96\xdd\x32\x5b\xb2\xc0\x18\x9c\xb1\x08\x35\x1e\x6d\x2e\x44\xa1\x79\x4c\x43\x00\x83\xb8\x91\xbb\xd8\x21\x2b\xca\x55\x46\x88\xa3\x0b\x29\xf2\x4a\xb1\x7c\x6b\xea\xe2\x48\xba\x93\x55\x8f\x3c\x90\x2c\x14\x0f\x36\x2f\x5b\x7a\x95\xf1\x95\x24\x2b\xc6\x59\x49\xbd\xa7\x13\xda\x72\x0f\x51\x25\xa3\xd9\x77\x34\xfb\x8e\x66\xdf\xff\xd9\x66\x5f\x8d\x31\xce\x67\x43\xc8\xba\x57\xf4\xc0\xe3\x8e\xc9\x52\x18\x5c\xbd\xd8\x82\xf8\x6a\xf1\x53\x21\xca\x20\x59\x37\xe8\x5f\x09\xec\xae\x6f\x16\x50\x74\x70\x60\xe3\xce\xdf\x1a\xfc\x3a\x8f\xac\xf9\xab\x36\x14\xce\x0f\xfe\x82\x21\xb8\xe7\xb3\xdb\xd7\x18\x85\xfb\xd7\x63\x98\x2b\xe8\xab\x08\xd6\x32\xd7\xe1\x1b\xec\x70\x8c\x5f\x40\x2f\xf8\x02\xcd\x52\x50\x75\x01\xd6\xd2\xd8\x84\xb7\x28\xcb\x6d\xc4\xe8\x87\xa3\xcc\x00\x2c\x9e\x12\xe7\x41\xbe\x60\xb9\xd0\x78\x19\x18\x6f\x13\x8a\x04\xb8\x0e\x0a\xd3\xd5\xee\x7c\x61\x24\x0b\xe8\xb1\xed\xe5\x63\xd8\x97\x3b\x66\x18\x6e\xaa\x70\xb9\x06\xb2\x7b\x52\x75\xdd\xe5\xde\x8c\x8a\x26\xb5\xca\xf1\x2b\x8d\x93\x45\x5e\x35\x46\x81\x7c\xf6\x64\x06\x37\xb1\x09\x36\xc4\x15\x2d\x76\x05\x5d\x65\x9b\x45\x89\x9a\x1b\xd1\xfc\xe6\x82\xa9\x3b\x66\xa2\xae\x91\xd1\x00\x78\x63\xce\x7e\x23\xce\xf8\xeb\x86\xbc\xbc\x8e\x0b\x0f\x9f\xb0\xa9\xcb\x61\x66\xc8\x96\x64\x21\xd4\x9a\x30\x9e\x4a\xe4\xcc\x34\x87\xf5\xe6\x87\x19\x38\xb1\xeb\xa6\xd6\x81\xbd\x9b\x4d\xd7\x4b\xc2\xb1\x5f\x0f\x1f\xfb\xf5\xce\xd8\x53\xa2\x9f\x69\x68\x02\xb3\xcd\x3a\x6c\x21\x11\xe0\x41\x6e\x55\x18\x1e\x18\x0e\x65\x63\x22\x7b\x10\xc1\x75\x9b\xc3\x5f\xe5\x62\x41\xf3\x3a\xd9\xff\xd2\xd4\x25\x73\xcf\x65\xcf\x9b\x88\xbc\x88\xd9\x5e\xef\x55\x34\xbb\xaf\xdd\x4d\x34\x34\xd7\xe2\x6e\x27\x39\x01\x2a\x7d\x3a\xe2\x0f\xfa\x79\xa8\x5d\x86\xc9\x79\xcf\xc6\x2d\xf9\xf3\x83\x4f\x92\x61\x00\xc3\xfc\x80\x6c\x18\xe5\xb2\xb9\x36\xc7\xf6\xe8\xcb\x6f\xe4\xed\xc6\x62\xa7\x10\x45\x19\x28\x4d\x81\x1f\x1c\xd2\xc4\xf9\xc7\xb7\xbc\xd7\x29\x8c\x9a\x74\x5f\x93\x9e\x8b\xe4\x86\x2e\xb1\x0d\xfb\x2a\x0a\x75\x3d\xc3\x09\xce\xb0\xdd\x51\xab\xfb\x3f\x06\x94\xeb\xcd\xd5\xed\xe8\xd8\xbd\x9f\xb7\xa3\xa6\xdd\xac\x72\xd4\xb4\x8f\x9a\xf6\xdf\x91\xa6\xdd\xc7\x20\x03\xf5\xed\xbb\x18\xa9\xfe\xec\xaf\x84\x8f\x58\x83\xbb\xd8\x80\x94\xe5\x4c\xf5\x7b\xa0\x9e\x61\x33\x2f\xac\xd1\x54\x5c\xcd\x24\xe2\x3e\x62\x91\x9f\xbe\xb7\x0b\x06\x05\x15\xb1\x4f\x9f\xd7\xbd\x7f\xcf\x97\xe8\xb6\x57\x50\x95\x41\xe2\x85\x2d\x32\xee\x22\x4f\x81\x1d\xc8\x19\x95\x66\xea\x20\x89\xce\xa4\xa2\x37\x8c\xe7\x5b\xa2\x4a\x66\x97\x87\xb3\xd0\x7a\x96\xc7\xd1\xc7\x76\xf2\x56\xaa\xce\xdc\x39\xac\x4f\x44\x26\x9d\xc0\x91\xb6\xbf\x33\x80\x6d\x7f\x1d\xca\xb3\x17\x28\xd5\x37\x32\x1d\x7e\xde\x2b\xa4\xbf\x1a\x2b\x69\x09\xf8\x2b\xa5\x8d\xb0\x6e\x6b\xf5\x2c\x6d\xee\x63\xb7\xc5\x2e\x0b\x12\x58\x6b\x9b\x0d\xd9\x6d\xf2\x6b\xf2\x22\x4d\x27\xe0\x9d\x1d\xb6\x12\x48\x18\xef\x42\x67\x7a\xf2\x36\x31\xe6\x8e\x18\xf9\x9b\x91\xbf\xf9\xb5\xf9\x9b\xdd\x17\xdc\x95\x3d\x02\xbb\x2e\x02\xd4\x31\x6e\xe6\xeb\x62\x6d\x00\xc5\x86\xdf\xf8\xee\x4a\xfd\xc6\x36\x76\xd5\x3c\x72\xbd\x36\x63\x20\x75\x45\xe3\x93\x1a\xf3\xb5\x3f\x1a\x09\x54\x9c\x07\x75\xe1\x9d\xd9\x0b\x70\xc8\x1f\x3e\x9d\x9f\xf5\xae\xb6\x6e\x6a\xd7\x0a\x7f\x1b\xf5\x6f\x74\x71\x03\xa6\xbf\xd6\x4d\x86\x4d\xaf\x9b\xda\x43\x33\x68\x11\x8a\x13\x3f\x64\x15\x2e\x63\xdb\x25\xa3\x69\xc8\x46\xd4\xe4\x31\x1b\xad\x5d\xfa\xcb\xb4\x02\x14\x21\xb3\x15\x07\xf6\x99\xab\x7a\x5c\xb2\xc9\x56\x8d\x3c\x4a\xad\xb5\x09\xe8\x46\x73\x93\xb9\xa0\x10\x1c\x7c\x35\x65\x95\xac\x35\x47\x88\x35\x3a\x6d\x7d\x7f\x83\xb8\xef\x68\xa6\x5f\xf9\x52\x44\xd4\x93\x50\x50\xc2\x62\xa8\x58\x15\x6d\xd2\x67\x8a\xb8\xa5\x65\x46\x79\x6f\x04\xfa\x4f\xd8\x8c\xa4\x2c\xc9\x69\x09\xfa\xb7\x2c\x59\xdb\xde\xde\x5d\xf6\x62\x7c\x20\x89\xfd\xff\x7c\x3d\xd4\x57\xe3\x0c\x01\xcf\x37\xf2\xc7\xd7\x19\x6c\x27\x2b\xc6\xa7\x37\xd5\x82\x2d\xaa\x4c\x0b\x25\x30\x81\x9d\xfe\x09\x20\x73\xf0\xab\x81\x94\xc2\x99\xe0\xd7\xd9\x86\x49\x45\x37\xc5\x31\xe1\x55\x9e\xcf\x5b\xe9\x7c\x41\x25\x0e\x30\xfb\x2a\x0a\x2f\xbc\x1b\x17\x22\x65\x57\x5e\x3a\x67\x8f\xeb\x6c\xfd\x1e\xe0\x39\x77\x96\xb9\xc3\x72\xb6\x5a\x8c\xca\x2f\xb3\xca\x91\x39\x1c\x99\xc3\xdf\x11\x73\xd8\x42\x25\xc3\xf4\x5f\x61\x04\x55\x7f\xee\xa1\x02\xcb\xa9\x94\x03\x32\x46\x61\xb3\x9a\xae\x5a\x7e\x07\x78\x57\x4f\xf4\xc4\x52\x5f\x3c\x8b\x38\xba\xa1\x35\x2b\x93\xbe\xb1\x19\x9f\x25\xf8\x56\x61\xd8\x0c\x1a\x42\xb3\x5b\x1b\xf5\xa2\x6f\xa4\x28\x55\xc4\xbf\x82\x2e\x44\xa5\x48\xc2\x4a\x0d\x3a\x7d\xdb\x20\xcc\xbb\xb9\xaa\xbd\x82\x59\xba\x1d\x3a\x3a\x62\x8a\xee\xed\x89\x98\x19\x80\x06\x1d\x11\x97\x61\x48\x42\x23\x13\x15\xb4\x1f\x97\x89\x2f\x6e\xd6\x28\x44\xd0\xb3\xea\x4f\xbb\x5d\x5c\x86\x1f\xf8\x92\x50\x65\x58\xad\xbe\x2b\xaa\x3f\x35\xf3\xe5\x5e\x3f\x96\x96\x21\xcf\xfd\x12\xf4\xed\xa1\x48\xc9\x96\x25\x93\xeb\xa0\x86\xd4\xfa\xf1\xe1\x88\x76\x59\x99\x84\xd8\xa6\x94\x3e\xae\x63\x5c\xf4\xd5\xd7\xfc\x5c\x04\x92\x3b\xef\x1e\x77\xe6\x13\x50\xb1\x40\xbe\x11\x95\x91\x35\xcf\x5a\x77\xda\xd9\xcb\x85\x40\xef\x2e\x7c\x82\x9c\xb1\x94\xa1\xf7\x9d\x79\x40\x32\xd3\x37\x29\x03\xf3\xb7\x01\x39\x59\x6c\xcd\xb8\x7b\x38\xad\xaf\x58\x3f\x0b\x7e\xa2\x1b\x91\xb5\xc8\x53\x89\x1d\xec\x22\xbc\xfc\x7b\xfb\xbb\xf4\x2d\xb2\x32\xfd\xe9\x9b\x21\xce\x7c\x6f\xce\x2f\xcf\x7e\xfa\xc6\x0f\x35\xab\xf9\x83\x26\x6c\x2b\x40\x13\x7a\xe4\x6f\xee\xef\xcc\x97\x53\xa9\xde\x08\x11\xf3\xce\x0e\x2e\xf1\xbd\xd7\xc7\x40\xca\x29\x03\xc0\x03\xd5\xfb\x3d\x3e\x24\x41\x32\x8c\xae\xe5\x2a\x27\xa2\x52\x45\x15\x72\x6b\xb0\x9f\x21\x9e\x6a\x7a\xea\x4b\xd6\xc8\x12\xb1\xef\xce\x02\xdd\x63\x9b\xb4\x4d\x7f\x85\x8d\x82\x53\x6e\x19\xd4\x36\x04\x77\x76\x09\xed\xc9\xf9\x99\xcb\xae\x09\xeb\x79\xd8\x22\x62\x86\x8f\xe0\x0a\x20\x65\xbe\x45\x09\x36\xd9\xe8\x19\x65\x9b\x20\x7d\xdb\x67\x19\xb7\x51\x35\x51\x70\x21\x3f\xd5\x9a\x21\xbb\x8c\x14\x96\xf1\x90\x55\x74\xfb\x0a\x1a\x04\xf0\x7a\x30\x02\x78\xbd\x1f\x02\x78\x3d\x22\x00\x6f\x3b\x23\x02\x08\xec\x6c\x44\x00\xbf\x26\x02\xe8\xfa\x75\xb1\xea\x8d\x55\xd3\x4b\xc4\x2b\x08\x7c\xb3\xfe\x67\x94\x77\xee\x79\xf3\xe8\xac\xf8\x56\x2a\xba\xc8\x33\xb9\x66\x03\xd9\x12\x7d\x78\x4a\x28\x9a\x7b\x91\x26\xe0\xb7\xc9\xea\x91\xf4\x4e\x88\x64\x12\xf5\x71\x5d\x60\x8a\x84\x6b\x84\xd7\x37\x08\x6b\x46\xd6\xf7\xfa\x2b\xad\xef\x42\xa8\xc7\x03\x21\x17\x7c\xf2\x8b\x2c\xf3\x61\x90\xfc\x1a\xcb\x84\x08\xf6\x61\xe0\x9b\x61\x53\x9f\x30\x02\xf4\x6c\x90\x99\x1c\xc6\xa8\x93\xde\x14\x43\x11\x81\x07\x7c\x54\x9b\x2a\x0e\x47\x83\xdd\x1a\xe2\x18\xa4\x7f\x55\x83\xc8\x75\x47\x6c\x41\x64\x07\x91\x08\x83\xbb\xb5\x90\xac\x56\xc1\x93\x3b\x46\x68\xd8\x04\x52\x7f\x9c\x22\xa3\x03\x5f\x0f\xc3\xd8\x04\x65\xba\xe1\xbb\xb8\xca\x30\xaa\xd1\x91\x90\x92\x94\x8c\x4a\xc1\x81\x0e\x9b\x62\x9e\x5d\xe4\x6c\xf0\xba\x7a\x48\x5a\x7b\x5d\xb0\x1a\xa3\x4c\x00\xbc\x8c\x2f\x02\xc7\x79\x84\xf5\xa8\xb0\x4d\x2f\xb2\x1c\x30\xeb\x05\x92\xd1\xbb\x10\x8a\x46\x50\x6c\xf7\x69\xdf\x66\xd4\x5d\xd9\x89\x32\x15\x6d\x37\x4c\xae\x8f\x34\xf4\xf5\xaf\x8c\xbb\xb2\x61\xd6\x61\xbd\x2b\x8b\x19\xc1\x02\x92\x13\x4b\xc3\xe0\x45\x19\x95\xf9\x43\x01\xd5\xc7\x7f\xf7\xe6\x04\x43\x4c\x34\x08\x43\x22\x26\x7a\xdd\xc2\x44\xaf\x47\x4c\xd4\xb3\x83\x11\x13\xed\xb7\xae\x11\x13\x99\xcf\xef\x09\x13\x75\x84\x2b\x4e\x42\xcc\xfb\xb0\x66\xaf\xe3\xcd\xda\xac\xec\xe0\x96\x81\x31\xbb\xf6\xae\x5f\x07\x2a\xe2\x7b\xdd\x8f\xdf\xd7\x4d\xd1\x34\xa8\xac\x5d\x7d\xd7\x2e\x08\xfa\x90\x12\x5a\x84\xa0\x0d\xb9\x3b\x76\x34\xf1\xc6\x54\x08\x0f\xb6\xb6\xe0\x81\x7e\xd9\x4d\x10\x0d\x94\xbf\x7c\x77\xfa\xea\xd5\xab\xef\x41\xff\x8e\xa5\x39\x20\x9d\xc1\xa7\xeb\xd3\x0e\x25\xbd\x9e\x63\x12\x5e\x24\xaf\x72\x53\x77\xb7\x76\xb4\xd8\x05\x6a\xf8\xd2\x61\x6c\x7e\x1f\x3c\x41\xf6\xb7\x76\x28\x69\x3a\x11\x30\xd6\x5b\x03\xb4\xb1\xdd\x74\xcb\xc2\x0f\x52\x81\xe3\xac\xc3\x78\xfd\x4b\xd3\x76\x87\xd9\x37\x4b\xff\x4a\x84\x15\xa6\xed\xa2\xac\xf1\x24\x30\x43\x00\x34\x08\x4c\x6e\x81\xb6\x86\xec\x70\x94\x7b\x56\x77\x72\xc1\xea\xae\xce\x6d\xec\x33\x0c\xf7\xaf\xa8\x62\x77\xb4\x2b\xee\xbf\xb5\x96\x1f\xb0\x83\x8b\xff\xf3\x36\xf4\x08\xcb\x71\xf5\x6e\xf7\x60\x3e\x5c\x8d\xe0\xc0\x92\x1e\xbe\xa2\x9c\xd1\x92\xb3\xf4\x5d\x29\x36\xc3\xd7\xf4\xbe\xee\x54\xdf\x3a\xdf\x1a\x5d\xb2\x15\x2d\xd3\xce\x89\x09\x22\xb9\xd2\x64\x30\x81\x03\xb7\x89\x8c\x62\xe1\x18\xf6\x33\xe8\x2a\x92\x61\x9c\xde\xce\xe6\xce\x97\x26\x56\x12\x39\x01\x59\x57\x44\xc0\xe2\x51\x9a\xe6\x1e\x91\x58\x6e\x57\xff\xd3\x62\x1a\x51\xf3\x69\x32\xb8\x30\xae\x48\x25\xbd\xbd\x77\x6e\x98\x0c\x3e\x4f\xe2\x62\x66\x23\x4e\x95\x1d\x3b\xbf\xf6\x1c\x29\x8d\xbf\x0a\x9e\x10\x35\xc7\x93\x49\x7b\x5f\xfa\x37\x0f\x29\x32\x1e\x6b\x4f\xfd\xbc\x09\x79\x28\xa3\x97\x79\x87\x54\x07\x07\x81\xce\x39\xe2\x0a\xe0\xed\x55\x94\x77\x78\xdf\x4d\x91\xed\x5f\x9b\x19\x73\x54\x6b\x90\x5c\x68\xa8\xd6\xae\x60\x38\x52\xad\x8e\x8d\x8c\x54\xab\x63\x41\x23\xd5\xda\xfd\x8c\x54\x6b\xa4\x5a\xb1\x56\x23\xd5\xea\xec\xfe\x0f\xe9\xf9\xff\xb5\x82\x41\x97\x2c\xcf\xbe\x7c\xf5\x1a\xe2\x10\x74\xd2\x59\x45\x7c\xb7\xc5\xae\x63\x7e\x60\xad\xe6\x5c\x9c\x67\xfe\x6e\x93\xf9\x6f\x25\x18\x14\x03\x6f\xf6\x2a\x27\x0e\x5d\xc6\x40\xd0\xd1\xd7\x7f\xf4\xf5\xff\xb5\x7d\xfd\x77\xf1\x53\x5f\x19\x71\x7c\xef\xf7\x2d\x24\x9e\xe7\xe2\xee\x7c\x76\x3e\x9b\xd1\xe4\x86\x29\xa9\xf9\xcc\x9f\x45\x79\x93\x0b\xda\xef\xe9\x7d\x78\xd2\xd5\xdb\x46\x76\xd5\xe6\x08\x58\x69\x50\x6f\x8c\xc5\x73\x52\xcd\xfd\x54\x39\x24\x25\x4e\x4b\x51\x10\x3d\x34\x61\x3c\xa1\x85\xac\x72\x50\x50\xab\x92\x2e\x97\x59\x62\x8a\xf8\xd8\xa9\x42\x63\xd6\x95\xd7\x00\xfd\xee\x5d\x7a\x0d\x20\xf3\xd3\x9f\xdf\x9f\x5c\xdc\x1f\x34\xd1\xee\x8f\x00\x1b\x18\xfb\x57\x03\xce\x9d\xbc\x2a\x93\x33\xa9\x4e\xd7\x2c\xb9\xe9\x05\xc6\x15\x53\x86\xcb\x9d\x78\x12\xd5\x24\xd1\x9d\xb5\x40\x7c\xf2\xf3\x15\x79\x7b\xfa\xd2\xc5\x31\xc8\x29\x39\x31\x8c\x4e\x68\xf5\xb7\xcd\x92\xd5\x58\x8f\x64\x7e\x70\x26\x2e\x84\x5a\xeb\xe7\x09\xd5\xb8\xb0\x92\x9f\x2d\x37\x76\x86\x71\x02\xf3\x83\x9e\x0a\xf7\x6e\x90\x10\x4c\x18\xaf\x42\xa2\xdb\xa4\xee\x15\xfa\xd1\x2c\x24\xd4\xcd\x2c\x6a\x2f\x2b\xc4\xa2\x58\x9e\x62\x25\xf8\xeb\x6c\xe3\x55\x4e\xc9\xf8\x6a\x68\xc9\xc3\x37\xb3\x77\x3d\x43\xa0\x29\x27\xe3\xe4\xcd\xec\x1d\xd9\x88\x34\x5c\xeb\x3a\x7c\x8b\xf1\x18\xf3\xdc\x71\x1b\xa6\x6a\x3d\x58\x64\x88\xbe\x93\x64\x61\xcb\xd2\x44\x13\xfe\x99\x6e\x81\x3e\x68\x37\x42\xbb\x9d\x13\xd4\xd7\x42\x42\x4c\xc8\x82\x11\x08\x07\x51\x22\xa8\x5f\x62\x34\x59\xfb\x15\x73\x4c\x65\x1f\x69\x8a\xbe\x93\x6c\x53\x94\x90\x71\xd9\x44\xab\x80\x98\xcd\x13\xb8\x60\x85\x48\x27\x4a\x4c\xba\x6a\x86\xd5\x05\xfa\x71\x63\x98\x86\xd9\x18\xac\xbd\x60\x15\x0c\xae\xd0\x6b\x4f\xd9\xa2\xc2\x02\xf8\x45\x55\x16\x42\xea\xab\xdf\x7d\x41\xef\x55\x47\x72\x51\x2c\xcf\xa8\xa2\xe7\x4b\x9a\xb0\x99\x29\x21\xde\x73\x49\xde\xcc\xde\xb5\xbb\x20\x37\x51\x32\xe0\x81\x09\xfb\xa2\xd9\x01\x60\xf3\x40\xce\xb6\x97\x21\x88\xc4\x20\xdc\xc7\xa9\x64\x6c\x74\xb8\xe1\xe2\xa8\x52\xfa\x5c\xf4\x55\x2b\x4a\xb1\x2a\xe9\x06\xd8\xb7\x8c\x13\x51\xa6\x90\x68\x35\x08\x6d\xaa\x92\xb5\xc3\x79\x4a\x3c\x73\xcc\x07\x67\x4a\x63\xbf\xa9\x49\x85\xc4\x19\x4b\x61\xc0\x0d\xf6\x58\x33\x6f\x25\x41\x10\xeb\xed\xd8\xba\x6e\x06\x8d\xd6\xc8\x15\x42\xcf\xc4\x2d\x2b\xdb\x35\xdc\x06\x0c\xba\xa6\x3c\xd5\xe7\xcf\x13\xb1\x01\xfe\xcb\xad\x1e\x14\x82\x68\x31\xc4\xfc\x9e\xe6\x62\xc2\xa6\x44\xa5\x64\x16\xae\x3a\xea\x27\x7c\x20\xe4\xdc\x45\xda\x6b\x2e\xaa\xde\xaf\xdb\x85\x77\x04\x4f\x2a\x59\xd1\x3c\x0f\x2a\x62\xb5\x1c\x92\x42\xdc\xdd\x74\x3a\x7d\xba\x67\xcc\x98\xbe\x6c\x78\xd1\x3f\xf1\xa2\xcc\x6e\xb3\x9c\xad\x86\x21\xa5\x40\xb7\x23\x92\x2d\x6d\x39\xd5\x23\x7b\x6d\x98\xf1\xd3\xbf\xd1\xef\x38\x9f\x56\x5e\xfb\xcf\x8b\x62\xf9\xd9\xbc\xb3\x20\xf1\x90\x5b\x99\xa8\xdc\x7f\x8d\x7e\x77\x48\x44\x2b\x96\xfa\x2e\xda\xeb\xc3\xb8\xac\x5c\xa1\x69\xbf\x6d\x68\xf4\x4a\x6a\xae\x38\x41\x2e\x16\xd3\x19\x98\x9b\x74\x78\x28\x11\x99\xd2\x02\x8f\xd8\x34\xca\xb8\xd4\x12\x8c\x5a\xb3\xac\x24\xe2\x2e\xa8\x67\xdc\x7d\x19\xfa\x14\x99\xa9\xc9\x55\x4f\xf0\xe0\x7a\xb3\x8b\x62\xb9\x07\x0d\x79\x6b\x8f\xa5\x3e\x22\x73\x42\xc0\xb4\xd8\x22\x1a\x7a\xf5\x9a\x43\x2e\x72\xca\xc3\xba\xb7\x87\xb2\x23\xb0\xec\xa5\x28\x13\x76\x39\x7b\x37\x6c\xe5\xb6\x35\x61\xf8\x27\xdc\xe5\x44\x11\xfd\x95\xe0\x50\x3b\xc1\x7b\x2b\x1a\xcc\xbd\x07\x83\x9a\xd8\xdc\xa8\x21\xef\x4c\x06\x59\x43\x49\x26\xde\x68\xa2\x34\x6e\x33\xc1\xfb\x89\x85\x4c\xa6\x64\x26\xa4\xcc\xf4\xfd\x34\xec\x3e\x2d\x99\x65\x18\x52\x3d\xc4\x15\x2c\xd8\x3f\x72\xfc\x66\xdf\x82\xff\x1a\x78\x5f\xd4\xb5\xb0\x15\x23\x05\xe7\x1b\x5a\xf6\x33\x75\x1a\x8c\x81\x7e\x0d\xa6\xc1\x12\x05\x42\xc9\xab\x97\x8b\x2c\x9c\x59\x4e\x77\xb2\xf9\x76\x4d\x69\x78\x8f\x92\x22\x06\xa4\x9c\x30\x5b\x47\x10\xc5\x49\xcc\x43\x0d\x69\x91\xc3\x60\x84\x55\x99\x42\x0a\x30\x87\x89\x1a\xae\x6c\xf2\x5a\x58\xd8\x5a\xdc\x91\x02\x39\x74\x14\xa8\x90\x92\x99\xd9\x43\x23\x43\x7d\x14\x51\x69\x86\xbb\xae\xd4\x89\x0c\x88\x4d\xdc\x6b\x14\xcd\x90\x05\x59\x1f\x7b\x51\xda\x12\x20\x97\xb3\x77\x41\x5a\xa6\x39\x61\xff\x28\x9f\xc7\x4f\x31\xe2\xe0\x8d\xc7\x08\x10\x32\x27\xf2\x61\x40\x88\xb1\x39\xc5\x76\xb7\xe0\x21\x4a\xd8\x9b\x77\x34\xa1\x9d\xf8\xf4\xaa\x91\x7b\x0c\xea\x10\x18\xa2\xf6\xc4\xd4\x48\xb0\xd4\xce\xab\x7e\x1a\xac\x9c\xa3\x41\x6e\x14\xbf\x5a\xcc\x11\x36\xdd\xb3\x93\x71\x34\xe9\x5b\xc2\xe5\x51\x82\xcc\x0f\xae\x2b\xce\x59\x3e\x3f\xc0\xf4\xe2\x0b\x11\x7e\xbc\x46\xf1\x00\x2b\x28\x99\x2c\x04\xd7\x08\xcb\x50\x64\xfd\x72\x61\x14\x9c\xb0\x95\x63\x1a\xe6\x8b\xbc\x5e\x5c\xc2\xd9\xd5\xa5\x16\x43\xb0\x1f\xce\x13\x1a\x7a\x51\x29\xd3\xa6\x39\x7f\x68\x6c\x78\x1e\x5c\x91\x34\x2b\x59\xa2\xf2\x6d\x30\xfb\xb5\x5e\x19\xb7\xf3\x9b\xf3\xab\x9b\x04\x69\x3d\xe4\x14\x2f\x0a\x46\x4b\xe9\xd7\x3e\x3a\x9f\x59\x0d\x43\x86\xb5\x23\xa1\xe5\x9f\xac\xce\x0e\x18\x70\x49\x68\x68\xc8\x82\x95\x9b\x4c\xca\xec\x96\x91\xf7\x2f\x3d\x76\xac\xbe\xdf\x78\x42\xf7\x40\x55\x9a\x79\x9f\x95\xe2\xcb\xf6\xad\xd1\x30\x5d\xe5\xfa\x4a\x0d\xa4\x5a\x6f\x66\xef\xba\x07\x08\x5f\xfc\x30\x4b\xeb\x89\x3c\x87\x92\xb0\xcd\x82\xa5\xfa\x7a\xde\x54\x0b\x36\x29\xf4\x0c\x46\x5b\x2f\x49\x73\xaa\xb8\xe1\xa2\x8f\xc8\xb9\xb5\x9f\x17\x4a\x2f\x57\x9e\xea\x86\x55\xb1\x07\xcd\xee\x19\xa2\x41\xcb\x11\x16\x41\x9c\x0d\xe0\xf1\x68\x7d\x51\x0a\xcc\x8d\x94\x6f\x49\xa2\x47\x24\x15\x56\xf9\xaa\x0a\xa9\x4a\x46\x37\xbe\xd4\x55\x43\xe8\xf0\x30\x9c\x53\xdf\xac\x8d\x24\x6b\x9a\x81\x30\x75\xd5\x2c\x6b\xe3\x56\xb8\xf4\xc1\x6d\xf2\xb5\x9b\x9c\x62\x5f\x4b\x90\x72\x10\xfc\x90\xf1\xab\x2d\x4f\x30\xd3\xc1\x5e\xb0\x6f\xf4\x3c\x8a\x20\x5b\x15\x16\x8c\x37\x19\x87\xdc\x05\x20\x18\xdb\x0a\x01\xa8\x2c\x75\x4a\x6f\xc7\x6d\xd5\xda\xfd\x43\xef\x8a\x86\x86\xad\xc1\x38\x25\xe4\xbd\xb8\x63\xa5\xe5\x3b\x56\xfa\x19\x97\x2c\xad\x12\xa6\xe5\x12\x35\xa9\x0a\xd0\xaa\xf3\x44\x37\xfd\x31\x5b\xad\x5d\xdb\x30\x96\xd5\x3d\xad\x55\x62\xf6\x89\x54\x92\xae\x18\x84\x44\x6a\xf1\x04\x2c\x7f\x05\xd9\x88\x12\xd1\x79\x03\x4b\xbc\x90\xf7\xc0\x10\xef\xc5\xea\x3d\xbb\x65\xa1\xfa\x29\x3b\x27\x62\xdb\x36\xa0\x4e\x72\xb1\x22\x39\x7c\x6d\x83\x16\x3d\x36\x2f\x82\x0b\x9c\xb2\xa4\x86\xfd\x06\xd1\xf1\x47\xab\x9f\xfa\xb8\x5c\xa2\x66\xea\x9c\x2f\x85\xfe\x0b\x15\x53\x6c\x51\xad\xe6\x07\x71\x4d\x48\x2e\x56\xc8\xfc\xb1\x4d\xa6\x54\x4d\x8e\xf4\x64\xaa\xa4\x09\x23\x45\x56\xb0\x23\x9b\x3c\x4d\x73\x8c\x20\x15\xa0\xf2\x65\xb3\x89\x14\x8d\x9f\x1f\xa8\x84\xb0\x2f\x2c\xd1\x30\x43\x3d\x44\x43\x39\x46\x3e\x2e\x97\x7f\x9d\xee\x0f\xfe\x0f\xb4\xb8\xca\xfe\x0e\xec\xa0\x5e\xdd\x20\x3e\xb2\xdd\xa7\x96\xf0\x64\xf6\xf7\xda\x1b\x23\xb1\xbf\x87\xd9\xc8\xc2\x4a\x6c\x1b\x5a\x38\xed\x20\x16\xf3\x67\x5c\x54\xab\xb5\x86\xdc\x5a\xe4\x50\xaa\x82\x71\x55\xa2\xeb\x09\xe8\x84\x10\x79\x75\x2b\x75\xa6\x84\xfc\x4c\x4b\x8d\x5a\x8e\x31\xf0\xc0\x79\x45\xeb\x45\xda\x5c\x7e\x6e\x0f\x7a\x15\x49\xb8\x4e\x4e\x42\x35\x91\x4d\x33\x59\x56\x00\x85\x38\x98\xe3\xcc\x9e\x81\xd9\xf9\xec\x8a\xa9\x5e\x75\x74\x0d\x63\x6c\x1f\x00\x70\x56\xc0\x77\x16\x8c\x2c\xe2\x76\x61\x1b\xed\x0b\x60\x6b\x10\x0a\x1f\x9d\x4a\xd6\xc8\x1f\xb3\x5b\x56\x6e\x4d\x52\x1f\xbd\x28\xee\x79\x48\x3c\xf3\x74\xc7\xa6\x0f\xf8\x82\x1b\xfe\x22\xc8\x88\x88\x3c\x03\x34\x65\xeb\xbd\xd4\xf9\x09\xe7\x07\x34\xcf\x9f\x3c\x9d\x1f\xe8\x43\xd2\xfc\x17\x54\xfe\xe0\x66\x3f\xb6\x9c\x9b\x08\x72\x79\x7a\x6f\x99\xe6\x63\x05\x67\x66\xa3\x05\x2b\x6b\xa3\x57\x66\x55\x62\x54\xb2\xb8\xf6\xa4\xff\x6c\x97\x57\x91\xa8\x94\xd8\xe1\x62\x87\xd0\xe9\x2e\x31\x7e\xc6\x1d\x6f\x90\xec\xd6\x8d\xf6\x3d\xde\x94\xc5\x94\xa2\x4f\x40\x32\xfa\x5f\x35\xaf\xfe\x14\xe4\x6b\x10\x98\xee\x0f\x9a\x8b\x93\x6b\x9b\xda\x3d\x00\x9e\xe1\x83\xbc\xd1\xa2\xdf\x8e\x21\xb5\x03\xc4\x75\x9f\x00\x94\x39\x55\x64\xa1\xdf\x3e\x03\x7b\x72\x11\x4f\xcf\x6e\x14\x03\xed\xd0\x5f\x7b\x83\x6c\x01\x40\x8d\xcc\x84\xd4\xbc\x3e\x10\x48\xb5\x0e\xe3\x93\x36\x12\xaa\x07\xb4\x22\xd7\x83\x20\xfd\xae\x14\x5c\xed\x0b\x25\xdb\x29\x02\xa6\xa5\xfe\x59\xef\x37\x8a\xcb\xed\x00\x1f\x68\xe1\x25\x81\x1a\x76\x1f\x63\x72\x8e\x16\x39\x8f\x6a\x4d\x82\xa9\xd5\x04\x37\x18\x0a\x4f\x65\x1c\xff\x61\xb5\x07\xf7\x86\x1a\xb8\x89\x0e\x87\x17\x7a\x95\x86\xa9\x9e\xf1\x67\xed\x7c\xb9\x75\x9b\x3e\x50\x35\x31\x96\x7d\x94\x41\xa1\x9b\xa7\xfa\x99\x52\x9e\x2e\xab\x1c\x2f\x27\x62\x3d\xdd\x11\x1e\xf5\x93\x7a\xec\x04\x14\xe2\x99\x92\x44\xdc\x71\x2d\xc7\x93\x08\xdb\x81\x92\x2f\x48\xfa\xf7\x80\xee\xec\xea\xe2\xe4\x7a\x26\xca\x20\xc5\xa3\x7c\xfb\x31\x54\xc2\x71\xd2\x17\x19\x3f\xe9\xf1\x13\xdb\xe1\x57\xea\x65\xd4\x67\x56\x52\xbe\x62\xc6\xf4\x0a\xd6\x8e\x3b\xf8\x2e\x15\x9b\xb0\x8a\xbd\xc8\x92\x1b\x42\xcd\xb5\x83\x67\x5b\x32\xe3\xae\x81\x9e\x18\xf0\x4b\x22\xf2\x3c\x93\xc0\x7c\x00\x42\x70\xa7\x1b\x36\x15\x3b\x75\x14\x2b\xd6\x6c\xc3\x4a\x9a\x9b\x75\x51\x9b\x36\x0c\xb5\x50\xef\x4e\xc9\xeb\xe7\xdf\xbe\x26\x4f\x5e\x3c\x7f\xf9\xcd\xff\xf7\xff\xfc\xbf\xaf\xbf\xfd\xf6\xd5\xb7\x4f\x63\x67\x56\x40\x15\x46\xba\xc8\xb7\x0d\xcd\x4e\x7b\x12\xe9\x92\x9d\x68\xb6\x53\x70\x22\x0a\x56\xd2\x58\x2a\x3e\xb9\x95\x8a\x6d\xe4\x94\xbc\xcf\x78\xf5\x45\x77\x95\xe4\xd5\xcb\x3f\xbe\xfe\x4e\x2f\xe7\xf9\xf7\xdf\x7f\x7f\xa4\xe1\x98\x33\xac\xbc\xe8\xf0\xa0\xd3\x4e\x9c\x5c\x9c\x84\x86\xb5\xbb\xc4\x6d\x7f\xf3\xfd\x8b\x6f\x5f\xda\xfd\xd9\xa0\x33\x2d\x23\x62\x11\x54\x5a\x66\xf9\x56\x1f\x42\x29\x16\x39\xdb\xe0\x39\x84\xcb\xbc\xe1\x78\xfa\x96\xe7\xb4\x90\x35\x87\xed\xf6\x58\x6f\xe8\x8d\xab\x7a\x66\xbd\x51\x75\xdf\x98\x5e\x2b\xe3\x49\x5e\xc9\xec\x96\xf9\xbc\xf7\xcb\xe7\xcf\x9f\x3f\x3f\x7e\xf9\xfd\xf7\xdf\x7f\x1f\x92\x80\x0a\x63\xc2\x23\xff\x31\xfd\xe7\xdd\x5f\xbf\x4c\xea\xc2\x98\x93\x8c\xab\x89\x28\x27\x78\xb5\xc3\x41\x6f\xfa\x5d\x01\x9f\x04\xa2\xc8\x70\x4d\xca\x6e\x27\x14\x84\xf4\x1c\x56\x39\x50\xb2\x44\x94\xa9\xbe\x7c\x8a\x66\x11\x8b\x8c\xef\xcd\x8c\x09\x1a\x9d\xcc\x05\x33\x38\xd1\xeb\xc8\xbc\x2c\xcd\xb0\x2d\x18\x61\x5f\xe8\x26\x56\xb0\xb2\x96\x80\xc0\x36\x32\xd1\x32\x8e\x11\x86\x26\x79\xc6\x35\xe5\x15\xf9\xbe\x1a\x18\xd0\x46\x9c\x83\xbd\x66\x90\x6e\xf5\xb4\xd9\x3e\x66\x2e\x5f\x0b\x71\xe3\xdb\xb3\x22\x4a\x11\x25\x8a\x09\x4a\xa5\x2d\xf5\x88\x7e\x71\x68\x45\xd2\xd7\xd0\xb8\x89\x98\xec\xeb\x4a\x14\xe6\x16\x86\xd5\xce\x14\x8c\xac\x50\xf8\xb2\x28\x18\x4f\x77\x47\x58\x08\xa5\xc4\x66\x6a\xed\x54\x86\x71\x91\x74\xc9\x6c\xbd\xbc\xe0\xeb\xb6\x49\x04\x4d\xc5\x62\xdf\x0a\xa6\x47\x37\x6a\x7d\xf4\xfc\x5d\x6c\x0b\x2a\x25\xf8\x7a\x2d\xc9\x56\x54\x44\xde\x65\x2a\x4c\xc4\x95\x30\x0b\x35\xda\x92\x05\x23\x12\x2b\xd0\x99\xe5\x62\x9d\x56\x9c\xc2\x96\xbd\x46\x28\x61\xb6\xf2\xe0\x33\x04\x35\x1d\xd8\xf9\x17\x5b\xb2\xa4\x79\x8e\x92\x5d\x69\xa9\x9b\x17\xb3\x09\x23\x1f\xe1\x34\x77\x19\x22\xa3\xd0\x98\xa6\xb9\xb9\xc1\xa0\x23\x5b\x30\x6f\xa7\xf5\x5b\x47\xc0\xee\xab\xe8\x70\x6a\x86\xb3\x32\xbb\x65\xbd\xf5\x2e\xcf\x9a\xcd\xc9\x32\xcb\x19\xf7\xea\xec\x3a\x96\xa8\x56\x5f\xa4\xd0\x32\x72\x08\x95\x44\xd5\x06\x62\x64\x50\xc4\x7d\x92\xec\xdc\xb8\x55\xb6\x67\x33\x86\x1d\x25\xd0\xbe\xb7\xa7\x3d\xd9\x2d\xe9\x67\x2d\xf3\xa5\x02\x12\x80\x89\xaa\x37\xb9\xe4\xe1\x59\xa4\xa3\xbd\xc4\x25\xa3\x69\xc6\x99\x94\xcf\xf2\xec\x96\xe9\x3f\x6c\x81\xfa\x88\x69\x37\x6d\xea\xd3\x9e\x58\x37\xd2\xa7\x3b\x60\x9b\x92\x73\x9e\x94\x8c\x4a\x13\x73\x11\xad\xad\x98\xe1\x8d\x67\x5f\x0a\x56\x66\x4c\x5f\x41\x59\x54\x65\x26\x2a\x09\x29\x80\x4a\x48\xd7\x0f\x0a\x63\x3e\xd1\xab\x24\xe6\x39\x01\xa6\x8d\x3a\x8d\x65\x92\x54\x3c\xd5\x7c\x1a\xa3\xb7\x5b\xf0\x9f\x99\x92\x33\xe6\x56\x64\x33\xab\x29\x41\x56\x4c\xa1\x37\x33\xda\x55\xb0\x5c\xac\x99\x2c\x34\xb4\x59\x0b\x2e\x0c\xa4\x92\xbf\x55\x59\x72\x93\x6f\xfd\x3b\xfd\xfd\xf3\xbd\x35\x77\xa0\x81\x32\xf6\xcd\xf7\x62\x75\x56\x8a\xa2\xd0\x24\x6b\x4f\x1c\x0d\xc3\x7c\x60\x1b\x51\x6e\x67\xa5\xd0\xd7\x7c\x46\xd5\x3a\x3a\x4a\xc7\x5a\xae\xb2\x0d\xf8\xd5\x9d\xd2\x3c\xf9\xa1\xa4\xc5\xfa\x47\xca\x57\x27\x4b\x15\x7c\x6c\x83\x47\x73\x77\xf2\xfe\xa3\x01\x8c\xad\x49\xe1\x5a\xfc\x28\xa4\x3a\x49\x22\x61\x60\xad\x07\x11\xef\xeb\x13\x27\x70\x54\xd1\x58\x56\x46\x5c\x6f\x9c\xdb\x8a\x6e\xba\x12\x16\x9b\xd3\xda\xcf\xa4\xf6\xff\x15\xb5\x79\x34\x53\x92\xe5\x4b\xf2\x84\x2e\x23\x05\x41\x80\x62\x99\xb1\xd7\x99\x61\xac\xdd\x50\x0c\xad\x50\x88\x52\x9f\x4e\xc9\x9b\xad\xab\xd8\x8a\xd8\x36\x34\x24\x14\x50\x93\x61\xd7\xc8\x5a\xdc\x0e\x2d\x13\x58\x88\xb0\xbc\xed\x08\xf0\xfc\xe0\xec\xf2\xe3\x6c\x7e\x00\xfa\x43\xcd\xa4\x1b\x02\x76\x47\x8d\x81\x3a\xcf\xc5\x1d\x91\x62\x03\x99\x4b\x68\x9e\x77\xd9\xf7\x60\x6d\x3e\xe0\xf4\x6a\x8e\x10\x73\x42\x22\x0f\x5a\xd2\x0d\x33\xb6\xd4\xcb\xb7\xd7\x9f\x2e\x2f\xf4\xa8\x27\xa7\xa7\x6f\x67\xd7\x53\x8d\x7f\x43\xa3\x9a\x86\x06\xcf\x40\x1d\xde\xad\xa8\xc0\xd5\xa4\x49\x26\xbd\x4d\x9d\x5f\xcc\x3e\x5d\xcf\x0f\x90\x72\xfe\xa9\x83\xbc\x01\x5d\xb3\x9c\x81\xb2\xa4\xbd\xcd\x7b\x50\x85\x23\x99\x72\xcf\xf3\x03\x5c\x53\xb8\x16\xac\x35\xc6\x9b\x13\x69\x2d\x86\x08\xc3\x57\xac\xa9\x84\xaa\x23\x58\x3a\xaf\x28\x85\xad\x1c\xd2\x25\xd2\x86\xaf\x12\x80\xce\x80\x11\x68\x1b\x77\x11\x33\x34\xcf\xad\x15\xcf\x2e\x2c\x7a\x72\x4e\xc1\x45\xe0\x7e\x87\xd6\x14\x5b\x40\x68\xcc\x1a\x99\x6a\x54\xb8\x3f\x36\xbd\xcd\x12\x54\x2b\xcc\x4a\xa1\x44\x22\x7a\xed\x21\x20\x5f\xfa\x01\x1b\x18\x9f\x55\x98\xee\x84\xa6\xc6\xf8\x6e\xd8\xf1\x0d\x4b\x3b\xd4\x7e\xa8\x91\x38\xd2\x0c\x95\x7d\xa4\x70\x89\x2d\x27\x74\x79\x3d\xbb\xfc\x78\xfd\xf9\xcd\xc7\x8f\xd7\x48\xcb\x72\xb6\x54\x64\x91\x53\x7e\xb3\xaf\x5e\xc0\xdb\xeb\xd5\x3e\x85\x97\x7d\x45\x1c\xe4\xbb\x68\x56\x1b\xb6\xb6\x70\xc1\xbd\x1d\x87\x45\x4e\x3d\xbf\xd9\x71\x03\x2d\xa9\x9d\x42\xc8\x18\xd7\x67\x77\x7a\x44\x72\x46\x6f\x23\x02\x72\x2d\x10\x80\x82\x65\x2d\x84\x21\xdd\xad\x11\x35\x5f\xb2\x2f\x47\x15\x81\xd8\xf9\xec\x36\x14\x7b\xdd\x05\xb5\xd7\xbf\x23\xa8\x21\x73\xe2\xac\x54\xe7\x1c\xf2\xa8\xc7\x5c\xe0\x3b\xd9\x14\x8b\x08\x2e\x6d\x6a\xad\x33\x96\x07\x63\xa7\xbb\x16\xb4\x33\x48\x5c\x76\xef\x5e\x8c\x61\xfe\x2f\x44\xca\xa0\x4e\x4d\xdf\x1d\x78\xeb\x77\x38\x3d\x3f\xbb\xd4\x9d\x50\x79\x95\xeb\xbf\xc4\x92\xe8\x6f\x0f\x41\x03\x62\x47\x9f\x68\xb6\xd1\x88\xe3\x50\xd2\x26\x6c\x49\xd5\x02\xfe\x86\x6e\xed\x79\x19\x7d\xa1\xa5\xdf\xe0\x61\xa5\x69\x18\x10\x18\xe7\xa0\x63\x7e\x0d\xab\xc5\x6c\xcc\x24\x01\x8b\x8c\xab\x9a\x10\xd2\x89\x7f\x85\x42\x0f\x4b\x9a\xe5\x5a\x5a\x3e\xe7\x0b\x51\xf1\x54\x73\x5c\x31\x05\x66\x93\x59\x7b\x17\xe9\xd8\x84\xf3\xa7\xb3\xd9\xb3\xeb\xd3\x19\x3a\x53\xc5\xd4\xb8\xfa\x30\x8c\x03\xab\xe7\xb3\x81\xcc\x49\xc8\x17\x19\xd8\x20\xc7\x1c\x05\xa5\x00\x4e\xb2\xb2\x64\xb2\x30\xc5\x37\x6c\x28\x33\x4b\xaa\x32\x53\x5b\x47\x59\x2d\xb6\xa8\x24\x5b\x56\xf0\x24\xe9\xad\xc8\xc2\xfa\xe6\x24\x81\x12\x17\x40\x73\x93\x0a\xbc\x20\x89\x58\x2e\x8d\xad\x08\xf9\x31\xbd\xda\xb2\x64\x89\x6a\x05\x3c\x91\x77\xe1\xc0\xe1\x05\x4d\x6e\x26\x8d\xaa\xb7\x47\x36\xfc\xd8\x11\x36\x5b\xe6\xdf\xd4\xe1\x4f\x8f\x34\x7f\x61\x90\x51\xac\xf4\xd9\xfc\x40\x25\xc5\xfc\x00\x18\x3e\x0a\xf0\x0d\x0f\xe3\x01\xda\x67\x41\x83\xfb\xc7\x38\x1f\x8d\x9d\x34\x42\xbc\xae\x1d\x94\xd1\x19\x15\x6e\x01\x82\x02\x0e\xfb\xc8\xe9\x42\xa3\xc2\x25\x17\x1c\x3c\x20\x9d\xaa\xc6\x88\x7d\xc6\x13\x52\xca\xb5\xf5\x51\xd6\xb7\xe4\xec\xc7\xd3\x59\xc3\x83\x38\x29\x8e\x5f\xbe\x0c\x06\x7e\x54\x69\x71\xfc\xfa\xbb\x23\x68\xf2\xe2\x8f\xdf\xe3\x1f\x2f\x5f\xd5\x7f\x7d\xf7\x1c\xff\x7a\xfd\xcd\x37\xaf\xcc\x5f\xaf\x5f\xbf\x76\x7f\xfd\x31\xc4\xcf\xc4\x1f\x5f\x33\x21\xa4\x3e\xb7\x99\x40\x5d\x54\x22\x36\x0b\x2f\x9f\x85\x3d\xd3\x23\x82\x96\x1e\x7b\xf9\x23\x41\xe2\x33\xc7\xdb\xf0\x14\xf5\xed\xd6\xec\xe9\x4e\x31\xd8\xb3\x37\x29\x02\x67\x61\x9f\x23\x32\x28\x26\x5d\xaf\xa4\xa7\x7b\x47\x96\x5f\xe2\xa0\x70\xef\x25\x74\xa4\xc5\x23\x64\x02\xeb\x8b\xfc\x62\x66\x8e\x63\xd0\xee\x9c\xdd\x9d\x18\xf4\x63\xa5\xee\x89\x42\x77\x7a\x3e\x32\x0e\x15\x95\x5a\x09\x1f\x87\x82\x40\xd0\x8f\x45\x95\x18\xb1\xe8\x2f\x8a\x45\x85\xb9\x08\x8f\x83\x46\x05\xa8\x48\x98\x4a\xd2\xc3\x43\x48\x43\xcb\x53\x5a\xa6\xc6\xaf\x59\x09\x13\x39\x12\x2d\xa9\x8e\xd7\x28\x15\x0c\xb7\xbc\x62\x4a\x1f\x18\x1c\x16\xaa\x02\x54\x92\x36\x62\x8c\x34\x00\xf4\x71\x6a\x44\x1d\xb3\xd5\x9d\x5d\x5c\xb5\x71\xf8\x3e\x08\x3a\x78\x50\x06\x67\x1f\x01\xda\xff\xf6\x15\xfe\x77\xc4\xe1\x23\x0e\x0f\xfe\x1a\xc6\xe1\x8c\xaa\xaa\x64\x67\x4c\xb1\x44\x7d\xbc\x65\x65\x99\xf5\x1b\xd0\xde\x85\x3a\xb9\xda\xb5\x4a\x80\x39\xb6\xb4\xe6\x68\x33\x45\xf8\xee\x29\xeb\xc2\xf7\x53\x1d\x4c\xe3\xee\x07\xc9\x38\xa1\x68\x1e\x24\x92\x15\xb4\x84\x68\x6a\xa0\x0e\x80\x2e\x79\x50\xb3\x28\x0b\x9a\x30\x79\x04\x66\xc8\x22\x67\x7f\x22\xf3\x83\xab\x8b\x93\xeb\x77\x55\x9e\x6f\x2f\xc1\xf0\xff\x2f\x60\x09\xfd\x70\x72\xf5\x6f\xfe\x97\x60\x02\x39\xba\x64\x90\x84\xe5\xaa\x2a\x00\x5d\xbc\x17\xc9\xcd\xbf\xcc\x0f\x82\x37\x75\x7e\x00\x56\x5b\x13\xc8\x8c\xc9\x44\x0e\x10\x27\x62\xe8\x92\xb7\xfb\x23\xc2\x36\x85\x02\x8b\x81\x30\xee\xa2\x71\xd7\x5c\x0d\x04\x5a\x29\x31\x41\xf8\xec\x2d\x10\x2f\x73\x01\xa6\xef\xf3\x59\x2f\x29\x7e\x57\x37\xad\x13\x11\xd7\x86\x50\xf4\x88\x6f\x39\x94\xaf\x4a\x1a\x44\xf1\x76\x5a\x2f\xc5\x75\x50\x98\x8b\x46\x6b\x1b\x31\x39\xf4\xd3\x59\x34\x72\xb0\x0b\x10\x2b\xc6\x59\x99\x25\x7f\x3e\x9b\x0d\xf5\xc4\xff\xa1\xdd\xc3\xb8\xb4\x4b\x62\x7e\x21\x7f\x3e\x9b\x11\x29\xac\x73\x23\x49\x68\x19\x0e\xe5\x07\x8e\x24\x15\xfc\xf0\x50\x11\x89\xb7\x09\xfa\x8a\xe5\x12\x54\x8e\xa2\x34\x26\x29\xb0\x98\x42\x6c\x22\x50\xbc\x3f\x9f\xcd\x90\xb1\x88\xd8\x8f\xc0\x93\x9e\xe9\x47\xc1\x78\xca\xd2\xda\xa2\xab\x09\x16\xcc\x56\x94\xe2\x56\x3f\xbe\x05\x53\xa0\xef\xac\xc3\xa5\x23\xeb\xe4\x4e\xc7\x3c\x7d\x70\xc8\xdf\x9a\xd1\x5c\xad\xef\xa9\xf0\xc0\xce\x9a\x1b\xdc\x53\xe3\x82\x1d\x67\x61\xdc\xde\x89\xd5\x5d\xf8\xdf\xdb\x2f\x49\x5e\x0d\x70\x1e\x38\x6f\x75\x40\x96\x15\x90\xd4\xa4\x85\xa4\xa0\x7e\x65\x6f\xec\x71\x23\xe4\x9a\x99\x41\x41\xf5\x6a\x6a\x70\xea\x27\xb5\x14\x65\x8b\x6f\x9d\xc6\x7c\xce\x9a\xbc\x50\x23\x4a\xd6\xa4\x01\x58\x71\xa1\xbf\xaa\x23\x3f\x0e\x0f\xc9\xf9\xec\xa7\x2b\x92\x56\x9b\x4d\xd0\x29\xca\x6d\xc3\xba\x7a\x58\x64\x6f\x2d\xad\xf9\x96\x2c\xb6\x8d\x60\x85\xa6\xc5\x25\xa8\xf5\x37\x7b\xdd\x54\xb9\xca\x8a\xdc\x8b\xfe\xc6\x0c\x52\xa4\x92\xe8\xf6\xa0\xff\x63\xe3\x2d\x31\x6a\x2a\xcf\x76\x73\x07\x11\xc8\x5d\x53\x98\xec\xce\x3b\xc1\xf0\x12\xb8\xe8\xd0\x0f\xb0\x4e\x60\x4e\xee\x4a\x5a\xc4\x94\x97\x08\x4e\xa0\x3b\x87\x87\xcf\x0e\x0f\x71\x38\x43\x64\xc8\x1a\x14\x9f\x36\x34\xe3\xf0\xf0\xd9\x7f\x68\x58\x3c\x3b\xba\x65\x6a\xfd\xe2\x30\xf0\x88\x4c\x02\x11\x0b\x83\x56\x5c\x2b\x9c\xd6\x82\xad\x32\x6e\x67\xd4\xc3\x1d\x1e\x9a\x2a\xab\x52\xc4\xdc\x1b\x6a\x10\x1e\x1e\x9a\xb9\xfd\x37\x0d\x07\x94\x15\xb7\xb2\x23\x8e\x31\xfc\xc2\xdc\xc0\xb3\x92\x2d\xb3\x2f\xc3\x9f\x09\xb6\xb7\x9a\xe9\xe6\x11\x83\x07\x9b\xab\x46\xef\xea\xa8\x06\xa1\xb5\x6b\x1b\x84\x78\x7c\x90\x23\x34\xd5\xa9\x32\xb9\x46\x03\xc9\x26\x20\xe6\x75\xc2\x4a\x4e\xc9\x85\x50\x80\x23\x08\xe3\xb7\x59\x29\xf8\x06\x8c\xf9\xc2\x64\xeb\xa7\x9c\x2c\x34\x51\xde\x30\x45\x73\xbc\x81\xa2\x4c\xd6\x4c\xaa\x92\x2a\x11\x2e\x33\xe1\xa8\x29\xda\x57\x68\xa1\x19\xdb\x32\xa3\x8a\xe5\xdb\xe6\xdd\x11\x55\xe9\x47\x61\x81\xca\x47\x24\x37\x61\x0e\x14\xd0\x98\x49\x7e\x66\x4c\x90\xfa\xac\x13\x9a\x67\x87\x87\x7e\xda\x2c\x3d\xea\xc7\x82\xf1\x2b\x45\x93\x1b\xbf\x5b\xf0\xdd\x58\x6f\xc9\xc3\x43\x45\x0b\x3b\x90\x7f\x73\xf4\x04\xf7\xbe\x33\x97\x58\xf3\x15\xee\xc4\x2d\xed\xb5\x78\x9d\x47\xfa\xc5\xca\xd5\x46\xdd\x2d\x4a\x26\x13\xca\x25\x46\x23\x37\xde\x97\x20\xb7\xac\xcc\x96\x5b\x13\xdf\x8f\xd5\x21\x40\x94\xc4\x3e\xc6\x97\x2d\x88\x5f\x6d\xac\xf7\x62\x6b\x83\xc2\xeb\xab\xad\x57\xa9\x04\x79\xbe\x27\xc7\x96\x15\xd9\xe0\x60\xc1\xf3\xd9\xb9\x63\x4e\x2c\xa3\xdd\x76\x5d\xab\xd3\xb0\xe1\x1d\x0c\x2b\x4f\x30\x8f\x53\xfd\x24\x45\x1d\x32\x3d\x25\x1f\x0b\x34\xb4\x6a\x09\xd7\x48\xc4\x4c\xb1\x72\x63\xcc\x90\x61\xfe\x64\x41\x35\x51\x30\xe3\xb0\x2f\xf8\x32\x35\x3f\x58\x08\x91\x37\xb8\x0b\x9e\xe5\xe4\x49\xc5\x25\x53\x4f\xf7\xe6\x31\x34\xb4\x3e\x5c\x7f\x1a\x04\xa9\x0f\xd7\x9f\xec\xb5\xd1\x7f\x42\xb4\xb3\xb2\x2b\x34\x46\x0c\x34\x79\x4d\xc9\x15\x0b\xbb\x8c\x19\x28\xea\xad\xe8\x31\xbc\x38\xb8\x6f\xbe\xd9\x3f\x20\x1c\x03\x7a\xf6\x7c\x12\x87\xe7\xa1\x5e\x9d\x0f\x82\x94\x0c\x33\x39\x85\x65\x8c\xdc\xf3\x57\xc4\xf0\x92\xa6\x66\x84\x70\x61\xf0\x9f\x31\x98\x83\x69\xdf\x57\x63\x05\x2f\x40\x29\x6e\x5c\xad\x09\xe7\x54\x18\x2e\x0d\xed\xa6\xb7\x25\xa1\xbb\xe3\x42\xef\xe1\xbb\x64\x67\x18\x18\x4d\x72\xde\x6c\xee\x04\x51\x69\xc0\xba\x30\xdf\x6b\xbe\xce\xae\x5d\x53\xf1\x20\x20\x18\x9a\x32\x1b\xea\x29\x30\x97\xae\x68\xd0\xb3\x60\xc8\x3e\xde\x65\xb9\x62\x25\xa4\x30\x8b\x7a\x16\x0d\x19\x47\x4b\xb5\xef\xe2\x2e\x58\xed\x9b\xb7\xdb\xc9\x5e\x3c\x8d\x58\xfd\x9c\xd5\x76\x82\x10\x44\x72\x91\xdc\x80\x7f\xe3\x94\xfc\xbb\x66\xb8\xe8\x16\x32\x00\xa1\x39\x18\xbc\xb8\x81\x50\x1a\xfd\xa5\x6b\x6d\x65\x9e\x70\x19\x92\x4c\x79\x0a\x3e\xb7\x9a\x27\x4b\x8f\xbc\xfa\x1e\x36\x1b\x5a\x14\x0c\x33\x4a\x71\x25\x9c\xc7\x60\x84\x7e\x2b\x9a\x71\x56\xea\x67\x45\x49\x9a\x2d\x97\xac\x64\x5c\x91\x82\xaa\xf5\x53\x1f\x95\x3d\x2b\x2b\xfe\xec\x8b\x11\xa0\xf4\xba\xef\x7b\x4d\x35\x84\x67\xa5\x58\xb0\x3d\xb0\x42\xa4\xa7\x0b\x64\xca\x36\xac\xad\x1c\x0f\xb2\x57\x34\x53\x2e\x6a\x99\x2a\xc5\x36\x05\xea\x4a\x69\x02\xea\xaa\xa6\x27\x12\x1c\x4e\xb6\x34\xf9\xb2\xb8\x08\xb2\x57\xf4\x96\x66\x50\xd2\x65\xda\x8c\x5b\xde\xd0\x1b\x1b\x76\x0c\x6e\x8a\x26\xc5\x42\x76\x6b\xa4\x1e\x7b\xfa\x11\xf9\x37\xc1\xe8\x23\x96\x1e\x41\x92\x06\x2d\x32\xc3\x30\xa7\xb3\x4f\xfe\xa1\x7c\xfb\x7c\x73\x6f\x74\xa1\xa1\x39\xd4\x97\xf5\x7c\xb7\x4f\x17\xec\x01\xd0\x41\xe5\x89\x89\x2a\x6a\xc0\x18\x42\x91\x9f\x1f\x79\x48\x13\x34\xe7\x95\xf5\x5e\x75\xca\xa5\x28\x07\x04\x62\x8d\x5c\xd3\xe0\x09\xc2\xf3\x42\x77\xba\x3c\x6f\x22\x7b\x23\x83\x84\x29\x87\x16\x3f\xf4\x21\xda\x93\x9a\x92\x9f\xf5\xc1\x99\xf8\xfe\x3a\xd9\x5c\xa6\x05\x9b\xfa\x21\x1d\xc5\x83\x38\x6c\xd6\x0a\x3d\xa2\x7e\x4e\x26\x97\x86\x28\xb7\x16\xb3\x78\x89\xe4\x36\xa2\x32\x85\x89\x8c\x2f\x1a\x3a\x0f\x3c\xe3\x22\x9c\x8a\x4b\x94\xb6\xc5\xd2\xa6\xe4\xc4\x05\x35\x12\xbb\x48\xc7\xd8\xdd\xf7\xda\x7c\xa0\x5a\x4c\x7d\x38\x76\xfe\x40\xcb\x9b\x0f\x54\xf6\x47\x68\x9f\xb7\x3a\xd8\x8b\xb7\xd1\x7f\xfb\xba\x05\x08\xb2\x95\x1a\x59\x86\xe0\x73\x3e\xbb\xc6\x4b\xa1\xc7\x21\x0b\x8d\x52\x21\x73\xb9\x4d\xee\xb0\x60\x90\x26\x48\xff\x42\xd6\xec\x0b\x4d\x59\x92\x6d\xea\xf0\xc8\x58\x0e\x26\xaa\x48\xce\xa8\x54\xe4\x3b\x1c\x53\x32\x75\x04\x26\x1b\xcc\xc2\x04\x01\x23\x39\x95\x6b\xeb\xd0\xb9\x35\x37\x70\x63\x57\x11\x16\x7f\xac\x17\x13\x18\xe4\x20\xb4\xa7\x71\x8c\x5f\x96\xcb\xe7\xf0\x09\x9d\xa2\xad\x43\x95\x71\xf5\xea\xe5\xde\x6c\x1b\x02\xfb\xe2\xe4\xfa\xa3\x31\x2b\x3a\x39\x05\xe9\xf2\x3d\x8f\x7b\x26\xa4\xfa\xb9\xcc\x14\x03\x87\xa5\xbd\x51\x7f\xb8\x7b\x9b\x33\x04\xcf\xc7\x28\x96\xd0\x9c\x5d\xaa\x4f\x86\x92\x3b\x3d\xd4\x6e\xbe\x0a\x94\xd0\x15\x64\x71\x4e\xd1\x99\x14\x32\x3f\x95\x14\xbc\xf5\x63\xc6\x49\x3f\x57\x20\x26\x53\xc2\xb4\x77\x30\xc9\x1d\x45\xca\x9e\xe4\x62\xb1\x60\x25\x4a\x54\x94\x37\xf0\x50\x3c\x52\x57\x7a\x99\x47\x44\x92\x54\xa5\x26\x48\xb6\x37\x2d\x8a\x3c\xb3\xac\x89\x7f\x57\x9c\x96\x34\x22\x2e\x16\x2c\x51\xbb\x98\x72\xfa\xa0\xdc\x17\x76\xa8\xfd\x59\xfe\x60\xbf\x7b\x48\xc1\x46\x0e\xb0\xe9\x83\x40\xda\x37\xde\xc5\xde\x11\x77\xb3\xff\xb1\x7b\xd3\x30\x6c\xef\xc3\xfe\x77\xe4\x31\x70\x02\x01\xaa\x65\x94\xc7\x42\x23\x9d\xb4\x91\x1b\xc0\x51\x03\x73\x01\x4a\x9a\x88\x52\xcc\xc4\x1e\xe1\xa0\x4e\x4e\x97\x60\xbb\x05\xc5\x12\x2d\xc1\xf8\xac\xc7\xa6\x26\xee\xd1\xf8\x2a\x2e\xaa\x55\x94\x10\xea\xfb\xbb\xcc\xbe\xa0\x9d\xca\xb4\x37\xc9\xd4\xc9\x37\xd3\x17\x2f\x9c\x0e\x54\x53\x5f\xd4\x65\xde\xea\xef\x21\xcf\x5c\xc9\x68\xc4\xd9\x7e\x6b\x98\x63\xeb\xab\xee\xfc\xcc\x95\x38\x22\x94\xac\xbd\xc4\x2e\x18\x1a\xd2\xcc\xe3\x12\x1a\x12\x52\xbb\x34\x2e\xf1\x7d\x64\xa9\xdb\xd7\xc6\x2a\xd6\x2b\x47\xcd\x5c\xd3\x58\x6c\x9d\xb5\xaa\x58\xcb\x48\xa4\xbe\x04\x38\xb2\x3e\xc9\x96\xb6\x1d\xe2\x08\xd4\xb6\x4c\x20\x57\x87\xbd\xbe\xf1\xa8\xe5\x88\x12\xe1\xa6\x5a\x30\xa8\x23\x2b\x4a\x75\x09\x61\xb2\xbd\x0f\xf2\x5f\x77\xba\x98\x7a\xf4\x56\xdb\x0f\x5b\xf1\x63\x6e\x23\xdb\x32\x61\xec\xa4\x4e\xb7\x36\x6d\xc6\x6c\x2d\x9d\xc2\x45\xd3\x6d\x2f\x95\x92\xe1\xb1\x22\xa4\x31\x2b\x6e\xa5\x49\x6f\x83\x60\xae\x90\x91\x63\x92\xd9\x65\xc1\x85\x42\x2b\x45\x9d\x1b\xaf\xcb\x37\xdf\x38\x76\xf8\xb7\xe7\x15\x44\xc1\xbe\x7a\xf9\xc7\xd7\x7f\x0c\x66\xa2\x89\x3b\x1b\xc4\x42\xc1\x07\x04\x83\xf7\x87\x83\xf7\xc5\xdf\xee\x1f\x81\xdb\x69\x3a\xcf\xc5\x0a\x62\x6c\xdf\x99\x90\xbd\x4b\xb6\x62\xbd\x7a\xf1\xf7\xa1\x4e\xfe\x23\xd1\x98\xdc\xb8\xd8\x26\xfa\x76\x68\x1e\x3d\x82\x7b\xd1\xdb\x36\x2b\x09\x8c\x08\xd9\x91\x44\xa5\x0a\x2d\x80\x70\xb0\x2a\xa4\x16\xc9\xe7\x62\x65\x6f\x18\x64\x2d\x8a\x39\xe9\xc0\x64\xc6\xb6\x0e\x16\x18\xa0\x04\x75\xba\xda\x55\x76\xcb\x78\x28\xd1\xb0\x0b\x98\x4e\x59\x1a\xcf\x86\xb0\x04\x36\x09\x49\x36\x50\x68\xbc\x8f\x66\xf9\x10\x42\x0b\x2b\xdd\x0f\x31\xe5\x62\x35\x58\x97\xf1\xbe\x6e\x6b\xc9\xe8\xb2\xca\x73\x90\xe9\x2d\xd3\x83\x2f\x27\x17\x2b\x4b\xb6\x42\x5b\x01\x3e\xd6\x23\x66\x20\x4a\xe5\x02\x52\x46\x37\x74\x03\xb7\xb4\x7c\x96\x8b\xd5\x33\x5f\x02\x99\xe6\x22\x98\xc6\xbc\x67\x97\x03\x2d\x2f\xef\x6d\xcb\x5a\x49\xb3\x6a\x18\x5a\x3c\xd4\x00\x02\x77\xa9\xc5\xe9\xd8\x93\x7a\xff\xf1\x07\x4b\xc4\x9b\xc6\x80\x44\x4c\x30\xf2\xe6\x1e\x3b\xb9\x62\xb7\xac\xcc\xd4\x56\x9f\xc5\x90\xfd\xf8\xed\xfd\x5d\x49\xf3\x3d\xa1\x0b\x01\xea\x03\xfd\x7a\xf4\x15\x0a\xe2\x9e\x92\x61\x9e\x46\x5b\x81\x44\xac\x8c\x3a\xaa\xde\xd8\x39\x5f\x8a\x07\xec\xe7\x2a\x29\x19\xeb\x0f\xf7\x7b\xdf\xee\xf1\x68\x7b\x92\x2a\x15\x95\x7a\xcc\x1d\x6d\xfb\xc9\xe2\xfb\x46\xf3\xc7\xdb\xcb\x56\x7a\x8f\x90\x5c\x08\x93\x36\x8f\x0b\xfb\xd0\x80\x98\x99\x56\x9d\xaa\xe3\xfb\x00\x61\x43\xbf\x80\xce\xfd\x2a\xfb\x7b\xe8\x8e\x76\x52\x2b\x5b\x7b\xe4\x24\x4d\x7b\x23\xc0\x0f\x3f\x78\x8d\xeb\x00\x9e\xba\x72\x5a\x49\x52\xb1\xa1\x19\x27\x5e\x5c\x78\x8c\xa9\xb0\xb5\xd5\x12\xca\x09\xe5\x52\x33\xc6\x3f\x7d\x20\x7f\xab\x18\x24\x88\xd1\xd0\x4b\x72\x51\xa5\x93\x8c\x67\xca\xad\x12\x4a\xb9\x38\x53\x61\xd8\xd5\x70\x0d\x9a\xb7\x12\x75\x75\xa9\x8b\x02\xdc\xd0\x64\x9d\x71\xe6\x54\x3f\x5c\xdc\xd2\x09\x2d\x32\xf2\x04\x93\x84\x7d\x5a\x54\x5c\x55\xc1\x21\x6d\xd3\x89\x5d\xc6\xd3\x29\x39\xb1\x0e\x9c\x4b\x44\xb0\x4f\x12\x2a\x19\xc4\x31\x72\x99\xa9\xec\x96\x3d\x25\x1b\x46\x79\x5c\x37\xd5\xb0\x7e\x81\xbf\x2a\x53\xa4\x2a\x40\xbb\x70\x71\x72\x8d\x09\x14\xac\xaa\xcd\x4e\x0c\xd8\xbf\xe7\x06\xbd\x78\xf9\xc7\xe9\xf3\xe9\xf3\xe9\x8b\xbd\xaf\x91\x99\x24\xe2\x9b\x12\xbe\x0a\xd6\x03\x13\xc4\x3c\xfd\xb7\x51\x82\xb9\x15\xe3\x59\xa3\x9f\x50\xa4\x02\xc4\x66\x01\xf9\x56\x80\x98\x63\x56\xeb\x69\xe3\xa6\x69\xae\x5a\x43\xe8\xf0\x50\xbf\xac\xc3\xc3\xa7\x47\x9e\x07\x5f\x44\x32\x03\x50\x3a\x40\x1e\xa1\x9d\xfd\xc5\xeb\xef\xa7\x2f\xbf\xfd\x66\x6a\xfe\x7b\xfc\x1d\x48\x79\xfe\x5c\xc7\xfe\xbe\x82\x12\xfd\x39\x87\x3c\x32\x90\x98\xcd\x54\x04\xf4\x0e\xd1\x9a\x09\x16\xcc\x58\x0a\x52\x0f\xc1\x7d\xf7\xc7\x3f\x7e\xdb\x91\x0f\x31\xf6\x42\x55\xb5\x4f\xd1\x85\x0f\xd7\x9f\x7e\x89\x82\x0b\x60\x79\x6e\xa8\x4c\x68\x9e\x40\x78\xba\xd3\x81\x86\x8d\x15\x1f\xae\x3f\x35\x13\x11\xd5\x65\x06\xba\x4a\x0c\x3c\xac\x9e\x00\xa7\xca\x6a\xc2\x06\x46\x76\x7a\xba\x33\xd3\xc3\xb3\xb1\x69\x94\xd5\x8c\x55\x04\xee\xc4\xb8\xaf\xc5\xb2\x15\x21\xab\xac\xaf\x24\x3c\x6b\x9b\xca\x99\x13\xea\xaf\x0f\xec\xcf\x2e\x99\xb9\x09\x53\x8c\x21\x52\x97\x17\xb9\x15\xfb\xe8\x87\x28\xc2\x0d\xa8\x17\x6c\x74\x4c\x0e\xc4\x61\x1c\xda\xc8\x62\x6d\x17\x21\x38\x79\x92\x81\x03\x9f\x15\xd6\x6a\xdd\xd3\x87\x93\xab\x7f\xfb\xf4\xf6\xf2\xe4\xec\x2d\x51\xb4\x5c\x31\x15\xc8\xc2\xdd\x73\x42\x4e\x56\xfd\xd5\x12\x73\x99\x94\x5c\xb0\x08\xef\xb8\xeb\xdc\x5c\x46\x70\x96\xee\x7c\x34\x80\x63\x36\x12\xf4\x24\xa7\x90\x83\x02\x2f\x48\x0a\x07\xec\x42\x3d\x2e\x4e\xae\x8d\x3d\x02\xbc\x0b\x7c\xe5\x51\xd8\x4e\xbb\xa6\xb7\x99\x28\x5d\x8a\x3e\xe3\xd7\x29\xd1\x6d\x26\x1a\x90\xfa\xb8\xa9\x9e\x38\x53\x79\xc6\x3b\x8c\x4e\x5d\xf0\x86\x70\x07\xbd\xdc\x4b\xb6\x1a\x92\x6d\xe2\x63\xb3\xbd\x25\x34\x7e\xda\x99\x12\x7f\x81\x03\xd1\xf4\xb1\x54\x99\xc6\x43\x41\xb1\x1c\x31\xd8\x82\xe5\x82\xaf\xb0\x58\xdc\xb9\x7e\x7d\xe0\xd5\x37\x31\x03\xa1\x42\xf0\x59\xed\x8f\x94\xb2\x22\x17\xdb\x0d\xe3\x2a\xce\x6f\xd8\x78\x01\xe7\xc5\x92\x42\xc6\x86\xb5\xb8\xab\xf3\x5b\xe2\xe4\x4f\x30\x49\x5b\xad\xd1\xdc\x88\x94\xe5\xc1\x91\x91\x2f\x41\x31\x2c\x59\x42\xb1\x52\x4c\x66\xe1\xdc\xbe\xf4\x8b\x84\xb1\x13\xb1\x29\x2a\x93\xbe\xfd\xa9\xa9\x45\x58\x85\xfd\x0e\x6b\x11\xf9\x2f\x28\x1b\xfd\xb5\x3e\x95\xcf\x06\x06\xc8\xda\x78\x9b\x81\x14\xa9\x95\x2a\x05\x9f\xea\x6f\x83\xab\x35\x4b\xc1\x0c\xf2\x35\xd1\x7b\xbb\x29\xd4\x76\x5f\x56\x04\xa3\x96\x20\xc1\x35\x55\xeb\x81\xd2\xe4\x2c\xd0\xc9\x77\xf5\x5f\x6c\xcd\x19\x40\xb2\x41\xa8\xf2\x97\xd0\x70\x42\x7b\x93\x73\x09\x49\x38\x06\xe2\xd8\xec\x46\x36\x1d\xe6\x11\xc9\xb3\x1b\x46\x4e\x3c\xf5\x7d\x4e\xb7\xac\x1c\x96\x90\xe1\x7e\x50\x29\xc5\x86\xa9\x35\xab\xe4\x0f\xe2\x03\x53\x65\x96\x0c\x4d\x5a\x7f\x38\x8b\x76\xb5\x7a\x01\x49\x7e\x10\x9a\x39\x06\x53\xf0\x06\x9b\x84\xd9\xb5\x3c\xc7\x48\x08\xeb\x60\xab\xef\x52\x3d\xbe\xad\xad\x01\x41\x49\x75\xea\x86\x23\xc4\x80\x92\x05\x2f\xa5\x4b\xeb\x84\x9c\x01\x2a\x8a\x65\x2b\x11\xa9\x59\x94\xc9\x30\xc4\xd2\x23\x6c\x17\x21\xb7\xde\x8a\x30\x77\xd1\x03\xeb\xda\xd4\xc0\xbf\x37\xe8\x5b\x80\xb7\x8a\xe5\x16\xfc\x3a\x60\x6f\xe4\xa6\x8c\x5b\xc3\xb5\x2b\x58\xa1\xb7\xf4\x70\x8f\xf8\x9d\x3d\x46\xfc\xdb\x7b\x36\xf8\xa3\x90\x4e\x26\x40\x63\xb8\x4d\xad\x56\x37\x0d\xa2\x26\x73\xc0\x66\x9b\x36\x51\x65\xc6\x53\xc0\xd5\xf5\xee\xd8\xc3\x5e\x8f\x59\xe6\x20\x39\x67\x67\x73\xbe\xc0\x63\x23\x3e\x1f\x7d\x83\xdf\x3f\xff\xbe\x43\x7c\x8b\x30\x3b\xf5\x06\x67\x68\x07\xbb\xf7\x45\x0d\xf6\xaf\x11\x85\xf5\xb2\x1b\xb1\x44\xc7\x0b\xfa\x39\x2b\xd9\x0f\x15\x2d\xd3\x7b\x9f\x42\x64\x84\xfa\x1c\xee\x32\x2d\xd7\xd1\x32\x9c\x00\xd9\xc0\xe1\xbe\x27\x11\x16\x09\xf1\x70\xee\x79\x12\xa1\x21\xed\xe1\x3c\xfa\x49\x94\x6c\x23\x6e\x99\x4d\x33\x02\x89\x6a\x7a\x85\xbe\x9f\x9b\xb1\x64\xa6\x4a\xd0\x2d\x6b\x66\x9a\xb1\x75\xf8\x6e\x59\xcc\x9f\x6c\xc1\x98\x9f\xbb\xc6\x71\x1e\x53\x13\x1c\x86\x12\x9d\x4d\x65\x84\x51\xc9\x8e\xc1\xf0\x1c\x02\x62\x41\xcf\xe0\xd7\x44\xd3\xb4\x9d\x01\xc7\x06\x79\xdb\xda\x26\x5e\xe6\x24\x93\x15\x85\xd1\xf0\xa0\x77\x0c\xd7\x62\xf6\x6b\x17\x93\x6f\x4d\xce\x26\x33\xc3\xde\x67\x60\xb2\xca\x0c\x76\x24\xb8\x6c\xf7\x68\x44\x63\xe8\x7f\xef\x78\x0e\x47\x43\xee\x8d\xc3\xa5\xaa\x64\xed\x7f\xa5\x39\x6e\x88\x9a\x04\x77\xb5\x86\xb7\xda\x07\xc3\xc3\x73\xc1\x27\x7f\x67\x65\x50\xb1\x94\x79\xda\x47\x4f\x30\x90\x4d\x93\xe3\xde\x06\x6b\x07\xa7\xeb\xeb\xf7\xc3\x41\x74\x7d\xfd\xde\xf7\xdf\x9b\x28\x81\xe9\x1d\xad\xa7\x3f\xc8\xa0\x88\xaa\x27\x77\x91\xda\x8f\x06\x3e\x06\x8a\x0f\xcc\xbf\x08\x97\x64\x5f\xd7\x91\xcb\x40\xa7\x07\x38\x8b\x7b\xe9\xce\xf7\x75\x1b\x21\x6b\x1a\xd6\xf6\xdf\xd7\x6d\x04\xb3\x9f\x59\x0f\x91\x6e\x81\xe0\xbe\xe0\xc6\xe4\x5b\xc3\xa0\x7c\x65\x8d\xb5\x7e\xf0\x6c\x69\xcd\x88\x2b\x86\x7e\x77\xb6\xee\x5c\xf8\xfe\xbb\x3c\xcb\x53\x32\x21\xb6\x18\xf5\xf9\x4c\x1e\xa3\x1a\x2c\x98\x16\x31\x11\x5c\xaa\xb2\x0a\xc5\x7b\x13\x87\xbb\x26\x06\xa6\xe7\xb3\x93\x0f\x4d\x3f\x9a\x09\x0c\xad\xbf\x87\xb3\x6c\x8c\x68\xbb\xdf\x0b\x74\x5b\x9e\xd8\x60\xdd\x3e\x00\x5e\xb6\x3b\x20\xba\x6c\x24\x86\xc0\x34\xde\x82\x4b\xab\x08\x0c\xab\x86\x8c\x02\x0e\x2f\x87\x42\xdc\x73\x55\x73\xf1\x40\x75\x2a\xee\x55\x25\x99\x18\x69\x74\x23\x52\x2c\x07\xbc\x37\x1a\xd6\x53\x81\xe3\x64\x4c\xbd\xd6\x4c\xf4\xcb\x8a\x92\x25\x14\xfd\x56\xc9\x92\xde\xa2\xca\xe9\xb2\x39\x8a\x9c\xba\x04\xc5\x1d\x65\x8d\x68\x6a\xb3\x20\x1a\x67\x25\x6f\xdb\x68\xe5\xb9\xa5\x98\xaa\xb6\x2e\x5e\xdc\x9a\x28\x88\xb6\x1a\xba\xb9\x8c\xa7\x58\x14\x6d\xd9\x86\xac\x6c\x14\xe2\x35\xfc\x76\x15\x4c\x1f\xdc\x93\xcc\x61\x43\x43\x0a\x08\x32\x24\x13\xc3\x26\x0b\x29\xba\x06\x74\xed\xc8\xbf\x30\xd1\x0b\x0a\x7e\x1d\x0a\x3e\xe8\xca\xb9\xd0\xba\x1c\xbd\x3c\x52\xeb\xd0\x87\x9f\x70\x50\xcf\x12\x3b\xf4\x86\xb6\x1d\xe3\xa0\x96\x38\xa6\x3e\x6d\xf6\xc5\xf8\x08\x85\x29\x40\xf0\xc4\xeb\x6b\x2d\x0d\x3a\xac\x67\x3b\x3c\xf2\xc2\xd3\x76\x7e\xdc\x2b\xc9\x5b\x6f\x4e\x90\xf8\x45\x1a\x94\xd4\x23\x7e\x99\x06\x74\xef\x49\xe8\x11\xbc\x52\xd1\x4b\xf5\x80\x54\x1e\x46\x87\xf6\x5e\x88\x62\x86\xc9\xdd\x87\x28\x83\x7f\x46\xe9\x03\xfd\xd1\xc0\xec\x7c\xab\x21\x2d\x19\xa8\x42\x6b\xb6\xf7\xc8\x66\x8c\xef\xa2\x64\xb9\x10\x85\xf4\x2a\x8a\x42\xc1\x11\x54\x22\x97\xcc\x44\xf1\xe8\x7b\x83\xe9\x47\x4d\x26\x69\x02\x51\xd9\x7a\xbb\x51\xaf\x2e\x93\x79\x16\x33\x2a\xb8\xa4\x3c\x67\x17\x27\xd7\x87\x87\x69\x3b\xf0\xfc\x13\x87\x52\xbf\x75\xc5\x4f\x9b\x3a\xe2\x20\x28\x2b\x65\xdc\x55\x2f\x90\x0c\xab\x50\xd9\x1a\xb1\xb8\x9d\x44\x70\x95\x71\xa4\x21\x0b\x93\xa3\xad\x91\x29\x3e\x34\xea\x7d\x72\xc3\xca\x2c\x65\x09\x2d\x4f\x92\x84\xe5\x86\xea\x0d\x95\x6f\xaf\xa2\x5d\x9d\x42\x0c\x33\x99\x6f\x80\xe5\xb2\x53\x45\x18\x33\x37\xc6\x83\x75\x5f\xe0\x78\x3a\x20\x0d\x66\x73\x37\x9f\x42\xbd\x2c\x3b\x4d\x28\x17\x7c\xbb\xd1\xd4\xcd\xe0\x23\xe3\x73\x1b\x34\xe5\xa1\xdc\xec\xd7\xb2\x85\x1a\x3e\x98\x2d\x57\xdf\x39\x54\xd7\x4f\x45\xb9\x9a\x92\xf7\x62\x25\xc9\x1d\x96\x92\xd3\xec\xbb\xaa\xca\x48\x19\x0b\xe3\x84\x8a\x25\x13\xad\x31\xde\x8b\xe9\x86\x34\x5c\x14\x4a\x1b\x64\xcb\x2c\xa1\x5c\xd5\xc9\xc3\x6e\xab\x9c\xb3\x92\x62\xbe\xae\xd0\xe0\x6b\x2a\x51\xd8\x4d\x33\x09\xf5\x7b\x6a\x47\x3e\xeb\x5e\x2c\x96\x76\xf3\x58\xa9\xa1\x92\xbd\x37\xf2\x5e\xf2\x7e\xf3\xfc\xce\x79\xa6\x32\x9a\xc7\x52\xa2\x76\x1d\xa2\xdf\xb5\x59\xd4\xd1\xd6\xcd\x4c\xf5\x4f\x61\xb9\x7f\x29\x1c\x3f\xbd\xa1\x37\x0c\x6d\xef\x7a\xe0\x96\x53\xea\xde\xcc\x7e\x7b\x7b\x03\xa5\xab\xf6\xd6\x8c\x7c\xd5\xd8\xd6\x8e\x68\x1d\x37\x9d\xe1\x9e\x02\xd2\xe2\x77\xaf\xbf\xb9\xd7\xa6\x62\xf5\x1e\xfa\x36\x16\xaf\x14\x81\x69\xe5\xbc\xfa\x31\xae\x90\x7c\x34\x4e\x67\xa7\x6e\x85\x55\xdd\x20\x66\x5d\x65\x09\x16\x87\xc6\xb4\x4b\x2e\x9b\x5c\x4e\x2b\x1e\x06\x96\x5f\x6a\xbc\x5d\xd6\x01\x5f\x78\x6d\x7e\x32\xe9\xf4\x14\x70\x20\x98\x39\x6b\x51\x2d\xf7\x65\xf1\x6f\xbf\xe4\x74\x30\x0a\xfe\xe9\xcf\xef\x4f\x2e\x86\xc6\xe5\x83\xf7\x7f\xcc\xff\x00\x46\x6a\xc6\xa6\x03\xcb\x87\xdf\x1b\xf9\x05\xfc\x4c\xbb\x62\xf4\xc3\x5c\x5c\x26\x7f\xa1\x18\x7d\x80\xdd\x90\x20\x7d\xd8\x55\x67\x94\x3e\xe4\x00\xf7\x81\x12\xda\x9a\x17\xc3\xdf\x19\xb0\xff\x62\xff\x80\x7d\xbb\x95\x9f\x7a\x73\x70\xbb\xcd\xfc\xf4\xba\x73\x3b\xaf\x1f\x6b\x3b\xaf\xbe\xbf\xe7\x76\xee\x93\x2a\x09\x3a\xfe\x74\x71\xbe\x6f\x3f\xa7\x51\x1f\xfa\x94\x7e\x6e\x75\xd8\x0d\x22\x71\x2d\x3c\x0e\x35\x04\x46\xfd\x6c\xe0\xfa\x3c\x61\x3c\xa1\x85\xac\x72\x9b\xa1\xec\xf6\x1b\xe7\x8c\x23\x10\x81\xe0\x97\x50\x9e\x25\x87\xd8\x74\x78\x67\x21\xa7\x28\xf2\x60\xbe\xa8\x0d\x92\x01\x57\xab\x0d\x94\x9f\x5e\x3f\x18\x2c\xaf\x03\x60\x79\x1d\x02\xcb\xeb\x5f\x1a\x2c\x3f\x0a\xa9\xde\xf2\xa4\xdc\x16\xfb\x70\xc1\x3f\x77\x76\xef\x00\x57\x90\x0b\x13\x52\x4d\x94\x98\x98\x34\x42\x76\x30\x0f\xb2\x0f\x37\x0d\xbb\xfd\xba\x48\xd2\x0b\xba\xe9\xd7\x3b\xfe\x1c\xec\xd6\xd2\xdf\x80\x3b\x8f\x71\xa4\x8b\x84\x21\x39\xe4\xea\xdd\x1b\x3b\xa2\xbf\x39\xb7\xcc\xe9\x7d\xb2\x00\x85\x37\xb9\xcf\x8d\x6f\x75\xbc\xf7\x46\x5f\xf7\x6e\x74\x35\xb9\x7d\xfd\xb0\x4d\xfe\x2b\x63\xc5\x49\x9e\xdd\xee\x71\x8a\xae\x4b\x7d\x43\xeb\x75\xce\x34\xc7\x2f\x15\xe3\x4a\x37\xa3\xd1\xea\x4f\x58\xaf\x1a\x74\x9e\x4d\x0b\x8c\x17\x1b\x7d\xef\x4d\xbd\x87\x15\x64\x7c\x35\xc8\xba\xff\x73\xb0\x5b\xab\x94\xbb\xfd\x09\x4d\xfd\x31\x8f\xbf\xc5\xb6\x75\x41\x1b\x29\x1e\x5e\x7c\xf7\x72\x7f\xf2\x17\xde\xd4\x3e\xd7\xb1\xd5\xb1\x6b\x63\xa1\x3d\xd9\x62\x9c\xcd\x0b\xd9\xde\xd8\xfe\x9e\x0a\x6e\x63\x43\xb8\xae\x9f\xbd\xc6\xcd\x0d\xe8\x2f\x7c\xc6\xab\x13\x49\x7a\xaf\xa8\x8f\xf1\xba\x47\xa6\x24\x7f\x47\xfb\x1c\x10\x32\x60\x1d\xbb\x7a\xfd\x68\xbb\x7a\xc8\x05\xbc\x44\x35\xd3\x65\x95\xb3\x59\x99\x89\x32\x5c\x33\x3b\xb2\xc7\x40\xe7\xe6\x8e\x0b\xfb\x6d\x34\x7d\x76\x8d\x33\xa1\x43\x8d\x73\xac\xfe\xab\xac\x9a\x08\x24\x5c\xf4\xb4\x7b\xb3\xc6\x76\x85\x56\xb2\xab\x42\x88\x65\xb8\x78\x5c\xd3\x65\x20\xd8\x6b\x97\x80\x17\x22\x75\x89\x53\x63\x78\xdf\xe8\xeb\x70\x28\xf4\x5f\x04\x67\x73\x2e\x14\xea\xb8\x80\x3b\xe7\x75\xb1\x12\x4c\x47\x61\x3c\xcb\x43\xa3\x7a\xc1\x39\xd6\x63\x19\x1c\x1b\xd6\x2c\x2b\x3d\x7f\x01\x3f\x4f\x9c\xb1\xba\xa1\x63\x72\xd0\xf6\x62\xb5\x95\x27\x7c\x3b\x3f\x38\xaa\x77\x56\xb2\xbf\x55\x0c\xc2\x74\xb7\x26\x88\x6f\x4f\x2f\xfd\x2f\xe9\xe0\xcc\x72\x81\xac\xb7\x7f\x3e\x9b\x35\x35\x82\xfa\xb6\xc8\x2a\x43\xab\x41\x85\x05\x77\x62\xe5\x63\x4d\x01\x93\x94\xf1\xed\x6e\x0c\xe1\xbd\xf4\x51\x5f\xd2\x62\x5f\x53\xf8\x9f\xcf\x66\x8f\x9b\x35\x0d\x12\x00\xdf\x2b\x61\x9a\xb1\x73\x87\x06\xae\x4d\xdf\x6f\x66\xef\xc8\x86\x16\x10\xf8\x45\x95\xa2\xc9\x1a\xeb\xa8\x81\x61\x28\x6c\x12\xff\xf3\x59\x30\x95\xc2\x6e\x5a\xb5\xfd\x0d\xe2\x61\x6b\xc4\xee\xb7\xa0\x03\x4d\x7d\xe7\x76\xa9\x44\x49\x57\xcc\x7e\x85\x3e\x11\x70\x5a\xb6\xee\x8f\xe6\xe6\xac\x41\xe7\x26\xe3\xe9\x31\x99\x1f\xd8\xda\x73\x45\x5e\x95\x34\xaf\xbf\x71\x95\xdf\xe4\x31\xf9\xcb\x5f\xf5\x37\xe0\x70\x92\xfe\x84\x0a\x51\xf3\xed\x9c\x4f\x26\x93\x39\xa7\x45\x66\xbe\x3f\x26\xb4\xc8\xd8\x17\xc5\x38\xa6\x80\xbd\xf9\x4e\x4e\x33\xf1\xec\xf6\xc5\x9c\xe3\x8c\xa7\x95\x54\x62\x73\xc9\xf0\xb5\x9f\xb1\x65\xc6\x33\x4c\x92\x69\x63\xad\x60\x81\x9a\xc7\x3c\x36\x61\x54\x46\x02\x02\xfb\x71\xc6\xe4\x34\x29\xd3\xe9\x8e\x32\x79\xce\x35\x93\x0a\x7d\x57\xa5\xa8\x8a\x63\x12\x69\x86\x63\x37\xc1\xf0\x03\xcc\x73\x81\xf3\xa0\x03\x36\xfe\xac\x99\x8b\x7f\x8d\x35\x79\xef\x72\xe2\x5a\xe0\x05\xd7\x6b\x4e\x27\xe3\x10\xbc\x14\x6a\x04\x93\x15\x25\x83\x33\xfd\xc4\x6f\xb8\xb8\xe3\xef\x32\x96\xa7\xd2\xc8\x39\x00\xfe\x44\xe8\x3b\x70\x8a\x5a\x75\xfd\xcd\xad\x3d\x0a\xfd\x8f\x89\x01\x99\x86\x34\xcc\x97\xac\xd9\x86\xba\xc7\x2a\x0a\xc6\x4f\x66\xe7\x3f\xbd\xba\x6a\x7e\x1f\x35\xf5\x79\x47\xda\xbc\xa0\xcd\xc7\xae\xc7\x34\x2a\x72\xbf\x62\x9e\x59\x1a\x4b\xcd\x3a\xd0\xa8\x0d\x3e\x76\xb0\x4f\xae\x82\x99\x51\xc5\x52\xcb\xbf\x78\xcd\xf5\xcb\x2b\xf5\x38\x5e\x6e\xcd\x5b\x56\x62\x2e\xee\x15\xcf\xfe\xee\x06\x77\xc1\x91\x39\x55\x6c\x37\x5c\xc0\x69\x46\xbd\x5c\xad\x1b\xba\x35\x26\x30\x52\x71\x6f\x40\xcc\x98\x36\x25\x1f\x04\x84\x37\x2c\xc5\x31\x59\x2b\x55\xc8\xe3\x67\xcf\x56\x99\xb2\xb7\xd9\xe8\x3d\xd5\xf6\x19\x10\xc8\x6c\x51\x29\x51\xca\x67\x29\xbb\x65\xf9\x33\x99\xad\x26\xb4\x4c\xd6\x99\x62\x89\xaa\x4a\xf6\x8c\x16\xd9\x04\xd6\x0e\xf6\x41\x39\xdd\xa4\x7f\x28\xcd\xf5\x97\x87\xa1\xc7\xbf\x8b\x16\xe0\x96\x76\x1d\x83\xbe\xa3\xa6\x66\x3e\x74\x36\xb1\x0f\x0e\xda\x36\x65\xea\xe5\xdb\xab\x6b\x62\x67\x0f\x66\x07\x43\xe0\xd7\x3d\x65\x7d\x0e\x1a\x68\x19\x5f\x32\x93\x0f\x06\x62\x11\x95\x5f\x97\x14\x52\x83\x81\x1f\x66\x7b\x54\x59\x2d\x36\xe0\x94\x83\xc4\x15\xa3\x56\x4e\x81\x27\x80\xc4\x8d\x45\x4a\x15\x94\xbd\xe6\xe4\x94\x6e\x58\x7e\x4a\x25\xfb\xea\xa7\xa0\xa1\x2d\x27\x1a\xb6\x43\xcf\xa1\x81\xa2\xda\xcd\x77\x2d\xc8\x0e\x23\xd5\x9f\x0e\xc3\x3a\x2d\x8a\x7c\xfb\x91\xbf\x13\xe5\x1d\x2d\x7b\x79\x87\x93\x46\x6b\x74\x1e\x01\xaf\x00\x2c\x0c\x9e\xa3\xbd\xcc\xab\x6b\x9a\xd9\x22\x9b\x41\x69\x16\xf8\x0c\x18\xc9\xa6\x1f\xd9\x93\x51\x48\xc5\x85\x50\xd7\x9a\x39\xe9\x75\xcc\x71\x2d\xbd\x55\x3b\x06\xd3\x98\x9e\x21\xbe\xa7\x4e\x3e\x03\xfb\x08\xf3\x3c\xfe\xd6\x2c\xaa\x58\x89\xba\x68\xb9\xf1\x9d\x23\x60\xbd\x38\x04\xeb\x32\x47\x4f\x62\x02\xbc\x54\xc6\x57\x41\x33\x35\x18\xa6\xa9\x34\xee\x20\x89\xad\x75\x88\x36\x94\xeb\xd2\x26\x46\x0f\x41\x98\xd0\x48\x02\x60\x48\xc1\x91\x5a\x03\x9b\xe6\x30\xeb\xa5\x05\x17\x86\xb5\x5c\x0c\x4c\x0c\x63\x1d\x11\xdb\x5b\xf3\x43\x56\x37\x06\x65\x73\x8c\x13\xf0\x82\x11\xc3\x3c\xee\x7b\xb6\x58\xa3\xb5\xef\x5c\xaf\x21\x49\x77\x0a\xd6\x53\xe3\xea\x62\x8a\xbb\x1a\x56\x94\xbc\xa5\xc9\x1a\x23\xc2\x4d\x46\xc0\x30\xcb\x67\x7b\xe3\xbe\x4d\xa8\x57\x52\x66\x8a\x95\x19\xc5\x84\xec\x5e\x68\x3c\x64\xac\x4f\xac\x60\x01\x57\x7f\x2f\x57\x97\xc6\x1e\xe6\x07\x27\x44\x4b\x78\xa4\x56\xd3\xfa\xae\x3b\xa1\xa5\x04\xb9\x4b\xe2\xea\x20\x93\x37\x42\xad\x4d\x42\x40\x51\x4e\xd0\x16\xe4\x4c\xd3\x33\x73\x5e\xdc\xff\x0e\xab\x75\x07\x61\x03\x3c\x26\x2b\xa1\x3c\x3a\xde\xbc\x89\x57\xa8\x45\x54\x0a\x53\x6c\xd9\xf4\x48\xd8\x44\x4b\x10\x0b\x01\xd5\xae\xe0\x3c\x22\x0b\xe6\xa9\x2b\xc6\xeb\x01\x1e\xcc\x5e\xf3\x39\xc7\xc3\x2b\x04\xa6\x05\x68\x43\x22\xe2\x73\xaa\x0f\x93\xb3\x15\x2c\xce\xb0\x04\x47\x46\xa8\xb2\x91\xf2\xf3\xf9\xfc\xe0\x42\x28\xfd\x9f\x29\x39\xc9\x73\x93\xe5\xc0\x1f\x3d\x3c\xb2\xee\x0d\x51\xc7\x70\xa1\x5c\xa9\x23\xaa\x32\x09\xa5\x6c\x30\xb7\x98\xd9\x8a\x12\x38\xe6\x94\x9c\x98\xe2\x06\x11\xe8\xc2\xe5\xa4\xdc\x5e\x50\x93\x10\xc0\x6c\x5a\x83\x08\xb6\xa3\xff\xe1\x79\x06\x50\x1c\x3c\x0e\x57\x80\x7e\x78\x89\x16\x87\xd4\x4b\x8c\x54\x83\xee\xf3\xc8\xa2\xb1\x0c\x98\xf8\xe9\x2f\xd4\x94\x32\xa9\x4c\xf5\xa9\xe8\x28\x2d\x0f\x4b\xd7\xc1\x3d\xe8\xc0\xf1\x19\x7f\x24\xfd\x30\x63\xc3\x82\x6a\xc4\x9b\x9f\x68\x2a\xad\xc2\xd1\x87\x83\x80\x41\x88\x61\xf3\x0b\x9a\xb0\x2b\xf3\xf8\x3a\xda\xee\xa0\x81\x8b\x76\x67\x13\x7f\x2e\xac\x01\x78\xa9\xf9\xf3\x68\x5a\x8c\xfa\xe3\x00\x43\x1d\x12\xf0\xf2\x17\x98\x1c\x51\x8d\x32\xf2\xa2\xcc\x56\x1a\x0e\x31\x0c\x60\x3f\xc0\x7f\x3d\xd1\x57\x08\x0c\xd0\x88\xa9\xd4\x53\xcf\x69\xd9\x3c\x11\xc8\xed\x02\x73\x87\x89\x47\x00\x64\x75\x79\x6a\x43\x88\x4d\x84\x37\x5c\xe4\x1d\xd8\x74\x0f\x8a\x58\x12\x05\x75\x07\x02\x4d\xa1\x50\x60\x70\x96\x71\x49\x37\xcc\xa4\xb9\x50\x11\xa5\x4d\xfd\x81\x94\x56\x21\x3f\x6d\xeb\xfb\xe6\x31\x10\x0b\x1f\x03\xf7\x00\xd5\x6e\xdb\xc2\xcb\x67\x40\x10\x0f\xbe\x13\x25\x69\x88\x81\x47\x51\x1a\x60\x3f\x58\x89\x2a\x70\xa5\x36\x26\x25\x97\x8d\xbb\xf3\x2f\x5b\x9e\x6d\xb2\xde\x03\x03\x55\x5a\x8e\x9e\x7c\x51\x98\x64\x1e\x7c\xdd\x09\xf7\x9c\x19\x3e\xe4\xc6\x3e\xa3\xdb\x3f\x44\x89\xf6\xc9\xd3\x60\xd5\x95\xfa\xf3\xcb\x00\xa0\x21\xa8\x5f\x69\xba\x5d\x12\x34\x4f\x22\x3c\x60\x1b\xdd\x83\xea\x3d\x06\xe4\xfd\x23\xf0\x88\xe9\x3e\xcb\x9e\xd5\xfa\x5b\xf4\x12\xb2\x85\x6a\xad\x24\xa5\x90\xc0\xf3\x0d\x7d\xb2\x11\xc2\xe1\xe6\xee\x25\x00\x04\xf3\x22\x74\xe1\xd4\x76\xa6\x09\x66\x2a\x88\x06\x11\xa3\x16\x34\x55\x99\x25\x58\xe9\xa4\x7b\x1b\x96\x04\xba\x54\x75\x5b\x8c\x24\x08\xe2\x45\x87\xfa\x7a\xa0\xdd\xc4\x8b\x7e\x91\x34\xc8\x57\xc2\x5d\xae\x6b\x4c\xb3\x27\xab\x85\xde\x7e\x94\xea\x90\x4e\x3e\xd2\x9b\x77\x10\xa4\x3b\x5d\x8b\xeb\x0f\x17\xea\x62\xbf\x33\xc1\x0e\x2e\xc9\x44\x93\xfd\xb2\x3b\xd6\x4d\x7a\xc8\x8b\x3e\xc7\xdf\x1c\x2c\x62\xe5\x6e\xeb\x4f\x1b\x18\xae\xcc\x6d\x07\x34\x66\xb1\xe0\xbb\xfa\x83\xe0\x20\x57\x50\xfc\x0d\x6e\xa9\x14\x9b\xba\xea\xab\xc4\x48\x4a\x53\x48\x15\x12\x23\x6f\xe3\x65\x74\xeb\x4f\xab\xfc\xa2\x6a\x66\x66\x77\x25\x3d\x91\xa3\x32\x88\x5c\x0b\x28\xbd\x58\x11\x68\x98\x31\x71\x5c\x9f\xce\x6c\xd1\xc4\x4f\x67\xb3\x48\x71\x45\xfb\x19\x72\xaa\xf1\xac\xa2\xf5\x67\x40\x7e\xd1\xdd\xc6\xfd\x17\xa5\x3f\xe7\x68\xfd\xd9\x3f\xfb\x68\xfd\x19\x7a\x21\xf7\x67\x2e\x2f\xea\x4e\x3d\xd7\x72\x18\x7f\x65\x6e\x26\x58\x4e\xdd\xc0\x88\x85\xd1\x76\xb4\x50\x39\x53\x99\xcb\x33\x8a\x73\x75\x8f\xe9\xb8\xa5\xce\xab\x32\xec\xcc\x8a\xfd\x9e\xec\xfc\xa0\x2e\x4c\xdd\x43\x56\xfa\x89\xed\x00\xb2\x02\x36\x23\x9b\xd6\xea\x89\x27\x84\x04\x52\x3f\xb5\xb7\xe5\xa5\x6b\x65\x92\x98\x4c\xfb\x7e\xf6\xdf\x67\x56\xa1\x7c\xed\x32\x68\x77\x8f\xda\x28\xc7\x6d\x9e\x0e\x58\xa6\x10\xca\xd2\x42\xc0\x68\x67\x3b\x02\x88\xea\x8f\x4d\xf7\x84\x0c\xdc\x50\x0c\xd6\x8b\x01\x4c\x0e\xa9\x7d\x30\x58\xcf\xde\x6b\xf4\xd6\xc2\x60\x73\xc4\x61\x73\x83\xc5\xe6\x88\xc7\xe6\x1a\x93\x75\xf2\x3c\x23\x2e\x83\xcf\x20\x5c\x26\xef\x21\x25\xf7\x0b\xc7\x9d\x9a\xbe\xfa\x13\x14\x8e\xc9\x13\xc9\x98\x55\x91\x01\x2a\xc3\xfa\x42\x72\xcb\x15\xfd\x12\x76\x88\xac\x3f\xf3\x79\xa7\x6c\x6d\x78\xc8\x98\xec\xdc\x3d\xb6\xd5\x8c\x79\xa2\xb5\x28\x77\x45\x66\xfd\xdc\x2e\x84\x42\x6b\xf5\x71\xa4\xa0\x92\x07\x04\x13\x83\x68\xcd\x59\x3d\x54\x01\xc1\xe3\x51\x93\xee\xd1\x17\x2c\x17\x77\x4f\x8f\x9a\x4b\xf6\x80\x8d\x50\x25\x99\x92\x2c\x77\xe9\xdf\x7b\xe0\x80\xca\x30\x50\x73\x5e\xaf\x19\x51\x77\x02\xee\x1a\xc4\xb0\xda\xdf\x10\x41\x68\x22\xb4\xad\x6b\x3a\xf5\x9c\xdd\x47\x6e\x77\x2f\xcd\x7a\x6b\xf5\x2b\xf3\xa4\x24\x53\x19\x12\x54\x0b\xa6\x7d\x3f\x4d\xb8\x5b\x8b\xdc\x1c\xd2\x31\x1c\xd1\x7c\x5e\x13\xe4\x7f\x01\xec\xf2\x4f\x6b\x2a\x9f\x6c\xb6\x9f\x73\xba\x60\xf9\x53\xc0\x3b\x06\xc9\xf7\x3d\x67\x2f\x70\x4e\xef\x1b\x2e\x19\xae\x0f\x1d\x0e\x26\xc6\xa5\x26\x67\xa9\x9e\x77\xe0\x7d\xf3\x03\xf1\x6c\x1a\x72\x02\x8b\x83\xe5\xda\x95\xa2\x12\xd5\x6c\x69\xf0\xc5\xc0\x2d\x47\x77\xbc\xbb\x29\xbd\x8a\x58\x42\xf3\xfa\xd3\xbd\x5f\xb7\xa5\xbe\xed\xf4\x3d\x72\x0e\x37\x8f\x2d\x97\x2c\x31\x09\x8d\x8c\x2a\x21\x07\xd4\x6a\x72\x93\x80\x03\x84\xdb\x49\xff\xe2\xb9\xe0\x13\x1b\x7c\x8b\x96\x5a\x4c\x32\x60\xf4\x22\x10\x16\xef\x2b\x29\x20\xbe\x0d\x47\x1f\xa0\xb4\xdb\x05\x4d\x5d\x64\xf8\x31\x84\x78\x13\x0c\x7a\x92\x24\xa2\xe2\xfb\xf0\x5e\x57\xcd\x8e\xbf\x18\x0f\xd6\x42\xcb\xdd\x63\x06\x54\x9e\x94\x14\x22\x75\x39\x91\x81\xa1\x73\x28\xda\x00\xa3\x07\xf5\xe2\x8e\x3b\x6f\xdb\x20\xa5\x33\x21\x4d\xff\x92\xf8\xa7\x29\x13\x40\xf2\xff\x07\x83\x9b\xdc\x07\xe4\xfd\x43\xc6\x34\xcd\x01\xb0\x0f\x82\x36\xa9\x21\xae\xb1\xb1\x34\x2e\xe5\x99\x53\x55\x6a\x06\xb8\xe7\xe5\x0f\x63\xee\xc8\x1e\x2a\x08\x32\x94\x53\x22\x43\xb9\x25\xb2\xfb\xbe\x7a\xf9\xa5\xff\xb9\x27\xdd\x90\x95\x6a\xad\x1b\xe2\x7d\x0b\xcf\x29\x39\xef\x91\x3c\xf4\xa7\x36\x43\x80\x75\xe1\xca\xb7\x2a\xd4\xb2\x88\x32\xc5\x0d\xa3\xf6\xf8\xe6\xe7\xe4\xe2\xec\x30\x68\x1b\x6f\x7e\xf6\xd3\x68\xc5\xd2\x0a\xd8\x8f\xcd\xc3\xb9\x1f\xd7\x8d\x7d\x1e\xcc\x75\x63\x4f\x34\x10\x3b\x7c\xe9\x15\xc6\xb6\x13\x41\x5d\x25\x07\xd7\xa0\xb7\x84\x37\x68\x2f\xd3\xdd\xbe\x5e\x43\xb9\xee\x80\x39\xcb\xc2\xef\x89\x7c\xda\x66\xbf\x4d\x51\x6e\xde\x65\x75\x24\xa0\x2b\x7b\x06\xab\x82\xb4\xaf\x76\x25\x87\x92\x60\xb8\x33\x48\xcc\x16\xde\x89\x73\x58\x72\xc0\xe8\x83\x45\xd3\xb2\xa5\x5f\x8e\xbd\xac\x47\x3e\xeb\x7e\xb4\x6b\x51\xe8\x01\xf3\x05\xd3\xec\xaf\x55\xf6\x8a\xb2\x4d\xbb\x71\xe9\x33\x13\xc0\x9f\x3a\x4d\x68\x8f\xb5\x52\xdf\x27\x7d\x80\xfe\x1e\x51\x6f\xe4\xa0\x20\xb8\x75\x24\x30\x8e\x1d\xdd\x2c\xcb\x5e\x64\x73\x7f\xaa\x19\x8a\x4d\x02\x93\x7c\x7d\x8f\xfb\x9f\xbe\xd9\x9b\x67\x83\x7f\x24\x24\xe0\xd9\x67\xee\xc1\x10\xe8\x6e\x81\xfd\xe1\xf7\xf1\xba\x14\xcd\x0f\x62\x59\xb3\x43\x78\xc9\x39\x5b\x2a\xb4\x63\xd5\x2e\x4c\xf8\x7a\x06\x28\x69\x88\xff\x10\x9d\xc7\xd1\xa1\xac\x57\xf6\x8b\x62\xd0\xfe\x36\x6b\xa5\x8a\x61\xfe\x0c\x3f\x5e\x5f\xcf\x6a\x7b\x7d\xd4\x89\x41\xdf\x12\xdd\x34\xbe\x74\xeb\xe5\xf8\x30\xff\x85\x0d\x53\x6b\x91\xee\x41\x19\x3e\x60\x87\xc7\xe5\xda\x71\xcb\x88\xd4\x71\xdf\x9e\x13\xa7\x1e\x13\xab\x83\xea\xfb\xd8\x3f\x28\xc4\x6a\xa5\x38\x8a\x5d\xed\x13\x36\x5d\x4d\xc9\x0f\x6f\xaf\x8f\xc8\xec\xd3\xf5\x11\x61\x2a\x99\x3e\x25\x1f\xaa\x5c\x65\x45\x9f\x9d\xc3\x80\x08\xe8\xfe\xc7\xcb\x43\x2d\x86\xad\xc0\x8f\xf0\xb7\x65\xb7\x2a\xa8\x5a\xef\x71\x8e\x87\x33\xdd\xfe\x6b\x1c\x63\xdf\x09\xf6\x63\x14\xff\x04\x61\x99\x53\x77\x54\xb8\x4d\x7b\x16\x43\x0f\x83\x10\x36\x5d\x1d\x93\x09\x61\x5f\x68\xa2\x8e\xc9\xb3\xa5\x10\x64\x62\x9c\xc4\x8e\xc9\xb3\x05\x2d\xc9\xc5\xc7\xeb\xb7\xc7\xe8\x80\xc6\xb8\x2a\xb7\x64\xd3\xc7\x9e\x7f\xbc\x78\xff\xef\x06\x73\x6e\x09\xcb\xb0\x44\x29\x99\x1f\xc0\x24\xa8\x45\xd6\xff\xc4\x59\xac\xae\x63\x1a\x2b\xa3\x56\x7f\x6e\x69\x9e\xa5\xd4\x29\xfb\xb0\xc0\xaa\x66\x9f\x32\x15\x4a\xde\x57\x7f\x86\xdc\xb9\xe6\x25\xd0\x20\x86\xb2\x69\x8d\x82\x1d\x00\x78\x5b\x3c\x6d\x18\xad\x3a\x57\xe0\xb9\xbd\x60\x16\x10\x46\x8f\xb8\x14\xe5\xe6\xd8\x82\x7d\x5e\x3d\x7f\xfe\x2a\xd1\x03\xc3\x5f\xec\xd8\xa6\x5a\x1d\xa2\xf6\xc2\xab\x06\xab\x82\xe1\x34\xc2\x28\xdd\x11\xd6\x43\x4f\x0c\xbc\x1f\x34\x03\x8e\xd1\xe3\x6a\x32\x98\xe9\x20\x06\x00\x8f\x2b\x46\x16\xb1\x54\xff\xf7\x1f\x74\x98\x38\x31\x08\x21\xf5\x0f\x95\x25\x9b\x81\x34\xf3\xfc\xf4\xc3\x6c\xa8\x07\x08\x20\xa3\xf8\xda\x7d\x2c\x45\xed\xad\x4f\x60\xb5\x26\xdb\x4c\x0a\x38\x0a\xa6\x74\x45\x32\xc1\xb2\xd6\x21\x5f\x79\x45\x8b\x1b\x3c\x6d\xb6\x6c\xda\xa7\x70\xd1\x99\x97\xc6\x4c\xcf\xd3\xc5\xda\x82\x3d\x5d\x37\xba\x7d\xdd\xa1\xa7\x1c\x74\x13\xf5\xd6\xf6\xa0\xf3\xc0\x99\x08\xee\x43\x09\x80\x92\x40\xd1\x8a\x7d\x84\x35\x48\xff\xae\x01\x8c\xf1\x22\xe0\xa2\x0a\x69\x99\x7d\x58\xd5\x11\x96\x94\x28\x96\xac\x79\x96\xd0\x1e\xaf\x24\x50\x8b\xa2\xfa\x3f\xdb\x14\x42\xd6\x8e\x74\x58\xb6\xf7\x50\xd6\x35\x77\x96\x59\xc9\xee\x68\x1e\xae\x1e\x52\x7f\x10\x5b\x18\xa5\x2c\x56\xee\x11\x84\xf1\xa5\xc0\x48\x16\xe3\xa2\xd7\xff\x34\x7a\x6d\x78\xd0\xec\xe1\x87\xa1\x87\x99\x12\x3f\x47\x59\x9f\x09\xcc\x95\x62\xfb\x0e\xbd\xbc\x61\x87\x30\xd6\xdb\x64\x2d\xc8\xa5\x09\x4c\x7d\x92\x4d\xd9\x94\x14\x19\x5f\xc9\x6e\x1b\xd8\xa0\xfd\x0e\x40\x06\x45\x38\x10\x2c\x02\x90\xf3\x99\x0d\x08\x7b\xb0\x63\x58\x43\xb9\x85\xfc\xb8\x0f\xe5\x99\xb5\x8c\x45\xa1\x30\x24\x13\x65\x38\xa4\x27\xb2\x39\x5b\x57\xcd\x73\xeb\xad\x13\x87\x7a\x69\x85\x5d\xd5\xec\xee\xcd\x3d\x08\x69\xd4\x11\xd5\xdd\x44\xae\x5e\xe1\x6c\x28\x55\x1c\x4a\x96\x9a\x11\x49\xf5\x7a\x4c\x28\x1a\x5a\xed\x6e\x98\x09\x89\x27\x05\xcd\xca\x78\x29\xc1\xfa\xa3\x45\x56\x53\xeb\xde\x87\x29\x5d\x88\x4a\x0d\x20\x24\x8f\x25\x39\x72\xa1\xf4\xeb\x1b\x76\x33\x2e\xb0\x71\x8f\x47\x0f\x34\xe9\xf6\xac\x1b\x09\xc6\x48\x30\xfe\xb1\x09\x06\x17\xca\xb2\x55\x51\xb0\x74\x7b\xdd\x0c\xf4\xb7\x19\xe6\x69\xb3\xe3\x10\x6a\x59\xbe\x1e\x9f\x50\xd3\x2c\x0e\xb0\x9e\x77\x3c\xc0\xb5\xe7\x7e\x4e\x3d\xc5\x6f\x15\xb8\xf3\x03\x1f\xb6\x8f\x48\xfb\x77\x0c\x5b\xa0\xe1\xf5\x39\x01\x0b\x93\x29\xdc\xfa\xac\xec\xd2\xcc\x1b\xef\x5c\x73\xce\x6f\x21\xd4\xe8\x12\x22\xe5\x6c\xd4\x17\xaa\xcd\x9f\x2c\x58\x42\x2b\x69\x7c\xe2\x7a\x4c\x09\x6e\x89\x09\x2b\x61\x0c\xe7\x57\xf7\x14\x55\xf1\xb6\x30\x47\xc3\x4b\xb0\x8f\xc4\xa2\xfb\xe0\xb1\xef\x01\x77\xe4\xfb\xbf\xe1\x3f\x40\x52\x69\xfc\xeb\xf6\x75\xfd\xef\xab\xd3\x6b\xfc\x35\x3e\x8d\x19\xf1\x7d\xa6\x98\x75\xb2\x83\xba\xa8\x70\x41\xac\x51\x16\x6b\x47\xbe\x98\xbc\xfc\xf6\xdb\x0e\x95\xff\xd7\xbb\xf6\x32\x56\x23\x02\x3f\x4d\x43\xab\xab\x11\x31\x20\x2a\x2d\x52\x7e\xd7\x9f\x75\x0c\x48\x1b\x03\xd2\x06\x98\x3d\xc7\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x62\x3b\x1e\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x8b\xed\x64\xc4\x65\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\x1a\x7e\xc6\x80\xb4\x31\x20\xad\xfd\x19\x03\xd2\xc6\x80\x34\xf7\x19\x03\xd2\xc6\x80\xb4\x31\x20\x2d\x38\xe8\x18\x90\xe6\xc1\x62\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\xe6\xe7\x97\x0c\x48\xeb\x29\x5e\x8e\x59\x7c\x43\xbf\xdd\xbb\x4c\xb9\x79\x1b\xf7\x48\xdf\xdd\x7c\x55\x63\xfe\xee\x31\x7f\xf7\x98\xbf\x7b\xcc\xdf\x1d\x5e\xde\x98\xbf\x7b\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\xea\xcf\xe8\x2e\x55\x7f\x46\x77\xa9\xd1\x5d\xea\x37\xe5\x62\x30\xba\x4b\x8d\xee\x52\xa3\xbb\xd4\xe8\x2e\x15\x6c\xfc\x0f\x86\xcb\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x1a\xdd\xa5\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x0a\x7c\x46\x77\xa9\xd1\x5d\xca\x7d\x46\x77\xa9\xd1\x5d\x6a\x74\x97\x0a\x0e\x3a\xba\x4b\x79\xb0\x18\xdd\xa5\x46\x77\xa9\xd1\x5d\xaa\xf9\x19\xf3\x77\x8f\xf9\xbb\xc7\xfc\xdd\x8d\xcf\x98\xbf\x7b\xcc\xdf\x3d\xe6\xef\x1e\x34\xc3\x98\xbf\x7b\xcc\xdf\x3d\xe6\xef\x1e\xd3\xb1\x8e\xe9\x58\xc7\xfc\xdd\x63\xfe\xee\x31\x7f\x77\x7c\xfd\x63\xfe\xee\x91\x60\x8c\x04\x63\xcc\xdf\x3d\xe6\xef\x6e\x7c\xc6\xfc\xdd\x63\xfe\xee\xd6\x67\xcc\xdf\x1d\x17\x20\xc7\xfc\xdd\x63\x40\xda\x18\x90\x36\x06\xa4\x8d\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\xf9\x9f\x31\x20\x6d\x0c\x48\xfb\x4d\x05\x71\x8c\x01\x69\x63\x40\xda\x18\x90\x36\x06\xa4\x05\x1b\xff\x83\xe1\xb2\x31\x20\x6d\x0c\x48\x1b\x03\xd2\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x02\x9f\x31\x20\x6d\x0c\x48\x73\x9f\x31\x20\x6d\x0c\x48\x1b\x03\xd2\x82\x83\x8e\x01\x69\x1e\x2c\xc6\x80\xb4\x31\x20\x6d\x0c\x48\x6b\x7e\xfe\x67\xe7\xef\x1e\xe2\x76\x10\x3e\xea\x6e\xee\x60\x89\x5e\x22\xb5\xc4\x1e\x5a\x75\x25\x51\x16\x41\xfc\x68\xc8\x36\x26\xc1\x16\xbc\x61\x2b\x8c\x6c\x29\x7c\x2a\x90\x68\xbc\x6f\x1f\x1f\x75\xa3\x0e\x9a\xd4\xbc\xc8\x02\x5b\x07\x77\x81\xae\x84\x98\x0b\x1a\x94\x3f\x7a\x50\xb0\x96\xa6\x53\xd4\x07\x39\x6d\xf6\x3a\x5b\x69\xe1\x7a\x7e\x00\xe3\xcd\x0f\x80\x05\x30\x6d\x43\x43\xd3\xa5\x16\x0a\x15\x30\x9d\x30\x40\x2e\xee\x58\x89\xab\x41\xd7\x4c\x6f\x71\x92\x88\x4d\xa6\x94\xa6\x25\x99\x8d\xea\x09\x0d\x9a\x08\x2e\x33\x4c\xc5\x8e\x7a\xcb\xf9\x41\xc6\x97\x19\xcf\x14\x9b\x1f\x90\x09\x01\x87\x40\x6f\x3b\x96\x52\x99\x75\x92\x9c\x4a\x35\x25\x6e\x67\x41\x90\xe8\xb5\x66\x29\xe3\x2a\x4b\x68\x6e\x16\xd8\x1e\x27\xe3\x84\xe6\xc5\x9a\xf2\x6a\xc3\x4a\xaf\x1d\x5c\x80\xd0\xa8\x86\x3e\x19\x15\x1b\x7a\xbd\x04\x65\x6e\xbc\x1c\xbc\xda\x2c\x76\xb5\x9f\x45\xc9\xce\x2e\x4e\xae\xfb\xae\xc7\x0c\x9b\x91\x8c\xa7\x59\x82\x9a\x1d\x17\x81\xb2\xb6\xe9\xd5\x9b\x58\x85\x2c\xd8\x52\x84\x59\x37\xca\xb7\x44\x0f\x17\x5d\xeb\x42\x88\x9c\xed\x3a\x66\x74\xf0\xed\x2d\x2e\xeb\xda\xd7\x93\xe1\xad\xf6\xb4\x65\xf6\xa1\x15\x59\x72\x83\xff\x27\xaa\x20\x02\xd2\x7b\x6b\x69\x3d\xbc\x9b\x60\xe2\x65\xbc\x33\x54\xc2\x32\x1d\x71\xdd\x4d\xbd\x0e\xcd\xbb\xe5\xb9\xb8\x43\xa8\xa1\x0a\xcf\x29\xb5\x90\xb3\xfe\x17\xd4\xef\xe0\xc3\xfe\x9c\x67\x8a\x95\x14\x54\x2b\xa1\x91\xe7\x73\x32\xc1\x78\x31\x7d\xab\x37\x05\x2d\x33\x29\xf8\x11\x81\xa0\x51\xab\x97\xb1\x43\x2e\x85\x20\x0b\x5a\x82\xb2\xc8\x4d\xf7\x4f\x7b\x4e\x57\xcf\xa7\x59\x2b\xf6\xb7\x8a\xe6\x7f\x42\x17\x67\x2b\x2a\x64\x4b\x23\x23\x64\x12\xda\x58\xd3\x87\x9b\x32\x8c\x44\xfe\x13\xd6\x41\x6b\xc7\xbc\x45\xfd\x67\x82\x7f\x4e\xa7\x53\xf2\xdf\xde\x0a\x54\x59\x31\x1b\xa9\xe4\x9c\x7d\x71\x8e\x3f\x93\x70\x70\x81\xb1\xf9\xf4\x4c\x55\xaf\x55\x6f\x20\xe3\x03\x16\x17\x9a\x6c\xcf\xf5\xc2\x64\x5d\x0b\x0c\x1f\x89\xb7\xe6\x35\x95\x4f\x60\xbc\xcf\x9a\x74\x3c\xad\xa7\xbe\x76\x33\x53\x55\x9f\x8e\x77\x32\xff\x04\x97\x34\x48\x74\xcd\x10\x4e\x3f\x2c\x96\xd0\x16\xd4\x83\xf0\xdf\xea\xf9\xf3\x97\xaf\xf1\xff\xf1\x17\xd7\xe7\x6a\x2d\x4a\x35\x49\xb2\x32\xa9\x32\x05\x6c\xad\xe9\x14\x9a\xe8\xbf\xfe\xab\xb3\x37\x18\x92\xd4\x13\x6c\xf3\xd4\x35\x2a\x68\xc9\x8c\x48\xb4\x2a\x45\x55\x68\x91\x68\x3e\x57\x34\xcf\x9f\x04\x0d\x82\xa6\xa6\x00\xba\x05\x39\x7c\x61\x47\xb3\x77\x98\xe6\xb9\xa7\xe3\x83\x07\xfa\x1e\xef\x03\x0a\xb1\x11\x24\xa7\x9f\x36\xe2\x19\xeb\x2a\xeb\xe3\x77\x79\x44\x26\x47\xe4\x33\xc0\xe1\xd9\x94\x5c\xc1\x93\x23\xe6\xc9\x45\x07\xdd\x88\x92\x91\x42\xcb\x5f\x52\x66\xb7\x8c\x2c\x30\xc8\x63\x6b\xf5\xcb\x46\xf3\x4f\x98\x4c\x68\xc1\x48\xb2\xa6\x25\x4d\x14\x2b\xcd\xb2\xdf\xa2\xaf\x7c\xf0\x31\x3c\x01\x2a\xb5\xa1\x29\x9b\x54\x05\x5e\x0b\xf9\xd4\xa1\x23\x88\x2c\x34\xa8\xe3\x8e\x2d\xb4\xe4\xc6\x0c\xf2\xf0\x4f\x3c\x65\x45\x2e\xb6\x1b\xc6\x83\xe8\xd4\xf4\x2f\x4a\x91\xda\x4b\x0a\xe3\xea\x37\x05\x38\xa9\x14\x5c\x31\x9e\x7a\x57\x9d\x26\x37\xe6\x8b\xff\xd6\xcd\xeb\xf1\xc9\x3f\xfd\x4b\xec\x05\xa4\xec\xd6\x0e\xff\x4f\xa4\xf5\x0a\x42\xa8\xac\x8b\x79\x6a\x6a\x63\x87\x72\x85\x57\xc1\x5e\x5f\x8d\x35\x34\x8b\xb4\xca\x9a\x7d\x19\x44\xb0\xfa\x0c\xa0\xa9\x60\x1c\xaa\x39\x80\xbb\x35\x44\xac\x37\x68\xbe\xe7\x16\x67\xc4\xcc\x20\x9e\xd2\xef\x4e\x98\x0a\x2a\x47\xe6\x5f\x0b\xa1\xd6\x53\x82\x9e\xaa\x40\x4d\xbe\x14\x9a\xa3\x52\xf9\xd6\x13\x66\x9f\x40\xf5\x97\xa0\x0b\xb2\x87\x47\x39\x49\x4a\x66\x02\x64\xa4\x79\xdd\xa2\x24\x3c\xcb\x9f\x1e\xd9\x20\x97\x94\x2d\x69\x95\x2b\x49\x70\x5b\x1a\x74\x65\x1a\x91\x69\x94\x20\x77\x1a\x57\x9e\x1b\xc9\x59\x2f\xe2\xad\x27\x44\x03\xdf\x6a\xf1\xa7\x2b\x84\x82\x6e\x97\xb1\x38\x79\x33\x3f\xc9\x24\xbe\xb1\x09\xf9\x8b\x61\xe5\xf4\x82\xec\x4c\x7f\x3d\x32\x24\x42\x33\xc6\x60\xbd\x69\x4c\x1c\x7c\xc7\x19\x4f\xf2\x2a\xb5\x06\xce\x84\x6a\x66\x19\x06\xa8\x87\x21\x48\xa4\xb9\x70\x5b\x82\xe1\x9e\xc6\xbc\x2b\x9b\x8b\x7b\x1b\x5e\x5b\x03\x22\x1a\x31\xd5\xc3\x07\x85\x3b\x68\x17\xdd\xfa\x51\xef\x84\xa1\x41\x41\xb7\x18\x3b\x26\xc4\x81\x3f\x1b\xc5\xa2\x27\x9e\x94\x8c\xea\xd7\x94\xdc\x10\xba\xa2\x19\x0f\x5e\x59\xbc\x26\x68\x90\xca\xef\xe8\x56\xee\xc4\x27\xa0\xb7\xc8\x11\xe1\xec\x96\x95\x8d\x5b\x17\x54\xb2\x0c\xac\xb2\x54\x43\x81\x30\x20\x1d\xce\xae\x5a\x08\x29\xb3\x45\x6e\x27\xae\xdd\xe1\x74\x87\xab\x82\x25\x61\xb1\x1b\x37\x12\x77\x10\xec\x16\xf0\xa3\xb2\x73\x58\xe4\xde\xfd\x16\x28\x47\xea\xbb\x3d\x48\x25\x4a\xba\x62\xf6\x2b\xa9\xa8\xaa\x10\x30\x68\xf9\x63\xe9\x85\x67\x93\xb9\xc9\x78\xaa\xb1\x91\x05\x69\x91\x57\x25\xcd\xeb\x6f\x12\xc1\xd1\x10\x2f\x8f\xc9\x5f\xfe\xaa\xbf\xd1\xe3\xb3\xd4\x04\xda\x9a\x6f\xe7\x7c\x32\x99\xcc\x39\x2d\x32\x1b\xaf\x4b\x68\x91\xb1\x2f\x8a\x71\x68\x35\xbd\xf9\x4e\x4e\x33\xf1\xec\xf6\xc5\x9c\xe3\x8c\xa7\x95\x54\x62\x73\xc9\xd0\xa2\x78\xc6\x40\x42\x04\x6c\xdd\x88\x8a\x05\x3d\x18\x41\x9f\x6a\x8e\xfe\xc7\x92\x29\x39\x4d\xca\x74\x5a\x94\x42\xc3\x21\x01\x04\x34\x15\xe5\x6a\xce\x35\x66\x83\x7e\xc0\xae\x1c\x93\x48\xb3\xa6\x59\x0a\x17\xd4\x76\x95\xc6\xdf\xf2\x4c\xaa\x7f\x0d\xfe\xfe\x3e\x93\xaa\x09\xb2\x9d\x55\x9a\xf3\xc8\xf8\xaa\xca\x69\xb9\xdb\x40\xff\x0e\x68\xae\xbc\x65\x9f\xf8\x0d\x17\x77\xfc\x9d\xbe\x47\xf2\x98\x2c\x69\x2e\xe1\x3c\x65\x22\xf4\x91\x9f\xe6\x95\x54\x28\x6e\xde\x5a\xc8\xeb\x7f\x4c\x0c\x84\x34\x60\x61\xb2\x64\xcd\x36\x75\x40\xb1\x28\x18\x3f\x99\x9d\xff\xf4\xea\xaa\xf9\x7d\xeb\x51\xec\xb8\x89\x37\x02\x35\xc0\xdd\x80\x96\x8b\x4c\x95\xb4\xdc\x92\xf3\x19\x91\xd5\x62\x62\xb7\xf1\xec\xf4\xfc\xec\xb2\x81\x91\x50\xc1\xb1\xd6\x38\x0c\xd9\x1e\x10\x6e\x41\x32\x43\x24\xa5\x04\xc6\x0c\x1a\xdf\x8e\x0d\xb9\xcd\xa8\xe7\x65\x87\xfe\x13\xd8\xd5\x1f\x57\x2c\x77\x17\x6a\x4d\xf0\x4e\x9b\xe3\x3f\xc2\x88\xb6\xd5\xbb\xa5\xcd\x37\xd7\x4c\x82\xa2\xe1\x66\x9c\x4d\x30\x38\x03\xd1\x84\x01\x3f\x4b\x0d\xac\x11\x4f\x00\xd6\x33\x24\x8b\x86\xd4\x68\x1a\x84\xdc\xbc\xdc\x29\x30\x34\xac\x94\x56\xe4\x4d\x04\xbf\x65\xa5\x22\x25\x4b\xc4\x8a\x67\x7f\x77\x83\x4b\xeb\xfe\x02\xc5\xe0\x76\x98\xc0\x8c\x2b\x56\x6a\xd6\x07\x50\x16\x2a\xf9\x37\x74\x4b\x4a\xa6\xa7\x21\x15\xf7\x06\xb4\xce\x77\x1f\x34\xcb\x9b\xf1\xa5\x38\x86\xf4\x54\xf2\xf8\xd9\xb3\x55\xa6\xec\x03\x4d\xc4\x66\x53\xf1\x4c\x6d\x9f\x81\x41\x3e\x5b\x54\xfa\x48\x9e\xa5\xec\x96\xe5\xcf\x64\xb6\x9a\xd0\x32\x59\x67\x8a\x25\xaa\x2a\xd9\x33\x5a\x64\x13\x58\x3b\x07\x0c\x31\xdd\xa4\x7f\x28\xcd\x8b\x96\x87\x21\x7c\xb6\x8b\x06\xe1\xf1\x75\x1d\x83\x7e\x7d\x26\xa6\x1b\x79\x7a\x64\x4a\x1c\xb4\x2d\x61\xbe\x7c\x7b\x75\x4d\xec\xec\xc1\xf8\x77\x04\x7e\xdd\x53\xd6\xe7\xa0\x81\x96\xf1\xa5\xe5\xbe\xc0\x06\xe2\x2b\x2b\x90\xf4\xe7\x59\x80\x11\x97\xd5\x62\x93\x29\xe9\xe5\x35\x12\x53\x72\xea\x8c\x23\x55\x91\x52\xc5\xd2\x29\x39\xe7\xe4\x94\x6e\x58\x7e\x4a\x25\xfb\xea\xa7\x00\x2c\xe8\x44\xc3\x76\xe8\x39\x44\x72\x11\xc4\x34\xbf\x0e\xd1\x46\x8e\xad\xfd\x50\x35\xfd\x6c\x86\xc4\xd9\x08\xca\x3a\x67\x01\x25\x6d\xec\x5b\x7f\xec\xc1\xb6\x48\x6c\x87\x3d\x25\x12\xbc\xb1\x53\x37\xd2\xfa\x97\x9e\xcf\x88\x45\x69\x88\xc1\x16\x2c\x17\xfa\x6e\x09\xa3\x4f\x62\x21\x2b\x7c\x9c\xeb\x18\xe9\xfe\xc3\xe9\xfe\x5a\xc8\xda\x4b\xea\x2b\xd0\x7c\x3f\x14\xaa\x4d\xef\xfd\xdf\x76\x69\x7d\x63\x65\x6d\x3a\xef\xff\xf8\x6b\xd2\xf8\x91\xfe\x8d\xf4\xcf\x3f\x82\x91\xfe\xfd\x62\xf4\xcf\xc7\x1e\xc3\x68\xdf\x2e\x2e\xaa\x3f\xfb\x53\x3f\xf6\xa5\x00\x9f\x90\xf3\xd9\x10\x4d\x94\x3e\x69\xd3\xa1\x19\x19\xf8\xe4\x7c\x76\xfb\x0d\x3c\xab\xf3\xd9\xed\xeb\xa7\x56\x26\xb6\xd7\x22\x28\xf0\x9e\xa3\x82\xfd\x5c\xbf\xcd\x25\x4d\x18\xd8\xd1\xe6\xf3\x83\x96\xc9\xc2\x69\x8e\x40\x07\x90\x0b\x71\x63\x55\x77\x99\xed\x19\xd4\xd8\x5a\xd7\x1c\x2f\x62\xf1\x7c\xd6\x70\x96\xc3\x20\x6b\x30\xa6\x19\x9d\x04\x20\x11\xaa\xa6\xe0\x80\x1e\xa4\xd6\xf3\xb9\x02\x45\x46\x25\x77\x3c\xd9\x5b\xb1\xfb\x10\x2c\xe9\x9c\x3e\x44\x69\xd4\x6e\xa1\x41\xdb\xa5\x96\xe7\x73\x3d\x9e\xa9\xb1\xec\xf6\x6f\x90\x9f\x6c\xce\x9a\xf1\x70\x66\x00\x27\x90\xf9\xe7\x34\x85\x28\x5d\x4d\x76\x1a\x7e\xc5\xe8\xd1\xf0\xb6\xbe\x0a\xa8\xa6\x08\x0d\x9b\x49\xd4\x89\x62\xee\x28\xaa\x48\x51\x95\x85\xd0\x2f\xf5\xc9\xf9\xd2\xb8\x31\xad\x59\x7d\x34\x7a\x1e\xeb\xa7\xd8\xed\x0c\x65\xf5\x83\x82\xe1\xf1\xe7\x8c\x96\xdc\x1d\x9b\x39\xc1\x7a\x5c\xbd\x80\x4a\x82\x0e\x3b\xea\x80\x31\x9f\x2b\x7b\x1c\xd3\xa0\x06\xfa\xd1\xb9\x32\x52\xaf\xf0\x22\xec\x99\xd3\x7a\x52\x6f\x31\xdd\xa5\xbe\xf7\xff\x8c\xea\x77\x63\x1b\xa9\x7d\x72\x5c\x0a\x91\xf7\x19\xaf\xbe\x74\xdf\x7a\x67\x1d\x76\x17\xfa\x4f\x70\xf5\x36\x85\xda\x4e\x49\x3d\x8d\x6f\x50\x46\xeb\x6a\x26\x3b\x31\x8b\xfe\xac\xc4\x2d\x2b\x39\xda\x65\x9c\xaf\x9a\x38\xaa\xfd\xd3\xd6\xa5\xa8\x56\xe8\x83\x60\xd5\xac\x86\x55\xee\x0e\xa1\x37\x87\x0b\xf7\x52\x37\x74\x09\x04\xb0\xf0\x76\x8a\x68\x01\xee\xe4\x9f\x08\xd3\xfb\xc7\x87\x9d\xea\x4b\x72\x8b\x0f\x31\x9c\x52\xa2\xf6\xfc\xb9\x85\x5a\xe8\xdb\x1a\x7c\x47\xc4\x57\xd8\x0a\x89\x71\x07\xcf\x94\x00\x3f\x76\xbd\x16\xab\xba\x08\xbb\x01\xe4\x22\xa1\xb9\x0b\x42\x37\x4a\xce\xf3\x25\x69\xe0\x33\x8b\xcb\xbc\xf3\x1d\x04\x6a\x78\x48\x16\xde\x0d\xbf\x40\xd8\x3e\xe0\x13\xbd\x77\xc3\x6b\x01\xe4\x3c\xf0\x07\x91\x8c\xbd\x46\xf5\x1b\x72\xb0\x6e\xac\x19\xae\xe0\x84\xdc\x69\x34\xd7\x44\xce\x61\x7c\x80\x1a\xd7\x49\xe3\xf8\x03\x93\xb9\xb8\xc1\x5a\x79\xab\x5f\x76\x70\x50\xee\x23\x23\x48\x79\x5b\x82\x53\xc3\x51\x60\x55\x6e\x09\x47\x84\x02\xd6\xd8\x65\xff\x88\xb1\x39\xfb\xb4\xcb\x55\x3a\xaf\x13\x82\x61\xe8\x93\x16\x4a\x4a\x4c\x95\x67\x66\x91\xe4\x89\xac\xc2\x18\x86\x4a\x38\x5a\xa6\xd6\xcf\xf5\x7f\x9f\x9a\xb8\x1d\x30\x06\xb2\x94\xe8\x75\xff\x89\x64\x8a\x64\x92\x1f\xaa\x5a\x73\xdc\x4f\xc9\x09\x3e\xe6\xa2\x14\x9a\x7b\xf1\xae\x00\xc2\xd8\xc3\x0a\xcd\x7b\x58\xaf\x3a\x48\x73\x6d\x70\xd5\x31\xee\x15\x62\x19\x81\xfb\xc1\x78\x47\xb4\x25\x69\x8e\x6b\x53\xe4\x6c\xa3\xef\x1a\xa2\xfa\x1a\x71\xf8\x8b\x96\x7f\x0a\x9f\x5e\xa6\x32\x9a\xe7\x5b\xf2\xbf\x35\x8c\x8b\x92\x4d\xc0\x87\xc5\x59\x66\x66\xfa\x90\x98\x49\x4c\xec\xd0\x7e\x52\x6d\x62\x32\x81\xfe\xd8\x3a\xf4\xc8\xe0\x9b\x7a\xf7\x82\x07\x55\xfc\x5d\xc8\x9b\x87\xb3\xd2\xed\x88\xfb\xba\x9d\xf1\xb0\x07\x07\xa2\xe5\xd6\x12\x7c\xb3\x62\x68\x90\x69\xf1\x99\x07\x81\xdd\xb5\x88\x58\x74\x6f\xcb\x02\xa1\x89\x7d\x83\x1f\xf4\x3c\x6d\xf1\xed\x9a\xc0\x53\x9b\xa5\x38\xe8\xb5\xbb\x60\xa8\x45\x65\x3c\x41\x77\x27\xc7\x6e\x98\x03\x37\x0e\xa9\x7b\x50\xc7\x5e\xf7\xd4\x4e\xb7\xd4\x7e\x57\x46\xbd\xad\x9e\xee\x9d\x51\xa5\xbf\xa5\xec\x63\x5f\x2b\xd9\x54\x8f\x93\x26\x8f\x20\xec\x09\x00\x37\xf2\x4b\x47\x3a\xb9\x7b\xbb\x76\x16\xc8\xc6\xf6\x5e\xf7\x93\x3a\x82\x1b\x1f\x5c\x06\x74\x6e\xe9\x71\xc7\x38\x92\x59\x44\x3c\x49\x67\x1d\xd1\xa1\x49\xad\x93\x41\x30\x39\xbb\x59\x8e\xe7\x1d\x69\x45\x02\x74\xfb\x8b\x0d\x8a\x21\x11\x45\xc1\x68\xe9\x1c\xee\x20\xe2\x86\xb8\x75\xd5\x36\x69\x3b\xb2\x75\x9c\xac\xf9\xf5\x49\xd4\xad\xb0\xf5\x2a\x47\x1d\xe2\x2f\xac\x43\xcc\x0a\xba\x59\xe4\x22\xb9\xf9\x1a\x0a\xc4\xf3\xd9\xc9\x87\x37\x7a\xf0\xb6\xf6\xd0\xfd\xb0\xab\x3a\xac\x17\xd4\xd6\x1b\xba\x5f\x46\xa5\xa1\x59\xe5\xa8\x34\x1c\x95\x86\xbf\x1f\xa5\xa1\x43\x1a\x83\x34\x86\xbc\x8d\x7d\xea\xcf\xfe\xfa\x42\x2d\x86\x68\xd8\xf5\x52\x73\xd3\xce\x4a\x7a\x80\xae\x8c\x1f\x51\x26\xf1\x9f\x56\x1a\xc4\x48\x39\xa6\x82\x6a\xa1\x4c\x39\x8f\x7d\xaf\x26\x08\x99\x1f\x68\x99\xf7\x18\xeb\x76\xe8\x3f\x81\xdf\x01\xff\xd1\xf9\x01\x0c\x08\x6e\x99\x4c\x1d\x79\x13\x46\x04\x58\xdd\x12\xf6\x85\x55\x68\x40\x9a\xde\x93\xa1\xa7\xb9\x16\xc3\x62\x79\xce\x9b\x90\xd1\x74\x18\x30\x56\xdd\x87\x64\x7c\x52\x99\xe0\x0a\xcb\x5c\xc0\x8a\xa7\x84\x67\x39\x14\x94\x89\x84\x38\x6c\x18\x45\xee\xa5\x1e\x8d\xc0\x1b\x63\x0c\x95\x7d\x5c\xf0\x89\x37\x86\x96\x91\x33\x9e\xb2\x2f\x24\x3b\x8a\x69\x0a\xcc\xef\x2e\xe4\x24\xd3\x48\xd0\x00\xdf\x9b\x66\x67\xb1\x80\x21\x23\x63\x22\x5e\x31\x63\xe2\x04\x76\x44\x29\x45\x92\x41\xce\x0e\xaa\xf0\x39\x32\xa7\xa6\x3d\x71\xdf\x04\x19\x3d\x0d\xca\x7b\x30\x4a\x1d\x7c\xfd\x1f\xc8\xf5\xc7\xb3\x8f\xc7\x98\x7a\x88\x57\x79\x4e\x17\xc8\x2c\x6e\x28\xaf\x40\xa8\xa5\x69\x0a\x3c\xe3\x94\xfc\xcc\x2c\x89\x41\x3c\x44\x5c\x6e\x82\x72\xb2\x0a\xe7\xe2\xfc\x83\xbe\x61\x6b\xca\xd3\x9c\x91\xbf\xfc\xf5\x9f\x35\xf2\xc3\xc7\x96\x6f\x4d\x12\x91\xa0\xd8\x6e\x17\x12\x93\x06\x3a\xd8\xef\x1a\xa6\xbd\x17\xd3\x83\x3e\x38\xcc\x52\x77\x53\x9d\x4f\x8f\x45\x64\xde\xa9\x85\xd6\x0b\x2e\xcd\xcd\xfb\x5d\x63\x81\x29\xb9\x16\x64\xa9\x09\x8f\x77\xde\xa8\x11\xc1\xb0\xbb\xba\x63\x10\x23\xe8\x87\xd2\x70\xde\x6f\xde\xcb\x43\x69\x0a\x30\xd9\x2b\xe4\x2d\x23\x1a\xa3\x4e\x03\x17\x93\xa1\x06\xc4\x71\xfb\xfb\xdf\xb6\x5e\x31\x19\x6f\xc2\xe7\x2c\x2c\xc4\x91\x41\xb2\xb2\x64\x9a\x7d\xa6\x65\x08\x25\x9b\xcd\xed\x57\x5c\x61\x88\x50\xdb\x17\x41\x78\x6f\x69\x31\xc9\xd2\x5e\x2f\xef\x6b\x7b\x93\x0e\x25\x39\x3d\x3f\xbb\xdc\x13\x57\xa7\x2c\x67\x2a\x28\x37\x37\x66\x39\xc3\x66\xe6\x2d\x38\x66\xd0\x84\x48\x39\xcf\xf0\x3b\x51\xde\xd0\x52\x54\xfa\x3a\x7b\x15\x02\x22\x6a\x4d\x7d\xaf\xbc\x58\xf1\x93\xd9\x39\xfa\x08\x2f\xb6\xb8\x2c\xc4\xab\x39\x86\xbc\x94\x4c\x55\x25\x27\x50\xc8\x63\x99\x67\x61\x48\xb3\xb2\x14\xa5\x8d\x67\xa9\xc9\xea\x82\x31\xee\xb1\x47\xca\x62\x2a\x1b\x8a\xcd\x94\xc3\x68\xfb\x47\x83\xfd\xad\x62\x3c\x61\x17\x10\xd8\x16\x04\x23\xe8\xfe\x8f\xc9\xf3\x1e\x10\x6b\x04\xaa\x05\x3d\x30\x56\xe1\xa0\x26\x5c\x0e\xb5\xc5\x99\xb4\x5b\xc0\x40\x73\x95\x85\x75\x1a\xf5\xd6\x33\x49\xee\xca\x4c\x29\xc6\x8d\xb8\xdf\xa0\x57\xe0\x43\x2c\x85\x99\x14\xc5\x72\x9c\x36\x8c\x74\x61\x25\x3e\x03\x43\x4c\x20\x9a\x5e\x08\x68\x2a\x94\x74\x2e\xef\x26\xd9\x73\xc9\x72\x46\x65\xe4\xe9\x00\x2f\x76\x44\x0a\x2a\x3d\xf3\x61\x73\xe3\x1e\x39\x04\x2c\xda\x44\x6e\xc1\x41\xf3\x5c\xdc\x49\x52\x49\x5f\x61\x0c\x0e\xd5\x52\x11\x4a\x4a\x8a\x49\xc6\x4d\x9a\x2c\x4d\xa3\x19\x97\x95\x01\xc0\x79\xb0\x44\xe4\x9a\x82\xbe\x1a\x2e\x11\x6e\x48\x53\x67\x9e\x92\x92\x4d\xcc\x62\xb4\x14\x05\x49\xf1\x20\x0e\x11\xdb\x58\x36\x3d\x70\xa3\xb0\x42\x0a\x90\xde\xd7\xdf\xc4\x2e\x5c\x84\x2e\x37\x2f\xdc\x3b\x51\xd6\x28\x3d\x70\xfb\x06\x63\xbb\x9e\x25\xf5\x32\x0b\xad\x8a\x19\x85\xc7\xd3\xb1\xd4\xf1\x4d\x5e\xfe\x05\xbc\x42\x10\x4d\xf2\xa0\x5b\x57\x5f\x87\xa9\x8f\x4c\xac\xe5\x34\x7a\x47\x48\x1d\xe2\x7a\xc3\xb6\x36\x83\x45\x21\x8f\x88\x44\x39\xf8\x86\x81\x5b\x7e\x42\xa5\x32\x05\xce\x00\x81\x46\x11\x44\x18\xbf\x63\x2a\x96\x93\x81\x82\xc2\x55\xa3\xb5\x0d\xae\x75\x12\x8b\x5e\x4f\xaa\x65\x4a\x84\xaa\xbe\x83\x3c\x68\xef\xce\x05\x5f\xb1\x12\xd1\xb2\xb1\x1e\x62\xe5\x98\x4f\x12\x87\x3b\x15\x7c\x99\xad\xda\xf3\xe9\x47\xc2\x68\xc8\x23\xbf\x13\x07\x56\xdc\x9d\x74\xdf\x06\x3f\xd5\x4d\x6d\x20\x52\x89\x61\xcf\x56\xdf\xe9\x33\x4a\xa8\xc9\x8f\x44\x59\x68\xae\xbe\xc9\x4a\x3d\x22\xef\x1b\x25\xca\x11\x45\xf3\xc4\x5f\xf7\xce\x4f\x11\xbe\x7d\x02\x04\xbe\xfd\x5d\xf3\xc6\xb4\x7f\xf5\x60\x3d\xaa\x2f\x3b\xd5\x97\x09\x5c\xf1\xaf\xa5\xbf\xc4\x07\x14\x52\x60\xe2\x2f\x61\x0d\xa6\x59\x53\x48\x85\x99\xb8\x01\x47\x1d\xe6\xa8\xc3\x1c\x75\x98\xbf\x3b\x1d\x26\xe2\x8d\x3d\x94\x98\x3e\x0a\xaa\x3f\xf7\xd0\x62\x56\x4a\x18\x26\x92\x01\x9b\x11\xa2\x98\x9d\x0c\xc0\x86\x7e\xc1\x8e\x33\x56\xfe\x08\x9a\xc8\x3e\xfe\xb0\xd9\x1e\x54\xa1\x5c\xf0\xc9\xdf\x59\x29\x8e\xac\x62\x6c\x43\xbf\x78\x0c\xa0\x6f\xfc\x69\x2d\x0d\xd2\x95\x51\x0e\x39\x30\x9c\xe6\x12\x64\xa4\x88\xf2\x72\x43\xbf\x64\x9b\x6a\x73\x4c\x5e\xbe\xf8\xe6\x8f\xdf\x7c\xf7\xea\xf5\x37\x7f\x0c\x34\xca\x38\x36\x0a\x08\x6e\xdd\x1c\x7a\x1f\xcb\xd7\x01\xcb\x38\x7b\xb1\x73\x48\xfb\xf0\x0d\x23\x73\xd0\x62\x0e\x50\xd7\xf4\xb5\x98\x83\x1f\x61\xf4\x10\x73\x80\xbf\x84\x99\x03\xb3\xa6\x10\x73\xb0\x76\x03\x8e\xcc\xc1\xc8\x1c\x8c\xcc\xc1\xef\x8e\x39\x40\xbc\xb1\x07\x73\xe0\xa3\xa0\xfa\xb3\x3f\x73\x00\x64\xf7\x21\x8a\xa5\x41\x82\x76\x58\x77\x12\xd7\x4d\x77\x72\x23\x88\x2c\xcf\xcf\xa2\xfd\x42\x9a\xf0\x28\xe1\x0d\xd8\x4a\x27\x6e\x8a\x91\xca\x76\x50\xd9\x42\x88\xfc\xeb\x50\xd8\x99\xb0\x6e\x79\x3e\x75\xd5\xdf\x86\x28\x2b\xac\x63\x97\xaa\x16\x66\x90\x91\xa2\x8e\x14\x75\xa4\xa8\xbf\x33\x8a\xaa\x71\xc5\x60\x6a\xaa\x1b\xdf\x47\xae\xc6\xdc\x6b\x9f\xe4\x00\x6f\x03\xd7\xd4\xba\x4d\x48\x4c\xf6\x84\xea\x7f\xa2\x71\x95\xf3\xfc\xb1\x21\x67\x90\x6c\x34\x44\x72\xc1\xd9\xc7\x65\xab\xb2\x11\x4f\x47\x75\xb6\x29\x25\xc8\x5f\xe6\x07\xd7\x15\xe7\x2c\x87\x24\x67\x07\x3f\x9b\x88\x89\xf9\xc1\x5f\x61\xdf\x0b\x9a\xdc\x4c\x20\x7d\xa3\xca\x16\x59\xbe\x23\x50\x92\xaf\x13\x2f\x06\xc4\xf6\x2a\xfb\xfb\xa0\xa0\x04\x34\x07\xc9\xec\xef\x20\xef\x57\x12\x23\x49\xea\x08\x3f\x42\xa5\xcc\x56\x7c\xa3\x1f\x53\xb4\x28\x84\xc9\x1b\x26\xf2\x29\x39\xf3\xc0\xf3\xf2\xb5\x19\xcc\x04\x72\xbe\x78\xf9\xd2\x7e\xf1\x3a\x6a\x1e\x89\x30\x39\x43\xad\xf8\x70\xc8\xf7\x31\xe1\x67\x92\x2e\x72\xf6\xe6\x87\xd9\xdb\x2f\x91\x58\x81\x26\xd2\x3a\xc3\x0e\x84\x41\x73\x8d\xa2\x4a\x51\xb9\xdc\xea\x00\x91\xf3\x19\xd1\xb7\xfe\xd0\x38\x15\x10\x71\x1b\xf6\x10\x7a\xf3\xc3\x6c\x4a\xfe\x72\x66\x6d\xdc\x40\x34\xff\x1a\x28\xe2\xda\xc9\xb0\x99\x0d\xf4\x1a\x8f\xc0\xa4\x6c\x1b\x83\x96\xa8\xac\xea\x88\x50\xcd\xf5\xd6\xee\x02\x78\xf6\x75\xb0\x67\x68\xf1\xf5\x76\xe1\x02\xec\xb9\xea\xac\xc8\x8a\x7e\x50\x3b\x6b\xdd\xb1\x41\xde\x90\x6e\x2f\xc3\xe2\xe4\x75\xf4\xe8\xc9\xec\xfc\xf6\x05\xbc\xba\x3b\x5a\xa6\xc1\xd5\x36\x5e\xa3\x26\x0e\xca\x50\x17\x7f\x54\xd8\x3a\x22\x93\xa3\xe6\x4f\x41\x00\x60\xc8\x2c\x52\x69\xfd\x80\xf4\xa2\xa6\x81\xe3\xeb\xf1\xdd\x61\x3c\x76\x7e\xe1\x33\x34\xed\xeb\x23\xd4\xb0\x24\x0a\xf0\x91\xde\x93\x8f\xe9\xc2\x63\x42\x3c\x58\xca\xf2\xec\x96\x95\x75\x79\x21\xfd\x95\x2b\xbe\x27\x5b\x49\xc6\x83\x27\x4c\xfa\x4e\x99\x40\xbe\xcb\x60\x94\xd4\xce\xde\xae\x01\x59\x9f\xcf\xa0\x03\x24\x64\x02\xfb\x31\xf7\x92\xb4\xcd\x0f\x30\x6f\x9b\x2d\xa6\x09\x25\x7a\x27\x58\x36\x76\x7e\x30\x25\xe4\x24\xb6\x5f\x3d\x66\x6b\x84\xda\x87\xa3\x92\x66\xe6\x1a\x86\xfa\x6c\xf5\xb3\x86\x3b\x12\x2d\x97\xee\xc1\xab\x19\xc3\xbe\x03\x3b\x42\x4e\xbc\x35\x34\xd7\x1d\x1b\x1d\x16\x68\x2f\x7a\x7b\x81\x77\x36\x05\x9e\xbf\x06\x8c\x23\xd3\xaf\x23\x36\x26\xad\x4b\x80\x99\x72\xbb\x96\x0b\xb5\x45\x22\xf4\xe0\xdc\x9e\x40\x1d\x7c\xdb\x59\x3a\xf1\x49\xb6\x6c\x92\xcd\xa7\x7a\x15\x35\xac\x3b\xaf\x4e\x37\xa1\x0b\xcb\xb6\xfa\xc6\x7f\x18\x10\x7d\x77\x6a\xf9\x13\xb4\x0f\x56\x65\xcd\x9b\x04\x0e\xbc\xfb\xaa\x9f\xb7\xf6\x78\x64\xeb\x9b\x64\x12\x3d\x0b\x00\x50\xe8\xc9\x35\x3f\xb8\x60\xb7\x90\x0e\xfd\x09\xe4\x1e\x6f\x4e\x16\x1a\x5d\x8f\x60\x70\x73\xa8\xb0\x5e\x67\x18\x22\x55\x13\x51\xa9\x95\xc8\xf8\xea\xf7\x82\x52\x3b\xb1\x0e\xa7\xea\xe3\x40\x78\x60\xaa\x52\x0f\x80\x35\x56\xb5\x78\x11\x32\x82\x7a\x65\xc3\x48\x67\x28\xb7\xe1\x88\xb5\xe0\xe1\x23\x80\x1d\xec\x2a\x2a\x25\xb3\x94\x39\x09\xd3\xf1\xa8\xa1\x41\xa1\xa8\x8a\xfc\x5b\xc5\x4a\x9a\x06\x2b\xe4\x74\x83\x43\xa4\x83\x6b\x21\x9c\xa0\x03\x98\xe1\xda\x4d\x0e\x3d\x7d\x5d\x8c\x57\xad\x0b\x15\x06\x54\xb3\xd8\x62\xca\xbc\xd0\x9a\x5d\x41\xa1\xfd\x2e\xf3\xed\x97\x9c\xf2\x07\x3e\xed\x9f\xfe\xfc\xfe\xe4\xe2\x17\x7b\xdb\x30\x5b\x90\x39\x76\x0b\xb8\xf7\xe3\x8e\xea\xd5\x76\x5d\x5f\x46\xf5\x59\x43\x7d\x86\x6a\x29\x7c\x6c\x5f\x45\x8b\x76\x59\x4f\xb0\xab\x4c\xf3\x7e\x0c\xe9\xd4\xfc\xc5\xed\xaa\xd6\xca\xe6\xc8\xa3\x86\x6d\xd4\xb0\x8d\x1a\xb6\xdf\x99\x86\xcd\x43\x20\x83\x15\x6d\x3b\x18\xa9\xfe\xec\xaf\x7e\x33\x48\x27\x85\x4c\xbb\x7d\xb4\xf8\xd2\x6f\xdc\x2c\xa1\x8e\x5f\x51\x9e\x3e\x6b\x68\x97\xc2\x2a\x05\xf0\x45\xd9\x51\x48\xb0\x2f\x49\x5e\xa5\xa6\x96\x2f\x67\x77\xbe\xb3\xe8\x18\xda\xfe\x0b\x53\xd6\x9b\x6a\xc1\xea\xd8\x34\xd9\x60\xbe\xbe\x06\xa1\xfd\xd7\x6a\xc1\x4e\xeb\xf9\x4e\xfd\xf9\xda\x74\xb7\xab\xed\x2e\x19\xee\xdc\x49\x9b\x2a\x77\x35\x1e\x89\xb4\x59\xe5\x48\xa4\x47\x22\xfd\xfb\x21\xd2\x5d\xd8\x66\x97\x66\x37\x0a\x3c\xb4\x01\xec\x45\xde\x78\x48\xa6\x29\xd9\x0e\x27\xdd\xde\x10\x43\x84\x68\x3b\x1b\xaa\x95\xb1\xe4\x86\x9d\xd9\x14\x8b\xb9\xcd\xd2\x8a\xe6\x3d\x15\x3d\xbd\x69\xf7\x56\x81\xf7\x15\xe9\x8c\x94\xe6\x8c\x2c\xb9\x59\xa7\xb3\x5e\x57\xb4\x30\xe6\x5b\xa3\x51\x87\xd0\x49\x10\xf5\x8f\x20\xac\x51\x09\x88\x99\x57\xc2\x8a\xef\x91\x11\x06\x94\x58\xd5\x68\x8a\x27\x59\xce\xca\x19\x2b\x33\x11\x8f\xd2\x6d\x23\x87\xcb\x56\x47\xeb\xdf\x5b\xe0\xbf\x94\xd0\x7f\x41\x1e\x03\x3b\x45\x16\x0d\xef\xb3\x1f\x17\x0d\x68\x33\xa6\x51\x45\x81\x97\xf0\xad\x51\xdf\x6e\x42\xa6\x28\xfb\xe9\x8f\xec\xed\x8b\xeb\x8d\x64\x4f\xdb\x81\xc0\x85\x48\xbb\x4f\x5a\xff\xfe\xdb\x38\xe4\xb5\x97\xd0\x6e\xe8\x01\xfb\x49\xf0\x6a\xf3\xb5\xdc\xf2\xc4\x6a\xe2\x81\x42\x42\x5a\xc6\x3a\x2f\x79\xd7\xe9\x9e\x59\x1b\xdf\x7d\x77\x3a\x70\xb7\xc4\x78\xbf\x9f\x96\x8c\x46\x52\xdc\x46\xf6\x7c\x78\xe2\xba\xd5\x27\x5b\x29\xb1\xa1\x2a\x4b\xea\xc2\x4f\xa2\xb7\x12\x79\x13\x2a\x20\x0a\xb1\x5b\x56\x6e\x8d\x05\xa3\xbe\xcc\x16\x26\x5d\x57\x9a\x0c\x2e\x8d\x3b\xa4\x30\x6e\xce\xe8\xcd\x0f\x25\x4d\xd8\x9e\xef\xfd\x7d\xb3\x5f\xeb\xb9\x37\x63\x12\xed\x9d\xef\xda\x13\x28\x9e\xb1\xdc\x37\x54\x0c\xa4\xbe\xa9\xaa\x8e\xef\xd6\xcb\xd5\x34\xfc\x0a\xef\x49\xc0\x6b\xbf\x39\xa4\x31\x82\x9f\xcf\xc8\x8a\x96\x0b\xba\xd2\xcb\xc9\x73\x96\x60\x28\x69\x0d\xf8\x17\x0f\x45\x23\xbf\x47\xd4\x49\xe0\xfd\x43\x81\xc2\xae\xe7\xd7\xdc\xed\x95\xeb\xe2\x7b\xc1\x98\xfa\x6e\x82\x24\xa2\xd8\x0e\xac\xc9\x0d\x18\xb5\x2e\xa3\xe3\x25\xa9\x94\xfe\x2e\x0d\x42\xfd\xba\x54\x02\x33\xd8\x0d\xa1\x13\x26\xe1\x75\x07\xa5\x30\x39\x2a\x7f\x1b\xb4\xe2\xf7\x77\xab\xfb\x8e\xba\x59\xa7\x71\xc8\x91\x37\x6b\x34\x76\x1d\xbd\x19\x3b\xb6\x7c\x53\x75\xd1\xbf\x1a\xe3\x1d\xf8\x35\xee\x80\xcd\x3d\xdc\xc3\x45\x35\x6d\xb8\xad\x3e\x5d\xf7\xc0\x8e\x1f\xdb\x03\x6b\x71\x62\xe3\x4d\xf8\x75\x6e\x42\x77\x60\xc3\xa2\x5a\x99\x44\xa9\xb3\x01\x1e\x7b\x67\xad\xf6\xbb\x64\xa1\x54\x98\x4a\xa3\xbc\x65\x64\xc3\x36\xa2\x0c\x27\x76\xd2\xd7\xa9\xa8\x5c\x16\x5a\xa2\x39\x9d\x5d\xcb\x31\xfe\xdc\x32\xfb\x76\xa7\x31\x79\xf5\x32\x06\x81\x88\x53\x24\x53\x49\xfa\xd3\xab\x53\xb1\x29\x28\x70\x5c\xd1\x4b\xd3\xbc\x2c\x6f\x83\xdd\x5a\x57\x66\xc1\xd4\x9d\xe6\x08\xf5\x1c\xb7\xaf\xc2\x92\xbe\x1d\xc0\xa9\x84\x6a\xc6\xd1\x7f\x0e\x3e\x1f\xf8\x3c\x78\x5f\xba\xee\xc9\x9a\xd1\x5c\xad\x4f\xd7\x2c\x1c\x53\xdb\xdc\xda\x8f\x5e\x63\x87\x00\x44\x69\x97\x22\x5d\x59\x65\x2d\x23\xe0\xc8\xc1\xad\xe1\x00\x83\x98\x9c\xae\xb5\xe7\x62\x75\xa5\x25\x91\x4c\x6d\xaf\x92\x92\xb1\x50\x76\x99\x16\xdf\xdf\xee\x61\x8f\x25\x17\x2b\x22\xcd\x2f\x84\x2e\xc4\x2d\x33\x99\x3d\x72\xb1\x8a\xa4\xb2\x63\xe8\xb4\x62\x14\xab\x52\xa5\xa2\x52\xfe\x61\x9c\xf3\xa5\xd8\x77\x47\x45\x29\x36\x9a\x99\xac\xe4\x07\xa6\xca\x2c\x91\x43\x9e\xde\xe1\x2c\xd4\xcb\xee\xec\xfa\x74\x66\x1e\x9f\x75\xd6\xae\x9b\x87\x36\xb6\xc1\x21\xf0\xa1\x96\xae\x76\x7f\xc6\xb1\x6a\x7f\xcf\x0d\xfc\xfe\xf9\xf7\xdf\xc4\x37\x1d\x7c\x68\x71\xf7\x8b\x98\xae\x2b\xaa\x4c\xac\x4d\x3f\x11\x50\x75\xaa\x13\xa1\xb7\xa7\xd6\x35\xe7\xaa\xbf\x0d\x68\xe1\x8d\x70\xe8\xe9\x0e\xc9\xb9\x3a\x84\x6a\x2b\xcb\x2a\x47\x83\x61\xba\x01\xcd\xa4\x80\xb0\x6f\x2d\xc9\x01\x02\xc4\x14\x4c\x34\x51\x15\xdd\x71\xea\xc1\x11\xf1\xac\xee\xa8\x4b\x79\x6d\x33\xc6\x1b\x4f\xcd\x8d\x48\xd1\x71\x7e\xa1\x59\xf1\xdb\xac\x14\xe0\x42\x4e\x6e\x69\x99\xc1\x43\xdc\x59\x2f\xba\x31\xde\x54\x0b\x36\xf1\x95\x9f\x45\x29\x12\x26\xdb\x9a\x8e\xae\xf2\x43\xf5\x6c\x3f\xd1\xa0\xea\x73\xcf\xa8\xbb\x18\xf5\x6a\x1c\xdb\xdb\xe6\xac\xed\x1c\xfb\x01\x00\x44\xbc\x33\x83\x40\xc0\xd4\x65\x7c\x99\x57\x98\x71\x1f\xac\x00\x15\xe7\x19\x5f\xe1\x05\xd9\x33\x9f\x52\xe9\xf7\xed\xb5\xea\xfa\x8d\x5b\x1b\x5b\x2e\xb5\xa8\x7f\xcb\x1a\xb7\x22\x93\x76\x82\xd0\x06\xb3\xd8\x41\x8b\xf4\xc8\x64\x37\xdf\xb0\x72\x65\x8d\x1d\x27\xb3\xf3\xda\xd6\xa1\x39\x92\x30\x49\x8e\xdc\xb2\x00\x5c\x7a\xb8\xb0\x6e\xad\xf9\x0e\x70\x1e\x53\x73\x4e\xfa\xb4\xe7\x03\x96\x4f\x06\x68\xd1\x77\x36\xb1\x9f\x26\xbd\x8b\x65\x7c\x4c\x76\x79\xe0\x6e\xc9\x7e\x6c\xf3\xce\xe6\x87\xb3\xce\x7d\x5a\xc8\x26\x67\x3d\x88\x7d\xee\x1b\xb2\x9b\xbb\x26\x8f\xaa\xa9\xec\x50\xc4\x93\xaf\xa5\x8c\x27\x8f\xa0\x64\x21\xc3\xef\xc9\x40\xc5\xfc\xce\x76\xf7\x50\xce\xf7\x9d\x68\xad\xbb\x7f\x1c\x05\xfd\x1e\xbb\x27\xfb\x28\xea\x77\x60\x30\x4c\x59\xdf\x3f\x28\xb0\x26\x8f\xae\xb0\x27\x83\x9f\x02\x19\xf8\x1c\xc8\x5e\xca\x7b\x72\x7f\x05\x7e\xdf\xc6\xea\x67\xb4\xa7\x12\xbf\x6f\xe0\x00\xa3\xdc\xab\xc8\xef\x1b\xb3\x47\xcf\x4f\xf6\x38\xa6\x11\xa9\xf7\x82\x68\x90\x79\x60\x17\x38\x8f\x67\x22\x20\x8f\x6a\x26\x18\xbe\xf5\x21\x0f\xb8\xd3\x64\xb0\x03\x94\xc7\x34\x1b\x90\x5f\x96\xaa\x8d\x0f\xe5\x11\x6e\xcb\x20\xab\x03\xf9\x6a\x96\x07\xf2\x95\xac\x0f\x64\xbc\x46\xbf\xe8\x35\x1a\x68\xb8\x20\x5f\xd3\x78\x41\xbe\x96\x01\x83\x8c\x97\xe9\x17\xbc\x4c\x7d\x2d\x06\xd8\x3f\xc8\xd7\xb2\x81\x90\xc7\xb7\x83\x90\x7e\x5b\x08\x19\x52\x6e\x65\xb0\x4d\x64\x07\x38\x8f\x65\x17\x21\x8f\x6b\x1b\x21\x03\xee\x54\x8f\x8d\x64\x77\xab\x8f\x64\x27\x21\x7b\xda\x4a\x86\xec\x65\x88\xcd\x64\x77\x43\x7b\xdb\x4d\x62\xdb\xc9\xc5\x4a\x3e\xc0\x76\x32\x64\x87\x43\x6d\x28\xbb\xbb\x7c\x54\x3b\x0a\x79\xa8\x2d\x25\x36\x68\xcc\xc4\x42\xfa\xdf\x6f\x47\x09\xd2\x0e\x73\x0b\xe9\x44\x97\x63\xe0\x8e\x17\xb8\x63\xa2\xd6\x41\x98\xc9\xbe\x4a\xee\xd6\x0b\x9c\x01\x05\x2a\xfc\xa1\x8e\xcd\x69\xfc\xb8\x1b\x8c\xd3\x5a\x9d\x39\x05\x17\x7e\xe3\xff\x0c\x43\x0f\x8c\xb7\x71\x0a\x6e\xe0\x99\xc6\x90\x9b\x31\xe4\x66\x0c\xb9\xf9\xc7\x0a\xb9\xe9\x32\xf8\xae\x4a\x26\x7b\x3d\x43\xae\x6d\x39\x66\x7d\xfd\x19\xc4\xa4\x62\x47\x53\xab\x9c\x60\x71\x27\xfd\x0f\x67\xe3\x0c\x51\x30\x6a\x7b\x63\x5e\x10\xb2\xa1\x2a\x59\x93\xa4\xcc\x14\x2b\x33\x0a\x8f\x84\x92\x44\x94\x25\x93\x85\xc6\xf7\x7c\x45\x0c\x1f\xa8\x04\x96\x91\xde\x2b\x56\xb5\xb1\x87\xf9\xc1\x09\xb9\xd4\x0b\x64\x3c\xa1\x85\xac\xe0\xdd\xd6\x2b\x0a\x2d\x25\xa2\x90\xa7\x46\xaf\x4b\xde\x08\xb5\x6e\x55\x92\xf6\xaa\x63\x9b\xea\xfd\x3c\xdd\xa9\x98\x1d\x61\x28\x5c\x55\x78\x53\xb9\x7a\x42\x24\x2b\x68\x89\xe5\x8b\x2a\x45\xa8\x1f\x13\x8c\x4d\x20\x51\x9e\x5e\x45\xc6\xe1\x3c\x22\x0b\xe6\xa9\x3d\x2f\x1f\xf0\x19\x5f\x4d\xc9\x7c\xce\x4d\x21\x6e\xa8\xe0\xaf\x05\x97\x26\x24\xd6\x34\x36\x2a\xe1\x6c\x05\x8b\x33\x88\x57\x8b\x2b\x6c\x99\x7d\xb1\xa5\xb2\xe6\xf3\xf9\xc1\x85\x50\xfa\x3f\x53\x72\x92\xe7\x26\xa5\xbe\x3f\x7a\x78\x64\x93\xf9\x89\xe2\x85\xda\x54\x12\x6b\xa4\x51\x95\x49\x70\x8b\xc0\x34\x2a\x66\x2b\x4a\xe0\x98\x53\x72\x02\xc4\x6e\x37\xe5\xb0\x81\x2e\x5c\x4e\xca\xed\x05\x35\x22\x9b\xd9\x34\x14\x32\xd2\xdb\xd1\xff\x30\xfb\x01\xca\x80\x83\xc7\xe1\x0a\xd0\x0f\x2f\x11\x2a\x71\x55\xe8\x16\x82\x4b\x0c\xe7\xa9\xea\xd5\x0a\xe0\x85\x8b\x72\x8c\xfd\x32\xb3\x97\x35\x27\x3a\x4a\x4b\xd4\xad\x13\x62\x35\x9c\x16\x5a\x97\x03\x98\x65\x78\x98\x1d\xc2\x7a\x23\x6b\x0f\xd1\xb8\x50\x85\xde\xf1\x40\x60\x10\xdf\x48\xdf\x91\x92\x27\xb2\xb3\xf9\xc1\x45\xbb\xb3\x2d\x03\x55\xa0\x5f\x8b\x49\xae\x14\x2b\x3c\x5f\x7f\x1c\x60\xa8\x43\x02\x84\x7d\xd1\x24\x4c\x02\x7e\xf8\xc8\xf3\x2d\x51\x25\x5d\x2e\xb3\x04\x21\x65\xf3\x83\xf5\xd9\x05\x80\xca\x3d\xd1\x57\x08\xcc\x55\x88\xa9\xd4\x53\xcf\xe8\xe7\x95\x31\xc3\xb9\xe3\x69\xea\x5a\x20\x93\x2e\xb7\x1d\x9c\xa5\x26\x80\x90\xc0\x09\x2e\xf2\x0e\x6c\xba\x07\x45\x2c\x29\xc0\xf6\xe1\x40\xa0\xc5\x3f\x64\xcb\x52\xeb\x98\x24\xe9\x06\x9f\x02\xe6\x04\xea\x1e\x14\x72\x68\x59\x35\x9d\xb7\x65\xbc\x6b\xa5\x5b\x37\x59\x6c\x71\xd1\x76\xe6\x1e\xa0\xda\x6d\x5b\x78\xd9\x10\x20\xbd\x2e\xc4\x83\xef\x44\xd9\xe4\xb1\x8f\xa2\x34\xc0\x7e\x20\xaf\xe9\x2e\xd8\x48\xb6\x29\xf2\x8c\xc9\x5a\x9a\xf4\x2f\x1b\x94\xa5\xec\x3b\x30\x50\x24\x81\x0d\x91\xaf\xa2\x30\xc9\x3c\xf8\x0e\xf2\x31\x71\xa5\x55\x1b\xfb\x8c\x6e\xff\x70\x95\x8b\x05\xcd\x9f\x3c\xed\x51\xdb\xfd\x32\x00\xf8\x01\x16\x63\x96\xa8\xa5\x6b\x51\x36\xbc\x0b\x60\x1b\xdd\x83\xea\x3d\x36\x86\xa9\x0f\xba\xef\x2c\x7b\x56\xeb\x6f\x11\xdd\xfa\xa4\xad\x47\xda\x3a\x34\x0a\xa9\x0b\x09\x0d\xe7\x29\xab\x3f\xf5\x93\x8d\x10\x0e\x37\xf7\x20\xa5\x29\x67\xaa\x5b\xed\xdc\x74\x52\x61\x4a\xc6\x11\xa3\x66\xe7\xa1\xd8\x8b\xec\x37\xc2\x5b\x12\x08\x47\x08\xb4\x02\x44\xa7\x30\x5e\x74\xa8\xaf\x07\xda\x4d\xbc\xd8\xc8\x1b\xa9\x39\x07\xee\x0a\x9d\x63\x09\x63\x4c\xd3\xd8\x1d\xf2\x19\xe7\x23\xbd\x79\x07\xda\x96\x3b\x12\x0c\xd7\x1f\x2e\xd4\xc5\x7e\x67\x82\x1d\xac\xca\xaa\xc5\x7e\xd9\x1d\xeb\x26\x3d\xe4\x45\x9f\xe3\x6f\x0e\x16\x33\x51\xee\x09\x0c\xe8\xd1\x03\x0d\x68\x33\x04\x1c\xe4\x0a\xca\xa7\xc2\x2d\x95\x62\xc3\xa0\x74\xab\x48\x44\x2e\xc9\x9a\xde\xa2\x76\x5f\x1e\xa1\xe3\xc8\x16\xff\xd5\x83\x68\x4b\xe6\xe5\xc0\xce\x94\x55\xcf\x49\xab\x5d\x84\xd1\x0d\x47\x65\x10\xb9\x16\x50\x7a\xb1\xa2\xa9\x17\x0c\x69\xf4\xae\x4f\x67\x36\x91\xeb\xa7\xb3\x59\x34\x4b\x28\x7e\x86\x9c\x2a\xe5\xdb\x8f\xcb\x9e\x36\x93\x7e\x43\xc2\x6e\xe3\x21\xae\x45\x05\x55\x8a\x95\xfc\x98\xfc\xc7\xf4\x9f\xbb\x5b\x7e\x99\xdc\x38\x1f\x8b\x49\xc6\xd5\x44\x94\x13\x9c\x21\x56\x93\xbd\xfe\x0c\xbd\x90\xfb\x33\x97\x17\x75\xa7\x9e\x6b\x39\x8c\xbf\x32\x37\x93\x5c\x31\x8f\xb8\x20\x16\xd6\x02\x86\xac\x16\x2a\x67\x9a\x57\x46\x81\xcb\xcc\xd5\x3d\xa6\xe3\x96\x3a\xaf\xca\xb0\x33\x2b\xf6\x7b\xb2\xf3\x03\xf7\x62\xfb\xc8\x4a\x3f\xb1\x1d\x40\x56\xd6\x20\x31\x1b\xbd\xd3\x13\x4f\x08\x79\xda\x73\x0d\x9d\x1d\x00\x59\x4d\x69\x73\x27\xab\x35\x93\x8c\x94\x94\xaf\x98\x7c\x66\xd5\x76\x90\x63\xb9\x33\xb5\x2f\x7e\x1a\x29\xbd\xcc\xd3\x01\xb3\x11\x42\x59\x5a\x08\x18\x1d\x98\x99\xa6\x87\x57\x5e\xe2\x19\x20\x03\x37\x14\x83\xf5\x62\x00\x6c\xba\x17\x06\xeb\xd9\x7b\x8d\xde\x5a\x18\x6c\x8e\x38\x6c\x6e\xb0\xd8\x1c\xf1\xd8\x5c\x63\xb2\x4e\x9e\x67\xc4\x65\xf0\x19\x84\xcb\xe4\x3d\xa4\xe4\x7e\xe1\xb8\x53\xd3\x57\x7f\x82\xc2\x31\x79\x22\x19\xb3\x2a\x32\x40\x65\x74\x53\xe4\x8c\xc8\x2d\x57\xf4\x4b\x28\xbf\xab\xff\x99\xcf\x3b\x65\x6b\xc3\x43\xc6\x64\xe7\xee\xb1\xad\x66\xcc\x13\xad\x45\xb9\x2b\x32\xeb\xe7\x76\x21\x14\x83\xb9\xf5\xed\xe9\x01\x82\x89\x9a\xb1\x46\x83\x1e\xaa\x80\xe0\xf1\xa8\x49\xf7\xe8\x0b\x96\x8b\xbb\xa7\x47\xcd\x25\x7b\xc0\x46\xa8\x92\x4c\x49\x96\x2f\xad\x71\xba\x07\x0e\xa8\x0c\x03\x35\xe7\xf5\x9a\x11\x75\x27\xe0\xae\x41\xf6\x25\xfb\x1b\x22\x08\x4d\x84\xb6\x75\x4a\xf4\x9e\xb3\xfb\xc8\xed\xee\xad\x6b\x57\xad\x7e\x65\x9e\x94\x84\xbb\x41\xd5\x82\x69\xdf\x4f\x13\xee\xd6\x22\x37\x87\x74\x0c\x47\x34\x9f\xd7\x04\xf9\x5f\x00\xbb\xfc\xd3\x9a\xca\x27\x9b\xed\x67\xf0\xb9\x7c\x0a\x78\xc7\x20\xf9\xbe\xe7\x6c\x32\xfc\x5b\x2d\x04\x5c\x32\x5c\x1f\x7a\xc4\xd4\x01\x39\xa9\x9e\x77\xe0\x7d\x83\xf1\x52\x01\x8e\x1f\x80\xa5\xd1\xa6\xb4\x60\x39\x2c\xd7\xae\x14\x95\xa8\x66\x4b\x83\x2f\x06\x6e\x39\xba\xe3\xdd\x4d\xe9\x55\xc4\xea\x94\xd4\x9f\xee\xfd\xba\x2d\xf5\x6d\xa7\xef\x91\x73\xb8\x79\x18\x26\x85\xec\x94\x51\x25\xe4\x80\x5a\x4d\xf1\x01\xb0\x25\xbb\x9d\xf4\x2f\x9e\x0b\x3e\x31\x2e\x4c\xc6\x1e\x46\xee\xd6\xac\x64\x46\x2f\xb2\x14\xe5\x86\xf9\x4a\x0a\xf0\x98\xc2\xd1\x07\x28\xed\x76\x41\xe3\xe5\x1b\x7a\x04\x21\xbe\xe9\x69\xb9\x07\xef\xd5\x74\xb6\xfc\xe5\x78\xb0\x16\x5a\xee\x1e\x33\xa0\xf2\xa4\xa4\x10\xa9\x0d\x89\x43\x13\x88\x43\xd1\x03\xdc\x42\x9d\x63\x68\xe7\x6d\x1b\x1c\x03\xe2\x1b\xec\xe3\x9f\xdd\xf8\xb0\x87\x83\x9b\xdc\x07\xe4\xfd\x43\xc6\x34\xcd\x01\xb0\x0f\x82\x36\xf1\x5c\x71\xef\xd6\x42\xa2\x5a\x52\x6f\xdf\xb0\x80\x9a\x01\xee\x0d\xae\x18\xc2\xdc\x91\xbd\x82\x56\x06\x72\x4a\x64\x28\xb7\x44\x76\xdf\x57\x2f\xbf\xf4\x3f\xf7\xa4\x1b\xb2\x52\xad\x75\x43\xbc\xef\x8a\x18\x44\x6a\x85\x35\x3f\xb5\x19\x02\xac\x0b\x57\xbe\x55\xa1\x96\x45\x4c\x65\x01\xb6\xd5\xdf\xf7\x0f\x7a\x72\x71\x76\x38\x20\xa6\x67\x3f\x8d\x56\x5f\x04\x94\x81\xe2\x5e\xf2\xb1\xc1\xd2\x5d\xf8\x62\x18\xd7\x8d\x3d\xd1\x40\xec\xf0\xa5\x97\x22\xd3\x4e\x04\x4e\xa7\xb5\xc3\xe9\x00\xcb\x4c\x27\xd3\xdd\xbe\x5e\x43\xb9\xee\x80\x39\xcb\xc2\xef\x89\x7c\xda\x66\xbf\xd1\x9d\x46\xaf\xa6\x4f\x57\xf6\x0c\x56\x05\x85\xd8\xed\x4a\x0e\x25\x48\xb7\x46\x62\xb6\xf0\x4e\x9c\x5b\x88\x03\x46\x1f\x2c\x9a\x96\x2d\xfd\x72\xec\x65\x3d\xf2\x59\xf7\xa3\x5d\x8b\x42\x0f\x98\x2f\x98\x66\x7f\xad\xb2\x57\x94\x6d\xda\x8d\x4b\x47\x55\x8a\x06\x84\xd5\x84\xf6\x58\x2b\xf5\x7d\xd2\x07\xe8\xef\x11\xf5\x46\x0e\x0a\x82\x5b\x47\x02\xe3\xd8\xd1\xcd\xb2\xec\x45\x36\xf7\xa7\x9a\x6e\x99\x75\x0c\x35\x9a\xe4\x87\x87\x57\x11\xbb\x37\xcf\x06\xff\x48\x48\x60\x58\xa8\x78\x64\x6b\x18\x30\xbe\xbb\x3f\xfc\x3e\x9c\xe0\x76\xf7\x83\x58\xd6\xec\x10\x5e\x72\xce\x96\xca\xd6\x5a\x74\x34\x04\x5e\xcf\x00\x25\x0d\xf1\x1f\x22\x54\x7a\xd1\xe2\xf9\xa1\xac\x57\xf6\x8b\x62\xd0\xfe\x36\x6b\xa5\x42\xf5\xef\xf0\xd3\x8c\x41\xbe\xbe\x9e\xd5\xf6\xfa\xa8\x13\x83\xbe\x25\xba\x69\x7c\xe9\xce\x1f\xfd\x41\xfe\x0b\x1b\xa6\xd6\x22\xdd\x83\x32\x7c\xc0\x0e\x8f\xcb\xb5\xe3\x96\x11\xa9\xe3\xbe\x3d\x57\x39\x3d\x26\x16\x8f\x62\xbd\x39\x44\x2d\x5f\xc7\x52\x1c\xc5\xae\xf6\x09\x9b\xae\xa6\xe4\x87\xb7\xd7\x47\x64\xf6\xe9\xfa\x88\x30\x95\x4c\x9f\x92\x0f\x55\xae\xb2\xa2\xcf\xce\x61\x40\x04\x74\xff\xe3\xe5\xa1\x16\xc3\x56\x10\x64\xf9\xdb\xb2\x5b\x15\x54\xad\xf7\x38\xc7\xff\x9f\xbd\x7f\x5f\x6e\x23\xb7\x16\x47\xe1\xff\xbf\xa7\xc0\x96\x77\x95\xec\xef\x27\x52\xbe\xcc\x38\x33\x4a\xa5\x4e\xc9\x92\x3c\xc3\x8a\x2c\xf1\x27\xc9\xe3\xc9\x89\xb2\xbd\xc1\x6e\x90\xc4\x51\x13\xe8\x34\xd0\x94\x99\x49\xaa\xce\x3b\x9c\x37\x3c\x4f\x72\x0a\x6b\x01\xdd\xe8\x26\xfa\x42\x49\x9e\x49\x76\x9a\x55\xc9\x58\x24\xae\x0b\xc0\xba\x5f\xf6\xa7\xa6\xfd\xd7\x38\xc6\xae\x13\xec\xc6\x28\xfe\x09\xc2\x32\xc7\xc5\x51\xe1\x36\xdd\x59\xf4\x3d\x0c\x42\xd8\x78\x71\x44\x46\x84\x7d\xa1\x91\x3e\x22\x87\x73\x29\xc9\xc8\x3a\x89\x1d\x91\xc3\x19\xcd\xc8\xc5\xe5\xcd\xd9\x11\x3a\xa0\x31\xa1\xb3\x0d\x59\x75\xb1\xe7\x97\x17\xe7\x7f\xb2\x98\x73\x43\x18\x07\x05\x0c\x25\xb7\x7b\x30\x09\x6a\x91\xcd\x9f\x38\x8b\xd3\x75\x8c\xc9\x4d\xd7\xf6\xd7\x34\xe1\x31\x2d\x94\x7d\x10\x98\x81\xb5\xd4\x74\xa8\x78\x5a\xf9\xe9\x73\xe7\x6a\xf1\x23\x37\x37\x53\x03\x61\x8f\x00\x50\x81\x80\x37\x80\xee\x4f\xab\x26\x1a\xfc\x63\x67\xcc\x01\xc2\xea\x11\xe7\x32\x5b\x1d\x39\xb0\xdf\xe6\x2f\x5f\xbe\x89\xcc\xc0\xf0\x2f\x76\x64\x93\x0d\xf5\x52\x7b\xe1\x55\x83\x55\xc1\x70\x06\x61\x64\xc5\x11\x96\x43\x8f\x2c\xbc\x1f\x35\x03\x8e\xd1\xe1\x6a\xb2\x43\xbe\x06\x04\xc0\xd3\x8a\x91\x76\xeb\x4f\x39\x68\xdf\x84\x0a\x3d\x10\x52\xf7\x50\x3c\x5a\xf5\xa4\x99\x93\x93\x0f\xd3\xbe\x1e\x20\x80\x8c\x9a\xd7\xee\x63\x29\xaf\xfe\x9d\x59\xad\x8d\xd1\xc4\x2a\x7e\x30\xa5\x15\x30\x6c\xf5\xd2\x16\xf9\x0a\x3d\xf4\xb7\x79\x5a\x3e\xaf\xda\xa7\x8a\x3a\x8a\x85\xd5\xdc\xcc\xd3\xc6\xda\x82\x3d\xdd\x34\x5a\xbf\x6d\xd1\x53\xf6\xba\x89\x51\x7b\x62\x98\x3a\x9d\x07\xce\x44\x0a\x1f\x4a\x00\x94\x08\xab\x89\xee\x20\xac\x41\x50\x93\x01\x30\x7a\xe5\x83\x8b\x2a\x54\x6a\xf5\x61\x65\xad\x97\x60\x9a\xd4\x2c\x5a\x0a\x1e\x6d\x27\x2d\xab\x7e\x40\x2d\x8a\xea\x7f\xbe\x4a\xa5\x97\x4b\xfb\xce\x30\xe5\xc9\xbe\x22\x3c\xd5\x18\x07\x37\xe7\x19\xbb\xa7\x49\xd2\xb1\x54\xc4\x16\x56\x29\x9b\x2b\x74\x9c\x62\x62\x2e\x31\x5e\xc0\xba\xe8\x75\x3f\x8d\x4e\x1b\x1e\x34\x7b\xfc\x61\x98\x61\xc6\xe8\x4b\xc6\xbe\x80\xe1\xaa\xcb\x04\x86\x67\x20\xe7\xe4\x3b\xf4\xf2\x86\x1d\xc2\x58\x67\xd1\x52\x92\x2b\x24\xda\xb6\x18\x62\xca\xc5\x42\xb5\xdb\xc0\x7a\xed\xb7\x07\x32\x48\xc3\xe1\x36\x0d\x00\x99\x4c\x5d\xd8\xcd\xa3\x1d\xc3\x2a\xca\x2d\xe4\xc7\x7d\x28\x4f\x9d\x65\xac\x11\x0a\x3d\x20\xd0\x10\x38\xd1\xb0\xb9\x0f\xb6\xb5\xe7\xd6\x5b\xa4\xba\x83\x78\x90\x6c\x55\xd6\x0a\x0b\x05\xb1\x54\x37\xf7\x28\xa4\x01\xca\x08\x2c\xa2\xd4\x5e\x39\xa0\x6f\x32\xbe\xf2\xd3\x97\x2c\x55\x2b\x9a\x96\xeb\xb1\x01\x3f\x68\xb5\xbb\x63\x1b\x7b\xb5\x53\xca\x6d\xaa\xbd\xf6\xe9\x8d\xc8\x4a\xd8\x17\x9d\xd1\x0a\x4c\xe9\x4c\xe6\xba\x07\x21\x79\x2a\xc9\x51\x48\x6d\x5e\x5f\xbf\x9b\x71\x81\x8d\x3b\x3c\x7a\xa0\x49\xbb\x67\xdd\x40\x30\x06\x82\xf1\xaf\x4d\x30\x84\xd4\x8e\xad\x6a\x04\x4b\xbb\xd7\x4d\x4f\x7f\x9b\x7e\x9e\x36\x5b\x0e\xa1\x8e\xe5\xeb\xf0\x09\xb5\xcd\x9a\x01\xd6\xf1\x8e\x7b\xb8\xf6\x3c\xcc\xa9\x27\xfd\x67\x05\xee\xed\x9e\x0f\xdb\x27\xa4\xfd\x5b\x86\x2d\xd0\xf0\xfa\x9c\x80\x83\xc9\x18\x6e\x3d\xcf\xda\x34\xf3\xd6\x3b\xd7\x9e\xf3\x19\x84\x1a\x5d\x41\xa4\x9c\x8b\xfa\x42\xb5\xf9\xf3\x19\x8b\x68\xae\xac\x4f\x5c\x87\x29\xa1\x58\x62\xc4\x32\x18\xa3\xf0\xab\x7b\x81\xaa\xf8\x0f\x36\xfc\xab\xe2\x25\xd8\x45\x62\xd1\x7d\xf0\xc8\xf7\x80\x3b\xf0\xfd\xdf\xf0\x0f\x90\x54\x2a\x7f\xad\xdf\x96\x7f\x5f\x9f\xdc\xe0\xaf\xcd\xd3\xd8\x11\xcf\xb9\x66\xce\xc9\x8e\x0a\x77\x41\x9c\x51\x16\x5c\x0d\xc9\xab\xd1\xeb\x6f\xbf\x6d\x51\xf9\x7f\xbd\x6b\x8f\x8e\x18\xfd\xa8\xf1\x35\xba\x73\xf6\x8b\x4a\x23\x5a\xb6\x08\x90\x38\xd2\x10\x90\x36\x04\xa4\x75\x9b\x3d\x87\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x9a\x76\x3c\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\xd6\xb4\x93\x01\x97\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\xf8\x19\x02\xd2\x86\x80\xb4\xfa\x67\x08\x48\x1b\x02\xd2\x8a\xcf\x10\x90\x36\x04\xa4\x0d\x01\x69\xc1\x41\x87\x80\x34\x0f\x16\x43\x40\xda\x10\x90\x36\x04\xa4\x55\x3f\xbf\x66\x40\x5a\x4b\xf9\x05\x42\x46\x36\x8b\x6f\xe8\xb7\x3e\x65\xfc\x83\x7c\x82\x7d\x1b\x0f\x48\xdf\x5d\x7d\x55\x43\xfe\xee\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x1d\x5e\xde\x90\xbf\x7b\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\xca\xcf\xe0\x2e\x55\x7e\x06\x77\xa9\xc1\x5d\xea\x9f\xca\xc5\x60\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x2a\xd8\xf8\x5f\x0c\x97\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x15\xf8\x0c\xee\x52\x83\xbb\x54\xf1\x19\xdc\xa5\x06\x77\xa9\xc1\x5d\x2a\x38\xe8\xe0\x2e\xe5\xc1\x62\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xea\x67\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x57\x3e\x43\xfe\xee\x21\x7f\xf7\x90\xbf\xbb\xd7\x0c\x43\xfe\xee\x21\x7f\xf7\x90\xbf\x7b\x48\xc7\x3a\xa4\x63\x1d\xf2\x77\x0f\xf9\xbb\x87\xfc\xdd\xcd\xeb\x1f\xf2\x77\x0f\x04\x63\x20\x18\x43\xfe\xee\x21\x7f\x77\xe5\x33\xe4\xef\x1e\xf2\x77\xd7\x3e\x43\xfe\xee\x66\x01\x72\xc8\xdf\x3d\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x9a\xff\x19\x02\xd2\x86\x80\xb4\x7f\xaa\x20\x8e\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x60\xe3\x7f\x31\x5c\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\x5a\xe0\x33\x04\xa4\x0d\x01\x69\xc5\x67\x08\x48\x1b\x02\xd2\x86\x80\xb4\xe0\xa0\x43\x40\x9a\x07\x8b\x21\x20\x6d\x08\x48\x1b\x02\xd2\xaa\x9f\xff\xd9\xf9\xbb\x21\x29\x77\x57\xf6\xee\x4b\xd3\xa8\x05\x7f\x57\x0f\x5d\x62\xeb\xe0\x3a\xd1\xed\x0e\xf3\x26\x83\xa2\xc4\x0c\x0a\x96\xc5\x78\x8c\xba\x93\x42\xf3\xbb\xe4\x0b\x23\x88\xde\xee\xc1\x78\xb7\x7b\x40\x2e\x6d\xdb\xd0\xd0\x74\x6e\x04\x28\x0d\x0c\x1a\x0c\x90\xc8\x7b\x96\xe1\x6a\xd0\x8d\xd1\x5b\x9c\x22\x72\xc5\xb5\x36\x78\x97\xbb\x08\x98\xd0\xa0\x91\x14\x8a\x63\xda\x72\xd4\xf1\xdd\xee\x71\x31\xe7\x82\x6b\x76\xbb\x47\x46\x04\x9c\xe7\xbc\xed\x38\xac\x6e\xd7\x49\x12\xaa\xf4\x98\x14\x3b\x0b\x82\xc4\xac\x95\xc7\x4c\x68\x1e\xd1\xc4\x2e\xb0\x3e\x0e\x17\x84\x26\xe9\x92\x8a\x7c\xc5\x32\xaf\x1d\x64\x0c\x0f\x8d\x6a\x71\xb9\x55\x47\xa1\x87\x48\x50\x3e\xc5\xbb\x21\xf2\xd5\x6c\x5b\x53\xd8\xc2\x36\xd6\x88\xfc\x8d\xaf\xa6\xc1\x8b\xe2\x29\x6b\x72\x65\x65\x4e\x1e\xdd\xe1\xff\xc9\x3c\x78\xff\xcd\x92\x6b\x42\xb7\x07\x5c\x1b\xae\xe1\x81\x45\x4b\x47\xf3\x9a\x55\x07\xe5\x3a\x0c\xeb\x90\x24\xf2\x1e\x51\x01\x6a\x90\x0a\x9d\x0a\x32\x76\x7f\x40\xf5\x02\xbe\xf6\xcf\x09\xd7\x2c\xa3\x20\xd9\x87\x46\xbe\xbd\x25\x23\x0c\x57\x32\x17\x65\x95\xd2\x8c\x2b\x29\x0e\x08\xc4\x2c\x3a\xb5\x80\x1b\x72\x2e\x25\x99\xd1\x0c\x74\x15\xc5\x74\xff\xb1\xe3\x74\xe5\x7c\x86\xb2\xb3\xbf\xe6\x34\xf9\x3d\x7a\xd8\x3a\x4e\x95\xcf\x2d\x8b\xca\x15\xb4\x71\x9a\xf7\x62\xca\xf0\xbb\xfc\x05\xd6\x41\x4b\xbf\xb0\x59\xf9\xcf\x08\xff\x39\x1e\x8f\xc9\x3f\xbc\x15\xe8\x2c\x67\x2e\x50\xa6\xf0\x35\xc5\x39\x7e\x26\x61\xdf\x76\x6b\x72\xe8\x98\xaa\x5c\xab\xd9\x00\x17\x3d\x16\x17\x9a\x6c\xc7\xf5\xc2\x64\x6d\x0b\x0c\x1f\x89\xb7\xe6\x25\x55\xcf\x61\xbc\xcf\x86\xb8\xbc\x28\xa7\xbe\x29\x66\xa6\xba\x3c\x1d\xef\x64\xfe\x03\x2e\x69\x10\xe7\xdb\x21\x0a\xf5\xa4\x9c\x43\x5b\xd0\x4e\xc1\x7f\xf3\x97\x2f\x5f\xbf\xc5\xff\xc7\x5f\x8a\x3e\xd7\x4b\x99\xe9\x51\xc4\xb3\x28\xe7\x1a\xb8\x2a\xdb\x29\x34\xd1\xdf\xff\xde\xda\x1b\xec\x18\xfa\x39\xb6\x79\x51\x34\x4a\x69\xc6\x2c\x47\xbe\xc8\x64\x9e\x1a\x8e\xfc\xf6\x56\xd3\x24\x79\x1e\xb4\x47\xd9\x94\xf6\xe8\x95\x52\xe0\x0b\x37\x9a\xbb\xc3\x34\x49\x3c\x15\x13\x3c\xd0\x73\xbc\x0f\x28\x43\x85\xc5\x23\x6a\x9e\x36\xe2\x19\xe7\xa9\xe9\xa3\x4c\x75\x40\x46\x07\xe4\x33\xc0\xe1\x70\x4c\xae\xe1\xc9\x11\xfb\xe4\x1a\x07\x5d\xc9\x8c\x91\xd4\xb0\xff\x4a\xf1\x35\x23\x33\x8c\x31\xd8\x38\xf5\xa6\x55\x3c\x13\xa6\x22\x9a\x32\x12\x2d\x69\x46\x23\xcd\x32\xbb\xec\x33\x74\xd5\x0e\x3e\x86\xe7\x80\xf8\x57\x34\x66\xa3\x3c\xc5\x6b\xa1\x5e\x14\xe8\x08\x02\xdb\x2c\xea\xb8\x67\x33\x23\x38\x30\x8b\x3c\xfc\x13\x8f\x59\x9a\xc8\xcd\x8a\x89\x20\x3a\xb5\xfd\xd3\x4c\xc6\xee\x92\xc2\xb8\xe6\x4d\x01\x4e\xca\xa4\xd0\x4c\xc4\xde\x55\xa7\xd1\x9d\xfd\xe2\x1f\xa6\x79\x39\x3e\xf9\x8f\x3f\x34\xbd\x80\x98\xad\xdd\xf0\xff\x41\x6a\xaf\x20\x84\xca\xda\x38\xaa\xaa\x32\xb0\xc5\x5c\xdd\xa2\x09\x6c\xd7\x5b\xcc\xd1\x7f\xb5\x24\x0b\xa1\x6d\x39\x8a\x85\x77\xd4\x2a\x14\xb0\x3c\x87\x14\x6e\x91\x4e\x57\x10\x32\x3b\xb7\xed\x11\x8c\x0e\x3d\x68\x2a\xd8\x26\xb8\x88\x79\x04\xa2\xe7\xfd\x12\x02\xa6\x7d\x46\xd6\xf7\xca\xb2\x52\x4e\x10\x4f\x99\x77\x27\x6d\x01\x8f\x03\xfb\xd7\x4c\xea\xe5\x98\xa0\xa3\x24\x50\x93\x2f\xa9\x61\x52\x74\xb2\xf1\x64\xa9\xe7\x50\x7c\x24\xe8\x01\xeb\xe1\x51\x41\xa2\x8c\xd9\xf8\x0c\x65\x5f\xb7\xcc\x88\xe0\xc9\x8b\x03\x17\x63\x11\xb3\x39\xcd\x13\xad\x08\x6e\xcb\x80\x2e\x8b\x1b\x58\x6a\x2d\xc9\xbd\xc1\x95\x13\x2b\xb8\x99\x45\x9c\xd9\x7f\x9a\xf7\x68\x31\x67\x51\x81\x03\xfd\xfd\x40\xb5\x6e\xa7\x09\x8d\xca\x15\xbe\xae\x11\xf9\xb3\xe5\x8b\xcc\x52\xdc\x1c\x7f\x39\xb0\xc4\xc1\x70\x99\x60\x36\x70\x53\x62\x9d\x94\xe7\x5c\x44\x49\xde\xb8\xe2\x25\x23\x11\x35\x9c\x27\x0c\x50\x0e\x43\x90\x3c\x0b\x59\x6c\x06\x86\x7b\x11\x58\xc9\x59\x63\xfd\x95\xfa\xda\x2a\x0b\x33\x28\xa9\x3e\x7c\xf3\x3e\x83\xd7\xa3\xbe\x86\xad\x09\x41\x83\x15\x38\x0d\x2b\x51\x07\xf1\x82\xc0\xab\x55\xe5\xf5\x33\x46\xcd\x3b\x8a\xee\x08\x5d\x50\x2e\x0e\xec\x6d\x40\xb3\x47\x72\x4f\x37\xca\x7a\xc1\x07\x6f\xb1\xf3\x56\x40\x37\x85\x03\x22\xd8\x9a\x65\x95\xfb\x16\x94\xee\x7b\x96\xf7\x29\xa1\x40\x18\x10\x8d\xc2\xa0\x97\x4a\xa5\xf8\x2c\x71\x13\x97\x7e\x58\xa6\xc3\x75\xca\xa2\xb0\xbc\x87\x7b\x6b\xf6\x4c\x6b\x97\x2c\x1b\x85\xb6\xb0\xac\xb7\xfd\x2d\xd0\x8c\xd8\xb7\xb7\x2b\x2d\x33\xba\x60\xee\x2b\xa5\xa9\xce\x11\x30\x68\x72\x62\xf1\x85\x67\x0c\xb8\xe3\x22\x36\x78\xc8\x81\x34\x4d\xf2\x8c\x26\xe5\x37\x91\x14\x68\x01\x56\x47\xe4\xcf\x7f\x31\xdf\x98\xf1\x59\x6c\x23\x3c\xed\xb7\xb7\x62\x34\x1a\xdd\x0a\x9a\x72\x17\x28\x4a\x68\xca\xd9\x17\xcd\x04\xb4\x1a\xdf\x7d\xa7\xc6\x5c\x1e\xae\x5f\xdd\x0a\x9c\xf1\x24\x57\x5a\xae\xae\x18\x9a\xb2\x4e\x19\x88\x5b\x80\xa7\x2b\xe1\x98\xa0\x80\x21\x02\x5d\x5e\x15\xd3\x6a\x1c\x65\xf1\x38\xcd\xa4\x81\x40\x04\x48\x67\x2c\xb3\xc5\xad\x30\xd8\x0c\x7a\x00\x8b\x72\x44\x1a\x9a\x55\x2d\x21\xb8\x94\xd2\x2f\x17\xbf\x4d\xb8\xd2\x7f\xac\xfd\x72\xce\x95\xae\x02\xc8\x5b\x93\x85\x3b\x17\x8b\x3c\xa1\x99\xff\x93\xf9\x05\x10\x59\xb6\x66\x1f\xc5\x9d\x90\xf7\xe2\xbd\xb9\x29\xea\x88\xcc\x69\xa2\xe0\xc4\x54\x24\xcd\xa1\x16\xda\x15\x90\xf4\xd6\x0e\xbc\xe6\x8f\x91\x05\x83\x81\x1e\xcc\x14\x2d\xd9\xaa\x0c\x57\x95\x29\x13\xc7\xd3\xc9\x4f\x6f\xae\xab\xdf\x6f\x3b\xc6\x3a\xf7\x63\xeb\xe2\x55\x4e\x39\x62\x7f\xcd\xf9\x9a\x26\x06\xe1\xda\x7b\x5f\xf7\x59\xf6\x2e\x77\x83\xfa\xcc\x3b\xfd\xea\x5d\xae\x66\xb5\x30\x4b\xb5\xde\x03\xe8\x6d\x8f\x8b\xb1\x3b\x66\xb1\xdd\x1e\xae\x03\xb0\x89\x25\x05\x34\xa4\x17\x91\x73\xa0\xfe\xf0\x22\xc6\xc0\x22\xb0\x4c\x39\x21\x32\x92\x62\xcd\x32\x4d\x32\x16\xc9\x85\xe0\x7f\x2b\x06\x57\xce\x9f\x01\xaa\x7b\x6d\x11\x12\x2e\x34\xcb\x0c\x33\x01\xa8\x00\xb5\xb6\x2b\xba\x21\x19\x33\xd3\x90\x5c\x78\x03\x3a\x6f\xaa\x0f\x86\x89\xe4\x62\x2e\x8f\x20\xdf\x90\x3a\x3a\x3c\x5c\x70\xed\x2e\x7e\x24\x57\xab\x5c\x70\xbd\x39\x04\x0b\x2b\x9f\xe5\x5a\x66\xea\x30\x66\x6b\x96\x1c\x2a\xbe\x18\xd1\x2c\x5a\x72\xcd\x22\x9d\x67\xec\x90\xa6\x7c\x04\x6b\x17\xf0\xf2\xc6\xab\xf8\x59\x66\x5f\x8a\xda\x0f\xe1\x89\x6d\xf4\x02\x57\xbb\xed\x18\xcc\x0d\xb7\x41\xba\xc8\x25\x23\x99\x2f\xa0\xed\x5c\x49\xae\xce\xae\x6f\x88\x9b\x3d\x18\xd0\x8c\xc0\x2f\x7b\xaa\xf2\x1c\x0c\xd0\xb8\x98\x3b\x7e\x06\x94\xda\xbe\xf8\x8f\x24\x35\xe1\x01\xd6\x56\xe5\xb3\x15\xd7\xca\x4b\x54\x23\xc7\xe4\xa4\xd0\x76\xe7\x69\x4c\x35\x8b\xc7\x64\x22\xc8\x09\x5d\xb1\xe4\x84\x2a\xf6\xd5\x4f\x01\x98\xba\x91\x81\x6d\xdf\x73\x68\x08\x2e\x6f\x52\xe5\x15\x68\xac\xe1\xd8\xca\xf7\x68\x28\x52\x35\xba\xc9\x05\xc3\x95\xe1\xe7\x74\x0b\xb7\x95\x1f\x77\xa4\x35\xa2\xd5\xa2\x1a\x6f\xf0\xc3\xdf\x2a\x01\xe8\x5c\x05\x27\xd3\x02\x13\xa2\x54\x3c\x63\x89\x34\xb7\x4a\x5a\xdd\x0c\x0b\x19\x54\x9b\xe9\xf8\xbf\x05\x25\x05\x3a\x0a\xff\xf7\xcc\x86\xb0\x1d\x11\x24\x60\x87\x9a\xad\x52\xc0\x57\x87\xf8\x05\x78\xdf\x95\x1e\x1b\x99\x1a\x65\x33\x1a\x8d\x37\x74\x95\xdc\x8a\x5f\x7e\xe1\x73\xc2\xfe\x4a\xc6\x57\xef\x8e\x4f\x4e\xa4\x98\xf3\x05\xb9\xdd\x33\x0d\x6e\xf7\xfe\xf1\x0f\x33\xfa\x04\x58\x5d\x46\x28\x89\x92\x5c\x69\x96\x65\x32\x61\x45\x41\xba\xfa\xd8\xa0\xfb\x92\x82\x09\x7d\x60\x3a\x43\x49\x3b\xc0\x20\xda\xa1\xd2\x86\x45\x39\x39\xaa\x74\x67\xb0\x0c\x00\x4e\x7a\x25\x13\x56\x65\x1c\x60\x13\x34\xd7\x4b\x99\xf1\xbf\xa1\x2b\x97\xc7\x3d\x04\xb8\x83\x86\x89\x6f\x05\x30\xae\xd0\xf0\x19\xb9\x90\x31\x6a\x15\xc8\xbd\xf5\xd8\xd2\x92\xac\xa4\xe0\xe0\x99\x2c\x33\x12\xb3\x84\xe1\x3b\x47\x92\x4b\x53\xfe\x83\x61\x25\xcc\xb9\x98\x23\xfc\x0b\x9e\x6a\x81\x87\x8b\x2b\x3a\x22\xc2\x8c\x8d\x7f\xae\x59\x36\xf3\x7f\xba\xf7\xad\x17\x23\x78\x1a\xe5\x5f\x0b\x7c\x95\xcf\xc8\xd4\x65\x30\xf3\xd6\x56\x26\x96\x62\x5f\xb8\xd2\x50\xef\x91\x2a\x92\xd2\xcc\x3e\xae\xe3\x0f\xa4\xdc\xed\xee\x8b\x4e\x65\xdc\xb0\xe6\x05\xd3\x4d\x2b\x2e\xb6\xf3\x0c\x17\x50\x0c\x6c\xe3\xdb\x04\x4f\xa1\x60\x26\xe8\xb2\xb1\x3a\xa7\x02\x13\x96\x01\x11\x5e\x9a\x44\x46\x77\x16\x7b\xab\x03\xb3\xa3\x7b\x66\xc4\x02\x45\x52\x96\x71\x19\xf3\x88\xe8\x8c\x2f\x16\x2c\x0b\x1f\x44\x98\xaf\x6b\xdb\x28\xb7\x0c\x18\xe6\xa5\x08\x6f\xd9\xed\xf2\xf1\xb3\xc1\xfe\xe8\x1c\xd9\xd9\x52\x27\x64\x96\x41\x57\xf0\x63\xed\xbb\x25\x15\x71\xd2\x74\x7d\x5a\x8e\x02\x84\x71\x56\xfe\x8d\x20\x2d\xff\x86\xfb\xcc\x82\x47\x37\x95\x32\xd9\x7e\x0b\x94\x5b\x7d\x1a\x59\xd1\x14\x94\x7c\x72\x8e\xdb\xc1\xa4\x02\x53\x92\x9a\x7e\x4f\x76\x2a\x30\x5a\xfb\x71\x6c\xad\x7c\x0b\xb9\xac\xa8\xa0\x0b\xa6\xc8\x52\x2a\xed\x39\xac\x3d\xc9\x12\x2b\x63\x7e\xc5\xf3\x79\x46\x2e\x18\x8b\x41\x5b\x62\xc4\x6d\x2d\x6d\x5b\x87\x97\xbd\x04\x28\x4f\xb5\xb5\xc0\xc8\x4f\xbe\x41\xef\xd8\xfe\x98\xcf\xd8\x49\x79\x6a\x48\x8e\xf2\xac\x50\x26\xa1\x3e\x85\x6b\x33\x9d\x22\x86\xeb\x8b\xa0\xc9\xd3\x6c\xd6\x5c\x1a\xef\xce\x44\xfe\xec\xc1\x6d\x3f\x43\x0d\x86\x59\x87\xbc\x17\xde\x5a\xb6\x60\xf2\xcc\x42\x81\x50\xa7\x93\x22\x7c\x4e\x84\x14\x0c\xb1\xb6\x6a\x02\xd7\x33\x77\xc6\xc8\x54\x34\x41\xf1\x19\x42\x11\xc8\x40\xb4\xac\xc4\x55\x14\x00\x06\x66\x61\x8b\xa6\xbe\xe3\x02\xd5\x58\x5f\x89\xb4\xca\x84\x5d\x31\x8c\x51\x70\xe7\xd3\x32\xbe\x69\x16\x20\xfb\x9d\xd3\xa8\x1c\x18\x34\x73\x34\x23\x3b\x40\x55\x0b\xdc\x63\x0c\xdf\xdf\x01\x11\x88\xda\x28\xcd\x56\x16\x72\x05\xb7\x75\x45\x45\xb4\x64\xd9\xc8\xb1\xd1\x47\xe4\x04\x20\xee\x33\x37\x40\xc6\xbc\x2d\xa0\x6f\x87\xa1\xd6\xa8\xff\x84\x3a\xcb\x34\xba\xbb\xa7\x59\x8c\x2c\x13\xd5\x7c\xc6\x13\xae\x37\x7d\x18\x3a\x33\xbc\xcf\xc4\x75\x31\x69\xfe\xaa\x4e\x29\x5b\x49\x71\xcd\xba\xf8\x33\x68\xfc\x2b\xf1\x64\x55\x16\xec\xa3\xb2\x05\x8f\x51\x8f\x5c\xfa\xc1\x96\xee\x78\xf2\x8e\x09\x65\x8d\xf0\xb9\x97\x01\xe8\xe4\x62\x62\xf8\xe9\x05\xda\x35\x77\xe2\x73\xaa\x5b\x55\x87\x30\x47\xb5\xf9\x45\xc5\x39\x76\x44\x22\x2a\x5c\xb2\xa2\x3a\x3e\x2c\x5f\xf1\x33\x90\x75\xca\x85\x11\x01\x48\x5c\x4b\x83\x1f\x80\xbb\x3a\x40\xc6\x10\xd5\x07\x7e\x4c\xf4\xc3\x59\xb5\x1a\xb7\xe9\x54\x43\x38\x70\x2b\x06\x7f\x46\x5c\xb0\xf9\x75\xc2\x1d\xc3\x96\xbb\x13\xb1\x8f\xca\xd6\x26\xb7\x52\x9b\xd3\xe8\xba\x54\x5b\xcf\x5c\xea\xa4\x95\x8b\x96\xa8\xef\x22\xe6\x2a\x92\x6b\x96\x6d\xdc\xb3\x6f\xdb\x55\x41\x5a\x61\x3d\x3b\xb1\xcf\x3b\x41\x6f\xcb\x93\xaf\xb8\x13\x0d\xc8\xff\xa3\x35\x0b\xb9\xdd\x14\xd7\x74\x32\x45\x2b\x28\x8d\xd7\x46\x44\x56\x25\x20\x5a\x57\xdb\x30\xea\xcd\x26\x5d\x52\x35\x0e\x8b\x03\xe4\x64\x72\x7a\x45\x68\xae\xe5\x28\x66\x9a\x61\x71\x7b\x29\x00\x7f\xd1\x78\x65\x2f\x5b\xc9\x31\x20\x8d\x32\x9c\xdb\x03\xee\x17\x76\x36\x7d\x5b\xaf\xd0\xee\x32\xd1\xa1\x4f\xdd\xea\x60\x36\x4c\x8f\x43\x08\x09\xa3\xa0\x83\x32\x52\x9a\x55\x59\x7c\x14\x74\x4d\x79\x42\x67\x06\xdf\x25\x74\xe1\x01\x2a\xf5\xe1\xfc\xcc\xd9\x9e\x40\x9a\x56\x18\x40\x18\x55\x39\x0c\x2f\x83\x9c\x79\xa8\x28\x8b\x14\xa9\xea\xc6\x21\xea\xfb\x8c\x7c\xaa\x53\x5e\x03\x67\xcf\x13\xd5\xcf\xc3\xc0\x1b\x9e\xb5\x7d\x49\x5c\x2c\xfa\xbc\x08\xdb\x3a\xad\xf8\x11\xf5\x7c\x12\xf6\x82\xcd\x36\x0e\x1c\x66\xe1\xce\x24\x53\xee\xff\xd1\xc8\xa7\x86\x6d\x02\x18\x76\x47\x96\xbe\x86\x45\x53\x17\xe1\x23\x63\x77\x7d\x1e\xb6\xe6\x96\xbb\xe7\xdd\xa0\xe2\xf6\x58\x55\x80\x22\x6b\x9a\x71\x99\x2b\x72\x72\x75\x8a\xaf\x1d\xef\xd2\x13\x31\xde\x98\x96\x64\xce\x12\xfe\x05\xc7\xf5\xe0\xe8\x7d\x5b\xe5\x4e\x41\xae\x5c\xa4\x29\x63\x99\xaa\x0f\x35\x5b\xa4\x5b\x03\x15\xdf\x6d\x0f\x53\x11\xbb\x9a\xa4\xe3\x26\x71\x15\x67\x0c\xde\xd2\xad\x9f\x15\xf3\x11\x6e\x63\x9f\x60\xeb\x46\xe9\xa4\x41\x2a\x6b\x95\xbb\xf1\x60\x00\x1d\xc1\x85\x78\x80\xa8\x7d\xbf\x7d\x5b\x72\xa5\x0b\xd6\x5f\xc4\x05\x33\x6f\x70\x0f\x5c\x1c\x29\x0c\x67\x9f\xe9\x3c\xfd\x1a\xf2\x72\xe7\x6d\xe9\x2d\xdf\x35\x0b\x71\xd5\xbd\xd6\x37\x18\xd8\x15\x69\xdc\x16\x69\xa3\x3d\x3d\x8f\x27\xb0\xb0\x7e\x08\xdf\xfa\x48\x9a\x19\x9e\x54\xb3\xd7\xef\xbe\xdc\x80\x29\xdb\xf9\x16\x49\x81\x7c\x17\xb8\xb3\x3b\x37\x60\x40\x32\x79\xba\xc8\x68\x6c\x83\x33\xd7\xaf\xc7\x6f\x91\x6b\x8c\x30\x8d\xd3\x33\xc3\x0f\x67\x6c\x25\xd7\x2c\xb6\x2e\xb0\xae\x83\xcc\xcc\x0e\xe7\x19\x53\x4b\xc2\x85\xd2\x34\x49\x9e\x54\x53\xd0\x82\x4b\xaa\x28\xa9\xef\xcd\xea\xad\xdd\xde\x16\x86\xde\x27\x54\x08\x96\x54\xc5\x94\x67\x64\x9a\x43\xbc\x22\x80\xce\x33\xfa\x2c\xf3\xd9\x38\x92\xab\xc3\x48\x66\x4c\xaa\xc3\x39\x76\x3e\x9c\x25\x72\x76\xb8\xa2\x66\x80\xc3\x53\x19\xe5\x2b\x67\x59\x3c\x04\xd9\xd0\x36\xb3\x13\x9b\x79\x9f\x5a\x34\xb2\x33\xf8\xb2\xd1\xd3\x2a\x6e\x9f\xea\x86\x37\x5c\xea\x27\x65\x03\x0b\x52\x6c\x2f\xc5\x3b\x23\xb3\x42\x38\xeb\xf6\x59\x97\x82\xac\xa0\x49\x4d\x0f\x10\x12\x61\x9f\x4a\x05\x22\x68\x32\x2a\x0f\xed\x49\x15\x1f\xc5\xb0\x3b\x29\x3a\xac\x74\xda\xaa\xd6\xf8\x15\xf4\x19\xfd\xc1\xda\x7c\x34\x8d\x00\x2f\x14\x08\x5f\x41\xd1\xf4\xb4\xe0\xfe\xe5\x17\x26\xe2\x7f\xfc\x63\x27\xbc\x56\xa0\x34\xc8\xc1\xb2\xa2\x82\xcf\x99\xd2\x0e\x81\x2b\xef\x9a\x5b\x0b\x2f\xcb\x0a\x5b\x09\xa8\x77\x54\x4d\x2d\x82\x0e\x5b\x4e\x70\xb7\xd2\xa0\x14\xa6\x2d\x04\x91\x21\xc2\x83\x46\xa6\x05\xcb\x50\x0a\x02\x75\xbf\x27\xd3\x58\xbe\xa1\x78\x4d\x85\x52\xa9\xee\xdb\x93\xaa\xd6\xf7\xd2\x06\x2f\x62\xdd\x60\x9d\xd9\xf4\x3b\x35\xa2\x69\x5a\x74\x2c\x2c\xe0\xb5\xb8\x04\xf0\x1b\x3e\xf7\x7b\x6e\xf7\x25\x96\xca\x5c\xeb\x8c\x6a\xb6\xd8\x1c\x59\x3b\xe8\xf8\x63\xe5\x6b\x73\x58\xbf\xfc\x42\xb4\xfc\x13\x5d\x25\xf5\x1f\xc9\xdf\x09\x17\x31\x13\x9a\x7c\x83\xed\x58\xa2\x98\xf9\x17\x29\xac\xc6\x57\x32\x49\xb8\x58\x7c\xf4\x54\xb5\x99\xff\x55\xb1\xbe\x15\xfd\xe2\x89\xb1\x47\xe4\x95\x77\x5b\x08\x71\x37\xc3\x6d\xb0\xee\x29\x90\x54\x37\x1b\xda\x6e\xcd\x61\xc0\x9c\x69\xc0\x9b\xb6\xcc\xd2\x62\x1e\xa4\x54\x47\x24\xe1\x22\xff\xe2\x80\x73\xe1\xf5\x72\x1b\x25\xe4\x97\x5f\x6c\xba\xd7\xff\xbc\x3b\x20\xff\xb9\x26\x47\x7f\xa8\xb6\x24\x65\x53\x68\xfc\x9f\x77\xe4\x1f\xff\x38\x22\xb7\x7b\xe6\xdf\x6b\xf3\xeb\x9e\x37\x14\x13\x31\xb1\xe0\x74\xdb\x37\x1f\xc3\xcc\x5b\x39\xba\x9a\x32\x46\xcb\x84\x65\x5b\x99\xed\x9f\x91\x0f\xf4\x8e\x11\x95\x67\xee\x79\x80\xc1\x40\x45\x4b\x16\xe7\x09\xba\xed\xd2\x24\x41\xaa\xe3\xf9\x16\x8c\x6c\x32\x86\x23\x72\x21\xaf\x6d\xe3\xf2\x57\xf0\xa0\xca\xa8\x81\x19\x39\xab\x68\xed\x71\xc6\xec\xce\xfa\x07\xc6\x18\x65\x1c\x65\x1c\xa3\x78\x68\x1c\x8f\xac\xa7\x45\xc6\xec\x22\x8c\xa8\xef\x4f\x7c\xc7\x36\x47\xe4\xc4\xf6\x38\x8e\x63\x29\xd4\x65\x2d\xfe\xb3\x79\x76\x7f\xdd\x67\x5f\x58\x94\xeb\x5e\xcb\xee\xb2\xfd\x63\xab\xaa\x13\xf6\x45\xf5\xf1\xe2\x30\x95\xb3\x7a\x46\x3e\x70\xc1\x57\xfc\x6f\x8c\xc4\xf2\x5e\x68\xbe\x62\x24\xce\x41\x6d\x43\xdd\xfd\xf7\xd9\x52\x67\x50\xff\x3d\xd1\x2c\x49\x7c\x2c\xa3\x25\x89\x25\x54\x5f\x02\x75\x62\x39\x81\xeb\x72\xbb\x57\xba\xef\x54\x2f\x6f\x2c\x23\x75\x18\x49\x11\xb1\x54\xab\x43\x97\xa3\x52\x1d\x82\xc4\x9f\xca\xf8\xf0\x99\x0b\xe3\xe5\x52\x8c\xe4\x7c\x64\x7e\x28\x0e\xc4\xfb\xed\x87\x8c\x46\x6c\x0a\x26\xe7\x6b\x16\x49\x11\xab\x23\xf2\xb2\x5c\x89\x25\x9e\x65\x82\x69\xd4\x01\xb9\x06\x69\xc6\x65\xc6\xf5\xe6\x24\xa1\x4a\x21\xe8\x7e\xf9\x85\x8c\x4f\x28\x94\x58\xa8\xfd\x46\xfe\x5e\x18\x87\x6e\xf7\x10\x0b\x22\x73\xeb\x2e\xd2\xed\x9e\xf7\x98\x8c\x00\x7b\xe2\x90\x7e\xf5\xf2\x03\xb1\x28\x08\x42\x95\x5a\x18\x52\x30\xe3\x82\x66\x95\x00\x34\x34\x04\x98\xdf\x6a\xa4\x61\xce\x13\x70\xe9\x06\xe2\x50\xc8\x46\xee\xd6\x21\x26\xb7\xe3\x8f\x22\xc1\xfd\x5b\xc7\x57\xe0\x13\xf3\xcb\x2f\xe3\x93\x8b\xc9\xc4\xfc\xe1\x63\x02\xfb\xbb\xe1\xc9\xd1\x73\xf6\x88\x4c\xe6\x90\x72\x1d\x7c\xc3\xfc\x86\x91\x5c\xad\xa8\xa1\x32\x7f\xbe\xdd\x3b\x94\xa9\x3e\x8c\x04\x3f\x9c\x71\x71\x68\x27\x2e\x18\x4b\xfc\x30\xb1\x7e\x9f\xc9\x55\xc5\x35\xc8\xe9\x2e\x3f\xd0\xd4\x31\x09\xfe\xe7\x19\x39\x86\x50\xb0\x3f\x7e\x7c\x77\x76\x75\x71\x76\x73\x76\xfd\xf9\xfa\xec\xea\xa7\xc9\xc9\xd9\xe7\x1f\x2f\xaf\x6f\x00\x38\x81\xdf\xa6\x97\x57\x37\xd6\x08\x21\xd7\x2c\xcb\x78\x1c\x33\x7c\xe6\xec\xdd\xf4\x3d\x59\x55\xc1\x85\x1f\x04\x99\x97\x0f\xcb\xe9\x98\x47\x4e\x59\x51\xef\xe1\x22\x16\xb6\x73\x65\x31\xb1\xae\x6d\xe5\x19\xb9\x66\xda\x46\x99\xfb\xca\xb6\x82\x5f\xcb\x55\x69\x15\xb2\xe2\x71\xc9\x1c\x8c\xeb\x83\x7d\x02\xd5\xbf\xe5\xb4\x2c\x23\xa0\x34\xa3\x31\x91\xf3\x0a\x6b\x78\xbf\x64\x82\xe4\xca\xbc\x6c\xc7\x90\x7b\x2a\xcd\xea\xb0\xee\xda\x9c\x1c\x9f\x4f\x4e\x2e\x3f\x9f\x5c\x4c\x0a\x80\x1e\x9f\x9c\x5c\x7e\xbc\xb8\xa9\x43\x00\x3c\x0e\xb7\xce\x14\x3f\xe0\x50\x1d\x3a\xd3\xe2\xc7\x29\xd5\xcb\x23\x78\xa0\xe3\x6d\x54\x56\xdf\xf1\x85\x8d\xc1\x76\x4f\xc5\x7f\x06\x86\xdd\x05\x61\xb5\x69\x43\x17\x93\xcf\x27\x97\x17\xef\x3f\x5f\x1c\x7f\x38\x0b\xee\xc1\x90\xbd\x57\x2f\x47\x00\xcf\xb1\x19\x1a\x44\xa7\xbd\xfa\x22\x9c\xaa\xb3\xf6\x16\x21\xac\x03\x6e\x7c\xd3\x8b\xac\xaf\xe6\xe2\xec\xe6\xd3\xe5\xd5\x1f\x61\x55\x93\x1f\x76\x01\x6b\xf1\x5c\xfe\xc8\x36\x4d\xd0\xad\xb0\xe1\x15\xdb\xb7\xff\x01\xc2\x16\x09\xfe\xd9\xee\xe6\x73\xa8\x69\x79\x6f\x0d\xa5\x87\xcb\x5a\xc4\xd7\x80\x97\xd9\x77\x0a\x19\x51\xf3\x53\xc3\x86\xbd\x07\x7a\x71\x79\x7a\xd6\x7c\x0a\x4f\x71\x93\xcc\x62\x42\xf7\xc7\x1c\xdb\x87\x9b\x8f\xc4\x52\xd3\x35\xcd\xb8\x61\xe9\x9a\x8f\xe8\xc3\xcd\xc7\xdf\xf0\x5c\xd6\x4c\x2f\x3f\xaf\x74\x5e\xdf\xc6\x34\x63\x6b\x26\x6c\x2d\xb6\x92\x92\x80\xea\x44\x25\x8c\x81\xdb\xcf\x5c\x9a\x56\xf5\x9a\x8d\x6e\x73\xd7\xe7\x67\x67\x5b\x85\x4f\x8b\x57\x80\x5e\xed\x95\x9b\xbf\x96\x49\xbe\x62\x1f\x42\x69\x9f\x46\x64\x65\xbe\x46\xf8\x1f\x9a\x2b\xe2\xd3\x81\x30\x8a\x8d\x04\x1f\xcd\xb8\x18\xc5\x3c\xeb\x1c\x8c\xe9\x08\x06\x13\x4c\x8f\xb7\x02\xa8\xcb\xe1\x04\xd3\xf5\xe1\x14\x8b\x72\x20\xe2\x52\x68\xf6\xa5\x5e\x1c\x30\xcd\xf8\x9a\x27\x6c\x51\x75\x17\x25\x25\x91\x36\x44\xdc\x83\xef\x0a\x53\x57\x61\x02\xbd\x88\x29\x45\xb3\x0d\xe0\x1e\xe4\x06\x14\x98\xf3\x4a\x6b\xb7\x21\x32\x50\x62\x2a\x4d\xa8\xa8\x0c\x0e\x91\xe8\xb3\x74\x4e\xa8\x26\x87\x6a\xa3\x0e\xe7\xea\x10\xfe\x14\x31\x89\x20\xf2\xe1\x35\xfc\x94\xe5\xc2\x8a\x9b\x87\xf8\xf5\xd8\x25\xf8\xb2\xd8\x9e\x6b\x4e\x13\xae\xca\x70\x2e\xe4\x2e\xe3\xca\x64\x82\xcc\x8c\x54\xca\xe6\x73\x99\x69\x32\xa7\x6a\xc9\xa5\x38\xc0\x45\x08\x49\xe6\x94\x27\x86\x13\x07\xc2\x98\x65\x32\x53\x07\xe8\xea\xa7\x49\xcc\x55\x96\xa7\x60\x06\xf7\xa2\xc6\x84\x2b\xe0\x53\x27\xa1\xee\x6e\xdd\xee\x01\xa4\x46\xb3\x74\x3e\x57\xd5\x5b\x54\x72\x1d\x46\x08\x79\x2a\xb6\xc3\xa3\x75\x10\x1c\xb9\x37\x32\xa0\xb1\xff\x34\x9b\x1f\xe1\xe6\x6b\xac\x48\xef\x2b\x8d\x47\x14\xbe\x79\x6a\xa3\x46\xdb\xbf\x3d\x23\xef\x78\xcc\x33\xb4\xf8\xd2\x04\xc3\xa9\xac\xa2\x18\x8a\x17\x81\xf0\x53\x04\xcd\x0b\x76\x8f\x13\x92\x7b\x46\x56\x46\x38\xaa\xdd\x8c\x34\x93\x29\xb5\x59\x0b\x65\x81\x89\xb7\x67\x55\x12\x07\xe5\x9a\xc8\x5c\x27\x7c\x6d\xc3\x32\xaa\x37\x79\x8b\xed\xc1\xcd\xda\x39\x40\x37\x50\x59\x7e\x1b\x6c\xd6\x34\xf3\xee\x69\x18\x46\x6b\x9a\x8d\xb2\x5c\x8c\xc2\x6d\x9e\x04\x56\x5b\x4f\xe5\x9f\x0a\x64\xcf\x08\xdc\x32\x72\x98\x66\x32\x3a\xb4\x3a\x6e\xa9\xb4\xcd\xb1\x91\xab\x9c\x26\xc9\xc6\xc6\xc0\xc2\xc4\x69\x26\x17\x19\x5d\xc1\xde\xcc\xbd\x36\x1d\xc7\x64\xa2\xf7\x7d\x2c\x03\x6b\x10\x0a\x25\x86\xcd\x41\x7d\x4e\x87\x0d\x4c\x53\xef\x89\x1c\xa0\xcf\xb4\x59\x4f\x26\xa5\x2e\x30\xce\x5c\x35\x40\x52\x4b\x42\xb5\x36\x0c\xcd\xc9\xcd\xf9\x3b\xb7\x34\x23\xc3\x64\x66\xbf\x49\xbd\x9a\x4a\xf5\x82\xb8\xd5\x87\xaf\x46\xd3\xaf\x19\xa3\xb1\x91\xb0\xb7\xd9\xea\x87\xe1\xf4\x28\x2c\x8b\x5d\xe5\x42\xd5\x55\x74\x05\xfb\xe6\xc9\xba\xc0\xc9\xd5\x2a\x94\x3e\xf3\xba\x14\x30\xa9\x39\xdd\x18\x8c\x9e\xc9\x5c\x63\x72\x23\x33\xaa\xdf\xdf\x5c\x81\x00\xfe\xf4\xd1\xd9\x57\xc1\x9d\xff\xde\x32\xd8\x47\xc5\xfc\xa3\x3d\x9e\x4e\x9c\x22\x76\x46\x23\x23\x11\x01\xd5\x06\xb3\x64\x03\xf3\x74\x7a\x7c\x73\x7c\x7d\x73\x79\x75\xf6\xf9\xe6\x4f\xd3\x66\x59\xa2\xdc\xc2\xb6\x10\xe1\x9c\x67\x19\x5e\x0f\x42\x17\x8b\xcc\xe5\x8d\x28\x78\xeb\xd4\x7a\x10\x35\x2c\xe3\xe3\xb5\x01\xf0\xe9\x67\xd3\xa4\x71\x11\x00\x91\xad\xe9\x3f\x51\xae\x0b\x49\xb3\x6b\xbb\x9f\x8e\x27\x37\x9f\xdf\x5f\x5e\x7d\x2e\xf6\xbd\xe3\x6c\x46\x7a\xd8\x59\x60\x30\x52\xc2\x6f\x22\x24\x0c\x32\x7a\x0b\xd0\xba\x65\xf4\x53\x29\xf6\x35\x61\x02\x38\xc4\x77\x3f\x4c\xdb\xd7\x6e\x65\xe0\xc9\xc5\x0f\x9f\xdf\x1d\x9f\xfc\xf1\xec\xe2\xb4\xf1\x6e\x09\x29\x02\x77\xcb\x1a\x88\xb0\xba\xb4\x91\xc1\x21\x3b\xd3\x1c\x59\x70\x2f\x25\x86\xf9\xbd\x61\x25\xe7\x1f\xaf\x6f\xce\xae\x3a\xde\xf2\x77\xea\x00\xd5\xaa\x5b\x2b\x40\xf5\xe3\x81\x61\x8c\x15\xea\x20\x0f\x0c\x21\x45\xd2\x0e\xfe\x1d\x24\x63\x23\x97\xfd\x81\x26\x49\x59\x00\x53\x69\xaa\x1b\x56\xf5\xfe\xec\x7c\xf2\xf3\xe7\xc9\xf4\xe6\xf8\xdd\xf9\xd9\xf5\xd5\xd9\xfb\xab\xb3\xeb\x1f\x27\x17\x37\x67\x57\x3f\x1d\x9f\x37\x2e\xf3\xed\xcb\xed\xf5\x5d\x48\xaf\x40\x8d\xe5\x1e\x1a\x0e\x65\xd2\x2c\x12\x86\xf5\x20\x4e\x23\x3a\x99\xae\xbf\x81\xc0\x92\x52\x0d\xe3\x39\xcf\xd4\xbc\xe9\xc7\xe0\x1a\x39\x99\x16\xa5\xc0\xea\x23\x47\x4b\xa9\x0c\x99\xc0\x38\x53\xc3\x0f\x52\xb1\x60\x63\xb4\x7c\x62\x44\xab\xab\x79\x60\xfd\x28\x7c\x9f\x09\x1c\x75\x49\xd7\x5b\xe3\x0a\x69\x35\xf1\xb6\x6a\x82\x8d\x2f\x9e\x9b\x33\xb1\x99\xe7\xfe\x7b\x34\xb2\xd6\xb3\x51\xc4\xe3\xec\xbf\xb7\x1e\x74\xed\xfe\x4e\xa6\x3f\x7d\x33\xbd\xbc\x3c\x0f\x20\xe1\x67\x15\xbd\xd2\xf7\xaf\xc7\xaf\xde\x7e\x37\x7e\x39\x7e\x79\xf8\xea\xed\x36\x30\x4f\xb9\x42\x1f\x49\x9e\x30\x92\xc8\x05\x6c\x53\x49\xf2\xdf\x10\xf6\xa0\x13\xf3\x9d\xfa\x6f\xb0\xfa\xd5\x93\x38\xd4\x56\x74\x3a\xb9\x36\x57\xe6\xf3\xfb\xc9\xf9\xd9\xe7\xf3\xcb\x1f\x7e\x98\x5c\x84\x75\x4b\xed\xf8\xfa\x3d\x5c\xdc\x32\xc2\x57\x22\xc3\xea\x0e\x1c\xd3\xdb\x99\xaf\x8f\x4f\x4e\xce\xa6\x37\x0d\x6b\xc2\x5b\x7c\x7a\xf6\xfe\xf8\xe3\xf9\xcd\xd9\xc5\xe9\xf4\x72\x72\x71\x73\x73\x69\x58\x86\xe3\x93\x9b\xc9\xe5\x45\xe3\xca\x70\xd8\x66\x40\x4d\xa6\xeb\xb7\xe6\x8a\x95\x94\xbc\x75\x09\x93\xe9\x4f\x6f\xaf\x3f\x4e\x0d\x3f\xb2\x8b\xd6\xc3\x33\x22\x78\x16\x78\xc8\x73\x80\x2e\x63\xca\x80\x0a\x66\x38\xbf\xfc\xc1\x80\x7c\x7a\x7c\xf3\x23\xca\xcf\x82\x59\x47\x61\x3c\x58\x80\xa7\x3b\x59\x2d\xe1\xa4\xdb\x56\xec\x8d\xb7\x23\x4a\xec\xbf\xe0\xeb\xb3\x9f\xce\xae\x26\x37\x7f\xba\xfe\xd3\x35\xae\xd9\x3e\x2a\x78\x79\x45\x28\x8c\x98\xcb\xd6\x9d\xa8\x8d\x4a\xe4\xa2\x63\x2f\xde\x54\x3b\xe0\x98\xf2\x26\x7a\xf3\xdd\xee\xdd\xd3\x4c\x70\xb1\xe8\xb3\xf5\xeb\xe0\x7e\x4f\xae\xce\xce\x2e\xcc\x58\x9f\x70\xa4\xed\x1d\xf7\xdd\x0e\x8c\xd4\xb8\xa3\x4f\xe1\x85\x56\x87\xfb\xf1\xec\xf8\xfc\xe6\xc7\xb3\x0b\xf3\x6c\x9b\xc9\x5f\xf8\xa9\xb6\x6d\xd8\x11\x0f\x4b\x58\x41\x8e\xcb\x35\xba\x83\x98\x7f\x78\x2e\xe9\x73\x22\xe6\x48\x93\xfa\x50\xa3\x2e\x4a\x6d\x06\xaf\x2e\xf5\xa1\x8a\xb8\x90\x3b\x92\xfb\x1e\x13\x0a\x6c\x71\x2d\x51\x9a\x1f\x91\xd7\xdf\xbe\xac\xe4\x7a\x4f\xf8\x9c\x45\x9b\x28\xa9\xe7\x4a\x4d\x33\x76\xad\x65\xba\x35\x88\x11\x9d\x83\xfa\x5d\x54\x3a\x6d\xff\x32\x22\x60\xf3\x6a\x10\xdd\x5c\x9b\x91\x5a\xe6\x3a\x96\xf7\xa2\xba\xb6\x35\x13\x4c\xa9\x69\x26\x67\xf5\xf5\x05\xd7\xd1\xb4\x8a\xee\x35\x8c\xc8\x08\x5e\xef\xc8\xcc\x59\x83\x44\xd5\x88\xfa\xea\x65\xf5\x67\xab\x6b\x3c\x65\x09\xdd\x34\x36\xb2\xaa\xc4\x9b\x65\xc6\xd4\x52\x26\xf1\x11\x79\x5b\x6d\xa0\xf9\x8a\xc9\x5c\x37\x0c\x60\x64\x7e\xde\x04\x89\xa5\xd6\xe9\x0f\xac\x7e\x73\xa0\xce\xcd\xf2\x88\x1c\x16\x7d\xb7\x7e\x97\x99\x3e\x22\xdf\xbf\xfc\xfe\xfb\xfa\x2f\x86\x9e\x1d\x91\x44\x46\x34\xd9\xd6\x0c\x75\x80\xa3\x7d\x23\x2d\x8a\xc5\x67\x50\x02\xd2\x45\xe9\x1a\xcc\xe3\x79\xcd\x1b\x51\x34\xca\x18\x70\xb0\x34\xd9\x26\x68\x4f\xa8\x19\x27\x15\x1d\x4b\x91\xc5\xa6\x69\xb6\x84\xcf\x0e\x57\x32\xce\x03\xf9\xf1\x70\x9a\x84\xcf\x46\x0d\x0d\x9a\x55\x39\xf5\x59\xb2\x5c\x1c\x7e\x41\x34\x34\x4e\x64\x74\x17\x9e\xca\xb6\x18\x85\x5a\xec\xb0\xa5\xc7\x2b\x2e\x77\x9c\xcc\xc0\xb0\x6b\x32\x03\xc6\x07\x4d\x86\x43\xa0\xd6\x49\x6d\xc4\x96\x3e\x2d\xb4\x73\x83\x21\xe8\x62\x2b\x69\x0b\x5e\xd1\x42\x3f\x73\x40\xee\x19\x48\x0d\x56\x8f\x03\x3c\x40\xa1\x41\x74\x86\x8e\xd2\x0c\x52\x57\x5d\x2b\x09\x8a\x5a\x68\x8d\x59\xe0\xea\xd3\x41\x66\x4a\x4d\x50\x7b\x2a\xb3\x6d\x75\x22\x6e\x0e\xcd\x09\x2d\xfb\x2a\x27\x0d\x0f\x60\x9e\x42\x22\x17\xa1\xa7\xb0\x75\x56\x72\x51\x28\x41\xab\x7e\x13\xa4\xe5\x46\x6f\xf9\x76\x64\xb9\x50\x85\x38\x8f\xc2\x7d\x91\x95\x03\x6b\x82\x8e\x56\x0b\xf4\xcd\x64\xa2\x62\xb5\x01\x1a\x9d\x18\xe4\x84\x21\x96\x5b\x05\x44\x47\x9e\x9e\xac\xf4\x6b\x2d\xd7\xe8\xf9\x77\x18\xb1\xd5\x3a\x5d\x4f\x56\x8b\xaa\xce\xb0\x34\xa3\x10\xeb\xbe\x61\x48\x88\x1d\x2f\xb6\x26\x94\x11\x4f\x47\x2b\xaa\xfe\xea\xfe\xac\xad\xbf\x0c\x0d\xc0\xcf\xc3\x89\xfd\xb6\xba\xce\x6d\x73\x7a\x79\xfa\xd5\x4c\xc6\xce\x65\x6f\x2c\xb6\xd4\x19\xf5\xe9\xaf\xa7\xc7\x27\x5f\x7f\x0d\x81\x32\xca\x05\x23\x76\x7e\x7c\x71\x71\x76\x7e\xfa\x79\xf2\x7e\xc7\x95\x3c\xb5\xcf\x80\x69\xf4\x99\xcf\x7b\xac\x74\xfa\xf9\xc3\xf1\xf5\xff\xfe\x0d\xd7\x6a\xee\x6e\xce\x32\x5a\x65\x88\x1a\xa9\xf4\x2e\x44\xa9\x8b\x24\xb5\xa0\xed\x51\xd5\x7b\x7c\x14\xcd\x6b\x3b\xf0\x57\x61\x28\xbd\xff\xd4\x0f\x5d\x53\xdc\x45\xd5\xaa\xe1\x62\x08\xd1\x93\x65\x1b\x67\x34\x10\x6b\xc3\x52\xc0\x74\xb5\x07\xdb\xc2\x02\x8c\x3a\x09\x65\xfb\xa0\x4d\x44\x78\xd4\x49\x13\xbb\xc7\x0d\xd1\xdb\x51\xc7\x81\xb5\x8f\xda\x7e\x15\xd0\xab\xf8\x3d\x4f\xd8\x65\x76\x52\x09\x9b\x29\xe7\xdd\xb6\x16\xb7\xcf\x68\x49\x5a\x68\xa2\x53\x47\x2e\x9b\x67\xdb\xa2\x98\xbd\x26\xdb\xa2\x9f\xb5\xf9\xfc\x9b\xb6\x2a\xcd\x9a\x15\x53\x65\x2d\xf8\xdf\xf3\x07\xa8\x7a\x46\x36\x9a\x22\x03\xb7\x36\x64\x2a\x6c\xdf\x50\xb5\x75\xf9\x2e\xec\x1b\x0a\xcc\xd1\xf0\x16\x0b\x7c\x74\x14\x7a\xfd\x61\x1c\x54\xc6\x8a\x3b\xb7\xb0\x93\x8b\x49\xc8\xda\x17\xf6\x84\x69\xdf\x59\xd0\xbf\x66\xd4\xce\xf2\xb7\x8f\xd8\x20\x4a\x94\xbb\xb0\x51\xea\x46\x5c\x49\xe4\x22\x74\x40\x0d\xfc\x55\x8f\x97\xda\xc0\x6d\x95\x93\x5b\x95\x72\xca\xb2\x51\x2a\x63\xf2\x51\xf0\x2f\xe4\x54\x1a\x31\x8a\x5c\xcb\x5a\x71\xbc\x76\x66\xb8\x61\x35\x9d\x6f\x8a\x6c\x23\x2d\x8f\x7f\x86\xa0\x91\x2e\x87\x6d\x3f\xf6\xa2\x8c\xa7\xa9\x47\xac\x3c\x24\x18\x63\xd7\xe0\x95\x7a\x7a\x95\x22\x90\xe5\x9a\xb1\x50\xf0\x5d\x25\xd8\xf0\x70\x3b\x39\x4b\x30\xaa\xc4\xc6\x9e\x78\x59\xcf\x77\x49\x4d\xf3\x90\xc8\x93\xa6\xf4\x33\x2e\xb8\x02\x6d\x16\x95\x74\x78\xae\x2a\x11\x14\x8b\xa4\x90\xfd\x35\x61\xa0\xdd\x5e\xa3\xa9\x8e\x0a\x9b\x5c\x31\x63\x69\xc2\x23\xaa\x20\xfe\x63\xd7\xb8\x96\xc6\x4d\xaa\x32\xc6\xa5\xbc\x86\x57\xac\x0c\xbb\xec\x0a\x2f\xe9\x04\x23\x21\x6d\xa0\x24\x1d\x11\x2a\x2d\xc3\x3e\x32\x66\x65\x44\xf8\x9c\x8c\x6f\xca\x08\x11\xcf\x7b\xbe\x1a\x37\xe2\x05\xf9\xf8\xcd\x8b\x08\x9f\xb7\x18\x92\x32\x22\x2c\x51\xac\x71\x94\x12\xa9\x84\x75\xa6\x5e\x6b\x67\xa6\x6e\xcc\x85\x28\x09\xe6\x9e\x4d\x18\xf8\x0d\x65\xb9\x68\x8a\x59\xa9\xc6\xba\x94\xe6\xde\x21\xe2\xa5\xd2\x11\x4e\xcf\x06\x17\x61\x9b\xc7\x44\xbf\xb4\xbe\x85\xad\x78\x98\x87\x06\x89\x98\x59\x6a\x29\xd1\x7a\x05\x8d\x14\xf6\xc5\x50\xdc\x48\xd0\x4f\x69\xd4\xef\x95\x93\xaa\xd8\x5f\x36\x78\xa4\xaf\xd0\x96\x0a\xf3\x64\x29\xa1\x72\x13\x58\xb8\xfd\x87\xa1\xa5\x79\x0b\x0d\xfa\x1b\x6b\xe0\xf8\x7c\x72\x79\x71\x73\x75\x79\x7e\x7e\x76\xd5\x64\x09\xda\x56\x5d\xef\xe4\x79\x73\x17\xac\xcf\xf6\x94\x6a\xf6\x5c\x65\xa8\x6a\x5f\xb2\xe8\x6e\x54\x4d\xfe\x56\x36\x1b\xd5\xbc\x00\xff\xd9\x55\xec\x5f\x09\x0a\x59\x27\x14\xbe\x3e\xff\xb4\x33\x93\x51\xe7\xa8\xaa\x11\xbe\x48\x9e\x0d\x4e\x9d\xca\x98\x9c\xa2\x9b\x34\x97\x82\xbc\xcb\xe3\x05\x43\xcf\xaa\xf2\xfd\x01\xf7\x8c\xde\x73\xdf\xa9\xc2\x61\xe5\x38\xd7\x52\x45\xd4\xfe\xce\xd6\x3c\xd2\x06\x12\xfe\x26\x91\x83\xf5\x98\xa9\xa9\x8c\xcb\xc9\x70\xae\xdf\x9e\xab\x0a\x84\xc7\x3e\x11\x7b\xb4\x77\xf0\xff\x23\x84\xec\xa1\x7c\xb5\x7e\x33\x7e\xfd\xed\xf8\xe5\xde\x11\xd9\x33\x07\x02\x5a\x4d\x72\x63\xb9\xa3\xd2\xbd\x0c\xbf\xb7\x8d\x7b\x33\xc4\x36\x3b\x50\x25\x9e\xfb\xc4\x09\x7d\x84\xab\xa2\xc8\x4c\x54\xf8\xed\x51\xb3\xc7\xf9\x08\x12\xd9\xc4\x76\x5a\xdf\x0d\xa5\xcc\x65\xe0\xc6\xd9\xbe\xc1\xcd\x71\xf3\x85\x30\xd9\x74\x5e\x45\xb7\x67\x98\x82\xcc\x2c\xd2\x5a\xe8\xd1\xbb\x47\x9b\x6f\x3f\x5b\x02\xf9\xd9\x79\xe6\x97\x1e\x03\xc8\x0c\x43\x8e\xfc\x39\x8d\x4a\x59\x1d\xbd\x61\xcd\x0d\x06\x87\x0f\xa8\xf7\x14\xb9\xb2\x4f\xf0\x95\xcd\xbf\x1e\x95\xa9\xa8\x9e\x15\xc5\x1f\x67\x09\x15\x77\x07\x45\x81\x5c\x6f\x7c\xae\x9c\x5f\x4f\xa9\x08\x37\x88\x7e\x5f\xe1\x08\x8e\x4e\x82\x3f\x24\x8c\xea\xa9\x18\x31\x22\x19\x55\xd9\x13\x37\xa4\x0b\x4e\x7e\x46\x3e\xd9\x72\x3b\x32\x83\xb8\x05\xc8\x83\xeb\x54\x7e\x65\xc5\x58\x49\x62\xa6\xb4\x8d\x1c\xc5\x22\x62\xe8\xf5\x83\x83\x38\x5e\xc9\xba\xdd\x8d\xf1\x6e\xbb\x61\x7c\x13\x3c\xb6\x2f\x5d\x38\x4d\xcf\x0f\x37\x1f\x7d\xef\x40\x17\xd3\x5a\x02\x00\x63\xfb\x75\x2e\x04\xb3\xa6\xbd\x67\xe4\xdd\xc6\x6d\xfb\x00\x06\xe0\xca\x4f\x16\xe7\x2a\xcd\xfa\xd5\x7e\x98\xd6\x85\x03\x14\xd6\x48\xb2\x4e\x4c\x36\xa1\xbe\xf3\x9c\xb7\x13\xfc\x49\xe6\x28\xe3\xa0\xf3\x2d\xab\xe7\xa2\x9b\x6d\x48\x9a\xc9\x35\x8f\x31\xfe\x57\x48\x31\xfa\x1b\xcb\xac\x1b\xc8\xb8\x64\xd3\xcd\xe2\x1c\x97\xcd\xe7\x44\x30\xfc\xea\xa5\xe5\x5c\x5c\xa0\x92\x3d\xa6\x0f\x37\x1f\xf1\x6c\x2c\x5b\x17\xe0\xcf\xfd\x1e\xaf\xbe\xf9\xf6\x65\xad\x75\x73\x9c\x9d\x4b\x0e\xd4\x14\x6e\x07\xdd\x80\x95\x43\x91\xf9\x99\x2b\x04\xe3\xca\x8a\xda\x70\xbd\xa2\x6a\x63\xae\xe5\x8a\x02\x23\x96\x6c\x48\x2a\x6d\xe6\x6b\xbc\x80\x5b\x71\x71\x47\xe4\xef\x23\xc4\x5f\xbf\x38\x34\x76\xbb\x07\x66\x83\x3d\xeb\x25\x38\x4a\x65\x3c\xb2\x9d\xbc\x4a\x74\xb7\x7b\x91\x70\x6f\x1f\xdb\xbe\x1c\xbf\x19\xbf\xaa\xb4\xb0\x39\x20\xcc\xcf\x7f\x2e\x69\xe6\x2f\x3e\xf9\xbc\xdd\x03\x3f\x46\x18\xc0\xea\x36\xab\xd5\xee\x6e\xf7\x12\xb9\xf8\x9c\xb0\x35\x4b\xb0\x15\xf8\xb2\x84\xda\xcc\x79\xc2\x3e\xa7\x54\x2f\xb1\x5d\x40\x11\x63\xfe\x37\x4e\xe4\x62\xab\x7b\xe1\x30\xfc\xb9\x5c\x8d\xef\xec\x5c\x6b\x6e\xce\xa5\x84\xd1\xe7\xcf\xa1\x50\xc0\xcf\x9f\xb7\xba\xad\x74\x6e\x7a\x7c\xfe\x6c\x03\xf1\x3e\x7f\xae\x35\xe0\x29\x5d\x99\x16\xbf\xd4\x99\x0e\x1f\x4a\x06\x63\x8d\xc0\xc8\x1f\xa8\x0b\x78\xbb\x87\x56\x2c\x6c\x9a\x2b\x36\x95\xf1\x09\x8f\xb3\xaa\xf3\xca\x3f\x6a\xf3\x22\x59\xee\x9c\xf9\xee\x3b\xd5\x3e\x8e\x0f\xb2\xe0\x58\x36\xe5\xb1\xa1\x04\x1e\xe8\x30\x5c\xf4\xb3\x73\x0e\x33\x90\xab\xcc\x52\xfe\xe1\x4f\xd8\x78\x8d\x52\x99\xe9\x15\x4d\xb7\xc0\xaf\x04\x05\xb8\x18\xa4\x57\xfb\x29\xa2\x29\x85\xf4\x31\xdc\x2d\x1d\x46\xf9\x80\x09\xc7\x95\xeb\xb5\xeb\x4a\x66\x54\xc4\xf7\x3c\x36\x37\xb2\x7b\x42\xaf\xf1\xf6\x6c\xee\x9f\xd6\x2c\x69\x11\xca\xfb\xaa\x5f\x75\x15\xa1\x8c\x31\x44\x07\x72\xde\xdb\x78\x21\x67\xb8\xad\x06\x01\x09\xa6\x81\x3c\x8f\xff\x2f\x65\xc8\xf8\xdf\xb7\xd0\xc1\x85\x7b\xfc\x8e\x68\x21\xc3\x77\x32\x39\xbd\x32\x58\xd1\x7b\xf0\xef\xac\xdd\xb7\x7a\xfa\x58\x4d\xae\xe8\x6e\x57\x6d\xdb\x8e\xcd\x6f\x7e\x56\x8e\x7f\x14\x5b\xec\x62\x75\xee\xe2\x78\x14\x65\xb1\x53\xf6\x7d\xbd\x3a\x4f\x5b\xc9\xc6\xbe\x42\xb5\xa7\x77\x3f\x4c\x2b\xf9\xc7\xf1\xb7\xb2\xe6\x53\xfd\xf7\xed\xca\x4f\x0d\x29\xd1\xca\xfa\x4f\xf5\x06\xb7\xfd\xab\x40\xd9\x23\xbf\xfd\x3a\x25\xa0\xea\x7b\xab\xd6\x8f\xa9\x92\x49\xac\xa0\xb8\x31\x7d\x80\xb3\xaa\xaa\x79\x86\x12\x50\x43\x09\x28\xff\x08\x86\x12\x50\xbf\x5a\x09\xa8\xfa\x23\xde\x2e\x04\x55\x2d\x60\x68\x1e\x70\x95\x60\xd5\xd4\x2a\xcd\x15\x9f\xa8\xba\x80\x92\xe1\x01\x37\x8a\xda\x83\xbe\xc6\x86\xae\xb2\x9c\x13\xc9\x8e\xaf\x6d\xd1\xf1\x42\x48\xa4\x96\xd9\xfe\xf3\x29\x36\x09\x7a\x68\xbc\xfd\xe6\xdb\x57\xaf\xff\xb2\xbf\xfd\x13\xa6\xf5\x3c\x32\xaf\xf3\xcd\xeb\xed\x9f\x11\xa4\xe6\xe9\x2e\xb6\xeb\x9c\xcf\xb8\x88\x3f\xc8\xb8\xae\xbb\xda\x86\xaf\x6d\x17\x2a\xca\x2a\x81\x50\xd8\x40\x44\x0b\x58\x81\x12\x51\x43\x2d\x6c\xd0\xce\xdb\x10\x1a\xa6\xc8\xf3\x0b\x29\xd8\x0b\xcc\xda\x99\x6c\xfc\xe4\xa4\xfb\x60\x53\x92\x02\xf4\xec\x65\xd8\x4d\x68\xd4\x0b\x03\x41\x73\xec\xe3\x77\x3f\x4c\xc7\x93\xe9\xfa\xe7\x63\x1b\xa3\xf3\x1c\x02\x3c\xa7\x2f\xc6\xc4\x82\x97\xcc\xd8\x92\xae\xb9\xcc\xf1\x68\xdc\xfa\x43\xa3\x06\xb6\xb4\xb5\xfe\x1d\x6b\xe0\xba\xc7\x16\xba\x5b\x35\xa8\x9f\x94\x4d\x11\x25\xb9\x2a\x62\xb8\x24\xfb\x68\xdd\xd5\xa6\x98\x25\x72\xdb\x1d\xcf\x7c\x68\x36\xe3\x3a\xa3\xd9\xc6\x96\x92\x86\x98\x3b\x8a\x41\x00\x18\x52\xbb\x53\xd9\xb1\xe0\x32\x37\xe5\x8b\x53\x9a\x8a\x98\x66\xb1\x39\xd4\x84\x66\x0b\x56\x5f\x6e\x68\x50\x02\x5b\x30\xc8\x2d\x10\xc8\x88\x9f\x96\x77\x89\x1f\xe0\x08\xc2\x3f\xd5\xab\xc6\xd1\x15\x23\x0b\xbe\x66\x02\x35\x51\x95\xe5\x05\x27\x27\x9d\xf5\xd6\x48\xa1\x36\xef\xb5\x84\x9f\x80\xb4\x40\x2e\xe1\x19\x64\xe2\xc1\xa7\x4c\x6e\xf7\x28\x3d\x12\xe2\x76\x0f\xaa\x8f\xe3\x1f\x47\xab\xd5\xed\x5e\xe3\xb2\x08\x78\x99\x16\x50\x2f\x77\x93\x2b\xe6\x0d\x87\xe3\x1f\xd8\xda\x32\xe6\xfb\xdb\x3d\x03\xf4\xe6\x61\x6f\xf7\xa0\x23\xcd\x18\x79\xf5\x96\xcc\xb8\xb6\xb8\x6b\x0c\x13\xd6\x8f\xd6\x9b\x0d\xd6\xdb\x3c\x6e\x68\x25\x07\xc5\x6c\x22\x36\x12\xeb\xca\x4e\xfc\xe6\x75\x65\xe2\x4f\xa6\x4b\xb0\x9a\xaf\x5b\x32\x6c\x0b\xc3\xff\x8f\xaf\x09\x62\xe1\xa6\xc1\x53\x96\x8d\x8e\xaf\x5d\xa0\x23\x0f\xe4\x26\x70\x9f\x94\x6a\xc3\xfe\x1c\x91\xff\x7a\x7e\x7b\x1b\xff\xaf\x17\x47\xf8\x9f\xff\xfc\x7b\xf5\x6f\xf7\xf5\x43\x6f\x50\x13\x09\xf4\x7f\x0d\x54\xf4\x23\x84\x2f\x84\xcc\x58\x5c\x28\xf4\x3a\xd1\xcb\xa4\xde\xc1\xc3\xee\x98\x1b\x02\x25\x3b\x4f\xe9\xa6\x97\x34\x58\x61\xba\xa8\xf3\x31\x63\x84\x7d\x81\xf2\x2c\x31\x06\xe1\xa2\x8d\x64\x41\x62\x06\xe5\x22\x1e\x80\x6b\x1e\x58\xe2\x90\x58\xb4\x3e\x95\x59\x88\xa0\x56\x20\x71\x5e\xb4\x74\xc4\x1a\x6a\xdb\xe3\xe5\x34\xc8\x36\xcd\xa4\x96\x91\x4c\x1c\x07\x8d\x43\x07\xaf\xca\xa9\x2b\xf7\xad\x25\x79\xf5\xbb\xad\x38\x09\xd0\xf0\xf3\x55\xbe\x3a\x22\x6f\xbf\xfd\xf6\xcd\xb7\x81\xdf\xb9\xc0\xdf\x5f\xed\x48\xcc\x13\xb9\xb8\x66\x6b\x96\x71\xbd\xb9\x8e\x32\xc6\xea\xf2\xc6\xd6\xb6\xf7\xcf\xeb\x3d\xdc\xf6\x13\xb9\x20\xca\xfe\x42\xe8\x4c\xae\x9d\x7d\x32\x91\x8b\x20\xf9\x35\x4f\x09\x4a\x93\x5b\x01\x42\xe9\x58\xe6\xda\x63\x69\xc8\xe4\xe2\xfd\x65\x88\x7d\x69\x3b\x5e\xc3\x03\x7c\x60\x6a\xf9\x81\x7e\xb9\x62\x10\xfe\x7a\xc3\x83\xf8\xbd\x5a\x6f\x93\x63\x6c\x39\x5a\x89\x0c\xa5\x53\x72\xae\xef\xcd\x12\x33\x1c\x05\xbe\x84\x74\x83\x5a\x8e\x56\x4c\x2d\x49\xca\x98\x59\x80\xb2\x75\xe1\x43\x5b\x2c\x6a\xc3\x1f\x20\xd7\x5e\x68\x3f\xf3\x8c\xc5\x2e\xe9\xc1\x22\xa3\x11\x9b\xe7\x49\x31\x93\xb5\x20\xb6\x8c\x6b\x38\xf7\xca\xd8\x8c\xbc\x9b\x5c\x9d\x16\xfc\xa2\x9c\x93\x57\xaf\x5f\x2a\x67\x37\xb1\xd1\xb6\xa8\xae\xb6\xb9\xd0\xeb\x1f\xe0\xa3\x66\x0c\xc2\x13\x2d\x3b\xe5\x46\xdb\x12\x77\x9d\x5b\x0e\x66\xd7\x40\x85\x77\xf0\x88\x21\xaf\xcb\x85\x3d\x11\xc8\x8f\x04\x51\xe9\x01\xe2\xd1\xe7\x48\xa7\x54\xa9\x7b\x99\x85\xa2\xbf\x2a\x87\x79\x69\xb3\x51\xe0\x33\xb4\x9d\xe0\xfc\xe6\xb9\xf5\xf1\xd8\x3e\xc4\xd0\xf2\xab\x50\x7b\x10\x88\x82\x17\xdf\x83\xda\x0e\x20\xea\x60\x64\x14\x8b\x32\xa6\x5b\xfc\xb5\x6b\x50\x42\x67\x21\xc3\x22\xde\xb1\x0d\x08\xff\x76\x08\x1b\x24\x82\xf9\x21\x52\x19\xef\xab\xd2\x06\xd6\x40\xe9\x3a\x79\x2c\xf4\x03\x6f\x26\xc0\x5b\xc5\x6f\xed\x9a\x30\x0d\x04\xac\x4a\x4b\x6b\xd3\x04\xd9\x77\x4c\xc8\x07\x64\x82\x9a\x07\x25\x84\x1a\xd6\x8a\xc7\x6e\x88\x3b\x56\x0f\x6d\xf1\x3f\xdd\x7c\x5a\x07\xaf\x58\x47\x95\x7e\xb2\xc4\x8c\xcd\x59\xc6\x84\x0e\xca\xd5\x6d\xb9\x59\xe5\x9a\x65\x6b\xce\xee\x0f\x6d\x26\x8a\xd1\x3d\xd7\xcb\x11\xd2\x7a\x75\x08\x07\x73\xf8\x0c\xfe\xd3\x06\x88\x9b\xcb\xd3\xcb\x23\x72\x1c\xc7\x44\x82\x04\x96\x2b\xc0\x38\x70\xb7\xd5\xd8\xd3\x37\x1d\x80\xba\xe3\x80\xe4\x3c\xfe\x3f\x02\x98\x77\x17\x58\x15\x49\x61\x7a\xc2\xeb\x1a\x10\xda\xa6\x94\x12\x97\x8c\x5c\xe3\xc1\xc9\x0c\x78\x7c\x73\x29\x56\xdd\xa7\x8e\xba\xb0\x16\x0e\x15\x57\x3f\x93\x32\x61\x61\x64\x48\x0a\x33\x5e\xc3\xe2\xc1\x3d\x2b\xfc\x53\x1f\x66\x2c\xfc\xab\x79\x70\x37\xd2\xe1\x82\x33\xc4\x03\x9d\x04\xf9\x22\xd4\xcb\xe0\xa8\x52\xde\x2e\xd0\x9e\x2b\x21\x1b\x5a\xb9\x41\x96\xab\x2a\x0e\xf2\x69\xb1\xce\x72\xd6\x4c\x8b\x1b\x60\x99\x66\x6c\xce\xbf\x1c\xfb\x75\xbe\x3a\x59\xcc\x69\xa0\x4f\x29\x25\x82\x03\x32\xb4\xa8\x96\x0f\x0b\xed\xa8\x4d\x5b\x43\xfa\xcb\xaa\x81\x05\x95\x54\x5c\x55\x97\xe1\x61\xc2\xf0\xed\x70\x89\x6b\x0a\xea\x1d\xca\x2f\xe4\x80\xd7\x81\x54\x23\x1e\x87\x54\x4a\x81\x2d\x40\x15\x34\xb0\x8a\x03\x47\x56\x8e\xec\x98\xd3\x19\x2b\xf7\x51\xcf\x4d\x52\x7e\xba\x5f\x7d\xbb\xa6\x22\xb4\x32\x4f\x5f\x61\x68\xec\xac\xac\x7b\xce\x38\x5c\xde\x52\x54\xec\xc0\x72\x34\x31\x82\xc3\xc6\x3d\x7f\x43\xc6\x6e\xf7\x0c\x52\x51\x63\x6f\x16\x94\x90\x7b\xa9\x16\x08\x2a\xc5\x3b\x25\xec\x16\x41\xba\x5d\xe4\x6c\x97\xb0\xdb\x05\xe9\xe6\x91\xbb\x24\xec\x4e\x41\xba\x6d\xd1\x1d\x12\x76\xa7\x1c\xdd\x6b\xec\xfe\x02\x76\xf3\x13\xc6\x4f\x1f\x3a\xd5\x22\x0e\x92\xc7\x08\xd7\xd6\xf3\xc7\x9a\xa2\x26\xd3\x4e\xcc\x77\x5d\xef\x00\xc0\x80\x34\x57\xe6\xfd\xda\x1a\xd2\xa0\xf9\xc7\x77\x6c\x67\x08\xe2\x3e\xeb\xe4\xe6\x46\xb1\xa1\xac\xa0\xe6\x9f\xfb\xb2\x83\xcd\xa0\x05\xde\x18\x05\x0a\x30\x93\x86\x2f\x2f\x2e\xa2\x52\x70\x9c\x8a\x4d\x65\x3a\x9b\xc8\x47\x2f\xd9\xea\xe1\x48\xb7\x0e\x8b\x77\x50\xef\xbc\x34\x8c\x78\xa1\x02\x46\x64\x33\x78\xd4\x35\x0d\x9f\x73\x09\xc2\xaf\x80\x6c\xbf\x9a\x82\xc6\x9e\xf0\xd9\x17\xb4\xa2\xf5\xbf\x44\x5e\x8f\xf0\x2d\x92\x99\x97\xb9\x27\xb4\x66\x3b\x10\x71\x23\x99\xb3\x1d\xfb\x79\xfb\xea\x0d\x8a\x7c\x52\x56\x4e\x0a\x8a\x3e\x05\x91\x21\x1c\x18\xe3\x0d\xd6\x4f\xc7\x2b\x23\x85\xe3\x97\x15\xb3\x0b\x7d\xf4\x0d\x2a\x57\xd7\x79\x85\xc2\xa7\xeb\xed\xff\x5f\xfb\x12\x9d\x4b\x1a\xbf\xa3\x89\x91\x4a\x77\xc0\x46\xb5\x5e\x8f\xbc\x4c\xfe\x68\x8d\x17\xca\x96\xab\xf4\xdb\x8e\x27\x62\xd1\x64\xc6\xa9\xdf\xbb\xdf\xe0\x92\x55\x81\xf4\xc0\x8b\x56\x83\xcd\xbf\xe4\x65\x0b\x77\xdb\xfe\x16\x7c\x38\x2a\xf9\x07\x94\x96\x19\x44\x4e\xe0\x57\x78\x07\x60\xf9\x34\x32\x92\x30\x8b\x2f\xb6\x7c\x50\xca\x84\x55\xce\xa7\xc4\x7d\x13\x49\x11\x73\x0c\x3c\x22\x7f\x06\x27\x24\x70\x97\x8b\x7f\x72\xce\x20\xf0\xed\xce\x2e\x3b\x5f\xd1\x61\x07\x4a\x00\x7e\x1d\x3f\x9d\x29\x73\x8a\xdf\x8a\x7b\x8e\xf9\x3a\xe8\x95\xe3\x55\x23\xac\x38\xe3\xa4\x76\x9c\xdf\xca\x07\x67\x70\x96\x19\x9c\x65\xfc\x23\x18\x9c\x65\x7e\x4d\x67\x19\x83\x2e\xb6\x7d\x64\x5c\xcc\x9e\xe7\xec\xe6\x1a\x17\xa7\xf7\xf4\x8e\x32\x37\x4b\x56\x8a\x97\x4e\xc5\x6a\xd0\x53\x80\x52\x3e\xc6\xd7\xe5\x8e\xb1\xf4\x32\xe3\x0b\x2e\x68\x72\xc1\xbe\xe8\x1f\x03\x99\xea\x82\xc6\x07\xf3\xce\x4d\x67\x58\x98\xb4\x23\x10\xc1\xbe\xe8\xa5\x4c\xad\x49\x01\x6d\x9d\x60\xdc\x0c\xb2\xca\x9e\x79\x0c\x60\x4a\x0c\x50\xcd\x1d\xc7\x08\x04\x17\x0d\xe1\xeb\xa2\x50\x5d\x9e\x40\xe8\x82\xe9\x12\x1a\xd7\x8c\xa2\x0a\x6d\x60\x8e\xc2\x9e\x91\xd0\xd9\x17\x4d\xcc\xea\xcc\xba\x7f\x6f\xa4\xf8\x32\x4f\xb2\xf7\xab\x62\xc9\xfc\xf7\xb7\x7b\xcf\xad\xe5\xe3\x45\x68\x0a\x6b\x40\x28\xe2\x39\x67\x19\x15\xd1\xd2\x9d\xd3\x85\x99\x5a\x0a\x72\xbb\x37\xe3\x59\x3c\x8e\xe6\x8b\xa0\x97\x42\xab\x62\x71\xf5\xc4\xd6\x3d\x6b\x6b\xf3\x04\xe3\x20\x53\xf4\x50\x1b\x5e\xcd\x60\x17\x1e\xbb\xc3\x86\xd7\x04\xa1\x66\x9b\x59\x9f\x57\x54\x24\x01\x2f\xf2\x36\x3b\x04\x6c\x15\x03\x45\xca\x6c\x30\xf8\x35\x19\xf3\xb9\x22\x9a\x66\x0b\xa6\x5d\xf5\x15\xae\xf0\x3d\x92\xc9\xbc\x00\x1b\x00\x81\x69\xa4\x6b\x42\x56\x42\xd6\x1b\x06\xad\x1a\x39\x6d\x00\x09\x98\xf5\x0c\x82\x51\xce\x84\xe5\x22\xb7\xdd\xcd\x2b\xeb\x6f\xee\x0a\xb3\x40\x08\x7d\x10\x76\x45\xf9\x46\xa7\xd0\xc5\xf9\xc1\x9a\x67\xb9\x00\xc8\x68\x50\x40\x82\x8b\x45\x8b\x41\xd7\x81\x08\xc0\x53\x3c\x12\xc4\x13\xce\xd9\x87\xad\x52\x1d\xb2\x5f\xb5\x6e\x29\x5f\x1d\xa3\xcc\x71\x2e\x23\x9a\x38\xff\xc2\x4e\xe1\xef\x03\x3a\x1c\x38\xaf\x43\x39\xc7\x34\x8d\xa5\x23\xa2\xdd\xaa\x53\x2d\xdd\x83\xbe\xb5\xe9\x5e\x1f\x5f\x43\xe6\x0e\x1b\xef\x1e\x31\xbe\x66\xae\x2a\x83\x35\x4d\x63\x51\x6e\x3c\xda\x44\xca\xd4\xf0\x98\x96\x00\x06\x71\xa3\x28\xc2\xae\x9c\xd0\x97\x5b\x71\x8f\xce\x94\x4c\x72\xcd\x92\x8d\xad\x11\xa4\xe8\x56\x42\x3b\xf2\x48\xb2\x90\x3e\xda\x10\xed\xe8\x15\x17\x0b\x45\x16\x4c\xb0\x8c\x7a\x4f\x27\xb4\xe5\x0e\xa2\x4a\x06\x03\xf1\x60\x20\x1e\x0c\xc4\xff\xb3\x0d\xc4\x06\x63\x4c\xa6\x7d\xc8\xba\x57\x6f\xc0\xe3\x8e\xc9\x5c\x5a\x5c\x3d\xdb\x80\xf8\xea\xf0\x53\x2a\xb3\xb0\x8f\x1e\xa2\x7f\x2d\xb1\xbb\xb9\x59\x40\xd1\xc1\xd5\x4d\x14\xae\xea\xe0\x12\x7b\xe0\x0c\x65\xa5\x49\xf1\x76\xef\xcf\x18\xbd\x3c\x99\xae\xdf\x62\x00\xf3\x5f\x8e\x60\xae\xa0\x9b\x27\xd8\xd5\x8a\x0e\xdf\x60\x87\x23\xfc\x02\x7a\xc1\x17\x68\xc0\x82\x82\x07\xb0\x96\xca\x26\xbc\x45\x39\x6e\xa3\x89\x7e\x14\x94\x19\x80\x25\x62\x52\x38\xdf\xcf\x58\x22\x0d\x5e\x06\xc6\xdb\xaa\x84\xb0\x44\x08\xd7\x4b\xcf\xf1\x2f\x8c\x64\x01\x3d\xd6\xfd\x81\x2c\xfb\x72\xcf\x2c\xc3\x4d\x35\x2e\xd7\x42\x76\x47\xaa\x6e\xba\x3c\x98\x51\x31\xa4\x56\x17\xfc\x4a\xe5\x64\x91\x57\x6d\xa2\x40\x3e\x7b\x32\x85\x9b\x58\x05\x1b\xe2\x8a\x1a\xbb\x82\x5e\xc6\xd5\xba\x4b\xd5\x8d\x18\x7e\x73\xc6\xf4\x3d\xb3\x01\xeb\xc8\x68\x00\xbc\x31\x5d\xbe\x15\x67\xfc\x75\x43\x4a\xdc\x82\x0b\x0f\x9f\xb0\x2d\x89\x61\x67\xe0\x73\x32\x93\x7a\x49\x98\x88\x15\x72\x66\x86\xc3\x7a\xf7\xc3\x14\xfc\xff\x4d\x53\xe7\xfb\xdf\xce\xa6\x9b\x25\xe1\xd8\x6f\xfb\x8f\xfd\x76\x6b\xec\x31\x31\xcf\x34\x34\x81\xdd\x66\x19\xf1\x11\x49\x70\xbe\x77\x2a\x0c\x0f\x0c\xfb\xaa\x32\x91\x3b\x88\xe0\xba\xed\xe1\x2f\x12\x39\xa3\x49\x99\x67\x7f\x6e\x4b\xaf\x15\xcf\x65\xc7\x9b\x98\x99\x93\xa5\xb3\x84\xbd\x0b\x11\xef\xca\x45\x34\xb4\x85\x0a\xc2\xbe\xd0\x48\xdb\xe2\x87\x87\x6f\x5e\x1f\x80\xb6\x9f\x47\xb6\x0a\x93\x96\xf7\x34\x8b\x8b\x67\x19\x66\x29\x65\x16\x5b\xa4\x84\x4c\xa2\xed\x3b\x4f\x30\xfc\x75\x4c\xae\xca\x55\x55\xb5\x15\x2d\xc1\x20\x16\x4d\x2e\xa8\x66\xf7\x74\xe3\x1c\x25\xcc\x3a\xac\x5b\x02\x6c\x15\x50\xe7\x8e\x30\x42\x7e\xcd\x5e\x81\xce\xe7\x6a\x6f\x48\xe9\xbc\x63\x6e\xdc\x52\xde\x6f\xe5\xbe\x40\xc5\x58\xcb\x8e\xba\xf9\xcc\x6d\xa6\xb2\xf0\x45\x6e\xf6\x8b\xb8\xdd\xfb\xa8\x18\xc6\xc7\xdc\xee\x91\x15\xa3\x42\x55\xd7\x56\xb0\x86\x06\x41\x58\x9d\x44\x65\xb1\x63\x08\xd2\x0d\x54\xce\xc0\x0f\x0e\x69\xd3\x48\x34\x6f\x79\xc7\x53\xd0\x3a\xb9\xb6\x69\x91\x3b\x09\xe8\xcd\xb9\x6b\x6a\x3d\xa1\xac\x90\x0f\xf0\x4b\x40\xfd\x7a\x73\x73\x5e\xa4\x59\x26\x2b\x16\x2d\xa9\xe0\x6a\x15\xda\xce\xf3\x1f\x6e\xae\x3f\xbc\x28\x3d\x6f\x34\x32\xd5\x0b\x73\x29\x35\x51\xa9\x94\x73\x16\x93\x94\x42\x12\x45\x73\x32\xe0\x94\x0f\x41\x36\x56\x54\x0a\x62\x4e\xdb\x1e\x48\x12\x25\x6a\x45\x31\xd1\xcd\x12\x9e\x58\x8a\x28\xd3\x2c\x12\x63\x53\x80\x29\xc0\x44\x13\x4e\x77\xdc\x24\xc6\x9b\xd3\x2b\xa4\xbe\xa5\x4c\x15\x79\xce\xe2\x05\x53\x2f\x2a\x58\x1a\xcd\x15\x3b\xc9\x4d\x83\x6d\xe8\x61\xb6\xa1\x44\x46\x77\x74\x8e\x6d\xd8\x57\x31\x11\x99\x19\x8e\x71\x86\xcd\x96\xa1\xc8\xff\x31\x60\x2e\xaa\xae\x6e\xcb\x6a\xe4\xfd\xbc\x19\x6c\x47\x76\x95\x83\xed\x68\xb0\x1d\xfd\x1b\xd9\x8e\x7c\x0c\xd2\xd3\x82\xb4\x8d\x91\xca\xcf\xee\x66\xa5\x06\x4f\x88\x36\x76\x21\x66\x09\xd3\xdd\xde\xd7\xa7\xd8\xac\x12\x05\x07\x65\x92\xb9\x42\xdc\x47\x1c\xf2\x33\xf7\x76\xc6\x30\xac\x0d\xfa\x74\x45\x9c\xf8\xf7\x7c\x8e\x2e\xab\x29\xd5\x1c\xb2\xb0\x6c\x90\xee\xcb\x24\x06\xe6\x2d\x61\x54\xb5\x44\xda\xad\xb8\xd2\xf4\x8e\x89\x64\x43\x74\xc6\xdc\xf2\x70\x16\x5a\xce\xf2\x34\x16\x86\x56\x4e\x58\x97\x79\x74\xfb\xf5\x69\xd0\xb2\x8c\xe0\x48\xeb\xdf\x59\xc0\xd6\xbf\x0e\x25\xb3\x0c\xd4\x7d\x1c\xd8\x93\x07\xb1\x27\xd6\xd4\x62\xf0\x57\xb6\xfa\x6a\xd9\x66\x9c\x73\x67\x39\x4b\x9d\x4f\xd9\x6e\xb1\xcd\xac\x04\xd6\x5a\x67\x58\xb6\x9b\xfc\x96\x5c\x4b\xd5\x55\x7e\x6b\x87\xb5\xbc\x33\xd6\x07\xb7\x30\xbb\x7a\x9b\x18\x52\xce\x0c\x9c\xd0\xc0\x09\xfd\xd6\x9c\xd0\xf6\x0b\x6e\x4b\x3a\x83\x5d\x67\x21\x5d\x46\xa3\x89\xbb\x8d\x09\x02\x14\x1b\x7e\xe3\xdb\x2b\xf5\x1b\x3b\xb5\x80\x7d\xe4\x66\x6d\xd6\x39\xc0\x32\x3b\xc5\x6a\x1a\x74\x0a\x59\x2e\x44\x4b\x24\x7e\x43\xd2\x13\x1c\xf2\x87\x8f\x93\xd3\xce\xd5\x96\x4d\xdd\x5a\xe1\xdf\x56\xa7\xd7\xb8\xb8\x1e\xd3\xdf\x98\x26\xfd\xa6\x37\x4d\xdd\xa1\x59\xb4\x08\x35\xb1\x1f\xb3\x8a\x22\xd1\xe3\x15\xa3\x71\xa7\xe2\xea\xb4\xd2\xba\xc8\x9a\x1b\xe7\x80\x22\x14\x5f\x08\x60\xb4\x85\x2e\xc7\x25\x2b\xbe\xa8\xa4\x5f\xab\xad\x4d\x42\x37\x9a\xd8\x84\x27\xa9\x14\xe0\xd1\xac\xf2\x68\x69\x78\x47\x2c\x0d\x8b\x3a\xe4\xc2\xf2\x73\x4f\xb9\x79\xe5\x73\xd9\xa0\x9a\x87\x3a\x26\x0e\x43\x35\xd5\xbe\x27\x5d\x66\xb8\x35\xcd\x38\x15\x9d\x79\x1a\x7e\xc2\x66\x24\x66\x51\x42\x33\xd0\xab\xf2\x68\xe9\x7a\x7b\x77\xd9\x8b\x84\x83\xe2\x13\x3b\xb1\xc3\xff\x92\xcc\xa3\xfd\xcf\xd3\x73\x86\x80\xe7\x2b\x75\x1f\xca\xac\xd2\xa3\x05\x13\xe3\xbb\x7c\xc6\x66\x39\x37\xe2\x0b\x4c\xe0\xa6\x7f\x0e\xc8\x1c\x7c\xca\x20\xc3\x37\x97\xe2\x86\xaf\x98\xd2\x74\x95\x1e\x11\x91\x27\xc9\x6d\x2d\xc5\x36\x98\x83\x00\x66\x5f\x45\x35\x86\x77\xe3\x42\xc6\xec\xda\xcb\xae\xee\x71\x9d\xb5\xdf\x03\x3c\xe7\xd6\x32\xb7\x58\xce\x5a\x8b\x41\x4d\x66\x57\x39\x30\x87\x03\x73\xf8\x6f\xc4\x1c\xd6\x50\x49\x3f\x4d\x59\x18\x41\x95\x9f\x07\x28\xcb\x12\xaa\x54\x8f\x44\x73\xd8\xac\xa4\xab\x8e\xdf\x01\xde\xd5\x13\x3d\xb1\xc2\x9c\xe0\x0d\x4e\x9e\x68\xa5\xe4\xca\x77\xb4\xc0\x67\x09\x7e\x85\x18\x5c\x86\x4e\x00\x7c\xed\x62\xc3\xcc\x8d\x94\x99\x6e\xf0\x2d\xa2\x33\x99\x6b\x12\xb1\xcc\x80\xce\xdc\x36\x48\x86\x50\x5d\xd5\xaf\x93\x4e\xea\xc1\x5e\xb8\xdc\x02\x34\xe8\x84\x3b\x0f\x43\x12\x1a\xd9\xd8\xb9\xdd\xb8\x4c\x7c\x71\xd3\x4a\x5d\x90\x8e\x55\x7f\xdc\xee\x52\xe4\xc1\x82\x2f\x09\xd5\x96\xd5\xea\xba\xa2\xe6\x53\x32\x5f\xc5\xeb\xc7\x92\x50\xe4\x25\x94\x0d\xc0\xba\x0a\x5b\x43\x91\x8c\xcd\x33\xa6\x96\x41\x5d\xaa\xf3\x61\xc5\x11\xdd\xb2\xb8\x82\x08\xc0\x98\x3e\xad\x53\x68\xe3\xab\x2f\xf9\xb9\x06\x48\x6e\xbd\x7b\xdc\x99\x4f\x40\xe5\x0c\xf9\x46\x54\x5b\x96\x3c\x6b\xd9\x69\x6b\x2f\x17\x12\x3d\x1b\xf1\x09\x0a\xc6\x62\x86\x9e\xa7\xf6\x01\x29\x6e\x6e\x12\x07\xd7\x0f\x0b\x72\x32\xdb\xd8\x71\x77\x08\xd8\x58\xb0\x6e\x16\xfc\xd8\x34\x22\x4b\x99\xc4\x0a\x3b\xb8\x45\x78\x69\x3b\x77\x77\x67\x9d\xf1\x2c\xfe\xe9\x9b\x3e\x8e\xac\xef\x26\x57\xa7\x3f\x7d\xe3\x07\x64\x96\xfc\x41\x15\xb6\x39\xa0\x09\x33\xf2\x37\x0f\x77\x64\x4d\xa8\xd2\xef\xa4\x6c\x8a\x4c\x08\x2e\xf1\xdc\xeb\x63\x21\x55\x28\x03\xc0\xfb\xda\xfb\xbd\x79\x48\x82\x64\x18\xc3\x2a\x74\x42\x64\xae\xd3\x3c\xe4\xd2\xe3\x3e\x7d\xbc\x34\xcd\xd4\x57\xac\x92\x4b\x65\xd7\x9d\x05\xba\x37\x6d\xd2\x35\xfd\x0d\x36\x0a\x5e\x44\x59\x50\xdb\x10\xdc\xd9\x15\xb4\x27\x93\xd3\x22\x29\x2f\xac\xe7\x71\x8b\x68\x32\x91\x04\x57\x00\x95\x36\x1c\x4a\x70\x39\x8a\x4f\x29\x5b\x05\xe9\xdb\x2e\xcb\x58\x37\xaa\x89\x82\x0b\xf9\xa9\xd4\x0c\xb9\x65\xc4\xb0\x8c\xc7\xac\xa2\xdd\x4f\xd6\x22\x80\xb7\xbd\x11\xc0\xdb\xdd\x10\xc0\xdb\x01\x01\x78\xdb\x19\x10\x40\x60\x67\x03\x02\xf8\x2d\x11\x40\xdb\xaf\xb3\x45\x67\x9c\xa6\x59\x22\x5e\x41\xe0\x9b\xcd\x9f\x8d\xbc\x73\xc7\x9b\x47\x77\xb9\x33\xa5\xe9\x2c\xe1\x6a\xc9\x7a\xb2\x25\xe6\xf0\xb4\xd4\x34\xf1\xfc\xed\xc0\x67\x99\x95\x23\x99\x9d\x10\xc5\x14\xea\xe3\xda\xc0\xd4\x10\xaa\x14\x5e\x5f\x2f\xac\xd9\xb0\xbe\xb7\x5f\x69\x7d\x17\x52\x3f\x1d\x08\x85\x14\xa3\x5f\x65\x99\x8f\x83\xe4\xd7\x58\x26\x78\x66\xf6\x03\xdf\x14\x9b\xfa\x84\x11\xa0\xe7\x02\x2c\x55\x3f\x46\x9d\x74\x26\xe2\x6a\x10\x78\xc0\xf7\xb8\xaa\xe2\x28\x68\x70\xb1\x86\x66\x0c\xd2\xbd\xaa\x5e\xe4\xba\x25\xae\xa6\x61\x07\x0d\xd1\x35\xf7\x4b\xa9\x58\xa9\x82\x27\xf7\x8c\xd0\xb0\x09\xa4\xfc\x14\x8a\x8c\x16\x7c\xdd\x0f\x63\x13\x94\xe9\xfa\xef\xe2\x9a\x63\x44\x6f\x41\x42\x32\x92\x31\xaa\xa4\x00\x3a\x6c\x8b\xf0\xb6\x91\xb3\xde\xeb\xea\x20\x69\xf5\x75\xc1\x6a\xac\x32\x01\xf0\x32\xbe\x08\x1c\xe7\x09\xd6\xa3\xc3\x36\xbd\x86\xe5\x80\x59\x2f\x50\xc3\xa2\x08\x1f\xaa\x04\x84\xb7\x9f\xf6\x9a\xd3\xe2\xca\x8e\xb4\xad\x44\xbd\x62\x6a\x79\x60\xa0\x6f\x7e\x65\xa2\xa8\x36\xe8\x82\x35\xda\x72\xfd\x11\xac\xe7\x3a\x72\x34\x0c\x5e\x94\x55\x99\x3f\x16\x50\x5d\xfc\x77\x67\xe6\x3c\xc4\x44\xbd\x30\x24\x62\xa2\xb7\x35\x4c\xf4\x76\xc0\x44\x1d\x3b\x18\x30\xd1\x6e\xeb\x1a\x30\x91\xfd\xfc\x3b\x61\xa2\x96\x50\xdd\x51\x88\x79\xef\xd7\xec\x6d\x73\xb3\x3a\x2b\xdb\xbb\x65\x60\xcc\xb6\xbd\x9b\xd7\x81\x8a\xf8\x4e\x47\xe5\xf3\xb2\x29\x9a\x06\xb5\xb3\xab\x6f\xdb\x05\x41\x1f\x92\x41\x8b\x10\xb4\x21\x6f\xcd\x96\x26\xde\x9a\x0a\xe1\xc1\x96\x16\x3c\xd0\x2f\x17\x13\x34\x26\x89\xb8\x7a\x7f\xf2\xe6\xcd\x9b\xef\x41\xff\x8e\x15\x7d\x20\x95\xc7\xc7\x9b\x93\x16\x25\xbd\x99\x63\x14\x5e\xa4\xc8\x13\x5b\x0b\xbb\x74\xb4\xd8\x06\x6a\x43\x48\x23\xe4\xa5\xe8\x82\x27\xc8\xfe\xce\x0e\xa5\x6c\x27\x02\xc6\x7a\x67\x80\xb6\xb6\x9b\x76\x59\xf8\x51\x2a\x70\x9c\xb5\x1f\xaf\x7f\x65\xdb\x6e\x31\xfb\x76\xe9\x5f\x89\xb0\xc2\xb4\x6d\x94\xb5\x39\x01\x52\x1f\x00\xf5\x02\x53\xb1\x40\x57\x7a\xba\x3f\xca\x3d\x2d\x3b\x15\x89\x1a\x8a\xf2\xd8\x4d\x9f\x7e\xb8\xdf\x46\x9a\xf6\x5f\xcb\x0f\x36\x34\xd5\xc5\x75\x7a\x1b\x7a\x82\xe5\x14\x15\x7b\x76\x60\x3e\x8a\xd2\xe2\x81\x25\x3d\x7e\x45\x09\xa3\x99\x60\xf1\xfb\x4c\xae\xfa\xaf\xe9\xbc\xec\x54\xde\x3a\xdf\x1a\x9d\xb1\x05\xcd\xe2\xd6\x89\x09\x22\xb9\xcc\x66\xef\xc1\xe8\x62\x9b\xc4\xab\x29\x70\xc3\x7d\x7a\x5d\x45\xd2\x8f\xd3\xdb\xda\xdc\x64\x6e\x63\x60\x91\x13\x50\x65\xdd\x10\xac\x39\x67\x68\xee\x01\x69\xca\x80\xec\x7f\x6a\x4c\x23\x6a\x3e\x6d\xf6\x22\x26\x34\xc9\x95\xb7\xf7\xd6\x0d\x93\xde\xe7\x49\x8a\x58\xe8\x06\xa7\xca\x96\x9d\xdf\x78\x8e\x94\xd6\x5f\x05\x4f\x88\xda\xe3\xe1\xca\xdd\x97\xee\xcd\x43\x7a\x98\xa7\xda\x53\x37\x6f\x42\x1e\xcb\xe8\x71\xef\x90\xca\x30\x22\xd0\x39\x37\xb8\x02\x78\x7b\x95\xd9\x3d\xde\x77\x5b\x9b\xff\xb7\x66\xc6\x0a\xaa\xd5\x4b\x2e\xb4\x54\x6b\x5b\x30\x1c\xa8\x56\xcb\x46\x06\xaa\xd5\xb2\xa0\x81\x6a\x6d\x7f\x06\xaa\x35\x50\xad\xa6\x56\x03\xd5\x6a\xed\xfe\x2f\xe9\xf9\xff\xb5\x82\x41\xe7\x2c\xe1\x5f\xaa\x45\xfd\xbf\x82\x53\x3e\x04\x9d\x54\xd2\x6b\xe1\xaf\xa5\x5b\xfe\x76\x8b\x6d\xc7\xfc\xc0\x5a\xed\xb9\x14\x9e\xf9\xdb\x4d\x6e\xff\x59\x82\x41\x31\xf0\xa6\x5a\x73\xb0\x1a\x0d\x5a\xf9\xc9\x90\x3a\xe8\x32\x04\x82\x0e\xbe\xfe\x83\xaf\xff\x6f\xed\xeb\xbf\x8d\x9f\xda\x02\x41\xcd\x5f\xf8\xde\xdb\x2a\xda\xb5\x79\xe9\x26\x89\xbc\x9f\x4c\x27\xd3\x29\x66\x8d\x32\x7c\xe6\x27\x99\xdd\x25\x92\x76\x7b\x7a\xef\x1f\xb7\xf5\x76\x91\x5d\xa5\x39\x02\x56\x1a\xd4\x1b\x63\x89\xa9\xd8\x70\x3f\x79\x02\x09\xb9\xe3\x4c\xa6\xc4\x0c\x4d\x98\x88\x68\xaa\xf2\x04\x14\xd4\x3a\xa3\xf3\x39\x8f\x6c\xa9\x2b\x37\x55\x68\xcc\xb2\x3e\x21\xa0\xdf\x9d\x0b\x14\x02\x64\x7e\xfa\xf9\xfc\xf8\xe2\xe1\xa0\x69\xec\xfe\x04\xb0\x81\xb1\x7f\x33\xe0\xdc\xab\xeb\x2c\x3a\x55\xfa\x64\xc9\xa2\xbb\x4e\x60\x5c\x33\x6d\xb9\xdc\x91\x27\x51\x8d\x22\xd3\xd9\x08\xc4\xc7\x9f\xae\xc9\xd9\xc9\xeb\x22\x8e\x41\x8d\xc9\xb1\x65\x74\x42\xab\x5f\x57\x2b\xdd\x63\xd5\x9e\xdb\xbd\x53\x79\x21\xf5\xd2\x3c\x4f\xa8\x59\x87\xf5\x2e\x5d\x51\xbe\x53\x8c\x13\xb8\xdd\xf3\x2a\x57\x86\xc6\x2e\x06\x09\xc1\x84\x89\x3c\x24\xba\x8d\xca\x5e\xa1\x1f\xed\x42\x42\xdd\xec\xa2\x76\xb2\x42\xcc\xd2\xf9\x89\x14\x82\x45\xe0\xf1\x59\x96\x06\xe2\x62\xd1\xb7\x30\xe8\xbb\xe9\xfb\x8e\x21\xd0\x94\xc3\x05\x79\x37\x7d\x4f\x56\x32\x0e\x97\xc8\x0f\xdf\x62\x3c\xc6\x24\x29\xb8\x0d\x33\x91\x39\x6f\xcd\x57\x8c\x98\x3b\x49\x66\xae\x78\x53\x63\xb2\x4b\xdb\x2d\xd0\x07\xed\x46\x68\xb7\x2b\x04\xf5\xa5\x54\xda\x56\x8c\x87\x70\x10\x2d\x83\xfa\x25\x46\xa3\xa5\x5f\x57\xca\xd6\xbf\x52\x68\x59\xd2\x84\xaf\xd2\x0c\xb2\x8d\xdb\x68\x15\x10\xb3\x45\x04\x17\x2c\x95\xf1\x48\xcb\x51\x5b\x65\xbd\x62\xab\x0a\x37\x86\x29\xc8\xad\xc1\xda\x0b\x56\xc1\xe0\x0a\xb3\xf6\x98\xcd\xf2\xc5\xc2\x90\xe2\x34\xcf\x52\xa9\xcc\xd5\x6f\xbf\xa0\x0f\xaa\xb6\x3a\x4b\xe7\xa7\x54\xd3\xc9\x9c\x46\x6c\x4a\xb5\x61\x7e\x3a\xbd\x20\xa7\xef\xeb\x5d\x90\x9b\xc8\x18\xf0\xc0\x84\x7d\x31\xec\x00\xb0\x79\x20\x67\xbb\xcb\x10\x44\x62\x10\xee\xe3\x95\xfe\xc7\x8b\x62\xb9\x38\xaa\xb5\x39\x17\x73\xd5\xd2\x4c\x2e\x32\xba\x02\xf6\x8d\x8b\x22\x9f\x67\x10\xda\x54\x47\xcb\x02\xe7\x69\x79\x58\x30\x1f\x82\x69\x83\xfd\xc6\x36\x69\x92\x60\x2c\x86\x01\x57\xd8\x63\xc9\xbc\x95\x04\x41\x6c\xb6\xe3\xaa\x1f\x5a\x34\x5a\x22\x57\x08\x3d\x93\x6b\x96\xd5\x2b\x1d\xf6\x18\x74\x49\x45\x6c\xce\x5f\x44\x72\x05\xfc\x57\xb1\x7a\x50\x08\xa2\xc5\x10\x73\xdb\xda\x8b\x09\x9b\x92\xb9\x56\x3c\x5c\x9b\xd7\x4f\xf8\x40\xc8\xa4\x88\xb4\x37\x5c\x54\xb9\xdf\x62\x17\xde\x11\x3c\xcf\x55\x4e\x93\x24\xa8\x88\x35\x72\x48\x0c\x71\x77\xe3\xf1\xf8\xc5\x8e\x31\x63\xe6\xb2\xe1\x45\xff\x28\xd2\x8c\xaf\x79\xc2\x16\xfd\x90\x52\xa0\xdb\x01\xe1\x73\x57\x74\xf8\xc0\x5d\x1b\x66\xfd\xf4\xef\xcc\x3b\x4e\xc6\xb9\xd7\xfe\xf3\x2c\x9d\x7f\xb6\xef\x2c\x48\x3c\xd4\x46\x45\x3a\xf1\x5f\xa3\xdf\x1d\x92\x30\xcb\xb9\xb9\x8b\xee\xfa\x30\xa1\xf2\xa2\x1c\xbb\xdf\x36\x34\x7a\xae\x0c\x57\x1c\x21\x17\x8b\xe9\x0c\xec\x4d\xda\xdf\x57\x88\x4c\x69\x8a\x47\x6c\x1b\x71\xa1\x8c\x04\xa3\x97\x8c\x67\x44\xde\x07\xf5\x8c\xdb\x2f\xc3\x9c\x22\xb3\x95\xeb\xca\x09\x1e\x5d\x95\x79\x96\xce\x77\xa0\x21\x67\xee\x58\xca\x23\xb2\x27\x04\x4c\x8b\x2b\x20\x63\x56\x6f\x38\xe4\x34\xa1\x22\xac\x7b\x7b\x2c\x3b\x02\xcb\x9e\xcb\x2c\x62\x57\xd3\xf7\xfd\x56\xee\x5a\x13\x86\xff\x84\xbb\x1c\x69\x62\xbe\x92\x02\xea\x86\x78\x6f\xc5\x80\xb9\xf3\x60\x50\x13\x9b\x58\x35\xe4\xbd\xcd\x9e\x6c\x29\xc9\xc8\x1b\x4d\x66\xd6\x6d\x26\x78\x3f\xb1\x88\xcf\x98\x4c\xa5\x52\xdc\xdc\x4f\xcb\xee\xd3\x8c\x39\x86\x21\x36\x43\x5c\xc3\x82\xfd\x23\xc7\x6f\x9a\xa1\xd7\xf8\x5c\xcf\xbe\xe8\x1b\xe9\xea\xaa\x4a\x21\x56\x34\xeb\x66\xea\x0c\x18\x03\xfd\x2a\x4c\x83\x23\x0a\x84\x92\x37\xaf\x67\x3c\x9c\x83\xce\x74\x72\xb9\xa6\x15\xd3\x04\xf5\x15\x8e\x92\x22\x06\x84\xdc\xb5\x56\x66\x47\x71\x12\x73\xb0\x43\x4a\xf0\x30\x18\x61\x55\xb6\x88\x08\xcc\x61\xa3\x86\x73\x97\x94\x18\x16\xb6\x94\xf7\x45\xc6\x5c\x39\x2f\x28\x99\x9d\x3d\x34\x32\xd4\x06\x92\xb9\x61\xb8\xcb\x7a\xb6\xc8\x80\xb8\x84\xcc\x56\xd1\x0c\x19\xc0\xcd\xb1\xa7\x99\x2b\x7f\x73\x35\x7d\x1f\xa4\x65\x86\x13\xf6\x8f\xf2\x65\xf3\x29\x36\x38\x78\xe3\x31\x02\x84\xec\x89\x7c\xe8\x11\x62\x6c\x4f\xb1\xde\x2d\x78\x88\x0a\xf6\xe6\x1d\x4d\x68\x27\x3e\xbd\xaa\xe4\x1e\x83\x1a\x1c\x96\xa8\x3d\xb7\xf5\x41\x1c\xb5\xf3\x6a\x04\x07\xab\x46\x19\x90\x5b\xc5\xaf\x11\x73\xa4\x4b\x75\x5e\xc8\x38\x86\xf4\xcd\xe1\xf2\x68\x49\x6e\xf7\x6e\x72\x21\x58\x72\xbb\x87\xa9\xf5\x67\x32\xfc\x78\xad\xe2\x01\x56\x90\x31\x95\x4a\x61\x10\x96\xa5\xc8\xe6\xe5\xc2\x28\x38\x61\x2d\xbf\x3a\xcc\xd7\xf0\x7a\x71\x09\xa7\xd7\x57\x46\x0c\xc1\x7e\x38\x4f\x68\xe8\x59\xae\x6d\x9b\xea\xfc\xa1\xb1\xe1\x79\x08\x4d\x62\x9e\xb1\x48\x27\x9b\x60\xe6\x77\xb3\x32\xe1\xe6\xb7\xe7\x57\x36\x09\xd2\x7a\xc8\xa7\x9f\xa6\x8c\x66\xca\xaf\xfb\x35\x99\x3a\x0d\x03\xc7\x0a\xab\xd0\xf2\xf7\x4e\x67\x07\x0c\xb8\x22\x34\x34\x64\xca\xb2\x15\x57\x8a\xaf\x19\x39\x7f\xed\xb1\x63\xe5\xfd\xc6\x13\x7a\x00\xaa\xfa\x51\x2a\x6d\x50\x8d\xce\x68\x74\xf7\x6e\x93\xd2\xee\xc4\xe9\xe6\x8e\x07\xba\x91\x93\xba\xf4\x62\xe4\x07\xfc\xe9\x9c\x8b\x3c\x28\x8d\x47\x6e\x0c\xff\x85\x60\xfd\xfc\x42\xb6\xf7\xf9\xb7\x3a\x45\x0e\x8d\x39\xaa\xcc\x5a\x4e\xf1\x10\x32\x68\x64\x9b\x69\x26\xbf\x6c\xce\xac\x02\xee\x3a\x31\xcb\xe8\x49\xd4\xdf\x4d\xdf\xb7\x0f\x10\xc6\x0b\x61\x8e\xdf\x93\x08\xf7\x15\x61\xab\x19\x8b\xcd\xeb\xbd\xcb\x67\x6c\x94\x9a\x19\xac\x31\x43\x91\xea\x54\xcd\x76\x9d\xde\x9b\x9f\xa4\x1a\x72\xb3\x9f\x98\x86\x79\xba\x03\x4b\xd3\x31\x44\x85\xd5\x41\x58\x04\x49\x1a\x80\xc7\x63\x85\xd2\x4c\x62\xea\xa8\x64\x43\x22\x33\x22\xc9\xb1\x00\x60\x9e\x2a\x9d\x31\xba\xf2\x85\xd2\x12\x42\xfb\xfb\xe1\x72\x1b\x76\x6d\x24\x5a\x52\x0e\xb2\xe6\x75\xb5\xe2\x55\xb1\xc2\xb9\x0f\x6e\x5b\xca\xc1\xa6\x5c\xfb\x5a\x72\x66\x01\xc1\x0f\x5c\x5c\x6f\x44\x84\x89\x20\x76\x82\x7d\xa5\xe7\x41\x03\x2d\xd2\x61\xbd\xc1\x8a\x0b\x48\xed\x00\x7a\x03\x97\x96\x1e\x75\xc9\x85\x4d\xa0\x60\x46\x4b\xe3\xc7\xbe\x77\x45\x43\xc3\x96\x60\x1c\x13\x72\x2e\xef\x59\xe6\xd8\xb2\x85\xc1\x72\x19\x8b\xf3\x88\x99\x67\xaf\x47\x79\x0a\x46\x07\x11\x99\xa6\x3f\xf2\xc5\xb2\x68\x1b\x26\x42\xa6\xa7\x33\xda\x4c\x3f\x92\x5c\xd1\x05\x83\x88\x51\x23\xbd\x81\x61\x34\x25\x2b\x99\x21\xb5\xab\x20\xd1\x57\xea\x01\x08\xf4\xfc\xcd\x8e\x5a\x80\x6a\x87\x76\x1d\x00\xb2\x58\xc1\xeb\x24\xc1\x08\x67\x29\x1f\x89\x19\x72\x02\x09\xbf\x33\x42\x8c\x19\x8f\x66\xc0\xd6\xae\xbf\x24\x54\x90\xe7\x7c\xcc\xc6\x07\xe4\xfc\x8d\x6b\xd9\x54\x4d\x92\xc6\x36\x90\x41\xcb\x90\xca\xc2\xf0\x7f\xc0\x59\x1e\xb8\x99\x3d\x3e\x5c\xc8\x20\x43\x0a\xf9\xc5\xfc\xa4\x17\x07\xbb\x6a\x04\x82\x3c\x4c\x5d\x49\xb0\x9b\x46\xa0\x85\xc7\x55\x8d\x4c\xd7\xee\x82\xfb\xb9\x5c\x9c\xb3\x35\x0b\x15\xde\xda\x7a\xaf\xae\x6d\xe5\x4d\x92\x44\x2e\x48\x02\x5f\xbb\x88\x5f\x4f\x46\x6a\xa0\x14\x85\xa6\xb1\x7c\x99\x2b\xe4\x65\x2e\x9d\x72\xf7\x72\x3e\x47\xb5\xee\x44\xcc\xa5\xf9\x17\x6a\x75\xd9\x2c\x5f\xdc\xee\x35\xab\x11\x13\xb9\x40\xc9\x89\xad\xb8\xd6\x25\x2f\x67\x26\x33\x44\x96\x91\x94\xa7\xec\xc0\x65\x1e\x34\xe2\x16\x88\xd4\xa8\xb9\x5c\xad\x1a\x20\x7f\xbb\xa7\x23\xc2\xbe\xb0\xc8\xc0\x0c\x95\x78\x15\xcd\x32\xb9\x9c\xcf\xff\x32\xde\xfd\x71\x7e\xa0\xe9\x35\xff\x1b\x2b\x38\x95\x3e\xc7\x50\xef\x53\xaa\x47\x14\xff\x5b\xe9\xca\x54\xb0\x15\x61\x19\x2c\x75\xea\x8e\x15\x4d\x0b\xd5\x7a\x42\xb3\x85\xa1\x26\x32\x5f\x2c\x0d\xe4\x96\x32\xc1\x4a\x3d\x42\x67\xe8\xb7\x05\x0a\x55\x24\x6d\xed\x1a\xd1\x31\x21\x9f\x68\x66\x08\xcf\x11\x46\xed\x14\x21\x05\x66\x91\x2e\x11\x66\xb1\x07\xb3\x8a\x28\x5c\x60\x2d\xa2\x86\x43\x8d\xb9\xca\x72\x80\x42\x33\x98\x9b\x25\x25\x0b\xb3\xc9\xf4\x9a\xe9\x4e\xfe\xb1\x84\x31\xb6\x0f\x00\x98\xa7\xf0\x9d\x03\x23\x6b\xf0\x59\x72\x8d\x76\x05\xb0\xb3\xa6\x86\x8f\x4e\xdb\xe2\x43\x84\xad\x59\xb6\xb1\x19\xb1\xcc\xa2\x84\xe7\x5e\x74\xe8\x19\x5e\x6c\x1f\x08\xa4\xb0\xcc\x79\x90\x8b\x97\x09\x07\x22\xe6\x0a\x85\x95\xc9\x3d\x6f\xf7\x68\x92\x3c\x7f\x71\xbb\x07\x25\x90\x32\xa6\xa0\x64\x94\xb0\xfb\x71\x75\x40\x65\x50\x44\x32\x7b\xe3\x46\x08\x94\x82\xd9\x8d\xa6\x2c\x2b\x2d\xc6\xdc\xe9\x93\xa9\x62\xcd\xaa\xc7\xee\xb3\x9d\x5f\x37\x84\x74\x35\x1d\x2e\x76\x08\x9d\xee\x1c\x83\xcf\x8a\xe3\x0d\xd2\xa2\xb2\xd1\xae\xc7\x8b\x24\x2e\x34\xe8\x73\x50\x2b\xfc\xaf\x52\xb8\x78\x01\xca\x29\xd0\x36\x3c\x1c\x34\x17\xc7\x37\xae\x82\x42\x00\x3c\xfd\x07\x79\x47\xa3\x3b\xb6\xe5\x85\xd0\x02\xe2\xb2\x4f\x00\xca\x82\x6a\x32\x33\x6f\x9f\x81\x33\x46\xda\x5c\x05\xc1\x6a\xd5\xea\x71\xf3\xee\x06\xb9\xca\xb1\x06\x99\x49\x65\x04\x65\x60\x9f\xf4\x32\x8c\x4f\xea\x48\xa8\x1c\xb0\x10\xe2\x1e\x03\xa4\xf7\x99\x14\x7a\x57\x28\xb9\x4e\x0d\x60\x9a\x9b\x9f\xcd\x7e\x1b\x71\xb9\x1b\xe0\x03\x4d\xbd\x0c\x6a\xfd\xee\x63\x93\x92\xc0\xf0\x22\x07\xa5\x1a\xce\x16\xf9\x83\x1b\x0c\x15\x0b\xb9\xc0\x3f\x9c\xea\xed\xc1\x50\x03\x1f\xeb\xfe\xf0\x42\x97\xec\x30\xd5\xb3\xce\xe0\xad\x2f\xb7\x6c\xd3\x05\xaa\x2a\xc6\x72\x8f\x32\xc8\xed\x89\xd8\x3c\x53\x2a\xe2\x79\x9e\xe0\xe5\x44\xac\x67\x3a\xc2\xa3\x7e\x5e\x8e\x1d\x01\xef\xc8\xb5\x22\xf2\x5e\x90\xc9\xb4\x91\xe1\xb3\x2c\xec\x64\xaa\x1e\x82\x18\xa7\xd7\x17\xc7\x37\x53\xc3\x50\x06\x60\x4b\xc5\xe6\x32\x54\xfb\x77\xd4\x95\x56\x62\xd4\xe1\x64\xb9\xc5\xaf\x94\xcb\x28\xcf\x2c\xa3\x62\xc1\xac\xdf\x02\x98\x0a\xef\xe1\xbb\x58\xae\xc2\xf6\xa9\x94\x47\x77\x84\xda\x6b\x07\xcf\x36\x63\xd6\xd7\x09\xdd\x98\xe0\x97\x48\x26\x09\x57\xc0\x7c\x00\x42\x28\x4e\x37\xc8\x86\x96\xba\x5c\x96\x2e\xd9\x8a\x65\x34\xb1\xeb\xa2\x2e\xe7\x1e\xaa\x70\xdf\x9f\x90\xb7\x2f\xbf\x7d\x4b\x9e\xbf\x7a\xf9\xfa\x9b\xff\xf7\xff\xfe\x7f\xde\x7e\xfb\xed\x9b\x6f\x5f\x34\x9d\x59\x0a\xe5\x7b\xe9\x2c\xd9\x54\x38\xf4\xfa\x24\xaa\xc8\x14\x64\xd8\x4e\x29\x88\x4c\x59\x46\x9b\xf2\x58\xaa\x8d\xd2\x6c\xa5\xc6\x56\x65\x94\x2b\xa6\xc8\x9b\xd7\xbf\x7b\xfb\x9d\x59\xce\xcb\xef\xbf\xff\xfe\xc0\xc0\x31\x61\x58\xb2\xb7\xc0\x83\x85\x6a\xef\xf8\xe2\x38\x34\xac\xdb\x25\x6e\xfb\x9b\xef\x5f\x7d\xfb\xda\xed\xcf\x45\x6c\x0a\xa9\x6d\xf5\x6c\x9a\xf1\x64\x63\x0e\x21\x93\xb3\x84\xad\xf0\x1c\xc2\xf5\x41\x71\x3c\x73\xcb\x13\x9a\xaa\x92\xc3\x2e\xf6\x58\x6e\xe8\x5d\x51\x2e\xd3\xb9\x72\x9b\xbe\x4d\x4a\x61\x2e\x8c\xa4\xc3\xd7\xcc\xe7\xbd\x5f\xbf\x7c\xf9\xf2\xe5\xd1\xeb\xef\xbf\xff\xfe\xfb\x90\x7c\x9c\x5a\xc9\x97\xfc\xd7\xf8\xff\xbf\xfd\xeb\x97\x51\x59\x51\x79\xc4\x85\x1e\xc9\x6c\x84\x57\x3b\xac\xc0\x33\xef\x0a\xf8\x24\x10\x45\xfa\xeb\xd9\xb6\x3b\xa1\x20\x64\xe6\x70\xaa\xa3\x8c\x45\x32\x8b\xcd\xe5\xd3\x94\x37\x98\x33\xfd\x50\x00\xcc\x6e\x5a\xc8\x5c\x30\x43\x21\x7a\x1d\xd8\x97\x65\x6b\x56\xb2\x2f\x74\xd5\x54\xe9\xb8\x94\x80\x40\xe2\x1d\x19\x19\xc7\x0a\x43\xa3\x84\x0b\x43\x79\x65\xb2\xab\x7e\x0e\x74\x55\x13\x30\x76\xf6\x32\x4c\x9c\x54\xdb\x37\xf9\x9a\x2c\xa5\xbc\xf3\x8d\xc1\x0d\x2a\x33\x2d\xd3\x11\x4a\xa5\x35\xe5\x19\x94\x55\x84\x59\xcc\x35\xb4\x3e\x56\xb6\x74\x81\x96\xa9\xbd\x85\x61\x9b\x0d\x05\x0f\x05\xa8\x98\x9c\xa6\x4c\xc4\xdb\x23\xcc\xa4\xd6\x72\x35\x76\x46\x5e\xcb\xb8\x28\x3a\x67\xae\xd0\x6a\xf0\x75\xbb\x0c\x9c\xb6\x8a\xa9\x6f\x42\x36\xa3\x5b\x81\x1f\xdd\xe6\x51\x77\x0c\x8e\x92\x73\xb2\x91\x39\x51\xf7\x5c\x87\x89\xb8\x96\x76\xa1\x56\x97\x36\x63\x44\x61\x59\x4e\xbb\x5c\x2c\xf0\x8d\x53\x58\x5c\x68\xa1\x84\xa9\xfe\x83\xcf\x10\x94\xb8\xe0\x24\x33\xdb\x90\x39\x4d\x12\x94\xec\x32\x47\xdd\xbc\x80\x67\x18\xf9\x00\xa7\xb9\xe7\x88\x8c\x42\x63\xda\xe6\xf6\x06\x83\x06\x75\xc6\xbc\x9d\x96\x6f\x1d\x01\xbb\xab\x1a\xac\x50\x33\x9c\x66\x7c\xcd\x3a\x0b\x25\x9f\x56\x9b\x93\x39\x4f\x98\xf0\x0a\xb4\x17\x2c\x51\xa9\xbe\x88\xa1\x65\xc3\x21\xe4\x0a\x55\x1b\x88\x91\x41\x4d\xfb\x51\xb1\x89\xf5\x49\xae\xcf\x66\xad\xa2\x5a\xa2\x71\x7c\x47\x9d\x4e\xb1\xa4\x4f\x46\xe6\x8b\x25\x64\xcf\x93\x79\x67\x66\xd6\xfd\xd3\x86\x8e\xee\x12\x67\x8c\xc6\x5c\x30\xa5\x0e\x13\xbe\x66\xe6\x1f\xa0\x73\x95\x79\xf0\x4a\xbb\xe0\x8e\x52\xdb\xfa\xdc\xf9\x60\xbf\xd8\x02\xdb\x98\x4c\x44\x94\x31\xaa\x6c\xc0\x52\x73\x51\x52\xbc\xf1\xec\x4b\xca\x32\xce\xcc\x15\x54\x69\x9e\x71\x99\x2b\xc8\x9f\x95\x41\xad\x0b\x30\x27\x88\x91\x59\x25\xb1\xcf\x09\x30\x6d\xa3\xc7\x25\x57\x24\x17\xb1\xe1\xd3\x18\x5d\x6f\xc0\xf9\x6c\x4c\x4e\x59\xb1\x22\x97\x96\x50\x4b\xb2\x60\x1a\x43\x01\xd0\x28\x89\x75\xc6\xed\x64\xa1\xa1\xed\x5a\x70\x61\x20\x95\xfc\x35\xe7\xd1\x5d\xb2\xf1\xef\xf4\xf7\x2f\x77\xd6\xeb\x82\x06\xca\x3a\x07\x9c\xcb\xc5\x69\x26\xa1\xde\x71\xa3\x74\xd7\x80\xa3\x61\x98\x0f\x6c\x25\xb3\xcd\x34\x93\xe6\x9a\x4f\xa9\x5e\x36\x8e\xd2\xb2\x96\x6b\xbe\x02\xa7\xd4\x13\x9a\x44\x3f\x64\x34\x5d\xfe\x48\xc5\xe2\x78\xae\x83\x8f\xad\xf7\x68\xc5\x9d\x7c\xf8\x68\x00\x63\x67\x70\xba\x91\x3f\x4a\xa5\x8f\xa3\x86\x18\xca\xda\x83\x68\xee\xeb\x13\x27\xd0\xe9\x1a\x2c\xab\x1a\xfc\xd6\x0a\x0d\xaf\x69\xba\x90\x0e\x9b\xd3\x52\xb1\x5c\x3a\xcf\xcb\xd2\xb7\x80\x6b\xc5\x92\x39\x79\x4e\xe7\x0d\xd5\x74\x80\x62\xd9\xb1\x97\xdc\x32\xd6\xc5\x50\x0c\x4d\xb8\x88\x52\x5f\x8c\xc9\xbb\x4d\x51\xea\x1b\xb1\x6d\x68\x48\xa8\x53\xa8\xc2\x7e\xc5\xa5\xb8\x1d\x5a\x26\x16\x1f\x0e\xca\xdb\x05\x01\xbe\xdd\x3b\xbd\xba\x9c\xde\xee\x81\xfe\xd0\x30\xe9\x96\x80\xdd\x53\xeb\xdd\x91\x24\xf2\x9e\x28\xb9\x82\xb4\x3f\x34\x49\xda\x8c\xe3\xb0\x36\x1f\x70\x66\x35\x07\x88\x39\x21\x0b\x0e\xcd\xe8\x8a\x59\x47\x84\xab\xb3\x9b\x8f\x57\x17\x66\xd4\xe3\x93\x93\xb3\xe9\xcd\xd8\xe0\xdf\xd0\xa8\xb6\xa1\xc5\x33\x50\xc0\x7d\x23\x73\xf0\xd3\xaa\x92\x49\x6f\x53\x93\x8b\xe9\xc7\x9b\xdb\x3d\xa4\x9c\xbf\x6f\x21\x6f\x40\xd7\x1c\x67\xa0\x1d\x69\xaf\xf3\x1e\x54\xe3\x48\x07\xe8\xcc\x70\xbb\x87\x6b\x0a\x17\xc8\x76\x9e\x2c\xf6\x44\x6a\x8b\x21\xd2\xf2\x15\x4b\xaa\xa0\x64\x0f\x56\xa8\x4c\x33\xe9\xca\xee\xb4\x89\xb4\xe1\xab\x04\xa0\xb3\x60\x04\xda\x26\x8a\x70\x33\x9a\x24\xce\xc6\xeb\x16\xd6\x78\x72\x9e\xf5\xdc\xdc\xef\xd0\x9a\x9a\x16\x10\x1a\xb3\x44\xa6\x06\x15\xee\x8e\x4d\xd7\x3c\x42\xb5\xc2\x34\x93\x5a\x46\xb2\xd3\x1e\x02\xf2\xa5\x1f\xed\x84\xc1\x8d\xa9\xed\x4e\x68\x6c\x3d\x57\x2c\x3b\xbe\x62\x71\x8b\xda\x0f\x35\x12\x07\x86\xa1\x72\x8f\x14\x2e\xb1\xe3\x84\xae\x6e\xa6\x57\x97\x37\x9f\xdf\x5d\x5e\xde\x20\x2d\x4b\xd8\x5c\x93\x59\x42\xc5\xdd\xae\x7a\x01\x6f\xaf\xd7\xbb\x54\xa3\xf7\x15\x71\x90\x2c\xa6\x5a\x82\xdd\x39\x92\x48\xe1\xed\x38\x2c\x72\x9a\xf9\xed\x8e\x2b\x68\x49\x6f\x55\x87\xc7\xa0\x58\xb7\xd3\x03\x92\x30\xba\x6e\x10\x90\x4b\x81\x00\x14\x2c\x4b\x29\x2d\xe9\xae\x8d\x68\xf8\x92\x5d\x39\xaa\x06\x88\x4d\xa6\xeb\x50\xe2\x82\x36\xa8\xbd\xfd\x37\x82\x1a\x32\x27\x85\x95\x6a\x22\xa0\x08\x41\x53\xfc\x48\x2b\x9b\xe2\x10\xc1\x95\xcb\x4b\x77\xca\x92\x60\xe2\x81\xb6\x05\x6d\x0d\xd2\x2c\xbb\xb7\x2f\xc6\x32\xff\x17\x32\x66\x50\xe4\xa9\xeb\x0e\x9c\xf9\x1d\x4e\x26\xa7\x57\xa6\x13\x2a\xaf\xc0\x42\x2e\xe7\xc4\x7c\xbb\x0f\x1a\x10\x37\xfa\xc8\xb0\x8d\x56\x1c\x87\x7a\x50\x61\x4b\xaa\x11\xf0\x57\x74\xe3\xce\xcb\xea\x0b\x1d\xfd\x06\xf7\x44\x43\xc3\x80\xc0\x14\xde\x6d\xf6\xd7\xb0\x5a\xcc\x05\x1c\x13\xb0\xc8\x14\x25\x47\x42\x3a\xf1\xaf\x50\x25\x65\x4e\x79\x62\xa4\xe5\x89\x98\xc9\x5c\xc4\x86\xe3\x6a\x52\x60\x56\x99\xb5\xf7\x0d\x1d\xab\x70\xfe\x78\x3a\x3d\xbc\x39\x99\xa2\x27\x62\x93\x1a\xd7\x1c\x86\x35\xd6\x7b\x1e\x3d\xc8\x9c\x84\xcc\xf6\xc0\x06\x15\xcc\x51\x50\x0a\x10\x84\x67\x19\x53\xa9\xad\x5c\xe3\xf2\x00\xb0\x28\xcf\xb8\xde\x14\x94\xd5\x61\x8b\x5c\xb1\x79\x0e\x4f\x92\xae\x25\x0f\xeb\x9b\xa3\x08\xea\xc3\x00\xcd\x8d\x72\x70\x21\x26\x72\x3e\xb7\xb6\x22\xe4\xc7\xcc\x6a\xb3\x8c\x45\xba\x16\x2d\x48\xde\x87\xa3\xee\x67\x34\xba\x1b\x55\x8a\x4b\x1f\xb8\xd8\xfd\x82\xb0\x59\x95\xa0\x2d\x40\x04\x1e\x52\xda\x21\xa3\x26\x47\x90\xdb\x3d\x1d\xa5\xb7\x7b\xc0\xf0\x51\x80\x6f\x78\x18\x0f\xd0\x3e\x0b\x1a\xdc\x3f\x06\xc9\x19\xec\x64\x10\xe2\x4d\xe9\xdd\x8f\x9e\xdc\x70\x0b\x10\x14\x70\xd8\x07\x85\x2e\xb4\x51\xb8\x14\x52\x80\xfb\x70\xa1\xaa\xb1\x62\x9f\x75\x23\x56\x6a\xe9\x1c\xfc\xcd\x2d\x39\xfd\xf1\x64\x5a\x71\xf6\x8b\xd2\xa3\xd7\xaf\x83\x51\x53\x79\x9c\x1e\xbd\xfd\xee\x00\x9a\xbc\xfa\xdd\xf7\xf8\x8f\xd7\x6f\xca\x7f\x7d\xf7\x12\xff\xf5\xf6\x9b\x6f\xde\xd8\x7f\xbd\x7d\xfb\xb6\xf8\xd7\xef\x42\xfc\x4c\xf3\xe3\xab\x66\x53\x35\xe7\x36\x95\xa8\x8b\x8a\xe4\x6a\xe6\x25\x83\x71\x67\x7a\x40\xd0\xd2\xe3\x2e\x7f\x43\x86\x85\x69\xc1\xdb\x88\x18\xf5\xed\xce\xec\x59\x9c\x62\xb0\x67\x67\x46\x11\xc1\xc2\x1e\x69\xa4\x57\x42\x07\xb3\x92\x8e\xee\x2d\x29\xb2\x49\x01\x85\x07\x2f\xa1\x25\xa7\x24\x21\x23\x58\x5f\xc3\x2f\x76\xe6\x66\x0c\xda\x9e\xf0\xbe\x15\x83\x5e\xe6\xfa\x81\x28\x74\xab\xe7\x13\xe3\x50\x99\xeb\x85\xf4\x71\x28\x08\x04\xdd\x58\x54\xcb\x01\x8b\xfe\xaa\x58\x54\xda\x8b\xf0\x34\x68\x54\x82\x8a\x84\xe9\x28\xde\xdf\x87\x1c\xce\x22\xa6\x59\x6c\x83\x02\xb4\xb4\x61\x57\x70\x67\x42\xc3\xe2\x35\x8a\x25\xba\xf1\x81\x22\x2e\xca\x35\x1c\x16\xaa\x02\x74\x14\x57\x02\xf4\x0c\x00\xcc\x71\x1a\x44\xdd\x64\xab\x3b\xbd\xb8\xae\xe3\xf0\x5d\x10\x74\xf0\xa0\x2c\xce\x3e\x00\xb4\xff\xed\x1b\xfc\xef\x80\xc3\x07\x1c\x1e\xfc\x35\x8c\xc3\x19\xd5\x79\xc6\x4e\x99\x66\x91\xbe\x5c\xb3\x2c\xe3\xdd\x06\xb4\xf7\xa1\x4e\x45\xe1\x67\x2d\xc1\x1c\x0b\xdf\xd9\xe1\x49\x0c\x4d\x1b\xa2\x9e\x66\xd4\x74\x93\x82\xd0\x5c\xcb\x11\x36\x65\x31\x49\x13\xaa\x21\x35\x6f\x44\x53\x0a\xd8\x8d\x43\x08\xf3\x4f\x65\xcc\x5a\x71\x93\xc2\xe6\x4b\x42\xd1\xb6\x48\x14\x4b\x69\x06\x8e\xb7\x40\x5a\x00\xd7\x0a\x49\x54\x4a\x23\xa6\x0e\xc0\x60\x99\x26\xec\xf7\xe4\x76\xef\xfa\xe2\xf8\xe6\x7d\x9e\x24\x9b\x2b\x70\x11\xf8\x03\xd8\x4c\x3f\x1c\x5f\xff\x6f\xff\x4b\x30\x96\x1c\x5c\x31\xc8\x75\x74\x9d\xa7\x80\x58\xce\x65\x74\xf7\x07\xf0\x17\xbd\xdd\x03\x6b\x6e\x50\x8b\x06\xae\xa5\x98\xb4\x67\x0f\xd1\x27\x86\x08\x1a\x3c\x67\x81\x75\x40\xd8\x2a\xd5\x60\x5c\x90\xd6\xb3\xd4\x0b\xd3\xab\xc0\x68\x47\x41\xd9\x4e\xf0\x03\xed\x91\x6a\xf8\xbd\xd7\xd6\x3f\x5a\xf4\xff\x37\x8b\x73\xf8\x5b\xb3\x68\x39\x4a\x33\xb6\xe6\xec\xbe\x45\x25\x69\x27\x57\xe3\xe0\x01\x36\x9f\x56\x50\x1a\x6d\x3e\xc0\x96\xfc\x03\x9f\x64\x76\x47\x33\x43\x66\xfe\xe0\xa2\x7e\x7f\xde\xfc\x9f\x7f\xb0\xa7\xd1\xea\x13\x56\xdb\xbd\xdb\x8b\xf5\x4c\xcf\x18\x10\x8a\xb9\xb9\x22\xe6\x99\xc6\x79\x64\xf3\xe7\xd1\x38\xa4\x44\x6c\x3d\xa3\x44\x82\xdb\xc2\x64\xda\x7d\x44\x65\xd3\x32\x03\x7b\x69\xc4\xc6\x58\x97\x5a\xa8\xc8\x22\xa3\x41\xf2\x2c\xa4\x18\x5d\xa6\x4c\x5c\x6b\x1a\xdd\x15\x8b\xf0\x32\xfd\xc3\xd3\x7b\x5e\x34\x19\xc5\x2c\xe3\x6b\x16\x17\x4d\x43\x83\x82\xbb\x91\xb9\xb3\xc9\x3d\xdd\x28\x4f\xef\x74\x50\x0b\x68\x05\x0d\xa4\x8b\x4e\x0d\xb8\xe3\x37\x26\xc7\xb0\x8a\x95\xd0\x4f\xa7\x8d\x81\xda\x6d\xe0\x5f\x30\xc1\x32\x1e\xfd\x7c\x3a\xed\x1b\xd9\xf3\x43\xbd\x87\xbd\x24\x8a\xd8\x5f\xc8\xcf\xa7\x53\xa2\xa4\x73\x87\x25\x11\xcd\xc2\x99\x53\xe0\x32\xc5\x52\xec\xef\x6b\xa2\x10\xab\x40\x5f\x39\x9f\x83\x92\xda\xbc\x39\xb4\xdb\xae\x64\xcc\x20\x14\x1c\x78\xa4\x9f\x4f\xa7\xc8\x8a\x36\x58\x1c\x21\x32\x87\x99\xb7\xc5\x44\xcc\xe2\xd2\x07\xc0\xb0\x38\x30\x5b\x9a\xc9\xb5\x41\xd7\x33\xa6\x41\x43\x5e\x66\xa7\x68\x58\xa7\x28\xac\x12\xe3\x47\x47\x58\x2f\x19\x4d\xf4\xf2\x81\x2a\x32\xec\x6c\xe4\x87\x1d\x75\x74\xd8\x71\x1a\xe6\x06\x5a\xf9\x00\xec\x69\x4d\xd6\x8e\xfa\x75\x3e\xd6\x1f\x83\xbd\x9c\xc4\x5f\x24\x8e\x10\x34\x21\xf7\xd6\x2a\xee\x8c\xde\x61\x45\xcf\x1c\xb2\x1e\xae\x79\x9c\xd3\x84\xa8\x7c\x66\xc4\x00\x29\x98\x35\x9a\xcd\x98\x23\xc2\x31\x13\x63\x52\x97\x54\x1a\x72\x21\x9a\xfb\x09\x9e\x26\x80\x25\x1d\xa5\x22\xa9\x54\x1c\xdc\xf0\xf7\x48\xdd\x20\xaf\x9c\x43\xb5\x20\x32\x8a\xf2\xe0\xa8\x5c\x90\x94\x66\x9a\x47\x79\x42\xb3\x64\x63\x0e\x84\x29\x65\x96\x51\x9a\x66\xc0\x15\x1a\x82\x94\xb0\x9c\x84\xd2\x19\xe5\x82\xc5\x63\xd2\x24\xfb\x94\x62\x22\xb5\x45\x9a\x7d\x18\x1c\x10\xc5\x58\x11\x21\x98\xc8\xc5\x6e\x5a\xc5\x6e\x26\x94\xb6\xd4\x22\xec\x51\x64\xae\xd1\x53\xa2\xdf\x08\x1d\x4c\xa4\x59\x5d\xf8\x97\x16\x3f\x8a\x07\xf3\x90\x45\xdc\xd1\xd9\x97\x28\xc9\x7b\xf8\x5f\x4d\x6a\x1d\x50\xea\x07\xe2\x3f\xaa\xb1\x6a\x70\xcd\x3b\x73\x9f\x54\x52\xbe\x30\x3b\x28\x58\xaf\x6c\x0d\x70\x73\xa9\xe7\x32\xab\x89\xfe\xe3\x26\xb7\xdd\xaa\x38\x59\xc9\xd2\x61\xd3\x10\x2d\x84\x34\x5f\x95\xa1\x95\xfb\xfb\x64\x32\xfd\xe9\x9a\xc4\xf9\x6a\x15\xf4\x2b\x2d\xb6\xe1\xbc\xe5\x1c\x5b\xe1\xde\x7d\xb2\x21\xb3\x4d\x25\x1a\xb0\x6a\xb4\x0e\x0d\xea\xf6\xba\xca\x13\xcd\xd3\xc4\xcb\x3e\x83\x19\x2c\x49\xae\xd0\x73\xcc\xfc\xc7\xe5\x7b\xc0\xa8\xed\x26\xde\xca\x52\x1e\x15\x08\xc4\x53\xa0\x88\x08\xfd\x00\xeb\x04\xf9\xee\x3e\xa3\x69\x93\xfd\x07\xc1\x09\xcc\xdb\xfe\xfe\xe1\xfe\x3e\x0e\x67\x99\x37\xb2\x04\xdb\x91\xe3\x75\xf7\xf7\x0f\xff\xcb\xc0\xe2\xf0\x60\xcd\xf4\xf2\xd5\x7e\x80\xaa\xd8\x04\x66\x0e\x06\xb5\xbc\x1a\x70\x5a\x33\xb6\xe0\xc2\xcd\x68\x86\xdb\xdf\xb7\x55\xde\x95\x6c\xf2\x10\x2b\x41\xb8\xbf\x6f\xe7\xf6\x89\x1c\x1c\x10\x4f\xd7\xaa\x25\x8f\x42\xf8\xe1\x16\x03\x4f\x33\x36\xe7\x5f\xfa\x3f\x13\x6c\xef\x8c\x7b\xd5\x23\x06\x27\x60\xfe\xc5\x66\xb9\x28\xea\xb8\x37\x61\xf7\x9a\x7b\x05\xc4\x93\x83\x2a\xc6\xb0\x5e\x39\x57\x4b\xb4\x31\xaf\x02\x9a\xb2\x56\x58\xa9\x31\xb9\x90\x1a\x88\x26\x61\x62\xcd\x33\x29\x56\x40\x8b\xa4\xad\x16\x44\x05\x99\x19\x5e\x70\xc5\x34\x4d\xf0\x06\xca\x2c\x5a\x32\x83\xe8\xb5\x0c\x97\xb9\x2a\x98\x5a\x64\x10\x69\x6a\xd0\x72\xc6\xa9\x66\xc9\xa6\x7a\x77\x64\x9e\xf9\x61\xce\xa0\x35\x97\xd1\x5d\x58\x88\x07\xba\x6e\x93\xaf\x5a\x2f\x0e\x73\xd6\x11\x4d\xf8\xfe\xbe\x9f\xb6\xd3\x8c\x5a\x32\xc5\x5e\xb7\xe0\xbb\x71\x0e\xe7\xfb\xfb\x9a\xa6\x6e\x20\xff\xe6\x98\x09\x1e\x7c\x67\xae\xb0\xe6\x3c\xdc\x89\x35\xed\x74\x1a\x98\x34\xf4\x6b\x2a\x97\xdf\xe8\xb1\x96\x31\x15\x51\xa1\x30\x1b\x4a\xe5\x7d\x49\xb2\x66\x19\x9f\x6f\x6c\x7e\x21\xac\x4e\x05\xda\x38\xec\x63\xdd\x81\x83\xf8\xd5\xe5\x9a\x99\x6d\x1c\xdb\x5f\x5e\x6d\xb3\x4a\x2d\xc9\xcb\x1d\x05\x27\x9e\xf2\xde\xd1\xf8\x93\xe9\xa4\xe0\xd6\x65\xc1\x8b\x55\xbd\x7f\xcb\x34\xb0\x78\x07\xc3\xfa\x67\xcc\x23\x59\x3e\x49\x59\xa6\x6c\x19\x93\xcb\x14\x7d\x55\x08\x75\x59\xc9\x8c\xe0\x9e\xad\xac\x27\x47\x98\x61\x2f\xb4\x21\xe8\xfe\x89\x2f\xd3\x08\x62\xa9\x94\x49\x85\xdd\x16\x3c\x21\xcf\x73\xa1\x98\x7e\xb1\x33\xd3\x6d\xa0\xf5\xe1\xe6\x63\x2f\x48\x7d\xb8\xf9\xe8\xae\x8d\xf9\x27\x64\x5b\xd1\x6e\x85\x95\xa0\xeb\x31\xb9\x66\x61\xaf\x5b\x0b\x45\xb3\x15\x33\x86\x17\x68\xfe\xcd\x37\xbb\x27\xa4\xc1\x98\xc8\x1d\x9f\xc4\xfe\x24\xd4\xab\xf5\x41\x90\x8c\x61\x26\xc9\xb0\xf5\x21\xf1\x5c\xbe\x31\x42\xaf\xaa\x5c\x26\x42\x5a\xfc\x67\x7d\x8e\xc0\x3b\xca\xb7\x04\x04\x2f\x40\x26\xef\x8a\x5a\x57\x85\x5f\xb6\x01\x2d\x38\x9f\xbd\xac\x64\xfb\x73\xd3\x67\xb8\xab\x8e\x0c\x94\x0f\x70\xff\x74\x33\xf4\x0c\xc8\x9b\x54\x9b\x17\x0a\x1e\x65\xc1\x3a\xb3\xdf\x1b\xbe\xce\xad\xdd\x50\xf1\x20\x20\x18\x7a\x83\x54\x34\xfc\x5c\x91\xe3\x5c\xcb\x9d\x91\x03\xce\xf5\x9e\x27\x9a\x65\x90\x40\xb5\xd1\x35\xb3\xcf\x38\xe7\x32\xba\x7b\xdf\xec\xc3\x5a\xbf\x77\xdb\x9d\xdc\xb5\x33\x68\xd5\xaf\x98\xe1\x26\x08\xc1\x23\x91\xd1\x1d\x38\x88\x8f\xc9\x9f\x0c\xbb\x45\x37\x90\x7f\x10\xfd\x69\x20\x0c\x06\xc8\xa4\x35\x00\x15\xad\x9d\x0a\x20\x5c\x04\x8d\x6b\xcf\x42\x52\xac\xe6\xf9\xdc\x23\xae\xbe\x8b\xe2\x8a\xa6\x29\xc3\x7c\x96\x42\xcb\xc2\xe5\xba\x81\x7a\x6b\x23\xc3\x65\xe6\x51\x51\x12\xf3\xf9\x9c\x65\x4c\x68\x92\x52\xbd\x7c\xe1\x23\xb2\xc3\x2c\x17\x87\x5f\xac\x3e\xc1\xac\xfb\xa1\x97\xd4\x40\x78\x9a\xc9\x19\xdb\x01\x27\x34\xf4\x2c\x22\x41\xf9\x8a\xd5\xad\x8b\x41\xe6\x8a\x72\x5d\x24\x05\xa1\x5a\xb3\x55\x8a\x92\x38\x8d\x40\x54\xab\xba\x72\xc2\xe1\xf0\xb9\xcd\xd6\xd9\x90\x2c\x82\xae\x29\x87\x82\x72\xe3\x6a\x5a\x90\x15\xbd\x73\x59\x3d\xc0\xcf\xdb\x26\x78\x32\x32\x30\xc6\xf9\xd8\xd3\x6f\x50\x07\x45\x18\xbe\xc9\xe2\x03\x48\x11\x95\x2b\x86\xc3\x9c\x4c\x3f\xfa\x87\xf2\xed\xcb\xd5\x83\x91\x85\x81\x66\xdf\x60\x80\xc9\x76\x9f\x36\xd8\x03\xa0\x43\x3b\x73\x61\x99\x15\x18\x43\x2e\x87\x97\x07\x1e\xca\x04\xd3\x63\xee\xdc\xff\x0b\x95\x7b\x23\xff\x03\x42\x8d\x5a\xd2\xe0\x09\xc2\xf3\x42\x7f\xe4\x24\xa9\xa2\x7a\x2b\x81\x84\xe9\x86\x11\x3e\xcc\x21\xba\x93\x1a\x93\x4f\xe6\xe0\x6c\xfa\x9c\x32\xd5\x2d\x37\x62\x4d\xf9\x90\x0e\x9a\xa3\xe0\x5c\xce\x2c\x33\xa2\x79\x4e\x36\x93\x97\xcc\x36\x0e\xb3\x78\x69\x6c\x57\x32\xb7\x65\x11\xad\x33\x2f\x7a\x5f\x1d\x0a\x19\x4e\x04\x2a\x33\xd7\x62\xee\x12\x82\xe3\x82\x2a\x69\xe5\x54\xc1\xd6\x3d\xf4\xda\x7c\xa0\x46\x48\x7d\x3c\x76\xfe\x40\xb3\xbb\x0f\x54\x75\xa7\xb8\x98\xd4\x3a\xb8\x8b\xb7\x32\xff\xf6\x35\x0b\x90\xa5\x40\x19\x64\x19\xd6\x73\xdf\xe0\xa5\x30\xe3\x90\x99\x41\xa9\x50\x37\xc5\xe5\x4e\x9a\x31\x48\x52\x68\x7e\x21\x4b\xf6\x85\xc6\x2c\xe2\xab\x32\xbe\xbc\x29\x03\x24\xd5\x24\x61\x54\x69\xf2\x1d\x8e\xa9\x98\x3e\x00\x9b\x37\xe6\x80\x84\x88\xbb\x84\xaa\xa5\xf3\x88\xdf\xd8\x1b\xb8\x72\xab\x68\x50\xc6\x59\x37\x50\xf0\x68\x80\xd8\xc8\xca\x31\x7e\x99\xcf\x5f\xc2\x27\x74\x8a\xae\x0a\x26\x17\xfa\xcd\xeb\x9d\x99\x36\x04\xf6\xc5\xf1\xcd\xa5\xf5\xcb\x28\xa4\x14\xa4\xcb\x0f\x3c\xee\xa9\x54\xfa\x53\xc6\x35\x03\x8f\xcf\x9d\x51\x7f\xb8\x7b\x9d\x2f\x04\xd7\xf1\x46\x2c\x61\xf8\xba\xd8\x9c\x0c\x25\xf7\x66\xa8\xed\x74\x50\x28\x9f\x6b\xa8\x21\x11\xa3\x37\x3e\xe4\x9d\xcc\x28\x98\x89\xc2\x92\x00\xe6\x82\x73\x99\x8a\x31\x95\x23\x26\xdd\x85\x49\xee\x29\x52\xf6\x28\x91\xb3\x19\xcb\x50\x9e\xa2\xa2\x82\x87\x9a\xcd\x5a\xca\x4b\xec\x05\xba\x5b\x43\x90\x5c\x6f\x9a\xa6\x09\x77\xac\x89\x7f\x57\x0a\xa3\x41\x83\xb0\x98\xb2\x48\x6f\x63\xca\xf1\xa3\x52\x4b\xb9\xa1\x76\x67\xf8\x83\xfd\x1e\x20\x03\x5b\x29\xc0\x25\x2f\x04\x59\xdf\x86\x67\x78\x47\xdc\xce\xfc\x37\xdd\x9b\x8a\x67\xd0\x2e\xcc\x7f\x4b\x22\x98\x42\x1c\x40\xa5\x8c\xf6\x18\x68\xa4\x93\x2e\xf4\x0d\x3c\xb8\x81\xb9\x00\x15\x4d\x83\x4a\xcc\x06\x6f\xe2\xa0\x85\x94\xae\xc0\xf9\x05\xd4\x4a\xd6\x60\x60\xc6\xa6\x36\x70\xdc\x3a\x7b\xcf\xf2\x45\x23\x21\x34\xf7\x77\xce\xbf\xa0\xf5\xd7\xb6\xb7\xa5\x5c\xc8\x37\xe3\x57\xaf\x0a\x0d\xa8\xa1\xbe\xa8\xc9\x5c\x9b\xef\x21\xcb\x2d\x64\xd2\x0a\xea\x77\x36\x96\x39\x76\xc1\x3e\x45\xa0\x8e\x96\x07\x84\x92\xa5\x97\x37\x0d\x63\xeb\xaa\x69\xd2\x42\x43\x42\xe6\xb4\xca\x25\x7e\x88\x24\xb5\x7e\x6b\x9d\x05\x3a\xa5\xa8\x69\xd1\xb4\x29\x38\xd9\x19\x19\x9d\xa1\xb0\xc1\xa2\x03\x91\x00\xcf\xf9\xdc\xb5\x43\x1c\x81\xba\x96\x11\x24\x3b\x72\xd7\xb7\x39\xed\x43\x83\x0a\xe1\x2e\x9f\x31\xa8\x62\x2f\x33\x7d\x05\x79\x06\x3a\x1f\xe4\x1f\xb7\xba\x40\xf2\x0b\x55\xe8\xfa\x61\x2b\x7e\xd2\x82\x86\x6d\xd9\x3c\x20\xa4\x4c\xf6\x3a\xae\x06\xbd\xce\x0b\x75\x8b\xa1\xdb\x5e\xa6\x42\xcb\x63\x35\x90\x46\x9e\xae\x95\xcd\x0f\x86\x60\xce\x91\x91\x63\x8a\xb9\x65\xc1\x85\x42\x1b\x45\x99\x99\xb7\x2d\xb8\xc9\x7a\xc6\xf9\xb7\xe7\x0d\xa4\x11\x78\xf3\xfa\x77\x6f\x7f\x17\x4c\xe5\xd5\x6c\x98\x6a\xca\xa5\xd1\x23\x9b\x46\x77\x3e\x8d\xae\x04\x06\xbb\xa7\x30\x68\xb5\x1b\x25\x72\x01\x49\x0a\xde\xdb\x98\xe7\x2b\xb6\x60\x9d\x5a\xf1\xf3\x50\x27\xff\x91\x18\x4c\x6e\x63\x14\x22\x48\xa0\xca\x1b\xc4\x69\x17\xae\xc0\x33\x02\x23\x42\x7a\x39\x99\xeb\xd4\x08\x20\x02\x6c\x0a\xb1\x43\xf2\x60\x40\xc4\x1b\x06\x69\xdf\x9a\xbc\x1c\x61\x32\xeb\x9e\x02\xf6\x17\xa0\x04\x65\xb2\xfc\x05\x5f\x33\x11\x4a\x71\x58\x64\x9c\x88\xc1\xe6\xd9\x60\x97\x9a\x03\x9b\x84\x24\x1b\x28\x34\xde\x47\xbb\x7c\xc8\x41\xd0\x60\xea\x6c\x3b\xf8\x44\x2e\x7a\xeb\x32\xce\xcb\xb6\x8e\x8c\xce\xf3\x24\x01\x99\xde\x31\x3d\xf8\x72\x12\xb9\x70\x64\x2b\xb4\x15\xe0\x63\x3d\x62\x06\xa2\x54\x22\xa1\x60\x45\x45\x37\xb0\xa6\xd9\x61\x22\x17\x87\xbe\x04\x32\x4e\x64\xb0\x88\x4a\xc7\x2e\x7b\xda\x5d\xce\x5d\xcb\x52\x49\xb3\xa8\x98\x59\x3c\xd4\x00\x02\x77\x66\xc4\xe9\xa6\x27\x75\x7e\xf9\x83\x23\xe2\x55\x53\x40\x24\x47\x18\xba\xf8\x80\x9d\x5c\xb3\x35\xcb\xb8\xde\x98\xb3\xe8\xb3\x1f\xbf\xbd\xbf\x2b\x65\xbf\x27\x74\x26\x41\x7d\x60\x5e\x8f\xb9\x42\x41\xdc\x93\x31\xcc\x12\xed\xea\x9f\xc9\x85\x55\x47\x95\x1b\x9b\x88\xb9\x7c\xc4\x7e\xae\xa3\x8c\xb1\xee\x78\xe9\xf3\x7a\x8f\x27\xdb\x93\xd2\xb1\xcc\xf5\x53\xee\x68\xd3\x4d\x16\xcf\x2b\xcd\x9f\x6e\x2f\x1b\xe5\x3d\x42\x72\x21\x6d\x56\x5a\x21\xdd\x43\x03\x62\x66\x5b\xb5\x2a\x8e\x1f\x02\x84\x15\xfd\x02\x1a\xf7\x6b\xfe\xb7\xd0\x1d\x6d\xa5\x56\xae\xf2\xd9\x71\x1c\x77\xa6\xd0\xd8\xff\xe0\x35\x2e\x23\x20\xcb\xba\xad\x19\x89\xe5\x8a\x72\x41\xbc\xc4\x1a\x4d\x4c\x85\xab\xec\x1a\x51\x41\xa8\x50\x86\x31\xfe\xe9\x03\xf9\x6b\xce\x20\xc3\x96\x81\x5e\x94\xc8\x3c\x1e\x71\xc1\x75\xb1\x4a\x28\x24\x57\x18\x0a\xc3\xbe\xda\x4b\xd0\xbc\x65\xa8\xab\x8b\x8b\x30\xea\x15\x8d\x96\x5c\xb0\x42\xf5\x23\xe4\x9a\x8e\x68\xca\xc9\x73\xcc\xb2\xf8\x71\x96\x0b\x9d\x07\x87\x74\x4d\x47\x6e\x19\x2f\xc6\xe4\xd8\x79\xc0\xcf\x11\xc1\x3e\x8f\xa8\x62\x10\x08\x2e\xd0\x85\xe7\x05\x59\x31\x2a\x9a\x75\x53\x15\xdb\x17\x38\xfc\x33\x4d\xf2\x14\xb4\x0b\x17\xc7\x37\x98\x81\xc6\xa9\xda\xdc\xc4\x80\xfd\x3b\x6e\xd0\xab\xd7\xbf\x1b\xbf\x1c\xbf\x1c\xbf\xda\xf9\x1a\xd9\x49\x1a\x5c\xb5\xc2\x57\xc1\xb9\xb0\x83\x98\x67\xfe\x6d\x95\x60\xc5\x8a\xf1\xac\xd1\x6d\xae\xa1\xfe\xd4\x6a\x06\x09\xab\x80\x98\x63\x4d\x8d\x71\xe5\xa6\x19\xae\xda\x40\x68\x7f\xdf\xbc\xac\xfd\xfd\x17\x07\x9e\xa7\x68\x83\x64\x06\xa0\x2c\x00\x79\x80\x56\xf6\x57\x6f\xbf\x1f\xbf\xfe\xf6\x9b\xb1\xfd\xef\xd1\x77\x20\xe5\xf9\x73\x1d\xf9\xfb\x0a\x4a\xf4\x13\x01\x89\xb8\x20\xb3\xa5\xad\x47\xec\x1d\xa2\x33\x13\xcc\x98\xb5\x14\xc4\x1e\x82\xfb\xee\x77\xbf\xfb\xb6\x25\xa1\x6c\xd3\x0b\xd5\xf9\x2e\xc9\x9e\x3f\xdc\x7c\xfc\x35\xca\x3d\x81\xdd\xb9\xa2\x32\xa1\x49\x04\xf9\x3d\x0a\x1d\x68\xd8\x58\xf1\xe1\xe6\x63\x35\x93\x5b\x59\xe4\xa8\xad\xc0\xd1\xe3\xaa\x19\x09\xaa\x9d\x26\xac\x67\x68\xbc\xa7\x3b\xb3\x3d\x3c\x0b\x1b\x15\xf5\x60\x6f\xe0\x4e\xac\x37\x67\x53\xba\x37\x64\x95\xcd\x95\x84\x67\xed\x0a\x49\x08\x42\xfd\xf5\x81\xf5\xb9\x28\xa5\x62\xe3\xbc\x9b\x10\x69\x51\x95\xa1\x16\x3c\xee\xc7\x78\xc3\x0d\x28\x17\x6c\x75\x4c\x05\x88\xc3\x38\xb4\x52\x43\xc3\x2d\x42\x0a\xf2\x9c\x83\x3f\xab\x13\xd6\x4a\xdd\xd3\x87\xe3\xeb\xff\xfd\xf1\xec\xea\xf8\xf4\x8c\x68\x9a\x2d\x98\x0e\x38\x17\x77\x9c\x50\x21\xab\xfe\x66\x99\x0d\x6d\x4e\x43\x58\x84\x77\xdc\x65\x72\x43\x2b\x38\xab\xe2\x7c\x0c\x80\x9b\x6c\x24\x18\x8a\x43\x21\x89\x0f\x5e\x90\x18\x0e\xb8\x88\x95\xbb\x38\xbe\xb1\xf6\x08\xf0\x2d\xf0\x95\x47\x61\x2b\xed\x92\xae\xb9\xcc\x8a\x1c\xa7\xd6\xcd\x59\xa1\xd3\x4c\x63\x44\xff\xd3\xe6\xca\x13\x4c\x27\x5c\xb4\x18\x9d\xda\xe0\x0d\xf1\x62\x66\xb9\x57\x6c\xd1\x27\x5d\xcf\x65\xb5\xbd\x23\x34\x7e\xde\xae\x0c\x7f\xc1\xf8\x00\xcf\xfd\xb5\x99\xe6\xce\x58\x22\xc5\x02\x4b\xd5\x4e\xcc\xeb\x03\x9f\xbe\x91\x1d\x08\x15\x82\x87\xa5\x37\x52\xcc\xd2\x44\x6e\x56\x4c\xe8\x66\x7e\xc3\x05\x5c\x15\x3e\x2c\x31\xa4\xbc\x59\xca\xfb\x32\x41\x30\x4e\xfe\x1c\xb3\x5c\x96\x1a\xcd\x95\x8c\x59\x12\x1c\x19\xf9\x12\x14\xc3\xa2\x39\x94\x4a\xc7\x6c\x40\x85\xd3\x97\x79\x91\x30\x76\x24\x57\x69\x6e\x8b\xc7\xbc\xb0\x95\x90\xf3\xb0\xd7\x61\x29\x22\xff\x19\x65\xa3\xbf\x94\xa7\xf2\xd9\xc2\x00\x59\x1b\x6f\x33\x90\x63\x3a\xd7\x99\x14\x63\xf3\x6d\x70\xb5\x76\x29\x58\xbf\xa6\x24\x7a\x67\xab\x54\x6f\x76\x65\x45\x30\xec\x13\xea\x47\x50\xbd\xec\x29\x4d\x4e\x03\x9d\xfc\x90\x92\xd9\xc6\x9e\x01\x64\x6b\x85\x1a\xc3\x11\x0d\x97\xd3\xb1\x49\xeb\x90\x84\x63\x24\xa3\x4b\x0f\xe7\xf2\x09\x1f\x60\xd9\x83\x63\x4f\x7d\x9f\xd0\x0d\xcb\xfa\x65\xb4\x79\x18\x54\x32\xb9\x62\x7a\xc9\x72\xf5\x83\xfc\xc0\x74\xc6\xa3\xbe\x35\x61\xf6\xa7\x8d\x5d\x9d\x5e\x40\x91\x1f\xa4\x61\x8e\xc1\x14\xbc\xc2\x26\x61\x76\x2d\x49\x30\xc2\xcc\xb9\xd7\x9a\xbb\x54\x8e\xef\x2a\x7b\x41\x54\x67\x99\xfb\xe6\x00\x31\xa0\x62\x61\x8f\x68\x97\x17\x0f\x39\x03\x54\x14\xab\x5a\x26\x67\xbb\x28\x9b\xa2\x0d\x63\x5b\xe2\x3c\x6a\x20\xb7\xde\x8a\x30\xf9\xdb\x23\xab\xea\x95\xc0\x7f\x30\xe8\x6b\x80\x77\x8a\xe5\x1a\xfc\x5a\x60\x6f\xe5\x26\x2e\x9c\xe1\xba\x28\x97\x65\xb6\xf4\xf8\x00\x91\xad\x3d\x36\x84\x7b\x74\x6c\xf0\x47\xa9\x0a\x99\x00\x8d\xe1\x2e\x37\x65\xd9\x34\x88\x9a\xec\x01\xdb\x6d\xba\x4c\xbf\x5c\xc4\x80\xab\xcb\xdd\xb1\xc7\xbd\x1e\xbb\xcc\x5e\x72\xce\xd6\xe6\x7c\x81\xc7\x85\xcc\x3f\xf9\x06\xbf\x7f\xf9\x7d\x8b\xf8\xd6\xc0\xec\x94\x1b\x9c\xa2\x1d\xec\xc1\x17\x35\xd8\xbf\x44\x14\xce\xc7\x6e\xc0\x12\x2d\x2f\xe8\x13\xcf\xd8\x0f\x39\xcd\xe2\x07\x9f\x42\xc3\x08\xe5\x39\x14\x25\x77\xda\xee\xda\x43\x4f\x22\x2c\x12\xe2\xe1\x3c\xf0\x24\x42\x43\xba\xc3\x79\xf2\x93\xc8\xd8\x4a\xae\x99\xcb\xd3\x04\x99\xbe\x3a\x85\xbe\x4f\xd5\x80\x4e\x5b\xa3\x70\xcd\xaa\xa9\xba\x5c\xcd\x9f\x35\x6b\xf2\x27\x9b\x31\xe6\x27\xff\x2a\x38\x8f\xb1\x8d\x95\x44\x89\xce\xe5\x82\xc3\xb4\x0e\x05\x83\xe1\x39\x04\x34\x65\x8d\x00\xbf\x26\x1a\xc7\xf5\x14\x62\x2e\xf6\xcc\x95\x0e\xf3\x52\xcf\xd9\xb4\x52\x8c\x86\x07\xbd\x67\xb8\x16\xbb\x5f\xb7\x98\x64\x63\x93\xde\xd9\x19\x76\x3e\x03\x9b\x96\xab\xb7\x23\xc1\x55\xbd\x47\x25\x16\xc3\xfc\xbd\xe5\x37\xdc\x98\xb3\xc4\x3a\x5c\xea\x5c\x95\xfe\x57\x86\xe3\x86\x60\x72\x70\x57\xab\x78\xab\x7d\xb0\x3c\xbc\x90\x62\xf4\x37\x96\x05\x15\x4b\xdc\xd3\x3e\x7a\x82\x81\xaa\x9a\x1c\x77\x36\x58\x17\x70\xba\xb9\x39\xef\x0f\xa2\x9b\x9b\x73\xdf\x7f\x6f\xa4\x25\xe6\xc7\x75\x7e\xfe\x20\x83\x22\xaa\x1e\xdd\x37\x54\x9e\xb6\xf0\xb1\x50\x7c\x64\x02\x5b\xb8\x24\xbb\xba\x8e\x5c\x05\x3a\x3d\xc2\x55\xdc\xab\x17\xb1\xab\xdb\x08\x59\xd2\xb0\xb6\xff\xa1\x6e\x23\x98\x3e\xd2\x79\x88\xb4\x0b\x04\x0f\x05\x37\x66\x2f\xec\x07\xe5\x6b\x67\xac\xf5\x23\xd8\x33\x67\x46\x5c\x30\xf4\xbb\x73\x55\x6f\xc3\xf7\xbf\x48\x54\x3f\x26\x23\xf2\xc9\x2a\xec\x26\x53\x75\x84\x6a\xb0\x60\x5e\x59\x8c\x32\xcd\x43\xc1\x8e\xa4\xc0\x5d\x23\x0b\xd3\xc9\xf4\xf8\x43\xd5\x8f\x66\x04\x43\x9b\xef\xe1\x2c\x2b\x23\xba\xee\x0f\x02\xdd\x46\x44\x2e\x76\xbd\x0b\x80\x57\xf5\x0e\x88\x2e\x2b\x99\x75\xb0\x0e\x82\x14\xca\x29\x02\xc3\xaa\x21\xab\x80\xc3\xcb\xa1\x11\xf7\x5c\x97\x5c\x3c\x50\x9d\x5c\x78\x65\x9d\x46\x56\x1a\x85\x2a\xa5\x52\x24\xcd\x89\x0e\x9a\xd0\xb0\x99\x0a\x1c\x27\x9b\xd4\x6b\xd5\x4c\xe9\x2c\xcd\x58\x44\xd1\x6f\x95\xcc\xe9\x1a\x55\x4e\x57\xd5\x51\xd4\xb8\xc8\xf0\xde\x52\x17\xce\x55\xf6\xa3\x89\x75\x56\xf2\xb6\x8d\x56\x9e\x35\xc5\x5c\xdf\x69\x9e\xa5\x12\x92\x1f\xd4\x26\x0a\xa2\xad\x8a\x6e\x8e\x8b\x18\x6b\x8e\xce\xeb\x90\x55\x95\xa2\x7f\x96\xdf\xce\x83\xf9\xd7\x3b\x02\x91\x57\x34\xa4\x80\x20\x7d\x52\xd9\xac\x78\x48\xd1\xd5\xa3\x6b\x4b\xec\xf1\xc8\x2c\x28\xf8\x75\x28\xf8\xa0\x2d\xe0\xb8\x76\x39\x3a\x79\xa4\xda\xa1\xf7\x3f\xe1\xa0\x9e\xa5\xe9\xd0\x2b\xda\x76\x8c\x82\x9a\xe3\x98\xe6\xb4\xd9\x17\xeb\x23\x14\xa6\x00\xc1\x13\x2f\xaf\xb5\xb2\xe8\xb0\x9c\x6d\xff\xc0\x0b\x4e\xdb\xfa\xf1\x69\xe3\xd9\x9b\x2f\x52\xaf\xac\x48\xcd\x97\xa9\x47\xf7\x8e\x60\xf6\xe0\x95\x6a\xbc\x54\x8f\x88\x63\xb7\x3a\xb4\x73\x29\xd3\x29\x56\xc7\xe8\xa3\x0c\xfe\x84\xd2\x07\xfa\xa3\x81\xd9\x79\x6d\x20\xad\x18\xa8\x42\x4b\xb6\xf7\xc0\x95\xdc\x68\xa3\x64\x89\x94\xa9\xf2\xea\x99\x43\x0a\x95\x4a\x92\x19\xf4\xdf\xc6\xfc\xcd\x36\x15\x3f\x81\x98\x6c\xb3\xdd\x46\xaf\x2e\x9b\xba\x1b\x13\x8c\x14\x59\xcd\x4e\x2f\x8e\x6f\xf6\xf7\xe3\x7a\xd8\xf9\x47\x01\x79\x59\xca\x7a\xe3\x2e\x93\xca\x5e\x50\x56\xe2\xa2\x28\xff\xa2\x18\x96\xf1\x73\x15\xea\x71\x3b\x91\x14\x9a\x0b\xa4\x21\x33\x9b\xe4\xb2\x52\x6a\x23\x34\xea\x43\x92\x6b\x2b\x1e\xb3\x88\x66\xc7\x51\xc4\x12\x4b\xf5\xfa\xca\xb7\xd7\x8d\x5d\x0b\x85\x18\x96\x82\x58\x01\xcb\xe5\xa6\x6a\x60\xcc\x8a\x31\x1e\xad\xfb\x02\xc7\xd3\x1e\x79\x84\xab\xbb\xf9\x18\xea\xe5\xd8\x69\x42\x85\x14\x9b\x95\xa1\x6e\x16\x1f\x59\x9f\xdb\xa0\x29\x0f\xe5\x66\xbf\x92\x3e\x14\x41\xc3\x74\xe3\xe6\xce\xa1\xba\x7e\x2c\xb3\xc5\x98\x9c\xcb\x85\x22\xf7\x58\x8b\xd3\xb0\xef\x3a\xcf\x1a\xea\x00\x59\x27\x54\xac\x48\xec\x8c\xf1\x5e\x44\x37\xe4\x31\xa4\x50\x1b\x86\xcf\x79\x44\x85\x2e\xb3\x2f\xae\xf3\x44\xb0\x0c\x53\x82\x05\x23\x28\x97\x54\xa1\xb0\x1b\x73\x05\x05\xd0\x4a\x47\x3e\xe7\x5e\x2c\xe7\x6e\xf3\x58\xea\x26\x57\x9d\x37\xf2\x41\xf2\x7e\xf5\xfc\x26\x82\x6b\x4e\x93\xa6\x9c\xd2\x6d\x87\xe8\x77\xad\x56\xc5\x75\x65\xa9\x63\xf3\x53\x58\xee\x9f\xcb\x82\x9f\x5e\xd1\x3b\x86\xb6\x77\x33\x70\xcd\x29\x75\x67\x66\xbf\xbe\xbd\x9e\xd2\x55\x7d\x6b\x56\xbe\xaa\x6c\x6b\x4b\xb4\x6e\x36\x9d\xe1\x9e\x02\xd2\xe2\x77\x6f\xbf\x79\xd0\xa6\x9a\x0a\xe6\x74\x6d\xac\xb9\xd4\x0e\xe6\xe5\xf4\x0a\x70\x01\xa3\x6e\x24\x88\xc6\x38\x9d\xad\xc2\x3f\x4e\x75\x83\x98\x75\xc1\xa3\x31\x21\x93\x39\x22\x96\x32\x1d\x67\x42\x73\x11\x06\x16\x06\x9c\x84\xcb\x09\xe1\x0b\x2f\xcd\x4f\x36\x1f\xa9\xc6\xda\xd3\x90\x7a\x70\x96\xcf\x77\x65\xf1\xa1\xe0\x76\x5f\xa4\xf5\xd3\xcf\xe7\xc7\x17\x7d\xa3\xf2\xc1\xfb\xbf\xc9\xff\x00\x46\xaa\x46\xa6\x03\xcb\x07\xc5\x04\xf0\x47\x2b\xc4\x80\xb3\x69\x5b\x98\x7e\x98\x95\xe3\xea\x57\x0a\xd3\x07\x00\xf6\x89\xd3\x87\x5d\xb5\x06\xea\x7b\x9b\x47\xc8\x84\xb6\xe6\x85\xf1\xb7\xc6\xec\xbf\xda\x3d\x66\xdf\x6d\xe5\xa7\xce\x4a\x06\xc5\x66\x7e\x7a\xdb\xba\x9d\xb7\x4f\xb5\x9d\x37\xdf\x3f\x70\x3b\x0f\x49\x1f\x06\x1d\x7f\xba\x98\xec\xda\xaf\x50\xab\xf7\x7d\x4f\x9f\x6a\x1d\xb6\x23\x49\x8a\x16\x1e\x9b\x1a\x02\x63\xf1\x76\x9e\x33\x11\xd1\x54\xe5\x89\xcb\x0e\xb8\xfe\xa6\xf0\xc8\xc1\x22\xf5\x02\xbf\x84\x22\x57\x09\x04\xa8\xc3\x3b\x0b\x79\x46\x91\x47\x33\x47\x75\x90\xf4\xb8\x5a\x75\xa0\xfc\xf4\xf6\xd1\x60\x79\x1b\x00\xcb\xdb\x10\x58\xde\xfe\xda\x60\xf9\x51\x2a\x7d\x26\xa2\x6c\x93\xee\xc2\x0a\x7f\x6a\xed\xde\x02\xae\x20\x2b\x26\x95\x1e\x69\x39\xb2\x99\x84\xdc\x60\x1e\x64\x1f\x6f\x1f\x2e\xf6\x5b\x84\x93\x5e\x84\xb3\xb3\x35\xec\xb3\xd2\xad\xa6\xc4\x01\x9f\x1e\xeb\x4d\xd7\x10\x8b\x54\x20\x57\xef\xde\xb8\x11\xfd\xcd\x15\xcb\x1c\x3f\x24\x11\x50\x78\x93\xbb\xdc\xf8\x5a\xc7\x07\x6f\xf4\x6d\xe7\x46\x17\xa3\xf5\xdb\xc7\x6d\xf2\x8f\x8c\xa5\xc7\x09\x5f\xef\x70\x8a\x45\x97\xf2\x86\x96\xeb\x9c\x1a\xb6\x5f\x69\x26\xb4\x69\x46\x1b\x6b\xe8\x61\xd5\x7f\x50\x7c\x56\xcd\x30\x5e\x80\xf4\x83\x37\x75\x0e\x2b\xe0\x62\xd1\xcb\xc4\xff\x29\xd8\xad\xca\x23\x27\xee\x27\xb4\xf7\x37\xb9\xfd\xcd\x36\xb5\x0b\x5a\xc9\xf3\xf0\xea\xbb\xd7\xbb\x93\xbf\xf0\xa6\x76\xb9\x8e\xb5\x8e\x6d\x1b\x0b\xed\xc9\x95\x34\xae\x5e\xc8\xfa\xc6\x76\x77\x57\x28\x36\xd6\x87\xeb\xfa\xe4\x35\xae\x6e\xc0\x7c\xe1\x33\x5e\xad\x48\xd2\x7b\x45\x5d\x8c\xd7\x03\x92\x25\xf9\x3b\xda\xe5\x80\x90\x01\x6b\xd9\xd5\xdb\x27\xdb\xd5\x63\x2e\xe0\x15\xea\x9a\xae\xf2\x84\x4d\x33\x2e\x33\xae\xbb\x45\xeb\x4f\x2d\x9d\xab\x3b\x4e\xdd\xb7\x8d\x45\x08\x4a\x9c\x09\x1d\x4a\x9c\xe3\x94\x60\x59\x5e\x45\x20\xe1\xd2\xd1\xed\x9b\xb5\x06\x2c\x34\x95\x5d\xa7\x52\xce\xc3\x25\x38\xab\x7e\x03\xc1\x5e\xdb\x04\x3c\x95\x71\x91\x4c\xb8\x09\xef\x5b\xa5\x1d\x0e\x85\x4e\x8c\xe0\x71\x2e\xa4\x46\x45\x17\x70\xe7\xa2\x2c\xf9\x84\x39\x29\xac\x7b\x79\x68\x54\x2f\x42\xc7\xb9\x2d\x83\x77\xc3\x92\xf1\xcc\x73\x1a\xf0\x53\xc5\x59\xd3\x1b\x7a\x27\x07\x0d\x30\x4e\x65\x79\x2c\x36\xb7\x7b\x07\xe5\xce\x32\xf6\xd7\x9c\x41\xac\xee\xc6\x46\xf2\xed\xe8\xaa\xff\x25\xee\x9d\x5c\x2e\x90\x09\xfa\xe7\xd3\x69\x55\x2d\x68\x6e\x8b\xca\x39\x9a\x0e\x72\x2c\x5b\xd6\x94\xc5\xde\x96\x81\x8a\x99\xd8\x6c\x07\x12\x3e\x48\x29\xf5\x25\x4e\x77\xb5\x87\xff\x7c\x3a\x7d\xda\xc4\x69\x90\x14\xfb\x41\x39\xd3\xac\xb1\x3b\x34\x70\x69\xff\x7e\x37\x7d\x4f\x56\x34\x85\xe8\x2f\xaa\x35\x8d\x96\x58\x8d\x12\xac\x43\x61\xbb\xf8\xcf\xa7\xc1\x7c\x0a\xdb\x99\xd5\x76\xb7\x8a\x87\x4d\x12\xdb\xdf\x82\x22\x34\xf6\x3d\xdc\x95\x96\x19\x5d\x30\xf7\x15\x3a\x46\xc0\x69\xb9\xea\x69\x86\x9b\x73\x56\x9d\x3b\x2e\xe2\x23\x72\xbb\xe7\x6a\x0f\xa4\x49\x9e\xd1\xa4\xfc\xa6\xa8\x9f\xa9\x8e\xc8\x9f\xff\x62\xbe\x01\xaf\x93\xf8\x27\xd4\x8a\xda\x6f\x6f\xc5\x68\x34\xba\x15\xcf\x88\xb5\xe2\xbb\xe4\x3f\x9a\xad\xd2\x84\x6a\xa6\x0e\xef\xe2\x78\x14\x65\xb1\x1a\x6f\xe8\x2a\xb9\x15\x34\xe5\x76\x84\x23\x42\x53\xce\xbe\x68\x26\x30\x5f\xec\xdd\x77\x6a\xcc\xe5\xe1\xfa\xd5\xad\xc0\xb5\x9d\xe4\x4a\xcb\xd5\x15\x43\xbc\x70\xca\xe6\x5c\x70\xcc\xa8\xe9\x42\xb3\x60\x2b\x90\x5e\xd9\x46\x5d\x59\x59\x09\xcc\xcd\x9c\xa9\x71\x94\xc5\xe3\x2d\xdd\xf3\xad\x30\xec\x2c\xf4\x5d\x64\x32\x4f\x8f\x48\x43\x33\x1c\xbb\x0a\xb0\x1f\x60\x9e\x0b\x9c\x07\xfd\xb5\xf1\x67\xc3\x86\xfc\xb1\xa9\xc9\x79\x91\x40\xd7\x81\x39\xb8\x5e\x7b\x8e\x5c\x40\xac\x53\xa8\x11\x4c\x96\x66\x0c\x4e\xff\xa3\xb8\x13\xf2\x5e\xbc\xe7\x2c\x89\x95\x95\x88\xe0\xa0\x22\x69\x6e\xcb\x09\x2a\xe1\xcd\x37\x6b\x77\x68\xe6\x8f\x91\x05\x99\x81\x34\xcc\x17\x2d\xd9\x8a\x16\xcf\x5a\xa6\x4c\x1c\x4f\x27\x3f\xbd\xb9\xae\x7e\xdf\x68\x19\xf4\x8e\xb4\x7a\x95\xab\x68\xc1\x8c\x69\x35\xea\x7e\x85\x52\xbb\x34\x16\xdb\x75\x14\x39\xfe\x33\x06\xfb\x14\x3a\x98\x46\x55\xce\x8d\xa4\x8c\x0f\xc2\xbc\xd1\xcc\x8c\xe3\x25\xe2\x5c\xb3\x0c\x33\xd9\x2f\x04\xff\x5b\x31\x78\x11\x4b\x09\x77\x73\x8b\x59\x2c\x14\xa9\x5e\x62\xd7\x15\xdd\x58\x8b\x19\xc9\x85\x37\x20\x26\x58\x1b\x93\x0f\x12\xa2\x21\xe6\xf2\x88\x2c\xb5\x4e\xd5\xd1\xe1\xe1\x82\x6b\x77\x9b\xad\x9a\x54\x6f\x0e\x81\x94\xf2\x59\xae\x65\xa6\x0e\x63\xb6\x66\xc9\xa1\xe2\x8b\x11\xcd\xa2\x25\xd7\x2c\xd2\x79\xc6\x0e\x69\xca\x47\xb0\x76\x30\x27\xaa\xf1\x2a\x7e\x96\xd9\xeb\xaf\xf6\x43\x68\x62\x1b\x81\xc0\x2d\x6d\x3b\x06\x73\x47\x31\xa4\x0e\x3b\xdb\x50\x89\x02\xda\x2e\xbf\xea\xd5\xd9\xf5\x0d\x71\xb3\x07\x93\x89\x21\xf0\xcb\x9e\xaa\x3c\x07\x03\x34\x2e\xe6\xcc\xa6\x8f\x81\xd0\x45\xed\xd7\x81\x86\x4c\x62\xe0\xb6\x59\x1f\x55\xe5\xb3\x15\xf8\xf0\x20\x19\xc6\x20\x97\x13\xe0\x1e\x20\xcb\x63\x1a\x53\xcd\x62\x88\x7b\x39\xa1\x2b\x96\x9c\x50\xc5\xbe\xfa\x29\x18\x68\xab\x91\x81\x6d\xdf\x73\xa8\xa0\xa8\x7a\xf3\x6d\x83\x73\x81\x91\xca\x4f\x8b\x1d\x9e\xa6\x69\xb2\xb9\x14\xef\x65\x76\x4f\xb3\x4e\x2e\xe3\xb8\xd2\x1a\x7d\x4d\xc0\x89\x40\x4b\x1c\x09\x7d\x4e\xca\x3a\xd2\xdc\x15\x35\x0e\xca\xbd\xc0\x91\xc0\x48\x2e\x5b\xc9\x8e\x2c\x45\x2c\x2f\xa4\xbe\x31\x6c\x4c\xa7\x1f\x4f\xd1\xd2\x5b\x75\xc1\x8a\x5a\x4b\x35\x84\x03\x95\xb9\x6a\x60\x1f\x61\xee\xc8\xdf\x9a\x43\x15\x0b\x83\x0f\x32\x99\x2f\x96\x85\xab\x1d\x01\x63\xc7\x3e\x18\xa3\x05\x3a\x1e\x13\xe0\xba\xb8\x58\x04\xad\xda\x60\xc7\xa6\xca\x7a\x8f\x44\xae\xb6\x2c\x9a\x5c\x6e\x32\x97\x45\x3d\x04\x61\x42\x1b\xb2\x05\x43\xc6\x8e\xd8\xd9\xe3\x0c\x2f\x5a\x2e\x2d\xb8\x30\xac\x9d\x65\x61\x62\x59\xf0\x06\x01\xbf\x36\x3f\x24\x81\x63\x50\xa6\xcc\xfa\x0c\xcf\x18\xb1\x6c\xe6\xae\x67\x8b\x35\xb1\xbb\xce\xf5\x06\x32\x7a\xc7\x60\x6c\xb5\x9e\x31\xb6\x98\xb6\x65\x5a\xc9\x19\x8d\x96\x18\x40\x6e\x13\x08\x86\x99\x43\xd7\x1b\xf7\x6d\x23\xc3\xa2\x8c\x6b\x96\x71\x8a\xd9\xdb\xbd\x48\x7a\x48\x6f\x1f\x39\x11\x04\xae\xfe\x4e\x9e\x31\x95\x3d\xdc\xee\x1d\x13\x23\x0b\x92\x52\xa1\xeb\x7b\xfa\x84\x96\x12\xe4\x43\x49\x51\x77\x9e\xbc\x93\x7a\x69\xf3\x07\xca\x6c\x84\x56\xa3\xc2\x92\x3d\xb5\xe7\x25\xfc\xef\x32\xd9\x98\xb2\x06\xb8\x51\x96\x31\x11\xb9\x9b\x37\xf2\xaa\x25\xc9\x5c\x63\x46\x2e\x97\x4d\x09\x9b\x18\x59\x63\x26\xa1\xba\x20\x9c\x47\xc3\x82\x45\x5c\x14\x3f\xf7\x00\x0f\x06\xb2\xdb\x5b\x81\x87\xe7\x0a\x81\xd4\x21\xd1\xe0\xa2\x6a\x0e\x53\xb0\x05\x2c\xce\xb2\x04\x07\x56\xfc\x72\x81\xf5\xb7\xb7\xb7\x7b\x17\x52\x9b\xff\x8c\xc9\x71\x92\xd8\xa4\x08\xfe\xe8\xe1\x91\x4d\x6f\x08\x52\x86\x0b\x55\x94\x96\xa3\x9a\x2b\xa8\x27\x85\xa9\xc8\xec\x56\xb4\xc4\x31\xc7\xe4\xd8\x56\x42\x68\x80\x2e\x5c\x4e\x2a\xdc\x05\xb5\xf9\x03\xec\xa6\x0d\x88\x60\x3b\xe6\x0f\xcf\x91\x80\xe2\xe0\xcd\x70\x05\xe8\x87\x97\xe8\x70\x48\xb9\xc4\x86\xea\xfb\x5d\x0e\x5c\xb4\x29\x61\x26\x7e\xba\x4b\x92\xc4\x4c\x69\x5b\xed\xaf\x71\x94\x9a\x43\x66\xd1\xa1\x78\xd0\x81\xe3\xb3\xee\x4b\xe6\x61\x36\x0d\x0b\x4a\x14\x6f\x7e\x62\xa8\xb4\x0e\x07\x2b\xf6\x02\x06\xb1\x15\x5a\xa0\x3e\xd8\xb5\x7d\x7c\x2d\x6d\xb7\xd0\xc0\x45\xbd\xb3\x0d\x57\x97\xce\x54\x3c\x37\xfc\x79\x63\x16\x8d\xf2\x53\x00\x86\x16\x48\xc0\x4b\x77\x60\x53\x4a\x15\x15\x9e\x0d\xa4\x64\xc6\x17\x06\x0e\x4d\x18\xc0\x7d\x80\xff\x7a\x6e\xae\x10\x98\xaa\x11\x53\xe9\x17\x9e\x8f\xb3\x7d\x22\x90\x0a\x06\xe6\x0e\x13\x8f\x00\xc8\x6c\x08\xc8\x8c\x39\x42\x6c\x03\xc2\xe1\x22\x6f\xc1\xa6\x7d\x50\xc4\x92\x28\xd2\x17\x20\xa0\x50\x13\x70\x0e\x09\x36\x5c\x7a\x49\xba\x62\x36\x2b\x86\x6e\x50\xef\x94\x1f\xc8\x80\x15\x72\xeb\x76\xae\x72\x1e\x03\x31\xf3\x31\x70\x07\x50\xdd\xb6\x1d\xbc\x7c\x06\x04\xf1\xe0\x7b\x99\x91\x8a\x18\x78\xd0\x48\x03\xdc\x07\xcb\xf9\x05\xae\xd4\xca\x66\xf0\x72\x61\x7a\xfe\x65\x4b\xf8\x8a\x77\x1e\x18\x28\xdd\x12\x74\xfc\x6b\x84\x09\xf7\xe0\x5b\x9c\x70\xc7\x99\xe1\x43\xae\xec\xb3\x71\xfb\xfb\x28\xd1\x3e\x7f\x11\x2c\xd1\x52\x7e\x7e\x1d\x00\x54\x04\xf5\x6b\x43\xb7\x33\x82\x86\x4c\x84\x07\x6c\xa3\x7d\x50\xb3\xc7\x80\xbc\x7f\x00\x0e\x34\xed\x67\xd9\xb1\x5a\x7f\x8b\x5e\xfe\xb6\x50\x61\x96\x28\x93\x0a\x78\xbe\xbe\x4f\xb6\x81\x70\x14\x73\x77\x12\x00\x82\x69\x14\xda\x70\x6a\x3d\x31\x05\xb3\x15\x9b\x83\x88\xd1\x08\x9a\x3a\xe3\x11\x96\x45\x69\xdf\x86\x23\x81\x45\x66\xbb\x0d\x06\x1e\x04\xf1\x62\x81\xfa\x3a\xa0\x5d\xc5\x8b\x7e\x29\x43\x48\x6f\x22\x8a\xd4\xd8\x98\x95\x4f\xe5\x33\xb3\xfd\x46\xaa\x43\x5a\xf9\x48\x6f\xde\x5e\x90\x6e\xf5\x44\x2e\x3f\x42\xea\x8b\xdd\xce\x04\x3b\x14\x39\x29\xaa\xec\x97\xdb\xb1\x69\xd2\x41\x5e\xcc\x39\xfe\xd3\xc1\xa2\xa9\xbc\x78\xf9\xa9\x03\xa3\x28\x2b\xde\x02\x8d\x69\x53\xac\x5e\xf9\x41\x70\x90\x6b\x28\x9d\x08\xb7\x54\xc9\x55\x59\x65\x5b\x61\xe0\xa5\x2d\x5c\x0d\x79\x94\x37\xcd\x65\xcb\xcb\x4f\xad\x06\xaa\xae\x26\x72\x2f\x4a\x28\x23\x47\x65\x11\xb9\x11\x50\x3a\xb1\x22\xd0\x30\x6b\x0c\xb9\x39\x99\xde\xee\x61\xe5\xd9\x8f\xa7\xd3\x86\x4a\xa7\xee\xd3\xe7\x54\x9b\x93\x90\x96\x9f\x1e\xe9\x48\xb7\x1b\x77\x5f\x94\xee\x14\xa5\xe5\x67\xf7\x64\xa5\xe5\xa7\xef\x85\xdc\x9d\xb9\xbc\x28\x3b\x75\x5c\xcb\x7e\xfc\x95\xbd\x99\x60\x63\x2d\x06\x46\x2c\x8c\x56\xa6\x99\x4e\x98\xe6\x45\x5a\x52\x9c\xab\x7d\xcc\x82\x5b\x6a\xbd\x2a\xfd\xce\x2c\xdd\xed\xc9\xde\xee\x15\x2f\xb6\x8b\xac\x74\x13\xdb\x1e\x64\x05\xac\x4b\x2e\x0b\xd6\x73\x4f\x08\x09\x64\x8a\xaa\x6f\xcb\xcb\xee\xca\x14\xb1\x89\xf9\xfd\x64\xc1\x87\x4e\xa1\x7c\x53\x24\xdc\x6e\x1f\x95\xfb\xe2\xbb\x7d\x3a\x60\xc3\x42\x28\x2b\x07\x01\xab\x9d\x6d\x89\x37\x2a\x3f\x2e\x3b\x14\x32\x70\x7d\x31\x58\x27\x06\xb0\x29\xa7\x76\xc1\x60\x1d\x7b\x2f\xd1\x5b\x0d\x83\xdd\x22\x0e\xbb\xb5\x58\xec\x16\xf1\xd8\xad\xc1\x64\xad\x3c\xcf\x80\xcb\xe0\xd3\x0b\x97\xa9\x07\x48\xc9\xdd\xc2\x71\xab\xa6\xaf\xfc\x04\x85\x63\xf2\x5c\x31\xe6\x54\x64\x80\xca\xb0\x1c\x91\xda\x08\x4d\xbf\x84\x5d\x27\xcb\xcf\xed\x6d\xab\x6c\x6d\x79\xc8\x26\xd9\xb9\x7d\x6c\xa7\x19\xf3\x44\x6b\x99\x6d\x8b\xcc\xe6\xb9\x5d\x48\x8d\x76\xed\xa3\x86\xfa\x4b\x1e\x10\x6c\xc8\xa2\x33\x67\x75\x50\x05\x04\x8f\x47\x4d\xda\x47\x9f\xb1\x44\xde\xbf\x38\xa8\x2e\xd9\x03\x36\x42\x95\x70\xad\x58\x52\x64\x8b\xef\x80\x03\x2a\xc3\x24\xd6\x17\x66\x44\xdf\x4b\xb8\x6b\x10\xf2\xea\x7e\x43\x04\x61\x88\xd0\xa6\x2c\x01\xd5\x71\x76\x97\xc2\xed\x5e\xd9\xf5\x96\xea\x57\xe6\x49\x49\xb6\x8c\x24\xa8\x16\x6c\xfb\x6e\x9a\x70\xbf\x94\x89\x3d\xa4\x23\x38\xa2\xdb\xdb\x92\x20\xff\x01\xb0\xcb\x7f\x2c\xa9\x7a\xbe\xda\x7c\x4e\xe8\x8c\x25\x2f\x00\xef\x58\x24\xdf\xf5\x9c\xbd\x38\x3b\xb3\x6f\xb8\x64\xb8\x3e\x74\x4d\x18\x59\xe7\x9b\x84\xc5\x66\xde\x9e\xf7\xcd\x8f\xdb\x73\x59\xcb\x09\x2c\x0e\x96\xeb\x56\x8a\x4a\x54\xbb\xa5\xde\x17\x03\xb7\xdc\xb8\xe3\xed\x4d\x41\xa9\xfb\x86\xfc\xe7\xe5\xa7\x7d\xbf\xc5\x96\xba\xb6\xd3\xf5\xc8\x05\xdc\x3c\x36\x9f\xb3\xc8\xe6\x3f\xb2\xaa\x84\x04\x50\xab\x4d\x65\x02\xae\x12\xc5\x4e\xba\x17\x2f\xa4\x18\xb9\x58\x5d\xb4\xd4\x62\x4e\x02\xab\x17\x81\x28\x7a\x5f\x49\x01\xe1\x70\x38\x7a\x0f\xa5\xdd\x36\x68\xca\x8a\xc4\x4f\x21\xc4\xdb\xd8\xd1\xe3\x28\x92\xb9\xd8\x85\xf7\xba\xae\x76\xfc\xd5\x78\xb0\x1a\x5a\x6e\x1f\x33\xa0\xf2\xa4\x24\x95\x71\x91\x42\x19\x18\xba\x02\x45\x5b\x60\x74\xa0\x5e\xdc\x71\xeb\x6d\xeb\xa5\x74\x26\xa4\xea\x5f\xd2\xfc\xa9\xca\x04\x50\x2b\xe0\xd1\xe0\x26\x0f\x01\x79\xf7\x90\x4d\x9a\xe6\x00\xd8\x7b\x41\x9b\x94\x10\x37\xd8\x58\x59\xe7\x73\x5e\xa8\x2a\x0d\x03\xdc\xf1\xf2\xfb\x31\x77\x64\x07\x15\x04\xe9\xcb\x29\x91\xbe\xdc\x12\xd9\x7e\x5f\x9d\xfc\xd2\xff\xdc\x93\xae\xc8\x4a\xa5\xd6\x0d\xf1\xbe\x83\xe7\x98\x4c\x3a\x24\x0f\xf3\x29\xcd\x10\x60\x5d\xb8\xf6\xad\x0a\xa5\x2c\xa2\x6d\x2d\xc4\x46\x7b\x7c\xf5\x73\x7c\x71\xba\x1f\xb4\x8d\x57\x3f\xbb\x69\xb4\x9a\xb2\x10\xb8\x8f\x4b\xdb\xb9\x1b\xd7\x8d\x7d\x1e\xcd\x75\x63\x4f\x34\x10\x17\xf8\xd2\xab\xa2\xed\x26\x82\x32\x4c\x05\x5c\x83\xde\x12\xde\xa0\x9d\x4c\x77\xfd\x7a\xf5\xe5\xba\x03\xe6\x2c\x07\xbf\xe7\xea\x45\x9d\xfd\xb6\x15\xbc\x45\x9b\xd5\x91\x80\xae\xec\x10\x56\x05\x59\x62\xdd\x4a\xf6\x15\xc1\xe8\x68\x90\x98\x1d\xbc\xa3\xc2\x61\xa9\x00\x46\x17\x2c\xaa\x96\x2d\xf3\x72\xdc\x65\x3d\xf0\x59\xf7\x83\x6d\x8b\x42\x07\x98\x2f\x98\x61\x7f\x9d\xb2\x57\x66\x75\xda\x8d\x4b\x9f\xda\x78\xff\xb8\xd0\x84\x76\x58\x2b\xcd\x7d\x32\x07\xe8\xef\x11\xf5\x46\x05\x14\xa4\x70\x8e\x04\xd6\xb1\xa3\x9d\x65\xd9\x89\x6c\xee\x4e\x35\x43\x51\x4c\x60\x92\x2f\xef\x71\xf7\xd3\xb7\x7b\xf3\x6c\xf0\x4f\x84\x04\x3c\xfb\xcc\x03\x18\x02\xd3\x2d\xb0\x3f\xfc\xbe\xb9\x8c\x45\xf5\x83\x58\xd6\xee\x10\x5e\x72\xc2\xe6\x1a\xed\x58\xa5\x0b\x13\xbe\x9e\x1e\x4a\x1a\xe2\x3f\xc4\xc2\xe3\x68\x5f\x95\x2b\xfb\x55\x31\x68\x77\x9b\xa5\xd6\x69\x3f\x7f\x86\x1f\x6f\x6e\xa6\xa5\xbd\xbe\xd1\x89\xc1\xdc\x12\xd3\xb4\x79\xe9\xce\xcb\xf1\x71\xfe\x0b\x2b\xa6\x97\x32\xde\x81\x32\x7c\xc0\x0e\x4f\xcb\xb5\xe3\x96\x11\xa9\xe3\xbe\x3d\x27\x4e\x33\x26\x16\x13\x35\xf7\xb1\x7b\x50\x88\xea\x8a\x71\x14\xb7\xda\xe7\x6c\xbc\x18\x93\x1f\xce\x6e\x0e\xc8\xf4\xe3\xcd\x01\x61\x3a\x1a\xbf\x20\x1f\xf2\x44\xf3\xb4\xcb\xce\x61\x41\x04\x74\xff\xf2\x6a\xdf\x88\x61\x0b\xf0\x23\xfc\xe7\xb2\x5b\xa5\x54\x2f\x77\x38\xc7\xfd\xa9\x69\xff\x35\x8e\xb1\xeb\x04\xbb\x31\x8a\x7f\x82\xb0\xcc\x71\x71\x54\xb8\x4d\x77\x16\x7d\x0f\x83\x10\x36\x5e\x1c\x91\x11\x61\x5f\x68\xa4\x8f\xc8\xe1\x5c\x4a\x32\xb2\x4e\x62\x47\xe4\x70\x46\x33\x72\x71\x79\x73\x76\x84\x0e\x68\x4c\xe8\x6c\x43\x56\x5d\xec\xf9\xe5\xc5\xf9\x9f\x2c\xe6\xdc\x10\xc6\xb1\xa2\x29\xb9\xdd\x83\x49\x50\x8b\x6c\xfe\xc4\x59\x9c\xae\x63\xdc\x54\x75\xad\xfc\xac\x69\xc2\x63\x5a\x28\xfb\xb0\x1e\xab\x61\x9f\xb8\x0e\xe5\xfa\x2b\x3f\x7d\xee\x5c\xf5\x12\x18\x10\x43\x95\xb5\x4a\x7d\x0f\x00\xbc\xab\xb5\xd6\x8f\x56\x4d\x34\x78\x6e\xcf\x98\x03\x84\xd5\x23\xce\x65\xb6\x3a\x72\x60\xbf\xcd\x5f\xbe\x7c\x13\x99\x81\xe1\x5f\xec\xc8\x65\x66\xed\xa3\xf6\xc2\xab\x06\xab\x82\xe1\x0c\xc2\xc8\x8a\x23\x2c\x87\x1e\x59\x78\x3f\x6a\x06\x1c\xa3\xc3\xd5\xa4\x37\xd3\x41\x2c\x00\x9e\x56\x8c\x4c\x9b\x2a\x03\x3c\x7c\xd0\x7e\xe2\x44\x2f\x84\xd4\x3d\x14\x8f\x56\x3d\x69\xe6\xe4\xe4\xc3\xb4\xaf\x07\x08\x20\xa3\xe6\xb5\xfb\x58\x8a\xba\x5b\x1f\xc1\x6a\x6d\x72\x9a\x18\x70\x14\x4c\x59\xd4\xd4\x04\xcb\x5a\x8b\x7c\xe5\xd5\x38\xae\xf0\xb4\x7c\x5e\xb5\x4f\xe1\xa2\xb9\x97\xf5\xcc\xcc\xd3\xc6\xda\x82\x3d\xdd\x34\x5a\xbf\x6d\xd1\x53\xf6\xba\x89\x66\x6b\x3b\xd0\x79\xe0\x4c\xa4\xf0\xa1\x04\x40\x89\xa0\xc6\xc5\x2e\xc2\x1a\x64\x8b\x37\x00\xc6\x78\x11\x70\x51\x85\x2c\xce\x3e\xac\xca\x58\x4c\x4a\x34\x8b\x96\x82\x47\xb4\xc3\x2b\x09\xd4\xa2\xa8\xfe\xe7\xab\x54\xaa\xd2\x91\x0e\xab\xfc\xee\xab\xb2\x44\xcf\x9c\x67\xec\x9e\x26\xe1\x62\x23\xe5\x07\xb1\x85\x55\xca\x62\xa1\x1f\x49\x98\x98\x4b\x8c\x64\xb1\x2e\x7a\xdd\x4f\xa3\xd3\x86\x07\xcd\x1e\x7f\x18\x66\x98\x31\xf1\x53\x9a\x75\x99\xc0\x8a\xca\x6d\xdf\xa1\x97\x37\xec\x10\xc6\x3a\x8b\x96\x92\x5c\xd9\x10\xd6\xe7\x7c\xcc\xc6\x24\xe5\x62\xa1\xda\x6d\x60\xbd\xf6\xdb\x03\x19\xa4\xe1\x40\xb0\x06\x80\x4c\xa6\x2e\x20\xec\xd1\x8e\x61\x15\xe5\x16\xf2\xe3\x3e\x94\xa7\xce\x32\xd6\x08\x85\x3e\x89\x2b\xc3\x21\x3d\x0d\x9b\x73\x65\xd8\x3c\xb7\xde\x32\xcf\xa8\x97\x85\xb8\x28\xb2\xdd\xbe\xb9\x47\x21\x8d\x32\xf6\xba\x9d\xc8\x95\x2b\x9c\xf6\xa5\x8a\x7d\xc9\x52\x35\x22\xa9\x5c\x8f\x0d\x45\x43\xab\xdd\x1d\xb3\xc1\xf3\x24\xa5\x3c\x6b\xae\x3c\x58\x7e\x8c\xc8\x6a\x4b\xe3\xfb\x30\xa5\x33\x99\xeb\x1e\x84\xe4\xa9\x24\x47\x21\xb5\x79\x7d\xfd\x6e\xc6\x05\x36\xee\xf0\xe8\x81\x26\xed\x9e\x75\x03\xc1\x18\x08\xc6\xbf\x36\xc1\x10\x52\x3b\xb6\xaa\x11\x2c\xed\x5e\x37\x3d\xfd\x6d\xfa\x79\xda\x6c\x39\x84\x3a\x96\xaf\xc3\x27\xd4\x36\x6b\x06\x58\xc7\x3b\xee\xe1\xda\xf3\x30\xa7\x9e\xf4\x9f\x15\xb8\xb7\x7b\x3e\x6c\x9f\x90\xf6\x6f\x19\xb6\x40\xc3\xeb\x73\x02\x0e\x26\x63\xb8\xf5\x3c\x6b\xd3\xcc\x5b\xef\x5c\x7b\xce\x67\x10\x6a\x74\x05\x91\x72\x2e\xea\x0b\xd5\xe6\xcf\x67\x2c\xa2\xb9\xb2\x3e\x71\x1d\xa6\x84\x62\x89\x11\xcb\x60\x8c\xc2\xaf\xee\x05\xaa\xe2\x5d\x1d\x8f\x8a\x97\x60\x17\x89\x45\xf7\xc1\x23\xdf\x03\xee\xc0\xf7\x7f\xc3\x3f\x40\x52\xa9\xfc\xb5\x7e\x5b\xfe\x7d\x7d\x72\x83\xbf\x36\x4f\x63\x47\x3c\xe7\x9a\x39\x27\x3b\x28\xa3\x0a\x17\xc4\x19\x65\xb1\xd4\xe4\xab\xd1\xeb\x6f\xbf\x6d\x51\xf9\x7f\xbd\x6b\xaf\x9a\x4a\x4a\xe0\xa7\x6a\x68\x2d\x4a\x4a\xf4\x88\x4a\x6b\xa8\xd6\xeb\xcf\x3a\x04\xa4\x0d\x01\x69\x3d\xcc\x9e\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x4d\x3b\x1e\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x6b\xda\xc9\x80\xcb\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\x34\xfc\x0c\x01\x69\x43\x40\x5a\xfd\x33\x04\xa4\x0d\x01\x69\xc5\x67\x08\x48\x1b\x02\xd2\x86\x80\xb4\xe0\xa0\x43\x40\x9a\x07\x8b\x21\x20\x6d\x08\x48\x1b\x02\xd2\xaa\x9f\x5f\x33\x20\xad\xa3\xd6\x39\x66\xf1\x0d\xfd\xf6\xe0\xaa\xe6\xf6\x6d\x3c\x20\x7d\x77\xf5\x55\x0d\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\x21\x7f\x77\x78\x79\x43\xfe\xee\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x2a\x3f\x83\xbb\x54\xf9\x19\xdc\xa5\x06\x77\xa9\x7f\x2a\x17\x83\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\x60\xe3\x7f\x31\x5c\x36\xb8\x4b\x0d\xee\x52\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\x83\xbb\x54\xe0\x33\xb8\x4b\x0d\xee\x52\xc5\x67\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xe0\xa0\x83\xbb\x94\x07\x8b\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\xaa\x9f\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x5d\xf9\x0c\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\x5e\x33\x0c\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\x21\x1d\xeb\x90\x8e\x75\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x37\xaf\x7f\xc8\xdf\x3d\x10\x8c\x81\x60\x0c\xf9\xbb\x87\xfc\xdd\x95\xcf\x90\xbf\x7b\xc8\xdf\x5d\xfb\x0c\xf9\xbb\x9b\x05\xc8\x21\x7f\xf7\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\xfe\x67\x08\x48\x1b\x02\xd2\xfe\xa9\x82\x38\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x82\x8d\xff\xc5\x70\xd9\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x81\xcf\x10\x90\x36\x04\xa4\x15\x9f\x21\x20\x6d\x08\x48\x1b\x02\xd2\x82\x83\x0e\x01\x69\x1e\x2c\x86\x80\xb4\x21\x20\x6d\x08\x48\xab\x7e\xfe\x67\xe7\xef\xee\xe3\x76\x10\x3e\xea\x76\xee\x60\x8e\x5e\x22\xa5\xc4\x1e\x5a\x75\xae\x50\x16\x41\xfc\x68\xc9\x36\x26\xc1\x96\xa2\x62\x2b\x6c\xd8\x52\xf8\x54\x20\xd1\x78\xd7\x3e\xfe\x3f\xf6\xfe\xbe\xb9\x8d\x1b\x4b\x18\xc5\xff\xff\x7d\x0a\x8c\xbc\x55\xb6\xf7\x11\x29\xc7\x49\xbc\x89\xa6\xa6\x7e\x25\x4b\x72\xc2\x1a\x5b\xe6\x23\xc9\xc9\xec\x0d\x67\xbd\x60\x37\x48\xe2\x51\x13\xe8\x69\xa0\x25\x73\x32\x53\x75\xbf\xc3\xfd\x86\xf7\x93\xdc\xc2\x39\x40\x37\xba\x1b\xfd\x42\x59\x4a\x32\x9b\x66\xd5\x4c\x2c\xb2\x1b\x38\x38\x38\x38\x6f\x38\x2f\xef\xcd\x43\x1d\x32\xa9\x4a\xc8\x12\x9f\x0e\xae\x02\x43\x09\xb1\x16\x34\x38\x7f\xcc\xa0\x70\x5b\x1a\x4f\xd1\x1f\x54\x78\xb3\x37\x7c\x6d\x8c\xeb\xc5\x01\x8c\xb7\x38\x00\x15\xc0\x3e\x1b\x1a\x9a\xae\x8c\x51\xa8\x41\xe9\x84\x01\x12\x79\xc7\x32\x84\x06\x43\x33\x3d\xe0\x14\x91\x5b\xae\xb5\x91\x25\xdc\x65\xf5\x84\x06\x8d\xa4\x50\x1c\x4b\xb1\xa3\xdf\x72\x71\xc0\xc5\x8a\x0b\xae\xd9\xe2\x80\x4c\x08\x04\x04\x7a\xcb\x71\x92\xca\xc2\x49\x12\xaa\xf4\x94\x14\x2b\x0b\xa2\xc4\xc0\xca\x63\x26\x34\x8f\x68\x62\x01\xac\x8f\xc3\x05\xa1\x49\xba\xa1\x22\xdf\xb2\xcc\x7b\x0e\x08\x20\x34\xaa\x95\x4f\xd6\xc5\x86\x51\x2f\x41\x9b\x1b\x89\x43\xe4\xdb\x65\xd3\xfb\x99\x66\xec\xec\xe2\xe4\xba\x8f\x3c\xe6\xf8\x18\xe1\x22\xe6\x11\x7a\x76\x8a\x0c\x94\x8d\x2b\xaf\x5e\xe5\x2a\x64\xc9\x56\x32\xac\xba\x51\xb1\x23\x66\xb8\x56\x58\x97\x52\x26\xac\x19\x98\xd1\xa1\xb7\xd7\xb4\xac\x6b\xdf\x4f\x86\x54\xed\x79\xcb\xdc\x41\x4b\x79\x74\x83\xff\x27\xf3\x20\x03\x32\x6b\xab\x79\x3d\x3c\x4a\xb0\xf9\x32\xde\x1e\x6a\xe9\x94\x8e\x76\xdf\x4d\x09\x87\xd1\xdd\x92\x44\xde\x21\xd6\xd0\x85\x57\x38\xb5\x50\xb3\xfe\x13\xfa\x77\xf0\x60\x7f\x4c\xb8\x66\x19\x05\xd7\x4a\x68\xe4\xc5\x82\x4c\x30\x5f\xcc\x50\xf5\x36\xa5\x19\x57\x52\x1c\x12\x48\x1a\x75\x7e\x19\x37\xe4\x4a\x4a\xb2\xa4\x19\x38\x8b\x8a\xe9\xfe\xb0\xe7\x74\xe5\x7c\x46\xb5\x62\x7f\xcb\x69\xf2\x47\x0c\x71\x76\xa6\x02\x5f\x59\x1b\x81\x2b\x78\xc6\x5d\x7d\x14\x53\x86\x99\xc8\xcf\x00\x07\x2d\x03\xf3\x96\xe5\x3f\x23\xfc\xe7\x74\x3a\x25\xff\xf4\x20\xd0\x59\xce\x5c\xa6\x52\x11\xec\x8b\x73\xfc\x85\x84\x93\x0b\xec\x9d\x4f\xcf\x54\x25\xac\x66\x01\x5c\x0c\x00\x2e\x34\xd9\x9e\xf0\xc2\x64\x5d\x00\x86\xb7\xc4\x83\x79\x43\xd5\x33\x18\xef\xa3\x11\x1d\xcf\xcb\xa9\xaf\x8b\x99\xa9\x2e\x77\xc7\xdb\x99\x3f\x00\x91\x06\x85\xae\x1d\xa2\xf0\x0f\xcb\x15\x3c\x0b\xee\x41\xf8\x6f\xfe\xe2\xc5\xcb\x57\xf8\xff\xf8\x4b\xf1\xce\xd5\x46\x66\x7a\x12\xf1\x2c\xca\xb9\x06\xb5\xd6\xbe\x14\x9a\xe8\x1f\xff\xe8\x7c\x1b\x2e\x92\xf4\x33\x7c\xe6\x79\xf1\x50\x4a\x33\x66\x4d\xa2\x75\x26\xf3\xd4\x98\x44\x8b\x85\xa6\x49\xf2\x2c\x78\x21\x68\x7b\x0a\x60\x58\x50\xc1\x2f\xdc\x68\x8e\x86\x69\x92\x78\x3e\x3e\x38\xa0\x6f\x91\x1e\xd0\x88\x6d\x61\x72\xe6\x68\x23\x9f\x71\xa1\xb2\x3e\x7f\x57\x87\x64\x72\x48\x3e\x02\x1e\x8e\xa6\xe4\x0a\x8e\x1c\xb1\x47\xae\x75\xd0\xad\xcc\x18\x49\x8d\xfd\xa5\x14\xbf\x65\x64\x89\x49\x1e\x3b\xe7\x5f\xb6\x9e\x7f\xc2\x54\x44\x53\x46\xa2\x0d\xcd\x68\xa4\x59\x66\xc1\x3e\xc7\x58\xf9\xe0\x61\x78\x06\x52\x6a\x4b\x63\x36\xc9\x53\x24\x0b\xf5\xbc\x60\x47\x90\x59\x68\x59\xc7\x1d\x5b\x1a\xcb\x8d\x59\xe6\xe1\xef\x78\xcc\xd2\x44\xee\xb6\x4c\x04\xd9\xa9\x7d\x3f\xcd\x64\xec\x88\x14\xc6\x35\x67\x0a\x78\x52\x26\x85\x66\x22\xf6\x48\x9d\x46\x37\xf6\x8b\x7f\x9a\xc7\xcb\xf1\xc9\x1f\xfe\xd4\x76\x02\x62\x76\xeb\x86\xff\x03\xa9\x9d\x82\x10\x2b\xeb\x52\x9e\xaa\xde\xd8\xa1\x5a\xe1\x55\xf0\xad\x47\x53\x0d\x2d\x90\xce\x59\xb3\xaf\x82\x08\xb7\x3e\x03\x64\x2a\x5c\x0e\x95\x1a\xc0\xdd\x06\x32\xd6\x2b\x32\xdf\x0b\x8b\xb3\x66\x66\x90\x4f\x99\x73\x27\x6d\x07\x95\x43\xfb\xd7\x52\xea\xcd\x94\x60\xa4\x2a\x48\x93\x4f\xa9\xd1\xa8\x74\xb2\xf3\x8c\xd9\x67\xd0\xfd\x25\x18\x82\xec\xf1\x51\x41\xa2\x8c\xd9\x04\x19\x65\x4f\xb7\xcc\x88\xe0\xc9\xf3\x43\x97\xe4\x12\xb3\x15\xcd\x13\xad\x08\x2e\xcb\xa0\x2e\x8b\x5b\x6c\x1a\x2d\xc9\x9d\xe1\x95\x33\x6b\x39\x1b\x20\xce\x3d\x23\x1a\xf4\x56\xc7\x3f\x8b\x46\x28\x18\x76\xd9\x96\x27\x6f\xe7\x27\x5c\xe1\x19\x9b\x90\x9f\xac\x2a\x67\x00\x72\x33\xfd\xf5\xd0\x8a\x08\xa3\x18\xc3\xed\x4d\x65\xe2\xe0\x39\xe6\x22\x4a\xf2\xd8\x5d\x70\x46\xd4\x28\xcb\x30\x40\x39\x0c\x41\x21\x2d\x64\xb1\x24\x18\xee\x79\x5b\x74\x65\x15\xb8\xf3\x30\x6c\x15\x8c\x18\xc6\x54\x0e\x1f\x34\xee\xe0\xb9\xd6\xa5\x1f\xf6\x4e\x18\x1a\x14\x7c\x8b\x6d\xdb\x84\x3c\xf0\x47\xeb\x58\xf4\xcc\x93\x8c\x51\x73\x9a\xa2\x1b\x42\xd7\x94\x8b\x20\xc9\x22\x99\xe0\x85\x54\x72\x47\x77\xaa\x91\x9f\x80\xd1\x22\x87\x44\xb0\x5b\x96\x55\xa8\x2e\xe8\x64\x19\xd8\x65\xa9\xc4\x02\x61\x20\x3a\x8a\x7b\xd5\x54\x2a\xc5\x97\x89\x9b\xb8\x0c\x87\x33\x2f\x5c\xa5\x2c\x0a\x9b\xdd\xb8\x90\xf6\x00\xc1\x6e\x03\xbf\xd5\x76\x0e\x9b\xdc\xcd\x6f\x41\x72\xc4\x7e\xd8\x83\xd2\x32\xa3\x6b\xe6\xbe\x52\x9a\xea\x1c\x11\x83\x37\x7f\x2c\xbe\xf0\xee\x64\x6e\xb8\x88\x0d\x37\x72\x28\x4d\x93\x3c\xa3\x49\xf9\x4d\x24\x05\x5e\xc4\xab\x63\xf2\xd3\x5f\xcd\x37\x66\x7c\x16\xdb\x44\x5b\xfb\xed\x42\x4c\x26\x93\x85\x78\x62\x93\x1f\x8e\x49\x04\x5c\xe1\x48\xb3\x6d\x0a\x7d\xac\x8e\x6e\xe2\x78\x12\x65\xb1\x9a\xee\xe8\x36\x59\x08\x9a\x72\x97\xd9\x4b\x68\xca\xd9\x27\xcd\x04\x8c\x37\xbd\xf9\x46\x4d\xb9\x3c\xba\xfd\x62\x21\x10\xb6\xd3\x5c\x69\xb9\xbd\x64\x78\xf7\x78\xc6\xc0\x96\x04\xbe\x5e\xc9\x9f\x05\x8f\x19\xc1\xe8\x6b\x81\x91\xca\x8a\x69\x35\x8d\xb2\x78\x9a\x66\xd2\x60\x0c\x81\x9a\xca\x6c\xbd\x10\x86\x07\xc2\x7b\xa0\xd8\x1c\x93\x96\xc7\xaa\x17\x58\x08\x50\x3d\xa8\x1a\x7f\x4b\xb8\xd2\x7f\x0e\xfe\xfe\x96\x2b\x5d\x45\x6e\x03\x4a\xbb\x73\x5c\xac\xf3\x84\x66\xcd\x07\xcc\xef\xc0\x10\xb3\x5b\xf6\x41\xdc\x08\x79\x27\xde\x18\x8a\x53\xc7\x64\x45\x13\x05\x3b\xaf\x22\x69\x88\xe3\x34\xc9\x95\x46\xc3\xf4\xd6\xed\x91\xf9\x63\x62\x31\x64\x10\x0b\x93\x45\x1b\xb6\x2d\x53\x8f\x65\xca\xc4\xc9\x7c\xf6\xc3\x97\x57\xd5\xef\x6b\xc7\xa7\x11\x50\x5e\x49\xe9\x80\xc0\x04\x9a\x2d\xb9\xce\x68\xb6\x23\xb3\x39\x51\xf9\x72\xe2\x96\x71\x74\x3a\x3b\xbb\xac\xf0\x2e\x74\x85\x6c\x0c\xb7\x43\x05\x09\xcc\x60\xb0\xe1\x90\x9d\x69\x89\xd9\x85\x36\x0a\x64\x4b\x6e\x39\xf5\xe2\xf1\x30\xd2\x02\x5f\xf5\xc7\x95\xab\x26\xa0\xee\xb2\xbe\xf0\xfb\xf8\xc7\xb5\xc5\x2f\xeb\x51\x69\xf5\x74\x56\xcb\xa5\x18\xbc\xd9\xb0\x14\x4c\xe3\x40\x86\x62\xd1\xcf\x62\x8b\x6b\xe4\x28\xc0\x1f\xad\x70\xa3\x21\x87\x9b\x41\xa1\xb0\x67\x7c\x0a\xaa\x0f\xcb\x94\x33\x8e\x23\x29\x6e\x59\xa6\x49\xc6\x22\xb9\x16\xfc\xef\xc5\xe0\xca\x05\xca\xc0\x71\x6b\xa8\x8b\x5c\x68\x96\x19\x25\x09\x98\x1b\x5e\x07\x6c\xe9\x8e\x64\xcc\x4c\x43\x72\xe1\x0d\xe8\xc2\xf4\xde\x19\xe5\x98\x8b\x95\x3c\x86\x42\x56\xea\xf8\xe8\x68\xcd\xb5\x3b\xa0\x91\xdc\x6e\x73\xc1\xf5\xee\x08\xae\xee\xf9\x32\x37\x5b\x72\x14\xb3\x5b\x96\x1c\x29\xbe\x9e\xd0\x2c\xda\x70\xcd\x22\x9d\x67\xec\x88\xa6\x7c\x02\xb0\x0b\xe0\x25\xd3\x6d\xfc\x24\xb3\x27\x5a\x3d\x0d\x71\xbe\x26\xc3\x84\xc3\xd7\xb5\x0d\xe6\xf4\xd9\xec\x6f\xd4\xfe\x51\x7d\x29\xb0\xed\x44\xf8\xe5\xf9\xd5\x35\x71\xb3\x07\x33\xe5\x11\xf9\xe5\x9b\xaa\xdc\x07\x83\x34\x2e\x56\x4e\x4f\x83\xdb\x12\xdf\xad\x81\x4a\x42\xc2\x03\x2a\xbb\xca\x97\x5b\xae\x95\x57\x01\x49\x4e\xc9\x69\x71\x8d\x92\xa7\x31\xd5\x2c\x9e\x92\x99\x20\xa7\x74\xcb\x92\x53\xaa\xd8\xa3\xef\x02\x28\xab\x13\x83\xdb\xa1\xfb\xd0\x52\xb5\xa0\xcd\x47\x5c\x30\xda\x96\x6d\xab\x1f\x54\x23\x69\xab\xc9\x73\x2e\xd7\xb2\xac\x6e\x40\x49\x9d\xfb\x96\x1f\xb7\xb1\x35\x61\xdc\x71\xf3\xd2\x92\xe6\xd1\xe8\x30\xe9\x22\x51\x67\x73\xe2\x58\x1a\x72\xb0\x25\x4b\xa4\xa1\x2d\x69\x3d\x4f\x2c\x74\x5f\xdf\xae\x9f\x8c\x1a\xc2\x2f\xa9\x21\x6c\xa4\x2a\x23\xaf\x1e\x41\x3b\xf0\xd3\xab\xea\x9a\x81\xff\x5b\x53\x2b\xa8\x40\x56\xd7\x08\xfc\x1f\x7f\x4d\x6d\x60\x94\x94\xa3\xa4\xf4\xb7\x60\x94\x94\xbf\x98\xa4\xf4\xb9\xc7\x30\x29\xd9\xe4\x45\xe5\x67\x7f\x39\xc9\x3e\xa5\x10\x67\x32\x9b\x0f\xf1\x6e\x99\x9d\xb6\x2f\x54\xb3\x0d\x9f\xcd\xe6\xb7\x5f\xc1\xb1\x9a\xcd\x6f\x5f\x3d\x77\x76\xb6\x23\x8b\xa0\x11\x3d\x43\xa7\xfd\xcc\x9c\xcd\x15\x8d\x18\xdc\xcd\x2d\x16\x07\xb5\x6b\x90\xc2\x1b\x05\x7e\x85\x44\xca\x1b\xe7\x0e\xe4\xee\xcd\xa0\x17\xd8\x85\xfb\x78\x59\x90\xb3\x79\x25\x00\x0f\x13\xb7\xe1\x82\xce\xfa\x39\x80\x89\x50\x3d\x85\xa0\xf6\xa0\x5c\x5f\x2c\x34\x38\x47\x72\xd5\x88\x8e\xaf\xd5\x03\x80\x04\xcc\x22\x90\x44\x66\xd6\x95\x17\x1a\xb4\xde\xbe\x79\xb1\x30\xe3\xd9\xbe\xcd\xc5\xfa\x2d\xf3\x53\xd5\x59\xb9\x08\x57\x1b\x28\x4c\x37\x7f\x9f\xa6\x90\xf9\x6b\xc4\x4e\x25\x56\x19\xa3\x24\xce\x4b\x52\x40\xd7\x47\x68\x58\xae\xd0\xcf\x8a\xf5\xa8\xa8\x26\x69\x9e\xa5\xd2\x9c\xd4\x67\xb3\x95\x0d\x8d\xda\xb0\x72\x6b\xcc\x3c\x2e\xf6\xb1\x3b\xc0\xca\xf9\x1c\x25\xc3\xed\x4f\x18\xcd\x44\xb1\x6d\x76\x07\xcb\x71\x0d\x00\xb9\x02\xbf\x78\x6b\x50\xc7\x62\xa1\xdd\x76\x4c\x83\x5e\xed\x07\xd7\xdf\x48\x09\xe1\x45\x38\xda\xa7\x76\xa4\xce\xb1\x84\xa6\xa1\xfb\x7f\x47\x97\xbe\xbd\x6f\x29\xe3\x7c\x8a\xb2\x24\x6f\xb9\xc8\x3f\x75\x53\x7d\x71\xe3\x5c\x10\xf4\x1f\x81\xf4\xb6\xa9\xde\x4d\x49\x39\x8d\x7f\x49\x8d\x37\xb6\x5c\x75\x72\x16\xf3\x59\xcb\x5b\x96\x09\xbc\xeb\x29\xe2\xdf\xe4\x61\x19\xf3\xb6\xc9\x64\xbe\xc6\xb8\x06\xe7\xba\xb5\x4a\x75\x77\x5a\xbe\xdd\x5c\xa0\x4b\xf3\x60\x51\x94\x00\x9b\x79\xc7\xc8\x16\x80\x26\xff\x48\x98\x59\x3f\x1e\xec\xd8\x10\xc9\x2d\x1e\xc4\x70\x99\x8a\x32\x9a\xe8\x16\xfa\xab\xef\x4a\xf4\x1d\x12\xdf\x09\x2c\x15\xe6\x32\x1c\x69\x09\xb1\xf1\x06\x16\xe7\xe4\x08\x87\x16\x24\x32\xa2\x49\x91\xd8\x6e\x1d\xa7\xb3\x15\xa9\xf0\x33\xc7\xcb\xbc\xfd\x1d\x84\x6a\x38\x48\x0e\xdf\x95\x58\x43\x58\x3e\xf0\x13\xb3\x76\xab\x6b\x01\xe6\x3c\xf4\x07\x99\x8c\x23\xa3\xf2\x0c\x15\xb8\xae\xc0\x0c\x24\x38\x21\x77\x86\xcd\x55\x99\x73\x98\x1f\xa0\x17\x77\x52\xd9\xfe\xc0\x64\x45\x2e\x62\xe9\x10\x36\x27\x3b\x38\xa8\xf0\x99\x11\x94\xd1\xcd\x20\x50\xe2\x30\x00\x55\x01\xc2\x21\xa1\xc0\x35\x9a\xea\x1f\xb1\xf7\xd8\xbe\xec\x2a\xba\xa7\x97\x45\xc6\x30\x9d\xca\x18\x25\x19\x96\xdf\xb3\xb3\x28\xf2\x4c\xe5\x61\x0e\x43\x15\x6c\x2d\xd3\x9b\x17\xe6\xbf\xcf\x6d\x2e\x10\x5c\x30\xb2\x98\x18\xb8\xff\x48\xb8\x26\x5c\x89\xa7\xba\xf4\x46\xf7\x4b\x72\x82\x87\x39\xcd\xa4\xd1\x5e\x3c\x12\x40\x1c\x7b\x5c\xa1\x4a\x87\x25\xd4\x41\x99\xeb\x12\xb6\x8e\x71\xad\x90\x1f\x09\xda\x0f\xe6\x50\xe2\xfd\x94\xd1\xb8\xb6\x69\xc2\xb6\x86\xd6\x90\xd5\x97\x8c\xc3\x07\x5a\xfd\x31\xbc\x7b\x5c\x73\x9a\x24\x3b\xf2\x7f\x0c\x8e\xd3\x8c\x4d\x20\x2e\xa6\xb8\xed\x99\x9b\x4d\x62\xb6\xd8\x71\xc1\xf6\xa3\x7c\xdb\x66\x13\x98\x8f\xeb\x6d\x8f\x0a\xbe\xed\xa1\x2f\x45\xf0\xda\xa0\x8b\x79\x8b\x70\xa5\xbb\x86\x63\xc0\x3c\x67\xa3\xf6\x21\x28\x69\xb5\x73\x02\xdf\x42\x0c\x0f\x70\x63\x68\x8b\x20\xb2\xbb\x80\x68\xcb\x18\xae\xdd\x6a\x18\x61\x5f\xd1\x07\xbd\xe8\x5d\x3c\xbb\x36\x99\xd5\x55\x3e\x0e\x46\x02\x2f\x19\xfa\x5b\x99\x88\x30\x84\xaa\x50\x37\xec\x86\xdb\x20\xd7\x3d\xa4\x63\x6f\xc8\x6b\x67\xa8\x6b\x7f\x78\xa4\x59\x56\xcf\xeb\x9d\x99\xaa\xbf\xa5\x8a\x66\x8f\x55\xc0\xaa\x27\xf0\x53\xb4\x30\xec\x09\x20\xb7\xe5\x97\x8e\x12\x75\xf7\x0e\x17\x4d\x51\x8d\xed\x25\xf7\x93\x32\x2b\x1c\x0f\x1c\x07\x39\xb7\xf2\xb4\x63\x1c\xc9\x02\xd1\x5e\xf8\xb3\xcc\x12\x31\xa2\xb6\xb0\x41\xb0\xe0\xbb\x05\xc7\x8b\xb8\x74\x26\x01\x86\x12\xb6\x0d\x8a\x69\x16\x69\xca\x68\x56\x04\xf1\x41\x16\x0f\x29\xe0\x2a\xef\xb9\xdd\xc8\x2e\x18\xb3\xd4\xd7\x27\xad\xa1\x8a\xb5\x53\x39\x7a\x1b\x7f\xb3\xde\x46\x9e\xd2\xed\x32\x91\xd1\xcd\x63\xb8\x1a\x67\xf3\x93\x77\xaf\xcd\xe0\x75\x3f\x63\xf1\x43\xd3\xc9\x58\x02\x54\xf7\x30\x16\xbf\x8c\xee\x45\x0b\xe5\xe8\x5e\x1c\xdd\x8b\xbf\x1f\xf7\x62\xc1\x34\x06\xf9\x16\x45\x9d\xfb\x94\x9f\xfd\x3d\x8b\xc6\x60\x31\xb8\xeb\x95\xfb\xf6\x39\x67\x13\x02\xbb\xb2\x51\x4c\x5c\xe1\x9f\xce\x6e\xc4\x3c\x3d\xa6\x83\x0e\x24\xae\x8b\x7c\x01\xaf\x23\x09\x59\x1c\x18\xeb\xf8\x18\xbb\x86\x98\x7f\x82\x66\x04\xd1\xab\x8b\x03\x18\x10\x82\x42\x99\x3e\xf4\x26\x6c\x31\x75\xcd\x93\xb0\x2e\xec\x81\x03\x76\xf7\x9e\xaa\x3f\x4d\x8c\xc1\xd6\x56\x65\xbd\x8a\x19\x23\xb1\x81\x63\x95\xef\x10\x2e\x26\xb9\x4d\xed\x70\x6a\x08\x40\x3c\x25\x82\x27\xd0\xce\xa6\x25\xc1\x62\xcb\x28\xea\x39\xe5\x68\x04\xce\x18\x63\xe8\x16\x14\x52\x4c\xbc\x31\x8c\x35\xcd\x45\xcc\x3e\x11\x7e\xd8\xe6\x53\xb0\xbf\x17\x09\x2f\xdc\x30\x41\x8b\x7c\x6f\x9a\x06\xb0\xc0\x21\x5b\xc6\x44\xbe\x62\xc7\xc4\x09\xdc\x88\x4a\xc9\x88\x43\xc5\x10\xaa\xf1\x38\xb2\xc2\xa1\x7b\x52\x7c\x13\x54\x09\x0d\x2a\xef\xa1\x52\x75\x58\x00\x4f\xc8\xf5\xfb\xb3\xf7\xc7\x58\xf8\x48\xe4\x49\x42\x97\xa8\x56\x6e\xa9\xc8\xc1\xfc\xa5\x71\x0c\xda\xe5\x94\xfc\xc8\x9c\x88\x41\x3e\x44\x8a\xca\x08\xd9\x64\x1d\xae\x04\xfa\xc4\x50\xd8\x86\x8a\x38\x61\xe4\xa7\xbf\xfe\xbb\x61\x7e\x78\xd8\x92\x9d\x2d\x61\x12\x34\xf0\x1d\x20\x6d\x76\x43\x87\xa2\x5e\xe2\xb4\x97\x30\x3d\xec\x43\xb8\x2e\x2d\x28\xb5\x88\x13\x72\x8c\xcc\xdb\xb5\x10\xbc\x10\x50\x5d\xa5\xef\x92\x0b\x4c\xc9\xb5\x24\x2b\x23\x78\xbc\xfd\x46\xdf\x09\x26\xfd\x95\x2f\x06\x39\x82\x39\x28\x95\xd4\x81\x2a\x5d\x3e\x55\xb6\xfd\x93\x23\x21\x0f\x8c\xd6\x0c\x79\x1a\x20\x4c\x86\xbe\x92\xc2\x2e\xd8\x9f\xda\x7a\x0d\x6a\xa4\x84\x8f\x3c\x6c\xee\x91\x41\x56\xb5\x62\x46\xd1\xa6\x59\x88\x25\xdb\xc5\xed\xd7\xda\x61\x88\xf9\xdb\x97\xbf\x78\x6f\xbb\x32\xe2\x71\x6f\x8c\xf9\xb5\xa3\xa4\xa7\x8a\x9c\xce\xce\x2e\xf7\xe4\xd5\x31\x4b\x98\x0e\x5a\xd8\x95\x59\xce\xf0\x31\x7b\x16\x0a\x65\xd0\x26\x68\x15\x71\xe9\x77\x32\xbb\xa1\x99\xcc\x0d\x39\x7b\xfd\x09\x5a\x1c\xa0\x86\xae\xbc\x4c\xf5\x93\xf9\x0c\x23\x94\x97\x3b\x04\x0b\xf9\x6a\x82\x09\x37\x19\xd3\x79\x26\x08\xb4\x11\x59\x25\x3c\x8c\x69\x96\x65\x32\x73\xd9\x34\xa5\x58\x5d\x32\x26\x3c\xf5\x48\x3b\x4e\xe5\x12\xc1\x99\x2e\x38\xda\xfe\xb9\x68\x7f\xcb\x99\x88\xd8\x05\xa4\xd5\x05\xd1\x08\xb7\x04\xc7\xe4\x45\x0f\x8a\x0d\x03\x35\x26\x21\x5c\x6b\xe1\xa0\x36\x59\x0f\xfd\xca\x5c\xb9\x25\x60\x9a\xbb\xe6\x61\xef\x47\xb9\x74\xae\xc8\x5d\xc6\xb5\x66\xc2\x3a\x06\x2a\xf2\x0a\x22\x98\x95\xb4\x93\xa2\x01\x8f\xd3\x86\x99\x2e\x40\xe2\x2b\x30\xc4\xa6\xc1\x19\x40\xc0\xa7\xa1\x55\x11\x70\x6f\x4b\x4d\x67\x2c\x61\x54\xb5\x1c\x1d\xd0\xc5\x0e\x49\x4a\x95\x77\xd1\x58\x5d\xb8\x27\x0e\x81\x8b\x56\x99\x5b\x70\xd0\x24\x91\x77\x8a\xe4\xca\x77\x2d\x43\x38\xb7\xd2\x84\x92\x8c\x62\x89\x73\x5b\xa4\xcb\xc8\x68\x26\x54\x6e\x11\x30\x0b\x36\xa8\xdc\x50\xf0\x6c\x03\x11\xe1\x82\x8c\x74\x16\x31\xc9\xd8\xc4\x02\x63\xac\x28\x28\xc9\x07\x59\x90\xf8\x8c\x53\xd3\x03\x14\x85\xfd\x59\x40\xf4\xbe\xfa\xaa\x8d\xe0\x5a\xe4\x72\x95\xe0\xde\xc8\xac\x64\xe9\x01\xea\x1b\xcc\xed\x7a\x40\xea\x55\x16\x6a\xfd\x3a\x52\x4f\xa7\x63\x71\xa1\x37\x79\xd5\x1f\x90\x84\x20\x97\xe5\xb3\xa8\xae\x24\x87\xa9\xcf\x4c\xdc\x1d\x6b\x2b\x8d\x90\x32\xc1\xf6\x86\xed\x5c\xfd\x8c\x54\x1d\x12\x85\x76\xf0\x0d\x83\xa4\x80\x88\x2a\x6d\xdb\xab\x01\x03\x6d\x65\x10\x61\xfe\x8e\x85\x60\x4e\x06\x1a\x0a\x57\x95\xa7\x5d\x6a\x6f\x61\xb1\x18\x78\x62\x63\x53\x22\x56\x0d\x0d\x8a\xe0\xcd\x78\x22\xc5\x9a\x65\xc8\x96\xed\x3d\x23\xf6\xad\xf9\xa0\x70\xb8\x53\x29\x56\x7c\x5d\x9f\xcf\x1c\x12\x46\x43\xf9\x00\x9d\x3c\x30\x17\xc5\x4e\xf7\x2d\xf0\x43\xf9\xa8\x4b\x83\xca\x30\xe9\xda\x79\x46\x7d\x45\x09\x7d\xfe\x2d\x39\x1e\x46\xab\xaf\xaa\x52\x0f\xa8\xfb\xb6\x0a\xe5\x16\x97\xf4\xc4\x87\xbb\xf1\x53\x8b\xde\x3e\x01\x01\x5f\xff\xae\x4a\x31\xf5\x5f\x3d\x5c\x8f\x8e\xce\x07\x72\x74\x46\x70\x18\x1e\xcb\xd3\x89\x47\x2d\xe4\xea\xc4\x5f\xc2\xbe\x4e\x0b\x53\xc8\xd9\x19\x15\x03\x8e\xde\xce\xd1\xdb\x39\x7a\x3b\x7f\x77\xde\x4e\xe4\x1b\x7b\xb8\x3b\x7d\x16\x54\x7e\xee\xe1\xef\xcc\xb5\xb4\xea\x26\x03\x85\x24\x24\x5b\x3b\x55\x85\x2d\xfd\x84\x2f\xce\x59\xf6\x3d\xf8\x2c\xfb\x34\xc9\xea\xf3\xe0\x34\x15\x52\x4c\xfe\xce\x32\x79\xe8\x5c\x68\x5b\xfa\xc9\x53\x15\xfd\x6b\xa2\x1a\x68\x50\x56\x8d\x0a\xa8\xd5\x51\xf8\x38\xc1\x9a\x6a\x71\x73\x6e\xe9\x27\xbe\xcd\xb7\xc7\xe4\xe5\x17\x5f\xfd\xc7\x57\xdf\x7c\xf9\xea\xab\xff\x08\x3c\xc4\x05\x3e\x14\x30\xf1\xba\x75\xf9\x3e\xe5\xb0\x03\x97\xed\x8a\x48\x63\x93\xf6\xd1\x30\x46\x35\xe2\xde\x6a\x04\xfa\xaf\x1e\x4b\x8d\xf8\x1e\x46\x0f\xa9\x11\xf8\x4b\x58\x8d\xb0\x30\x85\xd4\x88\x4d\x31\xe0\xa8\x46\x8c\x6a\xc4\xa8\x46\xfc\xee\xd4\x08\xe4\x1b\x7b\xa8\x11\x3e\x0b\x2a\x3f\xfb\xab\x11\x20\xa0\x3f\xc7\x59\x35\xc8\x78\x0f\xfb\x63\xda\xfd\xdd\x9d\x7a\x0b\x32\xcb\xd9\x59\xeb\x7b\x21\xef\x7a\xab\x88\x0e\xdc\xbf\x4e\x8a\x29\x46\x79\xfc\x20\xf2\x38\x95\x32\x79\x1c\x59\x3c\x97\x2e\x7c\xd0\x97\xc3\xe6\xdb\x90\x0c\x06\x38\x9a\xf2\x37\xb5\x83\x8c\xb2\x77\x94\xbd\xa3\xec\xfd\x9d\xc9\x5e\xc3\x2b\x06\xcb\x5d\xf3\xf0\x7d\x6c\x75\xac\x3b\xf7\x41\x0d\x88\x75\x28\x1e\x75\x41\x1b\x0a\x0b\x5d\xe1\xe5\x03\x31\xbc\xaa\x88\x3b\x72\xa9\x71\x50\x68\x35\x24\x9c\x21\xd4\xa8\xa8\xd4\xe5\x32\xb3\x0e\xcb\x4a\x5b\x5a\x92\x9f\x16\x07\xd7\xb9\x10\x2c\x81\x02\x6f\x07\x3f\xda\xcc\x8e\xc5\xc1\x5f\x61\xdd\x4b\x1a\xdd\x4c\xa0\x74\xa5\xe6\x4b\x9e\x34\x8c\x54\xf2\x38\x79\x6d\x20\x96\xaf\xf8\xdf\x07\x25\x4f\xe0\x65\x94\xe2\x7f\x07\x1f\x42\xae\x30\xe3\xa5\xcc\x44\x24\x54\x29\xbe\x16\x5b\x73\x98\x5a\x1b\x62\xd8\x9a\x69\x32\x99\x92\x33\x0f\x3d\x2f\x5f\xd9\xc1\x6c\xc2\xe9\x17\x2f\x5f\xba\x2f\x5e\xb5\x5e\xce\xb4\xa8\x43\x43\x63\x08\x60\x93\xef\x13\x40\xc0\x15\x5d\x26\xec\xf5\x77\xf3\xf3\x4f\x2d\x39\x0d\x55\xa6\x75\x86\x2f\x10\x06\x8f\x1b\x16\x95\xc9\xbc\xa8\x2b\x0f\x18\x99\xcd\x89\xa1\xfa\xa7\x36\xa4\x81\xc8\xdb\x70\x7c\xd2\xeb\xef\xe6\x53\xf2\xd3\x99\xbb\x61\x07\xa1\xf9\xd7\x40\x03\xdb\x4e\xd5\xce\x2e\xa0\xf7\xea\x0a\x2e\xb4\xdd\xc3\xe0\x79\xca\xf2\x32\x73\xd5\xe8\xc7\x65\xb0\x02\xee\x7d\x99\x94\x1a\x02\xbe\x5c\x2e\x10\xc0\x9e\x50\xf3\x94\xa7\xfd\xa8\x2e\xee\x0a\x8f\x2d\xf3\x86\x52\x83\x1c\x1b\xb3\x97\x59\xae\x27\xf3\xd9\xed\x17\x70\xea\xee\x68\x16\x07\xa1\xad\x9c\x46\x23\x1c\xb4\x95\x2e\xfe\xa8\xb0\x74\x64\x26\x87\xd5\x9f\x82\x08\xc0\xd4\x5e\x94\xd2\xe6\x00\x19\xa0\xa6\x81\xed\xeb\x89\x1c\x62\xa2\x6d\xff\xc2\x7b\x68\x9f\x2f\xb7\xd0\xe0\x92\x68\xe0\x47\x66\x4d\x3e\xa7\x0b\x8f\x09\x79\x6b\x31\x4b\xf8\x2d\xcb\xca\xd6\x4a\xe6\xab\xa2\xf1\xa0\xaa\x15\x58\x0f\xee\x30\xe9\xdb\x65\x02\xb5\x3e\x83\xd9\x5c\x8d\xb5\x5d\x03\xb3\x9e\xcd\xe1\x05\x28\x31\x05\xb7\xd7\xc2\x2b\x50\xb7\x38\xc0\x9a\x75\xae\x91\x28\xb4\x27\x9e\x60\xcb\xdc\xc5\xc1\x94\x90\x93\xb6\xf5\x9a\x31\x6b\x23\x94\x11\x24\xb9\xb2\x33\x97\x38\x34\x7b\x6b\x8e\x35\xd0\x48\x6b\xab\x78\x0f\x5f\xd5\x5c\xfb\x06\xee\x08\x39\xf1\x60\xa8\xc2\xdd\x36\x3a\x00\xe8\x08\xbd\x0e\xe0\x9d\x2b\xff\xe7\xc3\x80\xf9\x6e\xe6\x74\xb4\x8d\x49\xcb\xf6\x67\xb6\xd5\xb0\xd3\x42\x5d\x83\x0c\x33\xb8\x70\x3b\x50\x26\x09\x77\xb6\x8d\x7c\xc6\x57\x55\xb1\xf9\xdc\x40\x51\xe2\xba\x93\x74\xba\x05\x5d\xd8\x0a\x36\x14\xff\x6e\x40\x96\xe0\xa9\xd3\x4f\xf0\xce\x31\xcf\x4a\xdd\x24\xb0\xe1\xdd\xa4\x3e\xab\xad\xf1\xd0\xf5\x76\xe1\x0a\xe3\x1a\x00\x51\x18\x47\xb6\x38\xb8\x60\xb7\x50\x0a\xfe\x19\xd4\x5d\xaf\x4e\x16\x1a\xdd\x8c\x60\x79\x73\xa8\xa9\x60\x67\xba\x24\xd5\x13\x99\xeb\xb5\xe4\x62\xfd\x7b\x61\xa9\x9d\x5c\x47\x50\xfd\x7e\x20\x3e\xb0\x4c\x6b\xf9\x7c\xc9\x54\x1d\x5b\x84\x62\xa8\x5e\xc7\x34\xd2\x99\x71\x6e\x15\x62\x63\x77\xf8\xe7\xbf\xc1\x5c\x65\xae\x15\x8f\x59\x61\x60\x16\x2a\x6a\x68\x50\xe8\x27\xa3\xfe\x96\xb3\x8c\xc6\xc1\xe6\x40\xdd\xd8\x90\xf1\xe0\x36\x10\x27\x18\x7d\x66\x95\x76\x5b\x14\xd0\x50\x8b\x0d\xe9\x2d\x32\x9a\x81\xd3\x2c\x77\x58\x03\x30\x04\x73\xd1\x4b\x69\x3f\x5a\xbe\xfd\x94\x50\xf1\x99\x27\xfb\x87\xbf\xbc\x3d\xb9\xf8\xc5\x8e\x36\xcc\x16\xd4\x8d\x0b\x00\xee\x7d\xb6\x5b\x1d\x70\xcd\xb8\x9b\xff\x69\x7e\x36\xfc\x62\x62\xe8\x6c\x92\x2d\x69\xf4\xe8\xfe\x36\xf4\x63\xe1\xf1\x7c\x14\xb7\xdb\x65\x39\x41\xd3\xfb\xe6\xfd\x18\x72\xc2\xf9\xc0\x35\x7d\x71\x59\x75\xe4\xd1\x25\x37\xba\xe4\x46\x97\xdc\xef\xcc\x25\xe7\x31\x90\xc1\x9e\xb9\x06\x47\x2a\x3f\xfb\xfb\xeb\x2c\xd3\x89\xa1\xd8\x70\x9f\xf4\xbe\xf4\x1f\xae\xf6\x9b\xc7\xaf\xa8\x88\x8f\x2a\xee\xa8\xb0\x0f\x02\x02\x62\x1a\x1e\x0c\xf6\x29\x4a\xf2\xd8\x36\x3e\x16\xec\xce\x8f\x6d\x1d\x73\xf6\x7f\xf3\xb2\xf8\x26\x5f\xb2\x32\xf9\x4e\x55\x14\xbc\xc7\x10\xcd\x7f\xce\x97\xec\xb4\x9c\xef\xd4\x9f\xaf\x2e\xa9\xbb\x9e\x6d\x0a\xee\xce\x95\xd4\xe5\x78\xd7\xc3\xa3\x58\xb7\x50\x8e\x62\x7d\x14\xeb\xbf\x1f\xb1\xde\xc5\x6d\x9a\x52\xbe\xd2\x3f\xa3\x8e\x60\x2f\xb5\xc8\x63\x32\x55\xeb\x79\xb8\xb0\xf7\x86\x18\x62\xa8\xbb\xd9\xd0\x73\x8d\x1d\x4d\xdc\xcc\xb6\x17\xcf\x2d\x8f\x73\x9a\xf4\x34\x4c\xf5\xa6\xdd\xdb\xcb\xde\xd7\x03\xb5\xa5\xf3\x69\x0b\xc8\xd5\x36\xa8\x25\x5c\xad\x7d\x47\xcf\xad\xd3\x1e\x72\x43\xc1\x9d\x70\x08\x79\x9b\x5a\x42\x51\x00\x2d\x9d\x8b\xa0\x65\x84\x01\x1d\x6c\x0d\x9b\x12\x11\x4f\x58\x36\x67\x19\x97\xed\x69\xc8\x75\xe6\x70\x59\x7b\xd1\x85\x25\xa7\xf8\x97\x96\xe6\x5f\x50\xa8\xc1\x4d\xc1\x5b\xf3\x17\xdd\xa7\x48\x77\x74\xc5\xe3\xa8\xa6\xa0\x7d\xf8\x17\x5e\x5f\x6f\x43\xb7\x5d\xee\xd3\x9f\xba\xdc\x97\xb8\xdc\x52\x48\xae\x81\x81\x0b\x19\x77\xef\xb4\xf9\xfd\xb7\xb1\xc9\x1b\xaf\xb6\xdf\xd0\x0d\xf6\xeb\x01\x96\x37\xe4\x6a\x27\x22\xe7\xec\x07\x09\x09\x15\x2a\xcb\x12\xed\x5d\xbb\x7b\xe6\xae\x11\xef\xbb\xd2\x81\xab\x25\x36\x68\xff\x34\x63\xb4\xa5\xda\x6f\xcb\x9a\x9f\x9e\x14\xaf\x95\x3b\x9b\x6b\xb9\xa5\x9a\x47\x65\x5f\x2d\xd9\xdb\xe8\xbd\x8a\x15\x30\x9e\xd8\x2d\xcb\x76\xf6\x92\xa4\x24\x66\x87\x93\x2e\x92\x26\x83\x3b\x0f\x0f\xe9\x3b\x9c\x30\x7a\xf3\x5d\x46\x23\xb6\xe7\x79\x7f\x5b\x7d\xaf\x76\xdc\xab\x49\x97\x8e\xe6\xbb\xd6\x04\xce\x6d\xec\xa6\x0e\x0d\x19\xa9\x7f\x1b\x56\x26\xb0\x1b\x70\x8d\x0c\xbf\x42\x3a\x09\x24\x1b\x54\x87\xb4\xf7\xec\xb3\x39\x59\xd3\x6c\x49\xd7\x06\x9c\x24\x61\x11\xe6\xca\x96\x88\xff\xe2\x73\xd9\xc8\xef\x91\x75\x12\x38\xff\xd0\xff\xb1\xeb\xf8\x55\x57\x7b\x55\xbc\xe2\x07\xda\xd8\xf6\x79\x92\x44\x32\xdd\x0d\x6c\x79\x0e\x1c\xb5\xec\x3d\xe4\xd5\xeb\x54\xfe\x2a\x2d\x43\x7d\x5c\x29\x81\xc5\xfc\x86\xc8\x09\x5b\xfb\xbb\x43\x52\xd8\x72\x9d\xbf\x0d\x59\xf1\xfb\xa3\xea\xbe\xad\xae\xb6\xc1\x1c\xb2\xe5\xd5\x16\x98\x5d\x5b\x6f\xc7\x6e\x03\xdf\x36\xb5\xf4\x49\x63\xa4\x81\x5f\x83\x06\x5c\x19\xe6\x1e\x2d\xaa\x7a\x4d\x5c\x7b\xa7\x8b\x0e\xdc\xf8\x6d\x6b\x60\x35\x4d\x6c\xa4\x84\x5f\x87\x12\xba\xb3\x2c\x96\xf9\xda\xd6\x8c\x9d\x0f\x08\x0a\x3c\xab\x3d\xdf\x14\x0b\x99\xc6\x5a\x21\xd9\x2d\x23\x5b\xb6\x95\x59\xb8\x72\x95\x21\xa7\x34\x2f\x0a\xf2\x12\xa3\xe9\x34\x6f\xa7\xf1\xe7\xda\xd5\x72\x77\x9d\x96\x2f\x5f\xb6\x61\xa0\x25\xee\x92\xe9\x28\xfe\xe1\xcb\x53\xb9\x4d\x29\x68\x5c\xad\x44\x53\x25\x96\xf3\xe0\x6b\x35\x92\x59\x32\x7d\x67\x34\x42\x33\xc7\xed\x97\x61\x4b\xdf\x0d\x50\xb8\x84\x4a\xc5\xd1\x3f\x0e\xbe\x1e\xf8\x22\x48\x2f\x5d\x74\xb2\x61\x34\xd1\x9b\xd3\x0d\x0b\xa7\x02\x57\x97\xf6\xbd\xf7\x70\xc1\x00\x64\xe6\x40\x51\x45\xd7\x6a\x63\x23\xe0\xc8\xc1\xa5\xe1\x00\x83\x94\x9c\x2e\xd8\x13\xb9\xbe\x32\x96\x08\xd7\xbb\xab\x28\x63\x2c\x54\x3e\xa7\xa6\xf7\xd7\xdf\x70\xdb\x92\xc8\x35\x51\xf6\x17\x42\x97\xf2\x96\xd9\xd2\x25\x89\x5c\xb7\xd4\xea\x63\x18\x18\x63\x1d\xab\x4a\xc7\x32\xd7\xfe\x66\xcc\xc4\x4a\xee\xbb\xa2\x34\x93\x5b\xa3\x4c\xe6\xea\x1d\xd3\x19\x8f\xd4\x90\xa3\xf7\x74\x1e\x7a\xcb\xad\xec\xfa\x74\x6e\x0f\x9f\x8b\x07\x2f\x1f\x0f\x2d\x6c\x8b\x43\xe0\x41\xcd\x9c\x67\x79\xc9\x45\x0c\x1e\xc9\x1e\x0a\xfc\xf6\xc5\xb7\x5f\xb5\x2f\x3a\x78\xd0\xda\x43\x3c\xda\x7c\x5d\xad\xce\xc4\xf2\xb2\xa8\x05\x55\x9d\xee\x44\x78\xdb\x73\xeb\xda\x7d\x35\xdf\x06\xbc\xf0\xd6\x38\xf4\x7c\x87\x64\xa6\x9f\x42\xe3\x99\x55\x9e\xe0\x15\x63\xbc\x05\xcf\xa4\x84\x6c\x75\x63\xc9\x01\x03\xc4\x1a\x53\x34\xd2\x39\x6d\x04\x0e\xe1\x88\xb8\x57\x77\xb4\xa8\xfe\xed\x8a\xe7\xdb\x60\xd0\xad\x8c\x31\x36\x7f\x69\x54\xf1\x5b\x9e\x49\x88\x52\x27\xb7\x34\xe3\x70\x10\x1b\xf0\x62\xa4\xe4\x4d\xbe\x64\x13\xdf\xf9\x99\x66\x32\x62\xaa\xee\xe9\xe8\xea\xc4\x54\xce\xf6\x03\x0d\xba\x3e\xf7\x4c\x01\x6c\x93\x5e\x95\x6d\x3b\xaf\xce\x5a\x6f\x37\x10\x40\x40\x4b\x00\x68\x10\x09\x58\x9b\x4d\xac\x92\x1c\x9b\x0f\xc0\x2d\x40\x2e\x04\x17\x6b\x24\x90\x3d\x0b\x46\x65\xfe\xbb\xbd\xf7\xc0\xfe\xc3\xb5\x85\xad\x56\xc6\xd4\xbf\x65\x15\xaa\xe0\xca\x4d\x10\x5a\x20\x6f\xdb\x68\x19\x1f\xda\x42\xef\x5b\x96\xad\xdd\x65\xc7\xc9\x7c\x56\xde\x75\x18\x8d\x24\x2c\x92\x5b\xa8\x2c\x80\x97\x1e\x2d\xac\xdb\x6b\xde\x40\xce\x43\x7a\xce\x49\x9f\xf7\x7c\x00\xf8\x64\x80\x17\xbd\xb1\x88\xfd\x3c\xe9\x5d\x2a\xe3\x43\xaa\xcb\x03\x57\x4b\xf6\x53\x9b\x1b\x8b\x1f\xae\x3a\xf7\x79\x21\xab\x9a\xf5\x20\xf5\xb9\x6f\xc8\x6e\xed\x9a\x3c\xa8\xa7\xb2\xc3\x11\x4f\x1e\xcb\x19\x4f\x1e\xc0\xc9\x42\x86\xd3\xc9\x40\xc7\x7c\x63\xb9\x7b\x38\xe7\xfb\x76\xb4\xf4\xdd\x3f\x8c\x83\x7e\x8f\xd5\x93\x7d\x1c\xf5\x0d\x1c\x0c\x73\xd6\xf7\x0f\x0a\xaa\xc9\x83\x3b\xec\xc9\xe0\xa3\x40\x06\x1e\x07\xb2\x97\xf3\x9e\xdc\xdf\x81\xdf\xb7\xb0\xf2\x18\xed\xe9\xc4\xef\x1b\x38\xa0\x28\xf7\x3a\xf2\xfb\xc6\xec\xf1\xf3\x93\x3d\xb6\x69\x64\xea\xbd\x28\x1a\x74\x3d\xd0\x44\xce\xc3\x5d\x11\x90\x07\xbd\x26\x18\xbe\xf4\x21\x07\xb8\xf3\xca\xa0\x81\x94\x87\xbc\x36\x20\xbf\xac\x54\x1b\x0f\xca\x03\x50\xcb\xa0\x5b\x07\xf2\x68\x37\x0f\xe4\x91\x6e\x1f\xc8\x48\x46\xbf\x28\x19\x0d\xbc\xb8\x20\x8f\x79\x79\x41\x1e\xeb\x02\x83\x8c\xc4\xf4\x0b\x12\x53\xdf\x13\x03\xee\x3f\xc8\x63\xdd\x81\x90\x87\xbf\x07\x21\xfd\x77\x21\x64\x48\x3f\x99\xc1\x77\x22\x0d\xe4\x3c\xd4\xbd\x08\x79\xd8\xbb\x11\x32\x80\xa6\x7a\xee\x48\x9a\x4b\x7d\xa0\x7b\x12\xb2\xe7\x5d\xc9\x90\xb5\x0c\xb9\x33\x69\x2e\x68\xef\x7b\x93\xb6\xe5\x24\x72\xad\x3e\xe3\xee\x64\xc8\x0a\x87\xde\xa1\x34\x57\xf9\xa0\xf7\x28\xe4\x73\xef\x52\xda\x06\x6d\xbb\x62\x21\xfd\xe7\xb7\xa3\x1b\x6b\xc7\x75\x0b\xe9\x64\x97\x63\xaa\xcf\x67\xa5\xfa\xd8\x5c\x7a\x30\x7f\xf8\xa3\x94\x9e\xbd\xc0\x19\xd0\x04\xc3\x1f\xca\x6c\x9e\xca\x8f\xcd\xf4\x9d\x1a\x74\x76\xdf\x8a\x84\x1d\xff\x67\x18\x7a\x60\x86\x4e\xe1\x12\x07\x2d\x6b\x4c\xd2\x19\x93\x74\xc6\x24\x9d\x7f\xad\x24\x9d\xae\x2b\xe2\x75\xc6\x54\x6f\x2c\xc9\xb5\xeb\x65\x6d\xc8\x9f\x41\xde\x2b\xbe\x68\x1b\xbd\x13\xec\x77\x65\xfe\x28\x6e\x45\x43\x32\x8f\xba\xb7\xb1\x5a\x09\xd9\x52\x1d\x6d\x48\x94\x71\xcd\x32\x4e\xe1\x90\x50\x12\xc9\x2c\x63\x2a\x35\x12\x42\xac\x89\xd5\x1c\xb5\xc4\x1e\xdc\x7b\xe5\xc3\x56\xd6\xb0\x38\x38\x21\x97\x06\x40\x26\x22\x9a\xaa\x1c\xce\x6d\x09\x51\x08\x94\x16\x17\x3e\xb5\x9e\x60\xf2\x5a\xea\x4d\xad\x0d\xb7\xd7\x5a\x1c\x7d\x64\x66\xa0\x7a\xbb\xf1\x16\x15\xa4\x68\xa9\x6f\xdb\x7e\x4f\x88\x62\x29\xcd\xb0\xa3\x53\xae\x09\xf5\xf3\x8e\xf1\x11\xa8\xde\x67\xa0\xe0\x02\xf6\xa3\x05\x60\x11\xbb\xfd\xf2\x11\xcf\xc5\x7a\x4a\x16\x0b\x61\xbb\x98\x4b\xc5\xe1\xfe\xba\x86\x89\x0d\x6d\x1b\x95\x08\xb6\x06\xe0\x2c\xe3\x35\x06\x0e\x5b\xf1\x4f\xae\x7b\xd8\x62\xb1\x38\xb8\x90\xda\xfc\x67\x4a\x4e\x92\xc4\xf6\x0e\xf0\x47\x0f\x8f\x6c\xcb\x51\x51\x24\xa8\x6d\xae\xb0\x6d\x1c\xd5\x5c\x41\x20\x05\x16\x77\xb1\x4b\xd1\x12\xc7\x9c\x92\x13\x10\x76\xcd\x8a\xc9\x16\xbb\x40\x9c\x54\x38\x02\xb5\x46\x9e\x5d\x34\xf4\x76\x32\xcb\x31\x7f\xd8\xf5\x80\x64\xc0\xc1\xdb\xf1\x0a\xd8\x0f\x83\x08\xcd\xc9\x72\x0c\x24\x41\x10\xc3\xc5\xb3\x7a\xfd\x08\x48\x70\xad\x3a\x66\xbf\x95\xed\xd5\xf2\x69\x1d\xa5\x66\x1c\x97\x55\xba\x2a\x61\x0e\x35\xe2\x00\xf5\x1a\x0e\x66\x87\x79\x5f\xa9\x25\x44\x0c\x2f\xd4\xa1\x73\x3c\x10\x19\xc4\xbf\xd6\xef\x28\x14\xd4\xb2\xb2\xc5\xc1\x45\xfd\x65\xd7\x19\x2b\xc5\x48\x18\x5b\xf1\xa9\xad\x6b\x7f\xf9\x29\x10\x43\x0b\x26\x40\xd8\x27\x23\xc2\x14\xf0\x87\xf7\x22\xd9\x11\x9d\xd1\xd5\x8a\x47\x88\x29\x57\xb4\xac\xef\x26\x01\xa4\xdc\x33\x43\x42\x70\xc1\x85\x9c\x4a\x3f\xf7\xae\x09\xbd\xce\x6e\x38\x77\x7b\xed\xbc\x1a\xca\x54\x51\x70\x0f\xf6\xd2\x08\x40\xa8\x2a\x05\x84\xdc\xc0\x4d\xf7\xa0\xc8\x25\x25\xdc\x96\x14\x28\x30\x06\x23\xaa\x65\xb1\x0b\x65\x52\x74\x8b\x47\x01\x2b\x15\x75\x0f\x0a\x85\xbd\x9c\x63\xcf\x5b\x32\xd2\x5a\x56\xc0\x4d\x96\x3b\x04\xda\xcd\xdc\x83\x54\xb7\x6c\x87\x2f\x97\x34\x64\xe0\x42\x3e\xf8\x46\x66\x55\x1d\xfb\xb0\x55\x06\xb8\x0f\x14\x5b\x6d\xa2\x8d\xf0\x6d\x9a\x70\xa6\x4a\xfb\xd3\x27\x36\xe8\xd4\xd9\xb7\x61\xe0\x7a\x82\x5b\x47\xb1\x6e\xc5\x09\xf7\xf0\x3b\x28\x2a\xa5\xe8\x36\x5b\x59\x67\xeb\xf2\x9f\xae\x13\xb9\xa4\xc9\xb3\xe7\x3d\x8e\xbe\x5f\x06\x01\xdf\x01\x30\x16\x44\x63\x8f\xcb\xac\x12\x8f\x00\xcb\xe8\x1e\xd4\xac\xb1\x32\x4c\xb9\xd1\x7d\x7b\xd9\x03\xad\xbf\x44\x0c\x04\x54\xae\x45\x6b\x6d\xd3\x28\xd4\x53\x24\x34\x5c\x3d\xad\xfc\x94\x47\xb6\x45\x70\x14\x73\x0f\x72\xb3\x0a\xa6\xbb\x1d\xd5\xd5\xb0\x16\xa6\x55\x3b\x63\x34\xea\x3c\x74\xb5\x51\xfd\xd7\xf6\x4e\x04\xc2\x16\x82\xac\x00\xd3\x29\xcc\x17\x0b\xd6\xd7\x83\xed\x2a\x5f\xac\x14\xb3\x34\x9a\x83\x28\x7a\xbf\x63\x57\x67\xac\x1d\xd9\x9d\x24\xda\xae\x47\x7a\xf3\x0e\xbc\x8d\xee\xa8\x7a\x5c\x7e\x84\xd4\x17\xfb\xed\x09\xbe\xe0\x9c\x5c\x35\xf5\xcb\xad\xd8\x3c\xd2\x23\x5e\xcc\x3e\xfe\xe6\x70\x31\x97\xd9\x9e\xc8\x80\x37\x7a\xb0\x01\xcf\x0c\x41\x07\xb9\x82\x8e\xb2\x40\xa5\x4a\x6e\x19\x74\xb3\x95\x91\x4c\x14\xd9\xd0\x5b\xbc\x0f\x50\x87\x18\x6a\xb2\xc3\xbf\x7a\x18\x6d\xc6\xbc\xc2\xdc\x5c\x3b\x87\x9e\x72\xfe\x48\x18\xdd\x6a\x54\x96\x91\x1b\x03\xa5\x97\x2b\xda\x16\xca\x50\xdc\xef\xfa\x74\xee\xaa\xcb\x7e\x38\x9b\xb7\x96\x2e\xc5\xcf\x90\x5d\xa5\x62\xf7\x7e\xd5\xf3\xcc\xa4\xff\xea\xa1\xf9\xf0\x90\x60\xa4\x94\x6a\xcd\x32\x71\x4c\xfe\x6b\xfa\xef\xdd\x4f\x7e\x9a\xdc\x14\x51\x19\x13\x2e\xf4\x44\x66\x13\x9c\xa1\xad\x4d\x7d\xf9\x19\x4a\x90\xfb\x2b\x97\x17\xe5\x4b\x3d\x64\x39\x4c\xbf\xb2\x94\x49\xae\x98\x27\x5c\x90\x0b\x1b\x03\x43\xe5\x4b\x9d\x30\xa3\x2b\xa3\xc1\x65\xe7\xea\x1e\xb3\xd0\x96\x3a\x49\x65\xd8\x9e\xa5\xfb\x1d\xd9\xc5\x41\x71\x62\xfb\xc4\x4a\xbf\xb0\x1d\x20\x56\x36\x60\x31\x5b\xbf\xd3\x33\xcf\x08\x79\xde\x43\x86\xc5\xcd\x01\xaa\x9a\xca\x15\x74\xd6\x1b\xa6\x18\xc9\xa8\x58\x33\x75\xe4\xdc\x76\x50\xf8\xb9\xb3\xde\x30\x7e\x2a\x65\xc3\xec\xd1\x81\x8b\x26\xc4\xb2\x72\x18\xb0\x3e\x30\x3b\x4d\x8f\xae\xbc\xc2\x3d\x40\x05\x6e\x28\x07\xeb\xe5\x00\xf8\xe8\x5e\x1c\xac\x67\xed\x25\x7b\xab\x71\xb0\x05\xf2\xb0\x85\xe5\x62\x0b\xe4\x63\x0b\xc3\xc9\x3a\x75\x9e\x91\x97\xc1\x67\x10\x2f\x53\xf7\xb0\x92\xfb\x8d\xe3\x4e\x4f\x5f\xf9\x09\x1a\xc7\xe4\x99\x62\xcc\xb9\xc8\x80\x95\xd1\x6d\x9a\x30\xa2\x76\x42\xd3\x4f\xa1\xaa\xb3\xfe\x67\xb1\xe8\xb4\xad\xad\x0e\xd9\x66\x3b\x77\x8f\xed\x3c\x63\x9e\x69\x2d\xb3\xa6\xc9\x6c\x8e\xdb\x85\xd4\x0c\xe6\x36\xd4\xd3\x83\x04\x9b\x67\xe3\x2e\x0d\x7a\xa4\x02\xa2\xc7\x93\x26\xdd\xa3\x2f\x59\x22\xef\x9e\x1f\x56\x41\xf6\x90\x8d\x58\x25\x5c\x2b\x96\xac\xdc\x75\x76\x0f\x1e\xd0\x19\x06\x6e\xce\xeb\x0d\x23\xfa\x4e\x02\xad\x41\xbd\x26\xf7\x1b\x32\x08\x23\x84\x76\x65\x9d\xf6\x9e\xbd\x7b\x2f\xdc\xea\x5d\x30\x58\xe9\x7e\x65\x9e\x95\x84\xab\x41\xd7\x82\x7d\xbe\x5f\x26\xdc\x6d\x64\x62\x37\xe9\x18\xb6\x68\xb1\x28\x05\xf2\x9f\x80\xbb\xfc\x61\x43\xd5\xb3\xed\xee\x23\x44\x69\x3e\x07\xbe\x63\x99\x7c\xdf\x71\xb6\x6d\x07\x9c\x17\x02\x88\x0c\xe1\xc3\x18\x9a\x32\x85\x27\x36\xf3\x0e\xa4\x37\x18\x2f\x96\x10\x2a\x02\x5c\x1a\xef\x94\x96\x2c\x01\x70\x1d\xa4\xe8\x44\xb5\x4b\x1a\x4c\x18\xb8\xe4\xd6\x15\x37\x17\x65\xa0\x68\x6b\x9e\x52\x7e\xba\xd7\x5b\x2c\xa9\x6f\x39\x7d\x87\x5c\x00\xe5\x61\x62\x15\xaa\x53\xd6\x95\x90\x00\x6b\xb5\x1d\x11\xe0\xf6\xb9\x58\x49\x3f\xf0\x42\x8a\x89\x0d\x7a\xb2\xf7\x61\xe4\x6e\xc3\x32\x66\xfd\x22\x2b\x99\x6d\x99\xef\xa4\x80\x18\x2b\x1c\x7d\x80\xd3\xae\x89\x1a\xaf\x42\xd1\x03\x18\xf1\xd5\xd8\xcc\x3d\x74\xaf\x6a\x78\xe6\x2f\xa7\x83\xd5\xd8\x72\xf7\x98\x01\x97\x27\x25\xa9\x8c\x5d\x12\x1d\x5e\x81\x14\x2c\x7a\x40\x20\x69\x11\x4a\xda\x49\x6d\x83\xb3\x46\xfc\x0b\xfb\xf6\x4f\x33\xa3\xec\xf3\xd1\x4d\xee\x83\xf2\xfe\x21\xdb\x3c\xcd\x01\xb4\x0f\xc2\x36\xf1\x82\x77\xef\x36\x52\xa1\x5b\xd2\x2c\xdf\xaa\x80\x46\x01\xee\x4d\xc7\x18\xa2\xdc\x91\xbd\xd2\x5c\x06\x6a\x4a\x64\xa8\xb6\x44\x9a\xe7\xab\x57\x5f\xfa\x9f\xbb\xd3\x15\x5b\xa9\xf4\xba\x21\xdf\x2f\x5a\x2b\xb4\x34\x30\xab\x7e\xca\x6b\x08\xb8\x5d\xb8\xf2\x6f\x15\x4a\x5b\xc4\xf6\x3b\x60\x3b\xf3\x7d\xff\xa0\x27\x17\x67\x4f\x07\x64\x01\xed\xe7\xd1\xea\xcb\x99\xb2\x58\xdc\xcb\x3e\xb6\x5c\xba\x8b\x5f\x0c\xd3\xba\xf1\x4d\xbc\x20\x2e\xf8\xa5\x57\x54\xd3\x4d\x04\x61\xaa\x65\x88\xea\x80\x9b\x99\x4e\xa5\xbb\x4e\x5e\x43\xb5\xee\xc0\x75\x96\xc3\xdf\x33\xf5\xbc\xae\x7e\x63\x38\x8d\x81\xa6\xcf\x57\x76\x04\x50\x41\xc7\x79\x07\xc9\x53\x05\xd6\xad\xb5\x98\x1d\xbe\xa3\x22\x2c\xa4\x40\x46\x1f\x2e\xaa\x37\x5b\xe6\xe4\x38\x62\x3d\xf4\x55\xf7\xc3\xe6\x8d\x42\x0f\x9a\x2f\x98\x51\x7f\x9d\xb3\x57\x66\x75\xd9\x8d\xa0\xa3\x2b\xc5\x20\xc2\x79\x42\x7b\x6e\x2b\x0d\x3d\x99\x0d\xf4\xd7\x88\x7e\xa3\x02\x0b\x52\xb8\x40\x02\x1b\xd8\xd1\xad\xb2\xec\x25\x36\xf7\x97\x9a\x05\x98\x65\xd6\x35\x5e\xc9\x0f\x4f\xc8\x22\x6e\x6d\xde\x1d\xfc\x03\x31\x81\x61\xc9\xe5\x2d\x4b\xc3\x14\xf3\xe6\xfa\xf0\xfb\x70\x49\xdc\xe6\x07\xb9\xac\x5d\x21\x9c\xe4\x84\xad\xb4\x6b\x00\x59\xc8\x10\x38\x3d\x03\x9c\x34\xc4\x3f\x88\xd0\x7f\xc6\x98\xe7\x4f\x55\x09\xd9\x2f\xca\x41\xfb\x9f\xd9\x68\x1d\x6a\xca\x87\x9f\x6a\xd6\xf2\xf5\xf5\xbc\xbc\xaf\x6f\x0d\x62\x30\x54\x62\x1e\x6d\x07\xbd\x88\x60\xff\xac\xf8\x85\x2d\xd3\x1b\x19\xef\x21\x19\xde\xe1\x0b\x0f\xab\xb5\xe3\x92\x91\xa9\xe3\xba\xbd\x50\x39\x33\x26\x76\xb4\x62\xbd\x55\x47\x9d\x5e\xc7\x62\x1c\xc5\x41\xfb\x8c\x4d\xd7\x53\xf2\xdd\xf9\xf5\x21\x99\x7f\xb8\x3e\x24\x4c\x47\xd3\xe7\xe4\x5d\x9e\x68\x9e\xf6\xdd\x73\x58\x14\x81\xdc\x7f\x7f\xf9\xd4\x98\x61\x6b\x48\xcb\xfc\x6d\xdd\x5b\xa5\x54\x6f\xf6\xd8\xc7\xa7\x73\xf3\xfc\x63\x6c\x63\xdf\x0e\xf6\x73\x14\x7f\x07\x01\xcc\x69\xb1\x55\xb8\x4c\xb7\x17\x43\x37\x83\x10\x36\x5d\x1f\x93\x09\x61\x9f\x68\xa4\x8f\xc9\xd1\x4a\x4a\x32\xb1\x41\x62\xc7\xe4\x68\x49\x33\x72\xf1\xfe\xfa\xfc\x18\x03\xd0\x98\xd0\xd9\x8e\x6c\xfb\xd4\xf3\xf7\x17\x6f\xff\xd3\x72\xce\x1d\x61\x1c\x1c\x30\x94\x2c\x0e\x60\x12\xf4\x22\x9b\x3f\x71\x16\xe7\xeb\x98\x92\xeb\xbe\xe5\xdf\xd2\x84\xc7\xb4\x70\xf6\x41\x2a\x07\x36\x78\xd3\xa1\x8e\x6e\xe5\x67\x08\xcd\xd5\x32\x4e\xae\xaf\xe7\x06\xc3\x9e\x00\xa0\x02\x11\x6f\x10\x3d\x5c\x56\xcd\x34\xc4\xc7\x2e\x99\x43\x84\xf5\x23\xae\x64\xb6\x3d\x76\x68\x5f\xe4\x2f\x5e\x7c\x19\x99\x81\xe1\x5f\xec\xd8\x96\x27\x1a\xe4\xf6\x42\x52\x03\xa8\x60\x38\xc3\x30\xb2\x62\x0b\xcb\xa1\x27\x16\xdf\x9f\x35\x03\x8e\xd1\x13\x6a\xb2\x47\x85\x07\x44\xc0\xc3\x9a\x91\x76\xe9\x0f\x39\xe8\xd0\x12\x0c\x03\x18\x52\xff\x50\x3c\xda\x0e\x94\x99\xb3\xd3\x77\xf3\xa1\x11\x20\xc0\x8c\xda\x61\xf7\xb9\x94\xd7\x95\xcf\x40\x6b\xb3\x3a\xb1\xb7\x20\x4c\x69\x0d\x0c\xdb\x52\xb5\xc3\xbe\xc2\x08\xfd\xa6\x4e\xcb\x57\xd5\xfb\xa9\xa2\xb9\x63\x71\x6b\x6e\xe6\xe9\x52\x6d\xe1\x3e\xdd\x3c\x74\xfb\xaa\xc3\x4f\x39\x88\x12\xa3\xee\x52\x32\x75\x39\x0f\x9a\x89\x14\x3e\x96\x00\x29\x11\xb6\x38\xdd\xc3\x58\x83\x34\x28\x83\x60\x8c\xca\x87\x10\x55\x68\x1f\xeb\xe3\xca\xde\x5e\xc2\xd5\xa4\x66\xd1\x46\xf0\xa8\x59\xe6\xac\xfa\x01\xb7\x28\xba\xff\xf9\x36\x95\x5e\xf5\xed\x1b\xa3\x94\x27\x4f\x15\xe1\xa9\xc6\xcc\xb9\x15\xcf\xd8\x1d\x4d\x92\x1e\x50\x91\x5b\x58\xa7\x6c\xae\x30\x70\x8a\x89\x95\xc4\x7c\x01\x1b\xa2\xd7\x7f\x34\x7a\xef\xf0\xe0\xb1\xcf\xdf\x0c\x33\xcc\x14\x63\xc9\xd8\x27\xb8\xb8\xea\xbb\x02\xc3\x3d\x90\x2b\xf2\x0d\x46\x79\xc3\x0a\x61\xac\xf3\x68\x23\xc9\x25\x0a\x6d\xdb\xa2\x31\xe5\x62\xad\xba\xef\xc0\x06\xad\x77\x00\x33\x48\xc3\xe9\x36\x2d\x08\x99\xcd\x5d\xda\xcd\x67\x07\x86\x55\x9c\x5b\xa8\x8f\xfb\x58\x9e\xbb\x9b\xb1\x56\x2c\x0c\xc0\x40\x4b\xe2\x44\xcb\xe2\xde\xd9\xa7\xbd\xb0\xde\xa2\x38\x1e\xe4\x83\x64\xdb\xb2\x1f\x59\x28\x89\xa5\xba\xb8\xcf\x62\x1a\xe0\x8c\xc0\xb6\x4b\xdd\xbd\x06\x86\x96\xef\x2b\x3f\x43\xc5\x52\xb5\xcf\x6a\x09\x8f\x4d\xf8\xc1\x5b\xbb\x1b\xb6\xb3\xa4\x9d\x52\x6e\x8b\xf3\x75\x4f\x6f\x4c\x56\xc2\x3e\xe9\x8c\x56\x70\x4a\x97\x32\xd7\x03\x04\xc9\x43\x59\x8e\x42\x6a\x73\xfa\x86\x51\xc6\x05\x3e\xdc\x13\xd1\x03\x8f\x74\x47\xd6\x8d\x02\x63\x14\x18\xff\xda\x02\x43\x48\xed\xd4\xaa\x56\xb4\x74\x47\xdd\x0c\x8c\xb7\x19\x16\x69\xd3\x08\x08\x75\x2a\x5f\x4f\x4c\xa8\x7d\xac\x1d\x61\x3d\xe7\x78\x40\x68\xcf\xfd\x82\x7a\xd2\xdf\x2a\x72\x17\x07\x3e\x6e\x1f\x50\xf6\x37\x2e\xb6\xc0\xc3\xeb\x6b\x02\x0e\x27\x53\xa0\x7a\x9e\x75\x79\xe6\x6d\x74\xae\xdd\xe7\x73\x48\x35\xba\x84\x4c\x39\x97\xf5\x85\x6e\xf3\x67\x4b\x16\xd1\x5c\xd9\x98\xb8\x9e\xab\x84\x02\xc4\x88\x65\x30\x46\x11\x57\xf7\x1c\x5d\xf1\xef\x6c\xfa\x57\x25\x4a\xb0\x4f\xc4\x62\xf8\xe0\xb1\x1f\x01\x77\xe8\xc7\xbf\xe1\x1f\x60\xa9\x54\xfe\xba\x7d\x55\xfe\x7d\x75\x7a\x8d\xbf\xb6\x4f\x63\x47\x7c\xcb\x35\x73\x41\x76\x54\x38\x02\x71\x97\xb2\x10\x6a\x48\xbe\x98\xbc\xfc\xfa\xeb\x0e\x97\xff\xe3\x91\x3d\x06\x62\x0c\x93\xc6\x58\x0b\x60\x60\x56\x1a\xd1\xb2\xc3\x80\xc4\x91\xc6\x84\xb4\x31\x21\xad\xff\xda\x73\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\xad\x6d\xc5\x63\x42\xda\x98\x90\x36\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x36\x26\xa4\x8d\x09\x69\x6d\x2b\x19\x79\xd9\x98\x90\x36\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x86\x9f\x31\x21\x6d\x4c\x48\xab\x7f\xc6\x84\xb4\x31\x21\xad\xf8\x8c\x09\x69\x63\x42\xda\x98\x90\x16\x1c\x74\x4c\x48\xf3\x70\x31\x26\xa4\x8d\x09\x69\x63\x42\x5a\xf5\xf3\x4b\x26\xa4\x75\x34\x6c\x20\x64\x62\xab\xf8\x86\x7e\x1b\xd2\xf8\x3f\xa8\x27\xd8\xb3\x71\x8f\xf2\xdd\xd5\x53\x35\xd6\xef\x1e\xeb\x77\x8f\xf5\xbb\xc7\xfa\xdd\x61\xf0\xc6\xfa\xdd\x63\xb8\xd4\x18\x2e\x35\x86\x4b\x8d\xe1\x52\x63\xb8\xd4\x18\x2e\x55\x7e\xc6\x70\xa9\xf2\x33\x86\x4b\x8d\xe1\x52\xbf\xa9\x10\x83\x31\x5c\x6a\x0c\x97\x1a\xc3\xa5\xc6\x70\xa9\xe0\xc3\xff\x62\xbc\x6c\x0c\x97\x1a\xc3\xa5\xc6\x70\xa9\x31\x5c\x6a\x0c\x97\x1a\xc3\xa5\xc6\x70\xa9\xc0\x67\x0c\x97\x1a\xc3\xa5\x8a\xcf\x18\x2e\x35\x86\x4b\x8d\xe1\x52\xc1\x41\xc7\x70\x29\x0f\x17\x63\xb8\xd4\x18\x2e\x35\x86\x4b\x55\x3f\x63\xfd\xee\xb1\x7e\xf7\x58\xbf\xbb\xf2\x19\xeb\x77\x8f\xf5\xbb\xc7\xfa\xdd\x83\x66\x18\xeb\x77\x8f\xf5\xbb\xc7\xfa\xdd\x63\x39\xd6\xb1\x1c\xeb\x58\xbf\x7b\xac\xdf\x3d\xd6\xef\x6e\x87\x7f\xac\xdf\x3d\x0a\x8c\x51\x60\x8c\xf5\xbb\xc7\xfa\xdd\x95\xcf\x58\xbf\x7b\xac\xdf\x5d\xfb\x8c\xf5\xbb\xdb\x0d\xc8\xb1\x7e\xf7\x98\x90\x36\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x36\x26\xa4\x8d\x09\x69\xfe\x67\x4c\x48\x1b\x13\xd2\x7e\x53\x49\x1c\x63\x42\xda\x98\x90\x36\x26\xa4\x8d\x09\x69\xc1\x87\xff\xc5\x78\xd9\x98\x90\x36\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x36\x26\xa4\x8d\x09\x69\x81\xcf\x98\x90\x36\x26\xa4\x15\x9f\x31\x21\x6d\x4c\x48\x1b\x13\xd2\x82\x83\x8e\x09\x69\x1e\x2e\xc6\x84\xb4\x31\x21\x6d\x4c\x48\xab\x7e\xfe\x67\xd7\xef\x86\xa2\xdc\x7d\xd5\xbb\xdf\x9b\x87\x3a\xf8\x77\x75\xd3\x25\x3e\x1d\x84\x13\xc3\xee\xb0\x6e\x32\x38\x4a\xcc\xa0\x70\xb3\x18\x4f\xd1\x77\x52\x78\x7e\x37\x7c\x6d\x0c\xd1\xc5\x01\x8c\xb7\x38\x00\x71\x69\x9f\x0d\x0d\x4d\x57\xc6\x80\xd2\xa0\xa0\xc1\x00\x89\xbc\x63\x19\x42\x83\x61\x8c\x1e\x70\x8a\xc8\x2d\xd7\xda\xf0\x5d\xee\x32\x60\x42\x83\x46\x52\x28\x8e\x65\xcb\xd1\xc7\xb7\x38\xe0\x62\xc5\x05\xd7\x6c\x71\x40\x26\x04\x82\xe7\xbc\xe5\x38\xae\x6e\xe1\x24\x09\x55\x7a\x4a\x8a\x95\x05\x51\x62\x60\xe5\x31\x13\x9a\x47\x34\xb1\x00\xd6\xc7\xe1\x82\xd0\x24\xdd\x50\x91\x6f\x59\xe6\x3d\x07\x15\xc3\x43\xa3\x5a\x5e\x6e\xdd\x51\x18\x21\x12\xb4\x4f\x91\x36\x44\xbe\x5d\x36\x3d\x85\x1d\x6a\x63\x4d\xc8\x5f\xfb\x6e\x1a\x24\x14\xcf\x59\x93\x2b\x6b\x73\xf2\xe8\x06\xff\x4f\xe6\x41\xfa\x37\x20\xd7\x8c\x6e\x0f\xb9\x36\x5d\xc3\x43\x8b\x96\x4e\xe6\xb5\xbb\x0e\x4a\x38\x8c\xea\x90\x24\xf2\x0e\x59\x01\x7a\x90\x0a\x9f\x0a\x2a\x76\x7f\x42\xf7\x02\x9e\xf6\x8f\x09\xd7\x2c\xa3\x60\xd9\x87\x46\x5e\x2c\xc8\x04\xd3\x95\x0c\xa1\x6c\x53\x9a\x71\x25\xc5\x21\x81\x9c\x45\xe7\x16\x70\x43\xae\xa4\x24\x4b\x9a\x81\xaf\xa2\x98\xee\x0f\x7b\x4e\x57\xce\x67\x24\x3b\xfb\x5b\x4e\x93\x3f\x62\x84\xad\xd3\x54\xf9\xca\xaa\xa8\x5c\xc1\x33\xce\xf3\x5e\x4c\x19\x3e\x97\x3f\x03\x1c\xb4\x8c\x0b\x5b\x96\xff\x8c\xf0\x9f\xd3\xe9\x94\xfc\xd3\x83\x40\x67\x39\x73\x89\x32\x45\xac\x29\xce\xf1\x17\x12\x8e\x6d\xb7\x57\x0e\x3d\x53\x95\xb0\x9a\x05\x70\x31\x00\xb8\xd0\x64\x7b\xc2\x0b\x93\x75\x01\x18\xde\x12\x0f\xe6\x0d\x55\xcf\x60\xbc\x8f\x46\xb8\x3c\x2f\xa7\xbe\x2e\x66\xa6\xba\xdc\x1d\x6f\x67\xfe\x00\x44\x1a\xe4\xf9\x76\x88\xc2\x3d\x29\x57\xf0\x2c\x78\xa7\xe0\xbf\xf9\x8b\x17\x2f\x5f\xe1\xff\xe3\x2f\xc5\x3b\x57\x1b\x99\xe9\x49\xc4\xb3\x28\xe7\x1a\xb4\x2a\xfb\x52\x68\xa2\x7f\xfc\xa3\xf3\x6d\xb8\xc7\xd0\xcf\xf0\x99\xe7\xc5\x43\x29\xcd\x98\xd5\xc8\xd7\x99\xcc\x53\xa3\x91\x2f\x16\x9a\x26\xc9\xb3\xe0\x7d\x94\x2d\x69\x8f\x51\x29\x05\xbf\x70\xa3\x39\x1a\xa6\x49\xe2\xb9\x98\xe0\x80\xbe\x45\x7a\x40\x1b\x2a\x6c\x1e\x51\x73\xb4\x91\xcf\xb8\x48\x4d\x9f\x65\xaa\x43\x32\x39\x24\x1f\x01\x0f\x47\x53\x72\x05\x47\x8e\xd8\x23\xd7\x3a\xe8\x56\x66\x8c\xa4\x46\xfd\x57\x8a\xdf\x32\xb2\xc4\x1c\x83\x9d\x73\x6f\x5a\xc7\x33\x61\x2a\xa2\x29\x23\xd1\x86\x66\x34\xd2\x2c\xb3\x60\x9f\x63\xa8\x76\xf0\x30\x3c\x03\xc6\xbf\xa5\x31\x9b\xe4\x29\x92\x85\x7a\x5e\xb0\x23\x48\x6c\xb3\xac\xe3\x8e\x2d\x8d\xe1\xc0\x2c\xf3\xf0\x77\x3c\x66\x69\x22\x77\x5b\x26\x82\xec\xd4\xbe\x9f\x66\x32\x76\x44\x0a\xe3\x9a\x33\x05\x3c\x29\x93\x42\x33\x11\x7b\xa4\x4e\xa3\x1b\xfb\xc5\x3f\xcd\xe3\xe5\xf8\xe4\x0f\x7f\x6a\x3b\x01\x31\xbb\x75\xc3\xff\x81\xd4\x4e\x41\x88\x95\x75\x69\x54\x55\x67\x60\xc7\x75\x75\x87\x27\xb0\xdb\x6f\xb1\xc2\xf8\xd5\x52\x2c\x84\x96\xe5\x24\x16\xd2\xa8\x75\x28\x60\x7b\x0e\x29\x1c\x90\xce\x57\x10\xba\x76\xee\x5a\x23\x5c\x3a\x0c\x90\xa9\x70\x37\xc1\x45\xcc\x23\x30\x3d\xef\x36\x90\x30\xed\x2b\xb2\x7e\x54\x96\xb5\x72\x82\x7c\xca\x9c\x3b\x69\x1b\x78\x1c\xda\xbf\x96\x52\x6f\xa6\x04\x03\x25\x41\x9a\x7c\x4a\x8d\x92\xa2\x93\x9d\x67\x4b\x3d\x83\xe6\x23\xc1\x08\x58\x8f\x8f\x0a\x12\x65\xcc\xe6\x67\x28\x7b\xba\x65\x46\x04\x4f\x9e\x1f\xba\x1c\x8b\x98\xad\x68\x9e\x68\x45\x70\x59\x06\x75\x59\xdc\xa2\x52\x6b\x49\xee\x0c\xaf\x9c\x59\xc3\xcd\x00\x71\x6e\xff\x69\xce\xa3\xe5\x9c\x45\x07\x0e\x8c\xf7\x03\xd7\xba\x9d\x26\x34\x2a\x57\x78\xba\x26\xe4\x27\xab\x17\x19\x50\xdc\x1c\x7f\x3d\xb4\xc2\xc1\x68\x99\x70\x6d\xe0\xa6\xc4\x3e\x29\xcf\xb8\x88\x92\xbc\x15\xe2\x0d\x23\x11\x35\x9a\x27\x0c\x50\x0e\x43\x50\x3c\x0b\x59\x2c\x06\x86\x7b\x1e\x80\xe4\xbc\xb5\xff\x4a\x1d\xb6\x0a\x60\x86\x25\xd5\x87\x6f\x5f\x67\x90\x3c\xea\x30\x34\x26\x04\x0f\x56\x60\x37\xac\x45\x1d\xe4\x0b\x02\x49\xab\xaa\xeb\x67\x8c\x9a\x73\x14\xdd\x10\xba\xa6\x5c\x1c\x5a\x6a\xc0\x6b\x8f\xe4\x8e\xee\x94\x8d\x82\x0f\x52\xb1\x8b\x56\xc0\x30\x85\x43\x22\xd8\x2d\xcb\x2a\xf4\x16\xb4\xee\x07\xb6\xf7\x29\xb1\x40\x18\x08\x8d\xe2\x42\x2f\x95\x4a\xf1\x65\xe2\x26\x2e\xe3\xb0\xcc\x0b\x57\x29\x8b\xc2\xf6\x1e\xae\xad\x3d\x32\xad\xdb\xb2\x6c\x35\xda\xc2\xb6\x5e\xf3\x5b\x90\x19\xb1\x7f\xdf\xae\xb4\xcc\xe8\x9a\xb9\xaf\x94\xa6\x3a\x47\xc4\xe0\x95\x13\x8b\x2f\xbc\xcb\x80\x1b\x2e\x62\xc3\x87\x1c\x4a\xd3\x24\xcf\x68\x52\x7e\x13\x49\x81\x37\xc0\xea\x98\xfc\xf4\x57\xf3\x8d\x19\x9f\xc5\x36\xc3\xd3\x7e\xbb\x10\x93\xc9\x64\x21\x9e\xd8\xa8\xfb\x63\x12\x01\x3f\x38\xd2\x6c\x9b\x42\x03\xa5\x23\xfc\x62\x22\x64\xcc\x26\xd9\x92\x46\xd3\x1d\xdd\x26\x0b\x41\x53\xee\x52\x4b\x09\x4d\x39\xfb\xa4\x99\x80\x71\xa7\x37\xdf\xa8\x29\x97\x47\xb7\x5f\x2c\x04\xc2\x78\x9a\x2b\x2d\xb7\x97\x0c\x2f\xbf\xce\x18\x18\x68\xc0\xd9\x2b\x09\x9c\xe0\xb2\x21\x02\x83\x64\x15\xd3\x6a\x1a\x65\xf1\x34\xcd\xa4\xc1\x19\x42\x31\x95\xd9\x7a\x21\x0c\xff\x83\x37\x40\xa9\x39\x26\x2d\x8f\x55\xef\x4e\x10\x94\x32\x92\x17\xbf\x4d\xb8\xd2\x7f\xae\xfd\xf2\x96\x2b\x5d\x45\xa9\x07\x93\xdd\x29\x2e\xd6\x79\x42\x33\xff\x27\xf3\x0b\xb0\xbe\xec\x96\x7d\x10\x37\x42\xde\x89\x37\x86\xb6\xd4\x31\x59\xd1\x44\xc1\x1e\xab\x48\x1a\x32\x28\xfc\x31\x60\x1b\xde\xba\x0d\x31\x7f\x4c\x2c\x1a\x0c\xf6\x60\xa6\x68\xc3\xb6\x65\x82\xab\x4c\x99\x38\x99\xcf\x7e\xf8\xf2\xaa\xfa\x7d\x33\x94\xd6\x05\x2c\xdb\xa0\xb0\x72\xca\x09\xfb\x5b\xce\x6f\x69\x62\x58\xb4\x3d\x29\xf5\x28\x67\xef\x38\xb4\x38\xdc\xbc\xdd\xaf\x52\x7f\xb5\x0e\x86\x01\xd5\xc6\x1b\x60\x7c\x3e\x02\x63\x57\xcc\x62\xbb\x3c\x84\x03\xf8\x8f\x15\x1e\x34\xe4\x49\x91\x2b\xd0\x17\xe0\x0c\x4d\x41\xa9\x60\x99\x72\x66\x67\x24\xc5\x2d\xcb\x34\xc9\x58\x24\xd7\x82\xff\xbd\x18\x5c\xb9\x08\x08\x20\xe7\x86\xe8\xe1\x42\xb3\xcc\xa8\x1f\xc0\x3c\xd0\xcf\xbb\xa5\x3b\x92\x31\x33\x0d\xc9\x85\x37\xa0\x8b\xbf\x7a\x67\xd4\x4e\x2e\x56\xf2\x18\x2a\x14\xa9\xe3\xa3\xa3\x35\xd7\x8e\xf0\x23\xb9\xdd\xe6\x82\xeb\xdd\x11\xdc\xc9\xf2\x65\xae\x65\xa6\x8e\x62\x76\xcb\x92\x23\xc5\xd7\x13\x9a\x45\x1b\xae\x59\xa4\xf3\x8c\x1d\xd1\x94\x4f\x00\x76\x01\x67\x75\xba\x8d\x9f\x64\xf6\xa4\xa8\xa7\x21\xce\xd2\x64\x48\x40\xda\x5d\xdb\x60\x28\xdc\xa6\xf5\xa2\x5e\x8d\x8a\x41\x81\x6d\x17\x7c\x72\x79\x7e\x75\x4d\xdc\xec\xc1\x14\x68\x44\x7e\xf9\xa6\x2a\xf7\xc1\x20\x8d\x8b\x95\xd3\x80\xc0\x0d\xee\x3b\x0c\x50\x08\x27\x3c\xa0\x0c\xab\x7c\xb9\xe5\x5a\x79\xa5\x6d\xe4\x94\x9c\x16\xfe\xf1\x3c\x8d\xa9\x66\xf1\x94\xcc\x04\x39\xa5\x5b\x96\x9c\x52\xc5\x1e\x7d\x17\x40\x0d\x9c\x18\xdc\x0e\xdd\x87\x96\x74\xf4\x36\xe7\x5f\xc1\xc6\x5a\xb6\xad\x3c\x8f\x46\x86\x55\xf3\xa1\x5c\xfa\x5c\x99\xb0\x4e\x1b\xbc\xad\xfc\xb8\x2d\xad\x89\xb9\x0e\x67\x7a\x4b\xe4\x7e\xa3\x69\xa0\x0b\x2e\x9c\xcd\x0b\x4e\x88\x76\xf4\x92\x25\xd2\x50\x95\xb4\xde\x1c\x16\xba\x82\x6d\x97\xfc\xbf\x0b\xd9\x0b\x92\x77\xa0\xf8\xbd\xc9\x97\xac\x8c\xf1\xc8\x94\x2f\x8a\x7f\xfe\x99\xaf\x08\xfb\x1b\x99\x5e\xbe\x3e\x39\x3d\x95\x62\xc5\xd7\x64\x71\x60\x1e\x58\x1c\xfc\xf3\x9f\x66\xf4\x19\x28\xc7\x8c\x50\x12\x25\xb9\xd2\x2c\xcb\x64\xc2\x8a\x16\x76\xf5\xb1\xc1\x5b\x26\x05\x13\xfa\xd0\xbc\x0c\x4d\xf0\x80\x83\x68\xc7\x4a\x5b\x80\x72\x96\x57\x19\x00\x61\x15\x00\x9c\xf4\x52\x26\xac\xaa\x38\xc0\x22\x68\xae\x37\x32\xe3\x7f\xc7\xe0\x2f\x4f\x7b\x08\x68\x07\x2d\x13\x2f\x04\xa8\xba\xf0\xe0\x13\x72\x21\x63\xf4\x43\x90\x3b\x1b\xe3\xa5\x25\xd9\x4a\xc1\x21\x96\x59\x66\x24\x66\x09\xc3\x73\x8e\x22\x97\xa6\xfc\x3b\xa3\x4a\x98\x7d\x31\x5b\xf8\x57\xdc\xd5\x82\x0f\x17\x24\x3a\x21\x46\x0d\xb2\x5c\xf1\x96\x65\x4b\xff\xa7\x3b\xff\xbe\x63\x02\x47\xa3\xfc\x6b\x8d\xa7\xf2\x09\x99\xbb\x9a\x67\x1e\x6c\x65\x29\x2a\xf6\x89\x2b\x0d\x1d\x22\xa9\x22\x29\xcd\xec\xe1\x3a\x79\x47\xca\xd5\xee\x0f\x74\x2a\xe3\x16\x98\xd7\x4c\xb7\x41\x5c\x2c\xe7\x09\x02\x50\x0c\x6c\x33\xe2\x04\x4f\xa1\xc5\x26\x78\xbf\xb1\x9f\xa7\x82\x4b\x2f\x83\x22\x24\x9a\x44\x46\x37\x96\x7b\xab\x43\xb3\xa2\x3b\x66\x0c\x09\x45\x52\x96\x71\x19\xf3\x88\xe8\x8c\xaf\xd7\x2c\x0b\x6f\x44\x58\xaf\xeb\x5a\x28\xb7\x0a\x18\x56\xb2\x08\x2f\xd9\xad\xf2\xf3\x67\x83\xf5\xd1\x15\xaa\xb3\xa5\x17\xc9\x80\x41\xb7\xf0\x63\xed\xbb\x0d\x15\x71\xd2\x46\x3e\x1d\x5b\x01\xe6\x3b\x2b\xff\x46\x94\x96\x7f\x03\x3d\xb3\xe0\xd6\xcd\xa5\x4c\x9a\x67\x81\x72\xeb\x81\x23\x5b\x9a\x82\x5b\x50\xae\x70\x39\x58\x86\x60\x4e\x52\xf3\xde\x83\xed\x0a\x8c\xd6\xbd\x1d\x0d\xc8\x1b\xcc\x65\x4b\x05\x5d\x33\x45\x36\x52\x69\x2f\xc4\xed\x41\x40\xac\x8c\xf9\x88\xfb\xf3\x84\x5c\x30\x16\x83\x7f\xc5\x18\xe8\x5a\xda\x67\x1d\x5f\xf6\x4a\xa6\x3c\xd4\xd2\x02\x23\x3f\xf8\x02\xbd\x6d\xfb\x73\xbe\x64\xa7\xe5\xae\xa1\x38\xca\xb3\xc2\xfd\x84\x1e\x18\xae\xcd\x74\x8a\x18\xad\x2f\x82\x47\x1e\x66\xb1\x86\x68\x3c\x9a\x89\xfc\xd9\x83\xcb\x7e\x82\x3e\x0f\x03\x87\xbc\x13\x1e\x2c\x0d\x9c\x3c\xb1\x58\x20\xd4\x79\xb1\x08\x5f\x11\x21\x05\x43\xae\xad\xda\xd0\xf5\xc4\xed\x31\x2a\x15\x6d\x58\x7c\x82\x58\x04\x31\x10\x6d\x2a\x99\x18\x05\x82\x41\x59\x68\xc8\xd4\xd7\x5c\xa0\xe3\xeb\x91\x44\xab\x4c\xd8\x25\xc3\xac\x06\xb7\x3f\x1d\xe3\x9b\xc7\x02\x62\xbf\x77\x1a\x95\x83\x82\x66\xb6\x66\x62\x07\xa8\xfa\x8d\x07\x8c\xe1\x47\x48\x20\x03\x51\x3b\xa5\xd9\xd6\x62\xae\xd0\xb6\x2e\xa9\x88\x36\x2c\x9b\x38\x35\xfa\x98\x9c\x02\xc6\x7d\xe5\x06\xc4\x98\xb7\x04\x8c\x06\x31\xd2\x1a\x3d\xa6\xd0\x99\x99\x46\x37\x77\x34\x8b\x51\x65\xa2\x9a\x2f\x79\xc2\xf5\xee\x3e\xfe\x94\x3e\x25\xcd\x87\xea\x8c\xb2\xad\x14\x57\xac\x4f\x3f\x83\x87\x7f\x21\x9d\xac\xaa\x82\x7d\x50\xb6\x45\x32\x7a\x9e\xcb\xc8\xd9\x32\x80\x4f\xde\x30\xa1\xec\xb5\x7d\xee\xd5\x0c\x3a\xbd\x98\x19\x7d\x7a\x8d\x37\xa1\x7b\xe9\x39\xd5\xa5\xaa\x23\x98\xa3\xfa\xf8\x45\x25\x9c\x76\x42\x22\x2a\x5c\x79\xa3\x3a\x3f\x2c\x4f\xf1\x13\xb0\x75\x4a\xc0\x88\x00\x26\xae\xa5\xe1\x0f\xa0\x5d\x1d\xa2\x62\x88\xee\x03\x3f\x8b\xfa\xfe\xaa\x5a\x4d\xdb\x74\xae\x21\x1c\xb8\x93\x83\x3f\x21\x2e\x3d\xfd\x2a\xe1\x4e\x61\xcb\xdd\x8e\xd8\x43\x65\xbb\x99\x5b\xab\xcd\xf9\x80\x5d\x71\xae\x27\xae\xd8\xd2\xd6\xe5\x57\xd4\x57\x11\x73\x15\xc9\x5b\x96\xed\xdc\xb1\xef\x5a\x55\x21\x5a\x01\x9e\xbd\xd4\xe7\xbd\xb0\xd7\x88\xfd\x2b\x68\xa2\x85\xf9\x7f\xb0\x17\x49\x6e\x35\x05\x99\xce\xe6\x78\x6f\x4a\xe3\x5b\x63\x22\xab\x12\x11\x9d\xd0\xb6\x8c\x7a\xbd\x4b\x37\x54\x4d\xc3\xe6\x00\x39\x9d\x9d\x5d\x12\x9a\x6b\x39\x89\x99\x66\xd8\x0e\x5f\x0a\xe0\x5f\x34\xde\x5a\x62\x2b\x35\x06\x94\x51\x46\x73\xbb\x07\x7d\xe1\xcb\xe6\xdd\x4e\x12\xda\xdf\x26\x3a\xf2\xa5\x5b\x1d\xcd\x46\xe9\x71\x0c\x21\x61\x14\x7c\x50\xc6\x4a\xb3\x2e\x8b\x0f\x82\xde\x52\x9e\xd0\xa5\xe1\x77\x09\x5d\x7b\x88\x4a\x7d\x3c\x3f\x71\xb7\x55\x60\x4d\x2b\x4c\x39\x8c\xaa\x1a\x86\x57\x73\xce\x1c\x54\xb4\x45\x8a\xe2\x76\xd3\x90\xf4\x7d\x42\x7e\xac\x4b\x5e\x83\x67\x2f\x76\xd5\xaf\xdc\xc0\x5b\x8e\xb5\x3d\x49\x5c\xac\x87\x9c\x08\xfb\x74\x5a\x89\x3c\x1a\x78\x24\x2c\x81\x2d\x77\x0e\x1d\x06\x70\x77\x89\x53\xae\xff\xb3\x99\x4f\x8d\xdb\x04\x38\xec\x9e\x2a\x7d\x8d\x8b\xa6\x2e\x27\x48\xc6\x8e\x7c\xee\x07\x73\x07\xed\x79\x14\x54\x50\x8f\x75\x05\x28\x72\x4b\x33\x2e\x73\x45\x4e\x2f\xcf\xf0\xb4\x23\x2d\x3d\x90\xe2\x8d\x85\x4c\x56\x2c\xe1\x9f\x70\x5c\x0f\x8f\xde\xb7\x55\xed\x14\xec\xca\x75\x9a\x32\x96\xa9\xfa\x50\xcb\x75\xda\x18\xa8\xf8\xae\x39\x4c\xc5\xec\x6a\xb3\x8e\xdb\xcc\x55\x9c\x31\x48\xa5\x8d\x9f\x15\xf3\x19\x6e\xeb\x3b\xc1\xa7\x5b\xad\x93\x16\xab\xac\xd3\xee\xc6\x8d\x01\x76\x04\x04\x71\x0f\x53\xfb\xae\x49\x2d\xb9\xd2\x85\xea\x2f\xe2\x42\x99\x37\xbc\x07\x08\x47\x0a\xa3\xd9\x67\x3a\x4f\x1f\xc3\x5e\xee\xa5\x96\xc1\xf6\x5d\xbb\x11\x57\x5d\x6b\x7d\x81\x81\x55\x91\xd6\x65\x91\x2e\xd9\x33\x70\x7b\x02\x80\x0d\x63\xf8\x36\xaa\xd2\xcc\xf0\xa0\x9e\xbd\x61\xf4\x72\x0d\x97\xdf\x2e\x1a\x49\x0a\xd4\xbb\x20\x00\xde\x05\x0e\x03\x93\xc9\xd3\x75\x46\x63\x9b\xce\x79\xfb\x72\xfa\x0a\xb5\xc6\x08\x0b\x3f\x3d\x31\xfa\x70\xc6\xb6\xf2\x96\xc5\x36\x68\xd6\xbd\x20\x33\xb3\xc2\x55\xc6\xd4\x86\x70\xa1\x34\x4d\x92\x07\xf5\x14\x74\xf0\x92\x2a\x4b\x1a\x4a\x59\xf7\xbe\x5c\x7e\x42\xde\x24\x54\x08\x96\x54\xcd\x94\x27\x64\x9e\x43\x86\x23\xa0\xce\xbb\xf4\xd9\xe4\xcb\x69\x24\xb7\x47\x91\xcc\x98\x54\x47\x2b\x7c\xf9\x68\x99\xc8\xe5\xd1\x96\x9a\x01\x8e\xce\x64\x94\x6f\xdd\xcd\xe2\x11\xd8\x86\xf6\x31\x3b\xb1\x99\xf7\xa1\x4d\x23\x3b\x83\x6f\x1b\x3d\xac\xe3\xf6\xa1\x28\xbc\x85\xa8\x1f\x54\x0d\x2c\x44\xb1\x25\x8a\xd7\xc6\x66\x85\x04\xd8\xe6\x5e\x97\x86\xac\xa0\x49\xcd\x0f\x10\x32\x61\x1f\xca\x05\x22\x68\x32\x29\x37\xed\x41\x1d\x1f\xc5\xb0\x7b\x39\x3a\xac\x75\xda\xe9\xd6\xf8\x05\xfc\x19\xc3\xd1\xda\xbe\x35\xad\x08\x2f\x1c\x08\x8f\xe0\x68\x7a\x58\x74\xff\xfc\x33\x13\xf1\x3f\xff\xb9\x17\x5f\x2b\x58\x1a\x54\x6d\xd9\x52\xc1\x57\x4c\x69\xc7\xc0\x95\x47\xe6\xf6\x86\x97\x65\xc5\x5d\x09\xb8\x77\x54\xcd\x2d\x82\x21\x5e\xce\x70\xb7\xd6\xa0\x14\xe6\x59\x48\x3b\x43\x86\x07\x0f\x99\x27\x58\x86\x56\x10\xb8\xfb\x3d\x9b\xc6\xea\x0d\xc5\x69\x2a\x9c\x4a\xf5\xd8\x9e\x54\x75\x9e\x97\x2e\x7c\x11\x1b\x38\xeb\xae\x4d\xbf\x51\x13\x9a\xa6\xc5\x8b\xc5\x0d\x78\x2d\x93\x01\x22\x8d\xdf\xfa\x6f\x36\xdf\x25\x56\xca\x5c\xe9\x8c\x6a\xb6\xde\x1d\xdb\x7b\xd0\xe9\x87\xca\xd7\x66\xb3\x7e\xfe\x99\x68\xf9\x9f\x74\x9b\xd4\x7f\x24\xff\x20\x5c\xc4\x4c\x68\xf2\x15\x3e\xc7\x12\xc5\xcc\xbf\x48\x71\x6b\x7c\x29\x93\x84\x8b\xf5\x07\xcf\x55\x9b\xf9\x5f\x15\xf0\x6d\xe9\x27\xcf\x8c\x3d\x26\x5f\x78\xd4\x42\x88\xa3\x0c\xb7\xc0\x7a\xa4\x40\x52\x5d\x6c\x68\xb9\xb5\x80\x01\xb3\xa7\x81\xf8\xdb\xb2\xae\x8b\x39\x90\x52\x1d\x93\x84\x8b\xfc\x93\x43\xce\x85\xf7\x96\x5b\x28\x21\x3f\xff\x6c\x0b\xc4\xfe\xdb\xcd\x21\xf9\xb7\x5b\x72\xfc\xa7\xea\x93\xa4\x7c\x14\x1e\xfe\xb7\x1b\xf2\xcf\x7f\x1e\x93\xc5\x81\xf9\xf7\xad\xf9\xf5\xc0\x1b\x8a\x89\x98\x58\x74\xba\xe5\x9b\x8f\x51\xe6\xad\x1d\x5d\x2d\x32\xa3\x65\xc2\xb2\x46\x2d\xfc\x27\xe4\x1d\xbd\x61\x44\xe5\x99\x3b\x1e\x70\x61\xa0\xa2\x0d\x8b\xf3\x04\x03\x7d\x69\x92\xa0\xd4\xf1\x62\x0b\x26\xb6\x7c\xc3\x31\xb9\x90\x57\xf6\xe1\xf2\x57\x88\xa0\xca\xa8\xc1\x19\x39\xaf\x78\xed\x71\xc6\xec\xc6\x46\x14\xc6\x98\x97\x1c\x65\x1c\xf3\x7e\x68\x1c\x4f\x6c\xa4\x45\xc6\x2c\x10\xc6\xd4\xf7\x27\xbe\x61\xbb\x63\x72\x6a\xdf\x38\x89\x63\x29\xd4\xfb\x5a\xc6\x68\xfb\xec\x3e\xdc\xe7\x9f\x58\x94\xeb\x41\x60\xf7\xdd\xfd\xe3\x53\xd5\xb0\xed\x8b\xea\xe1\xc5\x61\x2a\x7b\xf5\x84\xbc\xe3\x82\x6f\xf9\xdf\x19\x89\xe5\x9d\xd0\x7c\xcb\x48\x9c\x83\xdb\x86\x3a\xfa\xf7\xd5\x52\x77\xa1\xfe\x47\xa2\x59\x92\xf8\x5c\x46\x4b\x12\x4b\xe8\xd7\x04\xee\xc4\x72\x02\xf7\xca\xe2\xa0\x0c\xdf\xa9\x12\x6f\x2c\x23\x75\x14\x49\x11\xb1\x54\xab\x23\x57\xd5\x52\x1d\x81\xc5\x9f\xca\xf8\xe8\x89\x4b\xfc\xe5\x52\x4c\xe4\x6a\x62\x7e\x28\x36\xc4\xfb\xed\xbb\x8c\x46\x6c\x0e\x57\xce\x57\x2c\x92\x22\x56\xc7\xe4\x45\x09\x89\x15\x9e\x65\x49\x6a\xf4\x01\xb9\x07\xd2\x8c\xcb\x8c\xeb\xdd\x69\x42\x95\x42\xd4\xfd\xfc\x33\x99\x9e\x52\x68\xca\x50\xfb\x8d\xfc\xa3\xb8\x1c\x5a\x1c\x20\x17\x44\xe5\xd6\x11\xd2\xe2\xc0\x3b\x4c\xc6\x80\x3d\x75\x4c\xbf\x4a\xfc\x20\x2c\x0a\x81\x50\x95\x16\x46\x14\x2c\xb9\xa0\x59\x25\x65\x0d\x2f\x02\xcc\x6f\x35\xd1\xb0\xe2\x09\x04\x81\x83\x70\x28\x6c\x23\x47\x75\xc8\xc9\xed\xf8\x93\x48\x70\x9f\xea\xf8\x16\x62\x62\x7e\xfe\x79\x7a\x7a\x31\x9b\x99\x3f\x7c\x4e\x60\x7f\x37\x3a\x39\xc6\xda\x1e\x93\xd9\x0a\x8a\xb4\x43\x6c\x98\xff\x60\x24\xb7\x5b\x6a\xa4\xcc\x4f\x8b\x83\x23\x99\xea\xa3\x48\xf0\xa3\x25\x17\x47\x76\xe2\x42\xb1\xc4\x0f\x13\xb7\x6f\x32\xb9\xad\x84\x06\x39\xdf\xe5\x3b\x9a\x3a\x25\xc1\xff\x3c\x21\x27\x90\x3c\xf6\xe7\x0f\xaf\xcf\x2f\x2f\xce\xaf\xcf\xaf\x3e\x5e\x9d\x5f\xfe\x30\x3b\x3d\xff\xf8\xfd\xfb\xab\x6b\x40\x4e\xe0\xb7\xf9\xfb\xcb\x6b\x7b\x09\x21\x6f\x59\x96\xf1\x38\x66\x78\xcc\xd9\xeb\xf9\x1b\xb2\xad\xa2\x0b\x3f\x88\x32\xaf\x82\x96\xf3\x31\x4f\x9c\xb3\xa2\xfe\x86\xcb\x71\x68\x56\xd7\x62\xe2\xb6\xb6\x94\x27\xe4\x8a\x69\x9b\x97\xee\x3b\xdb\x0a\x7d\x2d\x57\xe5\xad\x90\x35\x8f\x4b\xe5\x60\x5a\x1f\xec\x47\x70\xfd\x5b\x4d\xcb\x2a\x02\x4a\x33\x1a\x13\xb9\xaa\xa8\x86\x77\x1b\x26\x48\xae\xcc\xc9\x76\x0a\xb9\xe7\xd2\xac\x0e\xeb\xc8\xe6\xf4\xe4\xed\xec\xf4\xfd\xc7\xd3\x8b\x59\x81\xd0\x93\xd3\xd3\xf7\x1f\x2e\xae\xeb\x18\x80\x88\xc3\xc6\x9e\xe2\x07\x42\xb0\x43\x7b\x5a\xfc\x38\xa7\x7a\x73\x0c\x07\x74\xda\x64\x65\xf5\x15\x5f\xd8\xac\x6d\x77\x54\xfc\x63\x60\xd4\x5d\x30\x56\xdb\x16\x74\x31\xfb\x78\xfa\xfe\xe2\xcd\xc7\x8b\x93\x77\xe7\xc1\x35\x18\xb1\xf7\xc5\x8b\x09\xe0\x73\x6a\x86\x06\xd3\xe9\xa0\x0e\x84\x73\x75\xd6\xce\x22\x24\x82\x00\xc5\xb7\x9d\xc8\x3a\x34\x17\xe7\xd7\x3f\xbe\xbf\xfc\x33\x40\x35\xfb\x6e\x1f\xb4\x16\xc7\xe5\xcf\x6c\xd7\x86\xdd\x8a\x1a\x5e\xb9\xfb\xf6\x3f\x20\xd8\x22\xc1\x3f\xda\xd5\x7c\x0c\x3d\x5a\xd2\xad\x91\xf4\x40\xac\x45\x46\x0e\x44\x99\x7d\xa3\x50\x11\x35\x3f\xb5\x2c\xd8\x3b\xa0\x17\xef\xcf\xce\xdb\x77\xe1\x21\x28\xc9\x00\x13\xa2\x1f\xb3\x6d\xef\xae\x3f\x10\x2b\x4d\x6f\x69\xc6\x8d\x4a\xd7\xbe\x45\xef\xae\x3f\xfc\x8a\xfb\x72\xcb\xf4\xe6\xe3\x56\xe7\xf5\x65\xcc\x33\x76\xcb\x84\xed\xde\x56\x4a\x12\x70\x9d\xa8\x84\x31\x08\xfb\x59\x49\xf3\x54\xbd\xcb\xa3\x5b\xdc\xd5\xdb\xf3\xf3\x46\xab\xd4\xe2\x14\x60\x54\x7b\x85\xf2\x6f\x65\x92\x6f\xd9\xbb\x50\xa1\xa8\x09\xd9\x9a\xaf\x11\xff\x47\x86\x44\x7c\x39\x10\x66\xb1\x91\xe0\x93\x25\x17\x93\x98\x67\xbd\x83\x31\x1d\xc1\x60\x82\xe9\x69\x23\xe5\xba\x1c\x4e\x30\x5d\x1f\x4e\xb1\x28\x07\x21\x2e\x85\x66\x9f\xea\xed\x04\xd3\x8c\xdf\xf2\x84\xad\xab\xe1\xa2\xa4\x14\xd2\x46\x88\x7b\xf8\xdd\x62\xb1\x2b\x2c\xb9\x17\x31\xa5\x68\xb6\x03\xde\x83\xda\x80\x82\xeb\xbc\xf2\xb6\xdb\x08\x19\x68\x4a\x95\x26\x54\x54\x06\x87\xdc\xf5\x65\xba\x22\x54\x93\x23\xb5\x53\x47\x2b\x75\x04\x7f\x8a\x98\x44\x90\xf9\xf0\x12\x7e\xca\x72\x61\xcd\xcd\x23\xfc\x7a\xea\x4a\x82\x59\x6e\xcf\x35\xa7\x09\x57\x65\x02\x18\x6a\x97\x71\x65\x32\x41\x96\xc6\x2a\x65\xab\x95\xcc\x34\x59\x51\xb5\xe1\x52\x1c\x22\x10\x42\x92\x15\xe5\x89\xd1\xc4\x41\x30\x66\x99\xcc\xd4\x21\x86\xfa\x69\x12\x73\x95\xe5\x29\x5c\x83\x7b\x79\x66\xc2\xb5\xfc\xa9\x8b\x50\x47\x5b\x8b\x03\xc0\xd4\x64\x99\xae\x56\xaa\x4a\x45\xa5\xd6\x61\x8c\x90\x87\x52\x3b\x3c\x59\x07\xe9\x94\x07\x13\x83\x1a\xfb\x4f\xb3\xf8\x09\x2e\xbe\xa6\x8a\x0c\x26\x69\xdc\xa2\x30\xe5\xa9\x9d\x9a\x34\x7f\x7b\x42\x5e\xf3\x98\x67\x78\xe3\x4b\x13\x4c\xc0\xb2\x8e\x62\x68\x77\x04\xc6\x4f\x91\x66\x2f\xd8\x1d\x4e\x48\xee\x18\xd9\x1a\xe3\xa8\x46\x19\x69\x26\x53\x6a\xeb\x1c\xca\x82\x13\x37\x67\x55\x12\x07\xe5\x9a\xc8\x5c\x27\xfc\xd6\xa6\x65\x54\x29\xb9\xa1\xf6\xe0\x62\xed\x1c\xe0\x1b\xa8\x80\xdf\x85\x9b\x5b\x9a\x79\x74\x1a\xc6\xd1\x2d\xcd\x26\x59\x2e\x26\xe1\x67\x1e\x04\x57\x8d\xa3\xf2\x9b\x42\xd9\x13\x02\x54\x46\x8e\xd2\x4c\x46\x47\xd6\xc7\x2d\x95\xb6\x55\x39\x72\x95\xd3\x24\xd9\xd9\xac\x59\x98\x38\xcd\xe4\x3a\xa3\x5b\x58\x9b\xa1\x6b\xf3\xe2\x94\xcc\xf4\x53\x9f\xcb\x00\x0c\x42\xa1\xc5\xb0\x3b\xac\xcf\xe9\xb8\x81\x79\xd4\x3b\x22\x87\x18\x33\x6d\xe0\xc9\xa4\xd4\x05\xc7\x59\xa9\x16\x4c\x6a\x49\xa8\xd6\x46\xa1\x39\xbd\x7e\xfb\xda\x81\x66\x6c\x98\xcc\xac\x37\xa9\xf7\x5f\xa9\x12\x88\x83\x3e\x4c\x1a\x6d\xbf\x66\x8c\xc6\xc6\xc2\x6e\xaa\xd5\xf7\xe3\xe9\x51\xd8\x16\xbb\xcc\x85\xaa\xbb\xe8\x0a\xf5\xcd\xb3\x75\x41\x93\xab\xf5\x34\x7d\xe2\xbd\x52\xe0\xa4\x16\x74\x63\x38\x7a\x26\x73\x8d\xe5\x90\xcc\xa8\xfe\xfb\x86\x04\x02\xfc\xd3\x67\x67\x8f\xc2\x3b\x7f\xdf\x36\xd8\x07\xc5\xfc\xad\x3d\x99\xcf\x9c\x23\x76\x49\x23\x63\x11\x81\xd4\x86\x6b\xc9\x16\xe5\xe9\xec\xe4\xfa\xe4\xea\xfa\xfd\xe5\xf9\xc7\xeb\xff\x9c\xb7\xdb\x12\xe5\x12\x9a\x46\x84\x0b\x9e\x65\x48\x1e\x84\xae\xd7\x99\xab\x34\x51\xe8\xd6\xa9\x8d\x20\x6a\x01\xe3\xc3\x95\x41\xf0\xd9\x47\xf3\x48\x2b\x10\x80\x91\xc6\xf4\x3f\x52\xae\x0b\x4b\xb3\x6f\xb9\x3f\x9e\xcc\xae\x3f\xbe\x79\x7f\xf9\xb1\x58\xf7\x9e\xb3\x19\xeb\x61\x6f\x83\xc1\x58\x09\xbf\x8a\x91\x30\xda\xe8\x1d\x48\xeb\xb7\xd1\xcf\xa4\x78\xaa\x09\x13\xa0\x21\xbe\xfe\x6e\xde\x0d\xbb\xb5\x81\x67\x17\xdf\x7d\x7c\x7d\x72\xfa\xe7\xf3\x8b\xb3\x56\xda\x12\x52\x04\x68\xcb\x5e\x10\x61\x3f\x6a\x63\x83\x43\x3d\xa7\x15\xaa\xe0\x5e\x11\x0d\xf3\x7b\x0b\x24\x6f\x3f\x5c\x5d\x9f\x5f\xf6\x9c\xe5\x6f\xd4\x21\xba\x55\x1b\x10\xa0\xfb\xf1\xd0\x28\xc6\x0a\x7d\x90\x87\x46\x90\xa2\x68\x87\xf8\x0e\x92\xb1\x89\xab\x17\x41\x93\xa4\x6c\x99\xa9\x34\xd5\x2d\x50\xbd\x39\x7f\x3b\xfb\xcb\xc7\xd9\xfc\xfa\xe4\xf5\xdb\xf3\xab\xcb\xf3\x37\x97\xe7\x57\xdf\xcf\x2e\xae\xcf\x2f\x7f\x38\x79\xdb\x0a\xe6\xab\x17\x4d\xf8\x2e\xa4\xd7\xd2\xc6\x6a\x0f\x2d\x9b\x32\x6b\x37\x09\xc3\x7e\x10\xe7\x11\x9d\xcd\x6f\xbf\x82\xc4\x92\xd2\x0d\xe3\x05\xcf\xd4\xa2\xe9\xa7\x10\x1a\x39\x9b\x17\xcd\xc3\xea\x23\x47\x1b\xa9\x8c\x98\xc0\x3c\x53\xa3\x0f\x52\xb1\x66\x53\xbc\xf9\xc4\x8c\x56\xd7\x25\xc1\xc6\x51\xf8\x31\x13\x38\xea\x86\xde\x36\xc6\x15\xd2\x7a\xe2\x6d\x9f\x05\x9b\x5f\xbc\x32\x7b\x62\x6b\xd5\xfd\xf7\x64\x62\x6f\xcf\x26\x11\x8f\xb3\xff\x6e\x1c\xe8\x1a\xfd\xce\xe6\x3f\x7c\x35\x7f\xff\xfe\x6d\x80\x09\x3f\xa9\xf8\x95\xbe\x7d\x39\xfd\xe2\xd5\x37\xd3\x17\xd3\x17\x47\x5f\xbc\x6a\x22\xf3\x8c\x2b\x8c\x91\xe4\x09\x23\x89\x5c\xc3\x32\x95\x24\xff\x0d\x69\x0f\x3a\x31\xdf\xa9\xff\x86\x5b\xbf\x7a\xd9\x87\x1a\x44\x67\xb3\x2b\x43\x32\x1f\xdf\xcc\xde\x9e\x7f\x7c\xfb\xfe\xbb\xef\x66\x17\x61\xdf\x52\x37\xbf\x7e\x03\x84\x5b\x66\xf8\x4a\x54\x58\xdd\x86\x63\x41\x3c\xf3\xf5\xc9\xe9\xe9\xf9\xfc\xba\x05\x26\xa4\xe2\xb3\xf3\x37\x27\x1f\xde\x5e\x9f\x5f\x9c\xcd\xdf\xcf\x2e\xae\xaf\xdf\x1b\x95\xe1\xe4\xf4\x7a\xf6\xfe\xa2\x15\x32\x1c\xb6\x1d\x51\xb3\xf9\xed\x2b\x43\x62\xa5\x24\xef\x04\x61\x36\xff\xe1\xd5\xd5\x87\xb9\xd1\x47\xf6\xf1\x7a\x78\x97\x08\xde\x0d\x3c\xd4\x39\xc0\x90\x31\x65\x50\x05\x33\xbc\x7d\xff\x9d\x41\xf9\xfc\xe4\xfa\x7b\xb4\x9f\x05\xb3\x81\xc2\xb8\xb1\x80\x4f\xb7\xb3\x5a\xc2\x4e\x77\x41\xec\x8d\xb7\x27\x4b\x1c\x0e\xf0\xd5\xf9\x0f\xe7\x97\xb3\xeb\xff\xbc\xfa\xcf\x2b\x84\xd9\x1e\x2a\x38\x79\x45\x2a\x8c\x58\xc9\xce\x95\xa8\x9d\x4a\xe4\xba\x67\x2d\xde\x54\x7b\xf0\x98\x92\x12\xbd\xf9\x16\x07\x77\x34\x13\x5c\xac\x87\x2c\xfd\x2a\xb8\xde\xd3\xcb\xf3\xf3\x0b\x33\xd6\x8f\x38\x52\x73\xc5\x43\x97\x03\x23\xb5\xae\xe8\xc7\x30\xa0\xd5\xe1\xbe\x3f\x3f\x79\x7b\xfd\xfd\xf9\x85\x39\xb6\xed\xe2\x2f\x7c\x54\xbb\x16\xec\x84\x87\x15\xac\x60\xc7\xe5\x1a\xc3\x41\xcc\x3f\xbc\x90\xf4\x15\x11\x2b\x94\x49\x43\xa4\x51\x9f\xa4\x36\x83\x57\x41\xbd\xaf\x23\x2e\x14\x8e\xe4\xbe\xc7\x82\x02\x0d\xad\x25\x4a\xf3\x63\xf2\xf2\xeb\x17\x95\xea\xf0\x09\x5f\xb1\x68\x17\x25\xf5\xea\xaa\x69\xc6\xae\xb4\x4c\x1b\x83\x18\xd3\x39\xe8\xdf\x45\xa7\x53\xf3\x97\x09\x81\x3b\xaf\x16\xd3\xcd\x3d\x33\x51\x9b\x5c\xc7\xf2\x4e\x54\x61\xbb\x65\x82\x29\x35\xcf\xe4\xb2\x0e\x5f\x10\x8e\x36\x28\xfa\x61\x98\x90\x09\x9c\xde\x89\x99\xb3\x86\x89\xea\x25\xea\x17\x2f\xaa\x3f\x5b\x5f\xe3\x19\x4b\xe8\xae\xf5\x21\xeb\x4a\xbc\xde\x64\x4c\x6d\x64\x12\x1f\x93\x57\xd5\x07\x34\xdf\x32\x99\xeb\x96\x01\x8c\xcd\xcf\xdb\x30\xb1\xd1\x3a\xfd\x8e\xd5\x29\x07\x3a\xe3\x6c\x8e\xc9\x51\xf1\x6e\xe3\x77\x99\xe9\x63\xf2\xed\x8b\x6f\xbf\xad\xff\x62\xe4\xd9\x31\x49\x64\x44\x93\xa6\x67\xa8\x07\x1d\xdd\x0b\xe9\x70\x2c\x3e\x81\xa6\x91\x2e\x4b\xd7\x70\x1e\x2f\x6a\xde\x98\xa2\x51\xc6\x40\x83\xa5\x49\x53\xa0\x3d\xa0\x67\x9c\x54\x7c\x2c\x45\x15\x9b\xb6\xd9\x12\xbe\x3c\xda\xca\x38\x0f\x54\xd4\xc3\x69\x12\xbe\x9c\xb4\x3c\xd0\xee\xca\xa9\xcf\x92\xe5\xe2\xe8\x13\xb2\xa1\x69\x22\xa3\x9b\xf0\x54\xf6\x89\x49\xe8\x89\x3d\x96\xf4\xf9\x8e\xcb\x3d\x27\x33\x38\xec\x9b\xcc\xa0\xf1\x5e\x93\xe1\x10\xe8\x75\x52\x3b\xd1\xf0\xa7\x85\x56\x6e\x38\x04\x5d\x37\x8a\xb6\x20\x89\x16\xfe\x99\x43\x72\xc7\xc0\x6a\xb0\x7e\x1c\xd0\x01\x0a\x0f\xa2\xbb\xe8\x28\xaf\x41\xea\xae\x6b\x25\xc1\x51\x0b\x4f\x63\xdd\xb8\xfa\x74\x50\xcb\x52\x13\xf4\x9e\xca\xac\xe9\x4e\xc4\xc5\xe1\x75\x42\xc7\xba\xca\x49\xc3\x03\x98\xa3\x90\xc8\x75\xe8\x28\x34\xf6\x4a\xae\x0b\x27\x68\x35\x6e\x82\x74\x50\x74\x23\xb6\x23\xcb\x85\x2a\xcc\x79\x34\xee\x8b\xaa\x1c\xd8\x45\x74\xb2\x5d\x63\x6c\x26\x13\x95\x5b\x1b\x90\xd1\x89\x61\x4e\x98\x62\xd9\x68\x39\x3a\xf1\xfc\x64\x65\x5c\x6b\x09\xa3\x17\xdf\x61\xcc\x56\x1b\x74\x3d\xdb\xae\x3f\xfb\xbe\x85\xd8\x38\x0f\x23\x6b\xec\xc4\xb1\xbd\x6b\x99\xf0\x74\xb2\xa5\xea\x6f\xee\xcf\xda\x42\xcb\x1c\x02\xfc\xdc\x5f\x2b\x68\xfa\xf5\x1c\x3e\xe6\xef\xcf\x1e\xed\x6e\xd9\xc5\xf6\x4d\x45\xc3\xef\x51\x9f\xfe\x6a\x7e\x72\xfa\xf8\x30\x04\x3a\x34\x17\x1a\xdb\xdb\x93\x8b\x8b\xf3\xb7\x67\x1f\x67\x6f\xf6\x84\xe4\xa1\x83\x0b\xcc\x43\x1f\xf9\x6a\x00\xa4\xf3\x8f\xef\x4e\xae\xfe\xf7\xaf\x08\xab\xa1\xdd\x9c\x65\xb4\xaa\x39\xb5\x8a\xf3\x7d\xa4\x57\x9f\xec\xea\xe0\xef\x93\x6a\x98\xf9\x24\x5a\xd5\x56\xe0\x43\x61\x54\x02\x9f\x27\x1c\xb9\x47\x71\x15\xd5\xeb\x0f\x97\x6c\x88\x21\x2f\x4d\xe6\xd2\x22\xd5\x8d\xee\x01\xd3\xd5\x0e\x6c\x87\xae\x30\xe9\x95\xa8\xdd\x83\xb6\x49\xeb\x49\xaf\xf0\xec\x1f\x37\x24\x98\x27\x3d\x1b\xd6\x3d\x6a\x37\x29\x60\xf8\xf1\x1b\x9e\xb0\xf7\xd9\x69\x25\xbf\xa6\x9c\xb7\x79\xad\xdc\x3d\xa3\x95\x7d\xa1\x89\xce\x9c\x5c\x6d\x9f\xad\x21\x5a\x07\x4d\xd6\x10\xb4\xb5\xf9\x7c\x4a\xdb\x96\xf7\x9f\x95\x3b\xcd\x5a\x95\x00\x2f\x70\xa0\x1a\x42\xd9\x7a\x67\x19\xa0\xda\xd0\x9d\x62\xf7\x82\xaa\x4f\x97\xe7\xc2\x9e\xa1\xc0\x1c\x2d\x67\xb1\xe0\x47\xc7\xa1\xd3\x1f\xe6\x41\x65\x52\xb9\x8b\x1f\x3b\xbd\x98\x85\xae\x05\xc3\x21\x33\xdd\x2b\x0b\x06\xe2\x4c\xba\x6d\x83\xee\x11\x5b\x6c\x8e\x72\x15\x36\x9d\xdd\xd8\x35\x89\x5c\x87\x36\xa8\x45\x11\x1b\x70\x52\x5b\xd4\xb2\x72\x72\xeb\x7b\x4e\x59\x36\x49\x65\x4c\x3e\x08\xfe\x89\x9c\x49\x63\x6f\x91\x2b\x59\xeb\xbb\xd7\xad\x35\xb7\x40\xd3\x7b\xa6\x48\x93\x69\x79\x8a\x36\x64\x97\xf4\x45\x76\xfb\x49\x1a\x65\xe2\x4d\x3d\xb5\xe5\x3e\x59\x1b\xfb\x66\xb9\xd4\xeb\xb0\x14\x19\x2f\x57\x8c\x85\xb2\xf4\x2a\x59\x89\x47\xcd\x2a\x2e\xc1\xf4\x13\x9b\xa4\xe2\x15\x54\xdf\xa7\x86\xcd\x7d\x52\x54\xda\xea\xd4\xb8\x2c\x0c\xbc\xdc\xa8\xd4\xcd\x73\x0d\x8f\xa0\x0f\x25\x85\x32\xb1\x09\x03\x37\xf8\x2d\xde\xe9\x51\x61\xab\x30\x66\x2c\x4d\x78\x44\x15\x24\x8a\xec\x9b\x00\xd3\xba\x48\x55\x26\xc3\x94\x64\x78\xc9\xca\xfc\xcc\xbe\x3c\x94\x5e\x34\x12\xd2\x85\x4a\xd2\x93\xca\xd2\x31\xec\x67\x26\xb7\x4c\x08\x5f\x91\xe9\x75\x99\x4a\xe2\x85\xd9\x57\x13\x4c\xbc\x6c\x20\xff\xf1\x22\x15\xe8\x15\xe6\xae\x4c\x08\x4b\x14\x6b\x1d\xa5\x64\x2a\x61\xe7\xaa\xf7\xb4\xbb\xcf\x6e\x2d\x9a\x28\x09\x16\xa9\x4d\x18\x04\x18\x65\xb9\x68\x4b\x6e\xa9\x26\xc5\x94\xf7\xc2\x63\x6a\x4c\xe5\x45\xd8\x3d\x9b\x85\x84\xcf\x7c\x4e\x9a\x4c\xe7\x59\x68\x24\xce\xdc\x37\x9b\xc4\xcc\x52\xab\x9d\x36\x28\xbb\xa4\xb8\x88\x0c\x25\x98\x04\x03\x9a\x26\xc3\x4e\x39\xa9\xfa\x07\xca\x07\x3e\x33\xa8\xa8\xe1\xeb\x3c\xdd\x48\x68\x0a\x05\x57\xe1\xfe\xc1\xd0\xd2\x9c\x85\x16\x47\x8f\xbd\x09\xf9\x78\xfa\xfe\xe2\xfa\xf2\xfd\xdb\xb7\xe7\x97\x6d\x57\x46\x4d\x1f\xf7\x5e\x21\x3a\x37\xc1\xd6\x6f\x0f\xe9\x8f\xcf\x55\x86\x3e\xf9\x0d\x8b\x6e\x26\xd5\x2a\x71\xe5\x63\x93\x5a\xb8\xe0\x6f\xdd\x17\xff\x48\x58\xc8\x7a\xb1\xf0\xf8\xfa\xd3\xde\x4a\x46\x5d\xa3\xaa\xa6\x02\xa3\x78\x36\x3c\x75\x2e\x63\x72\x86\xf1\xd4\x5c\x0a\xf2\x3a\x8f\xd7\x0c\x43\xb0\xca\xf3\x07\xda\x33\x86\xd9\x7d\xa3\x8a\xc8\x96\x93\x5c\x4b\x15\x51\xfb\x3b\xbb\xe5\x91\x36\x98\xf0\x17\x89\x1a\xac\xa7\x4c\xcd\x65\x5c\x4e\x86\x73\xfd\xfa\x5a\x55\x20\x8f\xf6\x81\xd4\xa3\x83\xc3\xff\x1f\x21\xe4\x00\xed\xab\xdb\x2f\xa7\x2f\x5f\x4d\xbf\x38\x38\x26\x07\x66\x43\xc0\xfd\x49\xae\xad\x76\x54\xc6\xa1\xe1\xf7\xf6\xe1\xc1\x0a\xb1\x2d\x23\x54\x49\xfc\x3e\x75\x46\x1f\xe1\xaa\xe8\x5f\x13\x15\x01\x7e\xd4\xac\x71\x35\x81\x8a\x37\xb1\x9d\xd6\x8f\x57\x29\x8b\x1e\xb8\x71\x9a\x14\xdc\x9e\x60\x5f\x18\x93\x6d\xfb\x55\xbc\xf6\x04\x6b\x95\x19\x20\xed\x55\x3e\x86\x01\x69\xf3\xed\x47\x2b\x20\x3f\xba\x10\xfe\x32\xb4\x00\x95\x61\x28\xa6\xbf\xa2\x51\x69\xab\x63\xd8\xac\xa1\x60\x88\x0c\x81\x56\x52\x91\xeb\x28\x05\x5f\xd9\x42\xed\x51\x59\xb3\xea\x49\xd1\x57\x72\x99\x50\x71\x73\x58\xf4\xde\xf5\xc6\xe7\xca\x05\x00\x95\x1e\x73\xc3\xe8\x9f\x2a\x1c\xc1\xc9\x49\x08\x9c\x84\x51\x3d\x17\x23\xa6\x2e\xa3\xcf\x7b\xe6\x86\x74\x59\xcc\x4f\xc8\x8f\xb6\x93\x8f\xcc\x20\xc1\x01\x0a\xe6\x3a\x97\x5f\xd9\x8c\x56\x92\x98\x29\x6d\x53\x4c\xb1\x3f\x19\x86\x07\xe1\x20\x4e\x57\xb2\xf1\x79\x53\xa4\x6d\x37\x8c\x7f\x57\x8f\xcf\x97\xb1\x9e\xe6\xcd\x77\xd7\x1f\xfc\x30\x42\x97\xfc\x5a\x22\x00\x8b\x00\xe8\x5c\x08\x66\xef\x00\x9f\x90\xd7\x3b\xb7\xec\x43\x18\x80\x2b\xbf\xaa\x9c\x6b\x62\xeb\x37\x12\x62\x5a\x17\x91\x52\xd8\x7e\xc9\x46\x3b\xd9\xca\xfb\x2e\xc4\xde\x4e\xf0\x9f\x32\x47\x1b\x07\xa3\x74\x59\xbd\x68\xdd\x72\x47\xd2\x4c\xde\xf2\x18\x13\x85\x85\x14\x93\xbf\xb3\xcc\xc6\x8b\x4c\x4b\x35\xdd\x00\xe7\xb4\x6c\xbe\x22\x82\xe1\x57\x2f\xac\xe6\xe2\x32\x9a\xec\x36\xbd\xbb\xfe\x80\x7b\x63\xd5\xba\x80\x7e\xee\xbf\xf1\xc5\x57\x5f\xbf\xa8\x3d\xdd\x9e\x90\xe7\xaa\x08\xb5\xe5\xe5\xc1\x6b\xa0\xca\xa1\xc9\xfc\xc4\xf5\x98\x71\x1d\x4b\x6d\x5e\x5f\xd1\x10\x32\xd7\x72\x4b\x41\x11\x4b\x76\x24\x95\xb6\x44\x36\x12\x60\x23\x81\xee\x98\xfc\x63\x82\xfc\xeb\x67\xc7\xc6\x16\x07\x70\x6d\x70\x60\xc3\x09\x27\xa9\x8c\x27\xf6\x25\xaf\xc9\xdd\xe2\x20\x12\xee\xec\xe3\xb3\x2f\xa6\x5f\x4e\xbf\xa8\x3c\x61\x8b\x45\x98\x9f\x7f\x2a\x65\xe6\xcf\xbe\xf8\x5c\x1c\x40\xc0\x23\x0c\x60\x7d\x9b\xd5\x46\x7a\x8b\x83\x44\xae\x3f\x26\xec\x96\x25\xf8\x14\x04\xbd\x84\x9e\x59\xf1\x84\x7d\x4c\xa9\xde\xe0\x73\x01\x47\x8c\xf9\xdf\x34\x91\xeb\xc6\xeb\x45\x64\xf1\xc7\x12\x1a\x3f\x2a\xba\xf6\xb8\xd9\x97\x12\x47\x1f\x3f\x86\x72\x06\x3f\x7e\x6c\xbc\xb6\xd5\xb9\x79\xe3\xe3\x47\x9b\xb1\xf7\xf1\x63\xed\x01\x9e\xd2\xad\x79\xe2\xe7\xba\xd2\xe1\x63\xc9\x70\xac\x09\x44\x03\x04\x5a\x0e\x2e\x0e\xf0\x16\x0b\x1f\xcd\x15\x9b\xcb\xf8\x94\xc7\x59\x35\xca\xe5\x9f\xb5\x79\x51\x2c\xf7\xce\x7c\xf3\x8d\xea\x1e\xc7\x47\x59\x70\x2c\x5b\x1b\xd9\x48\x02\x0f\x75\x98\x57\xfa\xd1\x45\x91\x19\xcc\x55\x66\x29\xff\xf0\x27\x6c\x25\xa3\x54\x66\x7a\x4b\xd3\x06\xfa\x95\xa0\x80\x17\xc3\xf4\x6a\x3f\x45\x34\xa5\x50\x67\x86\x3b\xd0\x61\x94\x77\x58\x99\x5c\xb9\xb7\xf6\x85\x64\x49\x45\x7c\xc7\x63\x43\x91\xfd\x13\x7a\x0f\x37\x67\x73\xff\xb4\xd7\x92\x96\xa1\xbc\xa9\x06\x60\x57\x19\xca\x14\x73\x79\xa0\x38\xbe\x4d\x2c\x72\x37\xbc\xd5\x6c\x21\xc1\x34\x88\xe7\xe9\xff\x51\x46\x8c\xff\xa3\xc1\x0e\x2e\xdc\xe1\x77\x42\x0b\x15\xbe\xd3\xd9\xd9\xa5\xe1\x8a\xde\x81\x7f\x6d\x2f\x88\xab\xbb\x8f\x8d\xea\x8a\xd7\x2d\xd4\xf6\xd9\xa9\xf9\xcd\x2f\xdf\xf1\xcf\x62\x89\x7d\xaa\xce\x4d\x1c\x4f\xa2\x2c\x76\xce\xbe\xc7\x6b\x08\xd5\xa8\x4a\xf6\x08\x6d\xa1\x5e\x7f\x37\xaf\x14\x2a\xc7\xdf\xca\xe6\x50\xf5\xdf\x9b\x2d\xa2\x5a\x6a\xa7\x95\x8d\xa2\xea\x0f\x2c\x86\xb7\x8b\xb2\x5b\xbe\x78\x9c\x5e\x51\xf5\xb5\x55\x1b\xcd\x54\xc5\x24\x36\x67\xdc\x99\x77\x40\xb3\xaa\xba\x79\xc6\x5e\x51\x63\xaf\x28\x7f\x0b\xc6\x5e\x51\xbf\x58\xaf\xa8\xfa\x21\x6e\x76\x8c\xaa\xf6\x46\x34\x07\xb8\x2a\xb0\x6a\x6e\x95\xf6\xd6\x50\x54\x5d\x40\x37\xf2\x40\x18\x45\xed\x40\x5f\xe1\x83\xae\x05\x9d\x33\xc9\x4e\xae\x6c\x3f\xf3\xc2\x48\xa4\x56\xd9\xfe\xe9\x0c\x1f\x09\x46\x68\xbc\xfa\xea\xeb\x2f\x5e\xfe\xf5\x69\xf3\x27\xac\xff\x79\x6c\x4e\xe7\x97\x2f\x9b\x3f\x23\x4a\xcd\xd1\x5d\x37\x5b\xa8\x2f\xb9\x88\xdf\xc9\xb8\xee\xbb\x6a\xe2\xd7\x3e\x17\xea\xf7\x2a\x41\x50\xd8\x8c\x45\x8b\x58\x81\x16\x51\x4b\x9b\x6d\xf0\xce\xdb\x5c\x1b\xa6\xc8\xb3\x0b\x29\xd8\x73\x2c\xef\x99\xec\xfc\x2a\xa6\x4f\xe1\x4e\x49\x0a\xf0\xb3\x97\xf9\x39\xa1\x51\x2f\x0c\x06\xcd\xb6\x4f\x5f\x7f\x37\x9f\xce\xe6\xb7\x7f\x39\xb1\xc9\x3c\xcf\x20\x13\x74\xfe\x7c\x4a\x2c\x7a\xc9\x92\x6d\xe8\x2d\x97\x39\x6e\x8d\x83\x3f\x34\x6a\x60\x49\x0d\xf8\xf7\x6c\xaf\xeb\x0e\x5b\x88\xb6\x6a\x58\x3f\x2d\x1f\x45\x96\xe4\xda\x8d\x21\x48\xf6\xd0\x3a\xd2\xa6\x58\x4e\xb2\x19\xb7\x67\x3e\x34\x5b\x72\x9d\xd1\x6c\x67\xbb\x54\x43\x72\x1e\xc5\x6c\x01\xcc\xbd\xdd\xab\x3f\x59\x10\xcc\x5d\x79\xe2\x94\xa6\x22\xa6\x59\x6c\x36\x35\xa1\xd9\x9a\xd5\xc1\x0d\x0d\x4a\x60\x09\x86\xb9\x05\x32\x1e\xf1\xd3\x71\x2e\xf1\x03\x1a\x41\xf8\xa7\x7a\x7b\x39\xba\x65\x64\xcd\x6f\x99\x40\x4f\x54\x05\xbc\xe0\xe4\xa4\xb7\x31\x1b\x29\xdc\xe6\x83\x40\xf8\x01\x44\x0b\x14\x1d\x5e\x42\xc9\x1e\x3c\xca\x64\x71\x40\xe9\xb1\x10\x8b\x03\x68\x6c\x8e\x7f\x1c\x6f\xb7\x8b\x83\x56\xb0\x08\x84\xa3\x16\x58\x2f\x57\x93\x2b\xe6\x0d\x87\xe3\x1f\xda\x26\x34\xe6\xfb\xc5\x81\x41\x7a\xfb\xb0\x8b\x03\x78\x91\x66\x8c\x7c\xf1\x8a\x2c\xb9\xb6\xbc\x6b\x0a\x13\xd6\xb7\xd6\x9b\x0d\xe0\x6d\x1f\x37\x04\xc9\x61\x31\x9b\x88\x8d\xc5\xba\xb5\x13\x7f\xf9\xb2\x32\xf1\x8f\xe6\x95\x60\xa3\x60\x07\x32\x2c\x0b\xeb\x04\x9c\x5c\x11\xe4\xc2\x6d\x83\xa7\x2c\x9b\x9c\x5c\xb9\x8c\x48\x1e\x28\x62\xe0\x3e\x29\xd5\x46\xfd\x39\x26\xff\xf5\x6c\xb1\x88\xff\xd7\xf3\x63\xfc\xcf\xbf\xfd\xa3\xfa\xb7\xfb\xfa\xbe\x14\xd4\x26\x02\xfd\x5f\x03\xad\xff\x08\xe1\x6b\x21\x33\x16\x17\x0e\xbd\x5e\xf6\x32\xab\xbf\xe0\x71\x77\x2c\x22\x81\x96\x9d\xe7\x74\xd3\x1b\x1a\x6c\x5e\x5d\x34\x04\x59\x32\xc2\x3e\x41\x1f\x97\x18\xb3\x75\xf1\x8e\x64\x4d\x62\x06\x7d\x25\xee\xc1\x6b\xee\xd9\x0b\x91\x58\xb6\x3e\x97\x59\x48\xa0\x56\x30\xf1\xb6\x78\xd2\x09\x6b\x68\x9b\x8f\xc4\x69\x98\x6d\x9a\x49\x2d\x23\x99\x38\x0d\x1a\x87\x0e\x92\xca\x99\xeb\x24\xae\x25\xf9\xe2\x3f\x1a\x09\x15\xe0\xe1\xe7\xdb\x7c\x7b\x4c\x5e\x7d\xfd\xf5\x97\x5f\x07\x7e\xe7\x02\x7f\xff\x62\x4f\x61\x9e\xc8\xf5\x15\xbb\x65\x19\xd7\xbb\xab\x28\x63\xac\x6e\x6f\x34\x96\xfd\xf4\x6d\xfd\x0d\xb7\xfc\x44\xae\x89\xb2\xbf\x10\xba\x94\xb7\xee\x7e\x32\x91\xeb\xa0\xf8\x35\x47\x09\xba\x9e\x5b\x03\x42\xe9\x58\xe6\xda\x53\x69\xc8\xec\xe2\xcd\xfb\x90\xfa\xd2\xb5\xbd\x46\x07\x78\xc7\xd4\xe6\x1d\xfd\x74\xc9\x20\x4f\xf6\x9a\x07\xf9\x7b\xb5\x31\x27\xc7\x24\x74\xbc\x25\x32\x92\x4e\xc9\x95\xbe\x33\x20\x66\x38\x0a\x7c\x09\x75\x09\xb5\x9c\x6c\x99\xda\x90\x94\x31\x03\x80\xb2\x2d\xe7\x43\x4b\x2c\xda\xce\x1f\xa2\xd6\x5e\x78\x3f\xf3\x8c\xc5\xae\x3a\xc2\x3a\xa3\x11\x5b\xe5\x49\x31\x93\xbd\x41\xec\x18\xd7\x68\xee\x95\xb1\x19\x79\x3d\xbb\x3c\x2b\xf4\x45\xb9\x22\x5f\xbc\x7c\xa1\xdc\xbd\x89\x4d\xcb\x45\x77\xb5\x2d\x9a\x5e\xff\x80\x1e\xb5\x64\x90\xc7\x68\xd5\x29\x37\x5a\xc3\xdc\x75\x61\x39\x58\x86\x03\x1d\xde\xc1\x2d\x86\x02\x30\x17\x76\x47\xa0\x90\x12\xa4\xaf\x07\x84\xc7\x90\x2d\x9d\x53\xa5\xee\x64\x16\x4a\x13\xab\x6c\xe6\x7b\x5b\xb6\x02\x8f\xa1\x7d\x09\xf6\x6f\x95\xdb\x18\x8f\xe6\x26\x86\xc0\xaf\x62\xed\x5e\x28\x0a\x12\xbe\x87\xb5\x3d\x50\xd4\xa3\xc8\x28\x16\x65\x4c\x77\xc4\x6b\xd7\xb0\x84\xc1\x42\x46\x45\xbc\x61\x3b\x30\xfe\xed\x10\x36\x9b\x04\x0b\x49\xa4\x32\x7e\xaa\xca\x3b\xb0\x16\x49\xd7\xab\x63\x61\x1c\x78\xbb\x00\x6e\x74\xc9\xb5\x30\x61\xbd\x08\x80\x4a\x4b\x7b\xa7\x09\xb6\xef\x94\x90\x77\xa8\x04\xb5\x0f\x4a\x08\x35\xaa\x15\x8f\xdd\x10\x37\xac\x9e\x03\xe3\x7f\xfa\xf5\xb4\x1e\x5d\xb1\xce\x2a\xfd\xaa\x8a\x19\x5b\xb1\x8c\x09\x1d\xb4\xab\xbb\x8a\xb8\xca\x5b\x96\xdd\x72\x76\x77\x64\x4b\x56\x4c\xee\xb8\xde\x4c\x50\xd6\xab\x23\xd8\x98\xa3\x27\xf0\x9f\x2e\x44\x5c\xbf\x3f\x7b\x7f\x4c\x4e\xe2\x98\x48\xb0\xc0\x72\x05\x1c\x07\x68\x5b\x4d\x3d\x7f\xd3\x21\xb8\x3b\x0e\x49\xce\xe3\xff\x7f\x80\xf3\xee\x83\xab\xa2\x7a\xcc\x40\x7c\x5d\x01\x43\xdb\x95\x56\xe2\x86\x91\x2b\xdc\x38\x99\x81\x8e\x6f\x88\x62\xdb\xbf\xeb\xe8\x0b\xeb\xd0\x50\x11\xfa\xa5\x94\x09\x0b\x33\x43\x52\x5c\xe3\xb5\x00\x0f\xe1\x59\xe1\x9f\x86\x28\x63\xe1\x5f\xcd\x81\xbb\x96\x8e\x17\x9c\x23\x1f\xe8\x15\xc8\x17\xa1\xb7\x0c\x8f\x2a\xed\xed\x82\xed\xb9\x5e\xb3\x21\xc8\x0d\xb3\xdc\x56\x79\x90\x2f\x8b\x75\x96\xb3\x76\x59\xdc\x82\xcb\x34\x63\x2b\xfe\xe9\xc4\x6f\x08\xd6\xab\x62\xce\x03\xef\x94\x56\x22\x04\x20\xc3\x13\xd5\x3e\x63\xa1\x15\x75\x79\x6b\xc8\x70\x5b\x35\x00\x50\x29\xc5\x55\x15\x0c\x8f\x13\x86\xa9\xc3\x55\xb8\x29\xa4\x77\xa8\x10\x91\x43\x5e\x0f\x53\x8d\x78\x1c\x72\x29\x05\x96\x00\xed\xd2\xe0\x56\x1c\x34\xb2\x72\x64\xa7\x9c\x2e\x59\xb9\x8e\x7a\x11\x93\xf2\xd3\x7f\xea\xbb\x3d\x15\x21\xc8\x3c\x7f\x85\x91\xb1\xcb\xb2\x41\x3a\xe3\x40\xbc\xa5\xa9\xd8\xc3\xe5\x68\x62\x0c\x87\x9d\x3b\xfe\x46\x8c\x2d\x0e\x0c\x53\x51\x53\x6f\x16\xb4\x90\x07\xb9\x16\x08\x3a\xc5\x7b\x2d\xec\x0e\x43\xba\xdb\xe4\xec\xb6\xb0\xbb\x0d\xe9\xf6\x91\xfb\x2c\xec\x5e\x43\xba\x0b\xe8\x1e\x0b\xbb\xd7\x8e\x1e\x34\xf6\x70\x03\xbb\xfd\x08\xe3\x67\x88\x9c\xea\x30\x07\xc9\xe7\x18\xd7\x36\xf2\xc7\x5e\x45\xcd\xe6\xbd\x9c\xef\xaa\xfe\x02\x20\x03\xea\x61\x99\xf3\x6b\x9b\x4d\x83\xe7\x1f\xcf\xb1\x9d\x21\xc8\xfb\x6c\x90\x9b\x1b\xc5\xe6\xbc\x82\x9b\x7f\xe5\xdb\x0e\xb6\xd4\x16\x44\x63\x14\x2c\xc0\x4c\x1a\x26\x5e\x04\xa2\xd2\x99\x9c\x8a\x5d\x65\x3a\x5b\xf1\x47\x6f\xd8\xf6\xfe\x4c\xb7\x8e\x8b\xd7\xd0\x18\xbd\xbc\x18\xf1\x52\x05\x8c\xc9\x66\xf8\xa8\x7b\x34\xbc\xcf\x25\x0a\x1f\x81\xd9\x3e\x9a\x83\xc6\xee\xf0\xf9\x27\xbc\x45\x1b\x4e\x44\xde\x1b\x61\x2a\x92\x99\x57\xe2\x27\x04\xb3\x1d\x88\xb8\x91\xcc\xde\x4e\xfd\x02\x7f\xf5\x07\x8a\xc2\x53\xd6\x4e\x0a\x9a\x3e\x85\x90\x21\x1c\x14\xe3\x1d\x36\x5a\x47\x92\x91\xc2\xe9\xcb\x8a\x59\x40\x3f\x9b\x82\x4a\xe8\x7a\x49\x28\xbc\xbb\xde\xfa\xff\xb5\x89\xe8\xad\xa4\xf1\x6b\x9a\x18\xab\x74\x0f\x6e\x54\x7b\xeb\x33\x89\xc9\x1f\xad\x95\xa0\x6c\x5f\x4b\xff\xd9\xe9\x4c\xac\xdb\xae\x71\xea\x74\xf7\x2b\x10\x59\x15\x49\xf7\x24\xb4\x1a\x6e\xfe\x25\x89\x2d\xfc\x5a\xf3\x5b\x88\xe1\xa8\xd4\x1f\x50\x5a\x66\x90\x39\x81\x5f\x21\x0d\x00\xf8\x34\x32\x96\x30\x8b\x2f\x1a\x31\x28\x65\x65\x2b\x17\x53\xe2\xbe\x89\xa4\x88\x39\x26\x1e\x91\x9f\x20\x08\x09\xc2\xe5\xe2\x1f\x5c\x30\x08\x7c\xbb\x77\xc8\xce\xc3\x07\xec\x78\x8d\x76\xed\xd2\xca\x00\xec\xc9\x9a\x89\xe9\x4d\xbe\x64\xcb\x9c\x27\x31\xcb\x60\x02\x37\xfd\x33\xb8\x6a\x7f\x0e\x8b\xb5\x25\xc4\xaf\xf9\x96\x29\x4d\xb7\xe9\x31\x11\x79\x52\xe4\x2b\x42\x20\xcd\x8a\x27\x9a\x65\x8f\x14\x08\xf4\x06\x06\xc7\x2f\x2b\x11\x40\xf8\x43\x30\xf4\xc7\x02\x64\x37\xdf\x8f\xf9\x59\x15\xa3\x3d\x56\x30\xcf\x18\x75\x33\x46\xdd\xf8\x5b\x30\x46\xdd\xfc\x92\x51\x37\xc8\x14\x9a\xe1\x36\x50\xeb\xd4\x50\x2a\x94\xa0\x44\x2e\x00\xdd\xf5\x15\x91\xab\x3a\x76\x5d\x44\x0e\x0e\x36\x3c\x14\x87\x7d\x4a\x65\xa6\x7f\xf8\xaa\xf7\x42\x68\xc3\x88\xcc\x62\x96\xa1\x2f\xcd\x1c\x53\x80\xaf\x80\xdf\x42\x46\x23\x20\x34\x29\xec\xc8\x2d\xe2\xd4\xd6\x2a\xd7\x92\x50\xb8\x72\xb8\xbf\xc6\x51\x00\x70\x99\x27\xec\x87\xaf\x0a\x16\x44\x01\x1d\x1e\xd6\x0c\x72\x15\x57\x6d\x10\x91\x52\x2b\x81\x85\x95\xda\x06\xec\x01\x75\x43\xd9\x82\xa4\xe8\xb7\xe2\xea\x33\xdc\x55\x38\xd2\xbd\x35\x92\xcf\x54\x68\x6c\x0a\xd4\x7b\x97\xf9\x7a\xdf\x71\x3a\x1d\xc3\x13\xbb\xc8\xf0\x6f\x06\xfe\xf0\x2f\x15\xd0\x1e\x54\xf7\xb7\xf4\xfe\xea\x7e\xf4\xfe\xea\xb7\x46\xef\xaf\x1e\x88\xde\x5f\x8d\xf4\x3e\x70\x9c\x7f\x31\x7a\xe7\xdb\xc7\xe2\xef\x38\x72\x37\xbd\x83\x7e\x30\x72\xf8\x91\xe2\x1b\xbf\x3c\x3a\xc5\x3f\x02\x87\xff\x95\x28\x7e\xe4\xf1\xc3\x5f\xff\x1d\x52\xfc\xbf\x96\x8b\xe9\x57\x77\x30\x15\x1e\x20\x73\x44\x1f\xc9\xff\x33\x67\x41\xef\x8f\xf9\x3a\xe8\xfb\x01\x50\x02\x9e\x9f\xd4\x8e\xf3\x6b\x25\x79\x8d\x7e\xa1\xd1\x2f\xe4\x6f\xc1\xe8\x17\xfa\x25\xfd\x42\x86\x5d\x34\xbd\x42\xae\x28\x94\x97\x4d\xe9\x1e\x2e\x76\xef\xe1\x33\xb1\x8c\xb2\x54\xc4\x2f\xb8\x18\xbe\x16\x25\xe7\x73\x92\xa9\xac\x17\xfc\x1e\xba\x5b\xa1\x33\x29\x82\x2d\x90\x6c\x13\x30\xae\x30\xec\x75\x5f\x85\xec\xde\x21\xf3\x37\x8c\xa5\xef\x33\xbe\xe6\x82\x26\x17\xec\x93\xfe\x3e\xd0\xf6\x21\x18\xa0\x6b\x58\x95\x79\x19\x70\x2b\xed\x08\x44\xb0\x4f\x7a\x23\x53\x1b\x76\x8b\xf9\x00\xa0\x6a\x86\x80\xf6\x43\xc8\x51\x59\x34\x74\x61\x8e\x29\x56\xe9\x70\x15\x43\xfc\x78\x2d\x0c\x29\x4d\xa0\xbc\x87\x79\x25\x34\xae\x19\x45\x15\x11\x73\x39\x06\x44\x90\xc5\x81\x01\x8e\x18\xe8\x0c\xdc\x7f\x5c\x1c\xf8\x4d\xc7\xbc\x5f\x15\x4b\x56\x7f\x5c\x1c\x3c\xb3\xd1\xc1\xcf\x43\x53\xd8\x20\xdb\xa2\xe6\xd9\x32\xa3\x22\xda\x38\x52\xbb\x30\x53\x4b\x41\x16\x07\x4b\x9e\xc5\xd3\x68\xb5\x0e\x66\xf2\x74\x06\xdf\x6d\x1f\x38\x02\xde\xc6\xa3\x7b\xc1\x23\x41\x3a\xba\x6f\x9c\x7b\x2d\xa8\x3d\x3c\x76\x4f\x9c\x7b\x1b\x86\xda\xe3\xca\x87\x9c\xbc\xa2\xa3\x5e\xd1\x04\xcd\xc9\x10\x1b\x3c\x53\xf4\x9f\x83\xa0\xf8\xb6\x84\x17\xae\x88\xa6\xd9\x9a\x69\xd7\xca\x98\x2b\x3c\xa6\x64\xb6\x2a\xd0\x06\x48\x60\x1a\x45\xb3\x90\x95\xb2\x8e\x2d\x83\x56\x13\x01\x6a\x3c\xc0\x92\xba\x2a\xab\x1b\x3a\xca\xb3\x21\x3b\xf7\xc0\x59\xa0\xcc\x64\x10\x77\xee\xb9\x22\xe8\x11\xe7\x87\x88\x77\xab\xc8\x40\xd5\xcf\x02\x13\x5c\xac\x3b\x92\x1e\x1c\x8a\x00\x3d\xc5\x21\x41\x3e\xe1\x12\xe2\xd8\x36\xd5\xa1\x18\xef\xce\x25\xe5\xdb\x13\xbc\x97\x7f\x2b\x23\x9a\xb8\x1c\xdc\x5e\xa6\xfc\x0e\x93\x72\x5c\x66\xae\x5c\x61\xcf\x93\x32\x59\xd7\x2e\xd5\x85\x5f\xdd\x41\x4c\x62\x1b\x5d\x9f\x5c\x41\x75\x5b\x5b\x13\x32\x62\xfc\x96\xb9\x16\xa7\x36\x7d\x23\x63\x5b\x79\xcb\x70\x6b\x13\x29\x53\xa3\x26\x5b\x19\x1e\xe4\x8d\xa2\x28\x4d\xe4\x02\x23\x72\x1b\x12\x41\x97\x4a\x26\xb9\x66\xc9\xce\x36\xdc\x56\xb4\xd1\x1d\x82\x7c\xa6\x64\x4b\x3f\x3b\x59\xc3\x89\x5c\x2e\xd6\x8a\xac\x99\x30\x96\x64\x79\x74\x42\x4b\xee\xd1\x0b\xc8\x98\x44\x31\x26\x51\x8c\x49\x14\xff\xb3\x93\x28\x0c\xc7\x98\xcd\x87\x88\x75\xaf\x79\xa7\xa7\xe0\x93\x95\xb4\xbc\x7a\xb9\x03\x0b\xdc\xf1\xa7\x54\x66\xe1\x3c\x56\x64\xff\x5a\xe2\xeb\x86\xb2\x40\xa2\x43\x3a\xa8\x28\xca\x39\x40\xda\xf8\xa1\x0b\x26\x2f\xc3\xee\x17\x07\x3f\x61\x85\xbf\xd9\xfc\xf6\x15\x16\xf9\xfb\xeb\x31\xcc\x15\x4c\x85\x86\xd8\xf3\xe2\x85\xaf\xf0\x85\x63\xfc\x02\xde\x82\x2f\x30\xc8\x1b\xdc\xfe\x00\x4b\x65\x11\x1e\x50\x4e\xdb\x68\x93\x1f\x85\x64\x06\x64\x89\x98\x14\x05\x2a\x96\x2c\x91\x86\x2f\x83\xe2\x6d\xbd\x5a\xd8\x6f\x97\xeb\x8d\x97\x1c\x1b\x66\xb2\xc0\x1e\xeb\x39\x73\x56\x7d\xb9\x63\x56\xe1\xa6\x1a\xc1\xb5\x98\xdd\x53\xaa\x9b\x57\xee\xad\xa8\x18\x51\xab\x0b\x7d\xa5\xb2\xb3\xa8\xab\xb6\x49\x20\x5f\x3d\x99\x03\x25\x56\xd1\x86\xbc\xa2\xa6\xae\x60\x26\x7e\xb5\x89\x79\x75\x21\x46\xdf\x5c\x32\x7d\xc7\x6c\x51\x47\x54\x34\x00\xdf\xd8\x7b\xd2\x9a\x33\x3e\xdc\xd0\x5f\xaa\xd0\xc2\xc3\x3b\x6c\xfb\xcb\xda\x19\xf8\x8a\x2c\xa5\xde\x10\x26\x62\x85\x9a\x99\xd1\xb0\x5e\x7f\x37\x87\x1a\x19\xe6\x51\x57\x1f\xa3\x5b\x4d\x07\x5f\xbb\x40\x17\xfc\xe0\xb1\x5f\x35\xc6\x9e\x12\x73\x4c\xc3\xfe\x6a\x58\x66\x59\x15\x25\x92\x5b\xe6\x79\x61\x3c\x34\x3c\x55\x95\x89\xdc\x46\x04\xe1\xb6\x9b\xbf\x4e\xe4\x92\x26\x65\xd3\xca\x15\xd2\x62\x79\x5c\xf6\xa4\xc4\xcc\xec\x2c\x5d\x26\xec\x75\x48\x78\x57\x08\xd1\xc8\x16\x2a\x08\xfb\x44\x23\x7d\x48\xf8\x94\x4d\xc9\xd1\x97\x2f\x0f\x21\x22\x96\x47\xb6\xa5\xb9\x96\x77\x34\x8b\x8b\x63\x19\x56\x29\xc1\x5b\x00\xa4\x8b\x4a\xa2\x7d\x77\x95\x60\x89\xb8\x29\xb9\x2c\xa1\xaa\x3a\x5c\x3a\x0a\xa6\x58\x36\xb9\xa6\x9a\xdd\xd1\x9d\x4b\x26\x32\x70\xd8\xd4\x1d\x58\x2a\xb0\xce\x3d\x71\x84\xfa\x9a\x25\x81\xde\xe3\x6a\x29\xa4\x4c\x70\x33\x14\xb7\x91\x77\x8d\xfa\xb0\xe8\xdb\xeb\x58\x51\xbf\x9e\xd9\x54\x2a\x8b\x7c\xfd\xf6\xdc\xa1\xc5\xc1\x07\xc5\xb0\x86\xcc\xe2\x80\x6c\x19\x15\xaa\x0a\x5b\xa1\x1a\x1a\x06\x61\x7d\x12\x15\x60\xa7\x50\xc8\x2e\xd0\x86\x16\x3f\x38\xa4\x2d\xb5\xda\xbe\xe4\x3d\x77\x41\xeb\xe4\xca\xb6\x0e\xeb\x15\xa0\xd7\x6f\xdd\xa3\x36\x5b\xd0\x1a\xf9\x80\xbf\x04\x3c\xc8\xd7\xd7\x6f\x8b\x56\x64\x64\xcb\xa2\x0d\x15\x5c\x6d\x43\xcb\x79\xf6\xdd\xf5\xd5\xbb\xe7\x65\x76\x9a\x46\xa5\x7a\x6d\x88\x52\x13\x95\x4a\xb9\x62\x31\x49\x29\x34\x1a\x31\x3b\x03\x85\x2b\xa0\x10\x8d\x35\x95\x82\x9c\xd3\x3e\x0f\x22\x89\x12\xb5\xa5\x58\x0c\x7a\x03\x47\x2c\x45\x96\x69\x80\xc4\xfa\x2d\xa0\x14\x60\x31\x56\xe7\xfe\x6e\x33\xe3\xcd\xee\x15\x56\xdf\x46\xa6\x8a\x3c\x63\xf1\x9a\xa9\xe7\x15\x2e\x8d\x37\x2e\x7b\xd9\x4d\xff\x5a\x97\x5b\xbf\x9d\xeb\xad\x44\x46\x37\x74\x85\xcf\xb0\x47\xb9\xe5\x32\x33\x9c\xe0\x0c\x56\x67\xf5\xee\xba\xfc\x1f\x03\x37\x5e\x55\xe8\x16\xf5\x8b\x2f\xef\x67\x18\x7a\xbc\xfe\x1a\xaf\xbf\xc6\xeb\xaf\xdf\xd7\xf5\x97\xcf\x41\x06\x5e\x82\x35\x39\x52\xf9\xd9\xff\x66\xac\x25\x10\xa5\x4b\x5d\x88\x59\xc2\x74\x7f\x85\x82\x33\x7c\xac\x52\x29\x8a\x6a\xa4\x1c\x1b\x9c\x63\x57\x61\xe8\x76\xc9\xb0\xf4\x13\xbc\xd3\x57\x95\xc5\xa7\xf3\x15\xa6\x75\xa7\x54\x73\xa8\x54\xbc\x43\xb9\x2f\x93\x18\x94\xb7\x84\x51\xd5\x51\x8d\x6a\xcb\x95\xa6\x37\x4c\x24\x3b\xa2\x33\xe6\xc0\xc3\x59\x68\x39\xcb\xc3\xdc\x30\x74\x6a\xc2\xba\xec\x35\x35\xec\x9d\x16\x2f\x4b\x28\x36\x67\xe2\x10\x5b\xff\x3a\xd4\xf0\x05\x20\x19\xd5\x93\x07\x50\x4f\xec\x55\x8b\xe1\x5f\xd9\xf6\xd1\x2a\x32\xbb\x04\xe8\x72\x96\xba\x9e\xd2\x7c\xa2\xa9\xac\x04\x60\xad\x2b\x2c\xcd\x47\x7e\x4d\xad\xa5\x5a\x4e\xa2\xb1\xc2\x5a\x6d\x66\x9b\xa7\x5e\x5c\xbb\x7a\x8b\x18\xcb\x32\x8f\x9a\xd0\xa8\x09\xfd\xda\x9a\x50\xf3\x04\x77\x15\x66\xc6\x57\x97\x21\x5f\x46\xeb\x15\x77\x97\x12\x04\x2c\x36\x7c\xc6\x9b\x90\xfa\x0f\x3b\xb7\x80\x3d\xe4\x06\x36\x1b\x1c\x60\x95\x9d\x02\x9a\x16\x9f\x42\x96\x0b\xd1\x11\x7a\xd3\x52\x18\x18\x87\xfc\xee\xc3\xec\xac\x17\xda\xf2\x51\x07\x2b\xfc\xdb\xfa\xf4\x5a\x81\x1b\x30\xfd\xb5\x79\x64\xd8\xf4\xe6\x51\xb7\x69\x96\x2d\x9a\x09\x3e\x0b\x8a\xa2\x19\xca\x25\xa3\x71\xaf\xe3\xea\xac\xf2\x74\xd1\x59\x2a\xce\x81\x45\x28\xbe\x16\xa0\x68\x0b\x5d\x8e\x4b\xb6\x7c\x5d\x69\x51\x50\x83\x4d\xc2\x6b\x34\xb1\x45\x81\x53\x29\x20\xeb\x5f\xe5\xd1\xc6\xe8\x8e\x6f\x58\xc2\x3f\x59\x1f\x72\x71\xf3\x73\x47\xb9\x39\xe5\x2b\xd9\xe2\x9a\x87\x5e\xbf\x8e\x43\x15\x90\xec\x1b\x02\x74\x4b\x33\x4e\x45\x6f\x2d\xd3\x1f\xf0\x31\x12\xb3\x28\xa1\x19\xf8\x55\x79\xb4\x71\x6f\x7b\xb4\xec\x55\x8b\x82\x06\xad\x7b\xa9\xc3\xff\x92\xca\xa3\xfd\xcf\xbf\x68\xe2\x3f\xf2\x33\xb8\x0e\x02\x9c\x3d\x8a\x6b\x0c\x69\xe3\x42\xc6\xec\xca\xeb\x40\xe8\x69\x9d\xb5\xdf\x03\x3a\x67\x03\xcc\x86\xca\x59\x7b\x62\x74\x93\x59\x28\x47\xe5\x70\x54\x0e\x7f\x47\xca\x61\x8d\x95\x0c\xf3\x94\x85\x19\x54\xf9\xb9\x87\xb3\x2c\xa1\x4a\x0d\x68\xc6\x80\x8f\x95\x72\xd5\xe9\x3b\xa0\xbb\x7a\xa6\x27\x34\x4c\x94\x82\xb7\x04\x79\x16\x89\x6a\x5e\xa0\x05\x1e\x4b\x88\x2b\xc4\x02\x4c\x18\x04\xc0\x6f\x5d\xfd\x24\x43\x91\xed\xe9\x7b\x74\x29\x73\x4d\x22\x96\x19\xd4\x19\x6a\x83\x82\xa1\x55\xa8\x7e\x99\xf8\xf1\x7b\x47\xe1\x72\x8b\xd0\x60\x10\xee\x2a\x8c\x49\x78\xc8\xd6\x97\xda\x4f\xcb\xc4\x13\x37\xaf\xf4\xce\xed\x81\xfa\x43\xf3\x95\xa2\x56\x3c\x7c\x49\xa8\xb6\xaa\x56\x1f\x89\x9a\x4f\xa9\x7c\x15\xa7\x1f\xdb\xa6\x93\x17\xd0\x5a\x13\x7b\x8f\x36\x86\x22\x19\x5b\x65\x4c\x6d\x82\xbe\x54\x17\xc3\x8a\x23\x3a\xb0\xb8\x82\x2a\x59\x31\x7d\xd8\xa0\xd0\xd6\x53\x5f\xea\x73\x2d\x98\x6c\x9c\x7b\x5c\x99\x2f\x40\xe5\x12\xf5\x46\x74\x5b\x96\x3a\x6b\xf9\x52\x63\x2d\x17\x12\x23\x1b\xf1\x08\x0a\xc6\x62\x86\x91\xa7\xf6\x00\x29\x6e\x28\x89\x43\xe8\x87\x45\x39\x59\xee\xec\xb8\x7b\xe4\x9c\xac\x59\xbf\x0a\x7e\x62\x1e\x22\x1b\x99\xc4\x0a\x5f\x70\x40\x78\xad\x6d\xf6\x0f\x67\x5d\xf2\x2c\x0e\xe6\xc2\x37\xe6\x7f\x3d\xbb\x3c\xfb\xe1\x2b\xbf\x68\x59\xa9\x1f\x54\x71\x9b\x03\x9b\x30\x23\x7f\x75\xff\x40\xd6\x84\x2a\xfd\x5a\xca\xb6\xcc\x84\x20\x88\x6f\xbd\x77\x2c\xa6\x0a\x67\x00\x44\x5f\x7b\xbf\xb7\x0f\x49\x50\x0c\x63\x5a\x85\x4e\x88\xcc\x75\x9a\x87\x42\x7a\xdc\x67\x48\x94\xa6\x99\xfa\x92\x55\xea\x0d\xef\xbb\xb2\xc0\xeb\x6d\x8b\x74\x8f\xfe\x0a\x0b\x85\x28\xa2\x2c\xe8\x6d\x08\xae\xec\x12\x9e\x27\xb3\xb3\xa2\x71\x15\xc0\xf3\x79\x40\xb4\x5d\x91\x04\x21\x80\x6e\xb4\x8e\x25\xb8\xaa\x41\x67\x94\x6d\x83\xf2\x6d\x1f\x30\x6e\x5b\xdd\x44\x41\x40\x7e\x28\x3d\x43\x0e\x8c\x18\xc0\xf8\x1c\x28\xba\xe3\x64\x2d\x03\x08\x95\x06\x68\x80\x07\x0c\xe0\xd5\x7e\x0c\xe0\xd5\xc8\x00\xbc\xe5\x8c\x0c\x20\xb0\xb2\x91\x01\xfc\x9a\x0c\xa0\xeb\xd7\xe5\xba\x37\x4f\xd3\x80\x88\x24\x08\x7a\xb3\xf9\xb3\x55\x77\xee\x39\xf3\x18\x2e\x77\xae\x34\x5d\x26\x5c\x6d\xd8\x40\xb5\xc4\x6c\x9e\x96\x9a\x26\x5e\xbc\x1d\xc4\x2c\xb3\x72\x24\xb3\x12\xa2\x98\x42\x7f\x5c\x17\x9a\x5a\x52\x95\xc2\xf0\x0d\xe2\x9a\x2d\xf0\xbd\x7a\x24\xf8\x2e\xa4\x7e\x38\x14\x0a\x29\x26\xbf\x08\x98\x9f\x87\xc9\xc7\x00\x13\x22\x33\x87\xa1\x6f\x8e\x8f\xfa\x82\xd1\x15\x8a\xc2\x61\x86\x29\xea\xa4\xb7\x58\x7d\x8b\xc1\x03\xb1\xc7\x55\x17\x47\x21\x83\x0b\x18\xda\x39\x48\x3f\x54\x83\xc4\x75\x47\x5e\x4d\xcb\x0a\x5a\xb2\x6b\xee\x36\x52\xb1\xd2\x05\x4f\xee\x18\xa1\xe1\x2b\x90\xf2\x53\x38\x32\x3a\xf8\xf5\x30\x8e\x4d\xd0\xa6\x1b\xbe\x8a\x2b\x8e\x19\xbd\x85\x08\xc9\x48\xc6\xa8\x92\x02\xe4\x30\x89\x36\x54\xac\x3b\x1a\x66\xec\x01\x57\x8f\x48\xab\xc3\x05\xd0\x58\x67\x02\xf0\x65\x3c\x11\x38\xce\x03\xc0\xa3\xc3\x77\x7a\x2d\xe0\xc0\xb5\x5e\xa0\xcf\x6b\x91\x3e\x54\x49\x08\xef\xde\xed\x5b\x4e\x0b\x92\x9d\x68\x39\x01\xd1\xb3\x65\x6a\x73\x68\xb0\x6f\x7e\x65\x10\xbe\x9d\xf0\x88\x6b\x97\xac\xd1\xd5\x0f\x83\x00\xf5\x66\x13\x27\xc3\xe0\x44\x59\x97\xf9\xe7\x22\xaa\x4f\xff\xee\xed\x2e\x81\x9c\x68\x10\x87\x44\x4e\xf4\xaa\xc6\x89\x5e\x8d\x9c\xa8\x67\x05\x23\x27\xda\x0f\xae\x91\x13\xd9\xcf\xef\x89\x13\x75\xa4\xea\x4e\x42\xca\xfb\xb0\xc7\x5e\xb5\x3f\x56\x57\x65\x07\x3f\x19\x18\xb3\x6b\xed\xe6\x74\xa0\x23\xbe\x37\x50\xf9\x6d\xf9\x28\x5e\x0d\x6a\x77\xaf\xde\xbc\x17\x04\x7f\x48\x06\x4f\x84\xb0\x0d\x75\x6b\x1a\x9e\x78\x7b\x55\x08\x07\xb6\xbc\xc1\x03\xff\x72\x31\x41\x6b\x91\x88\xcb\x37\xa7\x5f\x7e\xf9\xe5\xb7\xe0\x7f\xc7\xae\xd7\x50\xca\xe3\xc3\xf5\x69\x87\x93\xde\xcc\x31\x09\x03\x29\xf2\x24\xa1\xcb\x84\xf9\x81\x16\x4d\xa4\xb6\xa4\x34\x42\x5d\x8a\x3e\x7c\x5e\x62\x89\x48\x64\x9a\xca\x55\x8c\x84\xcb\x7a\x77\x01\x6d\xef\x6e\xba\x6d\xe1\xcf\x72\x81\xe3\xac\xc3\x74\xfd\x4b\xfb\x6c\x43\xd9\xb7\xa0\x3f\x92\x60\x85\x69\xbb\x24\x6b\x7b\x01\xa4\x21\x08\x1a\x84\xa6\x02\x40\xcd\x05\xed\xac\x69\xd9\x58\xc8\x59\xf9\x52\x51\xa8\xc1\x00\xfc\x00\xbc\xdf\x66\x9a\x0e\x87\xe5\x3b\x9b\x9a\xea\xf2\x3a\xbd\x05\x3d\x00\x38\x45\x57\xeb\x3d\x94\x0f\xf7\x4a\x08\xa4\xcf\x87\x28\x61\x34\x13\x2c\x7e\x93\xc9\xed\x70\x98\xde\x96\x2f\x95\x54\xe7\xdf\x46\x67\x6c\x4d\xb3\xb8\x73\x62\x82\x4c\x2e\xb3\xd5\x7b\x30\xbb\xd8\x16\xf1\x6a\x4b\xdc\x70\x9f\x41\xa4\x48\x86\x69\x7a\x8d\xc5\xcd\x56\x36\x07\x16\x35\x01\x55\xf6\xd6\x95\x99\x93\xb9\x87\xa4\xad\x4b\x98\xff\xa9\x29\x8d\xe8\xf9\xb4\xd5\x8b\x98\xd0\x24\x57\xde\xda\x3b\x17\x4c\x06\xef\x27\x29\x72\xa1\x5b\x82\x2a\x3b\x56\x7e\xed\x05\x52\xda\x78\x15\xdc\x21\x6a\xb7\x87\x2b\x47\x2f\xfd\x8b\x87\xf2\x30\x0f\xb5\xa6\x7e\xdd\x84\x7c\xae\xa2\xc7\xbd\x4d\x2a\xd3\x88\xc0\xe7\xdc\x12\x0a\xe0\xad\x55\x66\x77\x48\xef\x04\x7a\x7c\xff\xea\xca\x58\x21\xb5\x06\xd9\x85\x56\x6a\x35\x0d\xc3\x51\x6a\x75\x2c\x64\x94\x5a\x1d\x00\x8d\x52\xab\xf9\x19\xa5\xd6\x28\xb5\xda\x9e\x1a\xa5\x56\xe7\xeb\xff\x92\x91\xff\x8f\x95\x0c\xba\x62\x09\xff\x54\xb9\xea\x7f\x8c\xa0\x7c\x48\x3a\xa9\x94\xd7\xc2\x5f\xcb\xb0\xfc\xe6\x13\xcd\xc0\xfc\x00\xac\x76\x5f\x8a\xc8\xfc\xe6\x23\x8b\xdf\x4a\x32\x28\x26\xde\x54\x96\x58\xcb\x06\xad\xfc\x64\x44\x1d\xbc\x32\x26\x82\x8e\xb1\xfe\x63\xac\xff\xaf\x1d\xeb\xdf\xe4\x4f\x5d\x89\xa0\xe6\x2f\x3c\xef\x95\x43\xbd\x47\x94\x6e\x92\xc8\xbb\xd9\x7c\x36\x9f\x63\xd5\x28\xa3\x67\xfe\x28\xb3\x9b\x44\xd2\xfe\x48\xef\xa7\x27\x5d\x6f\xbb\xcc\xae\xf2\x3a\x02\x20\x0d\xfa\x8d\xb1\x0d\x7b\x6c\xb4\x9f\x3c\x81\x82\xdc\x71\x26\x53\x62\x86\x26\x4c\x44\x34\x55\x79\x02\x0e\x6a\x9d\xd1\xd5\x8a\x47\xb6\x1d\xbc\x9b\x2a\x34\xe6\x4f\xb6\x5c\x99\x65\xbf\x7f\x0d\x54\x24\xed\x4c\x22\x04\xcc\xfc\xf0\x97\xb7\x27\x17\xf7\x47\x4d\xeb\xeb\x0f\x80\x1b\x18\xfb\x57\x43\xce\x9d\xba\xca\xa2\x33\xa5\x4f\x37\x2c\xba\xe9\x45\xc6\x15\xd3\x56\xcb\x9d\x78\x16\xd5\x24\x32\x2f\x1b\x83\xf8\xe4\xc7\x2b\x72\x7e\xfa\xb2\xc8\x63\x50\x53\x72\x62\x15\x9d\x10\xf4\xc8\xc8\x5c\x35\x49\xdb\xd9\x7a\x71\x70\x26\x2f\xa4\xde\x98\xe3\x79\x70\x48\x16\x07\xe7\x50\x9f\x6d\x71\x80\xc5\x43\xcf\x30\x4f\x60\x71\x30\x2d\x17\x1f\x1a\xbb\x18\x24\x84\x13\x26\xf2\x90\xe9\x36\x29\xdf\x0a\xfd\x68\x01\x09\xbd\x66\x81\xda\xeb\x16\x62\x99\xae\x4e\xa5\x10\x2c\x82\x88\xcf\xb2\x7d\x36\x17\x6b\x9c\xa9\xf7\xc6\xe7\xe9\xeb\xf9\x9b\x9e\x21\xf0\x2a\x87\x0b\xf2\x7a\xfe\x86\x6c\x65\xcc\x82\xa5\x23\xc3\x54\x8c\xdb\x98\x24\x85\xb6\x61\x26\x32\xfb\xad\xf9\x96\x11\x43\x93\x64\xe9\x1a\x9c\xb7\x16\xbb\xb4\xaf\x05\xde\xc1\x7b\x23\xbc\xb7\x2b\x0c\xf5\x8d\x54\x90\x13\xb2\x64\x04\xd2\x41\xb4\x0c\xfa\x97\x18\x8d\x36\x7e\xef\x75\xdb\x23\x5e\xe1\xcd\x92\x26\x7c\x9b\x66\x50\x6d\xdc\x66\xab\x80\x99\x2d\x22\x20\xb0\x54\xc6\x13\x2d\x27\xf6\x95\x0e\x98\x41\x96\x10\xec\x5e\x21\x92\x9d\xbb\xb0\xf6\x92\x55\x30\xb9\xc2\xc0\x1e\xb3\x65\xbe\x5e\x1b\x51\x9c\xe6\x59\x2a\x95\x21\xfd\x6e\x02\x35\x26\xc1\xde\xe7\x75\x99\xae\xce\xae\x2e\xdf\xa7\x5a\xe6\xfa\x74\x76\x76\xd9\xcb\xbf\x5e\xcf\xdf\x54\x5f\x40\x4d\xc2\xe8\xd1\x90\x64\x02\x5f\x61\x12\x0f\xcd\x18\x61\x9f\xa2\x24\x8f\xc3\xa7\x15\xb8\xd1\xd9\xd5\xe5\x94\x5c\x63\x41\xd1\x43\xab\x10\xd8\x9a\xfc\x52\x31\x37\x1e\xb0\x3a\xc8\x01\x67\x18\x7c\x09\x57\x68\xa1\x41\x29\x58\x91\xaf\xe7\x6f\xce\x3f\xa1\x26\x67\x5b\xd2\xbf\x83\x62\xbc\x14\xea\xd1\x1a\x8c\x5f\xe7\x42\xb0\xe4\x97\x49\xe9\x32\x48\xa6\x9a\xce\x56\x34\x62\x73\xaa\x0d\x5c\x43\xd0\x5c\x7b\x05\x11\x9d\x31\x30\x34\x08\xfb\x64\x74\x2e\xd0\xa5\xc1\x99\xe1\x4e\x5c\x50\x52\xc0\x76\x14\x7e\x2f\x97\x82\x6f\x55\x65\xaa\xb5\x21\x7e\x73\x9e\xd3\x4c\xae\x33\xba\x05\x1d\x99\x8b\xa2\x68\x6a\x90\xa4\xa9\x8e\x36\x85\x60\xd1\xf2\xa8\xd0\xf0\x04\xd3\x46\xc4\x4c\x6d\x65\x2a\xc1\x58\x0c\x03\x6e\xf1\x8d\x0d\xf3\x20\x09\xa2\xd9\x2c\xc7\x5e\x84\x3a\x59\x55\x4a\x30\xc8\xef\x93\xb7\x2c\x33\x3b\x7d\xc7\x0c\x5d\x98\x43\xba\x1b\x32\xe8\x86\x8a\xd8\x1c\x32\x11\xc9\x2d\x28\xb9\x05\xf4\x25\x4d\xd9\x02\xc2\xf6\xf4\xc3\xa2\x64\xae\x15\xaf\xd7\x83\x72\xc3\x96\x55\x35\x08\x99\x15\xe5\x0c\x8c\xaa\x5a\xae\xb7\x58\x85\xb7\x05\xcf\x72\x95\xd3\x24\x09\x7a\xbb\x8d\xb1\x17\x43\x72\xe3\x74\x3a\x7d\xbe\x67\x62\x9e\x21\x36\xe4\x26\x1f\x44\x9a\xf1\x5b\x9e\xb0\xf5\x30\xce\x1f\x78\xed\xd0\x1c\x26\xac\x67\x1a\x1f\x3a\xb2\x61\x36\x19\xe2\xc6\x30\xcb\x64\x9a\x7b\xcf\x7f\x5c\xa6\xab\x8f\x96\x99\x05\xcf\xbc\xda\xa9\x48\x27\x3e\xcb\xf3\x5f\x87\x4a\xd7\x12\x8e\xaf\x23\x1f\x26\x94\x6d\x53\x43\x75\xe5\xd9\xd0\xe8\xb9\x32\xa6\x47\x84\xa6\x02\xf2\x0b\x4b\x49\x4f\x9f\x2a\x94\x58\x34\xc5\x2d\xb6\x0f\x71\xa1\x8c\x99\xa8\x37\x8c\x67\x44\xde\x05\x9d\xb9\xcd\x93\x61\x76\x91\x65\xb6\xb8\x77\x31\x81\xa7\x40\xdc\x9b\x19\xef\x21\xa8\xcf\xdd\xb6\x94\x5b\x64\x77\x08\xd8\xa5\xeb\xd2\x63\xa0\x37\x66\x48\x9a\x50\x11\x76\x70\x7e\xae\xce\x07\x60\xaf\x64\x16\xb1\xcb\xf9\x9b\x61\x90\xbb\xa7\x09\xc3\x7f\x02\x2d\x47\x9a\x98\xaf\xa4\x80\xe6\x2c\xde\x59\x31\x68\xee\xdd\x18\x74\x77\x27\xd6\xd7\x7b\x67\x4b\x54\x5b\x71\x3d\xf1\x46\x93\x99\x8d\x4d\x0a\xd2\x27\x76\x4a\x9a\x92\xb9\x54\x8a\x1b\xfa\xb4\x36\x95\x11\x66\xf6\x80\xc4\x87\xe4\x0a\xc1\x95\x19\x79\x2b\xa5\xb1\x3e\x4b\x1c\xc2\x17\xed\x38\x6c\x3d\xb4\xe7\x9f\xf4\xb5\xb4\xc2\xca\xe8\x60\x5b\x9a\xf5\xeb\xcf\x28\xe7\x1a\xef\x55\xf4\x33\x27\x1a\x08\x25\x5f\xbe\x5c\xf2\x70\xb9\x3f\xf3\x92\x2b\xeb\x0d\x1d\xb5\x84\xaf\xb4\xd8\xb6\xa6\x82\x30\x2b\x54\xad\xa0\xc6\x72\xf7\x50\x7d\x3d\x8c\x4c\x80\xca\xf6\x6b\x81\x39\x6c\x82\x76\xee\xea\x3f\x03\x60\x1b\x79\x57\x14\x27\x96\xab\x42\x9e\xd9\xd9\x83\x52\x3e\xb3\x5e\xe2\x18\x88\xc3\x36\x17\x01\x5d\xcf\xd5\xbe\xb6\x3e\x7d\x28\xb6\x6e\x36\x3f\xcd\x5c\xa7\xa1\xcb\xf9\x9b\xa0\x44\x33\x46\x87\xbf\x93\x2f\xda\x77\xb1\x25\x96\x1e\xb7\xb1\xae\x76\x0c\xdc\xc5\x86\xb6\x12\xda\x44\x05\x6b\xf3\xb6\xa6\x55\xb1\xb2\x52\xab\x52\xe6\x0d\xda\x9d\x58\xd1\xf6\xcc\xb6\x62\x71\x32\xcf\x3d\x33\x9b\xab\x60\x83\x2e\x83\x72\xeb\x63\x37\x16\xa5\x74\x55\xe5\x0b\x73\xd2\x08\xc0\x95\x53\xaf\x16\x07\xa8\x60\x2d\x0e\xb0\x8b\xc1\x52\x86\x8f\xb0\xf5\xf1\x00\x04\x19\x53\xa9\x14\x86\x6d\x59\xb9\x6c\xce\x2f\x8c\x82\x13\xd6\x4a\xd9\xc3\x7c\x2d\x67\x18\x41\x38\xbb\xba\x34\x16\x1f\xbe\x87\xf3\x84\x86\x5e\xe6\xda\x3e\x53\x9d\x3f\x34\x36\x1c\x0f\xa1\x49\xcc\x33\x16\xe9\x64\x17\x2c\xb2\x6f\x20\x13\x6e\x7e\xbb\x7f\xe5\x23\x41\x89\x0f\xad\x0b\xd2\x94\xd1\x4c\xf9\x2d\xd6\x66\x73\xe7\xcc\xe1\x62\x0d\xf7\x58\xe6\xc9\x3f\x3a\xf7\x28\xd8\x3a\x8a\xd0\xd0\x90\x29\xcb\xb6\x5c\x29\x7e\xcb\xc8\xdb\x97\x9e\x52\x56\xd2\x37\xee\xd0\x3d\x58\xd5\xf7\x52\x69\xc3\x6a\x74\x46\xa3\x9b\xd7\xbb\x94\xf6\xd7\xa8\x37\x34\x1e\x78\x8d\x9c\xd6\x0d\x45\x63\xaa\xe1\x4f\x6f\xb9\xc8\x83\x8e\x8f\xc8\x8d\xe1\x9f\x10\x30\x9a\x0a\x5a\xac\x68\x71\x75\xb9\x1c\x1a\x73\x52\x99\xb5\x9c\xe2\x3e\xc2\xd0\x98\x91\xf3\x4c\x7e\xda\x9d\x5b\x5f\xe7\x55\x62\xc0\x18\x28\xda\x5f\xcf\xdf\x74\x0f\x10\xe6\x0b\x61\xbd\xdf\x33\xbe\x9f\x2a\xc2\xb6\x4b\x16\x9b\xd3\x7b\x93\x2f\xd9\x24\x35\x33\xd8\x7b\x23\x45\xaa\x53\xb5\x5f\xa1\x0d\x5e\xfc\x2c\xd5\x50\x06\xff\xd4\x3c\x98\xa7\x7b\x28\x36\x3d\x43\x54\x14\x1e\xc4\x45\x50\xa4\x01\x7a\x3c\x85\x28\xcd\x24\x56\xe9\x4a\x76\x24\x32\x23\x92\x1c\x7b\x2d\xe6\xa9\xd2\x19\xa3\x5b\xdf\xfe\x2f\x31\xf4\xf4\x69\xb8\xb3\x89\x85\x8d\x44\x1b\xca\xc1\xac\xbf\xaa\x36\x17\x2b\x20\x5c\xf9\xe8\xb6\x5d\x33\x6c\x75\xbb\xc7\x32\xe9\x0b\x0c\xbe\xe3\xe2\x6a\x27\x22\xac\xb9\xb1\x17\xee\x2b\x6f\x1e\xb6\xc8\x22\x1d\x76\xd1\x6c\xb9\x80\x2a\x1a\xe0\xa2\x71\x1d\x00\xd0\x6d\x5f\x5c\xbf\x14\x2a\x69\x79\xcf\xf4\xd4\x23\xd1\xd0\xb0\x25\x1a\xa7\x84\xbc\x95\x77\x2c\x73\xca\xd9\xda\x70\xb9\x8c\xc5\x79\x84\x0d\x41\x27\x79\x0a\xf7\x3b\x22\x32\x8f\x7e\xcf\xd7\x9b\xe2\xd9\xb0\x10\x32\x6f\xba\xfb\xb1\xf9\x07\x92\x2b\xba\x66\x90\x9c\x6b\x6c\x38\xb8\x83\x4e\xc9\x56\x66\x28\xed\x2a\x4c\xf4\x0b\x75\x0f\x06\xfa\xf6\xcb\x3d\x7d\x01\xd5\x17\xba\x3d\x01\xa8\x62\x05\xc9\x49\xa2\x9f\x06\x25\x1f\x89\x19\x6a\x02\x09\xbf\x31\xa6\x8c\x19\x8f\x66\x31\xc4\xf2\x7f\x4a\xa8\x20\xcf\xf8\x94\x4d\x0f\xc9\xdb\x2f\xdd\x93\x6d\x8d\x3b\x69\x6c\x73\x46\xb4\x0c\x39\x2e\x3c\xff\x8e\x9d\xd9\xd3\xc6\x85\x0c\x2a\xa4\x50\xca\xcd\xaf\x2f\x72\xb8\xaf\x5f\xa0\xc5\x39\x54\x75\x15\xec\xe7\x17\xe8\xd0\x71\x55\xab\xd2\xb5\xbf\xf9\xfe\x56\xae\xdf\xb2\x5b\x16\xea\x71\xd6\x38\xaf\xee\xd9\xca\x99\x24\x89\x5c\x93\x04\xbe\x76\xc9\xd5\x9e\xa5\xd4\x22\x29\x0a\xa7\x6e\x79\x32\xb7\xa8\xcb\xbc\x77\x7e\xf4\xf7\xab\x15\x7a\xd0\x67\x62\x25\xcd\xbf\xd0\x81\xce\x96\xf9\x7a\x71\xd0\xee\xb1\x4d\xe4\x1a\xed\x27\xb6\xe5\x5a\x97\xba\x9c\x99\xcc\x08\x59\x46\x52\x9e\xb2\x43\x57\xe4\xd1\x18\x5d\x60\x58\xa3\x93\x78\xbb\x6d\xc1\xfc\xe2\x40\x47\x84\x7d\x62\x91\xc1\x19\xfa\x4b\x2b\x4e\x7c\xf2\x7e\xb5\xfa\xeb\x74\xff\xc3\xf9\x8e\xa6\x57\xfc\xef\xac\xd0\x54\x86\x6c\x43\xfd\x9d\xd2\x49\xa2\xf8\xdf\xcb\xa8\xb1\x42\xad\x08\xdb\x60\xa9\x73\x7a\x6c\x69\x5a\xdc\x62\x24\x34\x5b\x1b\x69\x22\xf3\xf5\xc6\x60\x6e\x23\x13\x6c\x8a\x24\x74\x86\x21\x72\xe0\xbb\x46\xd1\xd6\xed\x7c\x9e\x12\xf2\x23\xcd\x8c\xe0\x39\xc6\x04\xa9\x22\x7b\xc3\x00\xe9\x6a\x8e\x16\x6b\x30\x50\x44\xe1\x5e\x76\x11\x35\x1a\x6a\xcc\x55\x96\x03\x16\xda\xd1\xdc\x6e\x29\x59\x9c\xcd\xe6\x57\x4c\x0f\x71\x3b\x57\x9e\x0f\x20\x98\xa7\xf0\x9d\x43\x23\x6b\x09\x0f\x73\x0f\xed\x8b\x60\x77\x71\x1d\xde\x3a\x6d\xfb\x3c\x11\x76\xcb\xb2\x9d\x2d\x3e\x66\x80\x12\x5e\x24\xd7\x91\x77\xc7\x65\xdf\x01\x57\xb7\x55\xce\x83\x5a\xbc\x4c\x38\x08\x31\xd7\x93\xad\xac\xa3\xba\x38\xa0\x49\xf2\xec\xf9\xe2\x00\xba\x4d\x65\x4c\x41\x77\x2e\x61\xd7\xe3\x5a\xae\xca\xa0\x89\x64\xd6\xc6\x8d\x11\x28\x05\xb3\x0b\x4d\x59\x56\x5e\xce\x73\xe7\x55\xa6\x8a\xb5\x3b\x20\xfb\xf7\x76\x75\xd5\x92\x3d\xd7\xb6\xb9\xf8\x42\x68\x77\x57\x98\xe7\x57\x6c\x6f\x50\x16\x95\x0f\xed\xbb\xbd\x28\xe2\x42\x83\x3e\x03\xb7\xc2\xff\x2a\x8d\x8b\xe7\xe0\xa2\x02\x6f\xc3\xfd\x51\x73\x71\x72\xed\x9a\x55\x04\xd0\x33\x7c\x90\xd7\x34\xba\x61\x8d\x80\x8f\x0e\x14\x97\xef\x04\xb0\x2c\xa8\x26\x4b\x73\xf6\x19\xc4\xbd\xa4\xed\x0d\x27\xac\x6f\xad\x5e\xa2\xc0\x51\x90\x6b\xd2\x6b\x98\x99\x54\xc6\x50\x06\xf5\x49\x6f\xc2\xfc\xa4\xce\x84\xca\x01\x0b\x23\xee\x73\x90\xf4\x26\x93\x42\xef\x8b\x25\xf7\x52\x0b\x9a\x56\xe6\x67\xb3\xde\x56\x5e\xee\x06\x78\x47\x53\xaf\x58\xdd\x30\x7a\x6c\x73\x12\x18\x5d\xe4\xb0\x74\xc3\xd9\x7e\x8a\x40\xc1\xd0\x1c\x92\x0b\xfc\xc3\xb9\xde\xee\x8d\x35\x08\x67\x1f\x8e\x2f\x8c\x7e\x0f\x4b\x3d\x1b\x77\xdf\x79\x72\xcb\x67\xfa\x50\x55\xe5\x58\xee\x50\x06\xb5\x3d\x11\x9b\x63\x4a\x45\xbc\xca\x13\x24\x4e\xe4\x7a\xe6\x45\x38\xd4\xcf\xca\xb1\x23\xd0\x1d\xb9\x56\x44\xde\x09\x32\x9b\xb7\x2a\x7c\x56\x85\x9d\xcd\xd5\x7d\x18\xe3\xfc\xea\xe2\xe4\x7a\x6e\x14\xca\x00\x6e\xa9\xd8\xbd\x0f\xb5\x59\x9e\xf4\x55\xf0\x98\xf4\xdc\x4d\x36\xf4\x95\x12\x8c\x72\xcf\x32\x2a\xd6\xcc\x86\x88\xc0\x85\xe1\x1d\x7c\x17\xcb\x6d\xf8\x96\x2a\xe5\xd1\x0d\xa1\x96\xec\xe0\xd8\x66\xcc\x86\x95\x61\xc4\x18\xfc\x12\xc9\x24\xe1\x0a\x94\x0f\x60\x08\xc5\xee\x06\xd5\xd0\xd2\x97\xcb\xd2\x0d\xdb\xb2\x8c\x26\x16\x2e\xea\xca\x1b\xa2\x0b\xf7\xcd\x29\x79\xf5\xe2\xeb\x57\xe4\xd9\x17\x2f\x5e\x7e\xf5\xff\xfe\xdf\xff\xcf\xab\xaf\xbf\xfe\xf2\xeb\xe7\x6d\x7b\x96\x42\xa7\x64\xba\x4c\x76\x15\x0d\xbd\x3e\x89\x2a\x8a\x32\x19\xb5\x53\x0a\x22\x53\x96\xd1\xb6\x92\xa1\x6a\xa7\x34\xdb\xaa\xa9\x75\x19\xe5\x8a\x29\xf2\xe5\xcb\xff\x78\xf5\x8d\x01\xe7\xc5\xb7\xdf\x7e\x7b\x68\xf0\x98\x30\xec\x8e\x5c\xf0\xc1\xc2\xb5\x77\x72\x71\x12\x1a\xd6\xad\x12\x97\xfd\xd5\xb7\x5f\x7c\xfd\xd2\xad\xcf\x25\xc7\x0a\xa9\x6d\xa3\x72\x9a\xf1\x64\x67\x36\x21\x93\xcb\x84\x6d\x71\x1f\xc2\xad\x58\x71\x3c\x43\xe5\x09\x4d\x55\xa9\x61\x17\x6b\x2c\x17\xf4\xba\xe8\x4c\xea\xa2\xe6\xcd\xbb\x6d\x4e\x61\x2e\x8c\xa5\xc3\x6f\x2b\xb7\x20\x2f\x5f\xbc\x78\xf1\xe2\xf8\xe5\xb7\xdf\x7e\xfb\x6d\xc8\x3e\x4e\xad\xe5\x4b\xfe\x6b\xfa\xef\xcd\x5f\x3f\x4d\xca\xe6\xd5\x13\x2e\xf4\x44\x66\x13\x24\xed\xb0\x03\xcf\x9c\x2b\xd0\x93\xc0\x14\x19\xee\x67\x6b\xbe\x84\x86\x90\x99\xc3\xb9\x8e\x32\x16\xc9\x2c\x36\xc4\xa7\x29\x6f\xb9\xd4\xf4\xb3\x2e\xb0\x90\x6c\x61\x73\xc1\x0c\x85\xe9\x75\x68\x4f\x96\x6d\x0f\xca\x3e\xd1\x6d\x5b\x53\xe9\xd2\x02\x02\x8b\x77\x62\x6c\x1c\x6b\x0c\x4d\x12\x2e\x8c\xe4\x95\xa1\xf0\x85\x4e\xd7\x10\xf8\xaa\x66\x70\xe5\x39\xe8\x62\xe2\xb4\xfa\x7c\x5b\x58\xcf\x46\xca\x1b\xff\x4a\xb8\xc5\x65\xa6\x65\x3a\x41\xab\xb4\xe6\x3c\x83\x0e\x96\x30\x8b\x21\x43\x1b\xce\x66\xbb\x44\x68\x99\x5a\x2a\x0c\xdf\xd9\x50\x88\x53\x80\xe6\xd4\x69\xca\x44\xdc\x1c\x61\x29\xb5\x96\xdb\xa9\xbb\xea\xb5\x8a\x8b\xa2\x2b\xe6\x7a\xda\x06\x4f\xb7\x2b\x76\x6a\x1b\xc6\xfa\x17\xc9\x66\x74\x6b\xf0\x63\x86\x02\xfa\x8e\x21\x26\x75\x45\x76\x32\x27\xea\x8e\xeb\xb0\x10\xd7\xd2\x02\x6a\x7d\x69\x4b\x46\x14\x76\x40\xb5\xe0\x62\x2f\x75\x9c\xc2\xf2\x42\x8b\x25\xec\xaa\x10\x3c\x86\xe0\xc4\x85\x78\xa4\xe5\x8e\xac\x68\x92\xa0\x65\x97\x39\xe9\xe6\xe5\x96\xc3\xc8\x87\x38\xcd\x1d\x47\x66\x14\x1a\xd3\x3e\x6e\x29\x18\x3c\xa8\x4b\xe6\xad\xb4\x3c\xeb\x88\xd8\x7d\xdd\x60\x85\x9b\xe1\x2c\xe3\xb7\xac\xb7\x27\xf5\x59\xf5\x71\xb2\xe2\x09\x13\x5e\x2f\xfc\x42\x25\x2a\xdd\x17\x31\x3c\xd9\xb2\x09\xb9\x42\xd7\x06\x72\x64\x70\xd3\x7e\x50\x6c\x66\xc3\xbf\xeb\xb3\xf1\x22\x6e\x08\xae\xc8\xf7\xf4\xe9\x14\x20\xfd\x68\x6c\xbe\x58\x42\xa1\x42\x99\xf7\x16\xc1\x7d\x7a\xd6\xf2\xa2\x23\xe2\x8c\xd1\x98\x0b\xa6\xd4\x51\xc2\x6f\x99\xf9\x07\xf8\x5c\x65\x1e\x24\x69\x97\x47\x53\x7a\x5b\x9f\xb9\x70\xf7\xe7\x0d\xb4\x4d\xc9\x4c\x44\x19\xa3\xca\xe6\x86\xb5\xf7\x7f\x45\x8a\x67\x9f\x52\x96\x71\x66\x48\x50\xa5\x79\xc6\x65\xae\xa0\x54\x59\x06\x6d\x45\xe0\x3a\x41\x4c\x0c\x94\xc4\x1e\x27\xe0\xb4\xad\xc1\xad\x5c\x91\x5c\xc4\x46\x4f\x63\xf4\x76\x07\x71\x7e\x53\x72\xc6\x0a\x88\x5c\x05\x48\x2d\xc9\x9a\x69\xcc\xba\xc0\x4b\x49\x6c\xe9\x6e\x27\x0b\x0d\x6d\x61\x41\xc0\xc0\x2a\xf9\x5b\xce\xa3\x9b\x64\xe7\xd3\xf4\xb7\x2f\xf6\xf6\xeb\x82\x07\xca\x86\x08\xbc\x95\xeb\xb3\x4c\x42\x6b\xe9\x56\xeb\xae\x85\x47\xc3\x30\xef\xd8\x56\x66\xbb\x79\x26\x0d\x99\xcf\xa9\xde\xb4\x8e\xd2\x01\xcb\x15\xdf\x42\xfc\xef\x29\x4d\xa2\xef\x32\x9a\x6e\xbe\xa7\x62\x7d\xb2\xd2\xc1\xc3\x36\x78\xb4\x82\x26\xef\x3f\x1a\xe0\xd8\x5d\x38\x5d\xcb\xef\xa5\xd2\x27\x51\x4b\xba\x6a\xed\x40\xb4\xbf\xeb\x0b\x27\xf0\xe9\x1a\x2e\xab\x5a\xa2\xd7\x0a\x0f\xaf\x79\x74\x2d\x1d\x37\xa7\xa5\x63\xb9\xcc\x53\x90\x65\x6c\x01\xd7\x8a\x25\x2b\xf2\x8c\xae\x5a\x1a\x17\x81\xc4\xb2\x63\x6f\xb8\x55\xac\x8b\xa1\x18\x5e\xe1\x22\x4b\x7d\x3e\x25\xaf\x77\x45\x57\x75\xe4\xb6\xa1\x21\xa1\x25\xa4\x0a\x87\x70\x97\xe6\x76\x08\x4c\xec\xf3\x1c\xb4\xb7\x0b\x01\xbc\x38\x38\xbb\x7c\x3f\x5f\x1c\x80\xff\xd0\x28\xe9\x56\x80\xdd\x51\x1b\xdd\x91\x24\xf2\x8e\x28\xb9\x85\x0a\x4b\x34\x49\xba\x2e\xc7\x01\x36\x1f\x71\x06\x9a\x43\xe4\x9c\x50\x70\x88\x66\x74\xcb\x6c\x20\xc2\xe5\xf9\xf5\x87\xcb\x0b\x33\xea\xc9\xe9\xe9\xf9\xfc\x7a\x6a\xf8\x6f\x68\x54\xfb\xa0\xe5\x33\xd0\x2b\x7f\x27\x73\x88\xd6\xaa\x8a\x49\x6f\x51\xb3\x8b\xf9\x87\xeb\xc5\x01\x4a\xce\x3f\x76\x88\x37\x90\x6b\x4e\x33\xd0\x4e\xb4\xd7\x75\x0f\xaa\x71\xa4\x43\x0c\x66\x58\x1c\x20\x4c\xe1\x5e\xe4\x2e\x92\xc5\xee\x48\x0d\x18\x22\xad\x5e\xb1\xa1\x0a\xba\x23\x61\x33\xd0\x34\x93\xae\xc3\x51\x97\x49\x1b\x26\x25\x40\x9d\x45\x23\xc8\x36\x51\x64\xf6\xd1\x24\x71\x77\xbc\x0e\xb0\xd6\x9d\xf3\x6e\xcf\x0d\x7d\x87\x60\x6a\x03\x20\x34\x66\xc9\x4c\x0d\x2b\xdc\x9f\x9b\xde\xf2\x08\xdd\x0a\xf3\x4c\x6a\x19\xc9\xde\xfb\x10\xb0\x2f\xfd\xc4\x32\xcc\x23\x4d\xed\xeb\x84\xc6\x36\x72\xc5\xaa\xe3\x5b\x16\x77\xb8\xfd\xd0\x23\x71\x68\x14\x2a\x77\x48\x81\x88\x9d\x26\x74\x79\x3d\xbf\x7c\x7f\xfd\xf1\xf5\xfb\xf7\xd7\x28\xcb\x12\xb6\xd2\x64\x99\x50\x71\xb3\xaf\x5f\xc0\x5b\xeb\xd5\x3e\x8d\xff\x7d\x47\x1c\xd4\xe5\xa9\x76\xbb\x77\x81\x24\x52\x78\x2b\x0e\x9b\x9c\x66\x7e\xbb\xe2\x0a\x5b\xd2\x8d\x46\xfc\x98\x7f\xec\x56\x7a\x48\x12\x46\x6f\x5b\x0c\xe4\xd2\x20\x00\x07\xcb\x46\x4a\x2b\xba\x6b\x23\x1a\xbd\x64\x5f\x8d\xaa\x05\x63\xb3\xf9\x6d\xa8\x46\x44\x17\xd6\x5e\xfd\x8e\xb0\x86\xca\x49\x71\x4b\x35\x13\xd0\xef\xa1\x2d\x55\xa7\x53\x4d\x71\x8c\xe0\xd2\x95\x00\x3c\x63\x49\xb0\xc6\x43\x17\x40\x8d\x41\xda\x6d\xf7\x6e\x60\xac\xf2\x7f\x21\x63\x06\xfd\xb4\xfa\x68\xe0\xdc\x7f\xe1\x74\x76\x76\x69\x5e\x6a\x66\x32\x3c\x05\x0f\x88\x1b\x7d\x62\xd4\x46\x6b\x8e\x43\xeb\xad\xf0\x4d\xaa\x31\xf0\xb7\x74\xe7\xf6\xcb\xfa\x0b\x9d\xfc\x86\xf0\x44\x23\xc3\x40\xc0\x14\xd1\x6d\xf6\xd7\xb0\x5b\xcc\xe5\x76\x13\xb8\x91\x29\xba\xbb\x84\x7c\xe2\x8f\x90\xbd\xb0\xa2\x3c\x31\xd6\xf2\x4c\x2c\x65\x2e\x62\xa3\x71\xb5\x39\x30\xab\xca\xda\x9b\x96\x17\xab\x78\xfe\x70\x36\x3f\xba\x3e\x9d\x93\xf6\x8c\x0e\x11\xdb\x34\x10\x10\xc4\x5e\x44\x0f\x2a\x27\xa1\x6b\x7b\x50\x83\x0a\xe5\x28\x68\x05\x08\xc2\xb3\x8c\xa9\xd4\x36\x09\x72\x25\x17\x58\x94\x67\x5c\xef\x0a\xc9\xea\xb8\x45\xae\xd8\x2a\x87\x23\x49\x6f\x25\x0f\xfb\x9b\xa3\x08\x5a\xf1\x80\xcc\x8d\x72\x08\x24\x26\x72\xb5\xb2\x77\x45\xa8\x8f\x19\x68\xb3\x8c\x45\xba\x96\x98\x49\xde\x84\x0b\x1c\x2c\x69\x74\x33\xa9\xf4\xf1\x3e\x74\x65\x12\x0a\xc1\x66\x5d\x82\xb6\xd7\x13\x44\x48\x69\xc7\x8c\xda\x02\x41\x16\x07\x3a\x4a\x17\x07\xa0\xf0\x51\xc0\x6f\x78\x18\x0f\xd1\xbe\x0a\x1a\x5c\x3f\xe6\x23\x66\x90\xa5\x33\x25\xd7\x65\x8c\x3f\xc6\x73\x03\x15\x20\x2a\x60\xb3\x0f\x0b\x5f\x68\xab\x71\x29\xa4\x80\xf0\xe1\xc2\x55\x63\xcd\x3e\x1b\x46\xac\xd4\xc6\x85\xf9\x1b\x2a\x39\xfb\xfe\x74\x5e\x09\xf6\x8b\xd2\xe3\x97\x2f\x83\x09\x6a\x79\x9c\x1e\xbf\xfa\xe6\x10\x1e\xf9\xe2\x3f\xbe\xc5\x7f\xbc\xfc\xb2\xfc\xd7\x37\x2f\xf0\x5f\xaf\xbe\xfa\xea\x4b\xfb\xaf\x57\xaf\x5e\x15\xff\xfa\x8f\x90\x3e\xd3\x7e\xf8\xaa\x85\x6b\xcd\xbe\xcd\x25\xfa\xa2\x22\xb9\x5d\x7a\x75\x77\xdc\x9e\x1e\x12\xbc\xe9\x71\xc4\xdf\x52\xcc\x62\x5e\xe8\x36\x22\x46\x7f\xbb\xbb\xf6\x2c\x76\x31\xf8\x66\x6f\xf1\x16\xc1\xc2\x11\x69\x64\x50\xed\x0c\x03\x49\xcf\xeb\x1d\xd5\xc8\x49\x81\x85\x7b\x83\xd0\x51\xbe\x93\x90\x09\xc0\xd7\xf2\x8b\x9d\xb9\x9d\x83\x76\xf7\x16\xe8\xe4\xa0\xef\x73\x7d\x4f\x16\xda\x78\xf3\x81\x79\xa8\xcc\xf5\x5a\xfa\x3c\x14\x0c\x82\x7e\x2e\xaa\xe5\xc8\x45\x7f\x51\x2e\x2a\x2d\x21\x3c\x0c\x1b\x95\xe0\x22\x61\x3a\x8a\x9f\x3e\x85\x72\xd9\x22\xa6\x59\x6c\x93\x02\xb4\xb4\xc9\x57\x40\x33\xa1\x61\x91\x8c\x62\x89\x61\x7c\xe0\x88\x8b\x72\x0d\x9b\x85\xae\x00\x1d\xc5\x95\x34\x3d\x83\x00\xb3\x9d\x86\x51\xb7\xdd\xd5\x9d\x5d\x5c\xd5\x79\xf8\x3e\x0c\x3a\xb8\x51\x96\x67\x1f\x02\xdb\xff\xfa\x4b\xfc\xef\xc8\xc3\x47\x1e\x1e\xfc\x35\xcc\xc3\x19\xd5\x79\xc6\xce\x98\x66\x91\x7e\x7f\xcb\xb2\x8c\xf7\x5f\xa0\xbd\x09\xbd\x54\xf4\xd8\xd6\x12\xae\x63\xe1\x3b\x3b\x3c\x89\xe1\xd1\x96\xac\xa7\x25\x35\xaf\x49\x41\x68\xae\xe5\x04\x1f\x65\x31\x49\x13\xaa\xa1\x0a\x72\x44\x53\x0a\xdc\x8d\x43\xb6\xf8\x0f\x65\xe6\x5a\x41\x49\xe1\xeb\x4b\x42\xf1\x6e\x91\x28\x96\xd2\x0c\x02\x6f\x41\xb4\x00\xaf\x15\x92\xa8\x94\x46\x4c\x1d\xc2\x85\x65\x9a\xb0\x3f\x92\xc5\xc1\xd5\xc5\xc9\xf5\x9b\x3c\x49\x76\x97\x10\x22\xf0\x27\xb8\x33\x7d\x77\x72\xf5\xbf\xfd\x2f\xe1\xb2\xe4\xf0\x92\x41\x59\xa9\xab\x3c\x05\xc6\xf2\x56\x46\x37\x7f\x82\x78\xd1\xc5\x01\xdc\xe6\x06\xbd\x68\x10\x5a\x8a\xf5\x91\x0e\x90\x7d\x62\xa2\xa0\xe1\x73\x16\x59\x87\x84\x6d\x53\x0d\x97\x0b\xd2\x46\x96\x7a\xc9\x7a\x15\x1c\xed\x69\x28\xdb\x09\xbe\xa3\x03\xaa\x3a\xbf\xf1\x9e\xf5\xb7\x16\xe3\xff\x0d\x70\x8e\x7f\x6b\x16\x6d\x26\x69\xc6\x6e\x39\xbb\xeb\x70\x49\xda\xc9\xd5\x34\xb8\x81\xed\xbb\x15\xb4\x46\xdb\x37\xb0\xa3\xd4\xc3\x8f\x32\xbb\xa1\x99\x11\x33\x7f\x72\xb9\xbf\x7f\xd9\xfd\x5f\x7f\xb2\xbb\xd1\x19\x13\x56\x5b\xbd\x5b\x8b\x8d\x4c\xcf\x18\x08\x8a\x95\x21\x11\x73\x4c\xe3\x3c\xb2\xa5\x0a\x69\x1c\x72\x22\x76\xee\x51\x22\x21\x6c\x61\x36\xef\xdf\xa2\xf2\xd1\xb2\xd8\x7d\x79\x89\x8d\xb9\x2e\xb5\x54\x91\x75\x46\x83\xe2\x59\x48\x31\x79\x9f\x32\x71\xa5\x69\x74\x53\x00\xe1\x35\x55\x80\xa3\xf7\xac\x78\x64\x12\xb3\x8c\xdf\xb2\xb8\x78\x34\x34\x28\x84\x1b\xfd\x7f\xec\xbd\xfb\x77\x1b\xb7\xd5\x28\xfa\xfb\xfd\x2b\x50\xf9\x5b\x4b\xf6\xb9\x22\x65\x3b\x89\x9b\xaa\xab\x3f\x28\x92\xec\xf0\x56\x96\x79\x24\x39\x4e\x57\xd8\xe3\x0f\x9c\x01\x49\x1c\x0d\x81\xe9\x00\x43\x99\x4d\xf3\xbf\xdf\x85\xbd\x81\x19\xcc\x10\xf3\xa0\x2c\xa7\xe9\x97\x99\xb5\xda\x58\x1c\x0c\x1e\x1b\xc0\x7e\x3f\xcc\x99\x4d\xee\xe9\x56\x79\x7a\xa7\xa3\x5a\x58\x2b\x68\x20\x5d\x8c\x6a\xc0\x1d\xbf\x31\x0f\x89\x55\xac\x84\x5e\x9d\x37\x86\x6b\xb7\x81\x7f\xc9\x04\xcb\x78\xf4\xe3\xf9\xb4\x6f\x64\xcf\x9b\xfa\x17\xf6\x90\x28\x62\xdf\x90\x1f\xcf\xa7\x44\x49\xe7\x0e\x4b\x22\x9a\x85\x93\xd4\xc0\x61\x8a\xa5\x38\x3c\xd4\x44\x21\x56\x81\x6f\xe5\x62\x01\x4a\x6a\x73\xe7\xd0\x6e\xbb\x96\x31\x83\x80\x70\xe0\x91\x7e\x3c\x9f\x22\x2b\xda\x60\x71\x84\xc8\x1c\x66\xee\x16\x13\x31\x8b\x4b\x1f\x00\xc3\xe2\xc0\x68\x69\x26\x37\x06\x5d\xcf\x99\x06\x0d\x79\x99\x08\xa4\x61\x9e\xa2\xb0\x4a\x8c\x3f\x3b\xce\x7a\xc5\x68\xa2\x57\x0f\x54\x91\xe1\xc7\x46\x7e\xd8\x53\x47\x87\x1f\x4e\xc3\xdc\x40\x2b\x1f\x80\x5f\x5a\x93\xb5\xa3\x7e\x9d\x97\xf5\xfb\xe0\x57\x4e\xe2\x2f\xd2\x47\x08\x9a\x90\x7b\x6b\x15\x77\x46\xef\xb0\xa2\x67\x01\x09\x26\x37\x3c\xce\x69\x42\x54\x3e\x37\x62\x80\x14\xcc\x1a\xcd\xe6\xcc\x11\xe1\x98\x89\x31\xa9\x4b\x2a\x0d\x69\x27\xcd\xf9\x04\x4f\x13\xc0\x92\x8e\x52\x91\x54\x2a\x0e\x6e\xf8\x07\xa4\x6e\x90\x57\xce\xa1\x5a\x10\x19\x45\x79\xb0\x57\x2e\x48\x4a\x33\xcd\xa3\x3c\xa1\x59\xb2\x35\x1b\xc2\x94\x32\xd3\x28\x4d\x33\xe0\x0a\x0d\x41\x4a\x58\xb9\x43\xe9\x8c\x72\xc1\xe2\x31\x69\x92\x7d\x4a\x31\x91\xda\x7a\xd8\x3e\x0c\x8e\x88\x62\xac\x88\x10\x4c\xe4\x72\x3f\xad\x62\x37\x13\x4a\x5b\xca\x3e\xf6\xa8\xe7\xd7\xe8\x29\xd1\xaf\x87\x0e\x26\xd2\xcc\x2e\xfc\xa6\xc5\x8f\xe2\xc1\x3c\x64\x11\x77\x74\x81\x59\x71\x3a\x51\xe6\xa4\xf6\x01\x4a\xfd\x40\xfc\x47\x35\x56\x0d\x8e\x79\x67\x06\x94\x4a\xe2\x17\x9b\x9b\x07\xad\x57\xb6\xdc\xba\x39\xd4\x0b\x99\xd5\x44\xff\x71\x93\xdb\x6e\x55\x9c\xac\xe4\xea\xb0\x19\x9f\x96\x42\x9a\x9f\xca\xd0\xca\xc3\x43\x32\x99\xfe\x70\x43\xe2\x7c\xbd\x0e\xfa\x95\x16\xcb\x70\xde\x72\x8e\xad\x70\xf7\x3e\xd9\x92\xf9\xb6\x12\x0d\x58\x35\x5a\x87\x3a\x75\x6b\x5d\xe7\x89\xe6\x69\xe2\xe5\xa0\xc1\x64\xa1\x24\x57\xe8\x39\x66\xfe\xe3\xb2\x3e\x60\xd4\x76\x13\x6f\x65\x29\x8f\x0a\x04\xe2\x29\x50\x44\x84\x5e\xc0\x3c\x41\xbe\xbb\xcf\x68\xda\x64\xff\x41\x70\x02\xf3\x76\x78\x78\x7c\x78\x88\xdd\x59\xe6\x8d\xac\xc0\x76\xe4\x78\xdd\xc3\xc3\xe3\xff\x63\x60\x71\x7c\xb4\x61\x7a\xf5\xe2\x30\x40\x55\x6c\xae\x38\x07\x83\x5a\x76\x0d\xd8\xad\x39\x5b\x72\xe1\x46\x34\xdd\x1d\x1e\xda\x82\xfa\x4a\x36\x79\x88\x95\x20\x3c\x3c\xb4\x63\xfb\x44\x0e\x36\x88\xa7\x1b\xd5\x92\x47\x21\x7c\x71\x8b\x8e\xa7\x19\x5b\xf0\x4f\xfd\xaf\x09\xb6\x77\xc6\xbd\xea\x16\x83\x13\x30\xff\x64\xb3\x5c\x14\x25\xf3\x9b\xb0\x7b\xcd\xbd\x02\xe2\xc9\x41\x15\x63\x58\xaf\x9c\xab\x15\xda\x98\xd7\x01\x4d\x59\x2b\xac\xd4\x98\x5c\x49\x0d\x44\x93\x30\xb1\xe1\x99\x14\x6b\xa0\x45\xd2\x16\x66\xa2\x82\xcc\x0d\x2f\xb8\x66\x9a\x26\x78\x02\x65\x16\xad\x98\x41\xf4\x5a\x86\x2b\x8a\x15\x4c\x2d\x32\x88\x34\x35\x68\x39\xe3\x54\xb3\x64\x5b\x3d\x3b\x32\xcf\xfc\x30\x67\xd0\x9a\xcb\xe8\x2e\x2c\xc4\x03\x5d\xb7\x79\x6e\xad\x17\x87\xd9\xeb\x88\x26\xfc\xf0\xd0\xcf\x90\x6a\x7a\x2d\x99\x62\xef\xb3\xe0\xbd\x71\x0e\xe7\x87\x87\x9a\xa6\xae\x23\xff\xe4\x98\x01\x1e\x7c\x66\xae\xb1\xbc\x3f\x9c\x89\x0d\xed\x74\x1a\x98\x34\x7c\xe7\x25\x8f\xe1\x12\x2c\x6f\x88\x8c\x1a\x3d\xd6\x32\xa6\x22\x2a\x14\x66\x43\xa9\xdc\x2f\x49\x36\x2c\xe3\x8b\xad\xcd\x32\x84\x85\xc0\x40\x1b\x87\xdf\x58\x77\xe0\x20\x7e\xb5\xbc\xb9\x41\x78\x96\xed\x2f\x8f\xb6\x99\xa5\x96\xe4\xf9\x9e\x82\x13\x4f\x79\xef\x68\xfc\xc9\x74\x52\x70\xeb\xb2\xe0\xc5\xaa\xde\xbf\x65\xc6\x5d\x3c\x83\x61\xfd\x33\xa6\xec\x2c\xaf\xa4\x2c\x53\xb6\x8c\xc9\xbb\x14\x7d\x55\x08\x75\xb9\xc9\x8c\xe0\x9e\xad\xad\x27\x47\x98\x61\x2f\xb4\x21\xe8\xfe\x89\x37\xd3\x08\x62\xa9\x94\x49\x85\xdd\x16\x3c\x21\x4f\x73\xa1\x98\x7e\xb6\x37\xd3\x6d\xa0\xf5\xf6\xf6\x7d\x2f\x48\xbd\xbd\x7d\xef\x8e\x8d\xf9\x27\x64\x5b\xd1\x6e\x86\x95\xa0\xeb\x31\xb9\x61\x61\xaf\x5b\x0b\x45\xb3\x14\xd3\x87\x17\x68\xfe\xf5\xd7\xfb\x27\xa4\xc1\x98\xc8\x3d\xaf\xc4\xe1\x24\xf4\x55\xeb\x85\x20\x19\xc3\xa4\x9d\x61\xeb\x43\xe2\xb9\x7c\x63\x84\x5e\x55\xb9\x4c\x84\xb4\xf8\xcf\xfa\x1c\x81\x77\x94\x6f\x09\x08\x1e\x80\x4c\xde\x15\x65\xc5\x0a\xbf\x6c\x03\x5a\x70\x3e\x7b\x5e\x49\xac\xe8\x86\xcf\x70\x55\x1d\xc9\x3e\x1f\xe0\xfe\xe9\x46\xe8\x19\x90\x37\xa9\x36\x2f\x14\x3c\x2e\x79\xe2\xdc\xfe\x6e\xf8\x3a\x37\x77\x43\xc5\x83\x80\x60\xe8\x0d\x52\xd1\xf0\x73\x45\x4e\x73\x2d\xf7\x46\x0e\x38\xd6\x6b\x9e\x68\x96\x41\xae\xda\x46\xd7\xcc\xfe\xfd\x9c\x33\xb1\xed\xe7\xe1\x39\x69\xf8\xae\xd1\xbb\xb3\xcd\x1f\xd1\x25\xb4\x8a\x99\xe0\x88\x43\x9d\x6a\xc1\xd9\xa5\x76\x3c\x30\x6b\xee\x96\x8d\x3a\x35\x4f\xb0\xef\xf4\xa1\xcc\x15\x03\x97\xc1\xff\xef\xe2\xec\xb6\x68\x15\xa6\xb7\x4a\x33\x1a\xc3\xc7\x40\x17\x0a\xb2\xce\x21\xb2\x6f\xc5\xb2\x7d\x5d\xcf\xdd\x24\x2f\x65\x74\xf7\xba\xd9\x97\xb8\x7e\xff\x77\x3f\x72\xd7\xdf\x90\x37\xbf\x48\x8c\x1b\x20\xb4\x1e\x03\x4a\x70\xd4\x1f\x93\xbf\x19\xb6\x97\x6e\x21\x1b\x24\xfa\x35\x41\x38\x12\xb0\x2b\xd6\x10\x57\xb4\x76\xaa\x98\x70\xdd\x3f\xae\x3d\x4b\x55\x31\x9b\xa7\x0b\x8f\xc9\xf1\x5d\x45\xd7\xe6\xa4\x60\x0a\x57\xa1\x65\xe1\xfa\xde\xc0\x45\x69\x23\x4b\x67\x06\xb9\x51\x12\xf3\xc5\x82\x65\x4c\x68\x92\x52\xbd\x7a\xe6\x13\x94\xe3\x2c\x17\xc7\x9f\xac\x5e\xc7\xcc\xfb\xa1\xc8\xc2\x40\x78\x9a\xc9\x39\xdb\x03\x37\x37\x7c\x59\x44\xe4\xf2\x35\xab\x5b\x79\x83\xc7\x98\x72\x5d\x24\x67\xa1\x5a\xb3\x75\x8a\x1a\x11\x1a\x81\xc8\x5c\x75\xa9\x85\xcd\xe1\x0b\x9b\xa0\xb6\x21\x69\x07\xdd\x50\x0e\x35\x14\xc7\xd5\xf4\x2c\x6b\x7a\xe7\xb2\xab\x80\xbf\xbd\x4d\xb4\xc5\x37\x56\xf6\x74\xbb\xdf\xa0\x96\x8b\x30\x8c\x96\xc5\x47\x90\xaa\xcb\x5c\x27\xe8\xe6\x6c\xfa\xde\xdf\x94\x6f\x9e\xaf\x1f\x8c\xb4\x0d\x34\xfb\x06\x65\x4c\x76\xbf\x69\x83\x3d\x00\x3a\xb4\x32\x17\x1e\x5b\x81\x31\xe4\xd4\x78\x7e\xe4\x91\x2e\x30\x01\xe7\x2e\x0c\xa3\x30\x7d\x34\xf2\xa1\x20\x5c\xaa\x15\x0d\xee\x20\x5c\x2f\x44\x60\x49\x52\x25\xb9\x56\x12\x0c\xd3\x6f\x23\x04\x9a\x4d\x74\x3b\x35\x26\x1f\xcc\xc6\xd9\x34\x46\x65\x76\x67\x6e\xc4\xcb\xf2\x22\x1d\x35\x47\x23\xba\xdc\x65\xa6\x47\x73\x9d\x6c\x46\x35\x99\x6d\x1d\x66\xf1\x32\x37\xaf\x65\x6e\x2b\x81\x5a\xa7\x6a\xf4\x82\x3b\x16\x32\x9c\x96\x55\x66\xae\xc5\xc2\xe5\xc0\xc7\x09\x55\xd2\xfb\xa9\x82\xbd\x7e\xe8\xb1\x79\x4b\xc5\x32\x61\x9f\x4f\x25\xdf\xd2\xec\xee\x2d\x55\xdd\xa9\x46\x26\xb5\x0f\xdc\xc1\x5b\x9b\x7f\xfb\x1a\x1e\xc8\x16\xa1\x0c\xb2\x0c\xdb\x1b\x6e\xf1\x50\x98\x7e\xc8\xdc\xa0\x54\x28\x15\xe4\x72\x58\xcd\x19\x24\x8b\x34\x6f\xc8\x8a\x7d\xa2\x31\x8b\xf8\xba\x8c\xf3\x6f\xca\xc7\x49\x35\x49\x18\x55\x9a\x7c\x8b\x7d\x2a\xa6\x8f\xc0\xf7\x00\x33\x72\x42\xe4\x63\x42\xd5\xca\x91\xd0\xad\x3d\x81\x6b\x37\x8b\x06\xa5\xa8\x75\xc7\x05\xcf\x12\x88\x51\xad\x6c\xe3\xa7\xc5\xe2\x39\x3c\xa1\x5d\x74\x85\x5f\xb9\xd0\x5f\xbd\xdc\x9b\x79\x46\x60\x5f\x9d\xde\xbe\xb3\xfe\x31\x85\xb4\x88\xfc\xc9\x03\xb7\x7b\x2a\x95\xfe\x90\x71\xcd\xc0\xf3\x76\x6f\xd4\x1f\xfe\xbc\xce\x9f\x83\x0b\x7f\x23\x96\x30\xfc\x75\x6c\x76\x86\x92\x7b\xd3\xd5\x6e\x5a\x2e\x64\x9e\x34\x94\x4d\x89\x31\x2a\x02\xf2\x7f\x66\x14\xcc\x75\x61\x89\x0c\x73\xf2\xb9\xbc\xd1\x98\x52\x13\x53\x20\xc3\x20\xf7\x14\x29\x7b\x94\xc8\xf9\x9c\x65\xc8\x93\x51\x51\xc1\x43\xcd\xe6\x45\xe5\x25\x58\x03\x1d\xba\x21\x48\xee\x6b\x9a\xa6\x09\x77\xac\x89\x7f\x56\x0a\xe3\x4d\x83\xd0\x9e\xb2\x48\xef\x62\xca\xf1\x67\xa5\xf8\x72\x5d\xed\x2f\x78\x05\xbf\x7b\x80\x2e\xc2\x4a\x63\x2e\x89\x24\xe8\x5c\x6c\x98\x8c\xb7\xc5\xed\x42\x58\xd3\xb9\xa9\x78\x68\xed\x23\x84\xb5\x24\xe4\x29\xc4\x32\x54\x8e\x69\x4f\x90\x41\x3a\xe9\x42\x10\xc1\x93\x1e\x98\x0b\x50\x95\x35\xa8\x26\x6d\x10\x2d\x76\x5a\x68\x4b\x14\x38\x21\x81\x7a\xcf\x1a\x6e\x4c\xdf\xd4\x06\xf0\x5b\xa7\xfb\x79\xbe\x6c\x24\x84\xe6\xfc\x2e\xf8\x27\xb4\xc2\xdb\xf6\xb6\x7a\x11\xf9\x7a\xfc\xe2\x45\xc1\xfa\x1b\xea\x8b\x1a\xe5\x8d\xf9\x1d\x72\x0e\x43\x46\xb3\xa0\x9e\x6d\x6b\x99\x63\x27\x30\x14\x01\x53\x5a\x1e\x11\x4a\x56\x5e\xfe\x3a\x8c\x71\xac\xa6\xab\x0b\x75\x09\x19\xec\x2a\x87\xf8\x21\x12\xed\xe6\x95\x75\xda\xe8\x14\xdb\xa6\x45\xd3\xa6\x20\x71\x67\xec\x75\x06\xdb\x06\xcb\x1a\x44\x64\x3c\xe5\x0b\xd7\x0e\x71\x04\xea\xbc\x46\x90\x74\xca\x1d\xdf\xe6\xf4\x1b\x0d\xaa\x9c\xbb\x7c\xce\xae\x64\xcc\xa6\x32\xd3\xd7\x90\xef\xa1\xf3\x42\xfe\x75\xe7\x13\x48\x42\xa2\x0a\x9b\x0b\x2c\xc5\x4f\x1e\xd1\xb0\x2c\x9b\x8f\x85\x94\x49\x77\xc7\xd5\xe0\xe3\x45\xa1\xf6\x32\x74\xdb\xcb\x18\x69\x79\xac\x06\xd2\xc8\xd3\x8d\xb2\x79\xda\x10\xcc\x39\x32\x72\x4c\x31\x37\x2d\x38\x50\x68\x2b\x2a\x33\x24\xb7\x05\x99\x59\xd9\xd7\x3f\x3d\x5f\x41\x3a\x87\xaf\x5e\xfe\xf1\xd5\x1f\x83\x29\xd5\x9a\x0d\x84\x4d\x39\x4d\x7a\x64\x35\xe9\xce\x6b\xd2\x95\x48\x62\xff\x54\x12\xad\xf6\xbb\x44\x2e\x21\x59\xc4\x6b\x1b\x7b\x7e\xcd\x96\xac\xd3\x3a\x71\x19\xfa\xc8\xbf\x24\x06\x93\xdb\x58\x91\x08\x12\xd9\xf2\x06\x71\xda\x85\x8d\xf0\x8c\x40\x8f\x90\xe6\x4f\xe6\x3a\x35\x02\x88\xc0\x3a\x1b\x0e\xc9\x83\x21\x17\x4f\x18\xa4\xdf\x6b\xf2\x36\x85\xc1\xac\x9b\x10\xd8\xc1\x80\x12\x94\xa5\x0b\x96\x7c\xc3\x44\x28\xd5\x64\x91\xf9\x23\x06\xdb\x73\x83\x7d\x70\x01\x6c\x12\x92\x6c\xa0\xd0\x78\x1e\xed\xf4\x21\x17\x44\x83\xc9\xb9\x6d\xe3\x13\xb9\xec\xad\xcb\xb8\x2c\xdb\x3a\x32\xba\xc8\x93\x04\x64\x7a\xc7\xf4\xe0\xcd\x49\xe4\xd2\x91\xad\xd0\x52\x80\x8f\xf5\x88\x19\x88\x52\x89\x84\x1a\x2d\x15\xdd\xc0\x86\x66\xc7\x89\x5c\x1e\xfb\x12\xc8\x38\x91\xc1\xba\x41\x1d\xab\xec\x69\xff\xba\x74\x2d\x4b\x25\xcd\xb2\x62\xee\xf2\x50\x03\x08\xdc\x99\x11\xa7\x9b\xae\xd4\xe5\xbb\x37\x8e\x88\x57\x4d\x32\x91\x1c\x61\x08\xe9\x03\x56\x72\xc3\x36\x2c\xe3\x7a\x6b\xf6\xa2\xcf\x7a\xfc\xf6\xfe\xaa\x94\xfd\x9d\xd0\xb9\x04\xf5\x81\xb9\x3d\xe6\x08\x05\x71\x4f\xc6\x30\x5b\xb7\x2b\xf9\x27\x97\x56\x1d\x55\x2e\x6c\x22\x16\xf2\x33\xd6\x73\x13\x65\x8c\x75\xc7\xad\x5f\xd6\xbf\x78\xb4\x35\x29\x1d\xcb\x5c\x3f\xe6\x8a\xb6\xdd\x64\xf1\xb2\xd2\xfc\xf1\xd6\xb2\x55\xde\x25\x24\x57\xd2\x66\x07\x16\xd2\x5d\x34\x20\x66\xb6\x55\xab\x02\xff\x21\x40\x58\xd3\x4f\x60\xf9\xb8\xe1\xff\x0c\x9d\xd1\x56\x6a\xe5\x8a\xfd\x9d\xc6\x71\x67\x2a\x93\xc3\xb7\x5e\xe3\x32\x12\xb5\x2c\x55\x9c\x91\x58\xae\x29\x17\xc4\x4b\x70\xd2\xc4\x54\xb8\x62\xc6\x11\x15\x84\x0a\x65\x18\xe3\x1f\xde\x92\x7f\xe4\x0c\x32\x9d\x19\xe8\x45\x89\xcc\xe3\x11\x17\x5c\x17\xb3\x84\xda\x89\x85\xc1\x36\xec\x33\xbf\x02\xcd\x5b\x86\xba\xba\xb8\x08\x67\x5f\xd3\x68\xc5\x05\x2b\x54\x3f\x42\x6e\xe8\x88\xa6\x9c\x3c\xc5\x6c\x97\xef\xe7\xb9\xd0\x79\xb0\x4b\xd7\x74\xe4\xa6\xf1\x6c\x4c\x4e\x5d\x24\xc2\x02\x11\xec\xd3\x88\x2a\x06\x01\xf9\x02\x5d\xa9\x9e\x91\x35\xa3\xa2\x59\x37\x55\xb1\x41\x42\xe0\x05\xd3\x24\x4f\x41\xbb\x70\x75\x7a\x8b\x99\x80\x9c\xaa\xcd\x0d\x0c\xd8\xbf\xe3\x04\xbd\x78\xf9\xc7\xf1\xf3\xf1\xf3\xf1\x8b\xbd\x8f\x91\x1d\xa4\xc1\x65\x2e\x7c\x14\x5c\x28\x01\x88\x79\xe6\xdf\x56\x09\x56\xcc\x18\xf7\x1a\xdd\x17\x1b\x4a\xae\xad\xe7\x90\x38\x0c\x88\x39\x56\x38\x19\x57\x4e\x9a\xe1\xaa\x0d\x84\x0e\x0f\xcd\xcd\x3a\x3c\x7c\x76\xe4\x79\xec\x36\x48\x66\x00\xca\x02\x90\x47\xe8\xed\xf0\xe2\xd5\x9f\xc6\x2f\xbf\xf9\x7a\x6c\xff\x7b\xf2\x2d\x48\x79\xfe\x58\x27\xfe\xba\x82\x12\xfd\x44\x40\x42\x34\xc8\x30\x6a\x4b\x70\x7b\x9b\xe8\xcc\x04\x73\x66\x2d\x05\xb1\x87\xe0\xbe\xfd\xe3\x1f\xbf\x69\x49\xec\xdb\x74\x43\x75\xbe\x4f\xd2\xed\xb7\xb7\xef\x7f\x8d\xe2\x5b\x60\xff\xaf\xa8\x4c\x68\x12\x41\x9e\x95\x42\x07\x1a\x36\x56\xbc\xbd\x7d\x5f\xcd\xa8\x57\x96\x9c\x6a\x2b\x37\xf5\x79\xb5\xa5\x04\xd5\x4e\x13\xd6\x33\x45\x81\xa7\x3b\xb3\x5f\x78\x96\x4e\x2a\xea\x41\xf7\xc0\x9d\x58\xaf\xda\xa6\xb4\x7b\xc8\x2a\x9b\x23\x09\xd7\xda\x15\xf4\x10\x84\xfa\xf3\x03\x2f\x80\xc2\x02\x68\xe3\xed\x9b\x10\x69\x51\x1d\xa3\x16\xc4\xef\xc7\xda\xc3\x09\x28\x27\x6c\x75\x4c\x05\x88\xc3\x38\xb4\x52\xcb\xc4\x4d\x42\x0a\xf2\x94\x83\x4d\xcf\x09\x6b\xa5\xee\xe9\xed\xe9\xcd\xff\x7e\x7f\x71\x7d\x7a\x7e\x41\x34\xcd\x96\x4c\x07\x9c\xbc\x3b\x76\xa8\x90\x55\xff\x6d\x19\x26\x6d\x6e\x49\x98\x84\xb7\xdd\x65\x92\x49\x2b\x38\xab\x62\x7f\x0c\x80\x9b\x6c\x24\x18\x12\x45\x21\x99\x12\x1e\x90\x18\x36\xb8\x88\x59\xbc\x3a\xbd\xb5\xf6\x08\xf0\xf1\xf0\x95\x47\x41\x2d\x25\x5b\xd1\x0d\x97\x59\x91\x6b\xd6\xda\x84\x15\x3a\x2f\x35\x66\x56\x78\xdc\x9c\x85\x82\xe9\x84\x8b\x16\xa3\x53\x1b\xbc\x21\x6e\xcf\x4c\xf7\x9a\x2d\xfb\xa4\x4d\x7a\x57\x6d\xef\x08\x8d\x9f\x3f\x2d\xc3\x37\x18\xa7\xe1\xb9\x21\x37\xd3\xdc\x39\x4b\xa4\x58\x62\x75\xe6\x89\xb9\x7d\xe0\x5b\x39\xb2\x1d\xa1\x42\xf0\xb8\xf4\x0a\x8b\x59\x9a\xc8\xed\x9a\x09\xdd\xcc\x6f\xb8\xc0\xb7\xc2\xf0\x1d\x43\xea\xa1\x95\xbc\x2f\x13\x35\xe3\xe0\x4f\x31\xdb\x68\xa9\xd1\x5c\xcb\x98\x25\xc1\x9e\x91\x2f\x41\x31\x2c\x5a\x2c\x89\xe5\x05\x3c\xe7\x3b\x73\x23\xa1\xef\x48\xae\xd3\xdc\x16\xf1\x79\x66\x8b\x7f\xe7\x61\xef\xcf\x52\x44\xfe\x09\x65\xa3\xbf\x97\xbb\xf2\xd1\xc2\x00\x59\x1b\x6f\x31\x90\xeb\x3b\xd7\x99\x14\x63\xf3\x6b\x70\xb6\x76\x2a\x58\x47\xa8\x24\x7a\x17\xeb\x54\x6f\xf7\x65\x45\xd0\xcd\x01\xea\x78\x50\xbd\xea\x29\x4d\x4e\x03\x1f\xf9\xa1\x3d\xf3\xad\xdd\x03\xc8\x9a\x0b\x65\xb5\x23\x1a\x2e\x6b\x64\x93\x07\x22\x09\xc7\x88\x52\x97\xa6\xcf\xe5\x75\x3e\xc2\xf2\x13\xa7\x9e\xfa\x3e\xa1\x5b\x96\xf5\xcb\x2c\xf4\x30\xa8\x64\x72\xcd\xf4\x8a\xe5\xea\x8d\x7c\xcb\x74\xc6\xa3\xbe\xb5\x79\x0e\xa7\x8d\x9f\x3a\xbd\x80\x22\x6f\xa4\x61\x8e\xc1\x14\xbc\xc6\x26\x61\x76\x2d\x49\x30\xd2\xcf\xb9\x39\x9b\xb3\x54\xf6\xef\x2a\xac\x41\x74\x6d\x99\x83\xe8\x08\x31\xa0\x62\x61\xcf\x74\x97\x9f\x10\x39\x03\x54\x14\xab\x5a\x46\x6d\x3b\x29\x9b\x2a\x0f\x63\x8c\xe2\x3c\x6a\x20\xb7\xde\x8c\x30\x09\xdf\x67\xd6\x38\x2c\x81\xff\x60\xd0\xd7\x00\xef\x14\xcb\x35\xf8\xb5\xc0\xde\xca\x4d\x5c\x38\xc3\x75\x51\xb6\xcc\x2c\xe9\xf3\x03\x75\x76\xd6\xd8\x10\x76\xd3\xb1\xc0\xef\xa5\x2a\x64\x02\x34\x86\xbb\x1c\xa1\x65\xd3\x20\x6a\xb2\x1b\x6c\x97\xe9\x32\x2e\x73\x11\x03\xae\x2e\x57\xc7\x3e\xef\xf6\xd8\x69\xf6\x92\x73\x76\x16\xe7\x0b\x3c\x2e\x75\xc1\xa3\x2f\xf0\x4f\xcf\xff\xd4\x22\xbe\x35\x30\x3b\xe5\x02\xa7\x68\x07\x7b\xf0\x41\x0d\x7e\x5f\x22\x0a\xe7\xeb\x38\x60\x89\x96\x1b\xf4\x81\x67\xec\x4d\x4e\xb3\xf8\xc1\xbb\xd0\xd0\x43\xb9\x0f\x45\xe9\xa3\xb6\xb3\xf6\xd0\x9d\x08\x8b\x84\xb8\x39\x0f\xdc\x89\x50\x97\x6e\x73\x1e\x7d\x27\x32\xb6\x96\x1b\xe6\xf2\x65\x41\xc6\xb5\x4e\xa1\xef\x43\x35\xb0\xd6\xd6\x8a\xdc\xb0\x6a\xca\x34\x57\x7b\x69\xc3\x9a\xfc\xc9\xe6\x8c\xf9\x49\xd8\x0a\xce\x63\x6c\x63\x56\x51\xa2\x73\x39\xf9\x30\xbd\x46\xc1\x60\x78\x0e\x01\x4d\xd9\x3b\xc0\xaf\x89\xc6\x71\x3d\x95\x9b\x8b\x01\x74\x25\xdc\xbc\x14\x80\x36\xbd\x17\xa3\xe1\x4e\xef\x19\xce\xc5\xae\xd7\x4d\x26\xd9\xda\xe4\x83\x76\x84\xbd\xf7\xc0\xa6\x47\xeb\xed\x48\x70\x5d\xff\xa2\x12\x13\x63\xfe\xde\xf1\xdf\x6e\xcc\x1d\x63\x1d\x2e\x75\xae\x4a\xff\x2b\xc3\x71\x43\x50\x3f\xb8\xab\x55\xbc\xd5\xde\x5a\x1e\x5e\x48\x31\xfa\x27\xcb\x82\x8a\x25\xee\x69\x1f\x3d\xc1\x40\x55\x4d\x8e\x7b\x1b\xac\x0b\x38\xdd\xde\x5e\xf6\x07\xd1\xed\xed\xa5\xef\xbf\x37\xd2\x12\xf3\x14\xbb\x78\x0b\x90\x41\x11\x55\x8f\xee\x1b\xea\x80\x5b\xf8\x58\x28\x7e\x66\x22\x61\x38\x24\xfb\xba\x8e\x5c\x07\x3e\xfa\x0c\x97\x7d\xaf\x6e\xc7\xbe\x6e\x23\x64\x45\xc3\xda\xfe\x87\xba\x8d\x60\x1a\x4f\xe7\x21\xd2\x2e\x10\x3c\x14\xdc\x98\x45\xb2\x1f\x94\x6f\x9c\xb1\xd6\xcf\x24\x90\x39\x33\xe2\x92\xa1\xdf\x9d\xab\x3e\x1c\x3e\xff\x45\xc1\x80\x31\x19\x91\x0f\x56\x61\x37\x99\xaa\x13\x54\x83\x05\xf3\xfb\x62\xb4\x6f\x1e\x0a\x3a\x25\x05\xee\x1a\x59\x98\x4e\xa6\xa7\x6f\xab\x7e\x34\x23\xe8\xda\xfc\x0e\x7b\x59\xe9\xd1\x7d\xfe\x20\xd0\x6d\x45\xe4\x72\x08\x74\x01\xf0\xba\xfe\x01\xa2\xcb\x4a\x86\x23\xac\x47\x21\x85\x72\x8a\xc0\xb0\x6a\xc8\x2a\xe0\xf0\x70\x68\xc4\x3d\x37\x25\x17\x0f\x54\x27\x17\x5e\x79\xad\x91\x95\x46\xa1\x5a\xac\x14\x49\x73\xc2\x89\x26\x34\x6c\x86\x02\xc7\xc9\x26\xf5\x5a\x35\x63\x3d\x4b\x33\x16\x51\xf4\x5b\x25\x0b\xba\x41\x95\xd3\x75\xb5\x17\x35\x2e\x32\xed\xb7\xd4\xe7\x73\x15\x16\x69\x62\x9d\x95\xbc\x65\xa3\x95\x67\x43\x31\xe7\x7a\x9a\x67\xa9\x84\x24\x14\xb5\x81\x82\x68\xab\xa2\x9b\xe3\x22\xc6\xda\xaf\x8b\x3a\x64\x55\xa5\xf8\xa2\xe5\xb7\xf3\x60\x1e\xfc\x8e\x80\xf0\x35\x0d\x29\x20\x48\x9f\x94\x42\x6b\x1e\x52\x74\xf5\xf8\xb4\x25\x06\x7c\x64\x26\x14\xfc\x39\x14\x7c\xd0\x16\xf8\x5d\x3b\x1c\x9d\x3c\x52\x6d\xd3\xfb\xef\x70\x50\xcf\xd2\xb4\xe9\x15\x6d\x3b\x46\xa3\x2d\xb0\x4f\xb3\xdb\xec\x93\xf5\x11\x0a\x53\x80\xe0\x8e\x97\xc7\x5a\x59\x74\x58\x8e\x76\x78\xe4\x05\x09\xee\xbc\x7c\xdc\xbc\x02\xcd\x07\xa9\x57\x76\xaa\xe6\xc3\xd4\xe3\xf3\x8e\xa4\x02\xc1\x23\xd5\x78\xa8\x3e\x23\x9f\x80\xd5\xa1\x5d\x4a\x99\x4e\xb1\x4a\x49\x1f\x65\xf0\x07\x94\x3e\xd0\x1f\x0d\xcc\xce\x1b\x03\x69\xc5\x40\x15\x5a\xb2\xbd\x47\xae\xf4\x49\x1b\x25\x4b\xa4\x4c\x95\x57\x57\x1e\x52\xd9\x54\x92\xfd\xa0\xff\x36\xe6\xd1\xb6\x25\x11\x08\xc4\xc6\x9b\xe5\x36\x7a\x75\xd9\x14\xea\x98\xe8\xa5\xc8\x2e\x77\x7e\x75\x7a\x7b\x78\x18\xd7\xc3\xff\xdf\x0b\xc8\x8f\x53\xd6\x7d\x77\x19\x6d\x0e\x82\xb2\x12\x17\x45\x19\x1e\xc5\xb0\x9c\xa2\x5d\xa1\x5d\x4e\x24\x85\xe6\x02\x69\xc8\xdc\x26\x1b\xad\x94\x3c\x09\xf5\xfa\x90\x24\xe7\x8a\xc7\x2c\xa2\xd9\x69\x14\xb1\xc4\x52\xbd\xbe\xf2\xed\x4d\xe3\xa7\x85\x42\x0c\x4b\x72\xac\x81\xe5\x72\x43\x35\x30\x66\x45\x1f\x9f\xad\xfb\x02\xc7\xd3\x1e\xf9\x9c\xab\xab\x79\x1f\xfa\xca\xb1\xd3\x84\x0a\x29\xb6\x6b\x43\xdd\x2c\x3e\xb2\x3e\xb7\x41\x53\x1e\xca\xcd\x54\xc4\xae\x00\x2f\x16\xa3\xc3\xb4\xef\xe6\xcc\xa1\xba\x7e\x2c\xb3\xe5\x98\x5c\xca\xa5\x22\xf7\x58\x13\xd5\xb0\xef\x3a\xcf\x1a\xea\x31\x59\x27\x54\xac\x0c\xed\x8c\xf1\x5e\x64\x3d\xe4\x93\xa4\x50\xa3\x87\x2f\x78\x44\x85\x2e\xb3\x60\x6e\xf2\x44\xb0\x0c\x53\xb3\x05\x23\x59\x57\x54\xa1\xb0\x1b\x73\x05\x85\xe8\x4a\x47\x3e\xe7\x5e\x2c\x17\x45\x84\x22\x94\x1c\xca\x55\xe7\x89\x7c\x90\xbc\x5f\xdd\xbf\x89\xe0\x9a\xd3\xa4\x29\xb7\x77\xdb\x26\xfa\x9f\x56\xab\x13\xbb\xf2\xe0\xb1\x79\x15\x96\xfb\x17\xb2\xe0\xa7\xd7\xf4\x8e\xa1\xed\xdd\x74\x5c\x73\x4a\xdd\x9b\xd9\xaf\x2f\xaf\xa7\x74\x55\x5f\x9a\x95\xaf\x2a\xcb\xda\x11\xad\x9b\x4d\x67\xb8\xa6\x80\xb4\xf8\xed\xab\xaf\x1f\xb4\xa8\xa6\xc2\x45\x5d\x0b\x6b\x2e\x79\x84\xf9\x51\xbd\x42\x68\xc0\xa8\x1b\x09\xa2\x31\x4e\x67\xa7\x00\x93\x53\xdd\x20\x66\x5d\xf2\x68\x4c\xc8\x64\x81\x88\xa5\x4c\x8b\x9a\xd0\x5c\x84\x81\x85\x01\x27\xe1\xb2\x4e\x78\xc3\x4b\xf3\x93\xcd\x0b\xab\xb1\x06\x38\xa4\x80\x9c\xe7\x8b\x7d\x59\x7c\x28\x7c\xde\x17\x69\xfd\xf0\xe3\xe5\xe9\x55\xdf\xec\x08\xe0\xfd\xdf\xe4\x7f\x00\x3d\x55\x33\x04\x00\xcb\x07\x45\x1d\xf0\xa5\x15\x62\xc0\xd9\xb4\x2d\x5d\x42\x98\x95\xe3\xea\x57\x4a\x97\x00\x00\xec\x93\x2f\x01\x56\xd5\x9a\x30\xc1\x5b\x3c\x42\x26\xb4\x34\x2f\x9d\x42\x6b\xee\x84\x17\xfb\xe7\x4e\x70\x4b\xf9\xa1\xb3\xa2\x44\xb1\x98\x1f\x5e\xb5\x2e\xe7\xd5\x63\x2d\xe7\xab\x3f\x3d\x70\x39\x0f\x49\xe3\x06\x1f\xfe\x70\x35\xd9\xf7\xbb\x42\xad\xde\xf7\x3e\x7d\xa8\x7d\xb0\x1b\x49\x52\xb4\xf0\xd8\xd4\x10\x18\x8b\xbb\xf3\x94\x89\x88\xa6\x2a\x4f\x5c\x96\xc6\xcd\xd7\x85\x47\x8e\x44\x2c\x82\x3f\x42\xb1\xb1\x84\x16\x19\x02\x42\x9e\x51\xe4\xb3\x99\xa3\x3a\x48\x7a\x1c\xad\x3a\x50\x7e\x78\xf5\xd9\x60\x79\x15\x00\xcb\xab\x10\x58\x5e\xfd\xda\x60\xf9\x5e\x2a\x7d\x21\xa2\x6c\x9b\xee\xc3\x0a\x7f\x68\xfd\xbc\x05\x5c\x41\x56\x4c\x2a\x3d\xd2\x72\x64\x33\x3a\xb9\xce\x3c\xc8\x7e\xbe\x7d\xb8\x58\x6f\x11\x4e\x7a\x15\xce\x92\xd7\xb0\xce\xca\x67\x35\x25\x0e\xf8\xf4\x58\x6f\xba\x86\x58\xa4\x02\xb9\x7a\xe7\xc6\xf5\xe8\x2f\xae\x98\xe6\xf8\x21\x09\x99\xc2\x8b\xdc\xe7\xc4\xd7\x3e\x7c\xf0\x42\x5f\x75\x2e\x74\x39\xda\xbc\xfa\xbc\x45\xfe\x95\xb1\xf4\x34\xe1\x9b\x3d\x76\xb1\xf8\xa4\x3c\xa1\xe5\x3c\xa7\x86\xed\x57\x9a\x09\x6d\x9a\xd1\xc6\x5a\x86\x29\xea\x90\x6f\x98\xae\x99\x61\xbc\x00\xe9\x07\x2f\xea\x12\x66\xc0\xc5\xb2\x97\x89\xff\x43\xf0\xb3\x2a\x8f\x9c\xb8\x57\x68\xef\x6f\x72\xfb\x9b\x6f\x6b\x07\xb4\x92\xe7\xe1\xc5\xb7\x2f\xf7\x27\x7f\xe1\x45\xed\x73\x1c\x6b\x1f\xb6\x2d\x2c\xb4\x26\x57\x5a\xba\x7a\x20\xeb\x0b\xdb\xdf\x5d\xa1\x58\x58\x1f\xae\xeb\x83\xd7\xb8\xba\x00\xf3\x83\xcf\x78\xb5\x22\x49\xef\x16\x75\x31\x5e\x0f\x48\x5a\xe5\xaf\x68\x9f\x0d\x42\x06\xac\x65\x55\xaf\x1e\x6d\x55\x9f\x73\x00\xaf\x51\xd7\x74\x9d\x27\x6c\x9a\x71\x99\x71\xdd\x2d\x5a\x7f\x68\xf9\xb8\xba\xe2\xd4\xfd\xda\x58\x0c\xa2\xc4\x99\xf0\x41\x89\x73\x9c\x12\x2c\xcb\xab\x08\x24\x5c\xc2\xbb\x7d\xb1\xd6\x80\x85\xa6\xb2\x9b\x54\xca\x45\xb8\x14\x6a\xd5\x6f\x20\xf8\xd5\x2e\x01\x4f\x65\x5c\x24\x75\x6e\xc2\xfb\x56\x69\x87\x5d\xa1\x13\x23\x78\x9c\x0b\xa9\x51\xd1\x05\xdc\xb9\x28\x4b\x6f\x61\x4e\x0a\xeb\x5e\x1e\xea\xd5\x8b\xd0\x71\x6e\xcb\xe0\xdd\xb0\x62\x3c\xf3\x9c\x06\xfc\x94\x7d\xd6\xf4\x86\xde\xc9\x41\x03\x8c\x53\x59\x9e\x8a\xed\xec\xe0\xa8\x5c\x59\xc6\xfe\x91\x33\x88\xd5\xdd\xda\x48\xbe\x3d\x5d\xf5\x3f\xc5\xbd\x93\xfc\x05\x32\x72\xff\x78\x3e\xad\xaa\x05\xcd\x69\x51\x39\x47\xd3\x41\x8e\xe5\xe3\x9a\xaa\x09\xd8\x72\x5c\x31\x13\xdb\xdd\x40\xc2\x07\x29\xa5\x3e\xc5\xe9\xbe\xf6\xf0\x1f\xcf\xa7\x8f\x9b\xc0\x0e\x92\x93\x3f\x28\x77\x9d\x35\x76\x87\x3a\x2e\xed\xdf\xdf\x4d\x5f\x93\x35\x4d\x21\xfa\x8b\x6a\x4d\xa3\x15\x56\x05\x05\xeb\x50\xd8\x2e\xfe\xe3\x79\x30\x9f\xc2\x6e\x86\xbb\xfd\xad\xe2\x61\x93\xc4\xee\xaf\xa0\x08\x8d\x7d\x0f\x77\xa5\x65\x46\x97\xcc\xfd\x84\x8e\x11\xb0\x5b\xae\x8a\x9d\xe1\xe6\x9c\x55\xe7\x8e\x8b\xf8\x84\xcc\x0e\x5c\x0d\x88\x34\xc9\x33\x9a\x94\xbf\x14\x75\x4c\xd5\x09\xf9\xe9\xef\xe6\x17\xf0\x3a\x89\x7f\x40\xad\xa8\xfd\x75\x26\x46\xa3\xd1\x4c\x3c\x21\xd6\x8a\xef\x92\xff\x68\xb6\x4e\x13\xaa\x99\x3a\xbe\x8b\xe3\x51\x94\xc5\x6a\xbc\xa5\xeb\x64\x26\x68\xca\x6d\x0f\x27\x84\xa6\x9c\x7d\xd2\x4c\x60\xde\xde\xbb\x6f\xd5\x98\xcb\xe3\xcd\x8b\x99\xc0\xb9\x9d\xe5\x4a\xcb\xf5\x35\x43\xbc\x70\xce\x16\x5c\x70\xcc\xdf\xe6\x42\xb3\x60\x29\x90\xe6\xda\x46\x5d\x59\x59\x09\xcc\xcd\x9c\xa9\x71\x94\xc5\xe3\x1d\xdd\xf3\x4c\x18\x76\x16\xbe\x5d\x66\x32\x4f\x4f\x48\x43\x33\xec\xbb\x0a\xb0\x37\x30\xce\x15\x8e\x83\xfe\xda\xf8\xda\xb0\x21\x7f\x6d\x6a\x72\x59\x24\x32\x76\x60\x0e\xce\xd7\xee\x23\x17\x10\xeb\x14\x6a\x04\x83\xa5\x19\x83\xdd\x7f\x2f\xee\x84\xbc\x17\xaf\x39\x4b\x62\x65\x25\x22\xd8\xa8\x48\x9a\xd3\x72\x86\x4a\x78\xf3\xcb\xc6\x6d\x9a\xf9\x63\x64\x41\x66\x20\x0d\xe3\x45\x2b\xb6\xa6\xc5\xb5\x96\x29\x13\xa7\xd3\xc9\x0f\x5f\xdd\x54\x7f\x6f\xb4\x0c\x7a\x5b\x5a\x3d\xca\x55\xb4\x60\xfa\xb4\x1a\x75\xbf\x52\xac\x9d\x1a\x8b\xed\x3c\x8a\x5a\x0b\x19\x83\x75\x0a\x1d\x4c\x67\x2b\x17\x46\x52\xc6\x0b\x61\xee\x68\x66\xfa\xf1\x12\xa2\x6e\x58\x86\x15\x05\x96\x82\xff\xb3\xe8\xbc\x88\xa5\x84\xb3\xb9\xc3\x2c\x16\x8a\x54\x2f\xc1\xee\x9a\x6e\xad\xc5\x8c\xe4\xc2\xeb\x10\x13\xac\x8d\xc9\x5b\x09\xd1\x10\x0b\x79\x42\x56\x5a\xa7\xea\xe4\xf8\x78\xc9\xb5\x3b\xcd\x56\x4d\xaa\xb7\xc7\x40\x4a\xf9\x3c\xd7\x32\x53\xc7\x31\xdb\xb0\xe4\x58\xf1\xe5\x88\x66\xd1\x8a\x6b\x16\xe9\x3c\x63\xc7\x34\xe5\x23\x98\x3b\x98\x13\xd5\x78\x1d\x3f\xc9\xec\xf1\x57\x87\x21\x34\xb1\x8b\x40\xe0\x94\xb6\x6d\x83\x39\xa3\x18\x52\x87\x1f\xdb\x50\x89\x02\xda\x2e\xcf\xed\xf5\xc5\xcd\x2d\x71\xa3\x07\x93\x89\x21\xf0\xcb\x2f\x55\xb9\x0f\x06\x68\x5c\x2c\x98\x4d\x1f\x03\xa1\x8b\xda\xaf\xc7\x0d\x99\xc4\xc0\x6d\xb3\xde\xab\xca\xe7\x6b\xf0\xe1\x41\x32\x8c\x41\x2e\x67\xc0\x3d\x40\xb6\xcd\x34\xa6\x9a\xc5\x10\xf7\x72\x46\xd7\x2c\x39\xa3\x8a\x7d\xf1\x5d\x30\xd0\x56\x23\x03\xdb\xbe\xfb\x50\x41\x51\xf5\xe6\xbb\x06\xe7\x02\x23\x95\x4f\x8b\x1d\x9e\xa6\x69\xb2\x7d\x27\x5e\xcb\xec\x9e\x66\x9d\x5c\xc6\x69\xa5\x35\xfa\x9a\x80\x13\x81\x96\xd8\x13\xfa\x9c\x94\xf5\xbc\xb9\x2b\x2e\x1d\x94\x7b\x81\x23\x81\x9e\x5c\xb6\x92\x3d\x59\x8a\x58\x5e\x49\x7d\x6b\xd8\x98\x4e\x3f\x9e\xa2\xa5\x37\xeb\x82\x15\xb5\x96\x6a\x08\x07\x2a\x73\xd5\xc0\x3a\xc2\xdc\x91\xbf\x34\x87\x2a\x96\x06\x1f\x64\x32\x5f\xae\x0a\x57\x3b\x02\xc6\x8e\x43\x30\x46\x0b\x74\x3c\x26\xc0\x75\x71\xb1\x0c\x5a\xb5\xc1\x8e\x4d\x95\xf5\x1e\x89\x5c\x8d\x5f\x34\xb9\xdc\x66\x2e\x9b\x7d\x08\xc2\x84\x36\x64\x6d\x86\x8c\x1d\xb1\xb3\xc7\x19\x5e\xb4\x9c\x5a\x70\x62\x58\xc3\xcc\xc2\xc4\xb2\xe0\x0d\x02\x7e\x6d\x7c\x48\x02\xc7\xa0\x5c\x9c\xf5\x19\x9e\x33\x62\xd9\xcc\x7d\xf7\x16\x6b\x93\x77\xed\xeb\x2d\x64\x56\x8f\xc1\xd8\x6a\x3d\x63\x6c\x51\x73\xcb\xb4\x92\x0b\x1a\xad\x30\x80\xdc\x26\x10\x0c\x33\x87\xee\x6b\x5c\xb7\x8d\x0c\x8b\x32\xae\x59\xc6\x29\x66\xd1\xf7\x22\xe9\xa1\xcc\x40\xe4\x44\x10\x38\xfa\x7b\x79\xc6\x54\xd6\x30\x3b\x38\x25\x46\x16\x24\xa5\x42\xd7\xf7\xf4\x09\x4d\x25\xc8\x87\x92\x22\x77\x2d\xf9\x4e\xea\x95\xcd\x1f\x28\xb3\x11\x5a\x8d\x0a\x4b\xf6\xd4\xee\x97\xf0\x7f\xcb\x64\x63\xca\x1a\xe0\x46\x59\xc6\x44\xe4\x4e\xde\xc8\xab\x5a\x25\x73\x8d\x19\xb9\x5c\x36\x25\x6c\x62\x64\x8d\xb9\x84\x2a\x8f\xb0\x1f\x0d\x13\x16\x71\x51\x84\xde\x03\x3c\x18\xc8\x66\x33\x81\x9b\xe7\x0a\xb2\xd4\x21\xd1\xe0\xa2\x6a\x36\x53\xb0\x25\x4c\xce\xb2\x04\x47\x56\xfc\x72\x81\xf5\xb3\xd9\xec\xe0\x4a\x6a\xf3\x9f\x31\x39\x4d\x12\x9b\x14\xc1\xef\x3d\xdc\xb3\xf9\x1a\x82\x94\xe1\x40\x15\x25\xfe\xa8\xe6\x0a\xea\x7a\x61\x2a\x32\xbb\x14\x2d\xb1\xcf\x31\x39\xb5\x15\x29\x1a\xa0\x0b\x87\x13\x53\x05\x9b\x03\x6a\xf3\x07\xd8\x45\x1b\x10\xc1\x72\xcc\x1f\x9e\x23\x01\xc5\xce\x9b\xe1\x0a\xd0\x0f\x4f\xd1\xe1\x90\x72\x8a\xe1\xfa\x6d\x9d\x0e\x5c\xb4\x29\x61\x26\x3e\xdd\xa5\x61\x62\xa6\xb4\xad\xba\xd8\xd8\x4b\xcd\x21\xb3\xf8\xa0\xb8\xd0\x81\xed\xb3\xee\x4b\xe6\x62\x36\x75\x0b\x4a\x14\x6f\x7c\x62\xa8\xb4\x0e\x07\x2b\xf6\x02\x06\xb1\x95\x72\xa0\x4e\xdb\x8d\xbd\x7c\x2d\x6d\x77\xd0\xc0\x55\xfd\x63\x1b\xae\x2e\x9d\xa9\x78\x61\xf8\xf3\xc6\x2c\x1a\xe5\x53\x00\x86\x16\x48\xc0\x4b\x77\x60\x53\x4a\x15\x95\xb6\x0d\xa4\x64\xc6\x97\x06\x0e\x4d\x18\xc0\x3d\xc0\x7f\x3d\x35\x47\x08\x4c\xd5\x88\xa9\xf4\x33\xcf\xc7\xd9\x5e\x11\x48\x05\x03\x63\x87\x89\x47\x00\x64\x36\x04\x64\xce\x1c\x21\xb6\x01\xe1\x70\x90\x77\x60\xd3\xde\x29\x62\x49\x14\xe9\x0b\x10\x50\xa8\xcd\xb8\x80\x04\x1b\x2e\xbd\x24\x5d\x33\x9b\x15\x43\x37\xa8\x77\xca\x07\x32\x60\x85\xdc\xba\x9d\xab\x9c\xc7\x40\xcc\x7d\x0c\xdc\x01\x54\xb7\x6c\x07\x2f\x9f\x01\x41\x3c\xf8\x5a\x66\xa4\x22\x06\x1e\x35\xd2\x00\xf7\x60\x59\xc5\xc0\x91\x5a\xdb\x0c\x5e\x2e\x4c\xcf\x3f\x6c\x09\x5f\xf3\xce\x0d\x03\xa5\x5b\x82\x8e\x7f\x8d\x30\xe1\x1e\x7c\x8b\x1d\xee\xd8\x33\xbc\xc8\x95\x75\x36\x2e\xff\x10\x25\xda\xa7\xcf\x82\xa5\x72\xca\xe7\xd7\x01\x40\x45\x50\xbf\x31\x74\x3b\x23\x68\xc8\x44\x78\xc0\x32\xda\x3b\x35\x6b\x0c\xc8\xfb\x47\xe0\x40\xd3\xbe\x97\x1d\xb3\xf5\x97\xe8\xe5\x6f\x0b\x15\xc8\x89\x32\xa9\x80\xe7\xeb\x7b\x65\x1b\x08\x47\x31\x76\x27\x01\x20\x98\x46\xa1\x0d\xa7\xd6\x13\x53\x30\x5b\x39\x3b\x88\x18\x8d\xa0\xa9\x33\x1e\x61\x79\x9a\xf6\x65\x38\x12\x58\x64\xb6\xdb\x7a\xb5\x08\xea\x78\xb1\x40\x7d\x1d\xd0\xae\xe2\x45\xbf\xa4\x24\xa4\x37\x11\x45\x6a\x6c\xcc\xca\xa7\xf2\xb9\x59\x7e\x23\xd5\x21\xad\x7c\xa4\x37\x6e\x2f\x48\xb7\x7a\x22\x97\x8f\x90\xfa\x6a\xbf\x3d\xc1\x0f\x8a\x9c\x14\x55\xf6\xcb\xad\xd8\x34\xe9\x20\x2f\x66\x1f\x7f\x73\xb0\x68\x2a\xf3\x5e\x3e\x75\x60\x14\xe5\xdd\x5b\xa0\x31\x6d\x8a\xd5\x2b\x1f\x04\x07\xb9\x81\x12\x96\x70\x4a\x95\x5c\x97\xd5\xce\x15\x06\x5e\xda\x02\xe2\x90\x47\x79\xdb\x5c\x3e\xbe\x7c\x6a\xb5\x68\x75\x35\x91\x7b\x51\xca\x1a\x39\x2a\x8b\xc8\x8d\x80\xd2\x89\x15\x81\x86\x59\x63\xc8\xed\xd9\x74\x76\x80\x15\x80\xdf\x9f\x4f\x1b\x2a\xce\xba\xa7\xcf\xae\x36\x27\x21\x2d\x9f\x1e\xe9\x48\x77\x1b\x77\x1f\x94\xee\x14\xa5\xe5\xb3\x7f\xb2\xd2\xf2\xe9\x7b\x20\xf7\x67\x2e\xaf\xca\x8f\x3a\x8e\x65\x3f\xfe\xca\x9e\x4c\xb0\xb1\x16\x1d\x23\x16\x46\x2b\xd3\x5c\x27\x4c\xf3\x22\x2d\x29\x8e\xd5\xde\x67\xc1\x2d\xb5\x1e\x95\x7e\x7b\x96\xee\x77\x65\x67\x07\xc5\x8d\xed\x22\x2b\xdd\xc4\xb6\x07\x59\x01\xeb\x92\xcb\x82\xf5\xd4\x13\x42\x02\x99\xa2\xea\xcb\xf2\xb2\xbb\x32\x45\x6c\x62\x7e\x3f\x59\xf0\xb1\x53\x28\xdf\x16\x09\xb7\xdb\x7b\xe5\xbe\xf8\x6e\xaf\x0e\xd8\xb0\x10\xca\xca\x41\xc0\x6a\x67\x5b\xe2\x8d\xca\xc7\x65\x87\x42\x06\xae\x2f\x06\xeb\xc4\x00\x36\xe5\xd4\x3e\x18\xac\x63\xed\x25\x7a\xab\x61\xb0\x19\xe2\xb0\x99\xc5\x62\x33\xc4\x63\x33\x83\xc9\x5a\x79\x9e\x01\x97\xc1\xd3\x0b\x97\xa9\x07\x48\xc9\xdd\xc2\x71\xab\xa6\xaf\x7c\x82\xc2\x31\x79\xaa\x18\x73\x2a\x32\x40\x65\x58\x8e\x48\x6d\x85\xa6\x9f\xc2\xae\x93\xe5\x33\x9b\xb5\xca\xd6\x96\x87\x6c\x92\x9d\xdb\xfb\x76\x9a\x31\x4f\xb4\x96\xd9\xae\xc8\x6c\xae\xdb\x95\xd4\x68\xd7\x3e\x69\xa8\xbf\xe4\x01\xc1\x86\x2c\x3a\x73\x56\x07\x55\x40\xf0\x78\xd4\xa4\xbd\xf7\x39\x4b\xe4\xfd\xb3\xa3\xea\x94\x3d\x60\x23\x54\x09\xd7\x8a\x25\x45\xb6\xf8\x0e\x38\xa0\x32\x4c\x62\x9d\x67\x46\xf4\xbd\x84\xb3\x06\x21\xaf\xee\x1d\x22\x08\x43\x84\xb6\x65\x09\xa8\x8e\xbd\x7b\x27\xdc\xea\x95\x9d\x6f\xa9\x7e\x65\x9e\x94\x64\xcb\x79\x82\x6a\xc1\xb6\xef\xa6\x09\xf7\x2b\x99\xd8\x4d\x3a\x81\x2d\x9a\xcd\x4a\x82\xfc\x17\xc0\x2e\x7f\x58\x51\xf5\x74\xbd\xfd\x98\xd0\x39\x4b\x9e\x01\xde\xb1\x48\xbe\xeb\x3a\x7b\x71\x76\x66\xdd\x70\xc8\x70\x7e\xe8\x9a\x30\xb2\xce\x37\x09\x8b\xcd\xb8\x3d\xcf\x9b\x1f\xb7\xe7\xb2\x96\x13\x98\x1c\x4c\xd7\xcd\x14\x95\xa8\x76\x49\xbd\x0f\x06\x2e\xb9\x71\xc5\xbb\x8b\x32\xb3\x68\xca\x7f\x5e\x3e\xed\xeb\x2d\x96\xd4\xb5\x9c\xae\x4b\x2e\xe0\xe4\xb1\xc5\x82\x45\x36\xff\x91\x55\x25\x24\x80\x5a\x6d\x2a\x13\x70\x95\x28\x56\xd2\x3d\x79\x21\xc5\xc8\xc5\xea\xa2\xa5\x16\x73\x12\x58\xbd\x08\x44\xd1\xfb\x4a\x0a\x08\x87\xc3\xde\x7b\x28\xed\x76\x41\x53\x56\x86\x7e\x0c\x21\xde\xc6\x8e\x9e\x46\x91\xcc\xc5\x3e\xbc\xd7\x4d\xf5\xc3\x5f\x8d\x07\xab\xa1\xe5\xf6\x3e\x03\x2a\x4f\x4a\x52\x19\x17\x29\x94\x81\xa1\x2b\x50\xb4\x05\x46\x07\xea\xc5\x15\xb7\x9e\xb6\x5e\x4a\x67\x42\xaa\xfe\x25\xcd\x4f\x55\x26\x80\x5a\x01\x9f\x0d\x6e\xf2\x10\x90\x77\x77\xd9\xa4\x69\x0e\x80\xbd\x17\xb4\x49\x09\x71\x83\x8d\x95\x75\x3e\xe7\x85\xaa\xd2\x30\xc0\x1d\x37\xbf\x1f\x73\x47\xf6\x50\x41\x90\xbe\x9c\x12\xe9\xcb\x2d\x91\xdd\xfb\xd5\xc9\x2f\xfd\xcf\xdd\xe9\x8a\xac\x54\x6a\xdd\x10\xef\x3b\x78\x8e\xc9\xa4\x43\xf2\x30\x4f\x69\x86\x00\xeb\xc2\x8d\x6f\x55\x28\x65\x11\x6d\x6b\x21\x36\xda\xe3\xab\xcf\xe9\xd5\xf9\x61\xd0\x36\x5e\x7d\xf6\xd3\x68\x35\x65\x21\x70\x8f\x4b\xdb\xb9\x1f\xd7\x8d\xdf\x7c\x36\xd7\x8d\x5f\xa2\x81\xb8\xc0\x97\x5e\x35\x73\x37\x10\x94\x61\x2a\xe0\x1a\xf4\x96\xf0\x3a\xed\x64\xba\xeb\xc7\xab\x2f\xd7\x1d\x30\x67\x39\xf8\x3d\x55\xcf\xea\xec\xb7\xad\xa4\x2e\xda\xac\x8e\x04\x74\x65\xc7\x30\x2b\xc8\x12\xeb\x66\x72\xa8\x08\x46\x47\x83\xc4\xec\xe0\x1d\x15\x0e\x4b\x05\x30\xba\x60\x51\xb5\x6c\x99\x9b\xe3\x0e\xeb\x91\xcf\xba\x1f\xed\x5a\x14\x3a\xc0\x7c\xc5\x0c\xfb\xeb\x94\xbd\x32\xab\xd3\x6e\x9c\xfa\xd4\xc6\xfb\xc7\x85\x26\xb4\xc3\x5a\x69\xce\x93\xd9\x40\x7f\x8d\xa8\x37\x2a\xa0\x20\x85\x73\x24\xb0\x8e\x1d\xed\x2c\xcb\x5e\x64\x73\x7f\xaa\x19\x8a\x62\x02\x93\x7c\x79\x8e\xbb\xaf\xbe\x5d\x9b\x67\x83\x7f\x24\x24\xe0\xd9\x67\x1e\xc0\x10\x98\xcf\x02\xeb\xc3\xdf\x9b\xcb\x58\x54\x1f\xc4\xb2\x76\x85\x70\x93\x13\xb6\xd0\x68\xc7\x2a\x5d\x98\xf0\xf6\xf4\x50\xd2\x10\xff\x22\x16\x1e\x47\x87\xaa\x9c\xd9\xaf\x8a\x41\xbb\xdb\xac\xb4\x4e\xfb\xf9\x33\x7c\x7f\x7b\x3b\x2d\xed\xf5\x8d\x4e\x0c\xe6\x94\x98\xa6\xcd\x53\x77\x5e\x8e\x9f\xe7\xbf\xb0\x66\x7a\x25\xe3\x3d\x28\xc3\x5b\xfc\xe0\x71\xb9\x76\x5c\x32\x22\x75\x5c\xb7\xe7\xc4\x69\xfa\xc4\x62\xa2\xe6\x3c\x76\x77\x0a\x51\x5d\x31\xf6\xe2\x66\xfb\x94\x8d\x97\x63\xf2\xe6\xe2\xf6\x88\x4c\xdf\xdf\x1e\x11\xa6\xa3\xf1\x33\xf2\x36\x4f\x34\x4f\xbb\xec\x1c\x16\x44\x40\xf7\xdf\x5d\x1f\x1a\x31\x6c\x09\x7e\x84\xbf\x2d\xbb\x55\x4a\xf5\x6a\x8f\x7d\x3c\x9c\x9a\xf6\x5f\x62\x1b\xbb\x76\xb0\x1b\xa3\xf8\x3b\x08\xd3\x1c\x17\x5b\x85\xcb\x74\x7b\xd1\x77\x33\x08\x61\xe3\xe5\x09\x19\x11\xf6\x89\x46\xfa\x84\x1c\x2f\xa4\x24\x23\xeb\x24\x76\x42\x8e\xe7\x34\x23\x57\xef\x6e\x2f\x4e\xd0\x01\x8d\x09\x9d\x6d\xc9\xba\x8b\x3d\x7f\x77\x75\xf9\x37\x8b\x39\xb7\x84\x71\xac\x68\x4a\x66\x07\x30\x08\x6a\x91\xcd\x9f\x38\x8a\xd3\x75\x8c\x9b\xaa\xae\x95\xcf\x86\x26\x3c\xa6\x85\xb2\x0f\xeb\xb1\x1a\xf6\x89\xeb\x50\xae\xbf\xf2\xe9\x73\xe6\xaa\x87\xc0\x80\x18\xaa\xac\x55\xea\x7b\x00\xe0\x5d\xad\xb5\x7e\xb4\x6a\xa2\xc1\x73\x7b\xce\x1c\x20\xac\x1e\x71\x21\xb3\xf5\x89\x03\xfb\x2c\x7f\xfe\xfc\xab\xc8\x74\x0c\xff\x62\x27\x2e\x33\x6b\x1f\xb5\x17\x1e\x35\x98\x15\x74\x67\x10\x46\x56\x6c\x61\xd9\xf5\xc8\xc2\xfb\xb3\x46\xc0\x3e\x3a\x5c\x4d\x7a\x33\x1d\xc4\x02\xe0\x71\xc5\xc8\xb4\xa9\x32\xc0\xc3\x3b\xed\x27\x4e\xf4\x42\x48\xdd\x5d\xf1\x68\xdd\x93\x66\x4e\xce\xde\x4e\xfb\x7a\x80\x00\x32\x6a\x9e\xbb\x8f\xa5\xa8\x3b\xf5\x11\xcc\xd6\x26\xa7\x89\x01\x47\xc1\x90\x45\x4d\x4d\xb0\xac\xb5\xc8\x57\x5e\x8d\xe3\x0a\x4f\xcb\x17\x55\xfb\x14\x4e\x9a\x7b\x59\xcf\xcc\x38\x6d\xac\x2d\xd8\xd3\x4d\xa3\xcd\xab\x16\x3d\x65\xaf\x93\x68\x96\xb6\x07\x9d\x07\xce\x44\x0a\x1f\x4a\x00\x94\x08\x6a\x5c\xec\x23\xac\x41\xb6\x78\x03\x60\x8c\x17\x01\x17\x55\xc8\xe2\xec\xc3\xaa\x8c\xc5\xa4\x44\xb3\x68\x25\x78\x44\x3b\xbc\x92\x40\x2d\x8a\xea\x7f\xbe\x4e\xa5\x2a\x1d\xe9\xb0\xca\xef\xa1\x2a\x4b\xf4\x2c\x78\xc6\xee\x69\x12\x2e\x36\x52\x3e\x88\x2d\xac\x52\x16\x0b\xfd\x48\xc2\xc4\x42\x62\x24\x8b\x75\xd1\xeb\xbe\x1a\x9d\x36\x3c\x68\xf6\xf9\x9b\x61\xba\x19\x13\x3f\xa5\x59\x97\x09\xac\xa8\xdc\xf6\x2d\x7a\x79\xc3\x0a\xa1\xaf\x8b\x68\x25\xc9\xb5\x0d\x61\x7d\xca\xc7\x6c\x4c\x52\x2e\x96\xaa\xdd\x06\xd6\x6b\xbd\x3d\x90\x41\x1a\x0e\x04\x6b\x00\xc8\x64\xea\x02\xc2\x3e\xdb\x31\xac\xa2\xdc\x42\x7e\xdc\x87\xf2\xd4\x59\xc6\x1a\xa1\xd0\x27\x71\x65\x38\xa4\xa7\x61\x71\xae\x0c\x9b\xe7\xd6\x5b\xe6\x19\xf5\xb2\x10\x17\x45\xb6\xdb\x17\xf7\x59\x48\xa3\x8c\xbd\x6e\x27\x72\xe5\x0c\xa7\x7d\xa9\x62\x5f\xb2\x54\x8d\x48\x2a\xe7\x63\x43\xd1\xd0\x6a\x77\xc7\x6c\xf0\x3c\x49\x29\xcf\x9a\x2b\x0f\x96\x8f\x11\x59\x6d\x69\x7c\x1f\xa6\x74\x2e\x73\xdd\x83\x90\x3c\x96\xe4\x28\xa4\x36\xb7\xaf\xdf\xc9\xb8\xc2\xc6\x1d\x1e\x3d\xd0\xa4\xdd\xb3\x6e\x20\x18\x03\xc1\xf8\xcf\x26\x18\x42\x6a\xc7\x56\x35\x82\xa5\xdd\xeb\xa6\xa7\xbf\x4d\x3f\x4f\x9b\x1d\x87\x50\xc7\xf2\x75\xf8\x84\xda\x66\xcd\x00\xeb\xb8\xc7\x3d\x5c\x7b\x1e\xe6\xd4\x93\xfe\x56\x81\x3b\x3b\xf0\x61\xfb\x88\xb4\x7f\xc7\xb0\x05\x1a\x5e\x9f\x13\x70\x30\x19\xc3\xa9\xe7\x59\x9b\x66\xde\x7a\xe7\xda\x7d\xbe\x80\x50\xa3\x6b\x88\x94\x73\x51\x5f\xa8\x36\x7f\x3a\x67\x11\xcd\x95\xf5\x89\xeb\x30\x25\x14\x53\x8c\x58\x06\x7d\x14\x7e\x75\xcf\x50\x15\xef\xea\x78\x54\xbc\x04\xbb\x48\x2c\xba\x0f\x9e\xf8\x1e\x70\x47\xbe\xff\x1b\xfe\x01\x92\x4a\xe5\xaf\xcd\xab\xf2\xef\x9b\xb3\x5b\x7c\xdb\x3c\x8c\xed\xf1\x92\x6b\xe6\x9c\xec\xa0\x8c\x2a\x1c\x10\x67\x94\xc5\x52\x93\x2f\x46\x2f\xbf\xf9\xa6\x45\xe5\xff\xe5\x8e\xbd\x6a\x2a\x29\x81\x4f\xd5\xd0\x5a\x94\x94\xe8\x11\x95\xd6\x50\xad\xd7\x1f\x75\x08\x48\x1b\x02\xd2\x7a\x98\x3d\x87\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x9a\x56\x3c\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\xd6\xb4\x92\x01\x97\x0d\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x0d\x01\x69\xf8\x0c\x01\x69\x43\x40\x5a\xfd\x19\x02\xd2\x86\x80\xb4\xe2\x19\x02\xd2\x86\x80\xb4\x21\x20\x2d\xd8\xe9\x10\x90\xe6\xc1\x62\x08\x48\x1b\x02\xd2\x86\x80\xb4\xea\xf3\x6b\x06\xa4\x75\xd4\x3a\xc7\x2c\xbe\xa1\x77\x0f\xae\x6a\x6e\xef\xc6\x03\xd2\x77\x57\x6f\xd5\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x87\xa7\x37\xe4\xef\x1e\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xf2\x19\xdc\xa5\xca\x67\x70\x97\x1a\xdc\xa5\x7e\x53\x2e\x06\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\xc1\xc6\xff\x61\xb8\x6c\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc0\x33\xb8\x4b\x0d\xee\x52\xc5\x33\xb8\x4b\x0d\xee\x52\x83\xbb\x54\xb0\xd3\xc1\x5d\xca\x83\xc5\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\xd5\x67\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x57\x9e\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\xdd\x6b\x84\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x3d\xa4\x63\x1d\xd2\xb1\x0e\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\xe6\xf9\x0f\xf9\xbb\x07\x82\x31\x10\x8c\x21\x7f\xf7\x90\xbf\xbb\xf2\x0c\xf9\xbb\x87\xfc\xdd\xb5\x67\xc8\xdf\xdd\x2c\x40\x0e\xf9\xbb\x87\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\xf3\x9f\x21\x20\x6d\x08\x48\xfb\x4d\x05\x71\x0c\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x05\x1b\xff\x87\xe1\xb2\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x02\xcf\x10\x90\x36\x04\xa4\x15\xcf\x10\x90\x36\x04\xa4\x0d\x01\x69\xc1\x4e\x87\x80\x34\x0f\x16\x43\x40\xda\x10\x90\x36\x04\xa4\x55\x9f\xff\xd9\xf9\xbb\xfb\xb8\x1d\x84\xb7\xba\x9d\x3b\x58\xa0\x97\x48\x29\xb1\x87\x66\x9d\x2b\x94\x45\x10\x3f\x5a\xb2\x8d\x49\xb0\xa5\xa8\xd8\x0a\x1b\x96\x14\xde\x15\x48\x34\xde\xb5\x8e\x77\xa6\x51\x0b\x4d\xaa\x1e\x64\x89\xad\x83\xab\x40\x57\x42\xcc\x05\x0d\xca\x1f\xd3\x29\x58\x4b\xe3\x31\xea\x83\x0a\x6d\xf6\x8a\x2f\x8d\x70\x3d\x3b\x80\xfe\x66\x07\xc0\x02\xd8\xb6\xa1\xae\xe9\xc2\x08\x85\x1a\x98\x4e\xe8\x20\x91\xf7\x2c\xc3\xd9\xa0\x6b\xa6\x37\x39\x45\xe4\x9a\x6b\x6d\x68\x09\x77\x51\x3d\xa1\x4e\x23\x29\x14\xc7\x54\xec\xa8\xb7\x9c\x1d\x70\xb1\xe0\x82\x6b\x36\x3b\x20\x23\x02\x0e\x81\xde\x72\x1c\xa5\xb2\xf3\x24\x09\x55\x7a\x4c\x8a\x95\x05\x41\x62\xe6\xca\x63\x26\x34\x8f\x68\x62\x27\x58\xef\x87\x0b\x42\x93\x74\x45\x45\xbe\x66\x99\xd7\x0e\x0e\x40\xa8\x57\x4b\x9f\xac\x8a\x0d\xbd\x5e\x82\x32\x37\x1e\x0e\x91\xaf\xe7\xbb\xda\xcf\x34\x63\xe7\x57\xa7\xb7\x5d\xc7\x63\x8a\xcd\x08\x17\x31\x8f\x50\xb3\x53\x44\xa0\xac\x5c\x7a\xf5\x2a\x56\x21\x73\xb6\x90\x61\xd6\x8d\x8a\x2d\x31\xdd\x35\xce\x75\x2e\x65\xc2\x76\x1d\x33\x5a\xf8\xf6\x1a\x97\x75\xeb\xeb\xc9\xf0\x54\x7b\xda\x32\x77\xd1\x52\x1e\xdd\xe1\xff\xc9\x3c\x88\x80\xcc\xda\x6a\x5a\x0f\xef\x24\xd8\x78\x19\x6f\x0f\xb5\x74\x4c\x47\xb3\xee\xa6\x9c\x87\xe1\xdd\x92\x44\xde\x23\xd4\x50\x85\x57\x28\xb5\x90\xb3\xfe\x0b\xea\x77\xf0\x62\x7f\x4c\xb8\x66\x19\x05\xd5\x4a\xa8\xe7\xd9\x8c\x8c\x30\x5e\xcc\x9c\xea\x75\x4a\x33\xae\xa4\x38\x22\x10\x34\xea\xf4\x32\xae\xcb\x85\x94\x64\x4e\x33\x50\x16\x15\xc3\xfd\x61\xcf\xe1\xca\xf1\x0c\x6b\xc5\xfe\x91\xd3\xe4\xcf\xe8\xe2\xec\x44\x05\xbe\xb0\x32\x02\x57\xd0\xc6\x99\x3e\x8a\x21\xc3\x48\xe4\x67\x98\x07\x2d\x1d\xf3\xe6\xe5\x3f\x23\xfc\xe7\x78\x3c\x26\xbf\x78\x33\xd0\x59\xce\x5c\xa4\x52\xe1\xec\x8b\x63\xfc\x48\xc2\xc1\x05\xd6\xe6\xd3\x31\x54\x39\x57\xb3\x00\x2e\x7a\x4c\x2e\x34\xd8\x9e\xf3\x85\xc1\xda\x26\x18\xde\x12\x6f\xce\x2b\xaa\x9e\x42\x7f\x1f\x0d\xe9\x78\x56\x0e\x7d\x5b\x8c\x4c\x75\xb9\x3b\xde\xce\xfc\x01\x0e\x69\x90\xe8\xda\x2e\x0a\xfd\xb0\x5c\x40\x5b\x50\x0f\xc2\x7f\xf3\xe7\xcf\x5f\xbe\xc2\xff\xc7\x37\xc5\x37\x37\x2b\x99\xe9\x51\xc4\xb3\x28\xe7\x1a\xd8\x5a\xfb\x51\x68\xa0\x7f\xfd\xab\xf5\x6b\x30\x24\xe9\xa7\xd8\xe6\x59\xd1\x28\xa5\x19\xb3\x22\xd1\x32\x93\x79\x6a\x44\xa2\xd9\x4c\xd3\x24\x79\x1a\x34\x08\xda\x9a\x02\xe8\x16\x54\xe0\x0b\xd7\x9b\x3b\xc3\x34\x49\x3c\x1d\x1f\x5c\xd0\x4b\x3c\x0f\x28\xc4\x36\x20\x39\x73\xb5\x11\xcf\x38\x57\x59\x1f\xbf\xab\x23\x32\x3a\x22\x1f\x01\x0e\xc7\x63\x72\x03\x57\x8e\xd8\x2b\xd7\xd8\xe9\x5a\x66\x8c\xa4\x46\xfe\x52\x8a\x6f\x18\x99\x63\x90\xc7\xd6\xe9\x97\xad\xe6\x9f\x30\x15\xd1\x94\x91\x68\x45\x33\x1a\x69\x96\xd9\x69\x5f\xa0\xaf\x7c\xf0\x32\x3c\x05\x2a\xb5\xa6\x31\x1b\xe5\x29\x1e\x0b\xf5\xac\x40\x47\x10\x59\x68\x51\xc7\x3d\x9b\x1b\xc9\x8d\x59\xe4\xe1\xef\x78\xcc\xd2\x44\x6e\xd7\x4c\x04\xd1\xa9\xfd\x3e\xcd\x64\xec\x0e\x29\xf4\x6b\xee\x14\xe0\xa4\x4c\x0a\xcd\x44\xec\x1d\x75\x1a\xdd\xd9\x1f\x7e\x31\xcd\xcb\xfe\xc9\x1f\xfe\xd2\x74\x03\x62\xb6\x71\xdd\xff\x81\xd4\x6e\x41\x08\x95\xb5\x31\x4f\x55\x6d\x6c\x5f\xae\xf0\x26\xf8\xd5\x17\x63\x0d\xed\x24\x9d\xb2\x66\x5f\x06\x11\xac\x3e\x3d\x68\x2a\x18\x87\x4a\x0e\xe0\x7e\x05\x11\xeb\x15\x9a\xef\xb9\xc5\x59\x31\x33\x88\xa7\xcc\xbd\x93\xb6\x82\xca\x91\xfd\x6b\x2e\xf5\x6a\x4c\xd0\x53\x15\xa8\xc9\xa7\xd4\x70\x54\x3a\xd9\x7a\xc2\xec\x53\xa8\xfe\x12\x74\x41\xf6\xf0\xa8\x20\x51\xc6\x6c\x80\x8c\xb2\xb7\x5b\x66\x44\xf0\xe4\xd9\x91\x0b\x72\x89\xd9\x82\xe6\x89\x56\x04\x97\x65\x40\x97\xc5\x0d\x32\x8d\x96\xe4\xde\xe0\xca\x89\x95\x9c\xcd\x24\x2e\x3c\x21\x1a\xf8\x56\x87\x3f\x8b\x42\x28\xe8\x76\xd9\x14\x27\x6f\xc7\x27\x5c\xe1\x1d\x1b\x91\x9f\x2c\x2b\x67\x26\xe4\x46\xfa\xfb\x91\x25\x11\x86\x31\x06\xeb\x4d\x65\xe0\xe0\x3d\xe6\x22\x4a\xf2\xd8\x19\x38\x23\x6a\x98\x65\xe8\xa0\xec\x86\x20\x91\x16\xb2\x58\x12\x74\xf7\xac\xc9\xbb\xb2\x3a\xb9\x8b\xf0\xdc\x2a\x10\x31\x88\xa9\xec\x3e\x28\xdc\x41\xbb\xc6\xa5\x1f\x75\x0e\x18\xea\x14\x74\x8b\x4d\xdb\x84\x38\xf0\x83\x55\x2c\x7a\xe2\x49\xc6\xa8\xb9\x4d\xd1\x1d\xa1\x4b\xca\x45\xf0\xc8\xe2\x31\x41\x83\x54\x72\x4f\xb7\x6a\x27\x3e\x01\xbd\x45\x8e\x88\x60\x1b\x96\x55\x4e\x5d\x50\xc9\xd2\xb3\xca\x52\x09\x05\xc2\x80\x74\x14\x76\xd5\x54\x2a\xc5\xe7\x89\x1b\xb8\x74\x87\x33\x1f\xdc\xa4\x2c\x0a\x8b\xdd\xb8\x90\x66\x07\xc1\x76\x01\xbf\x51\x76\x0e\x8b\xdc\xbb\xbf\x02\xe5\x88\x7d\xb7\x07\xa5\x65\x46\x97\xcc\xfd\xa4\x34\xd5\x39\x02\x06\x2d\x7f\x2c\xbe\xf2\x6c\x32\x77\x5c\xc4\x06\x1b\x39\x90\xa6\x49\x9e\xd1\xa4\xfc\x25\x92\x02\x0d\xf1\xea\x84\xfc\xf4\x77\xf3\x8b\xe9\x9f\xc5\x36\xd0\xd6\xfe\x3a\x13\xa3\xd1\x68\x26\x9e\xd8\xe0\x87\x13\x12\x01\x56\x38\xd6\x6c\x9d\x42\x1d\xab\xe3\xbb\x38\x1e\x45\x59\xac\xc6\x5b\xba\x4e\x66\x82\xa6\xdc\x45\xf6\x12\x9a\x72\xf6\x49\x33\x01\xfd\x8d\xef\xbe\x55\x63\x2e\x8f\x37\x2f\x66\x02\xe7\x76\x96\x2b\x2d\xd7\xd7\x0c\x6d\x8f\xe7\x0c\x64\x49\xc0\xeb\x95\xf8\x59\xd0\x98\x11\xf4\xbe\x16\xe8\xa9\xac\x98\x56\xe3\x28\x8b\xc7\x69\x26\x0d\xc4\x70\x52\x63\x99\x2d\x67\xc2\xe0\x40\xf8\x0e\x18\x9b\x13\xd2\xd0\xac\x6a\xc0\xc2\x09\xd5\x9d\xaa\xf1\x5d\xc2\x95\xfe\x6b\xf0\xfd\x25\x57\xba\x0a\xdc\x9d\x59\xda\x9d\xe3\x62\x99\x27\x34\xdb\x6d\x60\xde\x03\x42\xcc\x36\xec\xbd\xb8\x13\xf2\x5e\xbc\x36\x27\x4e\x9d\x90\x05\x4d\x14\xec\xbc\x8a\xa4\x39\x1c\x67\x49\xae\x34\x0a\xa6\x1b\xb7\x47\xe6\x8f\x91\x85\x90\x01\x2c\x0c\x16\xad\xd8\xba\x0c\x3d\x96\x29\x13\xa7\xd3\xc9\x0f\x5f\xdd\x54\x7f\xaf\x5d\x9f\x1d\x87\xf2\x4a\x48\x07\x38\x26\xd0\x6c\xce\x75\x46\xb3\x2d\x99\x4c\x89\xca\xe7\x23\xb7\x8c\xe3\xb3\xc9\xf9\x75\x05\x77\xa1\x2a\x64\x65\xb0\x1d\x32\x48\x20\x06\x83\x0c\x87\xe8\x4c\x4b\x8c\x2e\xb4\x5e\x20\x6b\xb2\xe1\xd4\xf3\xc7\x43\x4f\x0b\xfc\xd4\xef\x57\x2e\x76\x27\xea\x8c\xf5\x85\xde\xc7\xbf\xae\x0d\x7a\x59\xef\x94\x56\x6f\x67\x35\x5d\x8a\x81\x9b\x75\x4b\xc1\x30\x0e\x44\x28\x16\xfc\x2c\xb6\xb0\x46\x8c\x02\xf8\xd1\x12\x37\x1a\x52\xb8\x19\x10\x0a\x7b\xc7\xc7\xc0\xfa\xb0\x4c\x39\xe1\x38\x92\x62\xc3\x32\x4d\x32\x16\xc9\xa5\xe0\xff\x2c\x3a\x57\xce\x51\x06\xae\xdb\x0e\xbb\xc8\x85\x66\x99\x61\x92\x00\xb9\xa1\x39\x60\x4d\xb7\x24\x63\x66\x18\x92\x0b\xaf\x43\xe7\xa6\xf7\xd6\x30\xc7\x5c\x2c\xe4\x09\x24\xb2\x52\x27\xc7\xc7\x4b\xae\xdd\x05\x8d\xe4\x7a\x9d\x0b\xae\xb7\xc7\x60\xba\xe7\xf3\xdc\x6c\xc9\x71\xcc\x36\x2c\x39\x56\x7c\x39\xa2\x59\xb4\xe2\x9a\x45\x3a\xcf\xd8\x31\x4d\xf9\x08\xe6\x2e\x00\x97\x8c\xd7\xf1\x93\xcc\xde\x68\x75\x18\xc2\x7c\xbb\x08\x13\x2e\x5f\xdb\x36\x98\xdb\x67\xa3\xbf\x91\xfb\x47\xf6\xa5\x80\xb6\x23\xe1\xd7\x17\x37\xb7\xc4\x8d\x1e\x8c\x94\x47\xe0\x97\x5f\xaa\x72\x1f\x0c\xd0\xb8\x58\x38\x3e\x0d\xac\x25\xbe\x5a\x03\x99\x84\x84\x07\x58\x76\x95\xcf\xd7\x5c\x2b\x2f\x03\x92\x1c\x93\xb3\xc2\x8c\x92\xa7\x31\xd5\x2c\x1e\x93\x89\x20\x67\x74\xcd\x92\x33\xaa\xd8\x17\xdf\x05\x60\x56\x47\x06\xb6\x7d\xf7\xa1\x21\x6b\x41\x93\x8e\xb8\x40\xb4\x0d\xdb\x56\xbf\xa8\x86\xd2\x56\x83\xe7\x5c\xac\x65\x99\xdd\x80\x92\x3a\xf6\x2d\x1f\xb7\xb1\x35\x62\xdc\x62\x79\x69\x08\xf3\xd8\xa9\x30\xe9\x3c\x51\x27\x53\xe2\x50\x1a\x62\xb0\x39\x4b\xa4\x39\x5b\xd2\x6a\x9e\x58\xc8\x5e\xdf\xcc\x9f\x0c\x1c\xc2\xaf\xc9\x21\xac\xa4\x2a\x3d\xaf\xbe\x00\x77\xe0\x87\x57\xd5\x39\x03\xff\xdd\x2e\x57\x50\x99\x59\x9d\x23\xf0\x5f\xfe\x3b\xb9\x81\x81\x52\x0e\x94\xd2\xdf\x82\x81\x52\xfe\x6a\x94\xd2\xc7\x1e\xfd\xa8\xe4\x2e\x2e\x2a\x9f\xfd\xe9\x24\xfb\x94\x82\x9f\xc9\x64\xda\x47\xbb\x65\x76\xda\x7e\x50\x8d\x36\x7c\x3a\x99\x6e\xbe\x86\x6b\x35\x99\x6e\x5e\x3d\x73\x72\xb6\x3b\x16\x41\x21\x7a\x82\x4a\xfb\x89\xb9\x9b\x0b\x1a\x31\xb0\xcd\xcd\x66\x07\x35\x33\x48\xa1\x8d\x02\xbd\x42\x22\xe5\x9d\x53\x07\x72\xf7\x65\x50\x0b\xec\xdc\x7d\xbc\x28\xc8\xc9\xb4\xe2\x80\x87\x81\xdb\x60\xa0\xb3\x7a\x0e\x40\x22\x54\x8f\xc1\xa9\x3d\x48\xd7\x67\x33\x0d\xca\x91\x5c\xed\x78\xc7\xd7\xf2\x01\x40\x00\x66\xe1\x48\x22\x33\xab\xca\x0b\x75\x5a\x2f\xdf\x3c\x9b\x99\xfe\x6c\xdd\xe6\x62\xfd\x16\xf9\xa9\xea\xa8\x5c\x84\xb3\x0d\x14\xa2\x9b\xbf\x4f\x63\x88\xfc\x35\x64\xa7\xe2\xab\x8c\x5e\x12\x17\xe5\x51\x40\xd5\x47\xa8\x5b\xae\x50\xcf\x8a\xf9\xa8\xa8\x26\x69\x9e\xa5\xd2\xdc\xd4\xa7\x93\x85\x75\x8d\x5a\xb1\x72\x6b\xcc\x38\xce\xf7\xb1\xdd\xc1\xca\xe9\x1c\x25\xc3\xed\x4f\x18\xcd\x44\xb1\x6d\x76\x07\xcb\x7e\xcd\x04\x72\x05\x7a\xf1\x46\xa7\x8e\xd9\x4c\xbb\xed\x18\x07\xb5\xda\x8f\xce\xbf\x91\x72\x86\x57\x61\x6f\x9f\xda\x95\xba\xc0\x14\x9a\xe6\xdc\xff\x2f\x54\xe9\x5b\x7b\x4b\xe9\xe7\x53\xa4\x25\xb9\xe4\x22\xff\xd4\x7e\xea\x0b\x8b\x73\x71\xa0\xff\x0c\x47\x6f\x9d\xea\xed\x98\x94\xc3\xf8\x46\x6a\xb4\xd8\x72\xd5\x8a\x59\xcc\xb3\x94\x1b\x96\x09\xb4\xf5\x14\xfe\x6f\xf2\xa8\xf4\x79\x5b\x65\x32\x5f\xa2\x5f\x83\x53\xdd\x5a\xa6\xba\x3d\x2c\xdf\x6e\x2e\x9c\x4b\xd3\xb0\x48\x4a\x80\xc5\xbc\x63\x44\x0b\x70\x26\xff\x4c\x98\x59\x3f\x5e\xec\xd8\x1c\x92\x0d\x5e\xc4\x70\x9a\x8a\xd2\x9b\x68\x03\xf5\xd5\xb7\x25\xf8\x8e\x88\xaf\x04\x96\x0a\x63\x19\x8e\xb5\x04\xdf\x78\x33\x17\xa7\xe4\x08\xbb\x16\x24\x32\xa2\x49\x11\xd8\x6e\x15\xa7\x93\x05\xa9\xe0\x33\x87\xcb\xbc\xfd\xed\x05\x6a\xb8\x48\x0e\xde\x15\x5f\x43\x58\x3e\xe0\x13\xb3\x76\xcb\x6b\x01\xe4\x3c\xf0\x07\x91\x8c\x3b\x46\xe5\x1d\x2a\x60\x5d\x99\x33\x1c\xc1\x11\xb9\x37\x68\xae\x8a\x9c\xc3\xf8\x00\xb5\xb8\xa3\xca\xf6\x07\x06\x2b\x62\x11\x4b\x85\xb0\xb9\xd9\xc1\x4e\x85\x8f\x8c\x20\x8d\x6e\x06\x8e\x12\x47\x81\x59\x15\x53\x38\x22\x14\xb0\xc6\x2e\xfb\x47\xac\x1d\xdb\xa7\x5d\x45\xf5\xf4\x32\xc9\x18\x86\x53\x19\xa1\x24\xc3\xf4\x7b\x76\x14\x45\x9e\xaa\x3c\x8c\x61\xa8\x82\xad\x65\x7a\xf5\xdc\xfc\xf7\x99\x8d\x05\x02\x03\x23\x8b\x89\x99\xf7\x9f\x09\xd7\x84\x2b\x71\xa8\x4b\x6d\x74\x37\x25\x27\x78\x99\xd3\x4c\x1a\xee\xc5\x3b\x02\x08\x63\x0f\x2b\x54\xcf\x61\x39\xeb\x20\xcd\x75\x01\x5b\x27\xb8\x56\x88\x8f\x04\xee\x07\x63\x28\xd1\x3e\x65\x38\xae\x75\x9a\xb0\xb5\x39\x6b\x88\xea\x4b\xc4\xe1\x4f\x5a\xfd\x39\xbc\x7b\x5c\x73\x9a\x24\x5b\xf2\x7f\x0d\x8c\xd3\x8c\x8d\xc0\x2f\xa6\xb0\xf6\x4c\xcd\x26\x31\x9b\xec\xb8\x40\xfb\x51\xbe\x6e\x92\x09\xcc\xe3\x6a\xdb\x23\x83\x6f\x6b\xe8\x4b\x11\x34\x1b\xb4\x21\x6f\x11\xce\x74\xb7\xa3\x18\x30\xed\xac\xd7\x3e\x38\x25\x2d\xb6\x8e\xe0\xdb\x19\x43\x03\x6e\x04\x6d\x11\x04\x76\xdb\x24\x9a\x22\x86\x6b\x56\x0d\x43\xec\x2b\xfc\xa0\xe7\xbd\x8b\x77\xd7\x06\xb3\xba\xcc\xc7\x41\x4f\xe0\x39\x43\x7d\x2b\x13\x11\xba\x50\x15\xec\x86\xdd\x70\xeb\xe4\xba\x07\x75\xec\x74\x79\x6d\x75\x75\xed\x76\x8f\x34\xcb\xea\xf8\xbc\x35\x52\xf5\xb7\x94\xd1\xec\x4b\x25\xb0\xea\x70\xfc\x14\x0d\x08\x7b\x04\xc0\x6d\x78\xd3\x92\xa2\xee\xc1\xee\xa2\x29\xb2\xb1\x9d\xc7\xfd\xb4\x8c\x0a\xc7\x0b\xc7\x81\xce\x2d\x3c\xee\x18\x7b\xb2\x93\x68\x4e\xfc\x59\x46\x89\x18\x52\x5b\xc8\x20\x98\xf0\xdd\x4e\xc7\xf3\xb8\x74\x22\x01\xba\x12\x36\x75\x8a\x61\x16\x69\xca\x68\x56\x38\xf1\x41\x14\x0f\x29\xe6\x55\xda\xb9\x5d\xcf\xce\x19\xb3\xe4\xd7\x47\x8d\xae\x8a\xb5\x5b\x39\x68\x1b\x7f\xb3\xda\x46\x9e\xd2\xf5\x3c\x91\xd1\xdd\x97\x50\x35\x4e\xa6\xa7\x6f\xbf\x33\x9d\xd7\xf5\x8c\xc5\x8b\x5d\x25\x63\x39\xa1\xba\x86\xb1\x78\x33\xa8\x17\xed\x2c\x07\xf5\xe2\xa0\x5e\xfc\xfd\xa8\x17\x0b\xa4\xd1\x4b\xb7\x28\xea\xd8\xa7\x7c\xf6\xd7\x2c\x1a\x81\xc5\xc0\xae\x93\xee\xdb\x76\x4e\x26\x04\x74\x65\xbd\x98\xb8\xc2\x3f\x9d\xdc\x88\x71\x7a\x4c\x07\x15\x48\x5c\x17\xf1\x02\x5e\x45\x12\x32\x3b\x30\xd2\xf1\x09\x56\x0d\x31\xff\x04\xce\x08\xbc\x57\x67\x07\xd0\x21\x38\x85\x32\x7d\xe4\x0d\xd8\x20\xea\x9a\x96\xb0\x2e\xac\x81\x03\x72\xf7\x9e\xac\x3f\x4d\x8c\xc0\xd6\x94\x65\xbd\x0a\x19\x43\xb1\x01\x63\x95\xdf\x10\x2e\x46\xb9\x0d\xed\x70\x6c\x08\xcc\x78\x4c\x04\x4f\xa0\x9c\x4d\x43\x80\xc5\x9a\x51\xe4\x73\xca\xde\x08\xdc\x31\xc6\x50\x2d\x28\xa4\x18\x79\x7d\x18\x69\x9a\x8b\x98\x7d\x22\xfc\xa8\x49\xa7\x60\xdf\x17\x01\x2f\xdc\x20\x41\x0b\x7c\x6f\x98\x9d\xc9\x02\x86\x6c\xe8\x13\xf1\x8a\xed\x13\x07\x70\x3d\x2a\x25\x23\x0e\x19\x43\xa8\xc6\xeb\xc8\x0a\x85\xee\x69\xf1\x4b\x90\x25\x34\xa0\x7c\x00\x4b\xd5\x22\x01\x3c\x21\xb7\xef\xce\xdf\x9d\x60\xe2\x23\x91\x27\x09\x9d\x23\x5b\xb9\xa6\x22\x07\xf1\x97\xc6\x31\x70\x97\x63\xf2\x81\x39\x12\x83\x78\x88\x14\x99\x11\xb2\xd1\x32\x9c\x09\xf4\x89\x39\x61\x2b\x2a\xe2\x84\x91\x9f\xfe\xfe\xbf\x0c\xf2\xc3\xcb\x96\x6c\x6d\x0a\x93\xa0\x80\xef\x26\xd2\x24\x37\xb4\x30\xea\x25\x4c\x3b\x0f\xa6\x07\x7d\x70\xd7\xa5\xc5\x49\x2d\xfc\x84\x1c\x22\xf3\x76\x2d\x34\x5f\x70\xa8\xae\x9e\xef\x12\x0b\x8c\xc9\xad\x24\x0b\x43\x78\xbc\xfd\x46\xdd\x09\x06\xfd\x95\x1f\x06\x31\x82\xb9\x28\x95\xd0\x81\xea\xb9\x3c\x54\xb6\xfc\x93\x3b\x42\xde\x34\x1a\x23\xe4\x69\xe0\x60\x32\xd4\x95\x14\x72\xc1\xfe\xa7\xad\x53\xa0\xc6\x93\xf0\x91\x87\xc5\x3d\xd2\x4b\xaa\x56\xcc\x30\xda\x34\x0b\xa1\x64\xbb\xb8\xfd\x4a\x3b\xf4\x11\x7f\xbb\xe2\x17\x1f\x2c\x57\x46\x3c\xee\xf4\x31\xbf\x75\x27\xe9\x50\x91\xb3\xc9\xf9\xf5\x9e\xb8\x3a\x66\x09\xd3\x41\x09\xbb\x32\xca\x39\x36\xb3\x77\xa1\x60\x06\x6d\x80\x56\xe1\x97\x7e\x2f\xb3\x3b\x9a\xc9\xdc\x1c\x67\xaf\x3e\x41\x83\x02\xd4\x9c\x2b\x2f\x52\xfd\x74\x3a\x41\x0f\xe5\xf9\x16\xa7\x85\x78\x35\xc1\x80\x9b\x8c\xe9\x3c\x13\x04\xca\x88\x2c\x12\x1e\x86\x34\xcb\x32\x99\xb9\x68\x9a\x92\xac\xce\x19\x13\x1e\x7b\xa4\x1d\xa6\x72\x81\xe0\x4c\x17\x18\x6d\xff\x58\xb4\x7f\xe4\x4c\x44\xec\x0a\xc2\xea\x82\x60\x04\x2b\xc1\x09\x79\xde\x01\x62\x83\x40\x8d\x48\x08\x66\x2d\xec\xd4\x06\xeb\xa1\x5e\x99\x2b\xb7\x04\x0c\x73\xd7\x3c\xac\xfd\x28\x97\xce\x15\xb9\xcf\xb8\xd6\x4c\x58\xc5\x40\x85\x5e\x81\x07\xb3\x92\x76\x50\x14\xe0\x71\xd8\x30\xd2\x85\x99\xf8\x0c\x0c\xb1\x61\x70\x66\x22\xa0\xd3\xd0\xaa\x70\xb8\xb7\xa9\xa6\x33\x96\x30\xaa\x1a\xae\x0e\xf0\x62\x47\x24\xa5\xca\x33\x34\x56\x17\xee\x91\x43\xc0\xa2\x55\xe4\x16\xec\x34\x49\xe4\xbd\x22\xb9\xf2\x55\xcb\xe0\xce\xad\x34\xa1\x24\xa3\x98\xe2\xdc\x26\xe9\x32\x34\x9a\x09\x95\x5b\x00\x4c\x82\x05\x2a\x57\x14\x34\xdb\x70\x88\x70\x41\x86\x3a\x8b\x98\x64\x6c\x64\x27\x63\xa4\x28\x48\xc9\x07\x51\x90\xd8\xc6\xb1\xe9\x81\x13\x85\xf5\x59\x80\xf4\xbe\xfa\xba\xe9\xc0\x35\xd0\xe5\xea\x81\x7b\x2d\xb3\x12\xa5\x07\x4e\x5f\x6f\x6c\xd7\x31\xa5\x4e\x66\xa1\x56\xaf\x23\xf5\x78\x3a\x16\x17\x7c\x93\x97\xfd\x01\x8f\x10\xc4\xb2\x7c\xd6\xa9\x2b\x8f\xc3\xd8\x47\x26\xce\xc6\xda\x78\x46\x48\x19\x60\x7b\xc7\xb6\x2e\x7f\x46\xaa\x8e\x88\x42\x39\xf8\x8e\x41\x50\x40\x44\x95\xb6\xe5\xd5\x00\x81\x36\x22\x88\x30\x7e\xc7\x44\x30\xa7\x3d\x05\x85\x9b\x4a\x6b\x17\xda\x5b\x48\x2c\x66\x3e\xb1\x91\x29\x11\xaa\xe6\x0c\x8a\xa0\x65\x3c\x91\x62\xc9\x32\x44\xcb\xd6\xce\x88\x75\x6b\xde\x2b\xec\xee\x4c\x8a\x05\x5f\xd6\xc7\x33\x97\x84\xd1\x50\x3c\x40\x2b\x0e\xcc\x45\xb1\xd3\x5d\x0b\x7c\x5f\x36\x75\x61\x50\x19\x06\x5d\x3b\xcd\xa8\xcf\x28\xa1\xce\xbf\x21\xc6\xc3\x70\xf5\x55\x56\xea\x11\x79\xdf\x46\xa2\xdc\xa0\x92\x1e\xf9\xf3\xde\x79\xd5\xc0\xb7\x8f\x80\xc0\xd7\x7f\xab\x9e\x98\xfa\x5b\x0f\xd6\x83\xa2\xf3\x91\x14\x9d\x11\x5c\x86\x2f\xa5\xe9\xc4\xab\x16\x52\x75\xe2\x9b\xb0\xae\xd3\xce\x29\xa4\xec\x8c\x8a\x0e\x07\x6d\xe7\xa0\xed\x1c\xb4\x9d\xbf\x3b\x6d\x27\xe2\x8d\x3d\xd4\x9d\x3e\x0a\x2a\x9f\x07\xe8\x3b\x73\x2d\x2d\xbb\xc9\x80\x21\x09\xd1\xd6\x56\x56\x61\x4d\x3f\xe1\x87\x53\x96\x7d\x0f\x3a\xcb\x2e\x4e\xb2\xda\x1e\x94\xa6\x42\x8a\xd1\x3f\x59\x26\x8f\x9c\x0a\x6d\x4d\x3f\x79\xac\xa2\x6f\x26\xaa\x4d\x0d\xd2\xaa\x51\x01\xb9\x3a\x0a\x1d\x27\x48\x53\x0d\x6a\xce\x35\xfd\xc4\xd7\xf9\xfa\x84\xbc\x7c\xf1\xf5\x1f\xbf\xfe\xf6\xab\x57\x5f\xff\x31\xd0\x88\x0b\x6c\x14\x10\xf1\xda\x79\xf9\x2e\xe6\xb0\x05\x96\xcd\x8c\xc8\xce\x26\xed\xc3\x61\x0c\x6c\xc4\x83\xd9\x08\xd4\x5f\x7d\x29\x36\xe2\x7b\xe8\x3d\xc4\x46\xe0\x9b\x30\x1b\x61\xe7\x14\x62\x23\x56\x45\x87\x03\x1b\x31\xb0\x11\x03\x1b\xf1\xbb\x63\x23\x10\x6f\xec\xc1\x46\xf8\x28\xa8\x7c\xf6\x67\x23\x80\x40\x7f\x8e\xb2\xaa\x97\xf0\x1e\xd6\xc7\x34\xeb\xbb\x5b\xf9\x16\x44\x96\x93\xf3\xc6\xef\x42\xda\xf5\x46\x12\x1d\xb0\xbf\x8e\x8a\x21\x06\x7a\xfc\x28\xf4\x38\x95\x32\xf9\x32\xb4\x78\x2a\x9d\xfb\xa0\x4f\x87\xcd\xaf\x21\x1a\x0c\xf3\xd8\xa5\xbf\xa9\xed\x64\xa0\xbd\x03\xed\x1d\x68\xef\xef\x8c\xf6\x1a\x5c\xd1\x9b\xee\x9a\xc6\x0f\x91\xd5\x31\xef\xdc\x7b\xd5\xc3\xd7\xa1\x68\xea\x9c\x36\x14\x26\xba\x42\xe3\x03\x31\xb8\xaa\xf0\x3b\x72\xa1\x71\x90\x68\x35\x44\x9c\xc1\xd5\xa8\xc8\xd4\xe5\x22\xb3\x8e\xca\x4c\x5b\x5a\x92\x9f\x66\x07\xb7\xb9\x10\x2c\x81\x04\x6f\x07\x1f\x6c\x64\xc7\xec\xe0\xef\xb0\xee\x39\x8d\xee\x46\x90\xba\x52\xf3\x39\x4f\x76\x84\x54\xf2\x65\xe2\xda\x80\x2c\xdf\xf0\x7f\xf6\x0a\x9e\x40\x63\x94\xe2\xff\x04\x1d\x42\xae\x30\xe2\xa5\x8c\x44\x24\x54\x29\xbe\x14\x6b\x73\x99\x1a\x0b\x62\xd8\x9c\x69\x32\x19\x93\x73\x0f\x3c\x2f\x5f\xd9\xce\x6c\xc0\xe9\x8b\x97\x2f\xdd\x0f\xaf\x1a\x8d\x33\x0d\xec\x50\x5f\x1f\x02\xd8\xe4\x87\x38\x10\x70\x45\xe7\x09\xfb\xee\xcd\xf4\xe2\x53\x43\x4c\x43\x15\x69\x9d\xe3\x07\x84\x41\x73\x83\xa2\x32\x99\x17\x79\xe5\x01\x22\x93\x29\x31\xa7\xfe\xd0\xba\x34\x10\xb9\x09\xfb\x27\x7d\xf7\x66\x3a\x26\x3f\x9d\x3b\x0b\x3b\x10\xcd\xbf\x07\x0a\xd8\xb6\xb2\x76\x76\x01\x9d\xa6\x2b\x30\x68\xbb\xc6\xa0\x79\xca\xf2\x32\x72\xd5\xf0\xc7\xa5\xb3\x02\xee\x7d\x19\x94\x1a\x9a\x7c\xb9\x5c\x38\x00\x7b\xce\x9a\xa7\x3c\xed\x06\x75\x61\x2b\x3c\xb1\xc8\x1b\x52\x0d\x72\x2c\xcc\x5e\x46\xb9\x9e\x4e\x27\x9b\x17\x70\xeb\xee\x69\x16\x07\x67\x5b\xb9\x8d\x86\x38\x68\x4b\x5d\xfc\x5e\x61\xe9\x88\x4c\x8e\xaa\xaf\x82\x00\xc0\xd0\x5e\xa4\xd2\xe6\x02\x99\x49\x8d\x03\xdb\xd7\xe1\x39\xc4\x44\xd3\xfe\x85\xf7\xd0\xb6\x2f\xb7\xd0\xc0\x92\x68\xc0\x47\x66\x4d\x3e\xa6\x0b\xf7\x09\x71\x6b\x31\x4b\xf8\x86\x65\x65\x69\x25\xf3\x53\x51\x78\x50\xd5\x12\xac\x07\x77\x98\x74\xed\x32\x81\x5c\x9f\xc1\x68\xae\x9d\xb5\xdd\x02\xb2\x9e\x4c\xe1\x03\x48\x31\x05\xd6\x6b\xe1\x25\xa8\x9b\x1d\x60\xce\x3a\x57\x48\x14\xca\x13\x8f\xb0\x64\xee\xec\x60\x4c\xc8\x69\xd3\x7a\x4d\x9f\xb5\x1e\x4a\x0f\x92\x5c\xd9\x91\x4b\x18\x9a\xbd\x35\xd7\x1a\xce\x48\x63\xa9\x78\x0f\x5e\xd5\x58\xfb\x1d\xd8\x11\x72\xea\xcd\xa1\x3a\xef\xa6\xde\x61\x82\xee\xa0\xd7\x27\x78\xef\xd2\xff\xf9\x73\xc0\x78\x37\x73\x3b\x9a\xfa\xa4\x65\xf9\x33\x5b\x6a\xd8\x71\xa1\xae\x40\x86\xe9\x5c\xb8\x1d\x28\x83\x84\x5b\xcb\x46\x3e\xe5\x8b\x2a\xd9\x7c\x66\x66\x51\xc2\xba\xf5\xe8\xb4\x13\xba\xb0\x14\x6c\x4e\xfc\xdb\x1e\x51\x82\x67\x8e\x3f\x41\x9b\x63\x9e\x95\xbc\x49\x60\xc3\xdb\x8f\xfa\xa4\xb6\xc6\x23\x57\xdb\x85\x2b\xf4\x6b\x00\x40\xa1\x1f\xd9\xec\xe0\x8a\x6d\x20\x15\xfc\x53\xc8\xbb\x5e\x1d\x2c\xd4\xbb\xe9\xc1\xe2\xe6\x50\x51\xc1\xd6\x70\x49\xaa\x47\x32\xd7\x4b\xc9\xc5\xf2\xf7\x82\x52\x5b\xb1\x8e\xa0\xfa\x5d\x4f\x78\x60\x9a\xd6\xb2\x7d\x89\x54\x1d\x5a\x84\x64\xa8\x5e\xc5\x34\xd2\x1a\x71\x6e\x19\x62\x23\x77\xf8\xf7\x7f\x07\xb9\xca\x5c\x2b\x1e\xb3\x42\xc0\x2c\x58\xd4\x50\xa7\x50\x4f\x46\xfd\x23\x67\x19\x8d\x83\xc5\x81\xda\xa1\x21\xe3\xde\x65\x20\x4e\xd1\xfb\xcc\x32\xed\x36\x29\xa0\x39\x2d\xd6\xa5\xb7\x88\x68\x06\x4c\x33\xdf\x62\x0e\xc0\xd0\x9c\x8b\x5a\x4a\xfb\x9d\xe5\xcd\xa7\x84\x8a\xcf\xbc\xd9\x3f\xfc\x78\x79\x7a\xf5\xab\x5d\x6d\x18\x2d\xc8\x1b\x17\x13\x78\xf0\xdd\x6e\x54\xc0\xed\xfa\xdd\xfc\x4f\xd3\xb3\xe1\x0f\x23\x73\xce\x46\xd9\x9c\x46\x5f\x5c\xdf\x86\x7a\x2c\xbc\x9e\x5f\x44\xed\x76\x5d\x0e\xb0\xab\x7d\xf3\x5e\x86\x94\x70\xfe\xe4\x76\x75\x71\x59\xb5\xe7\x41\x25\x37\xa8\xe4\x06\x95\xdc\xef\x4c\x25\xe7\x21\x90\xde\x9a\xb9\x1d\x8c\x54\x3e\xfb\xeb\xeb\x2c\xd2\x89\x21\xd9\x70\x17\xf5\xbe\xf6\x1b\x57\xeb\xcd\xe3\x4f\x54\xc4\xc7\x15\x75\x54\x58\x07\x01\x0e\x31\x3b\x1a\x0c\xf6\x29\x4a\xf2\xd8\x16\x3e\x16\xec\xde\xf7\x6d\x1d\x62\xf6\x7f\xf3\xb4\xf8\x2e\x9f\xb3\x32\xf8\x4e\x55\x18\xbc\x2f\x41\x9a\xff\x9a\xcf\xd9\x59\x39\xde\x99\x3f\x5e\x9d\x52\xb7\xb5\xdd\x25\xdc\xad\x2b\xa9\xd3\xf1\xb6\xc6\x03\x59\xb7\xb3\x1c\xc8\xfa\x40\xd6\x7f\x3f\x64\xbd\x0d\xdb\xec\x52\xf9\x4a\xfd\x8c\x3a\x80\xbd\xd0\x22\x0f\xc9\x54\xa5\xe7\xfe\xc4\xde\xeb\xa2\x8f\xa0\xee\x46\x43\xcd\x35\x56\x34\x71\x23\xdb\x5a\x3c\x1b\x1e\xe7\x34\xe9\x28\x98\xea\x0d\xbb\xb7\x96\xbd\xab\x06\x6a\x43\xe5\xd3\x86\x29\x57\xcb\xa0\x96\xf3\x6a\xac\x3b\x7a\x61\x95\xf6\x10\x1b\x0a\xea\x84\x23\x88\xdb\xd4\x12\x92\x02\x68\xe9\x54\x04\x0d\x3d\xf4\xa8\x60\x6b\xd0\x94\x88\x78\xc2\xb2\x29\xcb\xb8\x6c\x0e\x43\xae\x23\x87\xeb\xda\x87\xce\x2d\x39\xc5\xbf\xb4\x34\xff\x82\x44\x0d\x6e\x08\xde\x18\xbf\xe8\x9e\x22\xdc\xd1\x25\x8f\xa3\x9a\x02\xf7\xe1\x1b\xbc\xbe\x59\x87\xac\x5d\xee\xe9\x0e\x5d\xee\x0a\x5c\x6e\x48\x24\xb7\x03\x81\x2b\x19\xb7\xef\xb4\x79\xff\xdb\xd8\xe4\x95\x97\xdb\xaf\xef\x06\xfb\xf9\x00\x4b\x0b\xb9\xda\x8a\xc8\x29\xfb\x81\x42\x42\x86\xca\x32\x45\x7b\xdb\xee\x9e\x3b\x33\xe2\x43\x57\xda\x73\xb5\xc4\x3a\xed\x9f\x65\x8c\x36\x64\xfb\x6d\x58\xf3\xe1\x69\xf1\x59\xb9\xb3\xb9\x96\x6b\xaa\x79\x54\xd6\xd5\x92\x9d\x85\xde\xab\x50\x01\xe1\x89\x6d\x58\xb6\xb5\x46\x92\xf2\x30\x3b\x98\xb4\x1d\x69\xd2\xbb\xf2\x70\x9f\xba\xc3\x09\xa3\x77\x6f\x32\x1a\xb1\x3d\xef\xfb\x65\xf5\xbb\xda\x75\xaf\x06\x5d\xba\x33\xdf\xb6\x26\x50\x6e\x63\x35\x75\x28\xc8\x48\x7d\x6b\x58\x19\xc0\x6e\xa6\x6b\x68\xf8\x0d\x9e\x93\x40\xb0\x41\xb5\x4b\x6b\x67\x9f\x4c\xc9\x92\x66\x73\xba\x34\xd3\x49\x12\x16\x61\xac\x6c\x09\xf8\x17\x9f\x8b\x46\x7e\x8f\xa8\x93\xc0\xfd\x87\xfa\x8f\x6d\xd7\xaf\xba\xda\x9b\xe2\x13\xdf\xd1\xc6\x96\xcf\x93\x24\x92\xe9\xb6\x67\xc9\x73\xc0\xa8\x65\xed\x21\x2f\x5f\xa7\xf2\x57\x69\x11\xea\x97\xa5\x12\x98\xcc\xaf\x0f\x9d\xb0\xb9\xbf\x5b\x28\x85\x4d\xd7\xf9\xdb\xa0\x15\xbf\xbf\x53\xdd\xb5\xd5\xd5\x32\x98\x7d\xb6\xbc\x5a\x02\xb3\x6d\xeb\x6d\xdf\x4d\xd3\xb7\x45\x2d\xfd\xa3\x31\x9c\x81\x7f\xc7\x19\x70\x69\x98\x3b\xb8\xa8\xaa\x99\xb8\xf6\x4d\xdb\x39\x70\xfd\x37\xad\x81\xd5\x38\xb1\xe1\x24\xfc\x7b\x4e\x42\x7b\x94\xc5\x3c\x5f\xda\x9c\xb1\xd3\x1e\x4e\x81\xe7\xb5\xf6\xbb\x64\x21\xd3\x98\x2b\x24\xdb\x30\xb2\x66\x6b\x99\x85\x33\x57\x99\xe3\x94\xe6\x45\x42\x5e\x62\x38\x9d\x5d\xeb\x34\xbe\xae\x99\x96\xdb\xf3\xb4\x7c\xf5\xb2\x09\x02\x0d\x7e\x97\x4c\x47\xf1\x0f\x5f\x9d\xc9\x75\x4a\x81\xe3\x6a\x3c\x34\xd5\xc3\x72\x11\xfc\xac\x76\x64\xe6\x4c\xdf\x1b\x8e\xd0\x8c\xb1\xf9\x2a\x2c\xe9\xbb\x0e\x0a\x95\x50\xc9\x38\xfa\xd7\xc1\xe7\x03\x9f\x07\xcf\x4b\xdb\x39\x59\x31\x9a\xe8\xd5\xd9\x8a\x85\x43\x81\xab\x4b\xfb\xde\x6b\x5c\x20\x00\x99\xb9\xa9\xa8\xa2\x6a\xb5\x91\x11\xb0\xe7\xe0\xd2\xb0\x83\x5e\x4c\x4e\xdb\xdc\x13\xb9\xbc\x31\x92\x08\xd7\xdb\x9b\x28\x63\x2c\x94\x3e\xa7\xc6\xf7\xd7\xbf\x70\xdb\x92\xc8\x25\x51\xf6\x0d\xa1\x73\xb9\x61\x36\x75\x49\x22\x97\x0d\xb9\xfa\x18\x3a\xc6\x58\xc5\xaa\xd2\xb1\xcc\xb5\xbf\x19\x13\xb1\x90\xfb\xae\x28\xcd\xe4\xda\x30\x93\xb9\x7a\xcb\x74\xc6\x23\xd5\xe7\xea\x1d\x4e\x43\x5f\xb9\x95\xdd\x9e\x4d\xed\xe5\x73\xfe\xe0\x65\xf3\xd0\xc2\xd6\xd8\x05\x5e\xd4\xcc\x69\x96\xe7\x5c\xc4\xa0\x91\xec\x38\x81\x7f\x7a\xfe\xa7\xaf\x9b\x17\x1d\xbc\x68\xcd\x2e\x1e\x4d\xba\xae\x46\x65\x62\x69\x2c\x6a\x00\x55\xab\x3a\x11\xbe\xf6\xd4\xba\x76\x5f\xcd\xaf\x01\x2d\xbc\x15\x0e\x3d\xdd\x21\x99\xe8\x43\x28\x3c\xb3\xc8\x13\x34\x31\xc6\x6b\xd0\x4c\x4a\x88\x56\x37\x92\x1c\x20\x40\xcc\x31\x45\x23\x9d\xd3\x1d\xc7\x21\xec\x11\xf7\xea\x9e\x16\xd9\xbf\x5d\xf2\x7c\xeb\x0c\xba\x96\x31\xfa\xe6\xcf\x0d\x2b\xbe\xe1\x99\x04\x2f\x75\xb2\xa1\x19\x87\x8b\xb8\x33\x5f\xf4\x94\xbc\xcb\xe7\x6c\xe4\x2b\x3f\xd3\x4c\x46\x4c\xd5\x35\x1d\x6d\x95\x98\xca\xd1\x7e\xa0\x41\xd5\xe7\x9e\x21\x80\x4d\xd4\xab\xb2\x6d\x17\xd5\x51\xeb\xe5\x06\x02\x00\x68\x70\x00\x0d\x02\x01\x73\xb3\x89\x45\x92\x63\xf1\x01\xb0\x02\xe4\x42\x70\xb1\xc4\x03\xb2\x67\xc2\xa8\xcc\xff\xb6\xd3\x0e\xec\x37\xae\x2d\x6c\xb1\x30\xa2\xfe\x86\x55\x4e\x05\x57\x6e\x80\xd0\x02\x79\xd3\x46\xcb\xf8\xc8\x26\x7a\x5f\xb3\x6c\xe9\x8c\x1d\xa7\xd3\x49\x69\xeb\x30\x1c\x49\x98\x24\x37\x9c\xb2\x00\x5c\x3a\xb8\xb0\x76\xad\xf9\x0e\x70\x1e\x53\x73\x4e\xba\xb4\xe7\x3d\xa6\x4f\x7a\x68\xd1\x77\x16\xb1\x9f\x26\xbd\x8d\x65\x7c\x4c\x76\xb9\xe7\x6a\xc9\x7e\x6c\xf3\xce\xe2\xfb\xb3\xce\x5d\x5a\xc8\x2a\x67\xdd\x8b\x7d\xee\xea\xb2\x9d\xbb\x26\x8f\xaa\xa9\x6c\x51\xc4\x93\x2f\xa5\x8c\x27\x8f\xa0\x64\x21\xfd\xcf\x49\x4f\xc5\xfc\xce\x72\xf7\x50\xce\x77\xed\x68\xa9\xbb\x7f\x1c\x05\xfd\x1e\xab\x27\xfb\x28\xea\x77\x60\xd0\x4f\x59\xdf\xdd\x29\xb0\x26\x8f\xae\xb0\x27\xbd\xaf\x02\xe9\x79\x1d\xc8\x5e\xca\x7b\xf2\x70\x05\x7e\xd7\xc2\xca\x6b\xb4\xa7\x12\xbf\xab\xe3\x00\xa3\xdc\xa9\xc8\xef\xea\xb3\x43\xcf\x4f\xf6\xd8\xa6\x01\xa9\x77\x82\xa8\x97\x79\x60\x17\x38\x8f\x67\x22\x20\x8f\x6a\x26\xe8\xbf\xf4\x3e\x17\xb8\xd5\x64\xb0\x03\x94\xc7\x34\x1b\x90\x5f\x97\xaa\x0d\x17\xe5\x11\x4e\x4b\x2f\xab\x03\xf9\x62\x96\x07\xf2\x85\xac\x0f\x64\x38\x46\xbf\xea\x31\xea\x69\xb8\x20\x5f\xd2\x78\x41\xbe\x94\x01\x83\x0c\x87\xe9\x57\x3c\x4c\x5d\x2d\x7a\xd8\x3f\xc8\x97\xb2\x81\x90\xc7\xb7\x83\x90\x6e\x5b\x08\xe9\x53\x4f\xa6\xb7\x4d\x64\x07\x38\x8f\x65\x17\x21\x8f\x6b\x1b\x21\x3d\xce\x54\x87\x8d\x64\x77\xa9\x8f\x64\x27\x21\x7b\xda\x4a\xfa\xac\xa5\x8f\xcd\x64\x77\x41\x7b\xdb\x4d\x9a\x96\x93\xc8\xa5\xfa\x0c\xdb\x49\x9f\x15\xf6\xb5\xa1\xec\xae\xf2\x51\xed\x28\xe4\x73\x6d\x29\x4d\x9d\x36\x99\x58\x48\xf7\xfd\x6d\xa9\xc6\xda\x62\x6e\x21\xad\xe8\x72\x08\xf5\xf9\xac\x50\x1f\x1b\x4b\x0f\xe2\x0f\xff\x22\xa9\x67\xaf\x70\x04\x14\xc1\xf0\x45\x19\xcd\x53\x79\xb9\x1b\xbe\x53\x9b\x9d\xdd\xb7\x22\x60\xc7\x7f\x0d\x5d\xf7\x8c\xd0\x29\x54\xe2\xc0\x65\x0d\x41\x3a\x43\x90\xce\x10\xa4\xf3\x9f\x15\xa4\xd3\x66\x22\x5e\x66\x4c\x75\xfa\x92\xdc\xba\x5a\xd6\xe6\xf8\x33\x88\x7b\xc5\x0f\x6d\xa1\x77\x82\xf5\xae\xcc\x1f\x85\x55\x34\x44\xf3\xa8\xfb\x1a\xb3\x95\x90\x35\xd5\xd1\x8a\x44\x19\xd7\x2c\xe3\x14\x2e\x09\x25\x91\xcc\x32\xa6\x52\x43\x21\xc4\x92\x58\xce\x51\x4b\xac\xc1\xbd\x57\x3c\x6c\x65\x0d\xb3\x83\x53\x72\x6d\x26\xc8\x44\x44\x53\x95\xc3\xbd\x2d\x67\x14\x9a\x4a\x83\x0a\x9f\x5a\x4d\x30\xf9\x4e\xea\x55\xad\x0c\xb7\x57\x5a\x1c\x75\x64\xa6\xa3\x7a\xb9\xf1\x06\x16\xa4\x28\xa9\x6f\xcb\x7e\x8f\x88\x62\x29\xcd\xb0\xa2\x53\xae\x09\xf5\xe3\x8e\xb1\x09\x64\xef\x33\xb3\xe0\x02\xf6\xa3\x61\xc2\x22\x76\xfb\xe5\x03\x9e\x8b\xe5\x98\xcc\x66\xc2\x56\x31\x97\x8a\x83\xfd\xba\x06\x89\x15\x6d\xea\x95\x08\xb6\x84\xc9\x59\xc4\x6b\x04\x1c\xb6\xe0\x9f\x5c\xf5\xb0\xd9\x6c\x76\x70\x25\xb5\xf9\xcf\x98\x9c\x26\x89\xad\x1d\xe0\xf7\x1e\xee\xd9\xa6\xa3\xa2\x78\xa0\xd6\xb9\xc2\xb2\x71\x54\x73\x05\x8e\x14\x98\xdc\xc5\x2e\x45\x4b\xec\x73\x4c\x4e\x81\xd8\xed\x66\x4c\xb6\xd0\x85\xc3\x49\x85\x3b\xa0\x56\xc8\xb3\x8b\x86\xda\x4e\x66\x39\xe6\x0f\xbb\x1e\xa0\x0c\xd8\x79\x33\x5c\x01\xfa\xe1\x29\x42\x71\xb2\x1c\x1d\x49\x70\x8a\xe1\xe4\x59\x9d\x7a\x04\x3c\x70\x8d\x3c\x66\xb7\x94\xed\xe5\xf2\x69\xec\xa5\x26\x1c\x97\x59\xba\x2a\x6e\x0e\xb5\xc3\x01\xec\x35\x5c\xcc\x16\xf1\xbe\x92\x4b\x88\x18\x5c\xa8\x43\xf7\xb8\x27\x30\x88\x6f\xd6\x6f\x49\x14\xd4\xb0\xb2\xd9\xc1\x55\xfd\x63\x57\x19\x2b\x45\x4f\x18\x9b\xf1\xa9\xa9\x6a\x7f\xf9\x14\x80\xa1\x05\x12\x20\xec\x93\x21\x61\x0a\xf0\xc3\x3b\x91\x6c\x89\xce\xe8\x62\xc1\x23\x84\x94\x4b\x5a\xd6\x65\x49\x00\x2a\xf7\xd4\x1c\x21\x30\x70\x21\xa6\xd2\xcf\x3c\x33\xa1\x57\xd9\x0d\xc7\x6e\xce\x9d\x57\x03\x99\x2a\x12\xee\xc1\x5e\x1a\x02\x08\x59\xa5\xe0\x20\xef\xc0\xa6\xbd\x53\xc4\x92\x12\xac\x25\x05\x08\x8c\xc0\x88\x6c\x59\xec\x5c\x99\x14\x5d\xe3\x55\xc0\x4c\x45\xed\x9d\x42\x62\x2f\xa7\xd8\xf3\x96\x8c\x67\x2d\x2b\xe6\x4d\xe6\x5b\x9c\xb4\x1b\xb9\x03\xa8\x6e\xd9\x0e\x5e\x2e\x68\xc8\xcc\x0b\xf1\xe0\x6b\x99\x55\x79\xec\xa3\x46\x1a\xe0\x1e\x48\xb6\xba\x0b\x36\xc2\xd7\x69\xc2\x99\x2a\xe5\x4f\xff\xb0\x41\xa5\xce\xae\x0d\x03\xd5\x13\x58\x1d\xc5\xb2\x11\x26\xdc\x83\x6f\x2f\xaf\x94\xa2\xda\x6c\x65\x9d\x8d\xcb\x3f\x5c\x26\x72\x4e\x93\xa7\xcf\x3a\x14\x7d\xbf\x0e\x00\xde\xc0\x64\xec\x14\x8d\x3c\x2e\xb3\x8a\x3f\x02\x2c\xa3\xbd\x53\xb3\xc6\x4a\x37\xe5\x46\x77\xed\x65\xc7\x6c\xfd\x25\xa2\x23\xa0\x72\x25\x5a\x6b\x9b\x46\x21\x9f\x22\xa1\xe1\xec\x69\xe5\x53\x5e\xd9\x06\xc2\x51\x8c\xdd\x4b\xcd\x2a\x98\x6e\x57\x54\x57\xdd\x5a\x98\x56\xcd\x88\xd1\xb0\xf3\x50\xd5\x46\x75\x9b\xed\x1d\x09\x84\x2d\x04\x5a\x01\xa2\x53\x18\x2f\x16\xa8\xaf\x03\xda\x55\xbc\x58\x49\x66\x69\x38\x07\x51\xd4\x7e\xc7\xaa\xce\x98\x3b\xb2\x3d\x48\xb4\x99\x8f\xf4\xc6\xed\x69\x8d\x6e\xc9\x7a\x5c\x3e\x42\xea\xab\xfd\xf6\x04\x3f\x70\x4a\xae\x1a\xfb\xe5\x56\x6c\x9a\x74\x90\x17\xb3\x8f\xbf\x39\x58\x4c\x65\xb6\x27\x30\xe0\x8b\x0e\x68\x40\x9b\x3e\xe0\x20\x37\x50\x51\x16\x4e\xa9\x92\x6b\x06\xd5\x6c\x65\x24\x13\x45\x56\x74\x83\xf6\x00\x75\x84\xae\x26\x5b\xfc\xab\x03\xd1\x66\xcc\x4b\xcc\xcd\xb5\x53\xe8\x29\xa7\x8f\x84\xde\x2d\x47\x65\x11\xb9\x11\x50\x3a\xb1\xa2\x2d\xa1\x0c\xc9\xfd\x6e\xcf\xa6\x2e\xbb\xec\xfb\xf3\x69\x63\xea\x52\x7c\xfa\xec\x2a\x15\xdb\x77\x8b\x8e\x36\xa3\x6e\xd3\xc3\x6e\xe3\x3e\xce\x48\x29\xd5\x9a\x65\xe2\x84\xfc\x9f\xf1\xff\x6a\x6f\xf9\x69\x74\x57\x78\x65\x8c\xb8\xd0\x23\x99\x8d\x70\x84\xa6\x32\xf5\xe5\xd3\xf7\x40\xee\xcf\x5c\x5e\x95\x1f\x75\x1c\xcb\x7e\xfc\x95\x3d\x99\xe4\x86\x79\xc4\x05\xb1\xb0\x11\x30\x54\x3e\xd7\x09\x33\xbc\x32\x0a\x5c\x76\xac\xf6\x3e\x0b\x6e\xa9\xf5\xa8\xf4\xdb\xb3\x74\xbf\x2b\x3b\x3b\x28\x6e\x6c\x17\x59\xe9\x26\xb6\x3d\xc8\xca\x0a\x24\x66\xab\x77\x7a\xea\x09\x21\xcf\x3a\x8e\x61\x61\x39\x40\x56\x53\xb9\x84\xce\x7a\xc5\x14\x23\x19\x15\x4b\xa6\x8e\x9d\xda\x0e\x12\x3f\xb7\xe6\x1b\xc6\xa7\x92\x36\xcc\x5e\x1d\x30\x34\x21\x94\x95\x83\x80\xd5\x81\xd9\x61\x3a\x78\xe5\x05\xee\x01\x32\x70\x7d\x31\x58\x27\x06\xc0\xa6\x7b\x61\xb0\x8e\xb5\x97\xe8\xad\x86\xc1\x66\x88\xc3\x66\x16\x8b\xcd\x10\x8f\xcd\x0c\x26\x6b\xe5\x79\x06\x5c\x06\x4f\x2f\x5c\xa6\x1e\x20\x25\x77\x0b\xc7\xad\x9a\xbe\xf2\x09\x0a\xc7\xe4\xa9\x62\xcc\xa9\xc8\x00\x95\xd1\x75\x9a\x30\xa2\xb6\x42\xd3\x4f\xa1\xac\xb3\xfe\x33\x9b\xb5\xca\xd6\x96\x87\x6c\x92\x9d\xdb\xfb\x76\x9a\x31\x4f\xb4\x96\xd9\xae\xc8\x6c\xae\xdb\x95\xd4\x0c\xc6\x36\xa7\xa7\x03\x08\x36\xce\xc6\x19\x0d\x3a\xa8\x02\x82\xc7\xa3\x26\xed\xbd\xcf\x59\x22\xef\x9f\x1d\x55\xa7\xec\x01\x1b\xa1\x4a\xb8\x56\x2c\x59\x38\x73\x76\x07\x1c\x50\x19\x06\x6a\xce\xdb\x15\x23\xfa\x5e\xc2\x59\x83\x7c\x4d\xee\x1d\x22\x08\x43\x84\xb6\x65\x9e\xf6\x8e\xbd\x7b\x27\xdc\xea\x9d\x33\x58\xa9\x7e\x65\x9e\x94\x84\xab\x41\xd5\x82\x6d\xdf\x4d\x13\xee\x57\x32\xb1\x9b\x74\x02\x5b\x34\x9b\x95\x04\xf9\x2f\x80\x5d\xfe\xb0\xa2\xea\xe9\x7a\xfb\x11\xbc\x34\x9f\x01\xde\xb1\x48\xbe\xeb\x3a\xdb\xb2\x03\x4e\x0b\x01\x87\x0c\xe7\x87\x3e\x34\x65\x08\x4f\x6c\xc6\xed\x79\xde\xa0\xbf\x58\x82\xab\x08\x60\x69\xb4\x29\xcd\x59\x02\xd3\x75\x33\x45\x25\xaa\x5d\x52\xef\x83\x81\x4b\x6e\x5c\xf1\xee\xa2\xcc\x2c\x9a\x8a\xa7\x94\x4f\xfb\x7a\x8b\x25\x75\x2d\xa7\xeb\x92\x0b\x38\x79\x18\x58\x85\xec\x94\x55\x25\x24\x80\x5a\x6d\x45\x04\xb0\x3e\x17\x2b\xe9\x9e\xbc\x90\x62\x64\x9d\x9e\xac\x3d\x8c\xdc\xaf\x58\xc6\xac\x5e\x64\x21\xb3\x35\xf3\x95\x14\xe0\x63\x85\xbd\xf7\x50\xda\xed\x82\xc6\xcb\x50\xf4\x08\x42\x7c\xd5\x37\x73\x0f\xde\xab\xea\x9e\xf9\xeb\xf1\x60\x35\xb4\xdc\xde\x67\x40\xe5\x49\x49\x2a\x63\x17\x44\x87\x26\x90\x02\x45\xf7\x70\x24\x2d\x5c\x49\x5b\x4f\x5b\xef\xa8\x11\xdf\x60\xdf\xfc\xec\x46\x94\x7d\x3e\xb8\xc9\x43\x40\xde\xdd\x65\x93\xa6\x39\x00\xf6\x5e\xd0\x26\x9e\xf3\xee\xfd\x4a\x2a\x54\x4b\x9a\xe5\x5b\x16\xd0\x30\xc0\x9d\xe1\x18\x7d\x98\x3b\xb2\x57\x98\x4b\x4f\x4e\x89\xf4\xe5\x96\xc8\xee\xfd\xea\xe4\x97\xfe\xe7\xee\x74\x45\x56\x2a\xb5\x6e\x88\xf7\x8b\xd2\x0a\x0d\x05\xcc\xaa\x4f\x69\x86\x00\xeb\xc2\x8d\x6f\x55\x28\x65\x11\x5b\xef\x80\x6d\xcd\xef\xdd\x9d\x9e\x5e\x9d\x1f\xf6\x88\x02\xda\x4f\xa3\xd5\x15\x33\x65\xa1\xb8\x97\x7c\x6c\xb1\x74\x1b\xbe\xe8\xc7\x75\xe3\x97\x68\x20\x2e\xf0\xa5\x97\x54\xd3\x0d\x04\x6e\xaa\xa5\x8b\x6a\x0f\xcb\x4c\x2b\xd3\x5d\x3f\x5e\x7d\xb9\xee\x80\x39\xcb\xc1\xef\xa9\x7a\x56\x67\xbf\xd1\x9d\xc6\xcc\xa6\x4b\x57\x76\x0c\xb3\x82\x8a\xf3\x6e\x26\x87\x0a\xa4\x5b\x2b\x31\x3b\x78\x47\x85\x5b\x48\x01\x8c\x2e\x58\x54\x2d\x5b\xe6\xe6\xb8\xc3\x7a\xe4\xb3\xee\x47\xbb\x16\x85\x0e\x30\x5f\x31\xc3\xfe\x3a\x65\xaf\xcc\xea\xb4\x1b\xa7\x8e\xaa\x14\x03\x08\xa7\x09\xed\xb0\x56\x9a\xf3\x64\x36\xd0\x5f\x23\xea\x8d\x0a\x28\x48\xe1\x1c\x09\xac\x63\x47\x3b\xcb\xb2\x17\xd9\xdc\x9f\x6a\x16\xd3\x2c\xa3\xae\xd1\x24\xdf\x3f\x20\x8b\xb8\xb5\x79\x36\xf8\x47\x42\x02\xfd\x82\xcb\x1b\x96\x86\x21\xe6\xbb\xeb\xc3\xdf\xc3\x29\x71\x77\x1f\xc4\xb2\x76\x85\x70\x93\x13\xb6\xd0\xae\x00\x64\x41\x43\xe0\xf6\xf4\x50\xd2\x10\xff\x22\x42\xfd\x19\x23\x9e\x1f\xaa\x72\x66\xbf\x2a\x06\xed\x6e\xb3\xd2\x3a\x54\x94\x0f\x9f\x6a\xd4\xf2\xed\xed\xb4\xb4\xd7\x37\x3a\x31\x98\x53\x62\x9a\x36\x4f\xbd\xf0\x60\xff\x2c\xff\x85\x35\xd3\x2b\x19\xef\x41\x19\xde\xe2\x07\x8f\xcb\xb5\xe3\x92\x11\xa9\xe3\xba\x3d\x57\x39\xd3\x27\x56\xb4\x62\x9d\x59\x47\x1d\x5f\xc7\x62\xec\xc5\xcd\xf6\x29\x1b\x2f\xc7\xe4\xcd\xc5\xed\x11\x99\xbe\xbf\x3d\x22\x4c\x47\xe3\x67\xe4\x6d\x9e\x68\x9e\x76\xd9\x39\x2c\x88\x80\xee\xbf\xbb\x3e\x34\x62\xd8\x12\xc2\x32\x7f\x5b\x76\xab\x94\xea\xd5\x1e\xfb\x78\x38\x35\xed\xbf\xc4\x36\x76\xed\x60\x37\x46\xf1\x77\x10\xa6\x39\x2e\xb6\x0a\x97\xe9\xf6\xa2\xef\x66\x10\xc2\xc6\xcb\x13\x32\x22\xec\x13\x8d\xf4\x09\x39\x5e\x48\x49\x46\xd6\x49\xec\x84\x1c\xcf\x69\x46\xae\xde\xdd\x5e\x9c\xa0\x03\x1a\x13\x3a\xdb\x92\x75\x17\x7b\xfe\xee\xea\xf2\x6f\x16\x73\x6e\x09\xe3\xa0\x80\xa1\x64\x76\x00\x83\xa0\x16\xd9\xfc\x89\xa3\x38\x5d\xc7\x98\xdc\x76\x2d\x7f\x43\x13\x1e\xd3\x42\xd9\x07\xa1\x1c\x58\xe0\x4d\x87\x2a\xba\x95\x4f\x9f\x33\x57\x8b\x38\xb9\xbd\x9d\x1a\x08\x7b\x04\x80\x0a\x04\xbc\x01\x74\x7f\x5a\x35\xd1\xe0\x1f\x3b\x67\x0e\x10\x56\x8f\xb8\x90\xd9\xfa\xc4\x81\x7d\x96\x3f\x7f\xfe\x55\x64\x3a\x86\x7f\xb1\x13\x9b\x9e\xa8\x97\xda\x0b\x8f\x1a\xcc\x0a\xba\x33\x08\x23\x2b\xb6\xb0\xec\x7a\x64\xe1\xfd\x59\x23\x60\x1f\x1d\xae\x26\x7b\x64\x78\x40\x00\x3c\xae\x18\x69\x97\xfe\x98\x9d\xf6\x4d\xc1\xd0\x03\x21\x75\x77\xc5\xa3\x75\x4f\x9a\x39\x39\x7b\x3b\xed\xeb\x01\x02\xc8\xa8\x79\xee\x3e\x96\xf2\xaa\xf2\x99\xd9\xda\xa8\x4e\xac\x2d\x08\x43\x5a\x01\xc3\x96\x54\x6d\x91\xaf\xd0\x43\x7f\x97\xa7\xe5\x8b\xaa\x7d\xaa\x28\xee\x58\x58\xcd\xcd\x38\x6d\xac\x2d\xd8\xd3\x4d\xa3\xcd\xab\x16\x3d\x65\xaf\x93\x18\xb5\xa7\x92\xa9\xd3\x79\xe0\x4c\xa4\xf0\xa1\x04\x40\x89\xb0\xc4\xe9\x1e\xc2\x1a\x84\x41\x19\x00\xa3\x57\x3e\xb8\xa8\x42\xf9\x58\x1f\x56\xd6\x7a\x09\xa6\x49\xcd\xa2\x95\xe0\xd1\x6e\x9a\xb3\xea\x03\x6a\x51\x54\xff\xf3\x75\x2a\xbd\xec\xdb\x77\x86\x29\x4f\x0e\x15\xe1\xa9\xc6\xc8\xb9\x05\xcf\xd8\x3d\x4d\x92\x8e\xa9\x22\xb6\xb0\x4a\xd9\x5c\xa1\xe3\x14\x13\x0b\x89\xf1\x02\xd6\x45\xaf\xfb\x6a\x74\xda\xf0\xa0\xd9\xe7\x6f\x86\xe9\x66\x8c\xbe\x64\xec\x13\x18\xae\xba\x4c\x60\xb8\x07\x72\x41\xbe\x45\x2f\x6f\x58\x21\xf4\x75\x11\xad\x24\xb9\x46\xa2\x6d\x4b\x34\xa6\x5c\x2c\x55\xbb\x0d\xac\xd7\x7a\x7b\x20\x83\x34\x1c\x6e\xd3\x00\x90\xc9\xd4\x85\xdd\x7c\xb6\x63\x58\x45\xb9\x85\xfc\xb8\x0f\xe5\xa9\xb3\x8c\x35\x42\xa1\x07\x04\x1a\x02\x27\x1a\x16\xf7\xd6\xb6\xf6\xdc\x7a\x8b\xe4\x78\x10\x0f\x92\xad\xcb\x7a\x64\xa1\x20\x96\xea\xe2\x3e\x0b\x69\x80\x32\x02\xcb\x2e\xb5\xd7\x1a\xe8\x9b\xbe\xaf\x7c\xfa\x92\xa5\x6a\x9d\xd5\x72\x3e\x36\xe0\x07\xad\x76\x77\x6c\x6b\x8f\x76\x4a\xb9\x4d\xce\xd7\x3e\xbc\x11\x59\x09\xfb\xa4\x33\x5a\x81\x29\x9d\xcb\x5c\xf7\x20\x24\x8f\x25\x39\x0a\xa9\xcd\xed\xeb\x77\x32\xae\xb0\x71\x87\x47\x0f\x34\x69\xf7\xac\x1b\x08\xc6\x40\x30\xfe\xb3\x09\x86\x90\xda\xb1\x55\x8d\x60\x69\xf7\xba\xe9\xe9\x6f\xd3\xcf\xd3\x66\xc7\x21\xd4\xb1\x7c\x1d\x3e\xa1\xb6\x59\x33\xc0\x3a\xee\x71\x0f\xd7\x9e\x87\x39\xf5\xa4\xbf\x55\xe0\xce\x0e\x7c\xd8\x3e\x22\xed\xdf\x31\x6c\x81\x86\xd7\xe7\x04\x1c\x4c\xc6\x70\xea\x79\xd6\xa6\x99\xb7\xde\xb9\x76\x9f\x2f\x20\xd4\xe8\x1a\x22\xe5\x5c\xd4\x17\xaa\xcd\x9f\xce\x59\x44\x73\x65\x7d\xe2\x3a\x4c\x09\xc5\x14\x23\x96\x41\x1f\x85\x5f\xdd\x33\x54\xc5\xbf\xb5\xe1\x5f\x15\x2f\xc1\x2e\x12\x8b\xee\x83\x27\xbe\x07\xdc\x91\xef\xff\x86\x7f\x80\xa4\x52\xf9\x6b\xf3\xaa\xfc\xfb\xe6\xec\x16\xdf\x36\x0f\x63\x7b\xbc\xe4\x9a\x39\x27\x3b\x2a\xdc\x01\x71\x46\x59\x70\x35\x24\x2f\x46\x2f\xbf\xf9\xa6\x45\xe5\xff\xe5\x8e\x3d\x3a\x62\xf4\xa3\xc6\x98\x0b\xa0\x67\x54\x1a\xd1\xb2\x45\x80\xc4\x9e\x86\x80\xb4\x21\x20\xad\xdb\xec\x39\x04\xa4\x0d\x01\x69\x43\x40\xda\x10\x90\xd6\xb4\xe2\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\xa6\x95\x0c\xb8\x6c\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\xc3\x67\x08\x48\x1b\x02\xd2\xea\xcf\x10\x90\x36\x04\xa4\x15\xcf\x10\x90\x36\x04\xa4\x0d\x01\x69\xc1\x4e\x87\x80\x34\x0f\x16\x43\x40\xda\x10\x90\x36\x04\xa4\x55\x9f\x5f\x33\x20\xad\xa5\x60\x03\x21\x23\x9b\xc5\x37\xf4\xae\x4f\xe1\xff\x20\x9f\x60\xef\xc6\x03\xd2\x77\x57\x6f\xd5\x90\xbf\x7b\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x87\xa7\x37\xe4\xef\x1e\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xf2\x19\xdc\xa5\xca\x67\x70\x97\x1a\xdc\xa5\x7e\x53\x2e\x06\x83\xbb\xd4\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\xc1\xc6\xff\x61\xb8\x6c\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc1\x5d\x6a\x70\x97\x1a\xdc\xa5\x06\x77\xa9\xc0\x33\xb8\x4b\x0d\xee\x52\xc5\x33\xb8\x4b\x0d\xee\x52\x83\xbb\x54\xb0\xd3\xc1\x5d\xca\x83\xc5\xe0\x2e\x35\xb8\x4b\x0d\xee\x52\xd5\x67\xc8\xdf\x3d\xe4\xef\x1e\xf2\x77\x57\x9e\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\xdd\x6b\x84\x21\x7f\xf7\x90\xbf\x7b\xc8\xdf\x3d\xa4\x63\x1d\xd2\xb1\x0e\xf9\xbb\x87\xfc\xdd\x43\xfe\xee\xe6\xf9\x0f\xf9\xbb\x07\x82\x31\x10\x8c\x21\x7f\xf7\x90\xbf\xbb\xf2\x0c\xf9\xbb\x87\xfc\xdd\xb5\x67\xc8\xdf\xdd\x2c\x40\x0e\xf9\xbb\x87\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\xf3\x9f\x21\x20\x6d\x08\x48\xfb\x4d\x05\x71\x0c\x01\x69\x43\x40\xda\x10\x90\x36\x04\xa4\x05\x1b\xff\x87\xe1\xb2\x21\x20\x6d\x08\x48\x1b\x02\xd2\x86\x80\xb4\x21\x20\x6d\x08\x48\x1b\x02\xd2\x02\xcf\x10\x90\x36\x04\xa4\x15\xcf\x10\x90\x36\x04\xa4\x0d\x01\x69\xc1\x4e\x87\x80\x34\x0f\x16\x43\x40\xda\x10\x90\x36\x04\xa4\x55\x9f\xff\xd9\xf9\xbb\x21\x29\x77\x57\xf6\xee\x77\xa6\x51\x0b\xfe\xae\x6e\xba\xc4\xd6\xc1\x79\xa2\xdb\x1d\xe6\x4d\x06\x45\x89\xe9\x14\x2c\x8b\xf1\x18\x75\x27\x85\xe6\x77\xc5\x97\x46\x10\x9d\x1d\x40\x7f\xb3\x03\x20\x97\xb6\x6d\xa8\x6b\xba\x30\x02\x94\x06\x06\x0d\x3a\x48\xe4\x3d\xcb\x70\x36\xe8\xc6\xe8\x4d\x4e\x11\xb9\xe6\x5a\x1b\xbc\xcb\x5d\x04\x4c\xa8\xd3\x48\x0a\xc5\x31\x6d\x39\xea\xf8\x66\x07\x5c\x2c\xb8\xe0\x9a\xcd\x0e\xc8\x88\x80\xf3\x9c\xb7\x1c\x87\xd5\xed\x3c\x49\x42\x95\x1e\x93\x62\x65\x41\x90\x98\xb9\xf2\x98\x09\xcd\x23\x9a\xd8\x09\xd6\xfb\xe1\x82\xd0\x24\x5d\x51\x91\xaf\x59\xe6\xb5\x83\x8c\xe1\xa1\x5e\x2d\x2e\xb7\xea\x28\xf4\x10\x09\xca\xa7\x78\x36\x44\xbe\x9e\xef\x6a\x0a\x5b\xd8\xc6\x1a\x91\xbf\xf5\xd5\x34\x78\x50\x3c\x65\x4d\xae\xac\xcc\xc9\xa3\x3b\xfc\x3f\x99\x07\xcf\xbf\x99\x72\x4d\xe8\xf6\x80\x6b\xc3\x35\x3c\xb0\x68\xe9\x68\x5e\xb3\xea\xa0\x9c\x87\x61\x1d\x92\x44\xde\x23\x2a\x40\x0d\x52\xa1\x53\x41\xc6\xee\x2f\xa8\x5e\xc0\xdb\xfe\x31\xe1\x9a\x65\x14\x24\xfb\x50\xcf\xb3\x19\x19\x61\xb8\x92\x39\x28\xeb\x94\x66\x5c\x49\x71\x44\x20\x66\xd1\xa9\x05\x5c\x97\x0b\x29\xc9\x9c\x66\xa0\xab\x28\x86\xfb\xc3\x9e\xc3\x95\xe3\x19\xca\xce\xfe\x91\xd3\xe4\xcf\xe8\x61\xeb\x38\x55\xbe\xb0\x2c\x2a\x57\xd0\xc6\x69\xde\x8b\x21\xc3\xf7\xf2\x67\x98\x07\x2d\xfd\xc2\xe6\xe5\x3f\x23\xfc\xe7\x78\x3c\x26\xbf\x78\x33\xd0\x59\xce\x5c\xa0\x4c\xe1\x6b\x8a\x63\xfc\x48\xc2\xbe\xed\xd6\xe4\xd0\x31\x54\x39\x57\xb3\x00\x2e\x7a\x4c\x2e\x34\xd8\x9e\xf3\x85\xc1\xda\x26\x18\xde\x12\x6f\xce\x2b\xaa\x9e\x42\x7f\x1f\x0d\x71\x79\x56\x0e\x7d\x5b\x8c\x4c\x75\xb9\x3b\xde\xce\xfc\x01\x0e\x69\x10\xe7\xdb\x2e\x0a\xf5\xa4\x5c\x40\x5b\xd0\x4e\xc1\x7f\xf3\xe7\xcf\x5f\xbe\xc2\xff\xc7\x37\xc5\x37\x37\x2b\x99\xe9\x51\xc4\xb3\x28\xe7\x1a\xb8\x2a\xfb\x51\x68\xa0\x7f\xfd\xab\xf5\x6b\xb0\x63\xe8\xa7\xd8\xe6\x59\xd1\x28\xa5\x19\xb3\x1c\xf9\x32\x93\x79\x6a\x38\xf2\xd9\x4c\xd3\x24\x79\x1a\xb4\x47\xd9\x94\xf6\xe8\x95\x52\xe0\x0b\xd7\x9b\x3b\xc3\x34\x49\x3c\x15\x13\x5c\xd0\x4b\x3c\x0f\x28\x43\x85\xc5\x23\x6a\xae\x36\xe2\x19\xe7\xa9\xe9\xa3\x4c\x75\x44\x46\x47\xe4\x23\xc0\xe1\x78\x4c\x6e\xe0\xca\x11\x7b\xe5\x1a\x3b\x5d\xcb\x8c\x91\xd4\xb0\xff\x4a\xf1\x0d\x23\x73\x8c\x31\xd8\x3a\xf5\xa6\x55\x3c\x13\xa6\x22\x9a\x32\x12\xad\x68\x46\x23\xcd\x32\x3b\xed\x0b\x74\xd5\x0e\x5e\x86\xa7\x80\xf8\xd7\x34\x66\xa3\x3c\xc5\x63\xa1\x9e\x15\xe8\x08\x02\xdb\x2c\xea\xb8\x67\x73\x23\x38\x30\x8b\x3c\xfc\x1d\x8f\x59\x9a\xc8\xed\x9a\x89\x20\x3a\xb5\xdf\xa7\x99\x8c\xdd\x21\x85\x7e\xcd\x9d\x02\x9c\x94\x49\xa1\x99\x88\xbd\xa3\x4e\xa3\x3b\xfb\xc3\x2f\xa6\x79\xd9\x3f\xf9\xc3\x5f\x9a\x6e\x40\xcc\x36\xae\xfb\x3f\x90\xda\x2d\x08\xa1\xb2\x36\x8e\xaa\xaa\x0c\x6c\x31\x57\xb7\x68\x02\xdb\xf5\x16\x0b\xf4\x5f\x2d\xc9\x42\x68\x59\x8e\x62\xe1\x19\xb5\x0a\x05\x2c\xcf\x21\x85\x9b\xa4\xd3\x15\x84\xcc\xce\x6d\x6b\x04\xa3\x43\x0f\x9a\x0a\xb6\x09\x2e\x62\x1e\x81\xe8\x79\xbf\x82\x80\x69\x9f\x91\xf5\xbd\xb2\xac\x94\x13\xc4\x53\xe6\xde\x49\x5b\xc0\xe3\xc8\xfe\x35\x97\x7a\x35\x26\xe8\x28\x09\xd4\xe4\x53\x6a\x98\x14\x9d\x6c\x3d\x59\xea\x29\x14\x1f\x09\x7a\xc0\x7a\x78\x54\x90\x28\x63\x36\x3e\x43\xd9\xdb\x2d\x33\x22\x78\xf2\xec\xc8\xc5\x58\xc4\x6c\x41\xf3\x44\x2b\x82\xcb\x32\xa0\xcb\xe2\x06\x96\x5a\x4b\x72\x6f\x70\xe5\xc4\x0a\x6e\x66\x12\x17\xf6\x9f\xe6\x3e\x5a\xcc\x59\x54\xe0\x40\x7f\x3f\x50\xad\xdb\x61\x42\xbd\x72\x85\xb7\x6b\x44\x7e\xb2\x7c\x91\x99\x8a\x1b\xe3\xef\x47\x96\x38\x18\x2e\x13\xcc\x06\x6e\x48\xac\x93\xf2\x94\x8b\x28\xc9\x1b\x67\xbc\x62\x24\xa2\x86\xf3\x84\x0e\xca\x6e\x08\x92\x67\x21\x8b\xc5\x40\x77\xcf\x02\x33\xb9\x68\xac\xbf\x52\x9f\x5b\x65\x62\x06\x25\xd5\xbb\x6f\x5e\x67\xf0\x78\xd4\xe7\xb0\x33\x20\x68\xb0\x02\xbb\x61\x25\xea\x20\x5e\x10\x78\xb4\xaa\xbc\x7e\xc6\xa8\xb9\x47\xd1\x1d\xa1\x4b\xca\xc5\x91\x3d\x0d\x68\xf6\x48\xee\xe9\x56\x59\x2f\xf8\xe0\x29\x76\xde\x0a\xe8\xa6\x70\x44\x04\xdb\xb0\xac\x72\xde\x82\xd2\x7d\xcf\xf2\x3e\x25\x14\x08\x03\xa2\x51\x18\xf4\x52\xa9\x14\x9f\x27\x6e\xe0\xd2\x0f\xcb\x7c\x70\x93\xb2\x28\x2c\xef\xe1\xda\x9a\x3d\xd3\xda\x25\xcb\x46\xa1\x2d\x2c\xeb\xed\xfe\x0a\x34\x23\xf6\xed\xed\x4a\xcb\x8c\x2e\x99\xfb\x49\x69\xaa\x73\x04\x0c\x9a\x9c\x58\x7c\xe5\x19\x03\xee\xb8\x88\x0d\x1e\x72\x20\x4d\x93\x3c\xa3\x49\xf9\x4b\x24\x05\x5a\x80\xd5\x09\xf9\xe9\xef\xe6\x17\xd3\x3f\x8b\x6d\x84\xa7\xfd\x75\x26\x46\xa3\xd1\x4c\x3c\xb1\x5e\xf7\x27\x24\x02\x7c\x70\xac\xd9\x3a\x85\x02\x4a\xc7\xf8\xc3\x48\xc8\x98\x8d\xb2\x39\x8d\xc6\x5b\xba\x4e\x66\x82\xa6\xdc\x85\x96\x12\x9a\x72\xf6\x49\x33\x01\xfd\x8e\xef\xbe\x55\x63\x2e\x8f\x37\x2f\x66\x02\xe7\x78\x96\x2b\x2d\xd7\xd7\x0c\x8d\x5f\xe7\x0c\x04\x34\xc0\xec\x95\x00\x4e\x50\xd9\x10\x81\x4e\xb2\x8a\x69\x35\x8e\xb2\x78\x9c\x66\xd2\xc0\x0c\x67\x31\x96\xd9\x72\x26\x0c\xfe\x83\x2f\x80\xa9\x39\x21\x0d\xcd\xaa\xb6\x13\x9c\x4a\xe9\xc9\x8b\xbf\x26\x5c\xe9\xbf\xd6\xde\x5c\x72\xa5\xab\x20\xf5\xe6\x64\x77\x8a\x8b\x65\x9e\xd0\xcc\x7f\x65\xde\x00\xea\xcb\x36\xec\xbd\xb8\x13\xf2\x5e\xbc\x36\x67\x4b\x9d\x90\x05\x4d\x14\xec\xb1\x8a\xa4\x39\x06\x85\x3e\x06\x64\xc3\x8d\xdb\x10\xf3\xc7\xc8\x82\xc1\x40\x0f\x46\x8a\x56\x6c\x5d\x06\xb8\xca\x94\x89\xd3\xe9\xe4\x87\xaf\x6e\xaa\xbf\xef\xba\xd2\x3a\x87\x65\xeb\x14\x56\x0e\x39\x62\xff\xc8\xf9\x86\x26\x06\x45\xdb\x9b\x52\xf7\x72\xf6\xae\x43\x83\xc2\xcd\xdb\xfd\xea\xe9\xaf\xe6\xc1\x30\x53\xb5\xfe\x06\xe8\x9f\x8f\x93\xb1\x2b\x66\xb1\x5d\x1e\xce\x03\xf0\x8f\x25\x1e\x34\xa4\x49\x91\x0b\xe0\x17\xe0\x0e\x8d\x81\xa9\x60\x99\x72\x62\x67\x24\xc5\x86\x65\x9a\x64\x2c\x92\x4b\xc1\xff\x59\x74\xae\x9c\x07\x04\x1c\xe7\x1d\xd2\xc3\x85\x66\x99\x61\x3f\x00\x79\xa0\x9e\x77\x4d\xb7\x24\x63\x66\x18\x92\x0b\xaf\x43\xe7\x7f\xf5\xd6\xb0\x9d\x5c\x2c\xe4\x09\x64\x28\x52\x27\xc7\xc7\x4b\xae\xdd\xc1\x8f\xe4\x7a\x9d\x0b\xae\xb7\xc7\x60\x93\xe5\xf3\x5c\xcb\x4c\x1d\xc7\x6c\xc3\x92\x63\xc5\x97\x23\x9a\x45\x2b\xae\x59\xa4\xf3\x8c\x1d\xd3\x94\x8f\x60\xee\x02\xee\xea\x78\x1d\x3f\xc9\xec\x4d\x51\x87\x21\xcc\xb2\x8b\x90\xe0\x68\xb7\x6d\x83\x39\xe1\x36\xac\x17\xf9\x6a\x64\x0c\x0a\x68\x3b\xe7\x93\xeb\x8b\x9b\x5b\xe2\x46\x0f\x86\x40\x23\xf0\xcb\x2f\x55\xb9\x0f\x06\x68\x5c\x2c\x1c\x07\x04\x6a\x70\x5f\x61\x80\x44\x38\xe1\x01\x66\x58\xe5\xf3\x35\xd7\xca\x4b\x6d\x23\xc7\xe4\xac\xd0\x8f\xe7\x69\x4c\x35\x8b\xc7\x64\x22\xc8\x19\x5d\xb3\xe4\x8c\x2a\xf6\xc5\x77\x01\xd8\xc0\x91\x81\x6d\xdf\x7d\x68\x08\x47\x6f\x52\xfe\x15\x68\xac\x61\xdb\xca\xfb\x68\x68\x58\x35\x1e\xca\x85\xcf\x95\x01\xeb\x74\x07\xb7\x95\x8f\xdb\xd2\x1a\x99\x6b\x51\xa6\x37\x78\xee\xef\x14\x0d\x74\xce\x85\x93\x69\x81\x09\x51\x8e\x9e\xb3\x44\x9a\x53\x25\xad\x36\x87\x85\x4c\xb0\xcd\x94\xff\x77\x41\x7b\x81\xf2\xf6\x24\xbf\x77\xf9\x9c\x95\x3e\x1e\x99\xf2\x49\xf1\xcf\x3f\xf3\x05\x61\xff\x20\xe3\xeb\xef\x4e\xcf\xce\xa4\x58\xf0\x25\x99\x1d\x98\x06\xb3\x83\x5f\x7e\x31\xbd\x4f\x80\x39\x66\x84\x92\x28\xc9\x95\x66\x59\x26\x13\x56\x94\xb0\xab\xf7\x0d\xda\x32\x29\x98\xd0\x47\xe6\x63\x28\x82\x07\x18\x44\x3b\x54\xda\x30\x29\x27\x79\x95\x0e\x10\x96\x01\xc0\x41\xaf\x65\xc2\xaa\x8c\x03\x2c\x82\xe6\x7a\x25\x33\xfe\x4f\x74\xfe\xf2\xb8\x87\x00\x77\xd0\x30\xf0\x4c\x00\xab\x0b\x0d\x9f\x90\x2b\x19\xa3\x1e\x82\xdc\x5b\x1f\x2f\x2d\xc9\x5a\x0a\x0e\xbe\xcc\x32\x23\x31\x4b\x18\xde\x73\x24\xb9\x34\xe5\x6f\x0c\x2b\x61\xf6\xc5\x6c\xe1\xdf\x71\x57\x0b\x3c\x5c\x1c\xd1\x11\x31\x6c\x90\xc5\x8a\x1b\x96\xcd\xfd\x57\xf7\xbe\xbd\x63\x04\x57\xa3\xfc\x6b\x89\xb7\xf2\x09\x99\xba\x9c\x67\xde\xdc\xca\x54\x54\xec\x13\x57\x1a\x2a\x44\x52\x45\x52\x9a\xd9\xcb\x75\xfa\x96\x94\xab\xdd\x7f\xd2\xa9\x8c\x1b\xe6\xbc\x64\xba\x69\xc6\xc5\x72\x9e\xe0\x04\x8a\x8e\x6d\x44\x9c\xe0\x29\x94\xd8\x04\xed\x37\xd6\xf3\x54\x60\xf4\x32\x20\xc2\x43\x93\xc8\xe8\xce\x62\x6f\x75\x64\x56\x74\xcf\x8c\x20\xa1\x48\xca\x32\x2e\x63\x1e\x11\x9d\xf1\xe5\x92\x65\xe1\x8d\x08\xf3\x75\x6d\x0b\xe5\x96\x01\xc3\x4c\x16\xe1\x25\xbb\x55\x7e\xfe\x68\xb0\x3e\xba\x40\x76\xb6\xd4\x22\x99\x69\xd0\x35\xbc\xac\xfd\xb6\xa2\x22\x4e\x9a\x8e\x4f\xcb\x56\x80\xf8\xce\xca\xbf\x11\xa4\xe5\xdf\x70\x9e\x59\x70\xeb\xa6\x52\x26\xbb\x77\x81\x72\xab\x81\x23\x6b\x9a\x82\x5a\x50\x2e\x70\x39\x98\x86\x60\x4a\x52\xf3\xdd\xa3\xed\x0a\xf4\xd6\xbe\x1d\x3b\x33\xdf\x41\x2e\x6b\x2a\xe8\x92\x29\xb2\x92\x4a\x7b\x2e\x6e\x8f\x32\xc5\x4a\x9f\x5f\x70\x7f\x9e\x90\x2b\xc6\x62\xd0\xaf\x18\x01\x5d\x4b\xdb\xd6\xe1\x65\x2f\x65\xca\x63\x2d\x2d\xd0\xf3\xa3\x2f\xd0\xdb\xb6\xbf\xe6\x73\x76\x56\xee\x1a\x92\xa3\x3c\x2b\xd4\x4f\xa8\x81\xe1\xda\x0c\xa7\x88\xe1\xfa\x22\x68\xf2\x38\x8b\x35\x87\xc6\x3b\x33\x91\x3f\x7a\x70\xd9\x4f\x50\xe7\x61\xe6\x21\xef\x85\x37\x97\x1d\x98\x3c\xb1\x50\x20\xd4\x69\xb1\x08\x5f\x10\x21\x05\x43\xac\xad\x9a\xc0\xf5\xc4\xed\x31\x32\x15\x4d\x50\x7c\x82\x50\x04\x32\x10\xad\x2a\x91\x18\x05\x80\x81\x59\xd8\xa1\xa9\xdf\x71\x81\x8a\xaf\x2f\x44\x5a\x65\xc2\xae\x19\x46\x35\xb8\xfd\x69\xe9\xdf\x34\x0b\x90\xfd\xce\x61\x54\x0e\x0c\x9a\xd9\x9a\x91\xed\xa0\xaa\x37\xee\xd1\x87\xef\x21\x81\x08\x44\x6d\x95\x66\x6b\x0b\xb9\x82\xdb\xba\xa6\x22\x5a\xb1\x6c\xe4\xd8\xe8\x13\x72\x06\x10\xf7\x99\x1b\x20\x63\xde\x12\xd0\x1b\xc4\x50\x6b\xd4\x98\x42\x65\x66\x1a\xdd\xdd\xd3\x2c\x46\x96\x89\x6a\x3e\xe7\x09\xd7\xdb\x87\xe8\x53\xba\x98\x34\x7f\x56\xe7\x94\xad\xa5\xb8\x61\x5d\xfc\x19\x34\xfe\x95\x78\xb2\x2a\x0b\xf6\x5e\xd9\x12\xc9\xa8\x79\x2e\x3d\x67\x4b\x07\x3e\x79\xc7\x84\xb2\x66\xfb\xdc\xcb\x19\x74\x76\x35\x31\xfc\xf4\x12\x2d\xa1\x7b\xf1\x39\xd5\xa5\xaa\x63\x18\xa3\xda\xfc\xaa\xe2\x4e\x3b\x22\x11\x15\x65\x7a\xa3\x91\x03\x5c\x24\xf8\xa8\x9c\xc3\x2e\xaa\x2c\x2f\xf8\x13\x10\x83\xca\x39\x13\x01\xf8\x5d\x4b\x83\x3a\x80\xf1\x3a\x42\x9e\x11\x35\x0b\x7e\x80\xf5\xc3\xb9\xb8\x1a\x23\xea\xb4\x46\xd8\x71\x2b\x72\x7f\x42\x5c\xe4\xfa\x4d\xc2\x1d\x2f\x97\xbb\xcd\xb2\xf7\xcd\x16\x3a\xb7\x02\x9d\x53\x0f\xbb\xbc\x5d\x4f\x5c\x1e\xa6\xb5\x0b\xbd\xa8\xaf\x22\xe6\x2a\x92\x1b\x96\x6d\x1d\x46\x68\x5b\x55\x41\x75\x61\x3e\x7b\x71\xd6\x7b\x41\x6f\xc7\x2d\xb0\x38\x2e\x0d\x74\xe1\xbd\xb5\x31\xb9\xd5\x14\x27\x78\x32\x45\x93\x2a\x8d\x37\x46\x7a\x56\x25\x20\x5a\x67\xdb\xd0\xeb\xed\x36\x5d\x51\x35\x0e\x4b\x0a\xe4\x6c\x72\x7e\x4d\x68\xae\xe5\x28\x66\x9a\x61\xa5\x7c\x29\x00\xb5\xd1\x78\x6d\x0f\x5b\xc9\x4c\x20\xf9\x32\x4c\xdd\x03\xce\x17\x7e\x6c\xbe\x6d\x3d\x42\xfb\x8b\x4b\xc7\x3e\xe1\xab\x83\xd9\xf0\x43\x0e\x57\x24\x8c\x82\x7a\xca\x08\x70\x56\x9b\xf1\x5e\xd0\x0d\xe5\x09\x9d\x1b\x54\x98\xd0\xa5\x07\xa8\xd4\x87\xf3\x13\x67\xc8\x02\x41\x5b\x61\x34\x62\x54\x65\x3e\xbc\x74\x74\xe6\xa2\xa2\x98\x52\xe4\xbd\x1b\x87\x08\xf3\x13\xf2\xa1\x4e\x94\x0d\x9c\x3d\xb7\x56\x3f\xa9\x03\x6f\xb8\xd6\xf6\x26\x71\xb1\xec\x73\x23\x6c\xeb\xb4\xe2\x94\xd4\xf3\x4a\xd8\x03\x36\xdf\x3a\x70\x98\x89\x3b\xfb\x4e\xb9\xfe\xcf\x46\x3e\x35\x6c\x13\x40\xbe\x7b\x72\xfb\x35\x2c\x9a\xba\x70\x21\x19\xbb\xe3\xf3\xb0\x39\xb7\x9c\x3d\xef\x04\x15\xa7\xc7\x6a\x09\x14\xd9\xd0\x8c\xcb\x5c\x91\xb3\xeb\x73\xbc\xed\x78\x96\x1e\x89\x27\xc7\x1c\x27\x0b\x96\xf0\x4f\xd8\xaf\x07\x47\xef\xd7\x2a\xe3\x0a\x22\xe7\x32\x4d\x19\xcb\xaa\xbf\x2c\x78\xa2\x2b\xbf\x61\xf7\xf3\x65\xba\xd3\x79\xf1\xdb\x6e\xd7\x15\x29\xad\x49\x98\x6e\x92\x6e\x71\xc4\xe0\xc9\xdd\x79\xad\x98\x8f\x84\x1b\xbf\x09\xb6\x6e\x14\x66\x1a\x84\xb8\x56\x31\x1d\x37\x0b\x50\x14\x1c\x92\x07\x48\xe6\xf7\xbb\x27\x28\x57\xba\x90\x14\x44\x5c\xf0\xfe\x06\x1f\xc1\x61\x92\xc2\x08\x02\x99\xce\xd3\x2f\x21\x5e\x77\x9e\xa0\xde\xe2\x60\xb3\xcc\x57\x5d\x6b\x7d\x81\x81\x55\x91\xc6\x65\x91\x36\x7a\xd4\x73\x7b\x02\x13\xeb\x47\x04\xac\x13\xa6\x19\xe1\x51\x15\x81\xfd\xce\xcb\x2d\xd8\xca\x9d\xf3\x92\x14\xc8\x8b\x81\xbf\xbc\xf3\x33\x06\xc4\x93\xa7\xcb\x8c\xc6\x36\xfa\x73\xf3\x72\xfc\x0a\x39\xc9\x08\xf3\x44\x3d\x31\xec\x73\xc6\xd6\x72\xc3\x62\xeb\x63\xeb\x3e\x90\x99\x59\xe1\x22\x63\x6a\x45\xb8\x50\x9a\x26\xc9\xa3\x2a\x16\x5a\x70\x49\x15\x4d\xf5\x3d\x59\x0f\xb6\x45\x3f\x01\xd2\x61\x4f\x36\xc9\x40\xa4\xf9\x42\x9a\x67\x5f\x32\x28\x05\x9e\x5f\x9d\x8f\xff\x22\x74\xf0\xc1\xd0\x7f\x9d\x50\x21\x58\x52\x85\xf6\x13\x32\xcd\x21\x1c\x15\x0e\xae\x67\xa1\x5b\xe5\xf3\x71\x24\xd7\xc7\x91\xcc\x98\x54\xc7\x0b\xfc\xf8\x78\x9e\xc8\xf9\xf1\x9a\x9a\x0e\x8e\xcf\x65\x94\xaf\x9d\x19\xf8\x18\x04\x79\xdb\xcc\x0e\x6c\xc6\x7d\xec\x1d\xb6\x23\x3c\xc2\xbe\x3e\x1a\xe7\xbc\x17\x13\xf5\xa8\x8c\x79\xfd\x50\x7c\xc7\x45\x8c\xd1\xca\xbb\x7b\x5d\x6a\x1d\x04\x4d\x6a\x4a\x9b\x90\xbe\xe1\xb1\xf4\x55\x82\x26\xa3\x72\xd3\x1e\x55\x4b\x55\x74\xbb\x97\x56\xca\xaa\x12\x5a\x75\x50\xbf\x82\xf2\xa9\x3f\x58\x9b\xb7\xa6\x11\xe0\x85\xb6\xe7\x0b\x68\x05\x1f\x17\xdc\x3f\xff\xcc\x44\xfc\xcb\x2f\x8f\xe2\xe1\xf4\xa8\x60\xdc\x25\x24\x5f\x42\xc3\xea\x0f\xb0\xbf\x6e\xb5\xaa\x01\xeb\x38\xd1\x7d\x20\x5b\x10\x0b\x48\x5e\xb4\xa6\x82\x2f\x98\xd2\x8e\x31\x51\x1e\x02\xb1\x8e\x0e\x2c\x2b\x4c\x86\xa0\xe5\x54\x35\xed\x20\x7a\x3a\x3a\x25\x95\xd5\x7c\x48\x61\xda\x42\xf4\x25\x92\x12\x68\x64\x5a\xb0\x0c\x25\x7e\xb0\x7a\x79\xf2\xbb\xe5\x1a\x0a\x3c\x55\xe8\x56\xeb\x2e\x6e\xa9\x6a\xc5\x44\x6d\x60\x22\xd6\x7f\xdc\x79\x0f\x7c\xab\x46\x34\x4d\x8b\x0f\x0b\x47\x90\x5a\x40\x0f\x38\xdc\x5f\xfa\x5f\xee\x7e\x4b\x2c\xf7\x74\xa3\x33\xaa\xd9\x72\x7b\x62\xdd\x01\xc6\xef\x2b\x3f\x9b\x6b\xf0\xf3\xcf\x44\xcb\xbf\xd1\x75\x52\x7f\x49\xfe\x45\xb8\x88\x99\xd0\xe4\x6b\x6c\xc7\x12\xc5\xcc\xbf\x48\xe1\x3c\x71\x2d\x93\x84\x8b\xe5\x7b\xcf\x62\x91\xf9\x3f\x15\xf3\x5b\xd3\x4f\x9e\xca\xe6\x84\xbc\xf0\xee\x21\x21\xee\x64\xb8\x05\xd6\x1d\x66\x92\xea\x62\x43\xcb\xad\xf9\xcd\x98\x3d\x0d\xb8\xa1\x97\xe9\x8d\xcc\x1d\x95\xea\x84\x24\x5c\xe4\x9f\x1c\x70\xae\xbc\xaf\xdc\x42\x09\xf9\xf9\x67\x9b\x27\xf9\xbf\xee\x8e\xc8\x7f\x6d\xc8\xc9\x5f\xaa\x2d\x49\xd9\x14\x1a\xff\xd7\x1d\xf9\xe5\x97\x13\x32\x3b\x30\xff\xde\x98\xb7\x07\x5e\x57\x4c\xc4\xc4\x82\xd3\x2d\xdf\x3c\x46\x48\xb5\x3a\xa3\x6a\xae\x25\x2d\x13\x96\xed\x94\x84\x78\x42\xde\xd2\x3b\x46\x54\x9e\xb9\xeb\x01\x76\x33\x15\xad\x58\x9c\x27\xe8\xef\x4e\x93\x04\xe9\xb9\xe7\x62\x33\xb2\x59\x4c\x4e\xc8\x95\xbc\xb1\x8d\xcb\xb7\xe0\x48\x98\x51\x03\x33\x72\x51\x31\x5e\xe1\x88\xd9\x9d\x75\xac\x8d\x31\x3c\x3f\xca\x38\x86\xbf\xd1\x38\x1e\x59\x87\xa3\x8c\xd9\x49\x70\xb1\xac\x0c\x7c\xc7\xb6\x27\xe4\xcc\x7e\x71\x1a\xc7\x52\xa8\x77\xb5\xc0\xe9\xe6\xd1\xfd\x79\x5f\x7c\x62\x51\xae\x7b\x4d\xbb\xcb\x05\x06\x5b\x55\xa3\x17\xae\xaa\x97\x17\xbb\xa9\xec\xd5\x13\xf2\x96\x0b\xbe\xe6\xff\x64\x24\x96\xf7\x42\xf3\x35\x23\x71\x0e\x2a\x4a\xea\xce\xbf\x2f\x6e\x39\xbf\x92\x3f\x13\xcd\x92\xc4\xc7\x32\x5a\x92\x58\x42\xd9\x32\x50\x9d\x97\x03\xb8\x4f\x66\x07\xa5\x17\x5b\xf5\xf0\xc6\x32\x52\xc7\x91\x14\x11\x4b\xb5\x3a\x76\xc9\x5d\xd5\x31\x70\xf5\xa9\x8c\x8f\x9f\xb8\xf8\x77\x2e\xc5\x48\x2e\x46\xe6\x45\xb1\x21\xde\xbb\x37\x19\x8d\xd8\x14\x3c\x2f\x6e\x58\x24\x45\xac\x4e\xc8\xf3\x72\x26\x96\x2d\x29\x33\xb3\xa3\xbe\xd3\x35\x48\x33\x2e\x33\xae\xb7\x67\x09\x55\x0a\x41\xf7\xf3\xcf\x64\x7c\x46\xa1\x36\x49\xed\x1d\xf9\x57\x61\x23\x9d\x1d\x20\x16\x44\xf2\xea\x0e\xd2\xec\xc0\xbb\x4c\x5c\x70\x7d\xe6\x90\x7e\xf5\xf0\x03\xb1\x28\x08\x42\x95\x5a\x18\x52\x30\xe7\x82\x66\x95\xc8\x4d\xb4\x87\x99\x77\x35\xd2\xb0\xe0\x09\xc4\x42\x00\x71\x28\x64\x7e\x77\xea\x10\x93\xdb\xfe\x0d\xf5\xf3\x4f\x1d\x5f\x83\x6b\xd8\xcf\x3f\x8f\xcf\xae\x26\x13\xf3\x87\x8f\x09\xec\x7b\x23\xed\xa0\xcb\xf9\x09\x99\x2c\xa0\x56\x01\xb8\x48\xfa\x0d\x23\xb9\x5e\x53\x43\x65\x7e\x9a\x1d\x1c\xcb\x54\x1f\x47\x82\x1f\xcf\xb9\x38\xb6\x03\x17\x2c\x3b\x3e\x4c\x6c\x5e\x67\x72\x5d\xf1\x90\x73\x7a\xfa\xb7\x34\x75\x2c\x83\xff\x3c\x21\xa7\x10\x43\xf9\xd7\xf7\xdf\x5d\x5c\x5f\x5d\xdc\x5e\xdc\x7c\xbc\xb9\xb8\xfe\x61\x72\x76\xf1\xf1\xfb\x77\x37\xb7\x00\x9c\xc0\xbb\xe9\xbb\xeb\x5b\x6b\x8b\x93\x1b\x96\x65\x3c\x8e\x19\x5e\x73\xf6\xdd\xf4\x35\x59\x57\xc1\x85\x0f\x82\xcc\x4b\x24\xe7\xec\x29\x23\xa7\x84\xab\x7f\xe1\x42\x7d\x76\x93\xcc\x31\xb1\xa9\x2d\xe5\x09\xb9\x61\xda\xa6\x67\xf0\x15\xcb\x05\x27\x9c\xab\xd2\x38\x6a\xd5\x3e\x25\x73\x30\xae\x77\xf6\x01\xcc\x5c\x96\x87\xb5\x8c\x80\xd2\x8c\xc6\x44\x2e\x2a\x4c\xf7\xfd\x8a\x09\x92\x2b\x73\xb3\x9d\xa8\xe3\xa9\xef\xab\xdd\xba\x63\x73\x76\x7a\x39\x39\x7b\xf7\xf1\xec\x6a\x52\x00\xf4\xf4\xec\xec\xdd\xfb\xab\xdb\x3a\x04\xc0\xf1\x76\x67\x4f\xf1\x81\x48\x84\xd0\x9e\x16\x2f\xa7\x54\xaf\x4e\xe0\x82\x8e\x77\x51\x59\x7d\xc5\x57\x36\x79\x81\xbb\x2a\xfe\x35\x30\x82\x04\x28\x61\x9a\x16\x74\x35\xf9\x78\xf6\xee\xea\xf5\xc7\xab\xd3\xb7\x17\xc1\x35\x18\xb2\xf7\xe2\xf9\x08\xe0\x39\x36\x5d\x83\x50\x7a\x50\x9f\x84\x53\xeb\xd7\xee\x22\xc4\x43\xc1\x89\x6f\xba\x91\xf5\xd9\x5c\x5d\xdc\x7e\x78\x77\xfd\x57\x98\xd5\xe4\xcd\x3e\x60\x2d\xae\xcb\x5f\xd9\xb6\x09\xba\x15\x01\xa7\xe2\x02\xe2\x3f\x40\xd8\x22\xc1\x3f\xda\xd5\x7c\x0c\x35\x2d\xcf\xad\xa1\xf4\x70\x58\x8b\xc0\x34\x70\xb6\xfc\x56\x21\x23\x6a\x5e\x35\x2c\xd8\xbb\xa0\x57\xef\xce\x2f\x9a\x77\xe1\x31\x4e\x92\x99\x4c\xe8\xfc\x98\x6d\x7b\x7b\xfb\x9e\x58\x6a\xba\xa1\x19\x37\x2c\x5d\xf3\x16\xbd\xbd\x7d\xff\x6f\xdc\x97\x0d\xd3\xab\x8f\x6b\x9d\xd7\x97\x31\xcd\xd8\x86\x09\x5b\xc4\xb0\xa4\x24\xa0\x94\x52\x09\x63\xe0\xfd\xb6\x90\xa6\x55\xbd\xd8\xa9\x5b\xdc\xcd\xe5\xc5\xc5\x4e\xc5\xe0\xe2\x16\x60\x70\x47\xe5\xe4\x6f\x64\x92\xaf\xd9\xdb\x50\xbe\xb4\x11\x59\x9b\x9f\x11\xfe\xc7\xe6\x88\xf8\x74\x20\x8c\x62\x8d\x2c\x36\xe7\x62\x14\xf3\xac\xb3\x33\xa6\x23\xe8\x4c\x30\x3d\xde\xc9\x3c\x50\x76\x27\x98\xae\x77\xa7\x58\x94\x03\x11\x97\x42\xb3\x4f\xf5\xaa\x9a\x69\xc6\x37\x3c\x61\xcb\xaa\xd7\x34\x29\x89\xb4\x21\xe2\x1e\x7c\xd7\x98\xf3\x0d\x33\x4f\x46\x4c\x29\x9a\x6d\x01\xf7\x20\x37\xa0\xc0\x74\x5d\x3a\x7d\x18\x22\x03\xb5\xd9\xd2\x84\x8a\x4a\xe7\x90\xc2\x61\x9e\x2e\x08\xd5\xe4\x58\x6d\xd5\xf1\x42\x1d\xc3\x9f\x22\x26\x11\x04\x00\xbd\x84\x57\x59\x2e\xac\xb8\x79\x8c\x3f\x8f\x5d\x66\x3c\x8b\xed\xb9\xe6\x34\xe1\xaa\x8c\x83\x44\xee\x32\xae\x0c\x26\xc8\xdc\x48\xa5\x6c\xb1\x90\x99\x26\x0b\xaa\x56\x5c\x8a\x23\x9c\x84\x90\x64\x41\x79\x62\x38\x71\x20\x8c\x59\x26\x33\x75\x84\x1e\xaf\x9a\xc4\x5c\x65\x79\x0a\x2e\x1f\x5e\xb8\xa5\x70\x95\xaf\xea\x24\xd4\x9d\xad\xd9\x01\x40\x6a\x34\x4f\x17\x0b\x55\x3d\x45\x25\xd7\x61\x84\x90\xc7\x62\x3b\x3c\x5a\x07\x51\xc5\x07\x23\x03\x1a\xfb\x4f\xb3\xf8\x11\x2e\xbe\xc6\x8a\xf4\x3e\xd2\xb8\x45\xe1\x93\xa7\xb6\x6a\xb4\xfb\xee\x09\xf9\x8e\xc7\x3c\x43\xef\x06\x9a\x60\x1c\xa2\x35\x80\x40\xd5\x2f\x10\x7e\x8a\x6c\x13\x82\xdd\xe3\x80\xe4\x9e\x91\xb5\x11\x8e\x6a\x27\x23\xcd\x64\x4a\x6d\xba\x4f\x59\x60\xe2\xdd\x51\x95\xc4\x4e\xb9\x26\x32\xd7\x09\xdf\xd8\xe8\xa4\xea\x49\xde\x61\x7b\x70\xb1\x76\x0c\xd0\x0d\x54\xa6\xdf\x06\x9b\x0d\xcd\xbc\x73\x1a\x86\xd1\x86\x66\xa3\x2c\x17\xa3\x70\x9b\x47\x81\xd5\xce\x55\xf9\x4d\x81\xec\x09\x81\x53\x46\x8e\xd3\x4c\x46\xc7\xd6\x7a\x20\x95\xb6\xc9\x69\x72\x95\xd3\x24\xd9\xda\xe0\x71\x18\x38\xcd\xe4\x32\xa3\x6b\x58\x9b\x39\xd7\xe6\xc3\x31\x99\xe8\x43\x1f\xcb\xc0\x1c\x84\x42\x89\x61\x7b\x54\x1f\xd3\x61\x03\xd3\xd4\xbb\x22\x47\x18\x3a\x60\xe6\x93\x49\xa9\x0b\x8c\xb3\x50\x0d\x90\xd4\x92\x50\xad\x0d\x43\x73\x76\x7b\xf9\x9d\x9b\x9a\x91\x61\x32\xb3\xde\xa4\x5e\x86\xa8\x7a\x40\xdc\xec\xc3\x47\xa3\xe9\x6d\xc6\x68\x6c\x24\xec\x5d\xb6\xfa\x61\x38\x3d\x0a\xcb\x62\xd7\xb9\x50\x75\x15\x5d\xc1\xbe\x79\xb2\x2e\x70\x72\xb5\xd2\xbe\x4f\xbc\x4f\x0a\x98\xd4\x1c\xcc\x0c\x46\xcf\x64\xae\x31\x2b\x98\xe9\xd5\xff\xde\x1c\x81\x00\xfe\xf4\xd1\xd9\x17\xc1\x9d\xbf\x6f\x19\xec\xbd\x62\xfe\xd6\x9e\x4e\x27\x4e\x11\x3b\xa7\x91\x91\x88\x80\x6a\x83\xb9\xbd\x81\x79\x3a\x3f\xbd\x3d\xbd\xb9\x7d\x77\x7d\xf1\xf1\xf6\x6f\xd3\x66\x59\xa2\x5c\xc2\xae\x10\xe1\x7c\xc8\x19\x1e\x0f\x42\x97\xcb\xcc\x25\x5c\x29\x78\xeb\xd4\x7a\xcb\x35\x4c\xe3\xfd\x8d\x01\xf0\xf9\x47\xd3\xa4\x71\x12\x00\x91\x9d\xe1\x3f\x50\xae\x0b\x49\xb3\x6b\xb9\x1f\x4e\x27\xb7\x1f\x5f\xbf\xbb\xfe\x58\xac\x7b\xcf\xd1\x8c\xf4\xb0\xb7\xc0\x60\xa4\x84\x7f\x8b\x90\x30\xc8\xe8\x2d\x40\xeb\x96\xd1\xcf\xa5\x38\xd4\x84\x09\xe0\x10\xbf\x7b\x33\x6d\x9f\xbb\x95\x81\x27\x57\x6f\x3e\x7e\x77\x7a\xf6\xd7\x8b\xab\xf3\xc6\xb3\x25\xa4\x08\x9c\x2d\x6b\x2e\xc2\xb2\xec\x46\x06\x87\xb4\x66\x0b\x64\xc1\xbd\x5c\x32\xe6\x7d\xc3\x4c\x2e\xdf\xdf\xdc\x5e\x5c\x77\xdc\xe5\x6f\xd5\x11\xaa\x55\x77\x66\x80\xea\xc7\x23\xc3\x18\x2b\xd4\x41\x1e\x19\x42\x8a\xa4\x1d\xfc\x96\x48\xc6\x46\x2e\x6d\x0a\x4d\x92\xb2\x72\xac\xd2\x54\x37\xcc\xea\xf5\xc5\xe5\xe4\xc7\x8f\x93\xe9\xed\xe9\x77\x97\x17\x37\xd7\x17\xaf\xaf\x2f\x6e\xbe\x9f\x5c\xdd\x5e\x5c\xff\x70\x7a\xd9\x38\xcd\x57\xcf\x77\xe7\x77\x25\xbd\xca\x4e\x96\x7b\x68\xd8\x94\x49\xb3\x48\x18\xd6\x83\x38\x8d\xe8\x64\xba\xf9\x1a\xe2\xab\x4a\x35\x8c\xe7\x14\x56\x0b\x2a\x19\x83\x1b\xf0\x64\x5a\xd4\xd0\xab\xf7\x1c\xad\xa4\x32\x64\x02\xc3\xad\x0d\x3f\x48\xc5\x92\x8d\xd1\xa6\x8c\x81\xdd\xae\x58\x88\xf5\x0f\xf2\x7d\x81\xb0\xd7\x15\xdd\xec\xf4\x2b\xa4\xd5\xc4\xdb\x72\x23\x36\xcc\x7e\x61\xf6\xc4\xa6\x6c\xfc\xef\xd1\xc8\x5a\xcf\x46\x11\x8f\xb3\xff\xde\xb9\xd0\xb5\xf3\x3b\x99\xfe\xf0\xf5\xf4\xdd\xbb\xcb\x00\x12\x7e\x52\xd1\x2b\xfd\xe9\xe5\xf8\xc5\xab\x6f\xc7\xcf\xc7\xcf\x8f\x5f\xbc\xda\x05\xe6\x39\x57\xe8\x0f\xcc\x13\x46\x12\xb9\x84\x65\x2a\x49\xfe\x1b\xa2\x7f\x74\x62\x7e\x53\xff\x0d\x56\xbf\x7a\xf6\x93\xda\x8c\xce\x27\x37\xe6\xc8\x7c\x7c\x3d\xb9\xbc\xf8\x78\xf9\xee\xcd\x9b\xc9\x55\x58\xb7\xd4\x8e\xaf\x5f\xc3\xc1\x2d\x03\xdd\x25\x32\xac\x6e\xc3\x31\x2f\xa4\xf9\xf9\xf4\xec\xec\x62\x7a\xdb\x30\x27\x3c\xc5\xe7\x17\xaf\x4f\xdf\x5f\xde\x5e\x5c\x9d\x4f\xdf\x4d\xae\x6e\x6f\xdf\x19\x96\xe1\xf4\xec\x76\xf2\xee\xaa\x71\x66\xd8\x6d\x33\xa0\x26\xd3\xcd\x2b\x73\xc4\x4a\x4a\xde\x3a\x85\xc9\xf4\x87\x57\x37\xef\xa7\x86\x1f\xd9\x47\xeb\xe1\x19\x11\x3c\xdf\x06\x48\xf7\x81\xae\x90\xca\x80\x0a\x46\xb8\x7c\xf7\xc6\x80\x7c\x7a\x7a\xfb\x3d\xca\xcf\x82\x59\xa7\x78\xdc\x58\x80\xa7\xdb\x59\x2d\x61\xa7\xdb\x66\xec\xf5\xb7\x27\x4a\xec\x3f\xe1\x9b\x8b\x1f\x2e\xae\x27\xb7\x7f\xbb\xf9\xdb\x0d\xce\xd9\x5e\x2a\xb8\x79\x45\x44\x98\x58\xc8\xd6\x95\xa8\xad\x4a\xe4\xb2\x63\x2d\xde\x50\x7b\xe0\x98\xf2\x24\x7a\xe3\xcd\x0e\xee\x69\x26\xb8\x58\xf6\x59\xfa\x4d\x70\xbd\x67\xd7\x17\x17\x57\xa6\xaf\x0f\xd8\xd3\xee\x8a\xfb\x2e\x07\x7a\x6a\x5c\xd1\x87\xf0\x44\xab\xdd\x7d\x7f\x71\x7a\x79\xfb\xfd\xc5\x95\xb9\xb6\xcd\xe4\x2f\x7c\x55\xdb\x16\xec\x88\x87\x25\xac\x20\xc7\xe5\x1a\x1d\x6d\xcc\x3f\xbc\xf0\x8b\x05\x11\x0b\xa4\x49\x7d\xa8\x51\x17\xa5\x36\x9d\x57\xa7\xfa\x50\x45\x5c\xc8\xd1\xcb\xfd\x8e\x79\x35\x76\xb8\x96\x28\xcd\x4f\xc8\xcb\x6f\x9e\x57\x8a\x24\x24\x7c\xc1\xa2\x6d\x94\xd4\x93\x0c\xa7\x19\xbb\xd1\x32\xdd\xe9\xc4\x88\xce\x41\xfd\x2e\x2a\x9d\x76\xdf\x8c\x08\xd8\xbc\x1a\x44\x37\xd7\x66\xa4\x56\xb9\x8e\xe5\xbd\xa8\xce\x6d\xc3\x04\x53\x6a\x9a\xc9\x79\x7d\x7e\xc1\x79\x34\xcd\xa2\x7b\x0e\x23\x32\x82\xdb\x3b\x32\x63\xd6\x20\x51\x35\xa2\xbe\x78\x5e\x7d\x6d\x75\x8d\xe7\x2c\xa1\xdb\xc6\x46\x56\x95\x78\xbb\xca\x98\x5a\xc9\x24\x3e\x21\xaf\xaa\x0d\x34\x5f\x33\x99\xeb\x86\x0e\x8c\xcc\xcf\x9b\x20\xb1\xd2\x3a\x7d\xc3\xea\x27\x07\x0a\x44\xad\x4e\xc8\x71\xf1\xed\xce\x7b\x99\xe9\x13\xf2\xa7\xe7\x7f\xfa\x53\xfd\x8d\xa1\x67\x27\x24\x91\x11\x4d\x76\x35\x43\x1d\xe0\x68\x5f\x48\x8b\x62\xf1\x09\xd4\x4e\x75\xc1\xea\x06\xf3\x78\x11\x22\x46\x14\x8d\x32\x06\x1c\x2c\x4d\x76\x09\xda\x23\x6a\xc6\x49\x45\xc7\x52\x24\x73\x6a\x1a\x2d\xe1\xf3\xe3\xb5\x8c\xf3\x40\x62\x49\x1c\x26\xe1\xf3\x51\x43\x83\x66\x55\x4e\x7d\x94\x2c\x17\xc7\x9f\x10\x0d\x8d\x13\x19\xdd\x85\x87\xb2\x2d\x46\xa1\x16\x7b\x2c\xe9\xf3\x15\x97\x7b\x0e\x66\x60\xd8\x35\x98\x01\xe3\x83\x06\xc3\x2e\x50\xeb\xa4\xb6\x62\x47\x9f\x16\x5a\xb9\xc1\x10\x74\xb9\x93\xbb\x08\x8f\x68\xa1\x9f\x39\x22\xf7\x0c\xa4\x06\xab\xc7\x01\x1e\xa0\xd0\x20\x3a\x43\x47\x69\x06\xa9\xab\xae\x95\x04\x45\x2d\xb4\xc6\xf4\x89\xf5\xe1\x20\xa5\xab\x26\xa8\x3d\x95\xd9\xae\x3a\x11\x17\x87\xe6\x84\x96\x75\x95\x83\x86\x3b\x30\x57\x21\x91\xcb\xd0\x55\xd8\xd9\x2b\xb9\x2c\x94\xa0\x55\xbf\x09\xd2\x72\xa2\x77\x7c\x3b\xb2\x5c\xa8\x42\x9c\x47\xe1\xbe\x48\x4e\x83\xc5\x74\x47\xeb\x25\x7a\xbd\x32\x51\xb1\xda\x00\x8d\x4e\x0c\x72\xc2\x48\xe3\x9d\xca\xbb\x23\x4f\x4f\x56\x7a\x0c\x97\x73\xf4\xfc\x3b\x8c\xd8\x6a\xdd\xd9\x27\xeb\xe5\x67\xdb\x5b\x88\xf5\xf3\x30\xb4\xc6\x0e\x1c\x5b\x5b\xcb\x88\xa7\xa3\x35\x55\xff\x70\x7f\xd6\x16\x5a\xc6\xc6\xe0\xf3\x70\xae\x60\x57\xaf\xe7\xe0\x31\x7d\x77\xfe\xc5\x6c\xcb\xce\xb7\x6f\x2c\x76\xf4\x1e\xf5\xe1\x6f\xa6\xa7\x67\x5f\x7e\x0e\x81\x42\xe5\x05\xc7\x76\x79\x7a\x75\x75\x71\x79\xfe\x71\xf2\x7a\xcf\x99\x3c\xb6\x73\x81\x69\xf4\x91\x2f\x7a\xcc\x74\xfa\xf1\xed\xe9\xcd\xff\xfe\x37\xce\xd5\x9c\xdd\x9c\x65\xb4\xca\x39\x35\x92\xf3\x7d\xa8\x57\x17\xed\x6a\xc1\xef\xa3\xaa\x03\xff\x28\x5a\xd4\x56\xe0\xcf\xc2\xb0\x04\x3e\x4e\x38\x76\x4d\x71\x15\x55\xf3\x87\x0b\xac\x45\x97\x97\x5d\xe4\xd2\x40\xd5\x0d\xef\x01\xc3\xd5\x2e\x6c\x0b\xaf\x30\xea\xa4\xa8\xed\x9d\x36\x51\xeb\x51\x27\xf1\xec\xee\x37\x44\x98\x47\x1d\x1b\xd6\xde\x6b\xfb\x51\x40\xf7\xe3\xd7\x3c\x61\xef\xb2\xb3\x4a\xdc\x58\x39\xee\xae\x59\xb9\x7d\x44\x4b\xfb\x42\x03\x9d\x3b\xba\xda\x3c\xda\x0e\x69\xed\x35\xd8\x0e\xa1\xad\x8d\xe7\x9f\xb4\x75\x69\xff\xac\xd8\x34\x6b\xc9\x32\x3c\xc7\x81\xaa\x0b\x65\xa3\xcd\x32\x70\x6a\x43\x36\xc5\xf6\x05\x55\x5b\x97\xf7\xc2\xde\xa1\xc0\x18\x0d\x77\xb1\xc0\x47\x27\xa1\xdb\x1f\xc6\x41\x65\x02\x05\xe7\x3f\x76\x76\x35\x09\x99\x05\xc3\x2e\x33\xed\x2b\x0b\x3a\xe2\x8c\xda\x65\x83\xf6\x1e\x1b\x64\x8e\x72\x15\x36\x75\x83\x91\x6b\x12\xb9\x0c\x6d\x50\x03\x23\xd6\xe3\xa6\x36\xb0\x65\xe5\xe0\x56\xf7\x9c\xb2\x6c\x94\xca\x98\xbc\x17\xfc\x13\x39\x97\x46\xde\x22\x37\xb2\x56\x7e\xb2\x9d\x6b\x6e\x98\x4d\xe7\x9d\x22\xbb\x48\xcb\x63\xb4\x21\xba\xa4\xcb\xb3\xdb\x0f\xd2\x28\x63\x71\xea\xd1\x2d\x0f\x89\xda\xa8\xc6\x0f\x7d\xc1\x79\xec\x11\x70\xb3\x6f\x4c\x53\x3d\x45\x52\x11\x85\x73\xc3\x58\x28\x26\xb3\x12\x01\x7c\xbc\x9b\x60\x29\x18\x12\x63\x03\x67\xbc\x5a\x07\xfb\xa4\x97\x7a\x48\xd8\x4c\x53\x0a\x29\x17\x19\x82\x06\x97\x4a\x4a\x4b\x57\x8b\x0c\x4a\xc4\x52\xc8\xe0\x9c\x30\x50\xcd\x6f\xd0\xce\x48\x85\x4d\x90\x9a\xb1\x34\xe1\x11\x55\x10\xbc\xb2\x6f\x50\x4e\xe3\x22\x55\x19\xa0\x53\x5e\x8d\x6b\x56\xc6\x42\x77\xc5\xc6\x74\x82\x91\x90\x36\x50\x92\x8e\xf0\x9a\x96\x6e\x3f\x33\xe0\x66\x44\xf8\x82\x8c\x6f\xcb\xf0\x16\xcf\xf5\xbf\x1a\xf4\xe2\x45\x28\xf9\xcd\x8b\xf0\xa4\x57\x18\x4f\x33\x22\x2c\x51\xac\xb1\x97\x12\xd1\x85\x15\xbe\x5e\x6b\x67\x63\x6f\xcc\x67\x2a\x09\xe6\x8f\x4e\x18\x38\x3d\x65\xb9\x68\x0a\xb8\xa9\x06\xea\x94\xb6\xea\x21\x5c\xa7\xf2\x21\xec\x9e\x8d\x8c\xc2\x36\x9f\x13\xba\xd3\x7a\x17\x76\x82\x79\x1e\x1a\xe1\x62\x46\xa9\xa5\x35\xec\x15\xf1\x52\x18\x47\x43\x41\x2f\x41\x27\xab\x51\xbf\x5b\x4e\xaa\x3a\x8b\xb2\xc1\x67\x3a\x3a\xed\xe8\x5f\xcf\x56\x12\xea\xb5\x81\x79\xde\xbf\x18\x5a\x9a\xbb\xd0\xa0\x7c\xb2\xd6\x99\x8f\x67\xef\xae\x6e\xaf\xdf\x5d\x5e\x5e\x5c\x37\x99\xb1\x76\xf5\xee\x7b\xb9\x0d\xdd\x05\xab\x32\x3e\xa6\x8d\x20\x57\x19\xda\x09\x56\x2c\xba\x1b\x55\x13\x38\x96\xcd\x46\x35\x17\xc6\xdf\xba\x7d\xe0\x0b\x41\x21\xeb\x84\xc2\xaf\xc4\x4b\xed\xc3\x64\xd4\x39\xaa\x6a\x78\x32\x92\x67\x83\x53\xa7\x32\x26\xe7\xe8\xe3\xcd\xa5\x20\xdf\xe5\xf1\x92\xa1\x5b\x58\x79\xff\x80\xa3\x47\xd7\xbf\x6f\x55\xe1\x6d\x73\x9a\x6b\xa9\x22\x6a\xdf\xb3\x0d\x8f\xb4\x81\x84\xbf\x48\xe4\xaa\x3d\x66\x6a\x2a\xe3\x72\x30\x1c\xeb\xdf\xcf\x55\x05\x62\x7b\x1f\x89\x3d\x3a\x38\xfa\x7f\x08\x21\x07\x28\xf3\x6d\xbe\x1a\xbf\x7c\x35\x7e\x31\xca\x10\x5d\xbf\x3c\x38\x21\x07\x90\xe3\x05\x5c\x4f\x6f\x2d\x9b\x54\x3a\xc9\xe1\xef\xf6\xab\xde\x9c\xb1\xcd\xe7\x55\x89\x4a\x3f\x73\x12\x29\xe1\xaa\xa8\x31\x15\x15\xde\x87\xd4\x2c\x76\x31\x82\x34\x53\xb1\x1d\xd6\x77\xa6\x29\x73\x5d\xb8\x7e\x76\x8f\x72\x73\x5e\x85\x42\xd2\x6d\xda\xb8\xe2\xb3\x27\x98\x34\xd0\x4c\xd2\xfa\x19\xa0\x8f\x92\x36\xbf\x7e\xb4\x94\xf2\xa3\x8b\x2f\x28\xfd\x1e\x90\x2b\x86\x82\x17\x0b\x1a\x95\x8a\x04\xf4\xe9\x35\x47\x19\xdc\x56\xa0\xdc\x5b\xe4\xaa\xbe\xc1\x4f\xb6\x98\x42\x54\x26\x8f\x7b\x52\xd4\x7e\x9d\x27\x54\xdc\x1d\x15\xf5\xb1\xbd\xfe\xb9\x72\xde\x49\xa5\x3a\xdf\x60\xfc\x43\x85\x3d\x38\x82\x09\x5e\x9d\xd0\xab\xa7\xff\xc4\xb8\x6a\x54\xc8\x4f\x5c\x97\x2e\xc4\xfa\x09\xf9\x60\xab\x6d\xc9\x0c\xa2\x2f\x20\xa9\xb5\xd3\x47\x96\x05\xa3\x25\x89\x99\xd2\x36\xfe\x15\x6b\x08\xa2\xef\x12\x76\xe2\x98\x26\xeb\x3c\x38\xc6\x43\xee\xba\xf1\x1d\x09\xb0\x7d\xe9\x88\x6a\xbe\x7c\x7b\xfb\xde\xf7\x71\x74\x91\xb9\x25\x00\x30\x43\x81\xce\x85\x60\xd6\x40\xf9\x84\x7c\xb7\x75\xcb\x3e\x82\x0e\xb8\xf2\xd3\x3b\xba\x42\xd3\x7e\xb1\x2f\xa6\x75\xe1\xc6\x85\x25\xd2\xac\x2b\x96\xad\x8e\xe1\xfc\xff\xed\x00\x7f\x93\x39\x0a\x3b\xe8\x42\xcc\xea\xd9\x23\xe7\x5b\x92\x66\x72\xc3\x63\x8c\x62\x16\x52\x8c\xfe\xc9\x32\xeb\xcc\x32\x2e\xf9\x75\x33\x39\xc7\x6e\xf3\x05\x11\x0c\x7f\x7a\x6e\x59\x18\x17\x6e\x65\xb7\xe9\xed\xed\x7b\xdc\x1b\xcb\xdf\x05\x18\x75\xff\x8b\x17\x5f\x7f\xf3\xbc\xd6\xba\x39\x5a\xd0\xa5\xee\x6a\x0a\x1a\x84\xcf\x80\xa7\x43\x79\xfe\x89\xab\x03\xe5\xaa\x0a\xdb\xa0\xc3\xa2\x68\x6b\xae\xe5\x9a\x02\x47\x96\x6c\x49\x2a\x6d\x1a\x7b\x3c\x80\x3b\xd1\x7d\x27\xe4\x5f\x23\x44\x64\x3f\x3b\x7c\x36\x3b\x00\x9b\xc6\x81\xf5\x75\x1c\xa5\x32\x1e\xd9\x8f\xbc\x42\x94\xb3\x83\x48\xb8\xbb\x8f\x6d\x9f\x8f\xbf\x1a\xbf\xa8\xb4\xb0\x99\x2c\xcc\xeb\x9f\x4a\xe2\xf9\xb3\x4f\x47\x67\x07\xe0\x8d\x09\x1d\x58\xc5\x6b\xb5\xd8\xe5\xec\x20\x91\xcb\x8f\x09\xdb\xb0\x04\x5b\x81\x47\x4e\xa8\xcd\x82\x27\xec\x63\x4a\xf5\x0a\xdb\x05\xb4\x44\xe6\x7f\xe3\x44\x2e\x77\x3e\x2f\xdc\x9e\x3f\x96\xb3\xf1\x5d\xb6\x6b\xcd\xcd\xbe\x94\x30\xfa\xf8\x31\x14\xd0\xf8\xf1\xe3\xce\x67\x6b\x9d\x9b\x2f\x3e\x7e\xb4\xe1\x84\x1f\x3f\xd6\x1a\xf0\x94\xae\x4d\x8b\x9f\xeb\xdc\x87\x0f\x25\x83\xb1\x46\xe0\xaa\x10\x28\x0b\x3a\x3b\x40\x13\x1b\x36\xcd\x15\x9b\xca\xf8\x8c\xc7\x59\xd5\x05\xe7\x97\xda\xb8\x48\x9f\x3b\x47\xbe\xfb\x56\xb5\xf7\xe3\x83\x2c\xd8\x97\xcd\x5f\x6e\x28\x81\x07\x3a\x0c\x7a\xfd\xe8\x5c\xdc\x0c\xe4\x2a\xa3\x94\x7f\xf8\x03\x36\x1e\xa3\x54\x66\x7a\x4d\xd3\x1d\xf0\x2b\x41\x01\x2e\x06\xe9\xd5\x5e\x45\x34\xa5\x90\x5e\x88\xbb\xa9\x43\x2f\x6f\xb1\x7a\x80\x72\x5f\xed\x3b\x93\x39\x15\xf1\x3d\x8f\xcd\x89\xec\x1e\xd0\x6b\xbc\x3b\x9a\xfb\xa7\xb5\x99\x5a\x84\xf2\xba\xea\x1d\x5e\x45\x28\x63\x0c\x34\x82\x02\x16\x36\xea\xc9\x99\x9f\xab\xa1\x4c\x82\x69\x20\xcf\xe3\xff\xab\x0c\x19\xff\xd7\x0e\x3a\xb8\x72\x97\xdf\x11\x2d\xe4\xfc\xce\x26\xe7\xd7\x06\x2b\x7a\x17\xfe\x3b\x6b\xbd\xae\xee\x3e\x16\x93\x2c\x3e\xb7\xb3\xb6\x6d\xc7\xe6\x9d\x9f\x5b\xe4\x97\x62\x89\x5d\xac\xce\x5d\x1c\x8f\xa2\x2c\x76\x5a\xbf\x2f\x57\xb4\x6d\x27\x15\xe0\x17\x28\xdd\xf6\xdd\x9b\x69\xa5\x98\x00\xbe\x2b\x0b\xb8\xd5\xdf\xef\x96\x71\x6b\x48\x58\x58\x16\x73\xab\x37\x98\xf5\x2f\xe9\x66\xb7\x7c\xf6\x65\xea\xb9\xd5\xd7\x56\x2d\x06\x55\x25\x93\x58\x40\x75\x6b\xbe\x01\xce\xaa\xaa\xef\x19\xea\xb9\x0d\xf5\xdc\xfc\x2d\x18\xea\xb9\xfd\x6a\xf5\xdc\xea\x97\x78\xb7\xaa\x5b\xb5\x7e\xa9\xb9\xc0\x55\x82\x55\xd3\xaf\x34\x97\x6f\xa3\xea\x2a\x5f\xcf\x59\x67\x61\xe6\xc3\xd3\x1b\x6c\xe8\xca\x44\x3a\x91\xec\xf4\x86\x08\x7c\xe1\x84\x44\x6a\x99\xed\x9f\xce\xb1\x49\xd0\x7d\xe4\xd5\xd7\xdf\xbc\x78\xf9\xf7\xc3\xdd\x57\x98\x74\xf7\xc4\xdc\xce\xaf\x5e\xee\xbe\x46\x90\x9a\xab\xbb\x64\x3b\xfe\x66\x73\x2e\xe2\xb7\x32\xae\x2b\xb1\x76\xe1\x6b\xdb\x85\x6a\x32\x4b\x20\x14\x36\x9c\xd2\x02\x56\xa0\x44\xd4\x50\x0a\x1f\xd4\xf4\x36\x10\x88\x29\xf2\xf4\x4a\x0a\xf6\x0c\x73\xea\x26\x5b\x3f\x75\xf0\x21\x18\x97\xa4\x00\x85\x7b\x19\x3c\x14\xea\xf5\xca\x40\xd0\x6c\xfb\xf8\xbb\x37\xd3\xf1\x64\xba\xf9\xf1\xd4\x46\x1a\x3d\x85\x30\xd5\xe9\xb3\x31\xb1\xe0\x25\x73\xb6\xa2\x1b\x2e\x73\xdc\x1a\x37\xff\x50\xaf\x81\x25\xed\xcc\x7f\xcf\x12\xd8\xee\xb2\x85\xce\x56\x0d\xea\x67\x65\x53\x44\x49\xae\x24\x20\x4e\xc9\x5e\x5a\x77\xb4\x29\x66\x11\xdd\x75\x2a\x34\x0f\xcd\xe6\x5c\x67\x34\xdb\xda\x4a\xf2\x10\x39\x48\x31\x94\x01\x03\x83\xf7\xaa\x21\x18\x9c\xe6\xb6\xbc\x71\x4a\x53\x11\xd3\x2c\x36\x9b\x9a\xd0\x6c\xc9\xea\xd3\x0d\x75\x4a\x60\x09\x06\xb9\x05\xc2\x31\xf1\x69\xb9\x97\xf8\x00\x47\x10\x7e\x55\x2f\x01\x49\xd7\x8c\x2c\xf9\x86\x09\xd4\x44\x55\xa6\x17\x1c\x9c\x74\x16\x4f\x24\x85\xfe\xbc\xd7\x14\x7e\x00\xd2\x02\x99\xbe\xe7\x90\x4f\x08\xaf\x32\x99\x1d\x50\x7a\x22\xc4\xec\xc0\x80\xcf\xfe\x71\xb2\x5e\xcf\x0e\x1a\xa7\x45\xc0\x57\xb6\x80\x7a\xb9\x9a\x5c\x31\xaf\x3b\xec\xff\xc8\x16\x8a\x32\xbf\xcf\x0e\x0c\xd0\x9b\xbb\x9d\x1d\xc0\x87\x34\x63\xe4\xc5\x2b\x32\xe7\xda\xe2\xae\x31\x0c\x58\xdf\x5a\x6f\x34\x98\x6f\x73\xbf\xa1\x99\x1c\x15\xa3\x89\xd8\x48\xac\x6b\x3b\xf0\x57\x2f\x2b\x03\x7f\x30\x9f\x04\x8b\x79\xbb\x29\xc3\xb2\x30\x89\xc1\xe9\x0d\x41\x2c\xdc\xd4\x79\xca\xb2\xd1\xe9\x8d\x0b\xd7\xe4\x81\x0c\x0b\xee\x49\xa9\x36\xec\xcf\x09\xf9\x3f\x4f\x67\xb3\xf8\xff\x7d\x76\x82\xff\xf9\xaf\x7f\x55\xff\x76\x3f\x3f\xf4\x04\x35\x91\x40\xff\x6d\xa0\x3c\x27\x21\x7c\x29\x64\xc6\xe2\x42\xa1\xd7\x89\x5e\x26\xf5\x0f\x3c\xec\x8e\x19\x2e\x50\xb2\xf3\x94\x6e\x7a\x45\x83\x05\xe6\x8b\xca\x3c\x73\x46\xd8\x27\xa8\xb5\x14\x63\x28\x31\x1a\x4b\x96\x24\x66\x50\xe0\xe5\x01\xb8\xe6\x81\xf5\x4a\x89\x45\xeb\x53\x99\x85\x08\x6a\x05\x12\x97\x45\x4b\x47\xac\x8d\x04\x6e\x0f\xa7\x41\xb6\x69\x26\xb5\x8c\x64\xe2\x38\x68\xec\x3a\x78\x54\xce\x5d\xb5\x7f\x2d\xc9\x8b\x3f\xee\x44\x7b\x80\xaa\x9f\xaf\xf3\xf5\x09\x79\xf5\xcd\x37\x5f\x7d\x13\x78\xcf\x05\xbe\x7f\xb1\x27\x31\x4f\xe4\xf2\x86\x6d\x58\xc6\xf5\xf6\x26\xca\x18\xab\xcb\x1b\x3b\xcb\x3e\xbc\xac\x7f\xe1\x96\x9f\xc8\x25\x51\xf6\x0d\xa1\x73\xb9\x71\x86\xca\x44\x2e\x83\xe4\xd7\x5c\x25\xc5\x44\x51\x25\x4b\xe9\x58\xe6\xda\x63\x69\xc8\xe4\xea\xf5\xbb\x10\xfb\xd2\xb6\xbd\x86\x07\x78\xcb\xd4\xea\x2d\xfd\x74\xcd\x20\x88\xf7\x96\x07\xf1\x7b\xb5\x78\x2e\xc7\x08\x79\x34\x17\x19\x4a\xa7\xe4\x42\xdf\x9b\x29\x66\xd8\x0b\xfc\x08\x49\x13\xb5\x1c\xad\x99\x5a\x91\x94\x31\x33\x01\x35\x26\x50\xbb\x3f\xb4\x44\x6b\xda\x66\xf1\x11\x72\xed\x85\xf6\x33\xcf\x58\xec\x52\x37\x2c\x33\x1a\xb1\x45\x9e\x14\x23\x59\x53\x62\x4b\xbf\x86\x73\xaf\xf4\xcd\xc8\x77\x93\xeb\xf3\x82\x5f\x94\x0b\xf2\xe2\xe5\x73\xe5\xec\x26\x36\x66\x18\xd5\xd5\xb6\x52\x41\xfd\x01\x3e\x6a\xce\x20\xc8\xd2\xb2\x53\xae\xb7\x1d\x71\xd7\xf9\xe7\x60\x8e\x10\x54\x78\x07\xb7\x18\xb2\xd3\x5c\xd9\x1d\x81\x2c\x4f\x10\x5b\x1f\x20\x1e\x7d\xb6\x74\x4a\x95\xba\x97\x59\x28\x86\xad\xb2\x99\xef\x6c\x4e\x0d\xbc\x86\xf6\x23\xd8\xbf\x45\x6e\x9d\x3d\x76\x37\x31\x34\xfd\x2a\xd4\x1e\x04\xa2\xe0\xc1\xf7\xa0\xb6\x07\x88\x3a\x18\x19\xc5\xa2\x8c\xe9\x16\x67\xf2\x1a\x94\xd0\x6b\xc8\xb0\x88\x77\x6c\x0b\xc2\xbf\xed\xc2\x86\xba\x60\x96\x8b\x54\xc6\x87\xaa\xb4\x81\x35\x50\xba\x4e\x1e\x0b\x9d\xd4\x9b\x09\xf0\x4e\x25\x6b\x3b\x27\x4c\x66\x01\xb3\xd2\xd2\x1a\x37\x41\xf6\x1d\x13\xf2\x16\x99\xa0\xe6\x4e\x09\xa1\x86\xb5\xe2\xb1\xeb\xe2\x8e\xd5\x03\x74\xfc\xa7\x9b\x4f\xeb\xe0\x15\xeb\xa8\xd2\x4f\xf9\x98\xb1\x05\xcb\x98\xd0\x41\xb9\xba\x2d\xc3\xac\xdc\xb0\x6c\xc3\xd9\xfd\xb1\xcd\xa7\x31\xba\xe7\x7a\x35\x42\x5a\xaf\x8e\x61\x63\xfe\x7f\xf6\xfe\x7e\xbb\x8d\x1b\x5b\x14\xc4\x5f\x05\xad\xf3\x87\xe4\xf3\x13\x69\xc7\x49\xdc\x89\x7b\xf5\xfa\x2d\xc5\xb2\x13\xcd\xb1\x65\x5e\x4b\x4e\xfa\x4e\xb3\x6f\x16\x58\x05\x92\x18\x15\x81\xea\x02\x4a\x32\xfb\x9e\xb3\xd6\xbc\xc3\xbc\xe1\x3c\xc9\x2c\xec\x0d\xa0\x50\x24\x50\x55\x94\xe4\x7c\x9c\x14\xff\x48\x2c\x12\x85\x02\x36\x36\xf6\xf7\xc7\xd3\x7f\x83\xff\x75\x01\xe2\xfa\xfd\xf9\xfb\x97\xe4\x2c\xcf\x89\x04\x0d\xac\x56\x40\x71\x00\xb7\xd5\x34\xb0\x37\x9d\x82\xb9\xe3\x94\xd4\x3c\xff\xff\x47\x28\xef\x21\xb0\xf2\xa5\x6d\x06\xc2\xeb\x0a\x08\xda\xb6\xd1\x12\xd7\x8c\x5c\xe1\xc1\xc9\x0a\x64\x7c\x83\x14\x9b\xfe\x53\x47\x5b\x58\x87\x84\x8a\xab\x5f\x48\x59\xb0\x38\x31\x24\xde\x8d\x97\x58\x3c\xc4\x69\xc5\x7f\x1a\x22\x8c\xc5\x7f\x35\x17\xee\x5a\x3a\x5a\xf0\x1a\xe9\x40\x2f\x43\xbe\x8c\x3d\x65\x68\x54\xa3\x6f\x7b\xb2\xe7\xfa\x41\xc7\x56\x6e\x88\xe5\xa6\x4d\x83\x42\x5e\xac\xab\x9a\xa5\x79\x71\x02\x96\x65\xc5\x96\xfc\xd3\x59\xd8\x99\xaf\x57\xc4\x9c\x45\x9e\x69\xb4\x44\x88\x8e\x86\x11\xed\x86\x7f\xb1\x1d\x75\x59\x6b\xc8\x70\x5d\x35\xb2\xa0\x86\x8b\xab\xf6\x32\x02\x4a\x18\xc7\x0e\x57\x7e\xc7\x73\xef\x58\x95\x24\x07\xbc\x1e\xa2\x9a\xf1\x3c\x66\x52\x8a\x6c\x01\xfa\x16\x82\x57\x1c\x24\xb2\x66\x66\x27\x9c\x2e\x58\xb3\x8f\xdd\x0a\x2b\xcd\xa7\xff\xd6\x77\x5b\x2a\x62\x2b\x0b\xec\x15\x86\xc7\x2e\x98\xb7\x58\x30\x0e\xc8\xdb\xa8\x8a\x3d\x54\x8e\x16\x46\x71\xd8\xba\xeb\x6f\xd8\xd8\xfc\xc8\x10\x15\x35\x0d\xde\x82\x1a\xf2\x20\xd3\x02\x41\xa3\x78\xaf\x86\xdd\xa1\x48\x77\xab\x9c\xdd\x1a\x76\xb7\x22\x9d\x9e\xb9\x4f\xc3\xee\x55\xa4\xbb\x16\xdd\xa3\x61\xf7\xea\xd1\x83\xe6\x1e\xae\x60\xa7\xaf\x30\x7e\x86\xf0\xa9\x0e\x75\x90\x3c\x44\xb9\xb6\x91\x3f\xd6\x15\x75\x31\xeb\xa5\x7c\x57\xbb\x0f\x00\x30\xa0\x58\x97\xb9\xbf\xb6\x21\x3c\x58\xfe\xf1\x1e\xdb\x37\x44\x69\x9f\x8d\x76\x73\xb3\xd8\x84\x5c\x30\xf3\x2f\x43\xdd\xc1\xd6\x01\x83\x68\x0c\x4f\x02\xcc\x4b\xe3\xc8\x8b\x8b\xf0\xad\x40\x20\xc0\x59\x6c\x5b\xaf\xb3\xe5\x88\xf4\x9a\x6d\xee\x4f\x74\x77\x61\xf1\x9d\x79\x6f\xe0\x18\x09\x72\x06\x8c\xca\x66\xe8\xa8\x1b\x1a\x3f\xe7\x06\x84\x9f\x81\xd8\x7e\x36\x03\x8d\x3d\xe1\xd7\x9f\xd0\x8b\x36\x1c\x89\x82\x27\xe2\x58\x24\xab\xa0\xfe\x50\x6c\xcd\x76\x22\xe2\x66\x32\x67\x3b\x0d\xab\x0f\xee\x0e\xf0\x55\xb1\xac\x9e\x14\x55\x7d\x3c\x93\x21\x1c\x04\xe3\x2d\xac\xce\xa2\x8c\x14\x4e\x5e\x56\xcc\x2e\xf4\xc1\x18\xd4\xac\xae\x17\x85\xe2\xa7\x1b\xec\xff\xf7\x8d\x44\x6f\x25\xcd\xbf\xa3\x85\xd1\x4a\x0f\xa0\x46\x3b\x4f\x3d\x10\x99\xc2\xd9\x92\x08\x65\x1b\xcc\x86\x63\xa7\x17\x62\x95\x72\xe3\xec\xe2\xdd\xaf\x80\x64\x6d\x20\xdd\x13\xd1\x76\x60\xf3\xbb\x44\xb6\xf8\x63\xfb\xdf\x42\x0c\x47\xab\x38\x82\xd2\xb2\x82\x14\x0a\xfc\x0a\x71\x00\x96\x4f\x33\xa3\x09\xb3\xfc\x72\x2f\x06\xa5\x29\xbb\xe5\x62\x4a\xdc\x37\x99\x14\x39\xc7\x0c\x24\xf2\x77\x08\x42\x82\x70\xb9\xfc\x47\x17\x0c\x02\xdf\x1e\x1c\xb2\xf3\xf8\x01\x3b\x41\xc7\x6b\xbb\xb5\x26\x12\x7b\xb2\x62\x62\x7a\x53\x2f\xd8\xa2\xe6\x45\xce\x2a\x78\x81\x7b\xfd\x09\xb8\xda\x9f\xc0\x66\x6d\x7d\xf3\x6b\xbe\x61\x4a\xd3\x4d\xf9\x92\x88\xba\xf0\xc9\x94\x2f\x83\xa6\xc4\x9f\x27\x10\xe8\x0d\x4c\x8e\x5f\xb6\x22\x80\xf0\x87\x68\xe8\x4f\xab\x4b\x72\x2b\xe6\x67\xe9\x67\xfb\x5c\xc1\x3c\x63\xd4\xcd\x18\x75\x13\x1e\xc1\x18\x75\xf3\x4b\x46\xdd\x20\x51\xd8\x0f\xb7\x81\x42\xac\x06\x53\xa1\x3e\x26\x52\x01\x02\xcd\x5f\x89\x5c\xee\x42\xd7\x45\xe4\xe0\x64\xc3\x43\x71\xd8\xa7\x52\x56\xfa\xc7\xaf\x7a\x1d\x42\x6b\x46\x64\x95\xb3\x0a\x6d\x69\xe6\x9a\xc2\xfa\xfc\xfa\xed\xca\x68\x06\x88\x26\x85\x9d\x39\xc1\x4e\x6d\x21\x75\x2d\x09\x05\x97\xc3\xfd\x25\x0e\xbf\x80\x0f\x75\xc1\x7e\xfc\xca\x93\x20\x0a\xe0\x08\xa0\x66\x80\xab\xb8\x4a\xad\x88\x34\x52\x09\x6c\xac\x91\x36\xe0\x0c\xa8\x9b\xca\x56\x4b\x45\xbb\x15\x57\x0f\x30\x57\xe1\x4c\xf7\x96\x48\x1e\x28\xd0\xd8\x5c\xa8\xf7\x2e\x05\xf6\xbe\xf3\x74\x1a\x86\x27\x76\x93\xf1\xdf\xcc\xfa\xe3\xbf\xb4\x96\xf6\xa8\xb2\xbf\xc5\xf7\x17\xf7\xc3\xf7\x17\xbf\x35\x7c\x7f\xf1\x48\xf8\xfe\x62\xc4\xf7\x81\xf3\xfc\xce\xf0\x9d\x6f\x3e\x17\x7d\xc7\x99\xbb\xf1\x1d\xe4\x83\x91\xc2\x8f\x18\xbf\xf7\xcb\x67\xc7\xf8\xcf\x40\xe1\x7f\x25\x8c\x1f\x69\xfc\xf0\xc7\xff\x80\x18\xff\xfb\x32\x31\xfd\xea\x06\x26\x6f\x01\x32\x57\xf4\x33\xd9\x7f\x66\x2c\x6a\xfd\x31\x5f\x47\x6d\x3f\xb0\x94\x88\xe5\xa7\xb4\xf3\xfc\x5a\x49\x5e\xa3\x5d\x68\xb4\x0b\x85\x47\x30\xda\x85\x7e\x49\xbb\x90\x21\x17\xfb\x56\x21\x57\x1d\x2a\xc8\xa6\x74\x83\xfd\xe9\x3d\x7e\x26\x96\x11\x96\x7c\xfc\x82\x8b\xe1\x4b\x08\x39\x0f\x49\xa6\xb2\x56\xf0\x7b\xc8\x6e\x5e\x66\x52\x04\xfb\x33\xd9\x0e\x65\x5c\x61\xd8\xeb\xa1\x02\xd9\xbd\x43\xe6\x6f\x18\x2b\xdf\x57\x7c\xc5\x05\x2d\x2e\xd9\x27\xfd\x43\xa4\x27\x45\x34\x40\xd7\x90\x2a\xf3\x30\xc0\x56\xda\x19\x88\x60\x9f\xf4\x5a\x96\x36\xec\x16\xf3\x01\x40\xd4\x8c\x2d\x3a\x0c\x21\x47\x61\xd1\xe0\x85\xb9\xa6\x58\xa5\xc3\x55\x0c\x09\xe3\xb5\x30\xa4\xb4\x80\xf2\x1e\xe6\x91\xd8\xbc\x66\x16\xe5\x23\xe6\x6a\x0c\x88\x20\xf3\x23\xb3\x38\x62\x56\x67\xd6\xfd\x97\xf9\x51\xd8\x11\x2d\xf8\x55\xb1\x62\xf9\x97\xf9\xd1\x89\x8d\x0e\x7e\x12\x7b\x85\x0d\xb2\xf5\xc5\xcf\x16\x50\x5f\xc7\xa1\xda\xa5\x79\xb5\x14\x64\x7e\xb4\xe0\x55\x3e\xcd\x96\xab\x68\x26\x4f\x67\xf0\xdd\xe6\x91\x23\xe0\x6d\x3c\x7a\x10\x3c\x12\xc5\xa3\xfb\xc6\xb9\xef\x04\xb5\xc7\xe7\xee\x89\x73\x4f\x41\x28\x1d\x57\x3e\xe4\xe6\xf9\x76\x7f\xbe\x43\x9b\xe3\x21\x36\x78\xc6\x37\xc7\x83\xa0\xf8\x54\xc2\x0b\x57\x44\xd3\x6a\xc5\xb4\xeb\xb3\xcc\x15\x5e\x53\x72\xb1\xf4\x60\x03\x20\x30\x8d\xac\x59\xc8\x56\x7d\xc7\xc4\xa4\xed\x44\x80\x1d\x1a\x60\x51\x5d\x35\x65\x0e\x1d\xe6\xd9\x90\x9d\x7b\xc0\x2c\x52\x6f\x32\x0a\x3b\x37\xce\x07\x3d\xe2\xfb\x21\xe2\xdd\x0a\x32\x50\xfe\xd3\x43\x82\x8b\x55\x47\xd2\x83\x03\x11\x80\xc7\x5f\x12\xa4\x13\x2e\x21\x8e\x6d\x4a\x1d\x8b\xf1\xee\xdc\x52\xbd\x39\x43\xbf\xfc\x5b\x99\xd1\xc2\xe5\xe0\xf6\x12\xe5\x77\x98\x94\xe3\x32\x73\xe5\x12\x1b\xb2\x34\xc9\xba\x76\xab\x2e\xfc\xea\x0e\x62\x12\x53\x78\x7d\x76\x05\xa5\x77\x6d\x71\xc8\x8c\xf1\x5b\xe6\xfa\xaf\xda\xf4\x8d\x8a\x6d\xe4\x2d\xc3\xa3\x2d\xa4\x2c\x8d\x98\x6c\x79\x78\x94\x36\x0a\x5f\x9a\xc8\x05\x46\xd4\x36\x24\x82\x2e\x94\x2c\x6a\xcd\x8a\xad\xed\x06\xae\xe8\x5e\xeb\x0a\xf2\x40\xce\x56\x3e\x38\x59\xc3\xb1\x5c\x2e\x56\x8a\xac\x98\x30\x9a\x64\x73\x75\x62\x5b\xee\x91\x0b\xc8\x98\x44\x31\x26\x51\x8c\x49\x14\xff\xbd\x93\x28\x0c\xc5\xb8\x98\x0d\x61\xeb\x41\x67\xd1\x40\xc0\x27\x4b\x69\x69\xf5\x62\x0b\x1a\xb8\xa3\x4f\xa5\xac\xe2\x79\xac\x48\xfe\xb5\xc4\xc7\x0d\x66\x01\x47\x87\x74\x50\xe1\xcb\x39\x40\xda\xf8\xa9\x0b\x26\x6f\xc2\xee\xe7\x47\x7f\xc7\x0a\x7f\x17\xb3\xdb\x17\x58\xe4\xef\x1f\x2f\xe1\x5d\xd1\x54\x68\x88\x3d\xf7\x0f\x7c\x85\x0f\xbc\xc4\x2f\xe0\x29\xf8\x02\x83\xbc\xc1\xec\x0f\x6b\x69\x6d\x22\x58\x94\x93\x36\x52\xfc\xc3\x73\x66\x00\x96\xc8\x89\x2f\x50\xb1\x60\x85\x34\x74\x19\x04\x6f\x6b\xd5\xc2\x66\xc0\x5c\xaf\x83\xe4\xd8\x38\x91\x05\xf2\xb8\x9b\x33\x67\xc5\x97\x3b\x66\x05\x6e\xaa\x71\xb9\x16\xb2\x07\x72\x75\xf3\xc8\xbd\x05\x15\xc3\x6a\xb5\x97\x57\x5a\x27\x8b\xb2\x6a\x8a\x03\x85\xe2\xc9\x0c\x30\xb1\x0d\x36\xa4\x15\x3b\xe2\x0a\x66\xe2\xb7\x3b\xac\xb7\x37\x62\xe4\xcd\x05\xd3\x77\xcc\x16\x75\x44\x41\x03\xe0\x8d\x8d\x31\xad\x3a\x13\xae\x1b\x9a\x5f\x79\x29\x3c\x7e\xc2\xb6\xf9\xad\x7d\x03\x5f\x92\x85\xd4\x6b\xc2\x44\xae\x50\x32\x33\x12\xd6\x77\xdf\xcf\xa0\x46\x86\x19\xea\xea\x63\x74\x8b\xe9\x60\x6b\x17\x68\x82\x1f\x3c\xf7\x8b\xbd\xb9\xa7\xc4\x5c\xd3\xb8\xbd\x1a\xb6\xd9\x54\x45\xc9\xe4\x86\x05\x56\x98\x00\x0c\xc7\xaa\xf5\x22\x77\x10\xd1\x75\xdb\xc3\x5f\x15\x72\x41\x8b\xa6\xa3\xe6\x12\x71\xb1\xb9\x2e\x07\x62\x62\x65\x4e\x96\x2e\x0a\xf6\x5d\x8c\x79\xb7\x10\xd1\xf0\x16\x2a\x08\xfb\x44\x33\x7d\x4a\xf8\x94\x4d\xc9\xd3\x2f\x9f\x9f\x42\x44\x2c\xcf\x6c\xbf\x75\x2d\xef\x68\x95\xfb\x6b\x19\x17\x29\xc1\x5a\x00\xa8\x8b\x42\xa2\x7d\x76\x59\x60\x89\xb8\x29\xf9\xd0\xac\xaa\x6d\x70\xe9\x28\x98\x62\xc9\xe4\x8a\x6a\x76\x47\xb7\x2e\x99\xc8\xac\xc3\xa6\xee\xc0\x56\x81\x74\x1e\x08\x23\x94\xd7\x2c\x0a\xf4\x5e\x57\x8b\x21\x4d\x82\x9b\xc1\xb8\xb5\xbc\xdb\xab\x0f\x8b\xb6\xbd\x8e\x1d\xf5\xcb\x99\xfb\x42\xa5\xcf\xd7\x4f\xe7\x0e\xcd\x8f\x3e\x2a\x86\x35\x64\xe6\x47\x64\xc3\xa8\x50\xed\xb5\x79\xd1\xd0\x10\x08\x6b\x93\x68\x2d\x76\x0a\x85\xec\x22\x3d\x72\xf1\x83\x53\xda\x52\xab\xe9\x2d\x1f\x78\x0a\x5a\x17\x57\xb6\xaf\x59\x2f\x03\xbd\x7e\xeb\x86\xda\x6c\x41\xab\xe4\x03\xfc\x0a\xb0\x20\x5f\x5f\xbf\xf5\x7d\xd2\xc8\x86\x65\x6b\x2a\xb8\xda\xc4\xb6\x73\xf2\xfd\xf5\xd5\xbb\x27\x4d\x76\x9a\x46\xa1\x7a\x65\x90\x52\x13\x55\x4a\xb9\x64\x39\x29\x29\x74\x41\x31\x27\x03\x85\x2b\xa0\x10\x8d\x55\x95\xa2\x94\xd3\x8e\x07\x96\x44\x89\xda\x50\xac\x0a\xbd\x86\x2b\x56\x22\xc9\x34\x8b\xc4\xfa\x2d\x20\x14\x60\x31\x56\x67\xfe\x4e\xa9\xf1\xe6\xf4\xbc\xd6\xb7\x96\xa5\x22\x27\x2c\x5f\x31\xf5\xa4\x45\xa5\xd1\xe3\x72\x90\xde\xf4\xfb\x72\x6e\xfd\x76\xdc\x5b\x85\xcc\x6e\xe8\x12\xc7\xb0\xcf\xe2\xe5\x32\x6f\x38\xc3\x37\x58\x99\x35\xf0\x75\x85\x3f\x46\x3c\x5e\xed\xd5\xcd\x77\x1d\x5f\xc1\xcf\x30\xf5\xe8\xfe\x1a\xdd\x5f\xa3\xfb\xeb\x8f\xe5\xfe\x0a\x29\xc8\x40\x27\xd8\x3e\x45\x6a\x3e\x87\x7b\xc6\x12\x81\x28\x5d\xe2\x42\xce\x0a\xa6\xfb\x2b\x14\x9c\xe3\xb0\x56\xa5\x28\xaa\x11\x73\x6c\x70\x8e\xdd\x85\xc1\xdb\x05\xc3\xd2\x4f\xf0\x4c\x5f\x55\x96\x10\xcf\x97\x98\xd6\x5d\x52\xcd\xa1\x52\xf1\x16\xf9\xbe\x2c\x72\x10\xde\x0a\x46\x55\x47\x35\xaa\x0d\x57\x9a\xde\x30\x51\x6c\x89\xae\x98\x5b\x1e\xbe\x85\x36\x6f\x79\x1c\x0f\x43\xa7\x24\xac\x9b\xa6\x53\xc3\x9e\x49\x58\x59\x62\xb1\x39\x13\x07\xd8\xdd\xaf\x63\x9d\x5f\x60\x25\xa3\x78\xf2\x08\xe2\x89\x75\xb5\x18\xfa\x55\x6d\x3e\x5b\x45\x66\x97\x00\xdd\xbc\x65\x57\x4e\xd9\x1f\xb1\x2f\xac\x44\xd6\xba\x2b\xb0\xec\x0f\xf9\x35\xa5\x96\x76\x39\x89\xbd\x1d\xee\xd4\x66\xb6\x79\xea\xde\xed\x1a\x6c\x62\x2c\xcb\x3c\x4a\x42\xa3\x24\xf4\x6b\x4b\x42\xfb\x37\xb8\xab\x30\x33\x3e\xba\x88\xd9\x32\x92\x2e\xee\x2e\x21\x08\x48\x6c\xfc\x8e\xef\xaf\x34\x1c\xec\xcc\x02\xf6\x92\x9b\xb5\xd9\xe0\x00\x2b\xec\xf8\xd5\x24\x6c\x0a\x55\x2d\x44\x47\xe8\x4d\xa2\x30\x30\x4e\xf9\xfd\xc7\x8b\xf3\xde\xd5\x36\x43\xdd\x5a\xe1\xdf\xd6\xa6\x97\x5c\xdc\x80\xd7\x5f\x9b\x21\xc3\x5e\x6f\x86\xba\x43\xb3\x64\xd1\xbc\xe0\x41\xab\xf0\xcd\x50\x3e\x30\x9a\xf7\x1a\xae\xce\x5b\xa3\x7d\x67\xa9\xbc\x06\x12\xa1\xf8\x4a\x80\xa0\x2d\x74\x33\x2f\xd9\xf0\x55\xab\x45\xc1\xce\xda\x24\x3c\x46\x0b\x5b\x14\xb8\x94\x02\xb2\xfe\x55\x9d\xad\x8d\xec\xf8\x86\x15\xfc\x93\xb5\x21\x7b\xcf\xcf\x1d\xe5\xe6\x96\x2f\x65\xc2\x34\x0f\x8d\x88\x1d\x85\xf2\x2b\x39\x34\x04\xe8\x96\x56\x9c\x8a\xde\x5a\xa6\x3f\xe2\x30\x92\xb3\xac\xa0\x15\xd8\x55\x79\xb6\x76\x4f\x07\xb8\x1c\x54\x8b\x82\x4e\xad\x07\x89\xc3\xbf\x4b\xe1\xd1\xfe\xef\x77\x9a\xf8\x8f\xf4\x0c\xdc\x41\x00\xb3\xcf\x62\x1a\x43\xdc\xb8\x94\x39\xbb\x0a\x5a\x11\x06\x52\xe7\xce\xef\x11\x99\x73\x6f\x99\x7b\x22\xe7\xce\x88\xd1\x4c\x66\x57\x39\x0a\x87\xa3\x70\xf8\x07\x12\x0e\x77\x48\xc9\x30\x4b\x59\x9c\x40\x35\x9f\x7b\x18\xcb\x0a\xaa\xd4\x80\x66\x0c\x38\xac\xe1\xab\x4e\xde\x01\xd9\x35\x50\x3d\xa1\x61\xa2\x14\x3c\x11\xe4\xe9\x13\xd5\x82\x40\x0b\xbc\x96\x10\x57\x88\x05\x98\x30\x08\x80\xdf\xba\xfa\x49\x06\x23\xd3\xe9\x7b\x74\x21\x6b\x4d\x32\x56\x19\xd0\x19\x6c\x83\x82\xa1\xed\x55\xfd\x32\xf1\xe3\xf7\x8e\xc2\xe5\x16\xa0\xd1\x20\xdc\x65\x1c\x92\x30\xc8\xd6\x97\x3a\x4c\xca\xc4\x1b\x37\x6b\x35\xd1\xed\x59\xf5\xc7\xfd\x47\x7c\xad\x78\xf8\x92\x50\x6d\x45\xad\x3e\x14\x35\x9f\x46\xf8\xf2\xb7\x1f\xfb\xa7\x93\x67\xd0\x5a\x13\x7b\x8f\xee\x4d\x45\x2a\xb6\xac\x98\x5a\x47\x6d\xa9\x2e\x86\x15\x67\x74\xcb\xe2\x0a\xaa\x64\xe5\xf4\x71\x83\x42\x93\xb7\xbe\x91\xe7\x12\x90\xdc\xbb\xf7\xb8\xb3\x90\x81\xca\x05\xca\x8d\x68\xb6\x6c\x64\xd6\xe6\xa1\xbd\xbd\x5c\x4a\x8c\x6c\xc4\x2b\x28\x18\xcb\x19\x46\x9e\xda\x0b\xa4\xb8\xc1\x24\x0e\xa1\x1f\x16\xe4\x64\xb1\xb5\xf3\x1e\x90\x73\xb2\x62\xfd\x22\xf8\x99\x19\x44\xd6\xb2\xc8\x15\x3e\xe0\x16\x11\xb4\xb6\x39\x3c\x9c\x75\xc1\xab\x3c\x9a\x0b\xbf\xf7\xfe\xef\x2e\x3e\x9c\xff\xf8\x55\x58\xb4\xac\x91\x0f\xda\xb0\xad\x81\x4c\x98\x99\xbf\xba\x7f\x20\x6b\x41\x95\xfe\x4e\xca\x54\x66\x42\x74\x89\x6f\x83\x67\x2c\xa4\xbc\x31\x00\xa2\xaf\x83\xdf\xd3\x53\x12\x64\xc3\x98\x56\xa1\x0b\x22\x6b\x5d\xd6\xb1\x90\x1e\xf7\x19\x12\xa5\x69\x5e\xfd\x81\xb5\xea\x0d\x1f\xba\xb3\xc8\xe3\xa9\x4d\xba\xa1\xbf\xc2\x46\x21\x8a\xa8\x8a\x5a\x1b\xa2\x3b\xfb\x00\xe3\xc9\xc5\xb9\x6f\x5c\x05\xeb\x79\xd8\x22\x52\x2e\x92\xe8\x0a\xa0\x1b\xad\x23\x09\xae\x6a\xd0\x39\x65\x9b\x28\x7f\x3b\x64\x19\xb7\x49\x33\x51\x74\x21\x3f\x36\x96\x21\xb7\x8c\x1c\x96\xf1\x90\x55\x74\xc7\xc9\x5a\x02\x10\x2b\x0d\xb0\xb7\x3c\x20\x00\x2f\x0e\x23\x00\x2f\x46\x02\x10\x6c\x67\x24\x00\x91\x9d\x8d\x04\xe0\xd7\x24\x00\x5d\xbf\x2e\x56\xbd\x79\x9a\x66\x89\x88\x82\x20\x37\x9b\x3f\x93\xb2\x73\xcf\x9d\xc7\x70\xb9\xd7\x4a\xd3\x45\xc1\xd5\x9a\x0d\x14\x4b\xcc\xe1\x69\xa9\x69\x11\xc4\xdb\x41\xcc\x32\x6b\x66\x32\x3b\x21\x8a\x29\xb4\xc7\x75\x81\x29\x91\xaa\x14\x5f\xdf\x20\xaa\x99\x58\xdf\x8b\xcf\xb4\xbe\x4b\xa9\x1f\x0f\x84\x42\x8a\xc9\x2f\xb2\xcc\x87\x41\xf2\x73\x2c\x13\x22\x33\x87\x81\x6f\x86\x43\x43\xc6\xe8\x0a\x45\xe1\x34\xc3\x04\x75\xd2\x5b\xac\x3e\xa1\xf0\x40\xec\x71\xdb\xc4\xe1\x79\xb0\x5f\x43\x9a\x82\xf4\xaf\x6a\x10\xbb\xee\xc8\xab\x49\xec\x20\x91\x5d\x73\xb7\x96\x8a\x35\x26\x78\x72\xc7\x08\x8d\xbb\x40\x9a\x8f\x37\x64\x74\xd0\xeb\x61\x14\x9b\xa0\x4e\x37\x7c\x17\x57\x1c\x33\x7a\x3d\x0b\xa9\x48\xc5\xa8\x92\x02\xf8\x30\xc9\xd6\x54\xac\x3a\x1a\x66\x1c\xb0\xae\x1e\x96\xb6\xbb\x2e\x58\x8d\x35\x26\x00\x5d\xc6\x1b\x81\xf3\x3c\xc2\x7a\x74\xdc\xa7\x97\x58\x0e\xb8\xf5\x22\x7d\x5e\x7d\xfa\x50\x2b\x21\xbc\xfb\xb4\x6f\x39\xf5\x28\x3b\xd1\x72\x02\xac\x67\xc3\xd4\xfa\xd4\x40\xdf\xfc\xca\x20\x7c\xbb\xe0\x19\xd7\x2e\x59\xa3\xab\x1f\x06\x01\xec\xad\x26\x8e\x87\xc1\x8d\xb2\x26\xf3\x87\x02\xaa\x4f\xfe\xee\xed\x2e\x81\x94\x68\x10\x85\x44\x4a\xf4\x62\x87\x12\xbd\x18\x29\x51\xcf\x0e\x46\x4a\x74\xd8\xba\x46\x4a\x64\x3f\x7f\x24\x4a\xd4\x91\xaa\x3b\x89\x09\xef\xc3\x86\xbd\x48\x0f\xdb\x15\x65\x07\x8f\x8c\xcc\xd9\xb5\x77\x73\x3b\xd0\x10\xdf\x1b\xa8\xfc\xb6\x19\x8a\xae\x41\xed\xfc\xea\xfb\x7e\x41\xb0\x87\x54\x30\x22\x06\x6d\xa8\x5b\xb3\x67\x89\xb7\xae\x42\xb8\xb0\x8d\x07\x0f\xec\xcb\xfe\x05\xc9\x22\x11\x1f\xde\xbc\xfa\xf2\xcb\x2f\xbf\x05\xfb\x3b\x76\xbd\x86\x52\x1e\x1f\xaf\x5f\x75\x18\xe9\xcd\x3b\x26\xf1\x45\x8a\xba\x28\xe8\xa2\x60\x61\xa0\xc5\x3e\x50\x13\x29\x8d\x50\x97\xa2\x0f\x9e\x1f\xb0\x44\x24\x12\x4d\xe5\x2a\x46\x82\xb3\xde\x39\xa0\xad\xef\xa6\x5b\x17\x7e\x90\x09\x1c\xdf\x3a\x4c\xd6\xff\x60\xc7\xee\x09\xfb\x76\xe9\x9f\x89\xb1\xc2\x6b\xbb\x38\x6b\xba\x00\xd2\x10\x00\x0d\x02\x93\x5f\xa0\xe6\x82\x76\xd6\xb4\xdc\xdb\xc8\x79\xf3\x90\x2f\xd4\x60\x16\xfc\x08\xb4\xdf\x66\x9a\x0e\x5f\xcb\xf7\x36\x35\xd5\xe5\x75\x06\x1b\x7a\x84\xe5\xf8\xae\xd6\x07\x08\x1f\xee\x91\xd8\x92\x1e\xbe\xa2\x82\xd1\x4a\xb0\xfc\x4d\x25\x37\xc3\xd7\xf4\xb6\x79\xa8\xc1\xba\xd0\x1b\x5d\xb1\x15\xad\xf2\xce\x17\x13\x24\x72\x95\xad\xde\x83\xd9\xc5\xb6\x88\x57\x2a\x71\xc3\x7d\x06\xa1\x22\x19\x26\xe9\xed\x6d\xee\x62\x69\x73\x60\x51\x12\x50\x4d\x6f\x5d\x59\x39\x9e\x7b\x4a\x52\x5d\xc2\xc2\xcf\x8e\xd0\x88\x96\x4f\x5b\xbd\x88\x09\x4d\x6a\x15\xec\xbd\x73\xc3\x64\xf0\x79\x12\x9f\x0b\x9d\x08\xaa\xec\xd8\xf9\x75\x10\x48\x69\xe3\x55\xf0\x84\xa8\x3d\x1e\xae\x1c\xbe\xf4\x6f\x1e\xca\xc3\x3c\xd6\x9e\xfa\x65\x13\xf2\x50\x41\x8f\x07\x87\xd4\xa4\x11\x81\xcd\x39\x11\x0a\x10\xec\x55\x56\x77\x88\xef\x04\x7a\x7c\xff\xea\xc2\x98\xe7\x5a\x83\xf4\x42\xcb\xb5\xf6\x15\xc3\x91\x6b\x75\x6c\x64\xe4\x5a\x1d\x0b\x1a\xb9\xd6\xfe\x67\xe4\x5a\x23\xd7\x4a\x8d\x1a\xb9\x56\xe7\xe3\xbf\xcb\xc8\xff\xcf\x95\x0c\xba\x64\x05\xff\xd4\x72\xf5\x7f\x8e\xa0\x7c\x48\x3a\x69\x95\xd7\xc2\x5f\x9b\xb0\xfc\xfd\x11\xfb\x81\xf9\x91\xb5\xda\x73\xf1\x91\xf9\xfb\x43\xe6\xbf\x95\x64\x50\x4c\xbc\x69\x6d\x71\x27\x1b\xb4\xf5\x93\x61\x75\xf0\xc8\x98\x08\x3a\xc6\xfa\x8f\xb1\xfe\xbf\x76\xac\xff\x3e\x7d\xea\x4a\x04\x35\x7f\xe1\x7d\x6f\x5d\xea\x03\xa2\x74\x8b\x42\xde\x5d\xcc\x2e\x66\x33\xac\x1a\x65\xe4\xcc\x9f\x64\x75\x53\x48\xda\x1f\xe9\x7d\x7c\xd6\xf5\xb4\xcb\xec\x6a\xdc\x11\xb0\xd2\xa8\xdd\x18\xdb\xb0\xe7\x46\xfa\xa9\x0b\x28\xc8\x9d\x57\xb2\x24\x66\x6a\xc2\x44\x46\x4b\x55\x17\x60\xa0\xd6\x15\x5d\x2e\x79\x66\xdb\xc1\xbb\x57\xc5\xe6\xfc\xbb\x2d\x57\x66\xc9\xef\x3f\x22\x15\x49\x3b\x93\x08\x01\x32\x3f\xfe\xed\xed\xd9\xe5\xfd\x41\x93\x7c\xfc\x11\x60\x03\x73\xff\x6a\xc0\xb9\x53\x57\x55\x76\xae\xf4\xab\x35\xcb\x6e\x7a\x81\x71\xc5\xb4\x95\x72\x27\x81\x46\x35\xc9\xcc\xc3\x46\x21\x3e\xfb\xe9\x8a\xbc\x7e\xf5\xdc\xe7\x31\xa8\x29\x39\xb3\x82\x4e\x6c\xf5\x48\xc8\x5c\x35\x49\xdb\xd9\x7a\x7e\x74\x2e\x2f\xa5\x5e\x9b\xeb\x79\x74\x4a\xe6\x47\xaf\xa1\x3e\xdb\xfc\x08\x8b\x87\x9e\x63\x9e\xc0\xfc\x68\xda\x6c\x3e\x36\xb7\x9f\x24\x06\x13\x26\xea\x98\xea\x36\x69\x9e\x8a\xfd\x68\x17\x12\x7b\xcc\x2e\xea\x20\x2f\xc4\xa2\x5c\xbe\x92\x42\xb0\x0c\x22\x3e\x9b\xf6\xd9\x5c\xac\xf0\x4d\xbd\x1e\x9f\xe3\xef\x66\x6f\x7a\xa6\x40\x57\x0e\x17\xe4\xbb\xd9\x1b\xb2\x91\x39\x8b\x96\x8e\x8c\x63\x31\x1e\x63\x51\x78\x69\xc3\xbc\xc8\x9c\xb7\xe6\x1b\x46\x0c\x4e\x92\x85\x6b\x70\x9e\x2c\x76\x69\x1f\x8b\x3c\x83\x7e\x23\xf4\xdb\x79\x45\x7d\x2d\x15\xe4\x84\x2c\x18\x81\x74\x10\x2d\xa3\xf6\x25\x46\xb3\x75\xd8\x7b\xdd\xf6\x88\x57\xe8\x59\xd2\x84\x6f\xca\x0a\xaa\x8d\xdb\x6c\x15\x50\xb3\x45\x06\x08\x56\xca\x7c\xa2\xe5\xc4\x3e\xd2\xb1\x66\xe0\x25\x04\xbb\x57\x88\x62\xeb\x1c\xd6\x41\xb2\x0a\x26\x57\x98\xb5\xe7\x6c\x51\xaf\x56\x86\x15\x97\x75\x55\x4a\x65\x50\xbf\x1b\x41\x8d\x4a\x70\xf0\x7d\x5d\x94\xcb\xf3\xab\x0f\xef\x4b\x2d\x6b\xfd\xea\xe2\xfc\x43\x2f\xfd\xfa\x6e\xf6\xa6\xfd\x00\x4a\x12\x46\x8e\x86\x24\x13\xf8\x0a\x93\x78\x68\xc5\x08\xfb\x94\x15\x75\x1e\xbf\xad\x40\x8d\xce\xaf\x3e\x4c\xc9\x35\x16\x14\x3d\xb5\x02\x81\xad\xc9\x2f\x15\x73\xf3\x01\xa9\x83\x1c\x70\x86\xc1\x97\xe0\x42\x8b\x4d\x4a\x41\x8b\xfc\x6e\xf6\xe6\xf5\x27\x94\xe4\x6c\x4b\xfa\x77\x50\x8c\x97\x42\x3d\x5a\x03\xf1\xeb\x5a\x08\x56\xfc\x32\x29\x5d\x06\xc8\x54\xd3\x8b\x25\xcd\xd8\x8c\x6a\xb3\xae\x21\x60\xde\x79\x04\x01\x5d\x31\x50\x34\x08\xfb\x64\x64\x2e\x90\xa5\xc1\x98\xe1\x6e\x5c\x94\x53\xc0\x71\x78\xbb\x97\x4b\xc1\xb7\xa2\x32\xd5\xda\x20\xbf\xb9\xcf\x65\x25\x57\x15\xdd\x80\x8c\xcc\x85\x2f\x9a\x1a\x45\x69\xaa\xb3\xb5\x67\x2c\x5a\x3e\xf5\x12\x9e\x60\xda\xb0\x98\xa9\xad\x4c\x25\x18\xcb\x61\xc2\x0d\x3e\xb1\x66\xc1\x4a\xa2\x60\x36\xdb\xb1\x8e\x50\xc7\xab\x1a\x0e\x06\xf9\x7d\xf2\x96\x55\xe6\xa4\xef\x98\xc1\x0b\x73\x49\xb7\x43\x26\x5d\x53\x91\x9b\x4b\x26\x32\xb9\x01\x21\xd7\xaf\xbe\xc1\x29\x5b\x40\xd8\xde\x7e\xd8\x94\xac\xb5\xe2\xbb\xf5\xa0\xdc\xb4\x4d\x55\x0d\x42\x2e\x7c\x39\x03\x23\xaa\x36\xfb\xf5\xbb\x08\x8e\xe0\xa4\x56\x35\x2d\x8a\xa8\xb5\xdb\x28\x7b\x39\x24\x37\x4e\xa7\xd3\x27\x07\x26\xe6\x19\x64\x43\x6a\xf2\x51\x94\x15\xbf\xe5\x05\x5b\x0d\xa3\xfc\x91\xc7\x4e\xcd\x65\xc2\x7a\xa6\xf9\xa9\x43\x1b\x66\x93\x21\x6e\x0c\xb1\x2c\xa6\x75\x30\xfe\xe7\x45\xb9\xfc\xd9\x12\xb3\xe8\x9d\x57\x5b\x95\xe9\x22\x24\x79\xe1\xe3\x50\xe9\x5a\xc2\xf5\x75\xe8\xc3\x84\xb2\x6d\x6a\xa8\x6e\x8d\x8d\xcd\x5e\x2b\xa3\x7a\x64\xa8\x2a\x20\xbd\xb0\x98\x74\x7c\xac\x90\x63\xd1\x12\x8f\xd8\x0e\xe2\x42\x19\x35\x51\xaf\x19\xaf\x88\xbc\x8b\x1a\x73\xf7\x6f\x86\x39\x45\x56\xd9\xe2\xde\xfe\x05\x81\x00\x71\x6f\x62\x7c\x00\xa3\x7e\xed\x8e\xa5\x39\x22\x7b\x42\x40\x2e\x5d\x97\x1e\xb3\x7a\xa3\x86\x94\x05\x15\x71\x03\xe7\x43\x65\x3e\x58\xf6\x52\x56\x19\xfb\x30\x7b\x33\x6c\xe5\x6e\x34\x61\xf8\x4f\xc0\xe5\x4c\x13\xf3\x95\x14\xd0\x9c\x25\xb8\x2b\x06\xcc\xbd\x07\x83\xe6\xee\xc2\xda\x7a\xef\x6c\x89\x6a\xcb\xae\x27\xc1\x6c\xb2\xb2\xb1\x49\x51\xfc\xc4\x4e\x49\x53\x32\x93\x4a\x71\x83\x9f\x56\xa7\x32\xcc\xcc\x5e\x90\xfc\x94\x5c\xe1\x72\x65\x45\xde\x4a\x69\xb4\xcf\x06\x86\xf0\x45\x1a\x86\xc9\x4b\xfb\xfa\x93\xbe\x96\x96\x59\x19\x19\x6c\x43\xab\x7e\xf9\x19\xf9\xdc\xde\x73\x2d\xf9\xcc\xb1\x06\x42\xc9\x97\xcf\x17\x3c\x5e\xee\xcf\x3c\xe4\xca\x7a\x43\x47\x2d\x11\x0a\x2d\xb6\xad\xa9\x20\xcc\x32\x55\xcb\xa8\xb1\xdc\x3d\x54\x5f\x8f\x03\x13\x56\x65\xfb\xb5\xc0\x3b\x6c\x82\x76\xed\xea\x3f\xc3\xc2\xd6\xf2\xce\x17\x27\x96\x4b\xcf\xcf\xec\xdb\xa3\x5c\xbe\xb2\x56\xe2\x1c\x90\xc3\x36\x17\x01\x59\xcf\xd5\xbe\xb6\x36\x7d\x28\xb6\x6e\x0e\xbf\xac\x5c\xa7\xa1\x0f\xb3\x37\x51\x8e\x66\x94\x8e\xf0\x24\x9f\xa5\x4f\x31\x11\x4b\x8f\xc7\xb8\x2b\x76\x0c\x3c\xc5\x3d\x69\x25\x76\x88\x0a\xf6\x16\x1c\x4d\x52\xb0\xb2\x5c\xab\x55\xe6\x0d\xda\x9d\x58\xd6\x76\x62\x5b\xb1\x38\x9e\xe7\xc6\x5c\xcc\x54\xb4\x41\x97\x01\xb9\xb5\xb1\x1b\x8d\x52\xba\xaa\xf2\x5e\x9d\x34\x0c\x70\xe9\xc4\xab\xf9\x11\x0a\x58\xf3\x23\xec\x62\xb0\x90\xf1\x2b\x6c\x6d\x3c\xb0\x82\x8a\xa9\x52\x0a\x43\xb6\x2c\x5f\x36\xf7\x17\x66\xc1\x17\xee\x94\xb2\x87\xf7\x25\xee\x30\x2e\xe1\xfc\xea\x83\xd1\xf8\xf0\x39\x7c\x4f\x6c\xea\x45\xad\xed\x98\xf6\xfb\x63\x73\xc3\xf5\x10\x9a\xe4\xbc\x62\x99\x2e\xb6\xd1\x22\xfb\x66\x65\xc2\xbd\xdf\x9e\x5f\x33\x24\xca\xf1\xa1\x75\x41\x59\x32\x5a\xa9\xb0\xc5\xda\xc5\xcc\x19\x73\xb8\x58\x81\x1f\xcb\x8c\xfc\x8b\x33\x8f\x82\xae\xa3\x08\x8d\x4d\x59\xb2\x6a\xc3\x95\xe2\xb7\x8c\xbc\x7d\x1e\x08\x65\x0d\x7e\xe3\x09\xdd\x83\x54\xfd\x20\x95\x36\xa4\x46\x57\x34\xbb\xf9\x6e\x5b\xd2\xfe\x1a\xf5\x06\xc7\x23\x8f\x91\x57\xbb\x8a\xa2\x51\xd5\xf0\xa7\xb7\x5c\xd4\x51\xc3\x47\xe6\xe6\x08\x6f\x08\x28\x4d\x1e\x17\x5b\x52\xdc\x2e\x5f\x8e\xcd\x39\x69\xbd\xb5\x79\xc5\x7d\x98\xa1\x51\x23\x67\x95\xfc\xb4\x7d\x6d\x6d\x9d\x57\x85\x59\xc6\x40\xd6\xfe\xdd\xec\x4d\xf7\x04\x71\xba\x10\x97\xfb\x03\xe5\xfb\x58\x11\xb6\x59\xb0\xdc\xdc\xde\x9b\x7a\xc1\x26\xa5\x79\x83\xf5\x1b\x29\xd2\x7e\x55\xda\x85\x36\x78\xf3\x17\xa5\x86\x32\xf8\xaf\xcc\xc0\xba\x3c\x40\xb0\xe9\x99\xa2\x25\xf0\x20\x2c\xa2\x2c\x0d\xc0\x13\x08\x44\x65\x25\xb1\x4a\x57\xb1\x25\x99\x99\x91\xd4\xd8\x6b\xb1\x2e\x95\xae\x18\xdd\x84\xfa\x7f\x03\xa1\xe3\xe3\x78\x67\x13\xbb\x36\x92\xad\x29\x07\xb5\xfe\xaa\xdd\x5c\xcc\xaf\x70\x19\x82\xdb\x76\xcd\xb0\xd5\xed\x3e\x97\x4a\xef\x21\xf8\x8e\x8b\xab\xad\xc8\xb0\xe6\xc6\x41\xb0\x6f\x3d\x79\x9a\xe0\x45\x3a\x6e\xa2\xd9\x70\x01\x55\x34\xc0\x44\xe3\x3a\x00\xa0\xd9\xde\xbb\x5f\xbc\x48\xda\xf8\x99\x8e\x03\x14\x8d\x4d\xdb\x80\x71\x4a\xc8\x5b\x79\xc7\x2a\x27\x9c\xad\x0c\x95\xab\x58\x5e\x67\xd8\x10\x74\x52\x97\xe0\xdf\x11\x99\x19\xfa\x03\x5f\xad\xfd\xd8\x38\x13\x32\x4f\x3a\xff\xd8\xec\x23\xa9\x15\x5d\x31\x48\xce\x35\x3a\x1c\xf8\xa0\x4b\xb2\x91\x15\x72\xbb\x16\x11\xfd\x42\xdd\x83\x80\xbe\xfd\xf2\x40\x5b\x40\xfb\x81\x6e\x4b\x00\x8a\x58\x51\x74\x92\x68\xa7\x41\xce\x47\x72\x86\x92\x40\xc1\x6f\x8c\x2a\x63\xe6\xa3\x55\x0e\xb1\xfc\x9f\x0a\x2a\xc8\x09\x9f\xb2\xe9\x29\x79\xfb\xa5\x1b\x99\x6a\xdc\x49\x73\x9b\x33\xa2\x65\xcc\x70\x11\xd8\x77\xec\x9b\x03\x69\x5c\xc8\xa8\x40\x0a\xa5\xdc\xc2\xfa\x22\xa7\x87\xda\x05\x12\xc6\xa1\xb6\xa9\xe0\x30\xbb\x40\x87\x8c\xab\x92\x42\xd7\xe1\xea\xfb\x5b\xb9\x7a\xcb\x6e\x59\xac\xc7\xd9\xde\x7d\x75\x63\x5b\x77\x92\x14\x72\x45\x0a\xf8\xda\x25\x57\x07\x9a\x52\x82\x53\x78\xa3\x6e\x73\x33\x37\x28\xcb\xbc\x77\x76\xf4\xf7\xcb\x25\x5a\xd0\x2f\xc4\x52\x9a\x7f\xa1\x01\x9d\x2d\xea\xd5\xfc\x28\x6d\xb1\x2d\xe4\x0a\xf5\x27\xb6\xe1\x5a\x37\xb2\x9c\x79\x99\x61\xb2\x8c\x94\xbc\x64\xa7\xae\xc8\xa3\x51\xba\x40\xb1\x46\x23\xf1\x66\x93\x80\xfc\xfc\x48\x67\x84\x7d\x62\x99\x81\x19\xda\x4b\x5b\x46\x7c\xf2\x7e\xb9\xfc\xc7\xf4\xf0\xcb\xf9\x8e\x96\x57\xfc\x5f\xcc\x4b\x2a\x43\x8e\x61\xf7\x99\xc6\x48\xa2\xf8\xbf\x9a\xa8\x31\x2f\x56\xc4\x75\xb0\xd2\x19\x3d\x36\xb4\xf4\x5e\x8c\x82\x56\x2b\xc3\x4d\x64\xbd\x5a\x1b\xc8\xad\x65\x81\x4d\x91\x84\xae\x30\x44\x0e\x6c\xd7\xc8\xda\xba\x8d\xcf\x53\x42\x7e\xa2\x95\x61\x3c\x2f\x31\x41\xca\x67\x6f\x98\x45\xba\x9a\xa3\x7e\x0f\x66\x15\x59\xbc\x97\x5d\x46\x8d\x84\x9a\x73\x55\xd5\x00\x85\x34\x98\xd3\x9a\x92\x85\xd9\xc5\xec\x8a\xe9\x21\x66\xe7\xd6\xf8\x08\x80\x79\x09\xdf\x39\x30\xb2\x44\x78\x98\x1b\x74\x28\x80\x9d\xe3\x3a\x7e\x74\xda\xf6\x79\x22\xec\x96\x55\x5b\x5b\x7c\xcc\x2c\x4a\x04\x91\x5c\x4f\x03\x1f\x97\x7d\x06\x4c\xdd\x56\x38\x8f\x4a\xf1\xb2\xe0\xc0\xc4\x5c\x4f\xb6\xa6\x8e\xea\xfc\x88\x16\xc5\xc9\x93\xf9\x11\x74\x9b\xaa\x98\x82\xee\x5c\xc2\xee\xc7\xb5\x5c\x95\x51\x15\xc9\xec\x8d\x1b\x25\x50\x0a\x66\x37\x5a\xb2\xaa\x71\xce\x73\x67\x55\xa6\x8a\xa5\x0d\x90\xfd\x67\xbb\xbc\x4a\x64\xcf\xa5\x0e\x17\x1f\x88\x9d\xee\x12\xf3\xfc\xfc\xf1\x46\x79\x51\x33\xe8\xd0\xe3\x45\x16\x17\x9b\xf4\x04\xcc\x0a\xff\xbf\x46\xb9\x78\x02\x26\x2a\xb0\x36\xdc\x1f\x34\x97\x67\xd7\xae\x59\x45\x04\x3c\xc3\x27\xf9\x8e\x66\x37\x6c\x2f\xe0\xa3\x03\xc4\xcd\x33\x11\x28\x0b\xaa\xc9\xc2\xdc\x7d\x06\x71\x2f\x65\xba\xe1\x84\xb5\xad\xed\x96\x28\x70\x18\xe4\x9a\xf4\x1a\x62\x26\x95\x51\x94\x41\x7c\xd2\xeb\x38\x3d\xd9\x25\x42\xcd\x84\x5e\x89\x7b\x08\x90\xde\x54\x52\xe8\x43\xa1\xe4\x1e\x4a\x80\x69\x69\x7e\x36\xfb\x4d\xd2\x72\x37\xc1\x3b\x5a\x06\xc5\xea\x86\xe1\x63\xca\x48\x60\x64\x91\xd3\xc6\x0c\x67\xfb\x29\x02\x06\x43\x73\x48\x2e\xf0\x0f\x67\x7a\xbb\x37\xd4\x20\x9c\x7d\x38\xbc\x30\xfa\x3d\xce\xf5\x6c\xdc\x7d\xe7\xcd\x6d\xc6\xf4\x81\xaa\x4d\xb1\xdc\xa5\x8c\x4a\x7b\x22\x37\xd7\x94\x8a\x7c\x59\x17\x88\x9c\x48\xf5\xcc\x83\x70\xa9\x4f\x9a\xb9\x33\x90\x1d\xb9\x56\x44\xde\x09\x72\x31\x4b\x0a\x7c\x56\x84\xbd\x98\xa9\xfb\x10\xc6\xd9\xd5\xe5\xd9\xf5\xcc\x08\x94\x11\xd8\x52\xb1\x7d\x1f\x6b\xb3\x3c\xe9\xab\xe0\x31\xe9\xf1\x4d\xee\xc9\x2b\xcd\x32\x9a\x33\xab\xa8\x58\x31\x1b\x22\x02\x0e\xc3\x3b\xf8\x2e\x97\x9b\xb8\x97\xaa\xe4\xd9\x0d\xa1\x16\xed\xe0\xda\x56\xcc\x86\x95\x61\xc4\x18\xfc\x92\xc9\xa2\xe0\x0a\x84\x0f\x20\x08\xfe\x74\xa3\x62\x68\x63\xcb\x65\xe5\x9a\x6d\x58\x45\x0b\xbb\x2e\xea\xca\x1b\xa2\x09\xf7\xcd\x2b\xf2\xe2\xd9\xd7\x2f\xc8\xc9\x17\xcf\x9e\x7f\xf5\xff\xfe\xdf\xff\xcf\x8b\xaf\xbf\xfe\xf2\xeb\x27\xa9\x33\x2b\xa1\x53\x32\x5d\x14\xdb\x96\x84\xbe\xfb\x12\xe5\x8b\x32\x19\xb1\x53\x0a\x22\x4b\x56\xd1\x54\xc9\x50\xb5\x55\x9a\x6d\xd4\xd4\x9a\x8c\x6a\xc5\x14\xf9\xf2\xf9\x9f\x5f\x7c\x63\x96\xf3\xec\xdb\x6f\xbf\x3d\x35\x70\x2c\x18\x76\x47\xf6\x74\xd0\x9b\xf6\xce\x2e\xcf\x62\xd3\xba\x5d\xe2\xb6\xbf\xfa\xf6\x8b\xaf\x9f\xbb\xfd\xb9\xe4\x58\x21\xb5\x6d\x54\x4e\x2b\x5e\x6c\xcd\x21\x54\x72\x51\xb0\x0d\x9e\x43\xbc\x15\x2b\xce\x67\xb0\xbc\xa0\xa5\x6a\x24\x6c\xbf\xc7\x66\x43\xdf\xf9\xce\xa4\x2e\x6a\xde\x3c\x9b\x32\x0a\x73\x61\x34\x1d\x7e\xdb\xf2\x82\x3c\x7f\xf6\xec\xd9\xb3\x97\xcf\xbf\xfd\xf6\xdb\x6f\x63\xfa\x71\x69\x35\x5f\xf2\xbf\xa6\xff\xbe\xff\xeb\xa7\x49\xd3\xbc\x7a\xc2\x85\x9e\xc8\x6a\x82\xa8\x1d\x37\xe0\x99\x7b\x05\x72\x12\xa8\x22\xc3\xed\x6c\xfb\x0f\xa1\x22\x64\xde\xe1\x4c\x47\x15\xcb\x64\x95\x1b\xe4\xd3\x94\x27\x9c\x9a\x61\xd6\x05\x16\x92\xf5\x3a\x17\xbc\xc1\xab\x5e\xa7\xf6\x66\xd9\xf6\xa0\xec\x13\xdd\xa4\x9a\x4a\x37\x1a\x10\x68\xbc\x13\xa3\xe3\x58\x65\x68\x52\x70\x61\x38\xaf\x8c\x85\x2f\x74\x9a\x86\xc0\x56\x75\x01\x2e\xcf\x41\x8e\x89\x57\xed\xf1\xa9\xb0\x9e\xb5\x94\x37\xa1\x4b\x38\x61\x32\xd3\xb2\x9c\xa0\x56\xba\x63\x3c\x83\x0e\x96\xf0\x16\x83\x86\x36\x9c\xcd\x76\x89\xd0\xb2\xb4\x58\x18\xf7\xd9\x50\x88\x53\x80\xe6\xd4\x65\xc9\x44\xbe\x3f\xc3\x42\x6a\x2d\x37\x53\xe7\xea\xb5\x82\x8b\xa2\x4b\xe6\x7a\xda\x46\x6f\xb7\x2b\x76\x6a\x1b\xc6\x86\x8e\x64\x33\xbb\x55\xf8\x31\x43\x01\x6d\xc7\x10\x93\xba\x24\x5b\x59\x13\x75\xc7\x75\x9c\x89\x6b\x69\x17\x6a\x6d\x69\x0b\x46\x14\x76\x40\xb5\xcb\xc5\x5e\xea\xf8\x0a\x4b\x0b\x2d\x94\xb0\xab\x42\xf4\x1a\x82\x11\x17\xe2\x91\x16\x5b\xb2\xa4\x45\x81\x9a\x5d\xe5\xb8\x5b\x90\x5b\x0e\x33\x9f\xe2\x6b\xee\x38\x12\xa3\xd8\x9c\x76\xb8\xc5\x60\xb0\xa0\x2e\x58\xb0\xd3\xe6\xae\x23\x60\x0f\x35\x83\x79\x33\xc3\x79\xc5\x6f\x59\x6f\x4f\xea\xf3\xf6\x70\xb2\xe4\x05\x13\x41\x2f\x7c\x2f\x12\x35\xe6\x8b\x1c\x46\x26\x0e\xa1\x56\x68\xda\x40\x8a\x0c\x66\xda\x8f\x8a\x5d\xd8\xf0\xef\xdd\xb7\x71\x1f\x37\x04\x2e\xf2\x03\x6d\x3a\x7e\x49\x3f\x19\x9d\x2f\x97\x50\xa8\x50\xd6\xbd\x45\x70\x8f\xcf\x13\x0f\x3a\x24\xae\x18\xcd\xb9\x60\x4a\x3d\x2d\xf8\x2d\x33\xff\x00\x9b\xab\xac\xa3\x28\xed\xf2\x68\x1a\x6b\xeb\x89\x0b\x77\x7f\xb2\x07\xb6\x29\xb9\x10\x59\xc5\xa8\xb2\xb9\x61\xe9\xfe\xaf\x88\xf1\xec\x53\xc9\x2a\xce\x0c\x0a\xaa\xb2\xae\xb8\xac\x15\x94\x2a\xab\xa0\xad\x08\xb8\x13\xc4\xc4\xac\x92\xd8\xeb\x04\x94\x36\x19\xdc\xca\x15\xa9\x45\x6e\xe4\x34\x46\x6f\xb7\x10\xe7\x37\x25\xe7\xcc\xaf\xc8\x55\x80\xd4\x92\xac\x98\xc6\xac\x0b\x74\x4a\x62\x4b\x77\xfb\xb2\xd8\xd4\x76\x2d\xb8\x30\xd0\x4a\xfe\x59\xf3\xec\xa6\xd8\x86\x38\xfd\xed\xb3\x83\xed\xba\x60\x81\xb2\x21\x02\x6f\xe5\xea\xbc\x92\xd0\x5a\x3a\xa9\xdd\x25\x68\x34\x4c\xf3\x8e\x6d\x64\xb5\x9d\x55\xd2\xa0\xf9\x8c\xea\x75\x72\x96\x8e\xb5\x5c\xf1\x0d\xc4\xff\xbe\xa2\x45\xf6\x7d\x45\xcb\xf5\x0f\x54\xac\xce\x96\x3a\x7a\xd9\x06\xcf\xe6\x71\xf2\xfe\xb3\x01\x8c\x9d\xc3\xe9\x5a\xfe\x20\x95\x3e\xcb\x12\xe9\xaa\x3b\x17\x22\xfd\x6c\xc8\x9c\xc0\xa6\x6b\xa8\xac\x4a\x44\xaf\x79\x0b\xaf\x19\xba\x92\x8e\x9a\xd3\xc6\xb0\xdc\xe4\x29\xc8\x26\xb6\x80\x6b\xc5\x8a\x25\x39\xa1\xcb\x44\xe3\x22\xe0\x58\x76\xee\x35\xb7\x82\xb5\x9f\x8a\xa1\x0b\x17\x49\xea\x93\x29\xf9\x6e\xeb\xbb\xaa\x23\xb5\x8d\x4d\x09\x2d\x21\x55\x3c\x84\xbb\x51\xb7\x63\xcb\xc4\x3e\xcf\x51\x7d\xdb\x33\xe0\xf9\xd1\xf9\x87\xf7\xb3\xf9\x11\xd8\x0f\x8d\x90\x6e\x19\xd8\x1d\xb5\xd1\x1d\x45\x21\xef\x88\x92\x1b\xa8\xb0\x44\x8b\xa2\xcb\x39\x0e\x6b\x0b\x01\x67\x56\x73\x8a\x94\x13\x0a\x0e\xd1\x8a\x6e\x98\x0d\x44\xf8\xf0\xfa\xfa\xe3\x87\x4b\x33\xeb\xd9\xab\x57\xaf\x67\xd7\x53\x43\x7f\x63\xb3\xda\x81\x96\xce\x40\xaf\xfc\xad\xac\x21\x5a\xab\xcd\x26\x83\x4d\x5d\x5c\xce\x3e\x5e\xcf\x8f\x90\x73\xfe\xa5\x83\xbd\x01\x5f\x73\x92\x81\x76\xac\x7d\x57\xf6\xa0\x1a\x67\x3a\xc5\x60\x86\xf9\x11\xae\x29\xde\x8b\xdc\x45\xb2\xd8\x13\xd9\x59\x0c\x91\x56\xae\x58\x53\x05\xdd\x91\xb0\x19\x68\x59\x49\xd7\xe1\xa8\x4b\xa5\x8d\xa3\x12\x80\xce\x82\x11\x78\x9b\xf0\x99\x7d\xb4\x28\x9c\x8f\xd7\x2d\x2c\x79\x72\x81\xf7\xdc\xe0\x77\x6c\x4d\xa9\x05\xc4\xe6\x6c\x88\xa9\x21\x85\x87\x53\xd3\x5b\x9e\xa1\x59\x61\x56\x49\x2d\x33\xd9\xeb\x0f\x01\xfd\x32\x4c\x2c\xc3\x3c\xd2\xd2\x3e\x4e\x68\x6e\x23\x57\xac\x38\xbe\x61\x79\x87\xd9\x0f\x2d\x12\xa7\x46\xa0\x72\x97\x14\x90\xd8\x49\x42\x1f\xae\x67\x1f\xde\x5f\xff\xfc\xdd\xfb\xf7\xd7\xc8\xcb\x0a\xb6\xd4\x64\x51\x50\x71\x73\xa8\x5d\x20\xd8\xeb\xd5\x21\x8d\xff\x43\x43\x1c\xd4\xe5\x69\x77\xbb\x77\x81\x24\x52\x04\x3b\x8e\xab\x9c\xe6\xfd\x76\xc7\x2d\xb2\xa4\xf7\x1a\xf1\x63\xfe\xb1\xdb\xe9\x29\x29\x18\xbd\x4d\x28\xc8\x8d\x42\x00\x06\x96\xb5\x94\x96\x75\xef\xcc\x68\xe4\x92\x43\x25\xaa\x04\xc4\x2e\x66\xb7\xb1\x1a\x11\x5d\x50\x7b\xf1\x07\x82\x1a\x0a\x27\xde\x4b\x75\x21\xa0\xdf\x43\x2a\x55\xa7\x53\x4c\x71\x84\xe0\x83\x2b\x01\x78\xce\x8a\x68\x8d\x87\xae\x05\xed\x4d\x92\xd6\xdd\xbb\x17\x63\x85\xff\x4b\x99\x33\xe8\xa7\xd5\x87\x03\xaf\xc3\x07\x5e\x5d\x9c\x7f\x30\x0f\xed\x67\x32\x1c\x83\x05\xc4\xcd\x3e\x31\x62\xa3\x55\xc7\xa1\xf5\x56\xdc\x93\x6a\x14\xfc\x0d\xdd\xba\xf3\xb2\xf6\x42\xc7\xbf\x21\x3c\xd1\xf0\x30\x60\x30\x3e\xba\xcd\xfe\x1a\x37\x8b\xb9\xdc\x6e\x02\x1e\x19\xdf\xdd\x25\x66\x13\xff\x0c\xd9\x0b\x4b\xca\x0b\xa3\x2d\x5f\x88\x85\xac\x45\x6e\x24\xae\x94\x01\xb3\x2d\xac\xbd\x49\x3c\xd8\x86\xf3\xc7\xf3\xd9\xd3\xeb\x57\x33\x92\xce\xe8\x10\xb9\x4d\x03\x01\x46\x1c\x44\xf4\xa0\x70\x12\x73\xdb\x83\x18\xe4\x85\xa3\xa8\x16\x20\x08\xaf\x2a\xa6\x4a\xdb\x24\xc8\x95\x5c\x60\x59\x5d\x71\xbd\xf5\x9c\xd5\x51\x8b\x5a\xb1\x65\x0d\x57\x92\xde\x4a\x1e\xb7\x37\x67\x19\xb4\xe2\x01\x9e\x9b\xd5\x10\x48\x4c\xe4\x72\x69\x7d\x45\x28\x8f\x99\xd5\x56\x15\xcb\xf4\x4e\x62\x26\x79\x13\x2f\x70\xb0\xa0\xd9\xcd\xa4\xd5\xc7\xfb\xd4\x95\x49\xf0\x8c\xcd\x9a\x04\x6d\xaf\x27\x88\x90\xd2\x8e\x18\xa5\x02\x41\xe6\x47\x3a\x2b\xe7\x47\x20\xf0\x51\x80\x6f\x7c\x9a\x00\xd0\xa1\x08\x1a\xdd\x3f\xe6\x23\x56\x90\xa5\x33\x25\xd7\x4d\x8c\x3f\xc6\x73\x03\x16\x20\x28\xe0\xb0\x4f\xbd\x2d\x34\xa9\x5c\x0a\x29\x20\x7c\xd8\x9b\x6a\xac\xda\x67\xc3\x88\x95\x5a\xbb\x30\x7f\x83\x25\xe7\x3f\xbc\x9a\xb5\x82\xfd\xb2\xf2\xe5\xf3\xe7\xd1\x04\xb5\x3a\x2f\x5f\xbe\xf8\xe6\x14\x86\x7c\xf1\xe7\x6f\xf1\x1f\xcf\xbf\x6c\xfe\xf5\xcd\x33\xfc\xd7\x8b\xaf\xbe\xfa\xd2\xfe\xeb\xc5\x8b\x17\xfe\x5f\x7f\x8e\xc9\x33\xe9\xcb\xd7\x2e\x5c\x6b\xce\x6d\x26\xd1\x16\x95\xc9\xcd\x22\xa8\xbb\xe3\xce\xf4\x94\xa0\xa7\xc7\x21\x7f\xa2\x98\xc5\xcc\xcb\x36\x22\x47\x7b\xbb\x73\x7b\xfa\x53\x8c\x3e\xd9\x5b\xbc\x45\xb0\x78\x44\x1a\x19\x54\x3b\xc3\xac\xa4\xe7\xf1\x8e\x6a\xe4\xc4\x43\xe1\xde\x4b\xe8\x28\xdf\x49\xc8\x04\xd6\x97\xf8\xc5\xbe\x39\x4d\x41\xbb\x7b\x0b\x74\x52\xd0\xf7\xb5\xbe\x27\x09\xdd\x7b\xf2\x91\x69\xa8\xac\xf5\x4a\x86\x34\x14\x14\x82\x7e\x2a\xaa\xe5\x48\x45\x7f\x51\x2a\x2a\x2d\x22\x3c\x0e\x19\x95\x60\x22\x61\x3a\xcb\x8f\x8f\xa1\x5c\xb6\xc8\x69\x95\xdb\xa4\x00\x2d\x6d\xf2\x15\xe0\x4c\x6c\x5a\x44\xa3\x5c\x62\x18\x1f\x18\xe2\xb2\x5a\xc3\x61\xa1\x29\x40\x67\x79\x2b\x4d\xcf\x00\xc0\x1c\xa7\x21\xd4\x29\x5f\xdd\xf9\xe5\xd5\x2e\x0d\x3f\x84\x40\x47\x0f\xca\xd2\xec\x53\x20\xfb\x5f\x7f\x89\xff\x1f\x69\xf8\x48\xc3\xa3\xbf\xc6\x69\x38\xa3\xba\xae\xd8\x39\xd3\x2c\xd3\xef\x6f\x59\x55\xf1\x7e\x07\xda\x9b\xd8\x43\xbe\xc7\xb6\x96\xe0\x8e\x85\xef\xec\xf4\x24\x87\xa1\x89\xac\xa7\x05\x35\x8f\x49\x41\x68\xad\xe5\x04\x87\xb2\x9c\x94\x05\xd5\x50\x05\x39\xa3\x25\x05\xea\xc6\x21\x5b\xfc\xc7\x26\x73\xcd\x63\x52\xdc\x7d\x49\x28\xfa\x16\x89\x62\x25\xad\x20\xf0\x16\x58\x0b\xd0\x5a\x21\x89\x2a\x69\xc6\xd4\x29\x38\x2c\xcb\x82\xfd\x85\xcc\x8f\xae\x2e\xcf\xae\xdf\xd4\x45\xb1\xfd\x00\x21\x02\x7f\x05\x9f\xe9\xbb\xb3\xab\xff\x11\x7e\x09\xce\x92\xd3\x0f\x0c\xca\x4a\x5d\xd5\x25\x10\x96\xb7\x32\xbb\xf9\x2b\xc4\x8b\xce\x8f\xc0\x9b\x1b\xb5\xa2\x41\x68\x29\xd6\x47\x3a\x42\xf2\x89\x89\x82\x86\xce\x59\x60\x9d\x12\xb6\x29\x35\x38\x17\xa4\x8d\x2c\x0d\x92\xf5\x5a\x30\x3a\x50\x51\xb6\x2f\xf8\x9e\x0e\xa8\xea\xfc\x26\x18\x1b\x1e\x2d\xc6\xff\x9b\xc5\x39\xfa\xad\x59\xb6\x9e\x94\x15\xbb\xe5\xec\xae\xc3\x24\x69\x5f\xae\xa6\xd1\x03\x4c\x9f\x56\x54\x1b\x4d\x1f\x60\x47\xa9\x87\x9f\x64\x75\x43\x2b\xc3\x66\xfe\xea\x72\x7f\xff\xb6\xfd\x3f\xff\x6a\x4f\xa3\x33\x26\x6c\x67\xf7\x6e\x2f\x36\x32\xbd\x62\xc0\x28\x96\x06\x45\xcc\x35\xcd\xeb\xcc\x96\x2a\xa4\x79\xcc\x88\xd8\x79\x46\x85\x84\xb0\x85\x8b\x59\xff\x11\x35\x43\x9b\x62\xf7\x8d\x13\x1b\x73\x5d\x76\x52\x45\x56\x15\x8d\xb2\x67\x21\xc5\xe4\x7d\xc9\xc4\x95\xa6\xd9\x8d\x5f\x44\xd0\x54\x01\xae\xde\x89\x1f\x32\xc9\x59\xc5\x6f\x59\xee\x87\xc6\x26\x85\x70\x23\x83\xb3\xc5\x1d\xdd\xaa\xc0\xee\x74\xba\x93\xd6\x0a\x16\x48\x97\xa3\x1a\x09\xc7\x4f\xd6\x21\xb1\x86\x95\xd8\x4f\xe7\xc9\x74\xed\x2e\xf0\xaf\x98\x60\x15\xcf\xfe\x76\x3e\x1b\x9a\xd9\xf3\xfd\xee\x13\x16\x49\x14\xb1\xbf\x90\xbf\x9d\xcf\x88\x92\x2e\x1c\x96\x64\xb4\x8a\x17\xa9\x01\x64\xca\xa5\x38\x3e\xd6\x44\x21\x55\x81\x67\xe5\x72\x09\x46\x6a\x73\xe7\xd0\x6f\xbb\x91\x39\x83\x84\x70\x90\x91\xfe\x76\x3e\x43\x51\x34\xe1\x71\x84\xcc\x1c\x66\xee\x16\x13\x39\xcb\x9b\x18\x00\x23\xe2\xc0\xdb\xca\x4a\xde\x1a\x72\xbd\x60\x1a\x2c\xe4\x4d\x21\x90\xc4\x3a\x85\xf7\x4a\x4c\x1f\x9c\x67\xbd\x66\xb4\xd0\xeb\x7b\x9a\xc8\xf0\x61\xa3\x3f\x1c\x68\xa3\xc3\x07\x67\x71\x69\xa0\x53\x0e\xc0\x27\xad\xcb\xda\x71\xbf\xde\xcb\xfa\x43\xf4\x29\xa7\xf1\xfb\xf2\x11\x82\x16\xe4\xce\x7a\xc5\x9d\xd3\x3b\x6e\xe8\x59\x42\x81\xc9\x5b\x9e\xd7\xb4\x20\xaa\x5e\x18\x35\x40\x0a\x66\x9d\x66\x0b\xe6\x98\x70\xce\xc4\x94\xec\x6a\x2a\x89\xb2\x93\x06\x3f\x21\xd2\x04\xa8\xa4\xe3\x54\xa4\x94\x8a\x43\x18\xfe\x11\xd9\x75\xc8\x2b\x17\x50\x2d\x88\xcc\xb2\x3a\x3a\x2b\x17\xa4\xa4\x95\xe6\x59\x5d\xd0\xaa\xd8\x9a\x03\x61\x4a\x99\x65\x34\xae\x19\x08\x85\x86\x24\x25\xec\xdc\xa1\x74\x45\xb9\x60\xf9\x94\xa4\x74\x9f\x46\x4d\xa4\xb6\x1f\x76\x08\x83\x53\xa2\x18\xf3\x19\x82\x85\x5c\x1d\x66\x55\xec\x17\x42\x69\x47\xdb\xc7\x01\xfd\xfc\x92\x91\x12\xc3\x66\xe8\x11\x22\xcd\xea\xe2\xbf\x74\xc4\x51\xdc\x5b\x86\xf4\x79\x47\xaf\xb1\x2a\x4e\x2f\xc9\xbc\xd8\x79\x00\xb5\x7e\x60\xfe\x93\x1d\x51\x0d\xd0\xbc\xb7\x02\x4a\xab\xf0\x8b\xad\xcd\x83\xde\x2b\xdb\x6e\xdd\x20\xf5\x52\x56\x3b\xaa\xff\x34\x15\xb6\xdb\x56\x27\x5b\xb5\x3a\x6c\xc5\xa7\x95\x90\xe6\xab\x26\xb5\xf2\xf8\x98\x5c\xcc\x7e\xbc\x22\x79\xbd\xd9\x44\xe3\x4a\xfd\x36\x5c\xb4\x9c\x13\x2b\xdc\xbd\x2f\xb6\x64\xb1\x6d\x65\x03\xb6\x9d\xd6\xb1\x49\xdd\x5e\x37\x75\xa1\x79\x59\x04\x35\x68\xb0\x58\x28\xa9\x15\x46\x8e\x99\xff\xb9\xaa\x0f\x98\xb5\x9d\x92\xad\x2c\xe7\x51\x91\x44\x3c\x05\x86\x88\xd8\x0f\xb0\x4e\xd0\xef\xee\x2a\x5a\xa6\xfc\x3f\x08\x4e\x10\xde\x8e\x8f\x9f\x1e\x1f\xe3\x74\x56\x78\x23\x6b\xf0\x1d\x39\x59\xf7\xf8\xf8\xe9\xff\x32\xb0\x78\x7a\x7a\xcb\xf4\xfa\x8b\xe3\x08\x57\xb1\xb5\xe2\x1c\x0c\x76\xaa\x6b\xc0\x69\x2d\xd8\x8a\x0b\xf7\x46\x33\xdd\xf1\xb1\x6d\xa8\xaf\x64\x2a\x42\xac\x01\xe1\xf1\xb1\x7d\x77\xc8\xe4\xe0\x80\x78\x79\xab\x3a\xea\x28\xc4\x2f\xae\x9f\x78\x56\xb1\x25\xff\x34\xfc\x9a\xe0\x78\xe7\xdc\x6b\x1f\x31\x04\x01\xf3\x4f\xb6\xca\x85\x6f\x99\x9f\xa2\xee\x3b\xe1\x15\x90\x4f\x0e\xa6\x18\x23\x7a\xd5\x5c\xad\xd1\xc7\xbc\x89\x58\xca\x3a\x61\xa5\xa6\xe4\x52\x6a\x60\x9a\x84\x89\x5b\x5e\x49\xb1\x01\x5e\x24\x6d\x63\x26\x2a\xc8\xc2\xc8\x82\x1b\xa6\x69\x81\x18\x28\xab\x6c\xcd\x0c\xa1\xd7\x32\xde\x51\xcc\x0b\xb5\x28\x20\xd2\xd2\x90\xe5\x8a\x53\xcd\x8a\x6d\x1b\x77\x64\x5d\x85\x69\xce\x60\x35\x97\xd9\x4d\x5c\x89\x07\xbe\x6e\xeb\xdc\xda\x28\x0e\x73\xd6\x19\x2d\xf8\xf1\x71\x58\x21\xd5\xcc\xda\x08\xc5\xc1\x63\xd1\x7b\xe3\x02\xce\x8f\x8f\x35\x2d\xdd\x44\x21\xe6\x98\x17\xdc\x1b\x67\x3e\x60\x7b\x7f\xc0\x89\x5b\xda\x1b\x34\x70\x91\x78\x2e\x28\x1e\xc3\x25\x78\xde\x90\x18\x25\x23\xd6\x2a\xa6\x32\x2a\x14\x56\x43\x69\xdd\x2f\x49\x6e\x59\xc5\x97\x5b\x5b\x65\x08\x1b\x81\x81\x35\x0e\x9f\xb1\xe1\xc0\x51\xfa\x6a\x65\x73\x43\xf0\xac\xd8\xdf\xa0\xb6\x59\xa5\x96\xe4\xd9\x81\x8a\x13\x2f\xf9\xe0\x6c\xfc\x8b\xd9\x85\x97\xd6\xa5\x97\xc5\xda\xd1\xbf\x4d\xc5\x5d\xc4\xc1\xb8\xfd\x19\x4b\x76\x36\x57\x52\x36\x25\x5b\xa6\xe4\x7d\x89\xb1\x2a\x84\xba\xda\x64\x46\x71\xaf\x36\x36\x92\x23\x2e\xb0\x7b\x6b\x08\x86\x7f\xe2\xcd\x34\x8a\x58\x29\x65\xd1\x12\xb7\x05\x2f\xc8\x49\x2d\x14\xd3\x4f\x0e\x16\xba\x0d\xb4\xde\x5d\x7f\x1c\x04\xa9\x77\xd7\x1f\x1d\xda\x98\x7f\x42\xb5\x15\xed\x56\xd8\x4a\xba\x9e\x92\x2b\x16\x8f\xba\xb5\x50\x34\x5b\x31\x73\x04\x89\xe6\x5f\x7d\x75\x78\x41\x1a\xcc\x89\x3c\xf0\x4a\x1c\x5f\xc4\x9e\xea\xbc\x10\xa4\x62\x58\xb4\x33\xee\x7d\x28\x82\x90\x6f\xcc\xd0\x6b\x1b\x97\x89\x90\x96\xfe\xd9\x98\x23\x88\x8e\x0a\x3d\x01\x51\x04\xa8\xe4\x8d\x6f\x2b\xe6\xe3\xb2\x0d\x68\x21\xf8\xec\x59\xab\xb0\xa2\x7b\x7d\x85\xbb\xea\x29\xf6\x79\x8f\xf0\x4f\xf7\x86\x81\x09\x79\x17\xed\xe1\xde\xc0\xe3\x8a\x27\x2e\xec\xf7\x46\xae\x73\x6b\x37\x5c\x3c\x0a\x08\x86\xd1\x20\x2d\x0b\x3f\x57\xe4\xac\xd6\xf2\x60\xe2\x80\xef\x7a\xc3\x0b\xcd\x2a\xa8\x55\x9b\x0c\xcd\x1c\x3e\xcf\x39\x13\xdb\x61\x11\x9e\x17\x89\xe7\x92\xd1\x9d\x5d\xf1\x88\xae\xa0\x55\xce\x04\x47\x1a\xea\x4c\x0b\xce\x2f\xb5\x17\x81\xb9\x13\x6e\x99\xb4\xa9\x05\x8a\x7d\x6f\x0c\x65\xad\x18\x84\x0c\xfe\x1f\xaf\x5f\x5d\xfb\x51\x71\x7e\xab\x34\xa3\x39\x3c\x0c\x7c\xc1\xb3\x75\x0e\x99\x7d\x6b\x56\x1d\x1a\x7a\xee\x16\xf9\x56\x66\x37\x6f\xd2\xb1\xc4\xbb\xf7\x7f\xff\x21\x77\xfd\x0d\x7b\x0b\x9b\xc4\xb8\x17\xc4\xf6\x63\x40\x09\x81\xfa\x53\xf2\x3f\x8d\xd8\x4b\xb7\x50\x0d\x12\xe3\x9a\x20\x1d\x09\xc4\x15\xeb\x88\xf3\xa3\x9d\x29\x26\xde\xf7\x8f\xeb\xc0\x53\xe5\x57\x73\xb2\x0c\x84\x9c\x30\x54\x74\x63\x30\x05\x4b\xb8\x0a\x2d\x7d\xe8\x7b\x42\x8a\xd2\x46\x97\xae\x0c\x71\xa3\x24\xe7\xcb\x25\xab\x98\xd0\xa4\xa4\x7a\xfd\x24\x64\x28\x4f\xab\x5a\x3c\xfd\x64\xed\x3a\x66\xdd\xf7\x25\x16\x06\xc2\xb3\x4a\x2e\xd8\x01\xb4\x39\xf1\xa4\xcf\xc8\xe5\x1b\xb6\xeb\xe5\x8d\xa2\x31\xe5\xda\x17\x67\xa1\x5a\xb3\x4d\x89\x16\x11\x9a\x81\xca\xdc\x0e\xa9\x85\xc3\xe1\x4b\x5b\xa0\x36\x51\xb4\x83\xde\x52\x0e\x3d\x14\xa7\xed\xf2\x2c\x1b\x7a\xe3\xaa\xab\x40\xbc\xbd\x2d\xb4\xc5\x6f\xad\xee\xe9\x4e\x3f\x61\x96\xcb\x30\x8d\x96\xe5\xa7\x50\xaa\xcb\x5c\x27\x98\xe6\xd5\xec\x63\x78\x28\x5f\x3f\xdb\xdc\x9b\x68\x1b\x68\x0e\x4d\xca\xb8\xd8\x7f\xa6\x0b\xf6\x00\xe8\xd8\xce\x5c\x7a\x6c\x0b\xc6\x50\x53\xe3\xd9\x69\xc0\xba\xc0\x05\x5c\xbb\x34\x0c\xef\xfa\x48\xca\xa1\xa0\x5c\xaa\x35\x8d\x9e\x20\x5c\x2f\x24\x60\x45\xd1\x66\xb9\x56\x13\x8c\xf3\x6f\xa3\x04\x9a\x43\x74\x27\x35\x25\x3f\x99\x83\xb3\x65\x8c\x9a\xea\xce\xdc\xa8\x97\xcd\x45\x3a\x4d\x67\x23\xba\xda\x65\x66\x46\x73\x9d\x6c\x45\x35\x59\x6d\x1d\x65\x09\x2a\x37\x6f\x64\x6d\x3b\x81\xda\xa0\x6a\x8c\x82\x7b\x2a\x64\xbc\x2c\xab\xac\xdc\x88\xa5\xab\x81\x8f\x0b\x6a\x95\xf7\x53\x5e\xbc\xbe\x2f\xda\xbc\xa3\x62\x55\xb0\x87\x73\xc9\x77\xb4\xba\x79\x47\x55\x7f\xa9\x91\x8b\x9d\x07\x1c\xe2\x6d\xcc\xbf\x43\x0b\x0f\x54\x8b\x50\x86\x58\xc6\xfd\x0d\xd7\x88\x14\x66\x1e\xb2\x30\x24\x15\x5a\x05\xb9\x1a\x56\x0b\x06\xc5\x22\xcd\x2f\x64\xcd\x3e\xd1\x9c\x65\x7c\xd3\xe4\xf9\xa7\xea\x71\x52\x4d\x0a\x46\x95\x26\xdf\xe0\x9c\x8a\xe9\x53\x88\x3d\xc0\x8a\x9c\x90\xf9\x58\x50\xb5\x76\x2c\x74\x6b\x31\x70\xe3\x56\x91\x30\x8a\xda\x70\x5c\x88\x2c\x81\x1c\xd5\xd6\x31\x7e\x5a\x2e\x9f\xc1\x27\x76\x8a\xae\xf1\x2b\x17\xfa\xcb\xe7\x07\x0b\xcf\x08\xec\xcb\xb3\xeb\xf7\x36\x3e\xc6\x6b\x8b\x28\x9f\xdc\xf3\xb8\x67\x52\xe9\x9f\x2a\xae\x19\x44\xde\x1e\x4c\xfa\xe3\x8f\xef\xca\xe7\x10\xc2\x9f\xa4\x12\x46\xbe\xce\xcd\xc9\x50\x72\x67\xa6\xda\x2f\xcb\x85\xc2\x93\x86\xb6\x29\x39\x66\x45\x40\xfd\xcf\x8a\x82\xbb\x2e\xae\x91\x61\x4d\x3e\x57\x37\x1a\x4b\x6a\x62\x09\x64\x78\xc9\x1d\x45\xce\x9e\x15\x72\xb1\x60\x15\xca\x64\x54\xb4\xe8\x50\xda\xbd\xa8\x82\x02\x6b\x60\x43\x37\x0c\xc9\x3d\x4d\xcb\xb2\xe0\x4e\x34\x09\x71\xc5\x3b\x6f\x12\x4a\x7b\xc9\x32\xbd\x4f\x29\xa7\x0f\x2a\xf1\xe5\xa6\x3a\x5c\xf1\x8a\x3e\x77\x0f\x5b\x84\xd5\xc6\x5c\x11\x49\xb0\xb9\xd8\x34\x99\xe0\x88\xbb\x95\xb0\x14\xde\xb4\x22\xb4\x0e\x51\xc2\x3a\x0a\xf2\x78\xb5\x0c\x8d\x63\x3a\x50\x64\x90\x4f\xba\x14\x44\x88\xa4\x07\xe1\x02\x4c\x65\x09\xd3\xa4\x4d\xa2\xc5\x49\xbd\xb5\x44\x41\x10\x12\x98\xf7\xac\xe3\xc6\xcc\x4d\x6d\x02\xbf\x0d\xba\x5f\xd4\xab\x24\x23\x34\xf8\xbb\xe4\x9f\xd0\x0b\x6f\xc7\xdb\xee\x45\xe4\xab\xe9\x17\x5f\x78\xd1\xdf\x70\x5f\xb4\x28\xdf\x9a\xef\xa1\xe6\x30\x54\x34\x8b\xda\xd9\xb6\x56\x38\x76\x0a\x83\x4f\x98\xd2\xf2\x94\x50\xb2\x0e\xea\xd7\x61\x8e\x63\xbb\x5c\x5d\x6c\x4a\xa8\x60\xd7\x42\xe2\xfb\x68\xb4\xb7\x2f\x6c\xd0\x46\xaf\xda\x36\xf3\x43\x53\x49\xe2\xce\xd9\xeb\x1c\xb6\x09\xcf\x1a\x64\x64\x9c\xf0\xa5\x1b\x87\x34\x02\x6d\x5e\x13\x28\x3a\xe5\xd0\x37\x5d\x7e\x23\x61\xca\xb9\xa9\x17\xec\x52\xe6\x6c\x26\x2b\xfd\x01\xea\x3d\xf4\x5e\xc8\xff\xd8\x7b\x04\x8a\x90\x28\xef\x73\x81\xad\x84\xc5\x23\x12\xdb\xb2\xf5\x58\x48\x53\x74\x77\xda\x4e\x3e\x5e\x7a\xb3\x97\xe1\xdb\x41\xc5\x48\x2b\x63\x25\x58\x23\x2f\x6f\x95\xad\xd3\x86\x60\xae\x51\x90\x63\x8a\xb9\x65\x01\x42\xa1\xaf\xa8\xa9\x90\xdc\x95\x64\x66\x75\xdf\x10\x7b\xbe\x84\x72\x0e\x5f\x3e\xff\xf3\x8b\x3f\x47\x4b\xaa\xa5\x1d\x84\xa9\x9a\x26\x03\xaa\x9a\xf4\xd7\x35\xe9\x2b\x24\x71\x78\x29\x89\x4e\xff\x5d\x21\x57\x50\x2c\xe2\x8d\xcd\x3d\xff\xc0\x56\xac\xd7\x3b\xf1\x36\xf6\x50\x78\x49\x0c\x25\xb7\xb9\x22\x19\x14\xb2\xe5\x09\x75\xda\xa5\x8d\xf0\x8a\xc0\x8c\x50\xe6\x4f\xd6\xba\x34\x0a\x88\xc0\x3e\x1b\x8e\xc8\x83\x23\x17\x31\x0c\xca\xef\xa5\xa2\x4d\xe1\x65\x36\x4c\x08\xfc\x60\xc0\x09\x9a\xd6\x05\x2b\x7e\xcb\x44\xac\xd4\xa4\xaf\xfc\x91\x83\xef\x39\xe1\x1f\x5c\x82\x98\x84\x2c\x1b\x38\x34\xe2\xa3\x5d\x3e\xd4\x82\x48\xb8\x9c\xbb\x0e\xbe\x90\xab\xc1\xb6\x8c\xb7\xcd\x58\xc7\x46\x97\x75\x51\x80\x4e\xef\x84\x1e\xbc\x39\x85\x5c\x39\xb6\x15\xdb\x0a\xc8\xb1\x01\x33\x03\x55\xaa\x90\xd0\xa3\xa5\x65\x1b\xb8\xa5\xd5\xd3\x42\xae\x9e\x86\x1a\xc8\xb4\x90\xd1\xbe\x41\x3d\xbb\x1c\xe8\xff\x7a\xeb\x46\x36\x46\x9a\x55\xcb\xdd\x15\x90\x06\x50\xb8\x2b\xa3\x4e\xa7\xae\xd4\xdb\xf7\xdf\x3b\x26\xde\x76\xc9\x64\x72\x82\x29\xa4\xf7\xd8\xc9\x15\xbb\x65\x15\xd7\x5b\x73\x16\x43\xf6\x13\x8e\x0f\x77\xa5\xec\xf7\x84\x2e\x24\x98\x0f\xcc\xed\x31\x28\x14\xa5\x3d\x15\xc3\x6a\xdd\xae\xe5\x9f\x5c\x59\x73\x54\xb3\xb1\x0b\xb1\x94\x0f\xd8\xcf\x55\x56\x31\xd6\x9f\xb7\xfe\x76\xf7\x89\x47\xdb\x93\xd2\xb9\xac\xf5\x63\xee\x68\xdb\xcf\x16\xdf\xb6\x86\x3f\xde\x5e\xb6\x2a\xb8\x84\xe4\x52\xda\xea\xc0\x42\xba\x8b\x06\xcc\xcc\x8e\xea\x34\xe0\xdf\x07\x08\x1b\xfa\x09\x3c\x1f\x57\xfc\x5f\x31\x1c\xed\xe4\x56\xae\xd9\xdf\x59\x9e\xf7\x96\x32\x39\x7e\x17\x0c\x6e\x32\x51\x9b\x56\xc5\x15\xc9\xe5\x86\x72\x41\x82\x02\x27\x29\xa1\xc2\x35\x33\xce\xa8\x20\x54\x28\x23\x18\xff\xf8\x8e\xfc\xb3\x66\x50\xe9\xcc\x40\x2f\x2b\x64\x9d\x4f\xb8\xe0\xda\xaf\x12\x7a\x27\x7a\x87\x6d\x3c\x66\x7e\x0d\x96\xb7\x0a\x6d\x75\xb9\x4f\x67\xdf\xd0\x6c\xcd\x05\xf3\xa6\x1f\x21\x6f\xe9\x84\x96\x9c\x9c\x60\xb5\xcb\x8f\x8b\x5a\xe8\x3a\x3a\xa5\x1b\x3a\x71\xcb\x78\x32\x25\x67\x2e\x13\x61\x89\x04\xf6\x24\xa3\x8a\x41\x42\xbe\xc0\x50\xaa\x27\x64\xc3\xa8\x48\xdb\xa6\x5a\x3e\x48\x48\xbc\x60\x9a\xd4\x25\x58\x17\x2e\xcf\xae\xb1\x12\x90\x33\xb5\xb9\x17\x03\xf5\xef\xc1\xa0\x2f\x9e\xff\x79\xfa\x6c\xfa\x6c\xfa\xc5\xc1\x68\x64\x5f\x92\x08\x99\x8b\xa3\x82\x4b\x25\x00\x35\xcf\xfc\xdb\x1a\xc1\xfc\x8a\xf1\xac\x31\x7c\x31\xd1\x72\x6d\xb3\x80\xc2\x61\xc0\xcc\xb1\xc3\xc9\xb4\x85\x69\x46\xaa\x36\x10\x3a\x3e\x36\x37\xeb\xf8\xf8\xc9\x69\x10\xb1\x9b\xd0\xcc\x00\x94\x1e\x90\xa7\x18\xed\xf0\xc5\x8b\x6f\xa7\xcf\xbf\xfe\x6a\x6a\xff\xff\xf2\x1b\xd0\xf2\xc2\x77\xbd\x0c\xf7\x15\xd5\xe8\x2f\x04\x14\x44\x83\x0a\xa3\xb6\x05\x77\x70\x88\xce\x4d\xb0\x60\xd6\x53\x90\x07\x04\xee\x9b\x3f\xff\xf9\xeb\x8e\xc2\xbe\xa9\x1b\xaa\xeb\x43\x8a\x6e\xbf\xbb\xfe\xf8\x4b\x34\xdf\x02\xff\x7f\xcb\x64\x42\x8b\x0c\xea\xac\x78\x1b\x68\xdc\x59\xf1\xee\xfa\x63\xbb\xa2\x5e\xd3\x72\xaa\xab\xdd\xd4\xc3\x7a\x4b\x09\xaa\x9d\x25\x6c\x60\x89\x82\xc0\x76\x66\x9f\x08\x3c\x9d\x54\xec\x26\xdd\x83\x74\x62\xa3\x6a\x53\x65\xf7\x50\x54\x36\x28\x09\xd7\xda\x35\xf4\x10\x84\x86\xeb\x83\x28\x00\xef\x01\xb4\xf9\xf6\x29\x42\xea\xbb\x63\xec\x24\xf1\x87\xb9\xf6\x80\x01\xcd\x82\xad\x8d\xc9\x83\x38\x4e\x43\x5b\xbd\x4c\xdc\x22\xa4\x20\x27\x1c\x7c\x7a\x4e\x59\x6b\x6c\x4f\xef\xce\xae\xfe\xc7\xc7\xd7\x1f\xce\xce\x5f\x13\x4d\xab\x15\xd3\x91\x20\xef\x9e\x13\xf2\xba\xea\xaf\x56\x61\xd2\xd6\x96\x84\x45\x04\xc7\xdd\x14\x99\xb4\x8a\xb3\xf2\xe7\x63\x00\x9c\xf2\x91\x60\x4a\x14\x85\x62\x4a\x88\x20\x39\x1c\xb0\xcf\x59\xbc\x3c\xbb\xb6\xfe\x08\x88\xf1\x08\x8d\x47\x51\x2b\x25\x5b\xd3\x5b\x2e\x2b\x5f\x6b\xd6\xfa\x84\x15\x06\x2f\x25\x2b\x2b\x3c\x6e\xcd\x42\xc1\x74\xc1\x45\x87\xd3\xa9\x0b\xde\x90\xb7\x67\x96\xfb\x81\xad\x86\x94\x4d\x7a\xdf\x1e\xef\x18\x4d\x58\x3f\xad\xc2\x5f\x30\x4f\x23\x08\x43\x4e\xf3\xdc\x05\x2b\xa4\x58\x61\x77\xe6\x0b\x73\xfb\x20\xb6\x72\x62\x27\x42\x83\xe0\xd3\x26\x2a\x2c\x67\x65\x21\xb7\x1b\x26\x74\x5a\xde\x70\x89\x6f\xde\xf1\x9d\x43\xe9\xa1\xb5\xbc\x6b\x0a\x35\xe3\xcb\x4f\xb0\xda\x68\x63\xd1\xdc\xc8\x9c\x15\xd1\x99\x51\x2e\x41\x35\x2c\x5b\xae\x88\x95\x05\x82\xe0\x3b\x73\x23\x61\xee\x4c\x6e\xca\xda\x36\xf1\x79\x62\x9b\x7f\xd7\xf1\xe8\xcf\x46\x45\xfe\x3b\xea\x46\xff\x68\x4e\xe5\x67\x0b\x03\x14\x6d\x82\xcd\x40\xad\xef\x5a\x57\x52\x4c\xcd\xb7\xd1\xd5\xda\xa5\x60\x1f\xa1\x86\xe9\xbd\xde\x94\x7a\x7b\xa8\x28\x82\x61\x0e\xd0\xc7\x83\xea\xf5\x40\x6d\x72\x16\x79\x28\x4c\xed\x59\x6c\xed\x19\x40\xd5\x5c\x68\xab\x9d\xd1\x78\x5b\x23\x5b\x3c\x10\x59\x38\x66\x94\xba\x32\x7d\xae\xae\xf3\x29\xb6\x9f\x38\x0b\xcc\xf7\x05\xdd\xb2\x6a\x58\x65\xa1\xfb\x41\xa5\x92\x1b\xa6\xd7\xac\x56\xdf\xcb\x77\x4c\x57\x3c\x1b\xda\x9b\xe7\x78\x96\x7c\xd4\xd9\x05\x14\xf9\x5e\x1a\xe1\x18\x5c\xc1\x1b\x1c\x12\x17\xd7\x8a\x02\x33\xfd\x5c\x98\xb3\xc1\xa5\x66\x7e\xd7\x61\x0d\xb2\x6b\x9b\x1a\x44\xa7\x48\x01\x15\x8b\x47\xa6\xbb\xfa\x84\x28\x19\xa0\xa1\x58\xed\x54\xd4\xb6\x8b\xb2\xa5\xf2\x30\xc7\x28\xaf\xb3\x04\xbb\x0d\x56\x84\x45\xf8\x1e\xd8\xe3\xb0\x01\xfe\xbd\x41\xbf\x03\x78\x67\x58\xde\x81\x5f\x07\xec\xad\xde\xc4\x85\x73\x5c\xfb\xb6\x65\x66\x4b\x0f\x4f\xd4\xd9\xdb\x63\x22\xed\xa6\x67\x83\x3f\x48\xe5\x75\x02\x74\x86\xbb\x1a\xa1\xcd\xd0\x28\x69\xb2\x07\x6c\xb7\xe9\x2a\x2e\x73\x91\x03\xad\x6e\x76\xc7\x1e\x76\x7b\xec\x32\x07\xe9\x39\x7b\x9b\x0b\x15\x1e\x57\xba\xe0\xd1\x37\xf8\xed\xb3\x6f\x3b\xd4\xb7\x84\xb0\xd3\x6c\x70\x86\x7e\xb0\x7b\x23\x6a\xf4\xf9\x86\x50\xb8\x58\xc7\x91\x4a\x74\xdc\xa0\x9f\x78\xc5\xbe\xaf\x69\x95\xdf\xfb\x14\x12\x33\x34\xe7\xe0\x5b\x1f\x75\xe1\xda\x7d\x4f\x22\xae\x12\xe2\xe1\xdc\xf3\x24\x62\x53\xba\xc3\x79\xf4\x93\xa8\xd8\x46\xde\x32\x57\x2f\x0b\x2a\xae\xf5\x2a\x7d\x3f\xb5\x13\x6b\x6d\xaf\xc8\x5b\xd6\x2e\x99\xe6\x7a\x2f\xdd\xb2\x54\x3c\xd9\x82\xb1\xb0\x08\x9b\x97\x3c\xa6\x36\x67\x15\x35\x3a\x57\x93\x0f\xcb\x6b\x78\x01\x23\x08\x08\x48\x55\xef\x80\xb8\x26\x9a\xe7\xbb\xa5\xdc\x5c\x0e\xa0\x6b\xe1\x16\x94\x00\xb4\xe5\xbd\x18\x8d\x4f\x7a\xc7\x70\x2d\x76\xbf\x6e\x31\xc5\xd6\x16\x1f\xb4\x6f\x38\xf8\x0c\x6c\x79\xb4\xc1\x81\x04\x1f\x76\x9f\x68\xe5\xc4\x98\xbf\xf7\xe2\xb7\x93\xb5\x63\x6c\xc0\xa5\xae\x55\x13\x7f\x65\x24\x6e\x48\xea\x87\x70\xb5\x56\xb4\xda\x3b\x2b\xc3\x0b\x29\x26\xff\x62\x55\xd4\xb0\xc4\x03\xeb\x63\xa0\x18\xa8\xb6\xcb\xf1\x60\x87\xb5\x87\xd3\xf5\xf5\xdb\xe1\x20\xba\xbe\x7e\x1b\xc6\xef\x4d\xb4\xc4\x3a\xc5\x2e\xdf\x02\x74\x50\x24\xd5\x93\xbb\x44\x1f\x70\x0b\x1f\x0b\xc5\x07\x16\x12\x06\x24\x39\x34\x74\xe4\x43\xe4\xa1\x07\x84\xec\x07\x7d\x3b\x0e\x0d\x1b\x21\x6b\x1a\xb7\xf6\xdf\x37\x6c\x04\xcb\x78\xba\x08\x91\x6e\x85\xe0\xbe\xe0\xc6\x2a\x92\xc3\xa0\x7c\xe5\x9c\xb5\x61\x25\x81\xca\xb9\x11\x57\x0c\xe3\xee\x5c\xf7\xe1\x38\xfe\xfb\x86\x01\x53\x32\x21\x3f\x59\x83\xdd\xc5\x4c\xbd\x44\x33\x58\xb4\xbe\x2f\x66\xfb\xd6\xb1\xa4\x53\xe2\x69\xd7\xc4\xc2\xf4\x62\x76\xf6\xae\x1d\x47\x33\x81\xa9\xcd\xf7\x70\x96\xad\x19\xdd\xe3\xf7\x02\xdd\x56\x64\xae\x86\x40\x1f\x00\x3f\xec\x3e\x80\xe4\xb2\x55\xe1\x08\xfb\x51\x48\xa1\x9c\x21\x30\x6e\x1a\xb2\x06\x38\x44\x0e\x8d\xb4\xe7\xaa\x91\xe2\x81\xeb\xd4\x22\x68\xaf\x35\xb1\xda\x28\x74\x8b\x95\xa2\x48\x17\x9c\x48\x91\x61\xf3\x2a\x08\x9c\x4c\x99\xd7\xda\x15\xeb\x59\x59\xb1\x8c\x62\xdc\x2a\x59\xd2\x5b\x34\x39\x7d\x68\xcf\xa2\xa6\xbe\xd2\x7e\x47\x7f\x3e\xd7\x61\x91\x16\x36\x58\x29\xd8\x36\x7a\x79\x6e\x29\xd6\x5c\x2f\xeb\xaa\x94\x50\x84\x62\xe7\x45\x51\xb2\xd5\xb2\xcd\x71\x91\x63\xef\xd7\xe5\x2e\x64\x55\xab\xf9\xa2\x95\xb7\xeb\x68\x1d\xfc\x9e\x84\xf0\x0d\x8d\x19\x20\xc8\x90\x92\x42\x1b\x1e\x33\x74\x0d\x78\xb4\x23\x07\x7c\x62\x16\x14\xfd\x3a\x96\x7c\xd0\x95\xf8\xbd\x83\x1c\xbd\x32\xd2\xce\xa1\x0f\x3f\xe1\xa8\x9d\x25\x75\xe8\x2d\x6b\x3b\x66\xa3\x2d\x71\x4e\x73\xda\xec\x93\x8d\x11\x8a\x73\x80\xe8\x89\x37\x68\xad\x2c\x39\x6c\xde\x76\x7c\x1a\x24\x09\xee\xfd\xf8\xb8\x75\x05\xd2\x88\x34\xa8\x3a\x55\x1a\x99\x06\x3c\xde\x53\x54\x20\x8a\x52\x49\xa4\x7a\x40\x3d\x01\x6b\x43\x7b\x2b\x65\x39\xc3\x2e\x25\x43\x8c\xc1\x3f\xa1\xf6\x81\xf1\x68\xe0\x76\xbe\x35\x90\x56\x0c\x4c\xa1\x8d\xd8\x7b\xea\x5a\x9f\x74\x71\xb2\x42\xca\x52\x05\x7d\xe5\xa1\x94\x4d\xab\xd8\x0f\xc6\x6f\x63\x1d\x6d\xdb\x12\x81\x40\x6e\xbc\xd9\x6e\x32\xaa\xcb\x96\x50\xc7\x42\x2f\xbe\xba\xdc\xf9\xe5\xd9\xf5\xf1\x71\xbe\x9b\xfe\xff\x51\x40\x7d\x9c\xa6\xef\xbb\xab\x68\x73\x14\xd5\x95\xb8\xf0\x6d\x78\x14\xc3\x76\x8a\x76\x87\x76\x3b\x99\x14\x9a\x0b\xe4\x21\x0b\x5b\x6c\xb4\xd5\xf2\x24\x36\xeb\x7d\x8a\x9c\x2b\x9e\xb3\x8c\x56\x67\x59\xc6\x0a\xcb\xf5\x86\xea\xb7\x57\xc9\x47\xbd\x41\x0c\x5b\x72\x6c\x40\xe4\x72\xaf\x4a\x08\x66\x7e\x8e\x07\xdb\xbe\x20\xf0\x74\x40\x3d\xe7\xf6\x6e\x3e\xc6\x9e\x72\xe2\x34\xa1\x42\x8a\xed\xc6\x70\x37\x4b\x8f\x6c\xcc\x6d\xd4\x95\x87\x7a\x33\x15\xb9\x6b\xc0\x8b\xcd\xe8\xb0\xec\xbb\xc1\x39\x34\xd7\x4f\x65\xb5\x9a\x92\xb7\x72\xa5\xc8\x1d\xf6\x44\x35\xe2\xbb\xae\xab\x44\x3f\x26\x1b\x84\x8a\x9d\xa1\x9d\x33\x3e\xc8\xac\x87\x7a\x92\x14\x7a\xf4\xf0\x25\xcf\xa8\xd0\x4d\x15\xcc\xdb\xba\x10\xac\xc2\xd2\x6c\xd1\x4c\xd6\x35\x55\xa8\xec\xe6\x5c\x41\x23\xba\x26\x90\xcf\x85\x17\xcb\xa5\xcf\x50\x84\x96\x43\xb5\xea\xc5\xc8\x7b\xe9\xfb\xed\xf3\xbb\x10\x5c\x73\x5a\xa4\x6a\x7b\x77\x1d\x62\xf8\x68\xbb\x3b\xb1\x6b\x0f\x9e\x9b\x9f\xe2\x7a\xff\x52\x7a\x79\x7a\x43\x6f\x18\xfa\xde\xcd\xc4\x3b\x41\xa9\x07\x0b\xfb\xbb\xdb\x1b\xa8\x5d\xed\x6e\xcd\xea\x57\xad\x6d\xed\xa9\xd6\x69\xd7\x19\xee\x29\xa2\x2d\x7e\xf3\xe2\xab\x7b\x6d\x2a\xd5\xb8\xa8\x6f\x63\xe9\x96\x47\x58\x1f\x35\x68\x84\x06\x82\xba\xd1\x20\x92\x79\x3a\x7b\x0d\x98\x9c\xe9\x06\x29\xeb\x8a\x67\x53\x42\x2e\x96\x48\x58\x9a\xb2\xa8\x05\xad\x45\x1c\x58\x98\x70\x12\x6f\xeb\x84\x37\xbc\x71\x3f\xd9\xba\xb0\x1a\x7b\x80\x43\x09\xc8\x45\xbd\x3c\x54\xc4\x87\xc6\xe7\x43\x89\xd6\x8f\x7f\x7b\x7b\x76\x39\xb4\x3a\x02\x44\xff\xa7\xe2\x0f\x60\xa6\x76\x85\x00\x10\xf9\xa0\xa9\x03\xfe\x68\x95\x18\x08\x36\xed\x2a\x97\x10\x17\xe5\xb8\xfa\x85\xca\x25\x00\x00\x87\xd4\x4b\x80\x5d\x75\x16\x4c\x08\x36\x8f\x90\x89\x6d\x2d\x28\xa7\xd0\x59\x3b\xe1\x8b\xc3\x6b\x27\xb8\xad\xfc\xd8\xdb\x51\xc2\x6f\xe6\xc7\x17\x9d\xdb\x79\xf1\x58\xdb\xf9\xf2\xdb\x7b\x6e\xe7\x3e\x65\xdc\xe0\xc1\x1f\x2f\x2f\x0e\x7d\xce\x9b\xd5\x87\xde\xa7\x9f\x76\x1e\xd8\xcf\x24\xf1\x23\x02\x31\x35\x06\x46\x7f\x77\x4e\x98\xc8\x68\xa9\xea\xc2\x55\x69\xbc\xfd\xca\x47\xe4\x48\xa4\x22\xf8\x25\x34\x1b\x2b\xa8\xaf\x10\x10\x8b\x8c\x22\x0f\x16\x8e\x76\x41\x32\x00\xb5\x76\x81\xf2\xe3\x8b\x07\x83\xe5\x45\x04\x2c\x2f\x62\x60\x79\xf1\x4b\x83\xe5\x07\xa9\xf4\x6b\x91\x55\xdb\xf2\x10\x51\xf8\xa7\xce\xc7\x3b\xc0\x15\x15\xc5\xa4\xd2\x13\x2d\x27\xb6\xa2\x93\x9b\x2c\x80\xec\xc3\xfd\xc3\x7e\xbf\x3e\x9d\xf4\x32\x5e\x25\x2f\xb1\xcf\xd6\x63\x3b\x46\x1c\x88\xe9\xb1\xd1\x74\x89\x5c\x24\x4f\x5c\x03\xbc\x71\x33\x86\x9b\xf3\xcb\x9c\xde\xa7\x20\x53\x7c\x93\x87\x60\xfc\xce\x83\xf7\xde\xe8\x8b\xde\x8d\xae\x26\xb7\x2f\x1e\xb6\xc9\xff\x60\xac\x3c\x2b\xf8\xed\x01\xa7\xe8\x1f\x69\x30\xb4\x59\xe7\xcc\x88\xfd\x4a\x33\xa1\xcd\x30\x9a\xec\x65\x58\xa2\x0d\xf9\x8a\xe9\x1d\x37\x4c\x90\x20\x7d\xef\x4d\xbd\x85\x15\x70\xb1\x1a\xe4\xe2\xff\x29\xfa\x58\x5b\x46\x2e\xdc\x4f\xe8\xef\x4f\x85\xfd\x2d\xb6\x3b\x08\xda\xaa\xf3\xf0\xc5\x37\xcf\x0f\x67\x7f\xf1\x4d\x1d\x82\x8e\x3b\x0f\x76\x6d\x2c\xb6\x27\xd7\x5a\xba\x8d\x90\xbb\x1b\x3b\x3c\x5c\xc1\x6f\x6c\x88\xd4\xf5\x53\x30\xb8\xbd\x01\xf3\x45\x28\x78\x75\x12\xc9\xe0\x16\xf5\x09\x5e\xf7\x28\x5a\x15\xee\xe8\x90\x03\x42\x01\xac\x63\x57\x2f\x1e\x6d\x57\x0f\x41\xc0\x0f\x68\x6b\xfa\x50\x17\x6c\x56\x71\x59\x71\xdd\xaf\x5a\xff\xd4\xf1\x70\x7b\xc7\xa5\xfb\x36\xd9\x0c\xa2\xa1\x99\xf0\x40\x43\x73\x9c\x11\xac\xaa\xdb\x04\x24\xde\xc2\xbb\x7b\xb3\xd6\x81\x85\xae\xb2\xab\x52\xca\x65\xbc\x15\x6a\x3b\x6e\x20\xfa\xd4\x3e\x03\x2f\x65\xee\x8b\x3a\xa7\xe8\xbe\x35\xda\xe1\x54\x18\xc4\x08\x11\xe7\x42\x6a\x34\x74\x81\x74\x2e\x9a\xd6\x5b\x58\x93\xc2\x86\x97\xc7\x66\x0d\x32\x74\x5c\xd8\x32\x44\x37\xac\x19\xaf\x82\xa0\x81\xb0\x64\x9f\x75\xbd\x61\x74\x72\xd4\x01\xe3\x4c\x96\x67\x62\x3b\x3f\x3a\x6d\x76\x56\xb1\x7f\xd6\x0c\x72\x75\xb7\x36\x93\xef\xc0\x50\xfd\x4f\xf9\xe0\x22\x7f\x91\x8a\xdc\x7f\x3b\x9f\xb5\xcd\x82\x06\x5b\x54\xcd\xd1\x75\x50\x63\xfb\xb8\x54\x37\x01\xdb\x8e\x2b\x67\x62\xbb\x9f\x48\x78\x2f\xa3\xd4\xa7\xbc\x3c\xd4\x1f\xfe\xb7\xf3\xd9\xe3\x16\xb0\x83\xe2\xe4\xf7\xaa\x5d\x67\x9d\xdd\xb1\x89\x1b\xff\xf7\x77\xb3\x37\x64\x43\x4b\xc8\xfe\xa2\x5a\xd3\x6c\x8d\x5d\x41\xc1\x3b\x14\xf7\x8b\xff\xed\x3c\x5a\x4f\x61\xbf\xc2\xdd\xe1\x5e\xf1\xb8\x4b\x62\xff\x5b\x30\x84\xe6\x61\x84\xbb\xd2\xb2\xa2\x2b\xe6\xbe\xc2\xc0\x08\x38\x2d\xd7\xc5\xce\x48\x73\xce\xab\x73\xc3\x45\xfe\x92\xcc\x8f\x5c\x0f\x88\xb2\xa8\x2b\x5a\x34\xdf\xf8\x3e\xa6\xea\x25\xf9\xfb\x3f\xcc\x37\x10\x75\x92\xff\x88\x56\x51\xfb\xed\x5c\x4c\x26\x93\xb9\xf8\x37\x62\xbd\xf8\xae\xf8\x8f\x66\x9b\xb2\xa0\x9a\xa9\xa7\x37\x79\x3e\xc9\xaa\x5c\x4d\xb7\x74\x53\xcc\x05\x2d\xb9\x9d\xe1\x25\xa1\x25\x67\x9f\x34\x13\x58\xb7\xf7\xe6\x1b\x35\xe5\xf2\xe9\xed\x17\x73\x81\x6b\x7b\x55\x2b\x2d\x37\x1f\x18\xd2\x85\x73\xb6\xe4\x82\x63\xfd\x36\x97\x9a\x05\x5b\x81\x32\xd7\x36\xeb\xca\xea\x4a\xe0\x6e\xe6\x4c\x4d\xb3\x2a\x9f\xee\xd9\x9e\xe7\xc2\x88\xb3\xf0\xec\xaa\x92\x75\xf9\x92\x24\x86\xe1\xdc\x6d\x80\x7d\x0f\xef\xb9\xc4\xf7\x60\xbc\x36\xfe\x6c\xc4\x90\xff\x48\x0d\x79\xeb\x0b\x19\x3b\x30\x47\xd7\x6b\xcf\x91\x0b\xc8\x75\x8a\x0d\x82\x97\x95\x15\x83\xd3\xff\x28\x6e\x84\xbc\x13\x6f\x38\x2b\x72\x65\x35\x22\x38\xa8\x4c\x1a\x6c\x79\x85\x46\x78\xf3\xcd\xad\x3b\x34\xf3\xc7\xc4\x82\xcc\x40\x1a\xde\x97\xad\xd9\x86\xfa\x6b\x2d\x4b\x26\xce\x66\x17\x3f\x7e\x79\xd5\xfe\x3e\xe9\x19\x0c\x8e\xb4\x8d\xca\x6d\xb2\x60\xe6\xb4\x16\xf5\xb0\x53\xac\x5d\x1a\xcb\xed\x3a\x7c\xaf\x85\x8a\xc1\x3e\x85\x8e\x96\xb3\x95\x4b\xa3\x29\xe3\x85\x30\x77\xb4\x32\xf3\x04\x05\x51\x6f\x59\x85\x1d\x05\x56\x82\xff\xcb\x4f\xee\x73\x29\x01\x37\xf7\x84\x45\x6f\x48\x0d\x0a\xec\x6e\xe8\xd6\x7a\xcc\x48\x2d\x82\x09\xb1\xc0\xda\x94\xbc\x93\x90\x0d\xb1\x94\x2f\xc9\x5a\xeb\x52\xbd\x7c\xfa\x74\xc5\xb5\xc3\x66\x6b\x26\xd5\xdb\xa7\xc0\x4a\xf9\xa2\xd6\xb2\x52\x4f\x73\x76\xcb\x8a\xa7\x8a\xaf\x26\xb4\xca\xd6\x5c\xb3\x4c\xd7\x15\x7b\x4a\x4b\x3e\x81\xb5\x83\x3b\x51\x4d\x37\xf9\xbf\x55\x16\xfd\xd5\x71\x8c\x4c\xec\x13\x10\xc0\xd2\xae\x63\x30\x38\x8a\x29\x75\xf8\xb0\x4d\x95\xf0\xd0\x76\x75\x6e\x3f\xbc\xbe\xba\x26\xee\xed\xd1\x62\x62\x08\xfc\xe6\x49\xd5\x9c\x83\x01\x1a\x17\x4b\x66\xcb\xc7\x40\xea\xa2\x0e\xfb\x71\x43\x25\x31\x08\xdb\xdc\x9d\x55\xd5\x8b\x0d\xc4\xf0\x20\x1b\xc6\x24\x97\x57\x20\x3d\x40\xb5\xcd\x32\xa7\x9a\xe5\x90\xf7\xf2\x8a\x6e\x58\xf1\x8a\x2a\xf6\xd9\x4f\xc1\x40\x5b\x4d\x0c\x6c\x87\x9e\x43\x8b\x44\xed\x0e\xdf\x77\x38\x7b\x8a\xd4\x7c\x3a\xfc\xf0\xb4\x2c\x8b\xed\x7b\xf1\x46\x56\x77\xb4\xea\x95\x32\xce\x5a\xa3\x31\xd6\x04\x82\x08\xb4\xc4\x99\x30\xe6\xa4\xe9\xe7\xcd\x5d\x73\xe9\xa8\xde\x0b\x12\x09\xcc\xe4\xaa\x95\x1c\x28\x52\xe4\xf2\x52\xea\x6b\x23\xc6\xf4\xc6\xf1\xf8\x91\xc1\xaa\xbd\x28\x6a\x3d\xd5\x90\x0e\xd4\xd4\xaa\x81\x7d\xc4\xa5\xa3\x70\x6b\x8e\x54\xac\x0c\x3d\xa8\x64\xbd\x5a\xfb\x50\x3b\x02\xce\x8e\x63\x70\x46\x0b\x0c\x3c\x26\x20\x75\x71\xb1\x8a\x7a\xb5\xc1\x8f\x4d\x95\x8d\x1e\xc9\x5c\x8f\x5f\x74\xb9\x5c\x57\xae\x9a\x7d\x0c\xc2\x84\x26\xaa\x36\x43\xc5\x8e\xdc\xf9\xe3\x8c\x2c\xda\x2c\x2d\xba\x30\xec\x61\x66\x61\x62\x45\xf0\x84\x82\xbf\xf3\x7e\x28\x02\xc7\xa0\x5d\x9c\x8d\x19\x5e\x30\x62\xc5\xcc\x43\xcf\x16\x7b\x93\xf7\x9d\xeb\x35\x54\x56\xcf\xc1\xd9\x6a\x23\x63\x6c\x53\x73\x2b\xb4\x92\xd7\x34\x5b\x63\x02\xb9\x2d\x20\x18\x17\x0e\xdd\xd3\xb8\x6f\x9b\x19\x96\x55\x5c\xb3\x8a\x53\xac\xa2\x1f\x64\xd2\x43\x9b\x81\xcc\xa9\x20\x80\xfa\x07\x45\xc6\xb4\xf6\x30\x3f\x3a\x23\x46\x17\x24\x8d\x41\x37\x8c\xf4\x89\x2d\x25\x2a\x87\x12\x5f\xbb\x96\x7c\x27\xf5\xda\xd6\x0f\x94\xd5\x04\xbd\x46\xde\x93\x3d\xb3\xe7\x25\xc2\xef\x2a\x99\x2c\x59\x03\xd2\x28\xab\x98\xc8\x1c\xe6\x4d\x82\xae\x55\xb2\xd6\x58\x91\xcb\x55\x53\xc2\x21\x46\xd7\x58\x48\xe8\xf2\x08\xe7\x91\x58\xb0\xc8\x7d\x13\xfa\x00\xf0\xe0\x20\x9b\xcf\x05\x1e\x9e\x6b\xc8\xb2\x0b\x89\x44\x88\xaa\x39\x4c\xc1\x56\xb0\x38\x2b\x12\x9c\x5a\xf5\xcb\x25\xd6\xcf\xe7\xf3\xa3\x4b\xa9\xcd\xff\xa6\xe4\xac\x28\x6c\x51\x84\x70\xf6\xf8\xcc\xe6\x69\x48\x52\x06\x84\xf2\x2d\xfe\xa8\xe6\x0a\xfa\x7a\x61\x29\x32\xbb\x15\x2d\x71\xce\x29\x39\xb3\x1d\x29\x12\xd0\x05\xe4\xc4\x52\xc1\x06\x41\x6d\xfd\x00\xbb\x69\x03\x22\xd8\x8e\xf9\x23\x08\x24\xa0\x38\x79\x1a\xae\x00\xfd\xf8\x12\x1d\x0d\x69\x96\x18\xef\xdf\xd6\x1b\xc0\x45\x53\x05\x33\xf1\xd3\xdf\x1a\x26\x67\x4a\xdb\xae\x8b\xc9\x59\x76\x02\x32\xfd\x03\xfe\x42\x47\x8e\xcf\x86\x2f\x99\x8b\x99\x9a\x16\x8c\x28\xc1\xfb\x89\xe1\xd2\x3a\x9e\xac\x38\x08\x18\xc4\x76\xca\x81\x3e\x6d\x57\xf6\xf2\x75\x8c\xdd\x23\x03\x97\xbb\x0f\xdb\x74\x75\xe9\x5c\xc5\x4b\x23\x9f\x27\xab\x68\x34\x1f\x0f\x18\xea\x89\x40\x50\xee\xc0\x96\x94\xf2\x9d\xb6\x0d\xa4\x64\xc5\x57\x06\x0e\x29\x0a\xe0\x3e\x20\x7f\x9d\x18\x14\x02\x57\x35\x52\x2a\xfd\x24\x88\x71\xb6\x57\x04\x4a\xc1\xc0\xbb\xe3\xcc\x23\x02\x32\x9b\x02\xb2\x60\x8e\x11\xdb\x84\x70\x40\xe4\x3d\xd8\x74\x4f\x8a\x54\x12\x55\x7a\x0f\x02\x0a\xbd\x19\x97\x50\x60\xc3\x95\x97\xa4\x1b\x66\xab\x62\xe8\x84\x79\xa7\xf9\x40\x05\xac\x58\x58\xb7\x0b\x95\x0b\x04\x88\x45\x48\x81\x7b\x80\xea\xb6\xed\xe0\x15\x0a\x20\x48\x07\xdf\xc8\x8a\xb4\xd4\xc0\xd3\x24\x0f\x70\x1f\x6c\xab\x18\x41\xa9\x8d\xad\xe0\xe5\xd2\xf4\x42\x64\x2b\xf8\x86\xf7\x1e\x18\x18\xdd\x0a\x0c\xfc\x4b\xc2\x84\x07\xf0\xf5\x27\xdc\x73\x66\x78\x91\x5b\xfb\x4c\x6e\xff\x18\x35\xda\x93\x27\xd1\x56\x39\xcd\xe7\x97\x01\x40\x4b\x51\xbf\x32\x7c\xbb\x22\xe8\xc8\x44\x78\xc0\x36\xba\x27\x35\x7b\x8c\xe8\xfb\xa7\x10\x40\xd3\x7d\x96\x3d\xab\x0d\xb7\x18\xd4\x6f\x8b\x35\xc8\xc9\x2a\xa9\x40\xe6\x1b\x7a\x65\x13\x8c\xc3\xbf\xbb\x97\x01\x10\x2c\xa3\xd0\x45\x53\x77\x0b\x53\x30\xdb\x39\x3b\x4a\x18\x8d\xa2\xa9\x2b\x9e\x61\x7b\x9a\xee\x6d\x38\x16\xe8\x2b\xdb\x6d\x83\x5e\x04\xbb\x74\xd1\x93\xbe\x1e\x68\xb7\xe9\x62\xd8\x52\x12\xca\x9b\x08\x5f\x1a\x1b\xab\xf2\xa9\x7a\x61\xb6\x9f\xe4\x3a\xa4\x53\x8e\x0c\xde\x3b\x08\xd2\x9d\x91\xc8\xcd\x47\x48\x7d\x79\xd8\x99\xe0\x03\xbe\x26\x45\x5b\xfc\x72\x3b\x36\x43\x7a\xd8\x8b\x39\xc7\xdf\x1c\x2c\x52\x6d\xde\x9b\xcf\x2e\x30\x7c\x7b\xf7\x0e\x68\xcc\x52\xb9\x7a\xcd\x07\xc1\x41\xae\xa0\x85\x25\x60\xa9\x92\x9b\xa6\xdb\xb9\xc2\xc4\x4b\xdb\x40\x1c\xea\x28\x6f\xd3\xed\xe3\x9b\xcf\x4e\x2f\x5a\xdd\x2e\xe4\xee\x5b\x59\xa3\x44\x65\x09\xb9\x51\x50\x7a\xa9\x22\xf0\x30\xeb\x0c\xb9\x7e\x35\x9b\x1f\x61\x07\xe0\x8f\xe7\xb3\x44\xc7\x59\xf7\x19\x72\xaa\xe9\x22\xa4\xcd\x67\x40\x39\xd2\xfd\xc1\xfd\x88\xd2\x5f\xa2\xb4\xf9\x1c\x5e\xac\xb4\xf9\x0c\x45\xc8\xc3\x85\xcb\xcb\xe6\xa1\x1e\xb4\x1c\x26\x5f\x59\xcc\x04\x1f\xab\x9f\x18\xa9\x30\x7a\x99\x16\xba\x60\x9a\xfb\xb2\xa4\xf8\xae\xee\x39\xbd\xb4\xd4\x89\x2a\xc3\xce\xac\x3c\xec\xca\xce\x8f\xfc\x8d\xed\x63\x2b\xfd\xcc\x76\x00\x5b\x01\xef\x92\xab\x82\x75\x12\x28\x21\x91\x4a\x51\xbb\xdb\x0a\xaa\xbb\x32\x45\x6c\x61\xfe\xb0\x58\xf0\x53\x67\x50\xbe\xf6\x05\xb7\xbb\x67\xe5\xa1\xfa\x6e\xaf\x0e\xf8\xb0\x10\xca\xca\x41\xc0\x5a\x67\x3b\xf2\x8d\x9a\x8f\xab\x0e\x85\x02\xdc\x50\x0a\xd6\x4b\x01\x6c\xc9\xa9\x43\x28\x58\xcf\xde\x1b\xf2\xb6\x43\xc1\xe6\x48\xc3\xe6\x96\x8a\xcd\x91\x8e\xcd\x0d\x25\xeb\x94\x79\x46\x5a\x06\x9f\x41\xb4\x4c\xdd\x43\x4b\xee\x57\x8e\x3b\x2d\x7d\xcd\x27\xaa\x1c\x93\x13\xc5\x98\x33\x91\x01\x29\xc3\x76\x44\x6a\x2b\x34\xfd\x14\x0f\x9d\x6c\x3e\xf3\x79\xa7\x6e\x6d\x65\xc8\x94\xee\xdc\x3d\xb7\xb3\x8c\x05\xaa\xb5\xac\xf6\x55\x66\x73\xdd\x2e\xa5\x46\xbf\xf6\xcb\x44\xff\xa5\x00\x08\x36\x65\xd1\xb9\xb3\x7a\xb8\x02\x82\x27\xe0\x26\xdd\xb3\x2f\x58\x21\xef\x9e\x9c\xb6\x97\x1c\x00\x1b\xa1\x4a\xb8\x56\xac\xf0\xd5\xe2\x7b\xe0\x80\xc6\x30\x89\x7d\x9e\x19\xd1\x77\x12\x70\x0d\x52\x5e\xdd\x6f\x48\x20\x0c\x13\xda\x36\x2d\xa0\x7a\xce\xee\xbd\x70\xbb\x57\x76\xbd\x8d\xf9\x95\x05\x5a\x92\x6d\xe7\x09\xa6\x05\x3b\xbe\x9f\x27\xdc\xad\x65\x61\x0f\xe9\x25\x1c\xd1\x7c\xde\x30\xe4\xbf\x02\x75\xf9\xd3\x9a\xaa\x93\xcd\xf6\xe7\x82\x2e\x58\xf1\x04\xe8\x8e\x25\xf2\x7d\xd7\x39\xc8\xb3\x33\xfb\x06\x24\xc3\xf5\x61\x68\xc2\xc4\x06\xdf\x14\x2c\x37\xef\x1d\x88\x6f\x61\xde\x9e\xab\x5a\x4e\x60\x71\xb0\x5c\xb7\x52\x34\xa2\xda\x2d\x0d\x46\x0c\xdc\x72\x72\xc7\xfb\x9b\x32\xab\x48\xd5\x3f\x6f\x3e\xdd\xfb\xf5\x5b\xea\xdb\x4e\xdf\x25\x17\x80\x79\x6c\xb9\x64\x99\xad\x7f\x64\x4d\x09\x05\x90\x56\x5b\xca\x04\x42\x25\xfc\x4e\xfa\x17\x2f\xa4\x98\xb8\x5c\x5d\xf4\xd4\x62\x4d\x02\x6b\x17\x81\x2c\xfa\xd0\x48\x01\xe9\x70\x38\xfb\x00\xa3\xdd\x3e\x68\x9a\xce\xd0\x8f\xa1\xc4\xdb\xdc\xd1\xb3\x2c\x93\xb5\x38\x44\xf6\xba\x6a\x3f\xf8\x8b\xc9\x60\x3b\x64\xb9\x7b\xce\x88\xc9\x93\x92\x52\xe6\xbe\x84\x32\x08\x74\x9e\x44\x5b\x60\xf4\x90\x5e\xdc\x71\x27\xb6\x0d\x32\x3a\x13\xd2\x8e\x2f\x49\x7f\xda\x3a\x01\xf4\x0a\x78\x30\xb8\xc9\x7d\x40\xde\x3f\x65\xca\xd2\x1c\x01\xfb\x20\x68\x93\x06\xe2\x86\x1a\x2b\x1b\x7c\xce\xbd\xa9\xd2\x08\xc0\x3d\x37\x7f\x98\x70\x47\x0e\x30\x41\x90\xa1\x92\x12\x19\x2a\x2d\x91\xfd\xfb\xd5\x2b\x2f\xfd\xf7\x3d\xe9\x96\xae\xd4\x58\xdd\x90\xee\x3b\x78\x4e\xc9\x45\x8f\xe6\x61\x3e\x8d\x1b\x02\xbc\x0b\x57\xa1\x57\xa1\xd1\x45\xb4\xed\x85\x98\xf4\xc7\xb7\x3f\x67\x97\xe7\xc7\x51\xdf\x78\xfb\x73\x98\x45\x2b\x55\x85\xc0\x7d\x5c\xd9\xce\xc3\xa4\x6e\x7c\xe6\xc1\x52\x37\x3e\x89\x0e\x62\x4f\x2f\x83\x6e\xe6\xee\x45\xd0\x86\xc9\xc3\x35\x1a\x2d\x11\x4c\xda\x2b\x74\xef\xa2\xd7\x50\xa9\x3b\xe2\xce\x72\xf0\x3b\x51\x4f\x76\xc5\x6f\xdb\x49\x5d\x74\x79\x1d\x09\xd8\xca\x9e\xc2\xaa\xa0\x4a\xac\x5b\xc9\xb1\x22\x98\x1d\x0d\x1a\xb3\x83\x77\xe6\x03\x96\x3c\x30\xfa\x60\xd1\xf6\x6c\x99\x9b\xe3\x90\xf5\x34\x14\xdd\x4f\xf7\x3d\x0a\x3d\x60\xbe\x64\x46\xfc\x75\xc6\x5e\x59\xed\xf2\x6e\x5c\xfa\xcc\xe6\xfb\xe7\xde\x12\xda\xe3\xad\x34\xf8\x64\x0e\x30\xdc\x23\xda\x8d\x3c\x14\xa4\x70\x81\x04\x36\xb0\xa3\x5b\x64\x39\x88\x6d\x1e\xce\x35\x63\x59\x4c\xe0\x92\x6f\xf0\xb8\xff\xea\xdb\xbd\x05\x3e\xf8\x47\x22\x02\x81\x7f\xe6\x1e\x02\x81\x79\x2c\xb2\x3f\xfc\x3e\xdd\xc6\xa2\xfd\x41\x2a\x6b\x77\x08\x37\xb9\x60\x4b\x8d\x7e\xac\x26\x84\x09\x6f\xcf\x00\x23\x0d\x09\x2f\xa2\x8f\x38\x3a\x56\xcd\xca\x7e\x51\x0a\xda\x3f\x66\xad\x75\x39\x2c\x9e\xe1\x87\xeb\xeb\x59\xe3\xaf\x4f\x06\x31\x18\x2c\x31\x43\xd3\x4b\x77\x51\x8e\x0f\x8b\x5f\xd8\x30\xbd\x96\xf9\x01\x9c\xe1\x1d\x3e\xf0\xb8\x52\x3b\x6e\x19\x89\x3a\xee\x3b\x08\xe2\x34\x73\x62\x33\x51\x83\x8f\xfd\x93\x42\x56\x57\x8e\xb3\xb8\xd5\x9e\xb0\xe9\x6a\x4a\xbe\x7f\x7d\x7d\x4a\x66\x1f\xaf\x4f\x09\xd3\xd9\xf4\x09\x79\x57\x17\x9a\x97\x7d\x7e\x0e\x0b\x22\xe0\xfb\xef\x3f\x1c\x1b\x35\x6c\x05\x71\x84\xbf\x2d\xbf\x55\x49\xf5\xfa\x80\x73\x3c\x9e\x99\xf1\x9f\xe3\x18\xfb\x4e\xb0\x9f\xa2\x84\x27\x08\xcb\x9c\xfa\xa3\xc2\x6d\xba\xb3\x18\x7a\x18\x84\xb0\xe9\xea\x25\x99\x10\xf6\x89\x66\xfa\x25\x79\xba\x94\x92\x4c\x6c\x90\xd8\x4b\xf2\x74\x41\x2b\x72\xf9\xfe\xfa\xf5\x4b\x0c\x40\x63\x42\x57\x5b\xb2\xe9\x13\xcf\xdf\x5f\xbe\xfd\x9f\x96\x72\x6e\x09\xe3\xd8\xd1\x94\xcc\x8f\xe0\x25\x68\x45\x36\x7f\xe2\x5b\x9c\xad\x63\x9a\xea\xba\xd6\x7c\x6e\x69\xc1\x73\xea\x8d\x7d\xd8\x8f\xd5\x88\x4f\x5c\xc7\x6a\xfd\x35\x9f\x21\x38\xd7\x46\x02\x03\x62\xe8\xb2\xd6\xea\xef\x01\x80\x77\xbd\xd6\x86\xf1\xaa\x0b\x0d\x91\xdb\x0b\xe6\x00\x61\xed\x88\x4b\x59\x6d\x5e\x3a\xb0\xcf\xeb\x67\xcf\xbe\xcc\xcc\xc4\xf0\x2f\xf6\xd2\x55\x66\x1d\x62\xf6\x42\x54\x83\x55\xc1\x74\x86\x60\x54\xfe\x08\x9b\xa9\x27\x16\xde\x0f\x7a\x03\xce\xd1\x13\x6a\x32\x58\xe8\x20\x16\x00\x8f\xab\x46\x96\xa9\xce\x00\xf7\x9f\x74\x98\x3a\x31\x88\x20\xf5\x4f\xc5\xb3\xcd\x40\x9e\x79\xf1\xea\xdd\x6c\x68\x04\x08\x10\xa3\xf4\xda\x43\x2a\x45\x1d\xd6\x67\xb0\x5a\x5b\x9c\x26\x07\x1a\x05\xaf\xf4\x3d\x35\xc1\xb3\xd6\xa1\x5f\x05\x3d\x8e\x5b\x32\x2d\x5f\xb6\xfd\x53\xb8\x68\x1e\x54\x3d\x33\xef\xe9\x12\x6d\xc1\x9f\x6e\x06\xdd\xbe\xe8\xb0\x53\x0e\xc2\x44\xb3\xb5\x03\xf8\x3c\x48\x26\x52\x84\x50\x02\xa0\x64\xd0\xe3\xe2\x10\x65\x0d\xaa\xc5\x1b\x00\x63\xbe\x08\x84\xa8\x42\x15\xe7\x10\x56\x4d\x2e\x26\x25\x9a\x65\x6b\xc1\x33\xda\x13\x95\x04\x66\x51\x34\xff\xf3\x4d\x29\x55\x13\x48\x87\x5d\x7e\x8f\x55\xd3\xa2\x67\xc9\x2b\x76\x47\x8b\x78\xb3\x91\xe6\x83\xd4\xc2\x1a\x65\xb1\xd1\x8f\x24\x4c\x2c\x25\x66\xb2\xd8\x10\xbd\xfe\xab\xd1\xeb\xc3\x83\x61\x0f\x3f\x0c\x33\xcd\x94\x84\x25\xcd\xfa\x5c\x60\xbe\x73\xdb\x37\x18\xe5\x0d\x3b\x84\xb9\x5e\x67\x6b\x49\x3e\xd8\x14\xd6\x13\x3e\x65\x53\x52\x72\xb1\x52\xdd\x3e\xb0\x41\xfb\x1d\x40\x0c\xca\x78\x22\x58\x02\x20\x17\x33\x97\x10\xf6\xe0\xc0\xb0\x96\x71\x0b\xe5\xf1\x10\xca\x33\xe7\x19\x4b\x42\x61\x48\xe1\xca\x78\x4a\x4f\x62\x73\xae\x0d\x5b\x10\xd6\xdb\xd4\x19\x0d\xaa\x10\xfb\x26\xdb\xdd\x9b\x7b\x10\xd1\x68\x72\xaf\xbb\x99\x5c\xb3\xc2\xd9\x50\xae\x38\x94\x2d\xb5\x33\x92\x9a\xf5\xd8\x54\x34\xf4\xda\xdd\x30\x9b\x3c\x4f\x4a\xca\xab\x74\xe7\xc1\xe6\x63\x54\x56\xdb\x1a\x3f\x84\x29\x5d\xc8\x5a\x0f\x60\x24\x8f\xa5\x39\x0a\xa9\xcd\xed\x1b\x86\x19\x97\x38\xb8\x27\xa2\x07\x86\x74\x47\xd6\x8d\x0c\x63\x64\x18\xbf\x6f\x86\x21\xa4\x76\x62\x55\x12\x2c\xdd\x51\x37\x03\xe3\x6d\x86\x45\xda\xec\x05\x84\x3a\x91\xaf\x27\x26\xd4\x0e\x4b\x03\xac\xe7\x1e\x0f\x08\xed\xb9\x5f\x50\x4f\xf9\x5b\x05\xee\xfc\x28\x84\xed\x23\xf2\xfe\x3d\xc7\x16\x58\x78\x43\x49\xc0\xc1\x64\x0a\x58\xcf\xab\x2e\xcb\xbc\x8d\xce\xb5\xe7\xfc\x1a\x52\x8d\x3e\x40\xa6\x9c\xcb\xfa\x42\xb3\xf9\xc9\x82\x65\xb4\x56\x36\x26\xae\xc7\x95\xe0\x97\x98\xb1\x0a\xe6\xf0\x71\x75\x4f\xd0\x14\xef\xfa\x78\xb4\xa2\x04\xfb\x58\x2c\x86\x0f\xbe\x0c\x23\xe0\x4e\xc3\xf8\x37\xfc\x03\x34\x95\xd6\x5f\xb7\x2f\x9a\xbf\xaf\x5e\x5d\xe3\xaf\xe9\xd7\xd8\x19\xdf\x72\xcd\x5c\x90\x1d\xb4\x51\x05\x04\x71\x4e\x59\x6c\x35\xf9\xc5\xe4\xf9\xd7\x5f\x77\x98\xfc\x3f\x1f\xda\xab\x54\x4b\x09\xfc\xb4\x1d\xad\xbe\xa5\xc4\x80\xac\xb4\x44\xb7\xde\xf0\xad\x63\x42\xda\x98\x90\x36\xc0\xed\x39\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x96\xda\xf1\x98\x90\x36\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x36\x26\xa4\x8d\x09\x69\x63\x42\x5a\x6a\x27\x23\x2d\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xf0\x33\x26\xa4\x8d\x09\x69\xbb\x9f\x31\x21\x6d\x4c\x48\xf3\x9f\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xa2\x93\x8e\x09\x69\x01\x2c\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x6b\x7f\x7e\xc9\x84\xb4\x9e\x5e\xe7\x58\xc5\x37\xf6\xdb\xbd\xbb\x9a\xdb\xbb\x71\x8f\xf2\xdd\xed\x5b\x35\xd6\xef\x1e\xeb\x77\x8f\xf5\xbb\xc7\xfa\xdd\xf1\xe5\x8d\xf5\xbb\xc7\x70\xa9\x31\x5c\x6a\x0c\x97\x1a\xc3\xa5\xc6\x70\xa9\x31\x5c\xaa\xf9\x8c\xe1\x52\xcd\x67\x0c\x97\x1a\xc3\xa5\x7e\x53\x21\x06\x63\xb8\xd4\x18\x2e\x35\x86\x4b\x8d\xe1\x52\xd1\xc1\xbf\x33\x5a\x36\x86\x4b\x8d\xe1\x52\x63\xb8\xd4\x18\x2e\x35\x86\x4b\x8d\xe1\x52\x63\xb8\x54\xe4\x33\x86\x4b\x8d\xe1\x52\xfe\x33\x86\x4b\x8d\xe1\x52\x63\xb8\x54\x74\xd2\x31\x5c\x2a\x80\xc5\x18\x2e\x35\x86\x4b\x8d\xe1\x52\xed\xcf\x58\xbf\x7b\xac\xdf\x3d\xd6\xef\x6e\x7d\xc6\xfa\xdd\x63\xfd\xee\xb1\x7e\xf7\xa0\x37\x8c\xf5\xbb\xc7\xfa\xdd\x63\xfd\xee\xb1\x1c\xeb\x58\x8e\x75\xac\xdf\x3d\xd6\xef\x1e\xeb\x77\xa7\xd7\x3f\xd6\xef\x1e\x19\xc6\xc8\x30\xc6\xfa\xdd\x63\xfd\xee\xd6\x67\xac\xdf\x3d\xd6\xef\xde\xf9\x8c\xf5\xbb\xd3\x0a\xe4\x58\xbf\x7b\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\xf0\x33\x26\xa4\x8d\x09\x69\xbf\xa9\x24\x8e\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\xe8\xe0\xdf\x19\x2d\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x2d\xf2\x19\x13\xd2\xc6\x84\x34\xff\x19\x13\xd2\xc6\x84\xb4\x31\x21\x2d\x3a\xe9\x98\x90\x16\xc0\x62\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\xf6\xe7\xbf\x77\xfd\xee\x21\x61\x07\xf1\xa3\xee\x96\x0e\x96\x18\x25\xd2\x68\xec\xb1\x55\xd7\x0a\x75\x11\xa4\x8f\x96\x6d\x63\x11\x6c\x29\x5a\xbe\xc2\xc4\x96\xe2\xa7\x02\x85\xc6\xfb\xf6\xf1\xde\x0c\xea\xe0\x49\x6d\x44\x96\x38\x3a\xba\x0b\x0c\x25\xc4\x5a\xd0\x60\xfc\x31\x93\x82\xb7\x34\x9f\xa2\x3d\xc8\x5b\xb3\xd7\x7c\x65\x94\xeb\xf9\x11\xcc\x37\x3f\x02\x11\xc0\x8e\x8d\x4d\x4d\x97\x46\x29\xd4\x20\x74\xc2\x04\x85\xbc\x63\x15\xae\x06\x43\x33\x83\xc5\x29\x22\x37\x5c\x6b\xc3\x4b\xb8\xcb\xea\x89\x4d\x9a\x49\xa1\x38\x96\x62\x47\xbb\xe5\xfc\x88\x8b\x25\x17\x5c\xb3\xf9\x11\x99\x10\x08\x08\x0c\xb6\xe3\x38\x95\x5d\x27\x29\xa8\xd2\x53\xe2\x77\x16\x05\x89\x59\x2b\xcf\x99\xd0\x3c\xa3\x85\x5d\xe0\xee\x3c\x5c\x10\x5a\x94\x6b\x2a\xea\x0d\xab\x82\x71\x80\x00\xb1\x59\x2d\x7f\xb2\x26\x36\x8c\x7a\x89\xea\xdc\x88\x1c\xa2\xde\x2c\xf6\xad\x9f\x65\xc5\xce\x2f\xcf\xae\xfb\xd0\x63\x86\xc3\x08\x17\x39\xcf\xd0\xb2\xe3\x33\x50\xd6\xae\xbc\x7a\x9b\xaa\x90\x05\x5b\xca\xb8\xe8\x46\xc5\x96\x98\xe9\x92\x6b\x5d\x48\x59\xb0\xfd\xc0\x8c\x0e\xb9\x7d\x47\xca\xba\x0e\xed\x64\x88\xd5\x81\xb5\xcc\x5d\xb4\x92\x67\x37\xf8\x1f\x59\x47\x09\x90\xd9\xdb\x8e\xd5\x23\xc0\x04\x9b\x2f\x13\x9c\xa1\x96\x4e\xe8\x48\xdb\x6e\x9a\x75\x18\xd9\xad\x28\xe4\x1d\x42\x0d\x4d\x78\xde\xa8\x85\x92\xf5\x5f\xd1\xbe\x83\x17\xfb\xe7\x82\x6b\x56\x51\x30\xad\xc4\x66\x9e\xcf\xc9\x04\xf3\xc5\x0c\x56\x6f\x4a\x5a\x71\x25\xc5\x29\x81\xa4\x51\x67\x97\x71\x53\x2e\xa5\x24\x0b\x5a\x81\xb1\xc8\xbf\xee\x4f\x07\xbe\xae\x79\x9f\x11\xad\xd8\x3f\x6b\x5a\xfc\x05\x43\x9c\x9d\xaa\xc0\x97\x56\x47\xe0\x0a\xc6\x38\xd7\x87\x7f\x65\x9c\x88\xfc\x6f\x58\x07\x6d\x02\xf3\x16\xcd\x3f\x33\xfc\xe7\x74\x3a\x25\xff\x15\xac\x40\x57\x35\x73\x99\x4a\x3e\xd8\x17\xdf\xf1\x37\x12\x4f\x2e\xb0\x3e\x9f\x9e\x57\x35\x6b\x35\x1b\xe0\x62\xc0\xe2\x62\x2f\x3b\x70\xbd\xf0\xb2\xae\x05\xc6\x8f\x24\x58\xf3\x9a\xaa\x13\x98\xef\x67\xc3\x3a\x9e\x34\xaf\xbe\xf6\x6f\xa6\xba\x39\x9d\xe0\x64\xfe\x04\x48\x1a\x65\xba\x76\x0a\x6f\x1f\x96\x4b\x18\x0b\xe6\x41\xf8\x7f\xfd\xec\xd9\xf3\x17\xf8\x5f\xfc\xc5\x3f\x73\xb5\x96\x95\x9e\x64\xbc\xca\x6a\xae\x41\xac\xb5\x0f\xc5\x5e\xf4\x9f\xff\xd9\xf9\x34\x38\x92\xf4\x09\x8e\x79\xe2\x07\x95\xb4\x62\x56\x25\x5a\x55\xb2\x2e\x8d\x4a\x34\x9f\x6b\x5a\x14\x27\x51\x87\xa0\xed\x29\x80\x61\x41\x9e\x5e\xb8\xd9\x1c\x0e\xd3\xa2\x08\x6c\x7c\x70\x41\xdf\x22\x3e\xa0\x12\x9b\x20\x72\xe6\x6a\x23\x9d\x71\xa1\xb2\x21\x7d\x57\xa7\x64\x72\x4a\x7e\x06\x38\x3c\x9d\x92\x2b\xb8\x72\xc4\x5e\xb9\xe4\xa4\x1b\x59\x31\x52\x1a\xfd\x4b\x29\x7e\xcb\xc8\x02\x93\x3c\xb6\xce\xbe\x6c\x2d\xff\x84\xa9\x8c\x96\x8c\x64\x6b\x5a\xd1\x4c\xb3\xca\x2e\xfb\x35\xc6\xca\x47\x2f\xc3\x09\x70\xa9\x0d\xcd\xd9\xa4\x2e\x11\x2d\xd4\x13\x4f\x8e\x20\xb3\xd0\x92\x8e\x3b\xb6\x30\x9a\x1b\xb3\xc4\x23\x3c\xf1\x9c\x95\x85\xdc\x6e\x98\x88\x92\x53\xfb\x7c\x59\xc9\xdc\x21\x29\xcc\x6b\xee\x14\xd0\xa4\x4a\x0a\xcd\x44\x1e\xa0\x3a\xcd\x6e\xec\x17\xff\x65\x86\x37\xf3\x93\x3f\xfd\x35\x75\x03\x72\x76\xeb\xa6\xff\x13\xd9\xb9\x05\x31\x52\xd6\x25\x3c\xb5\xad\xb1\x43\xa5\xc2\xab\xe8\x53\x9f\x4d\x34\xb4\x8b\x74\xc6\x9a\x43\x05\x44\xf0\xfa\x0c\xe0\xa9\xe0\x1c\x6a\x24\x80\xbb\x35\x64\xac\xb7\x78\x7e\x10\x16\x67\xd5\xcc\x28\x9d\x32\xf7\x4e\xda\x0e\x2a\xa7\xf6\xaf\x85\xd4\xeb\x29\xc1\x48\x55\xe0\x26\x9f\x4a\x23\x51\xe9\x62\x1b\x28\xb3\x27\xd0\xfd\x25\x1a\x82\x1c\xd0\x51\x41\xb2\x8a\xd9\x04\x19\x65\x6f\xb7\xac\x88\xe0\xc5\x93\x53\x97\xe4\x92\xb3\x25\xad\x0b\xad\x08\x6e\xcb\x80\xae\xca\x13\x3a\x8d\x96\xe4\xce\xd0\xca\x0b\xab\x39\x9b\x45\xbc\x0e\x94\x68\x90\x5b\x1d\xfd\xf4\x8d\x50\x30\xec\x32\x95\x27\x6f\xdf\x4f\xb8\xc2\x3b\x36\x21\x7f\xb7\xa2\x9c\x59\x90\x7b\xd3\x3f\x4e\x2d\x8b\x30\x82\x31\x78\x6f\x5a\x2f\x8e\xde\x63\x2e\xb2\xa2\xce\x9d\x83\x33\xa3\x46\x58\x86\x09\x9a\x69\x08\x32\x69\x21\xfd\x96\x60\xba\x27\xa9\xe8\xca\xf6\xe2\x5e\xc7\xd7\xd6\x82\x88\x21\x4c\xcd\xf4\x51\xe5\x0e\xc6\x25\xb7\x7e\xda\xfb\xc2\xd8\xa4\x60\x5b\x4c\x1d\x13\xd2\xc0\x9f\xac\x61\x31\x50\x4f\x2a\x46\xcd\x6d\xca\x6e\x08\x5d\x51\x2e\xa2\x28\x8b\x68\x82\x0e\xa9\xe2\x8e\x6e\xd5\x5e\x7e\x02\x46\x8b\x9c\x12\xc1\x6e\x59\xd5\xc2\xba\xa8\x91\x65\x60\x97\xa5\x06\x0a\x84\x01\xeb\xf0\x7e\xd5\x52\x2a\xc5\x17\x85\x7b\x71\x13\x0e\x67\x1e\xb8\x2a\x59\x16\x57\xbb\x71\x23\xe9\x00\xc1\x6e\x05\x3f\xa9\x3b\xc7\x55\xee\xfd\x6f\x81\x73\xe4\x61\xd8\x83\xd2\xb2\xa2\x2b\xe6\xbe\x52\x9a\xea\x1a\x01\x83\x9e\x3f\x96\x5f\x06\x3e\x99\x1b\x2e\x72\x43\x8d\x1c\x48\xcb\xa2\xae\x68\xd1\x7c\x93\x49\x81\x8e\x78\xf5\x92\xfc\xfd\x1f\xe6\x1b\x33\x3f\xcb\x6d\xa2\xad\xfd\x76\x2e\x26\x93\xc9\x5c\xfc\x9b\x4d\x7e\x78\x49\x32\xa0\x0a\x4f\x35\xdb\x94\xd0\xc7\xea\xe9\x4d\x9e\x4f\xb2\x2a\x57\xd3\x2d\xdd\x14\x73\x41\x4b\xee\x32\x7b\x09\x2d\x39\xfb\xa4\x99\x80\xf9\xa6\x37\xdf\xa8\x29\x97\x4f\x6f\xbf\x98\x0b\x5c\xdb\xab\x5a\x69\xb9\xf9\xc0\xd0\xf7\x78\xce\x40\x97\x04\xba\xde\xca\x9f\x05\x8b\x19\xc1\xe8\x6b\x81\x91\xca\x8a\x69\x35\xcd\xaa\x7c\x5a\x56\xd2\x40\x0c\x17\x35\x95\xd5\x6a\x2e\x0c\x0d\x84\xe7\x40\xb0\x79\x49\x12\xc3\xda\x0e\x2c\x5c\xd0\x6e\x50\x35\xfe\x56\x70\xa5\xff\x23\xfa\xfb\x5b\xae\x74\x1b\xb8\x7b\xab\xb4\x27\xc7\xc5\xaa\x2e\x68\xb5\x3f\xc0\xfc\x0e\x04\xb1\xba\x65\x1f\xc5\x8d\x90\x77\xe2\x8d\xc1\x38\xf5\x92\x2c\x69\xa1\xe0\xe4\x55\x26\x0d\x72\xbc\x2a\x6a\xa5\x51\x31\xbd\x75\x67\x64\xfe\x98\x58\x08\x19\xc0\xc2\xcb\xb2\x35\xdb\x34\xa9\xc7\xb2\x64\xe2\x6c\x76\xf1\xe3\x97\x57\xed\xef\x77\xae\xcf\x5e\x40\x79\x2b\xa5\x03\x02\x13\x68\xb5\xe0\xba\xa2\xd5\x96\x5c\xcc\x88\xaa\x17\x13\xb7\x8d\xa7\xaf\x2e\xce\x3f\xb4\x68\x17\x9a\x42\xd6\x86\xda\xa1\x80\x04\x6a\x30\xe8\x70\x48\xce\xb4\xc4\xec\x42\x1b\x05\xb2\x21\xb7\x9c\x06\xf1\x78\x18\x69\x81\x8f\x86\xf3\xca\xe5\xfe\x42\x9d\xb3\xde\xdb\x7d\xc2\xeb\x9a\xb0\xcb\x06\x58\xda\xbe\x9d\xed\x72\x29\x06\x6e\x36\x2c\x05\xd3\x38\x90\xa0\x58\xf0\xb3\xdc\xc2\x1a\x29\x0a\xd0\x47\xcb\xdc\x68\xcc\xe0\x66\x40\x28\xec\x1d\x9f\x82\xe8\xc3\x2a\xe5\x94\xe3\x4c\x8a\x5b\x56\x69\x52\xb1\x4c\xae\x04\xff\x97\x9f\x5c\xb9\x40\x19\xb8\x6e\x7b\xe2\x22\x17\x9a\x55\x46\x48\x02\xe2\x86\xee\x80\x0d\xdd\x92\x8a\x99\xd7\x90\x5a\x04\x13\xba\x30\xbd\x77\x46\x38\xe6\x62\x29\x5f\x42\x21\x2b\xf5\xf2\xe9\xd3\x15\xd7\xee\x82\x66\x72\xb3\xa9\x05\xd7\xdb\xa7\xe0\xba\xe7\x8b\xda\x1c\xc9\xd3\x9c\xdd\xb2\xe2\xa9\xe2\xab\x09\xad\xb2\x35\xd7\x2c\xd3\x75\xc5\x9e\xd2\x92\x4f\x60\xed\x02\x68\xc9\x74\x93\xff\x5b\x65\x6f\xb4\x3a\x8e\x51\xbe\x7d\x82\x09\x97\xaf\xeb\x18\xcc\xed\xb3\xd9\xdf\x28\xfd\xa3\xf8\xe2\xa1\xed\x58\xf8\x87\xd7\x57\xd7\xc4\xbd\x3d\x9a\x29\x8f\xc0\x6f\x9e\x54\xcd\x39\x18\xa0\x71\xb1\x74\x72\x1a\x78\x4b\x42\xb3\x06\x0a\x09\x05\x8f\x88\xec\xaa\x5e\x6c\xb8\x56\x41\x05\x24\x39\x25\xaf\xbc\x1b\xa5\x2e\x73\xaa\x59\x3e\x25\x17\x82\xbc\xa2\x1b\x56\xbc\xa2\x8a\x7d\xf6\x53\x00\x61\x75\x62\x60\x3b\xf4\x1c\x12\x55\x0b\x52\x36\x62\x4f\x68\x13\xc7\xb6\x7b\x51\x0d\xa7\x6d\x27\xcf\xb9\x5c\xcb\xa6\xba\x01\x25\xbb\xd4\xb7\xf9\xb8\x83\xdd\x61\xc6\x1d\x9e\x97\x44\x9a\xc7\x5e\x87\x49\x17\x89\x7a\x31\x23\x8e\xa4\x21\x05\x5b\xb0\x42\x1a\xdc\x92\xd6\xf2\xc4\x62\xfe\xfa\xb4\x7c\x32\x4a\x08\xbf\xa4\x84\xb0\x96\xaa\x89\xbc\xfa\x0c\xd2\x41\x98\x5e\xb5\x2b\x19\x84\xbf\xed\x4b\x05\xad\x95\xed\x4a\x04\xe1\x8f\xbf\xa6\x34\x30\x72\xca\x91\x53\x86\x47\x30\x72\xca\x5f\x8c\x53\x86\xd4\x63\x18\x97\xdc\xa7\x45\xcd\xe7\x70\x3e\xc9\x3e\x95\x10\x67\x72\x31\x1b\x62\xdd\x32\x27\x6d\x1f\x68\x67\x1b\x9e\x5c\xcc\x6e\xbf\x82\x6b\x75\x31\xbb\x7d\xf1\xc4\xe9\xd9\x0e\x2d\xa2\x4a\xf4\x05\x1a\xed\x2f\xcc\xdd\x5c\xd2\x8c\x81\x6f\x6e\x3e\x3f\xda\x71\x83\x78\x6b\x14\xd8\x15\x0a\x29\x6f\x9c\x39\x90\xbb\x27\xa3\x56\x60\x17\xee\x13\x64\x41\x5e\xcc\x5a\x01\x78\x98\xb8\x0d\x0e\x3a\x6b\xe7\x00\x22\x42\xf5\x14\x82\xda\xa3\x7c\x7d\x3e\xd7\x60\x1c\xa9\xd5\x5e\x74\xfc\x4e\x3d\x00\x48\xc0\xf4\x81\x24\xb2\xb2\xa6\xbc\xd8\xa4\xbb\xed\x9b\xe7\x73\x33\x9f\xed\xdb\xec\xf7\x6f\x89\x9f\x6a\xbf\x95\x8b\x78\xb5\x01\xaf\xba\x85\xe7\x34\x85\xcc\x5f\xc3\x76\x5a\xb1\xca\x18\x25\xf1\xba\x41\x05\x34\x7d\xc4\xa6\xe5\x0a\xed\xac\x58\x8f\x8a\x6a\x52\xd6\x55\x29\xcd\x4d\x3d\xb9\x58\xda\xd0\xa8\x35\x6b\x8e\xc6\xbc\xc7\xc5\x3e\x76\x07\x58\x39\x9b\xa3\x64\x78\xfc\x05\xa3\x95\xf0\xc7\x66\x4f\xb0\x99\xd7\x2c\xa0\x56\x60\x17\x4f\x06\x75\xcc\xe7\xda\x1d\xc7\x34\x6a\xd5\x7e\x74\xf9\x8d\x34\x2b\xbc\x8c\x47\xfb\xec\x5c\xa9\xd7\x58\x42\xd3\xe0\xfd\xbf\xa3\x49\xdf\xfa\x5b\x9a\x38\x1f\x5f\x96\xe4\x2d\x17\xf5\xa7\x6e\xac\xf7\x1e\x67\x8f\xd0\x7f\x01\xd4\xdb\x94\x7a\x3b\x25\xcd\x6b\x42\x27\x35\x7a\x6c\xb9\xea\xa4\x2c\xe6\xb3\x92\xb7\xac\x12\xe8\xeb\xf1\xf1\x6f\xf2\xb4\x89\x79\x5b\x57\xb2\x5e\x61\x5c\x83\x33\xdd\x5a\xa1\xba\x3b\x2d\xdf\x1e\x2e\xe0\xa5\x19\xe8\x8b\x12\x60\x33\xef\x1c\xc9\x02\xe0\xe4\x5f\x08\x33\xfb\xc7\x8b\x9d\x1b\x24\xb9\xc5\x8b\x18\x2f\x53\xd1\x44\x13\xdd\x42\x7f\xf5\x6d\x03\xbe\x53\x12\x1a\x81\xa5\xc2\x5c\x86\xa7\x5a\x42\x6c\xbc\x59\x8b\x33\x72\xc4\x43\x0b\x0a\x99\xd1\xc2\x27\xb6\x5b\xc3\xe9\xc5\x92\xb4\xe8\x99\xa3\x65\xc1\xf9\x0e\x02\x35\x5c\x24\x07\xef\x56\xac\x21\x6c\x1f\xe8\x89\xd9\xbb\x95\xb5\x00\x72\x01\xf8\xa3\x44\xc6\xa1\x51\x73\x87\x3c\xac\x5b\x6b\x06\x14\x9c\x90\x3b\x43\xe6\xda\xc4\x39\x4e\x0f\xd0\x8a\x3b\x69\x1d\x7f\xe4\x65\x3e\x17\xb1\x31\x08\x9b\x9b\x1d\x9d\x54\x84\xc4\x08\xca\xe8\x56\x10\x28\x71\x1a\x59\x95\x5f\xc2\x29\xa1\x40\x35\xf6\xc5\x3f\x62\xfd\xd8\x21\xef\xf2\xdd\xd3\x9b\x22\x63\x98\x4e\x65\x94\x92\x0a\xcb\xef\xd9\xb7\x28\x72\xa2\xea\x38\x85\xa1\x0a\x8e\x96\xe9\xf5\x33\xf3\xff\x27\x36\x17\x08\x1c\x8c\x2c\x27\x66\xdd\x7f\x21\x5c\x13\xae\xc4\xb1\x6e\xac\xd1\xfd\x9c\x9c\xe0\x65\x2e\x2b\x69\xa4\x97\x00\x05\x10\xc6\x01\x55\x68\xe3\x61\xb3\xea\x28\xcf\x75\x09\x5b\x2f\x71\xaf\x90\x1f\x09\xd2\x0f\xe6\x50\xa2\x7f\xca\x48\x5c\x9b\xb2\x60\x1b\x83\x6b\x48\xea\x1b\xc2\x11\x2e\x5a\xfd\x25\x7e\x7a\x5c\x73\x5a\x14\x5b\xf2\x7f\x19\x18\x97\x15\x9b\x40\x5c\x8c\xf7\xf6\xcc\xcc\x21\x31\x5b\xec\xd8\x93\xfd\xac\xde\xa4\x74\x02\xf3\x71\xbd\xed\x51\xc0\xb7\x3d\xf4\xa5\x88\xba\x0d\xba\x88\xb7\x88\x57\xba\xdb\x33\x0c\x98\x71\x36\x6a\x1f\x82\x92\x96\x5b\xc7\xf0\xed\x8a\x61\x00\x37\x8a\xb6\x88\x02\xbb\x6b\x11\xa9\x8c\xe1\x1d\xaf\x86\x61\xf6\x2d\x79\x30\x88\xde\xc5\xbb\x6b\x93\x59\x5d\xe5\xe3\x68\x24\xf0\x82\xa1\xbd\x95\x89\x0c\x43\xa8\xbc\xb8\x61\x0f\xdc\x06\xb9\x1e\xc0\x1d\x7b\x43\x5e\x3b\x43\x5d\xfb\xc3\x23\xcd\xb6\x7a\x1e\xef\xcc\x54\xfd\x2d\x55\x34\xfb\x5c\x05\xac\x7a\x02\x3f\x45\x82\x60\x4f\x00\xb8\x89\x5f\x3a\x4a\xd4\xdd\x3b\x5c\xb4\x44\x31\xb6\x17\xdd\xcf\x9a\xac\x70\xbc\x70\x1c\xf8\xdc\x32\x90\x8e\x71\x26\xbb\x88\x74\xe1\xcf\x26\x4b\xc4\xb0\x5a\xaf\x83\x60\xc1\x77\xbb\x9c\x20\xe2\xd2\xa9\x04\x18\x4a\x98\x9a\x14\xd3\x2c\xca\x92\xd1\xca\x07\xf1\x41\x16\x0f\xf1\xeb\x6a\xfc\xdc\x6e\x66\x17\x8c\xd9\xc8\xeb\x93\x64\xa8\xe2\xce\xad\x1c\xad\x8d\xbf\x59\x6b\x23\x2f\xe9\x66\x51\xc8\xec\xe6\x73\x98\x1a\x2f\x66\x67\xef\xbe\x33\x93\xef\xda\x19\xfd\x0f\xfb\x46\xc6\x66\x41\xbb\x16\x46\xff\xcb\x68\x5e\xb4\xab\x1c\xcd\x8b\xa3\x79\xf1\x8f\x63\x5e\xf4\x44\x63\x90\x6d\x51\xec\x52\x9f\xe6\x73\xb8\x65\xd1\x28\x2c\x06\x76\xbd\x7c\xdf\x8e\x73\x3a\x21\x90\x2b\x1b\xc5\xc4\x15\xfe\xe9\xf4\x46\xcc\xd3\x63\x3a\x6a\x40\xe2\xda\xe7\x0b\x04\x1d\x49\xc8\xfc\xc8\x68\xc7\x2f\xb1\x6b\x88\xf9\x27\x48\x46\x10\xbd\x3a\x3f\x82\x09\x21\x28\x94\xe9\xd3\xe0\x85\x09\x55\xd7\x8c\x84\x7d\x61\x0f\x1c\xd0\xbb\x0f\x14\xfd\x69\x61\x14\xb6\x54\x95\xf5\x36\x64\x0c\xc7\x06\x8a\xd5\x3c\x43\xb8\x98\xd4\x36\xb5\xc3\x89\x21\xb0\xe2\x29\x11\xbc\x80\x76\x36\x89\x04\x8b\x0d\xa3\x28\xe7\x34\xb3\x11\xb8\x63\x8c\xa1\x59\x50\x48\x31\x09\xe6\x30\xda\x34\x17\x39\xfb\x44\xf8\x69\xca\xa6\x60\x7f\xf7\x09\x2f\xdc\x10\x41\x0b\xfc\xe0\x35\x7b\x8b\x05\x0a\x99\x98\x13\xe9\x8a\x9d\x13\x5f\xe0\x66\x54\x4a\x66\x1c\x2a\x86\x50\x8d\xd7\x91\x79\x83\xee\x99\xff\x26\x2a\x12\x1a\x50\xde\x43\xa4\xea\xd0\x00\xfe\x8d\x5c\xbf\x3f\x7f\xff\x12\x0b\x1f\x89\xba\x28\xe8\x02\xc5\xca\x0d\x15\x35\xa8\xbf\x34\xcf\x41\xba\x9c\x92\x9f\x98\x63\x31\x48\x87\x88\xaf\x8c\x50\x4d\x56\xf1\x4a\xa0\xff\x66\x30\x6c\x4d\x45\x5e\x30\xf2\xf7\x7f\xfc\xbb\x21\x7e\x78\xd9\x8a\xad\x2d\x61\x12\x55\xf0\xdd\x42\x52\x7a\x43\x87\xa0\xde\xc0\xb4\x17\x31\x03\xe8\x43\xb8\x2e\xf5\x98\xea\xe3\x84\x1c\x21\x0b\x4e\x2d\xb6\x5e\x08\xa8\x6e\xe3\x77\x43\x05\xa6\xe4\x5a\x92\xa5\x61\x3c\xc1\x79\xa3\xed\x04\x93\xfe\x9a\x07\xa3\x14\xc1\x5c\x94\x56\xea\x40\x1b\x2f\x8f\x95\x6d\xff\xe4\x50\x28\x58\x46\x32\x43\x9e\x46\x10\x93\xa1\xad\xc4\xeb\x05\x87\x63\x5b\xaf\x42\x8d\x98\xf0\x33\x8f\xab\x7b\x64\x90\x56\xad\x98\x11\xb4\x69\x15\x23\xc9\x76\x73\x87\xb5\x76\x18\xa2\xfe\xf6\xe5\x2f\xde\x5b\xaf\xcc\x78\xde\x1b\x63\x7e\xed\x30\xe9\x58\x91\x57\x17\xe7\x1f\x0e\xa4\xd5\x39\x2b\x98\x8e\x6a\xd8\xad\xb7\x9c\xe3\x30\x7b\x17\xbc\x30\x68\x13\xb4\x7c\x5c\xfa\x9d\xac\x6e\x68\x25\x6b\x83\xce\x41\x7f\x82\x84\x01\xd4\xe0\x55\x90\xa9\x7e\x36\xbb\xc0\x08\xe5\xc5\x16\x97\x85\x74\xb5\xc0\x84\x9b\x8a\xe9\xba\x12\x04\xda\x88\x2c\x0b\x1e\x87\x34\xab\x2a\x59\xb9\x6c\x9a\x86\xad\x2e\x18\x13\x81\x78\xa4\x1d\xa5\x72\x89\xe0\x4c\x7b\x8a\x76\x78\x2e\xda\x3f\x6b\x26\x32\x76\x09\x69\x75\x51\x30\x82\x97\xe0\x25\x79\xd6\x03\x62\x43\x40\x8d\x4a\x08\x6e\x2d\x9c\xd4\x26\xeb\xa1\x5d\x99\x2b\xb7\x05\x4c\x73\xd7\x3c\x6e\xfd\x68\xb6\xce\x15\xb9\xab\xb8\xd6\x4c\x58\xc3\x40\x8b\x5f\x41\x04\xb3\x92\xf6\xa5\xa8\xc0\xe3\x6b\xe3\x44\x17\x56\x12\x0a\x30\xc4\xa6\xc1\x99\x85\x80\x4d\x43\x2b\x1f\x70\x6f\x4b\x4d\x57\xac\x60\x54\x25\xae\x0e\xc8\x62\xa7\xa4\xa4\x2a\x70\x34\xb6\x37\x1e\xb0\x43\xa0\xa2\x6d\xe2\x16\x9d\xb4\x28\xe4\x9d\x22\xb5\x0a\x4d\xcb\x10\xce\xad\x34\xa1\xa4\xa2\x58\xe2\xdc\x16\xe9\x32\x3c\x9a\x09\x55\x5b\x00\x5c\x44\x1b\x54\xae\x29\x58\xb6\x01\x89\x70\x43\x86\x3b\x8b\x9c\x54\x6c\x62\x17\x63\xb4\x28\x28\xc9\x07\x59\x90\x38\xc6\x89\xe9\x11\x8c\xc2\xfe\x2c\xc0\x7a\x5f\x7c\x95\x42\xb8\x04\x5f\x6e\x23\xdc\x1b\x59\x35\x24\x3d\x82\x7d\x83\xa9\x5d\xcf\x92\x7a\x85\x85\x9d\x7e\x1d\x65\x20\xd3\xb1\xdc\xcb\x4d\x41\xf5\x07\x44\x21\xc8\x65\x79\x10\xd6\x35\xe8\x30\x0d\x89\x89\xf3\xb1\x26\x71\x84\x34\x09\xb6\x37\x6c\xeb\xea\x67\x94\xea\x94\x28\xd4\x83\x6f\x18\x24\x05\x64\x54\x69\xdb\x5e\x0d\x08\x68\x92\x40\xc4\xe9\x3b\x16\x82\x39\x1b\xa8\x28\x5c\xb5\x46\xbb\xd4\x5e\xaf\xb1\x98\xf5\xe4\x46\xa7\x44\xa8\x1a\x1c\x14\x51\xcf\x78\x21\xc5\x8a\x55\x48\x96\xad\x9f\x11\xfb\xd6\x7c\x54\x38\xdd\x2b\x29\x96\x7c\xb5\xfb\x3e\x73\x49\x18\x8d\xe5\x03\x74\xd2\xc0\x5a\xf8\x93\xee\xdb\xe0\xc7\x66\xa8\x4b\x83\xaa\x30\xe9\xda\x59\x46\x43\x41\x09\x6d\xfe\x89\x1c\x0f\x23\xd5\xb7\x45\xa9\x47\x94\x7d\x93\x4c\x39\x61\x92\x9e\x84\xeb\xde\xfb\x29\x21\xb7\x4f\x80\xc1\xef\x7e\xd7\xc6\x98\xdd\x5f\x03\x58\x8f\x86\xce\x47\x32\x74\x66\x70\x19\x3e\x97\xa5\x13\xaf\x5a\xcc\xd4\x89\xbf\xc4\x6d\x9d\x76\x4d\x31\x63\x67\xe6\x27\x1c\xad\x9d\xa3\xb5\x73\xb4\x76\xfe\xe1\xac\x9d\x48\x37\x0e\x30\x77\x86\x24\xa8\xf9\xdc\xc3\xde\x59\x6b\x69\xc5\x4d\x06\x02\x49\x8c\xb7\x76\x8a\x0a\x1b\xfa\x09\x1f\x9c\xb1\xea\x07\xb0\x59\xf6\x49\x92\xed\xf1\x60\x34\x15\x52\x4c\xfe\xc5\x2a\x79\xea\x4c\x68\x1b\xfa\x29\x10\x15\x43\x37\xd1\xce\xd2\xa0\xac\x1a\x15\x50\xab\xc3\xdb\x38\x41\x9b\x4a\x98\x39\x37\xf4\x13\xdf\xd4\x9b\x97\xe4\xf9\x17\x5f\xfd\xf9\xab\x6f\xbe\x7c\xf1\xd5\x9f\x23\x83\xb8\xc0\x41\x11\x15\xaf\x5b\x96\xef\x13\x0e\x3b\x60\x99\x16\x44\xf6\x0e\xe9\x10\x09\x63\x14\x23\xee\x2d\x46\xa0\xfd\xea\x73\x89\x11\x3f\xc0\xec\x31\x31\x02\x7f\x89\x8b\x11\x76\x4d\x31\x31\x62\xed\x27\x1c\xc5\x88\x51\x8c\x18\xc5\x88\x3f\x9c\x18\x81\x74\xe3\x00\x31\x22\x24\x41\xcd\xe7\x70\x31\x02\x18\xf4\x43\x8c\x55\x83\x94\xf7\xb8\x3d\x26\x6d\xef\xee\x94\x5b\x90\x58\x5e\x9c\x27\x9f\x8b\x59\xd7\x93\x2c\x3a\xe2\x7f\x9d\xf8\x57\x8c\xfc\xf8\x51\xf8\x71\x29\x65\xf1\x79\x78\xf1\x4c\xba\xf0\xc1\x90\x0f\x9b\x6f\x63\x3c\x18\xd6\xb1\xcf\x7f\x4b\x3b\xc9\xc8\x7b\x47\xde\x3b\xf2\xde\x3f\x18\xef\x35\xb4\x62\x30\xdf\x35\x83\xef\xa3\xab\x63\xdd\xb9\x8f\x6a\x40\xac\x83\x1f\xea\x82\x36\x14\x16\xba\x42\xe7\x03\x31\xb4\xca\xc7\x1d\xb9\xd4\x38\x28\xb4\x1a\x63\xce\x10\x6a\xe4\x2b\x75\xb9\xcc\xac\xd3\xa6\xd2\x96\x96\xe4\xef\xf3\xa3\xeb\x5a\x08\x56\x40\x81\xb7\xa3\x9f\x6c\x66\xc7\xfc\xe8\x1f\xb0\xef\x05\xcd\x6e\x26\x50\xba\x52\xf3\x05\x2f\xf6\x94\x54\xf2\x79\xf2\xda\x80\x2d\x5f\xf1\x7f\x0d\x4a\x9e\x40\x67\x94\xe2\xff\x02\x1b\x42\xad\x30\xe3\xa5\xc9\x44\x24\x54\x29\xbe\x12\x1b\x73\x99\x92\x0d\x31\x6c\xcd\x34\x59\x4c\xc9\x79\x00\x9e\xe7\x2f\xec\x64\x36\xe1\xf4\x8b\xe7\xcf\xdd\x17\x2f\x92\xce\x99\x84\x38\x34\x34\x86\x00\x0e\xf9\x3e\x01\x04\x5c\xd1\x45\xc1\xbe\xfb\x7e\xf6\xfa\x53\x22\xa7\xa1\x4d\xb4\xce\xf1\x01\xc2\x60\xb8\x21\x51\x95\xac\x7d\x5d\x79\x80\xc8\xc5\x8c\x18\xac\x3f\xb6\x21\x0d\x44\xde\xc6\xe3\x93\xbe\xfb\x7e\x36\x25\x7f\x3f\x77\x1e\x76\x60\x9a\xff\x88\x34\xb0\xed\x14\xed\xec\x06\x7a\x5d\x57\xe0\xd0\x76\x83\xc1\xf2\x54\xd5\x4d\xe6\xaa\x91\x8f\x9b\x60\x05\x3c\xfb\x26\x29\x35\xb6\xf8\x66\xbb\x80\x00\x07\xae\x9a\x97\xbc\xec\x07\xb5\xf7\x15\xbe\xb4\xc4\x1b\x4a\x0d\x72\x6c\xcc\xde\x64\xb9\x9e\xcd\x2e\x6e\xbf\x80\x5b\x77\x47\xab\x3c\xba\xda\xd6\x6d\x34\xcc\x41\x5b\xee\x12\xce\x0a\x5b\x47\x62\x72\xda\xfe\x29\x0a\x00\x4c\xed\x45\x2e\x6d\x2e\x90\x59\xd4\x34\x72\x7c\x3d\x91\x43\x4c\xa4\xce\x2f\x7e\x86\x76\x7c\x73\x84\x06\x96\x44\x03\x3d\x32\x7b\x0a\x29\x5d\x7c\x4e\xc8\x5b\xcb\x59\xc1\x6f\x59\xd5\xb4\x56\x32\x5f\xf9\xc6\x83\x6a\xa7\xc0\x7a\xf4\x84\x49\xdf\x29\x13\xa8\xf5\x19\xcd\xe6\xda\xdb\xdb\x35\x10\xeb\x8b\x19\x3c\x00\x25\xa6\xc0\x7b\x2d\x82\x02\x75\xf3\x23\xac\x59\xe7\x1a\x89\x42\x7b\xe2\x09\xb6\xcc\x9d\x1f\x4d\x09\x39\x4b\xed\xd7\xcc\xb9\x33\x43\x13\x41\x52\x2b\xfb\xe6\x06\x86\xe6\x6c\xcd\xb5\x06\x1c\x49\xb6\x8a\x0f\xe0\xd5\xce\xb5\xdf\x83\x1d\x21\x67\xc1\x1a\xda\xeb\x4e\xcd\x0e\x0b\x74\x88\xbe\xbb\xc0\x3b\x57\xfe\x2f\x5c\x03\xe6\xbb\x99\xdb\x91\x9a\x93\x36\xed\xcf\x6c\xab\x61\x27\x85\xba\x06\x19\x66\x72\xe1\x4e\xa0\x49\x12\xee\x6c\x1b\x79\xc2\x97\x6d\xb6\xf9\xc4\xac\xa2\x81\x75\x27\xea\x74\x33\xba\xb8\x16\x6c\x30\xfe\xdd\x80\x2c\xc1\x57\x4e\x3e\x41\x9f\x63\x5d\x35\xb2\x49\xe4\xc0\xbb\x51\xfd\x62\x67\x8f\xa7\xae\xb7\x0b\x57\x18\xd7\x00\x80\xc2\x38\xb2\xf9\xd1\x25\xbb\x85\x52\xf0\x27\x50\x77\xbd\xfd\xb2\xd8\xec\x66\x06\x4b\x9b\x63\x4d\x05\x3b\xd3\x25\xa9\x9e\xc8\x5a\xaf\x24\x17\xab\x3f\x0a\x49\xed\xa4\x3a\x82\xea\xf7\x03\xe1\x81\x65\x5a\x9b\xf1\x0d\x51\x75\x64\x11\x8a\xa1\x06\x1d\xd3\x48\x67\xc6\xb9\x15\x88\x8d\xde\x11\xde\xff\x3d\xe2\x2a\x6b\xad\x78\xce\xbc\x82\xe9\x45\xd4\xd8\xa4\xd0\x4f\x46\xfd\xb3\x66\x15\xcd\xa3\xcd\x81\xba\xa1\x21\xf3\xc1\x6d\x20\xce\x30\xfa\xcc\x0a\xed\xb6\x28\xa0\xc1\x16\x1b\xd2\xeb\x33\x9a\x81\xd2\x2c\xb6\x58\x03\x30\xb6\x66\xdf\x4b\xe9\x30\x5c\xbe\xfd\x54\x50\xf1\xc0\x9b\xfd\xe3\xdf\xde\x9e\x5d\xfe\x62\x57\x1b\xde\x16\x95\x8d\xfd\x02\xee\x7d\xb7\x93\x06\xb8\xfd\xb8\x9b\xff\x6e\x76\x36\xfc\x62\x62\xf0\x6c\x52\x2d\x68\xf6\xd9\xed\x6d\x68\xc7\xc2\xeb\xf9\x59\xcc\x6e\x1f\x9a\x17\xec\x5b\xdf\x82\x1f\x63\x46\xb8\x70\x71\xfb\xb6\xb8\xaa\x3d\xf3\x68\x92\x1b\x4d\x72\xa3\x49\xee\x0f\x66\x92\x0b\x08\xc8\x60\xcb\xdc\x1e\x45\x6a\x3e\x87\xdb\xeb\x2c\xd1\xc9\xa1\xd8\x70\x1f\xf7\xfe\x10\x0e\x6e\xf7\x9b\xc7\xaf\xa8\xc8\x9f\xb6\xcc\x51\x71\x1b\x04\x04\xc4\xec\x59\x30\xd8\xa7\xac\xa8\x73\xdb\xf8\x58\xb0\xbb\x30\xb6\x75\xcc\xd9\xff\xcd\xf3\xe2\x9b\x7a\xc1\x9a\xe4\x3b\xd5\x12\xf0\x3e\x07\x6b\xfe\x8f\x7a\xc1\x5e\x35\xef\x7b\x15\xbe\x6f\x97\x53\x77\x8d\xdd\x67\xdc\x9d\x3b\xd9\xe5\xe3\x5d\x83\x47\xb6\x6e\x57\x39\xb2\xf5\x91\xad\xff\x71\xd8\x7a\x17\xb5\xd9\xe7\xf2\xad\xfe\x19\xbb\x00\x0e\x52\x8b\x02\x22\xd3\xd6\x9e\x87\x33\xfb\x60\x8a\x21\x8a\xba\x7b\x1b\x5a\xae\xb1\xa3\x89\x7b\xb3\xed\xc5\x73\xcb\xf3\x9a\x16\x3d\x0d\x53\x83\xd7\x1e\x6c\x65\xef\xeb\x81\x9a\xe8\x7c\x9a\x58\x72\xbb\x0d\x6a\xb3\xae\x64\xdf\xd1\xd7\xd6\x68\x0f\xb9\xa1\x60\x4e\x38\x85\xbc\x4d\x2d\xa1\x28\x80\x96\xce\x44\x90\x98\x61\x40\x07\x5b\x43\xa6\x44\xc6\x0b\x56\xcd\x58\xc5\x65\x3a\x0d\x79\x97\x38\x7c\xd8\x79\xd0\x85\x25\x97\xf8\x97\x96\xe6\x5f\x50\xa8\xc1\xbd\x82\x27\xf3\x17\xdd\xc7\xa7\x3b\xba\xe2\x71\x54\x53\x90\x3e\x42\x87\xd7\xd7\x9b\x98\xb7\xcb\x7d\xfa\x53\x97\xfb\x12\x97\x13\x85\xe4\xf6\x20\x70\x29\xf3\xee\x93\x36\xbf\xff\x36\x0e\x79\x1d\xd4\xf6\x1b\x7a\xc0\x61\x3d\xc0\xc6\x43\xae\xb6\x22\x73\xc6\x7e\xe0\x90\x50\xa1\xb2\x29\xd1\xde\x75\xba\xe7\xce\x8d\x78\xdf\x9d\x0e\xdc\x2d\xb1\x41\xfb\xaf\x2a\x46\x13\xd5\x7e\x13\x7b\x3e\x3e\xf3\x8f\x35\x27\x5b\x6b\xb9\xa1\x9a\x67\x4d\x5f\x2d\xd9\xdb\xe8\xbd\x0d\x15\x50\x9e\xd8\x2d\xab\xb6\xd6\x49\xd2\x20\xb3\x83\x49\x17\x4a\x93\xc1\x9d\x87\x87\xf4\x1d\x2e\x18\xbd\xf9\xbe\xa2\x19\x3b\xf0\xbe\xbf\x6d\x3f\xb7\x73\xdd\xdb\x49\x97\x0e\xe7\xbb\xf6\x04\xc6\x6d\xec\xa6\x0e\x0d\x19\x69\xe8\x0d\x6b\x12\xd8\xcd\x72\x0d\x0f\xbf\x42\x3c\x89\x24\x1b\xb4\xa7\xb4\x7e\xf6\x8b\x19\x59\xd1\x6a\x41\x57\x66\x39\x45\xc1\x32\xcc\x95\x6d\x00\xff\xc5\x43\xc9\xc8\x1f\x91\x74\x12\xb8\xff\xd0\xff\xb1\xeb\xfa\xb5\x77\x7b\xe5\x1f\x09\x03\x6d\x6c\xfb\x3c\x49\x32\x59\x6e\x07\xb6\x3c\x07\x8a\xda\xf4\x1e\x0a\xea\x75\xaa\x70\x97\x96\xa0\x7e\x5e\x2e\x81\xc5\xfc\x86\xf0\x09\x5b\xfb\xbb\x83\x53\xd8\x72\x9d\xbf\x0d\x5e\xf1\xc7\xc3\xea\xbe\xa3\x6e\xb7\xc1\x1c\x72\xe4\xed\x16\x98\x5d\x47\x6f\xe7\x4e\x2d\xdf\x36\xb5\x0c\x51\x63\xc4\x81\x5f\x03\x07\x5c\x19\xe6\x1e\x29\xaa\xed\x26\xde\x79\xa6\x0b\x0f\xdc\xfc\xa9\x3d\xb0\x1d\x49\x6c\xc4\x84\x5f\x07\x13\xba\xb3\x2c\x16\xf5\xca\xd6\x8c\x9d\x0d\x08\x0a\x3c\xdf\x19\xbf\xcf\x16\x2a\x8d\xb5\x42\xaa\x5b\x46\x36\x6c\x23\xab\x78\xe5\x2a\x83\x4e\x65\xed\x0b\xf2\x12\x23\xe9\xec\x7b\xa7\xf1\xe7\x1d\xd7\x72\x77\x9d\x96\x2f\x9f\xa7\x20\x90\x88\xbb\x64\x3a\xcb\x7f\xfc\xf2\x95\xdc\x94\x14\x24\xae\x24\xd2\xb4\x91\xe5\x75\xf4\xb1\x1d\x94\x59\x30\x7d\x67\x24\x42\xf3\x8e\xdb\x2f\xe3\x9a\xbe\x9b\xc0\x9b\x84\x1a\xc1\x31\xbc\x0e\xa1\x1c\xf8\x2c\x8a\x2f\x5d\x78\xb2\x66\xb4\xd0\xeb\x57\x6b\x16\x4f\x05\x6e\x6f\xed\x87\x60\xb0\x27\x00\xb2\x72\x4b\x51\xbe\x6b\xb5\xd1\x11\x70\xe6\xe8\xd6\x70\x82\x41\x42\x4e\xd7\xda\x0b\xb9\xba\x32\x9a\x08\xd7\xdb\xab\xac\x62\x2c\x56\x3e\x67\x47\xee\xdf\x7d\xc2\x1d\x4b\x21\x57\x44\xd9\x5f\x08\x5d\xc8\x5b\x66\x4b\x97\x14\x72\x95\xa8\xd5\xc7\x30\x30\xc6\x1a\x56\x95\xce\x65\xad\xc3\xc3\xb8\x10\x4b\x79\xe8\x8e\xca\x4a\x6e\x8c\x30\x59\xab\x77\x4c\x57\x3c\x53\x43\xae\xde\xf1\x2c\xf6\x94\xdb\xd9\xf5\xab\x99\xbd\x7c\x2e\x1e\xbc\x19\x1e\xdb\xd8\x06\xa7\xc0\x8b\x5a\x39\xcb\xf2\x82\x8b\x1c\x2c\x92\x3d\x18\xf8\xed\xb3\x6f\xbf\x4a\x6f\x3a\x7a\xd1\xd2\x21\x1e\x29\x5b\x57\xd2\x98\xd8\x38\x8b\x12\xa0\xea\x34\x27\xc2\xd3\x81\x59\xd7\x9e\xab\xf9\x36\x62\x85\xb7\xca\x61\x60\x3b\x24\x17\xfa\x18\x1a\xcf\x2c\xeb\x02\x5d\x8c\xf9\x06\x2c\x93\x12\xb2\xd5\x8d\x26\x07\x04\x10\x6b\x4c\xd1\x4c\xd7\x74\x2f\x70\x08\x67\xc4\xb3\xba\xa3\xbe\xfa\xb7\x2b\x9e\x6f\x83\x41\x37\x32\xc7\xd8\xfc\x85\x11\xc5\x6f\x79\x25\x21\x4a\x9d\xdc\xd2\x8a\xc3\x45\xdc\x5b\x2f\x46\x4a\xde\xd4\x0b\x36\x09\x8d\x9f\x65\x25\x33\xa6\x76\x2d\x1d\x5d\x9d\x98\x9a\xb7\xfd\x48\xa3\xa6\xcf\x03\x53\x00\x53\xdc\xab\x75\x6c\xaf\xdb\x6f\xdd\x6d\x37\x10\x01\x40\x22\x00\x34\x0a\x04\xac\xcd\x26\x96\x45\x8d\xcd\x07\xc0\x0b\x50\x0b\xc1\xc5\x0a\x11\xe4\xc0\x82\x51\x55\xf8\x6c\xaf\x1f\x38\x1c\xbc\xb3\xb1\xe5\xd2\xa8\xfa\xb7\xac\x85\x15\x5c\xb9\x17\xc4\x36\xc8\x53\x07\x2d\xf3\x53\x5b\xe8\x7d\xc3\xaa\x95\x73\x76\x9c\xcd\x2e\x1a\x5f\x87\x91\x48\xe2\x2c\x39\x81\x65\x11\xb8\xf4\x48\x61\xdd\x56\xf3\x3d\xe0\x3c\xa6\xe5\x9c\xf4\x59\xcf\x07\x2c\x9f\x0c\xb0\xa2\xef\x6d\xe2\x30\x4b\x7a\x97\xc8\xf8\x98\xe2\xf2\xc0\xdd\x92\xc3\xc4\xe6\xbd\xcd\x0f\x17\x9d\xfb\xac\x90\x6d\xc9\x7a\x90\xf8\xdc\x37\x65\xb7\x74\x4d\x1e\xd5\x52\xd9\x61\x88\x27\x9f\xcb\x18\x4f\x1e\xc1\xc8\x42\x86\xe3\xc9\x40\xc3\xfc\xde\x76\x0f\x30\xce\xf7\x9d\x68\x63\xbb\x7f\x1c\x03\xfd\x01\xbb\x27\x87\x18\xea\xf7\x60\x30\xcc\x58\xdf\x3f\x29\x88\x26\x8f\x6e\xb0\x27\x83\xaf\x02\x19\x78\x1d\xc8\x41\xc6\x7b\x72\x7f\x03\x7e\xdf\xc6\x9a\x6b\x74\xa0\x11\xbf\x6f\xe2\x88\xa0\xdc\x6b\xc8\xef\x9b\xb3\xc7\xce\x4f\x0e\x38\xa6\x91\xa8\xf7\x82\x68\x90\x7b\x60\x1f\x38\x8f\xe7\x22\x20\x8f\xea\x26\x18\xbe\xf5\x21\x17\xb8\xd3\x65\xb0\x07\x94\xc7\x74\x1b\x90\x5f\x96\xab\x8d\x17\xe5\x11\xb0\x65\x90\xd7\x81\x7c\x36\xcf\x03\xf9\x4c\xde\x07\x32\xa2\xd1\x2f\x8a\x46\x03\x1d\x17\xe4\x73\x3a\x2f\xc8\xe7\x72\x60\x90\x11\x99\x7e\x41\x64\xea\x1b\x31\xc0\xff\x41\x3e\x97\x0f\x84\x3c\xbe\x1f\x84\xf4\xfb\x42\xc8\x90\x7e\x32\x83\x7d\x22\x7b\xc0\x79\x2c\xbf\x08\x79\x5c\xdf\x08\x19\x80\x53\x3d\x3e\x92\xfd\xad\x3e\x92\x9f\x84\x1c\xe8\x2b\x19\xb2\x97\x21\x3e\x93\xfd\x0d\x1d\xec\x37\x49\x6d\xa7\x90\x2b\xf5\x00\xdf\xc9\x90\x1d\x0e\xf5\xa1\xec\xef\xf2\x51\xfd\x28\xe4\xa1\xbe\x94\xd4\xa4\x29\x17\x0b\xe9\xbf\xbf\x1d\xdd\x58\x3b\xdc\x2d\xa4\x93\x5c\x8e\xa9\x3e\x0f\x4a\xf5\xb1\xb9\xf4\xa0\xfe\xf0\xcf\x52\x7a\xf6\x12\xdf\x80\x2a\x18\xfe\xd0\x64\xf3\xb4\x7e\xdc\x4f\xdf\xd9\x59\x9d\x3d\x37\x9f\xb0\x13\xfe\x0c\x53\x0f\xcc\xd0\xf1\x26\x71\x90\xb2\xc6\x24\x9d\x31\x49\x67\x4c\xd2\xf9\x7d\x25\xe9\x74\xb9\x88\x57\x15\x53\xbd\xb1\x24\xd7\xae\x97\xb5\x41\x7f\x06\x79\xaf\xf8\xa0\x6d\xf4\x4e\xb0\xdf\x95\xf9\xc3\x7b\x45\x63\x3c\x8f\xba\xa7\xb1\x5a\x09\xd9\x50\x9d\xad\x49\x56\x71\xcd\x2a\x4e\xe1\x92\x50\x92\xc9\xaa\x62\xaa\x34\x1c\x42\xac\x88\x95\x1c\xb5\xc4\x1e\xdc\x07\xe5\xc3\xb6\xf6\x30\x3f\x3a\x23\x1f\xcc\x02\x99\xc8\x68\xa9\x6a\xb8\xb7\xcd\x8a\x62\x4b\x49\x98\xf0\xa9\xb5\x04\x93\xef\xa4\x5e\xef\xb4\xe1\x0e\x5a\x8b\xa3\x8d\xcc\x4c\xb4\xdb\x6e\x3c\x21\x82\xf8\x96\xfa\xb6\xed\xf7\x84\x28\x56\xd2\x0a\x3b\x3a\xd5\x9a\xd0\x30\xef\x18\x87\x40\xf5\x3e\xb3\x0a\x2e\xe0\x3c\x12\x0b\x16\xb9\x3b\xaf\x10\xf0\x5c\xac\xa6\x64\x3e\x17\xb6\x8b\xb9\x54\x1c\xfc\xd7\x3b\x90\x58\xd3\xd4\xac\x44\xb0\x15\x2c\xce\x12\x5e\xa3\xe0\xb0\x25\xff\xe4\xba\x87\xcd\xe7\xf3\xa3\x4b\xa9\xcd\xff\xa6\xe4\xac\x28\x6c\xef\x80\x70\xf6\xf8\xcc\xb6\x1c\x15\x45\x84\xda\xd4\x0a\xdb\xc6\x51\xcd\x15\x04\x52\x60\x71\x17\xbb\x15\x2d\x71\xce\x29\x39\x03\x66\xb7\x5f\x31\xd9\x42\x17\x90\x93\x0a\x87\xa0\x56\xc9\xb3\x9b\x86\xde\x4e\x66\x3b\xe6\x0f\xbb\x1f\xe0\x0c\x38\x79\x1a\xae\x00\xfd\xf8\x12\xa1\x39\x59\x8d\x81\x24\xb8\xc4\x78\xf1\xac\x5e\x3b\x02\x22\x5c\x52\xc6\xec\xd7\xb2\x83\x5a\x3e\xc9\x59\x76\x94\xe3\xa6\x4a\x57\x2b\xcc\x61\x07\x39\x40\xbc\x86\x8b\xd9\xa1\xde\xb7\x6a\x09\x11\x43\x0b\x75\xec\x1e\x0f\x04\x06\x09\xdd\xfa\x1d\x85\x82\x12\x3b\x9b\x1f\x5d\xee\x3e\xec\x3a\x63\x95\x18\x09\x63\x2b\x3e\xa5\xba\xf6\x37\x1f\x0f\x18\xea\x89\x00\x61\x9f\x0c\x0b\x53\x40\x1f\xde\x8b\x62\x4b\x74\x45\x97\x4b\x9e\x21\xa4\x5c\xd1\xb2\x3e\x4f\x02\x70\xb9\x13\x83\x42\xe0\xe0\x42\x4a\xa5\x9f\x04\x6e\xc2\xa0\xb3\x1b\xbe\x3b\x5d\x3b\x6f\x07\x64\xca\x17\xdc\x83\xb3\x34\x0c\x10\xaa\x4a\x01\x22\xef\xc1\xa6\x7b\x52\xa4\x92\x12\xbc\x25\x1e\x04\x46\x61\x44\xb1\x2c\x77\xa1\x4c\x8a\x6e\xf0\x2a\x60\xa5\xa2\xee\x49\xa1\xb0\x97\x33\xec\x05\x5b\x46\x5c\xab\xfc\xba\xc9\x62\x8b\x8b\x76\x6f\xee\x01\xaa\xdb\xb6\x83\x97\x4b\x1a\x32\xeb\x42\x3a\xf8\x46\x56\x6d\x19\xfb\x34\xc9\x03\xdc\x07\x8a\xad\xee\x83\x8d\xf0\x4d\x59\x70\xa6\x1a\xfd\x33\x44\x36\xe8\xd4\xd9\x77\x60\x60\x7a\x02\xaf\xa3\x58\x25\x61\xc2\x03\xf8\x0e\x8a\x4a\xf1\xdd\x66\x5b\xfb\x4c\x6e\xff\x78\x55\xc8\x05\x2d\x4e\x9e\xf4\x18\xfa\x7e\x19\x00\x7c\x0f\x8b\xb1\x4b\x34\xfa\xb8\xac\x5a\xf1\x08\xb0\x8d\xee\x49\xcd\x1e\x5b\xd3\x34\x07\xdd\x77\x96\x3d\xab\x0d\xb7\x88\x81\x80\xca\xb5\x68\xdd\x39\x34\x0a\xf5\x14\x09\x8d\x57\x4f\x6b\x3e\xcd\x95\x4d\x30\x0e\xff\xee\x41\x66\x56\xc1\x74\xb7\xa1\xba\x1d\xd6\xc2\xb4\x4a\x13\x46\x23\xce\x43\x57\x1b\xd5\xef\xb6\x77\x2c\x10\x8e\x10\x78\x05\xa8\x4e\x71\xba\xe8\x49\x5f\x0f\xb4\xdb\x74\xb1\x55\xcc\xd2\x48\x0e\xc2\xf7\x7e\xc7\xae\xce\x58\x3b\xb2\x3b\x49\x34\x2d\x47\x06\xef\x1d\xe8\x8d\xee\xa8\x7a\xdc\x7c\x84\xd4\x97\x87\x9d\x09\x3e\xe0\x8c\x5c\x3b\xe2\x97\xdb\xb1\x19\xd2\xc3\x5e\xcc\x39\xfe\xe6\x60\x31\x93\xd5\x81\xc0\x80\x27\x7a\xa0\x01\x63\x86\x80\x83\x5c\x41\x47\x59\xc0\x52\x25\x37\x0c\xba\xd9\xca\x4c\x16\x8a\xac\xe9\x2d\xfa\x03\xd4\x29\x86\x9a\x6c\xf1\xaf\x1e\x42\x5b\xb1\xa0\x30\x37\xd7\xce\xa0\xa7\x9c\x3d\x12\x66\xb7\x12\x95\x25\xe4\x46\x41\xe9\xa5\x8a\xb6\x85\x32\x14\xf7\xbb\x7e\x35\x73\xd5\x65\x3f\x9e\xcf\x92\xa5\x4b\xf1\x33\xe4\x54\xa9\xd8\xbe\x5f\xf6\x8c\x99\xf4\xbb\x1e\xf6\x07\x0f\x09\x46\x2a\xa9\xd6\xac\x12\x2f\xc9\xff\x9a\xfe\x7b\xf7\xc8\x4f\x93\x1b\x1f\x95\x31\xe1\x42\x4f\x64\x35\xc1\x37\xa4\xda\xd4\x37\x9f\xa1\x08\x79\xb8\x70\x79\xd9\x3c\xd4\x83\x96\xc3\xe4\x2b\x8b\x99\xe4\x8a\x05\xcc\x05\xa9\xb0\x51\x30\x54\xbd\xd0\x05\x33\xb2\x32\x2a\x5c\xf6\x5d\xdd\x73\x7a\x69\xa9\x13\x55\x86\x9d\x59\x79\xd8\x95\x9d\x1f\xf9\x1b\xdb\xc7\x56\xfa\x99\xed\x00\xb6\xb2\x06\x8d\xd9\xda\x9d\x4e\x02\x25\xe4\x49\x0f\x1a\x7a\xcf\x01\x8a\x9a\xca\x15\x74\xd6\x6b\xa6\x18\xa9\xa8\x58\x31\xf5\xd4\x99\xed\xa0\xf0\x73\x67\xbd\x61\xfc\xb4\xca\x86\xd9\xab\x03\x8e\x26\x84\xb2\x72\x10\xb0\x36\x30\xfb\x9a\x1e\x59\x79\x89\x67\x80\x02\xdc\x50\x0a\xd6\x4b\x01\x70\xe8\x41\x14\xac\x67\xef\x0d\x79\xdb\xa1\x60\x73\xa4\x61\x73\x4b\xc5\xe6\x48\xc7\xe6\x86\x92\x75\xca\x3c\x23\x2d\x83\xcf\x20\x5a\xa6\xee\xa1\x25\xf7\x2b\xc7\x9d\x96\xbe\xe6\x13\x55\x8e\xc9\x89\x62\xcc\x99\xc8\x80\x94\xd1\x4d\x59\x30\xa2\xb6\x42\xd3\x4f\xb1\xaa\xb3\xe1\x67\x3e\xef\xd4\xad\xad\x0c\x99\xd2\x9d\xbb\xe7\x76\x96\xb1\x40\xb5\x96\xd5\xbe\xca\x6c\xae\xdb\xa5\xd4\x0c\xde\x6d\xb0\xa7\x07\x08\x36\xcf\xc6\x39\x0d\x7a\xb8\x02\x82\x27\xe0\x26\xdd\xb3\x2f\x58\x21\xef\x9e\x9c\xb6\x97\x1c\x00\x1b\xa1\x4a\xb8\x56\xac\x58\x3a\x77\x76\x0f\x1c\xd0\x18\x06\x66\xce\xeb\x35\x23\xfa\x4e\x02\xae\x41\xbd\x26\xf7\x1b\x12\x08\xc3\x84\xb6\x4d\x9d\xf6\x9e\xb3\x7b\x2f\xdc\xee\x5d\x30\x58\x63\x7e\x65\x81\x96\x84\xbb\x41\xd3\x82\x1d\xdf\xcf\x13\xee\xd6\xb2\xb0\x87\xf4\x12\x8e\x68\x3e\x6f\x18\xf2\x5f\x81\xba\xfc\x69\x4d\xd5\xc9\x66\xfb\x33\x44\x69\x3e\x01\xba\x63\x89\x7c\xdf\x75\xb6\x6d\x07\x9c\x15\x02\x90\x0c\xd7\x87\x31\x34\x4d\x0a\x4f\x6e\xde\x3b\x10\xdf\x60\xbe\x5c\x42\xa8\x08\x50\x69\xf4\x29\x2d\x58\x01\xcb\x75\x2b\x45\x23\xaa\xdd\xd2\x60\xc4\xc0\x2d\x27\x77\xbc\xbf\x29\xb3\x8a\x54\xf3\x94\xe6\xd3\xbd\x5f\xbf\xa5\xbe\xed\xf4\x5d\x72\x01\x98\x87\x89\x55\x28\x4e\x59\x53\x42\x01\xa4\xd5\x76\x44\x00\xef\xb3\xdf\x49\xff\xe2\x85\x14\x13\x1b\xf4\x64\xfd\x61\xe4\x6e\xcd\x2a\x66\xed\x22\x4b\x59\x6d\x58\x68\xa4\x80\x18\x2b\x9c\x7d\x80\xd1\x6e\x1f\x34\x41\x85\xa2\x47\x50\xe2\xdb\xb1\x99\x07\xc8\x5e\xed\xf0\xcc\x5f\x4e\x06\xdb\x21\xcb\xdd\x73\x46\x4c\x9e\x94\x94\x32\x77\x49\x74\xe8\x02\xf1\x24\x7a\x40\x20\xa9\x0f\x25\xed\xc4\xb6\xc1\x59\x23\xa1\xc3\x3e\xfd\xd9\xcf\x28\x7b\x38\xb8\xc9\x7d\x40\xde\x3f\x65\xca\xd2\x1c\x01\xfb\x20\x68\x93\x20\x78\xf7\x6e\x2d\x15\x9a\x25\xcd\xf6\xad\x08\x68\x04\xe0\xde\x74\x8c\x21\xc2\x1d\x39\x28\xcd\x65\xa0\xa4\x44\x86\x4a\x4b\x64\xff\x7e\xf5\xca\x4b\xff\x7d\x4f\xba\xa5\x2b\x35\x56\x37\xa4\xfb\xbe\xb5\x42\xa2\x81\x59\xfb\xd3\xb8\x21\xc0\xbb\x70\x15\x7a\x15\x1a\x5d\xc4\xf6\x3b\x60\x5b\xf3\x7d\xff\xa4\x67\x97\xe7\xc7\x03\xb2\x80\x0e\xb3\x68\xf5\xe5\x4c\x59\x28\x1e\xa4\x1f\x5b\x2a\xdd\x45\x2f\x86\x49\xdd\xf8\x24\x3a\x88\x3d\xbd\x0c\x8a\x6a\xba\x17\x41\x98\x6a\x13\xa2\x3a\xc0\x33\xd3\x29\x74\xef\xa2\xd7\x50\xa9\x3b\xe2\xce\x72\xf0\x3b\x51\x4f\x76\xc5\x6f\x0c\xa7\x31\xab\xe9\xb3\x95\x3d\x85\x55\x41\xc7\x79\xb7\x92\x63\x05\xda\xad\xd5\x98\x1d\xbc\x33\x1f\x16\xe2\x81\xd1\x07\x8b\xb6\x67\xcb\xdc\x1c\x87\xac\xa7\xa1\xe8\x7e\xba\xef\x51\xe8\x01\xf3\x25\x33\xe2\xaf\x33\xf6\xca\x6a\x97\x77\xe3\xd2\xd1\x94\x62\x00\xe1\x2c\xa1\x3d\xde\x4a\x83\x4f\xe6\x00\xc3\x3d\xa2\xdd\xc8\x43\x41\x0a\x17\x48\x60\x03\x3b\xba\x45\x96\x83\xd8\xe6\xe1\x5c\xd3\x2f\xb3\xc9\xba\x46\x97\xfc\xf0\x84\x2c\xe2\xf6\x16\xf8\xe0\x1f\x89\x08\x0c\x4b\x2e\x4f\x6c\x0d\x53\xcc\xf7\xf7\x87\xdf\xc7\x4b\xe2\xee\x7f\x90\xca\xda\x1d\xc2\x4d\x2e\xd8\x52\xbb\x06\x90\x9e\x87\xc0\xed\x19\x60\xa4\x21\xe1\x45\x84\xfe\x33\x46\x3d\x3f\x56\xcd\xca\x7e\x51\x0a\xda\x3f\x66\xad\x75\xac\x29\x1f\x7e\xda\x59\xcb\xd7\xd7\xb3\xc6\x5f\x9f\x0c\x62\x30\x58\x62\x86\xa6\x97\xee\x23\xd8\x1f\x14\xbf\xb0\x61\x7a\x2d\xf3\x03\x38\xc3\x3b\x7c\xe0\x71\xa5\x76\xdc\x32\x12\x75\xdc\x77\x10\x2a\x67\xe6\xc4\x8e\x56\xac\xb7\xea\xa8\x93\xeb\x58\x8e\xb3\xb8\xd5\x9e\xb0\xe9\x6a\x4a\xbe\x7f\x7d\x7d\x4a\x66\x1f\xaf\x4f\x09\xd3\xd9\xf4\x09\x79\x57\x17\x9a\x97\x7d\x7e\x0e\x0b\x22\xe0\xfb\xef\x3f\x1c\x1b\x35\x6c\x05\x69\x99\xbf\x2d\xbf\x55\x49\xf5\xfa\x80\x73\x3c\x9e\x99\xf1\x9f\xe3\x18\xfb\x4e\xb0\x9f\xa2\x84\x27\x08\xcb\x9c\xfa\xa3\xc2\x6d\xba\xb3\x18\x7a\x18\x84\xb0\xe9\xea\x25\x99\x10\xf6\x89\x66\xfa\x25\x79\xba\x94\x92\x4c\x6c\x90\xd8\x4b\xf2\x74\x41\x2b\x72\xf9\xfe\xfa\xf5\x4b\x0c\x40\x63\x42\x57\x5b\xb2\xe9\x13\xcf\xdf\x5f\xbe\xfd\x9f\x96\x72\x6e\x09\xe3\x60\x80\xa1\x64\x7e\x04\x2f\x41\x2b\xb2\xf9\x13\xdf\xe2\x6c\x1d\x53\x72\xdd\xb7\xfd\x5b\x5a\xf0\x9c\x7a\x63\x1f\xa4\x72\x60\x83\x37\x1d\xeb\xe8\xd6\x7c\x86\xe0\xdc\x4e\xc6\xc9\xf5\xf5\xcc\x40\x38\x60\x00\x54\x20\xe0\x0d\xa0\x87\xf3\xaa\x0b\x0d\xf1\xb1\x0b\xe6\x00\x61\xed\x88\x4b\x59\x6d\x5e\x3a\xb0\xcf\xeb\x67\xcf\xbe\xcc\xcc\xc4\xf0\x2f\xf6\xd2\x96\x27\x1a\x64\xf6\x42\x54\x83\x55\xc1\x74\x86\x60\x54\xfe\x08\x9b\xa9\x27\x16\xde\x0f\x7a\x03\xce\xd1\x13\x6a\x72\x40\x85\x07\x04\xc0\xe3\xaa\x91\x76\xeb\x8f\x39\xe9\xd0\x12\x0c\x03\x08\x52\xff\x54\x3c\xdb\x0c\xe4\x99\x17\xaf\xde\xcd\x86\x46\x80\x00\x31\x4a\xaf\x3d\xa4\x52\x41\x57\x3e\xb3\x5a\x9b\xd5\x89\xbd\x05\xe1\x95\x56\xc1\xb0\x2d\x55\x3b\xf4\x2b\x8c\xd0\xdf\x97\x69\xf9\xb2\xed\x9f\xf2\xcd\x1d\xbd\xd7\xdc\xbc\xa7\x4b\xb4\x05\x7f\xba\x19\x74\xfb\xa2\xc3\x4e\x39\x08\x13\xb3\xee\x52\x32\xbb\x7c\x1e\x24\x13\x29\x42\x28\x01\x50\x32\x6c\x71\x7a\x80\xb2\x06\x69\x50\x06\xc0\x18\x95\x0f\x21\xaa\xd0\x3e\x36\x84\x95\xf5\x5e\x82\x6b\x52\xb3\x6c\x2d\x78\xb6\x5f\xe6\xac\xfd\x01\xb3\x28\x9a\xff\xf9\xa6\x94\x41\xf5\xed\x1b\x23\x94\x17\xc7\x8a\xf0\x52\x63\xe6\xdc\x92\x57\xec\x8e\x16\x45\xcf\x52\x91\x5a\x58\xa3\x6c\xad\x30\x70\x8a\x89\xa5\xc4\x7c\x01\x1b\xa2\xd7\x7f\x35\x7a\x7d\x78\x30\xec\xe1\x87\x61\xa6\x99\x62\x2c\x19\xfb\x04\x8e\xab\x3e\x17\x18\x9e\x81\x5c\x92\x6f\x30\xca\x1b\x76\x08\x73\xbd\xce\xd6\x92\x7c\x40\xa6\x6d\x5b\x34\x96\x5c\xac\x54\xb7\x0f\x6c\xd0\x7e\x07\x10\x83\x32\x9e\x6e\x93\x00\xc8\xc5\xcc\xa5\xdd\x3c\x38\x30\xac\x65\xdc\x42\x79\x3c\x84\xf2\xcc\x79\xc6\x92\x50\x18\x00\x81\x44\xe2\x44\x62\x73\xef\xec\xe8\x20\xac\xd7\x17\xc7\x83\x7c\x90\x6a\xd3\xf4\x23\x8b\x25\xb1\xb4\x37\xf7\x20\xa2\x01\xc6\x08\x6c\xbb\xd4\xdd\x6b\x60\x68\xf9\xbe\xe6\x33\x94\x2d\xb5\xfb\xac\x36\xeb\xb1\x09\x3f\xe8\xb5\xbb\x61\x5b\x8b\xda\x25\xe5\xb6\x38\x5f\xf7\xeb\x8d\xca\x4a\xd8\x27\x5d\xd1\x16\x4c\xe9\x42\xd6\x7a\x00\x23\x79\x2c\xcd\x51\x48\x6d\x6e\xdf\x30\xcc\xb8\xc4\xc1\x3d\x11\x3d\x30\xa4\x3b\xb2\x6e\x64\x18\x23\xc3\xf8\x7d\x33\x0c\x21\xb5\x13\xab\x92\x60\xe9\x8e\xba\x19\x18\x6f\x33\x2c\xd2\x66\x2f\x20\xd4\x89\x7c\x3d\x31\xa1\x76\x58\x1a\x60\x3d\xf7\x78\x40\x68\xcf\xfd\x82\x7a\xca\xdf\x2a\x70\xe7\x47\x21\x6c\x1f\x91\xf7\xef\x39\xb6\xc0\xc2\x1b\x4a\x02\x0e\x26\x53\xc0\x7a\x5e\x75\x59\xe6\x6d\x74\xae\x3d\xe7\xd7\x90\x6a\xf4\x01\x32\xe5\x5c\xd6\x17\x9a\xcd\x4f\x16\x2c\xa3\xb5\xb2\x31\x71\x3d\xae\x04\xbf\xc4\x8c\x55\x30\x87\x8f\xab\x7b\x82\xa6\xf8\x77\x36\xfd\xab\x15\x25\xd8\xc7\x62\x31\x7c\xf0\x65\x18\x01\x77\x1a\xc6\xbf\xe1\x1f\xa0\xa9\xb4\xfe\xba\x7d\xd1\xfc\x7d\xf5\xea\x1a\x7f\x4d\xbf\xc6\xce\xf8\x96\x6b\xe6\x82\xec\xa8\x70\x08\xe2\x9c\xb2\x10\x6a\x48\xbe\x98\x3c\xff\xfa\xeb\x0e\x93\xff\xe7\x43\x7b\x0c\xc4\x18\xc6\x8d\xb1\x16\xc0\xc0\xac\x34\xa2\x65\x87\x02\x89\x33\x8d\x09\x69\x63\x42\x5a\xbf\xdb\x73\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x2d\xb5\xe3\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\xd4\x4e\x46\x5a\x36\x26\xa4\x8d\x09\x69\x63\x42\xda\x98\x90\x36\x26\xa4\xe1\x67\x4c\x48\x1b\x13\xd2\x76\x3f\x63\x42\xda\x98\x90\xe6\x3f\x63\x42\xda\x98\x90\x36\x26\xa4\x45\x27\x1d\x13\xd2\x02\x58\x8c\x09\x69\x63\x42\xda\x98\x90\xd6\xfe\xfc\x92\x09\x69\x1d\x0d\x1b\x08\x99\xd8\x2a\xbe\xb1\xdf\x86\x34\xfe\x8f\xca\x09\xf6\x6e\xdc\xa3\x7c\x77\xfb\x56\x8d\xf5\xbb\xc7\xfa\xdd\x63\xfd\xee\xb1\x7e\x77\x7c\x79\x63\xfd\xee\x31\x5c\x6a\x0c\x97\x1a\xc3\xa5\xc6\x70\xa9\x31\x5c\x6a\x0c\x97\x6a\x3e\x63\xb8\x54\xf3\x19\xc3\xa5\xc6\x70\xa9\xdf\x54\x88\xc1\x18\x2e\x35\x86\x4b\x8d\xe1\x52\x63\xb8\x54\x74\xf0\xef\x8c\x96\x8d\xe1\x52\x63\xb8\xd4\x18\x2e\x35\x86\x4b\x8d\xe1\x52\x63\xb8\xd4\x18\x2e\x15\xf9\x8c\xe1\x52\x63\xb8\x94\xff\x8c\xe1\x52\x63\xb8\xd4\x18\x2e\x15\x9d\x74\x0c\x97\x0a\x60\x31\x86\x4b\x8d\xe1\x52\x63\xb8\x54\xfb\x33\xd6\xef\x1e\xeb\x77\x8f\xf5\xbb\x5b\x9f\xb1\x7e\xf7\x58\xbf\x7b\xac\xdf\x3d\xe8\x0d\x63\xfd\xee\xb1\x7e\xf7\x58\xbf\x7b\x2c\xc7\x3a\x96\x63\x1d\xeb\x77\x8f\xf5\xbb\xc7\xfa\xdd\xe9\xf5\x8f\xf5\xbb\x47\x86\x31\x32\x8c\xb1\x7e\xf7\x58\xbf\xbb\xf5\x19\xeb\x77\x8f\xf5\xbb\x77\x3e\x63\xfd\xee\xb4\x02\x39\xd6\xef\x1e\x13\xd2\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x2d\xfc\x8c\x09\x69\x63\x42\xda\x6f\x2a\x89\x63\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x2d\x3a\xf8\x77\x46\xcb\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x1b\x13\xd2\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x8b\x7c\xc6\x84\xb4\x31\x21\xcd\x7f\xc6\x84\xb4\x31\x21\x6d\x4c\x48\x8b\x4e\x3a\x26\xa4\x05\xb0\x18\x13\xd2\xc6\x84\xb4\x31\x21\xad\xfd\xf9\xef\x5d\xbf\x1b\x8a\x72\xf7\x55\xef\x7e\x6f\x06\x75\xd0\xef\xf6\xa1\x4b\x1c\x1d\x5d\x27\x86\xdd\x61\xdd\x64\x30\x94\x98\x49\xc1\xb3\x98\x4f\xd1\x76\xe2\x2d\xbf\x6b\xbe\x32\x8a\xe8\xfc\x08\xe6\x9b\x1f\x01\xbb\xb4\x63\x63\x53\xd3\xa5\x51\xa0\x34\x08\x68\x30\x41\x21\xef\x58\x85\xab\xc1\x30\xc6\x60\x71\x8a\xc8\x0d\xd7\xda\xd0\x5d\xee\x32\x60\x62\x93\x66\x52\x28\x8e\x65\xcb\xd1\xc6\x37\x3f\xe2\x62\xc9\x05\xd7\x6c\x7e\x44\x26\x04\x82\xe7\x82\xed\x38\xaa\x6e\xd7\x49\x0a\xaa\xf4\x94\xf8\x9d\x45\x41\x62\xd6\xca\x73\x26\x34\xcf\x68\x61\x17\xb8\x3b\x0f\x17\x84\x16\xe5\x9a\x8a\x7a\xc3\xaa\x60\x1c\x54\x0c\x8f\xcd\x6a\x69\xb9\x35\x47\x61\x84\x48\x54\x3f\x45\xdc\x10\xf5\x66\xb1\x6f\x29\xec\x10\x1b\x77\x98\xfc\x75\x68\xa6\x41\x44\x09\x8c\x35\xb5\xb2\x3a\x27\xcf\x6e\xf0\x3f\xb2\x8e\xe2\xbf\x59\xf2\x8e\xd2\x1d\x00\xd7\xa6\x6b\x04\x60\xd1\xd2\xf1\xbc\xb4\xe9\xa0\x59\x87\x11\x1d\x8a\x42\xde\x21\x29\x40\x0b\x92\xb7\xa9\xa0\x60\xf7\x57\x34\x2f\xe0\x6d\xff\xb9\xe0\x9a\x55\x14\x34\xfb\xd8\xcc\xf3\x39\x99\x60\xba\x92\x41\x94\x4d\x49\x2b\xae\xa4\x38\x25\x90\xb3\xe8\xcc\x02\x6e\xca\xa5\x94\x64\x41\x2b\xb0\x55\xf8\xd7\xfd\xe9\xc0\xd7\x35\xef\x33\x9c\x9d\xfd\xb3\xa6\xc5\x5f\x30\xc2\xd6\x49\xaa\x7c\x69\x45\x54\xae\x60\x8c\xb3\xbc\xfb\x57\xc6\xef\xe5\xff\x86\x75\xd0\x26\x2e\x6c\xd1\xfc\x33\xc3\x7f\x4e\xa7\x53\xf2\x5f\xc1\x0a\x74\x55\x33\x97\x28\xe3\x63\x4d\xf1\x1d\x7f\x23\xf1\xd8\x76\xeb\x72\xe8\x79\x55\xb3\x56\xb3\x01\x2e\x06\x2c\x2e\xf6\xb2\x03\xd7\x0b\x2f\xeb\x5a\x60\xfc\x48\x82\x35\xaf\xa9\x3a\x81\xf9\x7e\x36\xcc\xe5\x49\xf3\xea\x6b\xff\x66\xaa\x9b\xd3\x09\x4e\xe6\x4f\x80\xa4\x51\x9a\x6f\xa7\xf0\xe6\x49\xb9\x84\xb1\x60\x9d\x82\xff\xd7\xcf\x9e\x3d\x7f\x81\xff\xc5\x5f\xfc\x33\x57\x6b\x59\xe9\x49\xc6\xab\xac\xe6\x1a\xa4\x2a\xfb\x50\xec\x45\xff\xf9\x9f\x9d\x4f\x83\x1f\x43\x9f\xe0\x98\x27\x7e\x50\x49\x2b\x66\x25\xf2\x55\x25\xeb\xd2\x48\xe4\xf3\xb9\xa6\x45\x71\x12\xf5\x47\xd9\x92\xf6\x18\x95\xe2\xe9\x85\x9b\xcd\xe1\x30\x2d\x8a\xc0\xc4\x04\x17\xf4\x2d\xe2\x03\xea\x50\x71\xf5\x88\x9a\xab\x8d\x74\xc6\x45\x6a\x86\x24\x53\x9d\x92\xc9\x29\xf9\x19\xe0\xf0\x74\x4a\xae\xe0\xca\x11\x7b\xe5\x92\x93\x6e\x64\xc5\x48\x69\xc4\x7f\xa5\xf8\x2d\x23\x0b\xcc\x31\xd8\x3a\xf3\xa6\x35\x3c\x13\xa6\x32\x5a\x32\x92\xad\x69\x45\x33\xcd\x2a\xbb\xec\xd7\x18\xaa\x1d\xbd\x0c\x27\x40\xf8\x37\x34\x67\x93\xba\x44\xb4\x50\x4f\x3c\x39\x82\xc4\x36\x4b\x3a\xee\xd8\xc2\x28\x0e\xcc\x12\x8f\xf0\xc4\x73\x56\x16\x72\xbb\x61\x22\x4a\x4e\xed\xf3\x65\x25\x73\x87\xa4\x30\xaf\xb9\x53\x40\x93\x2a\x29\x34\x13\x79\x80\xea\x34\xbb\xb1\x5f\xfc\x97\x19\xde\xcc\x4f\xfe\xf4\xd7\xd4\x0d\xc8\xd9\xad\x9b\xfe\x4f\x64\xe7\x16\xc4\x48\x59\x97\x44\xd5\x36\x06\x76\xb8\xab\x3b\x2c\x81\xdd\x76\x8b\x25\xc6\xaf\x36\x6c\x21\xb6\x2d\xc7\xb1\x10\x47\xad\x41\x01\xdb\x73\x48\xe1\x16\xe9\x6c\x05\x31\xb7\x73\xd7\x1e\xc1\xe9\x30\x80\xa7\x82\x6f\x82\x8b\x9c\x67\xa0\x7a\xde\xad\x21\x61\x3a\x14\x64\xc3\xa8\x2c\xab\xe5\x44\xe9\x94\xb9\x77\xd2\x36\xf0\x38\xb5\x7f\x2d\xa4\x5e\x4f\x09\x06\x4a\x02\x37\xf9\x54\x1a\x21\x45\x17\xdb\x40\x97\x3a\x81\xe6\x23\xd1\x08\xd8\x80\x8e\x0a\x92\x55\xcc\xe6\x67\x28\x7b\xbb\x65\x45\x04\x2f\x9e\x9c\xba\x1c\x8b\x9c\x2d\x69\x5d\xfc\x7f\xec\xbd\x79\x53\xe4\xb8\xb6\x2f\xfa\xff\xfb\x14\x8a\x64\xdf\xa8\xdd\x71\x71\x26\x50\x43\x57\x73\x82\x78\x41\x03\xd5\xcd\xed\x2a\xe0\x02\xd5\xfd\x4e\xec\xdc\xc1\x71\xda\x82\xf4\xc1\x69\x79\x5b\x4e\x28\x76\x9d\xfa\xee\x2f\x34\xd9\x92\x2c\x0f\x39\x41\x02\xcb\x11\xdd\x51\xa4\x65\x8d\x4b\x5a\x4b\x6b\xf8\xad\x9c\x22\x31\x2c\x36\x75\x59\x58\x23\x52\xe7\x04\xdd\xb3\xb3\xf2\x58\x5e\xdc\x58\x27\x8e\xe4\x3f\xd9\x7e\x94\x27\x67\x91\x81\x43\xf8\xfb\x71\xd5\xba\x6c\xc6\x55\x6b\x44\xc5\xee\xf2\xd0\x3f\xa4\x5c\xc4\xba\xa2\xda\xf8\xe7\xa6\x64\x0e\x4c\xca\xe4\x66\x03\xd5\xa4\xc8\x93\xf2\xf7\x28\x09\xe2\x69\x6d\x8f\xc7\x18\x05\x3e\x93\x3c\x79\x05\x65\x35\x48\xb0\xe7\x84\x14\x83\xe1\xd5\xfd\xe4\xe8\xc9\x51\x6d\xfe\x15\xbb\x6f\x46\xc7\xd8\x91\x64\x57\x5f\x3f\x4e\x27\x79\xd8\x7d\xa8\x34\xc8\x35\x58\x8e\xd5\x90\x37\x6a\xe7\xb9\x90\x08\xd2\x32\x65\xfd\x0c\xfb\x6c\x1f\x05\xb7\xc8\xbf\xf1\xa3\x64\x53\x52\x83\x30\x7b\xc4\xf7\xfe\x03\x95\x5e\xf0\x4e\x2a\x56\xde\x0a\xc2\x4d\x61\x13\x25\xf8\x0e\x67\x06\xbd\x39\x6f\xf7\x1d\xd3\xfb\x94\xb3\x80\x30\x67\x1a\x85\x41\x2f\x25\x94\x46\xa3\x58\x35\x5c\xfa\x61\xb1\x0f\x2e\x52\x1c\xb8\xef\x7b\x62\x6c\xf5\x9e\x69\xcd\x37\xcb\xda\x4b\x9b\xfb\xae\x57\xfd\x95\xf3\x8c\x50\xb7\xb7\xd3\x9c\x64\xfe\x0d\x56\x3f\xd1\xdc\xcf\xa7\x62\x62\x84\xc9\x09\x87\x27\x9a\x31\xe0\x36\x4a\x42\x76\x0e\xa9\x29\x4d\xe3\x69\xe6\xc7\xe5\x2f\x01\x49\x84\x05\x98\xee\xa2\x7f\xfc\x93\xfd\xc2\xea\xc7\xa1\x8c\xf0\x94\xbf\x0e\x13\xcf\xf3\x86\xc9\x86\xf4\xba\xdf\x45\x01\x3f\x0f\x06\x39\x9e\xa4\x3c\x81\xd2\x40\xfc\xe0\x25\x24\xc4\x5e\x36\xf2\x83\xfe\x83\x3f\x89\x87\x89\x9f\x46\x2a\xb4\x14\xf9\x69\x84\xbf\xe5\x38\xe1\xf5\xf6\x6f\x3f\xd2\x7e\x44\x06\x77\xdb\xc3\x44\xf4\xf1\x60\x4a\x73\x32\x39\xc7\xc2\xf8\x75\x88\xf9\x05\x8d\x9f\xec\x46\x00\x27\x57\xd9\xa0\x44\x38\xc9\x52\x9c\xd3\x7e\x90\x85\xfd\x34\x23\x6c\xce\x44\x2f\xfa\x24\xbb\x19\x26\xec\xfc\xe3\x5f\x70\xa1\x66\x17\xd5\x14\x33\x6d\x27\xa2\x2b\xa5\x27\xaf\xf8\x35\x8e\x68\xfe\x87\xf5\xe6\x73\x44\x73\x73\x4a\xb5\x3e\xc9\x95\x8a\x92\x9b\x69\xec\x67\xfa\x2b\xf6\x86\x1f\x7d\xd9\x1d\xfe\x9a\xdc\x26\xe4\x3e\xf9\xc4\x68\x8b\xee\xa2\x6b\x3f\xa6\x7c\x8d\x69\x40\x18\x19\x14\xfa\x18\x7e\x37\xbc\x53\x0b\xc2\xfe\xf0\xe4\x34\xb0\xd9\xe3\x2d\x05\x63\x3c\x29\x03\x5c\x49\x8a\x93\xfd\xb3\xe3\x3f\xdf\x5e\x98\xbf\x57\x5d\x69\x95\xc3\xb2\x74\x0a\x2b\x9b\xf4\xf0\xbf\xa6\xd1\x9d\x1f\xb3\x23\x5a\xee\x14\xdb\xcb\x59\xdb\x0e\x35\x0a\x37\x6d\xf5\x4d\xea\x37\x71\x30\x58\x57\xa5\xbf\x81\xf0\xcf\x17\x9d\x91\x23\xc6\xa1\x1c\x9e\xe8\x07\x3f\x7f\x24\xf3\xf0\x5d\x9a\x14\x72\xcd\xe5\x05\xbe\x87\xfa\x5c\xa8\xc0\x19\x55\xd7\xce\x80\x24\x77\x38\xcb\x51\x86\x03\x72\x93\x44\xff\x2e\x2a\xa7\xca\x03\x82\x93\x73\x85\xf5\x44\x49\x8e\x33\x26\x7e\xf0\xc3\x43\xe8\x79\x27\xfe\x03\xca\x30\x6b\x06\x4d\x13\xad\x42\xe5\x7f\xf5\x85\x89\x9d\x51\x72\x4d\x76\x39\x42\x11\xdd\x1d\x0c\x6e\xa2\x5c\x11\x7e\x40\x26\x93\x69\x12\xe5\x0f\x03\x6e\x93\x8d\x46\xd3\x9c\x64\x74\x10\xe2\x3b\x1c\x0f\x68\x74\xe3\xf9\x59\x30\x8e\x72\x1c\xe4\xd3\x0c\x0f\xfc\x34\xf2\x78\xdf\x13\xbe\x57\xfb\x93\x70\x23\x93\x3b\x85\xbe\x71\x9d\x2c\xd5\x03\x89\x93\x76\xd3\x32\x30\x0a\x97\x61\xbd\x42\xae\x16\x82\x41\x31\xdb\xca\xf9\xe4\xfc\xe8\xe2\x12\xa9\xd6\x9d\x21\xd0\x62\xf2\xcb\x2f\x69\xb9\x0e\x6c\xd2\xa2\xe4\x5a\x49\x40\x5c\x0d\xae\x2b\x0c\x04\x13\x8e\x23\x87\x30\x4c\xa7\xa3\x49\x94\x53\x0d\xda\x86\xf4\xd1\x41\xa1\x1f\x9f\xa6\xa1\x9f\xe3\xb0\x8f\x8e\x13\x74\xe0\x4f\x70\x7c\xe0\x53\xbc\xf2\x55\xe0\x62\xa0\xc7\xe6\xb6\xeb\x3a\xd4\x84\xa3\xd7\x29\xff\x8a\x63\xac\x66\xd9\xca\xfd\xc8\x78\x98\x19\x0f\xa5\xc2\xe7\xca\x80\x75\xbf\x72\xb6\x95\x8f\x5a\x52\x8b\xcd\x35\x28\xd3\x6b\x3c\xf7\x2b\x49\x03\x95\x73\xe1\xf1\x59\x71\x12\x8a\x7b\xf4\x08\xc7\x84\x51\x15\x91\xda\x1c\xec\x32\xc1\xd6\x73\xfe\x57\xc1\x7b\x39\xe7\xed\xc8\x7e\x6f\xa7\x23\x5c\xfa\x78\x64\x54\x67\xc5\xdf\xbf\x47\xd7\x08\xff\x0b\xf5\xcf\x7f\xdd\x3f\x38\x20\xc9\x75\x74\x83\x86\x3d\x56\x60\xd8\xfb\xf1\x83\xd5\x7e\xcc\x85\x63\x8c\x7c\x14\xc4\x53\x9a\xe3\x2c\x23\x31\x2e\x52\xd8\xd9\x75\x73\x6d\x19\x49\x70\x92\x6f\xb2\x8f\x79\x12\x3c\x7e\x82\xe4\xea\x28\xad\xe9\x94\xba\x79\x95\x0e\x10\x52\x00\x10\x8d\x9e\x93\x18\x9b\x82\x03\x1f\x84\x3f\xcd\xc7\x24\x8b\xfe\x2d\x9c\xbf\x34\xe9\xc1\x21\x1d\xd4\x34\x3c\x4c\xb8\xa8\xcb\x0b\x6e\xa0\x13\x12\x0a\x3d\x04\xba\x97\x3e\x5e\x39\x41\x13\x92\x44\xdc\x97\x99\x64\x28\xc4\x31\x16\xfb\x5c\xb0\x5c\x3f\x8d\x7e\x63\xa2\x04\x5b\x17\xb6\x84\xff\x14\xab\x5a\x9c\xc3\x05\x89\x7a\x88\x89\x41\xf2\x54\xbc\xc3\xd9\x48\x7f\x75\xaf\xdb\x3b\x3c\xbe\x35\xca\xbf\x6e\xc4\xae\xdc\x40\x67\x0a\xf3\x4c\xeb\x5b\x09\x45\x85\xbf\x45\x34\xe7\x19\x22\x7d\x8a\x52\x3f\x93\x9b\x6b\xff\x0b\x2a\x47\x3b\x7b\xa7\x53\x12\xd6\xf4\xf9\x06\xe7\x75\x3d\x2e\x86\xb3\x21\x3a\x50\x54\x2c\x23\xe2\x92\x28\xe5\x29\x36\xb9\xf6\x5b\xe4\xf3\xa4\xdc\xe8\xc5\xa6\x48\x10\x4d\x4c\x82\x5b\x79\x7a\xd3\x4d\x36\xa2\x7b\xcc\x2e\x12\x14\xa5\x38\x8b\x48\x18\x05\x28\xcf\xa2\x9b\x1b\x9c\xb9\x17\xc2\x2d\xd7\x35\x0d\x34\x92\x02\x98\x40\xb2\x70\x0f\x59\x8d\x72\xf1\xd6\xf8\xf8\xfc\x6b\x21\xce\x96\x5a\x24\xd6\x0d\x7f\xc2\x5f\x5a\xbf\x8d\xfd\x24\x8c\xeb\xc8\xa7\x61\x29\xf8\xf5\x1d\x97\x7f\x8b\x29\x2d\xff\xe6\xf4\x8c\x9d\x4b\x77\x46\x48\x5c\xdd\x0b\x7e\x24\x35\x70\x68\xe2\xa7\x5c\x2d\x48\xae\xc5\x70\x04\x0c\xc1\x19\x4a\xd9\x77\x4b\x5b\x15\x5e\x5b\xf3\x72\x54\x7a\x5e\x39\x5c\x26\x7e\xe2\xdf\x60\x8a\xc6\x84\xe6\x9a\x8b\xdb\x52\xba\x68\xd4\xb9\xc2\xf5\xd9\x40\x27\x18\x87\x5c\xbf\xc2\x2e\xe8\x39\x91\x65\xd5\xb9\xac\x41\xa6\x2c\x6b\x68\x8e\x9a\x97\x3e\x40\x6d\xd9\xfe\x98\x8e\xf0\x41\xb9\x6a\x82\x1d\x4d\xb3\x42\xfd\x24\x34\x30\x51\xce\x9a\xa3\x88\x49\x7d\x01\x2f\xb2\x9c\xc1\x32\xa2\xd1\x68\x26\xd0\x5b\x77\x0e\x7b\x43\xe8\x3c\x58\x3f\xc8\x7d\xa2\xf5\xa5\x32\x27\x1b\x72\x16\x90\xaf\xb4\x58\x28\xba\x46\x09\x49\xb0\x38\xb5\x69\xdd\x74\x6d\xa8\x35\x16\x42\x45\xdd\x2c\x6e\x88\x59\xe4\x6c\x20\x18\x1b\x91\x18\xc5\x04\x73\x61\xa1\xc2\x53\x7f\x8d\x12\xa1\xf8\x5a\x11\x6b\x25\x31\x3e\xc7\x22\xaa\x41\xad\x4f\x43\xfd\xac\x98\x83\xed\xb7\x36\x43\xa7\x5c\x40\x63\x4b\xe3\xc9\x0a\x4c\xbd\x71\x87\x3a\x74\x0f\x09\x71\x80\xd0\x07\x9a\xe3\x89\x9c\xb9\x42\xda\x3a\xf7\x93\x60\x8c\x33\x4f\x89\xd1\xbb\xe8\x80\xcf\xb8\x2e\xdc\x70\x36\xa6\x0d\x41\x78\x83\x30\x6e\x2d\x34\xa6\x3c\x33\xb3\x1f\xdc\xde\xfb\x59\x28\x44\x26\x3f\x8f\x46\x51\x1c\xe5\x0f\xf3\xe8\x53\xda\x84\x34\xbd\x57\x87\x3e\x9e\x90\xe4\x02\xb7\xc9\x67\xbc\xf0\x23\xc9\x64\xa6\x08\xf6\x95\xca\x14\xc9\x42\xf3\x5c\x7a\xce\x96\x0e\x7c\xe4\x16\x27\x54\x9a\xed\xa7\x1a\x66\xd0\xc1\xc9\x31\x93\xa7\x6f\x84\x25\x74\x26\x39\xc7\x1c\x2a\x1d\xf0\x36\xcc\xe2\x27\x86\x3b\xad\x87\x02\x3f\x29\xe1\x8d\x3c\x35\x71\x41\x12\x79\x65\x1f\xaa\x47\x65\xb9\xc1\x37\xf8\x35\xa8\xec\x33\x4a\xf8\xf9\x9e\x13\x76\x74\x70\xc1\x6b\x53\xc8\x8c\x42\xb3\xa0\x07\x58\xcf\x2f\xc5\x59\x82\xa8\xd2\x1a\x89\x8a\x1b\x0f\xf7\x0d\xa4\x22\xd7\x2f\xe2\x48\xc9\x72\x53\xb5\x58\x72\xbf\xc9\x44\xe7\xf2\x42\xa7\xd4\xc3\x0a\xb7\x6b\x43\xe1\x30\x4d\x54\xe8\x85\x3d\x8a\x30\xa2\x01\xb9\xc3\xd9\x83\x3a\x11\x9a\x46\x55\x70\x5d\xde\x9f\x99\x24\xeb\x99\x66\xaf\xe2\x16\x58\x90\x4b\x0d\x5f\xf8\x2a\x6d\x4c\x6a\x34\x05\x05\x1f\x9f\x09\x93\xaa\x1f\xde\xb1\xdb\x33\x2d\x27\xa2\xb1\xb7\x35\xb5\x5e\x3e\xa4\x63\x9f\xf6\xdd\x37\x05\x74\x70\x7c\x78\x8e\xfc\x69\x4e\xbc\x10\xe7\x58\x64\xca\x27\x09\x3f\xda\xfc\x70\x22\x89\xad\x14\x26\x04\xfb\x62\x42\xdd\x1c\xf4\x25\x3e\x66\xdf\x36\x92\xd0\xec\xd7\xa5\x81\xce\xf8\xec\x69\x66\xf2\x90\x3a\x2b\x62\xec\x73\xf5\x14\xbb\xc0\x49\x6d\xc6\xd7\xc4\xbf\xf3\xa3\xd8\x1f\xb1\xa3\x30\xf6\x6f\xb4\x89\x4a\xf5\x79\xde\x50\x86\x2c\x7e\xd1\xa6\x22\x1a\x31\x30\x85\x0f\x0d\x8e\x8e\x6d\x54\x71\x4d\x29\x70\xef\xfa\x2e\xc6\xbc\x81\xfe\xb2\x99\x32\x9b\x67\xcd\xad\x55\x07\x75\x88\x6a\xb6\xb5\xdc\x49\x51\x72\xd3\x65\x47\xc8\xd2\xa9\xe1\x94\xd4\x71\x4b\x48\x02\x1b\x3d\xa8\xe9\x60\x1d\x57\xf6\x9d\x72\xfc\x0b\x1f\x3e\xd6\x69\xe3\x38\x7c\x67\x94\xf6\xad\x53\x34\x55\xe1\x42\x24\x54\xe4\x33\x5f\x9f\x1b\x68\x4f\xa3\xa0\x82\x7a\xa4\x96\x80\xa2\x3b\x3f\x8b\xc8\x94\xa2\x83\xf3\x43\xb1\xdb\x05\x2d\x2d\x49\x26\x17\x18\x27\xd7\x38\x8e\xbe\x89\x7a\xb5\x79\xd4\x7e\x35\x05\x57\x7e\xe5\xbc\x49\x53\x8c\x33\xf3\x97\xeb\x28\xce\x8d\xdf\x44\xf5\xa3\x9b\xb4\x52\x79\xf1\x5b\xb5\x6a\xe3\x96\x56\x77\x99\xae\xbb\xdd\x8a\x16\x9d\x94\x5b\x79\x4d\xb1\x7e\x08\xd7\x7e\xe3\x2c\x5d\x7b\x99\xa9\xb9\xc4\x35\x5e\xd3\xc5\x62\xf1\x23\x8a\x13\xc9\x1c\x37\xf3\xfb\x2a\x05\x4d\x69\x5e\xdc\x14\x92\xb0\x90\xfd\xd9\x79\xc4\x89\x89\x24\xec\x22\x90\xe5\xd3\x74\x15\xd7\xeb\x56\x0a\xea\x7c\x1d\xac\xbf\xf3\x99\x63\xb5\x07\xe8\x18\x15\xaa\x1d\x16\x6a\xe2\x47\x1d\x97\xc7\xd1\xb1\x6e\x4c\x40\x3a\x61\xb2\x16\x96\xaa\x08\xec\x46\x2f\x97\xdc\x56\xae\x9c\x97\x48\x22\x64\x31\xee\x2f\xaf\xfc\x8c\xf9\xc1\x33\x4d\x6f\x32\x3f\x94\xd1\x9f\x77\x3b\xfd\x0f\x42\x92\x0c\x04\x4e\xd4\x06\x13\x9f\x33\x3c\x21\x77\x38\x94\x3e\xb6\xea\x03\x92\xb1\x11\x5e\x67\x98\x8e\x51\x94\xd0\xdc\x8f\xe3\xa5\x2a\x16\x1a\xce\x12\xf3\x98\xea\x4a\x59\x73\xdb\xa2\x37\x38\xeb\x90\x94\x8d\x32\x7e\xa5\x59\x91\xe6\x59\xbf\x19\x94\x17\x9e\x47\x97\xe3\x57\xc2\x07\xe7\x9e\xfd\x4f\xb1\x9f\x24\x38\x36\x67\x7b\x03\x9d\x4d\x79\x38\x2a\x27\x5c\xcd\x42\x37\x9e\x8e\xfa\x01\x99\x0c\x02\x92\x61\x42\x07\xd7\xe2\xe3\xc1\x28\x26\xa3\xc1\xc4\x67\x15\x0c\x0e\x49\x30\x9d\x28\x33\xf0\x80\x5f\xe4\x65\x31\xd9\x30\x6b\x77\xd9\x2b\x2c\x5b\x58\xc2\xba\x2e\x4d\x72\x9e\x49\x88\x5a\xaa\x60\x6e\x13\xc5\xaf\x51\x12\x8a\x68\xe5\xea\x5a\x97\x5a\x87\xc4\x8f\x2d\xa5\x8d\x4b\xdf\xb0\x2c\x7d\x55\xe2\xc7\x5e\xb9\x68\x4b\xd5\x52\x15\xd5\xce\xa4\x95\x92\xaa\x84\x46\x1d\xd4\x23\x28\x9f\xba\x4f\x6b\xfd\xd2\xd4\x4e\x78\xa1\xed\x59\x81\x56\x70\xb9\xd3\xfd\xfd\x3b\x4e\xc2\x1f\x3f\x96\xe2\xe1\xb4\xd4\x69\xac\x32\x92\x55\x68\x58\xf5\x06\x66\xd7\xad\x9a\x1a\xb0\x16\x8a\xee\x32\xb3\x05\xb3\xe0\xe0\x45\x13\x3f\x89\xae\x31\xcd\x95\x60\x42\xb5\x03\x44\x3a\x3a\xe0\xac\x30\x19\x72\x2d\x27\xb5\xb4\x83\xc2\xd3\x51\x29\xa9\xa4\xe6\x83\x24\xac\x2c\x8f\xbe\x14\xac\x84\x17\x62\x25\x70\x26\x6e\xfc\xdc\xea\xa5\xdd\xdf\xa5\xd4\x50\x9c\x53\x85\x6e\xd5\x76\x71\x4b\x69\xe3\x49\xd4\x34\x4d\x48\xfa\x8f\x2b\xef\x81\x8f\xd4\xf3\xd3\xb4\xf8\xb0\x70\x04\xb1\x02\x7a\xb8\xc3\xfd\x67\xfd\xcb\xea\xb7\x48\x4a\x4f\x17\x79\xe6\xe7\xf8\xe6\x61\x57\xba\x03\xf4\xbf\x1a\x3f\xb3\x6d\xf0\xfd\x3b\xca\xc9\x7f\xfa\x93\xd8\x7e\x89\xfe\x07\x45\x49\x88\x93\x1c\xbd\x13\xe5\x70\x4c\x31\xfb\x17\x2a\x9c\x27\xce\x49\x1c\x47\xc9\xcd\x57\xcd\x62\x91\xe9\x3f\x15\xfd\x9b\xf8\xdf\x34\x95\xcd\x2e\xda\xd6\xf6\x21\x42\x8a\x32\xd4\x00\x6d\x87\x99\xd8\x1c\xac\x6b\xb8\x96\xdf\x0c\x5b\x53\x87\x1b\x7a\x09\x6f\xc4\xf6\x28\xa1\xbb\x28\x8e\x92\xe9\x37\x35\x39\x27\xda\x57\x6a\xa0\x08\x7d\xff\x2e\x71\x92\xff\x76\xbb\x89\xfe\x76\x87\x76\xf7\xcc\x92\xa8\x2c\xca\x0b\xff\xed\x16\xfd\xf8\xb1\x8b\x86\x3d\xf6\xef\x3b\xf6\xb6\xa7\x55\x85\x93\x10\xc9\xe9\x54\xc3\x67\x0f\xbb\xa4\x4a\x9d\x91\x89\xb5\x94\x93\x18\x67\x95\x94\x10\x1b\xe8\x8b\x7f\x8b\x11\x9d\x66\x6a\x7b\x70\xbb\x19\x0d\xc6\x38\x9c\xc6\xc2\xdf\xdd\x8f\x63\xc1\xcf\x35\x17\x1b\x4f\xa2\x98\xec\xa2\x13\x72\x21\x0b\x97\x6f\xb9\x23\x61\xe6\xb3\x39\x43\x47\x86\xf1\x4a\xb4\x98\xdd\x4a\xc7\xda\x50\x84\xe7\x07\x59\x24\xc2\xdf\xfc\x30\xf4\xa4\xc3\x51\x86\x65\x27\xa2\xe4\xc6\x68\xf8\x16\x3f\xec\xa2\x03\xf9\xc5\x7e\x18\x92\x84\x9e\x5a\x81\xd3\xf5\xad\xeb\xfd\x3e\xfa\x86\x83\x69\xde\xa9\xdb\x6d\x2e\x30\xa2\x94\x19\xbd\x70\x62\x6e\x5e\x51\x8d\xb1\x56\x1b\xe8\x4b\x94\x44\x93\xe8\xdf\x18\x85\xe4\x3e\xc9\xa3\x09\x46\xe1\x94\xab\x28\x7d\x45\xff\xfa\x75\x4b\xf9\x95\xfc\x07\xca\x71\x1c\xeb\xa7\x4c\x4e\x50\x48\x78\xda\x32\xae\x3a\x2f\x1b\x50\x9f\x0c\x7b\xa5\x17\x9b\x49\xbc\x21\x09\xe8\x20\x20\x49\x80\xd3\x9c\x0e\x14\xb8\x2b\x1d\x70\xa9\x3e\x25\xe1\x60\x43\xc5\xbf\x47\x24\xf1\xc8\xb5\xc7\x5e\x14\x0b\xa2\xbd\xfb\x2d\xf3\x03\x7c\xc6\x3d\x2f\x2e\x70\x40\x92\x90\xee\xa2\xad\xb2\x27\x52\x2c\x29\x91\xd9\x85\xbe\x53\x15\x48\xb3\x88\x64\x51\xfe\x70\x10\xfb\x94\x8a\xa9\xfb\xfe\x1d\xf5\x0f\x7c\x9e\x9b\xc4\x7a\x87\xfe\xa7\xb0\x91\x0e\x7b\xe2\x14\x14\xec\x55\x11\xd2\xb0\xa7\x6d\xa6\x28\x89\xf2\x03\x75\xe8\x9b\xc4\xcf\x99\x45\xc1\x10\x4c\x6e\xc1\x58\xc1\x28\x4a\xfc\xcc\x88\xdc\x14\xf6\x30\xf6\xce\x62\x0d\xd7\x51\xcc\x63\x21\x38\x73\x28\xee\xfc\x8a\xea\xc4\x49\x2e\xeb\x67\xdc\x4f\xa7\xba\x68\xc2\x5d\xc3\xbe\x7f\xef\x1f\x9c\x1c\x1f\xb3\x3f\xf4\x93\x40\xbe\x67\xb7\x1d\xe1\x72\xbe\x8b\x8e\xaf\x79\xae\x02\xee\x22\xa9\x17\x0c\xc8\x64\xe2\x33\x2e\xf3\x8f\x61\x6f\x40\xd2\x7c\x10\x24\xd1\x60\x14\x25\x03\xd9\x70\x21\xb2\x8b\x07\x27\x77\x9f\x32\x32\x31\x3c\xe4\x94\x9e\xfe\x8b\x9f\x2a\x91\x41\x7f\x36\xd0\x3e\x8f\xa1\xfc\xe3\xeb\xaf\x47\xe7\x27\x47\x97\x47\x17\x57\x17\x47\xe7\x7f\x1e\x1f\x1c\x5d\xfd\x7e\x7a\x71\xc9\x27\xc7\xf1\xee\xec\xf4\xfc\x52\xda\xe2\xc8\x1d\xce\xb2\x28\x0c\xb1\xd8\xe6\xf8\xd7\xb3\x4f\x68\x62\x4e\x97\x78\xc4\x94\x69\x40\x72\xca\x9e\xe2\x29\x25\x9c\xfd\x85\x0a\xf5\xa9\x82\xcc\xe1\xe4\xce\x1a\xca\x06\xba\xc0\xb9\x84\x67\xd0\x15\xcb\x85\x24\x3c\xa5\xa5\x71\x54\xaa\x7d\x4a\xe1\xa0\x6f\x57\xf6\x17\x37\x73\x49\x19\x56\x0a\x02\x34\xc7\x7e\x88\xc8\xb5\x21\x74\xdf\x8f\x71\x82\xa6\x94\xed\x6c\x75\xd5\xd1\xd4\xf7\x66\xb5\x8a\x6c\x0e\xf6\x3f\x1f\x1f\x9c\x5e\x1d\x9c\x1c\x17\x13\xba\x7f\x70\x70\xfa\xf5\xe4\xd2\x9e\x01\xee\x78\x5b\x59\x53\xf1\xf0\x48\x04\xd7\x9a\x16\x2f\xcf\xfc\x7c\xbc\xcb\x37\x68\xbf\x7a\x94\xd9\x23\x3e\x91\xe0\x05\x6a\xab\xe8\xdb\x80\x5d\x24\xb8\x12\xa6\x6e\x40\x27\xc7\x57\x07\xa7\x27\x9f\xae\x4e\xf6\xbf\x1c\x39\xc7\xc0\xd8\xde\xf6\x96\xc7\xe7\xb3\xcf\xaa\xe6\x97\xd2\x9e\xdd\x09\xa5\xd6\xb7\xf6\x22\x8f\x87\xe2\x14\x5f\xb7\x23\xed\xde\x9c\x1c\x5d\xfe\x75\x7a\xfe\x07\xef\xd5\xf1\x6f\xb3\x4c\x6b\xb1\x5d\xfe\xc0\x0f\x75\xb3\x6b\x5c\x70\x0c\x17\x10\xfd\xe1\x8c\x2d\x48\xa2\x2b\x39\x9a\x2b\x57\xd1\x92\x6e\x19\xa7\xe7\xc4\x5a\x04\xa6\x71\x67\xcb\x8f\x54\x08\xa2\xec\x55\xcd\x80\xb5\x0d\x7a\x72\x7a\x78\x54\xbf\x0a\xcb\xa0\x24\xd6\x19\x17\xfd\xb0\x65\xfb\x72\xf9\x15\x49\x6e\x7a\xe7\x67\x11\x13\xe9\xea\x97\xe8\xcb\xe5\xd7\x27\x5c\x97\x3b\x9c\x8f\xaf\x26\xf9\xd4\x1e\xc6\x59\x86\xef\x70\x22\x93\x18\x96\x9c\x84\x2b\xa5\x68\x8c\x31\xf7\x7e\xbb\x26\xac\x94\x9d\xec\x54\x0d\xee\xe2\xf3\xd1\x51\x25\x63\x70\xb1\x0b\x44\x70\x87\x41\xf9\x77\x24\x9e\x4e\xf0\x17\x17\x5e\x9a\x87\x26\xec\x67\x31\xff\x03\x46\x22\x3a\x1f\x70\x1f\xb1\xec\x2e\x36\x8a\x12\x2f\x8c\xb2\xd6\xca\x70\x1e\xf0\xca\x12\x9c\xf7\x2b\xc8\x03\x65\x75\x09\xce\xed\xea\x28\x0e\xa6\x9c\x89\x93\x24\xc7\xdf\xec\xac\x9a\x69\x16\xdd\x45\x31\xbe\x31\xbd\xa6\x51\xc9\xa4\x19\x13\xd7\xe6\x77\x22\x30\xdf\x04\xf2\x64\x80\x29\xf5\xb3\x07\x7e\xf6\x08\x69\x80\x72\xd3\x75\xe9\xf4\xc1\x98\x0c\xcf\xcd\x96\xc6\x7e\x62\x54\xce\x21\x1c\x46\xe9\x35\xf2\x73\x34\xa0\x0f\x74\x70\x4d\x07\xfc\xcf\x24\x44\x01\x0f\x00\xda\xe1\xaf\xb2\x69\x22\xaf\x9b\x03\xf1\x73\x5f\x21\xe3\xc9\xd3\x3e\xca\x23\x3f\x8e\x68\x19\x07\x29\xa4\xcb\xd0\x68\x2c\x41\x23\x76\x2b\xc5\xd7\xd7\x24\xcb\xd1\xb5\x4f\xc7\x11\x49\x36\x45\x27\x12\x82\xae\xfd\x28\x66\x92\x38\x67\x8c\x59\x46\x32\xba\x29\x3c\x5e\x73\x14\x46\x34\x9b\xa6\xdc\xe5\x43\x0b\xb7\x4c\x54\xe6\x2b\x9b\x85\x2a\xda\x1a\xf6\xf8\x4c\x79\xa3\xf4\xfa\x9a\x9a\x54\x54\x4a\x1d\xec\x12\xb2\x2c\xb1\x43\xe3\x75\x3c\xaa\xb8\xe7\xb1\xa9\x91\xff\x64\x83\xf7\xc4\xe0\x2d\x51\xa4\x33\x49\x8b\x25\x72\x53\x1e\x7d\xa0\x5e\xf5\xdd\x06\xfa\x35\x0a\xa3\x4c\x78\x37\xf8\xb1\x88\x43\x94\x06\x10\x9e\xf5\x8b\x5f\x7e\x0a\xb4\x89\x04\xdf\x8b\x06\xd1\x3d\x46\x13\x76\x39\xb2\x28\x23\xcd\x48\xea\x4b\xb8\x4f\x52\x9c\xc4\xd5\x56\x29\x11\x95\x46\x39\x22\xd3\x3c\x8e\xee\x64\x74\x92\x49\xc9\x15\xb1\x47\x0c\x56\xb6\xc1\x75\x03\x46\xf7\x9b\xe6\xe6\xce\xcf\x34\x3a\x75\xcf\xd1\x9d\x9f\x79\xd9\x34\xf1\xdc\x65\x96\x32\x57\x95\xad\xb2\x56\x53\xb6\x81\x38\x95\xa1\x41\x9a\x91\x60\x20\xad\x07\x84\xe6\x12\x9c\x66\x4a\xa7\x7e\x1c\x3f\xc8\xe0\x71\xde\x70\x9a\x91\x9b\xcc\x9f\xf0\xb1\x31\xba\x66\x1f\xf6\xd1\x71\xfe\x46\x3f\x65\x78\x1f\x12\x2a\x6e\x0c\x0f\x9b\x76\x9b\xea\x34\x60\x45\xb5\x2d\xb2\x29\x42\x07\x58\x7f\x32\x42\xf2\xe2\xc4\xb9\xa6\x35\x33\x99\x13\xe4\xe7\x39\x13\x68\x0e\x2e\x3f\xff\xaa\xba\xc6\xee\x30\x19\x1b\x6f\x6c\xa7\x21\x32\x09\x44\xf5\xde\x4d\x1a\x75\x6f\x33\xec\x87\xec\x86\x5d\x15\xab\xe7\x3b\xd3\x03\xf7\x5d\xec\x7c\x9a\x50\x5b\x45\x57\x88\x6f\xda\x5d\x97\x4b\x72\x56\x6a\xdf\x0d\xed\x93\x62\x4e\x2c\x07\x33\x76\xa2\x67\x64\x9a\x0b\x54\x30\x56\xab\xfe\x3d\x23\x01\xc7\xf9\xa9\x1f\x67\x2b\x39\x3b\x5f\xf7\x1d\xec\x2b\xc5\xfa\xd2\xee\x9f\x1d\x2b\x45\xec\xc8\x0f\xd8\x8d\x88\x73\x6d\x6e\x6e\xaf\x11\x9e\x0e\xf7\x2f\xf7\x2f\x2e\x4f\xcf\x8f\xae\x2e\xff\xf3\xac\xfe\x2e\x51\x0e\xa1\x7a\x89\x50\x3e\xe4\x58\x90\x07\xf2\x6f\x6e\x32\x05\xb8\x52\xc8\xd6\xa9\xf4\x96\xab\xe9\xc6\xd7\x0b\x36\xc1\x87\x57\xac\x48\x6d\x27\xf8\x8c\x54\x9a\xff\xcb\x8f\xf2\xe2\xa6\xd9\x36\xdc\xbf\xf6\x8f\x2f\xaf\x3e\x9d\x9e\x5f\x15\xe3\x9e\xb1\x35\x76\x7b\x98\xf9\xc2\xc0\x6e\x09\x4f\x72\x49\x80\x3b\x7a\xc3\xa4\xb5\xdf\xd1\x0f\x49\xf2\x26\x47\x38\xe1\x12\xe2\xaf\xbf\x9d\x35\xf7\x5d\xde\x81\x8f\x4f\x7e\xbb\xfa\x75\xff\xe0\x8f\xa3\x93\xc3\x5a\xda\x4a\x48\xe2\xa0\x2d\x69\x2e\x12\x69\xd9\xd9\x1d\x9c\xc3\x9a\x5d\x0b\x11\x5c\xc3\x92\x61\xef\x6b\x7a\xf2\xf9\xeb\xc5\xe5\xd1\x79\xcb\x5e\xfe\x48\x37\x85\x5a\xb5\xd2\x03\xa1\x7e\xdc\x64\x82\x31\x15\x3a\xc8\x4d\xc6\x48\x05\x6b\xe7\x7e\x4b\x28\xc3\x9e\x82\x4d\xf1\xe3\xb8\xcc\x1c\x4b\x73\x3f\xaf\xe9\xd5\xa7\xa3\xcf\xc7\xff\xdf\xd5\xf1\xd9\xe5\xfe\xaf\x9f\x8f\x2e\xce\x8f\x3e\x9d\x1f\x5d\xfc\x7e\x7c\x72\x79\x74\xfe\xe7\xfe\xe7\xda\x6e\x7e\xd8\xaa\xf6\xef\x84\x68\x99\x9d\xa4\xf4\x50\xb3\x28\xc7\xf5\x57\x42\xb7\x1e\x44\x69\x44\x8f\xcf\xee\xde\xf1\xf8\xaa\x52\x0d\xa3\x39\x85\x59\x41\x25\x7d\xee\x06\x7c\x7c\x56\xe4\xd0\xb3\x6b\x0e\xc6\x84\x32\x36\x21\xc2\xad\x99\x3c\xe8\x27\x37\xb8\x2f\x6c\xca\x22\xb0\x5b\x25\x0b\x91\xfe\x41\xba\x2f\x90\xa8\x75\xec\xdf\x55\xea\x4d\x88\xd4\xc4\xcb\x74\x23\x32\xcc\xfe\x9a\xad\x89\x84\x6c\xfc\x2f\xcf\x93\xd6\x33\x2f\x88\xc2\xec\xbf\x2a\x1b\xda\xa2\xdf\xe3\xb3\x3f\xdf\x9d\x9d\x9e\x7e\x76\x1c\xc2\x1b\x86\x5e\xe9\x97\x9d\xfe\xf6\x87\x8f\xfd\xad\xfe\xd6\x60\xfb\x43\x75\x32\x0f\x23\x2a\xfc\x81\xa3\x18\xa3\x98\xdc\xf0\x61\x52\x82\xfe\x8b\x47\xff\xe4\x31\xfb\x8d\xfe\x17\xb7\xfa\xd9\xe8\x27\x56\x8f\x0e\x8f\x2f\x18\xc9\x5c\x7d\x3a\xfe\x7c\x74\xf5\xf9\xf4\xb7\xdf\x8e\x4f\xdc\xba\xa5\xe6\xf3\xfa\x13\x27\xdc\x32\xd0\x9d\x08\x81\x55\x2d\xb8\xc0\x85\x64\x3f\xef\x1f\x1c\x1c\x9d\x5d\xd6\xf4\x49\x50\xf1\xe1\xd1\xa7\xfd\xaf\x9f\x2f\x8f\x4e\x0e\xcf\x4e\x8f\x4f\x2e\x2f\x4f\x99\xc8\xb0\x7f\x70\x79\x7c\x7a\x52\xdb\x33\x51\x6d\xfd\x44\x1d\x9f\xdd\x7d\x60\x24\x56\x72\xf2\xc6\x2e\x1c\x9f\xfd\xf9\xe1\xe2\xeb\x19\x93\x47\x66\xd1\x7a\x68\x46\x04\xcd\xb7\x81\xc3\x7d\x08\x57\x48\xca\xa6\x8a\xb7\xf0\xf9\xf4\x37\x36\xe5\x67\xfb\x97\xbf\x8b\xfb\x73\x82\xa5\x53\xbc\x58\x58\x3e\x9f\x6a\x65\x73\xc2\x57\xba\xa9\xc7\x5a\x7d\x33\x1e\x89\xdd\x3b\x7c\x71\xf4\xe7\xd1\xf9\xf1\xe5\x7f\x5e\xfc\xe7\x85\xe8\xb3\xdc\x54\x7c\xe7\x15\x11\x61\xc9\x35\x69\x1c\x09\x7d\xa0\x31\xb9\x69\x19\x8b\xd6\xd4\x0c\x67\x4c\x49\x89\x5a\x7b\xc3\xde\xbd\x9f\x25\x51\x72\xd3\x65\xe8\x17\xce\xf1\x1e\x9c\x1f\x1d\x9d\xb0\xba\xfe\x12\x35\x55\x47\xdc\x75\x38\xbc\xa6\xda\x11\xfd\xe5\xee\xa8\x59\xdd\xef\x47\xfb\x9f\x2f\x7f\x3f\x3a\x61\xdb\xb6\x9e\xfd\xb9\xb7\x6a\xd3\x80\x15\xf3\x90\x8c\x95\xdf\xe3\xa6\xb9\x70\xb4\x61\xff\xd0\xc2\x2f\xae\x51\x72\x2d\x78\x52\x17\x6e\xd4\xc6\xa9\x59\xe5\x66\x57\xe7\x55\xc4\xb9\x1c\xbd\xd4\xef\x02\x57\xa3\x22\xb5\x04\xe9\x74\x17\xed\xbc\xdf\x32\x92\x24\xc4\xd1\x35\x0e\x1e\x82\xd8\x06\x19\x4e\x33\x7c\x91\x93\xb4\x52\x09\xbb\x3a\x3b\xf5\xbb\x42\xe9\x54\x7d\xe3\x21\x6e\xf3\xaa\xb9\xba\xa9\x32\x1e\x1d\x4f\xf3\x90\xdc\x27\x66\xdf\xee\x70\x82\x29\x3d\xcb\xc8\xc8\xee\x9f\xb3\x1f\x75\xbd\x68\xef\x83\x87\x3c\xbe\x7b\x3d\xd6\xa6\x35\x13\xa6\x11\x75\x7b\xcb\x7c\x2d\x75\x8d\x87\x38\xf6\x1f\x6a\x0b\x49\x55\xe2\xe5\x38\xc3\x74\x4c\xe2\x70\x17\x7d\x30\x0b\xe4\xd1\x04\x93\x69\x5e\x53\x01\xbb\xf3\x47\x75\x33\x31\xce\xf3\xf4\x37\x6c\x53\x0e\x4f\x10\x35\xde\x45\x83\xe2\xdb\xca\x7b\x92\xe5\xbb\xe8\x97\xad\x5f\x7e\xb1\xdf\x30\x7e\xb6\x8b\x62\x12\xf8\x71\x55\x33\xd4\x32\x1d\xcd\x03\x69\x50\x2c\x6e\xf0\xdc\xa9\x2a\x58\x9d\x9d\x3c\x5a\x84\x08\xbb\x8a\x06\x19\xe6\x12\xac\x1f\x57\x19\xda\x12\x35\xe3\xc8\xd0\xb1\x14\x60\x4e\x75\xad\xc5\xd1\x68\x30\x21\xe1\xd4\x01\x2c\x29\x9a\x89\xa3\x91\x57\x53\xa0\x5e\x95\x63\xb7\x92\x4d\x93\xc1\x37\x71\x0c\xf5\x63\x12\xdc\xba\x9b\x92\x25\x3c\x57\x89\x19\x86\xb4\xb8\xe2\x72\xc6\xc6\xd8\x1c\xb6\x35\xc6\xa6\x71\xae\xc6\x44\x15\x42\xeb\x44\x1f\x92\x8a\x3e\xcd\x35\x72\x76\x42\xf8\x37\x15\xec\x22\x41\xa2\x85\x7e\x66\x13\xdd\x63\x7e\x6b\x90\x7a\x1c\x2e\x03\x14\x1a\x44\x65\xe8\x28\xcd\x20\xb6\xea\x9a\x12\xae\xa8\xe5\xa5\x05\x7c\xa2\xdd\x1c\x87\x74\xcd\x91\xd0\x9e\x92\xac\xaa\x4e\x14\x83\x13\xe6\x84\x86\x71\x95\x8d\xba\x2b\x60\x5b\x21\x26\x37\xae\xad\x50\x59\x2b\x72\x53\x28\x41\x4d\xbf\x09\xd4\x40\xd1\x15\xdf\x8e\x6c\x9a\xd0\xe2\x3a\x2f\x2e\xf7\x05\x38\x8d\x48\xa6\xeb\x4d\x6e\x84\xd7\x2b\x4e\x0c\xab\x0d\xe7\xd1\x31\x3b\x9c\x44\xa4\x71\x25\xf3\xae\xa7\xe9\xc9\x4a\x8f\xe1\xb2\x8f\x9a\x7f\x07\xbb\xb6\x4a\x77\xf6\xe3\xc9\xcd\xc2\xf6\x16\x24\xfd\x3c\x18\xaf\x91\x0d\x87\xd2\xd6\xe2\x45\xa9\x37\xf1\xe9\xbf\xd4\x9f\xd6\x40\xcb\xd8\x18\xf1\xcc\x2f\x15\x54\xf5\x7a\x6a\x3e\xce\x4e\x0f\x57\x66\x5b\x56\xbe\x7d\xfd\xa4\xa2\xf7\xb0\x9b\xbf\x38\xdb\x3f\x58\x7d\x1f\x1c\x89\xca\x0b\x89\xed\xf3\xfe\xc9\xc9\xd1\xe7\xc3\xab\xe3\x4f\x33\xf6\x64\xd9\xce\x05\xac\xd0\x55\x74\xdd\xa1\xa7\x67\x57\x5f\xf6\x2f\xfe\xef\x13\xf6\x95\xd1\xee\x14\x67\xbe\x29\x39\xd5\xb2\xf3\x59\xb8\x57\x1b\xef\x6a\x38\xdf\x3d\xd3\x81\xdf\x0b\xae\xad\x11\xe8\xbd\x60\x22\x81\x7e\x26\x0c\x54\x51\x31\x0a\xd3\xfc\xa1\x02\x6b\x85\xcb\x4b\xf5\x70\xa9\xe1\xea\x4c\xf6\xe0\xcd\x59\x1b\xb6\x41\x56\xf0\x5a\x39\x6a\x73\xa5\x75\xdc\xda\x6b\x65\x9e\xed\xf5\xba\x18\xb3\xd7\xb2\x60\xcd\xb5\x36\x93\x82\x70\x3f\xfe\x14\xc5\xf8\x34\x3b\x30\xe2\xc6\xca\x76\xab\x66\xe5\xe6\x16\x25\xef\x73\x35\x74\xa8\xf8\x6a\x7d\x6b\x15\xd6\xda\xa9\xb1\x0a\xa3\xb5\xda\xd3\x29\x6d\x52\xda\x3f\x0d\x9b\xa6\x05\x96\xa1\x39\x0e\x98\x2e\x94\xb5\x36\x4b\x07\xd5\xba\x6c\x8a\xcd\x03\x32\x4b\x97\xfb\x42\xee\x21\x47\x1b\x35\x7b\xb1\x38\x8f\x76\x5d\xbb\xdf\x7d\x06\x95\x00\x0a\xca\x7f\xec\xe0\xe4\xd8\x65\x16\x74\xbb\xcc\x34\x8f\xcc\xe9\x88\xe3\x35\xdf\x0d\x9a\x6b\xac\xb9\x73\x94\xa3\x90\xd0\x0d\xec\x5e\x13\x93\x1b\xd7\x02\xd5\x08\x62\x1d\x76\x6a\x8d\x58\x56\x36\x2e\x75\xcf\x29\xce\xbc\x94\x84\xe8\x6b\x12\x7d\x43\x87\x84\xdd\xb7\xd0\x05\xb1\xd2\x4f\x36\x4b\xcd\x35\xbd\x69\xdd\x53\xa8\x7a\x68\x69\x82\x36\x8f\x2e\x69\xf3\xec\xd6\x83\x34\xca\x58\x1c\x3b\xba\x65\x9e\xa8\x0d\x33\x7e\x68\x85\xfd\x98\x21\xe0\x66\xd6\x98\x26\x1b\x22\xa9\x88\xc2\xb9\xc0\xd8\x15\x93\x69\x44\x00\x0f\xaa\x00\x4b\xce\x90\x18\x19\x38\xa3\xe5\x3a\x98\x05\x5e\x6a\x9e\xb0\x99\x3a\x08\x29\x15\x19\x22\x0c\x2e\x06\xa4\xa5\xca\x45\xc6\x53\xc4\xfa\x1c\xc1\x39\xc6\x5c\x35\x7f\x27\xec\x8c\x7e\x22\x01\x52\x33\x9c\xc6\x51\xe0\x53\x1e\xbc\x32\x6b\x50\x4e\xed\x20\x69\x19\xa0\x53\x6e\x8d\x73\x5c\xc6\x42\xb7\xc5\xc6\xb4\x4e\x23\x42\x4d\x53\x89\x5a\xc2\x6b\x1a\xaa\x5d\x30\xe0\xc6\x43\xd1\x35\xea\x5f\x96\xe1\x2d\x9a\xeb\xbf\x19\xf4\xa2\x45\x28\xe9\xc5\x8b\xf0\xa4\x0f\x22\x9e\xc6\x43\x38\xa6\xb8\xb6\x96\xf2\xa0\x73\x2b\x7c\xb5\xd2\xca\xc6\x5e\x8b\x67\x4a\x90\xc0\x8f\x8e\x31\x77\x7a\xca\xa6\x49\x5d\xc0\x8d\x19\xa8\x53\xda\xaa\x21\x5c\xc7\xf8\x90\xaf\x9e\x8c\x8c\x12\x65\x16\x09\xdd\x69\xdc\x0b\x95\x60\x9e\x79\x23\x5c\x58\x2b\x16\xac\x61\xa7\x88\x97\xc2\x38\xea\x0a\x7a\x71\x3a\x59\x79\xdd\x76\x39\x32\x75\x16\x65\x81\x05\x1d\x9d\x2a\xfa\xd7\x83\x31\xe1\xf9\xda\xb8\x79\x5e\xdf\x18\x39\x61\x7b\xa1\x46\xf9\x24\xad\x33\x57\x07\xa7\x27\x97\xe7\xa7\x9f\x3f\x1f\x9d\xd7\x99\xb1\xaa\x7a\xf7\x99\xdc\x86\x6e\x9d\x59\x19\x97\x69\x23\x98\xd2\x4c\xd8\x09\xc6\x38\xb8\xf5\x4c\x00\xc7\xb2\x98\x67\xb9\x30\xae\xbb\x7d\x60\x45\xb3\x90\xb5\xce\xc2\x23\xc9\x52\xb3\x08\x19\xb6\x44\x65\x86\x27\x0b\xf6\xcc\xce\xd4\x33\x12\xa2\x43\xe1\xe3\x1d\x91\x04\xfd\x3a\x0d\x6f\xb0\x70\x0b\x2b\xf7\x1f\x97\xe8\x85\xeb\xdf\x47\x5a\x78\xdb\xec\x4f\x73\x42\x03\x5f\xbe\xc7\x77\x51\x90\xb3\x99\xd0\x07\x29\xa4\x6a\x4d\x98\x3a\x23\x61\xd9\x98\x68\xeb\xe9\xa5\x2a\x47\x6c\xef\x92\xc4\xa3\xde\xe6\xff\x83\x10\xea\x05\x24\xc3\x61\x42\xbd\xbb\xed\xfe\xf6\x87\xde\x2e\xea\x15\xf4\xc2\x65\x88\x95\x50\x8c\x68\xb2\x69\xc2\x78\x17\x16\x00\x03\xb0\xda\x35\x67\xdf\x10\x9b\x46\x84\xe4\x4c\x4e\xe4\x90\xcc\xa2\x1d\x4f\x25\x66\x2a\xbb\x2c\xfa\xb5\x5b\xf4\x5c\xc1\x95\xe8\xf8\x1f\x43\x8e\x07\xa2\xbc\x04\x4c\xbb\xb0\x85\x85\x68\xe2\x20\x96\x30\x26\x36\x16\x4d\x89\x0f\xa2\x23\x30\x2a\x60\xda\xce\x6d\x17\xb8\x26\x7a\x7d\x9c\xbc\x17\x9d\x67\x37\xe8\x82\x86\xf0\x27\xe7\xdc\x55\xad\xb1\x0c\xfe\x34\x27\x22\xaa\xde\xf4\x25\x58\xfe\xca\x2d\x15\xf7\xc1\xae\x7d\x16\xd0\x87\xf6\x5d\xa0\x0b\x6e\x95\x95\xd2\xd6\x43\x29\x75\xe6\xdd\x6d\xc5\x17\x07\x24\xc3\xd7\x11\x3b\x67\xfe\x47\xcc\x78\x7f\xf7\xfd\x5b\xf4\xbd\xe4\x31\x22\x00\xa7\xfc\x7b\x8c\xfd\x38\xd7\x7c\xc6\x19\x0b\x7c\x70\xdd\x50\xb8\xd0\x24\x66\x50\xa8\x3b\x7e\xfc\x60\x92\x1e\xbb\xa5\x9c\xe3\x3b\x9c\x51\x7c\x70\x7c\x78\xce\xae\x29\x4c\xfe\xab\xfe\x24\x6f\x1f\xdf\xbf\xf3\x74\xb3\x9e\x1f\x86\x59\xdf\xcf\x52\x1f\x45\xe9\x07\xfe\x0f\x2e\xe8\x15\x10\x00\x7a\x9f\x11\xdf\x5e\xec\xbe\x89\x83\xa9\x99\xd3\xf0\xda\x8f\xe3\x7c\x9c\x91\xe9\xcd\x18\xb9\x6b\x2d\x0a\x6b\x02\x5e\x9a\x91\x09\xce\xc7\x78\x4a\xd1\xee\x2f\xdb\xef\xdf\x0e\x93\x61\xae\xae\x5c\x5f\x53\x9a\x67\xd8\x9f\x70\xcc\x5b\x99\xa5\x45\x17\x0e\xaf\x49\x76\xef\x67\x21\xea\xa3\xef\xdf\x25\xf0\x41\x54\x00\x1f\x38\x3e\x66\x63\x8a\xae\xd1\xdf\x22\x3e\x5f\x9c\x6d\x7e\xff\xde\x67\xff\x93\x2c\x54\x34\x6d\x5d\xce\xf4\x76\x86\x3d\xae\x12\x63\x67\x42\x7c\xc7\xc3\x46\xd9\xce\x92\x9f\x19\xb7\x02\x84\x02\x3f\x18\x63\xf4\x56\x93\x6a\x62\x42\x52\x7d\x79\x63\xe2\x87\xfa\x5b\x3f\x1c\xf9\x31\xbb\xc6\x8b\x1f\x5d\x84\x3a\xa3\xce\xa2\x9d\x5c\xeb\xb8\x29\x2f\x14\x2a\x4c\x34\xf3\xb0\x50\x91\x5f\x8c\xc2\x0f\x4f\x2e\xd8\x14\x94\x10\x20\xcf\x02\xc7\x63\x16\xa6\xaf\xcf\xc4\xfc\xf8\x1f\xe6\x7c\xba\x8e\x75\x24\x8c\xa4\x01\x99\xa4\x7d\x65\x2c\xed\xf3\x14\xa3\xd6\xf1\x9e\x92\x70\x17\xbd\x09\x49\x70\x8b\xb3\x81\x3c\xa4\xdf\x38\x34\x1d\x8e\xfb\x60\xdd\xc5\xae\x83\x84\xa2\x3a\xe8\xb8\xc6\x2a\x2a\xab\xee\x02\xb7\x62\x43\xde\xd9\x87\x3d\xc7\xad\xbd\xe7\xbe\x7e\x0f\x7b\xf2\x02\xde\x5b\xe0\xee\xee\xfa\x70\x16\x65\x45\x8d\xea\x68\x84\x73\x7b\x89\x34\xfd\x91\x28\xb3\x1a\x68\x16\x49\x4a\x02\x1a\xf4\x41\xeb\x12\xeb\xe9\x7e\xf5\xe7\x32\x03\xfc\x21\x47\x01\xb9\x28\x34\x2a\xc7\x37\x09\x29\x7e\x16\x93\x59\xcd\x8d\xa6\x8f\xff\x12\x67\x8e\xd4\x47\x9e\xd8\x4a\x47\x65\x4e\x6c\xa7\xfb\x1c\x5f\x7e\x01\x57\x45\x62\x6c\xcd\x9d\x00\x3b\xaa\x7e\x56\xbf\x2e\x0e\x55\x84\x57\x3d\x01\xc5\xa3\xab\x1d\xf8\xe9\x55\x51\x39\x74\x54\x38\xb8\x7d\x15\xe3\x68\x12\x55\xfc\xc0\x26\x78\x42\xb2\x87\x5d\xb4\xfd\xf3\xd6\x97\xc8\x5e\x0d\x87\x5f\x23\xf7\x6a\xdc\xde\x32\xbd\x1a\xcb\x6a\xcc\x5a\xfc\xec\x46\x42\x94\x7a\x82\x1f\x6d\x2a\x2e\x25\xc7\x3e\x50\x82\x88\xe9\x91\x51\x63\xe8\x2e\x27\x8e\x9d\x00\x9e\x28\xa5\xf7\xc3\xb6\x3f\x57\x66\xb8\xde\x65\x26\x25\x99\xd5\x56\xb1\x72\x67\xdc\x73\x8f\xb1\xff\xb2\x1a\xd1\x11\xab\xee\x34\x23\x39\x09\x48\xbc\x8b\xbe\x1e\x9e\xcd\x5e\x95\x97\x07\xa9\xbb\xba\xcb\x83\xa6\xea\x84\x68\x62\x57\x38\xc1\x79\x16\x05\x35\xfd\x33\x2a\xac\xd7\xe9\xb8\x7d\x1d\xa5\x51\xc9\x16\x09\x51\xe1\xe4\xf8\x71\xeb\xa3\xa5\x70\xe1\xd9\x02\xf1\x2e\xfa\xfd\xf2\xd2\x88\xec\x70\x6a\x6b\x3e\x18\x1f\xdb\xaa\x98\xf7\xfa\x4b\x3a\xe5\x36\x3e\x4d\x91\xb3\x6d\x8a\x7d\xb6\x9e\xe7\xbd\x29\xc2\xd6\x68\x71\x1a\xc7\x6d\x89\xbe\xda\xb0\xb7\x3f\x6e\x77\x19\x76\x93\xb7\x11\xd7\x70\x9c\x29\x87\xa3\x23\x1a\xf8\xb1\x8c\xea\xad\x78\x63\x04\x7e\xea\x73\x54\xc2\x6a\x8e\x39\x3f\xb4\x55\x4d\x1e\x3a\x39\xba\xbc\xfa\xf5\xf8\xe4\x50\x45\x68\x99\xef\xc3\xac\xe2\x7c\xec\xb1\xce\xb8\xb6\xce\x39\x21\xf9\xa7\xc2\xcd\xce\xdc\x48\x61\x42\xd5\xd1\x74\x68\xa6\x23\xae\xba\x7d\xb4\x6e\xe7\x16\x23\x76\x75\x73\xbb\xb3\xde\x29\x35\xbc\x3a\x6a\xac\xd3\x5b\x2c\x6b\xf9\xb6\xe1\x02\x26\xaf\x78\x4e\x79\x56\x17\xa2\xea\x05\xda\xaa\x68\x55\x5e\x32\x84\xfc\xc4\x28\x69\xd8\xe3\x7b\xba\xe7\x2a\x41\x83\xcc\x4f\x1b\x2f\xcf\x5d\xc4\x64\x25\x65\x49\x99\xc9\xf6\xeb\x9f\x41\xa6\x36\x65\x0e\x67\xe3\xb2\xb1\xe3\xb3\x5d\xfd\x76\x78\x72\x21\xb2\x5b\x0a\xfe\x56\x9e\xbf\x9e\x7d\xb8\xa6\xc6\xa1\x59\x39\x64\x3d\xd7\x09\x5a\xf7\x8d\x3c\xf8\x3c\xd7\x21\x99\x5a\xa7\xa9\xf5\xd5\x72\xee\x3b\x9e\x5f\x68\x2c\xe7\xb9\xfa\xb8\x6a\x99\x0f\xe2\xd0\xd9\x9d\x05\x30\x04\x9d\xf5\x15\x52\xff\x12\x64\x78\xa3\xea\xaa\x38\xbf\x80\x00\xfc\xea\x85\x54\xd7\x55\xa8\xf1\x06\x53\x57\x51\xf3\xed\x65\x0e\x19\xd9\x26\x27\xe4\x12\x93\xf7\xa7\x39\xb9\xe0\x85\x2a\x02\xf3\xcc\x51\x3b\x52\xc2\x1d\xf6\x76\xb6\x26\xae\x84\xea\x4a\xd0\x1d\xf6\xb6\x99\xa8\xab\x95\x70\xd9\x78\x3c\x54\x9c\xb4\x69\x46\xd8\x01\xc3\xf1\x01\x2a\xbb\x44\x95\xf6\xbc\xe2\x40\xd8\x73\xf8\x18\xa8\x42\x45\x36\x99\xbd\xba\x6d\x57\x96\xcd\xfd\xec\x06\xe7\x7b\xe5\xe9\xe4\x92\x8a\x37\x44\xc2\x7a\x85\xf2\x1e\x51\xe9\x24\x1e\xb3\x8f\x85\x5a\xf9\xef\xf7\x51\x3e\x46\x13\x92\x61\xbe\x21\xe9\x4f\x4c\x96\xe7\xff\x3a\xc3\xd9\xb9\x70\xeb\x18\xf6\x54\x28\x6b\x48\x38\x32\xa2\x19\x53\xbf\x81\x8e\xaf\x65\xc5\x74\x52\x58\xea\x37\x79\xfc\x60\xd8\x5a\x8f\x50\xd9\x7c\x8e\x12\xec\x67\xa5\xd9\xe7\xcc\xcf\xfc\x09\x35\xcd\xb2\x6c\xd8\x52\xf7\xe0\xa5\xfc\xfd\xde\xf7\x61\x2f\xe6\x5f\x0e\x7b\xbb\xdf\xbf\xd7\xd6\x52\xd1\xec\x74\xab\xd0\x31\x11\xbb\xdb\x3b\x1f\x37\x1d\x03\xdb\x7d\xb7\x39\xec\x4d\xa2\x84\x95\xd8\x1c\xf6\x52\x81\xa0\x75\xc1\x3d\x66\xce\x48\x94\xe4\x9f\x84\xcc\x3a\xec\xed\x32\x86\xec\x00\x39\x55\x1d\x8a\xc9\x4d\x4e\x68\x1e\xe2\x2c\xdb\xb3\xdd\xd2\xd9\xfb\xbb\xbd\x9d\x2e\xe7\x6e\xbb\xb8\xd3\xc1\xc4\xd3\x91\xab\xb9\x53\xec\x2d\x88\x55\x6e\xaa\xe6\x8d\x9e\xcc\x04\x36\xcf\x93\x09\x71\x03\x8a\x7a\x27\xac\x28\xec\x77\x01\xc0\xb7\xc9\x23\x3e\xf3\x60\x2c\x4b\x74\xac\x54\xfa\x3c\xb1\xa1\x68\x86\xb9\x01\xef\xa4\xa3\xad\x1b\x2c\x9b\x92\xa9\x1b\xdc\x6d\xe1\x6f\x39\x4e\x38\x83\x18\xf6\x36\x87\x3d\x26\x8b\xd4\x34\x5f\x62\x0f\x14\x6d\xb2\xda\x95\x27\x16\xce\x17\xed\x4a\x4d\xbb\x5a\xca\xab\x86\x9a\xa5\x8f\x56\xef\x9f\xab\x4d\xc0\xd8\x40\x24\x9a\x29\x87\xb3\xd6\x1a\x63\x4e\x33\xc5\xd7\xd3\xbc\x6e\x87\xea\x6c\x60\xb2\x6a\xef\x64\xbf\x2a\x45\x22\x87\xc5\xf7\x67\xb0\xf8\x82\xc5\x17\x2c\xbe\x60\xf1\x9d\xd1\xe2\x6b\xda\x57\x63\x7f\x82\xc3\x69\x70\x8b\xde\x6b\x05\x0d\x69\x1b\xac\xc2\x60\x15\x7e\x66\x56\x61\xdb\x25\x1d\x8c\xc4\xeb\x62\x24\x9e\xdb\xab\x58\xac\xf2\x22\x7e\xc4\x4b\xb7\x39\x3b\x5c\xf5\x1f\xc7\x53\xff\xf9\x19\xb4\x97\xaa\xdb\x03\xe3\xb6\x5e\x68\xc9\x7a\x43\xce\x5b\xf7\x93\x3c\x5a\xfe\x90\x3d\x71\x14\x39\x56\x5d\x3d\xdd\x07\x2c\xcf\xb0\xe6\x91\x1d\x57\x00\xc2\x91\x72\x86\x17\x57\xd6\xe2\x00\x34\xc1\x9b\x11\xdf\x79\x29\x89\xc9\xcd\xc3\x1f\xbc\x35\x63\x52\x15\x50\xfd\xb0\x5d\xd7\x09\xfe\x00\xe0\x0f\x00\xfe\x00\xe0\x0f\xa0\x7f\x03\xfe\x00\xfa\x08\xc1\x1f\xa0\x5a\x02\xfc\x01\xc0\x1f\x00\xfc\x01\xf4\x3b\x43\xc3\xb5\x51\xdd\xc2\x34\xc3\xb1\x34\x00\x56\xee\x8a\x65\x1f\x9a\x6f\x99\x6d\x75\x80\xa7\xc2\x72\x6e\x1c\x4f\x74\x81\x7e\x14\x37\x88\x2a\x8d\x80\x4b\x84\x2a\x0d\x2e\x11\xe0\x12\xd1\xd5\x25\x82\x55\x2d\x58\xd2\x5e\xf3\x91\xc3\x1d\x26\x36\x9d\x27\xee\x9e\x71\xe0\x22\x70\xb6\x00\x67\x0b\x70\xb6\x00\x67\x8b\x19\x9c\x2d\x3e\xae\x8d\xaf\x45\x45\x40\x9f\xe9\xd2\xc7\xf5\x06\x24\x99\xf8\x89\x7f\x83\x33\xeb\xa0\x9c\x90\x50\x60\x2c\x91\x24\x70\x5f\x93\x9f\xcc\xaf\x63\xb6\x7e\x83\x1f\xc8\xf3\xf5\x03\xe9\xb0\xd2\x47\x3c\x6b\x5f\x29\x9e\x83\xeb\xc8\xdc\x87\xc7\x8c\x73\xbd\x3c\xb0\x81\x75\xf7\x23\x99\x4a\xc7\x8d\xa1\xa1\x6a\xee\xec\x5b\x82\x50\x9e\xc7\x86\xdb\x05\x78\x9b\x3c\x6b\x6f\x93\x16\xbe\x3a\x1b\x77\x02\x80\x83\x67\xe9\xbb\x02\x00\x07\x00\x70\xf0\xc2\x35\xb2\xe2\x77\x70\x68\x00\x87\x06\x70\x68\x78\x49\x0e\x0d\x8b\x8f\x1b\x3c\x1a\x54\x03\xe0\xd1\xb0\xa6\x1e\x0d\x2b\x14\xc2\xc1\x03\x02\x3c\x20\x00\x11\xe1\x79\x4b\xb5\x80\x88\xa0\x3d\x60\xfe\x07\xf3\xff\xe3\x98\xff\x5f\x16\xdc\x41\xa3\x6d\x63\x89\xf2\x09\x58\xfa\x57\x62\xe9\x07\x03\x3f\x18\xf8\xdd\x06\xfe\xfe\x5b\x61\xe2\xdf\x40\xbf\xfa\x54\x24\x9e\x51\xfa\x9e\x92\x3e\x06\xe5\xae\x55\x0c\x86\x67\x88\xea\xb3\x2f\x44\x2d\x6b\xe1\x24\xb0\x3e\x86\xfb\xe7\x64\x88\x0f\x23\x1a\x90\x3b\x9c\x3d\x68\x26\xe1\xda\x7e\xc4\x51\xa7\x46\x5e\xb0\xa5\x1e\xcc\xee\x80\xd8\x00\x88\x0d\x6b\x68\x43\x47\x1b\xe8\xe2\xf2\xeb\xaf\x87\xa7\x5f\xf6\x8f\x4f\x2e\x90\x57\x1f\x3b\xb1\x9e\xb6\xf6\x26\x4d\xdc\x46\x81\xed\xc0\xee\x6f\x09\xc9\xd5\xa0\x70\x88\xa2\xa4\x70\xdb\x28\x74\x3c\x9b\x05\x3c\x40\x44\xd1\x76\x1f\x89\x3a\xfe\x8a\xe2\x18\x8d\x30\xca\xa7\x89\xf8\x2e\xc3\x7e\xcc\xb5\xf6\x8c\x80\x0e\x4f\x2e\x10\x3f\xa8\xd8\x8d\x3d\xe6\xb7\x73\x8f\x89\x1a\xec\x4a\x17\x51\x94\x4f\xb3\x84\x0b\x08\xce\xec\x87\x60\xae\x5f\x17\x73\x3d\x40\x4d\x00\xd4\x04\x7f\xc0\xcd\x60\x3d\x15\xb2\xcd\x50\x13\x69\x86\xaf\x71\x36\xe7\x98\x3d\x74\x8f\xa3\x9b\x71\xce\xcd\xfe\x56\x9f\x58\xa3\xb2\x41\x36\x1b\xd5\x91\xb6\xa1\x54\x74\x99\xac\x4e\x48\x15\x1d\xc0\x2a\x3a\xe3\x55\x00\x60\x05\xf8\x77\x80\x7f\xc7\x6b\xf5\xef\x00\xc0\x0a\x70\xef\x78\xe9\xee\x1d\xe0\xae\x01\xee\x1a\xcf\xc6\x5d\x03\x00\x2b\xe4\xf1\xfc\xa2\xee\x2d\x00\x58\x01\x1e\x2b\xe0\xb1\xf2\xd2\x3d\x56\x00\xb0\x02\x00\x2b\xd6\xdb\x8d\x05\x00\x2b\xc0\x9f\xc5\xe4\xd8\x4e\x8f\x16\x2f\x13\x32\xe8\x0e\xb8\xb6\x80\x6b\x0b\xb8\xb6\x80\x6b\x0b\xb8\xb6\x80\x6b\x0b\xb8\xb6\x80\x6b\x0b\xb8\xb6\x80\x6b\x0b\xb8\xb6\x80\x6b\x0b\xb8\xb6\x18\xa4\x00\xae\x2d\xe0\xda\x02\xae\x2d\xda\x01\x05\xae\x2d\xe0\xda\xa2\xbf\x04\xd7\x16\x70\x6d\x31\x5e\x81\x6b\x0b\xb8\xb6\x34\x7d\x03\xae\x2d\xe0\xda\x02\xae\x2d\xcf\xe1\xde\x02\xae\x2d\xcf\xcf\xb5\xa5\x5e\x92\x6c\x94\xc4\x3a\x09\x9a\xff\x5e\xb9\xa4\x99\xe2\x2c\x22\x61\xf1\x72\x7b\x6b\x06\x49\xb3\x41\x4a\x6d\x90\x33\xab\xb3\xf2\xf6\x71\x67\x65\x99\x43\xd6\x5e\x82\x8b\x13\xb8\x38\x81\x8b\x13\xb8\x38\x81\x8b\x13\xb8\x38\xbd\x78\x17\xa7\xeb\xd8\x4f\x12\x1c\x7b\x77\x5b\xfd\xed\x77\xfd\x2d\x2d\x31\x8f\x3e\x99\x29\xd7\x8a\x0c\xee\xb6\xd9\xe1\x53\x6c\xfe\x33\xce\x7c\xb9\x36\x48\xa8\x4d\x9c\xf3\x9a\xd2\xb4\x2f\x5b\xe9\x4f\x93\x54\x69\x87\x42\xb7\x42\xa1\x93\x61\x8f\xeb\x99\x70\x78\x96\x91\xeb\x28\xc6\xdc\x00\xbf\x8b\x4c\x3b\xdf\x0c\xb5\xc9\x2f\xb4\xda\xdc\x95\xf9\x69\xea\x67\x13\x92\x95\xb5\x39\x8e\x62\x67\xd7\xb2\x69\xc2\xe4\x8d\x39\xaa\x73\xf5\xad\x52\x5b\x71\x85\x2e\x27\x57\xd3\xb8\xe9\xaa\x2b\xaf\xd4\x4a\x0d\xa5\x7b\x54\x90\x61\xe9\x89\x84\x27\x69\xfe\x70\x18\x65\xe2\xaf\x31\xa1\x5c\x19\xcd\x97\x49\x0c\xea\x77\xf9\x93\xaa\x8b\xc9\x72\x67\x19\xbe\x8e\xbe\xed\x16\x9a\xf1\x24\x1a\x24\x38\xef\x87\x42\xb0\x76\x96\xe1\xb4\x2f\x29\xa2\xa6\x58\x36\x4d\x06\x46\x89\x3a\xed\x5d\x31\xca\x0d\xf4\x95\xe2\x8c\x22\x3f\x09\xd1\x0d\x3f\x78\xf8\x67\xd3\x64\x9f\xb2\x17\xca\xfb\x69\x1a\xe3\x5d\x74\xce\x7e\xdd\x4f\xb8\x1a\x94\x4e\xd3\x34\xc6\xec\xe8\xf3\x63\xcd\xc7\xcb\x55\xf4\x9a\x8a\x1d\x56\xf7\x7e\x03\x15\xaa\x4f\x54\xea\x3e\x8b\xf9\x6b\xd6\x8b\xca\xc5\xdc\x6f\x2f\xb9\x81\x0e\x34\xdd\xa9\xb6\x3c\xfa\xcf\xbb\xe8\x1f\x6f\x4e\x8e\x2e\xaf\xf6\x0f\xbf\x1c\x9f\xbc\xd9\x44\xfc\x8f\xf3\xfd\xbf\xde\xfc\x53\x6f\x2c\xb4\xbf\xf9\xa7\x98\x6b\x79\x15\xcf\x48\xea\x7a\xbf\x81\x18\x21\x58\x1e\x74\x9c\x5c\x8e\x0f\xb5\x7e\xb2\x5f\x8e\xcf\x0e\xac\x5f\x4e\x70\xce\x84\x99\x52\xef\xca\x3f\xd4\xd4\x67\x93\x28\xd9\x45\x5b\x4a\x07\xf4\x6d\x17\x7d\x78\xff\xfe\xed\x7b\xd1\xee\xc5\xd1\x67\x25\xe6\x50\xcc\xff\x29\x17\xa3\x78\xc5\x25\xde\x64\x4a\x85\xb3\xc6\x81\xef\x5f\x9c\xe9\xcb\xf5\x46\xad\xd7\x9b\xce\x72\xcf\xb2\x65\x11\x45\xd6\x4e\xd7\x46\xf4\x8f\x37\x25\xd7\x7e\x23\x57\xa3\xe4\x98\x6f\x52\x12\xaa\xd3\x82\x1f\xc9\x11\x96\xa5\x14\xdb\x7c\x33\xa5\xd8\xfc\x4e\x1e\x41\xff\x78\x53\x77\x0e\xb3\xe2\xdd\xdd\x2b\x95\x07\x65\x35\x8b\xd6\x62\x99\xb8\x16\xcd\xec\x35\xa0\xb9\x9f\x4f\x2b\xd5\xa6\x9a\x77\xe5\x8a\xe4\x86\x72\x41\x97\xea\xd0\x58\x54\x3b\x83\x27\x63\xf1\xcd\x0c\x0e\xbf\x33\xc9\xf2\x1d\x1a\x90\x32\x86\xbd\x7f\x4a\xb6\x63\x37\x5e\x67\x8d\x50\x92\x49\x70\x7d\xd3\xd4\x9e\xa5\xd6\xcd\x23\x9c\x09\x15\x5e\xc1\x65\xb5\x6e\x17\xed\x04\x49\xc4\x2f\xdf\xfd\xff\xa6\xac\x1f\xd2\xc9\xb2\xf0\x43\x1c\xf6\xb8\x15\xbc\xc7\x98\x51\x30\xca\xb6\x98\x00\x5d\xbc\x0a\x12\x35\x00\x51\x60\xab\xff\xb6\xbf\x6d\x94\x48\xe3\xe9\x4d\xc4\xc4\x6e\x26\xc8\x16\x77\x2e\xc3\xcb\x71\xd8\xcb\x1f\x52\xd9\x42\xc1\xe9\x36\xcd\x12\x21\x8e\xf1\x0d\x17\x7d\x77\xcd\x8f\xd9\xcb\x6b\x92\x05\x78\x3f\x0c\x33\x4c\x79\x43\xfc\x6e\x68\x17\x1a\xfb\x51\x96\x46\xc9\x17\x36\x1d\x75\x65\x22\x2a\x6d\x5d\xbf\xf9\x39\xbe\xf7\x1f\x54\x41\xbd\x9c\x76\x67\xfd\xb1\xd9\x61\x44\x29\xc9\xf2\x89\x9f\x56\x46\xa4\x5b\xfd\x9c\xa3\x62\x1f\x7e\x11\x8e\xc4\xb4\xad\x23\xea\x9f\xf2\xe6\xc0\xff\x4e\x70\xde\xbc\xae\x92\xff\x88\x6e\x96\xf6\x9c\x83\xe3\xc3\xf3\x1f\x3f\x8c\x45\xfc\xd5\x0f\x6e\x71\x12\x5a\xdd\x1c\xf6\x2e\x8b\x51\x7e\xff\xde\xff\x24\x96\x4e\x96\xed\xb3\x77\x46\x35\xec\x83\x3f\x4f\x8e\x79\x25\x95\xd2\x7f\x9e\x1c\xff\xf8\x61\x14\x65\x8c\xd0\x5d\x96\xbd\x29\x55\x07\x3f\x8a\x21\xb7\xda\x75\x7c\x3c\x21\xc9\x05\x76\xef\x67\x43\x14\x9b\x7f\x93\x15\x76\x94\xf2\xd0\x9a\xc7\xaa\xa3\x75\x64\x66\x53\x8e\xdd\xa5\xba\x8a\x2d\xd7\xbf\xb5\x31\x51\x74\x30\x50\x28\x37\x21\x4b\xf5\x63\x17\x6b\x73\x15\x92\x5e\x42\xd5\x17\x9e\xb2\xde\x08\x05\x9d\xee\xbd\xd6\x62\x0e\x5a\x8d\xf3\x9b\xa5\x2e\x73\x48\x8f\x1d\x6c\x67\x7f\x4c\x47\x58\x6e\xa5\x39\xac\x66\xad\x5f\x9b\xae\x97\xeb\x38\x6d\xf5\x69\xd6\xb8\xb2\xb1\xcc\xb1\x26\x8a\xbb\xac\x4a\x72\x2e\x6f\x30\x52\xc7\xa5\x3c\x6d\xd0\xb0\x77\xb7\xdd\xdf\xde\x91\xce\xac\x8a\x8c\xea\xdd\xf8\xea\x0d\x4d\xdd\xbe\xb2\x6c\x5a\x0e\xab\x58\x8b\x0d\x4f\x6a\xd7\xd2\xd8\x4f\x3a\x58\xc6\x9a\x3b\xdc\xd8\x10\xce\x83\x70\xb6\x06\x5c\x63\x33\xac\x6c\x2e\xeb\xb2\x71\xb2\x35\x1a\xe2\xa2\x84\xe6\x7e\x1c\x7b\x41\xa2\xb9\xb8\x69\x96\xb8\x93\xe3\x8a\xed\x4d\x19\x42\xd0\x3f\x86\xbd\x81\xf6\x7d\x9f\x8e\x0d\xbf\x42\x9c\xdc\x69\xc7\xc9\x06\xba\x1c\x63\x74\x70\x72\xcc\x98\x31\xdb\xad\x52\xe7\x80\x72\xa2\x3a\x81\x48\x82\xb0\x1f\x8c\xf9\xec\x69\x96\x05\xd5\xd7\x83\x93\xe3\xab\x93\xa3\xcb\xbf\x4e\xcf\xff\xb8\x3a\x38\x3d\xf9\x74\xfc\x9b\x7e\x5a\xf1\x03\xec\x53\x46\x6c\x87\xcc\x42\xb5\xf1\x07\x7e\x50\x72\xb8\xfe\xd4\xcb\x96\xfa\xc3\x57\xd5\x10\x0f\xdd\xfd\x63\xfd\xba\x3a\xd9\xff\x72\x54\xe9\x9a\xb0\x2d\xaa\x36\x78\x10\x87\x50\x0e\x97\x25\xdb\x5c\x04\x13\xc3\x99\x51\x77\x0c\x64\xa7\xa0\xa5\x69\xa9\x7c\xce\xca\xb0\x75\xf2\x46\x51\xd2\x58\x0f\x49\x73\x5e\xcf\x28\x4a\x06\x36\xbd\xd8\xa2\x81\x4d\x30\xb5\xd4\xa2\xf7\x87\xb7\xc0\x6a\x97\x15\x69\x9d\xe5\xde\x95\x7a\x59\xcf\x8b\x52\x6f\xe2\xd3\x7f\x99\x3f\x0a\x39\x64\x3a\x62\x92\xdd\xe4\x26\xd3\x0f\x44\x71\xc2\xcb\xf3\xf9\x38\xc9\x71\x76\xed\x07\x46\x9f\x78\xad\xec\xc7\xbd\x52\xa2\x72\x16\xac\x98\x66\xdc\x76\xe7\x26\xb7\x52\xb6\xe8\x55\x93\x73\x69\x6e\x7e\x6f\x99\x9b\x6b\x5c\x5a\xe7\xaa\xab\xc9\x29\x4f\x6a\x4a\x4e\x53\xdb\x63\x1f\x15\xc1\x22\xd9\x2d\xbe\x92\x9b\xf5\x2a\xd7\x0b\x38\x15\x8a\x45\x4f\x9b\x5d\xf8\xd8\xa9\x51\xa8\xa0\x84\x26\x5f\x2a\xa1\x1a\x0e\x0f\x45\x7d\x67\xa7\x87\xee\xcd\xe5\xd8\xf7\xd7\x11\x8e\x43\xd7\x86\xe7\x2f\x04\xbd\x2b\x01\xb2\xaf\x7b\x37\x57\x9b\xbb\x38\xdb\x3f\x58\x4d\x9b\x5c\xaa\xee\x7c\x00\x64\xd3\xda\x8d\x6b\xbc\xea\x70\x60\xb4\x9c\x15\x35\x27\xa1\x5d\x83\x7e\x1a\x14\x47\x45\xbd\x53\xa4\xd5\x7f\xa5\x4b\xae\x71\x49\xed\x30\xa2\xe6\x1a\xe6\x1b\x63\xb3\x83\x66\x3d\x9f\x68\x3b\x66\x9b\xfb\xaa\x9d\xb9\xec\xfd\xd4\x08\xec\x5a\xb7\x60\xb0\x9d\xad\xff\xa5\x09\x94\x6e\x93\x91\x15\x16\x0f\xb6\x23\xb0\x1d\x81\xed\x08\x6c\x47\x60\x3b\x02\xdb\x11\xd8\x8e\xc0\x76\x04\xb6\x23\xb0\x1d\x15\xff\x04\xdb\x11\xd8\x8e\xc0\x76\x04\xb6\x23\xb0\x1d\x81\xed\x08\x6c\x47\x60\x3b\x02\xdb\x91\xd5\x35\xb0\x1d\x15\xfd\x01\xdb\x11\xd8\x7b\xc0\xde\x03\xf6\x1e\x47\x0d\x60\xef\x79\x2a\x7b\xcf\x2f\x7d\x69\xe6\x59\x47\x0d\xe8\x10\xb4\x8f\xa0\x7d\x04\xed\x23\x68\x1f\xb5\x72\xa0\x7d\x2c\xbb\x08\xda\x47\xd0\x3e\x82\xf6\x71\xdd\xb5\x8f\xe2\x9b\x79\x94\x8a\x0e\xd8\x61\x53\x4f\xd7\x6b\x81\x0f\x02\x65\x1d\x28\xeb\x40\x59\x07\xca\x3a\x50\xd6\x81\xb2\x8e\x3f\xaf\x53\x59\xa7\x1a\x3e\xfa\xf3\xe8\xe4\xf2\xea\xff\x7e\x3d\xfa\x7a\x74\x75\x78\x74\x76\xf9\xbb\xf3\x04\x78\xbf\xb5\xb5\x35\xc3\x96\x6f\x56\xf5\x0d\x2a\x1b\x71\x19\x8a\xbb\xb2\x96\x6f\xb9\x3f\x8a\x31\xf5\x62\x12\xdc\x36\x75\x43\x96\xeb\xeb\xe5\x6c\xf5\x9f\x73\x44\x4e\x65\x58\x5a\x3b\xbe\xe6\x93\xac\xa9\x32\x4b\xaf\x86\xea\x4e\xd5\xa6\x3a\x9c\xc7\x6b\xe3\x84\xbb\x75\x88\xcd\x0c\xa7\x79\xee\xdb\x26\xcc\xb5\x12\xa8\x38\x1c\x3e\x45\x31\x3e\xcd\x0e\x04\x42\xd2\xb3\x57\x2f\xee\x6c\xf7\xdf\x81\x7a\xd1\x51\xc7\x23\xe8\x19\x1d\x95\x49\xae\x13\x25\x37\x4a\xf1\xe7\xac\x5d\x82\x0d\x06\x51\x98\x75\xcc\x73\x06\xfa\x4c\xd0\x67\x82\x3e\x13\xf4\x99\xa0\xcf\x04\x7d\xa6\x2a\x04\xfa\x4c\xbd\x7e\xd0\x67\x82\x3e\x13\xf4\x99\xa0\xcf\xe4\x0f\xe8\x33\x41\x9f\x09\xfa\x4c\xd0\x67\x82\x3e\xb3\x52\x0b\xe8\x33\xf5\x3a\x40\x9f\xb9\x4e\xfa\xcc\xed\xfe\xf6\xfb\xc7\xd2\x66\x4a\x6c\x8d\x2e\x2a\x4d\x84\x5a\xa2\xc6\xbb\xc6\x8d\xbb\x22\xc7\x67\x8c\x1d\x37\xfb\x52\x12\x98\x52\x64\xba\xd8\x59\xa9\x6a\xd5\x55\x8d\xe2\x4d\xa1\x2c\x9d\xbd\xd2\x42\xf9\x5a\xad\x55\x29\x31\xc5\x5f\x52\x91\xb9\x40\x2b\x9a\x26\xb6\xda\xd8\x72\xfd\x3e\xbb\xd0\x05\x28\x4b\x27\xda\x2e\xae\xb4\x54\x6e\x0f\xc0\xb0\x79\xee\x18\x36\xc8\x46\xb1\x41\x06\x8e\x0d\xb2\x90\x6c\x50\x17\x2c\x1b\xd4\x09\xcd\xa6\xa6\x54\x15\xcf\xc6\x51\x10\x10\x6d\x96\x8a\x68\xf3\x2a\x60\x6c\xba\xa0\xd8\xbc\x06\xab\xd0\x53\x19\x85\xc0\xde\x63\xaf\xd8\x8b\xb7\xf7\xd4\x0b\x0a\x4f\x6d\xfa\x79\x75\x36\x9c\x4e\x56\x9c\x42\x15\xee\xcc\xa8\x57\x2d\xad\x6b\xc3\x4f\x48\xee\xb2\xe8\x34\xd8\x74\x44\x7b\xf7\x51\x12\x92\xfb\xa2\x72\x07\x3b\x58\x4f\x93\x8f\x3b\xd9\x6c\x9d\x75\x60\x91\x7c\xc9\x96\x42\xc5\xea\x47\x83\x9d\x00\xf4\xbe\x2f\x04\xb0\x78\x5e\x3d\xb0\x4b\x11\xfc\xea\x75\xbf\x2f\x22\xf0\x1c\x4c\x81\xea\x01\x53\x60\x17\x53\x20\x00\x15\xbc\x6e\xa0\x82\xed\xfe\xf6\x07\xd0\xbc\x83\xe6\x1d\x34\xef\xcf\x5a\xf3\x0e\xc8\xf1\xa0\x75\x07\xad\x3b\x68\xdd\x41\xeb\x0e\x5a\xf7\xa2\x04\x68\xdd\x41\xeb\x0e\x51\x16\xa0\xa1\x7f\x3a\x0d\x3d\x20\x47\x6b\x55\x81\xbd\x00\xec\x05\x60\x2f\x00\x7b\x01\xd8\x0b\xc0\x5e\x00\xf6\x02\xb0\x17\x3c\x53\x7b\xc1\xc7\xc5\xcc\x05\xaf\x16\xbf\x62\xe5\x00\x2c\x60\xa7\xa8\xb3\x53\x3c\x02\xbc\xc7\xb0\xa7\xaf\x38\xef\xf4\x2a\xd5\x4a\x8b\x69\x95\x5a\x95\x4a\x9d\x74\x4a\x6d\xe8\x1e\x5d\x55\x4a\x0b\x69\x94\x3a\x2b\x94\xda\xf4\x49\xa0\x4e\x5a\x03\x27\xce\x59\x77\x11\x38\x72\xea\xcf\xba\xab\x89\xd6\x53\xff\xb2\x18\xe4\xc2\xcc\xaa\x11\xfe\xea\x6c\x1a\xc7\xc2\x22\xbb\x8b\x8e\xaf\x4f\x48\x7e\x96\x61\x8a\x13\x2d\xc6\xdb\xad\x73\xa8\xd7\x12\xbc\xdd\xda\x9a\x0c\x9d\x1a\x82\xf7\x5b\x5b\x5f\x6c\x22\xac\xd3\x5b\x6c\xbf\xaf\xab\xe5\xc3\xbb\x2f\xfa\x54\xb7\xab\x5b\x8c\xdb\x61\x45\xf5\xd3\xdb\x1c\xf6\x4a\x25\x8f\xf8\xcb\xd6\xee\xc8\x32\x0d\x2a\x1b\xfd\x96\xa9\x70\x42\x96\xdc\x07\xbb\x05\x53\x33\xd4\x55\xd7\x62\x32\x17\x50\x97\x80\xba\x04\xd4\x25\xaf\x42\x5d\xe2\x34\xa7\x23\xc0\x60\x5a\x67\x0c\x26\xad\x45\xab\xb1\x84\xe4\x5e\x86\xfd\xf0\xa1\x4b\xc7\xeb\x7b\x03\x3a\xb4\xd7\xa5\x43\x5b\xb9\x5f\xa0\x54\xd2\xb1\xdf\xc2\x84\xea\x4e\xbd\xad\x3e\x00\x38\x8d\xc9\xc3\x04\xd7\xb4\xcd\x5b\x61\x55\xfa\xd3\x9c\xd0\xc0\x8f\x71\xd6\xd4\x0f\xeb\x56\x55\xdc\x9e\x9c\xd5\xcc\xe5\x07\x50\xd3\xa1\x99\x2f\x7b\x6d\x15\xc2\x25\xcf\x7e\x66\xf3\x05\xa8\x74\xa5\xee\xfc\x66\x9c\x11\x67\xcd\x7d\x32\x4f\x4f\xd7\x7d\xcd\xb9\x8a\x1d\x9d\x0f\x0e\x4f\x2e\xf6\x8b\xaf\xe6\x74\x41\xe8\x50\x87\xe9\x88\x20\x9a\xbf\x2c\x85\x80\x3a\x7f\x00\xed\xf8\xd2\x4a\x97\x67\xd7\x87\xa2\x6e\x93\x3f\xbb\xbd\x0a\x6a\xb9\x60\xfd\x74\x7b\x33\xb2\xb8\x2a\x3f\x6d\xb8\x3d\xdb\x9b\x0e\x19\x52\xb4\x36\xb3\x17\xbc\x50\x45\xa6\x76\xdf\x92\x6b\xef\xb8\xa8\xb4\xa9\xef\x54\x4d\xea\xc8\x30\xab\x6f\x5b\x66\xf5\xaa\x4b\x03\x77\x6a\x90\x88\xde\x5e\x9a\x91\x94\x64\x6c\xbe\xfd\xb8\x72\x96\xa8\xd2\x9e\x57\x9c\x9c\x7b\xd6\xc1\xa9\x17\x12\x0c\x76\xe2\xa7\x7b\xb5\xa7\x53\x59\x38\xf7\xb3\x1b\x9c\xef\x95\x07\xf9\x40\x7d\xa4\x97\xdc\x40\x7f\x8d\x71\xa2\xf0\xc7\xb9\x07\x26\x8d\x92\x1b\x14\xb3\xaf\x85\x22\xfd\xef\xf7\x51\x3e\x46\x13\x92\x61\x14\x90\x0c\xd3\x9f\x36\xd1\xb0\xc7\xff\x75\x86\xb3\x73\x9c\xc6\x51\xe0\x0f\x7b\x88\x8e\xc9\x34\x0e\x51\x48\x26\x51\xe2\xe7\xfa\x7d\x83\xb5\x72\x7c\x2d\x2b\xa6\x13\x76\x33\xe1\x15\xb3\x7a\xf8\x3f\x5a\xea\x11\x1c\xfc\x73\x94\x60\x3f\xd3\x76\x93\x9f\xf9\x13\xaa\x2f\xba\x18\xb7\xf4\x8f\xf5\x52\xfe\x7e\xef\xfb\xb0\x17\xf3\x2f\x87\xbd\xdd\xef\xdf\x6b\x6b\xa9\x30\xfa\x6e\x15\x3a\x26\x62\x77\x7b\xe7\xe3\xa6\x63\x60\xbb\xef\x36\x87\xbd\x49\x94\xb0\x12\x9b\xc3\x5e\x9a\xe1\x3b\x9c\xe4\x17\x51\x72\x13\xe3\x33\x12\x25\xf9\x27\x3f\x8a\xa7\x19\x96\x2a\x67\x87\x42\x4a\x75\x28\x26\x37\x39\xa1\x79\x88\xb3\x6c\xcf\xd6\x4e\xb3\xf7\x77\x7b\x3b\x8b\xca\x16\x0b\xf2\x77\x53\xe4\x97\x3b\x41\x9e\xcf\x6c\x0f\xf1\x5e\xcb\x3d\xe4\x87\x21\x49\x26\x7e\xe2\xdf\xe0\xcc\xe2\x01\x13\x12\x32\x61\x0b\x07\x24\x09\xa2\x18\x3f\x59\x4a\x03\xe9\xa5\xee\x9c\x94\xba\xc0\xa4\x61\xaf\xb8\xbc\xeb\x01\x49\x92\x30\x8a\x77\x2a\x08\x89\x11\x15\xbb\xbc\xb2\x3d\x21\x6c\x5f\xbd\x4a\x84\x51\x43\xa5\x99\xa0\x32\x36\x16\x79\xc3\x8a\x71\x46\x07\xbc\x93\x8e\xb6\x6e\xb0\x6c\x4a\x48\xcb\x35\x6d\x95\x7a\x7c\xae\x04\x63\x12\x62\x4d\xf3\x61\x71\xc8\x14\x6d\xb2\xda\x65\xaf\x28\xce\x17\xed\x4a\x4d\xbb\xc5\x81\xe8\x9a\xd0\xa2\xe6\x40\x40\xe1\xb1\x12\xab\x34\x3d\x37\x51\x89\x66\x36\xe6\x92\x4f\x8d\xe1\xb8\x65\xfb\xd5\x6f\x40\xdd\xda\xdd\x60\xc6\x6e\xea\x62\x47\x33\xb9\xce\xc6\x97\x73\xc6\xac\xc3\xc1\xb2\xa4\xeb\xd0\x22\x77\xa0\x15\x8f\xb0\xb8\xb6\x6c\x20\xb5\x2d\x99\xf0\x9d\x2b\x19\x18\x87\x68\x8c\x33\x2c\x8b\x6c\xf7\xd1\x71\x82\x48\x16\xe2\x0c\xe5\x04\x4d\xfc\x5b\x8c\xf6\x59\x6b\xe8\x8b\x68\x0e\x85\x84\x7f\x9d\xa9\x16\x50\x3e\x8e\x68\x51\x35\xe2\xcc\x12\xe7\x38\xeb\x8b\x0a\x77\xfa\x48\xda\x77\x99\x8c\xb1\x2d\x7f\x7d\xdb\x47\x7f\x45\x71\x8c\x46\x18\xe5\xd3\x44\x04\x7e\x64\xd8\x8f\x51\x1e\x4d\x30\x3b\xe9\x0f\x4f\x2e\x10\x27\x42\x26\x2a\xc6\x5c\x2c\xf4\x18\xc1\x32\x49\x22\xa2\x28\x9f\x66\xec\x2b\x92\xf0\xfa\xe8\xaa\x2e\xfd\xb5\x77\xfb\x8b\x69\xc6\x44\xd2\x6d\x76\xab\x2f\x7e\x34\x2e\xfc\x5b\x06\x17\x9f\xe7\x46\xbb\x9c\x6b\x6c\x71\x61\xad\xc4\xed\xb1\x87\x4a\xf9\x3d\x73\x86\xd9\x29\xac\x78\x2f\x25\xe1\x2e\x7a\xf3\xc6\xb8\x07\x77\xbf\x4c\xcd\x7f\x85\x7a\xae\x1e\xdc\x0e\xed\x40\x4a\xc2\xfd\x24\x8f\x9c\x0a\x82\x34\xc3\xd7\x38\x9b\x4f\x43\xe0\xa1\x7b\x1c\xdd\x8c\x73\x46\x8c\x5b\x96\x9e\x8c\x84\xaa\xb9\x4b\x9c\xd9\xea\x7c\x49\x3c\x95\x09\x2a\x9f\x0e\x6a\x85\xe2\x36\x2f\xe9\xce\xad\x0c\x68\xce\xe4\x80\x4a\x5d\x02\xe3\xde\x05\xe1\xea\x26\x10\xf1\xe4\x24\x25\x31\xb9\x79\xf8\xa3\x9a\x40\x62\x4c\x68\x6e\x9a\xb5\x40\x1d\x63\xb4\xf7\x18\xea\x98\x27\xd3\x62\xf0\x11\x0c\x7b\x07\xf2\xbc\xe2\x0c\x8b\x9e\x26\xf1\x83\x7e\x5f\x2f\xfb\x3b\xec\xc9\x1e\xf7\x9e\x58\x11\x52\x87\xa2\x5d\xc8\x69\x42\xce\xd5\x75\x0e\x2d\x90\xd3\xd6\x2d\x9f\xa4\x42\x01\x61\x9a\x9a\x5a\xbc\x17\x8c\x3a\x2a\xca\x97\x8e\x2a\x97\x0d\x74\x79\x7a\x78\xca\xe4\xc1\x5c\xea\x50\xa4\xaf\x02\xba\x1f\xe3\x04\xdd\xe3\x37\x77\x18\xa5\x22\x48\x3a\x44\xf9\x18\x97\xbd\x42\xd7\x24\x13\x7a\x08\xb3\x42\x29\x14\xd1\x4d\x56\x3c\x41\x14\xe7\x4a\xad\x83\xf6\x44\xe5\x4c\x64\xb9\xc5\x38\x15\x32\x49\x59\xa1\x69\x56\xd8\x40\x37\x53\x3f\xf3\x93\x1c\xe3\x10\x05\x8c\xb5\xf4\xd1\xc1\x34\xcb\x70\x92\xc7\x0f\x9b\xf6\xb7\xd7\x7e\x1c\x53\x14\x25\x39\x61\xcd\x9a\xf5\x0c\x7b\xa3\x69\x46\x39\x28\xf7\xb0\x87\x02\x26\x50\xb0\x81\x52\x5e\x94\xcf\x65\x8c\x73\x14\x12\x4c\x93\x37\x39\x1a\xf9\xc1\x2d\xb9\xbe\x46\xd7\x19\x99\xb0\x59\xcb\xfd\x2c\xe7\xf2\x4c\x6e\xe8\x4c\x9c\x2e\x1d\x4a\x0d\xb5\xfd\xf3\xd6\x97\xc8\x3e\xcd\x6a\x9d\x37\x6a\x5d\x40\xcc\x5a\xe2\xe8\x0e\x27\x98\xd2\xb3\x8c\x8c\xb0\x51\xd1\x38\xcf\xd3\xdf\x70\xee\x36\xc0\x8c\xb1\x1f\xe7\xe3\x60\x8c\x83\xdb\x41\x85\x6e\x78\x39\x92\x09\xbe\xf4\xfe\x9d\xf9\x82\x89\x1d\x8c\xda\x7e\xbf\xbc\x3c\xd3\xdf\xb0\xc3\x3a\xf2\xe3\x43\x1c\xfb\x0f\x17\x4c\xc0\x0c\xe9\x2e\xfa\x60\xb0\x35\x26\x20\x92\x69\x5e\xbc\x7d\xaf\xbf\xa4\xd3\x20\xc0\x94\x5e\x8e\x33\x4c\xc7\x24\x0e\x77\xd1\xb6\xfe\xfa\x5a\x28\x5a\xb4\xd7\xef\x75\x32\xf6\xc3\x68\x8e\x59\x28\xbe\x73\x8d\xfd\xe3\xd6\xc7\xed\x6e\x43\xdf\x40\xf7\x18\xa5\x44\x18\xef\x53\x12\x22\x4e\x1e\xd3\x94\x6f\x06\x46\x4d\x7f\x14\xc7\x32\x9a\xf8\x5c\x67\x27\x2f\x07\xc8\x4f\x42\xb3\x26\x92\xc4\x0f\x6c\x7b\x4c\x53\xfe\x65\xd9\x45\xde\x2a\xff\x0e\x67\x88\x24\x01\x13\xde\xfd\xfc\x0d\x45\x85\xe0\xda\x6f\x5d\x8e\xb7\x1d\x57\xc3\x11\xc2\x15\x92\x89\x1f\x25\x7b\xa5\xeb\xe3\x21\xff\xe1\xc7\x8f\xbe\x55\x2e\xa1\x1e\x9b\xbf\x3d\x46\x3a\x6f\xcd\x77\xe2\x04\xf4\xc2\x28\xdb\x1b\xd4\x1e\x93\x85\x32\x4c\xfd\x50\xe3\x60\x73\x7e\xfa\xe5\xe8\xf2\xf7\xa3\xaf\x17\x57\x67\xa7\xe7\x97\xfa\xc0\x34\x4f\x83\xad\xf7\xef\x75\x36\x92\x16\x61\xef\xaa\xb2\xe2\xac\x38\x2b\xe8\xfd\x6d\xf5\x78\x66\xfd\x8c\x49\xe0\xc7\xa6\xe4\x47\x72\x12\x90\x78\x17\x7d\x3d\x3c\x9b\xaf\xce\x3c\x48\x9b\xea\xbd\x3c\x68\xab\xf7\x7d\xb5\xde\x09\xce\xb3\x28\xa0\x1d\x6a\x6c\xf1\xb4\xa8\x5d\x21\xd3\x5b\xa2\xa6\x98\x57\x0e\xd3\x0c\xfd\x2b\x99\xd2\xe1\xc9\xc5\x17\x9f\xfe\xab\xc2\x94\x96\x70\xa4\x55\x5a\x45\xcf\xed\x48\xab\x6e\x41\x63\x53\x78\x48\xd7\x28\x1b\xbf\x8b\x75\x38\x64\x9b\x8c\x7b\x3e\x7d\xa4\x6c\x3a\xd4\x94\x78\x89\x9f\x24\x0f\xc6\x07\x92\x9d\x1d\x8a\x02\x96\x76\x9a\x6d\x47\xe3\xaf\x5b\x6b\x4f\xfb\xc1\x18\x7b\x34\xfa\x37\x66\x3b\x7e\xcb\x7c\x19\x93\x1b\xef\xda\x0f\xa2\x38\xca\x1f\xf6\xcc\x6a\x3c\x71\x92\xed\x0d\xaa\x27\xca\x60\x7b\xe7\xe7\xfe\x56\x7f\xab\xbf\xbd\x21\xf7\xce\x30\x57\xe2\xe9\x39\xbe\xc3\x19\xc5\x07\xc7\x87\xe7\x94\x0b\x63\xe2\x95\xb8\x16\x56\xdf\xd6\x34\x58\xdf\x86\x92\xf1\xe4\x5f\xa6\x00\x6b\xd6\x13\x25\x9e\x1f\x86\x59\xdf\xcf\x52\xbf\x5a\x9d\xf3\x8b\xf4\x43\x4d\x69\xb3\x71\x9d\x60\x1b\x8f\xab\x9a\x73\x65\x9e\x53\xaa\xe1\x88\xea\x70\x94\x6c\x20\x8a\xf1\x2e\xdf\x9f\x74\x77\x30\xb8\x89\xf2\xf1\x74\xd4\x0f\xc8\x64\x50\xde\x48\xf4\x7f\x46\x94\x4e\x31\x1d\xec\xfc\xb2\xf5\xfe\x3d\xe7\x92\x21\xce\xfd\x28\xa6\x6d\x92\xe9\x7c\xee\xae\x3b\x86\xc4\xb4\x9c\x63\xaf\x75\x6b\xa9\xfa\x68\x14\xe2\xc0\x6f\x32\x89\x5e\x88\x12\xcb\x3a\x07\x1d\x0c\xe0\xd9\x9f\x7d\x95\xc3\xaf\xf6\xf4\xf3\x52\x36\x5b\x7b\x52\xa6\xdd\x2c\x76\xda\x2e\xdf\x69\x9b\xda\x05\x59\x9a\x08\xfb\xf4\x2e\xe8\x57\x0f\xa1\xcd\xf7\x9b\xfb\xae\x8a\xe5\x5a\x6b\x15\xcf\x5f\x6b\x27\x71\xe4\xdd\x22\x2c\x7e\xa6\x5d\xe4\xde\x2e\xa8\xbc\x91\x14\xdb\x2b\x4c\xa8\x72\x78\x57\x0a\x62\xb4\x81\x0e\x09\xbb\x29\x4d\x29\x2e\x2c\xd3\x87\x27\x17\x85\x78\xd8\xe4\xe9\xd1\xc5\x2a\xf1\x5c\x75\xf8\xd5\xca\x45\xd7\x87\x3d\xb9\xfd\x59\xa5\x75\xee\x53\xce\xce\xca\xce\x1d\x9f\x09\xef\x64\x49\x61\x27\x17\x17\x9c\xcd\x88\x13\x24\xd5\x00\x9e\x2c\xbe\x90\x1a\xe7\x7d\x85\x3f\x78\xae\xc3\xbf\xee\x1b\x4e\x6c\x0d\x6b\xa7\x45\xe5\xcd\xb9\x7a\xf2\x13\xc5\xff\xbf\xa6\x34\xcf\xb0\x3f\xe1\x50\x6f\x7c\xbc\x8a\xd1\x4f\xab\x6f\x8a\x40\xae\x7f\x7c\xff\x2e\x15\xc7\x51\xa1\x38\x76\xd4\xf4\xe3\x07\x57\x49\xff\x2d\xfa\xf1\x63\x53\x01\x47\x7c\xff\x9e\x66\x51\x92\x5f\xa3\x61\xef\x7f\xfd\x6b\xd8\x43\x7d\xf6\x13\x7f\xf3\x4f\xb7\x1b\xd0\x45\x3e\x1d\x89\xed\xae\x7a\x46\xcb\x5f\xca\xd0\xb2\xef\xe8\x37\x9c\xff\x21\x4e\x29\xfd\x93\xca\xf7\x65\x1b\x55\xc7\xc0\x8f\xcd\x7e\x81\x66\x18\xd7\x1a\x38\x07\x82\x67\x9f\x5d\xe8\x25\xaa\x92\xc5\xef\x9d\x3d\xfb\x44\xf1\x27\x73\x71\x13\xbf\x83\x5b\x9b\x2a\x0d\x6e\x6d\xaf\xcb\xad\x0d\x7c\xd6\xc0\x67\x6d\x8d\x7c\xd6\xc0\x55\x0d\x5c\xd5\x5e\x81\xab\x5a\x03\xdc\x02\x78\xad\x81\xd7\x1a\x78\xad\x39\xbc\xd6\xc0\x5f\x0c\xfc\xc5\xc0\x5f\x0c\xad\xd3\x25\xff\x39\xbb\x74\xc9\xa9\x04\x37\x2e\x70\xe3\x02\x37\xae\xe2\x01\x37\x2e\x70\xe3\x02\x37\x2e\x70\xe3\xb2\x98\x12\xb8\x71\x81\x1b\x17\xb8\x71\x81\x1b\x17\xb8\x71\xa9\x5a\xc0\x8d\x0b\xdc\xb8\xca\x45\x01\x37\x2e\x70\xe3\x02\x37\x2e\x70\xe3\xea\xee\xc6\x25\x77\xbf\xe8\xb3\x77\xb7\xd5\x7f\xdf\xdf\x9a\x29\x19\x43\x77\x63\xa2\xc3\x62\x67\x2c\xa3\x7b\x63\xc9\x0e\x4a\xb1\x47\xbc\xac\x6f\xc7\xbf\xb9\xc9\x38\x96\xbc\x97\x13\xcf\x0f\x79\x52\x49\x73\xb7\x75\xfc\x16\x87\x51\x3e\xe7\xa7\x77\x11\xbe\x37\x3f\x35\xcc\x92\x45\xd9\xd0\x53\x63\x63\xd7\x72\xdd\xb8\x6e\x27\x2e\xf0\xd4\x2c\x68\x19\x27\xcc\xc3\xb8\xcc\xb9\xa0\x25\x4a\x28\x33\x17\x68\x89\x17\x54\xae\x84\x22\x4f\xc2\x13\xad\xa2\x31\x27\xf6\xeb\xfa\x89\x50\xd9\x1b\x3a\x0c\x5f\x4f\xe6\x40\xcb\xc3\xa8\xcc\x5d\xaa\xd2\xe2\x72\xcb\xfa\x6a\xe7\xcb\xb0\xbf\x2f\x30\x5f\xe6\xef\x1e\x6b\xb5\xa0\x9e\x6e\x76\xf3\x99\x12\x9a\x98\x76\xf5\xc2\x5a\xec\xf9\x69\xa4\xf5\x00\x27\xb9\x74\xc6\x28\xfa\x32\x43\xae\x13\xf7\x50\x3b\xe5\xc2\x9e\x91\x52\x97\xbf\x00\xbb\x6a\x4f\xb3\x75\x90\x69\x2c\x48\xb6\xec\x0c\x32\x35\x8d\xbc\xd8\x39\xae\x3b\x14\x56\x31\xa9\x76\x23\x2b\x99\xd4\x65\x78\x93\x2c\x42\xa6\x33\x2d\x78\x9b\xac\xbc\xaa\x8e\x94\x09\xcd\x2b\xd2\x26\xd7\x04\xe8\xb2\xe3\xbb\x77\x6e\xe1\x91\x5f\x24\xb9\x97\xa7\xb8\xf2\x14\x1f\xd6\x49\xc2\x76\xf7\x16\x04\x73\xea\x3e\xda\xae\xf3\x68\x38\x1d\x48\xcf\x49\xe9\xe2\x59\x7a\xb5\x7c\xff\x6e\xbc\x9a\xd3\xff\xc2\x6e\xba\xce\xa5\xc4\xf2\x3b\xe9\xec\x5f\xa2\xfa\xd4\xe6\xdb\x51\x37\x95\xa8\xd1\xef\xc3\x55\x1e\xbc\xf2\xcd\x67\x0d\x0c\xf6\xeb\xe9\x3d\xe3\x52\x27\x54\xb7\xc3\x6b\x02\xd8\xad\x3a\x24\xe0\x49\x9a\x3f\x1c\x46\xd9\x2e\xfa\xae\xcd\xb8\xd8\xac\xf9\x24\xf5\xc2\xa8\x20\x81\x06\x60\x2f\x51\xa0\x06\xb3\xeb\x8b\x98\x72\xa1\x7a\xa8\x22\x77\xfd\x0f\x92\xfa\x30\x34\xec\x89\x73\xd4\x53\xaa\x15\xe5\xb1\x65\x64\x33\x68\xf0\x6e\x70\x9f\x2e\x9a\x3a\xd5\xea\x0c\x57\xa7\xa2\x39\x72\xee\xd4\xab\x5d\xab\x4a\x4b\x43\x69\xde\xa8\x95\x65\xb5\xfe\x7b\xe8\xd0\xc9\x6a\x9c\x52\x3d\xba\x4e\xf6\x42\x7f\x95\xe2\x2c\x22\x61\xa1\x70\xdd\xd6\xd4\xb1\x0e\x9d\x69\x80\xb3\x5c\x18\x5b\xf3\x49\x3a\xb4\x2c\x12\xc1\x34\xc3\xc2\x50\x5b\x70\x66\x37\x1d\xec\xb2\x45\x49\x70\xc0\xdd\x1d\x72\x52\x78\x46\x88\x48\x88\x28\x11\x55\xa1\x5c\x57\xde\xab\x2c\xcd\x31\xce\x3d\x55\xc2\xab\x2d\x51\x78\xb6\x71\x7b\x0a\xa6\xd4\xcb\x1f\x52\x4c\xf7\x78\x8e\x9f\xc4\x8f\x8f\xcf\xcc\xef\x04\x25\x78\xec\x3e\x19\xf3\xd3\x7c\x6f\xfb\xbd\x55\xb5\x53\x3b\xac\x9f\x4b\xf2\x58\x3a\x4d\xc5\x3e\x37\x6d\x3c\xc8\xf3\xd4\xb1\xb4\x57\x9c\x49\x7a\x35\x33\x1b\x6a\x8c\x39\x46\x55\x19\x49\x56\x53\xa7\xc4\xad\xf5\x6e\x58\x84\x22\x79\x0a\x8b\x85\x49\xd2\x69\x27\xd8\xd9\xea\x48\xb5\x73\x58\x79\x6a\xfd\x62\x76\xb6\x0c\xbd\x75\x53\x52\x26\x36\xf4\xd3\x24\x7e\x38\x27\x24\xff\x14\xc5\x58\xde\x2c\x90\x1d\xab\x92\x4d\x93\x7d\x7a\x42\x12\x56\xae\xe6\xed\x57\x8a\x33\xde\x2b\x6d\x54\xb5\x16\x26\xdd\x80\x64\xec\xc9\xca\xa9\xec\x90\x6a\xa3\x0c\xdf\x44\x5c\x8e\x73\xde\xe8\xf6\xcf\x8e\x97\x21\xfd\x4b\xa7\xf2\xbe\xad\xbe\x2a\x04\xb3\x1b\x71\x89\xab\xaa\xb7\xf8\x0b\xc5\x02\xbe\x44\x49\x34\x99\x4e\x0a\x87\x53\x75\x0a\x5c\xdc\x46\xe9\xe5\xe7\x8b\x3f\x71\x16\x5d\x3f\x94\x53\xaa\xf4\xec\xa2\x93\xf5\x07\x7e\xbd\x6c\x7e\x57\x5e\x86\xa4\x57\x7c\xf1\x9b\xea\x93\xec\x0c\x9f\xda\x7a\x5d\xea\x0e\xe8\x52\x41\x97\x0a\xba\x54\xd0\xa5\x82\x2e\x15\x74\xa9\xa0\x4b\x05\x5d\x2a\xe8\x52\x41\x97\x0a\xba\x54\xd0\xa5\x82\x2e\x15\x74\xa9\xa0\x4b\xd5\x4b\x82\x2e\xb5\xaa\x4b\x5d\x7f\x65\xea\xe6\xd1\xb7\xe2\x9f\xbf\x57\x22\x62\x9f\xad\x82\x15\x34\xac\xaf\x48\xc3\x8a\x90\x1f\xc7\xe4\xfe\x4c\x25\xd7\x3f\xa2\x81\x1f\x73\xd6\xb1\x8b\xae\xfd\x98\x76\x49\x38\x0f\xca\xd8\x75\x57\xc6\x7e\xe8\x6f\xcf\xad\x8c\x5d\xb7\x7b\x25\x28\x87\x41\x39\xfc\x44\xca\x61\xa1\x07\xd6\x82\x46\x2a\x83\x5f\x48\xd1\x0c\x7a\x63\xd0\x1b\x83\xde\xf8\xe9\xe7\xf8\x95\xeb\x8d\x41\x4f\xdb\x41\x4f\xdb\x65\x56\x10\x5a\x60\x5e\x40\x53\x2b\xde\x81\xa6\x16\x34\xb5\xa0\xa9\x05\x4d\x2d\x68\x6a\x41\x53\xfb\x74\x9a\x5a\x50\xc8\x9a\xe4\xf8\x8a\x15\xb2\x2d\xfa\xd2\xb2\xe0\xf0\xf1\xb4\xb8\xa0\x9a\x7d\xa6\xaa\xd9\xed\xfe\x0e\x40\x0e\x80\x26\xf4\xd9\x69\x42\xc1\x4d\x16\xd4\x9d\xa0\xee\x7c\x19\x73\xfc\xca\xd5\x9d\xe0\x26\xfb\x0c\xd5\xaf\xe0\x26\x0b\xca\x57\xad\x56\x50\xbe\x5a\x7d\x02\xe5\x2b\x28\x5f\x41\xf9\x3a\x04\xe5\xeb\x1a\x28\x5f\xcd\xef\xc0\xdf\xb5\x03\xc1\x2d\x47\xbd\xda\x40\x71\x10\xd3\x0f\xba\xca\xd9\x75\x95\x1f\x57\xa2\xaa\x34\x72\xef\xb5\xde\x6d\x41\x2f\xd0\x3c\x81\xb3\xcd\x1c\xa8\xb4\x16\x51\xbe\xae\x81\x52\xb5\xa3\x12\xd5\xd1\x07\x3d\xe5\xab\xab\x37\x5a\xc6\xd7\x19\x1a\x5a\x89\x3e\xeb\x35\xea\xa9\x6a\x59\x9a\xb1\xdb\x6b\xf9\x5a\x47\x7e\xb5\x38\x6b\xa9\xe5\x78\x2e\x9e\xd3\xc2\xe8\x1a\x99\x64\x03\xbf\x9a\x3b\x41\xed\x02\x27\x07\x68\xaa\x40\x53\x05\x9a\xaa\xe5\x69\xaa\x1a\x94\x18\xdf\xbf\x73\x4d\x50\x8b\xba\xa2\xbc\xf5\xcd\xa7\xee\x90\x19\x83\x4b\x95\x15\x68\xce\x9e\x83\xe6\xec\x71\xb5\x4e\xfb\xf1\xbd\xff\xa0\x6d\x84\x80\x4c\x26\x7e\x12\x1a\xf7\xd8\x41\x5d\xbb\xda\xbd\x49\xb2\x11\x34\xec\xdd\x6d\xf5\xdf\x1a\x6a\xb4\x27\x52\xc0\xd4\xe5\xe8\xe2\x32\xe1\x9e\xb6\xaf\xe9\x74\x32\xf1\xb3\x87\x2b\x3f\x8d\x76\x55\x9a\x2a\x77\xda\x9e\xff\x57\x76\xf1\x77\x56\x4a\x64\x43\x9b\x6e\x6d\xed\x7c\x90\x3f\x9f\x89\xe4\x86\x3b\xef\xb7\xc4\xcf\x53\x8a\x4d\x96\xad\x7d\xa2\xa6\xc1\xca\xa9\xe6\xca\xf5\xb5\x7c\x5d\xd2\x9c\x29\x75\xe6\xe7\xf9\xce\x24\x37\x5f\xcc\xea\xba\xe4\xba\xa9\xf6\x40\x37\xf6\xcd\x66\xdb\xe3\xe5\xa4\x62\x20\xb9\x89\x92\x6f\x51\x72\xc3\xa9\xed\x6e\xab\xff\xee\xa3\x8a\x2f\xdd\x40\xbf\xfa\x94\x27\x69\x6f\x49\x61\xa6\xbe\xe6\x55\x0d\x46\x31\x19\x0d\xd8\x4e\xce\x48\x1c\x8b\x90\x55\x56\xe7\x40\xdc\x41\xf8\xed\x27\x0a\x06\x69\x46\xee\xa2\x10\x67\x83\x20\x26\xd3\x50\xbe\xec\x3f\xf8\x93\xb8\x6e\x79\x4e\xd4\x84\x3b\x17\xc8\xe8\x43\x65\x15\xfc\x34\xed\xbb\x56\xa2\xf2\x95\xab\x68\x94\xd0\xdc\x4f\x82\x6a\x71\x49\x4d\xcd\x2a\x14\x4e\x75\x1b\xe8\x82\xef\x3d\xab\x8a\x81\x92\x92\xa8\x3e\x61\x92\x2f\xf8\x62\xe3\x34\xce\x49\x77\xb3\xf7\x6a\x66\xc0\x5d\xbc\xb8\x2d\x88\x95\xaf\x2b\x16\x90\x49\x4a\x12\x9c\xe4\x5c\xb1\x2d\x47\x5f\xae\x28\x6f\xc2\x53\x0d\x9a\x93\x62\x6d\x40\xab\x57\xfe\x34\x27\x5c\x01\x69\x4e\xcf\x25\xb9\xc5\x89\xba\xa0\x54\xee\x6b\x33\x2d\x51\xe1\xfc\xd4\xb8\x3a\x75\x79\x9e\x5e\xc4\xc2\x88\x29\x98\x0a\xc9\xa1\x79\x3d\x94\x10\xa3\x1f\xdd\x5a\x06\xab\xe6\x13\xbe\x4e\xba\xb2\xb3\x4c\x59\x19\xa7\x9a\x76\x63\xd7\xf5\x16\x3a\x05\x2e\x0b\x57\x97\x79\x89\xae\x7e\x4f\x4c\x02\xce\xc6\x94\xc6\x8b\x31\x17\x53\xdf\x24\x18\xee\x9b\x37\xe2\xdf\x55\xc7\x6d\xdb\x35\x50\x8a\x86\x49\x98\x92\x28\xd1\xa5\xc5\x42\x31\x26\xfe\x54\x1a\x33\xf1\x17\xc5\x41\x86\x55\xe9\x52\x5f\x25\x5e\x2a\x55\x95\xf8\x4b\xaa\xab\xe6\xe9\xa9\xd6\x05\xbb\x8d\x42\x2f\x36\x6b\x9d\xf2\xa4\x6a\xae\x76\x8e\x71\x68\x3a\xbe\xb2\xff\x38\x67\xf7\xb2\x28\xb9\x91\xc4\xc7\x0d\x87\xb7\x1f\x29\xda\xee\x6f\xbf\xfb\xdf\xf5\x9d\x94\xab\xbd\xfc\x5e\x36\xcd\x0c\xbe\xc3\x49\xdd\x92\x06\x19\xf6\xcb\x4b\x86\x87\xd2\xa7\x98\x0c\x2e\x9c\x4c\x6b\x7a\x38\xe5\x9a\x8f\xfa\x2e\x2d\xda\x3c\xcf\xdb\x3f\xff\x82\xcc\x7e\xa8\x8d\x84\x7e\x76\xf1\xb3\xad\x83\xe3\xe2\x5a\x1e\x71\x4b\x55\x36\x5b\x95\x6b\x4a\x66\xae\x5a\xa9\x51\x33\x77\x15\x76\x9a\xd8\xeb\xec\xe2\xcb\x02\x2c\x6d\xcd\x79\xd9\x1c\xe2\x4c\xa5\xa9\xfa\x99\x5e\x84\x29\x9a\xa6\x9e\x25\xf2\x1b\x17\xb7\x6d\xe0\xa5\x0e\x66\xfc\x38\xa7\xff\xeb\xe6\x8b\xc0\xb0\x96\x41\x43\x36\xad\xab\x32\x5c\x37\x20\xcb\x6d\xa8\xec\xcb\x14\xe5\x04\x0d\x7b\xc3\xe9\xd6\xd6\xdb\x80\x6b\x55\x22\x92\x78\x51\xc8\x7f\xc0\x9e\xf8\x5d\xed\x70\x3e\x18\xf1\x46\xe9\x6e\x37\xd0\xef\x38\xe3\xea\x1a\xab\x68\x79\x90\xc6\xc2\xc0\xad\x57\x28\x8e\x0a\xab\xa2\xcb\x71\x44\xd1\xd8\xe7\x3d\x1a\x61\xe4\x87\x7e\x9a\xe3\x90\xdd\x53\x1e\xc8\x54\xea\xc6\x11\x8e\xf2\x31\xce\x50\xea\x67\xfe\x04\xe7\x4a\xd9\xb8\x81\xee\xc7\x38\x41\xb1\x3f\x4d\x82\x31\xf7\xfc\x1a\x63\x8b\x5d\x94\x1d\xea\x57\x16\xa9\xda\x5b\xfd\x4c\x6d\x5c\xb5\x36\xfa\x99\x65\xa1\xea\xc5\xbd\x47\x11\x23\xe7\x63\x91\x8b\x09\x48\xcf\x43\x32\x5a\x31\xc3\x5c\x8e\xab\xc9\xd3\xc9\x56\x8b\xa9\x89\x64\x5b\xde\x3d\x1e\x8d\x09\xb9\xed\xa2\xca\x7b\xc1\xa4\xa2\x1f\x45\x7e\x38\x89\xb8\x51\xb4\x99\x7e\x0a\xad\x78\xfe\x90\xe2\x42\xf0\x16\x56\x10\xdd\x1b\xd4\x88\x76\x51\xd3\xad\x4e\x81\xd4\x4e\x36\xa5\xab\xc2\xb5\xb2\x96\xe6\xfd\x31\x67\xbb\x66\x1a\x67\xa7\xb8\xd2\xd1\xc7\x41\x6c\xb6\x9b\x83\x8f\x27\x24\xb9\xc0\x2f\x5a\x6f\x5c\x2d\xd1\x42\x69\x1d\x9c\x29\xb8\x3d\xa6\x46\xc7\x69\xf9\x47\xa8\x2c\xfc\xfa\x8f\x33\x39\x54\xe8\x36\xb1\x0c\xdf\x45\x6c\x82\x7e\x8f\x68\x4e\xb2\x87\xcf\xd1\x24\xca\x95\x2b\xf0\x24\x4a\xce\xb1\x1f\x96\xd0\x0b\xfc\xd7\x36\x2f\x8c\x8a\xa7\x85\x6b\x68\xda\xbb\xae\xa4\x30\x07\x39\xcc\x40\x12\x33\x92\x05\xb8\x88\xd8\xcf\x1a\xb8\x88\x88\xdf\x35\x65\xfd\x89\xb8\x8d\x7c\x21\x21\x46\xc3\xde\x98\xd0\x5c\xfe\x22\xbc\x90\x45\x79\xed\x67\xd3\x4b\x5d\x6e\x94\xb2\xa4\xda\x8f\x87\x27\x17\xc2\xde\x5f\xbe\x0a\x13\xaa\x5c\x00\xbe\x7f\x77\x15\xa8\xab\xac\xc1\x49\x5a\x94\x73\x79\x74\xb4\x4b\x1f\x2e\xd3\xf7\x93\x39\x65\xc8\xe6\x71\x36\x89\x12\xde\xfe\x6f\x99\x1f\xe0\x33\x33\xfa\xe0\x6d\x19\x03\xe0\x70\xd9\x28\xd9\x71\xd3\x51\xac\x1e\xcd\x81\xe3\x58\x14\xac\xba\x6e\x74\x0e\x19\x42\x28\x8e\xae\x71\xf0\x10\xc4\xd8\xa2\xee\x34\xc3\x17\x39\x49\x2b\x34\x8f\xbf\x69\x47\x43\xf9\x54\x7d\x41\xca\xc7\x43\x83\x7b\x3f\xca\x3d\x3a\x9e\xe6\x21\xb9\x37\x76\x98\x15\xfd\x23\x8b\x77\x99\x07\x8d\x64\xc5\xf5\xf5\x57\x3f\xb8\x35\xa8\x50\x55\xe7\x79\xd2\x2f\xc3\x1b\x89\x22\x8a\xaa\xf6\xfe\xf6\xf7\xb3\xd3\xc3\xab\x93\xfd\x2f\x47\x17\x67\xfb\x07\x47\x3f\x0d\x54\x41\x26\x17\xa9\xd2\xd5\x46\x6b\x5a\xd1\xae\xcc\x7b\xf5\x77\xdf\xca\x67\xc6\x8d\x7a\xcf\x3a\xe1\x55\xa1\xe2\x7e\x58\xed\x73\x8d\x79\xd1\xfc\xfe\xce\x8f\xa3\xd0\xcf\xa3\xe4\x46\x49\x7b\x7b\xbb\x1f\xad\xe8\x9f\xba\x92\x3c\x1e\x2b\xba\x8e\x02\x3f\xc7\x7b\x83\x29\xcd\x06\x31\x09\xfc\x78\xa0\xfd\x4c\xf9\x1f\x9d\x2a\xbb\xc5\x0f\xb5\x95\xdc\xe2\x07\xbd\x0e\xc3\xd8\xa9\xdc\xca\x8e\xbe\xe5\x99\xbf\x9f\xdd\x50\xe4\x5a\x03\x65\xfd\xe4\x1e\x6c\x09\x66\x1f\x0d\x7b\xdc\x8c\x59\xb8\xb9\x58\x5e\x65\xa8\xc6\x95\xa6\x39\x4e\x48\xd2\x5e\x82\xed\x83\x38\x21\x09\xb6\x5c\x9a\xd8\x13\xf8\xa9\x3f\x8a\xe2\x28\x8f\x1c\x7c\x24\xcc\x1c\x1b\x8d\x8d\x67\xff\xf3\x67\xfb\x67\x3f\x74\x6d\x32\x0f\x9d\x1c\x5d\x5e\xfd\x7a\x7c\x72\x78\x75\x71\x74\xfe\xe7\xf1\xc1\x51\xfb\xf0\xac\x30\xa5\x6d\xf3\x5d\x3d\xd2\x93\x1d\xec\x84\x93\xbb\xca\x0e\x16\xc7\x99\x22\x54\xbb\xbf\x9c\x9d\x7e\xca\xc8\xc4\x31\x92\xeb\x08\xc7\xa1\xba\x02\x3b\x5f\x8a\x28\x29\x25\x9a\xf5\x4d\x38\x33\x57\xf3\x7c\x9f\xac\xbc\x0f\xd2\xd5\xc6\xd5\x91\xcf\x87\x57\x67\xe7\x47\x9f\x4f\xf7\x0f\x9d\xbd\xd8\x45\xda\x7e\x88\xa3\x11\xfb\x6f\x12\x4d\xd8\x0a\x04\x7d\x4a\x4a\x59\x99\x93\xfe\x51\x72\x27\xfd\x99\x0b\x91\xb8\xf8\xbd\x94\x86\xb7\x77\xaa\xe2\xb0\x7a\xea\xe3\x44\x5d\x81\x7b\xef\xcd\x02\xee\xd0\xbd\x22\x78\x6f\x8c\xfd\x38\x1f\xff\xbb\xf2\x96\xdf\x1d\xb7\xb7\x76\xde\xbf\xb3\x5f\xe9\x11\x7c\xe6\x3b\x27\x42\xda\xf6\x96\xc5\xa7\xea\xe3\xfc\x78\xed\xd3\x20\xc0\x94\x6a\xe3\xb1\xe8\x3c\x8f\x26\x98\x4c\xf3\xb2\x02\x53\x9c\xad\x8d\x70\x6c\x8d\x71\x7c\x65\x53\x65\xc7\x9a\x22\x8d\xfe\x2d\xfd\x82\x7a\xac\x60\xd4\x2a\x3b\xaa\x8d\x3c\x45\x96\x0a\xc3\xfe\x6c\x56\x31\xb9\xae\x47\x5b\xae\x8a\xb9\xab\x68\x74\x8d\x48\x86\xfe\xee\x6e\x81\x7d\x3d\xec\xfd\xe4\x7a\x2d\xd8\xc3\x4f\xad\x4d\x7f\xff\x7e\x1f\xe5\x63\xf4\x77\xb6\x9d\xbf\xe9\x4c\x6f\xd8\xe3\xb2\x49\x2a\x9a\x60\xdc\xac\xcf\x59\x5a\x4c\xf1\x8f\x1f\x1f\xb7\x1c\xcc\xad\x75\x42\x44\x77\xab\x1f\xa9\x77\x5c\xec\x67\x34\xc7\xfe\x70\xd7\xed\xe2\x2e\xf5\x6f\x1c\x58\x2b\x4b\x5f\x3b\x07\x31\xad\xcb\xe2\xd1\x9a\xd5\x7b\xf7\xee\xed\x4a\x97\xef\x62\x39\xeb\x57\x13\xc3\x8c\xaa\x1b\xde\xab\x0a\x85\xc8\x88\x74\xae\x11\x03\xed\x4f\x54\x50\xb6\xee\x8b\x58\xf0\xc3\x3f\xb5\xee\x20\x17\x63\x34\x0a\x68\x0c\xb2\xce\x13\xae\x2e\x70\xa1\x26\xf0\xc1\x21\xa2\xce\x1d\xf9\xd0\xe8\xa1\xd7\x3f\x61\x82\xbe\xbc\xf3\x1d\x14\xf7\x8a\x39\x82\x41\x66\xa9\xa8\x1d\xae\xa3\x7d\xd9\x85\x3d\xdd\xa2\x15\xf1\xe3\x89\x43\xed\xad\xe9\xba\x1d\x2b\xdd\xb4\xc8\xda\xfa\x7e\xb4\x3b\xdf\x51\x37\x5c\x34\xae\x2e\x2c\x74\x50\xbd\xc4\x48\x5d\xf1\x06\x1a\xe1\x6b\x92\x61\x61\x90\x14\xb6\xc6\x88\x0a\xa1\x6e\x13\x05\x63\x1c\xdc\x72\xeb\xa3\xd2\x8a\x69\xce\xed\x2a\xa2\x8f\x55\xe2\x08\x24\x88\xc8\x20\x24\x01\x1d\xf0\xf0\x06\x9c\x04\x78\xe0\x73\xe6\xcc\x03\x86\x13\xfe\xff\x7f\x0f\xa4\x89\x7c\x14\xe3\x72\xca\xb4\x0b\x27\x1d\x6c\xa4\x19\xe6\x6d\xd3\x28\xc7\xd4\xd2\x6d\xab\x2f\x9a\xb1\x03\xfe\x2c\xc6\xfe\x97\x18\xfa\x81\x79\xcf\x7c\xae\x8a\xf0\xca\x32\x0f\x6b\x6c\x30\x1a\x31\x2a\x82\x90\x66\x34\x19\x65\x2a\x26\x08\xf7\x79\xf1\xbe\xfc\xd8\x6c\x58\xf4\x87\xab\x2e\x95\x3a\xe6\xe8\x5f\xd3\xe8\xce\x8f\x0b\x65\x4c\xe9\x29\x23\x36\x54\xd5\xc6\x8b\xdc\x3e\x08\xe5\xeb\x72\x75\xed\x8f\xb4\x20\x54\xf1\x08\x35\x96\xa3\xe4\xc1\xf9\xd1\xfe\xe5\x91\xf9\xdb\xd7\xb3\x43\xe3\x37\x37\xf4\x70\xc5\x15\x44\x8a\xc7\x6a\xc0\x9f\xfc\x28\x16\x2f\x68\x14\xe2\x23\xae\x63\xa3\xbb\xe8\x84\xb1\x54\xb1\x5c\x6a\xa2\xcf\xf1\x5d\x84\xef\x2b\x43\xf1\xb8\xed\xcf\x39\xa4\x20\x8e\x70\x92\x0b\xca\x2c\xca\x9b\xd1\xbd\xa8\xd1\x6a\xa9\x97\xe8\x6a\x84\x93\x27\xac\x60\x64\xe5\xb2\xa8\x20\xe5\x81\x36\x1d\xcb\x73\xb1\x76\x9c\x4e\xff\x4d\x46\x1e\xb7\xda\x0f\x96\x15\x07\xd1\xb2\x0d\x9a\x27\xd2\x4f\x12\x92\x1b\xb4\x35\xc6\xf1\xa4\x4f\xc7\x03\xd6\xdd\x5d\x94\x66\xd8\xe3\xbb\x3b\x8e\x37\xd9\xbf\xa7\xe9\x4d\xe6\x87\x78\x33\x25\x34\x2f\x5f\xb0\x3f\xe4\x9b\x6a\x25\x1c\x80\x22\xc7\x5e\x2a\x49\x4b\x1c\xc2\x9e\x60\x3d\x19\xe6\x8d\x6f\xf2\xbf\xf8\x95\x06\x87\x38\x7c\xfe\xa7\xd3\x32\x08\x64\x95\x0e\xfa\xad\x44\x03\x84\xb1\x1a\xc2\x68\xf3\xb1\x6c\x62\xf4\x92\xf7\x38\x7c\x86\x4a\x99\x47\x36\x64\xe8\x97\xbb\xf8\xb0\x29\x6f\xa8\x25\x13\xee\x8a\x9d\xb0\x81\x8c\x9f\x8a\x8c\x57\xe7\x5c\xae\x2f\xe0\x8c\xae\x50\x0d\x84\xb0\x04\x0f\xf3\x46\x9a\x5f\xae\xcf\x39\xf0\xf4\x75\xa4\xf9\x05\xdc\xe3\x1b\xe3\xbd\x8c\x83\x58\xb9\x78\x2e\x8b\x28\x57\xe5\xe5\x09\x24\xba\x8e\x24\xba\x02\x87\xd4\xc7\x3f\x8f\x97\xa3\x07\x2a\xb7\x01\xfb\x97\xd8\x56\x17\x7c\x1b\x3a\xf6\xc2\x88\x17\x2c\xe9\xfe\xff\x90\xd1\x2c\xf4\xee\x95\x8e\xd9\x2b\x20\x7b\x20\x6e\x4e\xdc\xa5\xb7\x6c\x27\xf0\xa5\xf6\xa5\x42\x35\x2e\x82\xcf\xc4\x0d\xd0\xa9\x14\xb3\xbc\x01\x0d\x2d\xb8\x96\xe6\xc9\xf6\xb4\xdb\x45\x71\x94\x4c\x8b\x4e\x3e\x91\x7f\x16\xd2\x52\x51\x35\x7a\x5e\x99\x6b\x88\x9c\x7e\x56\x52\x03\x3a\xaf\xa7\x95\xd3\xd5\xa9\xda\xae\xf0\x63\x19\x13\x9a\xef\xb5\x2b\xa2\x36\xdb\x8b\xf4\x6d\x87\xa1\x3e\xbd\x0b\xaa\x0d\x16\xa7\x4c\xc5\xc1\xa8\x5a\x56\xc8\x1e\xfc\x93\xbd\xc6\x13\x59\x3c\xed\x0e\x22\x4f\xe0\xa1\x91\x61\x9a\xfb\x59\xae\x16\xed\x34\xf9\x24\xf4\x95\x96\xfa\xd0\x70\x4d\x6c\x19\x6b\xbd\xbf\x50\x13\x5a\xb0\xe6\x84\xb3\xb3\x55\xa0\xfa\x2d\x81\x41\xf1\x7f\xfd\x55\x1b\x49\xb1\x28\x83\x2a\x02\xce\x17\xe2\x4f\x20\x7e\x3d\x06\x87\x2a\xd6\x0a\x01\x83\x7a\xa6\x0c\xca\x58\x42\xf4\x68\xfc\xa9\xd2\xac\xe0\x00\xca\xd2\xdb\x95\x05\xcc\xce\x63\x78\xc3\xde\x64\x9a\x73\x25\xe4\x1e\x4f\x2f\xb9\x30\x27\xd2\xab\x96\xf6\x29\x79\x9e\xec\x95\xf6\x29\xf1\x00\xd3\x9a\x89\x69\xd5\xfb\x62\x2f\x08\x1e\x5b\xe7\x91\x6d\x9f\xeb\xf5\x25\x3b\xc4\x30\x95\xa0\xb1\xfc\x24\xea\x1a\xd2\x54\xd7\xe2\x7c\x51\x44\xf5\xbe\xe7\x10\x8e\x63\x3e\x6b\x13\x8e\xd3\x12\xf6\xf1\xa1\xba\x31\x7e\xbf\xbc\x3c\x93\x9b\x63\x0e\xc7\x9d\xae\x95\xb8\xbc\x87\x5e\x3d\x22\x6a\x73\x6c\xc7\x06\xda\x4f\x1e\x04\xb3\x44\x11\x45\x29\x5b\x59\xca\x9d\x6b\x90\x4f\x51\x4c\x92\x1b\xe4\xeb\x24\xb7\x81\xb6\xfb\xe8\x38\xe7\x47\x2e\xa6\xc8\x47\xef\xb6\xde\xa1\x94\x7d\xed\xe7\x68\xa0\x97\xdb\xd1\xcb\xed\x6c\x6d\x21\x92\x20\xbf\x70\xff\x2d\xb0\x45\xca\x4f\xaa\x9c\x5d\x2e\xb6\xc1\xd9\xeb\xbd\xb8\x1b\xb3\xab\x38\xbd\x8e\x53\xe9\xee\x6a\x3b\xbc\xd6\x39\x1c\x3b\xdd\x8d\xdf\x1a\x1f\xdb\xce\xc2\x9a\x1b\x79\x6b\x5a\x1a\xb3\x23\x6e\x7f\x93\x38\x9a\x44\x75\x89\xae\x6b\xf3\x5c\xeb\x69\xae\xdb\xb2\x65\x37\x56\x32\x27\x2a\xea\xec\x2c\xaa\x3b\xa3\x73\xe6\x34\x4c\x0d\x3f\x66\x3d\x8e\x5b\xcd\x71\x35\x88\xbb\xae\x01\x7d\xb3\xd5\x61\xa1\xfe\xd2\x7f\xbb\x74\x2c\xd4\x5f\xfa\x6f\x01\x0b\xf5\x55\x62\xa1\xfe\xd2\x7f\xdb\xe1\xda\xbc\x20\xe4\x06\x80\x9f\x3e\xde\x4a\x74\x46\x17\x90\xa3\x77\xe5\x74\xe3\x81\x69\x1e\x4d\xa2\x34\xc5\xb9\xa7\x29\x98\x8a\x8c\x7d\x5c\x3c\x64\x4c\x9c\xe2\x1c\xe5\x04\xf1\xbb\x23\xfb\x87\xc4\x08\x47\x07\x7f\x1e\x79\x3b\x5b\x3b\xdb\xde\xce\xfb\x9f\xdf\xed\xcc\x74\x40\x45\x94\x4e\x31\x1d\xfc\xfc\xf1\xed\xcf\xc5\xe6\x15\x5e\xdf\xca\xdb\x5f\xa1\xb1\x0e\x7b\xb5\x3d\x1d\xf6\x7e\x92\xac\xbc\xb6\x88\x13\xbd\xb5\x94\xba\x1a\xbf\x13\x77\x65\x07\xe4\x6b\x13\x70\x6c\x19\xd0\xf8\xb7\xdb\xe6\xbe\x03\xce\xec\x23\xed\x36\xc0\x99\x75\xb5\x01\x38\xb3\x4b\x9f\x6d\xc0\x99\x05\x9c\xd9\x75\x3a\xe2\xd6\x08\x67\xd6\x31\x30\x00\x96\x7d\x7a\xa1\x1d\x80\x65\x01\x58\x76\xad\x7a\xf9\x9c\x39\xd4\x32\x68\x1d\x80\x65\x01\x58\x16\x80\x65\xd7\x98\x61\xae\x03\xb0\xec\x4c\xc2\x14\x20\xc9\xae\x44\xef\x06\x48\xb2\xb3\x20\xc9\x56\xd5\x8f\xc7\x49\x8e\x13\xb6\x53\xfc\x38\x7e\x40\x19\x9e\x90\x3b\x1c\x72\x56\x50\x7e\xfe\x86\xa2\xcf\xc4\x0f\x7f\xf5\x63\xd6\x91\x4c\x09\x5c\xf3\x91\xb0\x24\xdd\x57\x0c\x6d\x3b\xff\x26\x78\x1a\x68\x5b\xf1\xa6\x33\xf1\x6c\x22\x3f\x64\xbc\x49\x4e\x36\xba\x8f\xe2\x18\x4d\xfc\x5b\xcc\xa9\x4a\xd6\x2d\x33\x92\xa3\xff\x26\x23\x1e\x59\x8f\x42\xee\xbb\x51\x36\xe6\x73\x79\x51\x7a\x4f\xa2\x11\x0e\xfc\x29\xc5\xbc\xe9\xbe\x1a\x06\x8a\x28\x8a\x26\x93\x69\xee\x8f\x62\xbc\x89\x28\xe1\x0d\xc8\x56\x13\xcc\xc8\x98\x88\x41\x22\x3f\xc8\x08\xa5\x85\x23\x8b\x42\xab\xa0\x5a\x7b\xb3\x38\x0d\xba\x8a\xb7\x38\x0d\xba\x3e\xa9\x59\x6d\x80\x12\x5e\xb9\x8b\x66\xb1\x05\x67\xdc\x86\x96\xef\xd2\x52\x41\x66\xc1\x11\x6a\x7d\x1c\xa1\x56\x87\x4b\xfc\xc4\xc0\xbe\xcd\x41\x23\x00\xd0\xeb\x60\xac\xe5\x33\x03\x0b\xe4\x9c\x88\xf8\x21\x1a\x59\x42\x13\x63\x5a\x7e\x4c\x89\x2a\x6a\xb7\xc0\x1d\x7a\xa7\xa3\x38\xa2\xe3\x7a\x58\xdf\x26\x23\x74\xf9\x00\x9e\xf0\x0c\x93\x05\xa0\xc2\x00\x2a\x0c\xa0\xc2\xab\xee\x03\x80\x0a\xbf\x3c\xa4\x5c\x00\x15\xee\x3c\x55\x4d\xa0\xc2\x80\xfb\x0b\xb8\xbf\x8e\x09\x04\xdc\xdf\x55\xe1\xfe\xa2\x55\xe2\x79\x3f\x3d\xa8\x70\xe7\xcb\x0a\x2b\xaa\xd5\x52\x9a\xc5\x36\xcc\xea\x8b\xe0\x82\x0d\x6b\x9a\x44\x7c\xc1\xd6\xa4\xf2\x46\xc5\x18\xfc\xc2\x63\x0c\x00\xe5\xf8\x69\x50\x8e\x17\x49\x5e\xd4\x60\xc3\x12\x1f\x75\x4f\x14\x04\x30\xcb\x00\xb3\xbc\xc6\x30\xcb\xdd\x8c\x32\x00\xb3\x0c\x30\xcb\x00\xb3\x0c\x30\xcb\xcf\xe6\x74\x02\x98\x65\x20\x0c\x80\x59\x06\x98\xe5\x17\x4b\xc6\x00\xb3\x0c\x30\xcb\xaf\x8d\xe6\x01\x66\x19\x48\x74\xcd\x49\x14\x60\x96\x01\x66\xf9\xa5\x12\xf7\xeb\x80\x59\xee\xee\x22\xd9\x05\xc5\x72\xad\xdd\xde\x00\x2b\x19\xb0\x92\x17\x84\x9d\x74\x9a\x99\x1a\x40\x5a\x5b\xac\x56\x8f\x61\xa0\x52\x63\x05\x90\xe7\x59\xb9\x23\x08\x7f\x00\xf2\xfc\x7a\xd8\x23\x20\x35\x03\x52\x33\xb0\xcc\xe5\xb3\x4c\x80\x98\x06\x88\xe9\xd7\x17\x59\x05\x10\xd3\x8e\x5a\xd4\x5c\x03\xc4\x34\x02\x88\x69\x80\x98\x7e\x3d\x10\xd3\xdb\xfd\xed\xfe\xd6\x72\x11\xa6\x79\x95\x00\x30\xfd\xfa\x00\xa6\xf9\xc2\x77\xb8\xb1\x03\xbe\xf4\x73\x59\x08\x80\x97\x06\x78\x69\x80\x97\xee\xb8\xd9\x00\x5d\xda\xd5\xc6\xda\xa1\x4b\xd7\x78\xa2\xbf\x44\xec\xe8\x79\x86\xba\x5c\xdc\xcd\xd6\x06\x01\x0b\xfa\x91\xcf\x23\x80\x82\x7e\xae\x50\xd0\x8f\x24\x5e\x03\x12\xf4\x1a\x22\x41\xaf\x03\xd3\x7a\xf9\xdc\x64\x19\x94\x09\xb8\xcd\xd8\x85\xdb\x6c\xa9\xd4\x55\x14\x31\x1b\x62\xa9\x20\xed\x08\xed\xec\xd0\x66\x37\x7c\xa9\x7d\x53\x22\x02\x00\x3a\xf4\xeb\x44\x87\x7e\x2c\x1e\x0a\xe0\xd0\xcf\x0e\x1c\x7a\x15\x4a\xb3\xb5\xc4\x86\x96\x23\x3c\x2b\x90\x43\x0a\xf4\x18\x40\x8d\x06\xd4\xe8\x15\xec\x8e\x3a\xd1\xc0\x8d\x67\x79\x48\xd0\xc9\xe9\xa5\x92\x40\xb8\x68\xe1\x4f\xf0\x26\xf2\x51\x82\xef\x11\x13\x08\x39\xac\x25\x07\x75\x1e\x61\x09\xe3\x8c\x43\xe4\x5f\xe7\x38\x33\x51\x9b\x3b\x6e\x3a\x40\xa5\x06\x54\xea\xd7\x8b\x4a\x0d\x50\xd3\xaf\xdc\x21\x0a\xa0\xa6\xcb\x39\x02\xa8\x69\xf5\x00\xd4\xf4\xdc\x50\xd3\x9d\x74\x1d\x65\x87\x3a\xa1\x52\xdb\xe7\x38\x72\xeb\x41\x66\xac\xb5\xd3\x70\x24\xba\x75\xe1\x1c\xc1\x51\xb0\xe5\xad\xbf\x86\xcb\x68\x9f\x01\x28\x36\x80\x62\xcb\x07\x40\xb1\x01\x14\x1b\x40\xb1\xb5\x9a\x01\x14\x7b\x2d\xa6\x0a\x40\xb1\x5f\x14\x28\x76\x03\x28\x32\x02\xc4\xec\x67\x8e\x98\xdd\x69\x71\x01\x4e\x5b\xab\x05\xe0\xb4\x01\x4e\x1b\xe0\xb4\x17\x30\x6e\xea\xbe\x25\x05\x80\xf6\x5f\x18\x85\x24\x79\x93\x23\x3a\x4d\xd9\x91\x5a\xda\x19\x42\x55\x27\x5f\x41\xf4\x80\x73\xd1\x1e\xf2\x75\x1f\x3a\xe4\x27\xa1\xf9\x8b\x34\x99\xa3\x88\x16\x1a\x4f\xd3\x56\x54\x71\x87\xd1\x0c\x47\xba\x8e\xe1\xe5\xd9\x8e\x86\x2d\xe1\x56\xad\x0a\x97\x2a\xa0\x86\xb1\xa8\xd6\x30\x69\xa1\x23\xe2\xaf\xd9\x31\xc1\x8f\xe0\x9e\x6a\x4b\x32\xca\x42\x3d\x5e\x76\x7c\x17\xb9\x15\x23\x00\xe2\xfe\x0a\x40\xdc\xbb\xd2\xf9\x2b\xc3\x70\x1f\x5a\x8a\xfa\xe7\x0a\xdf\xbe\x66\x68\xed\x00\xd4\x0e\x88\x99\x4b\x3c\x81\x00\xa7\x1d\xe8\x02\x60\xda\x01\xa6\xfd\x85\x52\x31\xa0\xb4\x03\x4a\xfb\x2b\x23\x79\x00\x69\x07\x0a\x5d\x6f\x0a\x05\x8c\x76\xc0\x68\x7f\xa1\xb4\xfd\x0a\x20\xda\xb5\xd9\x99\x67\x86\xd0\x73\x82\xa0\x05\x84\xf6\x57\x86\xd0\x8e\x5a\x9c\xe8\x9a\xbc\xcc\x0c\xc0\x5e\xc0\xad\x05\xa8\x77\x80\x7a\x5f\x73\x36\xbb\xc6\x48\xef\xaf\x89\xcb\x02\xd0\x3b\x00\xbd\xf3\x07\x38\xef\x7a\x72\x5e\x40\x8c\x07\xc4\xf8\xd7\x17\x20\x09\x88\xf1\x8e\x5a\xd4\x5c\x03\x62\x3c\x02\xc4\x78\x40\x8c\x7f\x65\x88\xf1\x5e\x26\x7c\xd1\x77\x00\x3a\x1e\xa0\xe3\xd7\x09\x7c\xa9\x79\x9f\x01\x74\xfc\xa3\x2d\xc4\xac\xd0\xf1\x5d\xf0\xce\x8d\x65\xa9\xcc\xa4\x3d\xd5\x8e\xbd\x9f\x07\xa9\xa7\x43\x74\xb6\xf8\x58\xcc\xd3\xc4\x34\xec\xda\x04\x00\xac\xcf\x48\x92\x00\xb0\xee\x6a\x03\x00\xd6\x01\x60\x1d\x00\xd6\xd7\xe7\x3c\x02\x80\x75\x00\x58\x07\x80\x75\x00\x58\x7f\x9c\x3e\x3c\x2f\x6e\xb2\x0c\xca\x04\x80\x75\x6c\x03\xac\xcb\x9b\x84\x9f\x84\xe8\xef\x66\x72\x2b\x1d\xff\x41\xe9\x7b\xcc\xe1\xf7\x7e\x12\x78\x13\x1c\x6d\x4a\x66\xa2\xfa\xa9\x2b\xb2\xfa\x6c\x48\xec\x75\x51\xe7\x00\xc6\x0e\x60\xec\x00\xc6\xbe\x98\x4b\x31\x80\xb1\x03\x18\x3b\x80\xb1\xb7\x7e\x0f\x60\xec\x75\x62\x04\x80\xb1\x03\x18\x3b\x80\xb1\x03\x18\xbb\x78\xc0\xd7\xc8\x68\x0f\xc0\xd8\x01\x8c\x5d\x3d\x00\xc6\xfe\x1c\xc1\xd8\x57\xa2\x1b\x29\xc7\x31\x2f\xda\xfa\x42\xe8\xed\x36\x3b\x41\x0d\xb8\x99\x4f\x0d\xe2\xae\x5b\xde\x9b\x6a\xb4\x2d\xf4\x66\x2d\xba\x71\xbd\xa9\x16\xdb\x08\x6f\xd6\xf2\xf2\x01\xe5\xad\xe4\xf0\x35\xd4\xbd\x6a\x10\xfa\xba\x5f\x6b\x11\x6a\xb9\x96\xb8\xe8\x25\x2b\x46\xa6\x79\xb1\x17\x5d\xdd\x6d\xf8\x62\x8f\x03\xdc\x9a\x2d\x0b\xb0\xdb\xd9\xaa\xb1\x31\xe3\x1d\xc3\x07\xb4\x7d\x40\xdb\xef\xde\x07\x40\xdb\x7f\x79\x10\xf2\x80\xb6\xdf\x79\xaa\x00\x6d\x1f\xd0\xf6\x97\xb9\xb0\x80\xb6\x0f\x68\xfb\x56\xbd\x80\xb6\x0f\x68\xfb\x80\xb6\x0f\x68\xfb\x80\xb6\xbf\x7c\xb4\xfd\xd5\xe8\xd3\x2c\x65\xd8\xd2\xf0\xfa\x75\x5a\x04\xb8\x7e\x80\xeb\x07\xb8\x7e\x84\x00\xae\x1f\xe0\xfa\x01\xae\xff\x99\x9f\x40\x00\xd7\x0f\x74\x01\x70\xfd\x00\xd7\xff\x42\xa9\x18\xe0\xfa\x01\xae\xff\x95\x91\x3c\xc0\xf5\x03\x85\xae\x37\x85\x02\x5c\x3f\xc0\xf5\xbf\x50\xda\x06\xb8\xfe\x17\x05\x24\x0c\x70\xfd\x00\xd7\x6f\x55\x06\xa0\xc1\x00\xd7\x0f\x70\xfd\x2f\x83\xcd\x02\x5c\xff\x5a\x70\x59\x80\xeb\x07\xb8\x7e\xfe\x00\xe7\x5d\x4f\xce\x0b\x70\xfd\x00\xd7\xff\xfa\x42\x68\x01\xae\xdf\x51\x8b\x9a\x6b\x80\xeb\x47\x00\xd7\x0f\x70\xfd\xaf\x14\xae\xff\x2d\xc0\xf5\x03\x5c\xff\x3a\xc1\x73\x35\xef\x33\x80\xeb\x7f\xb4\x85\x58\x36\x5c\x7f\xfd\xfd\x07\x80\xfc\x01\xc8\x1f\x80\xfc\x01\xc8\x7f\xf1\xb9\x04\x20\xff\x19\x26\x18\x80\xfc\x01\xc8\x1f\x80\xfc\x01\xc8\x1f\x80\xfc\x57\xcf\xb4\x5e\x3e\x37\x59\x06\x65\x02\x90\x3f\xb6\x81\xfc\x51\x15\x3c\x4f\x8f\x35\x9e\x09\x65\x1f\xb9\x31\xe6\x1a\xf1\xfc\x51\x15\x47\x0f\xc0\xf9\x01\x9c\x1f\xc0\xf9\x17\x73\x20\x06\x70\x7e\x00\xe7\x07\x70\xfe\xd6\xef\x01\x9c\xbf\x4e\x34\x00\x70\x7e\x00\xe7\x07\x70\x7e\x00\xe7\x17\x0f\x78\x16\x19\xed\x01\x38\x3f\x80\xf3\xab\x07\xc0\xf9\x9f\x23\x38\x7f\xb3\xae\xa3\xec\xd0\x62\xa8\xf8\x0b\x61\xed\x77\x1a\x0e\x80\xec\x97\xb5\xbc\x7c\x90\x7d\xb4\x74\xc0\x7c\xc0\x91\x07\x1c\xf9\xee\x7d\x00\x1c\xf9\x97\x07\x8e\x0e\x38\xf2\x9d\xa7\x0a\x70\xe4\x01\x47\x7e\x99\x0b\x0b\x38\xf2\x80\x23\x6f\xd5\x0b\x38\xf2\x80\x23\x0f\x38\xf2\x80\x23\x0f\x38\xf2\xcb\xc7\x91\xef\xa0\xfc\x59\x1a\x0a\xbc\xa1\xb0\x01\x18\x78\x80\x81\x07\x18\x78\x84\x00\x06\x1e\x60\xe0\x01\x06\xfe\x99\x9f\x40\x00\x03\x0f\x74\x01\x30\xf0\x00\x03\xff\x42\xa9\x18\x60\xe0\x01\x06\xfe\x95\x91\x3c\xc0\xc0\x03\x85\xae\x37\x85\x02\x0c\x3c\xc0\xc0\xbf\x50\xda\x06\x18\xf8\x17\x05\x50\x0b\x30\xf0\x00\x03\x6f\x55\x06\x60\xb4\x00\x03\x0f\x30\xf0\x2f\x83\xcd\x02\x0c\xfc\x5a\x70\x59\x80\x81\x07\x18\x78\xfe\x00\xe7\x5d\x4f\xce\x0b\x30\xf0\x00\x03\xff\xfa\x82\x35\x01\x06\xde\x51\x8b\x9a\x6b\x80\x81\x47\x00\x03\x0f\x30\xf0\xaf\x14\x06\xfe\x1d\xc0\xc0\x03\x0c\xfc\x3a\x01\x41\x35\xef\x33\x80\x81\x7f\xb4\x85\x00\x18\x78\x80\x81\x07\x18\x78\x80\x81\x5f\x37\x44\x5d\x80\x81\x5f\x12\x70\x2f\xc0\xc0\x03\x0c\x3c\xc0\xc0\x03\x0c\x3c\xc0\xc0\xaf\x9e\x69\xbd\x7c\x6e\xb2\x0c\xca\x04\x18\x78\x6c\xc3\xc0\xcb\x9b\x84\x9f\x84\xe8\xef\xe2\x52\xe5\x42\x86\x50\x9a\x20\x73\xf8\xbd\x9f\x04\x12\x05\xc7\xa1\x12\x96\xb5\xde\x4f\x5d\xf1\xdf\x67\xc3\x8b\xaf\x8b\x47\x07\xc8\x78\x80\x8c\x07\xc8\xf8\xc5\x9c\x8d\x01\x32\x1e\x20\xe3\x01\x32\xbe\xf5\x7b\x80\x8c\xaf\x13\x23\x00\x32\x1e\x20\xe3\x01\x32\x1e\x20\xe3\xc5\x03\x5e\x48\x46\x7b\x00\x19\x0f\x90\xf1\xea\x01\xc8\xf8\xe7\x08\x19\xbf\x12\xdd\x48\x39\x8e\x79\x31\xe1\x17\xc2\x98\xb7\xd9\x09\x6a\x40\xd4\x04\xa8\xf9\xb2\x96\x97\x0f\x35\x5f\x82\xbf\xff\xed\xb6\x9e\xba\x57\x0d\x4f\x5f\xf7\x6b\x2d\x76\x2d\xd7\x12\x17\xbd\x64\xc5\xc8\x34\x2f\xf6\xa2\xab\xbb\x0d\x5f\xec\x71\xe8\x5b\xb3\x65\x01\x83\x3b\x5b\x35\x36\x9a\xbc\x63\xf8\x80\xc3\x0f\x38\xfc\xdd\xfb\x00\x38\xfc\x2f\x0f\x5c\x1e\x70\xf8\x3b\x4f\x15\xe0\xf0\x03\x0e\xff\x32\x17\x16\x70\xf8\x01\x87\xdf\xaa\x17\x70\xf8\x01\x87\x1f\x70\xf8\x01\x87\x1f\x70\xf8\x97\x8f\xc3\xbf\x1a\x7d\x9a\xa5\x0c\x5b\x1a\x92\xbf\x4e\x8b\x00\xe4\x0f\x40\xfe\x00\xe4\x8f\x10\x00\xf9\x03\x90\x3f\x00\xf9\x3f\xf3\x13\x08\x80\xfc\x81\x2e\x00\xc8\x1f\x80\xfc\x5f\x28\x15\x03\x90\x3f\x00\xf9\xbf\x32\x92\x07\x20\x7f\xa0\xd0\xf5\xa6\x50\x00\xf2\x07\x20\xff\x17\x4a\xdb\x00\xe4\xff\xa2\x20\x86\x01\xc8\x1f\x80\xfc\xad\xca\x00\x4e\x18\x80\xfc\x01\xc8\xff\x65\xb0\x59\x00\xf2\x5f\x0b\x2e\x0b\x40\xfe\x00\xe4\xcf\x1f\xe0\xbc\xeb\xc9\x79\x01\xc8\x1f\x80\xfc\x5f\x5f\x08\x2d\x00\xf9\x3b\x6a\x51\x73\x0d\x40\xfe\x08\x80\xfc\x01\xc8\xff\x55\x01\xf9\xbf\x17\xf0\xfd\x4b\x80\xd1\x9f\x1b\x15\xbb\x50\x68\xe9\xfe\x80\xb3\x4e\xb1\x55\xa4\x80\x14\x9f\x1b\x51\xfc\xc5\x01\x8a\x37\x3b\xaa\xb7\xef\x8f\x26\xff\x2f\x13\xa9\xc0\xf4\x2d\xeb\x30\xf4\xae\xb6\x41\x26\x92\x74\xf6\x2f\xb2\xd0\x13\x4a\xbf\x90\x76\x7b\xea\xb0\xa7\x84\xf1\xf5\x47\x06\x6f\xee\xeb\xbc\xd8\xe0\xcd\xb5\xae\x0a\x68\x75\xd8\x93\xae\xc8\x24\xa1\xe5\x75\x88\xfd\x5e\xf5\x57\x6d\xe8\x9e\xe5\x46\xca\x7e\x0a\x39\x5e\x17\xed\x66\x08\x5f\xda\xfc\x37\x63\x41\xba\x8c\x02\xad\xa8\xe2\xcb\x9e\xa2\x4e\x18\xb1\xf3\x6f\xd2\x8e\xbb\x33\xd3\xac\xc0\xf3\x01\x23\xcf\xbe\x65\x5b\x10\x8c\x17\x42\x53\x9e\xad\x37\x2e\xd4\xda\x25\xe2\xd6\x2e\x11\xb9\x76\x41\xec\xda\xd9\xd1\x6b\xcb\x09\x6d\x43\x3a\xe9\x75\xd8\xd8\x6d\x78\xb1\xb3\x2d\xdb\xac\x88\xb1\xcd\xb5\x77\x41\xcc\x5e\x6c\x1f\x36\x79\xd3\x54\xb7\xa3\x97\x44\xd4\xf7\x46\xea\x9b\x47\x00\x51\x75\x1d\x09\x33\xfa\x7d\xb4\xc9\x21\x2b\x97\x44\xba\xcf\xb1\x26\x90\x58\x53\xbd\x5c\x07\xc7\x06\x31\xe8\x11\x27\xd7\x96\xa7\xe7\x80\xd6\x6c\x86\xa8\x6c\xa6\xd0\x45\x11\x24\xb9\xf4\x6c\xc1\x13\x2e\x0c\x67\x58\x04\x79\x2f\x11\x99\xb0\x6a\x83\x44\x22\x96\x7a\x82\xf3\x31\x9e\x72\xea\x15\x57\xcc\x37\x1c\x1c\xe2\x4d\x5d\x21\x1a\x64\x7e\x8a\x77\xd1\x9b\x3c\x9b\x62\x59\x0a\xb4\x9a\xe6\xb3\x36\x5a\xcd\x06\xa0\xbf\xf9\x81\x20\x25\x79\x8a\x2a\x74\x4b\x46\x6b\x04\xf8\x12\x0d\x21\x9a\x52\xd4\xc0\x44\x68\xbb\xce\x8a\x52\x2e\xb3\x50\xfb\x29\x66\xb4\x2b\x7e\x78\x62\x4b\xab\x86\x13\xb5\x1f\xa7\x51\x82\x05\xd6\x21\x13\x28\xca\x3e\xb2\x6d\x77\xe0\x52\xa6\x56\x41\x09\x3d\x44\xc7\xfa\x5f\x5e\x60\xbc\x7b\xa0\x41\x1e\x23\xef\x1e\x25\x38\xef\x07\x24\xc3\x7d\x4a\x26\xfe\xb7\x80\x24\xc9\xde\xdb\x9d\x9f\x3f\x7c\xfc\x0f\xab\x4c\x94\xde\xbd\xeb\x47\xe9\x15\xc7\x52\xb8\x62\xe7\xcb\x15\x27\x81\xbd\x61\x6f\x7b\x6b\xe7\x1d\xfa\xf0\xfe\xfd\xdb\xf7\xe5\xb2\x6a\x0a\x53\x7d\x3c\x3a\x5d\x74\xb4\x02\x0b\x9e\x20\x3a\x53\xfe\xda\x64\x72\x4c\x95\xad\x31\x74\x42\x62\x36\x2b\xa6\x4b\xd5\x74\x17\x68\xc6\x72\x90\x3a\x42\xa5\x69\xed\x5e\x04\xf8\x71\xc9\x18\x89\x2d\x70\x7e\x35\x5a\x3a\xf3\xfb\x75\x42\xf2\xd3\x58\xa1\x97\x66\xf8\x3a\xfa\xb6\xd7\x1a\x5b\xab\x68\xa1\x3b\x9a\x1e\x5a\x08\x19\xaf\x06\x18\x4f\x9e\x6d\xf5\x7b\xbd\x8d\xca\x5b\xa0\xe2\x66\x03\x8b\x9b\x0f\x2e\xce\x30\x39\xbf\x7d\x6b\x0f\xb1\x3a\x70\x40\x80\xd3\x1d\x28\x04\xdb\x9d\x03\xab\xad\x42\x65\x55\x4c\xad\x7a\x44\xad\x46\x5c\xac\x06\xc0\xa6\x66\xd8\xa5\xd9\xa0\xe2\x5e\x33\xfe\xd9\xb3\x81\x8a\x5b\xc1\x2c\x68\x14\xaf\x23\x14\x99\xc4\x6c\x81\x3f\x75\x85\x36\x32\xb6\x46\xa5\x21\xad\x8d\x12\x4a\xa7\x2b\x9e\x8d\xac\x14\xdc\x66\xc0\x6d\xe6\xe5\x5e\x30\x3b\xb8\xcd\xc8\x82\x6b\xe7\x92\xba\x88\x33\x89\xff\xa4\xce\x24\x96\x2f\x09\xb8\x92\xa0\x72\xf8\xe0\x4a\xf2\xb8\xae\x24\xb5\xee\x23\xfd\xed\x1d\xe1\x41\xb2\x21\x30\xab\x8a\x0c\x35\x11\x45\x51\x92\xe3\x24\xc4\x21\xba\x26\x19\x9a\x52\x8c\x46\x0f\x48\xd8\x93\xf6\xe4\x05\x7a\xab\xff\x76\xa7\xbf\x05\xee\x27\xe0\x7e\x02\xee\x27\x25\xc3\x02\xf7\x93\x15\xb9\x9f\x94\xf6\xdf\x4e\x63\xd3\x3c\x2d\xb4\x9e\x39\xfc\x2c\xd0\x06\x4f\xf6\xb5\xdd\xdf\x7e\xf7\xbf\xeb\xbb\x6d\xb9\xa5\x3c\x8e\x0b\xca\x52\x53\xda\xaf\x6a\x42\x5e\x87\x13\xca\x23\x7a\x94\x74\xf0\x6f\x59\x59\x86\x6e\xd8\xbb\xb3\xcc\xd6\x93\x6e\x29\x70\x5f\x7a\x24\xf7\xa5\x36\xe7\xa5\x76\xa2\x7a\xc6\xae\x4b\x36\x93\x59\xe2\xb8\xe6\x4d\xb4\x0d\x3e\x54\xe0\x43\x05\x3e\x54\xe0\x43\x05\x3e\x54\xea\x79\xf5\x2a\xee\xd5\x25\x57\x5d\x82\x13\x56\x35\xe3\x88\x94\x54\xd6\x2a\x19\x06\x38\x8a\x3d\x67\x43\xc9\x7a\x39\x37\xad\x53\x9a\xd8\x65\x78\x46\xcd\x91\x04\x96\x7d\x66\xdc\x8b\xf6\x2c\xa8\x19\x04\x5e\x57\xcb\xf2\xba\x7a\xb4\x2c\x9d\x8f\xe1\x7a\x35\x7b\xa6\x4e\xf0\xbd\x7a\x7a\xdf\xab\xf9\x52\xde\xb5\x64\x32\x5c\x55\xb6\xbb\x55\x66\x31\x9c\x23\xcf\x5d\xa7\x0c\x86\x75\xdb\xc2\xfd\x7b\x83\xb7\xdb\x52\x56\xaa\x92\xf2\x6e\x3d\x96\x6a\xd6\xb4\x84\xcb\x58\x2c\x67\x4a\xc2\xd9\x56\x0b\x5c\x0c\xb5\xe7\x65\xb8\x18\x3e\xd5\x54\x3d\x6f\x3f\x44\xae\x19\xaa\x17\x9e\xc1\x3f\x11\xfc\x13\x5f\xa0\xf2\xa6\xc3\xb5\xbb\x83\x0a\x05\x10\xbf\x9e\x23\xe2\x17\x38\x69\x82\x93\x66\xb5\x92\xd7\xe8\xa4\xd9\x01\xef\x6b\xa7\xbf\xe5\x65\xe2\x1c\xdc\x56\x7e\x9b\xbf\xfa\x14\x87\x8c\xe2\x55\xfe\xd0\x9b\x28\x1f\x4f\x47\xfd\x80\x4c\xb4\x54\xa2\x66\x1a\xd4\xc1\x28\x26\x23\x3d\x35\xaf\xa8\x7b\x10\x72\x21\x82\x3b\x1f\x44\xc1\x20\xcd\xc8\x5d\x14\xe2\x6c\x10\xc4\x64\x1a\xca\x97\x8d\xb9\x06\x67\x72\xf9\x7c\x14\xc0\x6b\x53\xa4\x6a\x4a\xcb\x38\x53\x2a\xe3\x65\xe5\x5f\x5c\x07\xc8\xef\x9d\xb9\x73\x0a\x57\x5a\xaa\xdf\x67\xfe\x34\x27\x3c\x77\xbb\x39\x1d\x97\xe4\x16\x27\xca\x00\xb3\x58\x76\xe9\x42\xe7\xd9\xb8\x1a\x9a\x87\xec\x4b\x5d\x88\xce\x26\xe1\xc2\xcd\xd9\x9b\xdb\xcf\xd9\x7b\x71\x8e\xce\xcb\x4a\xdf\xba\xca\x0c\x9c\x6b\x44\xac\xce\xb6\x16\x49\x78\xb6\x5e\xfe\xd1\x4d\x3d\x9d\xd7\x3b\xba\x39\xdd\xdb\x6a\xa0\xf9\x6a\x12\x46\x3f\xaa\xaf\x64\xd3\xb8\x97\xe8\xe5\x3c\xcf\x50\x17\x72\xb7\x9c\xbd\x41\x6e\x0e\x9c\x7f\x82\x67\x3f\x81\x56\x9c\x4b\x75\xed\xcf\xa3\xd5\xe5\x1c\x5d\x2c\xb7\x5d\xf9\x62\xa1\xfc\xa2\x9a\x14\xb4\xdc\x6c\xa2\x6b\xb4\xb0\xab\x15\x4f\x17\xe1\x58\x0b\x05\x06\xcc\xca\x0a\x9f\x2a\x2c\xe0\xb5\x32\xad\x97\xcf\x4d\x96\x41\x99\xae\x18\x82\xa5\x45\x10\x2c\x2d\x7e\x60\xa1\xe8\x81\x59\x63\x07\xe4\x4d\xc2\x4f\x42\xf4\x77\x71\xa9\x72\xd9\x6c\x95\x26\xc8\x1c\x7e\xef\x27\x61\x21\xe6\x1e\x31\x22\x93\x4e\xef\x27\x4d\x05\xdb\x10\x91\xe0\xd4\x1e\x77\x88\x60\xb0\xf5\xbc\x0b\x45\x33\xcc\x42\x3a\xb3\xc6\x32\x2c\x59\x8a\x9c\x8f\xc3\xae\x2a\x37\xf2\xeb\xe1\xb7\x2b\x48\x38\xbc\x5a\x51\x6c\x31\xe5\x94\x64\x91\x2a\x93\x59\x17\x85\xe1\xcb\x25\x0d\x67\xf6\xd3\x66\x7a\x29\xb3\x0b\x3e\xa4\xb8\x90\xcb\x8f\xb9\xd1\x44\x37\x77\x18\x6e\x3f\x66\xee\x3d\x65\x85\xd1\x3c\x77\x74\x7d\xbd\x55\xd6\x4f\xd3\xb3\x8c\xe4\x24\x20\xb1\xe6\x44\x54\x55\xe6\x3f\xda\x32\xd4\x4c\xb0\x24\x45\xdb\x38\xba\x8b\x8e\x93\x1c\x27\x6c\x0b\xf9\x71\xfc\x80\x32\x3c\x21\x77\x38\xe4\x4c\xab\xfc\xfc\x0d\x45\x9f\x89\x1f\xfe\xea\xc7\xac\x23\x99\x12\xe4\xe6\xa3\x6d\x49\xd3\xb3\xef\x8d\xb0\xf0\x5c\x70\x6c\x8b\x8e\x91\x31\xcf\x7b\x77\xd4\x89\x11\x4c\xea\xa8\xae\xec\x21\x41\x27\xa7\x97\x4a\x5a\xe1\x62\x88\x3f\xc1\x9b\xc8\x47\x09\xbe\x47\x4c\x78\x8c\x89\x1f\xa2\xfb\x28\x8e\x99\x90\x23\xa6\x17\x87\xc8\xbf\xce\x71\x86\x7c\x1e\x87\xaa\xa5\x2e\x5d\x5d\xc8\x90\x78\xd3\x99\x38\x37\x91\x1f\x32\x9e\x28\x17\x53\x0c\x60\xe2\xdf\x8a\x31\xca\xba\xe5\x70\xd0\x7f\x93\x11\x77\x77\x42\x21\x77\xbe\x28\x1b\x33\xc6\x87\x46\x38\xf0\xa7\x14\xf3\xa6\xfb\x6a\x18\x1c\xdc\x64\x32\x99\xe6\xfe\x28\xc6\x9b\x88\x12\xde\x80\x6c\x35\xc1\x6c\x9b\x10\x31\x48\xe4\x07\x19\xa1\x1a\x2c\x8a\x5c\x6e\xaa\xb5\x37\x4b\x4a\x52\x57\xf1\x96\x94\xa4\xae\x4f\x6a\xc8\x49\xf9\x21\x58\x41\x57\x0b\x47\x69\xe9\x92\x61\x86\xef\x22\x36\x03\xbf\x47\x34\x27\xd9\xc3\xe7\x68\x12\xe5\xca\x71\x6b\x12\x25\xe7\xd8\x0f\x4b\x8b\x35\xff\x75\x89\xa1\x5d\x4f\x93\x00\xb6\x76\xf3\x5a\x1e\x45\x85\x1f\xca\x5c\xa1\x42\x56\xe8\x02\xb8\x27\xad\x8f\x7b\xd2\xea\x62\xcb\xd6\x39\x8c\xa8\x25\x70\x08\x19\x91\x43\xf3\x66\x01\x8e\xa3\x6b\x1c\x3c\x04\xb1\xed\xc9\x9a\x66\xf8\x22\x77\x04\x5a\xe0\x6f\xda\x86\x2b\x9f\x2a\x46\xb6\x4e\x0e\x83\x7b\x3f\xca\x3d\x3a\x9e\xe6\x21\xb9\x37\x48\x6d\x91\x10\xa7\x19\xf8\x1a\x67\x2f\x8c\x27\x8f\x2c\x49\x8b\x71\x22\x3f\xa6\x44\x15\xb5\x5b\xe0\xf9\x83\xa7\xa3\x38\xa2\xe3\xfa\xc0\xa8\x26\xe3\x6f\xf9\xac\x53\x44\xd6\x2a\x75\x23\xe5\x38\xe6\x88\xd9\x72\xe8\x4e\x66\xac\xcf\x66\x27\xa8\xc1\x17\x5e\x06\xa6\x15\x0e\x0c\x3c\x48\x4c\x6a\x0b\x6a\xb8\x13\x6a\x8f\x67\xeb\x46\x0e\xeb\x16\x78\x76\xe7\xc7\x51\xc8\x93\x6f\xab\x5b\xdb\xde\xee\xc7\x4a\x90\x85\xbb\xa4\x17\xe0\x2c\x67\x1b\xd0\xcf\xf1\xde\x60\x4a\xb3\x01\x47\xb2\x1f\x68\x3f\x53\xfe\x47\xa7\xca\x6e\xf1\x43\x6d\x25\xb7\xf8\x41\xaf\xc3\x99\x35\xba\x2e\xe8\xad\x8c\x43\xfb\xdb\x6d\x3d\x75\x2f\x33\x50\xce\x45\x75\x75\xbf\xd6\x46\x95\x70\x2d\x71\xd1\x4b\x56\x8c\x4c\xf3\x62\x2f\xba\xba\xdb\xf0\xc5\x1e\x0f\x4a\x31\x5b\x16\x01\x2a\xb3\x55\x63\x26\xc7\xd6\x22\xad\xcb\x9f\x1e\x2d\x24\x70\x96\x80\xc0\xc7\x09\x07\x6c\xca\xcb\x6e\xcf\x1c\x84\x0e\xba\xf3\xde\x97\x1d\xf9\x7c\x78\x75\x76\x7e\xf4\xf9\x74\xff\xd0\xd9\x8b\x5d\xa4\x1d\x16\x71\x34\x62\xff\x4d\xa2\x09\x5b\x81\xa0\x4f\x49\x79\x2b\x9b\x23\x20\x71\xf1\x50\xa9\xf7\x66\x81\x57\x10\xff\x53\xbe\x84\x50\xa9\xce\x53\x55\x0d\x74\x45\x0d\xa1\xae\xf3\x86\x50\xb6\x86\xbb\xae\x2e\x8a\x72\xb5\x21\xaf\x73\xc5\x51\x76\x0c\x7b\xad\x67\x00\x4d\x6f\xd2\x42\x77\x7d\x79\x70\x56\xbf\xae\x95\xdb\xf3\x92\x16\xb6\x22\xb8\xad\xcf\xca\xce\x1a\x21\xbb\xac\xb5\x75\x46\xc9\xae\x6c\x71\x2d\x6b\x46\xcd\x54\x55\x05\xec\x86\xca\xad\x98\xc9\x86\x56\xbd\xaa\xac\x8d\x10\x77\xfe\x16\x9c\xb7\x4e\xba\xb6\x3f\x61\x07\xf8\x69\x12\x3f\x28\xa9\xa5\xf3\x8d\x9b\x15\xd5\x6a\x29\x0d\xc5\x1b\x66\xf5\x45\x78\xca\x86\x35\x4d\x22\x42\x65\x6b\x52\x79\xa3\xa2\x54\x7e\xe1\x51\x2a\x06\x6b\x37\x82\x46\x5d\x3c\xbe\x2e\xaa\xb4\x36\x9e\xac\x06\x4d\xa7\x06\x8d\xc7\x71\x15\x99\x1b\x8e\xc7\xec\x4b\xa5\x5f\x4f\x8f\x55\xd4\xe4\xa5\xdd\x8c\x0b\xd4\x60\xd6\x15\x1f\xb5\x04\x23\xbe\xdd\x2a\x98\x56\x19\xe5\xdb\x75\x23\x08\x7f\x2d\x6b\xf7\x88\x1f\x1d\xbd\xd3\x8d\xa3\x0e\x52\x6b\xa2\xb2\x6a\x80\xf1\x22\xd6\x6b\xdd\xd1\x48\xda\xe8\x36\xd0\x5f\x18\x85\x24\x79\x93\x23\x3a\x4d\xd9\x91\x5a\x1a\x92\x42\x55\x27\x5f\x41\xf4\x80\x73\xd1\x1e\xf2\x75\x87\x4a\xae\xfe\xf1\x1d\xce\xa5\x28\xa2\x85\x4a\xdb\x34\x06\x56\x7c\xa3\x34\xcb\xe0\xb1\xd6\xe4\xcb\x33\x0e\x0e\xbb\x44\x2d\x2c\x59\x9f\x66\x29\xc3\xaa\xb8\x7a\x06\x59\x58\x13\x45\x0b\x35\x22\x7f\xcd\x0e\x1a\x7e\x88\x5b\x51\x23\x85\x01\xa5\x1c\xf9\x2e\x72\xab\xc0\x3a\x92\x6d\xb1\x67\x94\x42\x87\x0e\xaa\x4a\x9e\x82\x88\x47\xf8\x9a\x64\x58\xd8\x52\x85\x53\x57\x44\xc5\xbd\x6e\x13\x05\x63\x1c\xdc\x72\xdd\xad\xa2\x46\x54\x0e\x52\x59\x02\x59\x25\x2a\xf0\xce\x9c\x82\x90\x04\x74\x90\xe1\x6b\x9c\xe1\x24\xc0\x03\x9f\xcb\xe7\x9e\x3f\xcd\xc7\x09\xff\xff\xbf\x07\x12\x3c\x78\x14\xe3\x72\xa7\x6b\x0a\x3b\x3a\xd8\x48\x33\xcc\xdb\xa6\x51\x8e\xa9\x65\x18\x57\x5f\x64\xf8\x26\xa2\x79\x56\xe3\x6b\xf4\x67\x31\xf6\xbf\xc4\xd0\x0f\x4c\xa0\xab\x67\xba\x51\x2a\xab\x3c\xac\x71\x35\xd1\x8e\x50\x45\x0f\xd2\x3b\x48\x94\x96\xb4\x81\xfb\xad\x30\x57\xdc\x08\xa6\xec\x19\x47\xff\x9a\x46\x77\x7e\x5c\x58\x33\x4a\xff\x61\xc1\x06\xaa\x9e\x6b\xa8\xc9\xbb\x53\x8c\x57\x2d\xae\xfd\xd1\x9d\x76\x57\x13\xa6\x1c\x47\xa1\x83\xf3\xa3\xfd\xcb\x23\xf3\xb7\xaf\x67\x87\xc6\x6f\xee\x48\xdf\x8a\xf7\xac\xbc\x1b\xab\xb1\x7e\xf2\x23\x99\x9d\x93\x46\x21\x3e\xe2\x76\x26\xba\x8b\x4e\x98\x3c\x2e\x56\x4a\xcd\xf1\x39\xbe\x8b\xf0\x7d\x65\x14\xe5\x08\x82\x38\xc2\x49\x2e\x48\x70\xd7\xe2\xd2\xba\xa5\xb3\x21\x5c\xb7\x2c\xd1\xd5\xab\x48\x8a\x20\x42\xf4\x2c\x17\x60\x70\xb7\x3d\xd0\x06\xbe\xbc\xc8\x2f\xc7\x09\xf4\xdf\x64\xe4\x71\x87\xc3\xc1\xb2\x02\x47\x5b\x68\xbd\x79\x0e\xab\x47\xf9\x18\xc7\x93\x3e\x1d\x0f\x58\x77\x77\x51\x9a\x61\x8f\xef\xe0\x38\xde\x64\xff\x96\xde\x14\x9b\x29\xa1\x79\xf9\x82\xfd\xa1\xf9\x91\x98\x95\x78\x21\x8e\x71\x8e\xbd\x54\x12\x91\x38\x68\x3d\x21\x15\x65\x98\x37\xbe\xc9\xff\xe2\x9a\x0b\x1c\x62\x27\x1c\xc9\xb3\x3a\x81\x96\x41\x1f\xab\x0c\x1b\x6c\xa5\x19\xa0\x8b\x95\xd0\x45\x5b\x70\x49\x13\x2b\x97\xec\xc5\xe1\xec\x5c\x4a\x35\xb2\x21\x03\xc2\xb2\x4b\x38\x80\x91\x9a\x63\x79\x74\xbb\xe2\x60\x33\xa0\xe2\x27\xa2\xe2\xd5\x05\xd1\xe9\xeb\xb7\x88\x0f\xb7\xcd\xf7\x17\x0e\xac\x6b\x24\xf9\xe5\x86\xda\x01\x43\x5f\x43\x92\x5f\x20\x2a\xb0\x31\x06\xdd\x38\x86\x55\x64\xca\xb2\x68\x72\x55\xc1\x29\x40\xa1\x6b\x48\xa1\x2b\x88\xa3\x79\xfc\xd3\x78\x0e\xed\x64\xe3\x2e\x60\xff\x12\xbb\xea\x82\xef\x42\xc7\x56\x18\xf1\x82\x25\xd9\xff\x1f\x32\x9a\x85\xdc\xbd\x32\x9c\x6c\x05\x54\x0f\xb4\xcd\x68\xbb\x8c\xf9\x69\xf1\x20\xef\xba\x52\xa8\xc6\xdb\xfc\xd1\x3d\xca\x5d\xb3\x33\xcf\x0c\x21\xdb\x05\x7d\xad\xfd\x89\x8d\x75\x40\x4e\x5f\x62\xa9\xa3\x9c\xd7\x9b\xd8\xe9\xce\x5b\x6d\x57\xf8\x97\x8d\x09\xcd\xf7\xda\x35\x48\x9b\xed\x45\xfa\xb6\xaf\x63\x9f\xde\x05\xd5\x06\x8b\x83\xa2\xe2\x1b\x59\x2d\x2b\xa4\x07\xfe\xc9\x5e\xe3\xa1\x2a\x9e\x76\x2f\xae\x27\x72\xa3\x6a\xf2\xc2\x6b\x72\x53\x13\x86\x08\x59\x38\xc3\x34\xf7\xb3\x5c\xad\xfe\x69\xf2\x49\x28\x28\x87\x5d\xcd\x7c\xd5\x49\x73\xda\x50\x11\xb2\x23\x17\x76\x51\x1c\x25\xd3\x6f\xad\x26\xd9\xc7\xb0\xbe\xb6\x4d\x28\xf7\x07\x3c\x21\xc9\x39\x21\xb9\xed\xe7\xa7\xf9\x0a\xee\x6c\x6d\x6d\x2d\x8f\xcb\xf2\x7f\xfd\x55\x1b\xd4\xba\x28\x97\x2d\xa0\x7e\x16\x62\xb2\x20\x42\x3e\x02\x9b\x2d\x96\x0a\x01\x97\x7d\x42\x2e\x6b\x2c\x03\x7a\x34\x26\x5b\x69\x56\xfa\x70\x4b\x3f\x88\xae\x7c\x6c\x76\x46\xc9\x1b\xf6\x26\xd3\x9c\x6b\x42\xf7\x0c\xbe\x51\x96\x9a\x91\x9d\xea\x55\x4b\x63\x98\x3c\x12\xf6\x4a\x63\x98\x78\x80\xf3\x02\xe7\x9d\x89\xf3\xd6\xc7\x61\xb5\x66\x85\x04\x84\x7f\x40\xf8\xd7\x9e\xe7\x14\x42\xdb\x01\xe1\x1f\x60\xfc\x9f\x33\x8c\x7f\xf4\xa4\x30\xfe\xc8\xc2\xf1\x47\x00\xe4\x8f\xca\xe1\x03\x90\xff\x3a\x03\xf9\xef\x00\x90\x3f\x00\xf9\xaf\x13\x3c\x57\xf3\x3e\x03\x20\xff\x47\x5b\x08\x00\xf2\x07\x20\x7f\x00\xf2\x07\x20\xff\x75\xc3\x44\x06\x20\xff\x25\x41\x2f\x03\x90\x3f\x00\xf9\x03\x90\x3f\x00\xf9\x03\x90\xff\xea\x99\xd6\xcb\xe7\x26\xcb\xa0\x4c\x00\xf2\xc7\x36\x90\x3f\xaa\x82\xe7\xe9\xb1\xc6\x33\xa1\xec\x23\x37\xc6\x5c\x23\x9e\x3f\xaa\xe2\xe8\x01\x38\x3f\x80\xf3\x03\x38\xff\x62\x0e\xc4\x00\xce\x0f\xe0\xfc\x00\xce\xdf\xfa\x3d\x80\xf3\xd7\x89\x06\x00\xce\x0f\xe0\xfc\x00\xce\x0f\xe0\xfc\xe2\x01\xcf\x22\xa3\x3d\x00\xe7\x07\x70\x7e\xf5\x00\x38\xff\x73\x04\xe7\x6f\xd6\x75\x94\x1d\x5a\x0c\x15\x7f\x21\xac\xfd\x4e\xc3\x01\x90\xfd\xb2\x96\x97\x0f\xb2\x8f\x96\x0e\x98\x0f\x38\xf2\x80\x23\xdf\xbd\x0f\x80\x23\xff\xf2\xc0\xd1\x01\x47\xbe\xf3\x54\x01\x8e\x3c\xe0\xc8\x2f\x73\x61\x01\x47\x1e\x70\xe4\xad\x7a\x01\x47\x1e\x70\xe4\x01\x47\x1e\x70\xe4\x01\x47\x7e\xf9\x38\xf2\x1d\x94\x3f\x4b\x43\x81\x37\x14\x36\x00\x03\x0f\x30\xf0\x00\x03\x8f\x10\xc0\xc0\x03\x0c\x3c\xc0\xc0\x3f\xf3\x13\x08\x60\xe0\x81\x2e\x00\x06\x1e\x60\xe0\x5f\x28\x15\x03\x0c\x3c\xc0\xc0\xbf\x32\x92\x07\x18\x78\xa0\xd0\xf5\xa6\x50\x80\x81\x07\x18\xf8\x17\x4a\xdb\x00\x03\xff\xa2\x00\x6a\x01\x06\x1e\x60\xe0\xad\xca\x00\x8c\x16\x60\xe0\x01\x06\xfe\x65\xb0\x59\x80\x81\x5f\x0b\x2e\x0b\x30\xf0\x00\x03\xcf\x1f\xe0\xbc\xeb\xc9\x79\x01\x06\x1e\x60\xe0\x5f\x5f\xb0\x26\xc0\xc0\x3b\x6a\x51\x73\x0d\x30\xf0\x08\x60\xe0\x01\x06\xfe\x35\xc1\xc0\xbf\xef\x6f\xaf\x0c\x06\xfe\x7d\x7f\x1b\x60\xe0\x5f\x23\x0c\xfc\xfb\xfe\x76\x07\x15\x00\xc0\xc0\x3f\x97\x85\x00\x18\x78\x80\x81\x7f\x34\x62\x7d\xe1\x30\xf0\x01\x21\x59\x28\x6f\x20\xad\xae\x75\x31\xf6\x6b\xe1\x58\x01\x7c\x1e\xc0\xe7\xed\xa1\xbe\x0c\xb8\xe0\x30\xa2\x01\xb9\xc3\xd9\x43\x6b\x3f\x8a\x6d\x1c\xd7\x13\x5b\x4d\xd3\x5a\x27\x01\x04\x7f\xd6\xd3\x18\x40\xf0\x9f\x2f\x08\xfe\xa3\x08\xe7\x00\x82\x0f\x20\xf8\xc0\xd5\x00\x04\x1f\x40\xf0\x97\x41\x0e\xb3\x82\xe0\xb7\xde\x31\x80\xae\xd6\x99\xae\x66\xbd\x09\xce\x44\x77\x4b\xbb\x7f\x3e\x72\x26\x86\xe7\x76\x59\x78\x3d\x19\x21\x1e\x47\xa0\x84\x8c\x10\xcf\x30\x23\xc4\xf2\xf5\xcf\x90\x11\x02\x32\x42\xbc\x94\x8c\x10\xf3\xef\x8e\x3a\x79\x06\x32\x42\x40\x46\x08\xc8\x08\x01\x19\x21\xc4\x03\x4e\x86\x46\x7b\x90\x11\x02\x32\x42\xa8\x07\x32\x42\x40\x46\x08\xeb\x1c\x47\x90\x11\x02\x32\x42\x40\x46\x08\xe3\x81\x8c\x10\xe5\x03\x19\x21\x20\x23\x84\x7c\x9e\x3e\xcd\x01\x64\x84\xe8\x3c\x55\x90\x11\x02\x32\x42\x2c\x73\x61\x21\x23\x04\x64\x84\xb0\xea\x85\x8c\x10\x90\x11\x02\x32\x42\x40\x46\x88\x57\x9a\x11\x62\x41\x3b\xd6\x10\x32\x42\x40\x46\x88\xe7\x90\x11\xa2\x1b\x9d\x43\x46\x08\xbb\x10\x64\x84\x80\x8c\x10\x00\xcf\xfb\xa4\x27\x10\x64\x84\x00\xba\x80\x8c\x10\x90\x11\xe2\x85\x52\x31\x64\x84\x80\x8c\x10\xaf\x8c\xe4\x21\x23\x04\x50\xe8\x7a\x53\x28\x64\x84\x80\x8c\x10\x2f\x94\xb6\x5f\x45\x46\x88\x62\x76\xe6\x99\x21\xf4\x9c\xb0\xaa\x21\x23\x04\x64\x84\xb0\x2a\x03\x5c\x6a\xc8\x08\x01\x19\x21\x5e\x06\x9b\x5d\xeb\x8c\x10\xaf\x87\xcb\x42\x46\x08\xc8\x08\xc1\x1f\xe0\xbc\xeb\xc9\x79\x21\x23\x04\x64\x84\x78\x7d\xc1\x9a\x90\x11\xc2\x51\x8b\x9a\x6b\xc8\x08\x81\x20\x23\x04\x64\x84\x78\x4d\x19\x21\x7e\xee\x6f\xa9\x8c\x10\xdb\xcb\xce\x08\xf1\x73\x7f\xeb\x05\x66\x84\x80\x7c\x10\x2d\x77\xdc\x9f\x3b\xa5\x84\x84\x7c\x10\xcf\x65\x21\x20\x1f\x04\xe4\x83\x78\x34\x62\x85\x7c\x10\x5a\xcd\x90\x0f\x62\xfd\x20\xad\x21\x1f\xc4\x8a\x91\xb3\xd7\x15\xe2\xf5\x55\xe5\x83\x68\x3c\x8d\x21\x1f\xc4\xf3\xcd\x07\xf1\x28\xc2\x39\xe4\x83\x80\x7c\x10\xc0\xd5\x00\xa4\x1f\x40\xfa\x3b\x11\x29\x80\xf4\x03\x48\xff\x73\xe4\xf2\x00\xd2\xff\x0c\x41\xfa\x97\xaf\x14\x04\x90\x7e\x00\xe9\x7f\x29\x20\xfd\xf3\xef\x8e\x3a\x79\x06\x40\xfa\x01\xa4\x1f\x40\xfa\x01\xa4\x5f\x3c\xe0\xf7\x65\xb4\x07\x20\xfd\x00\xd2\xaf\x1e\x00\xe9\x07\x90\x7e\xeb\x1c\x47\x00\xd2\x0f\x20\xfd\x00\xd2\x6f\x3c\x00\xd2\x5f\x3e\x00\xd2\x0f\x20\xfd\xf2\x79\x7a\xe4\x79\x00\xe9\xef\x3c\x55\x00\xd2\x0f\x20\xfd\xcb\x5c\x58\x00\xe9\x07\x90\x7e\xab\x5e\x00\xe9\x07\x90\x7e\x00\xe9\x07\x90\xfe\x57\x0a\xd2\xbf\xa0\x1d\x6b\x08\x20\xfd\x00\xd2\xff\x1c\x40\xfa\xbb\xd1\x39\x80\xf4\xdb\x85\x00\xa4\x1f\x40\xfa\x01\x31\xf5\x49\x4f\x20\x00\xe9\x07\xba\x00\x90\x7e\x00\xe9\x7f\xa1\x54\x0c\x20\xfd\x00\xd2\xff\xca\x48\x1e\x40\xfa\x81\x42\xd7\x9b\x42\x01\xa4\x1f\x40\xfa\x5f\x28\x6d\xbf\x0a\x90\xfe\x62\x76\xe6\x99\x21\xf4\x9c\xe0\x83\x01\xa4\x1f\x40\xfa\xad\xca\x00\x2a\x18\x40\xfa\x01\xa4\xff\x65\xb0\xd9\xb5\x06\xe9\x7f\x3d\x5c\x16\x40\xfa\x01\xa4\x9f\x3f\xc0\x79\xd7\x93\xf3\x02\x48\x3f\x80\xf4\xbf\xbe\x60\x4d\x00\xe9\x77\xd4\xa2\xe6\x1a\x40\xfa\x11\x80\xf4\x03\x48\xff\x6b\x02\xe9\xff\x28\x90\xf9\x97\x80\x90\x3f\x37\xe4\x75\xa1\xcf\xd2\xdd\x01\x67\x9d\x61\xab\x48\x81\x17\x3e\x37\x5c\xf8\x8b\x43\x0b\x6f\x76\x33\x6f\xdf\x1e\x4d\xee\x5f\x66\x48\xbc\xe9\x5a\xd6\x61\xe8\x5d\x4d\x83\x4c\x22\xe9\xec\x5e\x64\x85\xe9\x97\x6e\x21\xed\xe6\xd4\x61\x4f\xc9\xe2\xeb\x0f\xfb\xdd\xdc\xd7\x79\x21\xb8\x9b\x6b\x5d\x15\x8e\xe8\xb0\x27\x3d\x91\x49\x42\x9b\xda\xb7\xdc\x44\x39\x30\x20\x47\x7e\xa2\xdd\x0c\xdd\x4b\x9b\xe0\x66\x74\x43\x97\xd2\xbf\x15\xe1\x70\xe6\x39\xe8\x04\x62\x3a\xff\x36\xeb\xb8\xbf\x32\xcd\x8c\x3b\x1f\x72\xef\xec\x9b\xae\x05\x62\x77\x21\xb8\xdf\xd9\x7a\xe3\x42\x5a\x5d\x22\xd6\xea\x12\xd1\x56\x17\xc4\x5b\x9d\x0f\x71\x55\x4c\x68\x1b\x36\x47\xaf\xc3\xce\x6d\xc3\x3b\x9d\x6d\xd9\x66\x05\x39\x6d\xae\xbd\x0b\xa4\xf3\x62\xfb\xb0\xc9\x1d\xa6\xba\x1d\xbd\x24\xa2\xbe\x37\x52\xdf\x3c\x02\xde\xa6\xeb\x48\x98\xd1\x71\xa3\x4d\x92\x58\xb9\x2c\xd1\x7d\x8e\x35\x91\xc2\x9a\xea\xe5\x7a\x28\x36\x08\x32\x8f\x38\xb9\xb6\x44\x3c\x07\x0a\x63\x33\x9a\x61\x33\x85\x2e\x0a\x36\xc8\xe5\x5f\x0b\xc9\x6e\x61\xe4\xbb\x22\xc8\x7a\x89\x20\x76\x55\x23\x22\x12\xb1\xcc\x13\x9c\x8f\xf1\x94\x53\xaf\xb8\x23\xbe\xe1\xe0\x0c\x6f\xea\x0a\xd1\x20\xf3\x53\xbc\x8b\xde\xe4\xd9\x14\xcb\x52\xa0\x96\x34\x9f\xb5\x51\x4b\x36\x60\xc2\xcd\x8f\x19\x28\xc9\x53\x54\xa1\x9b\x22\x5a\x23\xb0\x97\x68\xc9\xd0\xb4\x9a\x06\x26\x41\xdb\x85\x54\x94\x72\xd9\x75\xda\x4f\x31\xa3\x5d\xf1\xc3\x13\x9b\x4a\x35\x9c\xa6\xfd\x38\x8d\x12\x2c\x60\xf1\x98\x40\x51\xf6\x91\x6d\xbb\x03\x97\x36\xb4\x8a\x5f\xe7\x21\x3a\xd6\xff\xf2\x02\xe3\xdd\x03\x0d\xf2\x18\x79\xf7\x28\xc1\x79\x3f\x20\x19\xee\x53\x32\xf1\xbf\x05\x24\x49\xf6\xde\xee\xfc\xfc\xe1\xe3\x7f\x58\x65\xa2\xf4\xee\x5d\x3f\x4a\xaf\x38\x96\xc1\x15\x3b\x5f\xae\x38\x09\xec\x0d\x7b\xdb\x5b\x3b\xef\xd0\x87\xf7\xef\xdf\xbe\x2f\x97\x55\xd3\x78\xea\xe3\xd1\xe9\xa2\xa3\x19\x57\xf0\x04\xd1\x99\xf2\xd7\x26\x9b\x61\xaa\x8c\x85\xa1\x13\x3d\xb1\x59\xb3\x5c\xea\x96\xbb\xa0\xf8\x95\x83\xd4\xc1\x0c\x4d\x73\xf5\x22\x18\x81\x4b\x86\xd3\x6b\x41\x8c\xab\xd1\xb3\x99\xdf\xaf\x13\x58\x9c\xc6\x0a\xbd\x34\xc3\xd7\xd1\xb7\xbd\xd6\xe0\x58\x45\x0b\x8f\x05\xd8\xe6\x00\x36\xd1\x02\x38\xeb\xf7\x7a\x1b\x95\xb7\x40\xb5\xcd\x06\xd6\x36\x1f\x5c\x9b\x61\x33\x7e\xfb\xd6\x1e\x62\x75\xe0\x80\xc0\xa6\x7b\x40\x08\xb6\x3b\x07\x56\x5a\x85\xca\xaa\x98\x56\xf5\x88\x56\x8d\xb8\x54\x0d\x80\x49\xcd\xb0\x47\xb3\x41\xb5\xbd\x66\xfc\xb1\x67\x03\xd5\xb6\x82\x59\xd0\x28\x5e\x47\x08\x32\x89\xd9\x02\x5f\xea\x0a\x2d\x64\x6c\x8d\x4a\x43\x5a\x1b\x25\x94\x4d\x57\x3c\x19\x59\x29\xf8\xbd\x80\xdf\xcb\xcb\xbd\x60\x76\xf0\x7b\x91\x05\xd7\xce\xa7\x74\x11\x6f\x10\xff\x49\xbd\x41\x2c\x67\x10\xf0\x05\x41\xe5\xf0\xc1\x17\xe4\x71\x7d\x41\xea\xfc\x3f\xfa\xdb\x5e\x26\xb0\x08\xb7\x85\x2b\xc8\x06\xfa\xd5\xa7\x38\x64\x54\xae\xf0\xa4\x6e\xa2\x7c\x3c\x1d\xf5\x03\x32\xd1\xa0\xa5\x4c\x58\xac\xc1\x28\x26\x23\x1d\x69\x4d\xd4\x3d\x10\xf9\x58\xb8\x8d\x32\x0a\x06\x69\x46\xee\xa2\x10\x67\x83\x20\x26\xd3\x50\xbe\x6c\xc4\x9e\x99\xc9\x05\xe5\x51\x02\x20\x38\xf1\x74\x00\xe9\x99\x27\x49\xd2\xc2\x68\x3c\xeb\x10\x00\xf2\xb1\xbf\x5d\x57\x6a\x79\x19\xe2\xfc\x69\x4e\x38\x10\xa7\x39\x1d\x97\xe4\x16\x17\xd8\xe0\x8b\x41\x05\x16\x6a\x8b\xc6\xd5\xd0\xfc\x75\x5e\xea\x42\x74\xb6\xd1\x14\x4e\x57\xde\xdc\x5e\x57\xde\x8b\x73\xbb\x5a\x16\x98\xd7\x2a\xf1\x98\xd6\x88\x58\x9d\x6d\x2d\x02\x7f\xb1\x5e\xde\x5a\x4b\xcb\xc7\xba\xb4\x9c\xd0\xf3\x7a\x88\xbd\xd6\x3c\xd3\x8f\x94\xe8\xf6\xf5\xa6\xb3\x5e\xd7\x14\xbf\x8f\x86\x2b\xb6\xf6\xa7\xf1\xea\xf0\xb7\x56\x9b\xa3\x77\xbe\x64\xce\xcb\x43\xd6\x5a\xa3\x85\x5d\x71\xfa\xe6\x05\xf8\xf5\x42\x5e\x9b\xb3\x0a\x02\x2d\x1e\xa4\x5d\x3c\xfa\x96\xce\x44\x5e\x32\xf3\x7c\xbd\x5c\xad\x55\xf0\xd3\x5d\x87\x97\xe6\x38\xbc\x34\xb7\xe1\x85\x9c\x86\xe7\x71\x19\xee\x94\x03\xb0\x58\xb4\xe6\x7c\x7f\x8e\xf8\xc7\x86\x2f\xb5\x6f\x4a\x95\xed\xac\xe2\xf9\x4c\x4e\xcb\x4b\xbb\x14\xb4\xf9\x2f\x3f\x92\xec\xba\xae\x12\x9c\xc9\xd7\x57\x85\x4e\xf8\x7a\xb8\xfc\x0a\x20\xff\x56\x2b\x00\x2e\xa6\x10\x94\x8c\xd9\x4a\xdd\x30\x8b\x19\xe1\x05\x91\x46\x2d\xc8\x7d\x07\x1b\x76\xfe\x90\xe2\xe2\x36\x70\xcc\x4d\x53\xba\x51\xc9\xf0\x52\xf1\xac\xfc\x4f\xa9\xed\x9e\xa2\x5b\x45\xac\xb2\x7e\x9a\x9e\x15\x39\xa0\x0a\x9f\x97\xaa\xc9\xe4\xd1\x96\xa1\x66\x82\x25\x29\x76\x4c\x09\xc5\xb9\x67\xf9\xf9\x1b\x8a\x3e\x13\x3f\xfc\xd5\x4a\x1d\x3c\x1f\x6d\x4b\x9a\x9e\x7d\x6f\x84\x85\x6b\x84\x63\x5b\x74\x0c\x0f\x78\xde\xbb\xa3\x4e\x9e\x71\x67\x82\x3e\x24\xe8\xe4\xf4\x52\x89\x4d\x5c\x1e\xf2\x27\x78\x13\xf9\x28\xc1\xf7\x88\x89\xac\x3c\x21\xf4\x7d\x14\xc7\x4c\xda\x12\xd3\x8b\x43\xe4\x5f\xe7\x38\x43\x3e\xba\xfd\x48\x91\x06\x1e\xb6\xba\xb8\x09\xf1\x66\x86\x64\xd6\x7e\xc8\x33\x1f\x89\xc5\x14\x03\x98\xf8\xb7\x62\x8c\xb2\x6e\x39\x1c\xf4\xdf\x64\xc4\x5d\xa2\x50\xc8\xbd\x3b\xca\xc6\x8c\xf1\xa1\x11\x0e\xfc\x29\xc5\xbc\xe9\xbe\x1a\x06\x8a\x28\x8a\x26\x93\x69\xee\x8f\x62\xbc\x89\x28\x11\x59\xb4\x45\xab\x09\x66\xdb\x84\x88\x41\x22\x3f\xc8\x08\xa5\x85\xab\x8b\x4a\x98\x43\xb5\xf6\x66\x01\x05\x73\x15\x6f\x01\x05\x73\x7d\x52\x43\x4e\x4a\xee\xb5\x22\x4f\x16\x0e\x55\xd1\xfd\x35\x33\x7c\x17\xb1\x19\xf8\x3d\xa2\x39\xc9\x1e\x3e\x47\x93\x28\x57\x1e\x60\x93\x28\x39\xc7\x7e\x58\xfa\x05\xf0\x5f\x97\x18\xdf\xf2\x34\x10\x6c\xb5\x9b\xd7\x72\x59\x2a\xae\x1d\x73\x05\x5c\x58\xe9\xbf\xc1\xff\x69\x7d\xfc\x9f\x66\x4d\x07\xda\x10\x90\x63\xad\xf2\xfa\x39\x4c\x95\x22\x54\x4b\x58\x03\x32\xe2\x1a\xe6\xc5\xe1\x8b\xa3\x6b\x1c\x3c\x04\xb1\xed\xed\x9a\x66\xf8\x22\x77\x38\xa9\xe3\x6f\xda\x86\x2b\x9f\x6a\x90\x8b\x4e\x0e\x83\x7b\x3f\xca\x3d\x3a\x9e\xe6\x21\xb9\x37\x48\x6d\x91\x00\x8c\x19\xf8\x1a\x67\x2f\x8c\x27\x8f\x2c\x49\x8b\x71\x22\x3f\xa6\xa4\x4c\xd9\x69\xb6\xc0\x11\xfc\xa6\xa3\x38\xa2\xe3\xfa\xe0\x8e\x26\x83\x7b\xf9\xd4\x43\xb6\x99\xa3\x5f\x6a\x54\x49\x85\xe0\x9d\x7d\x71\x2b\x68\xca\x0e\x69\xca\xab\xbd\x4e\x4a\x1b\xa3\x79\x53\x79\x33\x63\xad\x9d\x86\x23\x63\x67\x0a\xe7\x0f\x36\x8e\x3d\x77\xfe\x3f\xc7\x67\x75\xf1\x2d\xdd\x96\x75\xdd\xe2\x6e\xaa\x69\x0a\xf7\x76\xab\x09\x76\xdd\x25\x3d\x2d\x0f\xee\x5e\x5d\x7a\xdc\x6a\x56\xdd\x9a\xca\x6e\xf1\x43\x6d\x25\xb7\xf8\x41\xaf\xc3\x89\xbf\xb8\x9a\x98\x1f\x57\xec\x4b\x53\x2c\x8f\x16\xfc\xe7\x4a\x04\x5d\xe9\x5b\x63\xe4\xcf\x2c\x71\x3f\xf3\x44\xfd\xd4\x25\x6b\xd6\x62\x81\xb6\xb7\xac\x58\x80\x7a\x10\x4f\x13\x83\x12\x42\x84\xea\x40\x52\xcb\x8e\x7c\x3e\xbc\x3a\x3b\x3f\xfa\x7c\xba\x7f\xe8\xec\x85\x91\x73\x3a\x8e\x46\xec\xbf\x49\x34\x61\x2b\x10\xf4\x29\xb1\xd2\xeb\xce\x16\x78\xe4\x5a\xf8\xd9\x22\x7f\xde\x9b\x05\x20\xf2\xa7\x7e\xaa\x5e\x73\x90\x54\x35\xa0\x0d\x35\x84\xb4\x2d\x2d\x97\xbf\xed\x1f\xbf\x3e\xa9\xfc\x6b\x32\xf9\x7f\xdc\x5a\x69\x22\xff\x47\xcd\xe3\xef\x88\x39\x5c\xda\xc2\x3a\x92\xff\xaf\xcb\xca\xd2\x9a\xa5\x7d\xf7\xee\xed\x4a\xd7\xf6\xe2\x51\x17\xd7\x52\xbc\xd7\x4c\x55\x55\x86\x6c\xa8\xdc\x8a\x13\x6c\x68\xb5\x92\x9b\x9e\x3d\xdc\x37\x5c\x70\xde\x3a\x01\xd2\xfe\x84\x1d\xe0\xa7\x49\xfc\xa0\xa4\x96\xce\x97\x43\x56\x54\xab\xa5\x34\x73\x6e\x98\xd5\x17\xf1\x2a\x1b\xd6\x34\x89\x90\x95\xad\x49\xe5\x8d\x0a\x5b\xf9\x85\x87\xad\x38\x32\xe7\xcb\x40\xc9\xfa\xf4\xf9\xd5\x48\xca\x5a\xb8\xe1\x1a\x88\x8f\x1a\x88\x90\xd5\xa3\x9d\x17\xfd\x62\x97\x27\x75\xbf\x2c\xae\x50\x73\x60\x31\xcf\x52\x91\xa3\x23\x73\x81\x95\x34\x58\x20\xc5\x47\x2d\x81\x79\x6f\xb7\x0a\xa6\x55\x46\xb6\x76\xdd\x08\xc2\xa1\xc9\xda\x3d\xe2\xc7\x16\x88\x7c\x07\xa9\x35\x51\x59\x35\xa8\x76\x11\x43\xab\xee\x89\x53\x24\xc8\xff\x0b\xa3\x90\x24\x6f\x72\x44\xa7\x29\x3b\x52\x4b\x9b\x47\xa8\xea\xe4\x2b\x88\x1e\x70\x2e\xda\x43\xbe\xee\x71\x88\xfc\x24\x34\x7f\x91\xe6\x7b\x14\xd1\x42\xfb\x6a\xda\xad\x2a\xce\x43\x9a\x11\x4b\xd7\x77\xbc\x3c\x3b\xd6\xb0\x25\xaa\xad\x55\xf9\x53\x45\xb1\x32\x16\xd5\x1a\x26\x2d\xf4\x55\xfc\x35\x3b\x26\xf8\x11\xdc\x53\x6d\x49\x46\x59\xa8\xea\xcb\x8e\xef\x22\xb7\x92\x66\xfe\xbc\x42\x55\x35\x44\x41\x83\x22\x0b\x8f\xb0\xda\x09\x3f\xa6\x88\x8a\x6b\xd9\x26\x0a\xc6\x38\xb8\xe5\x5a\x42\x45\x4c\x5a\x2a\x09\x65\x73\x62\x95\xa8\xa0\x3a\x73\x0e\x42\x12\xd0\x41\x86\xaf\x71\x86\x93\x00\x0f\x7c\x2e\x5e\x7b\xfe\x34\x1f\x27\xfc\xff\xff\x1e\x48\x58\xd0\x51\x8c\xf5\x9c\x72\xc5\x44\xd0\xc1\x46\x9a\x61\xde\x36\x8d\x72\x4c\x2d\x13\x6c\x43\x66\x67\x8d\xaa\xff\x2c\xc6\x2e\x73\xb3\x1c\x98\x68\x31\xcf\x94\xce\x9d\xb9\x74\x5a\x12\x45\x2a\x7a\x90\x7e\x28\xa2\xb4\xa4\x0d\xdc\x6f\xc5\xa1\xe1\xe6\x16\xa5\x39\x3f\xfa\xd7\x34\xba\xf3\xe3\x42\x6f\x5e\xfa\xc7\x8a\x53\xbc\xea\x44\x85\x9a\xbc\x17\xc5\x78\xd5\xe2\xda\x1f\xdd\x69\x57\x2d\x61\x34\x70\x14\x3a\x38\x3f\xda\xbf\x3c\x32\x7f\xfb\x7a\x76\x68\xfc\xe6\x8e\xdc\xad\x78\x87\xca\xab\xad\x1a\x6b\x99\x97\x86\x46\x21\x3e\xe2\x16\x0d\xba\x8b\x4e\x98\x38\x2d\x56\x4a\xcd\xf1\x39\xbe\x8b\xf0\x7d\x65\x14\xe5\x08\x82\x38\xc2\x49\x2e\x48\x70\xd7\x62\xb2\xba\x4d\xad\xe1\xa0\x2a\x4b\x74\xf5\x5f\x91\x12\x84\x90\x1c\xcb\x05\x18\xdc\x6d\x0f\xb4\x81\x2f\x2f\xae\xab\x31\xb3\xd9\xb2\xc2\x42\x5b\x93\xa2\xae\x20\x77\xe8\x2b\xc9\x98\x3b\xf7\x09\xb4\xe4\x64\xf7\x4b\x0f\x0a\x6c\xa5\x19\xa0\x8b\x95\xd0\x45\x5b\xf0\x44\x13\x2b\x97\xec\xc5\xe1\x69\x5b\x4a\x35\xb2\x21\x03\x07\x6e\x16\x2f\xe6\x25\xd3\xed\x8a\x83\xa9\x80\x8a\x9f\x88\x8a\x57\x17\x24\xf6\xf8\x69\xc1\x97\x95\x10\x7f\x79\xa1\x64\xc0\xd0\xd7\x90\xe4\x17\x88\x7a\x6b\x8c\x30\x37\x8e\x61\x15\x8b\xb1\x2c\x9a\x5c\x55\x18\x04\x50\xe8\x1a\x52\xe8\x0a\x22\x36\x1e\xff\x34\x9e\x43\xb9\xd8\x9a\x3e\x5a\xec\xaa\x0b\xbe\x0b\x57\x90\x3e\xba\x0c\xa0\x5a\x01\xd5\x03\x6d\x2f\x31\x7b\xb4\x19\xea\xb6\x6e\xe9\xa3\x8b\xd9\x99\x67\x86\xd0\x73\x4a\x1f\x6d\xe7\x4d\x7a\xac\xfc\xd1\xd5\x76\x85\xaf\xd8\x98\xd0\x7c\xaf\x5d\x83\xb4\xd9\x5e\xa4\x6f\x7b\xe3\xf5\xe9\x5d\x50\x6d\x30\x99\x21\xf7\xf4\x8c\x59\xa5\x21\x55\x34\xa4\x8a\x9e\x29\x55\xf4\xb2\xb8\x2c\xff\xd7\x5f\xb5\xe1\x93\x8b\x72\xd9\x22\x2c\x79\x21\x26\x0b\x22\xe4\x23\xb0\x59\x23\x4d\x3f\x70\xd9\xa7\xe2\xb2\xc6\x32\xa0\x47\x63\xb2\x95\x66\x05\x1b\x53\x6e\x0c\x5d\xf9\xd8\xec\x8c\x92\x37\xec\x4d\xa6\x39\xd7\x84\xee\x19\x7c\xa3\x2c\x35\x23\x3b\xd5\xab\x96\xc6\x30\x79\x24\xec\x95\xc6\x30\xf1\x00\xe7\x05\xce\x3b\x13\xe7\xad\x8f\xf8\x01\xb0\x7a\x00\xab\x7f\xa9\xc1\x9a\x1d\xc0\xea\xad\x8d\xf1\xfb\xe5\xe5\x99\xdc\x1c\x73\x38\x06\x76\xad\xc4\xe5\x9d\x78\x59\xb2\xf7\xba\x98\x50\xcd\x67\x4e\x2b\x5d\xba\xcc\x7d\x28\xea\x36\xe3\xdc\x9e\x4c\x72\xe8\x94\x4a\x6b\x11\x58\xfe\xe8\x49\x61\xf9\x91\x85\xcb\x8f\x00\x98\x1f\x95\xc3\x07\x60\xfe\xc7\x05\xe6\xd7\x37\x5b\x0d\x48\xff\x2f\xfd\x77\x2b\x03\xe9\xff\xa5\xff\x0e\x40\xfa\x5f\x1f\x48\xff\x2f\xfd\x77\x1d\x14\x00\x00\xd2\xff\x5c\x16\x02\x40\xfa\x01\xa4\xff\xd1\x88\x15\x40\xfa\xb5\x9a\x01\xa4\x7f\xfd\x70\x86\x01\xa4\x7f\xc5\x70\xc6\xeb\x0a\xf1\xfa\xaa\x40\xfa\x1b\x4f\x63\x00\xe9\x7f\xbe\x20\xfd\x8f\x22\x9c\x03\x48\x3f\x80\xf4\x03\x57\x03\x90\x7e\x00\xe9\xef\x44\xa4\x00\xd2\x0f\x20\xfd\xcf\x91\xcb\x03\x48\xff\x33\x04\xe9\x5f\xbe\x52\x10\x40\xfa\x01\xa4\xff\xa5\x80\xf4\xcf\xbf\x3b\xea\xe4\x19\x00\xe9\x07\x90\x7e\x00\xe9\x07\x90\x7e\xf1\x80\xdf\x97\xd1\x1e\x80\xf4\x03\x48\xbf\x7a\x00\xa4\x1f\x40\xfa\xad\x73\x1c\x01\x48\x3f\x80\xf4\x03\x48\xbf\xf1\x00\x48\x7f\xf9\x00\x48\x3f\x80\xf4\xcb\xe7\xe9\x91\xe7\x01\xa4\xbf\xf3\x54\x01\x48\x3f\x80\xf4\x2f\x73\x61\x01\xa4\x1f\x40\xfa\xad\x7a\x01\xa4\x1f\x40\xfa\x01\xa4\x1f\x40\xfa\x5f\x29\x48\xff\x82\x76\xac\xe1\xcb\x00\xe9\xef\xba\x98\x92\xcf\x0a\x45\xe7\x6c\xab\xd9\x8e\xd8\xb1\xf0\xb2\xce\x40\x30\xa9\x9f\xe5\x1e\xb9\x5e\xa6\xbf\xef\xcc\xd6\x7d\xcc\x7f\x96\xee\x1b\xdf\x39\x35\xa4\xec\x40\xeb\x62\x7e\x9c\x79\x72\xe7\x30\x0f\x75\x9e\x60\x01\xb4\x71\xf9\x90\x16\xbe\xac\x92\xce\xc5\x1f\x47\xf2\xdf\x90\x0e\xe2\x55\xa4\x83\xe8\x76\xa2\x42\x3a\x08\xbb\x10\xa4\x83\x80\x74\x10\x80\xcd\xfb\xa4\x27\x10\xa4\x83\x00\xba\x80\x74\x10\x90\x0e\xe2\x85\x52\x31\xa4\x83\x80\x74\x10\xaf\x8c\xe4\x21\x1d\x04\x50\xe8\x7a\x53\x28\xa4\x83\x80\x74\x10\x2f\x94\xb6\x5f\x45\x3a\x88\x62\x76\xe6\x99\x21\xf4\x9c\x80\xaa\x21\x1d\x04\xa4\x83\xb0\x2a\x03\x50\x6a\x48\x07\x01\xe9\x20\x5e\x06\x9b\x5d\xeb\x74\x10\xaf\x87\xcb\x42\x3a\x08\x48\x07\xc1\x1f\xe0\xbc\xeb\xc9\x79\x21\x1d\x04\xa4\x83\x78\x7d\x61\xc1\x90\x0e\xc2\x51\x8b\x9a\x6b\x48\x07\x81\x20\x1d\x04\xa4\x83\x78\xd1\xe9\x20\x48\x88\x79\x68\x84\x77\xb7\xdd\xdf\x7e\x2f\x32\x40\xb4\xfb\xbb\xcf\xed\x18\xc4\x4f\x6e\xd1\x60\x98\xd8\xd8\xe9\xec\x30\xf7\xe8\x03\xcd\xf1\xa4\x32\x6f\xd6\xc5\x48\x98\x6e\x55\x0c\xb3\xe9\x30\xcc\xe3\x5e\x49\x32\xf1\x13\xff\x06\x67\x16\x8b\x98\x90\x10\xef\xa2\x73\x46\xd4\x41\x14\xbb\x92\x04\xcc\x4e\x14\xbc\xdf\x61\x42\xbd\x69\x4a\xf3\x0c\xfb\x93\x59\xc6\xf5\x91\x7a\x7c\xc9\x54\x25\x2b\x1e\x6e\xb5\x72\x31\x86\x61\xef\x8f\xe9\x08\x1f\x9e\x5c\x7c\x55\x63\xe8\xd5\x50\xa4\xdc\x08\xaa\xa7\x82\x40\xdf\xcb\xc0\x9e\x32\x9c\xe7\xeb\xe1\x59\x95\x66\x45\x31\xad\x0e\x2f\x0f\xd2\xe6\x7a\x8a\xb0\xa0\x6a\x3d\x16\xe5\x3b\xa6\xb2\x61\x41\xeb\x12\x37\x2c\x48\xa7\xb3\xac\x45\xd1\xe6\x01\xc9\xf0\x75\x14\xe3\x5d\xf4\x3f\xa2\x96\xef\xdf\xfb\xd2\x3b\xe1\x90\x4c\xfc\x28\xf9\xf1\x63\xf7\xfd\x5b\xf4\xbd\x3c\xd0\x70\x96\x91\x4c\x13\x90\x02\x3f\x18\x63\xbd\x40\xc1\x00\x44\xa0\x26\xfa\xe5\x97\x8f\xef\xac\x03\x5e\x3c\x21\x4e\x22\x3f\x16\xef\xb5\x23\xfe\x87\x7e\x7c\xc7\xc4\xd7\x18\x6d\x4c\x88\x16\xa1\x39\x8a\x92\x90\xf5\xf7\xf8\x6c\x3f\x0c\xd9\xc1\xf7\xe3\x87\xde\xfd\x93\x0b\xb6\x73\x70\xa6\x33\xbe\x6b\x92\xdd\xfb\x59\x88\xfa\xe8\xea\xea\xec\xf8\xf3\xe7\xfd\xf3\xab\xab\x83\xcf\x5f\x2f\x2e\x8f\xce\xaf\xae\x0e\x4f\x2e\xae\xae\x5c\x23\xb9\x26\x59\x80\xaf\x0a\x7a\xb1\x3a\x99\x66\x64\x82\xf3\x31\x9e\x52\xb4\xfb\xcb\xce\x7b\x2d\xce\x4c\xf0\x4b\xab\x8b\xbb\x26\x87\x92\x15\x45\x89\xe7\x87\x61\xd6\xf7\xb3\xd4\xef\x34\xe1\x6f\xb7\x5e\xcc\x34\xa9\x29\x48\x3f\xbc\xe6\xe1\xf7\xd7\x73\xdc\x5f\xcf\x2e\x2e\xcf\x8f\xf6\xbf\x5c\x71\xc4\x86\xa3\xf3\xe5\x0f\xbe\xf5\x92\x5f\x03\xda\xb7\x28\x5b\x57\x67\x76\xb5\x86\x15\x32\xc1\x82\xaf\x39\x00\xd5\xaa\xe0\x6b\x56\xd8\x5b\x0b\xd0\x9a\x08\xef\x15\x7d\xca\x48\xcc\x2e\xeb\xe2\x8b\x42\x48\x9d\xf8\xdf\xbe\x26\xfe\x9d\x1f\xc5\xfe\x88\x9d\xf9\xdb\xfc\x33\x15\x0a\xdc\x41\x75\xd1\x30\x69\x6d\x8a\x8b\xaa\xe6\xa2\x65\x0d\xe4\x54\x55\x63\x61\x25\x76\xe1\xb0\xf9\xbe\x7b\x42\x42\xfc\x99\xd5\x78\x78\x72\x51\xbd\xe9\xfe\x8f\x12\x54\xd1\xb0\x27\x08\xc4\xe3\x7d\x08\xb2\x28\x8f\x02\x3f\x96\xfe\xed\x8b\xc4\x5f\xda\x63\xaa\x5e\x38\x41\x1d\x33\xa3\x3a\xc6\x01\x8d\x26\xb6\x8d\xae\xde\x6c\x8d\x1f\x5e\xa2\x76\x54\xd3\x94\x18\x11\xf5\x1a\x62\x9f\xd4\xbb\x70\x68\x75\x1e\x45\x3a\xa5\x18\xc9\x13\x05\x1d\x9e\x5c\xf4\x87\x8d\x9a\x90\x19\x4c\x1e\x9e\x7e\x24\x72\x76\x31\xac\xea\x05\xf8\x58\x39\x55\x72\xe4\xb5\x1f\x86\xb4\xe5\xba\x2c\x37\xdd\x74\x77\xde\xd7\xdc\x74\xdf\xeb\xb7\x65\x6e\x1e\x41\xff\x40\xc3\x9e\xd8\x0e\x51\x3a\xec\x6d\xf2\x09\xd5\x99\xd3\xa6\x9b\x39\xf1\x92\x1c\x50\x4a\xfc\x73\x80\xf3\x60\xa0\xa4\x56\xf9\x56\x5d\x7e\xe8\x5d\x20\x7e\xa9\x5e\x8b\x7a\xe8\x9f\x65\x87\x9a\x0c\x01\xa9\xb2\x00\x84\xb6\xde\xba\x55\xf5\xf0\xde\x80\x18\xb0\x2e\x2b\xaa\xf6\xca\x25\x65\x96\xaa\x3c\x83\xc1\xd6\x42\x18\x54\xaa\x33\x79\xae\xaa\x70\x82\xf3\x2c\x0a\x6a\xfa\x67\x54\x38\xab\xbe\x88\xed\xd3\x5d\x4b\xf8\x30\x4b\x18\x1a\x25\xeb\x95\x53\xa1\xe4\x54\x1b\x7d\xe8\xaa\x36\xaa\x81\x74\xf0\x0c\xb0\x86\x6c\x9a\x0c\xbe\x71\x54\x57\xda\x8f\x49\x70\x5b\x9d\x31\xf9\xd6\xb3\xdf\x96\xf8\x0d\x96\xb5\x4d\x43\x43\xbc\x8e\x6e\x3c\xd1\x0d\xfd\x4b\xbd\x7d\x46\xd9\x01\x3b\xcc\x75\x9a\xf1\xec\x9b\xbe\xa8\xaa\xa9\x0e\xf3\x3e\x5f\x8d\xde\xf7\x1a\x47\xc3\xf1\x3c\x58\x65\x06\x5d\xb4\xcf\x90\x80\xd6\xfe\x14\xc5\xf8\x34\x3b\xb0\x50\xfb\x5b\x86\x10\xa8\x0b\xf1\x6e\x75\xca\xed\xc1\x20\xce\x57\x04\x0e\x86\xb9\x43\x5b\xe6\xba\xa9\x11\x97\xf8\x21\xc9\x2e\xc7\x15\x6e\x29\xd9\x60\x71\x08\x59\xbc\x4b\xcc\x95\x7a\xdb\x1f\xf9\x8c\x20\x5c\x4a\xaf\x9d\x6a\xda\x53\x2d\xc7\xa9\x64\x11\x03\x2e\x5d\xd2\x41\x98\xd0\x41\xf1\xb5\xfd\x07\xf7\x33\x41\xbc\xca\xfe\x36\x68\xd1\x40\x8b\x06\x5a\x34\xd0\xa2\xbd\x14\xfd\x08\x68\xd1\x40\x8b\xd6\x79\xf8\xcf\x47\x8b\xd6\x71\x50\xa0\x1d\x03\xed\x18\x68\xc7\xe4\x03\xda\x31\xa3\x3d\xd0\x8e\x81\x76\x0c\xb4\x63\xa0\x1d\x03\xed\x18\x68\xc7\xca\x37\xcf\x50\x3b\x26\x63\xaf\xf6\xd9\x5d\x2f\x8c\xd9\x75\x57\xcf\x70\x52\xfc\xc1\xe1\x8e\xcb\x3f\x8f\xcf\xd0\x68\x9a\xa3\x28\xa1\x39\xf6\x43\x44\xae\x79\x96\x14\x4f\x64\x49\xe1\xf0\x9a\xb9\xc8\x02\x96\xe1\x7c\x9a\x25\x1c\xb7\xee\xf8\x8c\xb2\x82\x64\x9a\x21\x9f\x52\x12\x44\x7e\x8e\x43\x74\x46\x42\xda\x97\x50\x9f\x8c\x01\x71\xcc\xbb\x9c\x20\xfc\x2d\x25\x14\xab\xa3\x80\xfd\x72\x56\xc8\xea\xfd\x05\x12\x30\x36\x48\x76\xb3\xca\xed\x25\x30\xa5\x4a\x6a\x58\xe2\x90\xb9\x52\x1b\x5a\xc7\x5a\x5a\x39\x01\x75\x35\x8d\xfa\xbd\x4e\x51\x63\x77\x53\x6a\x39\xef\xb1\x7f\x87\xb9\x5b\xdf\x07\xa1\xe1\x94\xeb\xcb\x13\xf9\x16\x7a\x1b\x14\xf8\x09\x1a\xf1\x09\xe7\x29\xd3\x14\x58\x0f\xe6\x4b\x1c\x5f\xf3\x70\x54\x1c\xa2\xbf\x58\x6d\xe8\x04\x8b\x95\xf6\x63\x11\x96\x51\x3b\xfd\x9f\x79\xd2\xd6\x92\x32\x3d\x64\x97\xe3\x43\xa8\x0d\xdb\xaf\x09\xf2\x12\x63\x4a\x4a\x94\x8a\xfa\x8b\x94\xd9\x62\x71\x5f\x2b\x9b\xd5\xee\x6c\xb3\xb4\x58\xb9\x22\xcc\xdc\x33\x2b\x1c\x80\x56\x83\x4e\x5c\xd7\x9a\x86\xa6\xac\x6b\x8d\x73\x34\xec\xa9\x06\x24\xaa\x87\x4a\x57\xed\xac\xef\xc7\xe9\xd8\x96\x9c\xd5\x85\xc3\x4b\x49\xb8\x5b\x80\x8b\x74\xfb\x56\x97\x18\x91\xca\x32\x6d\x9d\x46\xff\xf8\x3e\xec\xdd\xe2\x87\x61\x6f\x77\xd8\x0b\x71\xc8\xe1\xb9\xc3\x61\x6f\x73\xd8\x53\x92\x25\x7f\x75\xf4\xaf\x29\xbb\xf4\x6c\x0e\x7b\x5c\x22\xe7\xbf\x4d\x7c\xb6\xdd\xf8\x8f\xc2\xf1\x9c\xff\xaa\xf9\x9e\xf7\x7e\xfc\x53\x6f\xce\x71\xc1\xab\x9d\x56\x6b\x9d\x90\xfb\x36\x84\x9a\x6e\x44\x68\xd1\x5b\x11\xea\x74\x33\x42\x5d\x6f\x47\x68\x8e\x1b\x12\xea\x76\x4b\x42\x6d\x37\x25\x64\xde\x96\x1a\xee\xcc\x2a\xe0\x81\x9f\x39\x27\x38\x6f\x8a\xb3\x40\xf5\xb7\xeb\xe6\xcf\xcd\x08\x8b\xfa\x0b\x9a\xbd\x02\xd6\xe8\x66\xba\xaa\x15\x9f\x34\x5c\xd8\x8a\x32\x35\xd7\x36\x54\x17\x69\x89\x0c\x40\x70\xff\xae\xc2\xf4\xeb\x13\xac\x79\x68\x30\x26\x13\x3c\xe0\x9f\x0d\x44\x9e\xf6\x3e\x1d\xdb\x05\xab\x31\x85\x7a\x9b\xbf\x9f\x5e\x5c\xba\x12\xf8\xa0\x96\xb0\x42\xd4\x16\x5a\x88\x0c\x10\xd2\x5d\x03\x76\xd4\x51\x8d\x90\x32\x79\xb2\x50\xb6\x6e\x27\x95\x94\x3f\x7a\xa7\x8f\xcf\xf6\x3f\x7f\x3e\x3d\xb8\x3a\xdf\x3f\xf9\xad\xbe\xe7\x62\xa5\xd4\xd5\xef\xe0\xf8\xf0\xbc\xba\x62\x48\xcb\x89\xc6\x29\xef\xcc\xa7\xf4\x9e\x64\x8e\x0c\x0f\x65\xf3\x7f\x1d\xed\xff\x79\x74\x75\xb6\x7f\x71\xf1\xd7\xe9\x79\x25\xe1\x8f\xdd\xbe\x5d\x6d\x4d\x0f\x9c\x59\x25\xca\xce\x7d\xb9\xfc\xea\x20\x4a\x23\x4b\x15\x2b\xb2\xe5\x2c\x64\x76\xfc\xcb\xe5\xd7\xb6\x3e\x7f\xb9\xfc\xda\xd8\xd3\xda\xae\xb8\xdf\x95\x3a\x82\x8a\x6a\x40\x3c\x8d\x59\x78\x50\x43\xa2\x1d\x54\xdc\x09\xb7\x77\x7e\xee\x6f\xf5\xb7\xfa\x4e\x32\x93\xb7\x0c\x9a\xfb\xf9\xd4\x79\x5c\x0a\x59\xee\xc3\xcf\x1f\x2b\x19\x79\x3a\x45\xdd\xa0\x5a\x25\x87\x7a\xe7\x54\x75\x88\xc7\x1d\xf8\xd2\x16\x73\x8b\x1a\x55\x0a\xe2\x69\xc8\xc6\x81\xec\x73\x27\x1c\xb9\xfa\xa6\xdf\x00\x6b\x8b\x15\xf7\xa3\x24\xf2\x46\x91\x93\xcf\xe8\xf5\xb0\xf5\x1a\x90\xb4\x92\xfc\xa3\x52\xd1\x4e\xa7\x9a\xd8\x19\xd8\x5c\x15\xd7\xf1\x74\xa9\x0a\xe7\x41\x7d\x4d\xe1\xc8\x4d\x3a\x95\x5a\xee\xfc\x8c\xe7\xf8\x72\x7f\xa0\xaa\x8b\xa3\x91\x37\x21\x4c\xda\x69\xad\x95\x55\x56\x5b\xb4\xf9\xce\xed\xae\xb0\xe9\xb6\x6d\x91\x85\x97\xa4\x95\x39\x79\x31\x1c\xa5\x3c\x97\x0e\x4e\x8e\x6b\x8f\xa6\xe7\xba\xad\x57\x45\x11\x69\x3c\xbd\x89\x92\x0a\x29\x36\x0a\x2a\x24\xcd\x07\xd9\x2d\xf6\x72\x42\x62\x3a\x30\xea\xf1\x82\x24\x72\x88\x2d\xe5\xda\x70\x06\xfa\x99\x90\x74\xe4\x07\xb7\x35\xab\xf4\x68\x93\xda\xf1\x8c\xb3\x8e\xb7\xda\xbc\xc4\xea\xe5\xd9\xf1\x61\xf5\x85\x85\x97\xb0\x1f\xdf\xfb\x0f\xc6\xb4\x37\x8f\x9a\xe2\xcf\x51\x32\xfd\x76\x9a\xca\x7b\xdc\xff\xcf\xde\xdb\x2d\x39\x8a\x9c\xfb\xde\xe7\x7d\x15\x19\xf5\x1e\xf8\x60\x35\x98\x0f\x7d\xae\x88\x39\xe8\xb7\x67\x96\x67\xc2\xf6\x78\xa2\x67\x62\xcf\xde\xb1\x3c\x31\x41\x4b\x59\x55\xac\x52\x81\x8c\x50\x75\xd7\x72\x38\x62\xdf\xc6\xbe\xbd\x7d\x25\x3b\x40\x48\x02\x94\x89\x90\x04\x2a\x21\xfd\xfa\xc0\x63\x51\xf0\x3c\x09\x24\x99\xff\xff\x2f\x21\xf3\x9f\xa5\xa5\x2f\x77\x07\x96\x14\x66\x4a\x3d\x7a\x20\x2a\x47\x10\x56\xff\xaa\x3e\x29\x3e\xe4\xe8\x9d\xaf\x98\x55\x6b\xea\x88\xfd\xdd\x99\x12\x3f\xae\xfe\x65\xf2\x60\xdd\x70\x2b\x74\xf8\x9e\xdb\xbf\x3f\xf6\x4e\x7f\xb7\xaf\xaf\xdb\x1f\x72\xb7\xe3\xdb\xd7\xe9\xed\x8f\xb9\xd3\x03\x56\xf5\x7e\xf5\xaf\xe8\xee\xd1\x35\xba\xc1\xfd\xe1\xb5\x1d\x63\x9d\x26\x70\x7f\x78\x5d\xa3\xd8\xe4\x08\xfb\x48\x69\x16\x57\xc8\xfb\x53\x7e\xa8\xbd\xce\x90\xf1\xfe\x77\xf8\xaa\xde\x4f\x2c\x3c\xfd\x05\xe4\xa2\xf8\xbb\x0e\x94\xed\x14\xa1\x6a\x96\xd8\xcf\x32\xf6\x6a\xcf\x34\x7f\x40\xf1\x4e\x99\x69\x77\x1e\x4e\x73\xf3\x22\x6c\x4e\x33\xbf\x2d\x9c\xca\x3a\x33\xf1\xce\x52\x9a\xba\xfe\xf5\x65\x3d\xa7\x91\xba\x48\x9a\xa5\x3c\x54\x25\xcc\x76\x4d\xa7\x10\xf2\x9b\x2f\x49\xd5\xc5\x49\x4f\xbd\x60\xa3\xca\x79\x0b\x53\x37\x95\x26\x85\x3f\xb5\x5a\x54\x4d\x24\x7c\x48\xed\xc8\xcd\x72\x5b\x31\xa7\x78\x21\x62\xad\xd9\x70\x0f\x9c\xde\xb6\xd4\xdb\x36\xff\x44\x35\xf1\x28\xe9\xcb\x75\xe8\x43\x96\x48\x8c\xfc\xdf\x4b\xa7\xaf\xaa\x6e\x9b\xb5\xd0\x0f\x59\x7f\xe0\x98\x7a\xbd\x2f\x51\x61\x52\xed\xa3\xef\x45\x43\xf5\xb7\xe2\x96\xec\xd4\xec\xcb\xac\xd2\x39\xde\x55\x1e\xf6\x72\x2c\x86\xbd\x2e\x78\xd8\xeb\xff\x13\xbf\x7a\x7e\x2c\xfa\x89\xf5\x08\x83\x69\x3a\xae\x3b\x93\x71\xd2\x6b\x26\x77\x23\x90\x93\x78\xbd\x0a\x5a\xf6\xa2\xa0\x08\xe4\xd7\xf4\xef\xeb\x10\xa7\x8f\x9c\x3d\xfb\xc1\x27\xe9\x4d\x5f\x77\xdf\xc7\x60\x4c\x8d\x31\x35\xc6\xd4\x6e\x68\x4c\x2d\xa9\x68\x1f\x6b\x8d\xab\x19\xc9\xae\xe5\x02\xec\x1d\x98\xa8\x3b\xfa\x96\x04\xaf\x39\xf6\x76\x69\xa8\xaa\xa3\x38\xfe\x72\xf9\xf9\xea\x9f\xf6\xcd\xbd\x0b\x1d\x08\xfe\xe1\xc7\x1f\x7e\xf9\xfd\xe3\xdf\x7e\xfc\xe5\xc3\x0f\x3f\x7e\xf7\x49\x75\x46\x9b\x01\xc2\xfc\x27\x0a\xaa\x50\x1d\x1a\x01\x60\x4c\x99\x31\x65\x55\xc1\xaf\x62\x4c\xb9\x7f\x05\x63\xca\x0d\x8d\xba\xe6\xdb\x63\xd5\x59\x95\xdf\xd8\x5e\xf7\x3f\x7f\x7c\xf6\x26\x8f\x7e\x20\x0d\x7f\xaa\x0a\xba\xed\xd4\xaa\xf7\xdb\x9f\xfc\xec\x9d\x10\xe3\xbc\xe5\x4b\xd5\xd5\x47\x8d\x71\xde\x16\x2e\x6a\x0b\xe3\xbc\xb9\x4f\xb7\x32\xfd\xf0\x1f\x7e\xb4\x88\x7f\xf5\xe3\xc7\xef\x57\xc7\x95\x43\xa5\xa3\xc2\x3b\x4f\x2e\xc3\xc2\x0c\x0b\x5f\xca\xb0\x70\x75\xd7\x57\x2b\xb0\xb6\x8b\x65\xe8\xb9\xaa\x73\xd7\x7f\x15\xc5\xf0\x34\xc3\xd3\xab\x9f\x0c\x4f\x33\x3c\xcd\xf0\x34\xc3\xd3\x0c\x4f\x37\x36\x3c\xed\x30\x3c\xcd\xf0\x74\x75\x69\x19\x9e\x66\x78\x9a\xe1\x69\x86\xa7\x19\x9e\x66\x78\x9a\xe1\x69\x86\xa7\x75\x61\x18\x9e\x66\x78\x9a\xe1\xe9\xc2\x3f\x86\xa7\x19\x9e\x2e\x27\x65\x78\x5a\x74\xfa\x51\x63\x78\xba\x85\x8b\xca\xf0\x34\xc3\xd3\x0c\x4f\x33\x3c\xad\x0b\xcf\xf0\xf4\xf5\x0f\x4f\x33\x32\xcd\xc8\xf4\xde\x1a\xc1\xa0\x74\xed\xab\xc6\x78\xf4\x9b\x8e\x47\x33\x14\x7d\xd8\x50\xf4\x88\x91\x68\xf9\x35\x96\x41\x3a\x84\xb6\x7d\x9f\x41\x5c\xdc\xa0\x34\xa3\xbe\x8c\xfa\x76\x6e\xd4\xb7\x6b\x23\xad\x17\x39\x68\xd5\x21\x06\xc9\x48\x13\x23\x4d\xaa\x82\x5f\xc5\x48\x13\x93\xeb\x5e\xfa\xeb\x12\x4c\xae\xbb\xfe\x77\x35\x3d\x0a\x93\xeb\x32\xaa\x75\xe0\x45\x65\x72\xdd\xed\x15\x61\x98\xaa\x7e\xec\xae\x0f\x53\x31\x84\xc4\xe4\xba\x7c\xbd\xc8\x18\x11\x5f\x2f\x5e\xf4\x40\x11\x5f\x2f\x5e\xce\x68\x11\x5f\x2f\xd6\x19\x32\x7a\x27\xc4\xbf\xde\xbf\x5b\x8f\x1a\xdd\xfd\xbb\xf8\x67\x3a\x86\xb4\x02\xfd\xdf\xd8\xa6\x3d\x30\x2d\x23\x1d\x17\x58\xc1\xff\x89\x6d\x3a\x96\xd9\x33\xa2\xd5\x17\x3f\xb6\x61\xdf\xfd\x7b\x71\x4d\xca\xf7\xc5\x00\xa5\xbd\xb7\x51\x1c\xd3\xd2\x45\x71\xac\x9d\x28\x55\x7b\x3b\xe5\xbd\x47\xdb\x9d\xad\x4d\xc2\xed\x99\x14\x8e\x1e\xa5\x97\xe0\x5d\x7a\x15\xee\xfe\x3c\x5a\x64\x75\xeb\x87\xe0\x3e\xcc\xae\xc6\x5d\x72\x5e\xd6\xe6\xd2\x3c\x7b\x5f\x3f\xfd\xf9\xbb\x6c\xb7\x24\x94\x65\x3a\xe6\xba\x08\xc9\x1f\x57\x89\x73\x3b\x24\x7f\xde\x5c\xe7\x34\x98\x69\x6f\x4e\x66\x13\x77\x2a\xe7\x91\x9c\x78\xb1\xd4\x47\xdf\xee\xb2\x3f\x87\xdd\x64\x81\x9d\x26\x83\xb9\x55\xc1\x5c\xd3\xae\x0e\x96\xec\x50\x08\xd7\xd3\x87\xb3\x4d\xcb\xb4\xf6\x85\x73\x8b\xe1\xfa\x55\xe1\x6c\x73\x3c\xae\x8e\xd7\x4b\xf6\x28\x06\x34\x6d\xbb\x58\x75\xb3\xf0\x7e\x50\x51\x5a\x3f\xa8\x57\xda\x42\x70\xa7\xcd\xe0\x6e\x75\xf0\xe1\xbe\xe0\xc3\x9d\xe0\x8e\xf2\xb2\xa8\x2a\xd8\xbe\xab\xee\xa8\xae\xfa\x26\xbc\x53\x7d\x61\x6c\xd3\x31\xa2\xc9\x9e\x8b\xd3\x4b\x5a\xb1\x89\x55\x95\xa4\xf2\x02\xd9\xa6\x5b\x27\x49\x7f\x5f\x92\x5e\x75\x92\x5e\x9d\x24\x83\x7d\x49\xfa\xd5\x49\xfa\x8d\x24\x19\x9c\x23\xc9\xf0\x1c\x49\x46\x6d\x25\xe9\xd7\x7e\x40\x46\x7b\x9f\x8f\x62\xec\x41\x55\x2b\xe7\x6c\x1f\x66\x75\xb8\x7e\xf9\x61\x1e\x98\xb6\xb5\xbd\x1e\x95\x6d\xdc\xf1\x4f\x5b\x31\x49\x4b\x8f\xf4\xc0\xb4\xdd\x9a\xad\x75\x53\x49\xf6\x9c\xc9\xb1\xd5\x67\x60\xda\xbd\x73\x9c\x89\xba\x92\xb6\x97\xa4\xbd\x1b\xdf\xaf\xd9\xd9\x35\x95\x64\x4f\x5b\x7e\x7c\x92\x51\x6b\x7a\xa3\x10\xbb\x61\xb9\x31\x30\xc7\xb5\xcb\xbd\x5f\x6d\xec\x5e\x97\x61\x75\x9b\xb7\x4f\x63\xf4\x77\x34\xc6\xb0\xbe\xb2\x3b\xfe\x6e\x0e\x75\x3a\xa9\xe1\x24\xed\xb7\x7a\xc3\x43\x5a\xbd\x13\x92\xb4\xdf\xea\x0d\x4d\x7b\x70\xe6\x24\xed\x5d\xae\x41\xeb\xad\xde\xd0\xb4\x87\xe7\xb8\x5c\xc3\x73\x5c\xae\xe1\x59\x2f\x57\x6b\x62\xaa\x98\xe4\x0c\x97\x6b\xaf\x3f\x6a\x26\x49\x4b\x7d\xea\xb0\x8c\xbc\x1a\xec\xf7\x0a\xb1\x1b\xee\x53\x87\x1a\x0f\xd1\x58\x9f\x6a\x0e\xce\x50\x55\x07\x67\xa8\xa9\x75\xb5\x47\x43\x39\x5a\x12\xfd\xa3\x2a\x8d\xe3\xee\xd5\x38\x83\x1d\x8d\x33\xca\x99\xae\xbd\x57\xe6\x58\xc4\x51\x4c\xb2\xe7\xd2\x9c\x90\xa4\xbe\x90\x6a\x26\x49\x7b\x67\x52\x5f\xe3\x9c\x90\xa4\xbe\xb3\x3b\x21\x49\x7d\x21\x75\x42\x92\xfa\xf2\xa3\x99\x24\xed\xdd\xf8\xba\xd6\xae\xa9\x24\xad\x9d\x89\x73\x8e\x66\xc5\x39\x47\xb3\x92\x4f\xd2\x12\x03\x1e\x99\x6e\xed\x6e\xb6\x91\x1c\xad\x5d\xac\x73\x3c\xee\xf5\x6d\xd3\xd1\xdd\x6c\x6d\xc4\x72\xca\x79\xd4\x97\x24\xc7\xe6\x18\x57\x85\x4d\x87\x5c\x27\xf9\xf1\xb3\x0a\x3d\xa1\x4e\xda\xdf\x09\x51\x4b\x74\x8c\xeb\xe3\x88\x52\x21\xab\x8b\x51\x4e\x52\xb7\x17\x6d\x2a\x49\x65\x6d\x3c\x29\x49\xdd\xae\xba\xa9\x24\xed\x9d\x49\xdd\x06\xc2\x49\xaf\xec\xfe\x2c\xb6\xbd\x2f\xcd\x9e\x73\x69\x2a\x4d\x65\xd7\xd0\x5c\x9a\x4a\x03\xdc\x5c\x9a\xca\x21\xc2\xe6\xd2\x54\x0e\x12\x36\x95\x66\x4f\x97\x7a\x42\x1a\xc7\x6a\xbd\x81\x1d\x1c\xd1\xc0\x3a\x56\x7d\x57\x57\xf3\x61\xde\xed\x24\x4b\x49\x9a\x68\x31\xd4\x49\xea\x32\xf8\xa6\x92\xb4\x77\x26\x75\xfd\xe9\x49\x35\xb2\xbe\x43\x3d\x31\x4d\xfd\x2e\xfc\xa4\x34\xf5\x3b\xf1\x66\xd2\xb4\xd9\x5a\x1c\xd2\x91\x37\x95\xa6\xcd\x2a\x50\x77\x44\xb5\xb9\x34\x6d\x75\x7f\x85\x34\x67\xaa\x02\x7b\x6c\xd8\x69\x69\xea\x9a\x8b\xe3\x1b\xb4\xca\xb0\xee\xe9\x7d\xdf\xe0\x28\x73\xe1\x54\xbc\xcb\x78\x14\x22\x75\x9c\xfa\x9d\xa9\x5b\xc7\xa9\x0d\x4c\xd7\x48\xdf\xe3\xb7\x76\xf2\xd4\xed\xea\x4e\xcd\x53\xb7\xe9\x3e\x35\x4f\xdd\xd6\xee\xd4\x3c\x75\x4d\xc5\xa9\x79\xea\x72\xc6\x13\xf3\xd4\xed\xf2\x4e\x4c\x73\xa6\xbb\x53\xb7\x59\x3d\x31\xcd\x99\xea\xc0\x99\xaa\x40\x5d\xd8\x7c\x62\x9a\xba\xbd\xc4\x49\x69\x2a\xa5\x81\x6b\x8e\xea\x44\xee\x29\x23\x57\xaa\x01\x37\x6d\xe7\xf6\x87\x1e\x2a\x43\x57\x1a\xe0\x5e\x9d\x4e\x73\x68\x3a\xca\xc8\x95\x9e\xb7\x66\xe4\xbe\x32\x72\xe5\xdb\xb0\xbd\xb4\x39\xde\x1f\xda\xb6\x55\xb1\x2b\x06\x1e\x0f\xfe\x42\x40\x37\xe6\xd8\xec\x17\x12\xa3\x7c\x77\xda\x52\x8e\x71\x83\x57\x65\x9c\x7b\xe6\x1b\x2e\x6e\xf6\xf5\x4b\xb6\xc3\xb7\xf2\xde\x5b\xce\xe2\xed\xb7\x30\x8b\x2c\xdd\x9d\x63\x26\x8f\x6a\x36\x98\xfd\x35\x8d\x9f\xbe\x18\x60\xad\xb7\xf6\xf3\x5b\x6d\xe5\x56\x47\xb9\x75\x13\x77\xb0\xdd\xda\x53\xe4\xea\x6d\x73\x15\xb6\xda\xca\xad\x8e\x72\xab\xea\x1c\x7a\x9a\x6c\xfd\xf5\xd6\xd1\x76\xeb\x7a\x9b\x63\xe5\xb6\x6d\xcb\x35\xce\x6f\xb5\x95\x5b\x1d\xe5\x56\x57\xb9\xb5\xa7\xdc\xda\x57\x6e\x1d\x28\x4a\xb6\xd9\xe6\xe4\xb6\x6d\x4a\xeb\xd8\xf9\xad\xb6\x72\xab\xa3\xdc\xea\xaa\xb7\xae\xda\x06\x75\xa0\xec\x8f\x9a\x78\xab\x3f\xaa\xc3\xf6\x94\x27\xb1\xb9\x11\x6e\x7e\xeb\x40\xb9\x75\xb8\xde\xda\xdb\x6e\x1d\x6e\x2f\x43\x61\xab\xad\xde\xba\xd9\x79\x50\xd8\xbc\xd9\x7b\x98\xdf\xbc\x39\xc9\x7e\x7e\xab\xab\xdc\xda\x53\x6e\xed\x2b\xd3\x0d\x94\x5b\x87\xca\xad\x23\xe5\xd6\xf1\xce\xd6\xe9\xea\x81\xcf\x9f\xc7\xba\x45\xf8\xf3\x77\xfa\xd6\xc0\xca\x3f\xb5\x05\xc7\xa0\x8e\x3a\xca\xfb\xda\x9d\x0f\xee\xbe\x0d\x27\x4f\x32\xca\x7f\x76\x97\x7d\x75\xf7\x9f\x69\x2b\x66\x9b\xf6\xba\x46\xa4\x3f\x9c\xfc\x0f\x77\xfb\x63\x68\x5a\xb9\x5f\x23\xd3\x1a\x14\x7e\x8d\xb7\xbf\xc6\xf9\x3d\x53\x58\x99\x9e\xb7\xf8\xed\x7d\x96\xdc\x7e\xcb\xe4\xce\x89\xc9\x87\x85\xe4\xc3\x42\xf2\x93\x0a\xe6\x5e\x6a\xc1\x7a\xf9\x82\x9d\x3f\x7d\xff\x6d\xd3\x0f\xde\x36\xfd\xf0\x6d\xd3\x8f\xde\x36\xfd\xf8\x4d\xd3\x3b\xd6\xdb\xa6\xb7\xdf\x36\xbd\xf3\xb6\xe9\xdd\xf3\xa7\xcf\x7e\xb9\x66\xee\x47\xcf\x2c\x17\xec\x0d\xda\xc3\x7a\x05\x7b\x83\x96\xb2\x5e\xc1\xde\xa0\x0d\xad\x57\xb0\x37\x68\x5d\x6b\x15\x6c\x74\xac\x16\xc8\xc5\x18\xbf\x85\xca\xda\x51\x9f\xbf\xae\x66\x35\xce\xa6\xd6\xc8\xe6\x6c\x5b\x0b\xd1\xe2\xb4\x00\x32\x9e\x4c\xef\xfe\x5d\x04\xcb\xd9\x6c\x15\xf8\x69\xf9\x59\x7a\x73\x7f\x67\xdb\x4c\xc6\xeb\x83\xc4\x9d\x37\x9d\x46\x72\xb1\x58\x99\x73\x6b\xfb\x26\xbf\xb8\xf3\x82\x30\x78\x7d\x0e\x97\x0b\xc3\x5b\xc6\x8f\xc9\x0e\xe9\x82\x49\x9b\x3f\x2f\xe3\x47\x19\xc4\xfe\x24\x9d\x19\xc4\x88\xc3\x27\x19\x18\x5f\xe4\xe7\xc7\x30\x7c\x4a\x76\x8e\xa3\x65\x61\xdf\xcd\x24\x22\xc6\x73\x38\x95\xc9\x1e\xbf\x66\x3b\x67\x3b\x4d\x64\x14\x1b\x53\x3f\x4a\xfe\xf4\x9f\x3f\x7d\xfa\xee\x3f\x7e\xf8\x9f\xbf\xff\xf4\xe1\x97\xef\x7f\xdb\x4c\x17\x96\x15\xfe\x8f\xf3\x27\x7f\x73\xd0\x43\x3a\x9f\x8b\x31\x97\x91\xf1\x8f\x70\xb1\x53\xca\x6c\x1a\x35\x75\xdc\x70\x1e\xff\x71\x12\xf8\x7f\xfc\xec\x07\xf9\xfd\x27\x61\x70\xaf\x3e\x40\xc6\x93\xf4\x80\x40\xc6\xe6\x74\x7d\x88\x0c\xee\xc3\x68\x22\x8d\x20\x9c\x4a\xc3\x9b\xcd\xc2\x89\x97\x4e\x0e\x96\x1c\xfe\x87\x3f\x6c\xf6\x7a\x91\x41\x6c\xfc\x63\xbe\xba\xd2\xeb\xad\xf7\xd2\x8b\x97\x91\x34\x1e\xbc\x58\xa6\x7f\xf9\xfe\x75\x2e\xa3\xff\xb1\x59\x78\xf7\x9b\xe4\x2a\xbe\xcf\x2a\xc1\x9f\xfe\xfa\xf3\x87\x6f\xf2\x97\x35\x9d\x0b\xd1\x98\x2f\x67\x33\x63\x1e\x85\x0f\xc9\x7d\x34\xa6\xd2\x9b\xce\xfc\x20\xcd\xee\x5a\xcf\xeb\x5d\xd3\x79\x56\x22\xb9\x90\xd1\x8b\x4c\x6a\xc9\xdd\x64\xbe\xfc\xa6\x6f\x59\xcf\xef\x9f\xe5\x73\x18\xbd\x26\xff\xff\xaf\xfe\x7b\x39\x7f\x94\xcf\x32\xf2\x66\xc6\x22\x0e\x23\xef\x41\x7e\x63\xff\x69\x73\xad\x9f\xbd\x27\x69\xf8\xf3\x6c\xee\xb4\x65\xec\xcf\x8c\xc9\xa3\xe7\xa7\xf5\xb1\x70\xbb\xb3\x99\xa8\xb2\x99\x1c\xd3\x6c\xc1\x26\x4a\x24\xbd\xa9\x11\x06\xb3\x57\x63\x1e\x46\x71\xe1\x6a\x44\x72\x11\xce\x5e\xd2\xeb\x5f\xbc\x78\x8b\x38\x92\xde\xb3\x1f\x3c\x18\xd9\x52\xe8\x49\x35\xf2\xa7\x33\x69\xc4\xfe\xb3\x0c\x97\x71\xe9\x6c\x57\x13\xca\xec\x9c\xaf\x6d\xe5\x4e\xd8\xf9\x93\xea\x74\x9d\xed\xe9\xc6\xb3\x85\x31\xf1\xe7\x8f\x32\x32\x16\x4b\x3f\xbb\x3f\xbf\xfc\xe5\xe7\xdf\xbf\xfb\xf8\xed\xf7\xdf\x25\xff\xfb\xf3\x87\xdf\x7f\xfd\xe1\x97\xef\x7f\xff\xf0\xdd\xcf\xbf\xdb\xce\xe8\xf7\x3f\x7d\xfc\xeb\xef\x3f\x7f\xff\xc1\xe9\x0f\xde\x6b\xf7\x73\xfa\x83\xf5\x7e\xee\xa8\xa7\xde\xef\xe3\xf7\x1f\x3e\x7e\xff\xc1\xb1\x7e\xff\xe9\x6f\x7f\xf9\x5f\xb6\x6b\xf5\x73\xbb\x7d\xaa\x95\xf4\x53\xad\x94\x9f\xb4\x09\xd7\xd7\xe0\x25\xa5\x71\x9b\x5f\xe9\xfc\x8a\xd9\x6d\xad\xf7\xa8\xae\x0e\xc9\xa6\xf4\x4c\x9a\xb8\x15\x37\x5c\x55\xc8\x79\x14\x7e\x7d\xdd\x36\x45\x32\x48\x6a\x96\x31\x5d\x44\x3b\x8f\xf1\xce\x73\xf2\xab\x1f\xfc\xed\x45\x46\x33\xef\xb5\xf0\x44\x3c\x4a\x6f\x16\x3f\xfe\x77\xf2\xc8\x4f\x8d\x5c\xd3\xb6\x99\x05\x7a\xbd\x63\x9a\x7a\xd3\x12\x3d\xc9\x28\x90\xb3\x74\x4a\xa2\xd2\x99\x97\x4a\x9c\x3c\x98\x51\x38\x9b\xc9\xa8\xd0\xaa\x6e\x56\x2a\xc8\xb6\x6a\xa6\x34\xa0\x85\xa6\x85\xa6\x85\xa6\x85\xa6\x85\xbe\xac\x16\x7a\x48\x0b\x4d\x0b\x4d\x0b\x4d\x0b\x4d\x0b\x7d\xa1\x2d\xf4\x88\x16\x9a\x16\x9a\x16\x9a\x16\x9a\x16\xfa\x42\x5b\xe8\x31\x2d\x34\x2d\x34\x2d\x34\x2d\x34\x2d\xf4\x65\xb6\xd0\xb9\x4f\x7e\x69\xa1\x69\xa1\x69\xa1\x69\xa1\x69\xa1\x2f\xab\x85\xb6\x69\xa1\x3b\xdc\x42\xd3\xc6\xd2\xc6\xde\x68\x1b\xfb\xc3\x4f\x2f\x83\x6f\x97\xde\xec\xe7\xd8\x9b\x3c\x7d\x53\xd8\xf7\x12\xdb\x59\x87\x76\x96\x76\x96\x76\x96\x76\x96\x76\xb6\xdd\x76\x56\x3d\x1b\x00\x8d\x2e\x8d\x2e\x8d\x2e\x8d\x2e\x8d\x6e\x1b\x8d\xae\x4b\x3b\x4b\x3b\x4b\x3b\x4b\x3b\x7b\xe1\xed\xec\x45\xb6\x9d\xea\x15\x6f\x68\x48\x69\x48\x69\x48\x69\x48\x69\x48\xeb\x36\xa4\x3d\xda\xce\xaa\xb6\xf3\x94\x86\x8d\xd6\x8a\xd6\x8a\xd6\xaa\xd1\xd6\x8a\x39\x14\x68\xad\x68\xad\x68\xad\xba\xd1\x5a\x31\x9f\x00\xad\x15\xad\x15\xad\x55\x37\x5a\x2b\xbe\xad\xa7\xb5\xa2\xb5\xa2\xb5\xba\xe8\xd6\x2a\x9b\x76\xef\xa3\xbf\xf8\x18\x06\xf7\xfe\xc3\x4f\x5e\xe4\x3d\x6f\xa6\xd9\xdb\x4e\x18\xbd\x6a\xc8\x3e\xcb\x60\xf2\xf8\xec\x45\x4f\xb9\x19\xeb\xa3\x27\x69\x4c\xfc\x85\x61\x9b\xfd\xe2\x7a\x7e\xfd\xe3\x0e\x1b\x1c\x77\xd8\xf0\xb8\xc3\x46\xc7\x1d\x36\x3e\xea\xb0\xdc\x87\x48\x75\x0e\xdb\xde\x9b\xff\xbf\xb4\x77\x7e\x4e\xee\xd5\x11\xb9\x65\x35\xbc\xc0\x7b\x48\x5b\x89\xb4\xce\xad\x6e\xfd\xb3\x1f\xfc\x79\xf9\x39\xa9\x3f\xb1\x5c\x14\xd6\x98\xb0\xdd\xbb\xac\x76\x3c\xf9\xf3\xb9\x9c\x7e\x7c\x94\x93\xa7\x45\xa1\xde\x04\x61\xfc\x61\x3e\x9f\xf9\x93\xa4\x42\x17\xfe\xbe\x39\xb9\x75\xb1\x8f\x2d\x44\xbf\x89\x42\x6c\xaf\x9f\xea\x6a\xa4\x5f\x09\x1d\x5b\x8e\xec\x99\xb6\xcd\x6c\x12\xf2\xbb\xef\x92\xa7\xdb\x0f\x1e\xc4\x87\xd9\x17\xef\x75\xf1\xd3\x72\x36\xfb\xe1\xd9\x7b\x90\x0b\x31\xf1\x02\xb1\x5c\x48\xb1\xf0\x1f\x02\xff\xde\x9f\x78\x41\x2c\x3e\x7b\xc1\xf4\x8b\x3f\x8d\x1f\xcd\xf5\x83\x9b\x44\x4a\xbf\x7a\xb8\xfb\xf5\x51\x06\xe2\x41\x06\x32\xf2\xe2\x24\x60\xd2\xc8\x27\xff\x4d\x3a\xdd\xf4\xf8\x58\x2e\xde\x8b\xfb\x65\x90\xf6\x13\xde\xcc\x8f\x5f\xc5\x24\x5c\xce\xa6\xe2\x73\x24\xbd\x27\xe1\x07\x62\x12\x06\xff\x95\xfd\x5d\x7c\xf1\xe3\x47\xf1\x18\x2e\xe2\xc0\x7b\x96\x22\x7c\x91\x51\xe4\x4f\xe5\x42\x7c\x79\xf4\x27\x8f\xc2\x8b\xa4\x88\xe4\x3f\x96\x7e\x24\xa7\xe2\x3e\x8c\xd2\x2c\x5e\x12\x62\x16\x2e\xa7\x62\x1e\x85\x2f\xfe\x54\x46\x8b\x62\x39\x7b\x85\x33\xfe\x29\x9c\x8a\x9f\xe5\x64\x19\x25\x25\xf9\x29\x9c\xf9\x93\xd7\xf4\xa4\x27\x5e\x72\xda\xde\xea\x26\xa5\xb3\x75\x8a\x38\x14\xcb\x40\x7e\x9d\xcb\x49\x2c\xa7\xb3\x57\x71\xef\xf9\xb3\x42\x68\xb7\x18\x5a\x06\x93\xe8\x35\x9d\xe9\x53\x4c\x1e\xbd\x20\xb9\x9c\x8f\xe1\x17\x31\xf5\x62\x2f\x4d\xf1\x39\x29\xfd\x24\x39\x29\x39\x15\xde\x62\xf5\x07\x7f\xb1\x3e\x4e\x4e\x8b\xc1\xfb\x6d\x06\x4f\xa7\xfd\xff\x2e\x91\x27\x9f\xbc\x58\xfe\xc5\x7f\xf6\x63\x11\x48\x39\x4d\xcf\xfa\xb3\x14\xf1\x32\x90\x53\x31\x95\x73\x19\x4c\x93\xf4\x61\x20\xe2\x47\x29\x26\xb3\xe5\x22\x96\x51\x2e\x96\xb3\x5a\x99\xe0\xc3\x34\xdd\x2d\x7e\xf4\x17\xc2\x8b\x1e\x96\xcf\x32\x88\xc5\x3c\x4a\x05\xd0\x42\x64\x0b\x81\xfc\x61\x21\x9e\xc3\xc0\x8f\xc3\x28\xdd\x37\x0c\x67\x49\xb6\x49\xd2\xd6\x4f\x62\xf1\x2c\xe3\xc8\x9f\x2c\xd6\xa9\x36\xed\x7d\x2e\x99\xbb\x5a\x98\xa0\xf9\x64\x93\x4d\x9f\x23\x56\xcf\x5c\x3e\x6b\x6f\x35\x7b\xfe\xdd\x07\xb1\xd2\x32\xab\x4a\x3e\x91\xc2\x9b\x4c\xc2\x65\x10\x27\x97\xb9\x50\x2d\x13\xc5\xbc\xba\x01\x53\x3f\x92\x93\x38\x8c\x5e\x45\xf8\x25\x90\xd1\xe2\xd1\x9f\x9b\xe2\x93\xbc\x97\x51\x52\x98\x6d\x49\x1f\xbd\x68\x2a\x83\xa4\xa0\x0f\x4b\x7f\x2a\xd3\x28\xcf\x61\x24\xc5\x54\xc6\x9e\x3f\x4b\xcb\x99\xdc\xee\xf4\x0c\x92\x9e\x6e\x19\xc9\xd5\xf9\x6f\xe3\x6e\x0b\x9c\xad\x16\xd1\x42\x9d\xcf\x56\x9c\x68\x25\x72\x5b\xcf\x69\xb6\xf2\x45\xe3\x91\x1d\x33\x5b\x50\xe2\xc2\x1b\xc1\xa4\x9c\xe9\xe3\xfe\xf3\xaa\xf6\xce\xe4\x8b\x9c\x6d\xaa\x51\x76\xa6\x85\xa8\xf3\xc8\x0f\xd3\x0a\x9a\x06\x4b\x3a\x98\xd5\xe3\xb6\x79\xfe\x93\x12\x87\xd1\x54\x46\x69\x01\x8a\xcf\xe1\xaa\xfd\x58\xc8\xf4\xff\x25\xdd\x96\x99\x17\x78\xea\x8e\x30\xd7\x41\xa5\xab\x89\xfc\xf2\x28\xb7\x01\x0d\x23\x92\x73\xcf\x8f\x8c\x67\x6f\x76\x1f\x46\xcf\x72\x6a\x2c\xe7\xd3\xe4\x9a\x8a\x47\x6f\x21\x3e\x4b\x19\x88\x48\x3e\x87\x2f\xab\x86\x2f\xbc\x17\xdb\xfe\x51\xbc\xac\x3a\x48\x61\x9b\x76\xaf\xd0\x90\xa4\x57\xe4\xe3\xea\x74\x16\xdb\x13\x95\x53\xf1\xf9\x55\x7c\xfa\xf3\x77\xe2\xd1\x0b\xa6\xb3\xa4\x47\xdc\xde\x44\x11\x85\x71\x7a\xbd\xb2\xe7\x7a\xf6\x2a\xe2\xc7\x28\x5c\x3e\x3c\x26\x47\x14\x5b\x8c\x7d\xe1\xa7\xa1\x5c\x04\x7f\x88\xd7\x17\x5d\x24\x0f\xbc\xe7\xa7\x1f\x05\x0b\xaf\x78\x77\xc4\xbd\x3f\x5b\x35\x09\xa9\x73\xf4\xe6\x7e\x6a\xa5\x22\xf3\xef\xc1\x87\x59\xe9\x4e\x26\x6d\xd1\xdc\x5b\x2c\xe4\x34\xb9\x47\xde\xf6\xbe\x2c\x84\x17\xa7\xcd\x5c\xfa\xd5\xb1\x88\x96\x81\x48\xfc\x5a\xb1\xd0\x6e\x9d\x52\x8b\x20\x8c\x45\xe2\xd1\x64\x5a\x25\x9e\xb6\x17\x3b\x13\xdc\xe9\xa6\x55\xa9\xc4\x24\x92\xd3\xc4\xcd\x7b\xb3\xc5\xea\x34\xb2\x06\x37\xf1\xcd\x8b\x62\xf2\xde\x1b\x26\x77\xba\x78\xbb\x6a\xdd\xad\x83\x0b\xbd\xed\x0a\x8d\x75\x57\xd8\x74\xc1\x6b\xdd\xe9\x4b\x2c\x78\xbf\x95\x82\x6f\x95\x4e\xd3\xe5\xdd\xdb\xc8\x5d\x58\x79\x87\xad\x94\x37\x91\x63\x8d\x17\x75\xd4\x8d\xa2\xa6\x22\x65\x6f\xeb\x76\x7c\x5f\x97\xc6\xdf\xdb\x10\x9d\x16\x7f\xef\xa5\x9e\xac\xff\xe6\x05\x53\xf1\x1c\x2e\xe2\xb2\x16\xda\xdc\x84\xb5\xaa\xca\xab\x23\x27\x53\x71\x7b\x6f\xe6\xff\xfd\xdf\xff\xe7\xc0\xdb\xb9\xee\xa2\x66\x32\x6e\xf8\xae\x3a\x35\x5b\xff\x93\xca\xbc\x36\x3a\x8d\x97\xbd\x5e\x07\x70\x99\x65\x1f\x77\xa5\xae\xa4\xaa\x5b\x81\x97\x54\x9c\xab\x31\xbc\xd4\x2d\xa3\xec\xac\x80\x6d\x1b\xae\xd3\x31\x5d\xb7\x35\x80\xe3\xb4\x89\x9e\xb2\x25\x3e\x2f\xdb\xd4\xf6\x36\xcd\xf6\xe5\x97\xf3\x6d\xcd\x77\x56\x90\xbe\xb9\x7a\xf2\xef\x72\xe6\x38\x2b\xee\xd6\x3b\x95\x9e\xd7\x35\x0c\x5c\x2e\x72\x15\xa4\xbf\x46\x7e\x8d\x3f\x34\xfd\x75\xaf\xd6\x4a\xe4\x76\xf0\x52\x12\xb9\x1d\xbc\xd4\x5f\xaf\x6d\xbc\x89\xfc\xe3\x6a\x28\x77\x15\xd4\xcf\x60\x7d\x86\x3d\x37\x15\xb1\x90\xe0\x3e\x0a\x9f\xc5\x24\x7c\x7e\x5e\x06\xe9\xb6\xe0\x61\x55\xbf\xa5\x37\x79\x14\x61\xfc\x98\xc3\x9c\xfd\xf5\xaa\xb8\xaa\xfa\xe1\x6d\x6a\x48\x2a\x9e\xe6\xde\xe4\x40\xaa\xd3\x41\x1c\x52\x47\xd7\xb6\x46\x24\xec\xb7\xc4\x21\xd9\xe8\x67\x77\x8c\x63\x36\xee\xda\xa9\x02\xb7\x63\x75\x5b\x67\x20\xd9\xa0\x73\x27\x4b\xde\x41\xc8\x67\x77\x15\xf2\xd9\x5d\x85\x7c\x76\xc7\x20\x9f\xdd\x31\xc8\x67\x77\x07\xf2\xd5\x20\x4f\x97\x52\xd4\x56\xc7\xb3\x7a\xb5\x05\xdc\xe5\x11\x9b\xde\x66\x90\xb6\x0b\xc8\x26\x57\xe8\x7a\x9d\xd5\x65\x5e\xf0\xce\x20\xb2\x3c\x4c\x68\x03\x92\x6f\x10\x5c\xf6\x32\xdc\x93\xbb\x79\x39\xd1\x9b\xcf\xbf\x5d\x49\xf4\xc5\x7a\xc1\xe2\xf5\x9b\xd3\xf3\xf9\x8f\xde\x73\xfa\xce\x64\x36\xa7\xc1\xba\x9c\xd3\xd2\x01\xeb\x43\x56\x07\xe5\x60\xdd\xdf\x97\x96\xe5\xca\x6f\x84\x63\x0e\x4c\xcb\xb0\x44\xfa\x7b\x92\xfe\xec\x1b\xeb\x57\x7c\xb7\x01\x0b\x98\xcf\x71\x56\x6b\x1a\x6f\xdc\x5d\xad\x2c\xfd\x62\x96\xe1\xde\x2c\xee\x31\x59\x86\xf9\x2c\x43\xd3\xd9\x9b\xa5\x77\x78\x96\x34\x6c\x3e\xcb\xfe\x2b\xd6\x3f\x26\x4b\xbf\x98\xc5\xb6\xac\xbd\x79\x06\xc7\xe4\xb1\xed\xc3\x13\x0d\xb7\x89\xd2\xff\xfc\xb6\xae\xc8\xab\x45\xb6\x27\x8f\x5e\x10\xc8\x59\xb9\xe2\xce\xbc\x58\x2e\xd2\xd7\xbf\x57\x93\xc8\xd9\xc3\x7f\x7b\x72\x17\x9b\xd7\x81\x83\xac\x52\xaf\x5f\xcb\x2d\xc6\x8c\xe4\x4c\x7a\x0b\x59\x8e\xf9\xec\x7d\xfd\xb8\xca\xf6\x73\xaa\xaf\x73\xe5\x7c\x49\x6a\xc4\x78\xbc\x79\x23\xde\x0f\x2a\xf7\xb4\x0c\x6f\x36\x7f\xf4\x36\xc5\x79\xc9\xfd\x3d\x71\x35\xa6\x63\xad\x8a\xbb\xe5\x1a\xe7\x2e\xc3\xd8\xb4\x07\x6f\x5c\x06\xc7\x32\xed\xbe\xa6\x0c\xde\x83\x0c\xe2\x0f\xd1\xc3\x96\xed\x88\xbb\x69\x38\x79\x4a\x5f\xc9\xfe\x67\xa9\x42\x15\x5e\x9e\x4d\xb6\xc7\xaf\xf3\xf4\xf6\x7f\x0e\xc3\x99\xf4\x82\x52\x45\xbe\xbb\x9f\xa5\x65\x5e\x7f\x70\xf0\xcf\xf2\x61\x8b\x38\xf2\x83\x07\xdd\x51\xfe\xbd\x37\x91\xf5\x0f\x4b\x3d\xdb\xea\xf5\x74\x2f\x7a\x50\x1d\xe7\x45\x91\xf7\xaa\x3a\x6c\x26\xe3\x83\x8e\x99\x7b\xcb\x85\x34\xd2\x59\x4d\xea\x97\x6f\x1e\x85\xb1\x9c\xc4\xc6\xea\x9d\x79\x23\xd7\xee\x9f\x7a\x99\x8b\x9f\x75\xd4\x2c\xce\x42\xce\xfc\x60\xf9\xb5\x81\xf4\x8b\xc0\x9b\x2f\x1e\xc3\x38\x2e\xd6\x19\x75\xfa\x77\xb9\x43\xf7\x3e\x00\xbd\x63\xeb\xff\xca\xb7\x97\xaa\x75\x86\xda\x8d\x89\x3f\xad\x51\xd0\xf7\xa5\xa3\xa6\xc1\xe2\x88\x83\xc2\x44\x00\xd5\x3f\x6e\xea\xc5\x5e\x4a\xfe\x8c\x89\x97\x28\xa4\xa3\x8e\x94\x51\x7c\xec\xb1\x32\x98\xce\x43\x3f\x88\x8f\x39\xf6\x49\xbe\x1e\x98\x76\x55\xdd\x8c\x59\x38\xd9\x7e\x20\x64\xcc\xbd\xf4\xfb\xb1\xba\x31\xfc\x45\xf6\x85\xd6\xe6\x80\x30\x1d\x32\xcb\xe9\xa9\xe4\x7e\x84\x91\x4c\x6e\xe0\xfb\xcd\x96\x4c\x26\xcf\x3e\xe7\xb6\xc5\x91\x27\xef\xfd\xa7\xdc\x96\x42\xd1\x72\xdb\xb3\x37\x8d\x8d\x55\x3d\xcb\x0a\xb5\xea\xf4\xc4\xde\xd6\x23\x2b\xf3\x96\x2f\x35\xf0\x0c\xae\x63\xa6\x43\x56\xc6\x24\xff\xb5\x4d\x63\xa1\x77\x28\x4d\x83\xc1\xb3\xef\x11\x9b\x0a\xb7\xed\x0b\x1a\x0c\xba\xf9\xea\x2e\x1d\xff\x69\x30\x70\xfe\x2b\xa8\x53\x63\x26\x17\xd2\x90\x5f\xe7\xe1\x42\x1a\x59\x2d\x6d\xb0\x23\xff\xec\x4d\x9e\x64\x30\xdd\xf7\xb8\x05\x61\x90\x7f\x5a\x5e\xbe\xce\xbc\x20\xf7\xdb\x9f\x2f\xe4\x24\xf7\xfb\x31\x5c\xc4\xc6\xc3\x97\xdc\x96\x2f\x7e\x24\x1f\x96\x5e\x34\xd5\x3f\x5a\x32\x58\x3e\x2b\x25\xc0\xe6\xb1\x3a\x58\x06\xec\x3c\x3d\xeb\x8a\x7e\x44\xa4\x06\x62\x6c\xaa\xc5\x41\x87\x2e\xe4\x24\x92\xf1\xc2\xd8\xbe\x3d\xd0\x44\x17\xbf\x6a\x2d\x0f\xec\x3a\xd7\x47\xa5\xdf\xd3\xce\xc3\x28\x36\x22\x2f\x38\x44\x32\xc5\xb3\x85\xb1\xf0\x94\xfd\x67\xe1\xdc\x0b\xa2\xa2\xa4\x7d\x6d\xb3\x87\xf4\x45\xfa\x22\x7d\x91\xbe\x48\x5f\x81\xf4\x45\xfa\x22\x7d\x91\xbe\x48\xdf\x9b\x90\xbe\x50\x5f\xa4\xaf\x40\xfa\x22\x7d\x91\xbe\x02\xe9\x8b\xf4\x45\xfa\x22\x7d\x91\xbe\xb7\x23\x7d\x1d\xa4\x2f\xd2\x77\x53\x2f\x91\xbe\x75\xae\x13\xd2\x17\xe9\x8b\xf4\x45\xfa\x22\x7d\x91\xbe\x07\x44\x42\xfa\x5e\x8c\xf4\xd5\xbd\x6f\x8c\xf4\x45\xfa\x9e\xfa\x5c\x20\x7d\x91\xbe\x48\x5f\xa4\x2f\xd2\xf7\x42\xa4\xef\x21\x7d\x19\x5a\x19\xad\x8c\x56\x2e\x68\xe5\x21\x5a\x19\xad\x8c\x56\x46\x2b\xa3\x95\x05\x5a\x19\xad\x8c\x56\xce\x1f\x80\x56\x46\x2b\xa3\x95\xd7\x5a\x79\xc4\x2b\x15\x68\xe5\x0b\xd0\xca\x9b\x83\x56\xab\x90\xae\xf5\x52\x24\x1f\xfc\x45\x1c\xbd\x22\xb6\x4b\x07\x21\xb6\x11\xdb\x88\x6d\xc4\x36\x62\x1b\xb1\x8d\xd8\xee\x88\xd8\x1e\x03\xa6\x11\xdb\x88\x6d\xdd\x8e\x2e\x62\x1b\xb1\x9d\x1d\x80\xd8\x46\x6c\x23\xb6\x11\xdb\xe5\x92\x22\xb6\x11\xdb\xf5\xc4\xb6\xad\x9b\x26\x1a\xb5\x8d\xda\x3e\xf5\xc1\x40\x6d\xa3\xb6\x51\xdb\xa8\x6d\xd4\x36\x6a\x1b\xb5\x8d\xda\x46\x6d\x3b\xa8\x6d\xd4\x36\x6a\x1b\xb5\x8d\xda\x16\xa8\x6d\xd4\x36\x6a\x1b\xb5\x8d\xda\x46\x6d\x97\x02\x34\xa4\xb6\x5d\xd4\x36\x6a\xfb\xea\xd4\xf6\xbd\xf4\xe2\x65\x24\x33\xed\x9c\xaf\xc3\xdb\x47\x3f\x51\x71\xc6\x7a\x39\xdf\x24\x9e\x63\x5a\xa6\x75\x57\x88\x83\x6a\x2f\xf7\xe3\xa8\x76\x54\x3b\xaa\x1d\xd5\x8e\x6a\x47\xb5\xa3\xda\xdf\x4a\xb5\xb3\x6a\x21\xaa\x5d\x5c\x80\x6a\x2f\x54\xd3\xe6\x56\xac\x47\x2d\xa3\x96\xab\x7a\x63\xd4\x32\x6a\x19\xb5\x8c\x5a\x46\x2d\xa3\x96\xf7\xa9\x65\x87\x25\xbe\x11\xcb\xe5\x7a\x89\x58\xae\x75\xa1\x10\xcb\x88\x65\xc4\x32\x62\x19\xb1\x8c\x58\x46\x2c\xdf\x84\x58\x66\x65\x44\xc4\xb2\xb8\x00\xb1\xbc\x39\xe8\x2c\x6f\x5f\xa3\xb6\x51\xdb\xa8\xed\x5a\x4f\x31\x6a\x5b\xa0\xb6\x51\xdb\xa8\x6d\xd4\xf6\xe9\x6a\x9b\xc5\x18\x51\xdb\x02\xb5\x8d\xda\x46\x6d\x97\x62\xa0\xb6\x05\x6a\x1b\xb5\x8d\xda\x46\x6d\xa3\xb6\x1b\x52\xdb\x2c\xe7\x88\xda\x16\xa8\x6d\xd4\x36\x6a\xbb\x14\x03\xb5\x2d\x50\xdb\xa8\x6d\xd4\x36\x6a\x1b\xb5\xdd\x90\xda\x66\x8d\x1a\xd4\xb6\x40\x6d\xa3\xb6\x51\xdb\xa5\x18\xa8\x6d\x81\xda\x46\x6d\x6f\xc5\xf3\x43\x24\x17\x49\xc5\x9c\xc9\x49\x1c\x46\xc6\x73\x38\x3d\xe0\x91\x44\xab\xeb\x9e\x64\xb4\x3a\x5a\xbd\x9e\x56\x67\x89\x1b\xc4\x7a\xb9\x62\x5e\x81\x58\x3f\xd7\x34\x80\x88\x7e\x44\x3f\xa2\xbf\x56\x6b\x80\xe8\x17\x88\x7e\x44\xbf\x40\xf4\x23\xfa\xdf\x5a\xf4\xdb\x7c\xeb\x89\xe8\x47\xf4\x23\xfa\x11\xfd\x88\x7e\x44\x3f\xa2\x5f\x19\x18\xd1\xaf\xd1\x22\x88\xfe\xba\x91\x10\xfd\x97\x23\xfa\x59\xf0\x07\xd1\x2f\x10\xfd\x88\x7e\x44\x3f\xa2\x1f\xd1\x8f\xe8\x57\x06\x46\xf4\x6b\xb4\x08\xa2\xbf\x6e\x24\x44\xff\xe5\x88\xfe\x3e\xa2\x1f\xd1\x8f\xe8\x47\xf4\x23\xfa\x11\xfd\x88\x7e\x44\xbf\x32\x30\xa2\x5f\xa3\x45\x10\xfd\x75\x23\x21\xfa\x2f\x47\xf4\x33\xb9\x24\xa2\x5f\x20\xfa\x11\xfd\x88\x7e\x44\x3f\xa2\x1f\xd1\xaf\x0c\x8c\xe8\xd7\x68\x11\x44\x7f\xdd\x48\x88\xfe\xcb\x11\xfd\xcc\x71\x89\xe8\x17\x57\x27\xfa\x9b\x13\xeb\x3d\xc4\x3a\x62\x3d\x3b\x00\xb1\x8e\x58\x47\xac\x23\xd6\x37\xbf\x11\xeb\x88\xf5\x5a\x01\x9a\x10\xeb\xae\xd9\x43\xab\xa3\xd5\xd1\xea\x68\x75\xb4\x7a\x29\x06\x5a\x5d\xa0\xd5\xd1\xea\x68\xf5\x66\xb4\xba\x62\x9b\x11\x78\xb1\xff\x22\x91\xf1\xc8\xf8\x53\x65\x3c\xef\xd9\x20\xe3\x05\x32\x1e\x19\x8f\x8c\x2f\xc5\x40\xc6\x0b\x64\x3c\x32\x1e\x19\x8f\x8c\x47\xc6\x5f\xba\x8c\xe7\xcd\x19\x64\xbc\xb8\x3a\x19\x7f\x79\xaf\xcb\x63\x07\xb0\x03\x55\x82\x01\x3b\x80\x1d\xc0\x0e\x60\x07\x04\x76\x00\x3b\xf0\x76\x76\x60\xc4\xe4\xf8\xd8\x01\xec\xc0\x51\x76\x60\x88\x1d\xc0\x0e\x60\x07\xea\xb5\x06\xd8\x01\x81\x1d\xc0\x0e\x08\xec\x00\x76\xe0\x72\xed\x00\x2b\xe4\xe2\x07\xca\x15\x13\x3f\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\xfc\x00\x7e\x00\x3f\x70\x43\x7e\x80\x75\xb4\xf0\x03\x02\x3f\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\x65\x60\xfc\x80\x46\x8b\xe0\x07\xf0\x03\x3b\x41\xbb\xec\x07\x98\xcc\x07\x3f\x20\xf0\x03\xf8\x01\xfc\x00\x7e\x00\x3f\x80\x1f\x50\x06\xc6\x0f\x68\xb4\x08\x7e\x00\x3f\xb0\x13\xb4\xcb\x7e\x80\x25\x77\xf1\x03\x02\x3f\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\x65\x60\xfc\x80\x46\x8b\xe0\x07\xf0\x03\x3b\x41\xbb\xec\x07\x98\x25\x14\x3f\x20\xf0\x03\xf8\x01\xfc\x00\x7e\x00\x3f\x80\x1f\x50\x06\xc6\x0f\x68\xb4\x08\x7e\x00\x3f\xb0\x13\xb4\xcb\x7e\x80\xe9\x46\xf1\x03\x02\x3f\x70\x94\x1f\x38\x64\xba\xd1\x21\x7e\x00\x3f\x90\x1d\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\x9b\xdf\xf8\x01\xfc\xc0\x25\xf8\x81\x9e\xe9\x30\xdd\x28\x76\x00\x3b\xd0\xfa\xf0\x00\x76\x00\x3b\x50\x25\x18\xb0\x03\xd8\x01\xec\x00\x76\x40\x60\x07\xb0\x03\x6f\x67\x07\xf8\x9a\x18\x3b\x20\xb0\x03\xd8\x01\xec\x00\x76\x00\x3b\x80\x1d\x50\x06\xc6\x0e\x68\xb4\x08\x76\x00\x3b\xb0\x13\xb4\xc3\x76\x80\x97\x85\xb0\x03\x02\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xd8\x01\x65\x60\xec\x80\x46\x8b\x60\x07\xb0\x03\x3b\x41\x3b\x6c\x07\x46\xd8\x01\xec\x00\x76\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xca\xc0\xd8\x01\x8d\x16\xc1\x0e\x60\x07\x76\x82\x76\xd8\x0e\x8c\xf9\x76\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xd8\x01\xec\x80\x32\x30\x76\x40\xa3\x45\xb0\x03\xd8\x81\x9d\xa0\x1d\xb6\x03\xb6\xc5\xf0\x00\x7e\x00\x3f\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\x65\x60\xfc\x80\x46\x8b\xe0\x07\xf0\x03\x3b\x41\xbb\xec\x07\x6c\xfc\x00\x7e\x00\x3f\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\x65\x60\xfc\x80\x46\x8b\xe0\x07\xf0\x03\x3b\x41\xbb\xec\x07\x5c\xfc\x00\x7e\x00\x3f\x80\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\x65\x60\xfc\x80\x46\x8b\xe0\x07\xf0\x03\x3b\x41\xbb\xec\x07\x98\x6c\x14\x3f\x20\xf0\x03\xf8\x01\xfc\x00\x7e\x00\x3f\x80\x1f\x50\x06\xc6\x0f\x68\xb4\x08\x7e\x00\x3f\xb0\x13\xb4\xcb\x7e\xa0\x8f\x1f\xc0\x0f\xe0\x07\xf0\x03\xf8\x01\xfc\x00\x7e\x00\x3f\xa0\x0c\x8c\x1f\xd0\x68\x91\xee\xfa\x81\x47\x39\x7b\x36\xfe\x2b\xfc\x7c\xa8\x5c\xc1\x47\xe0\x23\x14\x3e\x62\x80\x8f\xc0\x47\xe0\x23\xf0\x11\xf8\x08\x7c\x04\x3e\x02\x1f\xa1\x0c\x8c\x8f\xd0\x68\x11\x7c\x04\x3e\xe2\x36\x7c\x44\x69\x7f\x63\x21\x27\xcb\xc8\x8f\x95\xca\xac\x74\x86\x05\x49\xb5\x6b\x41\x58\x38\x0d\x0b\x22\xb0\x20\x2d\x5b\x90\xa1\xe9\x60\x41\xb0\x20\xd9\x01\x58\x10\x2c\x08\x16\x04\x0b\xb2\xf9\xcd\xab\x4d\x58\x89\x4b\x18\x92\xe8\xb3\x8e\x32\x76\xa0\x5c\x2f\xb1\x03\xd8\x01\xec\x00\x76\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xb7\x63\x07\xc6\xd8\x01\xec\x00\x76\x00\x3b\x80\x1d\xc0\x0e\x60\x07\xb0\x03\xca\xc0\xd8\x01\x8d\x16\xc1\x0e\x60\x07\x76\x82\x76\xd8\x0e\xb0\x70\x1a\x7e\xa0\x5c\x31\xbb\xe9\x07\xd6\x01\x5e\xe6\x81\xe1\x2d\x0f\x51\x6c\xeb\x23\x8c\x7a\x62\xb1\xf0\x40\x61\x3c\x30\x1e\x18\x0f\x8c\x07\xc6\xa3\x99\xc0\x18\x0f\x8d\xe8\xc1\x78\x60\x3c\x76\x82\x76\xd9\x78\xb0\x42\x1b\xc6\x43\x60\x3c\x30\x1e\x35\x2e\x14\xc6\x03\xe3\x81\xf1\xc0\x78\x60\x3c\x30\x1e\x82\x4f\xb2\x31\x2c\x6f\x61\x58\x1c\x0c\x0b\x86\x05\xc3\x82\x61\xa9\x71\xa1\x30\x2c\x18\x16\x0c\x0b\x86\x05\xc3\x82\x61\x11\x18\x16\x0c\x4b\x97\xe6\x90\xea\xb3\x5c\x36\x5e\x67\xa7\x4e\xe3\x75\x2a\x0f\x2b\x3c\x50\x78\x1d\xbc\x0e\x5e\x07\xaf\x83\xd7\x69\x26\x30\x5e\x47\x23\x7a\xf0\x3a\x78\x1d\xbc\xce\x9e\x33\x2c\x48\xaa\x5d\xaf\x93\x2e\xfd\xe7\xd4\xf4\x3a\xe5\x9e\xc9\x98\x7d\xae\x51\x82\x4d\x7b\x86\x55\xc2\x2a\x61\x95\x04\x56\x09\xab\x84\x55\xca\xb6\x63\x95\xb0\x4a\x58\x25\xac\x12\x56\x09\xab\x74\xe1\x56\x29\x5d\xdd\xb0\xc7\xb0\x10\x5e\x67\x53\xa7\xbb\xe9\x75\x0a\xf5\xfc\xf2\x2c\x48\x1f\x0b\x82\x05\xc9\x0e\xc0\x82\x60\x41\xb0\x20\x58\x90\xcd\x6f\xbe\xe1\xc7\x4a\x5c\xc2\x27\x31\x03\xb3\xcf\x5b\x62\xd8\x81\x6b\xb0\x03\xeb\x00\xb7\x3e\xf4\x81\xef\xc0\x77\x54\x29\x13\x7c\x07\xbe\x03\xdf\x81\xef\x10\xf8\x0e\x7c\xc7\xdb\xf9\x8e\x01\xbe\x03\xdf\x81\xef\xc0\x77\xd4\xb8\x50\xf8\x0e\x7c\x07\xbe\x03\xdf\x81\xef\xc0\x77\x08\x5e\xb9\xc2\xaf\xbc\x81\x5f\x61\x09\x76\xfc\x8a\xc0\xaf\xe0\x57\x6a\x5c\x28\xfc\x0a\x7e\x05\xbf\x82\x5f\xc1\xaf\xe0\x57\x04\x7e\x05\xbf\xd2\xa5\x4f\x44\x06\xe6\x08\xab\x83\xd5\xc1\xea\x60\x75\x6a\x5c\x28\xac\x0e\x56\x07\xab\x83\xd5\xc1\xea\x60\x75\x04\x56\x07\xab\xd3\x2d\xab\xb3\x5a\x3a\x9f\x89\xc3\xb0\x4a\x58\x25\x81\x55\xc2\x2a\x61\x95\xb0\x4a\x58\x25\xac\x12\x56\x09\xab\x84\x55\xc2\x2a\xe5\xac\x92\x7d\x88\x55\xc2\xeb\xe0\x75\xf0\x3a\xe2\xa2\xbd\x8e\x8d\xcb\xc1\xe5\xe0\x72\x70\x39\xb8\x1c\x5c\x0e\x2e\x07\x97\x73\xf3\x2e\x67\xc8\x74\x68\x98\x9c\x72\x95\xc6\xe4\x54\x1e\x56\x78\x9e\x30\x39\x98\x1c\x4c\x0e\x26\xa7\x91\xe0\x98\x1c\x4c\x0e\x26\x07\x93\x83\xc9\x69\xd8\xe4\x0c\x79\xe9\x0d\x8f\x84\x47\xc2\x23\xe1\x91\xf0\x48\x78\x24\x3c\x12\x1e\x09\x8f\x84\x47\xc2\x23\xe1\x91\x36\x1e\x69\x94\xf3\x48\xef\x84\xf8\xed\x5d\xba\xeb\x5d\xf4\x24\x9d\x2c\xf6\x9d\x37\x9f\x7f\xbb\x55\xde\xe9\x63\xb5\x36\x52\xf3\xf9\x8f\xde\x73\x9a\x34\xf2\x82\xc9\xa3\x8c\xd6\x02\x6b\x5a\x3a\x40\x6c\x8b\xe9\xcd\xe7\x39\x61\xf6\xf7\xa5\x65\xb9\xf2\x1b\xe1\x98\x03\xd3\x32\x2c\x91\xfe\x9e\xa4\x3f\xfb\x86\xb5\x79\xde\xd6\x01\x73\x47\xda\xa6\xe3\x98\x5f\x4b\x17\xa8\x46\x96\x7e\x31\xcb\x70\x6f\x16\xf7\x98\x2c\xc3\x7c\x96\xa1\xe9\xec\xcd\xd2\x3b\x3c\x4b\x1a\x36\x9f\x65\xff\x15\xeb\x1f\x93\xa5\x5f\xcc\x62\x5b\xd6\xde\x3c\x83\x63\xf2\xd8\xf6\xe1\x89\x86\xdb\x44\xe9\x7f\x7e\xdb\xd4\xe4\xe4\xb8\xbb\xc9\xca\x0f\x94\x2b\xee\xcc\x8b\xe5\x22\x5e\x3f\x05\x8e\x69\x0f\xff\x2d\xa9\xf1\xd1\xc6\x20\x04\x59\xb5\x5e\xb7\x26\xc5\xa8\x91\x9c\x49\x6f\x21\xcb\x51\xab\x9d\xca\xa0\xb6\x53\x49\x9e\x84\xe2\xe7\x39\xc5\xc7\xd6\x1e\x9b\xf6\x60\x5d\xe0\x77\x65\xba\x71\xae\x52\x38\x96\x69\xf7\x57\xa5\xa8\xc9\x58\xbc\xe5\xd4\x8f\x33\x79\x54\xd3\x51\x6e\x0d\x93\xa6\xdf\x92\x5f\xe3\xc8\x33\x64\xf0\x52\xbb\x09\xdd\x13\xea\x39\x5c\xaa\xfd\x4d\x45\xb0\x79\x14\xbe\xf8\xd3\xc4\x3a\x86\xc1\xbd\xaf\xec\xc9\xaa\x4e\x6b\x73\x78\x56\xeb\x14\x7d\x59\xb0\x9c\xcd\x36\x0f\x42\xf2\x23\x73\x35\x71\xb4\xdc\x76\x71\x2a\xed\xe3\x7d\xc9\xbb\x1a\xef\xbf\x97\x51\x5e\x0a\x3d\x4c\xe6\xb9\x5f\x59\x1b\x6e\xbc\x2c\xe6\x8f\xb2\xb0\x9f\xfc\x1a\xcb\x28\xf0\x66\x87\x89\x9c\xec\x1a\x1b\xf3\x99\x17\x48\x23\x92\x8b\x70\x19\x4d\xa4\x31\xf3\x9f\xfd\xf8\x10\xb3\xac\x0e\x13\xc9\x7f\x2c\xe5\xe2\x90\x40\x99\x18\x3d\xb4\xc2\xe4\x0e\x3b\xac\x72\x94\xc4\xda\xe1\x99\x95\x01\x8e\x28\x43\x23\xcf\x4d\x75\xa4\x23\x4a\x75\x1c\x78\xcc\x0e\x3b\xb2\xfc\xf9\x83\x8f\x28\xf2\x56\xb0\x1e\x99\xbf\x1c\xe0\xf0\x32\x1c\x0c\x5e\xa3\xb0\xdc\xd4\x1e\xd2\x7e\x4c\xfc\x85\x61\x9b\xfd\x5c\x5b\xb0\xda\x32\x38\xac\x29\xb8\x7c\x92\x9b\x4f\xd3\x18\x79\x7d\x97\x0b\x93\x68\x91\x28\x7f\xca\xe5\xf6\xd6\x98\xcc\xfd\x7c\xc8\x48\xce\xc3\x9c\xb4\x36\xb2\xe3\x37\x17\x26\xd7\x1d\xdb\x96\xb5\x05\xa7\xb9\x6b\x53\x4e\xb0\x68\x3a\xc1\x93\x74\x8c\x89\x37\xf3\x27\x61\x55\xe0\xd5\x6e\xfa\xe8\x2f\x6e\xa2\x69\x1c\xc3\xb1\xdc\x8a\x0c\xc6\x24\x9a\x9e\x94\xc5\x36\x2d\xd3\xb6\x6c\x4d\x8a\xa4\x7b\x3b\xf1\x1c\x5c\xd3\xb5\x2c\xe3\xf3\xd2\x9f\x4d\x1d\xcb\xb1\x2d\xc7\x71\xad\x81\x3a\x9d\x3f\xf3\x97\xcf\xa7\xe4\xb3\xcd\xb1\x39\xb2\xc6\xea\xe8\x19\xce\x3c\x29\xbc\x3d\x30\x1d\xcb\xce\x9d\xcd\xd0\x71\xad\x91\x32\x9f\x1f\xac\xa8\x52\xf0\xe0\x07\x5f\x4f\xc9\xea\x9a\x6e\xcf\xb4\x34\xb5\xa0\x04\x55\x4f\x48\xe3\x98\xb6\x9d\xba\x8b\xe2\xad\x72\xd4\x69\x97\xb3\x78\x79\xd2\xb5\x7c\x71\x13\x33\x93\x4b\xd6\xb3\x07\x56\x4f\xd9\x46\xec\x13\xef\xbd\x63\xb5\xbb\x72\xc4\xe3\x24\x41\x7e\xf1\x83\x25\x93\xc0\x57\xf7\x2f\x77\x59\x8b\x55\xdd\xf1\xa5\x0d\x42\xbe\xdb\x4b\x9f\xd8\xdc\x86\x62\x10\x71\xb7\xaa\x28\xef\xcb\x07\xae\x37\x97\x8f\xdf\xec\x9e\x86\xd1\xf6\xa6\x6a\xdb\x11\x06\xb1\xe7\x07\x49\xdd\x5b\x06\xb1\xff\x7c\xd4\xc8\x4c\xbd\xa1\x91\x42\x83\xf2\xbe\xb8\xb9\xf8\xdc\x97\xfe\xd8\xc8\x18\x48\xd5\x78\x45\x55\x8f\xdd\x2a\xe8\x57\xf2\xf8\xaa\xd2\xb4\x43\xc1\xd3\xa8\x67\xe6\xc7\xdb\x43\x8f\x49\xdc\x12\x77\x3e\xa6\x28\x47\x9a\x8f\xe3\x88\x75\xe9\xd0\x23\xca\x9b\xa8\xfe\xc3\x46\x3e\x8f\x7a\xe1\x62\xdd\x9a\x1c\x78\xd8\x1b\xc1\xf3\xa3\xde\xa2\x68\x62\x99\x14\xdb\xec\x01\xbe\x6e\x02\x7c\x3d\x7a\xd1\x8b\x4c\xd4\x07\x30\x6c\xe7\x30\x60\x18\x30\x0c\x18\x06\x0c\x6b\x06\x86\x6d\x5a\x5a\xa3\xd8\x37\x9c\x62\xbc\x2d\xd3\x36\x1d\x6b\x87\x5a\xe5\x52\x2d\x7c\x63\x1a\xf9\x27\xe2\x84\x24\x8d\xbb\x9b\x06\xbc\xb7\x83\xf7\x7a\xe0\xbd\xfa\xfc\xcd\x32\x7b\x1a\x24\x05\xdf\xbb\x79\xbe\x67\xc3\xf7\xe0\x7b\xf0\x3d\xf8\x5e\xf1\x18\xf8\x1e\x7c\x0f\xbe\x77\x3a\xdf\xeb\x6b\x5f\xaf\x83\xef\xd5\x3f\x2d\xf8\x1e\x7c\x0f\xbe\x07\xdf\x83\xef\xc1\xf7\xe0\x7b\x37\xc0\xf7\xfa\xf0\xbd\xc3\xf8\x9e\x06\x88\xc2\xf7\xe0\x7b\xf0\x3d\xf8\x1e\x7c\x0f\xbe\x27\xe0\x7b\x8a\x30\xf0\x3d\xf8\x5e\xe5\xbd\x2b\x74\xcb\x3a\xbe\xc7\xfb\x7b\xf0\x3d\xf8\xde\x31\xdd\x07\x7c\x0f\xbe\x07\xdf\x83\xef\xc1\xf7\xe0\x7b\x1d\xe1\x7b\x8e\x95\x87\x38\xb6\x65\x0d\x74\x9f\x1b\x77\x83\xee\xb9\x56\xf9\x74\xd4\x00\xac\x31\xba\xd7\x33\x2d\xd3\xd5\xd4\x01\xe0\x1e\x70\x0f\xb8\x27\x04\x70\xaf\x18\x00\xb8\x07\xdc\x03\xee\x01\xf7\xea\x1d\xd4\x0c\xdc\xd3\xcf\x8d\x07\xdc\xab\x7f\x5a\xc0\x3d\xe0\x1e\x70\x0f\xb8\x07\xdc\x03\xee\xb5\x05\xf7\x14\xd4\xad\x0d\xb8\xd7\x6b\x1b\xee\xd9\xa6\xf5\x6f\xcb\xf9\x0a\x60\xb5\x8c\xf9\x56\xa9\x1c\xd3\x05\xf7\x1d\x84\xfb\x6c\x7b\xac\xe3\x71\xdd\xc0\x7d\x3d\xab\x7c\x3a\xea\x6b\xd7\x30\xee\x53\xbf\x00\xd9\x26\xee\xab\xb8\x55\xcd\xe3\xbe\x34\xd9\x00\xdc\x07\xee\x03\xf7\xdd\x0e\xee\x7b\xfb\x25\x6c\xe0\x83\xf0\x41\xf8\xe0\xdb\xf0\xc1\x21\x2f\xff\xc1\x07\xb5\x7d\x20\x7c\x10\x3e\x08\x1f\x84\x0f\xc2\x07\xdf\x9e\x0f\x8e\xce\xc3\x07\xc7\xf0\x41\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\xc2\x07\xe1\x83\xf0\x41\xf8\x20\x7c\x70\xf5\xd7\xdb\xe3\x83\x23\xf8\x20\x7c\x50\xdb\x07\xc2\x07\xe1\x83\xf0\x41\xf8\x20\x7c\x10\x3e\x08\x1f\x54\x64\xb9\x1e\x3e\xe8\x6e\x38\x90\x63\xd9\x76\xaf\xdb\x93\x01\xc2\x07\xe1\x83\xf0\xc1\xd5\x6f\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\xc2\x07\x0f\xe7\x83\x63\xbe\x2f\x86\x0f\x6a\xfb\x40\xf8\x20\x7c\x10\x3e\x08\x1f\x84\x0f\xbe\x3d\x1f\xb4\xad\xf3\x00\x42\x55\x1e\x08\xe1\xd5\x13\x42\xdb\xec\xe5\x08\xa1\xe3\x8c\x74\xc9\x20\x84\x10\x42\x45\x3b\xd8\x18\x21\x74\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\xac\x75\x14\x84\xb0\x4d\x42\x68\x5b\xbc\x42\x08\x22\xd4\x76\x82\x20\x42\x10\x21\x88\x10\x44\x08\x22\xbc\x00\x44\xa8\xe0\x69\xad\x20\xc2\x3a\xdc\xae\x1a\x11\xee\x87\x38\x8e\x92\x77\x1d\x46\x07\xf7\xe3\x94\xbe\x69\x1b\xd9\xde\x7a\xbc\x06\x23\x54\x31\x42\xd7\x1e\xb6\xc9\x08\x6d\xd3\xd1\xad\x69\xd2\x08\x23\x1c\x9a\x2a\xd0\xdd\x30\x13\xb4\x4d\x4b\x73\x8d\x60\x82\x30\x41\x98\xa0\x10\x30\xc1\x62\x00\x98\x60\xcd\xf2\xc3\x04\x61\x82\x30\xc1\x37\x62\x82\x0e\xaf\x0d\xc2\x04\xb5\x9d\x20\x4c\x10\x26\x08\x13\x84\x09\xc2\x04\x61\x82\x30\x41\x98\x20\x4c\xb0\xcc\x04\x35\x2b\x00\xc3\x04\x61\x82\x30\x41\x01\x13\x2c\x06\x80\x09\xd6\x2c\x3f\x4c\x10\x26\x08\x13\x7c\x5b\x26\xc8\x7b\x82\x30\x41\x98\xe0\x31\xfd\x07\x4c\x10\x26\x08\x13\x84\x09\xc2\x04\x0f\x63\x82\x0e\x4c\xf0\xa6\x99\x60\x5f\x17\xbe\x5b\x4c\x50\x0d\x36\x61\x82\x30\x41\x98\xa0\x10\x30\xc1\x62\x00\x98\x60\xcd\xf2\xc3\x04\x61\x82\x30\xc1\x37\x62\x82\x2e\x4c\x10\x26\xa8\xed\x04\x61\x82\x30\x41\x98\x20\x4c\x10\x26\x08\x13\x84\x09\xc2\x04\x3b\xc3\x04\xc7\x66\x0f\x26\xd8\x2e\x13\xbc\x97\x5e\xbc\x8c\x64\x46\xf8\xf2\x2d\xa0\x0c\x26\xd1\x6b\xda\xeb\x18\x4f\xf2\xd5\x88\xc2\xd8\x8b\x37\xa7\x63\xad\x27\xfa\x84\x2d\xc2\x16\x05\x6c\x11\xb6\x98\x3b\x00\xb6\x08\x5b\x84\x2d\x5e\x0b\x5b\xec\xf1\x0d\x32\x6c\x51\xdb\x09\xc2\x16\x61\x8b\xb0\x45\xd8\x22\x6c\xf1\xed\xd9\xa2\x7b\x1e\xb4\xa8\x62\x32\x2c\x5c\x52\xbd\x2c\xb0\x8a\x93\x36\x8c\x15\x1d\xcd\xd7\xae\x0d\x2d\x6c\x5c\xc6\x49\x9a\x75\x45\x58\xb6\x44\x83\x19\x59\xb6\xa4\x8a\xfa\x8d\xc7\xf0\x41\xf8\x20\x7c\x50\xec\x93\x24\xf0\x41\xf8\x20\x7c\x10\x3e\x58\x0a\xf0\x56\x7c\xd0\x31\x7b\xbc\x7a\x08\x1e\xd4\xf6\x81\xe0\x41\xf0\x20\x78\x10\x3c\x08\x1e\x7c\x7b\x3c\x38\x3a\x0f\x1e\x1c\x83\x07\xc1\x83\xe0\x41\xf0\x20\x78\x10\x3c\x08\x1e\x3c\xec\x04\xc1\x83\xe0\x41\xf0\x20\x78\x50\x79\x54\x17\xf1\x60\x1f\x3c\x08\x1e\xd4\xf6\x81\xe0\x41\xf0\x20\x78\x10\x3c\x08\x1e\x04\x0f\x82\x07\x15\x59\xae\x05\x0f\xba\xb9\x8f\x92\x6d\xbb\xa7\x41\x5d\xe0\x41\xf0\xa0\xaa\x0d\x04\x0f\x82\x07\x4b\xe7\x06\x1e\x04\x0f\x82\x07\xc1\x83\xe0\xc1\x4e\xe3\xc1\x01\x1f\x17\x83\x07\xb5\x7d\x20\x78\x10\x3c\x08\x1e\x04\x0f\x82\x07\xdf\x1e\x0f\xda\x8a\xe5\x19\x5a\x99\xb8\x50\xb5\x0c\x44\xd3\x13\x17\xda\xca\xc5\x26\x9a\x9e\xb8\xb0\x97\x9f\xb8\xb0\x4d\x42\x68\x9b\x3d\x2d\xbe\x6b\x84\x10\xee\xc9\xd1\xf8\xbc\x85\x8e\x33\x6a\x73\xde\x42\x10\xe1\xd1\x75\x1a\x44\x28\x4e\x76\x22\x20\x42\x10\x21\x88\x10\x44\x08\x22\x04\x11\x82\x08\xf7\x21\xc2\x21\x6f\x10\x82\x08\xb5\x7d\x20\x88\x10\x44\x08\x22\x04\x11\x82\x08\x2f\x00\x11\x5e\xd7\xda\x26\xaa\x75\x3a\xba\xba\xb6\xc9\xf5\x21\xc2\xd6\x97\x36\x71\x34\xab\x82\x74\x6c\xb9\x63\xf5\x35\x02\x09\x82\x04\x41\x82\x59\x6e\x90\x20\x48\x10\x24\x08\x12\x04\x09\x76\x04\x09\x8e\x79\x6b\x10\x24\xa8\xed\x03\x41\x82\x20\x41\x90\x20\x48\x10\x24\x08\x12\x04\x09\x82\x04\x41\x82\x25\x24\xa8\xbe\x21\x20\x41\x90\x20\x48\x30\xcb\x0d\x12\x04\x09\x82\x04\x41\x82\x20\xc1\x6e\x21\x41\xde\x12\x04\x09\x82\x04\x8f\xe9\x3e\x40\x82\x20\x41\x90\x20\x48\x10\x24\x78\x18\x12\x54\xcd\xcd\xd7\x61\x24\xd8\xd7\x7d\x18\xdb\x20\x12\xd4\xe7\x68\x00\x09\x3a\xa6\x93\x43\x82\x7d\x6b\xac\xe3\x8f\xcd\x20\xc1\xbe\xee\x7e\x74\x0b\x09\xaa\xb9\x66\x97\x91\xe0\x28\x9f\xca\xca\x51\xe8\x42\xab\x07\x10\x04\x08\x96\xce\x0d\x20\x78\x05\x40\x70\x75\x99\x16\x72\x26\x27\x71\x18\x19\xcf\xe1\xf4\x80\x47\x0d\x9c\x08\x4e\x04\x27\xde\x34\x4e\xb4\x2d\x78\x22\x3c\x51\xdb\x85\xc2\x13\xe1\x89\xf0\x44\x78\x22\x3c\x11\x9e\x08\x4f\x84\x27\x36\xc9\x13\x35\xe1\x1b\xe1\x89\x63\xb3\x07\x4f\x6c\x86\x27\xba\xca\x56\xef\x5e\x7a\xf1\x32\x92\x19\x1c\xcc\x37\x7f\x32\x98\x44\xaf\x69\x97\x63\x3c\xc9\x57\x23\x0a\x63\x2f\xde\x9c\x8c\xb5\x5e\x40\x08\x2e\x09\x97\x4c\xff\xc1\x25\x0b\x85\x83\x4b\xc2\x25\xe1\x92\x70\xc9\xe2\x61\x37\xc8\x25\x6d\x3e\x7d\x86\x4b\x6a\xbb\x50\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\x5e\x00\x97\x74\xe1\x92\x70\x49\x75\x8e\xae\x71\x49\x47\x3b\x91\x60\xc7\xb8\xa4\x06\x10\xc2\x25\xe1\x92\x85\xa3\xe0\x92\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\xd6\xe0\x92\x2e\x5c\x12\x2e\xa9\xed\x42\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\x5e\x35\x97\xec\xe5\xa6\xe2\x73\x6c\xcb\xb6\xdb\xe5\x92\xda\xf0\x70\x49\xb8\x24\x5c\x12\x2e\x59\x3a\x35\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\xde\x06\x97\xec\xf3\x1d\x37\x5c\x52\xdb\x85\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\x36\xc7\x25\x5d\xde\x97\x84\x4b\xc2\x25\xe1\x92\x70\xc9\x7c\xe1\xe0\x92\x70\x49\xb8\x24\x5c\xb2\x78\xd8\x0d\x72\xc9\x21\xef\x4b\xc2\x25\xb5\x5d\x28\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\x2f\x80\x4b\x2a\x96\xe0\x68\x85\x4b\xaa\x96\xfa\x68\x9a\x4b\xda\xca\x05\x45\x9a\xe6\x92\xbd\x3c\x97\x54\x73\xaa\x66\xb8\xa4\x7a\x45\xee\x06\xb9\xa4\x6d\x5a\xa6\x73\xbe\x15\xac\x1d\x67\xd4\xee\x0a\xd6\xda\xcb\xd5\x08\x96\x1c\x98\x3d\xab\xbc\x10\xb3\x3a\x5f\x83\x98\xd2\x32\xdd\xed\x6a\xcf\x57\x83\x29\xcf\xbf\xa2\x75\x0f\xc0\x08\x60\x04\x30\x5e\x08\x60\x04\x11\x82\x08\x41\x84\xb7\x8b\x08\x5d\xb3\xc7\x9b\x8b\x10\x42\x6d\x1f\x08\x21\x84\x10\x42\x08\x21\x84\x10\xc2\x0b\x20\x84\xbc\xb9\xc8\x9b\x8b\xed\x21\x42\xbe\xa8\xe6\xcd\xc5\xfa\x6f\x2e\xf2\xc6\x21\x40\xb0\x74\x6e\x00\xc1\x2b\x00\x82\xbc\x71\x08\x4e\x04\x27\x82\x13\xf5\xf7\xae\x20\x03\x76\xdf\x38\x1c\xf0\xc6\x21\x3c\x51\xdb\x85\xc2\x13\xe1\x89\xf0\x44\x78\x22\x3c\xf1\x02\x78\xe2\x75\xad\x68\xad\x02\x7c\x9d\xe5\x89\xd7\xf6\xc6\xa1\x6b\x0f\xdb\x7d\xe3\xd0\xd1\xac\x05\xdd\x0c\x4e\x1c\x2a\xdf\x67\x6d\x01\x27\xaa\xaf\x51\x97\x71\x22\x6f\x18\x16\x8f\x02\x28\x02\x14\x6f\x09\x28\x82\x04\x41\x82\x20\xc1\xdb\x45\x82\xae\x09\x11\x84\x08\x42\x04\x21\x82\x10\x41\x88\x20\x44\x10\x22\x08\x11\x84\x08\x42\x04\xeb\x12\x41\xf5\x0d\x81\x08\x42\x04\x21\x82\x59\x6e\x88\x20\x44\x10\x22\x08\x11\x84\x08\x76\x8b\x08\xf2\xcd\x31\x44\x10\x22\x78\x4c\xf7\x01\x11\x84\x08\x42\x04\x21\x82\x10\xc1\x1b\xfe\xe6\xd8\x35\x6d\x1d\xe2\x6a\xec\x9b\xe3\xaa\x1c\x0d\x20\x41\xc7\x74\x72\x48\xb0\x6f\x8d\xdb\xfc\xe6\xd8\x36\xfb\xad\x4e\x4b\x78\x36\x24\xa8\xbe\x21\x5d\x46\x82\xe5\x6f\x8e\x1d\x80\x20\x40\x10\x20\x78\x23\x40\x90\x6f\x8e\xc1\x89\xe0\x44\x70\xa2\xfe\xde\x15\x64\xc0\x0e\x4e\x1c\x82\x13\xc1\x89\xda\x1e\x14\x9c\x08\x4e\x04\x27\x82\x13\xc1\x89\xe0\x44\x70\x22\x38\xb1\x49\x9c\x78\x15\x53\x18\x5e\x3f\x4e\xec\xca\xe2\xcb\x60\x49\xb0\x24\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\x45\xc7\xb1\xe4\x88\xef\x9e\xc1\x92\xda\x1e\x14\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\x17\x80\x25\x59\x59\x05\x2c\x79\x25\x58\xd2\xd1\xce\x22\xd8\x31\x2c\x79\xab\x2b\xab\x9c\x07\x4b\x0e\xc1\x92\x60\x49\x21\xc0\x92\xc5\x00\x60\x49\xd5\x01\x60\x49\xb0\x24\x58\xf2\x4a\xb0\xa4\x6d\xc1\x25\xe1\x92\xda\x2e\x14\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x70\xc9\x46\xb9\x64\x4f\x09\xa6\x9a\xe6\x92\x83\x73\x71\xc9\x9e\x7e\x05\xe3\xc6\xb8\x64\x55\x8e\x56\x56\x7c\xd6\x40\xd0\xae\xac\xf8\xac\xbe\xdf\x0d\x73\xc9\xfe\xb9\xb9\xe4\xea\xd6\x0c\xce\xc1\x25\x4b\xb5\xa0\xd0\xea\xc1\x13\xe1\x89\xa5\x73\x83\x27\xc2\x13\xe1\x89\xf0\x44\x78\xe2\x2d\xf3\x44\x17\x9e\x08\x4f\xd4\x76\xa1\xf0\x44\x78\x22\x3c\x11\x9e\x08\x4f\x84\x27\xc2\x13\xab\x59\x5f\xdb\xef\x39\x56\xe5\xe8\x1e\x4f\x74\xe1\x89\x5d\xe6\x89\xbc\xe7\x78\xd8\x51\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\x6b\x70\xc9\x1e\x5c\x12\x2e\xa9\xed\x42\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\x56\x41\x3d\xed\xaa\x29\x0d\x72\x49\x7d\x8e\x46\xb8\x64\x3f\x47\xa4\x1c\x4b\x7b\xc1\x9a\xe1\x92\xbd\xeb\xe0\x92\xa3\xb7\xe1\x92\xc3\xf6\xb8\xe4\x38\x9f\xca\x19\x6d\xc9\x6b\xa1\xd5\x83\x4b\x1e\x76\x14\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\x70\xc9\x1a\x5c\xb2\x0f\x97\x84\x4b\x6a\xbb\x50\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\x5e\x00\x97\x54\x4c\x75\xd7\x0a\x97\xec\x9f\x85\x4b\xaa\xb8\x17\x5c\x12\x2e\x09\x97\x84\x4b\xc2\x25\xe1\x92\xa5\x53\x83\x4b\xc2\x25\xe1\x92\x70\x49\xb8\xe4\x6d\x70\xc9\x01\x5c\x12\x2e\xa9\xed\x42\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\x84\x4b\xea\xa1\x5e\x5f\xbf\xfe\x4a\x63\x5c\xb2\x2a\x47\x03\x5c\xb2\x6f\x6e\xe1\x97\x6b\x39\xd6\xb8\x5d\x2e\xa9\xaa\x64\x70\x49\x45\x1d\x86\x4b\x66\x7b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\x12\x2e\x59\x7d\x28\x5c\xb2\x70\x54\x27\xb9\xe4\x10\x2e\x09\x97\xd4\x76\xa1\x70\x49\xb8\x24\x5c\x12\x2e\x09\x97\xbc\x00\x2e\xa9\xf8\xbe\xba\xb3\xdf\x71\xb3\x8e\xf6\x4d\xaf\xa3\x6d\x9b\xfd\xd6\xdf\x97\x3c\xcb\x3a\xda\xea\x1b\xc2\x3a\xda\xcd\x70\xc9\xc1\x01\x5c\x72\x08\x97\x84\x4b\xc2\x25\xe1\x92\x70\x49\xb8\x24\x5c\xb2\xd3\x5c\xb2\x67\x3a\x60\x49\xb0\xa4\xb6\x07\x05\x4b\x82\x25\xc1\x92\x60\x49\xb0\xe4\x05\x60\xc9\x6b\x9a\x5e\x12\x2c\x79\xd3\x58\xd2\xd1\xbf\xfa\xd9\x2d\x2c\xa9\xe1\x83\x60\xc9\xb3\xbf\x2e\x09\x96\x04\x4b\x82\x25\xc1\x92\x60\x49\xb0\x24\x58\x52\x74\x1c\x4b\xb2\xea\x0d\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\xc1\x92\x60\x49\x56\xbd\x39\x76\xa5\x6c\x0d\xc5\x6b\x74\x35\x6e\x5d\x8e\xee\xad\xc6\xad\x3d\x97\x6e\x7d\xc5\xcd\x6a\xdc\x60\x49\xb0\x24\x58\x12\x2c\x29\xc0\x92\x60\x49\x71\xaa\x0d\x04\x4b\x82\x25\x13\x2d\xca\x47\xdc\x60\x49\xb0\x24\x58\x12\x2c\x09\x96\x04\x4b\x82\x25\xcf\x86\x25\xeb\x64\x39\x1d\x4b\x3a\x5b\x2c\xa9\x99\xcc\xb0\x31\x2c\xd9\xf6\xdb\x92\x55\x39\xba\x87\x25\x5d\xb0\x24\x58\x12\x2c\x09\x96\x04\x4b\xe6\x0b\x07\x96\x04\x4b\x82\x25\xc1\x92\xc5\xc3\x6e\x0f\x4b\x8e\xc0\x92\x60\x49\x6d\x0f\x0a\x96\x04\x4b\x82\x25\xc1\x92\x60\x49\xb0\x24\x58\x92\xb5\xb8\x59\x8b\x9b\x35\x6f\xd2\x63\xc0\x92\x87\x1d\x05\x96\x04\x4b\x82\x25\xc1\x92\x60\x49\xb0\x24\x58\x72\x3f\x96\x1c\xaf\xb0\xa4\x03\x96\x04\x4b\x82\x25\xeb\x1c\x08\x96\x04\x4b\x82\x25\xd7\xa5\x00\x4b\xb2\x14\xf7\x05\x2f\xc5\x0d\x96\x04\x4b\x82\x25\x0f\xc2\x92\xa6\x9b\x5b\x92\xdd\xce\x2f\xc9\x5e\x68\xf7\x00\x93\x87\x1d\x05\x98\x04\x4c\x02\x26\x01\x93\x80\x49\xc0\x24\x60\x72\x3f\x98\xb4\x2d\x5e\x98\x84\x4c\x6a\xbb\x50\xc8\x24\x64\x12\x32\x09\x99\x84\x4c\x42\x26\x21\x93\x7a\xac\xd7\xd7\xaf\xe2\xd2\x18\x99\xac\xca\xd1\x00\x99\xec\x9b\x56\x8e\x48\x39\x79\x22\xd5\x06\x99\x54\x55\x32\xc8\xa4\xa2\x0e\x43\x26\x21\x93\x90\x49\xc8\xa4\xd8\x27\x67\x20\x93\x90\x49\xc8\x24\x64\xf2\x5a\xc8\xa4\x0d\x99\x84\x4c\x6a\xbb\x50\xc8\x24\x64\x12\x32\x09\x99\x84\x4c\xde\x10\x99\x1c\x9c\x85\x4c\x3a\xe7\xfd\x94\x5b\x95\xae\x59\x32\xd9\xf6\xc2\x37\x55\x39\x5a\x21\x93\x2d\xae\xc7\xed\x9a\x56\xeb\x64\x52\x5d\xfc\x06\xc9\x64\x5f\xb9\xa6\xfc\xf5\x91\x49\x07\x32\x29\x04\x64\x12\x32\x09\x99\x84\x4c\x42\x26\xeb\x16\x05\x32\x09\x99\xac\xbc\x77\x05\x19\xb0\x4b\x26\x5d\xc8\x24\x64\x52\xdb\x85\x42\x26\x21\x93\x90\x49\xc8\x24\x64\x12\x32\xd9\x28\x99\xec\x9f\x61\x92\x49\xd7\xb4\xce\xb5\x24\xf7\x55\x90\x49\x3b\x47\xa4\xfa\xb6\x16\xe5\x36\x43\x26\xb5\xe1\x21\x93\x95\x64\x32\xb9\x35\x7d\xdd\xab\x9a\x90\x49\xc8\x24\x64\x12\x32\x09\x99\x84\x4c\x42\x26\x21\x93\x9d\x26\x93\x3d\xc8\x24\x64\x52\xdb\x85\x42\x26\x21\x93\x90\x49\xc8\x24\x64\xf2\xad\xc9\xa4\xa3\x62\x39\x80\x49\xc0\x64\x6b\x60\xb2\xc5\x8f\xb9\x5b\x06\x93\x4e\x4f\x7b\xad\x00\x93\x80\x49\xc0\x24\x60\xb2\xea\x3a\x00\x26\x01\x93\xdb\xa8\x80\x49\xc0\x24\x60\xf2\xfc\x60\xb2\x0f\x98\x04\x4c\x6a\xbb\x50\xc0\x24\x60\x12\x30\x09\x98\x04\x4c\x02\x26\x01\x93\x5a\xaa\x37\x50\x9e\x4e\xb3\x60\xb2\x2a\x47\x2b\x60\xd2\x05\x4c\x56\x82\x49\xfd\x0d\xe9\x2e\x98\xec\x99\x96\xe9\xe4\x92\x0d\xad\x21\xb3\x4c\xae\x05\x2b\x60\x12\x30\x09\x98\x04\x4c\x02\x26\x01\x93\x80\xc9\xb6\xc1\xe4\x00\x30\x09\x98\xd4\x76\xa1\x80\x49\xc0\x24\x60\x12\x30\x09\x98\x04\x4c\x02\x26\xaf\x19\x4c\x0e\x0a\x60\x72\x64\xb5\xfa\x29\x77\xaf\xdd\x49\x26\x01\x93\xc7\x56\x84\x32\x98\x1c\xd9\xb9\x73\x2c\x34\x7b\x80\xc9\xc3\x8e\x02\x4c\x02\x26\x01\x93\x80\x49\xc0\x24\x60\x12\x30\xa9\xd8\xdf\x58\xc8\xc9\x32\xf2\x63\xa5\xff\x2a\x3d\xa0\x05\x05\xb1\xcb\x34\x87\x30\x4d\x98\xa6\xb6\xf7\x85\x69\xc2\x34\x61\x9a\xd7\xca\x34\x1d\x17\x84\x79\xa1\x08\xf3\x0a\x97\xf0\x3e\xeb\x42\x39\x2c\xe1\xcd\x12\xde\x0d\x33\xcc\x9b\x5b\xc2\xbb\x90\x6c\x6d\x6f\x34\xb4\xe5\xf0\x9b\x36\xd4\x7e\x44\xaf\x48\x75\xea\x03\x55\x2b\xdd\x8b\x37\xf3\xa7\x29\x7f\x35\xbe\xc8\xcf\x8f\x61\xf8\x74\x6a\xca\xae\x00\xe1\xa1\xe9\x00\x84\x01\xc2\x00\x61\x80\x30\x40\x18\x20\x0c\x10\xbe\x78\x20\x5c\x90\x01\x25\xaa\xdb\x37\x81\xba\x40\x5d\xa0\x2e\x50\x17\xa8\x0b\xd4\xdd\xf7\xe4\x03\x75\xaf\x11\xea\xb2\xfa\xf9\x6d\x4e\xe5\xc9\xea\xe7\x87\x41\xdd\x9b\x5b\xfd\x1c\xa8\x0b\xd4\x05\xea\x02\x75\xb3\xeb\x01\xd4\x05\xea\x02\x75\x81\xba\x8a\xa3\x81\xba\x97\x05\x75\xc7\x40\x5d\xa0\xae\xb6\x07\x05\xea\x02\x75\x81\xba\x40\xdd\x4d\x52\xa0\x2e\x50\x97\xd9\x06\xae\x02\xea\xb2\x70\x7c\x07\xa0\xee\x5b\xae\xcf\xd4\x3e\xd4\xad\x9d\xaa\x19\xa8\xbb\x27\x5d\x1b\x50\xb7\x1b\x73\xca\x02\x75\x81\xba\x40\x5d\xa0\x2e\x50\x17\xa8\x0b\xd4\x2d\x1e\xd5\x45\xa8\x6b\x5b\x50\x5d\xa8\xae\xb6\x0b\x85\xea\x42\x75\xa1\xba\x50\xdd\x4d\x52\xa8\x2e\x53\xc8\x02\x75\xaf\x11\xea\xb2\xe8\x3e\x50\x17\xa8\x0b\xd4\x15\x02\xa8\x0b\xd4\x05\xea\x02\x75\x4f\x3a\x7b\xa0\x2e\x50\x17\xa8\xfb\x46\x50\xd7\x06\xea\x02\x75\xb5\x5d\x28\x50\x17\xa8\x0b\xd4\x05\xea\x6e\x92\x02\x75\x81\xba\x37\x0f\x75\xaf\x60\x5d\xb0\x5d\xa8\xeb\x02\x75\x6f\x7e\x5d\xb0\xa1\x35\x3c\xe7\x9c\xba\x40\x5d\xa0\x2e\x50\x17\xa8\x0b\xd4\x15\x40\x5d\xa0\xae\x38\xd5\x43\x03\x75\x81\xba\xa9\xb4\x77\x80\xba\x40\x5d\x6d\x17\x0a\xd4\x05\xea\x02\x75\x81\xba\x9b\xa4\x40\x5d\xa0\x2e\x50\xb7\xfb\x50\x77\x50\x80\xba\x23\xab\xd5\xe9\x17\x7a\xed\xce\xa9\x0b\xd4\x3d\xb6\x22\x94\xa1\xee\xc8\xd6\x9d\x23\x50\xf7\x88\x94\x2e\x73\xea\x66\x87\x02\x75\x81\xba\x40\x5d\xa0\x2e\x50\x17\xa8\x2b\x80\xba\x27\x43\xdd\xd2\xfe\xc6\x42\x4e\x96\x91\x1f\x2b\xcd\x6c\xe9\x01\x2d\x28\x88\x5d\x1e\xec\xc2\x83\xe1\xc1\xda\xde\x17\x1e\x0c\x0f\x86\x07\x5f\x25\x0f\x2e\x98\x17\xe8\x30\x74\x18\x3a\x7c\x3c\xb9\xad\x8a\xdf\x14\x1d\xd6\xe5\xe8\x1e\x1d\x6e\xff\x95\xdf\x41\xdb\x74\x78\xa4\x3d\x89\xb6\xe9\xb0\xad\x49\x0b\x1d\xbe\x78\x3a\xec\x40\x87\x85\x80\x0e\x43\x87\xa1\xc3\xd0\xe1\x4b\xa7\xc3\x3a\xc6\xd4\x04\x23\x86\x33\xc3\x99\x6f\x8c\x33\xf7\x57\x9c\xd9\x81\x33\xc3\x99\xe1\xcc\x75\x0e\x84\x33\xc3\x99\xe1\xcc\x70\x66\x01\x67\x3e\x26\xcd\x15\x72\x66\xf7\x0c\x6f\x21\xeb\x73\x34\xc2\x99\x73\xf3\xc4\xda\xb6\x35\x6e\x97\x33\x2b\x56\x34\x84\x33\xef\x66\x81\x33\xc3\x99\xe1\xcc\x70\x66\x38\xf3\x61\x27\x08\x67\x86\x33\xc3\x99\x55\x61\xe0\xcc\x70\xe6\x5a\xf7\xae\x79\xce\x3c\xe0\x7d\x66\x38\xb3\xb6\x1f\x87\x33\xc3\x99\xe1\xcc\x57\xc9\x99\x21\xcb\x97\x4c\x96\x6d\xd3\x56\xd0\x38\xd0\xf2\x65\xa0\xe5\xab\x5c\x8a\xae\x45\xb4\xdc\xf2\xac\xc5\xf6\xd8\xec\xb1\x14\xdd\x71\x15\x81\xa5\xe8\x98\xb5\xd8\x1c\x9a\x7d\xd0\x32\x68\x19\xb4\x0c\x5a\xbe\x65\xb4\x0c\x10\x06\x08\x77\x04\x08\x17\x64\x40\x89\xea\x0e\xcc\x3e\x50\x17\xa8\xab\xed\x41\x81\xba\x40\x5d\xa0\x2e\x50\x77\x93\x14\xa8\xcb\xeb\xc2\x30\xdd\x6b\x64\xba\x9a\x0b\xd6\x01\xa6\x7b\x9e\x49\x8b\x61\xba\x30\x5d\x98\x2e\x4c\x17\xa6\x5b\x75\x1d\x60\xba\x30\xdd\x6d\x54\x98\x2e\x4c\x17\xa6\x7b\x76\xa6\xcb\x8b\xba\x30\x5d\x98\x2e\x4c\x17\xa6\x0b\xd3\xdd\xf7\xe4\xc3\x74\x61\xba\x30\xdd\xab\x58\x88\x6e\x97\xe9\xba\x30\xdd\x9b\x5f\x88\x6e\x68\x0d\x35\x0f\x0e\x4c\x17\xa6\x0b\xd3\x5d\xfd\x09\xa6\xab\xbf\x0e\x30\x5d\x98\xee\x36\x2a\x4c\x17\xa6\x0b\xd3\x3d\x3b\xd3\x1d\xc2\x74\x61\xba\xda\x1e\x14\xa6\x0b\xd3\x85\xe9\xc2\x74\x37\x49\x61\xba\x30\x5d\x98\x6e\xf7\x99\xee\x99\x97\x8f\xb3\x60\xba\x5d\x60\xba\x4c\xeb\xdb\xf0\xb4\xbe\x16\x4c\x57\x08\x98\x2e\x4c\x17\xa6\x0b\xd3\x85\xe9\xd6\x2d\x0a\x4c\x17\xa6\x5b\xeb\xde\x35\x3c\x19\xef\xc0\x1c\x81\x83\xc1\xc1\xda\xce\x17\x1c\x0c\x0e\x06\x07\x5f\x25\x0e\x2e\x78\x17\xe0\x30\x70\x18\x38\x7c\x3c\xb8\xad\x8a\xdf\x14\x1c\xd6\xe5\xe8\x1e\x1c\x6e\xff\x85\x5f\xd6\x7c\x03\x0e\x5f\x1e\x1c\xee\xca\x9a\x6f\xc0\x61\xe0\x30\x70\x18\x38\x7c\xd3\x70\x98\x35\xdf\x14\xf6\x16\xcc\x0c\x66\x3e\x0a\x33\xdb\xd6\x8a\x33\x3b\x70\x66\x38\x33\x9c\xb9\xce\x81\x70\x66\x38\x33\x9c\x19\xce\x2c\xe0\xcc\xc7\xa4\xb9\x42\xce\xec\x9e\xe1\x25\x64\x7d\x8e\x46\x38\x73\x6e\x92\x58\xdb\xb6\xc6\xed\x72\x66\xc5\x6a\x86\x70\xe6\xdd\x2c\x70\x66\x38\x33\x9c\x19\xce\x0c\x67\x3e\xec\x04\xe1\xcc\x70\x66\x38\xb3\x2a\x0c\x9c\x19\xce\x5c\xeb\xde\x35\xcf\x99\x6d\xde\x67\x86\x33\x6b\xfb\x71\x38\x33\x9c\x19\xce\x7c\x95\x9c\x19\xb2\x0c\x59\x86\x2c\x33\xbd\xc5\x95\x4c\x6f\xd1\x6b\x9b\x2c\xbf\xe1\xf4\x16\x63\xc8\x72\x47\xc9\x72\x57\xa6\xb7\xb0\x61\xca\x30\x65\x98\x32\x4c\xf9\x36\x99\x32\x24\x18\x12\x7c\xdb\x24\x78\x68\xf6\x01\xc1\x80\x60\x6d\xe7\x0b\x08\x06\x04\x03\x82\xaf\x12\x04\xf3\xc2\x31\x58\x18\x2c\xcc\xc4\x16\x4c\x6c\xc1\x0b\xc7\x60\x61\x5e\x38\x06\x0b\x67\xc7\x81\x85\xc1\xc2\x60\xe1\x1b\xc6\xc2\xbc\x6a\xac\x30\xb6\x00\x66\x00\xf3\x51\x80\x79\xc8\x8c\x16\x00\x66\x6d\x37\x0e\x60\x06\x30\x03\x98\x01\xcc\x00\x66\x00\x33\x80\x79\x37\x0d\x33\x5a\x30\xa3\x05\x80\x19\xc0\x0c\x60\xae\xd7\x49\x03\x98\x01\xcc\x00\x66\x00\x33\x80\xf9\x84\x18\x00\x66\x00\x73\x77\x00\x73\x71\x69\xbe\x77\x42\xfc\xf6\x4e\xfc\xeb\xdd\xbf\xfe\x5f\x00\x00\x00\xff\xff\x01\x8c\x37\x78\x8e\x9b\x74\x00") func dataDataJsonBytes() ([]byte, error) { return bindataRead( @@ -92,7 +92,7 @@ func dataDataJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "data/data.json", size: 7070712, mode: os.FileMode(420), modTime: time.Unix(1557785965, 0)} + info := bindataFileInfo{name: "data/data.json", size: 7641998, mode: os.FileMode(420), modTime: time.Unix(1557785965, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/data/data.json b/data/data.json index 2d7ca5f6a..f0a1f34f2 100755 --- a/data/data.json +++ b/data/data.json @@ -2993,6 +2993,67 @@ "v": "2" } }, + "v1.27": { + "etcd": { + "client-cert-auth": "true", + "peer-client-cert-auth": "true" + }, + "kubeapi": { + "allow-privileged": "true", + "anonymous-auth": "false", + "api-audiences": "unknown", + "bind-address": "0.0.0.0", + "enable-admission-plugins": "NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota,NodeRestriction,Priority,TaintNodesByCondition,PersistentVolumeClaimResize", + "kubelet-preferred-address-types": "InternalIP,ExternalIP,Hostname", + "profiling": "false", + "requestheader-extra-headers-prefix": "X-Remote-Extra-", + "requestheader-group-headers": "X-Remote-Group", + "requestheader-username-headers": "X-Remote-User", + "runtime-config": "authorization.k8s.io/v1beta1=true", + "secure-port": "6443", + "service-account-issuer": "rke", + "service-account-lookup": "true", + "service-account-signing-key-file": "/etc/kubernetes/ssl/kube-service-account-token-key.pem", + "storage-backend": "etcd3", + "tls-cipher-suites": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305" + }, + "kubelet": { + "address": "0.0.0.0", + "anonymous-auth": "false", + "authentication-token-webhook": "true", + "authorization-mode": "Webhook", + "cgroups-per-qos": "True", + "enforce-node-allocatable": "", + "event-qps": "0", + "make-iptables-util-chains": "true", + "read-only-port": "0", + "resolv-conf": "/etc/resolv.conf", + "streaming-connection-idle-timeout": "30m", + "tls-cipher-suites": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305", + "v": "2", + "volume-plugin-dir": "/var/lib/kubelet/volumeplugins" + }, + "kubeproxy": { + "healthz-bind-address": "127.0.0.1", + "v": "2" + }, + "kubeController": { + "allocate-node-cidrs": "true", + "allow-untagged-cloud": "true", + "configure-cloud-routes": "false", + "enable-hostpath-provisioner": "false", + "leader-elect": "true", + "node-monitor-grace-period": "40s", + "profiling": "false", + "terminated-pod-gc-threshold": "1000", + "v": "2" + }, + "scheduler": { + "leader-elect": "true", + "profiling": "false", + "v": "2" + } + }, "v1.9": { "etcd": null, "kubeapi": { @@ -12591,6 +12652,131 @@ "aciOvsContainer": "noiro/openvswitch:6.0.3.1.81c2369", "aciControllerContainer": "noiro/aci-containers-controller:6.0.3.1.81c2369" }, + "v1.27.6-rancher1-1": { + "etcd": "rancher/mirrored-coreos-etcd:v3.5.7", + "alpine": "rancher/rke-tools:v0.1.96", + "nginxProxy": "rancher/rke-tools:v0.1.96", + "certDownloader": "rancher/rke-tools:v0.1.96", + "kubernetesServicesSidecar": "rancher/rke-tools:v0.1.96", + "kubedns": "rancher/mirrored-k8s-dns-kube-dns:1.22.20", + "dnsmasq": "rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.20", + "kubednsSidecar": "rancher/mirrored-k8s-dns-sidecar:1.22.20", + "kubednsAutoscaler": "rancher/mirrored-cluster-proportional-autoscaler:1.8.6", + "coredns": "rancher/mirrored-coredns-coredns:1.10.1", + "corednsAutoscaler": "rancher/mirrored-cluster-proportional-autoscaler:1.8.6", + "nodelocal": "rancher/mirrored-k8s-dns-node-cache:1.22.20", + "kubernetes": "rancher/hyperkube:v1.27.6-rancher1", + "flannel": "rancher/mirrored-flannel-flannel:v0.21.4", + "flannelCni": "rancher/flannel-cni:v0.3.0-rancher8", + "calicoNode": "rancher/mirrored-calico-node:v3.26.1", + "calicoCni": "rancher/calico-cni:v3.26.1-rancher1", + "calicoControllers": "rancher/mirrored-calico-kube-controllers:v3.26.1", + "calicoCtl": "rancher/mirrored-calico-ctl:v3.26.1", + "calicoFlexVol": "rancher/mirrored-calico-pod2daemon-flexvol:v3.26.1", + "canalNode": "rancher/mirrored-calico-node:v3.26.1", + "canalCni": "rancher/calico-cni:v3.26.1-rancher1", + "canalControllers": "rancher/mirrored-calico-kube-controllers:v3.26.1", + "canalFlannel": "rancher/mirrored-flannel-flannel:v0.21.4", + "canalFlexVol": "rancher/mirrored-calico-pod2daemon-flexvol:v3.26.1", + "weaveNode": "weaveworks/weave-kube:2.8.1", + "weaveCni": "weaveworks/weave-npc:2.8.1", + "podInfraContainer": "rancher/mirrored-pause:3.7", + "ingress": "rancher/nginx-ingress-controller:nginx-1.8.1-rancher1", + "ingressBackend": "rancher/mirrored-nginx-ingress-controller-defaultbackend:1.5-rancher1", + "ingressWebhook": "rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20230312-helm-chart-4.5.2-28-g66a760794", + "metricsServer": "rancher/mirrored-metrics-server:v0.6.3", + "windowsPodInfraContainer": "rancher/mirrored-pause:3.7", + "aciCniDeployContainer": "noiro/cnideploy:5.2.7.1.81c2369", + "aciHostContainer": "noiro/aci-containers-host:5.2.7.1.81c2369", + "aciOpflexContainer": "noiro/opflex:5.2.7.1.81c2369", + "aciMcastContainer": "noiro/opflex:5.2.7.1.81c2369", + "aciOvsContainer": "noiro/openvswitch:5.2.7.1.81c2369", + "aciControllerContainer": "noiro/aci-containers-controller:5.2.7.1.81c2369", + "aciGbpServerContainer": "noiro/gbp-server:5.2.7.1.81c2369", + "aciOpflexServerContainer": "noiro/opflex-server:5.2.7.1.81c2369" + }, + "v1.27.8-rancher2-1": { + "etcd": "rancher/mirrored-coreos-etcd:v3.5.9", + "alpine": "rancher/rke-tools:v0.1.96", + "nginxProxy": "rancher/rke-tools:v0.1.96", + "certDownloader": "rancher/rke-tools:v0.1.96", + "kubernetesServicesSidecar": "rancher/rke-tools:v0.1.96", + "kubedns": "rancher/mirrored-k8s-dns-kube-dns:1.22.28", + "dnsmasq": "rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.28", + "kubednsSidecar": "rancher/mirrored-k8s-dns-sidecar:1.22.28", + "kubednsAutoscaler": "rancher/mirrored-cluster-proportional-autoscaler:1.8.6", + "coredns": "rancher/mirrored-coredns-coredns:1.10.1", + "corednsAutoscaler": "rancher/mirrored-cluster-proportional-autoscaler:1.8.6", + "nodelocal": "rancher/mirrored-k8s-dns-node-cache:1.22.28", + "kubernetes": "rancher/hyperkube:v1.27.8-rancher2", + "flannel": "rancher/mirrored-flannel-flannel:v0.21.4", + "flannelCni": "rancher/flannel-cni:v0.3.0-rancher8", + "calicoNode": "rancher/mirrored-calico-node:v3.26.3", + "calicoCni": "rancher/calico-cni:v3.26.3-rancher1", + "calicoControllers": "rancher/mirrored-calico-kube-controllers:v3.26.3", + "calicoCtl": "rancher/mirrored-calico-ctl:v3.26.3", + "calicoFlexVol": "rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3", + "canalNode": "rancher/mirrored-calico-node:v3.26.3", + "canalCni": "rancher/calico-cni:v3.26.3-rancher1", + "canalControllers": "rancher/mirrored-calico-kube-controllers:v3.26.3", + "canalFlannel": "rancher/mirrored-flannel-flannel:v0.21.4", + "canalFlexVol": "rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3", + "weaveNode": "weaveworks/weave-kube:2.8.1", + "weaveCni": "weaveworks/weave-npc:2.8.1", + "podInfraContainer": "rancher/mirrored-pause:3.7", + "ingress": "rancher/nginx-ingress-controller:nginx-1.9.4-rancher1", + "ingressBackend": "rancher/mirrored-nginx-ingress-controller-defaultbackend:1.5-rancher1", + "ingressWebhook": "rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231011-8b53cabe0", + "metricsServer": "rancher/mirrored-metrics-server:v0.6.3", + "windowsPodInfraContainer": "rancher/mirrored-pause:3.7", + "aciCniDeployContainer": "noiro/cnideploy:6.0.3.1.81c2369", + "aciHostContainer": "noiro/aci-containers-host:6.0.3.1.81c2369", + "aciOpflexContainer": "noiro/opflex:6.0.3.1.81c2369", + "aciMcastContainer": "noiro/opflex:6.0.3.1.81c2369", + "aciOvsContainer": "noiro/openvswitch:6.0.3.1.81c2369", + "aciControllerContainer": "noiro/aci-containers-controller:6.0.3.1.81c2369" + }, + "v1.27.8-rancher2-2": { + "etcd": "rancher/mirrored-coreos-etcd:v3.5.9", + "alpine": "rancher/rke-tools:v0.1.96", + "nginxProxy": "rancher/rke-tools:v0.1.96", + "certDownloader": "rancher/rke-tools:v0.1.96", + "kubernetesServicesSidecar": "rancher/rke-tools:v0.1.96", + "kubedns": "rancher/mirrored-k8s-dns-kube-dns:1.22.28", + "dnsmasq": "rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.28", + "kubednsSidecar": "rancher/mirrored-k8s-dns-sidecar:1.22.28", + "kubednsAutoscaler": "rancher/mirrored-cluster-proportional-autoscaler:1.8.6", + "coredns": "rancher/mirrored-coredns-coredns:1.10.1", + "corednsAutoscaler": "rancher/mirrored-cluster-proportional-autoscaler:1.8.6", + "nodelocal": "rancher/mirrored-k8s-dns-node-cache:1.22.28", + "kubernetes": "rancher/hyperkube:v1.27.8-rancher2", + "flannel": "rancher/mirrored-flannel-flannel:v0.21.4", + "flannelCni": "rancher/flannel-cni:v0.3.0-rancher8", + "calicoNode": "rancher/mirrored-calico-node:v3.26.3", + "calicoCni": "rancher/calico-cni:v3.26.3-rancher1", + "calicoControllers": "rancher/mirrored-calico-kube-controllers:v3.26.3", + "calicoCtl": "rancher/mirrored-calico-ctl:v3.26.3", + "calicoFlexVol": "rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3", + "canalNode": "rancher/mirrored-calico-node:v3.26.3", + "canalCni": "rancher/calico-cni:v3.26.3-rancher1", + "canalControllers": "rancher/mirrored-calico-kube-controllers:v3.26.3", + "canalFlannel": "rancher/mirrored-flannel-flannel:v0.21.4", + "canalFlexVol": "rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3", + "weaveNode": "weaveworks/weave-kube:2.8.1", + "weaveCni": "weaveworks/weave-npc:2.8.1", + "podInfraContainer": "rancher/mirrored-pause:3.7", + "ingress": "rancher/nginx-ingress-controller:nginx-1.9.4-rancher1", + "ingressBackend": "rancher/mirrored-nginx-ingress-controller-defaultbackend:1.5-rancher1", + "ingressWebhook": "rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231011-8b53cabe0", + "metricsServer": "rancher/mirrored-metrics-server:v0.6.3", + "windowsPodInfraContainer": "rancher/mirrored-pause:3.7", + "aciCniDeployContainer": "noiro/cnideploy:6.0.3.2.81c2369", + "aciHostContainer": "noiro/aci-containers-host:6.0.3.2.81c2369", + "aciOpflexContainer": "noiro/opflex:6.0.3.2.81c2369", + "aciMcastContainer": "noiro/opflex:6.0.3.2.81c2369", + "aciOvsContainer": "noiro/openvswitch:6.0.3.2.81c2369", + "aciControllerContainer": "noiro/aci-containers-controller:6.0.3.2.81c2369" + }, "v1.8.11-rancher2-1": { "etcd": "rancher/coreos-etcd:v3.0.17", "alpine": "rancher/rke-tools:v0.1.8", @@ -12751,7 +12937,9 @@ "\u003e=1.25.0-rancher1-1 \u003c1.25.16-rancher2-1": "calico-v3.24.1", "\u003e=1.25.16-rancher2-1 \u003c1.26.0-rancher1-1": "calico-v3.26.1-rancher2", "\u003e=1.26.0-rancher1-1 \u003c1.26.11-rancher2-1": "calico-v3.25.0", - "\u003e=1.26.11-rancher2-1": "calico-v3.26.1-rancher2", + "\u003e=1.26.11-rancher2-1 \u003c1.27.0-rancher1-1": "calico-v3.26.1-rancher2", + "\u003e=1.27.0-rancher1-1 \u003c1.27.8-rancher2-1": "calico-v3.26.1", + "\u003e=1.27.8-rancher2-1": "calico-v3.26.1-rancher2", "\u003e=1.8.0-rancher0 \u003c1.13.0-rancher0": "calico-v1.8" }, "canal": { @@ -12783,7 +12971,9 @@ "\u003e=1.25.0-rancher1-1 \u003c1.25.16-rancher2-1": "canal-v3.24.1", "\u003e=1.25.16-rancher2-1 \u003c1.26.0-rancher1-1": "canal-v3.26.1-rancher2", "\u003e=1.26.0-rancher1-1 \u003c1.26.11-rancher2-1": "canal-v3.25.0", - "\u003e=1.26.11-rancher2-1": "canal-v3.26.1-rancher2", + "\u003e=1.26.11-rancher2-1 \u003c1.27.0-rancher1-1": "canal-v3.26.1-rancher2", + "\u003e=1.27.0-rancher1-1 \u003c1.27.8-rancher2-1": "canal-v3.26.1", + "\u003e=1.27.8-rancher2-1": "canal-v3.26.1-rancher2", "\u003e=1.8.0-rancher0 \u003c1.13.0-rancher0": "canal-v1.8" }, "coreDNS": { @@ -12851,7 +13041,9 @@ "\u003e=1.24.2-rancher1-1 \u003c1.24.10-rancher1-1": "nginxingress-v1.2.0-rancher2", "\u003e=1.25.16-rancher2-1 \u003c1.26.0-rancher1-1": "nginxingress-v1.9.4-rancher1", "\u003e=1.26.0-rancher1-1 \u003c1.26.11-rancher2-1": "nginxingress-v1.7.0-rancher1", - "\u003e=1.26.11-rancher2-1": "nginxingress-v1.9.4-rancher1", + "\u003e=1.26.11-rancher2-1 \u003c1.27.0-rancher1-1": "nginxingress-v1.9.4-rancher1", + "\u003e=1.27.0-rancher1-1 \u003c1.27.8-rancher2-1": "nginxingress-v1.8.1-rancher1", + "\u003e=1.27.8-rancher2-1": "nginxingress-v1.9.4-rancher1", "\u003e=1.8.0-rancher0 \u003c1.13.10-rancher1-3": "nginxingress-v1.8" }, "nodelocal": { @@ -12886,6 +13078,7 @@ "calico-v3.22.5-rancher2": "\n{{- $cidrs := splitList \",\" .ClusterCIDR }}\n# Calico Template based on Calico v3.22.5\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Calico installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: calico-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # Configure the backend to use.\n calico_backend: \"bird\"\n # Configure the MTU to use for workload interfaces and tunnels.\n # - If Wireguard is enabled, set to your network MTU - 60\n # - Otherwise, if VXLAN or BPF mode is enabled, set to your network MTU - 50\n # - Otherwise, if IPIP is enabled, set to your network MTU - 20\n # - Otherwise, if not using any encapsulation, set to your network MTU.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1440\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n # Rancher specific change: \"assign_ipv6\": \"true\" if dualstack configuration is found\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"WARNING\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n{{- if eq (len $cidrs) 2 }}\n \"type\": \"calico-ipam\",\n \"assign_ipv4\": \"true\",\n \"assign_ipv6\": \"true\"\n{{- else }}\n \"type\": \"calico-ipam\"\n{{- end}}\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n scope: Cluster\n # Rancher specific change\n preserveUnknownFields: false\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, controls a\n 32bit mark that is set on connections from an external client to\n a local service. This mark allows us to control how packets of\n that connection are routed within the host and how is routing\n intepreted by RPF check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the source address to use on programmed device\n routes. By default the source address is left blank, leaving the\n kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override the feature\n detection. Values are specified in a comma separated list with no\n spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\".\n \"true\" or \"false\" will force the feature, empty or omitted values\n are auto-detected.\n type: string\n floatingIPs:\n default: Disabled\n description: FloatingIPs configures whether or not Felix will program\n floating IP addresses.\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is legacy.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeTableRange:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRange specifies the indices of the route tables\n that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n type: boolean\n vxlanEnabled:\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled.\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the Wireguard interface. [Default: wg.calico]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by Wireguard. [Default: 51820]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the Wireguard interface.\n See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with “Not“. All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: “TCP“, “UDP“, “ICMP“, “ICMPv6“, “SCTP“,\n “UDPLite“ or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with “Not“. All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: “TCP“, “UDP“, “ICMP“, “ICMPv6“, “SCTP“,\n “UDPLite“ or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == “string_literal“\n \\ -\u003e comparison, e.g. my_label == “foo bar“ \\tlabel != “string_literal“\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { “a“, “b“, “c“, ... } -\u003e true if the value of label X is\n one of “a“, “b“, “c“ \\tlabel not in { “a“, “b“, “c“,\n ... } -\u003e true if the value of label X is not one of “a“, “b“,\n “c“ \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == “webserver“ \u0026\u0026 deployment\n == “prod“ \\ttype in {“frontend“, “backend“} \\tdeployment !=\n “dev“ \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If “InterfaceName“ is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either “*“, or the name of a specific Linux interface\n to apply policy to; or empty. “*“ indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the “Node“ field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not “*“, this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as “eth0“) are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for “*“ HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n scope: Cluster\n # Rancher specific change\n preserveUnknownFields: false\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 112 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool’s CIDR over\n BGP. [Default: false]'\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When nat-outgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with “Not“. All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: “TCP“, “UDP“, “ICMP“, “ICMPv6“, “SCTP“,\n “UDPLite“ or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with “Not“. All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: “TCP“, “UDP“, “ICMP“, “ICMPv6“, “SCTP“,\n “UDPLite“ or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to “TCP“ or “UDP“.\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = “!has(my_label)“ matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label “my_label“. \\n \\tNotSelector\n = “has(my_label)“ matches packets that are not from\n Calico-controlled \\tendpoints that do have the label “my_label“.\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == “string_literal“\n \\ -\u003e comparison, e.g. my_label == “foo bar“ \\tlabel != “string_literal“\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { “a“, “b“, “c“, ... } -\u003e true if the value of label X is\n one of “a“, “b“, “c“ \\tlabel not in { “a“, “b“, “c“,\n ... } -\u003e true if the value of label X is not one of “a“, “b“,\n “c“ \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == “webserver“ \u0026\u0026 deployment\n == “prod“ \\ttype in {“frontend“, “backend“} \\tdeployment !=\n “dev“ \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated when nodes are deleted.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - create\n - update\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-node\nrules:\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n # These permissions are required for Calico CNI to perform IPAM allocations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipamconfigs\n verbs:\n - get\n # Block affinities must also be watchable by confd for route aggregation.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n verbs:\n - watch\n # The Calico IPAM migration needs to get daemonsets. These permissions can be\n # removed if not upgrading from an installation using host-local IPAM.\n - apiGroups: [\"apps\"]\n resources:\n - daemonsets\n verbs:\n - get\n\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the calico-node container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: calico-node\n namespace: kube-system\n labels:\n k8s-app: calico-node\nspec:\n selector:\n matchLabels:\n k8s-app: calico-node\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: calico-node\n # Rancher-specific: The annotation for scheduler.alpha.kubernetes.io/critical-pod originated from the v3.13.4 base \n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n hostNetwork: true\n tolerations:\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-node\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CalicoNodePriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container performs upgrade from host-local IPAM to calico-ipam.\n # It can be deleted if this is a fresh installation, or if you have already\n # upgraded to use calico-ipam.\n - name: upgrade-ipam\n image: {{.CNIImage}}\n command: [\"/opt/cni/bin/calico-ipam\", \"-upgrade\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n volumeMounts:\n - mountPath: /var/lib/cni/networks\n name: host-local-net-dir\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n securityContext:\n privileged: true\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-calico.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # Adds a Flex Volume Driver that creates a per-pod Unix Domain Socket to allow Dikastes\n # to communicate with Felix over the Policy Sync API.\n - name: flexvol-driver\n image: {{.FlexVolImg}}\n volumeMounts:\n - name: flexvol-driver-host\n mountPath: /host/driver\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs calico-node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Choose the backend to use.\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,bgp\"\n # Auto-detect the BGP IP address.\n - name: IP\n value: \"autodetect\"\n # Enable IPIP\n - name: CALICO_IPV4POOL_IPIP\n value: \"Always\"\n # Enable or Disable VXLAN on the default IP pool.\n - name: CALICO_IPV4POOL_VXLAN\n value: \"Never\"\n # Set MTU for tunnel device used if ipip is enabled\n - name: FELIX_IPINIPMTU\n valueFrom:\t# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the VXLAN tunnel device.\n - name: FELIX_VXLANMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the Wireguard tunnel device.\n - name: FELIX_WIREGUARDMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n # Rancher-specific: Explicitly set CALICO_IPV4POOL_CIDR/CALICO_IPV6POOL_CIDR\n{{- if eq (len $cidrs) 2 }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{ first $cidrs }}\"\n - name: CALICO_IPV6POOL_CIDR\n value: \"{{ last $cidrs }}\"\n{{- else }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{.ClusterCIDR}}\"\n{{- end}}\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Rancher-specific: Support dualstack\n{{- if eq (len $cidrs) 2 }}\n - name: FELIX_IPV6SUPPORT\n value: \"true\"\n - name: IP6\n value: autodetect\n - name: CALICO_IPV6POOL_NAT_OUTGOING\n value: \"true\"\n{{- else }}\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n{{- end}}\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n - -bird-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-ready\n - -bird-ready\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n volumes:\n # Used by calico-node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Mount in the directory for host-local IPAM allocations. This is\n # used when upgrading from host-local to calico-ipam, and can be removed\n # if not using the upgrade-ipam init container.\n - name: host-local-net-dir\n hostPath:\n path: /var/lib/cni/networks\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n # Used to install Flex Volume Driver\n - name: flexvol-driver-host\n hostPath:\n type: DirectoryOrCreate\n{{- if .FlexVolPluginDir }}\n path: {{.FlexVolPluginDir}}\n{{- else }}\n path: /usr/libexec/kubernetes/kubelet-plugins/volume/exec/nodeagent~uds\n{{- end }}\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n # Added by Rancher to mark as a critical pod.\n annotations:\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\napiVersion: policy/v1beta1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n---\n# Source: calico/templates/calico-etcd-secrets.yaml\n---\n# Source: calico/templates/calico-typha.yaml\n---\n# Source: calico/templates/configure-canal.yaml\n", "calico-v3.24.1": "\n{{- $cidrs := splitList \",\" .ClusterCIDR }}\n# Calico Template based on Calico v3.24.1\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Calico installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: calico-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # Configure the backend to use.\n calico_backend: \"bird\"\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1440\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n # Rancher specific change: \"assign_ipv6\": \"true\" if dualstack configuration is found\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n{{- if eq (len $cidrs) 2 }}\n \"type\": \"calico-ipam\",\n \"assign_ipv4\": \"true\",\n \"assign_ipv6\": \"true\"\n{{- else }}\n \"type\": \"calico-ipam\"\n{{- end}}\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all interfaces with\n BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled or Strict. [Default: Strict]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: 'DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix''s (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s]'\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override the feature\n detection. Values are specified in a comma separated list with no\n spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\".\n \"true\" or \"false\" will force the feature, empty or omitted values\n are auto-detected.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n floating IP addresses.\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is legacy.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for VXLAN networking. Optional as Felix determines\n this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When nat-outgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-node\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - calico-node\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n # These permissions are required for Calico CNI to perform IPAM allocations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # The CNI plugin and calico/node need to be able to create a default\n # IPAMConfiguration\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipamconfigs\n verbs:\n - get\n - create\n # Block affinities must also be watchable by confd for route aggregation.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n verbs:\n - watch\n # The Calico IPAM migration needs to get daemonsets. These permissions can be\n # removed if not upgrading from an installation using host-local IPAM.\n - apiGroups: [\"apps\"]\n resources:\n - daemonsets\n verbs:\n - get\n\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the calico-node container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: calico-node\n namespace: kube-system\n labels:\n k8s-app: calico-node\nspec:\n selector:\n matchLabels:\n k8s-app: calico-node\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: calico-node\n # Rancher-specific: The annotation for scheduler.alpha.kubernetes.io/critical-pod originated from the v3.13.4 base \n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n hostNetwork: true\n tolerations:\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-node\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CalicoNodePriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container performs upgrade from host-local IPAM to calico-ipam.\n # It can be deleted if this is a fresh installation, or if you have already\n # upgraded to use calico-ipam.\n - name: upgrade-ipam\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/calico-ipam\", \"-upgrade\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n volumeMounts:\n - mountPath: /var/lib/cni/networks\n name: host-local-net-dir\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n securityContext:\n privileged: true\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-calico.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs calico-node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Choose the backend to use.\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,bgp\"\n # Auto-detect the BGP IP address.\n - name: IP\n value: \"autodetect\"\n # Enable IPIP\n - name: CALICO_IPV4POOL_IPIP\n value: \"Always\"\n # Enable or Disable VXLAN on the default IP pool.\n - name: CALICO_IPV4POOL_VXLAN\n value: \"Never\"\n # Enable or Disable VXLAN on the default IPv6 IP pool.\n - name: CALICO_IPV6POOL_VXLAN\n value: \"Never\"\n # Set MTU for tunnel device used if ipip is enabled\n - name: FELIX_IPINIPMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the VXLAN tunnel device.\n - name: FELIX_VXLANMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the Wireguard tunnel device.\n - name: FELIX_WIREGUARDMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n # Rancher-specific: Explicitly set CALICO_IPV4POOL_CIDR/CALICO_IPV6POOL_CIDR\n{{- if eq (len $cidrs) 2 }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{ first $cidrs }}\"\n - name: CALICO_IPV6POOL_CIDR\n value: \"{{ last $cidrs }}\"\n{{- else }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{.ClusterCIDR}}\"\n{{- end}}\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Rancher-specific: Support dualstack\n{{- if eq (len $cidrs) 2 }}\n - name: FELIX_IPV6SUPPORT\n value: \"true\"\n - name: IP6\n value: autodetect\n - name: CALICO_IPV6POOL_NAT_OUTGOING\n value: \"true\"\n{{- else }}\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n{{- end}}\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n - -bird-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-ready\n - -bird-ready\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n volumes:\n # Used by calico-node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Mount in the directory for host-local IPAM allocations. This is\n # used when upgrading from host-local to calico-ipam, and can be removed\n # if not using the upgrade-ipam init container.\n - name: host-local-net-dir\n hostPath:\n path: /var/lib/cni/networks\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n # Added by Rancher to mark as a critical pod.\n annotations:\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - key: node-role.kubernetes.io/master\n effect: NoSchedule\n - key: node-role.kubernetes.io/control-plane\n effect: NoSchedule\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", "calico-v3.25.0": "\n{{- $cidrs := splitList \",\" .ClusterCIDR }}\n# Calico Template based on Calico v3.25.0\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Calico installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: calico-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # Configure the backend to use.\n calico_backend: \"bird\"\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1440\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n # Rancher specific change: \"assign_ipv6\": \"true\" if dualstack configuration is found\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n{{- if eq (len $cidrs) 2 }}\n \"type\": \"calico-ipam\",\n \"assign_ipv4\": \"true\",\n \"assign_ipv6\": \"true\"\n{{- else }}\n \"type\": \"calico-ipam\"\n{{- end}}\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n ignoredInterfaces:\n description: IgnoredInterfaces indicates the network interfaces that\n needs to be excluded when reading device routes.\n items:\n type: string\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n reachableBy:\n description: Add an exact, i.e. /32, static route toward peer IP in\n order to prevent route flapping. ReachableBy contains the address\n of the gateway which peer can be reached by.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n ttlSecurity:\n description: TTLSecurity enables the generalized TTL security mechanism\n (GTSM) which protects against spoofed packets by ignoring received\n packets with a smaller than expected TTL value. The provided value\n is the number of hops (edges) between the peers.\n type: integer\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all host interfaces\n with BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled, Strict or Loose. [Default:\n Strict]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfHostConntrackBypass:\n description: 'BPFHostConntrackBypass Controls whether to bypass Linux\n conntrack in BPF mode for workloads and services. [Default: true\n - bypass Linux conntrack]'\n type: boolean\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfL3IfacePattern:\n description: BPFL3IfacePattern is a regular expression that allows\n to list tunnel devices like wireguard or vxlan (i.e., L3 devices)\n in addition to BPFDataIfacePattern. That is, tunnel interfaces not\n created by Calico, that Calico workload traffic flows over as well\n as any interfaces that handle incoming traffic to nodeports and\n services from outside the cluster.\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: \"DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix's (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s] \\n Deprecated: replaced\n by the generic HealthTimeoutOverrides.\"\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override feature detection\n based on auto-detected platform capabilities. Values are specified\n in a comma separated list with no spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\". \"true\"\n or \"false\" will force the feature, empty or omitted values are auto-detected.\n type: string\n featureGates:\n description: FeatureGates is used to enable or disable tech-preview\n Calico features. Values are specified in a comma separated list\n with no spaces, example; \"BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false\".\n This is used to enable features that are not fully production ready.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n non-OpenStack floating IP addresses. (OpenStack-derived floating\n IPs are always programmed, regardless of this setting.)\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n healthTimeoutOverrides:\n description: HealthTimeoutOverrides allows the internal watchdog timeouts\n of individual subcomponents to be overridden. This is useful for\n working around \"false positive\" liveness timeouts that can occur\n in particularly stressful workloads or if CPU is constrained. For\n a list of active subcomponents, see Felix's logs.\n items:\n properties:\n name:\n type: string\n timeout:\n type: string\n required:\n - name\n - timeout\n type: object\n type: array\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is Auto.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for IPv4 VXLAN networking. Optional as Felix \n determines this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When natOutgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-node\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - calico-node\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n # These permissions are required for Calico CNI to perform IPAM allocations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # The CNI plugin and calico/node need to be able to create a default\n # IPAMConfiguration\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipamconfigs\n verbs:\n - get\n - create\n # Block affinities must also be watchable by confd for route aggregation.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n verbs:\n - watch\n # The Calico IPAM migration needs to get daemonsets. These permissions can be\n # removed if not upgrading from an installation using host-local IPAM.\n - apiGroups: [\"apps\"]\n resources:\n - daemonsets\n verbs:\n - get\n\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the calico-node container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: calico-node\n namespace: kube-system\n labels:\n k8s-app: calico-node\nspec:\n selector:\n matchLabels:\n k8s-app: calico-node\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: calico-node\n # Rancher-specific: The annotation for scheduler.alpha.kubernetes.io/critical-pod originated from the v3.13.4 base \n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n hostNetwork: true\n tolerations:\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-node\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CalicoNodePriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container performs upgrade from host-local IPAM to calico-ipam.\n # It can be deleted if this is a fresh installation, or if you have already\n # upgraded to use calico-ipam.\n - name: upgrade-ipam\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/calico-ipam\", \"-upgrade\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n volumeMounts:\n - mountPath: /var/lib/cni/networks\n name: host-local-net-dir\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n securityContext:\n privileged: true\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-calico.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs calico-node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Choose the backend to use.\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,bgp\"\n # Auto-detect the BGP IP address.\n - name: IP\n value: \"autodetect\"\n # Enable IPIP\n - name: CALICO_IPV4POOL_IPIP\n value: \"Always\"\n # Enable or Disable VXLAN on the default IP pool.\n - name: CALICO_IPV4POOL_VXLAN\n value: \"Never\"\n # Enable or Disable VXLAN on the default IPv6 IP pool.\n - name: CALICO_IPV6POOL_VXLAN\n value: \"Never\"\n # Set MTU for tunnel device used if ipip is enabled\n - name: FELIX_IPINIPMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the VXLAN tunnel device.\n - name: FELIX_VXLANMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the Wireguard tunnel device.\n - name: FELIX_WIREGUARDMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n # Rancher-specific: Explicitly set CALICO_IPV4POOL_CIDR/CALICO_IPV6POOL_CIDR\n{{- if eq (len $cidrs) 2 }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{ first $cidrs }}\"\n - name: CALICO_IPV6POOL_CIDR\n value: \"{{ last $cidrs }}\"\n{{- else }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{.ClusterCIDR}}\"\n{{- end}}\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Rancher-specific: Support dualstack\n{{- if eq (len $cidrs) 2 }}\n - name: FELIX_IPV6SUPPORT\n value: \"true\"\n - name: IP6\n value: autodetect\n - name: CALICO_IPV6POOL_NAT_OUTGOING\n value: \"true\"\n{{- else }}\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n{{- end}}\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n - -bird-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-ready\n - -bird-ready\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n volumes:\n # Used by calico-node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Mount in the directory for host-local IPAM allocations. This is\n # used when upgrading from host-local to calico-ipam, and can be removed\n # if not using the upgrade-ipam init container.\n - name: host-local-net-dir\n hostPath:\n path: /var/lib/cni/networks\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n # Added by Rancher to mark as a critical pod.\n annotations:\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - key: node-role.kubernetes.io/master\n effect: NoSchedule\n - key: node-role.kubernetes.io/control-plane\n effect: NoSchedule\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", + "calico-v3.26.1": "\n{{- $cidrs := splitList \",\" .ClusterCIDR }}\n# Calico Template based on Calico v3.26.1\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Calico installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: calico-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # Configure the backend to use.\n calico_backend: \"bird\"\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1440\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n # Rancher specific change: \"assign_ipv6\": \"true\" if dualstack configuration is found\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n{{- if eq (len $cidrs) 2 }}\n \"type\": \"calico-ipam\",\n \"assign_ipv4\": \"true\",\n \"assign_ipv6\": \"true\"\n{{- else }}\n \"type\": \"calico-ipam\"\n{{- end}}\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n ignoredInterfaces:\n description: IgnoredInterfaces indicates the network interfaces that\n needs to be excluded when reading device routes.\n items:\n type: string\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: bgpfilters.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPFilter\n listKind: BGPFilterList\n plural: bgpfilters\n singular: bgpfilter\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPFilterSpec contains the IPv4 and IPv6 filter rules of\n the BGP Filter.\n properties:\n exportV4:\n description: The ordered set of IPv4 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n exportV6:\n description: The ordered set of IPv6 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV4:\n description: The ordered set of IPv4 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV6:\n description: The ordered set of IPv6 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n filters:\n description: The ordered set of BGPFilters applied on this BGP peer.\n items:\n type: string\n type: array\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n reachableBy:\n description: Add an exact, i.e. /32, static route toward peer IP in\n order to prevent route flapping. ReachableBy contains the address\n of the gateway which peer can be reached by.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n ttlSecurity:\n description: TTLSecurity enables the generalized TTL security mechanism\n (GTSM) which protects against spoofed packets by ignoring received\n packets with a smaller than expected TTL value. The provided value\n is the number of hops (edges) between the peers.\n type: integer\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDSROptoutCIDRs:\n description: BPFDSROptoutCIDRs is a list of CIDRs which are excluded\n from DSR. That is, clients in those CIDRs will accesses nodeports\n as if BPFExternalServiceMode was set to Tunnel.\n items:\n type: string\n type: array\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all host interfaces\n with BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled, Strict or Loose. [Default:\n Loose]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfHostConntrackBypass:\n description: 'BPFHostConntrackBypass Controls whether to bypass Linux\n conntrack in BPF mode for workloads and services. [Default: true\n - bypass Linux conntrack]'\n type: boolean\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfL3IfacePattern:\n description: BPFL3IfacePattern is a regular expression that allows\n to list tunnel devices like wireguard or vxlan (i.e., L3 devices)\n in addition to BPFDataIfacePattern. That is, tunnel interfaces not\n created by Calico, that Calico workload traffic flows over as well\n as any interfaces that handle incoming traffic to nodeports and\n services from outside the cluster.\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: \"DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix's (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s] \\n Deprecated: replaced\n by the generic HealthTimeoutOverrides.\"\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override feature detection\n based on auto-detected platform capabilities. Values are specified\n in a comma separated list with no spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\". \"true\"\n or \"false\" will force the feature, empty or omitted values are auto-detected.\n type: string\n featureGates:\n description: FeatureGates is used to enable or disable tech-preview\n Calico features. Values are specified in a comma separated list\n with no spaces, example; \"BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false\".\n This is used to enable features that are not fully production ready.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n non-OpenStack floating IP addresses. (OpenStack-derived floating\n IPs are always programmed, regardless of this setting.)\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n healthTimeoutOverrides:\n description: HealthTimeoutOverrides allows the internal watchdog timeouts\n of individual subcomponents to be overridden. This is useful for\n working around \"false positive\" liveness timeouts that can occur\n in particularly stressful workloads or if CPU is constrained. For\n a list of active subcomponents, see Felix's logs.\n items:\n properties:\n name:\n type: string\n timeout:\n type: string\n required:\n - name\n - timeout\n type: object\n type: array\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is Auto.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesFilterDenyAction:\n description: IptablesFilterDenyAction controls what happens to traffic\n that is denied by network policy. By default Calico blocks traffic\n with an iptables \"DROP\" action. If you want to use \"REJECT\" action\n instead you can configure it in here.\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for IPv4 VXLAN networking. Optional as Felix \n determines this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When natOutgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# CNI cluster role\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-cni-plugin\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n - clusterinformations\n - ippools\n - ipreservations\n - ipamconfigs\n verbs:\n - get\n - list\n - create\n - update\n - delete\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-node\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - calico-cni-plugin\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - bgpfilters\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n # These permissions are required for Calico CNI to perform IPAM allocations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # The CNI plugin and calico/node need to be able to create a default\n # IPAMConfiguration\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipamconfigs\n verbs:\n - get\n - create\n # Block affinities must also be watchable by confd for route aggregation.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n verbs:\n - watch\n # The Calico IPAM migration needs to get daemonsets. These permissions can be\n # removed if not upgrading from an installation using host-local IPAM.\n - apiGroups: [\"apps\"]\n resources:\n - daemonsets\n verbs:\n - get\n\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-cni-plugin\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-cni-plugin\nsubjects:\n- kind: ServiceAccount\n name: calico-cni-plugin\n namespace: kube-system\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the calico-node container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: calico-node\n namespace: kube-system\n labels:\n k8s-app: calico-node\nspec:\n selector:\n matchLabels:\n k8s-app: calico-node\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: calico-node\n # Rancher-specific: The annotation for scheduler.alpha.kubernetes.io/critical-pod originated from the v3.13.4 base \n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n hostNetwork: true\n tolerations:\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-node\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CalicoNodePriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container performs upgrade from host-local IPAM to calico-ipam.\n # It can be deleted if this is a fresh installation, or if you have already\n # upgraded to use calico-ipam.\n - name: upgrade-ipam\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/calico-ipam\", \"-upgrade\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n volumeMounts:\n - mountPath: /var/lib/cni/networks\n name: host-local-net-dir\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n securityContext:\n privileged: true\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-calico.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs calico-node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Choose the backend to use.\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,bgp\"\n # Auto-detect the BGP IP address.\n - name: IP\n value: \"autodetect\"\n # Enable IPIP\n - name: CALICO_IPV4POOL_IPIP\n value: \"Always\"\n # Enable or Disable VXLAN on the default IP pool.\n - name: CALICO_IPV4POOL_VXLAN\n value: \"Never\"\n # Enable or Disable VXLAN on the default IPv6 IP pool.\n - name: CALICO_IPV6POOL_VXLAN\n value: \"Never\"\n # Set MTU for tunnel device used if ipip is enabled\n - name: FELIX_IPINIPMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the VXLAN tunnel device.\n - name: FELIX_VXLANMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the Wireguard tunnel device.\n - name: FELIX_WIREGUARDMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n # Rancher-specific: Explicitly set CALICO_IPV4POOL_CIDR/CALICO_IPV6POOL_CIDR\n{{- if eq (len $cidrs) 2 }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{ first $cidrs }}\"\n - name: CALICO_IPV6POOL_CIDR\n value: \"{{ last $cidrs }}\"\n{{- else }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{.ClusterCIDR}}\"\n{{- end}}\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Rancher-specific: Support dualstack\n{{- if eq (len $cidrs) 2 }}\n - name: FELIX_IPV6SUPPORT\n value: \"true\"\n - name: IP6\n value: autodetect\n - name: CALICO_IPV6POOL_NAT_OUTGOING\n value: \"true\"\n{{- else }}\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n{{- end}}\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n - -bird-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-ready\n - -bird-ready\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n volumes:\n # Used by calico-node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Mount in the directory for host-local IPAM allocations. This is\n # used when upgrading from host-local to calico-ipam, and can be removed\n # if not using the upgrade-ipam init container.\n - name: host-local-net-dir\n hostPath:\n path: /var/lib/cni/networks\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-cni-plugin\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n # Added by Rancher to mark as a critical pod.\n annotations:\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - key: node-role.kubernetes.io/master\n effect: NoSchedule\n - key: node-role.kubernetes.io/control-plane\n effect: NoSchedule\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", "calico-v3.26.1-rancher2": "\n{{- $cidrs := splitList \",\" .ClusterCIDR }}\n# Calico Template based on Calico v3.26.1\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Calico installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: calico-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # Configure the backend to use.\n calico_backend: \"bird\"\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1440\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n # Rancher specific change: \"assign_ipv6\": \"true\" if dualstack configuration is found\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n{{- if eq (len $cidrs) 2 }}\n \"type\": \"calico-ipam\",\n \"assign_ipv4\": \"true\",\n \"assign_ipv6\": \"true\"\n{{- else }}\n \"type\": \"calico-ipam\"\n{{- end}}\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n ignoredInterfaces:\n description: IgnoredInterfaces indicates the network interfaces that\n needs to be excluded when reading device routes.\n items:\n type: string\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: bgpfilters.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPFilter\n listKind: BGPFilterList\n plural: bgpfilters\n singular: bgpfilter\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPFilterSpec contains the IPv4 and IPv6 filter rules of\n the BGP Filter.\n properties:\n exportV4:\n description: The ordered set of IPv4 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n exportV6:\n description: The ordered set of IPv6 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV4:\n description: The ordered set of IPv4 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV6:\n description: The ordered set of IPv6 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n filters:\n description: The ordered set of BGPFilters applied on this BGP peer.\n items:\n type: string\n type: array\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n reachableBy:\n description: Add an exact, i.e. /32, static route toward peer IP in\n order to prevent route flapping. ReachableBy contains the address\n of the gateway which peer can be reached by.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n ttlSecurity:\n description: TTLSecurity enables the generalized TTL security mechanism\n (GTSM) which protects against spoofed packets by ignoring received\n packets with a smaller than expected TTL value. The provided value\n is the number of hops (edges) between the peers.\n type: integer\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDSROptoutCIDRs:\n description: BPFDSROptoutCIDRs is a list of CIDRs which are excluded\n from DSR. That is, clients in those CIDRs will accesses nodeports\n as if BPFExternalServiceMode was set to Tunnel.\n items:\n type: string\n type: array\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all host interfaces\n with BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled, Strict or Loose. [Default:\n Loose]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfHostConntrackBypass:\n description: 'BPFHostConntrackBypass Controls whether to bypass Linux\n conntrack in BPF mode for workloads and services. [Default: true\n - bypass Linux conntrack]'\n type: boolean\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfL3IfacePattern:\n description: BPFL3IfacePattern is a regular expression that allows\n to list tunnel devices like wireguard or vxlan (i.e., L3 devices)\n in addition to BPFDataIfacePattern. That is, tunnel interfaces not\n created by Calico, that Calico workload traffic flows over as well\n as any interfaces that handle incoming traffic to nodeports and\n services from outside the cluster.\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: \"DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix's (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s] \\n Deprecated: replaced\n by the generic HealthTimeoutOverrides.\"\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override feature detection\n based on auto-detected platform capabilities. Values are specified\n in a comma separated list with no spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\". \"true\"\n or \"false\" will force the feature, empty or omitted values are auto-detected.\n type: string\n featureGates:\n description: FeatureGates is used to enable or disable tech-preview\n Calico features. Values are specified in a comma separated list\n with no spaces, example; \"BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false\".\n This is used to enable features that are not fully production ready.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n non-OpenStack floating IP addresses. (OpenStack-derived floating\n IPs are always programmed, regardless of this setting.)\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n healthTimeoutOverrides:\n description: HealthTimeoutOverrides allows the internal watchdog timeouts\n of individual subcomponents to be overridden. This is useful for\n working around \"false positive\" liveness timeouts that can occur\n in particularly stressful workloads or if CPU is constrained. For\n a list of active subcomponents, see Felix's logs.\n items:\n properties:\n name:\n type: string\n timeout:\n type: string\n required:\n - name\n - timeout\n type: object\n type: array\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is Auto.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesFilterDenyAction:\n description: IptablesFilterDenyAction controls what happens to traffic\n that is denied by network policy. By default Calico blocks traffic\n with an iptables \"DROP\" action. If you want to use \"REJECT\" action\n instead you can configure it in here.\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for IPv4 VXLAN networking. Optional as Felix \n determines this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When natOutgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# CNI cluster role\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-cni-plugin\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n - clusterinformations\n - ippools\n - ipreservations\n - ipamconfigs\n verbs:\n - get\n - list\n - create\n - update\n - delete\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-node\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - calico-cni-plugin\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - bgpfilters\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n # These permissions are required for Calico CNI to perform IPAM allocations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # The CNI plugin and calico/node need to be able to create a default\n # IPAMConfiguration\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipamconfigs\n verbs:\n - get\n - create\n # Block affinities must also be watchable by confd for route aggregation.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n verbs:\n - watch\n # The Calico IPAM migration needs to get daemonsets. These permissions can be\n # removed if not upgrading from an installation using host-local IPAM.\n - apiGroups: [\"apps\"]\n resources:\n - daemonsets\n verbs:\n - get\n\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-cni-plugin\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-cni-plugin\nsubjects:\n- kind: ServiceAccount\n name: calico-cni-plugin\n namespace: kube-system\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the calico-node container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: calico-node\n namespace: kube-system\n labels:\n k8s-app: calico-node\nspec:\n selector:\n matchLabels:\n k8s-app: calico-node\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: calico-node\n # Rancher-specific: The annotation for scheduler.alpha.kubernetes.io/critical-pod originated from the v3.13.4 base \n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n hostNetwork: true\n tolerations:\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-node\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CalicoNodePriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container performs upgrade from host-local IPAM to calico-ipam.\n # It can be deleted if this is a fresh installation, or if you have already\n # upgraded to use calico-ipam.\n - name: upgrade-ipam\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/calico-ipam\", \"-upgrade\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n volumeMounts:\n - mountPath: /var/lib/cni/networks\n name: host-local-net-dir\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n securityContext:\n privileged: true\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-calico.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs calico-node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Choose the backend to use.\n - name: CALICO_NETWORKING_BACKEND\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: calico_backend\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,bgp\"\n # Auto-detect the BGP IP address.\n - name: IP\n value: \"autodetect\"\n # Enable IPIP\n - name: CALICO_IPV4POOL_IPIP\n value: \"Always\"\n # Enable or Disable VXLAN on the default IP pool.\n - name: CALICO_IPV4POOL_VXLAN\n value: \"Never\"\n # Enable or Disable VXLAN on the default IPv6 IP pool.\n - name: CALICO_IPV6POOL_VXLAN\n value: \"Never\"\n # Set MTU for tunnel device used if ipip is enabled\n - name: FELIX_IPINIPMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the VXLAN tunnel device.\n - name: FELIX_VXLANMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # Set MTU for the Wireguard tunnel device.\n - name: FELIX_WIREGUARDMTU\n valueFrom:\n configMapKeyRef:\n name: calico-config\n key: veth_mtu\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n # Rancher-specific: Explicitly set CALICO_IPV4POOL_CIDR/CALICO_IPV6POOL_CIDR\n{{- if eq (len $cidrs) 2 }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{ first $cidrs }}\"\n - name: CALICO_IPV6POOL_CIDR\n value: \"{{ last $cidrs }}\"\n{{- else }}\n - name: CALICO_IPV4POOL_CIDR\n value: \"{{.ClusterCIDR}}\"\n{{- end}}\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Rancher-specific: Support dualstack\n{{- if eq (len $cidrs) 2 }}\n - name: FELIX_IPV6SUPPORT\n value: \"true\"\n - name: IP6\n value: autodetect\n - name: CALICO_IPV6POOL_NAT_OUTGOING\n value: \"true\"\n{{- else }}\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n{{- end}}\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n - -bird-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-ready\n - -bird-ready\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n volumes:\n # Used by calico-node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Mount in the directory for host-local IPAM allocations. This is\n # used when upgrading from host-local to calico-ipam, and can be removed\n # if not using the upgrade-ipam init container.\n - name: host-local-net-dir\n hostPath:\n path: /var/lib/cni/networks\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-node\n namespace: kube-system\n{{end}}\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-cni-plugin\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n # Added by Rancher to mark as a critical pod.\n annotations:\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - key: node-role.kubernetes.io/master\n effect: NoSchedule\n - key: node-role.kubernetes.io/control-plane\n effect: NoSchedule\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", "canal-v1.13": "\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: calico\nrules:\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - clusterinformations\n - hostendpoints\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only requried for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n---\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n- apiGroup: rbac.authorization.k8s.io\n kind: Group\n name: system:nodes\n---\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: flannel\nrules:\n - apiGroups:\n - \"\"\n resources:\n - pods\n verbs:\n - get\n - apiGroups:\n - \"\"\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups:\n - \"\"\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Bind the Calico ClusterRole to the canal ServiceAccount.\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n- apiGroup: rbac.authorization.k8s.io\n kind: Group\n name: system:nodes\n{{end}}\n\n# Canal Version v3.1.1\n# https://docs.projectcalico.org/v3.1/releases#v3.1.1\n# This manifest includes the following component versions:\n# calico/node:v3.1.1\n# calico/cni:v3.1.1\n# coreos/flannel:v0.9.1\n\n---\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.0\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n \"mtu\": {{.MTU}},\n{{- end}}\n{{- end}}\n \"log_level\": \"WARNING\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"{{.KubeCfg}}\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n }\n ]\n }\n\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n\n# This manifest installs the calico/node container, as well\n# as the Calico CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: extensions/v1beta1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n hostNetwork: true\n{{if .NodeSelector}}\n nodeSelector:\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n serviceAccountName: canal\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n initContainers:\n # This container installs the Calico CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n command: [\"/install-cni.sh\"]\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n containers:\n # Runs calico/node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n - name: CALICO_IPV4POOL_CIDR\n value: \"192.168.0.0/16\"\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Disable felix logging for syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Enable felix logging to stdout\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n livenessProbe:\n httpGet:\n path: /liveness\n port: 9099\n host: localhost\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n volumeMounts:\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by calico/node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n\n---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n\n---\n\n# Create all the CustomResourceDefinitions needed for\n# Calico policy and networking mode.\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: FelixConfiguration\n plural: felixconfigurations\n singular: felixconfiguration\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: BGPConfiguration\n plural: bgpconfigurations\n singular: bgpconfiguration\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: IPPool\n plural: ippools\n singular: ippool\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: HostEndpoint\n plural: hostendpoints\n singular: hostendpoint\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: ClusterInformation\n plural: clusterinformations\n singular: clusterinformation\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: GlobalNetworkPolicy\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: GlobalNetworkSet\n plural: globalnetworksets\n singular: globalnetworkset\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n scope: Namespaced\n group: crd.projectcalico.org\n version: v1\n names:\n kind: NetworkPolicy\n plural: networkpolicies\n singular: networkpolicy\n", "canal-v1.15": "\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: calico\nrules:\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only requried for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n---\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-node\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-node\nsubjects:\n- kind: ServiceAccount\n name: calico-node\n namespace: kube-system\n- apiGroup: rbac.authorization.k8s.io\n kind: Group\n name: system:nodes\n---\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: flannel\nrules:\n - apiGroups:\n - \"\"\n resources:\n - pods\n verbs:\n - get\n - apiGroups:\n - \"\"\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups:\n - \"\"\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Bind the Calico ClusterRole to the canal ServiceAccount.\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n- apiGroup: rbac.authorization.k8s.io\n kind: Group\n name: system:nodes\n{{end}}\n\n# Canal Version v3.1.1\n# https://docs.projectcalico.org/v3.1/releases#v3.1.1\n# This manifest includes the following component versions:\n# calico/node:v3.1.1\n# calico/cni:v3.1.1\n# coreos/flannel:v0.9.1\n\n---\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.0\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n \"mtu\": {{.MTU}},\n{{- end}}\n{{- end}}\n \"log_level\": \"WARNING\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"{{.KubeCfg}}\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n }\n ]\n }\n\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n\n# This manifest installs the calico/node container, as well\n# as the Calico CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: extensions/v1beta1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n annotations:\n # This, along with the CriticalAddonsOnly toleration below,\n # marks the pod as a critical add-on, ensuring it gets\n # priority scheduling and that its resources are reserved\n # if it ever gets evicted.\n scheduler.alpha.kubernetes.io/critical-pod: ''\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n hostNetwork: true\n{{if .NodeSelector}}\n nodeSelector:\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: canal\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n initContainers:\n # This container installs the Calico CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n command: [\"/install-cni.sh\"]\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n containers:\n # Runs calico/node container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Configure route aggregation based on pod CIDR.\n - name: USE_POD_CIDR\n value: \"true\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within --cluster-cidr.\n - name: CALICO_IPV4POOL_CIDR\n value: \"192.168.0.0/16\"\n # Disable file logging so kubectl logs works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Disable felix logging for syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Enable felix logging to stdout\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n livenessProbe:\n httpGet:\n path: /liveness\n port: 9099\n host: localhost\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n volumeMounts:\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by calico/node.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n\n---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n\n---\n\n# Create all the CustomResourceDefinitions needed for\n# Calico policy and networking mode.\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: FelixConfiguration\n plural: felixconfigurations\n singular: felixconfiguration\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: BGPConfiguration\n plural: bgpconfigurations\n singular: bgpconfiguration\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: IPPool\n plural: ippools\n singular: ippool\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: HostEndpoint\n plural: hostendpoints\n singular: hostendpoint\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: ClusterInformation\n plural: clusterinformations\n singular: clusterinformation\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: GlobalNetworkPolicy\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n scope: Cluster\n group: crd.projectcalico.org\n version: v1\n names:\n kind: GlobalNetworkSet\n plural: globalnetworksets\n singular: globalnetworkset\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n scope: Namespaced\n group: crd.projectcalico.org\n version: v1\n names:\n kind: NetworkPolicy\n plural: networkpolicies\n singular: networkpolicy\n\n---\n\napiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n scope: Namespaced\n group: crd.projectcalico.org\n version: v1\n names:\n kind: NetworkSet\n plural: networksets\n singular: networkset\n", @@ -12906,6 +13099,7 @@ "canal-v3.22.5-rancher2": "\n# Canal Template based on Canal v3.22.5\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n # Configure the MTU to use\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1450\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"WARNING\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n scope: Cluster\n # Rancher specific change\n preserveUnknownFields: false\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, controls a\n 32bit mark that is set on connections from an external client to\n a local service. This mark allows us to control how packets of\n that connection are routed within the host and how is routing\n intepreted by RPF check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the source address to use on programmed device\n routes. By default the source address is left blank, leaving the\n kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override the feature\n detection. Values are specified in a comma separated list with no\n spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\".\n \"true\" or \"false\" will force the feature, empty or omitted values\n are auto-detected.\n type: string\n floatingIPs:\n default: Disabled\n description: FloatingIPs configures whether or not Felix will program\n floating IP addresses.\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is legacy.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeTableRange:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRange specifies the indices of the route tables\n that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n type: boolean\n vxlanEnabled:\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled.\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the Wireguard interface. [Default: wg.calico]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by Wireguard. [Default: 51820]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the Wireguard interface.\n See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n scope: Cluster\n # Rancher specific change\n preserveUnknownFields: false\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to ['Tunnel', 'Workload'] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 112 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool’s CIDR over\n BGP. [Default: false]'\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When nat-outgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated when nodes are deleted.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - create\n - update\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico\nrules:\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch \n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n\n---\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: flannel\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the canal container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n hostNetwork: true\n{{if .NodeSelector}}\n nodeSelector:\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: canal\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CanalPriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # Adds a Flex Volume Driver that creates a per-pod Unix Domain Socket to allow Dikastes\n # to communicate with Felix over the Policy Sync API.\n - name: flexvol-driver\n image: {{.FlexVolImg}}\n volumeMounts:\n - name: flexvol-driver-host\n mountPath: /host/driver\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs canal container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Configure route aggregation based on pod CIDR.\n - name: USE_POD_CIDR\n value: \"true\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within `--cluster-cidr`.\n # - name: CALICO_IPV4POOL_CIDR\n # value: \"192.168.0.0/16\"\n # Disable file logging so `kubectl logs` works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by canal.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n # Used to install Flex Volume Driver\n - name: flexvol-driver-host\n hostPath:\n type: DirectoryOrCreate\n{{- if .FlexVolPluginDir }}\n path: {{.FlexVolPluginDir}}\n{{- else }}\n path: /usr/libexec/kubernetes/kubelet-plugins/volume/exec/nodeagent~uds\n{{- end }}\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\n\napiVersion: policy/v1beta1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n---\n# Source: calico/templates/calico-etcd-secrets.yaml\n---\n# Source: calico/templates/calico-typha.yaml\n---\n# Source: calico/templates/configure-canal.yaml\n", "canal-v3.24.1": "\n# Canal Template based on Canal v3.24.1\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1450\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all interfaces with\n BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled or Strict. [Default: Strict]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: 'DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix''s (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s]'\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override the feature\n detection. Values are specified in a comma separated list with no\n spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\".\n \"true\" or \"false\" will force the feature, empty or omitted values\n are auto-detected.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n floating IP addresses.\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is legacy.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for VXLAN networking. Optional as Felix determines\n this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When nat-outgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - canal\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: flannel\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the canal container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{if .NodeSelector}}\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n hostNetwork: true\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: canal\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CanalPriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs canal container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Configure route aggregation based on pod CIDR.\n - name: USE_POD_CIDR\n value: \"true\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within `--cluster-cidr`.\n # - name: CALICO_IPV4POOL_CIDR\n # value: \"192.168.0.0/16\"\n # Disable file logging so `kubectl logs` works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by canal.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\n\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", "canal-v3.25.0": "\n# Canal Template based on Canal v3.25.0\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1450\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n ignoredInterfaces:\n description: IgnoredInterfaces indicates the network interfaces that\n needs to be excluded when reading device routes.\n items:\n type: string\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n reachableBy:\n description: Add an exact, i.e. /32, static route toward peer IP in\n order to prevent route flapping. ReachableBy contains the address\n of the gateway which peer can be reached by.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n ttlSecurity:\n description: TTLSecurity enables the generalized TTL security mechanism\n (GTSM) which protects against spoofed packets by ignoring received\n packets with a smaller than expected TTL value. The provided value\n is the number of hops (edges) between the peers.\n type: integer\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all interfaces with\n BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled or Strict. [Default: Strict]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfHostConntrackBypass:\n description: 'BPFHostConntrackBypass Controls whether to bypass Linux\n conntrack in BPF mode for workloads and services. [Default: true\n - bypass Linux conntrack]'\n type: boolean\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfL3IfacePattern:\n description: BPFL3IfacePattern is a regular expression that allows\n to list tunnel devices like wireguard or vxlan (i.e., L3 devices)\n in addition to BPFDataIfacePattern. That is, tunnel interfaces not\n created by Calico, that Calico workload traffic flows over as well\n as any interfaces that handle incoming traffic to nodeports and\n services from outside the cluster.\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: 'DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix''s (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s]'\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override feature detection\n based on auto-detected platform capabilities. Values are specified\n in a comma separated list with no spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\". \"true\"\n or \"false\" will force the feature, empty or omitted values are auto-detected.\n type: string\n featureGates:\n description: FeatureGates is used to enable or disable tech-preview\n Calico features. Values are specified in a comma separated list\n with no spaces, example; \"BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false\".\n This is used to enable features that are not fully production ready.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n non-OpenStack floating IP addresses. (OpenStack-derived floating\n IPs are always programmed, regardless of this setting.)\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n healthTimeoutOverrides:\n description: HealthTimeoutOverrides allows the internal watchdog timeouts\n of individual subcomponents to be overridden. This is useful for\n working around \"false positive\" liveness timeouts that can occur\n in particularly stressful workloads or if CPU is constrained. For\n a list of active subcomponents, see Felix's logs.\n items:\n properties:\n name:\n type: string\n timeout:\n type: string\n required:\n - name\n - timeout\n type: object\n type: array\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is Auto.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for IPv4 VXLAN networking. Optional as Felix determines\n this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When natOutgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - canal\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: flannel\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the canal container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{if .NodeSelector}}\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n hostNetwork: true\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: canal\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CanalPriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs canal container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Configure route aggregation based on pod CIDR.\n - name: USE_POD_CIDR\n value: \"true\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within `--cluster-cidr`.\n # - name: CALICO_IPV4POOL_CIDR\n # value: \"192.168.0.0/16\"\n # Disable file logging so `kubectl logs` works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n imagePullPolicy: IfNotPresent\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by canal.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\n\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", + "canal-v3.26.1": "\n# Canal Template based on Canal v3.26.1\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1450\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n ignoredInterfaces:\n description: IgnoredInterfaces indicates the network interfaces that\n needs to be excluded when reading device routes.\n items:\n type: string\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: bgpfilters.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPFilter\n listKind: BGPFilterList\n plural: bgpfilters\n singular: bgpfilter\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPFilterSpec contains the IPv4 and IPv6 filter rules of\n the BGP Filter.\n properties:\n exportV4:\n description: The ordered set of IPv4 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n exportV6:\n description: The ordered set of IPv6 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV4:\n description: The ordered set of IPv4 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV6:\n description: The ordered set of IPv6 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n filters:\n description: The ordered set of BGPFilters applied on this BGP peer.\n items:\n type: string\n type: array\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n reachableBy:\n description: Add an exact, i.e. /32, static route toward peer IP in\n order to prevent route flapping. ReachableBy contains the address\n of the gateway which peer can be reached by.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n ttlSecurity:\n description: TTLSecurity enables the generalized TTL security mechanism\n (GTSM) which protects against spoofed packets by ignoring received\n packets with a smaller than expected TTL value. The provided value\n is the number of hops (edges) between the peers.\n type: integer\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDSROptoutCIDRs:\n description: BPFDSROptoutCIDRs is a list of CIDRs which are excluded\n from DSR. That is, clients in those CIDRs will accesses nodeports\n as if BPFExternalServiceMode was set to Tunnel.\n items:\n type: string\n type: array\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all interfaces with\n BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled, Strict or Loose. [Default: Loose]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfHostConntrackBypass:\n description: 'BPFHostConntrackBypass Controls whether to bypass Linux\n conntrack in BPF mode for workloads and services. [Default: true\n - bypass Linux conntrack]'\n type: boolean\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfL3IfacePattern:\n description: BPFL3IfacePattern is a regular expression that allows\n to list tunnel devices like wireguard or vxlan (i.e., L3 devices)\n in addition to BPFDataIfacePattern. That is, tunnel interfaces not\n created by Calico, that Calico workload traffic flows over as well\n as any interfaces that handle incoming traffic to nodeports and\n services from outside the cluster.\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: 'DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix''s (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s]'\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override feature detection\n based on auto-detected platform capabilities. Values are specified\n in a comma separated list with no spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\". \"true\"\n or \"false\" will force the feature, empty or omitted values are auto-detected.\n type: string\n featureGates:\n description: FeatureGates is used to enable or disable tech-preview\n Calico features. Values are specified in a comma separated list\n with no spaces, example; \"BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false\".\n This is used to enable features that are not fully production ready.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n non-OpenStack floating IP addresses. (OpenStack-derived floating\n IPs are always programmed, regardless of this setting.)\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n healthTimeoutOverrides:\n description: HealthTimeoutOverrides allows the internal watchdog timeouts\n of individual subcomponents to be overridden. This is useful for\n working around \"false positive\" liveness timeouts that can occur\n in particularly stressful workloads or if CPU is constrained. For\n a list of active subcomponents, see Felix's logs.\n items:\n properties:\n name:\n type: string\n timeout:\n type: string\n required:\n - name\n - timeout\n type: object\n type: array\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is Auto.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesFilterDenyAction:\n description: IptablesFilterDenyAction controls what happens to traffic\n that is denied by network policy. By default Calico blocks traffic\n with an iptables \"DROP\" action. If you want to use \"REJECT\" action\n instead you can configure it in here.\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for IPv4 VXLAN networking. Optional as Felix determines\n this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When natOutgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - canal\n - calico-cni-plugin\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - bgpfilters\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# CNI cluster role\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-cni-plugin\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: flannel\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-cni-plugin\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-cni-plugin\nsubjects:\n- kind: ServiceAccount\n name: calico-cni-plugin\n namespace: kube-system\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the canal container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{if .NodeSelector}}\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n hostNetwork: true\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: canal\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CanalPriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs canal container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Configure route aggregation based on pod CIDR.\n - name: USE_POD_CIDR\n value: \"true\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within `--cluster-cidr`.\n # - name: CALICO_IPV4POOL_CIDR\n # value: \"192.168.0.0/16\"\n # Disable file logging so `kubectl logs` works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n imagePullPolicy: IfNotPresent\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by canal.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n{{end}}\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-cni-plugin\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\n\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", "canal-v3.26.1-rancher2": "\n# Canal Template based on Canal v3.26.1\n---\n# Source: calico/templates/calico-config.yaml\n# This ConfigMap is used to configure a self-hosted Canal installation.\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: canal-config\n namespace: kube-system\ndata:\n # Typha is disabled.\n typha_service_name: \"none\"\n # The interface used by canal for host \u003c-\u003e host communication.\n # If left blank, then the interface is chosen using the node's\n # default route.\n canal_iface: \"{{.CanalInterface}}\"\n # Whether or not to masquerade traffic to destinations not within\n # the pod network.\n masquerade: \"true\"\n\n # Configure the MTU to use for workload interfaces and tunnels.\n # By default, MTU is auto-detected, and explicitly setting this field should not be required.\n # You can override auto-detection by providing a non-zero value.\n{{- if .MTU }}\n{{- if ne .MTU 0 }}\n veth_mtu: \"{{.MTU}}\"\n{{- end}}\n{{- else }}\n veth_mtu: \"1450\"\n{{- end}}\n # The CNI network configuration to install on each node. The special\n # values in this config will be automatically populated.\n cni_network_config: |-\n {\n \"name\": \"k8s-pod-network\",\n \"cniVersion\": \"0.3.1\",\n \"plugins\": [\n {\n \"type\": \"calico\",\n \"log_level\": \"info\",\n \"log_file_path\": \"/var/log/calico/cni/cni.log\",\n \"datastore_type\": \"kubernetes\",\n \"nodename\": \"__KUBERNETES_NODE_NAME__\",\n \"mtu\": __CNI_MTU__,\n \"ipam\": {\n \"type\": \"host-local\",\n \"subnet\": \"usePodCidr\"\n },\n \"policy\": {\n \"type\": \"k8s\"\n },\n \"kubernetes\": {\n \"kubeconfig\": \"__KUBECONFIG_FILEPATH__\"\n }\n },\n {\n \"type\": \"portmap\",\n \"snat\": true,\n \"capabilities\": {\"portMappings\": true}\n },\n {\n \"type\": \"bandwidth\",\n \"capabilities\": {\"bandwidth\": true}\n }\n ]\n }\n # Flannel network configuration. Mounted into the flannel container.\n net-conf.json: |\n {\n \"Network\": \"{{.ClusterCIDR}}\",\n \"Backend\": {\n \"Type\": \"{{.FlannelBackend.Type}}\"\n }\n }\n---\n# Source: calico/templates/kdd-crds.yaml\n\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgpconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPConfiguration\n listKind: BGPConfigurationList\n plural: bgpconfigurations\n singular: bgpconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: BGPConfiguration contains the configuration for any BGP routing.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPConfigurationSpec contains the values of the BGP configuration.\n properties:\n asNumber:\n description: 'ASNumber is the default AS number used by a node. [Default:\n 64512]'\n format: int32\n type: integer\n bindMode:\n description: BindMode indicates whether to listen for BGP connections\n on all addresses (None) or only on the node's canonical IP address\n Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen\n for BGP connections on all addresses.\n type: string\n communities:\n description: Communities is a list of BGP community values and their\n arbitrary names for tagging routes.\n items:\n description: Community contains standard or large community value\n and its name.\n properties:\n name:\n description: Name given to community value.\n type: string\n value:\n description: Value must be of format \"aa:nn\" or \"aa:nn:mm\".\n For standard community use \"aa:nn\" format, where \"aa\" and\n \"nn\" are 16 bit number. For large community use \"aa:nn:mm\"\n format, where \"aa\", \"nn\" and \"mm\" are 32 bit number. Where,\n \"aa\" is an AS Number, \"nn\" and \"mm\" are per-AS identifier.\n pattern: ^(\\d+):(\\d+)$|^(\\d+):(\\d+):(\\d+)$\n type: string\n type: object\n type: array\n ignoredInterfaces:\n description: IgnoredInterfaces indicates the network interfaces that\n needs to be excluded when reading device routes.\n items:\n type: string\n type: array\n listenPort:\n description: ListenPort is the port where BGP protocol should listen.\n Defaults to 179\n maximum: 65535\n minimum: 1\n type: integer\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: INFO]'\n type: string\n nodeMeshMaxRestartTime:\n description: Time to allow for software restart for node-to-mesh peerings. When\n specified, this is configured as the graceful restart timeout. When\n not specified, the BIRD default of 120s is used. This field can\n only be set on the default BGPConfiguration instance and requires\n that NodeMesh is enabled\n type: string\n nodeMeshPassword:\n description: Optional BGP password for full node-to-mesh peerings.\n This field can only be set on the default BGPConfiguration instance\n and requires that NodeMesh is enabled\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n nodeToNodeMeshEnabled:\n description: 'NodeToNodeMeshEnabled sets whether full node to node\n BGP mesh is enabled. [Default: true]'\n type: boolean\n prefixAdvertisements:\n description: PrefixAdvertisements contains per-prefix advertisement\n configuration.\n items:\n description: PrefixAdvertisement configures advertisement properties\n for the specified CIDR.\n properties:\n cidr:\n description: CIDR for which properties should be advertised.\n type: string\n communities:\n description: Communities can be list of either community names\n already defined in \"Specs.Communities\" or community value\n of format \"aa:nn\" or \"aa:nn:mm\". For standard community use\n \"aa:nn\" format, where \"aa\" and \"nn\" are 16 bit number. For\n large community use \"aa:nn:mm\" format, where \"aa\", \"nn\" and\n \"mm\" are 32 bit number. Where,\"aa\" is an AS Number, \"nn\" and\n \"mm\" are per-AS identifier.\n items:\n type: string\n type: array\n type: object\n type: array\n serviceClusterIPs:\n description: ServiceClusterIPs are the CIDR blocks from which service\n cluster IPs are allocated. If specified, Calico will advertise these\n blocks, as well as any cluster IPs within them.\n items:\n description: ServiceClusterIPBlock represents a single allowed ClusterIP\n CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceExternalIPs:\n description: ServiceExternalIPs are the CIDR blocks for Kubernetes\n Service External IPs. Kubernetes Service ExternalIPs will only be\n advertised if they are within one of these blocks.\n items:\n description: ServiceExternalIPBlock represents a single allowed\n External IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n serviceLoadBalancerIPs:\n description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes\n Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress\n IPs will only be advertised if they are within one of these blocks.\n items:\n description: ServiceLoadBalancerIPBlock represents a single allowed\n LoadBalancer IP CIDR block.\n properties:\n cidr:\n type: string\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: bgpfilters.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPFilter\n listKind: BGPFilterList\n plural: bgpfilters\n singular: bgpfilter\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPFilterSpec contains the IPv4 and IPv6 filter rules of\n the BGP Filter.\n properties:\n exportV4:\n description: The ordered set of IPv4 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n exportV6:\n description: The ordered set of IPv6 BGPFilter rules acting on exporting\n routes to a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV4:\n description: The ordered set of IPv4 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV4 defines a BGP filter rule consisting\n a single IPv4 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n importV6:\n description: The ordered set of IPv6 BGPFilter rules acting on importing\n routes from a peer.\n items:\n description: BGPFilterRuleV6 defines a BGP filter rule consisting\n a single IPv6 CIDR block and a filter action for this CIDR.\n properties:\n action:\n type: string\n cidr:\n type: string\n matchOperator:\n type: string\n required:\n - action\n - cidr\n - matchOperator\n type: object\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: bgppeers.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BGPPeer\n listKind: BGPPeerList\n plural: bgppeers\n singular: bgppeer\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BGPPeerSpec contains the specification for a BGPPeer resource.\n properties:\n asNumber:\n description: The AS Number of the peer.\n format: int32\n type: integer\n filters:\n description: The ordered set of BGPFilters applied on this BGP peer.\n items:\n type: string\n type: array\n keepOriginalNextHop:\n description: Option to keep the original nexthop field when routes\n are sent to a BGP Peer. Setting \"true\" configures the selected BGP\n Peers node to use the \"next hop keep;\" instead of \"next hop self;\"(default)\n in the specific branch of the Node on \"bird.cfg\".\n type: boolean\n maxRestartTime:\n description: Time to allow for software restart. When specified,\n this is configured as the graceful restart timeout. When not specified,\n the BIRD default of 120s is used.\n type: string\n node:\n description: The node name identifying the Calico node instance that\n is targeted by this peer. If this is not set, and no nodeSelector\n is specified, then this BGP peer selects all nodes in the cluster.\n type: string\n nodeSelector:\n description: Selector for the nodes that should have this peering. When\n this is set, the Node field must be empty.\n type: string\n numAllowedLocalASNumbers:\n description: Maximum number of local AS numbers that are allowed in\n the AS path for received routes. This removes BGP loop prevention\n and should only be used if absolutely necesssary.\n format: int32\n type: integer\n password:\n description: Optional BGP password for the peerings generated by this\n BGPPeer resource.\n properties:\n secretKeyRef:\n description: Selects a key of a secret in the node pod's namespace.\n properties:\n key:\n description: The key of the secret to select from. Must be\n a valid secret key.\n type: string\n name:\n description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n TODO: Add other useful fields. apiVersion, kind, uid?'\n type: string\n optional:\n description: Specify whether the Secret or its key must be\n defined\n type: boolean\n required:\n - key\n type: object\n type: object\n peerIP:\n description: The IP address of the peer followed by an optional port\n number to peer with. If port number is given, format should be \"[\u003cIPv6\u003e]:port\"\n or \"\u003cIPv4\u003e:\u003cport\u003e\" for IPv4. If optional port number is not set,\n and this peer IP and ASNumber belongs to a calico/node with ListenPort\n set in BGPConfiguration, then we use that port to peer.\n type: string\n peerSelector:\n description: Selector for the remote nodes to peer with. When this\n is set, the PeerIP and ASNumber fields must be empty. For each\n peering between the local node and selected remote nodes, we configure\n an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,\n and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The\n remote AS number comes from the remote node's NodeBGPSpec.ASNumber,\n or the global default if that is not set.\n type: string\n reachableBy:\n description: Add an exact, i.e. /32, static route toward peer IP in\n order to prevent route flapping. ReachableBy contains the address\n of the gateway which peer can be reached by.\n type: string\n sourceAddress:\n description: Specifies whether and how to configure a source address\n for the peerings generated by this BGPPeer resource. Default value\n \"UseNodeIP\" means to configure the node IP as the source address. \"None\"\n means not to configure a source address.\n type: string\n ttlSecurity:\n description: TTLSecurity enables the generalized TTL security mechanism\n (GTSM) which protects against spoofed packets by ignoring received\n packets with a smaller than expected TTL value. The provided value\n is the number of hops (edges) between the peers.\n type: integer\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: blockaffinities.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: BlockAffinity\n listKind: BlockAffinityList\n plural: blockaffinities\n singular: blockaffinity\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: BlockAffinitySpec contains the specification for a BlockAffinity\n resource.\n properties:\n cidr:\n type: string\n deleted:\n description: Deleted indicates that this block affinity is being deleted.\n This field is a string for compatibility with older releases that\n mistakenly treat this field as a string.\n type: string\n node:\n type: string\n state:\n type: string\n required:\n - cidr\n - deleted\n - node\n - state\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: clusterinformations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: ClusterInformation\n listKind: ClusterInformationList\n plural: clusterinformations\n singular: clusterinformation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: ClusterInformation contains the cluster specific information.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: ClusterInformationSpec contains the values of describing\n the cluster.\n properties:\n calicoVersion:\n description: CalicoVersion is the version of Calico that the cluster\n is running\n type: string\n clusterGUID:\n description: ClusterGUID is the GUID of the cluster\n type: string\n clusterType:\n description: ClusterType describes the type of the cluster\n type: string\n datastoreReady:\n description: DatastoreReady is used during significant datastore migrations\n to signal to components such as Felix that it should wait before\n accessing the datastore.\n type: boolean\n variant:\n description: Variant declares which variant of Calico should be active.\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n annotations:\n controller-gen.kubebuilder.io/version: (devel)\n creationTimestamp: null\n name: caliconodestatuses.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: CalicoNodeStatus\n listKind: CalicoNodeStatusList\n plural: caliconodestatuses\n singular: caliconodestatus\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: CalicoNodeStatusSpec contains the specification for a CalicoNodeStatus\n resource.\n properties:\n classes:\n description: Classes declares the types of information to monitor\n for this calico/node, and allows for selective status reporting\n about certain subsets of information.\n items:\n type: string\n type: array\n node:\n description: The node name identifies the Calico node instance for\n node status.\n type: string\n updatePeriodSeconds:\n description: UpdatePeriodSeconds is the period at which CalicoNodeStatus\n should be updated. Set to 0 to disable CalicoNodeStatus refresh.\n Maximum update period is one day.\n format: int32\n type: integer\n type: object\n status:\n description: CalicoNodeStatusStatus defines the observed state of CalicoNodeStatus.\n No validation needed for status since it is updated by Calico.\n properties:\n agent:\n description: Agent holds agent status on the node.\n properties:\n birdV4:\n description: BIRDV4 represents the latest observed status of bird4.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n birdV6:\n description: BIRDV6 represents the latest observed status of bird6.\n properties:\n lastBootTime:\n description: LastBootTime holds the value of lastBootTime\n from bird.ctl output.\n type: string\n lastReconfigurationTime:\n description: LastReconfigurationTime holds the value of lastReconfigTime\n from bird.ctl output.\n type: string\n routerID:\n description: Router ID used by bird.\n type: string\n state:\n description: The state of the BGP Daemon.\n type: string\n version:\n description: Version of the BGP daemon\n type: string\n type: object\n type: object\n bgp:\n description: BGP holds node BGP status.\n properties:\n numberEstablishedV4:\n description: The total number of IPv4 established bgp sessions.\n type: integer\n numberEstablishedV6:\n description: The total number of IPv6 established bgp sessions.\n type: integer\n numberNotEstablishedV4:\n description: The total number of IPv4 non-established bgp sessions.\n type: integer\n numberNotEstablishedV6:\n description: The total number of IPv6 non-established bgp sessions.\n type: integer\n peersV4:\n description: PeersV4 represents IPv4 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n peersV6:\n description: PeersV6 represents IPv6 BGP peers status on the node.\n items:\n description: CalicoNodePeer contains the status of BGP peers\n on the node.\n properties:\n peerIP:\n description: IP address of the peer whose condition we are\n reporting.\n type: string\n since:\n description: Since the state or reason last changed.\n type: string\n state:\n description: State is the BGP session state.\n type: string\n type:\n description: Type indicates whether this peer is configured\n via the node-to-node mesh, or via en explicit global or\n per-node BGPPeer object.\n type: string\n type: object\n type: array\n required:\n - numberEstablishedV4\n - numberEstablishedV6\n - numberNotEstablishedV4\n - numberNotEstablishedV6\n type: object\n lastUpdated:\n description: LastUpdated is a timestamp representing the server time\n when CalicoNodeStatus object last updated. It is represented in\n RFC3339 form and is in UTC.\n format: date-time\n nullable: true\n type: string\n routes:\n description: Routes reports routes known to the Calico BGP daemon\n on the node.\n properties:\n routesV4:\n description: RoutesV4 represents IPv4 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n routesV6:\n description: RoutesV6 represents IPv6 routes on the node.\n items:\n description: CalicoNodeRoute contains the status of BGP routes\n on the node.\n properties:\n destination:\n description: Destination of the route.\n type: string\n gateway:\n description: Gateway for the destination.\n type: string\n interface:\n description: Interface for the destination\n type: string\n learnedFrom:\n description: LearnedFrom contains information regarding\n where this route originated.\n properties:\n peerIP:\n description: If sourceType is NodeMesh or BGPPeer, IP\n address of the router that sent us this route.\n type: string\n sourceType:\n description: Type of the source where a route is learned\n from.\n type: string\n type: object\n type:\n description: Type indicates if the route is being used for\n forwarding or not.\n type: string\n type: object\n type: array\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: felixconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: FelixConfiguration\n listKind: FelixConfigurationList\n plural: felixconfigurations\n singular: felixconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: Felix Configuration contains the configuration for Felix.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: FelixConfigurationSpec contains the values of the Felix configuration.\n properties:\n allowIPIPPacketsFromWorkloads:\n description: 'AllowIPIPPacketsFromWorkloads controls whether Felix\n will add a rule to drop IPIP encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n allowVXLANPacketsFromWorkloads:\n description: 'AllowVXLANPacketsFromWorkloads controls whether Felix\n will add a rule to drop VXLAN encapsulated traffic from workloads\n [Default: false]'\n type: boolean\n awsSrcDstCheck:\n description: 'Set source-destination-check on AWS EC2 instances. Accepted\n value must be one of \"DoNothing\", \"Enable\" or \"Disable\". [Default:\n DoNothing]'\n enum:\n - DoNothing\n - Enable\n - Disable\n type: string\n bpfConnectTimeLoadBalancingEnabled:\n description: 'BPFConnectTimeLoadBalancingEnabled when in BPF mode,\n controls whether Felix installs the connection-time load balancer. The\n connect-time load balancer is required for the host to be able to\n reach Kubernetes services and it improves the performance of pod-to-service\n connections. The only reason to disable it is for debugging purposes. [Default:\n true]'\n type: boolean\n bpfDSROptoutCIDRs:\n description: BPFDSROptoutCIDRs is a list of CIDRs which are excluded\n from DSR. That is, clients in those CIDRs will accesses nodeports\n as if BPFExternalServiceMode was set to Tunnel.\n items:\n type: string\n type: array\n bpfDataIfacePattern:\n description: BPFDataIfacePattern is a regular expression that controls\n which interfaces Felix should attach BPF programs to in order to\n catch traffic to/from the network. This needs to match the interfaces\n that Calico workload traffic flows over as well as any interfaces\n that handle incoming traffic to nodeports and services from outside\n the cluster. It should not match the workload interfaces (usually\n named cali...).\n type: string\n bpfDisableUnprivileged:\n description: 'BPFDisableUnprivileged, if enabled, Felix sets the kernel.unprivileged_bpf_disabled\n sysctl to disable unprivileged use of BPF. This ensures that unprivileged\n users cannot access Calico''s BPF maps and cannot insert their own\n BPF programs to interfere with Calico''s. [Default: true]'\n type: boolean\n bpfEnabled:\n description: 'BPFEnabled, if enabled Felix will use the BPF dataplane.\n [Default: false]'\n type: boolean\n bpfEnforceRPF:\n description: 'BPFEnforceRPF enforce strict RPF on all interfaces with\n BPF programs regardless of what is the per-interfaces or global\n setting. Possible values are Disabled, Strict or Loose. [Default: Loose]'\n type: string\n bpfExtToServiceConnmark:\n description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit\n mark that is set on connections from an external client to a local\n service. This mark allows us to control how packets of that connection\n are routed within the host and how is routing interpreted by RPF\n check. [Default: 0]'\n type: integer\n bpfExternalServiceMode:\n description: 'BPFExternalServiceMode in BPF mode, controls how connections\n from outside the cluster to services (node ports and cluster IPs)\n are forwarded to remote workloads. If set to \"Tunnel\" then both\n request and response traffic is tunneled to the remote node. If\n set to \"DSR\", the request traffic is tunneled but the response traffic\n is sent directly from the remote node. In \"DSR\" mode, the remote\n node appears to use the IP of the ingress node; this requires a\n permissive L2 network. [Default: Tunnel]'\n type: string\n bpfHostConntrackBypass:\n description: 'BPFHostConntrackBypass Controls whether to bypass Linux\n conntrack in BPF mode for workloads and services. [Default: true\n - bypass Linux conntrack]'\n type: boolean\n bpfKubeProxyEndpointSlicesEnabled:\n description: BPFKubeProxyEndpointSlicesEnabled in BPF mode, controls\n whether Felix's embedded kube-proxy accepts EndpointSlices or not.\n type: boolean\n bpfKubeProxyIptablesCleanupEnabled:\n description: 'BPFKubeProxyIptablesCleanupEnabled, if enabled in BPF\n mode, Felix will proactively clean up the upstream Kubernetes kube-proxy''s\n iptables chains. Should only be enabled if kube-proxy is not running. [Default:\n true]'\n type: boolean\n bpfKubeProxyMinSyncPeriod:\n description: 'BPFKubeProxyMinSyncPeriod, in BPF mode, controls the\n minimum time between updates to the dataplane for Felix''s embedded\n kube-proxy. Lower values give reduced set-up latency. Higher values\n reduce Felix CPU usage by batching up more work. [Default: 1s]'\n type: string\n bpfL3IfacePattern:\n description: BPFL3IfacePattern is a regular expression that allows\n to list tunnel devices like wireguard or vxlan (i.e., L3 devices)\n in addition to BPFDataIfacePattern. That is, tunnel interfaces not\n created by Calico, that Calico workload traffic flows over as well\n as any interfaces that handle incoming traffic to nodeports and\n services from outside the cluster.\n type: string\n bpfLogLevel:\n description: 'BPFLogLevel controls the log level of the BPF programs\n when in BPF dataplane mode. One of \"Off\", \"Info\", or \"Debug\". The\n logs are emitted to the BPF trace pipe, accessible with the command\n \"tc exec bpf debug\". [Default: Off].'\n type: string\n bpfMapSizeConntrack:\n description: 'BPFMapSizeConntrack sets the size for the conntrack\n map. This map must be large enough to hold an entry for each active\n connection. Warning: changing the size of the conntrack map can\n cause disruption.'\n type: integer\n bpfMapSizeIPSets:\n description: BPFMapSizeIPSets sets the size for ipsets map. The IP\n sets map must be large enough to hold an entry for each endpoint\n matched by every selector in the source/destination matches in network\n policy. Selectors such as \"all()\" can result in large numbers of\n entries (one entry per endpoint in that case).\n type: integer\n bpfMapSizeIfState:\n description: BPFMapSizeIfState sets the size for ifstate map. The\n ifstate map must be large enough to hold an entry for each device\n (host + workloads) on a host.\n type: integer\n bpfMapSizeNATAffinity:\n type: integer\n bpfMapSizeNATBackend:\n description: BPFMapSizeNATBackend sets the size for nat back end map.\n This is the total number of endpoints. This is mostly more than\n the size of the number of services.\n type: integer\n bpfMapSizeNATFrontend:\n description: BPFMapSizeNATFrontend sets the size for nat front end\n map. FrontendMap should be large enough to hold an entry for each\n nodeport, external IP and each port in each service.\n type: integer\n bpfMapSizeRoute:\n description: BPFMapSizeRoute sets the size for the routes map. The\n routes map should be large enough to hold one entry per workload\n and a handful of entries per host (enough to cover its own IPs and\n tunnel IPs).\n type: integer\n bpfPSNATPorts:\n anyOf:\n - type: integer\n - type: string\n description: 'BPFPSNATPorts sets the range from which we randomly\n pick a port if there is a source port collision. This should be\n within the ephemeral range as defined by RFC 6056 (1024–65535) and\n preferably outside the ephemeral ranges used by common operating\n systems. Linux uses 32768–60999, while others mostly use the IANA\n defined range 49152–65535. It is not necessarily a problem if this\n range overlaps with the operating systems. Both ends of the range\n are inclusive. [Default: 20000:29999]'\n pattern: ^.*\n x-kubernetes-int-or-string: true\n bpfPolicyDebugEnabled:\n description: BPFPolicyDebugEnabled when true, Felix records detailed\n information about the BPF policy programs, which can be examined\n with the calico-bpf command-line tool.\n type: boolean\n chainInsertMode:\n description: 'ChainInsertMode controls whether Felix hooks the kernel''s\n top-level iptables chains by inserting a rule at the top of the\n chain or by appending a rule at the bottom. insert is the safe default\n since it prevents Calico''s rules from being bypassed. If you switch\n to append mode, be sure that the other rules in the chains signal\n acceptance by falling through to the Calico rules, otherwise the\n Calico policy will be bypassed. [Default: insert]'\n type: string\n dataplaneDriver:\n description: DataplaneDriver filename of the external dataplane driver\n to use. Only used if UseInternalDataplaneDriver is set to false.\n type: string\n dataplaneWatchdogTimeout:\n description: 'DataplaneWatchdogTimeout is the readiness/liveness timeout\n used for Felix''s (internal) dataplane driver. Increase this value\n if you experience spurious non-ready or non-live events when Felix\n is under heavy load. Decrease the value to get felix to report non-live\n or non-ready more quickly. [Default: 90s]'\n type: string\n debugDisableLogDropping:\n type: boolean\n debugMemoryProfilePath:\n type: string\n debugSimulateCalcGraphHangAfter:\n type: string\n debugSimulateDataplaneHangAfter:\n type: string\n defaultEndpointToHostAction:\n description: 'DefaultEndpointToHostAction controls what happens to\n traffic that goes from a workload endpoint to the host itself (after\n the traffic hits the endpoint egress policy). By default Calico\n blocks traffic from workload endpoints to the host itself with an\n iptables \"DROP\" action. If you want to allow some or all traffic\n from endpoint to host, set this parameter to RETURN or ACCEPT. Use\n RETURN if you have your own rules in the iptables \"INPUT\" chain;\n Calico will insert its rules at the top of that chain, then \"RETURN\"\n packets to the \"INPUT\" chain once it has completed processing workload\n endpoint egress policy. Use ACCEPT to unconditionally accept packets\n from workloads after processing workload endpoint egress policy.\n [Default: Drop]'\n type: string\n deviceRouteProtocol:\n description: This defines the route protocol added to programmed device\n routes, by default this will be RTPROT_BOOT when left blank.\n type: integer\n deviceRouteSourceAddress:\n description: This is the IPv4 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n deviceRouteSourceAddressIPv6:\n description: This is the IPv6 source address to use on programmed\n device routes. By default the source address is left blank, leaving\n the kernel to choose the source address used.\n type: string\n disableConntrackInvalidCheck:\n type: boolean\n endpointReportingDelay:\n type: string\n endpointReportingEnabled:\n type: boolean\n externalNodesList:\n description: ExternalNodesCIDRList is a list of CIDR's of external-non-calico-nodes\n which may source tunnel traffic and have the tunneled traffic be\n accepted at calico nodes.\n items:\n type: string\n type: array\n failsafeInboundHostPorts:\n description: 'FailsafeInboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow incoming traffic to host endpoints\n on irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all inbound host ports, use the value\n none. The default value allows ssh access and DHCP. [Default: tcp:22,\n udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n failsafeOutboundHostPorts:\n description: 'FailsafeOutboundHostPorts is a list of UDP/TCP ports\n and CIDRs that Felix will allow outgoing traffic from host endpoints\n to irrespective of the security policy. This is useful to avoid\n accidentally cutting off a host with incorrect configuration. For\n back-compatibility, if the protocol is not specified, it defaults\n to \"tcp\". If a CIDR is not specified, it will allow traffic from\n all addresses. To disable all outbound host ports, use the value\n none. The default value opens etcd''s standard ports to ensure that\n Felix does not get cut off from etcd as well as allowing DHCP and\n DNS. [Default: tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666,\n tcp:6667, udp:53, udp:67]'\n items:\n description: ProtoPort is combination of protocol, port, and CIDR.\n Protocol and port must be specified.\n properties:\n net:\n type: string\n port:\n type: integer\n protocol:\n type: string\n required:\n - port\n - protocol\n type: object\n type: array\n featureDetectOverride:\n description: FeatureDetectOverride is used to override feature detection\n based on auto-detected platform capabilities. Values are specified\n in a comma separated list with no spaces, example; \"SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=\". \"true\"\n or \"false\" will force the feature, empty or omitted values are auto-detected.\n type: string\n featureGates:\n description: FeatureGates is used to enable or disable tech-preview\n Calico features. Values are specified in a comma separated list\n with no spaces, example; \"BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false\".\n This is used to enable features that are not fully production ready.\n type: string\n floatingIPs:\n description: FloatingIPs configures whether or not Felix will program\n non-OpenStack floating IP addresses. (OpenStack-derived floating\n IPs are always programmed, regardless of this setting.)\n enum:\n - Enabled\n - Disabled\n type: string\n genericXDPEnabled:\n description: 'GenericXDPEnabled enables Generic XDP so network cards\n that don''t support XDP offload or driver modes can use XDP. This\n is not recommended since it doesn''t provide better performance\n than iptables. [Default: false]'\n type: boolean\n healthEnabled:\n type: boolean\n healthHost:\n type: string\n healthPort:\n type: integer\n healthTimeoutOverrides:\n description: HealthTimeoutOverrides allows the internal watchdog timeouts\n of individual subcomponents to be overridden. This is useful for\n working around \"false positive\" liveness timeouts that can occur\n in particularly stressful workloads or if CPU is constrained. For\n a list of active subcomponents, see Felix's logs.\n items:\n properties:\n name:\n type: string\n timeout:\n type: string\n required:\n - name\n - timeout\n type: object\n type: array\n interfaceExclude:\n description: 'InterfaceExclude is a comma-separated list of interfaces\n that Felix should exclude when monitoring for host endpoints. The\n default value ensures that Felix ignores Kubernetes'' IPVS dummy\n interface, which is used internally by kube-proxy. If you want to\n exclude multiple interface names using a single value, the list\n supports regular expressions. For regular expressions you must wrap\n the value with ''/''. For example having values ''/^kube/,veth1''\n will exclude all interfaces that begin with ''kube'' and also the\n interface ''veth1''. [Default: kube-ipvs0]'\n type: string\n interfacePrefix:\n description: 'InterfacePrefix is the interface name prefix that identifies\n workload endpoints and so distinguishes them from host endpoint\n interfaces. Note: in environments other than bare metal, the orchestrators\n configure this appropriately. For example our Kubernetes and Docker\n integrations set the ''cali'' value, and our OpenStack integration\n sets the ''tap'' value. [Default: cali]'\n type: string\n interfaceRefreshInterval:\n description: InterfaceRefreshInterval is the period at which Felix\n rescans local interfaces to verify their state. The rescan can be\n disabled by setting the interval to 0.\n type: string\n ipipEnabled:\n description: 'IPIPEnabled overrides whether Felix should configure\n an IPIP interface on the host. Optional as Felix determines this\n based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n ipipMTU:\n description: 'IPIPMTU is the MTU to set on the tunnel device. See\n Configuring MTU [Default: 1440]'\n type: integer\n ipsetsRefreshInterval:\n description: 'IpsetsRefreshInterval is the period at which Felix re-checks\n all iptables state to ensure that no other process has accidentally\n broken Calico''s rules. Set to 0 to disable iptables refresh. [Default:\n 90s]'\n type: string\n iptablesBackend:\n description: IptablesBackend specifies which backend of iptables will\n be used. The default is Auto.\n type: string\n iptablesFilterAllowAction:\n type: string\n iptablesFilterDenyAction:\n description: IptablesFilterDenyAction controls what happens to traffic\n that is denied by network policy. By default Calico blocks traffic\n with an iptables \"DROP\" action. If you want to use \"REJECT\" action\n instead you can configure it in here.\n type: string\n iptablesLockFilePath:\n description: 'IptablesLockFilePath is the location of the iptables\n lock file. You may need to change this if the lock file is not in\n its standard location (for example if you have mapped it into Felix''s\n container at a different path). [Default: /run/xtables.lock]'\n type: string\n iptablesLockProbeInterval:\n description: 'IptablesLockProbeInterval is the time that Felix will\n wait between attempts to acquire the iptables lock if it is not\n available. Lower values make Felix more responsive when the lock\n is contended, but use more CPU. [Default: 50ms]'\n type: string\n iptablesLockTimeout:\n description: 'IptablesLockTimeout is the time that Felix will wait\n for the iptables lock, or 0, to disable. To use this feature, Felix\n must share the iptables lock file with all other processes that\n also take the lock. When running Felix inside a container, this\n requires the /run directory of the host to be mounted into the calico/node\n or calico/felix container. [Default: 0s disabled]'\n type: string\n iptablesMangleAllowAction:\n type: string\n iptablesMarkMask:\n description: 'IptablesMarkMask is the mask that Felix selects its\n IPTables Mark bits from. Should be a 32 bit hexadecimal number with\n at least 8 bits set, none of which clash with any other mark bits\n in use on the system. [Default: 0xff000000]'\n format: int32\n type: integer\n iptablesNATOutgoingInterfaceFilter:\n type: string\n iptablesPostWriteCheckInterval:\n description: 'IptablesPostWriteCheckInterval is the period after Felix\n has done a write to the dataplane that it schedules an extra read\n back in order to check the write was not clobbered by another process.\n This should only occur if another application on the system doesn''t\n respect the iptables lock. [Default: 1s]'\n type: string\n iptablesRefreshInterval:\n description: 'IptablesRefreshInterval is the period at which Felix\n re-checks the IP sets in the dataplane to ensure that no other process\n has accidentally broken Calico''s rules. Set to 0 to disable IP\n sets refresh. Note: the default for this value is lower than the\n other refresh intervals as a workaround for a Linux kernel bug that\n was fixed in kernel version 4.11. If you are using v4.11 or greater\n you may want to set this to, a higher value to reduce Felix CPU\n usage. [Default: 10s]'\n type: string\n ipv6Support:\n description: IPv6Support controls whether Felix enables support for\n IPv6 (if supported by the in-use dataplane).\n type: boolean\n kubeNodePortRanges:\n description: 'KubeNodePortRanges holds list of port ranges used for\n service node ports. Only used if felix detects kube-proxy running\n in ipvs mode. Felix uses these ranges to separate host and workload\n traffic. [Default: 30000:32767].'\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n logDebugFilenameRegex:\n description: LogDebugFilenameRegex controls which source code files\n have their Debug log output included in the logs. Only logs from\n files with names that match the given regular expression are included. The\n filter only applies to Debug level logs.\n type: string\n logFilePath:\n description: 'LogFilePath is the full path to the Felix log. Set to\n none to disable file logging. [Default: /var/log/calico/felix.log]'\n type: string\n logPrefix:\n description: 'LogPrefix is the log prefix that Felix uses when rendering\n LOG rules. [Default: calico-packet]'\n type: string\n logSeverityFile:\n description: 'LogSeverityFile is the log severity above which logs\n are sent to the log file. [Default: Info]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n logSeveritySys:\n description: 'LogSeveritySys is the log severity above which logs\n are sent to the syslog. Set to None for no logging to syslog. [Default:\n Info]'\n type: string\n maxIpsetSize:\n type: integer\n metadataAddr:\n description: 'MetadataAddr is the IP address or domain name of the\n server that can answer VM queries for cloud-init metadata. In OpenStack,\n this corresponds to the machine running nova-api (or in Ubuntu,\n nova-api-metadata). A value of none (case insensitive) means that\n Felix should not set up any NAT rule for the metadata path. [Default:\n 127.0.0.1]'\n type: string\n metadataPort:\n description: 'MetadataPort is the port of the metadata server. This,\n combined with global.MetadataAddr (if not ''None''), is used to\n set up a NAT rule, from 169.254.169.254:80 to MetadataAddr:MetadataPort.\n In most cases this should not need to be changed [Default: 8775].'\n type: integer\n mtuIfacePattern:\n description: MTUIfacePattern is a regular expression that controls\n which interfaces Felix should scan in order to calculate the host's\n MTU. This should not match workload interfaces (usually named cali...).\n type: string\n natOutgoingAddress:\n description: NATOutgoingAddress specifies an address to use when performing\n source NAT for traffic in a natOutgoing pool that is leaving the\n network. By default the address used is an address on the interface\n the traffic is leaving on (ie it uses the iptables MASQUERADE target)\n type: string\n natPortRange:\n anyOf:\n - type: integer\n - type: string\n description: NATPortRange specifies the range of ports that is used\n for port mapping when doing outgoing NAT. When unset the default\n behavior of the network stack is used.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n netlinkTimeout:\n type: string\n openstackRegion:\n description: 'OpenstackRegion is the name of the region that a particular\n Felix belongs to. In a multi-region Calico/OpenStack deployment,\n this must be configured somehow for each Felix (here in the datamodel,\n or in felix.cfg or the environment on each compute node), and must\n match the [calico] openstack_region value configured in neutron.conf\n on each node. [Default: Empty]'\n type: string\n policySyncPathPrefix:\n description: 'PolicySyncPathPrefix is used to by Felix to communicate\n policy changes to external services, like Application layer policy.\n [Default: Empty]'\n type: string\n prometheusGoMetricsEnabled:\n description: 'PrometheusGoMetricsEnabled disables Go runtime metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusMetricsEnabled:\n description: 'PrometheusMetricsEnabled enables the Prometheus metrics\n server in Felix if set to true. [Default: false]'\n type: boolean\n prometheusMetricsHost:\n description: 'PrometheusMetricsHost is the host that the Prometheus\n metrics server should bind to. [Default: empty]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. [Default: 9091]'\n type: integer\n prometheusProcessMetricsEnabled:\n description: 'PrometheusProcessMetricsEnabled disables process metrics\n collection, which the Prometheus client does by default, when set\n to false. This reduces the number of metrics reported, reducing\n Prometheus load. [Default: true]'\n type: boolean\n prometheusWireGuardMetricsEnabled:\n description: 'PrometheusWireGuardMetricsEnabled disables wireguard\n metrics collection, which the Prometheus client does by default,\n when set to false. This reduces the number of metrics reported,\n reducing Prometheus load. [Default: true]'\n type: boolean\n removeExternalRoutes:\n description: Whether or not to remove device routes that have not\n been programmed by Felix. Disabling this will allow external applications\n to also add device routes. This is enabled by default which means\n we will remove externally added routes.\n type: boolean\n reportingInterval:\n description: 'ReportingInterval is the interval at which Felix reports\n its status into the datastore or 0 to disable. Must be non-zero\n in OpenStack deployments. [Default: 30s]'\n type: string\n reportingTTL:\n description: 'ReportingTTL is the time-to-live setting for process-wide\n status reports. [Default: 90s]'\n type: string\n routeRefreshInterval:\n description: 'RouteRefreshInterval is the period at which Felix re-checks\n the routes in the dataplane to ensure that no other process has\n accidentally broken Calico''s rules. Set to 0 to disable route refresh.\n [Default: 90s]'\n type: string\n routeSource:\n description: 'RouteSource configures where Felix gets its routing\n information. - WorkloadIPs: use workload endpoints to construct\n routes. - CalicoIPAM: the default - use IPAM data to construct routes.'\n type: string\n routeSyncDisabled:\n description: RouteSyncDisabled will disable all operations performed\n on the route table. Set to true to run in network-policy mode only.\n type: boolean\n routeTableRange:\n description: Deprecated in favor of RouteTableRanges. Calico programs\n additional Linux route tables for various purposes. RouteTableRange\n specifies the indices of the route tables that Calico should use.\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n routeTableRanges:\n description: Calico programs additional Linux route tables for various\n purposes. RouteTableRanges specifies a set of table index ranges\n that Calico should use. Deprecates 'RouteTableRange', overrides 'RouteTableRange'.\n items:\n properties:\n max:\n type: integer\n min:\n type: integer\n required:\n - max\n - min\n type: object\n type: array\n serviceLoopPrevention:\n description: 'When service IP advertisement is enabled, prevent routing\n loops to service IPs that are not in use, by dropping or rejecting\n packets that do not get DNAT''d by kube-proxy. Unless set to \"Disabled\",\n in which case such routing loops continue to be allowed. [Default:\n Drop]'\n type: string\n sidecarAccelerationEnabled:\n description: 'SidecarAccelerationEnabled enables experimental sidecar\n acceleration [Default: false]'\n type: boolean\n usageReportingEnabled:\n description: 'UsageReportingEnabled reports anonymous Calico version\n number and cluster size to projectcalico.org. Logs warnings returned\n by the usage server. For example, if a significant security vulnerability\n has been discovered in the version of Calico being used. [Default:\n true]'\n type: boolean\n usageReportingInitialDelay:\n description: 'UsageReportingInitialDelay controls the minimum delay\n before Felix makes a report. [Default: 300s]'\n type: string\n usageReportingInterval:\n description: 'UsageReportingInterval controls the interval at which\n Felix makes reports. [Default: 86400s]'\n type: string\n useInternalDataplaneDriver:\n description: UseInternalDataplaneDriver, if true, Felix will use its\n internal dataplane programming logic. If false, it will launch\n an external dataplane driver and communicate with it over protobuf.\n type: boolean\n vxlanEnabled:\n description: 'VXLANEnabled overrides whether Felix should create the\n VXLAN tunnel device for IPv4 VXLAN networking. Optional as Felix determines\n this based on the existing IP pools. [Default: nil (unset)]'\n type: boolean\n vxlanMTU:\n description: 'VXLANMTU is the MTU to set on the IPv4 VXLAN tunnel\n device. See Configuring MTU [Default: 1410]'\n type: integer\n vxlanMTUV6:\n description: 'VXLANMTUV6 is the MTU to set on the IPv6 VXLAN tunnel\n device. See Configuring MTU [Default: 1390]'\n type: integer\n vxlanPort:\n type: integer\n vxlanVNI:\n type: integer\n wireguardEnabled:\n description: 'WireguardEnabled controls whether Wireguard is enabled\n for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).\n [Default: false]'\n type: boolean\n wireguardEnabledV6:\n description: 'WireguardEnabledV6 controls whether Wireguard is enabled\n for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).\n [Default: false]'\n type: boolean\n wireguardHostEncryptionEnabled:\n description: 'WireguardHostEncryptionEnabled controls whether Wireguard\n host-to-host encryption is enabled. [Default: false]'\n type: boolean\n wireguardInterfaceName:\n description: 'WireguardInterfaceName specifies the name to use for\n the IPv4 Wireguard interface. [Default: wireguard.cali]'\n type: string\n wireguardInterfaceNameV6:\n description: 'WireguardInterfaceNameV6 specifies the name to use for\n the IPv6 Wireguard interface. [Default: wg-v6.cali]'\n type: string\n wireguardKeepAlive:\n description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive\n option. Set 0 to disable. [Default: 0]'\n type: string\n wireguardListeningPort:\n description: 'WireguardListeningPort controls the listening port used\n by IPv4 Wireguard. [Default: 51820]'\n type: integer\n wireguardListeningPortV6:\n description: 'WireguardListeningPortV6 controls the listening port\n used by IPv6 Wireguard. [Default: 51821]'\n type: integer\n wireguardMTU:\n description: 'WireguardMTU controls the MTU on the IPv4 Wireguard\n interface. See Configuring MTU [Default: 1440]'\n type: integer\n wireguardMTUV6:\n description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard\n interface. See Configuring MTU [Default: 1420]'\n type: integer\n wireguardRoutingRulePriority:\n description: 'WireguardRoutingRulePriority controls the priority value\n to use for the Wireguard routing rule. [Default: 99]'\n type: integer\n workloadSourceSpoofing:\n description: WorkloadSourceSpoofing controls whether pods can use\n the allowedSourcePrefixes annotation to send traffic with a source\n IP address that is not theirs. This is disabled by default. When\n set to \"Any\", pods can request any prefix.\n type: string\n xdpEnabled:\n description: 'XDPEnabled enables XDP acceleration for suitable untracked\n incoming deny rules. [Default: true]'\n type: boolean\n xdpRefreshInterval:\n description: 'XDPRefreshInterval is the period at which Felix re-checks\n all XDP state to ensure that no other process has accidentally broken\n Calico''s BPF maps or attached programs. Set to 0 to disable XDP\n refresh. [Default: 90s]'\n type: string\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkPolicy\n listKind: GlobalNetworkPolicyList\n plural: globalnetworkpolicies\n singular: globalnetworkpolicy\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n applyOnForward:\n description: ApplyOnForward indicates to apply the rules in this policy\n on forward traffic.\n type: boolean\n doNotTrack:\n description: DoNotTrack indicates whether packets matched by the rules\n in this policy should go through the data plane's connection tracking,\n such as Linux conntrack. If True, the rules in this policy are\n applied before any data plane connection tracking, and packets allowed\n by this policy are marked as not to be tracked.\n type: boolean\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n namespaceSelector:\n description: NamespaceSelector is an optional field for an expression\n used to select a pod based on namespaces.\n type: string\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n preDNAT:\n description: PreDNAT indicates to apply the rules in this policy before\n any DNAT.\n type: boolean\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress rules are present in the policy. The\n default is: \\n - [ PolicyTypeIngress ], if there are no Egress rules\n (including the case where there are also no Ingress rules) \\n\n - [ PolicyTypeEgress ], if there are Egress rules but no Ingress\n rules \\n - [ PolicyTypeIngress, PolicyTypeEgress ], if there are\n both Ingress and Egress rules. \\n When the policy is read back again,\n Types will always be one of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: globalnetworksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: GlobalNetworkSet\n listKind: GlobalNetworkSetList\n plural: globalnetworksets\n singular: globalnetworkset\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs\n that share labels to allow rules to refer to them via selectors. The labels\n of GlobalNetworkSet are not namespaced.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: GlobalNetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: hostendpoints.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: HostEndpoint\n listKind: HostEndpointList\n plural: hostendpoints\n singular: hostendpoint\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: HostEndpointSpec contains the specification for a HostEndpoint\n resource.\n properties:\n expectedIPs:\n description: \"The expected IP addresses (IPv4 and IPv6) of the endpoint.\n If \\\"InterfaceName\\\" is not present, Calico will look for an interface\n matching any of the IPs in the list and apply policy to that. Note:\n \\tWhen using the selector match criteria in an ingress or egress\n security Policy \\tor Profile, Calico converts the selector into\n a set of IP addresses. For host \\tendpoints, the ExpectedIPs field\n is used for that purpose. (If only the interface \\tname is specified,\n Calico does not learn the IPs of the interface for use in match\n \\tcriteria.)\"\n items:\n type: string\n type: array\n interfaceName:\n description: \"Either \\\"*\\\", or the name of a specific Linux interface\n to apply policy to; or empty. \\\"*\\\" indicates that this HostEndpoint\n governs all traffic to, from or through the default network namespace\n of the host named by the \\\"Node\\\" field; entering and leaving that\n namespace via any interface, including those from/to non-host-networked\n local workloads. \\n If InterfaceName is not \\\"*\\\", this HostEndpoint\n only governs traffic that enters or leaves the host through the\n specific interface named by InterfaceName, or - when InterfaceName\n is empty - through the specific interface that has one of the IPs\n in ExpectedIPs. Therefore, when InterfaceName is empty, at least\n one expected IP must be specified. Only external interfaces (such\n as \\\"eth0\\\") are supported here; it isn't possible for a HostEndpoint\n to protect traffic through a specific local workload interface.\n \\n Note: Only some kinds of policy are implemented for \\\"*\\\" HostEndpoints;\n initially just pre-DNAT policy. Please check Calico documentation\n for the latest position.\"\n type: string\n node:\n description: The node name identifying the Calico node instance.\n type: string\n ports:\n description: Ports contains the endpoint's named ports, which may\n be referenced in security policy rules.\n items:\n properties:\n name:\n type: string\n port:\n type: integer\n protocol:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n required:\n - name\n - port\n - protocol\n type: object\n type: array\n profiles:\n description: A list of identifiers of security Profile objects that\n apply to this endpoint. Each profile is applied in the order that\n they appear in this list. Profile rules are applied after the selector-based\n security policy.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamblocks.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMBlock\n listKind: IPAMBlockList\n plural: ipamblocks\n singular: ipamblock\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMBlockSpec contains the specification for an IPAMBlock\n resource.\n properties:\n affinity:\n description: Affinity of the block, if this block has one. If set,\n it will be of the form \"host:\u003chostname\u003e\". If not set, this block\n is not affine to a host.\n type: string\n allocations:\n description: Array of allocations in-use within this block. nil entries\n mean the allocation is free. For non-nil entries at index i, the\n index is the ordinal of the allocation within this block and the\n value is the index of the associated attributes in the Attributes\n array.\n items:\n type: integer\n # TODO: This nullable is manually added in. We should update controller-gen\n # to handle []*int properly itself.\n nullable: true\n type: array\n attributes:\n description: Attributes is an array of arbitrary metadata associated\n with allocations in the block. To find attributes for a given allocation,\n use the value of the allocation's entry in the Allocations array\n as the index of the element in this array.\n items:\n properties:\n handle_id:\n type: string\n secondary:\n additionalProperties:\n type: string\n type: object\n type: object\n type: array\n cidr:\n description: The block's CIDR.\n type: string\n deleted:\n description: Deleted is an internal boolean used to workaround a limitation\n in the Kubernetes API whereby deletion will not return a conflict\n error if the block has been updated. It should not be set manually.\n type: boolean\n sequenceNumber:\n default: 0\n description: We store a sequence number that is updated each time\n the block is written. Each allocation will also store the sequence\n number of the block at the time of its creation. When releasing\n an IP, passing the sequence number associated with the allocation\n allows us to protect against a race condition and ensure the IP\n hasn't been released and re-allocated since the release request.\n format: int64\n type: integer\n sequenceNumberForAllocation:\n additionalProperties:\n format: int64\n type: integer\n description: Map of allocated ordinal within the block to sequence\n number of the block at the time of allocation. Kubernetes does not\n allow numerical keys for maps, so the key is cast to a string.\n type: object\n strictAffinity:\n description: StrictAffinity on the IPAMBlock is deprecated and no\n longer used by the code. Use IPAMConfig StrictAffinity instead.\n type: boolean\n unallocated:\n description: Unallocated is an ordered list of allocations which are\n free in the block.\n items:\n type: integer\n type: array\n required:\n - allocations\n - attributes\n - cidr\n - strictAffinity\n - unallocated\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamconfigs.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMConfig\n listKind: IPAMConfigList\n plural: ipamconfigs\n singular: ipamconfig\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMConfigSpec contains the specification for an IPAMConfig\n resource.\n properties:\n autoAllocateBlocks:\n type: boolean\n maxBlocksPerHost:\n description: MaxBlocksPerHost, if non-zero, is the max number of blocks\n that can be affine to each host.\n maximum: 2147483647\n minimum: 0\n type: integer\n strictAffinity:\n type: boolean\n required:\n - autoAllocateBlocks\n - strictAffinity\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipamhandles.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPAMHandle\n listKind: IPAMHandleList\n plural: ipamhandles\n singular: ipamhandle\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPAMHandleSpec contains the specification for an IPAMHandle\n resource.\n properties:\n block:\n additionalProperties:\n type: integer\n type: object\n deleted:\n type: boolean\n handleID:\n type: string\n required:\n - block\n - handleID\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/kdd-crds.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ippools.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPPool\n listKind: IPPoolList\n plural: ippools\n singular: ippool\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPPoolSpec contains the specification for an IPPool resource.\n properties:\n allowedUses:\n description: AllowedUse controls what the IP pool will be used for. If\n not specified or empty, defaults to [\"Tunnel\", \"Workload\"] for back-compatibility\n items:\n type: string\n type: array\n blockSize:\n description: The block size to use for IP address assignments from\n this pool. Defaults to 26 for IPv4 and 122 for IPv6.\n type: integer\n cidr:\n description: The pool CIDR.\n type: string\n disableBGPExport:\n description: 'Disable exporting routes from this IP Pool''s CIDR over\n BGP. [Default: false]'\n type: boolean\n disabled:\n description: When disabled is true, Calico IPAM will not assign addresses\n from this pool.\n type: boolean\n ipip:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n properties:\n enabled:\n description: When enabled is true, ipip tunneling will be used\n to deliver packets to destinations within this pool.\n type: boolean\n mode:\n description: The IPIP mode. This can be one of \"always\" or \"cross-subnet\". A\n mode of \"always\" will also use IPIP tunneling for routing to\n destination IP addresses within this pool. A mode of \"cross-subnet\"\n will only use IPIP tunneling when the destination node is on\n a different subnet to the originating node. The default value\n (if not specified) is \"always\".\n type: string\n type: object\n ipipMode:\n description: Contains configuration for IPIP tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. IPIP tunneling\n is disabled).\n type: string\n nat-outgoing:\n description: 'Deprecated: this field is only used for APIv1 backwards\n compatibility. Setting this field is not allowed, this field is\n for internal use only.'\n type: boolean\n natOutgoing:\n description: When natOutgoing is true, packets sent from Calico networked\n containers in this pool to destinations outside of this pool will\n be masqueraded.\n type: boolean\n nodeSelector:\n description: Allows IPPool to allocate for a specific node by label\n selector.\n type: string\n vxlanMode:\n description: Contains configuration for VXLAN tunneling for this pool.\n If not specified, then this is defaulted to \"Never\" (i.e. VXLAN\n tunneling is disabled).\n type: string\n required:\n - cidr\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: ipreservations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: IPReservation\n listKind: IPReservationList\n plural: ipreservations\n singular: ipreservation\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: IPReservationSpec contains the specification for an IPReservation\n resource.\n properties:\n reservedCIDRs:\n description: ReservedCIDRs is a list of CIDRs and/or IP addresses\n that Calico IPAM will exclude from new allocations.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: kubecontrollersconfigurations.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: KubeControllersConfiguration\n listKind: KubeControllersConfigurationList\n plural: kubecontrollersconfigurations\n singular: kubecontrollersconfiguration\n preserveUnknownFields: false\n scope: Cluster\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: KubeControllersConfigurationSpec contains the values of the\n Kubernetes controllers configuration.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host endpoints.\n Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation of\n host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the controller\n to determine if an IP address has been leaked. Set to 0\n to disable IP garbage collection. [Default: 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform reconciliation\n with the Calico datastore. [Default: 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which logs\n are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default: 9094]'\n type: integer\n required:\n - controllers\n type: object\n status:\n description: KubeControllersConfigurationStatus represents the status\n of the configuration. It's useful for admins to be able to see the actual\n config that was applied, which can be modified by environment variables\n on the kube-controllers process.\n properties:\n environmentVars:\n additionalProperties:\n type: string\n description: EnvironmentVars contains the environment variables on\n the kube-controllers that influenced the RunningConfig.\n type: object\n runningConfig:\n description: RunningConfig contains the effective config that is running\n in the kube-controllers pod, after merging the API resource with\n any environment variables.\n properties:\n controllers:\n description: Controllers enables and configures individual Kubernetes\n controllers\n properties:\n namespace:\n description: Namespace enables and configures the namespace\n controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n node:\n description: Node enables and configures the node controller.\n Enabled by default, set to nil to disable.\n properties:\n hostEndpoint:\n description: HostEndpoint controls syncing nodes to host\n endpoints. Disabled by default, set to nil to disable.\n properties:\n autoCreate:\n description: 'AutoCreate enables automatic creation\n of host endpoints for every node. [Default: Disabled]'\n type: string\n type: object\n leakGracePeriod:\n description: 'LeakGracePeriod is the period used by the\n controller to determine if an IP address has been leaked.\n Set to 0 to disable IP garbage collection. [Default:\n 15m]'\n type: string\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n syncLabels:\n description: 'SyncLabels controls whether to copy Kubernetes\n node labels to Calico nodes. [Default: Enabled]'\n type: string\n type: object\n policy:\n description: Policy enables and configures the policy controller.\n Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n serviceAccount:\n description: ServiceAccount enables and configures the service\n account controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n workloadEndpoint:\n description: WorkloadEndpoint enables and configures the workload\n endpoint controller. Enabled by default, set to nil to disable.\n properties:\n reconcilerPeriod:\n description: 'ReconcilerPeriod is the period to perform\n reconciliation with the Calico datastore. [Default:\n 5m]'\n type: string\n type: object\n type: object\n debugProfilePort:\n description: DebugProfilePort configures the port to serve memory\n and cpu profiles on. If not specified, profiling is disabled.\n format: int32\n type: integer\n etcdV3CompactionPeriod:\n description: 'EtcdV3CompactionPeriod is the period between etcdv3\n compaction requests. Set to 0 to disable. [Default: 10m]'\n type: string\n healthChecks:\n description: 'HealthChecks enables or disables support for health\n checks [Default: Enabled]'\n type: string\n logSeverityScreen:\n description: 'LogSeverityScreen is the log severity above which\n logs are sent to the stdout. [Default: Info]'\n type: string\n prometheusMetricsPort:\n description: 'PrometheusMetricsPort is the TCP port that the Prometheus\n metrics server should bind to. Set to 0 to disable. [Default:\n 9094]'\n type: integer\n required:\n - controllers\n type: object\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networkpolicies.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkPolicy\n listKind: NetworkPolicyList\n plural: networkpolicies\n singular: networkpolicy\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n properties:\n egress:\n description: The ordered set of egress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n ingress:\n description: The ordered set of ingress rules. Each rule contains\n a set of packet match criteria and a corresponding action to apply.\n items:\n description: \"A Rule encapsulates a set of match criteria and an\n action. Both selector-based security Policy and security Profiles\n reference rules - separated out as a list of rules for both ingress\n and egress packet matching. \\n Each positive match criteria has\n a negated version, prefixed with \\\"Not\\\". All the match criteria\n within a rule must be satisfied for a packet to match. A single\n rule can contain the positive and negative version of a match\n and both must be satisfied for the rule to match.\"\n properties:\n action:\n type: string\n destination:\n description: Destination contains the match criteria that apply\n to destination entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n http:\n description: HTTP contains match criteria that apply to HTTP\n requests.\n properties:\n methods:\n description: Methods is an optional field that restricts\n the rule to apply only to HTTP requests that use one of\n the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple\n methods are OR'd together.\n items:\n type: string\n type: array\n paths:\n description: 'Paths is an optional field that restricts\n the rule to apply to HTTP requests that use one of the\n listed HTTP Paths. Multiple paths are OR''d together.\n e.g: - exact: /foo - prefix: /bar NOTE: Each entry may\n ONLY specify either a \"exact\" or a \"prefix\" match. The\n validator will check for it.'\n items:\n description: 'HTTPPath specifies an HTTP path to match.\n It may be either of the form: exact: \u003cpath\u003e: which matches\n the path exactly or prefix: \u003cpath-prefix\u003e: which matches\n the path prefix'\n properties:\n exact:\n type: string\n prefix:\n type: string\n type: object\n type: array\n type: object\n icmp:\n description: ICMP is an optional field that restricts the rule\n to apply to a specific type and code of ICMP traffic. This\n should only be specified if the Protocol field is set to \"ICMP\"\n or \"ICMPv6\".\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n ipVersion:\n description: IPVersion is an optional field that restricts the\n rule to only match a specific IP version.\n type: integer\n metadata:\n description: Metadata contains additional information for this\n rule\n properties:\n annotations:\n additionalProperties:\n type: string\n description: Annotations is a set of key value pairs that\n give extra information about the rule\n type: object\n type: object\n notICMP:\n description: NotICMP is the negated version of the ICMP field.\n properties:\n code:\n description: Match on a specific ICMP code. If specified,\n the Type value must also be specified. This is a technical\n limitation imposed by the kernel's iptables firewall,\n which Calico uses to enforce the rule.\n type: integer\n type:\n description: Match on a specific ICMP type. For example\n a value of 8 refers to ICMP Echo Request (i.e. pings).\n type: integer\n type: object\n notProtocol:\n anyOf:\n - type: integer\n - type: string\n description: NotProtocol is the negated version of the Protocol\n field.\n pattern: ^.*\n x-kubernetes-int-or-string: true\n protocol:\n anyOf:\n - type: integer\n - type: string\n description: \"Protocol is an optional field that restricts the\n rule to only apply to traffic of a specific IP protocol. Required\n if any of the EntityRules contain Ports (because ports only\n apply to certain protocols). \\n Must be one of these string\n values: \\\"TCP\\\", \\\"UDP\\\", \\\"ICMP\\\", \\\"ICMPv6\\\", \\\"SCTP\\\",\n \\\"UDPLite\\\" or an integer in the range 1-255.\"\n pattern: ^.*\n x-kubernetes-int-or-string: true\n source:\n description: Source contains the match criteria that apply to\n source entity.\n properties:\n namespaceSelector:\n description: \"NamespaceSelector is an optional field that\n contains a selector expression. Only traffic that originates\n from (or terminates at) endpoints within the selected\n namespaces will be matched. When both NamespaceSelector\n and another selector are defined on the same rule, then\n only workload endpoints that are matched by both selectors\n will be selected by the rule. \\n For NetworkPolicy, an\n empty NamespaceSelector implies that the Selector is limited\n to selecting only workload endpoints in the same namespace\n as the NetworkPolicy. \\n For NetworkPolicy, 'global()'\n NamespaceSelector implies that the Selector is limited\n to selecting only GlobalNetworkSet or HostEndpoint. \\n\n For GlobalNetworkPolicy, an empty NamespaceSelector implies\n the Selector applies to workload endpoints across all\n namespaces.\"\n type: string\n nets:\n description: Nets is an optional field that restricts the\n rule to only apply to traffic that originates from (or\n terminates at) IP addresses in any of the given subnets.\n items:\n type: string\n type: array\n notNets:\n description: NotNets is the negated version of the Nets\n field.\n items:\n type: string\n type: array\n notPorts:\n description: NotPorts is the negated version of the Ports\n field. Since only some protocols have ports, if any ports\n are specified it requires the Protocol match in the Rule\n to be set to \"TCP\" or \"UDP\".\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n notSelector:\n description: NotSelector is the negated version of the Selector\n field. See Selector field for subtleties with negated\n selectors.\n type: string\n ports:\n description: \"Ports is an optional field that restricts\n the rule to only apply to traffic that has a source (destination)\n port that matches one of these ranges/values. This value\n is a list of integers or strings that represent ranges\n of ports. \\n Since only some protocols have ports, if\n any ports are specified it requires the Protocol match\n in the Rule to be set to \\\"TCP\\\" or \\\"UDP\\\".\"\n items:\n anyOf:\n - type: integer\n - type: string\n pattern: ^.*\n x-kubernetes-int-or-string: true\n type: array\n selector:\n description: \"Selector is an optional field that contains\n a selector expression (see Policy for sample syntax).\n \\ Only traffic that originates from (terminates at) endpoints\n matching the selector will be matched. \\n Note that: in\n addition to the negated version of the Selector (see NotSelector\n below), the selector expression syntax itself supports\n negation. The two types of negation are subtly different.\n One negates the set of matched endpoints, the other negates\n the whole match: \\n \\tSelector = \\\"!has(my_label)\\\" matches\n packets that are from other Calico-controlled \\tendpoints\n that do not have the label \\\"my_label\\\". \\n \\tNotSelector\n = \\\"has(my_label)\\\" matches packets that are not from\n Calico-controlled \\tendpoints that do have the label \\\"my_label\\\".\n \\n The effect is that the latter will accept packets from\n non-Calico sources whereas the former is limited to packets\n from Calico-controlled endpoints.\"\n type: string\n serviceAccounts:\n description: ServiceAccounts is an optional field that restricts\n the rule to only apply to traffic that originates from\n (or terminates at) a pod running as a matching service\n account.\n properties:\n names:\n description: Names is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account whose name is in the list.\n items:\n type: string\n type: array\n selector:\n description: Selector is an optional field that restricts\n the rule to only apply to traffic that originates\n from (or terminates at) a pod running as a service\n account that matches the given label selector. If\n both Names and Selector are specified then they are\n AND'ed.\n type: string\n type: object\n services:\n description: \"Services is an optional field that contains\n options for matching Kubernetes Services. If specified,\n only traffic that originates from or terminates at endpoints\n within the selected service(s) will be matched, and only\n to/from each endpoint's port. \\n Services cannot be specified\n on the same rule as Selector, NotSelector, NamespaceSelector,\n Nets, NotNets or ServiceAccounts. \\n Ports and NotPorts\n can only be specified with Services on ingress rules.\"\n properties:\n name:\n description: Name specifies the name of a Kubernetes\n Service to match.\n type: string\n namespace:\n description: Namespace specifies the namespace of the\n given Service. If left empty, the rule will match\n within this policy's namespace.\n type: string\n type: object\n type: object\n required:\n - action\n type: object\n type: array\n order:\n description: Order is an optional field that specifies the order in\n which the policy is applied. Policies with higher \"order\" are applied\n after those with lower order. If the order is omitted, it may be\n considered to be \"infinite\" - i.e. the policy will be applied last. Policies\n with identical order will be applied in alphanumerical order based\n on the Policy \"Name\".\n type: number\n selector:\n description: \"The selector is an expression used to pick pick out\n the endpoints that the policy should be applied to. \\n Selector\n expressions follow this syntax: \\n \\tlabel == \\\"string_literal\\\"\n \\ -\u003e comparison, e.g. my_label == \\\"foo bar\\\" \\tlabel != \\\"string_literal\\\"\n \\ -\u003e not equal; also matches if label is not present \\tlabel in\n { \\\"a\\\", \\\"b\\\", \\\"c\\\", ... } -\u003e true if the value of label X is\n one of \\\"a\\\", \\\"b\\\", \\\"c\\\" \\tlabel not in { \\\"a\\\", \\\"b\\\", \\\"c\\\",\n ... } -\u003e true if the value of label X is not one of \\\"a\\\", \\\"b\\\",\n \\\"c\\\" \\thas(label_name) -\u003e True if that label is present \\t! expr\n -\u003e negation of expr \\texpr \u0026\u0026 expr -\u003e Short-circuit and \\texpr\n || expr -\u003e Short-circuit or \\t( expr ) -\u003e parens for grouping \\tall()\n or the empty selector -\u003e matches all endpoints. \\n Label names are\n allowed to contain alphanumerics, -, _ and /. String literals are\n more permissive but they do not support escape characters. \\n Examples\n (with made-up labels): \\n \\ttype == \\\"webserver\\\" \u0026\u0026 deployment\n == \\\"prod\\\" \\ttype in {\\\"frontend\\\", \\\"backend\\\"} \\tdeployment !=\n \\\"dev\\\" \\t! has(label_name)\"\n type: string\n serviceAccountSelector:\n description: ServiceAccountSelector is an optional field for an expression\n used to select a pod based on service accounts.\n type: string\n types:\n description: \"Types indicates whether this policy applies to ingress,\n or to egress, or to both. When not explicitly specified (and so\n the value on creation is empty or nil), Calico defaults Types according\n to what Ingress and Egress are present in the policy. The default\n is: \\n - [ PolicyTypeIngress ], if there are no Egress rules (including\n the case where there are also no Ingress rules) \\n - [ PolicyTypeEgress\n ], if there are Egress rules but no Ingress rules \\n - [ PolicyTypeIngress,\n PolicyTypeEgress ], if there are both Ingress and Egress rules.\n \\n When the policy is read back again, Types will always be one\n of these values, never empty or nil.\"\n items:\n description: PolicyType enumerates the possible values of the PolicySpec\n Types field.\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: apiextensions.k8s.io/v1\nkind: CustomResourceDefinition\nmetadata:\n name: networksets.crd.projectcalico.org\nspec:\n group: crd.projectcalico.org\n names:\n kind: NetworkSet\n listKind: NetworkSetList\n plural: networksets\n singular: networkset\n preserveUnknownFields: false\n scope: Namespaced\n versions:\n - name: v1\n schema:\n openAPIV3Schema:\n description: NetworkSet is the Namespaced-equivalent of the GlobalNetworkSet.\n properties:\n apiVersion:\n description: 'APIVersion defines the versioned schema of this representation\n of an object. Servers should convert recognized schemas to the latest\n internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'\n type: string\n kind:\n description: 'Kind is a string value representing the REST resource this\n object represents. Servers may infer this from the endpoint the client\n submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'\n type: string\n metadata:\n type: object\n spec:\n description: NetworkSetSpec contains the specification for a NetworkSet\n resource.\n properties:\n nets:\n description: The list of IP networks that belong to this set.\n items:\n type: string\n type: array\n type: object\n type: object\n served: true\n storage: true\nstatus:\n acceptedNames:\n kind: \"\"\n plural: \"\"\n conditions: []\n storedVersions: []\n---\n---\n# Source: calico/templates/calico-kube-controllers-rbac.yaml\n{{if eq .RBACConfig \"rbac\"}}\n# Include a clusterrole for the kube-controllers component,\n# and bind it to the calico-kube-controllers serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nrules:\n # Nodes are watched to monitor for deletions.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - watch\n - list\n - get\n # Pods are watched to check for existence as part of IPAM controller.\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - list\n - watch\n # IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ipreservations\n verbs:\n - list\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - blockaffinities\n - ipamblocks\n - ipamhandles\n verbs:\n - get\n - list\n - create\n - update\n - delete\n - watch\n # Pools are watched to maintain a mapping of blocks to IP pools.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n verbs:\n - list\n - watch\n # kube-controllers manages hostendpoints.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - hostendpoints\n verbs:\n - get\n - list\n - create\n - update\n - delete\n # Needs access to update clusterinformations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - clusterinformations\n verbs:\n - get\n - list\n - create\n - update\n - watch\n # KubeControllersConfiguration is where it gets its config\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - kubecontrollersconfigurations\n verbs:\n # read its own config\n - get\n # create a default if none exists\n - create\n # update status\n - update\n # watch for changes\n - watch\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-kube-controllers\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-kube-controllers\nsubjects:\n- kind: ServiceAccount\n name: calico-kube-controllers\n namespace: kube-system\n---\n\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\n# Source: calico/templates/calico-node-rbac.yaml\n# Include a clusterrole for the calico-node DaemonSet,\n# and bind it to the calico-node serviceaccount.\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico\nrules:\n # Used for creating service account tokens to be used by the CNI plugin\n - apiGroups: [\"\"]\n resources:\n - serviceaccounts/token\n resourceNames:\n - canal\n - calico-cni-plugin\n verbs:\n - create\n # The CNI plugin needs to get pods, nodes, and namespaces.\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n # EndpointSlices are used for Service-based network policy rule\n # enforcement.\n - apiGroups: [\"discovery.k8s.io\"]\n resources:\n - endpointslices\n verbs:\n - watch\n - list\n - apiGroups: [\"\"]\n resources:\n - endpoints\n - services\n verbs:\n # Used to discover service IPs for advertisement.\n - watch\n - list\n # Used to discover Typhas.\n - get\n # Pod CIDR auto-detection on kubeadm needs access to config maps.\n - apiGroups: [\"\"]\n resources:\n - configmaps\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n # Needed for clearing NodeNetworkUnavailable flag.\n - patch\n # Calico stores some configuration information in node annotations.\n - update\n # Watch for changes to Kubernetes NetworkPolicies.\n - apiGroups: [\"networking.k8s.io\"]\n resources:\n - networkpolicies\n verbs:\n - watch\n - list\n # Used by Calico for policy information.\n - apiGroups: [\"\"]\n resources:\n - pods\n - namespaces\n - serviceaccounts\n verbs:\n - list\n - watch\n # The CNI plugin patches pods/status.\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n # Calico monitors various CRDs for config.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - globalfelixconfigs\n - felixconfigurations\n - bgppeers\n - bgpfilters\n - globalbgpconfigs\n - bgpconfigurations\n - ippools\n - ipreservations\n - ipamblocks\n - globalnetworkpolicies\n - globalnetworksets\n - networkpolicies\n - networksets\n - clusterinformations\n - hostendpoints\n - blockaffinities\n - caliconodestatuses\n verbs:\n - get\n - list\n - watch\n # Calico must create and update some CRDs on startup.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - ippools\n - felixconfigurations\n - clusterinformations\n verbs:\n - create\n - update\n # Calico must update some CRDs.\n - apiGroups: [ \"crd.projectcalico.org\" ]\n resources:\n - caliconodestatuses\n verbs:\n - update\n # Calico stores some configuration information on the node.\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - get\n - list\n - watch\n # These permissions are only required for upgrade from v2.6, and can\n # be removed after upgrade or on fresh installations.\n - apiGroups: [\"crd.projectcalico.org\"]\n resources:\n - bgpconfigurations\n - bgppeers\n verbs:\n - create\n - update\n\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# CNI cluster role\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: calico-cni-plugin\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n - nodes\n - namespaces\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - pods/status\n verbs:\n - patch\n---\n# Source: calico/templates/calico-node-rbac.yaml\n# Flannel ClusterRole\n# Pulled from https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel-rbac.yml\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: flannel\nrules:\n - apiGroups: [\"\"]\n resources:\n - pods\n verbs:\n - get\n - apiGroups: [\"\"]\n resources:\n - nodes\n verbs:\n - list\n - watch\n - apiGroups: [\"\"]\n resources:\n - nodes/status\n verbs:\n - patch\n---\n# Bind the flannel ClusterRole to the canal ServiceAccount.\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: canal-flannel\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: flannel\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n---\n# Rancher-specific: Change the calico-node ClusterRole name to calico for backwards compatibility\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: canal-calico\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico\nsubjects:\n- kind: ServiceAccount\n name: canal\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-node-rbac.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: calico-cni-plugin\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: calico-cni-plugin\nsubjects:\n- kind: ServiceAccount\n name: calico-cni-plugin\n namespace: kube-system\n---\n# Source: calico/templates/calico-node.yaml\n# This manifest installs the canal container, as well\n# as the CNI plugins and network config on\n# each master and worker node in a Kubernetes cluster.\nkind: DaemonSet\napiVersion: apps/v1\nmetadata:\n name: canal\n namespace: kube-system\n labels:\n k8s-app: canal\nspec:\n selector:\n matchLabels:\n k8s-app: canal\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n template:\n metadata:\n labels:\n k8s-app: canal\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{if .NodeSelector}}\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n hostNetwork: true\n tolerations:\n # Make sure canal gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: canal\n {{end}}\n # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a \"force\n # deletion\": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.\n terminationGracePeriodSeconds: 0\n # Rancher specific change\n priorityClassName: {{ .CanalPriorityClassName | default \"system-node-critical\" }}\n initContainers:\n # This container installs the CNI binaries\n # and CNI network config file on each node.\n - name: install-cni\n image: {{.CNIImage}}\n imagePullPolicy: IfNotPresent\n command: [\"/opt/cni/bin/install\"]\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Name of the CNI config file to create.\n - name: CNI_CONF_NAME\n value: \"10-canal.conflist\"\n # The CNI network config to install on each node.\n - name: CNI_NETWORK_CONFIG\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: cni_network_config\n # Set the hostname based on the k8s node name.\n - name: KUBERNETES_NODE_NAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # CNI MTU Config variable\n - name: CNI_MTU\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: veth_mtu\n # Prevents the container from sleeping forever.\n - name: SLEEP\n value: \"false\"\n volumeMounts:\n - mountPath: /host/opt/cni/bin\n name: cni-bin-dir\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n securityContext:\n privileged: true\n # This init container mounts the necessary filesystems needed by the BPF data plane\n # i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed\n # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.\n - name: \"mount-bpffs\"\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n command: [\"calico-node\", \"-init\", \"-best-effort\"]\n volumeMounts:\n - mountPath: /sys/fs\n name: sys-fs\n # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n - mountPath: /var/run/calico\n name: var-run-calico\n # Bidirectional is required to ensure that the new mount we make at /run/calico/cgroup propagates to the host\n # so that it outlives the init container.\n mountPropagation: Bidirectional\n # Mount /proc/ from host which usually is an init program at /nodeproc. It's needed by mountns binary,\n # executed by calico-node, to mount root cgroup2 fs at /run/calico/cgroup to attach CTLB programs correctly.\n - mountPath: /nodeproc\n name: nodeproc\n readOnly: true\n securityContext:\n privileged: true\n containers:\n # Runs canal container on each Kubernetes node. This\n # container programs network policy and routes on each\n # host.\n - name: calico-node\n image: {{.NodeImage}}\n imagePullPolicy: IfNotPresent\n envFrom:\n - configMapRef:\n # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.\n name: kubernetes-services-endpoint\n optional: true\n env:\n # Use Kubernetes API as the backing datastore.\n - name: DATASTORE_TYPE\n value: \"kubernetes\"\n # Configure route aggregation based on pod CIDR.\n - name: USE_POD_CIDR\n value: \"true\"\n # Wait for the datastore.\n - name: WAIT_FOR_DATASTORE\n value: \"true\"\n # Set based on the k8s node name.\n - name: NODENAME\n valueFrom:\n fieldRef:\n fieldPath: spec.nodeName\n # Set the serviceaccount name to use for the Calico CNI plugin.\n # We use canal-node instead of calico-node when using flannel networking.\n - name: CALICO_CNI_SERVICE_ACCOUNT\n valueFrom:\n fieldRef:\n fieldPath: spec.serviceAccountName\n # Don't enable BGP.\n - name: CALICO_NETWORKING_BACKEND\n value: \"none\"\n # Cluster type to identify the deployment type\n - name: CLUSTER_TYPE\n value: \"k8s,canal\"\n # Period, in seconds, at which felix re-applies all iptables state\n - name: FELIX_IPTABLESREFRESHINTERVAL\n value: \"60\"\n # No IP address needed.\n - name: IP\n value: \"\"\n # The default IPv4 pool to create on startup if none exists. Pod IPs will be\n # chosen from this range. Changing this value after installation will have\n # no effect. This should fall within `--cluster-cidr`.\n # - name: CALICO_IPV4POOL_CIDR\n # value: \"192.168.0.0/16\"\n # Disable file logging so `kubectl logs` works.\n - name: CALICO_DISABLE_FILE_LOGGING\n value: \"true\"\n # Set Felix endpoint to host default action to ACCEPT.\n - name: FELIX_DEFAULTENDPOINTTOHOSTACTION\n value: \"ACCEPT\"\n # Disable IPv6 on Kubernetes.\n - name: FELIX_IPV6SUPPORT\n value: \"false\"\n # Rancher-specific: Define and set FELIX_LOGFILEPATH to none to disable felix logging to file\n - name: FELIX_LOGFILEPATH\n value: \"none\"\n # Rancher-specific: Define and set FELIX_LOGSEVERITYSYS to no value from default info to disable felix logging to syslog\n - name: FELIX_LOGSEVERITYSYS\n value: \"\"\n # Set Felix logging to \"warning\"\n # Rancher-specific: Set FELIX_LOGSEVERITYSCREEN to Warning from default info\n - name: FELIX_LOGSEVERITYSCREEN\n value: \"Warning\"\n - name: FELIX_HEALTHENABLED\n value: \"true\"\n # Rancher-specific: Set FELIX_IPTABLESBACKEND to auto for autodetection of nftables\n - name: FELIX_IPTABLESBACKEND\n value: \"auto\"\n securityContext:\n privileged: true\n resources:\n requests:\n cpu: 250m\n lifecycle:\n preStop:\n exec:\n command:\n - /bin/calico-node\n - -shutdown\n livenessProbe:\n exec:\n command:\n - /bin/calico-node\n - -felix-live\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n httpGet:\n path: /readiness\n port: 9099\n host: localhost\n periodSeconds: 10\n timeoutSeconds: 10\n volumeMounts:\n # For maintaining CNI plugin API credentials.\n - mountPath: /host/etc/cni/net.d\n name: cni-net-dir\n readOnly: false\n - mountPath: /lib/modules\n name: lib-modules\n readOnly: true\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - mountPath: /var/run/calico\n name: var-run-calico\n readOnly: false\n - mountPath: /var/lib/calico\n name: var-lib-calico\n readOnly: false\n - name: policysync\n mountPath: /var/run/nodeagent\n # For eBPF mode, we need to be able to mount the BPF filesystem at /sys/fs/bpf so we mount in the\n # parent directory.\n - name: bpffs\n mountPath: /sys/fs/bpf\n - name: cni-log-dir\n mountPath: /var/log/calico/cni\n readOnly: true\n # This container runs flannel using the kube-subnet-mgr backend\n # for allocating subnets.\n - name: kube-flannel\n image: {{.CanalFlannelImg}}\n imagePullPolicy: IfNotPresent\n command: [ \"/opt/bin/flanneld\", \"--ip-masq\", \"--kube-subnet-mgr\" ]\n securityContext:\n privileged: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: FLANNELD_IFACE\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: canal_iface\n - name: FLANNELD_IP_MASQ\n valueFrom:\n configMapKeyRef:\n name: canal-config\n key: masquerade\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: flannel-cfg\n mountPath: /etc/kube-flannel/\n volumes:\n # Used by canal.\n - name: lib-modules\n hostPath:\n path: /lib/modules\n - name: var-run-calico\n hostPath:\n path: /var/run/calico\n - name: var-lib-calico\n hostPath:\n path: /var/lib/calico\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: sys-fs\n hostPath:\n path: /sys/fs/\n type: DirectoryOrCreate\n - name: bpffs\n hostPath:\n path: /sys/fs/bpf\n type: Directory\n # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.\n - name: nodeproc\n hostPath:\n path: /proc\n # Used by flannel.\n - name: flannel-cfg\n configMap:\n name: canal-config\n # Used to install CNI.\n - name: cni-bin-dir\n hostPath:\n path: /opt/cni/bin\n - name: cni-net-dir\n hostPath:\n path: /etc/cni/net.d\n # Used to access CNI logs.\n - name: cni-log-dir\n hostPath:\n path: /var/log/calico/cni\n # Used to create per-pod Unix Domain Sockets\n - name: policysync\n hostPath:\n type: DirectoryOrCreate\n path: /var/run/nodeagent\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: canal\n namespace: kube-system\n{{end}}\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-cni-plugin\n namespace: kube-system\n{{end}}\n---\n# Source: calico/templates/calico-kube-controllers.yaml\n# See https://github.com/projectcalico/kube-controllers\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n # The controllers can only have a single active instance.\n replicas: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n strategy:\n type: Recreate\n template:\n metadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\n spec:\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .Tolerations }}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n # Rancher-specific: Set tolerations on the calico-kube-controllers so as to let it run on all nodes.\n # Make sure calico-node gets scheduled on all nodes.\n - effect: NoSchedule\n operator: Exists\n # Mark the pod as a critical add-on for rescheduling.\n - key: CriticalAddonsOnly\n operator: Exists\n - effect: NoExecute\n operator: Exists\n{{- end }}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: calico-kube-controllers\n {{end}}\n # Rancher specific change\n priorityClassName: {{ .CalicoKubeControllersPriorityClassName | default \"system-cluster-critical\" }}\n containers:\n - name: calico-kube-controllers\n image: {{.ControllersImage}}\n imagePullPolicy: IfNotPresent\n env:\n # Choose which controllers to run.\n - name: ENABLED_CONTROLLERS\n value: node\n - name: DATASTORE_TYPE\n value: kubernetes\n livenessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -l\n periodSeconds: 10\n initialDelaySeconds: 10\n failureThreshold: 6\n timeoutSeconds: 10\n readinessProbe:\n exec:\n command:\n - /usr/bin/check-status\n - -r\n periodSeconds: 10\n\n---\n{{if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n{{end}}\n---\n# This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autoscaler to evict\n\napiVersion: policy/v1\nkind: PodDisruptionBudget\nmetadata:\n name: calico-kube-controllers\n namespace: kube-system\n labels:\n k8s-app: calico-kube-controllers\nspec:\n maxUnavailable: 1\n selector:\n matchLabels:\n k8s-app: calico-kube-controllers\n", "coredns-v1.16": "\n---\n{{- if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: coredns\n namespace: kube-system\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n labels:\n kubernetes.io/bootstrapping: rbac-defaults\n name: system:coredns\nrules:\n- apiGroups:\n - \"\"\n resources:\n - endpoints\n - services\n - pods\n - namespaces\n verbs:\n - list\n - watch\n- apiGroups:\n - \"\"\n resources:\n - nodes\n verbs:\n - get\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n annotations:\n rbac.authorization.kubernetes.io/autoupdate: \"true\"\n labels:\n kubernetes.io/bootstrapping: rbac-defaults\n name: system:coredns\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: system:coredns\nsubjects:\n- kind: ServiceAccount\n name: coredns\n namespace: kube-system\n{{- end }}\n---\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: coredns\n namespace: kube-system\ndata:\n Corefile: |\n .:53 {\n errors\n health\n ready\n kubernetes {{.ClusterDomain}} {{ if .ReverseCIDRs }}{{ .ReverseCIDRs }}{{ else }}{{ \"in-addr.arpa ip6.arpa\" }}{{ end }} {\n pods insecure\n fallthrough in-addr.arpa ip6.arpa\n }\n prometheus :9153\n\t{{- if .UpstreamNameservers }}\n forward . {{range $i, $v := .UpstreamNameservers}}{{if $i}} {{end}}{{.}}{{end}}\n\t{{- else }}\n forward . \"/etc/resolv.conf\"\n\t{{- end }}\n cache 30\n loop\n reload\n loadbalance\n }\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: coredns\n namespace: kube-system\n labels:\n k8s-app: kube-dns\n kubernetes.io/name: \"CoreDNS\"\nspec:\n strategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n selector:\n matchLabels:\n k8s-app: kube-dns\n template:\n metadata:\n labels:\n k8s-app: kube-dns\n annotations:\n seccomp.security.alpha.kubernetes.io/pod: 'docker/default'\n spec:\n priorityClassName: system-cluster-critical\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: coredns\n{{- end }}\n tolerations:\n - key: \"CriticalAddonsOnly\"\n operator: \"Exists\"\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n nodeSelector:\n beta.kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: node-role.kubernetes.io/worker\n operator: Exists\n containers:\n - name: coredns\n image: {{.CoreDNSImage}}\n imagePullPolicy: IfNotPresent\n resources:\n limits:\n memory: 170Mi\n requests:\n cpu: 100m\n memory: 70Mi\n args: [ \"-conf\", \"/etc/coredns/Corefile\" ]\n volumeMounts:\n - name: config-volume\n mountPath: /etc/coredns\n readOnly: true\n ports:\n - containerPort: 53\n name: dns\n protocol: UDP\n - containerPort: 53\n name: dns-tcp\n protocol: TCP\n - containerPort: 9153\n name: metrics\n protocol: TCP\n livenessProbe:\n httpGet:\n path: /health\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 60\n timeoutSeconds: 5\n successThreshold: 1\n failureThreshold: 5\n readinessProbe:\n httpGet:\n path: /ready\n port: 8181\n scheme: HTTP\n securityContext:\n allowPrivilegeEscalation: false\n capabilities:\n add:\n - NET_BIND_SERVICE\n drop:\n - all\n readOnlyRootFilesystem: true\n dnsPolicy: Default\n volumes:\n - name: config-volume\n configMap:\n name: coredns\n items:\n - key: Corefile\n path: Corefile\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: kube-dns\n namespace: kube-system\n annotations:\n prometheus.io/port: \"9153\"\n prometheus.io/scrape: \"true\"\n labels:\n k8s-app: kube-dns\n kubernetes.io/cluster-service: \"true\"\n kubernetes.io/name: \"CoreDNS\"\nspec:\n selector:\n k8s-app: kube-dns\n clusterIP: {{.ClusterDNSServer}}\n ports:\n - name: dns\n port: 53\n protocol: UDP\n - name: dns-tcp\n port: 53\n protocol: TCP\n - name: metrics\n port: 9153\n protocol: TCP\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: coredns-autoscaler\n namespace: kube-system\n labels:\n k8s-app: coredns-autoscaler\nspec:\n selector:\n matchLabels:\n k8s-app: coredns-autoscaler\n template:\n metadata:\n labels:\n k8s-app: coredns-autoscaler\n spec:\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: coredns-autoscaler\n{{- end }}\n nodeSelector:\n beta.kubernetes.io/os: linux\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: node-role.kubernetes.io/worker\n operator: Exists\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: autoscaler\n image: {{.CoreDNSAutoScalerImage}}\n resources:\n requests:\n cpu: \"20m\"\n memory: \"10Mi\"\n command:\n - /cluster-proportional-autoscaler\n - --namespace=kube-system\n - --configmap=coredns-autoscaler\n - --target=Deployment/coredns\n # When cluster is using large nodes(with more cores), \"coresPerReplica\" should dominate.\n # If using small nodes, \"nodesPerReplica\" should dominate.\n{{if .LinearAutoscalerParams}}\n - --default-params={\"linear\":{{.LinearAutoscalerParams}}}\n{{else}}\n - --default-params={\"linear\":{\"coresPerReplica\":128,\"nodesPerReplica\":4,\"min\":1,\"preventSinglePointFailure\":true}}\n{{end}}\n - --logtostderr=true\n - --v=2\n{{- if eq .RBACConfig \"rbac\"}}\n---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: coredns-autoscaler\n namespace: kube-system\n---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: system:coredns-autoscaler\nrules:\n - apiGroups: [\"\"]\n resources: [\"nodes\"]\n verbs: [\"list\", \"watch\"]\n - apiGroups: [\"\"]\n resources: [\"replicationcontrollers/scale\"]\n verbs: [\"get\", \"update\"]\n - apiGroups: [\"extensions\",\"apps\"]\n resources: [\"deployments/scale\", \"replicasets/scale\"]\n verbs: [\"get\", \"update\"]\n - apiGroups: [\"\"]\n resources: [\"configmaps\"]\n verbs: [\"get\", \"create\"]\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: system:coredns-autoscaler\nsubjects:\n - kind: ServiceAccount\n name: coredns-autoscaler\n namespace: kube-system\nroleRef:\n kind: ClusterRole\n name: system:coredns-autoscaler\n apiGroup: rbac.authorization.k8s.io\n{{- end }}", "coredns-v1.17": "\n---\n{{- if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: coredns\n namespace: kube-system\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n labels:\n kubernetes.io/bootstrapping: rbac-defaults\n name: system:coredns\nrules:\n- apiGroups:\n - \"\"\n resources:\n - endpoints\n - services\n - pods\n - namespaces\n verbs:\n - list\n - watch\n- apiGroups:\n - \"\"\n resources:\n - nodes\n verbs:\n - get\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n annotations:\n rbac.authorization.kubernetes.io/autoupdate: \"true\"\n labels:\n kubernetes.io/bootstrapping: rbac-defaults\n name: system:coredns\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: system:coredns\nsubjects:\n- kind: ServiceAccount\n name: coredns\n namespace: kube-system\n{{- end }}\n---\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: coredns\n namespace: kube-system\ndata:\n Corefile: |\n .:53 {\n errors\n health {\n lameduck 5s\n }\n ready\n kubernetes {{.ClusterDomain}} {{ if .ReverseCIDRs }}{{ .ReverseCIDRs }}{{ else }}{{ \"in-addr.arpa ip6.arpa\" }}{{ end }} {\n pods insecure\n fallthrough in-addr.arpa ip6.arpa\n }\n prometheus :9153\n\t{{- if .UpstreamNameservers }}\n forward . {{range $i, $v := .UpstreamNameservers}}{{if $i}} {{end}}{{.}}{{end}}\n\t{{- else }}\n forward . \"/etc/resolv.conf\"\n\t{{- end }}\n cache 30\n loop\n reload\n loadbalance\n }\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: coredns\n namespace: kube-system\n labels:\n k8s-app: kube-dns\n kubernetes.io/name: \"CoreDNS\"\nspec:\n replicas: 1\n strategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n type: RollingUpdate\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n selector:\n matchLabels:\n k8s-app: kube-dns\n template:\n metadata:\n labels:\n k8s-app: kube-dns\n annotations:\n seccomp.security.alpha.kubernetes.io/pod: 'docker/default'\n spec:\n # Rancher specific change\n priorityClassName: {{ .CoreDNSPriorityClassName | default \"system-cluster-critical\" }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: coredns\n{{- end }}\n{{- if .Tolerations}}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n - key: \"CriticalAddonsOnly\"\n operator: \"Exists\"\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n{{- end }}\n nodeSelector:\n beta.kubernetes.io/os: linux\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: node-role.kubernetes.io/worker\n operator: Exists\n podAntiAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n - labelSelector:\n matchExpressions:\n - key: k8s-app\n operator: In\n values: [\"kube-dns\"]\n topologyKey: kubernetes.io/hostname\n containers:\n - name: coredns\n image: {{.CoreDNSImage}}\n imagePullPolicy: IfNotPresent\n resources:\n limits:\n memory: 170Mi\n requests:\n cpu: 100m\n memory: 70Mi\n args: [ \"-conf\", \"/etc/coredns/Corefile\" ]\n volumeMounts:\n - name: config-volume\n mountPath: /etc/coredns\n readOnly: true\n ports:\n - containerPort: 53\n name: dns\n protocol: UDP\n - containerPort: 53\n name: dns-tcp\n protocol: TCP\n - containerPort: 9153\n name: metrics\n protocol: TCP\n livenessProbe:\n httpGet:\n path: /health\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 60\n timeoutSeconds: 5\n successThreshold: 1\n failureThreshold: 5\n readinessProbe:\n httpGet:\n path: /ready\n port: 8181\n scheme: HTTP\n securityContext:\n allowPrivilegeEscalation: false\n capabilities:\n add:\n - NET_BIND_SERVICE\n drop:\n - all\n readOnlyRootFilesystem: true\n dnsPolicy: Default\n volumes:\n - name: config-volume\n configMap:\n name: coredns\n items:\n - key: Corefile\n path: Corefile\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: kube-dns\n namespace: kube-system\n annotations:\n prometheus.io/port: \"9153\"\n prometheus.io/scrape: \"true\"\n labels:\n k8s-app: kube-dns\n kubernetes.io/cluster-service: \"true\"\n kubernetes.io/name: \"CoreDNS\"\nspec:\n selector:\n k8s-app: kube-dns\n clusterIP: {{.ClusterDNSServer}}\n ports:\n - name: dns\n port: 53\n protocol: UDP\n - name: dns-tcp\n port: 53\n protocol: TCP\n - name: metrics\n port: 9153\n protocol: TCP\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: coredns-autoscaler\n namespace: kube-system\n labels:\n k8s-app: coredns-autoscaler\nspec:\n selector:\n matchLabels:\n k8s-app: coredns-autoscaler\n template:\n metadata:\n labels:\n k8s-app: coredns-autoscaler\n spec:\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: coredns-autoscaler\n{{- end }}\n# Rancher specific change\n{{- if .CoreDNSAutoscalerPriorityClassName }}\n priorityClassName: {{ .CoreDNSAutoscalerPriorityClassName }}\n{{- end }}\n nodeSelector:\n beta.kubernetes.io/os: linux\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: node-role.kubernetes.io/worker\n operator: Exists\n{{- if .Tolerations}}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n{{- end }}\n containers:\n - name: autoscaler\n image: {{.CoreDNSAutoScalerImage}}\n resources:\n requests:\n cpu: \"20m\"\n memory: \"10Mi\"\n command:\n - /cluster-proportional-autoscaler\n - --namespace=kube-system\n - --configmap=coredns-autoscaler\n - --target=Deployment/coredns\n # When cluster is using large nodes(with more cores), \"coresPerReplica\" should dominate.\n # If using small nodes, \"nodesPerReplica\" should dominate.\n{{if .LinearAutoscalerParams}}\n - --default-params={\"linear\":{{.LinearAutoscalerParams}}}\n{{else}}\n - --default-params={\"linear\":{\"coresPerReplica\":128,\"nodesPerReplica\":4,\"min\":1,\"preventSinglePointFailure\":true}}\n{{end}}\n - --nodelabels=node-role.kubernetes.io/worker=true,beta.kubernetes.io/os=linux\n - --logtostderr=true\n - --v=2\n{{- if eq .RBACConfig \"rbac\"}}\n---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: coredns-autoscaler\n namespace: kube-system\n---\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: system:coredns-autoscaler\nrules:\n - apiGroups: [\"\"]\n resources: [\"nodes\"]\n verbs: [\"list\", \"watch\"]\n - apiGroups: [\"\"]\n resources: [\"replicationcontrollers/scale\"]\n verbs: [\"get\", \"update\"]\n - apiGroups: [\"extensions\",\"apps\"]\n resources: [\"deployments/scale\", \"replicasets/scale\"]\n verbs: [\"get\", \"update\"]\n - apiGroups: [\"\"]\n resources: [\"configmaps\"]\n verbs: [\"get\", \"create\"]\n---\nkind: ClusterRoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: system:coredns-autoscaler\nsubjects:\n - kind: ServiceAccount\n name: coredns-autoscaler\n namespace: kube-system\nroleRef:\n kind: ClusterRole\n name: system:coredns-autoscaler\n apiGroup: rbac.authorization.k8s.io\n{{- end }}", @@ -12939,6 +13133,7 @@ "nginxingress-v1.5.1-rancher2": "\n# Based on https://github.com/kubernetes/ingress-nginx/blob/controller-v1.5.1/deploy/static/provider/cloud/deploy.yaml\napiVersion: v1\nkind: Namespace\nmetadata:\n name: ingress-nginx\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n\n---\n{{- if eq .RBACConfig \"rbac\" }}\n# Source: ingress-nginx/templates/controller-serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nautomountServiceAccountToken: true\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-configmap.yaml\napiVersion: v1\nkind: ConfigMap\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller\n namespace: ingress-nginx\ndata:\n{{- range $k,$v := .Options }}\n {{ $k }}: \"{{ $v }}\"\n{{- end }}\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: tcp-services\n namespace: ingress-nginx\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: udp-services\n namespace: ingress-nginx\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n name: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - configmaps\n - endpoints\n - nodes\n - pods\n - secrets\n verbs:\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - nodes\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n name: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/controller-role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - namespaces\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - configmaps\n - pods\n - secrets\n - endpoints\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - configmaps\n resourceNames:\n # Defaults to \"\u003celection-id\u003e-\u003cingress-class\u003e\"\n # Here: \"\u003cingress-controller-leader\u003e-\u003cnginx\u003e\"\n # This has to be adapted if you change either parameter\n # when launching the nginx-ingress-controller.\n {{- if .DefaultIngressClass}}\n - ingress-controller-leader-nginx\n {{- else }}\n - ingress-controller-leader\n {{- end}}\n verbs:\n - get\n - update\n - apiGroups:\n - ''\n resources:\n - configmaps\n verbs:\n - create\n - apiGroups:\n - coordination.k8s.io\n resourceNames:\n # Defaults to \"\u003celection-id\u003e-\u003cingress-class\u003e\"\n # Here: \"\u003cingress-controller-leader\u003e-\u003cnginx\u003e\"\n # This has to be adapted if you change either parameter\n # when launching the nginx-ingress-controller.\n {{- if .DefaultIngressClass}}\n - ingress-controller-leader-nginx\n {{- else }}\n - ingress-controller-leader\n {{- end}}\n resources:\n - leases\n verbs:\n - get\n - update\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - create\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/controller-rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-service-webhook.yaml\napiVersion: v1\nkind: Service\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller-admission\n namespace: ingress-nginx\nspec:\n type: ClusterIP\n ports:\n - name: https-webhook\n port: 443\n targetPort: webhook\n appProtocol: https\n selector:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n---\n# Rancher specific: Intentionally removed the controller's LoadBalancer service\n# Source: ingress-nginx/templates/controller-service.yaml\n---\n# Source: ingress-nginx/templates/controller-deployment.yaml\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: nginx-ingress-controller # Rancher specific: Do NOT change the name, a new workload will be deployed after a k8s upgrade\n namespace: ingress-nginx\nspec:\n selector:\n matchLabels:\n app: ingress-nginx\n # Rancher specific: Intentionally removed, adding labels will make the ingress deploy job fail during\n # a k8s upgrade because spec.selector is immutable, so the labels need to match across template versions\n # app.kubernetes.io/name: ingress-nginx\n # app.kubernetes.io/instance: ingress-nginx\n # app.kubernetes.io/component: controller\n{{- if .UpdateStrategy }}\n updateStrategy:\n{{ toYaml .UpdateStrategy | indent 4}}\n{{- end }}\n revisionHistoryLimit: 10\n minReadySeconds: 0\n template:\n metadata:\n labels:\n app: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n spec:\n {{- if .DNSPolicy}}\n dnsPolicy: {{.DNSPolicy}}\n {{- end}}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n {{- if eq .NetworkMode \"hostNetwork\"}}\n hostNetwork: true\n {{- end}}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: controller\n image: {{ .IngressImage }}\n imagePullPolicy: IfNotPresent\n lifecycle:\n preStop:\n exec:\n command:\n - /wait-shutdown\n args:\n - /nginx-ingress-controller\n # Rancher specific: Intentionally removed, the load balancer service is also removed\n # - --publish-service=$(POD_NAMESPACE)/ingress-nginx-controller\n {{- if .DefaultBackend}}\n - --default-backend-service=$(POD_NAMESPACE)/default-http-backend\n {{- end}}\n {{- if .DefaultIngressClass}}\n - --election-id=ingress-controller-leader-nginx\n {{- else }}\n - --election-id=ingress-controller-leader\n {{- end}}\n - --controller-class=k8s.io/ingress-nginx\n - --configmap=$(POD_NAMESPACE)/ingress-nginx-controller\n - --tcp-services-configmap=$(POD_NAMESPACE)/tcp-services\n - --udp-services-configmap=$(POD_NAMESPACE)/udp-services\n - --validating-webhook=:8443\n - --validating-webhook-certificate=/usr/local/certificates/cert\n - --validating-webhook-key=/usr/local/certificates/key\n {{- range $k, $v := .ExtraArgs }}\n - --{{ $k }}{{if ne $v \"\" }}={{ $v }}{{end}}\n {{- end }}\n securityContext:\n {{- if ne .NetworkMode \"none\" }}\n capabilities:\n drop:\n - ALL\n add:\n - NET_BIND_SERVICE\n {{- end }}\n runAsUser: 101\n allowPrivilegeEscalation: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: LD_PRELOAD\n value: /usr/local/lib/libmimalloc.so\n{{- if .ExtraEnvs}}\n{{ toYaml .ExtraEnvs | indent 12}}\n{{- end }}\n livenessProbe:\n failureThreshold: 5\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n readinessProbe:\n failureThreshold: 3\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n ports:\n - name: http\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 80\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"http-port\")}}{{.}}{{else}}80{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: https\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 443\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"https-port\")}}{{.}}{{else}}443{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPSPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: webhook\n containerPort: 8443\n protocol: TCP\n volumeMounts:\n - name: webhook-cert\n mountPath: /usr/local/certificates/\n readOnly: true\n# Rancher specific: Intentionally removed\n# resources:\n# requests:\n# cpu: 100m\n# memory: 90Mi\n{{- if .ExtraVolumeMounts }}\n{{ toYaml .ExtraVolumeMounts | indent 12 }}\n{{- end }}\n{{- if .NodeSelector }}\n nodeSelector:\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n{{- if .NginxIngressControllerPriorityClassName }}\n priorityClassName: {{ .NginxIngressControllerPriorityClassName }}\n{{- end }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: ingress-nginx\n{{- end }}\n terminationGracePeriodSeconds: 300\n volumes:\n - name: webhook-cert\n secret:\n secretName: ingress-nginx-admission\n{{- if .ExtraVolumes }}\n{{ toYaml .ExtraVolumes | indent 8}}\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-ingressclass.yaml\n# We don't support namespaced ingressClass yet\n# So a ClusterRole and a ClusterRoleBinding is required\napiVersion: networking.k8s.io/v1\nkind: IngressClass\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: controller\n name: nginx\n namespace: ingress-nginx\n {{- if .DefaultIngressClass}}\n annotations:\n ingressclass.kubernetes.io/is-default-class: \"true\"\n {{- end}}\nspec:\n controller: k8s.io/ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/validating-webhook.yaml\n# before changing this value, check the required kubernetes version\n# https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#prerequisites\napiVersion: admissionregistration.k8s.io/v1\nkind: ValidatingWebhookConfiguration\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\n name: ingress-nginx-admission\nwebhooks:\n - name: validate.nginx.ingress.kubernetes.io\n matchPolicy: Equivalent\n rules:\n - apiGroups:\n - networking.k8s.io\n apiVersions:\n - v1\n operations:\n - CREATE\n - UPDATE\n resources:\n - ingresses\n failurePolicy: Fail\n sideEffects: None\n admissionReviewVersions:\n - v1\n clientConfig:\n service:\n namespace: ingress-nginx\n name: ingress-nginx-controller-admission\n path: /networking/v1/ingresses\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - admissionregistration.k8s.io\n resources:\n - validatingwebhookconfigurations\n verbs:\n - get\n - update\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - ''\n resources:\n - secrets\n verbs:\n - get\n - create\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-create\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-create\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: create\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - create\n - --host=ingress-nginx-controller-admission,ingress-nginx-controller-admission.$(POD_NAMESPACE).svc\n - --namespace=$(POD_NAMESPACE)\n - --secret-name=ingress-nginx-admission\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-patch\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-patch\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.5.1\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: patch\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - patch\n - --webhook-name=ingress-nginx-admission\n - --namespace=$(POD_NAMESPACE)\n - --patch-mutating=false\n - --secret-name=ingress-nginx-admission\n - --patch-failure-policy=Fail\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n{{- if .DefaultBackend}}\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: default-http-backend\n labels:\n app: default-http-backend\n namespace: ingress-nginx\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: default-http-backend\n template:\n metadata:\n labels:\n app: default-http-backend\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n terminationGracePeriodSeconds: 60\n{{- if .DefaultHTTPBackendPriorityClassName }}\n priorityClassName: {{ .DefaultHTTPBackendPriorityClassName }}\n{{- end }}\n{{- if .Tolerations}}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n{{- end }}\n containers:\n - name: default-http-backend\n # Any image is permissible as long as:\n # 1. It serves a 404 page at /\n # 2. It serves 200 on a /healthz endpoint\n image: {{ .IngressBackend }}\n livenessProbe:\n httpGet:\n path: /healthz\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 30\n timeoutSeconds: 5\n ports:\n - containerPort: 8080\n resources:\n limits:\n cpu: 10m\n memory: 20Mi\n requests:\n cpu: 10m\n memory: 20Mi\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: default-http-backend\n namespace: ingress-nginx\n labels:\n app: default-http-backend\nspec:\n ports:\n - port: 80\n targetPort: 8080\n selector:\n app: default-http-backend\n{{- end }}\n", "nginxingress-v1.7.0-rancher1": "\n# Based on https://github.com/kubernetes/ingress-nginx/blob/controller-v1.7.0/deploy/static/provider/cloud/deploy.yaml\napiVersion: v1\nkind: Namespace\nmetadata:\n name: ingress-nginx\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n---\n{{- if eq .RBACConfig \"rbac\" }}\n# Source: ingress-nginx/templates/controller-serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nautomountServiceAccountToken: true\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-configmap.yaml\napiVersion: v1\nkind: ConfigMap\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller\n namespace: ingress-nginx\ndata:\n{{- range $k,$v := .Options }}\n {{ $k }}: \"{{ $v }}\"\n{{- end }}\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: tcp-services\n namespace: ingress-nginx\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: udp-services\n namespace: ingress-nginx\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n name: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - configmaps\n - endpoints\n - nodes\n - pods\n - secrets\n verbs:\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - nodes\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n name: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/controller-role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - namespaces\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - configmaps\n - pods\n - secrets\n - endpoints\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resourceNames:\n # Defaults to \"\u003celection-id\u003e-\u003cingress-class\u003e\"\n # Here: \"\u003cingress-controller-leader\u003e-\u003cnginx\u003e\"\n # This has to be adapted if you change either parameter\n # when launching the nginx-ingress-controller.\n {{- if .DefaultIngressClass}}\n - ingress-controller-leader-nginx\n {{- else }}\n - ingress-controller-leader\n {{- end}}\n resources:\n - leases\n verbs:\n - get\n - update\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - create\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/controller-rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-service-webhook.yaml\napiVersion: v1\nkind: Service\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller-admission\n namespace: ingress-nginx\nspec:\n type: ClusterIP\n ports:\n - name: https-webhook\n port: 443\n targetPort: webhook\n appProtocol: https\n selector:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n---\n# Rancher specific: Intentionally removed the controller's LoadBalancer service\n# Source: ingress-nginx/templates/controller-service.yaml\n---\n# Source: ingress-nginx/templates/controller-deployment.yaml\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: nginx-ingress-controller # Rancher specific: Do NOT change the name, a new workload will be deployed after a k8s upgrade\n namespace: ingress-nginx\nspec:\n selector:\n matchLabels:\n app: ingress-nginx\n # Rancher specific: Intentionally removed, adding labels will make the ingress deploy job fail during\n # a k8s upgrade because spec.selector is immutable, so the labels need to match across template versions\n # app.kubernetes.io/name: ingress-nginx\n # app.kubernetes.io/instance: ingress-nginx\n # app.kubernetes.io/component: controller\n{{- if .UpdateStrategy }}\n updateStrategy:\n{{ toYaml .UpdateStrategy | indent 4}}\n{{- end }}\n revisionHistoryLimit: 10\n minReadySeconds: 0\n template:\n metadata:\n labels:\n app: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n spec:\n {{- if .DNSPolicy}}\n dnsPolicy: {{.DNSPolicy}}\n {{- end}}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n {{- if eq .NetworkMode \"hostNetwork\"}}\n hostNetwork: true\n {{- end}}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: controller\n image: {{ .IngressImage }}\n imagePullPolicy: IfNotPresent\n lifecycle:\n preStop:\n exec:\n command:\n - /wait-shutdown\n args:\n - /nginx-ingress-controller\n # Rancher specific: Intentionally removed, the load balancer service is also removed\n # - --publish-service=$(POD_NAMESPACE)/ingress-nginx-controller\n {{- if .DefaultBackend}}\n - --default-backend-service=$(POD_NAMESPACE)/default-http-backend\n {{- end}}\n {{- if .DefaultIngressClass}}\n - --election-id=ingress-controller-leader-nginx\n {{- else }}\n - --election-id=ingress-controller-leader\n {{- end}}\n - --controller-class=k8s.io/ingress-nginx\n - --configmap=$(POD_NAMESPACE)/ingress-nginx-controller\n - --tcp-services-configmap=$(POD_NAMESPACE)/tcp-services\n - --udp-services-configmap=$(POD_NAMESPACE)/udp-services\n - --validating-webhook=:8443\n - --validating-webhook-certificate=/usr/local/certificates/cert\n - --validating-webhook-key=/usr/local/certificates/key\n {{- range $k, $v := .ExtraArgs }}\n - --{{ $k }}{{if ne $v \"\" }}={{ $v }}{{end}}\n {{- end }}\n securityContext:\n {{- if ne .NetworkMode \"none\" }}\n capabilities:\n drop:\n - ALL\n add:\n - NET_BIND_SERVICE\n {{- end }}\n runAsUser: 101\n allowPrivilegeEscalation: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: LD_PRELOAD\n value: /usr/local/lib/libmimalloc.so\n{{- if .ExtraEnvs}}\n{{ toYaml .ExtraEnvs | indent 12}}\n{{- end }}\n livenessProbe:\n failureThreshold: 5\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n readinessProbe:\n failureThreshold: 3\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n ports:\n - name: http\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 80\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"http-port\")}}{{.}}{{else}}80{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: https\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 443\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"https-port\")}}{{.}}{{else}}443{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPSPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: webhook\n containerPort: 8443\n protocol: TCP\n volumeMounts:\n - name: webhook-cert\n mountPath: /usr/local/certificates/\n readOnly: true\n# Rancher specific: Intentionally removed\n# resources:\n# requests:\n# cpu: 100m\n# memory: 90Mi\n{{- if .ExtraVolumeMounts }}\n{{ toYaml .ExtraVolumeMounts | indent 12 }}\n{{- end }}\n{{- if .NodeSelector }}\n nodeSelector:\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n{{- if .NginxIngressControllerPriorityClassName }}\n priorityClassName: {{ .NginxIngressControllerPriorityClassName }}\n{{- end }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: ingress-nginx\n{{- end }}\n terminationGracePeriodSeconds: 300\n volumes:\n - name: webhook-cert\n secret:\n secretName: ingress-nginx-admission\n{{- if .ExtraVolumes }}\n{{ toYaml .ExtraVolumes | indent 8}}\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-ingressclass.yaml\n# We don't support namespaced ingressClass yet\n# So a ClusterRole and a ClusterRoleBinding is required\napiVersion: networking.k8s.io/v1\nkind: IngressClass\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: controller\n name: nginx\n namespace: ingress-nginx\n {{- if .DefaultIngressClass}}\n annotations:\n ingressclass.kubernetes.io/is-default-class: \"true\"\n {{- end}}\nspec:\n controller: k8s.io/ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/validating-webhook.yaml\n# before changing this value, check the required kubernetes version\n# https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#prerequisites\napiVersion: admissionregistration.k8s.io/v1\nkind: ValidatingWebhookConfiguration\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\n name: ingress-nginx-admission\nwebhooks:\n - name: validate.nginx.ingress.kubernetes.io\n matchPolicy: Equivalent\n rules:\n - apiGroups:\n - networking.k8s.io\n apiVersions:\n - v1\n operations:\n - CREATE\n - UPDATE\n resources:\n - ingresses\n failurePolicy: Fail\n sideEffects: None\n admissionReviewVersions:\n - v1\n clientConfig:\n service:\n namespace: ingress-nginx\n name: ingress-nginx-controller-admission\n path: /networking/v1/ingresses\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - admissionregistration.k8s.io\n resources:\n - validatingwebhookconfigurations\n verbs:\n - get\n - update\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - ''\n resources:\n - secrets\n verbs:\n - get\n - create\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-create\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-create\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: create\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - create\n - --host=ingress-nginx-controller-admission,ingress-nginx-controller-admission.$(POD_NAMESPACE).svc\n - --namespace=$(POD_NAMESPACE)\n - --secret-name=ingress-nginx-admission\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-patch\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-patch\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.7.0\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: patch\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - patch\n - --webhook-name=ingress-nginx-admission\n - --namespace=$(POD_NAMESPACE)\n - --patch-mutating=false\n - --secret-name=ingress-nginx-admission\n - --patch-failure-policy=Fail\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n{{- if .DefaultBackend}}\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: default-http-backend\n labels:\n app: default-http-backend\n namespace: ingress-nginx\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: default-http-backend\n template:\n metadata:\n labels:\n app: default-http-backend\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n terminationGracePeriodSeconds: 60\n{{- if .DefaultHTTPBackendPriorityClassName }}\n priorityClassName: {{ .DefaultHTTPBackendPriorityClassName }}\n{{- end }}\n{{- if .Tolerations}}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n{{- end }}\n containers:\n - name: default-http-backend\n # Any image is permissible as long as:\n # 1. It serves a 404 page at /\n # 2. It serves 200 on a /healthz endpoint\n image: {{ .IngressBackend }}\n livenessProbe:\n httpGet:\n path: /healthz\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 30\n timeoutSeconds: 5\n ports:\n - containerPort: 8080\n resources:\n limits:\n cpu: 10m\n memory: 20Mi\n requests:\n cpu: 10m\n memory: 20Mi\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: default-http-backend\n namespace: ingress-nginx\n labels:\n app: default-http-backend\nspec:\n ports:\n - port: 80\n targetPort: 8080\n selector:\n app: default-http-backend\n{{- end }}\n", "nginxingress-v1.8": "\napiVersion: v1\nkind: Namespace\nmetadata:\n name: ingress-nginx\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: nginx-configuration\n namespace: ingress-nginx\n labels:\n app: ingress-nginx\ndata:\n{{ range $k,$v := .Options }}\n {{ $k }}: \"{{ $v }}\"\n{{ end }}\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: tcp-services\n namespace: ingress-nginx\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: udp-services\n namespace: ingress-nginx\n{{if eq .RBACConfig \"rbac\"}}\n---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: nginx-ingress-serviceaccount\n namespace: ingress-nginx\n---\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: ClusterRole\nmetadata:\n name: nginx-ingress-clusterrole\nrules:\n - apiGroups:\n - \"\"\n resources:\n - configmaps\n - endpoints\n - nodes\n - pods\n - secrets\n verbs:\n - list\n - watch\n - apiGroups:\n - \"\"\n resources:\n - nodes\n verbs:\n - get\n - apiGroups:\n - \"\"\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - \"extensions\"\n resources:\n - ingresses\n - daemonsets\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - \"\"\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - \"extensions\"\n resources:\n - ingresses/status\n verbs:\n - update\n---\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: Role\nmetadata:\n name: nginx-ingress-role\n namespace: ingress-nginx\nrules:\n - apiGroups:\n - \"\"\n resources:\n - configmaps\n - pods\n - secrets\n - namespaces\n verbs:\n - get\n - apiGroups:\n - \"\"\n resources:\n - configmaps\n resourceNames:\n # Defaults to \"\u003celection-id\u003e-\u003cingress-class\u003e\"\n # Here: \"\u003cingress-controller-leader\u003e-\u003cnginx\u003e\"\n # This has to be adapted if you change either parameter\n # when launching the nginx-ingress-controller.\n - \"ingress-controller-leader-nginx\"\n verbs:\n - get\n - update\n - apiGroups:\n - \"\"\n resources:\n - configmaps\n verbs:\n - create\n - apiGroups:\n - \"\"\n resources:\n - endpoints\n verbs:\n - get\n---\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: RoleBinding\nmetadata:\n name: nginx-ingress-role-nisa-binding\n namespace: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: nginx-ingress-role\nsubjects:\n - kind: ServiceAccount\n name: nginx-ingress-serviceaccount\n namespace: ingress-nginx\n---\napiVersion: rbac.authorization.k8s.io/v1beta1\nkind: ClusterRoleBinding\nmetadata:\n name: nginx-ingress-clusterrole-nisa-binding\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: nginx-ingress-clusterrole\nsubjects:\n - kind: ServiceAccount\n name: nginx-ingress-serviceaccount\n namespace: ingress-nginx\n{{ end }}\n---\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n name: nginx-ingress-controller\n namespace: ingress-nginx\nspec:\n selector:\n matchLabels:\n app: ingress-nginx\n{{if .UpdateStrategy}}\n updateStrategy:\n{{ toYaml .UpdateStrategy | indent 4}}\n{{end}}\n template:\n metadata:\n labels:\n app: ingress-nginx\n annotations:\n prometheus.io/port: '10254'\n prometheus.io/scrape: 'true'\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n hostNetwork: true\n {{if .DNSPolicy}}\n dnsPolicy: {{.DNSPolicy}}\n {{end}}\n{{if .NodeSelector}}\n nodeSelector:\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n {{if eq .RBACConfig \"rbac\"}}\n serviceAccountName: nginx-ingress-serviceaccount\n {{ end }}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n {{- if ne .AlpineImage \"\"}}\n initContainers:\n - command:\n - sh\n - -c\n - sysctl -w net.core.somaxconn=32768; sysctl -w net.ipv4.ip_local_port_range=\"1024 65535\"\n image: {{.AlpineImage}}\n imagePullPolicy: IfNotPresent\n name: sysctl\n securityContext:\n privileged: true\n {{- end }}\n containers:\n - name: nginx-ingress-controller\n image: {{.IngressImage}}\n args:\n - /nginx-ingress-controller\n - --default-backend-service=$(POD_NAMESPACE)/default-http-backend\n - --configmap=$(POD_NAMESPACE)/nginx-configuration\n - --tcp-services-configmap=$(POD_NAMESPACE)/tcp-services\n - --udp-services-configmap=$(POD_NAMESPACE)/udp-services\n - --annotations-prefix=nginx.ingress.kubernetes.io\n {{ range $k, $v := .ExtraArgs }}\n - --{{ $k }}{{if ne $v \"\" }}={{ $v }}{{end}}\n {{ end }}\n {{- if eq .AlpineImage \"\"}}\n securityContext:\n capabilities:\n drop:\n - ALL\n add:\n - NET_BIND_SERVICE\n runAsUser: 33\n {{- end }}\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n{{if .ExtraEnvs}}\n{{ toYaml .ExtraEnvs | indent 12}}\n{{end}}\n ports:\n - name: http\n containerPort: 80\n - name: https\n containerPort: 443\n livenessProbe:\n failureThreshold: 3\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n readinessProbe:\n failureThreshold: 3\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n{{if .ExtraVolumeMounts}}\n volumeMounts:\n{{ toYaml .ExtraVolumeMounts | indent 12}}\n{{end}}\n{{if .ExtraVolumes}}\n volumes:\n{{ toYaml .ExtraVolumes | indent 8}}\n{{end}}\n\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: default-http-backend\n labels:\n app: default-http-backend\n namespace: ingress-nginx\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: default-http-backend\n template:\n metadata:\n labels:\n app: default-http-backend\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n terminationGracePeriodSeconds: 60\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: default-http-backend\n # Any image is permissable as long as:\n # 1. It serves a 404 page at /\n # 2. It serves 200 on a /healthz endpoint\n image: {{.IngressBackend}}\n livenessProbe:\n httpGet:\n path: /healthz\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 30\n timeoutSeconds: 5\n ports:\n - containerPort: 8080\n resources:\n limits:\n cpu: 10m\n memory: 20Mi\n requests:\n cpu: 10m\n memory: 20Mi\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: default-http-backend\n namespace: ingress-nginx\n labels:\n app: default-http-backend\nspec:\n ports:\n - port: 80\n targetPort: 8080\n selector:\n app: default-http-backend\n", + "nginxingress-v1.8.1-rancher1": "\n# Based on https://github.com/kubernetes/ingress-nginx/blob/controller-v1.8.1/deploy/static/provider/cloud/deploy.yaml\napiVersion: v1\nkind: Namespace\nmetadata:\n name: ingress-nginx\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n---\n{{- if eq .RBACConfig \"rbac\" }}\n# Source: ingress-nginx/templates/controller-serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nautomountServiceAccountToken: true\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-configmap.yaml\napiVersion: v1\nkind: ConfigMap\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller\n namespace: ingress-nginx\ndata:\n{{- range $k,$v := .Options }}\n {{ $k }}: \"{{ $v }}\"\n{{- end }}\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: tcp-services\n namespace: ingress-nginx\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: udp-services\n namespace: ingress-nginx\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n name: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - configmaps\n - endpoints\n - nodes\n - pods\n - secrets\n verbs:\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - nodes\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n name: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/controller-role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - namespaces\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - configmaps\n - pods\n - secrets\n - endpoints\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resourceNames:\n # Defaults to \"\u003celection-id\u003e-\u003cingress-class\u003e\"\n # Here: \"\u003cingress-controller-leader\u003e-\u003cnginx\u003e\"\n # This has to be adapted if you change either parameter\n # when launching the nginx-ingress-controller.\n {{- if .DefaultIngressClass}}\n - ingress-controller-leader-nginx\n {{- else }}\n - ingress-controller-leader\n {{- end}}\n resources:\n - leases\n verbs:\n - get\n - update\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - create\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/controller-rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-service-webhook.yaml\napiVersion: v1\nkind: Service\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller-admission\n namespace: ingress-nginx\nspec:\n type: ClusterIP\n ports:\n - name: https-webhook\n port: 443\n targetPort: webhook\n appProtocol: https\n selector:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n---\n# Rancher specific: Intentionally removed the controller's LoadBalancer service\n# Source: ingress-nginx/templates/controller-service.yaml\n---\n# Source: ingress-nginx/templates/controller-deployment.yaml\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: nginx-ingress-controller # Rancher specific: Do NOT change the name, a new workload will be deployed after a k8s upgrade\n namespace: ingress-nginx\nspec:\n selector:\n matchLabels:\n app: ingress-nginx\n # Rancher specific: Intentionally removed, adding labels will make the ingress deploy job fail during\n # a k8s upgrade because spec.selector is immutable, so the labels need to match across template versions\n # app.kubernetes.io/name: ingress-nginx\n # app.kubernetes.io/instance: ingress-nginx\n # app.kubernetes.io/component: controller\n{{- if .UpdateStrategy }}\n updateStrategy:\n{{ toYaml .UpdateStrategy | indent 4}}\n{{- end }}\n revisionHistoryLimit: 10\n minReadySeconds: 0\n template:\n metadata:\n labels:\n app: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n spec:\n {{- if .DNSPolicy}}\n dnsPolicy: {{.DNSPolicy}}\n {{- end}}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n {{- if eq .NetworkMode \"hostNetwork\"}}\n hostNetwork: true\n {{- end}}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: controller\n image: {{ .IngressImage }}\n imagePullPolicy: IfNotPresent\n lifecycle:\n preStop:\n exec:\n command:\n - /wait-shutdown\n args:\n - /nginx-ingress-controller\n # Rancher specific: Intentionally removed, the load balancer service is also removed\n # - --publish-service=$(POD_NAMESPACE)/ingress-nginx-controller\n {{- if .DefaultBackend}}\n - --default-backend-service=$(POD_NAMESPACE)/default-http-backend\n {{- end}}\n {{- if .DefaultIngressClass}}\n - --election-id=ingress-controller-leader-nginx\n {{- else }}\n - --election-id=ingress-controller-leader\n {{- end}}\n - --controller-class=k8s.io/ingress-nginx\n - --configmap=$(POD_NAMESPACE)/ingress-nginx-controller\n - --tcp-services-configmap=$(POD_NAMESPACE)/tcp-services\n - --udp-services-configmap=$(POD_NAMESPACE)/udp-services\n - --validating-webhook=:8443\n - --validating-webhook-certificate=/usr/local/certificates/cert\n - --validating-webhook-key=/usr/local/certificates/key\n {{- range $k, $v := .ExtraArgs }}\n - --{{ $k }}{{if ne $v \"\" }}={{ $v }}{{end}}\n {{- end }}\n securityContext:\n {{- if ne .NetworkMode \"none\" }}\n capabilities:\n drop:\n - ALL\n add:\n - NET_BIND_SERVICE\n {{- end }}\n runAsUser: 101\n allowPrivilegeEscalation: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: LD_PRELOAD\n value: /usr/local/lib/libmimalloc.so\n{{- if .ExtraEnvs}}\n{{ toYaml .ExtraEnvs | indent 12}}\n{{- end }}\n livenessProbe:\n failureThreshold: 5\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n readinessProbe:\n failureThreshold: 3\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n ports:\n - name: http\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 80\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"http-port\")}}{{.}}{{else}}80{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: https\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 443\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"https-port\")}}{{.}}{{else}}443{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPSPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: webhook\n containerPort: 8443\n protocol: TCP\n volumeMounts:\n - name: webhook-cert\n mountPath: /usr/local/certificates/\n readOnly: true\n# Rancher specific: Intentionally removed\n# resources:\n# requests:\n# cpu: 100m\n# memory: 90Mi\n{{- if .ExtraVolumeMounts }}\n{{ toYaml .ExtraVolumeMounts | indent 12 }}\n{{- end }}\n{{- if .NodeSelector }}\n nodeSelector:\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n{{- if .NginxIngressControllerPriorityClassName }}\n priorityClassName: {{ .NginxIngressControllerPriorityClassName }}\n{{- end }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: ingress-nginx\n{{- end }}\n terminationGracePeriodSeconds: 300\n volumes:\n - name: webhook-cert\n secret:\n secretName: ingress-nginx-admission\n{{- if .ExtraVolumes }}\n{{ toYaml .ExtraVolumes | indent 8}}\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-ingressclass.yaml\n# We don't support namespaced ingressClass yet\n# So a ClusterRole and a ClusterRoleBinding is required\napiVersion: networking.k8s.io/v1\nkind: IngressClass\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: controller\n name: nginx\n namespace: ingress-nginx\n {{- if .DefaultIngressClass}}\n annotations:\n ingressclass.kubernetes.io/is-default-class: \"true\"\n {{- end}}\nspec:\n controller: k8s.io/ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/validating-webhook.yaml\n# before changing this value, check the required kubernetes version\n# https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#prerequisites\napiVersion: admissionregistration.k8s.io/v1\nkind: ValidatingWebhookConfiguration\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\n name: ingress-nginx-admission\nwebhooks:\n - name: validate.nginx.ingress.kubernetes.io\n matchPolicy: Equivalent\n rules:\n - apiGroups:\n - networking.k8s.io\n apiVersions:\n - v1\n operations:\n - CREATE\n - UPDATE\n resources:\n - ingresses\n failurePolicy: Fail\n sideEffects: None\n admissionReviewVersions:\n - v1\n clientConfig:\n service:\n namespace: ingress-nginx\n name: ingress-nginx-controller-admission\n path: /networking/v1/ingresses\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - admissionregistration.k8s.io\n resources:\n - validatingwebhookconfigurations\n verbs:\n - get\n - update\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - ''\n resources:\n - secrets\n verbs:\n - get\n - create\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-create\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-create\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: create\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - create\n - --host=ingress-nginx-controller-admission,ingress-nginx-controller-admission.$(POD_NAMESPACE).svc\n - --namespace=$(POD_NAMESPACE)\n - --secret-name=ingress-nginx-admission\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-patch\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-patch\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.8.1\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: patch\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - patch\n - --webhook-name=ingress-nginx-admission\n - --namespace=$(POD_NAMESPACE)\n - --patch-mutating=false\n - --secret-name=ingress-nginx-admission\n - --patch-failure-policy=Fail\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n{{- if .DefaultBackend}}\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: default-http-backend\n labels:\n app: default-http-backend\n namespace: ingress-nginx\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: default-http-backend\n template:\n metadata:\n labels:\n app: default-http-backend\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n terminationGracePeriodSeconds: 60\n{{- if .DefaultHTTPBackendPriorityClassName }}\n priorityClassName: {{ .DefaultHTTPBackendPriorityClassName }}\n{{- end }}\n{{- if .Tolerations}}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n{{- end }}\n containers:\n - name: default-http-backend\n # Any image is permissible as long as:\n # 1. It serves a 404 page at /\n # 2. It serves 200 on a /healthz endpoint\n image: {{ .IngressBackend }}\n livenessProbe:\n httpGet:\n path: /healthz\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 30\n timeoutSeconds: 5\n ports:\n - containerPort: 8080\n resources:\n limits:\n cpu: 10m\n memory: 20Mi\n requests:\n cpu: 10m\n memory: 20Mi\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: default-http-backend\n namespace: ingress-nginx\n labels:\n app: default-http-backend\nspec:\n ports:\n - port: 80\n targetPort: 8080\n selector:\n app: default-http-backend\n{{- end }}\n", "nginxingress-v1.9.4-rancher1": "\n# Based on https://github.com/kubernetes/ingress-nginx/blob/controller-v1.9.4/deploy/static/provider/cloud/deploy.yaml\napiVersion: v1\nkind: Namespace\nmetadata:\n name: ingress-nginx\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n---\n{{- if eq .RBACConfig \"rbac\" }}\n# Source: ingress-nginx/templates/controller-serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nautomountServiceAccountToken: true\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-configmap.yaml\napiVersion: v1\nkind: ConfigMap\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller\n namespace: ingress-nginx\ndata:\n{{- range $k,$v := .Options }}\n {{ $k }}: \"{{ $v }}\"\n{{- end }}\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: tcp-services\n namespace: ingress-nginx\n---\nkind: ConfigMap\napiVersion: v1\nmetadata:\n name: udp-services\n namespace: ingress-nginx\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n name: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - configmaps\n - endpoints\n - nodes\n - pods\n - secrets\n verbs:\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - nodes\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n name: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/controller-role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nrules:\n - apiGroups:\n - ''\n resources:\n - namespaces\n verbs:\n - get\n - apiGroups:\n - ''\n resources:\n - configmaps\n - pods\n - secrets\n - endpoints\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - ''\n resources:\n - services\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingresses/status\n verbs:\n - update\n - apiGroups:\n - networking.k8s.io\n resources:\n - ingressclasses\n verbs:\n - get\n - list\n - watch\n - apiGroups:\n - coordination.k8s.io\n resourceNames:\n # Defaults to \"\u003celection-id\u003e-\u003cingress-class\u003e\"\n # Here: \"\u003cingress-controller-leader\u003e-\u003cnginx\u003e\"\n # This has to be adapted if you change either parameter\n # when launching the nginx-ingress-controller.\n {{- if .DefaultIngressClass}}\n - ingress-controller-leader-nginx\n {{- else }}\n - ingress-controller-leader\n {{- end}}\n resources:\n - leases\n verbs:\n - get\n - update\n - apiGroups:\n - coordination.k8s.io\n resources:\n - leases\n verbs:\n - create\n - apiGroups:\n - ''\n resources:\n - events\n verbs:\n - create\n - patch\n - apiGroups:\n - discovery.k8s.io\n resources:\n - endpointslices\n verbs:\n - list\n - watch\n - get\n---\n# Source: ingress-nginx/templates/controller-rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: ingress-nginx\n namespace: ingress-nginx\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-service-webhook.yaml\napiVersion: v1\nkind: Service\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: ingress-nginx-controller-admission\n namespace: ingress-nginx\nspec:\n type: ClusterIP\n ports:\n - name: https-webhook\n port: 443\n targetPort: webhook\n appProtocol: https\n selector:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n---\n# Rancher specific: Intentionally removed the controller's LoadBalancer service\n# Source: ingress-nginx/templates/controller-service.yaml\n---\n# Source: ingress-nginx/templates/controller-deployment.yaml\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: nginx-ingress-controller # Rancher specific: Do NOT change the name, a new workload will be deployed after a k8s upgrade\n namespace: ingress-nginx\nspec:\n selector:\n matchLabels:\n app: ingress-nginx\n # Rancher specific: Intentionally removed, adding labels will make the ingress deploy job fail during\n # a k8s upgrade because spec.selector is immutable, so the labels need to match across template versions\n # app.kubernetes.io/name: ingress-nginx\n # app.kubernetes.io/instance: ingress-nginx\n # app.kubernetes.io/component: controller\n{{- if .UpdateStrategy }}\n updateStrategy:\n{{ toYaml .UpdateStrategy | indent 4}}\n{{- end }}\n revisionHistoryLimit: 10\n minReadySeconds: 0\n template:\n metadata:\n labels:\n app: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/component: controller\n spec:\n {{- if .DNSPolicy}}\n dnsPolicy: {{.DNSPolicy}}\n {{- end}}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n {{- if eq .NetworkMode \"hostNetwork\"}}\n hostNetwork: true\n {{- end}}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: controller\n image: {{ .IngressImage }}\n imagePullPolicy: IfNotPresent\n lifecycle:\n preStop:\n exec:\n command:\n - /wait-shutdown\n args:\n - /nginx-ingress-controller\n # Rancher specific: Intentionally removed, the load balancer service is also removed\n # - --publish-service=$(POD_NAMESPACE)/ingress-nginx-controller\n {{- if .DefaultBackend}}\n - --default-backend-service=$(POD_NAMESPACE)/default-http-backend\n {{- end}}\n {{- if .DefaultIngressClass}}\n - --election-id=ingress-controller-leader-nginx\n {{- else }}\n - --election-id=ingress-controller-leader\n {{- end}}\n - --controller-class=k8s.io/ingress-nginx\n - --configmap=$(POD_NAMESPACE)/ingress-nginx-controller\n - --tcp-services-configmap=$(POD_NAMESPACE)/tcp-services\n - --udp-services-configmap=$(POD_NAMESPACE)/udp-services\n - --validating-webhook=:8443\n - --validating-webhook-certificate=/usr/local/certificates/cert\n - --validating-webhook-key=/usr/local/certificates/key\n {{- range $k, $v := .ExtraArgs }}\n - --{{ $k }}{{if ne $v \"\" }}={{ $v }}{{end}}\n {{- end }}\n securityContext:\n {{- if ne .NetworkMode \"none\" }}\n capabilities:\n drop:\n - ALL\n add:\n - NET_BIND_SERVICE\n {{- end }}\n runAsUser: 101\n allowPrivilegeEscalation: true\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: LD_PRELOAD\n value: /usr/local/lib/libmimalloc.so\n{{- if .ExtraEnvs}}\n{{ toYaml .ExtraEnvs | indent 12}}\n{{- end }}\n livenessProbe:\n failureThreshold: 5\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n readinessProbe:\n failureThreshold: 3\n httpGet:\n path: /healthz\n port: 10254\n scheme: HTTP\n initialDelaySeconds: 10\n periodSeconds: 10\n successThreshold: 1\n timeoutSeconds: 1\n ports:\n - name: http\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 80\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"http-port\")}}{{.}}{{else}}80{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: https\n {{- if eq .NetworkMode \"hostNetwork\"}}\n containerPort: 443\n {{- else if or (eq .NetworkMode \"hostPort\") (eq .NetworkMode \"none\")}}\n containerPort: {{with (index .ExtraArgs \"https-port\")}}{{.}}{{else}}443{{end}}\n {{- if eq .NetworkMode \"hostPort\"}}\n hostPort: {{.HTTPSPort}}\n {{- end }}\n {{- end }}\n protocol: TCP\n - name: webhook\n containerPort: 8443\n protocol: TCP\n volumeMounts:\n - name: webhook-cert\n mountPath: /usr/local/certificates/\n readOnly: true\n# Rancher specific: Intentionally removed\n# resources:\n# requests:\n# cpu: 100m\n# memory: 90Mi\n{{- if .ExtraVolumeMounts }}\n{{ toYaml .ExtraVolumeMounts | indent 12 }}\n{{- end }}\n{{- if .NodeSelector }}\n nodeSelector:\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n{{- if .NginxIngressControllerPriorityClassName }}\n priorityClassName: {{ .NginxIngressControllerPriorityClassName }}\n{{- end }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: ingress-nginx\n{{- end }}\n terminationGracePeriodSeconds: 300\n volumes:\n - name: webhook-cert\n secret:\n secretName: ingress-nginx-admission\n{{- if .ExtraVolumes }}\n{{ toYaml .ExtraVolumes | indent 8}}\n{{- end }}\n---\n# Source: ingress-nginx/templates/controller-ingressclass.yaml\n# We don't support namespaced ingressClass yet\n# So a ClusterRole and a ClusterRoleBinding is required\napiVersion: networking.k8s.io/v1\nkind: IngressClass\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: controller\n name: nginx\n namespace: ingress-nginx\n {{- if .DefaultIngressClass}}\n annotations:\n ingressclass.kubernetes.io/is-default-class: \"true\"\n {{- end}}\nspec:\n controller: k8s.io/ingress-nginx\n---\napiVersion: networking.k8s.io/v1\nkind: NetworkPolicy\nmetadata:\n labels:\n app.kubernetes.io/component: admission-webhook\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/part-of: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n name: ingress-nginx-admission\n namespace: ingress-nginx\nspec:\n egress:\n - {}\n podSelector:\n matchLabels:\n app.kubernetes.io/component: admission-webhook\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n policyTypes:\n - Ingress\n - Egress\n---\n# Source: ingress-nginx/templates/admission-webhooks/validating-webhook.yaml\n# before changing this value, check the required kubernetes version\n# https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#prerequisites\napiVersion: admissionregistration.k8s.io/v1\nkind: ValidatingWebhookConfiguration\nmetadata:\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\n name: ingress-nginx-admission\nwebhooks:\n - name: validate.nginx.ingress.kubernetes.io\n matchPolicy: Equivalent\n rules:\n - apiGroups:\n - networking.k8s.io\n apiVersions:\n - v1\n operations:\n - CREATE\n - UPDATE\n resources:\n - ingresses\n failurePolicy: Fail\n sideEffects: None\n admissionReviewVersions:\n - v1\n clientConfig:\n service:\n namespace: ingress-nginx\n name: ingress-nginx-controller-admission\n path: /networking/v1/ingresses\n{{- if eq .RBACConfig \"rbac\" }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/serviceaccount.yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrole.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - admissionregistration.k8s.io\n resources:\n - validatingwebhookconfigurations\n verbs:\n - get\n - update\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/clusterrolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: ingress-nginx-admission\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: ClusterRole\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/role.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\nrules:\n - apiGroups:\n - ''\n resources:\n - secrets\n verbs:\n - get\n - create\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/rolebinding.yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n name: ingress-nginx-admission\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ingress-nginx-admission\nsubjects:\n - kind: ServiceAccount\n name: ingress-nginx-admission\n namespace: ingress-nginx\n{{- end }}\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-create\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: pre-install,pre-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-create\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: create\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - create\n - --host=ingress-nginx-controller-admission,ingress-nginx-controller-admission.$(POD_NAMESPACE).svc\n - --namespace=$(POD_NAMESPACE)\n - --secret-name=ingress-nginx-admission\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n---\n# Source: ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: ingress-nginx-admission-patch\n namespace: ingress-nginx\n annotations:\n helm.sh/hook: post-install,post-upgrade\n helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\nspec:\n template:\n metadata:\n name: ingress-nginx-admission-patch\n labels:\n app.kubernetes.io/name: ingress-nginx\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/version: 1.9.4\n app.kubernetes.io/component: admission-webhook\n spec:\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n containers:\n - name: patch\n image: {{ .IngressWebhook }}\n imagePullPolicy: IfNotPresent\n args:\n - patch\n - --webhook-name=ingress-nginx-admission\n - --namespace=$(POD_NAMESPACE)\n - --patch-mutating=false\n - --secret-name=ingress-nginx-admission\n - --patch-failure-policy=Fail\n env:\n - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n securityContext:\n allowPrivilegeEscalation: false\n restartPolicy: OnFailure\n serviceAccountName: ingress-nginx-admission\n nodeSelector:\n kubernetes.io/os: linux\n{{- if .NodeSelector }}\n {{- range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{- end }}\n{{- end }}\n securityContext:\n runAsNonRoot: true\n runAsUser: 2000\n{{- if .DefaultBackend}}\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: default-http-backend\n labels:\n app: default-http-backend\n namespace: ingress-nginx\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: default-http-backend\n template:\n metadata:\n labels:\n app: default-http-backend\n spec:\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n - key: node-role.kubernetes.io/worker\n operator: Exists\n terminationGracePeriodSeconds: 60\n{{- if .DefaultHTTPBackendPriorityClassName }}\n priorityClassName: {{ .DefaultHTTPBackendPriorityClassName }}\n{{- end }}\n{{- if .Tolerations}}\n tolerations:\n{{ toYaml .Tolerations | indent 6}}\n{{- else }}\n tolerations:\n - effect: NoExecute\n operator: Exists\n - effect: NoSchedule\n operator: Exists\n{{- end }}\n containers:\n - name: default-http-backend\n # Any image is permissible as long as:\n # 1. It serves a 404 page at /\n # 2. It serves 200 on a /healthz endpoint\n image: {{ .IngressBackend }}\n livenessProbe:\n httpGet:\n path: /healthz\n port: 8080\n scheme: HTTP\n initialDelaySeconds: 30\n timeoutSeconds: 5\n ports:\n - containerPort: 8080\n resources:\n limits:\n cpu: 10m\n memory: 20Mi\n requests:\n cpu: 10m\n memory: 20Mi\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: default-http-backend\n namespace: ingress-nginx\n labels:\n app: default-http-backend\nspec:\n ports:\n - port: 80\n targetPort: 8080\n selector:\n app: default-http-backend\n{{- end }}\n", "nodelocal-v1.15": "\n{{- if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: node-local-dns\n namespace: kube-system\n labels:\n kubernetes.io/cluster-service: \"true\"\n addonmanager.kubernetes.io/mode: Reconcile\n{{- end }}\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: kube-dns-upstream\n namespace: kube-system\n labels:\n k8s-app: kube-dns\n kubernetes.io/cluster-service: \"true\"\n addonmanager.kubernetes.io/mode: Reconcile\n kubernetes.io/name: \"KubeDNSUpstream\"\nspec:\n ports:\n - name: dns\n port: 53\n protocol: UDP\n targetPort: 53\n - name: dns-tcp\n port: 53\n protocol: TCP\n targetPort: 53\n selector:\n k8s-app: kube-dns\n---\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: node-local-dns\n namespace: kube-system\n labels:\n addonmanager.kubernetes.io/mode: Reconcile\ndata:\n Corefile: |\n {{.ClusterDomain}}:53 {\n errors\n cache {\n success 9984 30\n denial 9984 5\n }\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__CLUSTER__DNS__ {\n force_tcp\n }\n prometheus :9253\n health {{.IPAddress}}:8080\n }\n in-addr.arpa:53 {\n errors\n cache 30\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__CLUSTER__DNS__ {\n force_tcp\n }\n prometheus :9253\n }\n ip6.arpa:53 {\n errors\n cache 30\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__CLUSTER__DNS__ {\n force_tcp\n }\n prometheus :9253\n }\n .:53 {\n errors\n cache 30\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__UPSTREAM__SERVERS__ {\n force_tcp\n }\n prometheus :9253\n }\n---\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n name: node-local-dns\n namespace: kube-system\n labels:\n k8s-app: node-local-dns\n kubernetes.io/cluster-service: \"true\"\n addonmanager.kubernetes.io/mode: Reconcile\nspec:\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n selector:\n matchLabels:\n k8s-app: node-local-dns\n template:\n metadata:\n labels:\n k8s-app: node-local-dns\n spec:\n# Rancher specific change\n priorityClassName: {{ .NodeLocalDNSPriorityClassName | default \"system-node-critical\" }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: node-local-dns\n{{- end }}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n hostNetwork: true\n{{if .NodeSelector}}\n nodeSelector:\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n dnsPolicy: Default # Don't use cluster DNS.\n tolerations:\n - operator: Exists\n containers:\n - name: node-cache\n image: {{.NodelocalImage}}\n resources:\n requests:\n cpu: 25m\n memory: 5Mi\n args: [ \"-localip\", \"{{.IPAddress}},{{.ClusterDNSServer}}\", \"-conf\", \"/etc/Corefile\", \"-upstreamsvc\", \"kube-dns-upstream\" ]\n securityContext:\n privileged: true\n ports:\n - containerPort: 53\n name: dns\n protocol: UDP\n - containerPort: 53\n name: dns-tcp\n protocol: TCP\n - containerPort: 9253\n name: metrics\n protocol: TCP\n livenessProbe:\n httpGet:\n host: {{.IPAddress}}\n path: /health\n port: 8080\n initialDelaySeconds: 60\n timeoutSeconds: 5\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: config-volume\n mountPath: /etc/coredns\n - name: kube-dns-config\n mountPath: /etc/kube-dns\n volumes:\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: kube-dns-config\n configMap:\n name: kube-dns\n optional: true\n - name: config-volume\n configMap:\n name: node-local-dns\n items:\n - key: Corefile\n path: Corefile.base\n", "nodelocal-v1.21": "\n# Based on kubernetes/cluster/addons/dns/nodelocaldns/nodelocaldns.yaml v1.21.1\n{{- if eq .RBACConfig \"rbac\"}}\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: node-local-dns\n namespace: kube-system\n labels:\n kubernetes.io/cluster-service: \"true\"\n addonmanager.kubernetes.io/mode: Reconcile\n{{- end }}\n---\napiVersion: v1\nkind: Service\nmetadata:\n name: kube-dns-upstream\n namespace: kube-system\n labels:\n k8s-app: kube-dns\n kubernetes.io/cluster-service: \"true\"\n addonmanager.kubernetes.io/mode: Reconcile\n kubernetes.io/name: \"KubeDNSUpstream\"\nspec:\n ports:\n - name: dns\n port: 53\n protocol: UDP\n targetPort: 53\n - name: dns-tcp\n port: 53\n protocol: TCP\n targetPort: 53\n selector:\n k8s-app: kube-dns\n---\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: node-local-dns\n namespace: kube-system\n labels:\n addonmanager.kubernetes.io/mode: Reconcile\ndata:\n Corefile: |\n {{.ClusterDomain}}:53 {\n errors\n cache {\n success 9984 30\n denial 9984 5\n }\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__CLUSTER__DNS__ {\n force_tcp\n }\n prometheus :9253\n health {{.IPAddress}}:8080\n }\n in-addr.arpa:53 {\n errors\n cache 30\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__CLUSTER__DNS__ {\n force_tcp\n }\n prometheus :9253\n }\n ip6.arpa:53 {\n errors\n cache 30\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__CLUSTER__DNS__ {\n force_tcp\n }\n prometheus :9253\n }\n .:53 {\n errors\n cache 30\n reload\n loop\n bind {{.IPAddress}} {{.ClusterDNSServer}}\n forward . __PILLAR__UPSTREAM__SERVERS__\n prometheus :9253\n }\n---\napiVersion: apps/v1\nkind: DaemonSet\nmetadata:\n name: node-local-dns\n namespace: kube-system\n labels:\n k8s-app: node-local-dns\n kubernetes.io/cluster-service: \"true\"\n addonmanager.kubernetes.io/mode: Reconcile\nspec:\n updateStrategy:\n{{if .UpdateStrategy}}\n{{ toYaml .UpdateStrategy | indent 4}}\n{{else}}\n rollingUpdate:\n maxUnavailable: 1\n{{end}}\n selector:\n matchLabels:\n k8s-app: node-local-dns\n template:\n metadata:\n labels:\n k8s-app: node-local-dns\n spec:\n# Rancher specific change\n priorityClassName: {{ .NodeLocalDNSPriorityClassName | default \"system-node-critical\" }}\n{{- if eq .RBACConfig \"rbac\"}}\n serviceAccountName: node-local-dns\n{{- end }}\n affinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: beta.kubernetes.io/os\n operator: NotIn\n values:\n - windows\n hostNetwork: true\n{{if .NodeSelector}}\n nodeSelector:\n {{ range $k, $v := .NodeSelector }}\n {{ $k }}: \"{{ $v }}\"\n {{ end }}\n{{end}}\n dnsPolicy: Default # Don't use cluster DNS.\n tolerations:\n - operator: Exists\n containers:\n - name: node-cache\n image: {{.NodelocalImage}}\n resources:\n requests:\n cpu: 25m\n memory: 5Mi\n args: [ \"-localip\", \"{{.IPAddress}},{{.ClusterDNSServer}}\", \"-conf\", \"/etc/Corefile\", \"-upstreamsvc\", \"kube-dns-upstream\" ]\n securityContext:\n privileged: true\n ports:\n - containerPort: 53\n name: dns\n protocol: UDP\n - containerPort: 53\n name: dns-tcp\n protocol: TCP\n - containerPort: 9253\n name: metrics\n protocol: TCP\n livenessProbe:\n httpGet:\n host: {{.IPAddress}}\n path: /health\n port: 8080\n initialDelaySeconds: 60\n timeoutSeconds: 5\n volumeMounts:\n - mountPath: /run/xtables.lock\n name: xtables-lock\n readOnly: false\n - name: config-volume\n mountPath: /etc/coredns\n - name: kube-dns-config\n mountPath: /etc/kube-dns\n volumes:\n - name: xtables-lock\n hostPath:\n path: /run/xtables.lock\n type: FileOrCreate\n - name: kube-dns-config\n configMap:\n name: kube-dns\n optional: true\n - name: config-volume\n configMap:\n name: node-local-dns\n items:\n - key: Corefile\n path: Corefile.base\n---\n# A headless service is a service with a service IP but instead of load-balancing it will return the IPs of our associated Pods.\n# We use this to expose metrics to Prometheus.\napiVersion: v1\nkind: Service\nmetadata:\n labels:\n k8s-app: node-local-dns\n name: node-local-dns\n namespace: kube-system\nspec:\n clusterIP: None\n ports:\n - name: metrics\n port: 9253\n targetPort: 9253\n selector:\n k8s-app: node-local-dns\n", @@ -13461,6 +13656,10 @@ "minRKEVersion": "1.4.0-rc0", "minRancherVersion": "2.7.5-patch0" }, + "v1.27": { + "minRKEVersion": "1.4.15-rc0", + "minRancherVersion": "2.7.11-patch0" + }, "v1.8": { "maxRKEVersion": "0.2.2", "maxRancherVersion": "2.2" @@ -13517,14 +13716,21 @@ "2.6.7": "v1.24.x", "2.7.0": "v1.24.x", "2.7.1": "v1.24.x", + "2.7.10": "v1.26.x", + "2.7.11": "v1.27.x", "2.7.2": "v1.25.x", "2.7.3": "v1.25.x", "2.7.4": "v1.25.x", - "default": "v1.26.x" + "2.7.5": "v1.26.x", + "2.7.6": "v1.26.x", + "2.7.7": "v1.26.x", + "2.7.8": "v1.26.x", + "2.7.9": "v1.26.x", + "default": "v1.27.x" }, "RKEDefaultK8sVersions": { "0.3": "v1.16.3-rancher1-1", - "default": "v1.26.11-rancher2-2" + "default": "v1.27.8-rancher2-2" }, "K8sVersionDockerInfo": { "1.10": [ @@ -13709,6 +13915,18 @@ "23.0.x", "24.0.x" ], + "1.27": [ + "1.13.x", + "17.03.x", + "17.06.x", + "17.09.x", + "18.06.x", + "18.09.x", + "19.03.x", + "20.10.x", + "23.0.x", + "24.0.x" + ], "1.8": [ "1.11.x", "1.12.x", @@ -14222,6 +14440,38 @@ }, "kubeController": null, "scheduler": null + }, + "v1.27": { + "etcd": null, + "kubeapi": null, + "kubelet": { + "address": "0.0.0.0", + "anonymous-auth": "false", + "authentication-token-webhook": "true", + "authorization-mode": "Webhook", + "cert-dir": "[PREFIX_PATH]/var/lib/kubelet/pki", + "cgroups-per-qos": "false", + "enforce-node-allocatable": "''", + "event-qps": "0", + "kube-reserved": "cpu=500m,memory=500Mi,ephemeral-storage=1Gi", + "make-iptables-util-chains": "true", + "network-plugin": "cni", + "read-only-port": "0", + "resolv-conf": "''", + "streaming-connection-idle-timeout": "30m", + "system-reserved": "cpu=1000m,memory=2Gi,ephemeral-storage=2Gi", + "tls-cipher-suites": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305", + "v": "2", + "volume-plugin-dir": "[PREFIX_PATH]/var/lib/kubelet/volumeplugins" + }, + "kubeproxy": { + "enable-dsr": "false", + "healthz-bind-address": "127.0.0.1", + "proxy-mode": "kernelspace", + "v": "2" + }, + "kubeController": null, + "scheduler": null } }, "CisConfigParams": { @@ -14369,6 +14619,10 @@ { "appVersion": "\u003e= 2.7.5-0 \u003c 2.7.100-0", "defaultVersion": "1.26.x" + }, + { + "appVersion": "\u003e= 2.7.11-0 \u003c 2.7.100-0", + "defaultVersion": "1.27.x" } ] } @@ -17777,6 +18031,9 @@ "default": false, "type": "boolean" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -17926,6 +18183,9 @@ "default": false, "type": "boolean" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -17939,7 +18199,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -18091,7 +18352,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -18246,7 +18508,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -18401,7 +18664,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -18556,7 +18820,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -18711,7 +18976,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -18866,7 +19132,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19021,7 +19288,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19176,7 +19444,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19331,7 +19600,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19486,7 +19756,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19641,7 +19912,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19796,7 +20068,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -19951,7 +20224,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -20106,7 +20380,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -20261,7 +20536,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -20416,7 +20692,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -20571,7 +20848,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -20726,7 +21004,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -20881,7 +21160,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21039,7 +21319,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21200,7 +21481,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21355,7 +21637,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21510,7 +21793,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21671,7 +21955,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21832,7 +22117,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -21996,7 +22282,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -22163,7 +22450,8 @@ "vxlan", "ipsec", "host-gw", - "wireguard" + "wireguard", + "wireguard-native" ], "type": "enum" }, @@ -22254,167 +22542,6 @@ }, "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.7.2-alpha1", - "serverArgs": { - "cluster-cidr": { - "type": "string" - }, - "cluster-dns": { - "type": "string" - }, - "cluster-domain": { - "type": "string" - }, - "datastore-cafile": { - "type": "string" - }, - "datastore-certfile": { - "type": "string" - }, - "datastore-endpoint": { - "type": "string" - }, - "datastore-keyfile": { - "type": "string" - }, - "default-local-storage-path": { - "type": "string" - }, - "disable": { - "options": [ - "coredns", - "servicelb", - "traefik", - "local-storage", - "metrics-server" - ], - "type": "array" - }, - "disable-apiserver": { - "default": false, - "type": "boolean" - }, - "disable-cloud-controller": { - "default": false, - "type": "boolean" - }, - "disable-controller-manager": { - "default": false, - "type": "boolean" - }, - "disable-etcd": { - "default": false, - "type": "boolean" - }, - "disable-kube-proxy": { - "default": false, - "type": "boolean" - }, - "disable-network-policy": { - "default": false, - "type": "boolean" - }, - "disable-scheduler": { - "default": false, - "type": "boolean" - }, - "egress-selector-mode": { - "type": "string" - }, - "etcd-arg": { - "type": "array" - }, - "etcd-expose-metrics": { - "default": false, - "type": "boolean" - }, - "flannel-backend": { - "options": [ - "none", - "vxlan", - "ipsec", - "host-gw", - "wireguard" - ], - "type": "enum" - }, - "helm-job-image": { - "type": "string" - }, - "kube-apiserver-arg": { - "type": "array" - }, - "kube-cloud-controller-manager-arg": { - "type": "array" - }, - "kube-controller-manager-arg": { - "type": "array" - }, - "kube-scheduler-arg": { - "type": "array" - }, - "secrets-encryption": { - "default": false, - "type": "boolean" - }, - "service-cidr": { - "type": "string" - }, - "service-node-port-range": { - "type": "string" - }, - "tls-san": { - "type": "array" - }, - "tls-san-security": { - "type": "boolean" - } - }, - "version": "v1.25.16+k3s4" - }, - { - "agentArgs": { - "docker": { - "default": false, - "type": "boolean" - }, - "flannel-conf": { - "type": "string" - }, - "flannel-iface": { - "type": "string" - }, - "kube-proxy-arg": { - "type": "array" - }, - "kubelet-arg": { - "type": "array" - }, - "pause-image": { - "type": "string" - }, - "protect-kernel-defaults": { - "default": false, - "type": "boolean" - }, - "resolv-conf": { - "type": "string" - }, - "selinux": { - "default": false, - "type": "boolean" - }, - "snapshotter": { - "type": "string" - }, - "system-default-registry": { - "type": "string" - } - }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, - "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.5-alpha1", "serverArgs": { "cluster-cidr": { "type": "string" @@ -22499,168 +22626,330 @@ ], "type": "enum" }, - "kube-apiserver-arg": { - "type": "array" - }, - "kube-cloud-controller-manager-arg": { - "type": "array" - }, - "kube-controller-manager-arg": { - "type": "array" - }, - "kube-scheduler-arg": { - "type": "array" - }, - "secrets-encryption": { - "default": false, - "type": "boolean" - }, - "service-cidr": { - "type": "string" - }, - "service-node-port-range": { - "type": "string" - }, - "tls-san": { - "type": "array" - } - }, - "version": "v1.26.5+k3s1" - }, - { - "agentArgs": { - "docker": { - "default": false, - "type": "boolean" - }, - "flannel-conf": { - "type": "string" - }, - "flannel-iface": { - "type": "string" - }, - "kube-proxy-arg": { - "type": "array" - }, - "kubelet-arg": { - "type": "array" - }, - "pause-image": { - "type": "string" - }, - "protect-kernel-defaults": { - "default": false, - "type": "boolean" - }, - "resolv-conf": { - "type": "string" - }, - "selinux": { - "default": false, - "type": "boolean" - }, - "snapshotter": { - "type": "string" - }, - "system-default-registry": { - "type": "string" - }, - "vpn-auth": { - "type": "string" - }, - "vpn-auth-file": { - "type": "string" - } - }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, - "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.5-alpha1", - "serverArgs": { - "cluster-cidr": { - "type": "string" - }, - "cluster-dns": { - "type": "string" - }, - "cluster-domain": { - "type": "string" - }, - "datastore-cafile": { - "type": "string" - }, - "datastore-certfile": { - "type": "string" - }, - "datastore-endpoint": { - "type": "string" - }, - "datastore-keyfile": { - "type": "string" - }, - "default-local-storage-path": { - "type": "string" - }, - "disable": { - "options": [ - "coredns", - "servicelb", - "traefik", - "local-storage", - "metrics-server" - ], - "type": "array" - }, - "disable-apiserver": { - "default": false, - "type": "boolean" - }, - "disable-cloud-controller": { - "default": false, - "type": "boolean" - }, - "disable-controller-manager": { - "default": false, - "type": "boolean" - }, - "disable-etcd": { - "default": false, - "type": "boolean" - }, - "disable-kube-proxy": { - "default": false, - "type": "boolean" - }, - "disable-network-policy": { - "default": false, - "type": "boolean" - }, - "disable-scheduler": { - "default": false, - "type": "boolean" - }, - "egress-selector-mode": { + "helm-job-image": { "type": "string" }, - "etcd-arg": { - "type": "array" - }, - "etcd-expose-metrics": { - "default": false, - "type": "boolean" - }, - "flannel-backend": { - "options": [ - "none", - "vxlan", - "ipsec", - "host-gw", - "wireguard", - "wireguard-native" - ], - "type": "enum" - }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "secrets-encryption": { + "default": false, + "type": "boolean" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "tls-san": { + "type": "array" + }, + "tls-san-security": { + "type": "boolean" + } + }, + "version": "v1.25.16+k3s4" + }, + { + "agentArgs": { + "docker": { + "default": false, + "type": "boolean" + }, + "flannel-conf": { + "type": "string" + }, + "flannel-iface": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "pause-image": { + "type": "string" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "default": false, + "type": "boolean" + }, + "snapshotter": { + "type": "string" + }, + "system-default-registry": { + "type": "string" + } + }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", + "minChannelServerVersion": "v2.7.5-alpha1", + "serverArgs": { + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "datastore-cafile": { + "type": "string" + }, + "datastore-certfile": { + "type": "string" + }, + "datastore-endpoint": { + "type": "string" + }, + "datastore-keyfile": { + "type": "string" + }, + "default-local-storage-path": { + "type": "string" + }, + "disable": { + "options": [ + "coredns", + "servicelb", + "traefik", + "local-storage", + "metrics-server" + ], + "type": "array" + }, + "disable-apiserver": { + "default": false, + "type": "boolean" + }, + "disable-cloud-controller": { + "default": false, + "type": "boolean" + }, + "disable-controller-manager": { + "default": false, + "type": "boolean" + }, + "disable-etcd": { + "default": false, + "type": "boolean" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-network-policy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "default": false, + "type": "boolean" + }, + "egress-selector-mode": { + "type": "string" + }, + "etcd-arg": { + "type": "array" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "flannel-backend": { + "options": [ + "none", + "vxlan", + "ipsec", + "host-gw", + "wireguard", + "wireguard-native" + ], + "type": "enum" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "secrets-encryption": { + "default": false, + "type": "boolean" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "tls-san": { + "type": "array" + } + }, + "version": "v1.26.5+k3s1" + }, + { + "agentArgs": { + "docker": { + "default": false, + "type": "boolean" + }, + "flannel-conf": { + "type": "string" + }, + "flannel-iface": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "pause-image": { + "type": "string" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "default": false, + "type": "boolean" + }, + "snapshotter": { + "type": "string" + }, + "system-default-registry": { + "type": "string" + }, + "vpn-auth": { + "type": "string" + }, + "vpn-auth-file": { + "type": "string" + } + }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", + "minChannelServerVersion": "v2.7.5-alpha1", + "serverArgs": { + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "datastore-cafile": { + "type": "string" + }, + "datastore-certfile": { + "type": "string" + }, + "datastore-endpoint": { + "type": "string" + }, + "datastore-keyfile": { + "type": "string" + }, + "default-local-storage-path": { + "type": "string" + }, + "disable": { + "options": [ + "coredns", + "servicelb", + "traefik", + "local-storage", + "metrics-server" + ], + "type": "array" + }, + "disable-apiserver": { + "default": false, + "type": "boolean" + }, + "disable-cloud-controller": { + "default": false, + "type": "boolean" + }, + "disable-controller-manager": { + "default": false, + "type": "boolean" + }, + "disable-etcd": { + "default": false, + "type": "boolean" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-network-policy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "default": false, + "type": "boolean" + }, + "egress-selector-mode": { + "type": "string" + }, + "etcd-arg": { + "type": "array" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "flannel-backend": { + "options": [ + "none", + "vxlan", + "ipsec", + "host-gw", + "wireguard", + "wireguard-native" + ], + "type": "enum" + }, "kube-apiserver-arg": { "type": "array" }, @@ -23360,6 +23649,513 @@ } }, "version": "v1.26.11+k3s2" + }, + { + "agentArgs": { + "docker": { + "default": false, + "type": "boolean" + }, + "flannel-conf": { + "type": "string" + }, + "flannel-iface": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "pause-image": { + "type": "string" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "default": false, + "type": "boolean" + }, + "snapshotter": { + "type": "string" + }, + "system-default-registry": { + "type": "string" + }, + "vpn-auth": { + "type": "string" + }, + "vpn-auth-file": { + "type": "string" + } + }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", + "minChannelServerVersion": "v2.7.11", + "serverArgs": { + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "datastore-cafile": { + "type": "string" + }, + "datastore-certfile": { + "type": "string" + }, + "datastore-endpoint": { + "type": "string" + }, + "datastore-keyfile": { + "type": "string" + }, + "default-local-storage-path": { + "type": "string" + }, + "disable": { + "options": [ + "coredns", + "servicelb", + "traefik", + "local-storage", + "metrics-server" + ], + "type": "array" + }, + "disable-apiserver": { + "default": false, + "type": "boolean" + }, + "disable-cloud-controller": { + "default": false, + "type": "boolean" + }, + "disable-controller-manager": { + "default": false, + "type": "boolean" + }, + "disable-etcd": { + "default": false, + "type": "boolean" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-network-policy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "default": false, + "type": "boolean" + }, + "egress-selector-mode": { + "type": "string" + }, + "etcd-arg": { + "type": "array" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "flannel-backend": { + "options": [ + "none", + "vxlan", + "ipsec", + "host-gw", + "wireguard", + "wireguard-native" + ], + "type": "enum" + }, + "helm-job-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "secrets-encryption": { + "default": false, + "type": "boolean" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "tls-san": { + "type": "array" + }, + "tls-san-security": { + "type": "boolean" + } + }, + "version": "v1.27.5+k3s1" + }, + { + "agentArgs": { + "docker": { + "default": false, + "type": "boolean" + }, + "flannel-conf": { + "type": "string" + }, + "flannel-iface": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "pause-image": { + "type": "string" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "default": false, + "type": "boolean" + }, + "snapshotter": { + "type": "string" + }, + "system-default-registry": { + "type": "string" + }, + "vpn-auth": { + "type": "string" + }, + "vpn-auth-file": { + "type": "string" + } + }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", + "minChannelServerVersion": "v2.7.11", + "serverArgs": { + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "datastore-cafile": { + "type": "string" + }, + "datastore-certfile": { + "type": "string" + }, + "datastore-endpoint": { + "type": "string" + }, + "datastore-keyfile": { + "type": "string" + }, + "default-local-storage-path": { + "type": "string" + }, + "disable": { + "options": [ + "coredns", + "servicelb", + "traefik", + "local-storage", + "metrics-server" + ], + "type": "array" + }, + "disable-apiserver": { + "default": false, + "type": "boolean" + }, + "disable-cloud-controller": { + "default": false, + "type": "boolean" + }, + "disable-controller-manager": { + "default": false, + "type": "boolean" + }, + "disable-etcd": { + "default": false, + "type": "boolean" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-network-policy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "default": false, + "type": "boolean" + }, + "egress-selector-mode": { + "type": "string" + }, + "etcd-arg": { + "type": "array" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "flannel-backend": { + "options": [ + "none", + "vxlan", + "ipsec", + "host-gw", + "wireguard", + "wireguard-native" + ], + "type": "enum" + }, + "helm-job-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "secrets-encryption": { + "default": false, + "type": "boolean" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "tls-san": { + "type": "array" + }, + "tls-san-security": { + "type": "boolean" + } + }, + "version": "v1.27.7+k3s2" + }, + { + "agentArgs": { + "disable-apiserver-lb": { + "type": "boolean" + }, + "docker": { + "default": false, + "type": "boolean" + }, + "flannel-conf": { + "type": "string" + }, + "flannel-iface": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "pause-image": { + "type": "string" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "default": false, + "type": "boolean" + }, + "snapshotter": { + "type": "string" + }, + "system-default-registry": { + "type": "string" + }, + "vpn-auth": { + "type": "string" + }, + "vpn-auth-file": { + "type": "string" + } + }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", + "minChannelServerVersion": "v2.7.11", + "serverArgs": { + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "datastore-cafile": { + "type": "string" + }, + "datastore-certfile": { + "type": "string" + }, + "datastore-endpoint": { + "type": "string" + }, + "datastore-keyfile": { + "type": "string" + }, + "default-local-storage-path": { + "type": "string" + }, + "disable": { + "options": [ + "coredns", + "servicelb", + "traefik", + "local-storage", + "metrics-server" + ], + "type": "array" + }, + "disable-apiserver": { + "default": false, + "type": "boolean" + }, + "disable-cloud-controller": { + "default": false, + "type": "boolean" + }, + "disable-controller-manager": { + "default": false, + "type": "boolean" + }, + "disable-etcd": { + "default": false, + "type": "boolean" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-network-policy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "default": false, + "type": "boolean" + }, + "egress-selector-mode": { + "type": "string" + }, + "etcd-arg": { + "type": "array" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "flannel-backend": { + "options": [ + "none", + "vxlan", + "ipsec", + "host-gw", + "wireguard", + "wireguard-native" + ], + "type": "enum" + }, + "helm-job-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "secrets-encryption": { + "default": false, + "type": "boolean" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "tls-san": { + "type": "array" + }, + "tls-san-security": { + "type": "boolean" + } + }, + "version": "v1.27.8+k3s2" } ] }, @@ -23387,6 +24183,10 @@ { "appVersion": "\u003e= 2.7.5-0 \u003c 2.7.100-0", "defaultVersion": "1.26.x" + }, + { + "appVersion": "\u003e= 2.7.11-0 \u003c 2.7.100-0", + "defaultVersion": "1.27.x" } ] } @@ -23588,247 +24388,973 @@ "disable-scheduler": { "type": "bool" }, - "etcd-expose-metrics": { - "default": false, - "type": "boolean" - }, - "etcd-image": { - "type": "string" - }, - "kube-apiserver-arg": { - "type": "array" - }, - "kube-apiserver-image": { - "type": "string" - }, - "kube-controller-manager-arg": { - "type": "array" - }, - "kube-controller-manager-image": { - "type": "string" - }, - "kube-proxy-arg": { - "type": "array" - }, - "kube-scheduler-arg": { - "type": "array" - }, - "kube-scheduler-image": { - "type": "string" - }, - "kubelet-path": { - "type": "string" - }, - "pause-image": { - "type": "string" - }, - "runtime-image": { - "type": "string" - }, - "service-cidr": { - "type": "string" - }, - "service-node-port-range": { - "type": "string" - }, - "snapshotter": { - "type": "string" - }, - "tls-san": { - "type": "array" - } - }, - "version": "v1.21.4+rke2r2" - }, - { - "agentArgs": { - "audit-policy-file": { - "type": "string" - }, - "cloud-controller-manager-extra-env": { - "type": "array" - }, - "cloud-controller-manager-extra-mount": { - "type": "array" - }, - "cloud-provider-config": { - "type": "string" - }, - "cloud-provider-name": { - "default": null, - "nullable": true, - "options": [ - "aws", - "azure", - "gcp", - "rancher-vsphere", - "harvester", - "external" - ], - "type": "enum" - }, - "control-plane-resource-limits": { - "type": "string" - }, - "control-plane-resource-requests": { - "type": "string" - }, - "etcd-extra-env": { - "type": "array" - }, - "etcd-extra-mount": { - "type": "array" - }, - "kube-apiserver-extra-env": { - "type": "array" - }, - "kube-apiserver-extra-mount": { - "type": "array" - }, - "kube-controller-manager-extra-env": { - "type": "array" - }, - "kube-controller-manager-extra-mount": { - "type": "array" - }, - "kube-proxy-arg": { - "type": "array" - }, - "kube-proxy-extra-env": { - "type": "array" - }, - "kube-proxy-extra-mount": { - "type": "array" - }, - "kube-scheduler-extra-env": { - "type": "array" - }, - "kube-scheduler-extra-mount": { - "type": "array" - }, - "kubelet-arg": { - "type": "array" - }, - "profile": { - "nullable": true, - "options": [ - "cis-1.5", - "cis-1.6" - ], - "type": "enum" - }, - "protect-kernel-defaults": { - "default": false, - "type": "boolean" - }, - "resolv-conf": { - "type": "string" - }, - "selinux": { - "type": "bool" - }, - "system-default-registry": { - "type": "string" - } - }, - "charts": { - "harvester-cloud-provider": { - "repo": "rancher-rke2-charts", - "version": "0.1.200" - }, - "harvester-csi-driver": { - "repo": "rancher-rke2-charts", - "version": "0.1.300" - }, - "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.0.0" - }, - "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.0.0" - }, - "rke2-calico": { - "repo": "rancher-rke2-charts", - "version": "v3.19.2-204" - }, - "rke2-calico-crd": { - "repo": "rancher-rke2-charts", - "version": "v1.0.101" - }, - "rke2-canal": { - "repo": "rancher-rke2-charts", - "version": "v3.13.300-build2021022306" - }, - "rke2-cilium": { - "repo": "rancher-rke2-charts", - "version": "1.10.402" - }, - "rke2-coredns": { - "repo": "rancher-rke2-charts", - "version": "1.16.201-build2021072308" - }, - "rke2-ingress-nginx": { - "repo": "rancher-rke2-charts", - "version": "3.34.003" - }, - "rke2-metrics-server": { - "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021022302" - }, - "rke2-multus": { - "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021041604" - } - }, - "maxChannelServerVersion": "v2.6.4", - "minChannelServerVersion": "v2.6.1-alpha1", - "serverArgs": { - "audit-policy-file": { - "type": "string" - }, - "cluster-cidr": { - "type": "string" - }, - "cluster-dns": { - "type": "string" - }, - "cluster-domain": { - "type": "string" - }, - "cni": { - "default": "calico", - "options": [ - "canal", - "cilium", - "calico", - "multus,canal", - "multus,cilium", - "multus,calico" - ], - "type": "array" - }, - "container-runtime-endpoint": { - "type": "string" - }, - "disable": { - "options": [ - "rke2-coredns", - "rke2-ingress-nginx", - "rke2-metrics-server" - ], + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "etcd-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-apiserver-image": { + "type": "string" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-image": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "kube-scheduler-image": { + "type": "string" + }, + "kubelet-path": { + "type": "string" + }, + "pause-image": { + "type": "string" + }, + "runtime-image": { + "type": "string" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "snapshotter": { + "type": "string" + }, + "tls-san": { + "type": "array" + } + }, + "version": "v1.21.4+rke2r2" + }, + { + "agentArgs": { + "audit-policy-file": { + "type": "string" + }, + "cloud-controller-manager-extra-env": { + "type": "array" + }, + "cloud-controller-manager-extra-mount": { + "type": "array" + }, + "cloud-provider-config": { + "type": "string" + }, + "cloud-provider-name": { + "default": null, + "nullable": true, + "options": [ + "aws", + "azure", + "gcp", + "rancher-vsphere", + "harvester", + "external" + ], + "type": "enum" + }, + "control-plane-resource-limits": { + "type": "string" + }, + "control-plane-resource-requests": { + "type": "string" + }, + "etcd-extra-env": { + "type": "array" + }, + "etcd-extra-mount": { + "type": "array" + }, + "kube-apiserver-extra-env": { + "type": "array" + }, + "kube-apiserver-extra-mount": { + "type": "array" + }, + "kube-controller-manager-extra-env": { + "type": "array" + }, + "kube-controller-manager-extra-mount": { + "type": "array" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-proxy-extra-env": { + "type": "array" + }, + "kube-proxy-extra-mount": { + "type": "array" + }, + "kube-scheduler-extra-env": { + "type": "array" + }, + "kube-scheduler-extra-mount": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "profile": { + "nullable": true, + "options": [ + "cis-1.5", + "cis-1.6" + ], + "type": "enum" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "type": "bool" + }, + "system-default-registry": { + "type": "string" + } + }, + "charts": { + "harvester-cloud-provider": { + "repo": "rancher-rke2-charts", + "version": "0.1.200" + }, + "harvester-csi-driver": { + "repo": "rancher-rke2-charts", + "version": "0.1.300" + }, + "rancher-vsphere-cpi": { + "repo": "rancher-charts", + "version": "100.0.0" + }, + "rancher-vsphere-csi": { + "repo": "rancher-charts", + "version": "100.0.0" + }, + "rke2-calico": { + "repo": "rancher-rke2-charts", + "version": "v3.19.2-204" + }, + "rke2-calico-crd": { + "repo": "rancher-rke2-charts", + "version": "v1.0.101" + }, + "rke2-canal": { + "repo": "rancher-rke2-charts", + "version": "v3.13.300-build2021022306" + }, + "rke2-cilium": { + "repo": "rancher-rke2-charts", + "version": "1.10.402" + }, + "rke2-coredns": { + "repo": "rancher-rke2-charts", + "version": "1.16.201-build2021072308" + }, + "rke2-ingress-nginx": { + "repo": "rancher-rke2-charts", + "version": "3.34.003" + }, + "rke2-metrics-server": { + "repo": "rancher-rke2-charts", + "version": "2.11.100-build2021022302" + }, + "rke2-multus": { + "repo": "rancher-rke2-charts", + "version": "v3.7.1-build2021041604" + } + }, + "maxChannelServerVersion": "v2.6.4", + "minChannelServerVersion": "v2.6.1-alpha1", + "serverArgs": { + "audit-policy-file": { + "type": "string" + }, + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "cni": { + "default": "calico", + "options": [ + "canal", + "cilium", + "calico", + "multus,canal", + "multus,cilium", + "multus,calico" + ], + "type": "array" + }, + "container-runtime-endpoint": { + "type": "string" + }, + "disable": { + "options": [ + "rke2-coredns", + "rke2-ingress-nginx", + "rke2-metrics-server" + ], + "type": "array" + }, + "disable-cloud-controller": { + "type": "bool" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "type": "bool" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "etcd-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-apiserver-image": { + "type": "string" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-image": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "kube-scheduler-image": { + "type": "string" + }, + "kubelet-path": { + "type": "string" + }, + "pause-image": { + "type": "string" + }, + "runtime-image": { + "type": "string" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "snapshotter": { + "type": "string" + }, + "tls-san": { + "type": "array" + } + }, + "version": "v1.21.5+rke2r1" + }, + { + "agentArgs": { + "audit-policy-file": { + "type": "string" + }, + "cloud-controller-manager-extra-env": { + "type": "array" + }, + "cloud-controller-manager-extra-mount": { + "type": "array" + }, + "cloud-provider-config": { + "type": "string" + }, + "cloud-provider-name": { + "default": null, + "nullable": true, + "options": [ + "aws", + "azure", + "gcp", + "rancher-vsphere", + "harvester", + "external" + ], + "type": "enum" + }, + "control-plane-resource-limits": { + "type": "string" + }, + "control-plane-resource-requests": { + "type": "string" + }, + "etcd-extra-env": { + "type": "array" + }, + "etcd-extra-mount": { + "type": "array" + }, + "kube-apiserver-extra-env": { + "type": "array" + }, + "kube-apiserver-extra-mount": { + "type": "array" + }, + "kube-controller-manager-extra-env": { + "type": "array" + }, + "kube-controller-manager-extra-mount": { + "type": "array" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-proxy-extra-env": { + "type": "array" + }, + "kube-proxy-extra-mount": { + "type": "array" + }, + "kube-scheduler-extra-env": { + "type": "array" + }, + "kube-scheduler-extra-mount": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "profile": { + "nullable": true, + "options": [ + "cis-1.5", + "cis-1.6" + ], + "type": "enum" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "type": "bool" + }, + "system-default-registry": { + "type": "string" + } + }, + "charts": { + "harvester-cloud-provider": { + "repo": "rancher-rke2-charts", + "version": "0.1.200" + }, + "harvester-csi-driver": { + "repo": "rancher-rke2-charts", + "version": "0.1.300" + }, + "rancher-vsphere-cpi": { + "repo": "rancher-charts", + "version": "100.0.0" + }, + "rancher-vsphere-csi": { + "repo": "rancher-charts", + "version": "100.0.0" + }, + "rke2-calico": { + "repo": "rancher-rke2-charts", + "version": "v3.19.2-205" + }, + "rke2-calico-crd": { + "repo": "rancher-rke2-charts", + "version": "v1.0.101" + }, + "rke2-canal": { + "repo": "rancher-rke2-charts", + "version": "v3.13.300-build2021022306" + }, + "rke2-cilium": { + "repo": "rancher-rke2-charts", + "version": "1.10.404" + }, + "rke2-coredns": { + "repo": "rancher-rke2-charts", + "version": "1.16.201-build2021072308" + }, + "rke2-ingress-nginx": { + "repo": "rancher-rke2-charts", + "version": "3.34.003" + }, + "rke2-metrics-server": { + "repo": "rancher-rke2-charts", + "version": "2.11.100-build2021022302" + }, + "rke2-multus": { + "repo": "rancher-rke2-charts", + "version": "v3.7.1-build2021041604" + } + }, + "maxChannelServerVersion": "v2.6.4", + "minChannelServerVersion": "v2.6.1-alpha1", + "serverArgs": { + "audit-policy-file": { + "type": "string" + }, + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "cni": { + "default": "calico", + "options": [ + "canal", + "cilium", + "calico", + "multus,canal", + "multus,cilium", + "multus,calico" + ], + "type": "array" + }, + "container-runtime-endpoint": { + "type": "string" + }, + "disable": { + "options": [ + "rke2-coredns", + "rke2-ingress-nginx", + "rke2-metrics-server" + ], + "type": "array" + }, + "disable-cloud-controller": { + "type": "bool" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "type": "bool" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "etcd-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-apiserver-image": { + "type": "string" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-image": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "kube-scheduler-image": { + "type": "string" + }, + "kubelet-path": { + "type": "string" + }, + "pause-image": { + "type": "string" + }, + "runtime-image": { + "type": "string" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "snapshotter": { + "type": "string" + }, + "tls-san": { + "type": "array" + } + }, + "version": "v1.21.5+rke2r2" + }, + { + "agentArgs": { + "audit-policy-file": { + "type": "string" + }, + "cloud-controller-manager-extra-env": { + "type": "array" + }, + "cloud-controller-manager-extra-mount": { + "type": "array" + }, + "cloud-provider-config": { + "type": "string" + }, + "cloud-provider-name": { + "default": null, + "nullable": true, + "options": [ + "aws", + "azure", + "gcp", + "rancher-vsphere", + "harvester", + "external" + ], + "type": "enum" + }, + "control-plane-resource-limits": { + "type": "string" + }, + "control-plane-resource-requests": { + "type": "string" + }, + "etcd-extra-env": { + "type": "array" + }, + "etcd-extra-mount": { + "type": "array" + }, + "kube-apiserver-extra-env": { + "type": "array" + }, + "kube-apiserver-extra-mount": { + "type": "array" + }, + "kube-controller-manager-extra-env": { + "type": "array" + }, + "kube-controller-manager-extra-mount": { + "type": "array" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-proxy-extra-env": { + "type": "array" + }, + "kube-proxy-extra-mount": { + "type": "array" + }, + "kube-scheduler-extra-env": { + "type": "array" + }, + "kube-scheduler-extra-mount": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "profile": { + "nullable": true, + "options": [ + "cis-1.5", + "cis-1.6" + ], + "type": "enum" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "type": "bool" + }, + "system-default-registry": { + "type": "string" + } + }, + "charts": { + "harvester-cloud-provider": { + "repo": "rancher-rke2-charts", + "version": "0.1.200" + }, + "harvester-csi-driver": { + "repo": "rancher-rke2-charts", + "version": "0.1.300" + }, + "rancher-vsphere-cpi": { + "repo": "rancher-charts", + "version": "100.0.0" + }, + "rancher-vsphere-csi": { + "repo": "rancher-charts", + "version": "100.0.0" + }, + "rke2-calico": { + "repo": "rancher-rke2-charts", + "version": "v3.19.2-205" + }, + "rke2-calico-crd": { + "repo": "rancher-rke2-charts", + "version": "v1.0.101" + }, + "rke2-canal": { + "repo": "rancher-rke2-charts", + "version": "v3.20.1-build2021100603" + }, + "rke2-cilium": { + "repo": "rancher-rke2-charts", + "version": "1.10.404" + }, + "rke2-coredns": { + "repo": "rancher-rke2-charts", + "version": "1.16.301-build2021100602" + }, + "rke2-ingress-nginx": { + "repo": "rancher-rke2-charts", + "version": "4.0.305" + }, + "rke2-metrics-server": { + "repo": "rancher-rke2-charts", + "version": "2.11.100-build2021022302" + }, + "rke2-multus": { + "repo": "rancher-rke2-charts", + "version": "v3.7.1-build2021041604" + } + }, + "maxChannelServerVersion": "v2.6.4", + "minChannelServerVersion": "v2.6.1-alpha1", + "serverArgs": { + "audit-policy-file": { + "type": "string" + }, + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "cni": { + "default": "calico", + "options": [ + "canal", + "cilium", + "calico", + "multus,canal", + "multus,cilium", + "multus,calico" + ], + "type": "array" + }, + "container-runtime-endpoint": { + "type": "string" + }, + "disable": { + "options": [ + "rke2-coredns", + "rke2-ingress-nginx", + "rke2-metrics-server" + ], + "type": "array" + }, + "disable-cloud-controller": { + "type": "bool" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "type": "bool" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "etcd-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-apiserver-image": { + "type": "string" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-image": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "kube-scheduler-image": { + "type": "string" + }, + "kubelet-path": { + "type": "string" + }, + "pause-image": { + "type": "string" + }, + "runtime-image": { + "type": "string" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "snapshotter": { + "type": "string" + }, + "tls-san": { + "type": "array" + } + }, + "version": "v1.21.6+rke2r1" + }, + { + "agentArgs": { + "audit-policy-file": { + "type": "string" + }, + "cloud-controller-manager-extra-env": { + "type": "array" + }, + "cloud-controller-manager-extra-mount": { + "type": "array" + }, + "cloud-provider-config": { + "type": "string" + }, + "cloud-provider-name": { + "default": null, + "nullable": true, + "options": [ + "aws", + "azure", + "gcp", + "rancher-vsphere", + "harvester", + "external" + ], + "type": "enum" + }, + "control-plane-resource-limits": { + "type": "string" + }, + "control-plane-resource-requests": { + "type": "string" + }, + "etcd-extra-env": { + "type": "array" + }, + "etcd-extra-mount": { + "type": "array" + }, + "kube-apiserver-extra-env": { + "type": "array" + }, + "kube-apiserver-extra-mount": { + "type": "array" + }, + "kube-controller-manager-extra-env": { + "type": "array" + }, + "kube-controller-manager-extra-mount": { + "type": "array" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-proxy-extra-env": { + "type": "array" + }, + "kube-proxy-extra-mount": { + "type": "array" + }, + "kube-scheduler-extra-env": { + "type": "array" + }, + "kube-scheduler-extra-mount": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "profile": { + "nullable": true, + "options": [ + "cis-1.5", + "cis-1.6" + ], + "type": "enum" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "type": "bool" + }, + "system-default-registry": { + "type": "string" + } + }, + "charts": { + "harvester-cloud-provider": { + "repo": "rancher-rke2-charts", + "version": "0.1.300" + }, + "harvester-csi-driver": { + "repo": "rancher-rke2-charts", + "version": "0.1.400" + }, + "rancher-vsphere-cpi": { + "repo": "rancher-charts", + "version": "100.1.0+up1.0.100" + }, + "rancher-vsphere-csi": { + "repo": "rancher-charts", + "version": "100.1.0+up2.3.0" + }, + "rke2-calico": { + "repo": "rancher-rke2-charts", + "version": "v3.19.2-205" + }, + "rke2-calico-crd": { + "repo": "rancher-rke2-charts", + "version": "v1.0.101" + }, + "rke2-canal": { + "repo": "rancher-rke2-charts", + "version": "v3.20.1-build2021111904" + }, + "rke2-cilium": { + "repo": "rancher-rke2-charts", + "version": "1.10.404" + }, + "rke2-coredns": { + "repo": "rancher-rke2-charts", + "version": "1.16.401-build2021111901" + }, + "rke2-ingress-nginx": { + "repo": "rancher-rke2-charts", + "version": "4.0.306" + }, + "rke2-metrics-server": { + "repo": "rancher-rke2-charts", + "version": "2.11.100-build2021111904" + }, + "rke2-multus": { + "repo": "rancher-rke2-charts", + "version": "v3.7.1-build2021111906" + } + }, + "maxChannelServerVersion": "v2.6.4", + "minChannelServerVersion": "v2.6.1-alpha1", + "serverArgs": { + "audit-policy-file": { + "type": "string" + }, + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "cni": { + "default": "calico", + "options": [ + "canal", + "cilium", + "calico", + "multus,canal", + "multus,cilium", + "multus,calico" + ], + "type": "array" + }, + "container-runtime-endpoint": { + "type": "string" + }, + "disable": { + "options": [ + "rke2-coredns", + "rke2-ingress-nginx", + "rke2-metrics-server" + ], + "type": "array" + }, + "disable-cloud-controller": { + "type": "bool" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "type": "bool" + }, + "etcd-arg": { "type": "array" }, - "disable-cloud-controller": { - "type": "bool" - }, - "disable-kube-proxy": { - "default": false, - "type": "boolean" - }, - "disable-scheduler": { - "type": "bool" - }, "etcd-expose-metrics": { "default": false, "type": "boolean" @@ -23879,7 +25405,7 @@ "type": "array" } }, - "version": "v1.21.5+rke2r1" + "version": "v1.21.7+rke2r2" }, { "agentArgs": { @@ -23975,19 +25501,19 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.200" + "version": "0.1.800" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.300" + "version": "0.1.900" }, "rancher-vsphere-cpi": { "repo": "rancher-charts", - "version": "100.0.0" + "version": "100.1.0+up1.0.100" }, "rancher-vsphere-csi": { "repo": "rancher-charts", - "version": "100.0.0" + "version": "100.1.0+up2.3.0" }, "rke2-calico": { "repo": "rancher-rke2-charts", @@ -23999,7 +25525,7 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.13.300-build2021022306" + "version": "v3.20.1-build2021111904" }, "rke2-cilium": { "repo": "rancher-rke2-charts", @@ -24007,19 +25533,19 @@ }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.201-build2021072308" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "3.34.003" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021022302" + "version": "2.11.100-build2021111904" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021041604" + "version": "v3.7.1-build2021111906" } }, "maxChannelServerVersion": "v2.6.4", @@ -24070,6 +25596,9 @@ "disable-scheduler": { "type": "bool" }, + "etcd-arg": { + "type": "array" + }, "etcd-expose-metrics": { "default": false, "type": "boolean" @@ -24120,7 +25649,7 @@ "type": "array" } }, - "version": "v1.21.5+rke2r2" + "version": "v1.21.8+rke2r2" }, { "agentArgs": { @@ -24216,19 +25745,19 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.200" + "version": "0.1.800" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.300" + "version": "0.1.900" }, "rancher-vsphere-cpi": { "repo": "rancher-charts", - "version": "100.0.0" + "version": "100.1.0+up1.0.100" }, "rancher-vsphere-csi": { "repo": "rancher-charts", - "version": "100.0.0" + "version": "100.1.0+up2.3.0" }, "rke2-calico": { "repo": "rancher-rke2-charts", @@ -24240,7 +25769,7 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.1-build2021100603" + "version": "v3.20.3-build2022011406" }, "rke2-cilium": { "repo": "rancher-rke2-charts", @@ -24248,19 +25777,19 @@ }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.301-build2021100602" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.305" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021022302" + "version": "2.11.100-build2021111904" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021041604" + "version": "v3.7.1-build2021111906" } }, "maxChannelServerVersion": "v2.6.4", @@ -24311,6 +25840,9 @@ "disable-scheduler": { "type": "bool" }, + "etcd-arg": { + "type": "array" + }, "etcd-expose-metrics": { "default": false, "type": "boolean" @@ -24361,7 +25893,7 @@ "type": "array" } }, - "version": "v1.21.6+rke2r1" + "version": "v1.21.9+rke2r1" }, { "agentArgs": { @@ -24457,11 +25989,11 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.300" + "version": "0.1.1000" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.400" + "version": "0.1.1000" }, "rancher-vsphere-cpi": { "repo": "rancher-charts", @@ -24481,7 +26013,7 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.1-build2021111904" + "version": "v3.21.4-build2022022801" }, "rke2-cilium": { "repo": "rancher-rke2-charts", @@ -24505,7 +26037,7 @@ } }, "maxChannelServerVersion": "v2.6.4", - "minChannelServerVersion": "v2.6.1-alpha1", + "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -24605,7 +26137,7 @@ "type": "array" } }, - "version": "v1.21.7+rke2r2" + "version": "v1.21.10+rke2r2" }, { "agentArgs": { @@ -24701,19 +26233,19 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.800" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.900" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.1.0+up1.0.100" + "repo": "rancher-rke2-charts", + "version": "1.2.101" }, "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.1.0+up2.3.0" + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", @@ -24725,19 +26257,19 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.1-build2021111904" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.203" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.001" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -24749,7 +26281,7 @@ } }, "maxChannelServerVersion": "v2.6.4", - "minChannelServerVersion": "v2.6.1-alpha1", + "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -24849,7 +26381,7 @@ "type": "array" } }, - "version": "v1.21.8+rke2r2" + "version": "v1.21.12+rke2r1" }, { "agentArgs": { @@ -24945,19 +26477,19 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.800" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.900" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.1.0+up1.0.100" + "repo": "rancher-rke2-charts", + "version": "1.2.101" }, "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.1.0+up2.3.0" + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", @@ -24969,19 +26501,19 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.3-build2022011406" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.203" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.002" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -24993,7 +26525,7 @@ } }, "maxChannelServerVersion": "v2.6.4", - "minChannelServerVersion": "v2.6.1-alpha1", + "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -25093,7 +26625,251 @@ "type": "array" } }, - "version": "v1.21.9+rke2r1" + "version": "v1.21.12+rke2r2" + }, + { + "agentArgs": { + "audit-policy-file": { + "type": "string" + }, + "cloud-controller-manager-extra-env": { + "type": "array" + }, + "cloud-controller-manager-extra-mount": { + "type": "array" + }, + "cloud-provider-config": { + "type": "string" + }, + "cloud-provider-name": { + "default": null, + "nullable": true, + "options": [ + "aws", + "azure", + "gcp", + "rancher-vsphere", + "harvester", + "external" + ], + "type": "enum" + }, + "control-plane-resource-limits": { + "type": "string" + }, + "control-plane-resource-requests": { + "type": "string" + }, + "etcd-extra-env": { + "type": "array" + }, + "etcd-extra-mount": { + "type": "array" + }, + "kube-apiserver-extra-env": { + "type": "array" + }, + "kube-apiserver-extra-mount": { + "type": "array" + }, + "kube-controller-manager-extra-env": { + "type": "array" + }, + "kube-controller-manager-extra-mount": { + "type": "array" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-proxy-extra-env": { + "type": "array" + }, + "kube-proxy-extra-mount": { + "type": "array" + }, + "kube-scheduler-extra-env": { + "type": "array" + }, + "kube-scheduler-extra-mount": { + "type": "array" + }, + "kubelet-arg": { + "type": "array" + }, + "profile": { + "nullable": true, + "options": [ + "cis-1.5", + "cis-1.6" + ], + "type": "enum" + }, + "protect-kernel-defaults": { + "default": false, + "type": "boolean" + }, + "resolv-conf": { + "type": "string" + }, + "selinux": { + "type": "bool" + }, + "system-default-registry": { + "type": "string" + } + }, + "charts": { + "harvester-cloud-provider": { + "repo": "rancher-rke2-charts", + "version": "0.1.1100" + }, + "harvester-csi-driver": { + "repo": "rancher-rke2-charts", + "version": "0.1.1100" + }, + "rancher-vsphere-cpi": { + "repo": "rancher-rke2-charts", + "version": "1.2.201" + }, + "rancher-vsphere-csi": { + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" + }, + "rke2-calico": { + "repo": "rancher-rke2-charts", + "version": "v3.19.2-205" + }, + "rke2-calico-crd": { + "repo": "rancher-rke2-charts", + "version": "v1.0.101" + }, + "rke2-canal": { + "repo": "rancher-rke2-charts", + "version": "v3.21.4-build2022031701" + }, + "rke2-cilium": { + "repo": "rancher-rke2-charts", + "version": "1.11.501" + }, + "rke2-coredns": { + "repo": "rancher-rke2-charts", + "version": "1.17.000" + }, + "rke2-ingress-nginx": { + "repo": "rancher-rke2-charts", + "version": "4.1.003" + }, + "rke2-metrics-server": { + "repo": "rancher-rke2-charts", + "version": "2.11.100-build2021111904" + }, + "rke2-multus": { + "repo": "rancher-rke2-charts", + "version": "v3.7.1-build2021111906" + } + }, + "maxChannelServerVersion": "v2.6.4", + "minChannelServerVersion": "v2.6.3-alpha1", + "serverArgs": { + "audit-policy-file": { + "type": "string" + }, + "cluster-cidr": { + "type": "string" + }, + "cluster-dns": { + "type": "string" + }, + "cluster-domain": { + "type": "string" + }, + "cni": { + "default": "calico", + "options": [ + "canal", + "cilium", + "calico", + "multus,canal", + "multus,cilium", + "multus,calico" + ], + "type": "array" + }, + "container-runtime-endpoint": { + "type": "string" + }, + "disable": { + "options": [ + "rke2-coredns", + "rke2-ingress-nginx", + "rke2-metrics-server" + ], + "type": "array" + }, + "disable-cloud-controller": { + "type": "bool" + }, + "disable-kube-proxy": { + "default": false, + "type": "boolean" + }, + "disable-scheduler": { + "type": "bool" + }, + "etcd-arg": { + "type": "array" + }, + "etcd-expose-metrics": { + "default": false, + "type": "boolean" + }, + "etcd-image": { + "type": "string" + }, + "kube-apiserver-arg": { + "type": "array" + }, + "kube-apiserver-image": { + "type": "string" + }, + "kube-controller-manager-arg": { + "type": "array" + }, + "kube-controller-manager-image": { + "type": "string" + }, + "kube-proxy-arg": { + "type": "array" + }, + "kube-scheduler-arg": { + "type": "array" + }, + "kube-scheduler-image": { + "type": "string" + }, + "kubelet-path": { + "type": "string" + }, + "pause-image": { + "type": "string" + }, + "runtime-image": { + "type": "string" + }, + "service-cidr": { + "type": "string" + }, + "service-node-port-range": { + "type": "string" + }, + "snapshotter": { + "type": "string" + }, + "tls-san": { + "type": "array" + } + }, + "version": "v1.21.13+rke2r2" }, { "agentArgs": { @@ -25189,19 +26965,19 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1000" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1000" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.1.0+up1.0.100" + "repo": "rancher-rke2-charts", + "version": "1.2.201" }, "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.1.0+up2.3.0" + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", @@ -25213,19 +26989,19 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022022801" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.501" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.003" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -25236,6 +27012,9 @@ "version": "v3.7.1-build2021111906" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.6.4", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { @@ -25337,7 +27116,7 @@ "type": "array" } }, - "version": "v1.21.10+rke2r2" + "version": "v1.21.14+rke2r1" }, { "agentArgs": { @@ -25433,43 +27212,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.400" }, "rancher-vsphere-cpi": { - "repo": "rancher-rke2-charts", - "version": "1.2.101" + "repo": "rancher-charts", + "version": "100.1.0+up1.0.100" }, "rancher-vsphere-csi": { - "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "repo": "rancher-charts", + "version": "100.1.0+up2.3.0" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.19.2-205" + "version": "v3.20.201" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.101" + "version": "v1.0.202" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.20.1-build2021111904" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.203" + "version": "1.10.404" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.001" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -25480,7 +27259,7 @@ "version": "v3.7.1-build2021111906" } }, - "maxChannelServerVersion": "v2.6.4", + "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { @@ -25581,7 +27360,7 @@ "type": "array" } }, - "version": "v1.21.12+rke2r1" + "version": "v1.22.4+rke2r2" }, { "agentArgs": { @@ -25677,43 +27456,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.800" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.900" }, "rancher-vsphere-cpi": { - "repo": "rancher-rke2-charts", - "version": "1.2.101" + "repo": "rancher-charts", + "version": "100.1.0+up1.0.100" }, "rancher-vsphere-csi": { - "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "repo": "rancher-charts", + "version": "100.1.0+up2.3.0" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.19.2-205" + "version": "v3.20.201" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.101" + "version": "v1.0.202" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.20.1-build2021111904" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.203" + "version": "1.10.404" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.002" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -25724,7 +27503,7 @@ "version": "v3.7.1-build2021111906" } }, - "maxChannelServerVersion": "v2.6.4", + "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { @@ -25825,7 +27604,7 @@ "type": "array" } }, - "version": "v1.21.12+rke2r2" + "version": "v1.22.5+rke2r2" }, { "agentArgs": { @@ -25921,43 +27700,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.800" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.900" }, "rancher-vsphere-cpi": { - "repo": "rancher-rke2-charts", - "version": "1.2.201" + "repo": "rancher-charts", + "version": "100.1.0+up1.0.100" }, "rancher-vsphere-csi": { - "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "repo": "rancher-charts", + "version": "100.1.0+up2.3.0" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.19.2-205" + "version": "v3.20.201" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.101" + "version": "v1.0.202" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.20.3-build2022011406" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.501" + "version": "1.10.404" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -25968,7 +27747,7 @@ "version": "v3.7.1-build2021111906" } }, - "maxChannelServerVersion": "v2.6.4", + "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { @@ -26069,7 +27848,7 @@ "type": "array" } }, - "version": "v1.21.13+rke2r2" + "version": "v1.22.6+rke2r1" }, { "agentArgs": { @@ -26165,43 +27944,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1000" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1000" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.1.000" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.4.1-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.19.2-205" + "version": "v3.21.402" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.101" + "version": "v3.21.402" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.21.4-build2022022801" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.501" + "version": "1.10.404" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -26212,10 +27991,7 @@ "version": "v3.7.1-build2021111906" } }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, - "maxChannelServerVersion": "v2.6.4", + "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { "audit-policy-file": { @@ -26316,7 +28092,7 @@ "type": "array" } }, - "version": "v1.21.14+rke2r1" + "version": "v1.22.7+rke2r2" }, { "agentArgs": { @@ -26412,43 +28188,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.300" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.400" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.1.0+up1.0.100" + "repo": "rancher-rke2-charts", + "version": "1.2.101" }, "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.1.0+up2.3.0" + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.20.201" + "version": "v3.21.402" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.202" + "version": "v3.21.402" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.1-build2021111904" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.203" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.001" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -26560,7 +28336,7 @@ "type": "array" } }, - "version": "v1.22.4+rke2r2" + "version": "v1.22.9+rke2r1" }, { "agentArgs": { @@ -26656,43 +28432,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.800" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.900" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.1.0+up1.0.100" + "repo": "rancher-rke2-charts", + "version": "1.2.101" }, "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.1.0+up2.3.0" + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.20.201" + "version": "v3.21.402" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.202" + "version": "v3.21.402" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.1-build2021111904" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.203" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.002" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -26804,7 +28580,7 @@ "type": "array" } }, - "version": "v1.22.5+rke2r2" + "version": "v1.22.9+rke2r2" }, { "agentArgs": { @@ -26900,43 +28676,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.800" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.900" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { - "repo": "rancher-charts", - "version": "100.1.0+up1.0.100" + "repo": "rancher-rke2-charts", + "version": "1.2.201" }, "rancher-vsphere-csi": { - "repo": "rancher-charts", - "version": "100.1.0+up2.3.0" + "repo": "rancher-rke2-charts", + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.20.201" + "version": "v3.21.504" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.202" + "version": "v3.21.504" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.20.3-build2022011406" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.501" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.003" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -26944,7 +28720,7 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2021110402" } }, "maxChannelServerVersion": "v2.6.99", @@ -26995,6 +28771,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -27048,7 +28827,7 @@ "type": "array" } }, - "version": "v1.22.6+rke2r1" + "version": "v1.22.10+rke2r2" }, { "agentArgs": { @@ -27144,43 +28923,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1000" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1000" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.1.000" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.4.1-rancher100" + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.402" + "version": "v3.21.504" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.402" + "version": "v3.21.504" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022022801" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.10.404" + "version": "1.11.502" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.003" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -27188,9 +28967,12 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2021110403" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { @@ -27239,6 +29021,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -27292,7 +29077,7 @@ "type": "array" } }, - "version": "v1.22.7+rke2r2" + "version": "v1.22.11+rke2r1" }, { "agentArgs": { @@ -27388,7 +29173,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -27396,7 +29181,7 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.101" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -27404,27 +29189,27 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.402" + "version": "v3.21.504" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.402" + "version": "v3.21.504" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.203" + "version": "1.12.001" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.001" + "version": "4.1.004" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -27432,9 +29217,12 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2021110403" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { @@ -27483,6 +29271,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -27536,7 +29327,7 @@ "type": "array" } }, - "version": "v1.22.9+rke2r1" + "version": "v1.22.13+rke2r1" }, { "agentArgs": { @@ -27632,7 +29423,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -27640,7 +29431,7 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.101" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -27648,27 +29439,27 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.402" + "version": "v3.21.504" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.402" + "version": "v3.21.504" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.24.1-build2022101102" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.203" + "version": "1.12.102" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.002" + "version": "4.1.004" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -27676,9 +29467,12 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2021110403" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { @@ -27727,6 +29521,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -27780,7 +29577,7 @@ "type": "array" } }, - "version": "v1.22.9+rke2r2" + "version": "v1.22.15+rke2r2" }, { "agentArgs": { @@ -27876,7 +29673,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -27900,19 +29697,19 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.1-build2022101102" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.501" + "version": "1.12.301" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.1.004" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -27920,9 +29717,12 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110402" + "version": "v3.8-build2021110403" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { @@ -28027,7 +29827,7 @@ "type": "array" } }, - "version": "v1.22.10+rke2r2" + "version": "v1.22.17+rke2r1" }, { "agentArgs": { @@ -28123,43 +29923,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1000" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1000" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.1.000" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.4.1-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v3.22.101" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v1.0.202" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.21.4-build2022022801" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.502" + "version": "1.11.101" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.16.401-build2021111901" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.0.306" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -28167,14 +29967,11 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.7.1-build2021111906" } }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, "maxChannelServerVersion": "v2.6.99", - "minChannelServerVersion": "v2.6.3-alpha1", + "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -28221,9 +30018,6 @@ "disable-scheduler": { "type": "bool" }, - "egress-selector-mode": { - "type": "string" - }, "etcd-arg": { "type": "array" }, @@ -28277,7 +30071,7 @@ "type": "array" } }, - "version": "v1.22.11+rke2r1" + "version": "v1.23.4+rke2r2" }, { "agentArgs": { @@ -28397,11 +30191,11 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.1-build2022101102" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.001" + "version": "1.12.102" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -28420,9 +30214,6 @@ "version": "v3.8-build2021110403" } }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, "maxChannelServerVersion": "v2.6.99", "minChannelServerVersion": "v2.6.3-alpha1", "serverArgs": { @@ -28527,7 +30318,7 @@ "type": "array" } }, - "version": "v1.22.13+rke2r1" + "version": "v1.22.16+rke2r1" }, { "agentArgs": { @@ -28623,7 +30414,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -28631,7 +30422,7 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.2.101" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -28639,27 +30430,27 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v3.22.101" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v1.0.202" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101102" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.102" + "version": "1.11.203" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.004" + "version": "4.1.001" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -28667,14 +30458,11 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.7.1-build2021111906" } }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, "maxChannelServerVersion": "v2.6.99", - "minChannelServerVersion": "v2.6.3-alpha1", + "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -28721,9 +30509,6 @@ "disable-scheduler": { "type": "bool" }, - "egress-selector-mode": { - "type": "string" - }, "etcd-arg": { "type": "array" }, @@ -28777,7 +30562,7 @@ "type": "array" } }, - "version": "v1.22.15+rke2r2" + "version": "v1.23.6+rke2r1" }, { "agentArgs": { @@ -28873,7 +30658,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -28881,7 +30666,7 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.2.101" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -28889,27 +30674,27 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v3.22.101" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v1.0.202" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101102" + "version": "v3.21.4-build2022031701" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.301" + "version": "1.11.203" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.004" + "version": "4.1.002" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -28917,14 +30702,11 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.7.1-build2021111906" } }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, "maxChannelServerVersion": "v2.6.99", - "minChannelServerVersion": "v2.6.3-alpha1", + "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -28971,9 +30753,6 @@ "disable-scheduler": { "type": "bool" }, - "egress-selector-mode": { - "type": "string" - }, "etcd-arg": { "type": "array" }, @@ -29027,7 +30806,7 @@ "type": "array" } }, - "version": "v1.22.17+rke2r1" + "version": "v1.23.6+rke2r2" }, { "agentArgs": { @@ -29123,43 +30902,43 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1000" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1000" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.1.000" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.4.1-rancher100" + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.22.101" + "version": "v3.23.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.202" + "version": "v3.23.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022022801" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.101" + "version": "1.11.501" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.16.401-build2021111901" + "version": "1.17.000" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.0.306" + "version": "4.1.003" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -29167,7 +30946,7 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2021110402" } }, "maxChannelServerVersion": "v2.6.99", @@ -29218,6 +30997,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -29271,7 +31053,7 @@ "type": "array" } }, - "version": "v1.23.4+rke2r2" + "version": "v1.23.7+rke2r2" }, { "agentArgs": { @@ -29367,7 +31149,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -29383,19 +31165,19 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v3.23.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.21.504" + "version": "v3.23.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101102" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.102" + "version": "1.11.502" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -29403,7 +31185,7 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.004" + "version": "4.1.003" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -29414,8 +31196,11 @@ "version": "v3.8-build2021110403" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.6.99", - "minChannelServerVersion": "v2.6.3-alpha1", + "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -29518,7 +31303,7 @@ "type": "array" } }, - "version": "v1.22.16+rke2r1" + "version": "v1.23.8+rke2r1" }, { "agentArgs": { @@ -29614,7 +31399,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -29622,7 +31407,7 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.101" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -29630,27 +31415,27 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.22.101" + "version": "v3.23.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.202" + "version": "v3.23.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.203" + "version": "1.12.001" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.001" + "version": "4.1.004" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -29658,10 +31443,13 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2021110403" } }, - "maxChannelServerVersion": "v2.6.99", + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { @@ -29709,6 +31497,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -29762,7 +31553,7 @@ "type": "array" } }, - "version": "v1.23.6+rke2r1" + "version": "v1.23.10+rke2r1" }, { "agentArgs": { @@ -29858,7 +31649,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -29866,46 +31657,46 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.101" + "version": "1.4.001" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.6.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.22.101" + "version": "v3.24.102" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v1.0.202" + "version": "v3.24.102" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.21.4-build2022031701" + "version": "v3.24.1-build2022101103" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.203" + "version": "1.12.102" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.002" + "version": "4.1.005" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021111904" + "version": "2.11.100-build2022101106" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.7.1-build2021111906" + "version": "v3.8-build2022101103" } }, - "maxChannelServerVersion": "v2.6.99", + "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { @@ -29953,6 +31744,9 @@ "disable-scheduler": { "type": "bool" }, + "egress-selector-mode": { + "type": "string" + }, "etcd-arg": { "type": "array" }, @@ -30006,7 +31800,7 @@ "type": "array" } }, - "version": "v1.23.6+rke2r2" + "version": "v1.23.13+rke2r1" }, { "agentArgs": { @@ -30102,7 +31896,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -30110,46 +31904,49 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.4.001" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.6.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.1-build2022101103" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.501" + "version": "1.12.302" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.17.000" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.1.005" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021111904" + "version": "2.11.100-build2022101106" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110402" + "version": "v3.8-build2022101103" } }, - "maxChannelServerVersion": "v2.6.99", + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, + "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { @@ -30253,7 +32050,7 @@ "type": "array" } }, - "version": "v1.23.7+rke2r2" + "version": "v1.23.14+rke2r1" }, { "agentArgs": { @@ -30349,7 +32146,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -30357,49 +32154,49 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.4.001" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.6.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.5-build2022120101" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.502" + "version": "1.12.402" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021111904" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.9-build2022102805" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, - "maxChannelServerVersion": "v2.6.99", + "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { "audit-policy-file": { @@ -30503,7 +32300,7 @@ "type": "array" } }, - "version": "v1.23.8+rke2r1" + "version": "v1.23.15+rke2r1" }, { "agentArgs": { @@ -30599,51 +32396,51 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1500" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.4.101" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.6.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.5-build2022120101" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.001" + "version": "1.12.402" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.004" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021111904" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.9-build2022102805" } }, "featureVersions": { @@ -30753,7 +32550,7 @@ "type": "array" } }, - "version": "v1.23.10+rke2r1" + "version": "v1.23.16+rke2r1" }, { "agentArgs": { @@ -30849,15 +32646,15 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1500" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.001" + "version": "1.4.101" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -30865,19 +32662,19 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.102" + "version": "v3.25.001" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.102" + "version": "v3.25.001" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101103" + "version": "v3.25.0-build2023020901" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.102" + "version": "1.12.500" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -30885,17 +32682,20 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.005" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101106" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2022101103" + "version": "v3.9-build2022102805" } }, + "featureVersions": { + "encryption-key-rotation": "2.0.0" + }, "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.6.4-alpha1", "serverArgs": { @@ -31000,7 +32800,7 @@ "type": "array" } }, - "version": "v1.23.13+rke2r1" + "version": "v1.23.17+rke2r1" }, { "agentArgs": { @@ -31096,7 +32896,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1100" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -31104,50 +32904,50 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.001" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.1-rancher101" + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.103" + "version": "v3.23.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.103" + "version": "v3.23.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101103" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.302" + "version": "1.11.502" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.005" + "version": "4.1.003" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101106" + "version": "2.11.100-build2021111904" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2022101103" + "version": "v3.8-build2021110403" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, - "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.4-alpha1", + "maxChannelServerVersion": "v2.6.99", + "minChannelServerVersion": "v2.6.7-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -31250,7 +33050,7 @@ "type": "array" } }, - "version": "v1.23.14+rke2r1" + "version": "v1.24.2+rke2r1" }, { "agentArgs": { @@ -31354,50 +33154,50 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.001" + "version": "1.2.201" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.1-rancher101" + "version": "2.5.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.23.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.23.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.5-build2022120101" + "version": "v3.22.2-build2022050902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.402" + "version": "1.12.001" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.19.400" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.1.004" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2021111904" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9-build2022102805" + "version": "v3.8-build2021110403" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.4-alpha1", + "minChannelServerVersion": "v2.6.7-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -31500,7 +33300,7 @@ "type": "array" } }, - "version": "v1.23.15+rke2r1" + "version": "v1.24.4+rke2r1" }, { "agentArgs": { @@ -31596,15 +33396,15 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1500" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.101" + "version": "1.4.001" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", @@ -31612,19 +33412,19 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.24.102" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.24.102" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.5-build2022120101" + "version": "v3.24.1-build2022101103" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.402" + "version": "1.12.102" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -31632,22 +33432,22 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.1.005" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2022101106" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9-build2022102805" + "version": "v3.8-build2022101103" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.4-alpha1", + "minChannelServerVersion": "v2.6.7-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -31750,7 +33550,7 @@ "type": "array" } }, - "version": "v1.23.16+rke2r1" + "version": "v1.24.7+rke2r1" }, { "agentArgs": { @@ -31846,35 +33646,35 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1500" + "version": "0.1.1100" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.101" + "version": "1.4.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.1-rancher101" + "version": "2.6.2-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.001" + "version": "v3.24.103" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.001" + "version": "v3.24.103" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.0-build2023020901" + "version": "v3.24.1-build2022101103" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.500" + "version": "1.12.302" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -31882,22 +33682,22 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.1.005" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2022101106" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9-build2022102805" + "version": "v3.8-build2022101103" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.4-alpha1", + "minChannelServerVersion": "v2.6.7-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -32000,7 +33800,7 @@ "type": "array" } }, - "version": "v1.23.17+rke2r1" + "version": "v1.24.8+rke2r1" }, { "agentArgs": { @@ -32096,7 +33896,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1300" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -32104,49 +33904,49 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.4.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.6.2-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.5-build2022120101" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.11.502" + "version": "1.12.402" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.003" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021111904" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.9-build2022102805" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, - "maxChannelServerVersion": "v2.6.99", + "maxChannelServerVersion": "v2.7.99", "minChannelServerVersion": "v2.6.7-alpha1", "serverArgs": { "audit-policy-file": { @@ -32250,7 +34050,7 @@ "type": "array" } }, - "version": "v1.24.2+rke2r1" + "version": "v1.24.9+rke2r2" }, { "agentArgs": { @@ -32346,51 +34146,51 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1500" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.2.201" + "version": "1.4.101" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.5.1-rancher101" + "version": "2.6.2-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.23.103" + "version": "v3.24.501" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.22.2-build2022050902" + "version": "v3.24.5-build2022120101" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.001" + "version": "1.12.402" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.400" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.004" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2021111904" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2021110403" + "version": "v3.9.3-build2023010901" } }, "featureVersions": { @@ -32500,7 +34300,7 @@ "type": "array" } }, - "version": "v1.24.4+rke2r1" + "version": "v1.24.10+rke2r1" }, { "agentArgs": { @@ -32596,35 +34396,35 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1500" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.001" + "version": "1.4.101" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.1-rancher101" + "version": "2.6.2-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.102" + "version": "v3.25.001" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.102" + "version": "v3.25.001" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101103" + "version": "v3.25.0-build2023020901" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.102" + "version": "1.12.500" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -32632,15 +34432,15 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.005" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101106" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2022101103" + "version": "v3.9.3-build2023010901" } }, "featureVersions": { @@ -32750,7 +34550,7 @@ "type": "array" } }, - "version": "v1.24.7+rke2r1" + "version": "v1.24.11+rke2r1" }, { "agentArgs": { @@ -32846,51 +34646,51 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1600" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.100" + "version": "1.4.200" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher100" + "version": "2.6.2-rancher200" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.103" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.103" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.1-build2022101103" + "version": "v3.25.0-build2023020902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.302" + "version": "1.13.000" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.19.402" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.005" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101106" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.8-build2022101103" + "version": "v3.9.3-build2023010902" } }, "featureVersions": { @@ -33000,7 +34800,7 @@ "type": "array" } }, - "version": "v1.24.8+rke2r1" + "version": "v1.24.13+rke2r1" }, { "agentArgs": { @@ -33096,51 +34896,51 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1300" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1100" + "version": "0.1.1600" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.100" + "version": "1.5.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher100" + "version": "3.0.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.5-build2022120101" + "version": "v3.25.1-build2023051200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.402" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.19.402" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9-build2022102805" + "version": "v3.9.3-build2023010902" } }, "featureVersions": { @@ -33250,7 +35050,7 @@ "type": "array" } }, - "version": "v1.24.9+rke2r2" + "version": "v1.24.14+rke2r1" }, { "agentArgs": { @@ -33346,51 +35146,51 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1500" + "version": "0.1.1600" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.101" + "version": "1.5.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher100" + "version": "3.0.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.24.501" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.24.5-build2022120101" + "version": "v3.25.1-build2023051201" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.402" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010901" + "version": "v3.9.3-build2023010902" } }, "featureVersions": { @@ -33500,7 +35300,7 @@ "type": "array" } }, - "version": "v1.24.10+rke2r1" + "version": "v1.24.15+rke2r1" }, { "agentArgs": { @@ -33596,51 +35396,51 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1500" + "version": "0.1.1600" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.101" + "version": "1.5.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher100" + "version": "3.0.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.001" + "version": "v3.26.100" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.001" + "version": "v3.26.100" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.0-build2023020901" + "version": "v3.25.1-build2023051203" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.500" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.6.100" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010901" + "version": "v4.0.2-build2023070701" } }, "featureVersions": { @@ -33750,7 +35550,7 @@ "type": "array" } }, - "version": "v1.24.11+rke2r1" + "version": "v1.24.16+rke2r1" }, { "agentArgs": { @@ -33846,7 +35646,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -33854,43 +35654,43 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.200" + "version": "1.5.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher200" + "version": "3.0.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.100" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.100" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.0-build2023020902" + "version": "v3.26.1-build2023080200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.000" + "version": "1.14.000" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.402" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.6.100" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v4.0.2-build2023081100" } }, "featureVersions": { @@ -33998,9 +35798,12 @@ }, "tls-san": { "type": "array" + }, + "tls-san-security": { + "type": "boolean" } }, - "version": "v1.24.13+rke2r1" + "version": "v1.24.17+rke2r1" }, { "agentArgs": { @@ -34074,8 +35877,7 @@ "profile": { "nullable": true, "options": [ - "cis-1.5", - "cis-1.6" + "cis-1.23" ], "type": "enum" }, @@ -34100,54 +35902,66 @@ }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1600" + "version": "0.1.1500" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.5.100" + "version": "1.4.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "3.0.1-rancher101" + "version": "2.6.2-rancher100" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.25.001" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.25.001" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051200" + "version": "v3.25.0-build2023020901" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.200" + "version": "1.12.500" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.402" + "version": "1.19.401" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.1.008" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v3.9.3-build2023010901" + }, + "rke2-snapshot-controller": { + "repo": "rancher-rke2-charts", + "version": "1.7.201" + }, + "rke2-snapshot-controller-crd": { + "repo": "rancher-rke2-charts", + "version": "1.7.201" + }, + "rke2-snapshot-validation-webhook": { + "repo": "rancher-rke2-charts", + "version": "1.7.100" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.7-alpha1", + "minChannelServerVersion": "v2.7.2-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -34250,7 +36064,7 @@ "type": "array" } }, - "version": "v1.24.14+rke2r1" + "version": "v1.25.7+rke2r1" }, { "agentArgs": { @@ -34324,8 +36138,7 @@ "profile": { "nullable": true, "options": [ - "cis-1.5", - "cis-1.6" + "cis-1.23" ], "type": "enum" }, @@ -34346,7 +36159,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.2.200" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -34354,11 +36167,11 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.5.100" + "version": "1.4.200" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "3.0.1-rancher101" + "version": "2.6.2-rancher200" }, "rke2-calico": { "repo": "rancher-rke2-charts", @@ -34370,15 +36183,15 @@ }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051201" + "version": "v3.25.0-build2023020902" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.200" + "version": "1.13.000" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.002" + "version": "1.19.402" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", @@ -34386,18 +36199,30 @@ }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2022101107" }, "rke2-multus": { "repo": "rancher-rke2-charts", "version": "v3.9.3-build2023010902" + }, + "rke2-snapshot-controller": { + "repo": "rancher-rke2-charts", + "version": "1.7.201" + }, + "rke2-snapshot-controller-crd": { + "repo": "rancher-rke2-charts", + "version": "1.7.201" + }, + "rke2-snapshot-validation-webhook": { + "repo": "rancher-rke2-charts", + "version": "1.7.100" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.7-alpha1", + "minChannelServerVersion": "v2.7.2-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -34500,7 +36325,7 @@ "type": "array" } }, - "version": "v1.24.15+rke2r1" + "version": "v1.25.9+rke2r1" }, { "agentArgs": { @@ -34574,8 +36399,7 @@ "profile": { "nullable": true, "options": [ - "cis-1.5", - "cis-1.6" + "cis-1.23" ], "type": "enum" }, @@ -34596,7 +36420,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.2.200" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -34612,15 +36436,15 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051203" + "version": "v3.25.1-build2023051200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", @@ -34628,11 +36452,11 @@ }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.002" + "version": "1.19.402" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.6.100" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -34640,14 +36464,26 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v4.0.2-build2023070701" + "version": "v3.9.3-build2023010902" + }, + "rke2-snapshot-controller": { + "repo": "rancher-rke2-charts", + "version": "1.7.202" + }, + "rke2-snapshot-controller-crd": { + "repo": "rancher-rke2-charts", + "version": "1.7.202" + }, + "rke2-snapshot-validation-webhook": { + "repo": "rancher-rke2-charts", + "version": "1.7.101" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.7-alpha1", + "minChannelServerVersion": "v2.7.2-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -34750,7 +36586,7 @@ "type": "array" } }, - "version": "v1.24.16+rke2r1" + "version": "v1.25.10+rke2r1" }, { "agentArgs": { @@ -34824,8 +36660,7 @@ "profile": { "nullable": true, "options": [ - "cis-1.5", - "cis-1.6" + "cis-1.23" ], "type": "enum" }, @@ -34862,19 +36697,19 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.26.1-build2023080200" + "version": "v3.25.1-build2023051201" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.14.000" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -34882,7 +36717,7 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.6.100" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -34890,14 +36725,26 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v4.0.2-build2023081100" + "version": "v3.9.3-build2023010902" + }, + "rke2-snapshot-controller": { + "repo": "rancher-rke2-charts", + "version": "1.7.202" + }, + "rke2-snapshot-controller-crd": { + "repo": "rancher-rke2-charts", + "version": "1.7.202" + }, + "rke2-snapshot-validation-webhook": { + "repo": "rancher-rke2-charts", + "version": "1.7.101" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.6.7-alpha1", + "minChannelServerVersion": "v2.7.2-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -34998,12 +36845,9 @@ }, "tls-san": { "type": "array" - }, - "tls-san-security": { - "type": "boolean" } }, - "version": "v1.24.17+rke2r1" + "version": "v1.25.11+rke2r1" }, { "agentArgs": { @@ -35098,63 +36942,63 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", - "version": "0.1.1500" + "version": "0.1.1600" }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.100" + "version": "1.5.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher100" + "version": "3.0.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.001" + "version": "v3.26.100" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.001" + "version": "v3.26.100" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.0-build2023020901" + "version": "v3.25.1-build2023051203" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.12.500" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.401" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.1.008" + "version": "4.6.100" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010901" + "version": "v4.0.2-build2023070701" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", - "version": "1.7.201" + "version": "1.7.202" }, "rke2-snapshot-controller-crd": { "repo": "rancher-rke2-charts", - "version": "1.7.201" + "version": "1.7.202" }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.100" + "version": "1.7.101" } }, "featureVersions": { @@ -35264,7 +37108,7 @@ "type": "array" } }, - "version": "v1.25.7+rke2r1" + "version": "v1.25.12+rke2r1" }, { "agentArgs": { @@ -35359,7 +37203,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -35367,55 +37211,55 @@ }, "rancher-vsphere-cpi": { "repo": "rancher-rke2-charts", - "version": "1.4.200" + "version": "1.5.100" }, "rancher-vsphere-csi": { "repo": "rancher-rke2-charts", - "version": "2.6.2-rancher200" + "version": "3.0.1-rancher101" }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.100" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.100" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.0-build2023020902" + "version": "v3.26.1-build2023080200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.000" + "version": "1.14.000" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.402" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.6.100" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2022101107" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v4.0.2-build2023081100" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", - "version": "1.7.201" + "version": "1.7.202" }, "rke2-snapshot-controller-crd": { "repo": "rancher-rke2-charts", - "version": "1.7.201" + "version": "1.7.202" }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.100" + "version": "1.7.300" } }, "featureVersions": { @@ -35523,9 +37367,12 @@ }, "tls-san": { "type": "array" + }, + "tls-san-security": { + "type": "boolean" } }, - "version": "v1.25.9+rke2r1" + "version": "v1.25.13+rke2r1" }, { "agentArgs": { @@ -35599,6 +37446,7 @@ "profile": { "nullable": true, "options": [ + "cis", "cis-1.23" ], "type": "enum" @@ -35620,7 +37468,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -35636,35 +37484,35 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.101" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.101" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051200" + "version": "v3.26.1-build2023080200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.200" + "version": "1.14.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.402" + "version": "1.24.006" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.8.200" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2023051510" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v4.0.2-build2023081100" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -35676,7 +37524,7 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.101" + "version": "1.7.302" } }, "featureVersions": { @@ -35749,6 +37597,9 @@ "kube-apiserver-image": { "type": "string" }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, "kube-controller-manager-arg": { "type": "array" }, @@ -35784,9 +37635,12 @@ }, "tls-san": { "type": "array" + }, + "tls-san-security": { + "type": "boolean" } }, - "version": "v1.25.10+rke2r1" + "version": "v1.25.15+rke2r2" }, { "agentArgs": { @@ -35860,6 +37714,7 @@ "profile": { "nullable": true, "options": [ + "cis", "cis-1.23" ], "type": "enum" @@ -35897,35 +37752,35 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.300" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.300" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051201" + "version": "v3.26.3-build2023110900" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.200" + "version": "1.14.400" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.002" + "version": "1.24.006" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.8.200" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2023051510" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v4.0.2-build2023081100" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -35937,7 +37792,7 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.101" + "version": "1.7.302" } }, "featureVersions": { @@ -36010,6 +37865,9 @@ "kube-apiserver-image": { "type": "string" }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, "kube-controller-manager-arg": { "type": "array" }, @@ -36045,9 +37903,12 @@ }, "tls-san": { "type": "array" + }, + "tls-san-security": { + "type": "boolean" } }, - "version": "v1.25.11+rke2r1" + "version": "v1.25.16+rke2r1" }, { "agentArgs": { @@ -36142,7 +38003,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.2.200" + "version": "0.1.1400" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -36158,15 +38019,15 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051203" + "version": "v3.25.1-build2023051200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", @@ -36174,11 +38035,11 @@ }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.002" + "version": "1.19.402" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.6.100" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -36186,7 +38047,7 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v4.0.2-build2023070701" + "version": "v3.9.3-build2023010902" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -36205,7 +38066,7 @@ "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.2-alpha1", + "minChannelServerVersion": "v2.7.5-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -36308,7 +38169,7 @@ "type": "array" } }, - "version": "v1.25.12+rke2r1" + "version": "v1.26.5+rke2r1" }, { "agentArgs": { @@ -36419,19 +38280,19 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.26.100" + "version": "v3.25.002" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.26.1-build2023080200" + "version": "v3.25.1-build2023051201" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.14.000" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", @@ -36439,7 +38300,7 @@ }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.6.100" + "version": "4.5.201" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", @@ -36447,7 +38308,7 @@ }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v4.0.2-build2023081100" + "version": "v3.9.3-build2023010902" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -36459,14 +38320,14 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.300" + "version": "1.7.101" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.2-alpha1", + "minChannelServerVersion": "v2.7.5-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -36567,12 +38428,9 @@ }, "tls-san": { "type": "array" - }, - "tls-san-security": { - "type": "boolean" } }, - "version": "v1.25.13+rke2r1" + "version": "v1.26.6+rke2r1" }, { "agentArgs": { @@ -36646,7 +38504,6 @@ "profile": { "nullable": true, "options": [ - "cis", "cis-1.23" ], "type": "enum" @@ -36684,35 +38541,35 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.26.101" + "version": "v3.26.100" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.26.101" + "version": "v3.26.100" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.26.1-build2023080200" + "version": "v3.25.1-build2023051203" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.14.200" + "version": "1.13.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.006" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.8.200" + "version": "4.6.100" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051510" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v4.0.2-build2023081100" + "version": "v4.0.2-build2023070701" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -36724,14 +38581,14 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.302" + "version": "1.7.101" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.2-alpha1", + "minChannelServerVersion": "v2.7.5-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -36797,9 +38654,6 @@ "kube-apiserver-image": { "type": "string" }, - "kube-cloud-controller-manager-arg": { - "type": "array" - }, "kube-controller-manager-arg": { "type": "array" }, @@ -36835,12 +38689,9 @@ }, "tls-san": { "type": "array" - }, - "tls-san-security": { - "type": "boolean" } }, - "version": "v1.25.15+rke2r2" + "version": "v1.26.7+rke2r1" }, { "agentArgs": { @@ -36914,7 +38765,6 @@ "profile": { "nullable": true, "options": [ - "cis", "cis-1.23" ], "type": "enum" @@ -36952,31 +38802,31 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.26.300" + "version": "v3.26.100" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.26.300" + "version": "v3.26.100" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.26.3-build2023110900" + "version": "v3.26.1-build2023080200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.14.400" + "version": "1.14.000" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.006" + "version": "1.24.002" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.8.200" + "version": "4.6.100" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051510" + "version": "2.11.100-build2023051508" }, "rke2-multus": { "repo": "rancher-rke2-charts", @@ -36992,14 +38842,14 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.302" + "version": "1.7.300" } }, "featureVersions": { "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.2-alpha1", + "minChannelServerVersion": "v2.7.5-alpha1", "serverArgs": { "audit-policy-file": { "type": "string" @@ -37065,9 +38915,6 @@ "kube-apiserver-image": { "type": "string" }, - "kube-cloud-controller-manager-arg": { - "type": "array" - }, "kube-controller-manager-arg": { "type": "array" }, @@ -37108,7 +38955,7 @@ "type": "boolean" } }, - "version": "v1.25.16+rke2r1" + "version": "v1.26.8+rke2r1" }, { "agentArgs": { @@ -37182,6 +39029,7 @@ "profile": { "nullable": true, "options": [ + "cis", "cis-1.23" ], "type": "enum" @@ -37203,7 +39051,7 @@ "charts": { "harvester-cloud-provider": { "repo": "rancher-rke2-charts", - "version": "0.1.1400" + "version": "0.2.200" }, "harvester-csi-driver": { "repo": "rancher-rke2-charts", @@ -37219,35 +39067,35 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.101" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.101" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051200" + "version": "v3.26.1-build2023080200" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.200" + "version": "1.14.200" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.19.402" + "version": "1.24.006" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.8.200" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2023051510" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v4.0.2-build2023081100" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -37259,7 +39107,7 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.101" + "version": "1.7.302" } }, "featureVersions": { @@ -37332,6 +39180,9 @@ "kube-apiserver-image": { "type": "string" }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, "kube-controller-manager-arg": { "type": "array" }, @@ -37367,9 +39218,12 @@ }, "tls-san": { "type": "array" + }, + "tls-san-security": { + "type": "boolean" } }, - "version": "v1.26.5+rke2r1" + "version": "v1.26.10+rke2r2" }, { "agentArgs": { @@ -37443,6 +39297,7 @@ "profile": { "nullable": true, "options": [ + "cis", "cis-1.23" ], "type": "enum" @@ -37480,35 +39335,35 @@ }, "rke2-calico": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.300" }, "rke2-calico-crd": { "repo": "rancher-rke2-charts", - "version": "v3.25.002" + "version": "v3.26.300" }, "rke2-canal": { "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051201" + "version": "v3.26.3-build2023110900" }, "rke2-cilium": { "repo": "rancher-rke2-charts", - "version": "1.13.200" + "version": "1.14.400" }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.002" + "version": "1.24.006" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", - "version": "4.5.201" + "version": "4.8.200" }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2023051510" }, "rke2-multus": { "repo": "rancher-rke2-charts", - "version": "v3.9.3-build2023010902" + "version": "v4.0.2-build2023081100" }, "rke2-snapshot-controller": { "repo": "rancher-rke2-charts", @@ -37520,7 +39375,7 @@ }, "rke2-snapshot-validation-webhook": { "repo": "rancher-rke2-charts", - "version": "1.7.101" + "version": "1.7.302" } }, "featureVersions": { @@ -37593,6 +39448,9 @@ "kube-apiserver-image": { "type": "string" }, + "kube-cloud-controller-manager-arg": { + "type": "array" + }, "kube-controller-manager-arg": { "type": "array" }, @@ -37628,270 +39486,12 @@ }, "tls-san": { "type": "array" - } - }, - "version": "v1.26.6+rke2r1" - }, - { - "agentArgs": { - "audit-policy-file": { - "type": "string" - }, - "cloud-controller-manager-extra-env": { - "type": "array" - }, - "cloud-controller-manager-extra-mount": { - "type": "array" - }, - "cloud-provider-config": { - "type": "string" - }, - "cloud-provider-name": { - "default": null, - "nullable": true, - "options": [ - "aws", - "azure", - "gcp", - "rancher-vsphere", - "harvester", - "external" - ], - "type": "enum" - }, - "control-plane-resource-limits": { - "type": "string" - }, - "control-plane-resource-requests": { - "type": "string" - }, - "etcd-extra-env": { - "type": "array" - }, - "etcd-extra-mount": { - "type": "array" - }, - "kube-apiserver-extra-env": { - "type": "array" - }, - "kube-apiserver-extra-mount": { - "type": "array" - }, - "kube-controller-manager-extra-env": { - "type": "array" - }, - "kube-controller-manager-extra-mount": { - "type": "array" - }, - "kube-proxy-arg": { - "type": "array" - }, - "kube-proxy-extra-env": { - "type": "array" - }, - "kube-proxy-extra-mount": { - "type": "array" - }, - "kube-scheduler-extra-env": { - "type": "array" - }, - "kube-scheduler-extra-mount": { - "type": "array" - }, - "kubelet-arg": { - "type": "array" - }, - "profile": { - "nullable": true, - "options": [ - "cis-1.23" - ], - "type": "enum" - }, - "protect-kernel-defaults": { - "default": false, - "type": "boolean" - }, - "resolv-conf": { - "type": "string" - }, - "selinux": { - "type": "bool" - }, - "system-default-registry": { - "type": "string" - } - }, - "charts": { - "harvester-cloud-provider": { - "repo": "rancher-rke2-charts", - "version": "0.2.200" - }, - "harvester-csi-driver": { - "repo": "rancher-rke2-charts", - "version": "0.1.1600" - }, - "rancher-vsphere-cpi": { - "repo": "rancher-rke2-charts", - "version": "1.5.100" - }, - "rancher-vsphere-csi": { - "repo": "rancher-rke2-charts", - "version": "3.0.1-rancher101" - }, - "rke2-calico": { - "repo": "rancher-rke2-charts", - "version": "v3.26.100" - }, - "rke2-calico-crd": { - "repo": "rancher-rke2-charts", - "version": "v3.26.100" - }, - "rke2-canal": { - "repo": "rancher-rke2-charts", - "version": "v3.25.1-build2023051203" - }, - "rke2-cilium": { - "repo": "rancher-rke2-charts", - "version": "1.13.200" - }, - "rke2-coredns": { - "repo": "rancher-rke2-charts", - "version": "1.24.002" - }, - "rke2-ingress-nginx": { - "repo": "rancher-rke2-charts", - "version": "4.6.100" - }, - "rke2-metrics-server": { - "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" - }, - "rke2-multus": { - "repo": "rancher-rke2-charts", - "version": "v4.0.2-build2023070701" - }, - "rke2-snapshot-controller": { - "repo": "rancher-rke2-charts", - "version": "1.7.202" - }, - "rke2-snapshot-controller-crd": { - "repo": "rancher-rke2-charts", - "version": "1.7.202" - }, - "rke2-snapshot-validation-webhook": { - "repo": "rancher-rke2-charts", - "version": "1.7.101" - } - }, - "featureVersions": { - "encryption-key-rotation": "2.0.0" - }, - "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.5-alpha1", - "serverArgs": { - "audit-policy-file": { - "type": "string" - }, - "cluster-cidr": { - "type": "string" - }, - "cluster-dns": { - "type": "string" - }, - "cluster-domain": { - "type": "string" - }, - "cni": { - "default": "calico", - "options": [ - "canal", - "cilium", - "calico", - "multus,canal", - "multus,cilium", - "multus,calico" - ], - "type": "array" - }, - "container-runtime-endpoint": { - "type": "string" - }, - "disable": { - "options": [ - "rke2-coredns", - "rke2-ingress-nginx", - "rke2-metrics-server" - ], - "type": "array" - }, - "disable-cloud-controller": { - "type": "bool" - }, - "disable-kube-proxy": { - "default": false, - "type": "boolean" }, - "disable-scheduler": { - "type": "bool" - }, - "egress-selector-mode": { - "type": "string" - }, - "etcd-arg": { - "type": "array" - }, - "etcd-expose-metrics": { - "default": false, + "tls-san-security": { "type": "boolean" - }, - "etcd-image": { - "type": "string" - }, - "kube-apiserver-arg": { - "type": "array" - }, - "kube-apiserver-image": { - "type": "string" - }, - "kube-controller-manager-arg": { - "type": "array" - }, - "kube-controller-manager-image": { - "type": "string" - }, - "kube-proxy-arg": { - "type": "array" - }, - "kube-scheduler-arg": { - "type": "array" - }, - "kube-scheduler-image": { - "type": "string" - }, - "kubelet-path": { - "type": "string" - }, - "pause-image": { - "type": "string" - }, - "runtime-image": { - "type": "string" - }, - "service-cidr": { - "type": "string" - }, - "service-node-port-range": { - "type": "string" - }, - "snapshotter": { - "type": "string" - }, - "tls-san": { - "type": "array" } }, - "version": "v1.26.7+rke2r1" + "version": "v1.26.11+rke2r1" }, { "agentArgs": { @@ -38018,7 +39618,7 @@ }, "rke2-coredns": { "repo": "rancher-rke2-charts", - "version": "1.24.002" + "version": "1.24.004" }, "rke2-ingress-nginx": { "repo": "rancher-rke2-charts", @@ -38026,7 +39626,7 @@ }, "rke2-metrics-server": { "repo": "rancher-rke2-charts", - "version": "2.11.100-build2023051508" + "version": "2.11.100-build2023051509" }, "rke2-multus": { "repo": "rancher-rke2-charts", @@ -38049,7 +39649,7 @@ "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.5-alpha1", + "minChannelServerVersion": "v2.7.11", "serverArgs": { "audit-policy-file": { "type": "string" @@ -38155,7 +39755,7 @@ "type": "boolean" } }, - "version": "v1.26.8+rke2r1" + "version": "v1.27.5+rke2r1" }, { "agentArgs": { @@ -38314,7 +39914,7 @@ "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.5-alpha1", + "minChannelServerVersion": "v2.7.11", "serverArgs": { "audit-policy-file": { "type": "string" @@ -38423,7 +40023,7 @@ "type": "boolean" } }, - "version": "v1.26.10+rke2r2" + "version": "v1.27.7+rke2r2" }, { "agentArgs": { @@ -38582,7 +40182,7 @@ "encryption-key-rotation": "2.0.0" }, "maxChannelServerVersion": "v2.7.99", - "minChannelServerVersion": "v2.7.5-alpha1", + "minChannelServerVersion": "v2.7.11", "serverArgs": { "audit-policy-file": { "type": "string" @@ -38691,7 +40291,7 @@ "type": "boolean" } }, - "version": "v1.26.11+rke2r1" + "version": "v1.27.8+rke2r1" } ] }